diff --git a/README.md b/README.md
index 82577f1..654077a 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ afem/
│ ├── mesh_refinement.py # ★ 核心:网格细化 RL 环境
│ │ # - GNN 图观测构建(节点 + 边特征)
│ │ # - continuous_sizing_field (score-based + budget) 细化策略
-│ │ # - spatial 奖励
+│ │ # - spatial 奖励 + step0 penalty 降权
│ ├── helmholtz.py # Helmholtz FEM 求解器 + 残差误差估计
│ ├── fem_problem.py # FEM 问题封装 + PDE 循环缓冲区
│ ├── fem_util.py # 三角形面积、中点、随机采样、尺寸场函数
@@ -46,7 +46,7 @@ afem/
- **边界条件**: SBC (Sommerfeld) `∂u/∂n = i·k·u`
- **域**: 可配矩形域,初始网格密度自适应 + domain area 线性缩放:`N_init = N_base × (k/k_ref)^k_exponent × domain_area`。k_ref 和 k_exponent 均可通过 helmholtz config 配置(默认 k_exponent=2.0, k_ref=6.0),保证不同域尺寸下每单位面积单元数一致
- 可配 exponent:^2 = P1 Helmholtz 理论最优 (污染误差 ∝ k²)。建议 N_base 配合 exponent 调整,使 N_init 约为 COMSOL 目标 (λ/10√ε_r) 的 30-50%,为 RL agent 留出充分细化空间
-- **介质区前渐近区边缘约束**: 介质内 λ_d = 2π/(k√ε_r) 更短,强制迭代细化至 h ≤ λ_d/N(默认 N=1.5,helmholtz.pre_asymptotic_N 可配)。约 1.5 点/波长,刚好跨过渐近区门槛,赋予初始网格基本相位解析能力但不过度消耗物理预算,为 RL agent 留出充分的选择性细化空间
+- **介质区前渐近区边缘约束**: 介质内 λ_d = 2π/(k√ε_r) 更短,强制迭代细化至 h ≤ λ_d/N(默认 N=2.0,helmholtz.pre_asymptotic_N 可配)。约 2 点/波长,赋予初始网格基本相位解析能力但不过度消耗物理预算,为 RL agent 留出充分的选择性细化空间
- **后验误差**: 残差型 indicator(Ainsworth & Oden 风格),含单元内部残差 + 梯度跳变 + SBC 边界残差
### 强化学习建模
@@ -54,29 +54,80 @@ afem/
| 概念 | 对应实体 |
|------|---------|
| **智能体** | 每个三角形网格单元 |
-| **状态** | GNN 节点特征(几何 + PDE 残差 + 振幅 + 相位方向 + 物理参数,节点 13 维 + 边 1 维) |
-| **动作** | 1 维连续标量 x_i → score = -x_i 排序,在物理预算内 top-k 选细化单元(x 越小优先级越高) |
-| **奖励** | 局部子单元 η 的 log-ratio 改善(spatial: sum 聚合 / spatial_max: max 聚合)+ α 衰减全局 η log-ratio shaping |
-| **终止** | 达到最大步数或超过最大单元数 |
+| **状态** | GNN 节点特征(几何 + PDE 残差 + 振幅 + 相位方向 + 物理参数,节点 13 维 + 边 1 维) + 13 维全局统计向量 |
+| **动作** | 1 维连续标量 δ_i → `score_i = log(η_i + ε) + c·tanh(δ_i)` 降序 top-k 选择(η baseline + bounded Actor correction) |
+| **奖励** | 纯局部 r_local = log(η_old) − log(l2(η_child)),clip [0, 2.0],减去动作惩罚(step0 降权);未细化单元 r=0 |
+| **终止** | 达到最大步数、超过最大单元数、或 sel=0(无单元可选) |
---
## 网络架构
-双 GNN 架构(policy / value 各自独立基座):
+双流 GNN 架构(Actor / Critic 共享基座,各自独立头):
```
-图观测 → MessagePassingBase → MLP → 动作分布 / value 标量
- ├─ nn.Linear(嵌入)
- ├─ MessagePassingStack(2 层消息传递 + GVN 全局广播,inner 残差 + LayerNorm)
- │ ├─ MessagePassingStep × N
+图观测 → MessagePassingBase → Actor MLP → δ_i (连续动作)
+ ├─ nn.Linear(嵌入) → Critic MLP → V(s) (标量)
+ ├─ MessagePassingStack(2 层消息传递 + MultiPoolGVN 全局广播)
+ │ ├─ MessagePassingStep × 2
│ │ ├─ EdgeModule: MLP([src | dst | edge_attr])
│ │ └─ NodeModule: MLP([node | scatter(入边)])
- │ └─ GlobalVirtualNode (GVN): η_K 加权注意力池化 → 注意力门控广播
- │ h_V = Σ(η_v/Ση)·h_v,α_v = σ(W_att[h_v || h_V]),h_v ← h_v + α_v ⊙ W_V·h_V
- └─ 输出: 节点隐向量
+ │ │ 内残差 + LayerNorm
+ │ └─ MultiPoolGVN: 多策略池化 + 13 维全局统计 → 注意力门控广播
+ │ Stage A: g_global = MLP(concat(g_mean, g_eta, global_stats))
+ │ Stage B: α_v = σ(W_att[h_v || g_global])
+ │ h_v ← h_v + scale · α_v ⊙ W_V · g_global
+ └─ 输出: 节点隐向量 h_i
+
+Actor 输入: concat(h_i, g_global, rel_logeta, rel_area, is_top_eta, budget_stats) [2D+6]
+Critic 输入: concat(h_i, g_global) [2D]
```
+### MultiPoolGVN — 多池化全局虚拟节点
+
+替代原始单一 η 加权 GVN,用多种池化策略聚合节点嵌入,拼接全局统计后生成 `g_global`:
+
+| 池化模式 | 公式 | 说明 |
+|----------|------|------|
+| `mean` | `g_mean = Σ h_v / N` | 均匀平均 |
+| `eta_softmax` | `g_eta = Σ (η_v / Ση) · h_v` | η 加权 softmax,高误差节点主导 |
+| `top_eta` | `g_top = mean(h_v : log η_v > μ + σ)` | top-η 节点均值(log 空间 >1σ) |
+
+配置项 `gvn_pooling: [mean, eta_softmax]`,可选加 `top_eta`。
+
+### Global Stats — 13 维图级统计
+
+每个图观测附带 13 维全局统计向量(`graph.global_stats`),用于 GVN 和 Actor/Critic 的条件输入:
+
+| 索引 | 名称 | 说明 |
+|------|------|------|
+| 0 | `remaining_ratio` | (N_budget − N_current) / N_budget |
+| 1 | `step_ratio` | current_step / max_steps |
+| 2 | `elem_ratio` | N_current / N_budget |
+| 3 | `logeta_mean` | log(η) 均值 |
+| 4 | `logeta_std` | log(η) 标准差 |
+| 5 | `logeta_max` | log(η) 最大值 |
+| 6 | `logeta_p90` | log(η) P90 |
+| 7 | `logeta_p75` | log(η) P75 |
+| 8 | `top10_eta_energy` | top 10% η² 能量占比 |
+| 9 | `eligible_ratio` | 面积安全阈值以上元素占比 |
+| 10 | `inside_eta_energy` | 散射体内 η² 能量占比 |
+| 11 | `outside_eta_energy` | 散射体外 η² 能量占比 |
+| 12 | `interface_eta_energy` | 界面附近 η² 能量占比 |
+
+### 全局条件化 Actor/Critic
+
+当 `use_global_conditioned_correction: true` 时,Actor 和 Critic 的输入额外拼接全局上下文:
+
+- **Actor**: `concat(h_i, g_global, rel_logeta, rel_area, is_top_eta, budget_stats)` → 维度 `2D + 6`
+ - `rel_logeta`: `(log η_i − μ) / σ`,per-graph 标准化
+ - `rel_area`: `log(area_i / mean_area)`,per-graph 相对面积
+ - `is_top_eta`: `rel_logeta > 1.0` 的 0/1 标记
+ - `budget_stats`: `[remaining_ratio, step_ratio, elem_ratio]`
+- **Critic**: `concat(h_i, g_global)` → 维度 `2D`
+
+### 超参数
+
| 超参数 | 值 |
|--------|-----|
| latent_dim | 64 |
@@ -86,18 +137,23 @@ afem/
| 边 dropout | 0.1 |
| Actor MLP | 2 层 tanh |
| Critic MLP | 2 层 tanh |
-| Optimizer | Adam, lr=3e-4, lr_decay=0.995 |
-| **动作分布** | `DiagGaussianDistribution`(连续 Box 动作空间),`log_std` 可学习,clamp 在 [-4.0, -1.0] |
-| **log_std 策略** | 初始化 -2.0(std≈0.135),每步 optimizer.step() 后 clamp 到 [-4.0, -1.0](std ∈ [0.018, 0.368]),熵系数 0.001 |
+| Optimizer | Adam, lr=3e-4, lr_decay=1.0 |
+| **动作分布** | `DiagGaussianDistribution`(连续 Box 动作空间),`log_std` 可学习,clamp 在 [-2.5, -1.0] |
+| **log_std 策略** | 初始化 -2.0(std≈0.135),每步 optimizer.step() 后 clamp 到 [-2.5, -1.0](std ∈ [0.082, 0.368]),熵系数 0.01 |
+| **correction_scale** | 0.3 — Actor 修正幅值 c·tanh(δ) ∈ [−0.3, +0.3] |
+| **correction_reg_coef** | 0.03 — correction 正则化系数,L_corr = coef × mean(correction²) |
+| **step0_penalty_scale** | 0.3 — 第一步 element penalty 降权系数 |
### 动作分布策略说明
环境定义的是 `_action_space`(下划线前缀),网络初始化时必须用 `environment._action_space` 而非 `environment.action_space`(后者默认为 None,会错误回退到 `CategoricalDistribution(1)`,导致 policy gradient 恒为零)。
-`continuous_sizing_field`(score-based)的动作有效范围约 [-3, 3]:
-- score = -x_i,x 越小 ⇒ 优先级越高(纯排序,不设正负门槛)
-- `initial_log_std=-2.0`(std≈0.135),clamp 在 [-4.0, -1.0](std ∈ [0.018, 0.368])
-- 加 `entropy_coefficient=0.001` 提供微弱探索压力,避免 log_std 过早收敛到下限
+`continuous_sizing_field`(score-based)的 scoring 公式:
+- `score_i = log(η_i + ε) + c·tanh(δ_i)`,其中 c=`correction_scale`
+- Actor 输出 δ_i,经 tanh 限幅,只能微调 log(η) 基准排序,不能覆盖物理先验
+- 选 top-k 按 score 降序(越大越优先)
+- `initial_log_std=-2.0`(std≈0.135),clamp 在 [-2.5, -1.0](std ∈ [0.082, 0.368])
+- `entropy_coefficient=0.01`
---
@@ -152,7 +208,8 @@ main.py --mode train/test/viz
└─ train_step() # 多 epoch PPO 更新
├─ policy_loss() # Clipped PPO
├─ value_loss() # Clipped value loss
- └─ entropy_loss() # 熵正则
+ ├─ entropy_loss() # 熵正则
+ └─ correction_reg() # Correction 正则化 L_corr
```
### 环境内部调用
@@ -163,16 +220,15 @@ MeshRefinement.reset()
└─→ initial_mesh (meshpy → 介质内 前渐近区边缘迭代细化)
MeshRefinement.step(action)
- ├─→ score = -x 排序 + 物理预算约束 → top-k 细化单元
+ ├─→ score = log(η) + c·tanh(δ) 排序 + 物理预算约束 → top-k 细化单元
├─→ FEMProblemWrapper.refine_mesh() # scikit-fem refine
├─→ calculate_solution_and_get_error()
│ ├─→ HelmholtzProblem.calculate_solution() # FEM 求解
│ └─→ _compute_residual_indicator() # 残差误差
- ├─→ _get_reward_by_type() # spatial 奖励
- └─→ last_observation # 构建 Data(x, edge_index, edge_attr)
+ ├─→ _get_reward_by_type() # spatial 奖励 + step0 penalty 降权
+ └─→ last_observation # 构建 Data(x, edge_index, edge_attr, eta, area, global_stats)
```
-
### 训练
```bash
@@ -182,16 +238,25 @@ CUDA_VISIBLE_DEVICES=7 python src/main.py --mode train --config src/config.yaml
首次迭代需收集 256 步 rollout(含 FEM 求解),后续打印:
```
-it | loss ev agents reward x<0 elig sel time
+it | loss ev agents avg_r sum_r corr_m corr_s r_le_sc δ<0 elig sel rem_r corr_reg corr_l2 corr_a p_sc avg_p avg_rl step_id time
```
| 字段 | 含义 | 健康范围 |
|------|------|---------|
-| `x<0` | `mean(x_i < 0)`,负值动作比例(纯诊断) | 越负的单元优先级越高 |
-| `elig` | 通过双过滤器的候选占比 | 排除数值退化 + 低误差的单元 |
-| `mask` | 被 Reverse Dörfler 剔除的噪声尾部占比(累积能量 <1% 总误差的底部单元) | 因场景而异,非固定比例 |
+| `corr_m` | `c·tanh(δ)` 均值 | 接近 0,Actor 修正无系统性偏差 |
+| `corr_s` | `c·tanh(δ)` 标准差 | 应稳定在 0.03–0.08,不应持续涨到 0.15 |
+| `r_le_sc` | Pearson r(log_η, score) | 接近 1.0 → Actor 修正小;<0.9 → Actor 在主动修正 |
+| `δ<0` | Actor 输出负值的比例(纯诊断) | — |
+| `elig` | 通过双过滤器的候选占比 | — |
| `sel` | 实际选中的细化单元数 | 每步最多 N_current // 4 |
-| `n_budget` | 全局物理预算(每 episode 固定) | k=30 → ~1800 |
+| `rem_r` | remaining / N_budget | — |
+| `corr_reg` | correction 正则化损失 L_corr | 监控 correction drift |
+| `corr_l2` | mean(correction²) | 监控 correction 幅值增长 |
+| `corr_a` | mean(\|correction\|) | 监控 correction 绝对值 |
+| `p_sc` | penalty_scale | step0=0.3,后续=1.0 |
+| `avg_p` | 平均 element penalty | step0 应明显小于后续 |
+| `avg_r_local` | 平均 r_local(penalty 前) | — |
+| `step_id` | 当前步数 | — |
### 测试
@@ -203,12 +268,12 @@ python src/main.py --mode test --checkpoint checkpoints/model_final.pt \
输出:
```
-Step 0: reward=--- error=1.0000 elements=174 budget=1885
-Step 1: reward=+12.345 error=0.7160 elements=618 x<0=0.45 sel=87
+Step 0: reward=--- aw_rel=79.28% max_err=2.2133 elements=1078 budget=...
+Step 1: reward=+2.345 aw_rel=30.10% max_err=0.7096 elements=2020 sel=269
...
```
-每步打印 `reward error elements x<0 sel`,第 0 步额外显示 `N_budget`。
+每步打印 `reward aw_rel max_err elements sel`,第 0 步额外显示 `N_budget`。
### 可视化
@@ -251,134 +316,52 @@ SBC 边界条件仍用 $k_{local}$(物理正确),仅归一化因子改用
### 连续尺寸场策略(score-based + 物理预算约束 + 动作掩码)
-Actor 输出标量 x_i → score = -x_i 直接排序,在预算和上限内选 top-k:
+Actor 输出标量 δ_i → `score_i = log(η_i + ε) + c·tanh(δ_i)`,在预算和上限内选 top-k:
```
-A_budget_i = ½(λ_local_i / 6)² // 每局部波长方向 ~6 尺度点(仅用于 N_budget 计算)
-λ_local_i = 2π / (k · √ε_r_i)
-
-N_budget = max(N_phys, ⌈5·N_init⌉) // rho_min=5.0,至少 5× 初始单元数,保证 RL 多步细化空间
-N_phys = ⌈ Σ |K_i| / A_budget_i ⌉ // 全局物理预算(k=30 真空 ~1800)
+ε = max(0.01·median(η), 1e-12) // 动态 eps,防止 log(0)
+corr_i = c · tanh(δ_i) c = correction_scale // Actor 修正幅值 ∈ [−c, +c]
+score_i = log(η_i + ε) + corr_i // 降序 top-k
+A_budget_i = ½(λ_local_i / 6)² // 每局部波长方向 ~6 尺度点(仅用于 N_budget)
+N_budget = max(N_phys, ⌈5·N_init⌉) // rho_min=5.0
remaining = N_budget − N_current
-V_min_safeguard = 1e-10 × domain_area // 纯数值底线(防止 FEM 求解器退化)
-eligible: area > V_min_safeguard AND η_K ∈ Reverse Dörfler 保留集 // 数值底线 + 能量尾部淘汰 (ε_noise=0.01, ≥20% floor)
+V_min_safeguard = 1e-10 × domain_area
+eligible: area > V_min_safeguard AND η_K ∈ Reverse Dörfler 保留集 (ε_noise=0.01, ≥20% floor)
num = min(|eligible|, N_current//4, remaining//3)
-selected = top-k by score = -x_i → 1-to-4 切分
+selected = top-k by score descending → 1-to-4 切分
```
-- score = -x_i:x 越小 ⇒ 优先级越高(纯排序,不设正负门槛)
-- 不再使用 `0.25·A_budget` 启发式面积地板:RL 应自主学会"细化到多细",而非被人类经验 (12 点/波长) 限制。仅保留数值底线 V_min_safeguard = 1e-10 × domain_area 防止浮点精度问题。
-- per-step cap 从固定 200 改为自适应 `N_current // 4`,随网格规模缩放但增速更缓,避免大网格时单步消耗过多预算。rho_min 从 3.0 提升到 5.0,赋予更多预算余量。
-- **sel=0 提前终止**:当 agent 选中 0 个单元细化(预算耗尽或 Reverse Dörfler 屏蔽所有候选)时 episode 自动结束,不再浪费 FEM 求解
-- **k_exponent 可配**:初始网格缩放指数可通过 `helmholtz.k_exponent` 配置(默认 2.0),² 为 P1 Helmholtz 理论最优;对 k=30 的 $N_{init}$ 为 k=6 的 25× 倍
-- **动作掩码 (Reverse Dörfler)**:按 η_K 升序排列,剔除累积平方误差贡献 < ε_noise·Ση² 的底部单元(数值噪声/已收敛区)。基于能量分布而非密度分位数,在重尾和均匀误差分布下均自适应。保留率不低于 20% 确保 Agent 始终有充分的选择空间
+- Actor 通过 bounded correction 微调排序,不能覆盖物理先验 log(η)
+- Reverse Dörfler 动作掩码剔除噪声尾部,≥20% floor 确保 Agent 始终有选择空间
+- sel=0 提前终止:agent 选中 0 个单元时 episode 自动结束
+- k_exponent=2.0:P1 Helmholtz 理论最优初始网格缩放
### 奖励计算
----
-
-#### 变量
-
-| 符号 | 含义 |
-|------|------|
-| `η_K = √(r_int² + r_jump² + r_sbc²)` | 逐单元误差指示子,`r_*` 定义见式 (1)–(3) |
-| `C(i)` | 父单元 i 经 1-to-4 切分产生的子单元集合 |
-| `M_new[j]` | 子单元 j 对应的父单元索引 |
-| `n_i = |C(i)|` | 父单元 i 的子单元数(1 表示未切分) |
-| `E_global = √(Σ η_K²) / \|\|u_h\|\|_{L₂(Ω)}` | 全局无量纲误差 |
-
----
-
-#### 算法
-
-**Step 0 — 保存旧状态** (`_set_previous_step`)
+纯局部改善 reward,无调制、无 bonus:
```
-η_old ← 旧逐单元 η_K
-||u_h_old|| ← 旧解 L₂ 范数 (≈ √(Σ |ū_K|² · area_K))
+r_local_i = log(η_old_i + ε) − log(l2_η_children_i + ε)
+l2_η_children_i = √(Σ_{j∈C(i)} η_new_j²)
+
+reward_i = clip(r_local_i, 0, rmax) − penalty_scale · λ · (n_child_i − 1)
+
+rmax = 2.0
+λ = 0.02 (element_penalty.value)
+
+penalty_scale = step0_penalty_scale if current_step == 0 (默认 0.3)
+ = 1.0 otherwise
```
-**Step 1 — 网格细化** (`_refine_mesh`)
-
-```
-x = action.flatten()
-score = -x // x 越小 ⇒ 优先级越高
-
-remaining = N_budget − N_old
-max_by_budget = max(0, remaining // 3)
-// 数值底线 + Reverse Dörfler 能量尾部淘汰
-V_min_safeguard = 1e-10 × domain_area // 纯数值安全底线,防止 FEM 退化
-η_sq = η_old²; total_energy = Σ η_sq
-k_dorfler = searchsorted(cumsum(sort_asc(η_sq)), ε_noise·total_energy) // ε_noise=0.01
-k = min(k_dorfler, N − max(1, N//5)) // ≥20% floor
-eligible = {i | V_old[i] > V_min_safeguard AND i ∈ sort_asc_idx[k:] }
-num = min(|eligible|, N_old//3, max_by_budget)
-elements_to_refine = top-k of eligible by score
-
-M_new[j] ∈ {0,…,N_old-1} // 子→父映射
-```
-
-**Step 2 — FEM 求解 + 误差估计**
-
-```
-η_new ← 新逐单元 η_K
-||u_h_new|| ← 新解 L₂ 范数
-```
-
-**Step 3 — 因果奖励**(零和预算审查)
-
-ε_dynamic = max(0.01 × η_P95, 1e-6)
-
-// Refined parents: r_local + zero-sum bonus − penalty
-if i ∈ refined_parents:
- r_i = log(η_old + ε) − log(√(Σ η_child²) + ε) // r_local ≥ 0 (L₂ 聚合)
- + 0.3 × (η_old / μ − 1.0) // zero-sum bonus (Σ = 0)
- − 0.06 // action penalty
-
-// Unrefined parents: causal isolation
-else:
- r_i = 0
-
-> **零和奖金**:α·(η/μ−1) 全场求和为零。细化高于均值的单元得正奖金,低于均值的倒扣。
-> 这是 Dörfler 准则的 RL 对偶:Agent 必须选出误差超过全均水平的单元。
-> **因果隔离**:未细化单元 r ≡ 0。零和奖金本身足够强(介质内 +0.51)、
-> 不再需要忽视惩罚的推力,排序机制自动淘汰不划算的单元。
-> **L₂ 聚合**:√(Σ η_child²) ≤ η_parent 天然成立,r_local ≥ 0 永不惩罚细化。
-
-**Step 4 — 全局误差(仅诊断)**
-
-global_bonus = α·[log(E_old) − log(E_new)],α = 0.5
-
-不注入 Actor reward。Helmholtz 污染误差可使 E_new > E_old 在正确细化后发生,
-注入 global_bonus 导致因果断裂。Actor 仅优化 Step 3 的 per-element reward。
-
----
-
-#### 奖励标度校准(旧尺寸场下测量,score-based 后需重新标定)
-
-在随机策略下实测各分量量级(1321 个 refined-parent 样本):
-
-| 分量 | 均值 | 占 r_local 比例 |
-|------|------|:---:|
-| `r_local` (仅 refined parents) | +0.364 | — |
-| `penalty` λ·(n−1), λ=0.02 | +0.045 | 1/8 |
-| `α·ΔlogE` α=0.2 | +0.069 | 1/5 |
-| **net** | **+0.387** | |
-
-满足 `r_local ≫ penalty` 且 `α·ΔlogE ≈ r_local / 5`,局部 credit assignment 不被全局信号淹没。
-
----
-
-#### 设计要点
-
| 组件 | 聚合 | 作用 |
|------|------|------|
-| 局部项 `log(η_old / √(Σ η_child²))` | scatter_add,仅 refined parents | L₂ 保证 r_local ≥ 0;int 主导 +0.69 |
-| 零和奖金 `0.3×(η/μ−1)` | 仅 refined parents | Σ=0;高于 μ 得正奖,低于 μ 倒扣 (Dörfler 准则的 RL 对偶) |
-| 动作惩罚 `λ=0.06` | per-refined-parent | 轻微抑制网格膨胀(1-to-4 扣 0.06) |
-| 因果隔离 `r=0` | unrefined parents | 零和奖金足够强,不需额外推力 |
-| 全局项 `α·ΔlogE` α=0.5 | 仅诊断 | 不注入 Actor,避免污染误差因果断裂 |
+| 局部项 `log(η_old / √(Σ η_child²))` | scatter_add,仅 refined parents | L₂ 保证 r_local ≥ 0;clip 到 [0, 2.0] |
+| 动作惩罚 `λ=0.02` | per-refined-parent | 轻微抑制网格膨胀(1-to-4 扣 0.06) |
+| **step0 降权** | step 0 时 penalty × 0.3 | 防止第一步"真实误差改善但 reward 给负反馈" |
+| 因果隔离 `r=0` | unrefined parents | 未细化元素干净零基准 |
+
+**step0 penalty 降权动机**:诊断发现 step 0 经常出现 reward < 0 但真实 aw_rel 改善的情况,说明 element penalty 淹没了真实的物理改善信号。降权后 step 0 的 reward 与 Δaw_rel 符号一致性提高。
---
@@ -388,7 +371,185 @@ global_bonus = α·[log(E_old) − log(E_new)],α = 0.5
- **奖励归一化**: rollout 内 reward 做 z-score 归一化(std < 1e-8 则跳过)
- **Value clipping**: 默认 clip_range=0.2
- **梯度裁剪**: max_grad_norm=0.5
-- **log_std clamp**: 每步 `optimizer.step()` 后将 `log_std` clamp 到 `[-3.0, -1.0]`,σ ∈ [0.05, 0.37]
+- **log_std clamp**: 每步 `optimizer.step()` 后将 `log_std` clamp 到 `[-2.5, -1.0]`,σ ∈ [0.082, 0.37]
初始化 `-2.0` (σ≈0.135),放宽下限防止策略过早确定化
-- **熵正则**: `entropy_coefficient=0.005`,施加有意义的探索压力防止 x<0 崩塌
-- **epochs_per_iteration**: 3,减少对同一 rollout 的过拟合
+- **熵正则**: `entropy_coefficient=0.01`
+- **epochs_per_iteration**: 3
+
+### Correction 正则化
+
+为防止 Actor 学会利用"大 correction"刷局部 residual reward(correction drift / reward hacking),在 PPO loss 中加入 correction 正则项:
+
+```
+correction_i = correction_scale · tanh(action_i)
+L_corr = correction_reg_coef · mean(correction²)
+
+loss = policy_loss + value_coef · value_loss + entropy_coef · entropy_loss + L_corr
+```
+
+- `correction_reg_coef` 默认 0.03,设为 0 可禁用
+- correction 在 PPO 训练时从 stored actions 重新计算(与环境中的公式一致)
+- 目标:corr_std 不再从 ~0.03 持续涨到 ~0.15;r_le_sc 保持更接近 η baseline;validation aw_rel 不随训练后期变差
+- 训练 reward 可能因正则化而下降,这是正常现象;成功标准是测试误差更稳定
+
+### 训练诊断字段
+
+| 字段 | 来源 | 说明 |
+|------|------|------|
+| `corr_reg` | train_step | L_corr = coef × mean(corr²),监控 correction drift |
+| `corr_l2` | train_step | mean(correction²),correction 幅值 |
+| `corr_abs` | train_step | mean(\|correction\|),correction 绝对值 |
+| `penalty_scale` | environment | step0=0.3,后续=1.0 |
+| `avg_penalty` | environment | 平均 element penalty(refined parents) |
+| `avg_r_local` | environment | 平均 r_local(penalty 前,refined parents) |
+| `step_id` | environment | 当前 timestep |
+
+---
+
+## 配置参考
+
+```yaml
+algorithm:
+ batch_size: 32
+ discount_factor: 1.0
+ ppo:
+ clip_range: 0.2
+ entropy_coefficient: 0.01
+ correction_reg_coef: 0.03 # correction 正则化系数
+ epochs_per_iteration: 3
+ gae_lambda: 0.95
+ initial_log_std: -2.0
+ max_grad_norm: 0.5
+ num_rollout_steps: 256
+ value_function_coefficient: 0.5
+ use_gpu: true
+
+environment:
+ mesh_refinement:
+ correction_scale: 0.3 # c in score = log(η) + c·tanh(δ)
+ step0_penalty_scale: 0.3 # step 0 element penalty 降权
+ num_timesteps: 4
+ refinement_strategy: continuous_sizing_field
+ reward_type: spatial
+ element_penalty:
+ value: 0.02
+ maximum_elements: 50000
+ element_limit_penalty: 10000
+ # ... (FEM / Helmholtz / 特征配置见 config.yaml)
+
+network:
+ latent_dimension: 64
+ use_global_conditioned_correction: true # Actor/Critic 拼接 g_global + 局部相对特征
+ use_global_stats: true # 启用 MultiPoolGVN + 13 维全局统计
+ gvn_pooling: [mean, eta_softmax] # 池化策略(可选加 top_eta)
+ correction_centering: true # correction 在 eligible 集内中心化
+ base:
+ edge_dropout: 0.1
+ scatter_reduce: mean
+ stack:
+ num_steps: 2
+ mlp:
+ activation_function: leakyrelu
+ num_layers: 2
+ actor:
+ mlp:
+ activation_function: tanh
+ num_layers: 2
+ critic:
+ mlp:
+ activation_function: tanh
+ num_layers: 2
+ training:
+ learning_rate: 0.0003
+ lr_decay: 1.0
+```
+
+### 实验对照建议
+
+| 实验 | `correction_reg_coef` | `step0_penalty_scale` | 目的 |
+|------|----------------------|----------------------|------|
+| A (baseline) | 0.0 | 1.0 | 无正则、无降权 |
+| B (corr reg only) | 0.03 | 1.0 | 验证 correction 正则效果(优先) |
+| C (both) | 0.03 | 0.3 | 正则 + step0 降权 |
+
+成功标准(非训练 reward 高低):
+- `corr_std` 不再持续涨到 ~0.15
+- `r_le_sc` 保持更接近 η baseline
+- top-k overlap 不随训练后期明显下降
+- validation `aw_rel / max_err` 更稳定
+
+---
+
+## Correction GNN 训练数据
+
+Correction GNN 用于二分类预测:给定当前网格,哪些单元需要加密(teacher_mark=1)。
+训练数据由 `outlook/src/gen.py` 生成。
+
+### 参数采样
+
+每个样本随机采样物理参数:
+
+| 参数 | 分布 | 说明 |
+|------|------|------|
+| `k` | Uniform(3, 15) | 波数 |
+| `eps_r` | Uniform(2, 8) | 介质相对介电常数 |
+| `cx` | Uniform(0.2, 0.8) | 散射体中心 x |
+| `cy` | Uniform(0.2, 0.8) | 散射体中心 y |
+| `radius` | Uniform(0.05, 0.25) | 散射体半径 |
+
+### 初始网格
+
+采用物理自适应初始网格(`make_initial_mesh`),元素尺寸由局域波长决定:
+
+- **介质外**: h ≤ λ₀ / q, λ₀ = 2π / k
+- **介质内/散射体附近**: h ≤ λ_eff / q, λ_eff = 2π / (k √ε_r)
+- **q = 2**(每波长 2 个单元)
+
+网格在 [0,1]×[0,1] 域上通过张量积生成,x/y 方向各自根据散射体位置做分级加密:
+- 远离散射体:粗网格(h = λ₀/q)
+- 散射体附近(含过渡区):细网格(h = λ_eff/q)
+
+### AMR 循环与标签生成
+
+对每个参数样本,运行残差驱动 AMR 循环,每步保存快照:
+
+```
+for step in range(max_steps):
+ 1. FEM 求解 → u_scat
+ 2. 计算残差指示子 η(teacher 信号)
+ 3. 计算 physics_score = h / λ_eff(物理 baseline)
+ 4. teacher_mark = top-fraction(η, mark_fraction) # 二值标签
+ physics_mark = top-fraction(physics_score, mark_fraction) # 物理 baseline
+ correction_label = teacher_mark - physics_mark # {-1, 0, +1}
+ 5. 提取 16 维节点特征 + 边索引
+ 6. 保存 .npz → 残差指示子 top-k 加密 → 下一步
+```
+
+- **mark_fraction**: 默认 0.03(每步标记 top 3% 的单元为正样本)
+- **top-fraction**: 按 score 降序取 top `n × fraction` 个单元,标记为 1
+- **teacher_mark**: 以 η(残差指示子)为 score,代表"最优加密目标"
+- **physics_mark**: 以 h/λ_eff 为 score,代表"纯物理 baseline"
+- **correction_label**: teacher 与 physics 的差集,+1 = teacher 独有(GNN 应补充),-1 = physics 独有(GNN 应抑制)
+
+### 数据文件格式
+
+每个样本每步保存为 `sample{id}_step{step}.npz`,包含:
+
+| 字段 | 形状 | 说明 |
+|------|------|------|
+| `features` | (n_elem, 16) | 15 维几何/PDE 特征 + 1 维 physics_score |
+| `edge_index` | (2, n_edges) | 双向边 + 自环 |
+| `physics_score` | (n_elem,) | h / λ_eff |
+| `teacher_eta` | (n_elem,) | 残差指示子 η |
+| `teacher_mark` | (n_elem,) | 二值标签 (0/1) |
+| `physics_mark` | (n_elem,) | 物理 baseline 标签 (0/1) |
+| `correction_label` | (n_elem,) | 差集标签 (-1/0/+1) |
+| `k, eps_r, cx, cy, radius` | scalar | 物理参数 |
+| `elements` | scalar | 当前单元数 |
+| `step` | scalar | AMR 步数 |
+
+---
+
+## One-Shot Density Prediction
+
+One-shot final mesh density prediction experiments are documented in [`outlook/README.md`](outlook/README.md).
diff --git a/checkpoints/model_final.pt b/checkpoints/model_final.pt
index 96c9f34..2c96e28 100644
Binary files a/checkpoints/model_final.pt and b/checkpoints/model_final.pt differ
diff --git a/checkpoints/model_iter0050.pt b/checkpoints/model_iter0050.pt
index 2d73588..c1bfa8e 100644
Binary files a/checkpoints/model_iter0050.pt and b/checkpoints/model_iter0050.pt differ
diff --git a/checkpoints/model_iter0100.pt b/checkpoints/model_iter0100.pt
index 18ec256..bd5a1d6 100644
Binary files a/checkpoints/model_iter0100.pt and b/checkpoints/model_iter0100.pt differ
diff --git a/checkpoints/model_iter0150.pt b/checkpoints/model_iter0150.pt
index 16dc8c9..ccc2438 100644
Binary files a/checkpoints/model_iter0150.pt and b/checkpoints/model_iter0150.pt differ
diff --git a/checkpoints/model_iter0200.pt b/checkpoints/model_iter0200.pt
index 344a1cc..e4651d4 100644
Binary files a/checkpoints/model_iter0200.pt and b/checkpoints/model_iter0200.pt differ
diff --git a/checkpoints/model_iter0250.pt b/checkpoints/model_iter0250.pt
index 11a8dfd..46ac5b3 100644
Binary files a/checkpoints/model_iter0250.pt and b/checkpoints/model_iter0250.pt differ
diff --git a/checkpoints/model_iter0300.pt b/checkpoints/model_iter0300.pt
index 5853b18..3563576 100644
Binary files a/checkpoints/model_iter0300.pt and b/checkpoints/model_iter0300.pt differ
diff --git a/checkpoints/model_iter0350.pt b/checkpoints/model_iter0350.pt
index 9cdcabd..9a841fb 100644
Binary files a/checkpoints/model_iter0350.pt and b/checkpoints/model_iter0350.pt differ
diff --git a/checkpoints/model_iter0400.pt b/checkpoints/model_iter0400.pt
index 1ef54ce..74dbf4d 100644
Binary files a/checkpoints/model_iter0400.pt and b/checkpoints/model_iter0400.pt differ
diff --git a/checkpoints/model_iter0401.pt b/checkpoints/model_iter0401.pt
index 4be1ab7..45c9afe 100644
Binary files a/checkpoints/model_iter0401.pt and b/checkpoints/model_iter0401.pt differ
diff --git a/checkpoints_beforedwr/model_final.pt b/checkpoints_beforedwr/model_final.pt
new file mode 100644
index 0000000..703d04c
Binary files /dev/null and b/checkpoints_beforedwr/model_final.pt differ
diff --git a/checkpoints_beforedwr/model_iter0050.pt b/checkpoints_beforedwr/model_iter0050.pt
new file mode 100644
index 0000000..f426bca
Binary files /dev/null and b/checkpoints_beforedwr/model_iter0050.pt differ
diff --git a/checkpoints_beforedwr/model_iter0100.pt b/checkpoints_beforedwr/model_iter0100.pt
new file mode 100644
index 0000000..5b94e04
Binary files /dev/null and b/checkpoints_beforedwr/model_iter0100.pt differ
diff --git a/checkpoints_beforedwr/model_iter0150.pt b/checkpoints_beforedwr/model_iter0150.pt
new file mode 100644
index 0000000..7f67837
Binary files /dev/null and b/checkpoints_beforedwr/model_iter0150.pt differ
diff --git a/checkpoints_beforedwr/model_iter0200.pt b/checkpoints_beforedwr/model_iter0200.pt
new file mode 100644
index 0000000..9872445
Binary files /dev/null and b/checkpoints_beforedwr/model_iter0200.pt differ
diff --git a/checkpoints_beforedwr/model_iter0250.pt b/checkpoints_beforedwr/model_iter0250.pt
new file mode 100644
index 0000000..9974f38
Binary files /dev/null and b/checkpoints_beforedwr/model_iter0250.pt differ
diff --git a/checkpoints_beforedwr/model_iter0300.pt b/checkpoints_beforedwr/model_iter0300.pt
new file mode 100644
index 0000000..968c045
Binary files /dev/null and b/checkpoints_beforedwr/model_iter0300.pt differ
diff --git a/checkpoints_beforedwr/model_iter0350.pt b/checkpoints_beforedwr/model_iter0350.pt
new file mode 100644
index 0000000..427355c
Binary files /dev/null and b/checkpoints_beforedwr/model_iter0350.pt differ
diff --git a/checkpoints_beforedwr/model_iter0400.pt b/checkpoints_beforedwr/model_iter0400.pt
new file mode 100644
index 0000000..bf80a25
Binary files /dev/null and b/checkpoints_beforedwr/model_iter0400.pt differ
diff --git a/checkpoints_beforedwr/model_iter0401.pt b/checkpoints_beforedwr/model_iter0401.pt
new file mode 100644
index 0000000..11dbb05
Binary files /dev/null and b/checkpoints_beforedwr/model_iter0401.pt differ
diff --git a/checkpoints_beforenfft/model_iter0100.pt b/checkpoints_beforenfft/model_iter0100.pt
new file mode 100644
index 0000000..18ec256
Binary files /dev/null and b/checkpoints_beforenfft/model_iter0100.pt differ
diff --git a/checkpoints_beforenfft/model_iter0150.pt b/checkpoints_beforenfft/model_iter0150.pt
new file mode 100644
index 0000000..16dc8c9
Binary files /dev/null and b/checkpoints_beforenfft/model_iter0150.pt differ
diff --git a/checkpoints_beforenfft/model_iter0200.pt b/checkpoints_beforenfft/model_iter0200.pt
new file mode 100644
index 0000000..344a1cc
Binary files /dev/null and b/checkpoints_beforenfft/model_iter0200.pt differ
diff --git a/checkpoints_beforenfft/model_iter0250.pt b/checkpoints_beforenfft/model_iter0250.pt
new file mode 100644
index 0000000..11a8dfd
Binary files /dev/null and b/checkpoints_beforenfft/model_iter0250.pt differ
diff --git a/checkpoints_beforenfft/model_iter0300.pt b/checkpoints_beforenfft/model_iter0300.pt
new file mode 100644
index 0000000..5853b18
Binary files /dev/null and b/checkpoints_beforenfft/model_iter0300.pt differ
diff --git a/checkpoints_beforenfft/model_iter0350.pt b/checkpoints_beforenfft/model_iter0350.pt
new file mode 100644
index 0000000..9cdcabd
Binary files /dev/null and b/checkpoints_beforenfft/model_iter0350.pt differ
diff --git a/checkpoints_beforenfft/model_iter0400.pt b/checkpoints_beforenfft/model_iter0400.pt
new file mode 100644
index 0000000..1ef54ce
Binary files /dev/null and b/checkpoints_beforenfft/model_iter0400.pt differ
diff --git a/checkpoints_beforenfft/model_iter0401.pt b/checkpoints_beforenfft/model_iter0401.pt
new file mode 100644
index 0000000..4be1ab7
Binary files /dev/null and b/checkpoints_beforenfft/model_iter0401.pt differ
diff --git a/environment/__pycache__/domain.cpython-310.pyc b/environment/__pycache__/domain.cpython-310.pyc
index 82ff068..ba92ac0 100644
Binary files a/environment/__pycache__/domain.cpython-310.pyc and b/environment/__pycache__/domain.cpython-310.pyc differ
diff --git a/environment/__pycache__/fem_util.cpython-310.pyc b/environment/__pycache__/fem_util.cpython-310.pyc
index aee08f5..ef2196c 100644
Binary files a/environment/__pycache__/fem_util.cpython-310.pyc and b/environment/__pycache__/fem_util.cpython-310.pyc differ
diff --git a/environment/__pycache__/helmholtz.cpython-310.pyc b/environment/__pycache__/helmholtz.cpython-310.pyc
index 953a2d9..a096494 100644
Binary files a/environment/__pycache__/helmholtz.cpython-310.pyc and b/environment/__pycache__/helmholtz.cpython-310.pyc differ
diff --git a/environment/__pycache__/helmholtz.cpython-313.pyc b/environment/__pycache__/helmholtz.cpython-313.pyc
index a33ad3e..d19db21 100644
Binary files a/environment/__pycache__/helmholtz.cpython-313.pyc and b/environment/__pycache__/helmholtz.cpython-313.pyc differ
diff --git a/environment/__pycache__/mesh_refinement.cpython-313.pyc b/environment/__pycache__/mesh_refinement.cpython-313.pyc
index 01b631a..84975b8 100644
Binary files a/environment/__pycache__/mesh_refinement.cpython-313.pyc and b/environment/__pycache__/mesh_refinement.cpython-313.pyc differ
diff --git a/environment/__pycache__/mie_solution.cpython-313.pyc b/environment/__pycache__/mie_solution.cpython-313.pyc
new file mode 100644
index 0000000..3ba0d97
Binary files /dev/null and b/environment/__pycache__/mie_solution.cpython-313.pyc differ
diff --git a/environment/mesh_refinement.py b/environment/mesh_refinement.py
index 88fe0b1..76b53cc 100644
--- a/environment/mesh_refinement.py
+++ b/environment/mesh_refinement.py
@@ -1,3 +1,4 @@
+import time
from typing import Any, Callable, Dict, List, Optional, Tuple, Union
import gym
@@ -55,7 +56,6 @@ class MeshRefinement(gym.Env):
# graph connectivity, feature and action space #
################################################
self._reward_type = environment_config.get("reward_type")
- self._global_reward_alpha = float(environment_config.get("global_reward_alpha", 0.2))
_rho_w = environment_config.get("rho_weights", {})
self._w_rho_int = float(_rho_w.get("w_int", 1.0))
self._w_rho_jump = float(_rho_w.get("w_jump", 1.0))
@@ -223,6 +223,25 @@ class MeshRefinement(gym.Env):
self._diag_selected_count = -1 # 防止跨 episode 残留触发 is_terminal
self._diag_dorfler_tail_ratio = 0.0
self._diag_dorfler_floor_active = False
+ self._diag_corr_raw_mean = 0.0
+ self._diag_corr_mean = 0.0
+ self._diag_corr_std = 0.0
+ self._diag_corr_abs = 0.0
+ self._diag_neg_ratio = 0.0
+ self._diag_score_eta_corr = 0.0
+ self._diag_max_by_budget = 0
+ self._diag_max_by_growth = 0
+ self._diag_n_budget = 0
+ self._diag_remaining = 0
+ self._diag_n_eligible = 0
+ self._diag_n_next = 0
+ self._diag_corr_rel_eta_corr = 0.0
+ self._diag_corr_inside_mean = 0.0
+ self._diag_corr_outside_mean = 0.0
+ self._diag_corr_top_eta_mean = 0.0
+ self._diag_corr_low_eta_mean = 0.0
+ self._diag_global_top10_eta_energy = 0.0
+ self._diag_remaining_ratio = 0.0
# reset internal state that tracks statistics over the episode
self._previous_error_per_element = self.error_per_element
@@ -325,9 +344,11 @@ class MeshRefinement(gym.Env):
# solve equation and calculate error per element/element
self._previous_error_per_element = self.error_per_element
+ t_fem = time.perf_counter()
self._error_estimation_dict = (
self.fem_problem.calculate_solution_and_get_error()
)
+ self._last_fem_solve_ms = (time.perf_counter() - t_fem) * 1e3
# query returns
observation = self.last_observation
@@ -346,12 +367,30 @@ class MeshRefinement(gym.Env):
"is_truncated": self.is_truncated,
"return": self._cumulative_return,
"neg_action_ratio": getattr(self, "_diag_neg_ratio", 0.0),
+ "corr_raw_mean": getattr(self, "_diag_corr_raw_mean", 0.0),
+ "corr_mean": getattr(self, "_diag_corr_mean", 0.0),
+ "corr_std": getattr(self, "_diag_corr_std", 0.0),
+ "corr_abs": getattr(self, "_diag_corr_abs", 0.0),
+ "score_eta_corr": getattr(self, "_diag_score_eta_corr", 0.0),
"eligible_ratio": getattr(self, "_diag_eligible_ratio", 0.0),
"masked_ratio": getattr(self, "_diag_masked_ratio", 0.0),
"selected_count": getattr(self, "_diag_selected_count", 0),
"dorfler_tail_ratio": getattr(self, "_diag_dorfler_tail_ratio", 0.0),
"dorfler_floor_active": float(getattr(self, "_diag_dorfler_floor_active", False)),
"n_budget": self._n_budget,
+ "remaining": getattr(self, "_diag_remaining", 0),
+ "max_by_budget": getattr(self, "_diag_max_by_budget", 0),
+ "max_by_growth": getattr(self, "_diag_max_by_growth", 0),
+ "n_eligible": getattr(self, "_diag_n_eligible", 0),
+ "n_next": getattr(self, "_diag_n_next", 0),
+ "fem_solve_ms": self._last_fem_solve_ms,
+ "corr_rel_eta_corr": getattr(self, "_diag_corr_rel_eta_corr", 0.0),
+ "corr_inside_mean": getattr(self, "_diag_corr_inside_mean", 0.0),
+ "corr_outside_mean": getattr(self, "_diag_corr_outside_mean", 0.0),
+ "corr_top_eta_mean": getattr(self, "_diag_corr_top_eta_mean", 0.0),
+ "corr_low_eta_mean": getattr(self, "_diag_corr_low_eta_mean", 0.0),
+ "global_top10_eta_energy": getattr(self, "_diag_global_top10_eta_energy", 0.0),
+ "remaining_ratio": getattr(self, "_diag_remaining_ratio", 0.0),
}
)
return observation, self._reward, done, info
@@ -527,31 +566,56 @@ class MeshRefinement(gym.Env):
if self._refinement_strategy == "continuous_sizing_field":
# ================================================================
- # Score-based 细化选择(由 actor 直接排序,物理预算约束)
+ # Score-based 细化选择:log(η) baseline + bounded Actor correction
#
- # Actor 输出标量 x_i: x_i < 0 → 希望细化; x_i > 0 → 不希望细化
- # 排序依据 score = -x_i,在预算和上限内选 top-k
+ # score_i = log(η_i + eps) + c · tanh(δ_i)
#
- # 物理预算 N_budget: Σ area_K / A_budget,其中
- # A_budget = ½(λ_local/6)²,对应每局部波长方向 ~6 个尺度点
+ # η_i = current-step residual indicator (physical prior)
+ # δ_i = Actor output (continuous scalar per element)
+ # c = correction_scale (0.7) — bounds Actor influence
+ # eps = dynamic: 0.01 · median(η) — prevents log(0)
#
- # 动作掩码 (Reverse Dörfler): 按 η_K 升序排列,剔除累积平方误差
- # 贡献 < ε_noise·Ση² 的底部单元(数值噪声/已收敛区),保留 ≥20%
- # 的单元确保 Agent 始终有充分的选择空间
+ # Selection: top-k by score descending (higher score → refine).
+ # Actor can boost or suppress priority by at most ±c in the log-η
+ # domain, but cannot override the physical prior.
# ================================================================
- x = action.flatten()
+ delta = action.flatten()
- # ── 训练监控指标(在所有 early return 之前计算)──
- self._diag_neg_ratio = float(np.mean(x < 0.0))
+ eta = self._eta_indicator
+ eps_score = max(0.01 * float(np.median(eta)), 1e-12)
+ log_eta = np.log(np.maximum(eta, 1e-30) + eps_score)
+
+ c = float(self._environment_config.get("correction_scale", 0.7))
+ corr_raw = c * np.tanh(delta)
remaining = self._n_budget - self._num_elements
- max_parents_by_budget = max(0, remaining // 3)
+ max_parents_by_budget = max(0, remaining // 6)
+
+ self._diag_max_by_budget = max_parents_by_budget
if max_parents_by_budget <= 0:
self._diag_eligible_ratio = 0.0
self._diag_selected_count = 0
self._diag_dorfler_tail_ratio = 0.0
self._diag_dorfler_floor_active = False
+ self._diag_max_by_growth = max(1, self._num_elements // 4)
+ self._diag_n_budget = self._n_budget
+ self._diag_remaining = remaining
+ self._diag_n_eligible = 0
+ self._diag_n_next = self._num_elements
+ self._diag_corr_raw_mean = float(np.mean(corr_raw))
+ self._diag_corr_mean = 0.0
+ self._diag_corr_std = 0.0
+ self._diag_corr_abs = 0.0
+ self._diag_neg_ratio = float(np.mean(delta < 0.0))
+ self._diag_score_eta_corr = 0.0
+ self._diag_corr_rel_eta_corr = 0.0
+ self._diag_corr_inside_mean = 0.0
+ self._diag_corr_outside_mean = 0.0
+ self._diag_corr_top_eta_mean = 0.0
+ self._diag_corr_low_eta_mean = 0.0
+ self._diag_global_top10_eta_energy = 0.0
+ self._diag_remaining_ratio = remaining / max(self._n_budget, 1)
return np.array([], dtype=np.int64)
# 动态计算每单元预算面积(仅用于 N_budget 全局资源上限)
@@ -560,32 +624,23 @@ class MeshRefinement(gym.Env):
lambda_local = 2.0 * np.pi / (k * np.sqrt(np.maximum(eps_r_elem, 1.0)))
A_budget = 0.5 * (lambda_local / 6.0) ** 2
- # 纯数值安全底线:仅防止 scikit-fem 因浮点精度导致的退化/奇异。
- # 不再用 0.25*A_budget —— RL 应自主学会"多细才够",
- # 而非被人为启发式 (12 点/波长) 限制。
domain_area = float(np.prod(self.fem_problem.plot_boundary[2:] - self.fem_problem.plot_boundary[:2]))
V_min_safeguard = 1e-10 * domain_area
- # Filter 1: numerical safeguard only — no physics heuristic
+ # Filter 1: numerical safeguard only
area_eligible = np.where(self.element_volumes > V_min_safeguard)[0]
- # Filter 2: Reverse Dörfler — eliminate the noise tail, not select the elite.
- # Sort η_K ascending; remove the smallest elements whose cumulative η²
- # contributes < ε_noise of total error energy. These are numerically
- # converged or noise — not worth the agent's attention.
- # A 20% floor on the eligible ratio guarantees the agent meaningful
- # choices even in heavy-tailed distributions where energy is concentrated.
+ # Filter 2: Reverse Dörfler — eliminate noise tail
eta_current = self._eta_indicator
eta_sq = eta_current ** 2
total_energy = np.sum(eta_sq)
if total_energy > 0:
- idx_asc = np.argsort(eta_current) # ascending
+ idx_asc = np.argsort(eta_current)
cumsum_asc = np.cumsum(eta_sq[idx_asc])
- eps_noise = 0.01 # bottom 1% of energy = noise tail
+ eps_noise = 0.01
k_dorfler = int(np.searchsorted(cumsum_asc, eps_noise * total_energy))
self._diag_dorfler_tail_ratio = float(k_dorfler) / max(self._num_elements, 1)
- # floor: keep at least 20% of elements for RL agent choice
min_keep = max(1, self._num_elements // 5)
k = min(k_dorfler, self._num_elements - min_keep)
self._diag_dorfler_floor_active = k < k_dorfler
@@ -597,26 +652,104 @@ class MeshRefinement(gym.Env):
eligible = np.intersect1d(area_eligible, error_eligible)
+ # ── correction centering (eligible only) ──
+ # Global shift is meaningless for top-k ranking; center within
+ # eligible candidates so the Actor only controls relative priority.
+ self._diag_corr_raw_mean = float(np.mean(corr_raw))
+ if len(eligible) > 0:
+ corr = corr_raw - np.mean(corr_raw[eligible])
+ else:
+ corr = corr_raw - np.mean(corr_raw)
+
+ score = log_eta + corr
+
+ # ── diagnostics ──
+ self._diag_neg_ratio = float(np.mean(delta < 0.0))
+ self._diag_corr_mean = float(np.mean(corr))
+ self._diag_corr_std = float(np.std(corr))
+ self._diag_corr_abs = float(np.mean(np.abs(corr)))
+ # Spearman-like: Pearson r between log_eta and score
+ le = log_eta - log_eta.mean()
+ sc = score - score.mean()
+ denom = np.sqrt(np.sum(le**2) * np.sum(sc**2))
+ self._diag_score_eta_corr = float(np.sum(le * sc) / max(denom, 1e-12))
+
self._diag_eligible_ratio = float(len(eligible)) / max(self._num_elements, 1)
self._diag_masked_ratio = (
1.0 - float(len(eligible)) / max(len(area_eligible), 1)
if len(area_eligible) > 0 else 0.0
)
+ # ── GVN global-conditioned correction diagnostics ──
+ # corr-rel_logeta correlation
+ rel_le = log_eta - log_eta.mean()
+ rel_corr = corr - corr.mean()
+ denom_rc = np.sqrt(np.sum(rel_le**2) * np.sum(rel_corr**2))
+ self._diag_corr_rel_eta_corr = float(
+ np.sum(rel_le * rel_corr) / max(denom_rc, 1e-12)
+ )
+
+ # correction by region (inside/outside scatterer)
+ eps_r = self._epsilon_r_elements
+ inside_mask = eps_r > 1.0
+ outside_mask = ~inside_mask
+ self._diag_corr_inside_mean = float(np.mean(corr[inside_mask])) if inside_mask.any() else 0.0
+ self._diag_corr_outside_mean = float(np.mean(corr[outside_mask])) if outside_mask.any() else 0.0
+
+ # correction by eta rank
+ eta = self._eta_indicator
+ k10 = max(1, int(0.1 * self._num_elements))
+ top_idx = np.argsort(eta)[-k10:]
+ low_idx = np.argsort(eta)[:self._num_elements // 2]
+ self._diag_corr_top_eta_mean = float(np.mean(corr[top_idx]))
+ self._diag_corr_low_eta_mean = float(np.mean(corr[low_idx]))
+
+ # global top10 eta energy and remaining ratio
+ eta_sq = eta ** 2
+ total_energy = float(np.sum(eta_sq))
+ self._diag_global_top10_eta_energy = (
+ float(np.sum(eta_sq[top_idx])) / (total_energy + 1e-12)
+ )
+ self._diag_remaining_ratio = remaining / max(self._n_budget, 1)
+
+ max_by_growth = max(1, self._num_elements // 4)
+ self._diag_max_by_growth = max_by_growth
+ self._diag_n_budget = self._n_budget
+ self._diag_remaining = remaining
+ self._diag_n_eligible = len(eligible)
+
num = min(
len(eligible),
- max(1, self._num_elements // 4),
+ max_by_growth,
max_parents_by_budget,
)
if num <= 0:
self._diag_selected_count = 0
+ self._diag_n_next = self._num_elements
return np.array([], dtype=np.int64)
- # x 越小 ⇒ 优先级越高(纯排序,不设正负门槛)
- score = -x
- selected = eligible[np.argsort(score[eligible])[-num:]]
+ # top-k by score descending with physical tie-breaking
+ # (avoids spatially arbitrary selection when scores are tied)
+ _fp = self.fem_problem.fem_problem
+ _cx = getattr(_fp, "_cx", 0.5)
+ _cy = getattr(_fp, "_cy", 0.5)
+ _radius = getattr(_fp, "_radius", 0.2)
+ _mesh = self.mesh
+ _p = _mesh.p
+ _t = _mesh.t
+ _mx = (_p[0, _t[0]] + _p[0, _t[1]] + _p[0, _t[2]]) / 3.0
+ _my = (_p[1, _t[0]] + _p[1, _t[1]] + _p[1, _t[2]]) / 3.0
+ _dist = np.sqrt((_mx - _cx)**2 + (_my - _cy)**2)
+ _sd = _dist - _radius
+ _inside = (_dist <= _radius).astype(np.float32)
+ _abs_sd = np.abs(_sd[eligible])
+ _inside_elig = _inside[eligible]
+ _tie_key = -_abs_sd + _inside_elig
+ _composite = score[eligible] * 1e6 + _tie_key
+ selected = eligible[np.argsort(_composite)[-num:]]
self._diag_selected_count = len(selected)
+ self._diag_n_next = self._num_elements + len(selected) * 3 # estimate
elements_to_refine = selected
elif self._refinement_strategy in ["absolute", "absolute_discrete"]:
@@ -700,6 +833,93 @@ class MeshRefinement(gym.Env):
error_per_dim = np.sqrt(np.sum(error_per_element**2, axis=0))
return float(self.project_to_scalar(error_per_dim))
+ @property
+ def num_global_stats(self) -> int:
+ """Number of global statistics attached to each graph observation."""
+ return 13
+
+ def _compute_global_stats(self) -> np.ndarray:
+ """Compute graph-level global statistics for GVN conditioning.
+
+ Returns: np.ndarray of shape (num_global_stats,) with keys:
+ [0] remaining_ratio — (N_budget - N_current) / N_budget
+ [1] step_ratio — current_step / max_steps
+ [2] elem_ratio — N_current / N_budget
+ [3] logeta_mean
+ [4] logeta_std
+ [5] logeta_max
+ [6] logeta_p90
+ [7] logeta_p75
+ [8] top10_eta_energy_ratio — top 10% eta^2 energy / total
+ [9] eligible_ratio — elements above area safeguard / total
+ [10] inside_eta_energy — eta energy inside scatterer / total
+ [11] outside_eta_energy — eta energy outside scatterer / total
+ [12] interface_eta_energy — eta energy near interface / total
+ """
+ eta = self._eta_indicator
+ N = self._num_elements
+ eps = 1e-12
+
+ # log-eta for percentile stats
+ eps_score = max(0.01 * float(np.median(eta)), 1e-12)
+ logeta = np.log(np.maximum(eta, 1e-30) + eps_score)
+
+ # budget stats
+ remaining = max(0, self._n_budget - N)
+ remaining_ratio = remaining / max(self._n_budget, 1)
+ step_ratio = self._timestep / max(self._max_timesteps, 1)
+ elem_ratio = N / max(self._n_budget, 1)
+
+ # logeta stats
+ le_mean = float(np.mean(logeta))
+ le_std = float(np.std(logeta)) + 1e-8
+ le_max = float(np.max(logeta))
+ le_p90 = float(np.percentile(logeta, 90))
+ le_p75 = float(np.percentile(logeta, 75))
+
+ # top 10% eta energy ratio
+ eta_sq = eta ** 2
+ total_energy = float(np.sum(eta_sq))
+ if total_energy > 0:
+ k10 = max(1, int(0.1 * N))
+ top10_idx = np.argsort(eta_sq)[-k10:]
+ top10_ratio = float(np.sum(eta_sq[top10_idx])) / (total_energy + eps)
+ else:
+ top10_ratio = 0.0
+
+ # eligible ratio (area safeguard)
+ domain_area = float(np.prod(
+ self.fem_problem.plot_boundary[2:] - self.fem_problem.plot_boundary[:2]
+ ))
+ V_min = 1e-10 * domain_area
+ eligible_ratio = float(np.sum(self.element_volumes > V_min)) / max(N, 1)
+
+ # region eta energy ratios
+ eps_r = self._epsilon_r_elements
+ inside_mask = eps_r > 1.0
+ outside_mask = ~inside_mask
+
+ fp = self.fem_problem.fem_problem
+ cx = getattr(fp, "_cx", 0.5)
+ cy = getattr(fp, "_cy", 0.5)
+ radius = getattr(fp, "_radius", 0.2)
+ midpoints = self._element_midpoints
+ dist_raw = np.sqrt((midpoints[:, 0] - cx)**2 + (midpoints[:, 1] - cy)**2)
+ lam = 2.0 * np.pi / max(self._wave_number, 1e-8)
+ interface_mask = np.abs(dist_raw - radius) < 0.2 * lam
+
+ inside_energy = float(np.sum(eta_sq[inside_mask])) / (total_energy + eps)
+ outside_energy = float(np.sum(eta_sq[outside_mask])) / (total_energy + eps)
+ interface_energy = float(np.sum(eta_sq[interface_mask])) / (total_energy + eps)
+
+ stats = np.array([
+ remaining_ratio, step_ratio, elem_ratio,
+ le_mean, le_std, le_max, le_p90, le_p75,
+ top10_ratio, eligible_ratio,
+ inside_energy, outside_energy, interface_energy,
+ ], dtype=np.float32)
+ return stats
+
@property
def last_observation(self) -> Data:
"""
@@ -716,6 +936,10 @@ class MeshRefinement(gym.Env):
observation_graph = Data(**graph_dict)
observation_graph.eta = torch.tensor(self._eta_indicator, dtype=torch.float32)
+ observation_graph.area = torch.tensor(self.element_volumes, dtype=torch.float32)
+ observation_graph.global_stats = torch.tensor(
+ self._compute_global_stats(), dtype=torch.float32
+ ).unsqueeze(0) # [1, num_global_stats]
return observation_graph
@@ -932,25 +1156,16 @@ class MeshRefinement(gym.Env):
reward_per_agent = self.project_to_scalar(reward_per_agent_and_dim)
- # ── Causal isolation + bounded signals ──
- # r_local: clipped to [−1, +1] — prevents pollution-error inversions
- # (±4.6) from hijacking the Critic's value estimate.
- # r_bonus: 0.5·tanh(η/μ − 1) — linear near μ (preserves Dörfler),
- # saturates at ±0.5 for extreme η, bounded and safe.
- # Unrefined parents: r = 0 (causal isolation).
+ # ── Pure local improvement reward (no modulation, no bonus) ──
+ # r_i = clip(log(η_old) − log(l2(η_child)), 0, rmax)
+ # L₂ aggregation guarantees r_local ≥ 0; clip lower bound at 0 as
+ # a safety floor against floating-point noise.
+ rmax = 2.0
unique_old, counts = np.unique(self.agent_mapping, return_counts=True)
refined_mask = np.zeros(len(reward_per_agent), dtype=bool)
refined_mask[unique_old[counts > 1]] = True
- # Clip r_local to prevent outlier-driven value collapse
- reward_per_agent = np.clip(reward_per_agent, -1.0, 1.0)
-
- # Bounded state bonus: tanh preserves Dörfler near μ, caps at extreme η
- eta_raw = self._previous_eta_indicator
- mu_eta = float(np.mean(eta_raw))
- reward_per_agent[refined_mask] += 0.5 * np.tanh(
- eta_raw[refined_mask] / (mu_eta + 1e-8) - 1.0
- )
+ reward_per_agent = np.clip(reward_per_agent, 0.0, rmax)
# Unrefined: clean zero (causal isolation)
reward_per_agent[~refined_mask] = 0.0
@@ -958,31 +1173,30 @@ class MeshRefinement(gym.Env):
# apply action/element penalty (refined parents only)
element_penalty = np.zeros(len(reward_per_agent), dtype=reward_per_agent.dtype)
element_penalty[unique_old] = self._element_penalty_lambda * (counts - 1)
+
+ # Step 0 penalty scaling: reduce element penalty on first refinement step
+ # to prevent "reward < 0 but aw_rel improved" feedback inversion.
+ step0_scale = float(self._environment_config.get("step0_penalty_scale", 1.0))
+ penalty_scale = step0_scale if self._timestep == 1 else 1.0
+ element_penalty = element_penalty * penalty_scale
+
element_limit_penalty = (
(self._element_limit_penalty / self._previous_num_elements)
if self.reached_element_limits
else 0
)
+
+ # Step 0 diagnostics (r_local = reward before penalty, already clipped)
+ r_local_pre_penalty = reward_per_agent.copy()
+ _step0_penalty_scale = penalty_scale
+ _step0_avg_penalty = float(np.mean(element_penalty[refined_mask])) if refined_mask.any() else 0.0
+ _step0_avg_r_local = float(np.mean(r_local_pre_penalty[refined_mask])) if refined_mask.any() else 0.0
+ _step0_step_id = self._timestep
+
reward_per_agent = (
reward_per_agent - element_penalty - element_limit_penalty
)
- # ── Global error change (diagnostic only, NOT injected into Actor reward) ──
- # Removing global_bonus from per-element reward eliminates the broken causal
- # chain: Helmholtz pollution error can make E_new > E_old even when the
- # selected elements were the right choice, punishing agents for physics
- # they didn't cause. Actor optimises r_local only; Critic captures global
- # effects through value estimation.
- l2_old = self._previous_solution_l2_norm
- l2_new = self._compute_solution_l2_norm()
- eta_l2_old = float(np.sqrt(np.sum(old_eta ** 2)))
- eta_l2_new = float(np.sqrt(np.sum(new_eta ** 2)))
- eps_l2 = 1e-12
- E_old = eta_l2_old / max(l2_old, eps_l2)
- E_new = eta_l2_new / max(l2_new, eps_l2)
- global_bonus = self._global_reward_alpha * float(np.log(E_old + eps_l2) - np.log(E_new + eps_l2))
- # global_bonus intentionally NOT added to reward_per_agent — see above.
-
self._reward_per_agent = reward_per_agent
self._cumulative_reward_per_agent = (
self._cumulative_reward_per_agent[self._previous_agent_mapping]
@@ -991,11 +1205,15 @@ class MeshRefinement(gym.Env):
reward = reward_per_agent
reward_dict["reward"] = reward
- reward_dict["potential_bonus"] = global_bonus
reward_dict["penalty"] = -reward
reward_dict["element_limit_penalty"] = element_limit_penalty
reward_dict["element_penalty"] = element_penalty
reward_dict["element_penalty_lambda"] = self._element_penalty_lambda
+ # Step 0 penalty scaling diagnostics
+ reward_dict["penalty_scale"] = _step0_penalty_scale
+ reward_dict["avg_penalty"] = _step0_avg_penalty
+ reward_dict["avg_r_local"] = _step0_avg_r_local
+ reward_dict["step_id"] = _step0_step_id
return reward, reward_dict
@property
diff --git a/outlook/README.md b/outlook/README.md
new file mode 100644
index 0000000..50a7304
--- /dev/null
+++ b/outlook/README.md
@@ -0,0 +1,469 @@
+# Outlook: GNN-Guided Adaptive Mesh Refinement for 2D Helmholtz Scattering
+
+## 1. 问题定义
+
+求解 2D 介质圆柱的电磁散射(散射场公式):
+
+```
+∇²u + k²·ε_r·u = −k²·(ε_r − 1)·u_inc
+∂u/∂n − i·k_local·u = 0 (Sommerfeld 辐射 BC)
+```
+
+- 入射波:`u_inc = exp(i·k·x)`,参考解:Mie 解析解
+- 参数空间:k∈[3,15],eps_r∈[2,8],cx/cy∈[0.2,0.8],radius∈[0.05,0.25]
+- 核心目标:在参数化 Helmholtz 散射问题中,学习一个无在线求解的预算约束网格预测器,用于近似 residual-AMR 的最终加密分布,并在低预算下优于简单物理启发式网格。
+
+---
+
+## 2. 算法全流程
+
+```
+Step 1. 数据生成 (gen.py)
+ 残差驱动 AMR → 每步保存 cell 状态 + 标签
+ │
+ ▼
+Step 2. 训练 (train_correction.py)
+ features(15-dim) + physics_score → GNN → sigmoid → 二分类 teacher_mark
+ │
+ ▼
+Step 3. 评估
+ 3a. 离线指标 (test_correction.py) — top-k overlap / AUC
+ 3b. Rollout 评估 (eval_correction.py) — 迭代加密 → FEM → aw_rel
+ │
+ ▼
+Step 4. 可视化 (viz_correction.py)
+ amr 模式: GNN 驱动完整 AMR → 网格 + 场 + 误差
+ step 模式: 单步 GNN vs teacher vs physics 标记对比
+```
+
+---
+
+## 3. 数据生成 (`gen.py`)
+
+### 3.1 初始网格
+
+物理自适应初始网格(`build_physics_safe_initial_mesh`):
+
+- 均匀基底网格 + 迭代局部加密
+- 介质外:h ≤ λ₀/q,介质内:h ≤ λ_eff/q(q=2,每波长 2 个单元)
+- 加密准则:`score = max_edge / h_target > 1` 的单元被加密
+- 二分搜索控制每批加密数量,不超预算
+
+### 3.2 AMR 循环(每步保存)
+
+```
+初始 mesh → FEM solve → 残差估计器 η → teacher_mark (η top-k)
+ ├── physics_score → physics_mark (top-k)
+ ├── correction_label = teacher_mark − physics_mark
+ └── 保存 .npz → 按 η 选单元加密 → 下一步
+```
+
+**残差估计器 η**(`environment/helmholtz.py:_compute_residual_indicator`):
+- 内部残差:`h_K/k · √V_K · |k²ε_r·u_h + k²(ε_r−1)·u_inc|`
+- 梯度跳变:`√(½ Σ h_e/k · |[[∇u_h·n]]|²)`
+- SBC 边界残差:`h_bnd/k · |∂u/∂n − i·k_local·u|`
+
+**标记策略**:
+- teacher_mark:按 η 取 top `mark_fraction`(默认 3%)
+- physics_mark:按 `physics_score` 取 top `mark_fraction`
+- correction_label = +1(teacher 独有)、0(一致)、−1(physics 独有)
+
+**安全过滤**:
+1. 面积过滤:排除面积 ≤ 1e-10 的退化单元
+2. 反向 Dörfler:排除误差贡献最低 1% 的单元
+
+### 3.3 输出格式
+
+```
+outlook/data_correction/
+├── params_list.npz # (n_samples, 5) PDE 参数
+├── sample0000_step000.npz # 逐样本逐步数据
+└── summary.json
+```
+
+每个 step .npz:
+
+| 字段 | 形状 | 说明 |
+|------|------|------|
+| `features` | `(n_elem, 15)` | 几何/物理特征 |
+| `edge_index` | `(2, n_edges)` | 网格图结构 |
+| `physics_score` | `(n_elem,)` | h/λ_eff |
+| `teacher_eta` | `(n_elem,)` | 残差估计器 |
+| `teacher_mark` | `(n_elem,)` | η top-k 标记 (0/1) |
+| `physics_mark` | `(n_elem,)` | physics top-k 标记 (0/1) |
+| `correction_label` | `(n_elem,)` | teacher − physics (−1/0/+1) |
+
+---
+
+## 4. 特征工程
+
+### 4.1 15 维基础特征
+
+| 维 | 特征 | 说明 |
+|----|------|------|
+| 0,1 | x, y | 单元中点坐标 |
+| 2 | area | 单元面积 |
+| 3 | dist_to_center | 到圆柱中心距离 |
+| 4 | signed_dist | dist − radius(负=介质内) |
+| 5 | inside | 是否在圆柱内 (0/1) |
+| 6 | k | 波数 |
+| 7 | eps_r | 介电常数 |
+| 8 | radius | 半径 |
+| 9,10 | cx, cy | 圆柱中心 |
+| 11 | k_h | k × √area |
+| 12 | k_eps_h | k × √eps_r × √area |
+| 13,14 | sin(k·x), cos(k·x) | 入射波相位 |
+
+### 4.2 Physics Score(第 16 维输入)
+
+```python
+lambda_eff = 2π / (k · √eps_r) # 介质内
+ 或 2π / k # 介质外
+physics_score = max_edge / lambda_eff # >1 = 分辨率不足
+```
+
+### 4.3 归一化
+
+训练集 z-score 归一化,推理复用同一统计量:
+```python
+x_norm = (concat(features, physics_score) - mean) / scale
+```
+
+---
+
+## 5. GNN 架构
+
+### 5.1 CorrectionGNN
+
+基于 DensityGNN 骨干,替换密度回归头为二分类 logit 头:
+
+```
+Input: (n_cells, 16) node features
+ │
+ ├── node_embedding: Linear(16 → latent_dim)
+ ├── edge_embedding: Linear(16 → latent_dim)
+ │
+ ├── N × MessagePassingStep:
+ │ ├── EdgeModule: MLP([src | dst | edge_attr]) → latent_dim
+ │ ├── NodeModule: MLP([node | mean(incoming_edges)]) → latent_dim
+ │ └── LayerNorm + Residual
+ │
+ ├── GlobalVirtualNode: mean_pool → attention_gate → broadcast
+ │
+ └── head: Linear(latent → hidden) → ReLU → Linear(hidden → 1 logit)
+```
+
+### 5.2 关键设计
+
+- 边特征:`edge_attr = |x[src] - x[dst]|`(节点特征差绝对值)
+- 边丢弃:训练 0.1,推理 0.0
+- 损失:BCEWithLogitsLoss + per-graph `pos_weight = neg/pos`
+
+### 5.3 训练配置
+
+| 参数 | 值 |
+|------|-----|
+| latent_dim | 64 |
+| num_mp_steps | 3 |
+| head_hidden | 64 |
+| lr | 1e-3 |
+| optimizer | Adam |
+| scheduler | ReduceLROnPlateau (patience=10) |
+
+---
+
+## 6. 评估体系
+
+### 6.1 离线指标(test_correction.py)
+
+- **top-k overlap**:GNN 概率最高的 k 个 cell 与 teacher_mark 的交集 / k
+- **AUC**:ROC-AUC(GNN vs physics baseline)
+- **gnn_beats_physics_ratio**:GNN 优于 physics 的样本比例
+
+### 6.2 Rollout 评估(eval_correction.py)
+
+从初始 mesh 出发,**无 teacher_eta,无残差标记,无中间 FEM solve**。每步只用分数决定加密单元,最终一次 FEM solve 计算误差。
+
+三种方法:
+
+| 方法 | 打分 | 说明 |
+|------|------|------|
+| `physics` | `physics_score` | 纯物理先验 |
+| `neural` | `model(features + physics_score)` | 纯 GNN |
+| `hybrid` | `α·zscore(physics) + β·zscore(neural)` | 混合(默认 α=β=0.5) |
+
+### 6.3 误差指标
+
+**aw_rel**(面积加权相对误差):
+```
+aw_rel = √( Σ err²_tri · area / Σ ref²_tri · area )
+```
+
+**max_err**(最大逐点误差):
+```
+max_err = max |Re(u_fem) − Re(u_mie)|
+```
+
+---
+
+## 7. 可视化
+
+### 7.1 amr 模式
+
+GNN 驱动完整 AMR,每步 FEM solve,展示网格和场演变。
+
+输出:
+- `amr_overview.png` — 所有步骤总览
+- `amr_steps/step{XX}.png` — 每步 3 面板(FEM 场 / Mie 参考 / 误差)
+- `ground_truth.png` — 高保真参考解(`--compare` 时)
+- `compare.png` — Physics vs GNN vs Eta 对比(`--compare` 时)
+
+### 7.2 step 模式
+
+重建指定 AMR 步的 mesh,对比 GNN / teacher / physics 标记。
+
+输出:
+- `marks_*.png` — 2×2 对比图(teacher / GNN / physics / TP/FP/FN/TN)
+- `field_gnn_*.png` — GNN 加密后 3 面板图
+- `field_eta_*.png` — 传统 η 加密后 3 面板图
+
+---
+
+## 8. 使用方法
+
+### 8.1 数据生成
+
+```bash
+python outlook/src/gen.py \
+ --n-samples 100 \
+ --max-elements 12000 \
+ --mark-fraction 0.03 \
+ --output-dir outlook/data_correction
+```
+
+### 8.2 训练
+
+```bash
+python outlook/src/train_correction.py \
+ --data-dir outlook/data_correction \
+ --epochs 100 \
+ --batch-size 32 \
+ --lr 1e-3 \
+ --device cuda \
+ --checkpoint-out outlook/ckpt/correction.pt
+```
+
+输出:
+- `correction.pt` — 最终模型
+- `correction_best.pt` — val_loss 最低 checkpoint
+- `correction_train_log.json` — 逐 epoch 日志
+
+### 8.3 离线指标评估
+
+```bash
+python outlook/src/test_correction.py \
+ --checkpoint outlook/ckpt/correction.pt \
+ --data-dir outlook/data_correction \
+ --device cuda \
+ --visualize \
+ --output-dir outlook/result/correction/test
+```
+
+### 8.4 Rollout 评估
+
+```bash
+python outlook/src/eval_correction.py \
+ --checkpoint outlook/ckpt/correction.pt \
+ --data-dir outlook/data_correction \
+ --target-elements 2000,4000,8000,12000 \
+ --mark-fraction 0.03 \
+ --max-steps 40 \
+ --methods physics,neural,hybrid \
+ --alpha 0.5 --beta 0.5 \
+ --device cuda \
+ --output-dir outlook/result/correction/rollout
+```
+
+输出:
+- `eval_results.json` — 详细结果 + 聚合统计 + 改善比例
+- `summary.csv` — 每行一个 (method, target) 汇总
+- `aw_rel_vs_elements.png` / `max_err_vs_elements.png`
+
+### 8.5 可视化
+
+```bash
+# 端到端 AMR
+python outlook/src/viz_correction.py \
+ --checkpoint outlook/ckpt/correction.pt \
+ --data-dir outlook/data_correction \
+ --mode amr --sample-id 0 --max-elements 5000 \
+ --device cuda \
+ --output-dir outlook/result/correction/viz
+
+# 单步对比
+python outlook/src/viz_correction.py \
+ --checkpoint outlook/ckpt/correction.pt \
+ --data-dir outlook/data_correction \
+ --mode step --sample-id 0 --step 0 \
+ --device cuda \
+ --output-dir outlook/result/correction/viz
+
+# OOD 评估(自定义物理参数,需同时指定 k, eps-r, cx, cy, radius)
+python outlook/src/viz_correction.py \
+ --checkpoint outlook/ckpt/correction.pt \
+ --data-dir outlook/data_correction \
+ --mode amr \
+ --k 30 --eps-r 4 --cx 0.5 --cy 0.5 --radius 0.15 \
+ --max-elements 6000 --compare \
+ --device cuda \
+ --output-dir outlook/result/correction/viz
+```
+
+---
+
+## 9. 目录结构
+
+```
+outlook/
+├── README.md # 本文档
+├── train.sh # SLURM 训练脚本(可配置 batch_size,默认 1)
+├── analyze_budget_teacher.py # Budget teacher 数据集分析
+├── check_correction_data.py # 数据质量校验
+│
+├── src/
+│ ├── gen.py # 数据生成
+│ ├── train_correction.py # 训练
+│ ├── test_correction.py # 离线指标评估
+│ ├── eval_correction.py # Rollout 评估
+│ ├── viz_correction.py # 可视化
+│ ├── rollout.py # 统一 AMR rollout(核心循环 + 共享 refinement 工具)
+│ ├── gnn.py # DensityGNN 模型
+│ ├── feat.py # 特征提取
+│ ├── graph.py # mesh → PyG graph(含 build_edge_index_np)
+│ ├── mesh.py # score → refined mesh
+│ ├── metrics.py # aw_rel / max_err
+│ ├── problem.py # PDE 参数 → HelmholtzProblem
+│ └── amr.py # 残差 AMR teacher
+│
+├── ckpt/ # checkpoint
+├── data_correction/ # 训练数据
+└── result/ # 评估结果
+```
+
+---
+
+## 10. 辅助模块
+
+| 模块 | 职责 |
+|------|------|
+| `rollout.py` | 统一 AMR rollout:`run_rollout_to_budget()` 驱动完整加密循环,支持 physics/neural/hybrid/eta 四种打分方法 |
+| `feat.py` | 构建 15 维基础特征 + budget_code |
+| `graph.py` | mesh → PyG Data(边特征 = phase_distance) |
+| `mesh.py` | score → 迭代 top-k 加密(叶子继承初始单元 score) |
+| `problem.py` | 参数字典 → HelmholtzProblem 实例 |
+| `amr.py` | 纯残差驱动 AMR teacher(无网络) |
+| `metrics.py` | `compute_mie_error`(aw_rel + max_err) |
+
+---
+
+## 11. 测试结果
+
+### 11.1 训练配置
+
+- 数据集:100 样本,~19 步/样本,1888 个 step 文件
+- 训练/验证划分:80/20(按 sample_id,seed=42)
+- 训练图:1513 个,验证图:375 个
+- 正样本比例:3.0%(teacher_mark top-3%)
+- 训练 100 epoch,最佳 epoch 57(val_loss=0.5873)
+
+### 11.2 离线指标(test_correction.py)
+
+在 20 个验证样本的 375 个 step 图上评估:
+
+| 指标 | GNN | Physics Baseline |
+|------|-----|-----------------|
+| **AUC** | **0.9412** | 0.0000 |
+| **top-k overlap 均值** | **0.440** | 0.131 |
+| GNN beats physics | **372/375 (99.2%)** | — |
+
+> Physics AUC=0.0 是因为 physics_score 在均匀网格上只有 2 个离散值,无法区分排序。GNN 通过学习 η 的空间分布模式,top-k overlap 提升 **3.4 倍**。
+
+### 11.3 Rollout 评估(eval_correction.py)
+
+20 个验证样本 × 3 种方法 × 3 个目标预算,每次 rollout 最终做 1 次 FEM solve:
+
+**aw_rel(面积加权相对误差)**:
+
+| 方法 | target=2000 | target=4000 | target=8000 |
+|------|------------|------------|------------|
+| physics | 19.19% | 14.04% | 13.25% |
+| neural | 15.96% | 13.72% | 12.98% |
+| **hybrid** | **15.78%** | **13.57%** | **12.94%** |
+
+**max_err(最大逐点误差)**:
+
+| 方法 | target=2000 | target=4000 | target=8000 |
+|------|------------|------------|------------|
+| physics | 0.3301 | 0.2514 | 0.2418 |
+| neural | 0.2741 | 0.2431 | 0.2376 |
+| **hybrid** | **0.2686** | **0.2430** | **0.2383** |
+
+**相对 physics-only 的改善**:
+
+| 方法 | target | aw_rel 改善 | max_err 改善 |
+|------|--------|-----------|-------------|
+| hybrid | 2000 | **+9.8%** | **+6.9%** |
+| neural | 2000 | +9.9% | +6.2% |
+| hybrid | 4000 | +1.9% | +1.5% |
+| neural | 4000 | +1.1% | +1.4% |
+| hybrid | 8000 | +1.9% | +1.3% |
+| neural | 8000 | +1.8% | +1.5% |
+
+### 11.4 关键发现
+
+1. **GNN 显著优于 physics baseline**:离线 top-k overlap 从 0.131 提升到 0.440(3.4×),99.2% 的验证图上 GNN 胜出
+2. **低预算改善最大**:target=2000 时 aw_rel 改善 ~10%,max_err 改善 ~7%;高预算时改善收窄到 ~2%(因为预算充足时 physics 也够用)
+3. **hybrid 略优于 neural**:z-score 混合策略在多数场景下比纯 GNN 更稳定
+4. **GNN 推理效率**:neural 方法比 physics 方法少用 ~12% 的 refinement 步数达到相同预算(8.9 vs 9.4 步 @2000),因为 GNN 的标记更精准
+
+### 11.5 OOD 评估(k 超出训练范围 [3,15])
+
+固定 `eps_r=4, cx=cy=0.5, radius=0.15`,在 k=20/30/50/80 上做三方法对比(target=5000/10000/20000):
+
+**aw_rel (%)**:
+
+| k | 方法 | target=5000 | target=10000 | target=20000 |
+|---|------|------------|-------------|-------------|
+| 20 | physics | 32.17 | 24.55 | 10.61 |
+| 20 | neural | 32.56 | **17.85** | 10.68 |
+| 20 | hybrid | **31.73** | 19.57 | 14.03 |
+| 30 | physics | 33.94 | 15.15 | 10.14 |
+| 30 | neural | **23.52** | 13.40 | 8.38 |
+| 30 | hybrid | 27.94 | **13.34** | **7.96** |
+| 50 | physics | 94.00 | 73.56 | 33.00 |
+| 50 | neural | **88.16** | **52.92** | **27.99** |
+| 50 | hybrid | 90.97 | 68.47 | 29.27 |
+| 80 | physics | 122.06 | 135.78 | 101.64 |
+| 80 | neural | 139.84 | **127.65** | **92.67** |
+| 80 | hybrid | 139.84 | 127.68 | 105.94 |
+
+**相对 physics-only 的改善 (%)**:
+
+| k | 方法 | target=5000 | target=10000 | target=20000 |
+|---|------|------------|-------------|-------------|
+| 20 | neural | −1.2 | **+27.3** | −0.7 |
+| 20 | hybrid | +1.4 | +20.3 | −32.3 |
+| 30 | neural | **+30.7** | +11.6 | +17.4 |
+| 30 | hybrid | +17.7 | +12.0 | +21.5 |
+| 50 | neural | +6.2 | **+28.1** | **+15.2** |
+| 50 | hybrid | +3.2 | +6.9 | +11.3 |
+| 80 | neural | −14.6 | +6.0 | **+8.8** |
+| 80 | hybrid | −14.6 | +6.0 | −4.2 |
+
+**OOD 关键发现**:
+
+1. **neural 在远 OOD(k=50)优势最大**:target=10000 时 aw_rel 从 73.56% 降至 52.92%(改善 +28.1%),hybrid 仅改善 +6.9%
+2. **hybrid 的 physics 先验在 OOD 时成为拖累**:z-score 混合中 physics_score 的 `max_edge/h_target` 在高 k 下不再准确,导致 hybrid 的标记不如纯 neural
+3. **neural 的泛化来自几何特征**:GNN 学到的是"界面附近 + 介质内 → 高密度"的空间模式,这一模式在 k 超出训练范围时仍然成立;而 physics_score 依赖 `lambda_eff = 2π/(k√ε_r)` 的具体数值
+4. **极端 OOD(k=80)两者都差**:误差超过 100%,说明 20000 个单元完全不够分辨 k=80 的短波结构(λ_eff≈0.028,需要 ~70000+ 单元)
+5. **k=20/30 时 hybrid 反而更好**:接近训练分布时 physics 先验有价值,hybrid 通过混合两种信号获得更稳定的标记
diff --git a/outlook/__pycache__/analyze_budget_teacher.cpython-313.pyc b/outlook/__pycache__/analyze_budget_teacher.cpython-313.pyc
new file mode 100644
index 0000000..f7c9f04
Binary files /dev/null and b/outlook/__pycache__/analyze_budget_teacher.cpython-313.pyc differ
diff --git a/outlook/__pycache__/check_correction_data.cpython-313.pyc b/outlook/__pycache__/check_correction_data.cpython-313.pyc
new file mode 100644
index 0000000..8dd97c8
Binary files /dev/null and b/outlook/__pycache__/check_correction_data.cpython-313.pyc differ
diff --git a/outlook/analyze_budget_teacher.py b/outlook/analyze_budget_teacher.py
new file mode 100644
index 0000000..fe25855
--- /dev/null
+++ b/outlook/analyze_budget_teacher.py
@@ -0,0 +1,203 @@
+#!/usr/bin/env python3
+"""Analyze budgeted teacher dataset: per-budget stats, error improvement, saturation.
+
+Usage:
+ python outlook/analyze_budget_teacher.py
+ python outlook/analyze_budget_teacher.py --data-dir outlook/data/budget_density_dataset_check
+ python outlook/analyze_budget_teacher.py --sat-threshold 0.05
+"""
+
+import argparse
+from pathlib import Path
+
+import numpy as np
+
+
+def load_dataset(data_dir: Path):
+ """Load all sample .npz files, return list of dicts."""
+ data_dir = Path(data_dir)
+ params_path = data_dir / "params_list.npz"
+ if params_path.exists():
+ n_samples = len(np.load(params_path)["params"])
+ else:
+ # Fall back to scanning for numbered .npz files
+ n_samples = len(sorted(data_dir.glob("[0-9]*.npz")))
+
+ samples = []
+ for sid in range(n_samples):
+ npz_path = data_dir / f"{sid:04d}.npz"
+ if not npz_path.exists():
+ continue
+ d = np.load(npz_path)
+ samples.append({
+ "sid": sid,
+ "budgets": d["budgets"],
+ "actual_elements": d["actual_elements"],
+ "teacher_aw_rel": d["teacher_aw_rel"],
+ "teacher_max_err": d["teacher_max_err"],
+ "valid_budgets": d["valid_budgets"] if "valid_budgets" in d else np.ones(len(d["budgets"]), dtype=bool),
+ "match_ratios": d["match_ratios"] if "match_ratios" in d else d["actual_elements"] / d["budgets"],
+ "k": float(d["k"]),
+ "eps_r": float(d["eps_r"]),
+ })
+ return samples
+
+
+def per_budget_summary(samples):
+ """Aggregate stats grouped by budget value."""
+ groups = {} # budget -> list of sample dicts
+ for s in samples:
+ for bi, b in enumerate(s["budgets"]):
+ b = int(b)
+ groups.setdefault(b, {"aw_rel": [], "max_err": [], "actual": [], "valid": []})
+ groups[b]["aw_rel"].append(s["teacher_aw_rel"][bi])
+ groups[b]["max_err"].append(s["teacher_max_err"][bi])
+ groups[b]["actual"].append(s["actual_elements"][bi])
+ groups[b]["valid"].append(bool(s["valid_budgets"][bi]))
+
+ rows = []
+ for b in sorted(groups.keys()):
+ g = groups[b]
+ aw = np.array(g["aw_rel"])
+ me = np.array(g["max_err"])
+ rows.append({
+ "budget": b,
+ "n_samples": len(aw),
+ "n_valid": sum(g["valid"]),
+ "mean_actual": np.mean(g["actual"]),
+ "mean_aw_rel": np.mean(aw),
+ "std_aw_rel": np.std(aw),
+ "mean_max_err": np.mean(me),
+ })
+ return rows
+
+
+def compute_improvements(rows):
+ """Compute Δaw_rel and relative improvement between adjacent budgets."""
+ for i in range(len(rows)):
+ rows[i]["delta_aw_rel"] = None
+ rows[i]["rel_improvement"] = None
+ for i in range(1, len(rows)):
+ prev = rows[i - 1]["mean_aw_rel"]
+ curr = rows[i]["mean_aw_rel"]
+ delta = prev - curr # positive = improvement
+ rows[i]["delta_aw_rel"] = delta
+ rows[i]["rel_improvement"] = delta / prev if prev > 0 else 0.0
+ return rows
+
+
+def estimate_saturation(samples, threshold=0.02):
+ """For each sample, find the first budget where further improvement < threshold.
+
+ Saturation budget = first budget b such that
+ (aw_rel[b-1] - aw_rel[b]) / aw_rel[b-1] < threshold
+ i.e. relative improvement from previous budget is below threshold.
+
+ Returns list of (sid, saturation_budget, sat_reason).
+ """
+ results = []
+ for s in samples:
+ budgets = s["budgets"]
+ aw = s["teacher_aw_rel"]
+ sat_budget = None
+ for bi in range(1, len(budgets)):
+ if np.isnan(aw[bi - 1]) or np.isnan(aw[bi]):
+ continue
+ if aw[bi - 1] <= 0:
+ continue
+ rel_imp = (aw[bi - 1] - aw[bi]) / aw[bi - 1]
+ if rel_imp < threshold:
+ sat_budget = int(budgets[bi])
+ break
+ # If never saturated, mark as the largest budget
+ if sat_budget is None:
+ sat_budget = int(budgets[-1])
+ results.append({
+ "sid": s["sid"],
+ "saturation_budget": sat_budget,
+ })
+ return results
+
+
+def print_table(rows):
+ """Print the per-budget summary table."""
+ hdr = (f"{'budget':>8s} {'n':>4s} {'valid':>5s} "
+ f"{'mean_act':>9s} {'mean_aw':>9s} {'std_aw':>9s} {'mean_me':>9s} "
+ f"{'Δaw_rel':>9s} {'rel_imp':>9s}")
+ print(hdr)
+ print("-" * len(hdr))
+ for r in rows:
+ delta = f"{r['delta_aw_rel']:.6f}" if r["delta_aw_rel"] is not None else "—"
+ rel = f"{r['rel_improvement']:.4f}" if r["rel_improvement"] is not None else "—"
+ print(f"{r['budget']:8d} {r['n_samples']:4d} {r['n_valid']:5d} "
+ f"{r['mean_actual']:9.1f} {r['mean_aw_rel']:.6f} {r['std_aw_rel']:.6f} "
+ f"{r['mean_max_err']:.6f} {delta:>9s} {rel:>9s}")
+
+
+def print_saturation(sat_results, threshold):
+ """Print saturation budget distribution."""
+ budgets = [r["saturation_budget"] for r in sat_results]
+ unique = sorted(set(budgets))
+ print(f"\nSaturation budget distribution (threshold={threshold:.0%} rel. improvement):")
+ print(f" {'sat_budget':>12s} {'count':>6s} {'pct':>6s}")
+ for b in unique:
+ count = budgets.count(b)
+ pct = 100.0 * count / len(budgets)
+ print(f" {b:12d} {count:6d} {pct:5.1f}%")
+ print(f" {'median':>12s} {np.median(budgets):.0f}")
+ print(f" {'mean':>12s} {np.mean(budgets):.1f}")
+
+
+def main():
+ parser = argparse.ArgumentParser(description="Analyze budgeted teacher dataset")
+ parser.add_argument("--data-dir", type=str, default="outlook/data",
+ help="Path to budget dataset directory (default: outlook/data)")
+ parser.add_argument("--sat-threshold", type=float, default=0.02,
+ help="Relative improvement threshold for saturation (default: 0.02)")
+ parser.add_argument("--sat-threshold-2", type=float, default=0.05,
+ help="Second saturation threshold to report (default: 0.05)")
+ args = parser.parse_args()
+
+ data_dir = Path(args.data_dir)
+
+ print("=" * 70)
+ print("Budget Teacher Dataset Analysis")
+ print("=" * 70)
+ print(f" Data dir: {data_dir}")
+
+ samples = load_dataset(data_dir)
+ print(f" Samples: {len(samples)}")
+
+ budgets_all = samples[0]["budgets"]
+ print(f" Budgets: {[int(b) for b in budgets_all]}")
+ print()
+
+ # 1. Per-budget summary
+ rows = per_budget_summary(samples)
+ rows = compute_improvements(rows)
+
+ print("Per-budget summary:")
+ print_table(rows)
+
+ # 2. Saturation analysis
+ for thresh, label in [(args.sat_threshold, "primary"),
+ (args.sat_threshold_2, "secondary")]:
+ sat = estimate_saturation(samples, threshold=thresh)
+ print_saturation(sat, thresh)
+
+ # 3. Per-sample detail (compact)
+ print(f"\nPer-sample detail:")
+ print(f" {'sid':>4s} {'k':>6s} {'eps_r':>6s} "
+ + " ".join(f"b{int(b):>5d}" for b in budgets_all))
+ print(f" {'':>4s} {'':>6s} {'':>6s} "
+ + " ".join(f"{'aw_rel':>5s}" for _ in budgets_all))
+ print(" " + "-" * (20 + 8 * len(budgets_all)))
+ for s in samples:
+ vals = " ".join(f"{v:.4f}" for v in s["teacher_aw_rel"])
+ print(f" {s['sid']:4d} {s['k']:6.2f} {s['eps_r']:6.2f} {vals}")
+
+ print("\nDone.")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/outlook/check_correction_data.py b/outlook/check_correction_data.py
new file mode 100644
index 0000000..e051760
--- /dev/null
+++ b/outlook/check_correction_data.py
@@ -0,0 +1,457 @@
+#!/usr/bin/env python3
+"""
+check_correction_data.py — Validate step-wise correction dataset.
+
+Checks:
+ 1. Global statistics (elements, marks, overlap, IoU, correction ratios)
+ 2. Per-step trend analysis (correction signal vs AMR step)
+ 3. Spatial visualization of 5 random samples
+ 4. Field & shape consistency
+ 5. Final verdict: PASS / WARNING / FAIL
+
+Usage:
+ python outlook/check_correction_data.py \
+ --data-dir outlook/data_correction \
+ --output-dir outlook/data_correction_check
+"""
+
+import argparse
+import sys
+from pathlib import Path
+
+import matplotlib
+matplotlib.use("Agg")
+import matplotlib.pyplot as plt
+import numpy as np
+
+# ──────────────────────────────────────────────────────────────────────────────
+# Required fields and their expected properties
+# ──────────────────────────────────────────────────────────────────────────────
+
+REQUIRED_FIELDS = {
+ "features": {"ndim": 2, "dtype_kind": "f"},
+ "edge_index": {"ndim": 2, "dtype_kind": "i"},
+ "physics_score": {"ndim": 1, "dtype_kind": "f"},
+ "teacher_eta": {"ndim": 1, "dtype_kind": "f"},
+ "teacher_mark": {"ndim": 1, "dtype_kind": "i"},
+ "physics_mark": {"ndim": 1, "dtype_kind": "i"},
+ "correction_label": {"ndim": 1, "dtype_kind": "i"},
+ "elements": {"ndim": 0},
+ "step": {"ndim": 0},
+ "aw_rel_before": {"ndim": 0},
+ "max_err_before": {"ndim": 0},
+ "k": {"ndim": 0},
+ "eps_r": {"ndim": 0},
+ "cx": {"ndim": 0},
+ "cy": {"ndim": 0},
+ "radius": {"ndim": 0},
+}
+
+
+# ──────────────────────────────────────────────────────────────────────────────
+# Helpers
+# ──────────────────────────────────────────────────────────────────────────────
+
+
+def iou_binary(a: np.ndarray, b: np.ndarray) -> float:
+ """IoU between two binary (0/1) arrays."""
+ a = a.astype(bool)
+ b = b.astype(bool)
+ inter = np.sum(a & b)
+ union = np.sum(a | b)
+ return float(inter) / float(union) if union > 0 else 1.0
+
+
+def load_all_samples(data_dir: Path):
+ """Load all sampleXXXX_stepYYY.npz files, return list of dicts."""
+ files = sorted(data_dir.glob("sample*_step*.npz"))
+ samples = []
+ for f in files:
+ try:
+ d = dict(np.load(f, allow_pickle=True))
+ d["_path"] = str(f)
+ d["_name"] = f.name
+ samples.append(d)
+ except Exception as e:
+ print(f" [WARN] Cannot load {f.name}: {e}")
+ return samples
+
+
+# ──────────────────────────────────────────────────────────────────────────────
+# 1. Field & shape consistency
+# ──────────────────────────────────────────────────────────────────────────────
+
+
+def check_fields(samples, issues):
+ """Check every file has the required fields with correct ndim."""
+ print("\n" + "=" * 70)
+ print(" [1/5] Field & Shape Consistency")
+ print("=" * 70)
+
+ n_files = len(samples)
+ n_issues_before = len(issues)
+
+ for s in samples:
+ name = s["_name"]
+ for field, spec in REQUIRED_FIELDS.items():
+ if field not in s:
+ issues.append(f"MISSING field '{field}' in {name}")
+ continue
+ arr = s[field]
+ if arr.ndim != spec["ndim"]:
+ issues.append(
+ f"BAD ndim for '{field}' in {name}: "
+ f"expected {spec['ndim']}, got {arr.ndim}"
+ )
+ if "dtype_kind" in spec and arr.dtype.kind != spec["dtype_kind"]:
+ issues.append(
+ f"BAD dtype for '{field}' in {name}: "
+ f"expected kind={spec['dtype_kind']}, got {arr.dtype}"
+ )
+
+ # Cross-check: features rows == len(physics_score) == elements
+ if "features" in s and "physics_score" in s:
+ nf = s["features"].shape[0]
+ ns = len(s["physics_score"])
+ ne = int(s["elements"])
+ if not (nf == ns == ne):
+ issues.append(
+ f"SIZE MISMATCH in {name}: features={nf}, "
+ f"physics_score={ns}, elements={ne}"
+ )
+
+ n_new = len(issues) - n_issues_before
+ if n_new == 0:
+ print(f" All {n_files} files have consistent fields & shapes.")
+ else:
+ print(f" Found {n_new} field/shape issues.")
+
+
+# ──────────────────────────────────────────────────────────────────────────────
+# 2. Global statistics
+# ──────────────────────────────────────────────────────────────────────────────
+
+
+def compute_global_stats(samples):
+ """Compute and print global statistics across all files."""
+ print("\n" + "=" * 70)
+ print(" [2/5] Global Statistics")
+ print("=" * 70)
+
+ elems = []
+ teacher_ratios = []
+ physics_ratios = []
+ overlaps = []
+ overlap_teacher = []
+ overlap_physics = []
+ ious = []
+ pos_ratios = []
+ neg_ratios = []
+
+ for s in samples:
+ n = int(s["elements"])
+ tm = s["teacher_mark"]
+ pm = s["physics_mark"]
+ cl = s["correction_label"]
+
+ elems.append(n)
+ n_tm = int(np.sum(tm))
+ n_pm = int(np.sum(pm))
+ ov = int(np.sum((tm == 1) & (pm == 1)))
+
+ teacher_ratios.append(n_tm / max(n, 1))
+ physics_ratios.append(n_pm / max(n, 1))
+ overlaps.append(ov)
+ overlap_teacher.append(ov / max(n_tm, 1))
+ overlap_physics.append(ov / max(n_pm, 1))
+ ious.append(iou_binary(tm, pm))
+ pos_ratios.append(int(np.sum(cl == 1)) / max(n, 1))
+ neg_ratios.append(int(np.sum(cl == -1)) / max(n, 1))
+
+ stats = {
+ "total_files": len(samples),
+ "elements": elems,
+ "teacher_mark_ratio": teacher_ratios,
+ "physics_mark_ratio": physics_ratios,
+ "overlap_count": overlaps,
+ "overlap/teacher": overlap_teacher,
+ "overlap/physics": overlap_physics,
+ "IoU": ious,
+ "correction_pos_ratio": pos_ratios,
+ "correction_neg_ratio": neg_ratios,
+ }
+
+ print(f" {'Metric':<30s} {'mean':>10s} {'min':>10s} {'max':>10s}")
+ print(f" {'-'*30} {'-'*10} {'-'*10} {'-'*10}")
+ for key in [
+ "elements", "teacher_mark_ratio", "physics_mark_ratio",
+ "overlap_count", "overlap/teacher", "overlap/physics",
+ "IoU", "correction_pos_ratio", "correction_neg_ratio",
+ ]:
+ arr = np.array(stats[key])
+ print(f" {key:<30s} {arr.mean():10.4f} {arr.min():10.4f} {arr.max():10.4f}")
+
+ return stats
+
+
+# ──────────────────────────────────────────────────────────────────────────────
+# 3. Per-step trend analysis
+# ──────────────────────────────────────────────────────────────────────────────
+
+
+def check_per_step_trends(samples, issues):
+ """Group by step, print trend table, flag anomalies."""
+ print("\n" + "=" * 70)
+ print(" [3/5] Per-Step Trend Analysis")
+ print("=" * 70)
+
+ from collections import defaultdict
+ step_data = defaultdict(lambda: {
+ "elems": [], "tm_ratio": [], "pm_ratio": [],
+ "overlap": [], "iou": [], "pos_ratio": [], "neg_ratio": [],
+ })
+
+ for s in samples:
+ step = int(s["step"])
+ n = int(s["elements"])
+ tm = s["teacher_mark"]
+ pm = s["physics_mark"]
+ cl = s["correction_label"]
+ n_tm = int(np.sum(tm))
+ n_pm = int(np.sum(pm))
+ ov = int(np.sum((tm == 1) & (pm == 1)))
+
+ d = step_data[step]
+ d["elems"].append(n)
+ d["tm_ratio"].append(n_tm / max(n, 1))
+ d["pm_ratio"].append(n_pm / max(n, 1))
+ d["overlap"].append(ov)
+ d["iou"].append(iou_binary(tm, pm))
+ d["pos_ratio"].append(int(np.sum(cl == 1)) / max(n, 1))
+ d["neg_ratio"].append(int(np.sum(cl == -1)) / max(n, 1))
+
+ steps = sorted(step_data.keys())
+ header = f" {'step':>4s} {'n_files':>7s} {'mean_elem':>9s} {'tm_ratio':>9s} {'pm_ratio':>9s} {'IoU':>7s} {'pos%':>7s} {'neg%':>7s}"
+ print(header)
+ print(f" {'-'*4} {'-'*7} {'-'*9} {'-'*9} {'-'*9} {'-'*7} {'-'*7} {'-'*7}")
+
+ for st in steps:
+ d = step_data[st]
+ nf = len(d["elems"])
+ me = np.mean(d["elems"])
+ mt = np.mean(d["tm_ratio"])
+ mp = np.mean(d["pm_ratio"])
+ mi = np.mean(d["iou"])
+ mpos = np.mean(d["pos_ratio"])
+ mneg = np.mean(d["neg_ratio"])
+ print(f" {st:4d} {nf:7d} {me:9.1f} {mt:9.4f} {mp:9.4f} {mi:7.4f} {mpos:7.4f} {mneg:7.4f}")
+
+ # Trend checks
+ if len(steps) >= 3:
+ # Check: correction signal should diminish at late steps (elements grow → marks shrink)
+ late = steps[-1]
+ early = steps[0]
+ late_pos = np.mean(step_data[late]["pos_ratio"])
+ early_pos = np.mean(step_data[early]["pos_ratio"])
+ late_neg = np.mean(step_data[late]["neg_ratio"])
+ early_neg = np.mean(step_data[early]["neg_ratio"])
+ late_iou = np.mean(step_data[late]["iou"])
+ early_iou = np.mean(step_data[early]["iou"])
+
+ print(f"\n Trend summary (step {early} → {late}):")
+ print(f" pos_ratio: {early_pos:.4f} → {late_pos:.4f}")
+ print(f" neg_ratio: {early_neg:.4f} → {late_neg:.4f}")
+ print(f" IoU: {early_iou:.4f} → {late_iou:.4f}")
+
+ # Warning: if late-step IoU is much lower than early, marks diverge
+ if late_iou < early_iou * 0.5:
+ issues.append(
+ f"TREND: IoU drops significantly from step {early} ({early_iou:.3f}) "
+ f"to step {late} ({late_iou:.3f}) — marks diverge at late steps."
+ )
+
+ # Warning: if correction signal vanishes (pos+neg → 0) at late steps
+ late_corr = late_pos + late_neg
+ early_corr = early_pos + early_neg
+ if early_corr > 0.01 and late_corr < early_corr * 0.1:
+ issues.append(
+ f"TREND: Correction signal nearly vanishes at step {late} "
+ f"({late_corr:.4f}) vs step {early} ({early_corr:.4f})."
+ )
+
+ # Warning: if IoU is very low overall (teacher and physics barely agree)
+ all_ious = [iou for s in steps for iou in step_data[s]["iou"]]
+ overall_iou = np.mean(all_ious)
+ if overall_iou < 0.1:
+ issues.append(
+ f"LOW IoU: mean IoU across all steps is {overall_iou:.4f} — "
+ f"teacher_mark and physics_mark barely overlap."
+ )
+
+
+# ──────────────────────────────────────────────────────────────────────────────
+# 4. Spatial visualization
+# ──────────────────────────────────────────────────────────────────────────────
+
+
+def plot_spatial_samples(samples, output_dir: Path, n_plot: int = 5):
+ """Randomly select n_plot files and save 4-panel spatial maps."""
+ print("\n" + "=" * 70)
+ print(" [4/5] Spatial Visualization")
+ print("=" * 70)
+
+ output_dir.mkdir(parents=True, exist_ok=True)
+
+ rng = np.random.RandomState(1234)
+ indices = rng.choice(len(samples), size=min(n_plot, len(samples)), replace=False)
+ selected = [samples[i] for i in sorted(indices)]
+
+ for s in selected:
+ name = s["_name"].replace(".npz", "")
+ features = s["features"]
+ x = features[:, 0]
+ y = features[:, 1]
+
+ physics_score = s["physics_score"]
+ teacher_eta = s["teacher_eta"]
+ teacher_mark = s["teacher_mark"]
+ correction_label = s["correction_label"]
+
+ fig, axes = plt.subplots(1, 4, figsize=(20, 5))
+ fig.suptitle(
+ f"{name} (elem={int(s['elements'])}, k={float(s['k']):.2f}, "
+ f"step={int(s['step'])})",
+ fontsize=12,
+ )
+
+ # Panel 1: physics_score
+ sc0 = axes[0].scatter(x, y, c=physics_score, s=8, cmap="viridis")
+ axes[0].set_title("physics_score")
+ axes[0].set_aspect("equal")
+ plt.colorbar(sc0, ax=axes[0], shrink=0.8)
+
+ # Panel 2: teacher_eta
+ sc1 = axes[1].scatter(x, y, c=teacher_eta, s=8, cmap="magma")
+ axes[1].set_title("teacher_eta")
+ axes[1].set_aspect("equal")
+ plt.colorbar(sc1, ax=axes[1], shrink=0.8)
+
+ # Panel 3: teacher_mark
+ sc2 = axes[2].scatter(x, y, c=teacher_mark, s=8, cmap="Reds", vmin=0, vmax=1)
+ axes[2].set_title("teacher_mark")
+ axes[2].set_aspect("equal")
+ plt.colorbar(sc2, ax=axes[2], shrink=0.8)
+
+ # Panel 4: correction_label
+ sc3 = axes[3].scatter(
+ x, y, c=correction_label, s=8, cmap="coolwarm", vmin=-1, vmax=1
+ )
+ axes[3].set_title("correction_label")
+ axes[3].set_aspect("equal")
+ plt.colorbar(sc3, ax=axes[3], shrink=0.8)
+
+ for ax in axes:
+ ax.set_xlabel("x")
+ ax.set_ylabel("y")
+
+ plt.tight_layout()
+ out_path = output_dir / f"{name}.png"
+ fig.savefig(out_path, dpi=150, bbox_inches="tight")
+ plt.close(fig)
+ print(f" ✓ Saved: {out_path}")
+
+
+# ──────────────────────────────────────────────────────────────────────────────
+# 5. Verdict
+# ──────────────────────────────────────────────────────────────────────────────
+
+
+def print_verdict(issues):
+ """Print final PASS / WARNING / FAIL."""
+ print("\n" + "=" * 70)
+ print(" [5/5] Verdict")
+ print("=" * 70)
+
+ if not issues:
+ print("\n ✅ PASS — Data is consistent and ready for training.")
+ return "PASS"
+
+ # Classify issues
+ errors = [i for i in issues if any(k in i.upper() for k in ["MISSING", "BAD ", "MISMATCH"])]
+ warnings = [i for i in issues if i not in errors]
+
+ if errors:
+ print(f"\n ❌ FAIL — {len(errors)} error(s) found:")
+ for e in errors:
+ print(f" • {e}")
+ if warnings:
+ print(f"\n ⚠️ Also {len(warnings)} warning(s):")
+ for w in warnings:
+ print(f" • {w}")
+ return "FAIL"
+
+ print(f"\n ⚠️ WARNING — {len(warnings)} suspicious pattern(s):")
+ for w in warnings:
+ print(f" • {w}")
+ return "WARNING"
+
+
+# ──────────────────────────────────────────────────────────────────────────────
+# Main
+# ──────────────────────────────────────────────────────────────────────────────
+
+
+def main():
+ parser = argparse.ArgumentParser(
+ description="Check step-wise correction dataset quality"
+ )
+ parser.add_argument(
+ "--data-dir", type=str, required=True,
+ help="Directory containing sampleXXXX_stepYYY.npz files",
+ )
+ parser.add_argument(
+ "--output-dir", type=str, default="outlook/data_correction_check",
+ help="Directory to save visualization plots",
+ )
+ args = parser.parse_args()
+
+ data_dir = Path(args.data_dir)
+ output_dir = Path(args.output_dir)
+
+ print("=" * 70)
+ print(" Correction Data Quality Check")
+ print("=" * 70)
+ print(f" Data dir: {data_dir}")
+ print(f" Output dir: {output_dir}")
+
+ # Load
+ print("\n Loading files...")
+ samples = load_all_samples(data_dir)
+ if not samples:
+ print(" ✗ No sample files found!")
+ sys.exit(1)
+ print(f" Loaded {len(samples)} files.")
+
+ issues = []
+
+ # 1. Field consistency
+ check_fields(samples, issues)
+
+ # 2. Global stats
+ compute_global_stats(samples)
+
+ # 3. Per-step trends
+ check_per_step_trends(samples, issues)
+
+ # 4. Visualization
+ plot_spatial_samples(samples, output_dir)
+
+ # 5. Verdict
+ verdict = print_verdict(issues)
+
+ print()
+ return 0 if verdict == "PASS" else 1
+
+
+if __name__ == "__main__":
+ sys.exit(main())
diff --git a/outlook/ckpt/budgeted_debug.json b/outlook/ckpt/budgeted_debug.json
new file mode 100644
index 0000000..65a44ca
--- /dev/null
+++ b/outlook/ckpt/budgeted_debug.json
@@ -0,0 +1,47 @@
+{
+ "config": {
+ "data_dir": "outlook/data/budget_density_dataset_debug",
+ "epochs": 2,
+ "batch_size": 2,
+ "lr": 0.001,
+ "density_weight": 1.0,
+ "mono_weight": 0.0,
+ "seed": 42
+ },
+ "per_budget": {
+ "budget_1000": {
+ "mse": 2.209566116333008,
+ "corr": -0.5653519502499024,
+ "top20_overlap": 0.037037037037037035,
+ "n_graphs": 1
+ },
+ "budget_2000": {
+ "mse": 4.281199932098389,
+ "corr": -0.4546216071701198,
+ "top20_overlap": 0.07407407407407407,
+ "n_graphs": 1
+ },
+ "overall": {
+ "mse": 3.2453832626342773,
+ "corr": -0.4747666722392795
+ }
+ },
+ "training_log": [
+ {
+ "epoch": 0,
+ "train_loss": 10.175954818725586,
+ "val_loss": 3.5997772216796875,
+ "val_corr": -0.5083683560193551,
+ "val_top20_overlap": 0.07407407407407407,
+ "lr": 0.001
+ },
+ {
+ "epoch": 1,
+ "train_loss": 7.313832759857178,
+ "val_loss": 3.2453830242156982,
+ "val_corr": -0.4747666660841676,
+ "val_top20_overlap": 0.05555555555555555,
+ "lr": 0.001
+ }
+ ]
+}
\ No newline at end of file
diff --git a/outlook/ckpt/budgeted_debug.pt b/outlook/ckpt/budgeted_debug.pt
new file mode 100644
index 0000000..98918ca
Binary files /dev/null and b/outlook/ckpt/budgeted_debug.pt differ
diff --git a/outlook/ckpt/correction.pt b/outlook/ckpt/correction.pt
new file mode 100644
index 0000000..300d12c
Binary files /dev/null and b/outlook/ckpt/correction.pt differ
diff --git a/outlook/ckpt/correction_best.pt b/outlook/ckpt/correction_best.pt
new file mode 100644
index 0000000..3ae222a
Binary files /dev/null and b/outlook/ckpt/correction_best.pt differ
diff --git a/outlook/ckpt/correction_train_log.json b/outlook/ckpt/correction_train_log.json
new file mode 100644
index 0000000..c9076b6
--- /dev/null
+++ b/outlook/ckpt/correction_train_log.json
@@ -0,0 +1,902 @@
+[
+ {
+ "epoch": 0,
+ "train_loss": 1.214073695242405,
+ "val_loss": 1.1141467094421387,
+ "val_auc": 0.7793237914165878,
+ "val_topk_overlap": 0.18174046167047223,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 1,
+ "train_loss": 0.9936319440603256,
+ "val_loss": 0.8714833855628967,
+ "val_auc": 0.868452222365281,
+ "val_topk_overlap": 0.25161985623836425,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 2,
+ "train_loss": 0.8490312211215496,
+ "val_loss": 0.8512038290500641,
+ "val_auc": 0.8743725472266488,
+ "val_topk_overlap": 0.27610961191386213,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 3,
+ "train_loss": 0.789196622868379,
+ "val_loss": 0.8102231820424398,
+ "val_auc": 0.8853419495372643,
+ "val_topk_overlap": 0.27663024403011677,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 4,
+ "train_loss": 0.7635955549776554,
+ "val_loss": 0.7610340118408203,
+ "val_auc": 0.897967248359232,
+ "val_topk_overlap": 0.3101760507386457,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 5,
+ "train_loss": 0.7362100593745708,
+ "val_loss": 0.748906339208285,
+ "val_auc": 0.9006133073599438,
+ "val_topk_overlap": 0.31304398098650305,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 6,
+ "train_loss": 0.7291262559592724,
+ "val_loss": 0.738037109375,
+ "val_auc": 0.9036701915596148,
+ "val_topk_overlap": 0.32063751054106754,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 7,
+ "train_loss": 0.7118012420833111,
+ "val_loss": 0.7175028175115585,
+ "val_auc": 0.9082043418016371,
+ "val_topk_overlap": 0.33353017529134166,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 8,
+ "train_loss": 0.7020367321868738,
+ "val_loss": 0.7400095015764236,
+ "val_auc": 0.9038924270293778,
+ "val_topk_overlap": 0.3313267280645091,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 9,
+ "train_loss": 0.6895044669508934,
+ "val_loss": 0.7122037708759308,
+ "val_auc": 0.9097822096475472,
+ "val_topk_overlap": 0.33196020452732494,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 10,
+ "train_loss": 0.6835353250304858,
+ "val_loss": 0.7104852745930353,
+ "val_auc": 0.9102591502276932,
+ "val_topk_overlap": 0.3377191635459625,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 11,
+ "train_loss": 0.6724687827130159,
+ "val_loss": 0.7091294328371683,
+ "val_auc": 0.9097279573159085,
+ "val_topk_overlap": 0.32852482645677916,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 12,
+ "train_loss": 0.6608287704487642,
+ "val_loss": 0.7088778764009476,
+ "val_auc": 0.9102058348049611,
+ "val_topk_overlap": 0.3395986399411693,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 13,
+ "train_loss": 0.6516422840456167,
+ "val_loss": 0.6851696570714315,
+ "val_auc": 0.9161228078916188,
+ "val_topk_overlap": 0.3576108115171014,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 14,
+ "train_loss": 0.641690748433272,
+ "val_loss": 0.6870623429616293,
+ "val_auc": 0.9166719819324596,
+ "val_topk_overlap": 0.35467355015247576,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 15,
+ "train_loss": 0.6213903104265531,
+ "val_loss": 0.7060682823260626,
+ "val_auc": 0.9133957909689026,
+ "val_topk_overlap": 0.3541738121319473,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 16,
+ "train_loss": 0.6141671799123287,
+ "val_loss": 0.6649165799220403,
+ "val_auc": 0.9223772612302986,
+ "val_topk_overlap": 0.3727640261277016,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 17,
+ "train_loss": 0.6156036208073298,
+ "val_loss": 0.6852359771728516,
+ "val_auc": 0.917546789308805,
+ "val_topk_overlap": 0.3619924910260988,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 18,
+ "train_loss": 0.6078479687372843,
+ "val_loss": 0.6580855945746104,
+ "val_auc": 0.9232592198731486,
+ "val_topk_overlap": 0.36904381643112044,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 19,
+ "train_loss": 0.6046239572266737,
+ "val_loss": 0.6743976672490438,
+ "val_auc": 0.9211166203403452,
+ "val_topk_overlap": 0.3716380846859304,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 20,
+ "train_loss": 0.6046414325634638,
+ "val_loss": 0.6747777163982391,
+ "val_auc": 0.9219827510935892,
+ "val_topk_overlap": 0.36950146318342597,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 21,
+ "train_loss": 0.5860095359385014,
+ "val_loss": 0.6683605263630549,
+ "val_auc": 0.9212946098630218,
+ "val_topk_overlap": 0.36769860427540924,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 22,
+ "train_loss": 0.5924560849865278,
+ "val_loss": 0.6608883539835612,
+ "val_auc": 0.9237303628010585,
+ "val_topk_overlap": 0.38014786877240736,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 23,
+ "train_loss": 0.5699630603194237,
+ "val_loss": 0.6451186140378317,
+ "val_auc": 0.9271866474545916,
+ "val_topk_overlap": 0.3881152462988639,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 24,
+ "train_loss": 0.5860506445169449,
+ "val_loss": 0.6344831412037214,
+ "val_auc": 0.9279389861019536,
+ "val_topk_overlap": 0.37646285728709716,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 25,
+ "train_loss": 0.5696679763495922,
+ "val_loss": 0.651521734893322,
+ "val_auc": 0.926708376460331,
+ "val_topk_overlap": 0.3929882611353039,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 26,
+ "train_loss": 0.5605074142416319,
+ "val_loss": 0.6179426908493042,
+ "val_auc": 0.9313555002762031,
+ "val_topk_overlap": 0.38825309368394906,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 27,
+ "train_loss": 0.5452606951196989,
+ "val_loss": 0.6548436383406321,
+ "val_auc": 0.9257514085577712,
+ "val_topk_overlap": 0.3863040639453161,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 28,
+ "train_loss": 0.5649935603141785,
+ "val_loss": 0.6346206516027451,
+ "val_auc": 0.9282934601660542,
+ "val_topk_overlap": 0.3894207633159005,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 29,
+ "train_loss": 0.5343000267942747,
+ "val_loss": 0.6193932965397835,
+ "val_auc": 0.9335666994117104,
+ "val_topk_overlap": 0.40213981828158085,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 30,
+ "train_loss": 0.5222514060636362,
+ "val_loss": 0.6292086839675903,
+ "val_auc": 0.9315723170567752,
+ "val_topk_overlap": 0.4018058930665952,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 31,
+ "train_loss": 0.5288418171306452,
+ "val_loss": 0.6447375019391378,
+ "val_auc": 0.9296940196560114,
+ "val_topk_overlap": 0.3995336538081403,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 32,
+ "train_loss": 0.5321331315984329,
+ "val_loss": 0.6151211510101954,
+ "val_auc": 0.9339459494864105,
+ "val_topk_overlap": 0.41235340711455215,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 33,
+ "train_loss": 0.530803769826889,
+ "val_loss": 0.6180161188046137,
+ "val_auc": 0.9337274851175723,
+ "val_topk_overlap": 0.40770859907428864,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 34,
+ "train_loss": 0.5169201834748188,
+ "val_loss": 0.6140060871839523,
+ "val_auc": 0.9357011768509869,
+ "val_topk_overlap": 0.41396157069825373,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 35,
+ "train_loss": 0.5327582576622566,
+ "val_loss": 0.5903470193346342,
+ "val_auc": 0.9380921686251513,
+ "val_topk_overlap": 0.41993146997097147,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 36,
+ "train_loss": 0.5328234620392323,
+ "val_loss": 0.619572805861632,
+ "val_auc": 0.9348548623436956,
+ "val_topk_overlap": 0.42379147798654376,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 37,
+ "train_loss": 0.5179037377238274,
+ "val_loss": 0.6465846449136734,
+ "val_auc": 0.9321262023401722,
+ "val_topk_overlap": 0.4210270920253441,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 38,
+ "train_loss": 0.5000059170027574,
+ "val_loss": 0.6163648466269175,
+ "val_auc": 0.9355412748925351,
+ "val_topk_overlap": 0.4168377015768949,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 39,
+ "train_loss": 0.5333476103842258,
+ "val_loss": 0.601667749385039,
+ "val_auc": 0.9388670833680122,
+ "val_topk_overlap": 0.4324906240826149,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 40,
+ "train_loss": 0.49654081215461093,
+ "val_loss": 0.6376668587327003,
+ "val_auc": 0.9323076689591827,
+ "val_topk_overlap": 0.42067692553266867,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 41,
+ "train_loss": 0.49814322777092457,
+ "val_loss": 0.5965311030546824,
+ "val_auc": 0.9379983546564077,
+ "val_topk_overlap": 0.4248828237011408,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 42,
+ "train_loss": 0.4916490235676368,
+ "val_loss": 0.6603853727380434,
+ "val_auc": 0.9284689503947617,
+ "val_topk_overlap": 0.40912795311449807,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 43,
+ "train_loss": 0.5014090954015652,
+ "val_loss": 0.606838454802831,
+ "val_auc": 0.9374487658477999,
+ "val_topk_overlap": 0.42794334160595554,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 44,
+ "train_loss": 0.4867809346566598,
+ "val_loss": 0.5999851673841476,
+ "val_auc": 0.9387288792950925,
+ "val_topk_overlap": 0.43031923154259843,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 45,
+ "train_loss": 0.47708118582765263,
+ "val_loss": 0.5924614369869232,
+ "val_auc": 0.9402622606363618,
+ "val_topk_overlap": 0.4322550191316707,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.001
+ },
+ {
+ "epoch": 46,
+ "train_loss": 0.47802630874017876,
+ "val_loss": 0.6203606501221657,
+ "val_auc": 0.9358948083662981,
+ "val_topk_overlap": 0.4312379379630456,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 47,
+ "train_loss": 0.4643762943645318,
+ "val_loss": 0.6020812268058459,
+ "val_auc": 0.9401552072421557,
+ "val_topk_overlap": 0.4339950425104022,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 48,
+ "train_loss": 0.45041724294424057,
+ "val_loss": 0.6030316427350044,
+ "val_auc": 0.940497758680752,
+ "val_topk_overlap": 0.44206971785040405,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 49,
+ "train_loss": 0.446329349031051,
+ "val_loss": 0.607378251850605,
+ "val_auc": 0.9405052575110606,
+ "val_topk_overlap": 0.44424490947288175,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 50,
+ "train_loss": 0.4445270175735156,
+ "val_loss": 0.6005118936300278,
+ "val_auc": 0.940766237758347,
+ "val_topk_overlap": 0.43260791390184855,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 51,
+ "train_loss": 0.4460391675432523,
+ "val_loss": 0.6029875800013542,
+ "val_auc": 0.9409514039912139,
+ "val_topk_overlap": 0.45019310765449216,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 52,
+ "train_loss": 0.4418986613551776,
+ "val_loss": 0.6034468238552412,
+ "val_auc": 0.9406844266315528,
+ "val_topk_overlap": 0.44199077988820984,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 53,
+ "train_loss": 0.45017045301695663,
+ "val_loss": 0.6176436940828959,
+ "val_auc": 0.9395928665376544,
+ "val_topk_overlap": 0.43845852941961805,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 54,
+ "train_loss": 0.4438604520012935,
+ "val_loss": 0.6102191135287285,
+ "val_auc": 0.9402374042257553,
+ "val_topk_overlap": 0.44187147223059947,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 55,
+ "train_loss": 0.43919234598676365,
+ "val_loss": 0.6168825899561247,
+ "val_auc": 0.9411819435660866,
+ "val_topk_overlap": 0.4501981058770216,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 56,
+ "train_loss": 0.44451989606022835,
+ "val_loss": 0.6126844038565954,
+ "val_auc": 0.9395184630110243,
+ "val_topk_overlap": 0.43740834990699734,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 57,
+ "train_loss": 0.4568589733292659,
+ "val_loss": 0.587329626083374,
+ "val_auc": 0.941194203700295,
+ "val_topk_overlap": 0.4401501924816575,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 58,
+ "train_loss": 0.44505749208231765,
+ "val_loss": 0.6224502697587013,
+ "val_auc": 0.9398294219991805,
+ "val_topk_overlap": 0.44548887871606835,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 59,
+ "train_loss": 0.43547111190855503,
+ "val_loss": 0.5913231869538625,
+ "val_auc": 0.9435686505726166,
+ "val_topk_overlap": 0.45369382113032325,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 60,
+ "train_loss": 0.43305354565382004,
+ "val_loss": 0.6314671859145164,
+ "val_auc": 0.9385988844361027,
+ "val_topk_overlap": 0.4377768264505535,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 61,
+ "train_loss": 0.4373071851829688,
+ "val_loss": 0.6283594146370888,
+ "val_auc": 0.9401304130793475,
+ "val_topk_overlap": 0.4329978451141574,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 62,
+ "train_loss": 0.43299777743717033,
+ "val_loss": 0.6291215494275093,
+ "val_auc": 0.9410761593885777,
+ "val_topk_overlap": 0.44497516710926627,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 63,
+ "train_loss": 0.42864579521119595,
+ "val_loss": 0.6106193959712982,
+ "val_auc": 0.9424943034022305,
+ "val_topk_overlap": 0.4532936274616251,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 64,
+ "train_loss": 0.42673514783382416,
+ "val_loss": 0.6450835888584455,
+ "val_auc": 0.9371212242970672,
+ "val_topk_overlap": 0.43187084953076466,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 65,
+ "train_loss": 0.4351537538071473,
+ "val_loss": 0.6039384330312411,
+ "val_auc": 0.9416574503767061,
+ "val_topk_overlap": 0.4413121605675935,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 66,
+ "train_loss": 0.4369606903443734,
+ "val_loss": 0.6139999578396479,
+ "val_auc": 0.9417945131346139,
+ "val_topk_overlap": 0.44869988908245123,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 67,
+ "train_loss": 0.42625842802226543,
+ "val_loss": 0.614420086145401,
+ "val_auc": 0.9418002442661444,
+ "val_topk_overlap": 0.4466080667540172,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.0005
+ },
+ {
+ "epoch": 68,
+ "train_loss": 0.4289086237549782,
+ "val_loss": 0.6421931609511375,
+ "val_auc": 0.9381999297311365,
+ "val_topk_overlap": 0.4407300883699639,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.00025
+ },
+ {
+ "epoch": 69,
+ "train_loss": 0.4162418972700834,
+ "val_loss": 0.6197224507729212,
+ "val_auc": 0.9418537016432265,
+ "val_topk_overlap": 0.4524438704921057,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.00025
+ },
+ {
+ "epoch": 70,
+ "train_loss": 0.4120306807259719,
+ "val_loss": 0.6089134141802788,
+ "val_auc": 0.943210214554455,
+ "val_topk_overlap": 0.45175368788257725,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.00025
+ },
+ {
+ "epoch": 71,
+ "train_loss": 0.40985787970324356,
+ "val_loss": 0.6260952974359194,
+ "val_auc": 0.9419729299378439,
+ "val_topk_overlap": 0.45117531843183434,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.00025
+ },
+ {
+ "epoch": 72,
+ "train_loss": 0.4100499761601289,
+ "val_loss": 0.6254942963520685,
+ "val_auc": 0.9414634241732339,
+ "val_topk_overlap": 0.4515264870513763,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.00025
+ },
+ {
+ "epoch": 73,
+ "train_loss": 0.4103688560426235,
+ "val_loss": 0.617545910179615,
+ "val_auc": 0.9422998727410377,
+ "val_topk_overlap": 0.45038961083279627,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.00025
+ },
+ {
+ "epoch": 74,
+ "train_loss": 0.40805083389083546,
+ "val_loss": 0.6290716951092085,
+ "val_auc": 0.9419815230403903,
+ "val_topk_overlap": 0.45038819117177503,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.00025
+ },
+ {
+ "epoch": 75,
+ "train_loss": 0.40792630054056644,
+ "val_loss": 0.6340545068184534,
+ "val_auc": 0.9403481996467591,
+ "val_topk_overlap": 0.44560532650107126,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.00025
+ },
+ {
+ "epoch": 76,
+ "train_loss": 0.40834025479853153,
+ "val_loss": 0.6236351157228152,
+ "val_auc": 0.9428621339939343,
+ "val_topk_overlap": 0.4546709457187485,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.00025
+ },
+ {
+ "epoch": 77,
+ "train_loss": 0.4071060884743929,
+ "val_loss": 0.6236031403144201,
+ "val_auc": 0.9420169620152015,
+ "val_topk_overlap": 0.4530651445404334,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.00025
+ },
+ {
+ "epoch": 78,
+ "train_loss": 0.4074497365703185,
+ "val_loss": 0.6290433133641878,
+ "val_auc": 0.9421106588716064,
+ "val_topk_overlap": 0.45288347151685654,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.00025
+ },
+ {
+ "epoch": 79,
+ "train_loss": 0.40854040533304214,
+ "val_loss": 0.6204406345884005,
+ "val_auc": 0.9422574500711209,
+ "val_topk_overlap": 0.4520385582247283,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.000125
+ },
+ {
+ "epoch": 80,
+ "train_loss": 0.40153354965150356,
+ "val_loss": 0.632063552737236,
+ "val_auc": 0.9424195175064664,
+ "val_topk_overlap": 0.45488917815907826,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.000125
+ },
+ {
+ "epoch": 81,
+ "train_loss": 0.4004344331721465,
+ "val_loss": 0.6369497875372568,
+ "val_auc": 0.9416930329987134,
+ "val_topk_overlap": 0.44976943200120656,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.000125
+ },
+ {
+ "epoch": 82,
+ "train_loss": 0.39863520363966626,
+ "val_loss": 0.6321395362416903,
+ "val_auc": 0.9425178927376926,
+ "val_topk_overlap": 0.45331703729372624,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.000125
+ },
+ {
+ "epoch": 83,
+ "train_loss": 0.40041249555846053,
+ "val_loss": 0.6306998108824095,
+ "val_auc": 0.9420066732924216,
+ "val_topk_overlap": 0.4527129685740117,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.000125
+ },
+ {
+ "epoch": 84,
+ "train_loss": 0.3980693680544694,
+ "val_loss": 0.6334150905410448,
+ "val_auc": 0.9417373821686397,
+ "val_topk_overlap": 0.45229146535383963,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.000125
+ },
+ {
+ "epoch": 85,
+ "train_loss": 0.39918220477799576,
+ "val_loss": 0.6338345656792322,
+ "val_auc": 0.9418289696568314,
+ "val_topk_overlap": 0.45314173622093856,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.000125
+ },
+ {
+ "epoch": 86,
+ "train_loss": 0.3980860977123181,
+ "val_loss": 0.6285603841145834,
+ "val_auc": 0.942747009903466,
+ "val_topk_overlap": 0.4547239031491113,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.000125
+ },
+ {
+ "epoch": 87,
+ "train_loss": 0.39842924910287064,
+ "val_loss": 0.6385276938478152,
+ "val_auc": 0.9419261166158088,
+ "val_topk_overlap": 0.45597434103509366,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.000125
+ },
+ {
+ "epoch": 88,
+ "train_loss": 0.3973500070472558,
+ "val_loss": 0.655018168191115,
+ "val_auc": 0.9400152699086647,
+ "val_topk_overlap": 0.44998755110062144,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.000125
+ },
+ {
+ "epoch": 89,
+ "train_loss": 0.3958093722661336,
+ "val_loss": 0.6387847339113554,
+ "val_auc": 0.9418482854933052,
+ "val_topk_overlap": 0.4550794129001621,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 0.000125
+ },
+ {
+ "epoch": 90,
+ "train_loss": 0.39699620256821316,
+ "val_loss": 0.6364182805021604,
+ "val_auc": 0.9422100800575627,
+ "val_topk_overlap": 0.45455014977480973,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 6.25e-05
+ },
+ {
+ "epoch": 91,
+ "train_loss": 0.39377099089324474,
+ "val_loss": 0.6385861511031786,
+ "val_auc": 0.9422414241184843,
+ "val_topk_overlap": 0.4553409776868369,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 6.25e-05
+ },
+ {
+ "epoch": 92,
+ "train_loss": 0.393089081471165,
+ "val_loss": 0.6448530877629916,
+ "val_auc": 0.9416143742782719,
+ "val_topk_overlap": 0.45326054623552575,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 6.25e-05
+ },
+ {
+ "epoch": 93,
+ "train_loss": 0.3924831257512172,
+ "val_loss": 0.6419519757231077,
+ "val_auc": 0.9417058895247528,
+ "val_topk_overlap": 0.4531113294679451,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 6.25e-05
+ },
+ {
+ "epoch": 94,
+ "train_loss": 0.3940933719277382,
+ "val_loss": 0.6359312161803246,
+ "val_auc": 0.9424735513283455,
+ "val_topk_overlap": 0.4535435590373251,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 6.25e-05
+ },
+ {
+ "epoch": 95,
+ "train_loss": 0.3928225214282672,
+ "val_loss": 0.6437094608942667,
+ "val_auc": 0.941819742134597,
+ "val_topk_overlap": 0.45096912604225076,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 6.25e-05
+ },
+ {
+ "epoch": 96,
+ "train_loss": 0.39205564993123215,
+ "val_loss": 0.6462149644891421,
+ "val_auc": 0.9415178562729243,
+ "val_topk_overlap": 0.4536663302717089,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 6.25e-05
+ },
+ {
+ "epoch": 97,
+ "train_loss": 0.39256475990017253,
+ "val_loss": 0.6427710602680842,
+ "val_auc": 0.9416758225940753,
+ "val_topk_overlap": 0.4539412408745828,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 6.25e-05
+ },
+ {
+ "epoch": 98,
+ "train_loss": 0.3940690668920676,
+ "val_loss": 0.6387203360597292,
+ "val_auc": 0.9422565119894593,
+ "val_topk_overlap": 0.4544070442694809,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 6.25e-05
+ },
+ {
+ "epoch": 99,
+ "train_loss": 0.3922309031089147,
+ "val_loss": 0.6448526407281557,
+ "val_auc": 0.9419215473887895,
+ "val_topk_overlap": 0.45427252886297304,
+ "physics_topk_overlap": 0.13027826412738905,
+ "lr": 6.25e-05
+ }
+]
\ No newline at end of file
diff --git a/outlook/data_correction/params_list.npz b/outlook/data_correction/params_list.npz
new file mode 100644
index 0000000..2afc001
Binary files /dev/null and b/outlook/data_correction/params_list.npz differ
diff --git a/outlook/data_correction/sample0000_step000.npz b/outlook/data_correction/sample0000_step000.npz
new file mode 100644
index 0000000..cd05b89
Binary files /dev/null and b/outlook/data_correction/sample0000_step000.npz differ
diff --git a/outlook/data_correction/sample0000_step001.npz b/outlook/data_correction/sample0000_step001.npz
new file mode 100644
index 0000000..e27061e
Binary files /dev/null and b/outlook/data_correction/sample0000_step001.npz differ
diff --git a/outlook/data_correction/sample0000_step002.npz b/outlook/data_correction/sample0000_step002.npz
new file mode 100644
index 0000000..dd69c12
Binary files /dev/null and b/outlook/data_correction/sample0000_step002.npz differ
diff --git a/outlook/data_correction/sample0000_step003.npz b/outlook/data_correction/sample0000_step003.npz
new file mode 100644
index 0000000..3db1bf5
Binary files /dev/null and b/outlook/data_correction/sample0000_step003.npz differ
diff --git a/outlook/data_correction/sample0000_step004.npz b/outlook/data_correction/sample0000_step004.npz
new file mode 100644
index 0000000..0238c18
Binary files /dev/null and b/outlook/data_correction/sample0000_step004.npz differ
diff --git a/outlook/data_correction/sample0000_step005.npz b/outlook/data_correction/sample0000_step005.npz
new file mode 100644
index 0000000..df55111
Binary files /dev/null and b/outlook/data_correction/sample0000_step005.npz differ
diff --git a/outlook/data_correction/sample0000_step006.npz b/outlook/data_correction/sample0000_step006.npz
new file mode 100644
index 0000000..1d24f23
Binary files /dev/null and b/outlook/data_correction/sample0000_step006.npz differ
diff --git a/outlook/data_correction/sample0000_step007.npz b/outlook/data_correction/sample0000_step007.npz
new file mode 100644
index 0000000..cb53132
Binary files /dev/null and b/outlook/data_correction/sample0000_step007.npz differ
diff --git a/outlook/data_correction/sample0000_step008.npz b/outlook/data_correction/sample0000_step008.npz
new file mode 100644
index 0000000..5200dc6
Binary files /dev/null and b/outlook/data_correction/sample0000_step008.npz differ
diff --git a/outlook/data_correction/sample0000_step009.npz b/outlook/data_correction/sample0000_step009.npz
new file mode 100644
index 0000000..84ce481
Binary files /dev/null and b/outlook/data_correction/sample0000_step009.npz differ
diff --git a/outlook/data_correction/sample0000_step010.npz b/outlook/data_correction/sample0000_step010.npz
new file mode 100644
index 0000000..7cd058e
Binary files /dev/null and b/outlook/data_correction/sample0000_step010.npz differ
diff --git a/outlook/data_correction/sample0000_step011.npz b/outlook/data_correction/sample0000_step011.npz
new file mode 100644
index 0000000..11eb027
Binary files /dev/null and b/outlook/data_correction/sample0000_step011.npz differ
diff --git a/outlook/data_correction/sample0000_step012.npz b/outlook/data_correction/sample0000_step012.npz
new file mode 100644
index 0000000..4ab930a
Binary files /dev/null and b/outlook/data_correction/sample0000_step012.npz differ
diff --git a/outlook/data_correction/sample0000_step013.npz b/outlook/data_correction/sample0000_step013.npz
new file mode 100644
index 0000000..a6e746f
Binary files /dev/null and b/outlook/data_correction/sample0000_step013.npz differ
diff --git a/outlook/data_correction/sample0000_step014.npz b/outlook/data_correction/sample0000_step014.npz
new file mode 100644
index 0000000..11098b4
Binary files /dev/null and b/outlook/data_correction/sample0000_step014.npz differ
diff --git a/outlook/data_correction/sample0000_step015.npz b/outlook/data_correction/sample0000_step015.npz
new file mode 100644
index 0000000..770d04c
Binary files /dev/null and b/outlook/data_correction/sample0000_step015.npz differ
diff --git a/outlook/data_correction/sample0000_step016.npz b/outlook/data_correction/sample0000_step016.npz
new file mode 100644
index 0000000..b8b7cf8
Binary files /dev/null and b/outlook/data_correction/sample0000_step016.npz differ
diff --git a/outlook/data_correction/sample0000_step017.npz b/outlook/data_correction/sample0000_step017.npz
new file mode 100644
index 0000000..c5e7ba4
Binary files /dev/null and b/outlook/data_correction/sample0000_step017.npz differ
diff --git a/outlook/data_correction/sample0000_step018.npz b/outlook/data_correction/sample0000_step018.npz
new file mode 100644
index 0000000..9681e89
Binary files /dev/null and b/outlook/data_correction/sample0000_step018.npz differ
diff --git a/outlook/data_correction/sample0001_step000.npz b/outlook/data_correction/sample0001_step000.npz
new file mode 100644
index 0000000..c9051c7
Binary files /dev/null and b/outlook/data_correction/sample0001_step000.npz differ
diff --git a/outlook/data_correction/sample0001_step001.npz b/outlook/data_correction/sample0001_step001.npz
new file mode 100644
index 0000000..0bc8c35
Binary files /dev/null and b/outlook/data_correction/sample0001_step001.npz differ
diff --git a/outlook/data_correction/sample0001_step002.npz b/outlook/data_correction/sample0001_step002.npz
new file mode 100644
index 0000000..2c5666f
Binary files /dev/null and b/outlook/data_correction/sample0001_step002.npz differ
diff --git a/outlook/data_correction/sample0001_step003.npz b/outlook/data_correction/sample0001_step003.npz
new file mode 100644
index 0000000..59ec210
Binary files /dev/null and b/outlook/data_correction/sample0001_step003.npz differ
diff --git a/outlook/data_correction/sample0001_step004.npz b/outlook/data_correction/sample0001_step004.npz
new file mode 100644
index 0000000..1cb6854
Binary files /dev/null and b/outlook/data_correction/sample0001_step004.npz differ
diff --git a/outlook/data_correction/sample0001_step005.npz b/outlook/data_correction/sample0001_step005.npz
new file mode 100644
index 0000000..27aeeeb
Binary files /dev/null and b/outlook/data_correction/sample0001_step005.npz differ
diff --git a/outlook/data_correction/sample0001_step006.npz b/outlook/data_correction/sample0001_step006.npz
new file mode 100644
index 0000000..cb9fbfa
Binary files /dev/null and b/outlook/data_correction/sample0001_step006.npz differ
diff --git a/outlook/data_correction/sample0001_step007.npz b/outlook/data_correction/sample0001_step007.npz
new file mode 100644
index 0000000..1db110f
Binary files /dev/null and b/outlook/data_correction/sample0001_step007.npz differ
diff --git a/outlook/data_correction/sample0001_step008.npz b/outlook/data_correction/sample0001_step008.npz
new file mode 100644
index 0000000..1c3785d
Binary files /dev/null and b/outlook/data_correction/sample0001_step008.npz differ
diff --git a/outlook/data_correction/sample0001_step009.npz b/outlook/data_correction/sample0001_step009.npz
new file mode 100644
index 0000000..2fccaf1
Binary files /dev/null and b/outlook/data_correction/sample0001_step009.npz differ
diff --git a/outlook/data_correction/sample0001_step010.npz b/outlook/data_correction/sample0001_step010.npz
new file mode 100644
index 0000000..2c7f056
Binary files /dev/null and b/outlook/data_correction/sample0001_step010.npz differ
diff --git a/outlook/data_correction/sample0001_step011.npz b/outlook/data_correction/sample0001_step011.npz
new file mode 100644
index 0000000..f531e8c
Binary files /dev/null and b/outlook/data_correction/sample0001_step011.npz differ
diff --git a/outlook/data_correction/sample0001_step012.npz b/outlook/data_correction/sample0001_step012.npz
new file mode 100644
index 0000000..7a33a64
Binary files /dev/null and b/outlook/data_correction/sample0001_step012.npz differ
diff --git a/outlook/data_correction/sample0001_step013.npz b/outlook/data_correction/sample0001_step013.npz
new file mode 100644
index 0000000..264fcde
Binary files /dev/null and b/outlook/data_correction/sample0001_step013.npz differ
diff --git a/outlook/data_correction/sample0001_step014.npz b/outlook/data_correction/sample0001_step014.npz
new file mode 100644
index 0000000..88c9363
Binary files /dev/null and b/outlook/data_correction/sample0001_step014.npz differ
diff --git a/outlook/data_correction/sample0001_step015.npz b/outlook/data_correction/sample0001_step015.npz
new file mode 100644
index 0000000..0d98f20
Binary files /dev/null and b/outlook/data_correction/sample0001_step015.npz differ
diff --git a/outlook/data_correction/sample0001_step016.npz b/outlook/data_correction/sample0001_step016.npz
new file mode 100644
index 0000000..0468b7d
Binary files /dev/null and b/outlook/data_correction/sample0001_step016.npz differ
diff --git a/outlook/data_correction/sample0001_step017.npz b/outlook/data_correction/sample0001_step017.npz
new file mode 100644
index 0000000..140ab58
Binary files /dev/null and b/outlook/data_correction/sample0001_step017.npz differ
diff --git a/outlook/data_correction/sample0001_step018.npz b/outlook/data_correction/sample0001_step018.npz
new file mode 100644
index 0000000..372b7a7
Binary files /dev/null and b/outlook/data_correction/sample0001_step018.npz differ
diff --git a/outlook/data_correction/sample0002_step000.npz b/outlook/data_correction/sample0002_step000.npz
new file mode 100644
index 0000000..915b8bf
Binary files /dev/null and b/outlook/data_correction/sample0002_step000.npz differ
diff --git a/outlook/data_correction/sample0002_step001.npz b/outlook/data_correction/sample0002_step001.npz
new file mode 100644
index 0000000..cbda2da
Binary files /dev/null and b/outlook/data_correction/sample0002_step001.npz differ
diff --git a/outlook/data_correction/sample0002_step002.npz b/outlook/data_correction/sample0002_step002.npz
new file mode 100644
index 0000000..ac53b8b
Binary files /dev/null and b/outlook/data_correction/sample0002_step002.npz differ
diff --git a/outlook/data_correction/sample0002_step003.npz b/outlook/data_correction/sample0002_step003.npz
new file mode 100644
index 0000000..dce73fe
Binary files /dev/null and b/outlook/data_correction/sample0002_step003.npz differ
diff --git a/outlook/data_correction/sample0002_step004.npz b/outlook/data_correction/sample0002_step004.npz
new file mode 100644
index 0000000..e714b1f
Binary files /dev/null and b/outlook/data_correction/sample0002_step004.npz differ
diff --git a/outlook/data_correction/sample0002_step005.npz b/outlook/data_correction/sample0002_step005.npz
new file mode 100644
index 0000000..c63a252
Binary files /dev/null and b/outlook/data_correction/sample0002_step005.npz differ
diff --git a/outlook/data_correction/sample0002_step006.npz b/outlook/data_correction/sample0002_step006.npz
new file mode 100644
index 0000000..279cb13
Binary files /dev/null and b/outlook/data_correction/sample0002_step006.npz differ
diff --git a/outlook/data_correction/sample0002_step007.npz b/outlook/data_correction/sample0002_step007.npz
new file mode 100644
index 0000000..9f788e8
Binary files /dev/null and b/outlook/data_correction/sample0002_step007.npz differ
diff --git a/outlook/data_correction/sample0002_step008.npz b/outlook/data_correction/sample0002_step008.npz
new file mode 100644
index 0000000..1409dac
Binary files /dev/null and b/outlook/data_correction/sample0002_step008.npz differ
diff --git a/outlook/data_correction/sample0002_step009.npz b/outlook/data_correction/sample0002_step009.npz
new file mode 100644
index 0000000..7629815
Binary files /dev/null and b/outlook/data_correction/sample0002_step009.npz differ
diff --git a/outlook/data_correction/sample0002_step010.npz b/outlook/data_correction/sample0002_step010.npz
new file mode 100644
index 0000000..bbe6b91
Binary files /dev/null and b/outlook/data_correction/sample0002_step010.npz differ
diff --git a/outlook/data_correction/sample0002_step011.npz b/outlook/data_correction/sample0002_step011.npz
new file mode 100644
index 0000000..40c5ecd
Binary files /dev/null and b/outlook/data_correction/sample0002_step011.npz differ
diff --git a/outlook/data_correction/sample0002_step012.npz b/outlook/data_correction/sample0002_step012.npz
new file mode 100644
index 0000000..fb1264a
Binary files /dev/null and b/outlook/data_correction/sample0002_step012.npz differ
diff --git a/outlook/data_correction/sample0002_step013.npz b/outlook/data_correction/sample0002_step013.npz
new file mode 100644
index 0000000..837ebff
Binary files /dev/null and b/outlook/data_correction/sample0002_step013.npz differ
diff --git a/outlook/data_correction/sample0002_step014.npz b/outlook/data_correction/sample0002_step014.npz
new file mode 100644
index 0000000..86b69ef
Binary files /dev/null and b/outlook/data_correction/sample0002_step014.npz differ
diff --git a/outlook/data_correction/sample0002_step015.npz b/outlook/data_correction/sample0002_step015.npz
new file mode 100644
index 0000000..6cedf4c
Binary files /dev/null and b/outlook/data_correction/sample0002_step015.npz differ
diff --git a/outlook/data_correction/sample0002_step016.npz b/outlook/data_correction/sample0002_step016.npz
new file mode 100644
index 0000000..4c31d27
Binary files /dev/null and b/outlook/data_correction/sample0002_step016.npz differ
diff --git a/outlook/data_correction/sample0002_step017.npz b/outlook/data_correction/sample0002_step017.npz
new file mode 100644
index 0000000..dd6cb18
Binary files /dev/null and b/outlook/data_correction/sample0002_step017.npz differ
diff --git a/outlook/data_correction/sample0002_step018.npz b/outlook/data_correction/sample0002_step018.npz
new file mode 100644
index 0000000..17f72e6
Binary files /dev/null and b/outlook/data_correction/sample0002_step018.npz differ
diff --git a/outlook/data_correction/sample0003_step000.npz b/outlook/data_correction/sample0003_step000.npz
new file mode 100644
index 0000000..fb302e6
Binary files /dev/null and b/outlook/data_correction/sample0003_step000.npz differ
diff --git a/outlook/data_correction/sample0003_step001.npz b/outlook/data_correction/sample0003_step001.npz
new file mode 100644
index 0000000..f187cac
Binary files /dev/null and b/outlook/data_correction/sample0003_step001.npz differ
diff --git a/outlook/data_correction/sample0003_step002.npz b/outlook/data_correction/sample0003_step002.npz
new file mode 100644
index 0000000..16a5484
Binary files /dev/null and b/outlook/data_correction/sample0003_step002.npz differ
diff --git a/outlook/data_correction/sample0003_step003.npz b/outlook/data_correction/sample0003_step003.npz
new file mode 100644
index 0000000..3a6f814
Binary files /dev/null and b/outlook/data_correction/sample0003_step003.npz differ
diff --git a/outlook/data_correction/sample0003_step004.npz b/outlook/data_correction/sample0003_step004.npz
new file mode 100644
index 0000000..4f3ba89
Binary files /dev/null and b/outlook/data_correction/sample0003_step004.npz differ
diff --git a/outlook/data_correction/sample0003_step005.npz b/outlook/data_correction/sample0003_step005.npz
new file mode 100644
index 0000000..03ea777
Binary files /dev/null and b/outlook/data_correction/sample0003_step005.npz differ
diff --git a/outlook/data_correction/sample0003_step006.npz b/outlook/data_correction/sample0003_step006.npz
new file mode 100644
index 0000000..54c6356
Binary files /dev/null and b/outlook/data_correction/sample0003_step006.npz differ
diff --git a/outlook/data_correction/sample0003_step007.npz b/outlook/data_correction/sample0003_step007.npz
new file mode 100644
index 0000000..a5dce7a
Binary files /dev/null and b/outlook/data_correction/sample0003_step007.npz differ
diff --git a/outlook/data_correction/sample0003_step008.npz b/outlook/data_correction/sample0003_step008.npz
new file mode 100644
index 0000000..b367704
Binary files /dev/null and b/outlook/data_correction/sample0003_step008.npz differ
diff --git a/outlook/data_correction/sample0003_step009.npz b/outlook/data_correction/sample0003_step009.npz
new file mode 100644
index 0000000..d7db3bd
Binary files /dev/null and b/outlook/data_correction/sample0003_step009.npz differ
diff --git a/outlook/data_correction/sample0003_step010.npz b/outlook/data_correction/sample0003_step010.npz
new file mode 100644
index 0000000..0238992
Binary files /dev/null and b/outlook/data_correction/sample0003_step010.npz differ
diff --git a/outlook/data_correction/sample0003_step011.npz b/outlook/data_correction/sample0003_step011.npz
new file mode 100644
index 0000000..cb544d3
Binary files /dev/null and b/outlook/data_correction/sample0003_step011.npz differ
diff --git a/outlook/data_correction/sample0003_step012.npz b/outlook/data_correction/sample0003_step012.npz
new file mode 100644
index 0000000..184faba
Binary files /dev/null and b/outlook/data_correction/sample0003_step012.npz differ
diff --git a/outlook/data_correction/sample0003_step013.npz b/outlook/data_correction/sample0003_step013.npz
new file mode 100644
index 0000000..f937fb1
Binary files /dev/null and b/outlook/data_correction/sample0003_step013.npz differ
diff --git a/outlook/data_correction/sample0003_step014.npz b/outlook/data_correction/sample0003_step014.npz
new file mode 100644
index 0000000..1d15e16
Binary files /dev/null and b/outlook/data_correction/sample0003_step014.npz differ
diff --git a/outlook/data_correction/sample0003_step015.npz b/outlook/data_correction/sample0003_step015.npz
new file mode 100644
index 0000000..afd9fef
Binary files /dev/null and b/outlook/data_correction/sample0003_step015.npz differ
diff --git a/outlook/data_correction/sample0003_step016.npz b/outlook/data_correction/sample0003_step016.npz
new file mode 100644
index 0000000..17aba53
Binary files /dev/null and b/outlook/data_correction/sample0003_step016.npz differ
diff --git a/outlook/data_correction/sample0003_step017.npz b/outlook/data_correction/sample0003_step017.npz
new file mode 100644
index 0000000..f8e2cfd
Binary files /dev/null and b/outlook/data_correction/sample0003_step017.npz differ
diff --git a/outlook/data_correction/sample0003_step018.npz b/outlook/data_correction/sample0003_step018.npz
new file mode 100644
index 0000000..50040e6
Binary files /dev/null and b/outlook/data_correction/sample0003_step018.npz differ
diff --git a/outlook/data_correction/sample0004_step000.npz b/outlook/data_correction/sample0004_step000.npz
new file mode 100644
index 0000000..3336c5b
Binary files /dev/null and b/outlook/data_correction/sample0004_step000.npz differ
diff --git a/outlook/data_correction/sample0004_step001.npz b/outlook/data_correction/sample0004_step001.npz
new file mode 100644
index 0000000..213e630
Binary files /dev/null and b/outlook/data_correction/sample0004_step001.npz differ
diff --git a/outlook/data_correction/sample0004_step002.npz b/outlook/data_correction/sample0004_step002.npz
new file mode 100644
index 0000000..9d9dfd0
Binary files /dev/null and b/outlook/data_correction/sample0004_step002.npz differ
diff --git a/outlook/data_correction/sample0004_step003.npz b/outlook/data_correction/sample0004_step003.npz
new file mode 100644
index 0000000..040a711
Binary files /dev/null and b/outlook/data_correction/sample0004_step003.npz differ
diff --git a/outlook/data_correction/sample0004_step004.npz b/outlook/data_correction/sample0004_step004.npz
new file mode 100644
index 0000000..36ccb26
Binary files /dev/null and b/outlook/data_correction/sample0004_step004.npz differ
diff --git a/outlook/data_correction/sample0004_step005.npz b/outlook/data_correction/sample0004_step005.npz
new file mode 100644
index 0000000..62c2b27
Binary files /dev/null and b/outlook/data_correction/sample0004_step005.npz differ
diff --git a/outlook/data_correction/sample0004_step006.npz b/outlook/data_correction/sample0004_step006.npz
new file mode 100644
index 0000000..53f65b7
Binary files /dev/null and b/outlook/data_correction/sample0004_step006.npz differ
diff --git a/outlook/data_correction/sample0004_step007.npz b/outlook/data_correction/sample0004_step007.npz
new file mode 100644
index 0000000..c3fa134
Binary files /dev/null and b/outlook/data_correction/sample0004_step007.npz differ
diff --git a/outlook/data_correction/sample0004_step008.npz b/outlook/data_correction/sample0004_step008.npz
new file mode 100644
index 0000000..79562cd
Binary files /dev/null and b/outlook/data_correction/sample0004_step008.npz differ
diff --git a/outlook/data_correction/sample0004_step009.npz b/outlook/data_correction/sample0004_step009.npz
new file mode 100644
index 0000000..59bef88
Binary files /dev/null and b/outlook/data_correction/sample0004_step009.npz differ
diff --git a/outlook/data_correction/sample0004_step010.npz b/outlook/data_correction/sample0004_step010.npz
new file mode 100644
index 0000000..1e430eb
Binary files /dev/null and b/outlook/data_correction/sample0004_step010.npz differ
diff --git a/outlook/data_correction/sample0004_step011.npz b/outlook/data_correction/sample0004_step011.npz
new file mode 100644
index 0000000..51639ff
Binary files /dev/null and b/outlook/data_correction/sample0004_step011.npz differ
diff --git a/outlook/data_correction/sample0004_step012.npz b/outlook/data_correction/sample0004_step012.npz
new file mode 100644
index 0000000..3a2e247
Binary files /dev/null and b/outlook/data_correction/sample0004_step012.npz differ
diff --git a/outlook/data_correction/sample0004_step013.npz b/outlook/data_correction/sample0004_step013.npz
new file mode 100644
index 0000000..788ddc5
Binary files /dev/null and b/outlook/data_correction/sample0004_step013.npz differ
diff --git a/outlook/data_correction/sample0004_step014.npz b/outlook/data_correction/sample0004_step014.npz
new file mode 100644
index 0000000..904368d
Binary files /dev/null and b/outlook/data_correction/sample0004_step014.npz differ
diff --git a/outlook/data_correction/sample0004_step015.npz b/outlook/data_correction/sample0004_step015.npz
new file mode 100644
index 0000000..e690157
Binary files /dev/null and b/outlook/data_correction/sample0004_step015.npz differ
diff --git a/outlook/data_correction/sample0004_step016.npz b/outlook/data_correction/sample0004_step016.npz
new file mode 100644
index 0000000..68eb605
Binary files /dev/null and b/outlook/data_correction/sample0004_step016.npz differ
diff --git a/outlook/data_correction/sample0004_step017.npz b/outlook/data_correction/sample0004_step017.npz
new file mode 100644
index 0000000..6d58443
Binary files /dev/null and b/outlook/data_correction/sample0004_step017.npz differ
diff --git a/outlook/data_correction/sample0004_step018.npz b/outlook/data_correction/sample0004_step018.npz
new file mode 100644
index 0000000..0f1b3d3
Binary files /dev/null and b/outlook/data_correction/sample0004_step018.npz differ
diff --git a/outlook/data_correction/sample0005_step000.npz b/outlook/data_correction/sample0005_step000.npz
new file mode 100644
index 0000000..982985c
Binary files /dev/null and b/outlook/data_correction/sample0005_step000.npz differ
diff --git a/outlook/data_correction/sample0005_step001.npz b/outlook/data_correction/sample0005_step001.npz
new file mode 100644
index 0000000..d24c271
Binary files /dev/null and b/outlook/data_correction/sample0005_step001.npz differ
diff --git a/outlook/data_correction/sample0005_step002.npz b/outlook/data_correction/sample0005_step002.npz
new file mode 100644
index 0000000..fa16dc3
Binary files /dev/null and b/outlook/data_correction/sample0005_step002.npz differ
diff --git a/outlook/data_correction/sample0005_step003.npz b/outlook/data_correction/sample0005_step003.npz
new file mode 100644
index 0000000..b41cca6
Binary files /dev/null and b/outlook/data_correction/sample0005_step003.npz differ
diff --git a/outlook/data_correction/sample0005_step004.npz b/outlook/data_correction/sample0005_step004.npz
new file mode 100644
index 0000000..4cb4062
Binary files /dev/null and b/outlook/data_correction/sample0005_step004.npz differ
diff --git a/outlook/data_correction/sample0005_step005.npz b/outlook/data_correction/sample0005_step005.npz
new file mode 100644
index 0000000..3571bd2
Binary files /dev/null and b/outlook/data_correction/sample0005_step005.npz differ
diff --git a/outlook/data_correction/sample0005_step006.npz b/outlook/data_correction/sample0005_step006.npz
new file mode 100644
index 0000000..d910e68
Binary files /dev/null and b/outlook/data_correction/sample0005_step006.npz differ
diff --git a/outlook/data_correction/sample0005_step007.npz b/outlook/data_correction/sample0005_step007.npz
new file mode 100644
index 0000000..28fd553
Binary files /dev/null and b/outlook/data_correction/sample0005_step007.npz differ
diff --git a/outlook/data_correction/sample0005_step008.npz b/outlook/data_correction/sample0005_step008.npz
new file mode 100644
index 0000000..5ac9e50
Binary files /dev/null and b/outlook/data_correction/sample0005_step008.npz differ
diff --git a/outlook/data_correction/sample0005_step009.npz b/outlook/data_correction/sample0005_step009.npz
new file mode 100644
index 0000000..81f8a39
Binary files /dev/null and b/outlook/data_correction/sample0005_step009.npz differ
diff --git a/outlook/data_correction/sample0005_step010.npz b/outlook/data_correction/sample0005_step010.npz
new file mode 100644
index 0000000..1aabf85
Binary files /dev/null and b/outlook/data_correction/sample0005_step010.npz differ
diff --git a/outlook/data_correction/sample0005_step011.npz b/outlook/data_correction/sample0005_step011.npz
new file mode 100644
index 0000000..322ed88
Binary files /dev/null and b/outlook/data_correction/sample0005_step011.npz differ
diff --git a/outlook/data_correction/sample0005_step012.npz b/outlook/data_correction/sample0005_step012.npz
new file mode 100644
index 0000000..d5cd4e4
Binary files /dev/null and b/outlook/data_correction/sample0005_step012.npz differ
diff --git a/outlook/data_correction/sample0005_step013.npz b/outlook/data_correction/sample0005_step013.npz
new file mode 100644
index 0000000..69561ad
Binary files /dev/null and b/outlook/data_correction/sample0005_step013.npz differ
diff --git a/outlook/data_correction/sample0005_step014.npz b/outlook/data_correction/sample0005_step014.npz
new file mode 100644
index 0000000..c092383
Binary files /dev/null and b/outlook/data_correction/sample0005_step014.npz differ
diff --git a/outlook/data_correction/sample0005_step015.npz b/outlook/data_correction/sample0005_step015.npz
new file mode 100644
index 0000000..2d0605e
Binary files /dev/null and b/outlook/data_correction/sample0005_step015.npz differ
diff --git a/outlook/data_correction/sample0005_step016.npz b/outlook/data_correction/sample0005_step016.npz
new file mode 100644
index 0000000..ef148c1
Binary files /dev/null and b/outlook/data_correction/sample0005_step016.npz differ
diff --git a/outlook/data_correction/sample0005_step017.npz b/outlook/data_correction/sample0005_step017.npz
new file mode 100644
index 0000000..a642e84
Binary files /dev/null and b/outlook/data_correction/sample0005_step017.npz differ
diff --git a/outlook/data_correction/sample0005_step018.npz b/outlook/data_correction/sample0005_step018.npz
new file mode 100644
index 0000000..502cad9
Binary files /dev/null and b/outlook/data_correction/sample0005_step018.npz differ
diff --git a/outlook/data_correction/sample0006_step000.npz b/outlook/data_correction/sample0006_step000.npz
new file mode 100644
index 0000000..7463ab3
Binary files /dev/null and b/outlook/data_correction/sample0006_step000.npz differ
diff --git a/outlook/data_correction/sample0006_step001.npz b/outlook/data_correction/sample0006_step001.npz
new file mode 100644
index 0000000..7ec2127
Binary files /dev/null and b/outlook/data_correction/sample0006_step001.npz differ
diff --git a/outlook/data_correction/sample0006_step002.npz b/outlook/data_correction/sample0006_step002.npz
new file mode 100644
index 0000000..dfbef9d
Binary files /dev/null and b/outlook/data_correction/sample0006_step002.npz differ
diff --git a/outlook/data_correction/sample0006_step003.npz b/outlook/data_correction/sample0006_step003.npz
new file mode 100644
index 0000000..8bc5ead
Binary files /dev/null and b/outlook/data_correction/sample0006_step003.npz differ
diff --git a/outlook/data_correction/sample0006_step004.npz b/outlook/data_correction/sample0006_step004.npz
new file mode 100644
index 0000000..170d6fc
Binary files /dev/null and b/outlook/data_correction/sample0006_step004.npz differ
diff --git a/outlook/data_correction/sample0006_step005.npz b/outlook/data_correction/sample0006_step005.npz
new file mode 100644
index 0000000..2447ed4
Binary files /dev/null and b/outlook/data_correction/sample0006_step005.npz differ
diff --git a/outlook/data_correction/sample0006_step006.npz b/outlook/data_correction/sample0006_step006.npz
new file mode 100644
index 0000000..73013a0
Binary files /dev/null and b/outlook/data_correction/sample0006_step006.npz differ
diff --git a/outlook/data_correction/sample0006_step007.npz b/outlook/data_correction/sample0006_step007.npz
new file mode 100644
index 0000000..3ceea8c
Binary files /dev/null and b/outlook/data_correction/sample0006_step007.npz differ
diff --git a/outlook/data_correction/sample0006_step008.npz b/outlook/data_correction/sample0006_step008.npz
new file mode 100644
index 0000000..9fe53ba
Binary files /dev/null and b/outlook/data_correction/sample0006_step008.npz differ
diff --git a/outlook/data_correction/sample0006_step009.npz b/outlook/data_correction/sample0006_step009.npz
new file mode 100644
index 0000000..42f120a
Binary files /dev/null and b/outlook/data_correction/sample0006_step009.npz differ
diff --git a/outlook/data_correction/sample0006_step010.npz b/outlook/data_correction/sample0006_step010.npz
new file mode 100644
index 0000000..7f32076
Binary files /dev/null and b/outlook/data_correction/sample0006_step010.npz differ
diff --git a/outlook/data_correction/sample0006_step011.npz b/outlook/data_correction/sample0006_step011.npz
new file mode 100644
index 0000000..5f5a37f
Binary files /dev/null and b/outlook/data_correction/sample0006_step011.npz differ
diff --git a/outlook/data_correction/sample0006_step012.npz b/outlook/data_correction/sample0006_step012.npz
new file mode 100644
index 0000000..cd69c56
Binary files /dev/null and b/outlook/data_correction/sample0006_step012.npz differ
diff --git a/outlook/data_correction/sample0006_step013.npz b/outlook/data_correction/sample0006_step013.npz
new file mode 100644
index 0000000..c476e4f
Binary files /dev/null and b/outlook/data_correction/sample0006_step013.npz differ
diff --git a/outlook/data_correction/sample0006_step014.npz b/outlook/data_correction/sample0006_step014.npz
new file mode 100644
index 0000000..259c60d
Binary files /dev/null and b/outlook/data_correction/sample0006_step014.npz differ
diff --git a/outlook/data_correction/sample0006_step015.npz b/outlook/data_correction/sample0006_step015.npz
new file mode 100644
index 0000000..7669e2f
Binary files /dev/null and b/outlook/data_correction/sample0006_step015.npz differ
diff --git a/outlook/data_correction/sample0006_step016.npz b/outlook/data_correction/sample0006_step016.npz
new file mode 100644
index 0000000..d6afdc6
Binary files /dev/null and b/outlook/data_correction/sample0006_step016.npz differ
diff --git a/outlook/data_correction/sample0006_step017.npz b/outlook/data_correction/sample0006_step017.npz
new file mode 100644
index 0000000..93d7399
Binary files /dev/null and b/outlook/data_correction/sample0006_step017.npz differ
diff --git a/outlook/data_correction/sample0006_step018.npz b/outlook/data_correction/sample0006_step018.npz
new file mode 100644
index 0000000..25f4c7e
Binary files /dev/null and b/outlook/data_correction/sample0006_step018.npz differ
diff --git a/outlook/data_correction/sample0007_step000.npz b/outlook/data_correction/sample0007_step000.npz
new file mode 100644
index 0000000..b9ca7d5
Binary files /dev/null and b/outlook/data_correction/sample0007_step000.npz differ
diff --git a/outlook/data_correction/sample0007_step001.npz b/outlook/data_correction/sample0007_step001.npz
new file mode 100644
index 0000000..f647e76
Binary files /dev/null and b/outlook/data_correction/sample0007_step001.npz differ
diff --git a/outlook/data_correction/sample0007_step002.npz b/outlook/data_correction/sample0007_step002.npz
new file mode 100644
index 0000000..80d7d53
Binary files /dev/null and b/outlook/data_correction/sample0007_step002.npz differ
diff --git a/outlook/data_correction/sample0007_step003.npz b/outlook/data_correction/sample0007_step003.npz
new file mode 100644
index 0000000..2f21119
Binary files /dev/null and b/outlook/data_correction/sample0007_step003.npz differ
diff --git a/outlook/data_correction/sample0007_step004.npz b/outlook/data_correction/sample0007_step004.npz
new file mode 100644
index 0000000..5a352f9
Binary files /dev/null and b/outlook/data_correction/sample0007_step004.npz differ
diff --git a/outlook/data_correction/sample0007_step005.npz b/outlook/data_correction/sample0007_step005.npz
new file mode 100644
index 0000000..817747a
Binary files /dev/null and b/outlook/data_correction/sample0007_step005.npz differ
diff --git a/outlook/data_correction/sample0007_step006.npz b/outlook/data_correction/sample0007_step006.npz
new file mode 100644
index 0000000..186736a
Binary files /dev/null and b/outlook/data_correction/sample0007_step006.npz differ
diff --git a/outlook/data_correction/sample0007_step007.npz b/outlook/data_correction/sample0007_step007.npz
new file mode 100644
index 0000000..8c7a28b
Binary files /dev/null and b/outlook/data_correction/sample0007_step007.npz differ
diff --git a/outlook/data_correction/sample0007_step008.npz b/outlook/data_correction/sample0007_step008.npz
new file mode 100644
index 0000000..beeec4a
Binary files /dev/null and b/outlook/data_correction/sample0007_step008.npz differ
diff --git a/outlook/data_correction/sample0007_step009.npz b/outlook/data_correction/sample0007_step009.npz
new file mode 100644
index 0000000..1d57fcf
Binary files /dev/null and b/outlook/data_correction/sample0007_step009.npz differ
diff --git a/outlook/data_correction/sample0007_step010.npz b/outlook/data_correction/sample0007_step010.npz
new file mode 100644
index 0000000..62817f4
Binary files /dev/null and b/outlook/data_correction/sample0007_step010.npz differ
diff --git a/outlook/data_correction/sample0007_step011.npz b/outlook/data_correction/sample0007_step011.npz
new file mode 100644
index 0000000..38056db
Binary files /dev/null and b/outlook/data_correction/sample0007_step011.npz differ
diff --git a/outlook/data_correction/sample0007_step012.npz b/outlook/data_correction/sample0007_step012.npz
new file mode 100644
index 0000000..19784a7
Binary files /dev/null and b/outlook/data_correction/sample0007_step012.npz differ
diff --git a/outlook/data_correction/sample0007_step013.npz b/outlook/data_correction/sample0007_step013.npz
new file mode 100644
index 0000000..1ef6af0
Binary files /dev/null and b/outlook/data_correction/sample0007_step013.npz differ
diff --git a/outlook/data_correction/sample0007_step014.npz b/outlook/data_correction/sample0007_step014.npz
new file mode 100644
index 0000000..c2d07ff
Binary files /dev/null and b/outlook/data_correction/sample0007_step014.npz differ
diff --git a/outlook/data_correction/sample0007_step015.npz b/outlook/data_correction/sample0007_step015.npz
new file mode 100644
index 0000000..a85a534
Binary files /dev/null and b/outlook/data_correction/sample0007_step015.npz differ
diff --git a/outlook/data_correction/sample0007_step016.npz b/outlook/data_correction/sample0007_step016.npz
new file mode 100644
index 0000000..a763547
Binary files /dev/null and b/outlook/data_correction/sample0007_step016.npz differ
diff --git a/outlook/data_correction/sample0007_step017.npz b/outlook/data_correction/sample0007_step017.npz
new file mode 100644
index 0000000..072efd5
Binary files /dev/null and b/outlook/data_correction/sample0007_step017.npz differ
diff --git a/outlook/data_correction/sample0007_step018.npz b/outlook/data_correction/sample0007_step018.npz
new file mode 100644
index 0000000..f9a8e1b
Binary files /dev/null and b/outlook/data_correction/sample0007_step018.npz differ
diff --git a/outlook/data_correction/sample0007_step019.npz b/outlook/data_correction/sample0007_step019.npz
new file mode 100644
index 0000000..e768ed4
Binary files /dev/null and b/outlook/data_correction/sample0007_step019.npz differ
diff --git a/outlook/data_correction/sample0008_step000.npz b/outlook/data_correction/sample0008_step000.npz
new file mode 100644
index 0000000..f68fb6d
Binary files /dev/null and b/outlook/data_correction/sample0008_step000.npz differ
diff --git a/outlook/data_correction/sample0008_step001.npz b/outlook/data_correction/sample0008_step001.npz
new file mode 100644
index 0000000..898796e
Binary files /dev/null and b/outlook/data_correction/sample0008_step001.npz differ
diff --git a/outlook/data_correction/sample0008_step002.npz b/outlook/data_correction/sample0008_step002.npz
new file mode 100644
index 0000000..3a64df8
Binary files /dev/null and b/outlook/data_correction/sample0008_step002.npz differ
diff --git a/outlook/data_correction/sample0008_step003.npz b/outlook/data_correction/sample0008_step003.npz
new file mode 100644
index 0000000..21381b1
Binary files /dev/null and b/outlook/data_correction/sample0008_step003.npz differ
diff --git a/outlook/data_correction/sample0008_step004.npz b/outlook/data_correction/sample0008_step004.npz
new file mode 100644
index 0000000..29d19be
Binary files /dev/null and b/outlook/data_correction/sample0008_step004.npz differ
diff --git a/outlook/data_correction/sample0008_step005.npz b/outlook/data_correction/sample0008_step005.npz
new file mode 100644
index 0000000..79d917f
Binary files /dev/null and b/outlook/data_correction/sample0008_step005.npz differ
diff --git a/outlook/data_correction/sample0008_step006.npz b/outlook/data_correction/sample0008_step006.npz
new file mode 100644
index 0000000..c00fa56
Binary files /dev/null and b/outlook/data_correction/sample0008_step006.npz differ
diff --git a/outlook/data_correction/sample0008_step007.npz b/outlook/data_correction/sample0008_step007.npz
new file mode 100644
index 0000000..f56f927
Binary files /dev/null and b/outlook/data_correction/sample0008_step007.npz differ
diff --git a/outlook/data_correction/sample0008_step008.npz b/outlook/data_correction/sample0008_step008.npz
new file mode 100644
index 0000000..e0efafa
Binary files /dev/null and b/outlook/data_correction/sample0008_step008.npz differ
diff --git a/outlook/data_correction/sample0008_step009.npz b/outlook/data_correction/sample0008_step009.npz
new file mode 100644
index 0000000..760d5a4
Binary files /dev/null and b/outlook/data_correction/sample0008_step009.npz differ
diff --git a/outlook/data_correction/sample0008_step010.npz b/outlook/data_correction/sample0008_step010.npz
new file mode 100644
index 0000000..72cb520
Binary files /dev/null and b/outlook/data_correction/sample0008_step010.npz differ
diff --git a/outlook/data_correction/sample0008_step011.npz b/outlook/data_correction/sample0008_step011.npz
new file mode 100644
index 0000000..7e6a7d6
Binary files /dev/null and b/outlook/data_correction/sample0008_step011.npz differ
diff --git a/outlook/data_correction/sample0008_step012.npz b/outlook/data_correction/sample0008_step012.npz
new file mode 100644
index 0000000..698fe62
Binary files /dev/null and b/outlook/data_correction/sample0008_step012.npz differ
diff --git a/outlook/data_correction/sample0008_step013.npz b/outlook/data_correction/sample0008_step013.npz
new file mode 100644
index 0000000..a450456
Binary files /dev/null and b/outlook/data_correction/sample0008_step013.npz differ
diff --git a/outlook/data_correction/sample0008_step014.npz b/outlook/data_correction/sample0008_step014.npz
new file mode 100644
index 0000000..1b60b6f
Binary files /dev/null and b/outlook/data_correction/sample0008_step014.npz differ
diff --git a/outlook/data_correction/sample0008_step015.npz b/outlook/data_correction/sample0008_step015.npz
new file mode 100644
index 0000000..3243a8d
Binary files /dev/null and b/outlook/data_correction/sample0008_step015.npz differ
diff --git a/outlook/data_correction/sample0008_step016.npz b/outlook/data_correction/sample0008_step016.npz
new file mode 100644
index 0000000..9c27504
Binary files /dev/null and b/outlook/data_correction/sample0008_step016.npz differ
diff --git a/outlook/data_correction/sample0008_step017.npz b/outlook/data_correction/sample0008_step017.npz
new file mode 100644
index 0000000..f3aa812
Binary files /dev/null and b/outlook/data_correction/sample0008_step017.npz differ
diff --git a/outlook/data_correction/sample0008_step018.npz b/outlook/data_correction/sample0008_step018.npz
new file mode 100644
index 0000000..8871bb3
Binary files /dev/null and b/outlook/data_correction/sample0008_step018.npz differ
diff --git a/outlook/data_correction/sample0009_step000.npz b/outlook/data_correction/sample0009_step000.npz
new file mode 100644
index 0000000..4dbbd6f
Binary files /dev/null and b/outlook/data_correction/sample0009_step000.npz differ
diff --git a/outlook/data_correction/sample0009_step001.npz b/outlook/data_correction/sample0009_step001.npz
new file mode 100644
index 0000000..79a2606
Binary files /dev/null and b/outlook/data_correction/sample0009_step001.npz differ
diff --git a/outlook/data_correction/sample0009_step002.npz b/outlook/data_correction/sample0009_step002.npz
new file mode 100644
index 0000000..e7ca152
Binary files /dev/null and b/outlook/data_correction/sample0009_step002.npz differ
diff --git a/outlook/data_correction/sample0009_step003.npz b/outlook/data_correction/sample0009_step003.npz
new file mode 100644
index 0000000..b28264e
Binary files /dev/null and b/outlook/data_correction/sample0009_step003.npz differ
diff --git a/outlook/data_correction/sample0009_step004.npz b/outlook/data_correction/sample0009_step004.npz
new file mode 100644
index 0000000..f8651c0
Binary files /dev/null and b/outlook/data_correction/sample0009_step004.npz differ
diff --git a/outlook/data_correction/sample0009_step005.npz b/outlook/data_correction/sample0009_step005.npz
new file mode 100644
index 0000000..f5c92f7
Binary files /dev/null and b/outlook/data_correction/sample0009_step005.npz differ
diff --git a/outlook/data_correction/sample0009_step006.npz b/outlook/data_correction/sample0009_step006.npz
new file mode 100644
index 0000000..953f877
Binary files /dev/null and b/outlook/data_correction/sample0009_step006.npz differ
diff --git a/outlook/data_correction/sample0009_step007.npz b/outlook/data_correction/sample0009_step007.npz
new file mode 100644
index 0000000..42ce9d8
Binary files /dev/null and b/outlook/data_correction/sample0009_step007.npz differ
diff --git a/outlook/data_correction/sample0009_step008.npz b/outlook/data_correction/sample0009_step008.npz
new file mode 100644
index 0000000..569ca7e
Binary files /dev/null and b/outlook/data_correction/sample0009_step008.npz differ
diff --git a/outlook/data_correction/sample0009_step009.npz b/outlook/data_correction/sample0009_step009.npz
new file mode 100644
index 0000000..fa8de6e
Binary files /dev/null and b/outlook/data_correction/sample0009_step009.npz differ
diff --git a/outlook/data_correction/sample0009_step010.npz b/outlook/data_correction/sample0009_step010.npz
new file mode 100644
index 0000000..e0f6fd3
Binary files /dev/null and b/outlook/data_correction/sample0009_step010.npz differ
diff --git a/outlook/data_correction/sample0009_step011.npz b/outlook/data_correction/sample0009_step011.npz
new file mode 100644
index 0000000..5a9d87c
Binary files /dev/null and b/outlook/data_correction/sample0009_step011.npz differ
diff --git a/outlook/data_correction/sample0009_step012.npz b/outlook/data_correction/sample0009_step012.npz
new file mode 100644
index 0000000..bcfe462
Binary files /dev/null and b/outlook/data_correction/sample0009_step012.npz differ
diff --git a/outlook/data_correction/sample0009_step013.npz b/outlook/data_correction/sample0009_step013.npz
new file mode 100644
index 0000000..a16b5bd
Binary files /dev/null and b/outlook/data_correction/sample0009_step013.npz differ
diff --git a/outlook/data_correction/sample0009_step014.npz b/outlook/data_correction/sample0009_step014.npz
new file mode 100644
index 0000000..899cad3
Binary files /dev/null and b/outlook/data_correction/sample0009_step014.npz differ
diff --git a/outlook/data_correction/sample0009_step015.npz b/outlook/data_correction/sample0009_step015.npz
new file mode 100644
index 0000000..a43b0f9
Binary files /dev/null and b/outlook/data_correction/sample0009_step015.npz differ
diff --git a/outlook/data_correction/sample0009_step016.npz b/outlook/data_correction/sample0009_step016.npz
new file mode 100644
index 0000000..34177ab
Binary files /dev/null and b/outlook/data_correction/sample0009_step016.npz differ
diff --git a/outlook/data_correction/sample0009_step017.npz b/outlook/data_correction/sample0009_step017.npz
new file mode 100644
index 0000000..30dec2b
Binary files /dev/null and b/outlook/data_correction/sample0009_step017.npz differ
diff --git a/outlook/data_correction/sample0009_step018.npz b/outlook/data_correction/sample0009_step018.npz
new file mode 100644
index 0000000..31a69ec
Binary files /dev/null and b/outlook/data_correction/sample0009_step018.npz differ
diff --git a/outlook/data_correction/sample0010_step000.npz b/outlook/data_correction/sample0010_step000.npz
new file mode 100644
index 0000000..da92c86
Binary files /dev/null and b/outlook/data_correction/sample0010_step000.npz differ
diff --git a/outlook/data_correction/sample0010_step001.npz b/outlook/data_correction/sample0010_step001.npz
new file mode 100644
index 0000000..f049efa
Binary files /dev/null and b/outlook/data_correction/sample0010_step001.npz differ
diff --git a/outlook/data_correction/sample0010_step002.npz b/outlook/data_correction/sample0010_step002.npz
new file mode 100644
index 0000000..68c5133
Binary files /dev/null and b/outlook/data_correction/sample0010_step002.npz differ
diff --git a/outlook/data_correction/sample0010_step003.npz b/outlook/data_correction/sample0010_step003.npz
new file mode 100644
index 0000000..6a6da78
Binary files /dev/null and b/outlook/data_correction/sample0010_step003.npz differ
diff --git a/outlook/data_correction/sample0010_step004.npz b/outlook/data_correction/sample0010_step004.npz
new file mode 100644
index 0000000..9593203
Binary files /dev/null and b/outlook/data_correction/sample0010_step004.npz differ
diff --git a/outlook/data_correction/sample0010_step005.npz b/outlook/data_correction/sample0010_step005.npz
new file mode 100644
index 0000000..7ab68ff
Binary files /dev/null and b/outlook/data_correction/sample0010_step005.npz differ
diff --git a/outlook/data_correction/sample0010_step006.npz b/outlook/data_correction/sample0010_step006.npz
new file mode 100644
index 0000000..a942b79
Binary files /dev/null and b/outlook/data_correction/sample0010_step006.npz differ
diff --git a/outlook/data_correction/sample0010_step007.npz b/outlook/data_correction/sample0010_step007.npz
new file mode 100644
index 0000000..df0b565
Binary files /dev/null and b/outlook/data_correction/sample0010_step007.npz differ
diff --git a/outlook/data_correction/sample0010_step008.npz b/outlook/data_correction/sample0010_step008.npz
new file mode 100644
index 0000000..4499d31
Binary files /dev/null and b/outlook/data_correction/sample0010_step008.npz differ
diff --git a/outlook/data_correction/sample0010_step009.npz b/outlook/data_correction/sample0010_step009.npz
new file mode 100644
index 0000000..6444b1a
Binary files /dev/null and b/outlook/data_correction/sample0010_step009.npz differ
diff --git a/outlook/data_correction/sample0010_step010.npz b/outlook/data_correction/sample0010_step010.npz
new file mode 100644
index 0000000..d15c846
Binary files /dev/null and b/outlook/data_correction/sample0010_step010.npz differ
diff --git a/outlook/data_correction/sample0010_step011.npz b/outlook/data_correction/sample0010_step011.npz
new file mode 100644
index 0000000..430f4e4
Binary files /dev/null and b/outlook/data_correction/sample0010_step011.npz differ
diff --git a/outlook/data_correction/sample0010_step012.npz b/outlook/data_correction/sample0010_step012.npz
new file mode 100644
index 0000000..b24d701
Binary files /dev/null and b/outlook/data_correction/sample0010_step012.npz differ
diff --git a/outlook/data_correction/sample0010_step013.npz b/outlook/data_correction/sample0010_step013.npz
new file mode 100644
index 0000000..2d2c69a
Binary files /dev/null and b/outlook/data_correction/sample0010_step013.npz differ
diff --git a/outlook/data_correction/sample0010_step014.npz b/outlook/data_correction/sample0010_step014.npz
new file mode 100644
index 0000000..f5dd580
Binary files /dev/null and b/outlook/data_correction/sample0010_step014.npz differ
diff --git a/outlook/data_correction/sample0010_step015.npz b/outlook/data_correction/sample0010_step015.npz
new file mode 100644
index 0000000..9e6de38
Binary files /dev/null and b/outlook/data_correction/sample0010_step015.npz differ
diff --git a/outlook/data_correction/sample0011_step000.npz b/outlook/data_correction/sample0011_step000.npz
new file mode 100644
index 0000000..06baeef
Binary files /dev/null and b/outlook/data_correction/sample0011_step000.npz differ
diff --git a/outlook/data_correction/sample0011_step001.npz b/outlook/data_correction/sample0011_step001.npz
new file mode 100644
index 0000000..def19f1
Binary files /dev/null and b/outlook/data_correction/sample0011_step001.npz differ
diff --git a/outlook/data_correction/sample0011_step002.npz b/outlook/data_correction/sample0011_step002.npz
new file mode 100644
index 0000000..363fa8d
Binary files /dev/null and b/outlook/data_correction/sample0011_step002.npz differ
diff --git a/outlook/data_correction/sample0011_step003.npz b/outlook/data_correction/sample0011_step003.npz
new file mode 100644
index 0000000..fc514cb
Binary files /dev/null and b/outlook/data_correction/sample0011_step003.npz differ
diff --git a/outlook/data_correction/sample0011_step004.npz b/outlook/data_correction/sample0011_step004.npz
new file mode 100644
index 0000000..af0c05c
Binary files /dev/null and b/outlook/data_correction/sample0011_step004.npz differ
diff --git a/outlook/data_correction/sample0011_step005.npz b/outlook/data_correction/sample0011_step005.npz
new file mode 100644
index 0000000..d8a82b1
Binary files /dev/null and b/outlook/data_correction/sample0011_step005.npz differ
diff --git a/outlook/data_correction/sample0011_step006.npz b/outlook/data_correction/sample0011_step006.npz
new file mode 100644
index 0000000..383a896
Binary files /dev/null and b/outlook/data_correction/sample0011_step006.npz differ
diff --git a/outlook/data_correction/sample0011_step007.npz b/outlook/data_correction/sample0011_step007.npz
new file mode 100644
index 0000000..8d5b899
Binary files /dev/null and b/outlook/data_correction/sample0011_step007.npz differ
diff --git a/outlook/data_correction/sample0011_step008.npz b/outlook/data_correction/sample0011_step008.npz
new file mode 100644
index 0000000..ced7eae
Binary files /dev/null and b/outlook/data_correction/sample0011_step008.npz differ
diff --git a/outlook/data_correction/sample0011_step009.npz b/outlook/data_correction/sample0011_step009.npz
new file mode 100644
index 0000000..da5fd19
Binary files /dev/null and b/outlook/data_correction/sample0011_step009.npz differ
diff --git a/outlook/data_correction/sample0011_step010.npz b/outlook/data_correction/sample0011_step010.npz
new file mode 100644
index 0000000..69e64c5
Binary files /dev/null and b/outlook/data_correction/sample0011_step010.npz differ
diff --git a/outlook/data_correction/sample0011_step011.npz b/outlook/data_correction/sample0011_step011.npz
new file mode 100644
index 0000000..5b8fe08
Binary files /dev/null and b/outlook/data_correction/sample0011_step011.npz differ
diff --git a/outlook/data_correction/sample0011_step012.npz b/outlook/data_correction/sample0011_step012.npz
new file mode 100644
index 0000000..5f55953
Binary files /dev/null and b/outlook/data_correction/sample0011_step012.npz differ
diff --git a/outlook/data_correction/sample0011_step013.npz b/outlook/data_correction/sample0011_step013.npz
new file mode 100644
index 0000000..7ac88f4
Binary files /dev/null and b/outlook/data_correction/sample0011_step013.npz differ
diff --git a/outlook/data_correction/sample0011_step014.npz b/outlook/data_correction/sample0011_step014.npz
new file mode 100644
index 0000000..2e174d8
Binary files /dev/null and b/outlook/data_correction/sample0011_step014.npz differ
diff --git a/outlook/data_correction/sample0011_step015.npz b/outlook/data_correction/sample0011_step015.npz
new file mode 100644
index 0000000..7f66bb3
Binary files /dev/null and b/outlook/data_correction/sample0011_step015.npz differ
diff --git a/outlook/data_correction/sample0011_step016.npz b/outlook/data_correction/sample0011_step016.npz
new file mode 100644
index 0000000..c7c6949
Binary files /dev/null and b/outlook/data_correction/sample0011_step016.npz differ
diff --git a/outlook/data_correction/sample0011_step017.npz b/outlook/data_correction/sample0011_step017.npz
new file mode 100644
index 0000000..fb02477
Binary files /dev/null and b/outlook/data_correction/sample0011_step017.npz differ
diff --git a/outlook/data_correction/sample0011_step018.npz b/outlook/data_correction/sample0011_step018.npz
new file mode 100644
index 0000000..a2e8c07
Binary files /dev/null and b/outlook/data_correction/sample0011_step018.npz differ
diff --git a/outlook/data_correction/sample0012_step000.npz b/outlook/data_correction/sample0012_step000.npz
new file mode 100644
index 0000000..28e46ee
Binary files /dev/null and b/outlook/data_correction/sample0012_step000.npz differ
diff --git a/outlook/data_correction/sample0012_step001.npz b/outlook/data_correction/sample0012_step001.npz
new file mode 100644
index 0000000..4157a7e
Binary files /dev/null and b/outlook/data_correction/sample0012_step001.npz differ
diff --git a/outlook/data_correction/sample0012_step002.npz b/outlook/data_correction/sample0012_step002.npz
new file mode 100644
index 0000000..341d05b
Binary files /dev/null and b/outlook/data_correction/sample0012_step002.npz differ
diff --git a/outlook/data_correction/sample0012_step003.npz b/outlook/data_correction/sample0012_step003.npz
new file mode 100644
index 0000000..8c4aa83
Binary files /dev/null and b/outlook/data_correction/sample0012_step003.npz differ
diff --git a/outlook/data_correction/sample0012_step004.npz b/outlook/data_correction/sample0012_step004.npz
new file mode 100644
index 0000000..83c274c
Binary files /dev/null and b/outlook/data_correction/sample0012_step004.npz differ
diff --git a/outlook/data_correction/sample0012_step005.npz b/outlook/data_correction/sample0012_step005.npz
new file mode 100644
index 0000000..56cc99a
Binary files /dev/null and b/outlook/data_correction/sample0012_step005.npz differ
diff --git a/outlook/data_correction/sample0012_step006.npz b/outlook/data_correction/sample0012_step006.npz
new file mode 100644
index 0000000..498f2be
Binary files /dev/null and b/outlook/data_correction/sample0012_step006.npz differ
diff --git a/outlook/data_correction/sample0012_step007.npz b/outlook/data_correction/sample0012_step007.npz
new file mode 100644
index 0000000..dfdea5d
Binary files /dev/null and b/outlook/data_correction/sample0012_step007.npz differ
diff --git a/outlook/data_correction/sample0012_step008.npz b/outlook/data_correction/sample0012_step008.npz
new file mode 100644
index 0000000..e0731e1
Binary files /dev/null and b/outlook/data_correction/sample0012_step008.npz differ
diff --git a/outlook/data_correction/sample0012_step009.npz b/outlook/data_correction/sample0012_step009.npz
new file mode 100644
index 0000000..bdc22c5
Binary files /dev/null and b/outlook/data_correction/sample0012_step009.npz differ
diff --git a/outlook/data_correction/sample0012_step010.npz b/outlook/data_correction/sample0012_step010.npz
new file mode 100644
index 0000000..2d587fc
Binary files /dev/null and b/outlook/data_correction/sample0012_step010.npz differ
diff --git a/outlook/data_correction/sample0012_step011.npz b/outlook/data_correction/sample0012_step011.npz
new file mode 100644
index 0000000..e9e5de4
Binary files /dev/null and b/outlook/data_correction/sample0012_step011.npz differ
diff --git a/outlook/data_correction/sample0012_step012.npz b/outlook/data_correction/sample0012_step012.npz
new file mode 100644
index 0000000..f61c6eb
Binary files /dev/null and b/outlook/data_correction/sample0012_step012.npz differ
diff --git a/outlook/data_correction/sample0012_step013.npz b/outlook/data_correction/sample0012_step013.npz
new file mode 100644
index 0000000..7ad3461
Binary files /dev/null and b/outlook/data_correction/sample0012_step013.npz differ
diff --git a/outlook/data_correction/sample0012_step014.npz b/outlook/data_correction/sample0012_step014.npz
new file mode 100644
index 0000000..f4fbbd1
Binary files /dev/null and b/outlook/data_correction/sample0012_step014.npz differ
diff --git a/outlook/data_correction/sample0012_step015.npz b/outlook/data_correction/sample0012_step015.npz
new file mode 100644
index 0000000..8614c8d
Binary files /dev/null and b/outlook/data_correction/sample0012_step015.npz differ
diff --git a/outlook/data_correction/sample0012_step016.npz b/outlook/data_correction/sample0012_step016.npz
new file mode 100644
index 0000000..378a216
Binary files /dev/null and b/outlook/data_correction/sample0012_step016.npz differ
diff --git a/outlook/data_correction/sample0012_step017.npz b/outlook/data_correction/sample0012_step017.npz
new file mode 100644
index 0000000..68d29f9
Binary files /dev/null and b/outlook/data_correction/sample0012_step017.npz differ
diff --git a/outlook/data_correction/sample0012_step018.npz b/outlook/data_correction/sample0012_step018.npz
new file mode 100644
index 0000000..c18e2a0
Binary files /dev/null and b/outlook/data_correction/sample0012_step018.npz differ
diff --git a/outlook/data_correction/sample0013_step000.npz b/outlook/data_correction/sample0013_step000.npz
new file mode 100644
index 0000000..dfc68f8
Binary files /dev/null and b/outlook/data_correction/sample0013_step000.npz differ
diff --git a/outlook/data_correction/sample0013_step001.npz b/outlook/data_correction/sample0013_step001.npz
new file mode 100644
index 0000000..906ec2c
Binary files /dev/null and b/outlook/data_correction/sample0013_step001.npz differ
diff --git a/outlook/data_correction/sample0013_step002.npz b/outlook/data_correction/sample0013_step002.npz
new file mode 100644
index 0000000..05d6751
Binary files /dev/null and b/outlook/data_correction/sample0013_step002.npz differ
diff --git a/outlook/data_correction/sample0013_step003.npz b/outlook/data_correction/sample0013_step003.npz
new file mode 100644
index 0000000..8458c1a
Binary files /dev/null and b/outlook/data_correction/sample0013_step003.npz differ
diff --git a/outlook/data_correction/sample0013_step004.npz b/outlook/data_correction/sample0013_step004.npz
new file mode 100644
index 0000000..97c5077
Binary files /dev/null and b/outlook/data_correction/sample0013_step004.npz differ
diff --git a/outlook/data_correction/sample0013_step005.npz b/outlook/data_correction/sample0013_step005.npz
new file mode 100644
index 0000000..9eddaca
Binary files /dev/null and b/outlook/data_correction/sample0013_step005.npz differ
diff --git a/outlook/data_correction/sample0013_step006.npz b/outlook/data_correction/sample0013_step006.npz
new file mode 100644
index 0000000..759eadb
Binary files /dev/null and b/outlook/data_correction/sample0013_step006.npz differ
diff --git a/outlook/data_correction/sample0013_step007.npz b/outlook/data_correction/sample0013_step007.npz
new file mode 100644
index 0000000..2136b20
Binary files /dev/null and b/outlook/data_correction/sample0013_step007.npz differ
diff --git a/outlook/data_correction/sample0013_step008.npz b/outlook/data_correction/sample0013_step008.npz
new file mode 100644
index 0000000..22a8345
Binary files /dev/null and b/outlook/data_correction/sample0013_step008.npz differ
diff --git a/outlook/data_correction/sample0013_step009.npz b/outlook/data_correction/sample0013_step009.npz
new file mode 100644
index 0000000..6a04fd4
Binary files /dev/null and b/outlook/data_correction/sample0013_step009.npz differ
diff --git a/outlook/data_correction/sample0013_step010.npz b/outlook/data_correction/sample0013_step010.npz
new file mode 100644
index 0000000..2bb57e8
Binary files /dev/null and b/outlook/data_correction/sample0013_step010.npz differ
diff --git a/outlook/data_correction/sample0013_step011.npz b/outlook/data_correction/sample0013_step011.npz
new file mode 100644
index 0000000..1ef525c
Binary files /dev/null and b/outlook/data_correction/sample0013_step011.npz differ
diff --git a/outlook/data_correction/sample0013_step012.npz b/outlook/data_correction/sample0013_step012.npz
new file mode 100644
index 0000000..79547c5
Binary files /dev/null and b/outlook/data_correction/sample0013_step012.npz differ
diff --git a/outlook/data_correction/sample0013_step013.npz b/outlook/data_correction/sample0013_step013.npz
new file mode 100644
index 0000000..1d1b878
Binary files /dev/null and b/outlook/data_correction/sample0013_step013.npz differ
diff --git a/outlook/data_correction/sample0013_step014.npz b/outlook/data_correction/sample0013_step014.npz
new file mode 100644
index 0000000..b4c7560
Binary files /dev/null and b/outlook/data_correction/sample0013_step014.npz differ
diff --git a/outlook/data_correction/sample0013_step015.npz b/outlook/data_correction/sample0013_step015.npz
new file mode 100644
index 0000000..bb7aa85
Binary files /dev/null and b/outlook/data_correction/sample0013_step015.npz differ
diff --git a/outlook/data_correction/sample0013_step016.npz b/outlook/data_correction/sample0013_step016.npz
new file mode 100644
index 0000000..0930853
Binary files /dev/null and b/outlook/data_correction/sample0013_step016.npz differ
diff --git a/outlook/data_correction/sample0013_step017.npz b/outlook/data_correction/sample0013_step017.npz
new file mode 100644
index 0000000..88cf8f6
Binary files /dev/null and b/outlook/data_correction/sample0013_step017.npz differ
diff --git a/outlook/data_correction/sample0013_step018.npz b/outlook/data_correction/sample0013_step018.npz
new file mode 100644
index 0000000..52955e5
Binary files /dev/null and b/outlook/data_correction/sample0013_step018.npz differ
diff --git a/outlook/data_correction/sample0014_step000.npz b/outlook/data_correction/sample0014_step000.npz
new file mode 100644
index 0000000..25d3d56
Binary files /dev/null and b/outlook/data_correction/sample0014_step000.npz differ
diff --git a/outlook/data_correction/sample0014_step001.npz b/outlook/data_correction/sample0014_step001.npz
new file mode 100644
index 0000000..803b961
Binary files /dev/null and b/outlook/data_correction/sample0014_step001.npz differ
diff --git a/outlook/data_correction/sample0014_step002.npz b/outlook/data_correction/sample0014_step002.npz
new file mode 100644
index 0000000..49ec405
Binary files /dev/null and b/outlook/data_correction/sample0014_step002.npz differ
diff --git a/outlook/data_correction/sample0014_step003.npz b/outlook/data_correction/sample0014_step003.npz
new file mode 100644
index 0000000..fc3556a
Binary files /dev/null and b/outlook/data_correction/sample0014_step003.npz differ
diff --git a/outlook/data_correction/sample0014_step004.npz b/outlook/data_correction/sample0014_step004.npz
new file mode 100644
index 0000000..6838fff
Binary files /dev/null and b/outlook/data_correction/sample0014_step004.npz differ
diff --git a/outlook/data_correction/sample0014_step005.npz b/outlook/data_correction/sample0014_step005.npz
new file mode 100644
index 0000000..595a334
Binary files /dev/null and b/outlook/data_correction/sample0014_step005.npz differ
diff --git a/outlook/data_correction/sample0014_step006.npz b/outlook/data_correction/sample0014_step006.npz
new file mode 100644
index 0000000..4686f62
Binary files /dev/null and b/outlook/data_correction/sample0014_step006.npz differ
diff --git a/outlook/data_correction/sample0014_step007.npz b/outlook/data_correction/sample0014_step007.npz
new file mode 100644
index 0000000..1046742
Binary files /dev/null and b/outlook/data_correction/sample0014_step007.npz differ
diff --git a/outlook/data_correction/sample0014_step008.npz b/outlook/data_correction/sample0014_step008.npz
new file mode 100644
index 0000000..ba6908f
Binary files /dev/null and b/outlook/data_correction/sample0014_step008.npz differ
diff --git a/outlook/data_correction/sample0014_step009.npz b/outlook/data_correction/sample0014_step009.npz
new file mode 100644
index 0000000..4b481b2
Binary files /dev/null and b/outlook/data_correction/sample0014_step009.npz differ
diff --git a/outlook/data_correction/sample0014_step010.npz b/outlook/data_correction/sample0014_step010.npz
new file mode 100644
index 0000000..55aeefa
Binary files /dev/null and b/outlook/data_correction/sample0014_step010.npz differ
diff --git a/outlook/data_correction/sample0014_step011.npz b/outlook/data_correction/sample0014_step011.npz
new file mode 100644
index 0000000..5bd29f3
Binary files /dev/null and b/outlook/data_correction/sample0014_step011.npz differ
diff --git a/outlook/data_correction/sample0014_step012.npz b/outlook/data_correction/sample0014_step012.npz
new file mode 100644
index 0000000..4dc0eea
Binary files /dev/null and b/outlook/data_correction/sample0014_step012.npz differ
diff --git a/outlook/data_correction/sample0014_step013.npz b/outlook/data_correction/sample0014_step013.npz
new file mode 100644
index 0000000..e6f4459
Binary files /dev/null and b/outlook/data_correction/sample0014_step013.npz differ
diff --git a/outlook/data_correction/sample0014_step014.npz b/outlook/data_correction/sample0014_step014.npz
new file mode 100644
index 0000000..1193f2b
Binary files /dev/null and b/outlook/data_correction/sample0014_step014.npz differ
diff --git a/outlook/data_correction/sample0014_step015.npz b/outlook/data_correction/sample0014_step015.npz
new file mode 100644
index 0000000..e64e60b
Binary files /dev/null and b/outlook/data_correction/sample0014_step015.npz differ
diff --git a/outlook/data_correction/sample0014_step016.npz b/outlook/data_correction/sample0014_step016.npz
new file mode 100644
index 0000000..001f675
Binary files /dev/null and b/outlook/data_correction/sample0014_step016.npz differ
diff --git a/outlook/data_correction/sample0014_step017.npz b/outlook/data_correction/sample0014_step017.npz
new file mode 100644
index 0000000..af960f8
Binary files /dev/null and b/outlook/data_correction/sample0014_step017.npz differ
diff --git a/outlook/data_correction/sample0014_step018.npz b/outlook/data_correction/sample0014_step018.npz
new file mode 100644
index 0000000..c08e629
Binary files /dev/null and b/outlook/data_correction/sample0014_step018.npz differ
diff --git a/outlook/data_correction/sample0014_step019.npz b/outlook/data_correction/sample0014_step019.npz
new file mode 100644
index 0000000..fd01c49
Binary files /dev/null and b/outlook/data_correction/sample0014_step019.npz differ
diff --git a/outlook/data_correction/sample0015_step000.npz b/outlook/data_correction/sample0015_step000.npz
new file mode 100644
index 0000000..036af3f
Binary files /dev/null and b/outlook/data_correction/sample0015_step000.npz differ
diff --git a/outlook/data_correction/sample0015_step001.npz b/outlook/data_correction/sample0015_step001.npz
new file mode 100644
index 0000000..07ca607
Binary files /dev/null and b/outlook/data_correction/sample0015_step001.npz differ
diff --git a/outlook/data_correction/sample0015_step002.npz b/outlook/data_correction/sample0015_step002.npz
new file mode 100644
index 0000000..50f571d
Binary files /dev/null and b/outlook/data_correction/sample0015_step002.npz differ
diff --git a/outlook/data_correction/sample0015_step003.npz b/outlook/data_correction/sample0015_step003.npz
new file mode 100644
index 0000000..1e102dd
Binary files /dev/null and b/outlook/data_correction/sample0015_step003.npz differ
diff --git a/outlook/data_correction/sample0015_step004.npz b/outlook/data_correction/sample0015_step004.npz
new file mode 100644
index 0000000..50e8c5a
Binary files /dev/null and b/outlook/data_correction/sample0015_step004.npz differ
diff --git a/outlook/data_correction/sample0015_step005.npz b/outlook/data_correction/sample0015_step005.npz
new file mode 100644
index 0000000..1b53500
Binary files /dev/null and b/outlook/data_correction/sample0015_step005.npz differ
diff --git a/outlook/data_correction/sample0015_step006.npz b/outlook/data_correction/sample0015_step006.npz
new file mode 100644
index 0000000..0ed1b69
Binary files /dev/null and b/outlook/data_correction/sample0015_step006.npz differ
diff --git a/outlook/data_correction/sample0015_step007.npz b/outlook/data_correction/sample0015_step007.npz
new file mode 100644
index 0000000..fa27020
Binary files /dev/null and b/outlook/data_correction/sample0015_step007.npz differ
diff --git a/outlook/data_correction/sample0015_step008.npz b/outlook/data_correction/sample0015_step008.npz
new file mode 100644
index 0000000..bcf21d0
Binary files /dev/null and b/outlook/data_correction/sample0015_step008.npz differ
diff --git a/outlook/data_correction/sample0015_step009.npz b/outlook/data_correction/sample0015_step009.npz
new file mode 100644
index 0000000..8547e96
Binary files /dev/null and b/outlook/data_correction/sample0015_step009.npz differ
diff --git a/outlook/data_correction/sample0015_step010.npz b/outlook/data_correction/sample0015_step010.npz
new file mode 100644
index 0000000..0f008c4
Binary files /dev/null and b/outlook/data_correction/sample0015_step010.npz differ
diff --git a/outlook/data_correction/sample0015_step011.npz b/outlook/data_correction/sample0015_step011.npz
new file mode 100644
index 0000000..7e44ee2
Binary files /dev/null and b/outlook/data_correction/sample0015_step011.npz differ
diff --git a/outlook/data_correction/sample0015_step012.npz b/outlook/data_correction/sample0015_step012.npz
new file mode 100644
index 0000000..144ecd8
Binary files /dev/null and b/outlook/data_correction/sample0015_step012.npz differ
diff --git a/outlook/data_correction/sample0015_step013.npz b/outlook/data_correction/sample0015_step013.npz
new file mode 100644
index 0000000..3e1207c
Binary files /dev/null and b/outlook/data_correction/sample0015_step013.npz differ
diff --git a/outlook/data_correction/sample0015_step014.npz b/outlook/data_correction/sample0015_step014.npz
new file mode 100644
index 0000000..a0b8543
Binary files /dev/null and b/outlook/data_correction/sample0015_step014.npz differ
diff --git a/outlook/data_correction/sample0015_step015.npz b/outlook/data_correction/sample0015_step015.npz
new file mode 100644
index 0000000..b1429d4
Binary files /dev/null and b/outlook/data_correction/sample0015_step015.npz differ
diff --git a/outlook/data_correction/sample0015_step016.npz b/outlook/data_correction/sample0015_step016.npz
new file mode 100644
index 0000000..66ff26e
Binary files /dev/null and b/outlook/data_correction/sample0015_step016.npz differ
diff --git a/outlook/data_correction/sample0015_step017.npz b/outlook/data_correction/sample0015_step017.npz
new file mode 100644
index 0000000..96f9a96
Binary files /dev/null and b/outlook/data_correction/sample0015_step017.npz differ
diff --git a/outlook/data_correction/sample0015_step018.npz b/outlook/data_correction/sample0015_step018.npz
new file mode 100644
index 0000000..44f8e72
Binary files /dev/null and b/outlook/data_correction/sample0015_step018.npz differ
diff --git a/outlook/data_correction/sample0016_step000.npz b/outlook/data_correction/sample0016_step000.npz
new file mode 100644
index 0000000..8dd82f4
Binary files /dev/null and b/outlook/data_correction/sample0016_step000.npz differ
diff --git a/outlook/data_correction/sample0016_step001.npz b/outlook/data_correction/sample0016_step001.npz
new file mode 100644
index 0000000..436996a
Binary files /dev/null and b/outlook/data_correction/sample0016_step001.npz differ
diff --git a/outlook/data_correction/sample0016_step002.npz b/outlook/data_correction/sample0016_step002.npz
new file mode 100644
index 0000000..f737ba1
Binary files /dev/null and b/outlook/data_correction/sample0016_step002.npz differ
diff --git a/outlook/data_correction/sample0016_step003.npz b/outlook/data_correction/sample0016_step003.npz
new file mode 100644
index 0000000..112512c
Binary files /dev/null and b/outlook/data_correction/sample0016_step003.npz differ
diff --git a/outlook/data_correction/sample0016_step004.npz b/outlook/data_correction/sample0016_step004.npz
new file mode 100644
index 0000000..2a5c2ef
Binary files /dev/null and b/outlook/data_correction/sample0016_step004.npz differ
diff --git a/outlook/data_correction/sample0016_step005.npz b/outlook/data_correction/sample0016_step005.npz
new file mode 100644
index 0000000..4414083
Binary files /dev/null and b/outlook/data_correction/sample0016_step005.npz differ
diff --git a/outlook/data_correction/sample0016_step006.npz b/outlook/data_correction/sample0016_step006.npz
new file mode 100644
index 0000000..33d290e
Binary files /dev/null and b/outlook/data_correction/sample0016_step006.npz differ
diff --git a/outlook/data_correction/sample0016_step007.npz b/outlook/data_correction/sample0016_step007.npz
new file mode 100644
index 0000000..2c935f0
Binary files /dev/null and b/outlook/data_correction/sample0016_step007.npz differ
diff --git a/outlook/data_correction/sample0016_step008.npz b/outlook/data_correction/sample0016_step008.npz
new file mode 100644
index 0000000..ccdd747
Binary files /dev/null and b/outlook/data_correction/sample0016_step008.npz differ
diff --git a/outlook/data_correction/sample0016_step009.npz b/outlook/data_correction/sample0016_step009.npz
new file mode 100644
index 0000000..dadf594
Binary files /dev/null and b/outlook/data_correction/sample0016_step009.npz differ
diff --git a/outlook/data_correction/sample0016_step010.npz b/outlook/data_correction/sample0016_step010.npz
new file mode 100644
index 0000000..c558788
Binary files /dev/null and b/outlook/data_correction/sample0016_step010.npz differ
diff --git a/outlook/data_correction/sample0016_step011.npz b/outlook/data_correction/sample0016_step011.npz
new file mode 100644
index 0000000..6a09b58
Binary files /dev/null and b/outlook/data_correction/sample0016_step011.npz differ
diff --git a/outlook/data_correction/sample0016_step012.npz b/outlook/data_correction/sample0016_step012.npz
new file mode 100644
index 0000000..64b1631
Binary files /dev/null and b/outlook/data_correction/sample0016_step012.npz differ
diff --git a/outlook/data_correction/sample0016_step013.npz b/outlook/data_correction/sample0016_step013.npz
new file mode 100644
index 0000000..f55cfa0
Binary files /dev/null and b/outlook/data_correction/sample0016_step013.npz differ
diff --git a/outlook/data_correction/sample0016_step014.npz b/outlook/data_correction/sample0016_step014.npz
new file mode 100644
index 0000000..9ba2853
Binary files /dev/null and b/outlook/data_correction/sample0016_step014.npz differ
diff --git a/outlook/data_correction/sample0016_step015.npz b/outlook/data_correction/sample0016_step015.npz
new file mode 100644
index 0000000..d7a23ba
Binary files /dev/null and b/outlook/data_correction/sample0016_step015.npz differ
diff --git a/outlook/data_correction/sample0016_step016.npz b/outlook/data_correction/sample0016_step016.npz
new file mode 100644
index 0000000..6125761
Binary files /dev/null and b/outlook/data_correction/sample0016_step016.npz differ
diff --git a/outlook/data_correction/sample0016_step017.npz b/outlook/data_correction/sample0016_step017.npz
new file mode 100644
index 0000000..44f599a
Binary files /dev/null and b/outlook/data_correction/sample0016_step017.npz differ
diff --git a/outlook/data_correction/sample0016_step018.npz b/outlook/data_correction/sample0016_step018.npz
new file mode 100644
index 0000000..29ddcc8
Binary files /dev/null and b/outlook/data_correction/sample0016_step018.npz differ
diff --git a/outlook/data_correction/sample0017_step000.npz b/outlook/data_correction/sample0017_step000.npz
new file mode 100644
index 0000000..86b9438
Binary files /dev/null and b/outlook/data_correction/sample0017_step000.npz differ
diff --git a/outlook/data_correction/sample0017_step001.npz b/outlook/data_correction/sample0017_step001.npz
new file mode 100644
index 0000000..58bb357
Binary files /dev/null and b/outlook/data_correction/sample0017_step001.npz differ
diff --git a/outlook/data_correction/sample0017_step002.npz b/outlook/data_correction/sample0017_step002.npz
new file mode 100644
index 0000000..d669ac9
Binary files /dev/null and b/outlook/data_correction/sample0017_step002.npz differ
diff --git a/outlook/data_correction/sample0017_step003.npz b/outlook/data_correction/sample0017_step003.npz
new file mode 100644
index 0000000..2fd3920
Binary files /dev/null and b/outlook/data_correction/sample0017_step003.npz differ
diff --git a/outlook/data_correction/sample0017_step004.npz b/outlook/data_correction/sample0017_step004.npz
new file mode 100644
index 0000000..e200095
Binary files /dev/null and b/outlook/data_correction/sample0017_step004.npz differ
diff --git a/outlook/data_correction/sample0017_step005.npz b/outlook/data_correction/sample0017_step005.npz
new file mode 100644
index 0000000..e6680dc
Binary files /dev/null and b/outlook/data_correction/sample0017_step005.npz differ
diff --git a/outlook/data_correction/sample0017_step006.npz b/outlook/data_correction/sample0017_step006.npz
new file mode 100644
index 0000000..30e28aa
Binary files /dev/null and b/outlook/data_correction/sample0017_step006.npz differ
diff --git a/outlook/data_correction/sample0017_step007.npz b/outlook/data_correction/sample0017_step007.npz
new file mode 100644
index 0000000..3a3b37b
Binary files /dev/null and b/outlook/data_correction/sample0017_step007.npz differ
diff --git a/outlook/data_correction/sample0017_step008.npz b/outlook/data_correction/sample0017_step008.npz
new file mode 100644
index 0000000..1cfdc69
Binary files /dev/null and b/outlook/data_correction/sample0017_step008.npz differ
diff --git a/outlook/data_correction/sample0017_step009.npz b/outlook/data_correction/sample0017_step009.npz
new file mode 100644
index 0000000..cd1eefc
Binary files /dev/null and b/outlook/data_correction/sample0017_step009.npz differ
diff --git a/outlook/data_correction/sample0017_step010.npz b/outlook/data_correction/sample0017_step010.npz
new file mode 100644
index 0000000..177692e
Binary files /dev/null and b/outlook/data_correction/sample0017_step010.npz differ
diff --git a/outlook/data_correction/sample0017_step011.npz b/outlook/data_correction/sample0017_step011.npz
new file mode 100644
index 0000000..f5fd920
Binary files /dev/null and b/outlook/data_correction/sample0017_step011.npz differ
diff --git a/outlook/data_correction/sample0017_step012.npz b/outlook/data_correction/sample0017_step012.npz
new file mode 100644
index 0000000..63b6953
Binary files /dev/null and b/outlook/data_correction/sample0017_step012.npz differ
diff --git a/outlook/data_correction/sample0017_step013.npz b/outlook/data_correction/sample0017_step013.npz
new file mode 100644
index 0000000..e32b8ad
Binary files /dev/null and b/outlook/data_correction/sample0017_step013.npz differ
diff --git a/outlook/data_correction/sample0017_step014.npz b/outlook/data_correction/sample0017_step014.npz
new file mode 100644
index 0000000..8e949e3
Binary files /dev/null and b/outlook/data_correction/sample0017_step014.npz differ
diff --git a/outlook/data_correction/sample0017_step015.npz b/outlook/data_correction/sample0017_step015.npz
new file mode 100644
index 0000000..40dc7e1
Binary files /dev/null and b/outlook/data_correction/sample0017_step015.npz differ
diff --git a/outlook/data_correction/sample0017_step016.npz b/outlook/data_correction/sample0017_step016.npz
new file mode 100644
index 0000000..60d5a5d
Binary files /dev/null and b/outlook/data_correction/sample0017_step016.npz differ
diff --git a/outlook/data_correction/sample0017_step017.npz b/outlook/data_correction/sample0017_step017.npz
new file mode 100644
index 0000000..7005f1d
Binary files /dev/null and b/outlook/data_correction/sample0017_step017.npz differ
diff --git a/outlook/data_correction/sample0017_step018.npz b/outlook/data_correction/sample0017_step018.npz
new file mode 100644
index 0000000..51ae0a7
Binary files /dev/null and b/outlook/data_correction/sample0017_step018.npz differ
diff --git a/outlook/data_correction/sample0018_step000.npz b/outlook/data_correction/sample0018_step000.npz
new file mode 100644
index 0000000..79da4f8
Binary files /dev/null and b/outlook/data_correction/sample0018_step000.npz differ
diff --git a/outlook/data_correction/sample0018_step001.npz b/outlook/data_correction/sample0018_step001.npz
new file mode 100644
index 0000000..a5011b2
Binary files /dev/null and b/outlook/data_correction/sample0018_step001.npz differ
diff --git a/outlook/data_correction/sample0018_step002.npz b/outlook/data_correction/sample0018_step002.npz
new file mode 100644
index 0000000..5f52175
Binary files /dev/null and b/outlook/data_correction/sample0018_step002.npz differ
diff --git a/outlook/data_correction/sample0018_step003.npz b/outlook/data_correction/sample0018_step003.npz
new file mode 100644
index 0000000..6d2a84c
Binary files /dev/null and b/outlook/data_correction/sample0018_step003.npz differ
diff --git a/outlook/data_correction/sample0018_step004.npz b/outlook/data_correction/sample0018_step004.npz
new file mode 100644
index 0000000..10d873d
Binary files /dev/null and b/outlook/data_correction/sample0018_step004.npz differ
diff --git a/outlook/data_correction/sample0018_step005.npz b/outlook/data_correction/sample0018_step005.npz
new file mode 100644
index 0000000..0a5e535
Binary files /dev/null and b/outlook/data_correction/sample0018_step005.npz differ
diff --git a/outlook/data_correction/sample0018_step006.npz b/outlook/data_correction/sample0018_step006.npz
new file mode 100644
index 0000000..dbf30c8
Binary files /dev/null and b/outlook/data_correction/sample0018_step006.npz differ
diff --git a/outlook/data_correction/sample0018_step007.npz b/outlook/data_correction/sample0018_step007.npz
new file mode 100644
index 0000000..467fea0
Binary files /dev/null and b/outlook/data_correction/sample0018_step007.npz differ
diff --git a/outlook/data_correction/sample0018_step008.npz b/outlook/data_correction/sample0018_step008.npz
new file mode 100644
index 0000000..dc391e7
Binary files /dev/null and b/outlook/data_correction/sample0018_step008.npz differ
diff --git a/outlook/data_correction/sample0018_step009.npz b/outlook/data_correction/sample0018_step009.npz
new file mode 100644
index 0000000..2c2efd8
Binary files /dev/null and b/outlook/data_correction/sample0018_step009.npz differ
diff --git a/outlook/data_correction/sample0018_step010.npz b/outlook/data_correction/sample0018_step010.npz
new file mode 100644
index 0000000..db14f32
Binary files /dev/null and b/outlook/data_correction/sample0018_step010.npz differ
diff --git a/outlook/data_correction/sample0018_step011.npz b/outlook/data_correction/sample0018_step011.npz
new file mode 100644
index 0000000..585d8a6
Binary files /dev/null and b/outlook/data_correction/sample0018_step011.npz differ
diff --git a/outlook/data_correction/sample0018_step012.npz b/outlook/data_correction/sample0018_step012.npz
new file mode 100644
index 0000000..7c0420e
Binary files /dev/null and b/outlook/data_correction/sample0018_step012.npz differ
diff --git a/outlook/data_correction/sample0018_step013.npz b/outlook/data_correction/sample0018_step013.npz
new file mode 100644
index 0000000..2b7a5f5
Binary files /dev/null and b/outlook/data_correction/sample0018_step013.npz differ
diff --git a/outlook/data_correction/sample0018_step014.npz b/outlook/data_correction/sample0018_step014.npz
new file mode 100644
index 0000000..dfdccb8
Binary files /dev/null and b/outlook/data_correction/sample0018_step014.npz differ
diff --git a/outlook/data_correction/sample0018_step015.npz b/outlook/data_correction/sample0018_step015.npz
new file mode 100644
index 0000000..e3f3782
Binary files /dev/null and b/outlook/data_correction/sample0018_step015.npz differ
diff --git a/outlook/data_correction/sample0018_step016.npz b/outlook/data_correction/sample0018_step016.npz
new file mode 100644
index 0000000..476f73e
Binary files /dev/null and b/outlook/data_correction/sample0018_step016.npz differ
diff --git a/outlook/data_correction/sample0018_step017.npz b/outlook/data_correction/sample0018_step017.npz
new file mode 100644
index 0000000..53f1a6b
Binary files /dev/null and b/outlook/data_correction/sample0018_step017.npz differ
diff --git a/outlook/data_correction/sample0018_step018.npz b/outlook/data_correction/sample0018_step018.npz
new file mode 100644
index 0000000..f15bba3
Binary files /dev/null and b/outlook/data_correction/sample0018_step018.npz differ
diff --git a/outlook/data_correction/sample0019_step000.npz b/outlook/data_correction/sample0019_step000.npz
new file mode 100644
index 0000000..8c59731
Binary files /dev/null and b/outlook/data_correction/sample0019_step000.npz differ
diff --git a/outlook/data_correction/sample0019_step001.npz b/outlook/data_correction/sample0019_step001.npz
new file mode 100644
index 0000000..c15176c
Binary files /dev/null and b/outlook/data_correction/sample0019_step001.npz differ
diff --git a/outlook/data_correction/sample0019_step002.npz b/outlook/data_correction/sample0019_step002.npz
new file mode 100644
index 0000000..62dc3ea
Binary files /dev/null and b/outlook/data_correction/sample0019_step002.npz differ
diff --git a/outlook/data_correction/sample0019_step003.npz b/outlook/data_correction/sample0019_step003.npz
new file mode 100644
index 0000000..d5b382d
Binary files /dev/null and b/outlook/data_correction/sample0019_step003.npz differ
diff --git a/outlook/data_correction/sample0019_step004.npz b/outlook/data_correction/sample0019_step004.npz
new file mode 100644
index 0000000..13d93b9
Binary files /dev/null and b/outlook/data_correction/sample0019_step004.npz differ
diff --git a/outlook/data_correction/sample0019_step005.npz b/outlook/data_correction/sample0019_step005.npz
new file mode 100644
index 0000000..78b3490
Binary files /dev/null and b/outlook/data_correction/sample0019_step005.npz differ
diff --git a/outlook/data_correction/sample0019_step006.npz b/outlook/data_correction/sample0019_step006.npz
new file mode 100644
index 0000000..57f9189
Binary files /dev/null and b/outlook/data_correction/sample0019_step006.npz differ
diff --git a/outlook/data_correction/sample0019_step007.npz b/outlook/data_correction/sample0019_step007.npz
new file mode 100644
index 0000000..bea4fc9
Binary files /dev/null and b/outlook/data_correction/sample0019_step007.npz differ
diff --git a/outlook/data_correction/sample0019_step008.npz b/outlook/data_correction/sample0019_step008.npz
new file mode 100644
index 0000000..d663898
Binary files /dev/null and b/outlook/data_correction/sample0019_step008.npz differ
diff --git a/outlook/data_correction/sample0019_step009.npz b/outlook/data_correction/sample0019_step009.npz
new file mode 100644
index 0000000..80b0a0a
Binary files /dev/null and b/outlook/data_correction/sample0019_step009.npz differ
diff --git a/outlook/data_correction/sample0019_step010.npz b/outlook/data_correction/sample0019_step010.npz
new file mode 100644
index 0000000..2780057
Binary files /dev/null and b/outlook/data_correction/sample0019_step010.npz differ
diff --git a/outlook/data_correction/sample0019_step011.npz b/outlook/data_correction/sample0019_step011.npz
new file mode 100644
index 0000000..0e32685
Binary files /dev/null and b/outlook/data_correction/sample0019_step011.npz differ
diff --git a/outlook/data_correction/sample0019_step012.npz b/outlook/data_correction/sample0019_step012.npz
new file mode 100644
index 0000000..05100d6
Binary files /dev/null and b/outlook/data_correction/sample0019_step012.npz differ
diff --git a/outlook/data_correction/sample0019_step013.npz b/outlook/data_correction/sample0019_step013.npz
new file mode 100644
index 0000000..510f302
Binary files /dev/null and b/outlook/data_correction/sample0019_step013.npz differ
diff --git a/outlook/data_correction/sample0019_step014.npz b/outlook/data_correction/sample0019_step014.npz
new file mode 100644
index 0000000..4e801cf
Binary files /dev/null and b/outlook/data_correction/sample0019_step014.npz differ
diff --git a/outlook/data_correction/sample0019_step015.npz b/outlook/data_correction/sample0019_step015.npz
new file mode 100644
index 0000000..cb1a509
Binary files /dev/null and b/outlook/data_correction/sample0019_step015.npz differ
diff --git a/outlook/data_correction/sample0019_step016.npz b/outlook/data_correction/sample0019_step016.npz
new file mode 100644
index 0000000..1389cdb
Binary files /dev/null and b/outlook/data_correction/sample0019_step016.npz differ
diff --git a/outlook/data_correction/sample0019_step017.npz b/outlook/data_correction/sample0019_step017.npz
new file mode 100644
index 0000000..372a3bc
Binary files /dev/null and b/outlook/data_correction/sample0019_step017.npz differ
diff --git a/outlook/data_correction/sample0019_step018.npz b/outlook/data_correction/sample0019_step018.npz
new file mode 100644
index 0000000..d564723
Binary files /dev/null and b/outlook/data_correction/sample0019_step018.npz differ
diff --git a/outlook/data_correction/sample0020_step000.npz b/outlook/data_correction/sample0020_step000.npz
new file mode 100644
index 0000000..c211bf6
Binary files /dev/null and b/outlook/data_correction/sample0020_step000.npz differ
diff --git a/outlook/data_correction/sample0020_step001.npz b/outlook/data_correction/sample0020_step001.npz
new file mode 100644
index 0000000..92d7ec0
Binary files /dev/null and b/outlook/data_correction/sample0020_step001.npz differ
diff --git a/outlook/data_correction/sample0020_step002.npz b/outlook/data_correction/sample0020_step002.npz
new file mode 100644
index 0000000..a93bb85
Binary files /dev/null and b/outlook/data_correction/sample0020_step002.npz differ
diff --git a/outlook/data_correction/sample0020_step003.npz b/outlook/data_correction/sample0020_step003.npz
new file mode 100644
index 0000000..602e38c
Binary files /dev/null and b/outlook/data_correction/sample0020_step003.npz differ
diff --git a/outlook/data_correction/sample0020_step004.npz b/outlook/data_correction/sample0020_step004.npz
new file mode 100644
index 0000000..b0ed892
Binary files /dev/null and b/outlook/data_correction/sample0020_step004.npz differ
diff --git a/outlook/data_correction/sample0020_step005.npz b/outlook/data_correction/sample0020_step005.npz
new file mode 100644
index 0000000..c7b607d
Binary files /dev/null and b/outlook/data_correction/sample0020_step005.npz differ
diff --git a/outlook/data_correction/sample0020_step006.npz b/outlook/data_correction/sample0020_step006.npz
new file mode 100644
index 0000000..712227c
Binary files /dev/null and b/outlook/data_correction/sample0020_step006.npz differ
diff --git a/outlook/data_correction/sample0020_step007.npz b/outlook/data_correction/sample0020_step007.npz
new file mode 100644
index 0000000..aa6ba68
Binary files /dev/null and b/outlook/data_correction/sample0020_step007.npz differ
diff --git a/outlook/data_correction/sample0020_step008.npz b/outlook/data_correction/sample0020_step008.npz
new file mode 100644
index 0000000..749563f
Binary files /dev/null and b/outlook/data_correction/sample0020_step008.npz differ
diff --git a/outlook/data_correction/sample0020_step009.npz b/outlook/data_correction/sample0020_step009.npz
new file mode 100644
index 0000000..5aa4461
Binary files /dev/null and b/outlook/data_correction/sample0020_step009.npz differ
diff --git a/outlook/data_correction/sample0020_step010.npz b/outlook/data_correction/sample0020_step010.npz
new file mode 100644
index 0000000..a0f66d6
Binary files /dev/null and b/outlook/data_correction/sample0020_step010.npz differ
diff --git a/outlook/data_correction/sample0020_step011.npz b/outlook/data_correction/sample0020_step011.npz
new file mode 100644
index 0000000..a3c71f9
Binary files /dev/null and b/outlook/data_correction/sample0020_step011.npz differ
diff --git a/outlook/data_correction/sample0020_step012.npz b/outlook/data_correction/sample0020_step012.npz
new file mode 100644
index 0000000..a98bcbc
Binary files /dev/null and b/outlook/data_correction/sample0020_step012.npz differ
diff --git a/outlook/data_correction/sample0020_step013.npz b/outlook/data_correction/sample0020_step013.npz
new file mode 100644
index 0000000..823e929
Binary files /dev/null and b/outlook/data_correction/sample0020_step013.npz differ
diff --git a/outlook/data_correction/sample0020_step014.npz b/outlook/data_correction/sample0020_step014.npz
new file mode 100644
index 0000000..5678474
Binary files /dev/null and b/outlook/data_correction/sample0020_step014.npz differ
diff --git a/outlook/data_correction/sample0020_step015.npz b/outlook/data_correction/sample0020_step015.npz
new file mode 100644
index 0000000..0637997
Binary files /dev/null and b/outlook/data_correction/sample0020_step015.npz differ
diff --git a/outlook/data_correction/sample0020_step016.npz b/outlook/data_correction/sample0020_step016.npz
new file mode 100644
index 0000000..f4b4758
Binary files /dev/null and b/outlook/data_correction/sample0020_step016.npz differ
diff --git a/outlook/data_correction/sample0020_step017.npz b/outlook/data_correction/sample0020_step017.npz
new file mode 100644
index 0000000..6f93e0a
Binary files /dev/null and b/outlook/data_correction/sample0020_step017.npz differ
diff --git a/outlook/data_correction/sample0021_step000.npz b/outlook/data_correction/sample0021_step000.npz
new file mode 100644
index 0000000..668ecd9
Binary files /dev/null and b/outlook/data_correction/sample0021_step000.npz differ
diff --git a/outlook/data_correction/sample0021_step001.npz b/outlook/data_correction/sample0021_step001.npz
new file mode 100644
index 0000000..e9ba323
Binary files /dev/null and b/outlook/data_correction/sample0021_step001.npz differ
diff --git a/outlook/data_correction/sample0021_step002.npz b/outlook/data_correction/sample0021_step002.npz
new file mode 100644
index 0000000..8b9f1c3
Binary files /dev/null and b/outlook/data_correction/sample0021_step002.npz differ
diff --git a/outlook/data_correction/sample0021_step003.npz b/outlook/data_correction/sample0021_step003.npz
new file mode 100644
index 0000000..b6d65b7
Binary files /dev/null and b/outlook/data_correction/sample0021_step003.npz differ
diff --git a/outlook/data_correction/sample0021_step004.npz b/outlook/data_correction/sample0021_step004.npz
new file mode 100644
index 0000000..7017ec6
Binary files /dev/null and b/outlook/data_correction/sample0021_step004.npz differ
diff --git a/outlook/data_correction/sample0021_step005.npz b/outlook/data_correction/sample0021_step005.npz
new file mode 100644
index 0000000..709675d
Binary files /dev/null and b/outlook/data_correction/sample0021_step005.npz differ
diff --git a/outlook/data_correction/sample0021_step006.npz b/outlook/data_correction/sample0021_step006.npz
new file mode 100644
index 0000000..aa54079
Binary files /dev/null and b/outlook/data_correction/sample0021_step006.npz differ
diff --git a/outlook/data_correction/sample0021_step007.npz b/outlook/data_correction/sample0021_step007.npz
new file mode 100644
index 0000000..4b33642
Binary files /dev/null and b/outlook/data_correction/sample0021_step007.npz differ
diff --git a/outlook/data_correction/sample0021_step008.npz b/outlook/data_correction/sample0021_step008.npz
new file mode 100644
index 0000000..ba17130
Binary files /dev/null and b/outlook/data_correction/sample0021_step008.npz differ
diff --git a/outlook/data_correction/sample0021_step009.npz b/outlook/data_correction/sample0021_step009.npz
new file mode 100644
index 0000000..848eb27
Binary files /dev/null and b/outlook/data_correction/sample0021_step009.npz differ
diff --git a/outlook/data_correction/sample0021_step010.npz b/outlook/data_correction/sample0021_step010.npz
new file mode 100644
index 0000000..fc77ce9
Binary files /dev/null and b/outlook/data_correction/sample0021_step010.npz differ
diff --git a/outlook/data_correction/sample0021_step011.npz b/outlook/data_correction/sample0021_step011.npz
new file mode 100644
index 0000000..14b232b
Binary files /dev/null and b/outlook/data_correction/sample0021_step011.npz differ
diff --git a/outlook/data_correction/sample0021_step012.npz b/outlook/data_correction/sample0021_step012.npz
new file mode 100644
index 0000000..8ec9536
Binary files /dev/null and b/outlook/data_correction/sample0021_step012.npz differ
diff --git a/outlook/data_correction/sample0021_step013.npz b/outlook/data_correction/sample0021_step013.npz
new file mode 100644
index 0000000..0abbcad
Binary files /dev/null and b/outlook/data_correction/sample0021_step013.npz differ
diff --git a/outlook/data_correction/sample0021_step014.npz b/outlook/data_correction/sample0021_step014.npz
new file mode 100644
index 0000000..1277768
Binary files /dev/null and b/outlook/data_correction/sample0021_step014.npz differ
diff --git a/outlook/data_correction/sample0021_step015.npz b/outlook/data_correction/sample0021_step015.npz
new file mode 100644
index 0000000..293414a
Binary files /dev/null and b/outlook/data_correction/sample0021_step015.npz differ
diff --git a/outlook/data_correction/sample0021_step016.npz b/outlook/data_correction/sample0021_step016.npz
new file mode 100644
index 0000000..9d92e96
Binary files /dev/null and b/outlook/data_correction/sample0021_step016.npz differ
diff --git a/outlook/data_correction/sample0021_step017.npz b/outlook/data_correction/sample0021_step017.npz
new file mode 100644
index 0000000..28d2b9a
Binary files /dev/null and b/outlook/data_correction/sample0021_step017.npz differ
diff --git a/outlook/data_correction/sample0021_step018.npz b/outlook/data_correction/sample0021_step018.npz
new file mode 100644
index 0000000..9c41526
Binary files /dev/null and b/outlook/data_correction/sample0021_step018.npz differ
diff --git a/outlook/data_correction/sample0022_step000.npz b/outlook/data_correction/sample0022_step000.npz
new file mode 100644
index 0000000..1ba4d8a
Binary files /dev/null and b/outlook/data_correction/sample0022_step000.npz differ
diff --git a/outlook/data_correction/sample0022_step001.npz b/outlook/data_correction/sample0022_step001.npz
new file mode 100644
index 0000000..201bee8
Binary files /dev/null and b/outlook/data_correction/sample0022_step001.npz differ
diff --git a/outlook/data_correction/sample0022_step002.npz b/outlook/data_correction/sample0022_step002.npz
new file mode 100644
index 0000000..9d3bc4d
Binary files /dev/null and b/outlook/data_correction/sample0022_step002.npz differ
diff --git a/outlook/data_correction/sample0022_step003.npz b/outlook/data_correction/sample0022_step003.npz
new file mode 100644
index 0000000..623d67c
Binary files /dev/null and b/outlook/data_correction/sample0022_step003.npz differ
diff --git a/outlook/data_correction/sample0022_step004.npz b/outlook/data_correction/sample0022_step004.npz
new file mode 100644
index 0000000..34deea4
Binary files /dev/null and b/outlook/data_correction/sample0022_step004.npz differ
diff --git a/outlook/data_correction/sample0022_step005.npz b/outlook/data_correction/sample0022_step005.npz
new file mode 100644
index 0000000..687d2f5
Binary files /dev/null and b/outlook/data_correction/sample0022_step005.npz differ
diff --git a/outlook/data_correction/sample0022_step006.npz b/outlook/data_correction/sample0022_step006.npz
new file mode 100644
index 0000000..4989a65
Binary files /dev/null and b/outlook/data_correction/sample0022_step006.npz differ
diff --git a/outlook/data_correction/sample0022_step007.npz b/outlook/data_correction/sample0022_step007.npz
new file mode 100644
index 0000000..25d272c
Binary files /dev/null and b/outlook/data_correction/sample0022_step007.npz differ
diff --git a/outlook/data_correction/sample0022_step008.npz b/outlook/data_correction/sample0022_step008.npz
new file mode 100644
index 0000000..bb53269
Binary files /dev/null and b/outlook/data_correction/sample0022_step008.npz differ
diff --git a/outlook/data_correction/sample0022_step009.npz b/outlook/data_correction/sample0022_step009.npz
new file mode 100644
index 0000000..86816ee
Binary files /dev/null and b/outlook/data_correction/sample0022_step009.npz differ
diff --git a/outlook/data_correction/sample0022_step010.npz b/outlook/data_correction/sample0022_step010.npz
new file mode 100644
index 0000000..7b9e95d
Binary files /dev/null and b/outlook/data_correction/sample0022_step010.npz differ
diff --git a/outlook/data_correction/sample0022_step011.npz b/outlook/data_correction/sample0022_step011.npz
new file mode 100644
index 0000000..35b2367
Binary files /dev/null and b/outlook/data_correction/sample0022_step011.npz differ
diff --git a/outlook/data_correction/sample0022_step012.npz b/outlook/data_correction/sample0022_step012.npz
new file mode 100644
index 0000000..fc98744
Binary files /dev/null and b/outlook/data_correction/sample0022_step012.npz differ
diff --git a/outlook/data_correction/sample0022_step013.npz b/outlook/data_correction/sample0022_step013.npz
new file mode 100644
index 0000000..fe1b3c3
Binary files /dev/null and b/outlook/data_correction/sample0022_step013.npz differ
diff --git a/outlook/data_correction/sample0022_step014.npz b/outlook/data_correction/sample0022_step014.npz
new file mode 100644
index 0000000..fda2ede
Binary files /dev/null and b/outlook/data_correction/sample0022_step014.npz differ
diff --git a/outlook/data_correction/sample0022_step015.npz b/outlook/data_correction/sample0022_step015.npz
new file mode 100644
index 0000000..6d0ee4f
Binary files /dev/null and b/outlook/data_correction/sample0022_step015.npz differ
diff --git a/outlook/data_correction/sample0022_step016.npz b/outlook/data_correction/sample0022_step016.npz
new file mode 100644
index 0000000..69ad9f2
Binary files /dev/null and b/outlook/data_correction/sample0022_step016.npz differ
diff --git a/outlook/data_correction/sample0022_step017.npz b/outlook/data_correction/sample0022_step017.npz
new file mode 100644
index 0000000..45530c8
Binary files /dev/null and b/outlook/data_correction/sample0022_step017.npz differ
diff --git a/outlook/data_correction/sample0022_step018.npz b/outlook/data_correction/sample0022_step018.npz
new file mode 100644
index 0000000..2d816f1
Binary files /dev/null and b/outlook/data_correction/sample0022_step018.npz differ
diff --git a/outlook/data_correction/sample0023_step000.npz b/outlook/data_correction/sample0023_step000.npz
new file mode 100644
index 0000000..6fd21a7
Binary files /dev/null and b/outlook/data_correction/sample0023_step000.npz differ
diff --git a/outlook/data_correction/sample0023_step001.npz b/outlook/data_correction/sample0023_step001.npz
new file mode 100644
index 0000000..42c9148
Binary files /dev/null and b/outlook/data_correction/sample0023_step001.npz differ
diff --git a/outlook/data_correction/sample0023_step002.npz b/outlook/data_correction/sample0023_step002.npz
new file mode 100644
index 0000000..706b36e
Binary files /dev/null and b/outlook/data_correction/sample0023_step002.npz differ
diff --git a/outlook/data_correction/sample0023_step003.npz b/outlook/data_correction/sample0023_step003.npz
new file mode 100644
index 0000000..7ab4ef2
Binary files /dev/null and b/outlook/data_correction/sample0023_step003.npz differ
diff --git a/outlook/data_correction/sample0023_step004.npz b/outlook/data_correction/sample0023_step004.npz
new file mode 100644
index 0000000..1d2fe99
Binary files /dev/null and b/outlook/data_correction/sample0023_step004.npz differ
diff --git a/outlook/data_correction/sample0023_step005.npz b/outlook/data_correction/sample0023_step005.npz
new file mode 100644
index 0000000..918917d
Binary files /dev/null and b/outlook/data_correction/sample0023_step005.npz differ
diff --git a/outlook/data_correction/sample0023_step006.npz b/outlook/data_correction/sample0023_step006.npz
new file mode 100644
index 0000000..0c2dfc8
Binary files /dev/null and b/outlook/data_correction/sample0023_step006.npz differ
diff --git a/outlook/data_correction/sample0023_step007.npz b/outlook/data_correction/sample0023_step007.npz
new file mode 100644
index 0000000..43fa759
Binary files /dev/null and b/outlook/data_correction/sample0023_step007.npz differ
diff --git a/outlook/data_correction/sample0023_step008.npz b/outlook/data_correction/sample0023_step008.npz
new file mode 100644
index 0000000..eb82bef
Binary files /dev/null and b/outlook/data_correction/sample0023_step008.npz differ
diff --git a/outlook/data_correction/sample0023_step009.npz b/outlook/data_correction/sample0023_step009.npz
new file mode 100644
index 0000000..e57a1b3
Binary files /dev/null and b/outlook/data_correction/sample0023_step009.npz differ
diff --git a/outlook/data_correction/sample0023_step010.npz b/outlook/data_correction/sample0023_step010.npz
new file mode 100644
index 0000000..1c34055
Binary files /dev/null and b/outlook/data_correction/sample0023_step010.npz differ
diff --git a/outlook/data_correction/sample0023_step011.npz b/outlook/data_correction/sample0023_step011.npz
new file mode 100644
index 0000000..fed0a58
Binary files /dev/null and b/outlook/data_correction/sample0023_step011.npz differ
diff --git a/outlook/data_correction/sample0023_step012.npz b/outlook/data_correction/sample0023_step012.npz
new file mode 100644
index 0000000..d2780ec
Binary files /dev/null and b/outlook/data_correction/sample0023_step012.npz differ
diff --git a/outlook/data_correction/sample0023_step013.npz b/outlook/data_correction/sample0023_step013.npz
new file mode 100644
index 0000000..d7272f9
Binary files /dev/null and b/outlook/data_correction/sample0023_step013.npz differ
diff --git a/outlook/data_correction/sample0023_step014.npz b/outlook/data_correction/sample0023_step014.npz
new file mode 100644
index 0000000..1a3d574
Binary files /dev/null and b/outlook/data_correction/sample0023_step014.npz differ
diff --git a/outlook/data_correction/sample0023_step015.npz b/outlook/data_correction/sample0023_step015.npz
new file mode 100644
index 0000000..be5d722
Binary files /dev/null and b/outlook/data_correction/sample0023_step015.npz differ
diff --git a/outlook/data_correction/sample0023_step016.npz b/outlook/data_correction/sample0023_step016.npz
new file mode 100644
index 0000000..88ecaa8
Binary files /dev/null and b/outlook/data_correction/sample0023_step016.npz differ
diff --git a/outlook/data_correction/sample0023_step017.npz b/outlook/data_correction/sample0023_step017.npz
new file mode 100644
index 0000000..0875e10
Binary files /dev/null and b/outlook/data_correction/sample0023_step017.npz differ
diff --git a/outlook/data_correction/sample0024_step000.npz b/outlook/data_correction/sample0024_step000.npz
new file mode 100644
index 0000000..906d07b
Binary files /dev/null and b/outlook/data_correction/sample0024_step000.npz differ
diff --git a/outlook/data_correction/sample0024_step001.npz b/outlook/data_correction/sample0024_step001.npz
new file mode 100644
index 0000000..2c505e5
Binary files /dev/null and b/outlook/data_correction/sample0024_step001.npz differ
diff --git a/outlook/data_correction/sample0024_step002.npz b/outlook/data_correction/sample0024_step002.npz
new file mode 100644
index 0000000..74f75ad
Binary files /dev/null and b/outlook/data_correction/sample0024_step002.npz differ
diff --git a/outlook/data_correction/sample0024_step003.npz b/outlook/data_correction/sample0024_step003.npz
new file mode 100644
index 0000000..7c3ad22
Binary files /dev/null and b/outlook/data_correction/sample0024_step003.npz differ
diff --git a/outlook/data_correction/sample0024_step004.npz b/outlook/data_correction/sample0024_step004.npz
new file mode 100644
index 0000000..a571b98
Binary files /dev/null and b/outlook/data_correction/sample0024_step004.npz differ
diff --git a/outlook/data_correction/sample0024_step005.npz b/outlook/data_correction/sample0024_step005.npz
new file mode 100644
index 0000000..6f54277
Binary files /dev/null and b/outlook/data_correction/sample0024_step005.npz differ
diff --git a/outlook/data_correction/sample0024_step006.npz b/outlook/data_correction/sample0024_step006.npz
new file mode 100644
index 0000000..745abd0
Binary files /dev/null and b/outlook/data_correction/sample0024_step006.npz differ
diff --git a/outlook/data_correction/sample0024_step007.npz b/outlook/data_correction/sample0024_step007.npz
new file mode 100644
index 0000000..2664199
Binary files /dev/null and b/outlook/data_correction/sample0024_step007.npz differ
diff --git a/outlook/data_correction/sample0024_step008.npz b/outlook/data_correction/sample0024_step008.npz
new file mode 100644
index 0000000..9882fe1
Binary files /dev/null and b/outlook/data_correction/sample0024_step008.npz differ
diff --git a/outlook/data_correction/sample0024_step009.npz b/outlook/data_correction/sample0024_step009.npz
new file mode 100644
index 0000000..2541e0a
Binary files /dev/null and b/outlook/data_correction/sample0024_step009.npz differ
diff --git a/outlook/data_correction/sample0024_step010.npz b/outlook/data_correction/sample0024_step010.npz
new file mode 100644
index 0000000..5b5de92
Binary files /dev/null and b/outlook/data_correction/sample0024_step010.npz differ
diff --git a/outlook/data_correction/sample0024_step011.npz b/outlook/data_correction/sample0024_step011.npz
new file mode 100644
index 0000000..ce96c47
Binary files /dev/null and b/outlook/data_correction/sample0024_step011.npz differ
diff --git a/outlook/data_correction/sample0024_step012.npz b/outlook/data_correction/sample0024_step012.npz
new file mode 100644
index 0000000..f1e75cf
Binary files /dev/null and b/outlook/data_correction/sample0024_step012.npz differ
diff --git a/outlook/data_correction/sample0024_step013.npz b/outlook/data_correction/sample0024_step013.npz
new file mode 100644
index 0000000..82f5416
Binary files /dev/null and b/outlook/data_correction/sample0024_step013.npz differ
diff --git a/outlook/data_correction/sample0024_step014.npz b/outlook/data_correction/sample0024_step014.npz
new file mode 100644
index 0000000..8566b25
Binary files /dev/null and b/outlook/data_correction/sample0024_step014.npz differ
diff --git a/outlook/data_correction/sample0024_step015.npz b/outlook/data_correction/sample0024_step015.npz
new file mode 100644
index 0000000..856487f
Binary files /dev/null and b/outlook/data_correction/sample0024_step015.npz differ
diff --git a/outlook/data_correction/sample0024_step016.npz b/outlook/data_correction/sample0024_step016.npz
new file mode 100644
index 0000000..feca4f8
Binary files /dev/null and b/outlook/data_correction/sample0024_step016.npz differ
diff --git a/outlook/data_correction/sample0024_step017.npz b/outlook/data_correction/sample0024_step017.npz
new file mode 100644
index 0000000..36dbb1e
Binary files /dev/null and b/outlook/data_correction/sample0024_step017.npz differ
diff --git a/outlook/data_correction/sample0024_step018.npz b/outlook/data_correction/sample0024_step018.npz
new file mode 100644
index 0000000..01a598a
Binary files /dev/null and b/outlook/data_correction/sample0024_step018.npz differ
diff --git a/outlook/data_correction/sample0025_step000.npz b/outlook/data_correction/sample0025_step000.npz
new file mode 100644
index 0000000..893a290
Binary files /dev/null and b/outlook/data_correction/sample0025_step000.npz differ
diff --git a/outlook/data_correction/sample0025_step001.npz b/outlook/data_correction/sample0025_step001.npz
new file mode 100644
index 0000000..a0a2456
Binary files /dev/null and b/outlook/data_correction/sample0025_step001.npz differ
diff --git a/outlook/data_correction/sample0025_step002.npz b/outlook/data_correction/sample0025_step002.npz
new file mode 100644
index 0000000..b7cf10e
Binary files /dev/null and b/outlook/data_correction/sample0025_step002.npz differ
diff --git a/outlook/data_correction/sample0025_step003.npz b/outlook/data_correction/sample0025_step003.npz
new file mode 100644
index 0000000..9819421
Binary files /dev/null and b/outlook/data_correction/sample0025_step003.npz differ
diff --git a/outlook/data_correction/sample0025_step004.npz b/outlook/data_correction/sample0025_step004.npz
new file mode 100644
index 0000000..6baea49
Binary files /dev/null and b/outlook/data_correction/sample0025_step004.npz differ
diff --git a/outlook/data_correction/sample0025_step005.npz b/outlook/data_correction/sample0025_step005.npz
new file mode 100644
index 0000000..d670265
Binary files /dev/null and b/outlook/data_correction/sample0025_step005.npz differ
diff --git a/outlook/data_correction/sample0025_step006.npz b/outlook/data_correction/sample0025_step006.npz
new file mode 100644
index 0000000..2015fc2
Binary files /dev/null and b/outlook/data_correction/sample0025_step006.npz differ
diff --git a/outlook/data_correction/sample0025_step007.npz b/outlook/data_correction/sample0025_step007.npz
new file mode 100644
index 0000000..06e3a48
Binary files /dev/null and b/outlook/data_correction/sample0025_step007.npz differ
diff --git a/outlook/data_correction/sample0025_step008.npz b/outlook/data_correction/sample0025_step008.npz
new file mode 100644
index 0000000..134c292
Binary files /dev/null and b/outlook/data_correction/sample0025_step008.npz differ
diff --git a/outlook/data_correction/sample0025_step009.npz b/outlook/data_correction/sample0025_step009.npz
new file mode 100644
index 0000000..6bbb825
Binary files /dev/null and b/outlook/data_correction/sample0025_step009.npz differ
diff --git a/outlook/data_correction/sample0025_step010.npz b/outlook/data_correction/sample0025_step010.npz
new file mode 100644
index 0000000..cfa4f2f
Binary files /dev/null and b/outlook/data_correction/sample0025_step010.npz differ
diff --git a/outlook/data_correction/sample0025_step011.npz b/outlook/data_correction/sample0025_step011.npz
new file mode 100644
index 0000000..de218f5
Binary files /dev/null and b/outlook/data_correction/sample0025_step011.npz differ
diff --git a/outlook/data_correction/sample0025_step012.npz b/outlook/data_correction/sample0025_step012.npz
new file mode 100644
index 0000000..e34ca9b
Binary files /dev/null and b/outlook/data_correction/sample0025_step012.npz differ
diff --git a/outlook/data_correction/sample0025_step013.npz b/outlook/data_correction/sample0025_step013.npz
new file mode 100644
index 0000000..5736c25
Binary files /dev/null and b/outlook/data_correction/sample0025_step013.npz differ
diff --git a/outlook/data_correction/sample0025_step014.npz b/outlook/data_correction/sample0025_step014.npz
new file mode 100644
index 0000000..607e8fa
Binary files /dev/null and b/outlook/data_correction/sample0025_step014.npz differ
diff --git a/outlook/data_correction/sample0025_step015.npz b/outlook/data_correction/sample0025_step015.npz
new file mode 100644
index 0000000..b3f83c4
Binary files /dev/null and b/outlook/data_correction/sample0025_step015.npz differ
diff --git a/outlook/data_correction/sample0025_step016.npz b/outlook/data_correction/sample0025_step016.npz
new file mode 100644
index 0000000..eb59c37
Binary files /dev/null and b/outlook/data_correction/sample0025_step016.npz differ
diff --git a/outlook/data_correction/sample0025_step017.npz b/outlook/data_correction/sample0025_step017.npz
new file mode 100644
index 0000000..5eeb600
Binary files /dev/null and b/outlook/data_correction/sample0025_step017.npz differ
diff --git a/outlook/data_correction/sample0025_step018.npz b/outlook/data_correction/sample0025_step018.npz
new file mode 100644
index 0000000..2bac384
Binary files /dev/null and b/outlook/data_correction/sample0025_step018.npz differ
diff --git a/outlook/data_correction/sample0026_step000.npz b/outlook/data_correction/sample0026_step000.npz
new file mode 100644
index 0000000..9dd7acf
Binary files /dev/null and b/outlook/data_correction/sample0026_step000.npz differ
diff --git a/outlook/data_correction/sample0026_step001.npz b/outlook/data_correction/sample0026_step001.npz
new file mode 100644
index 0000000..9886949
Binary files /dev/null and b/outlook/data_correction/sample0026_step001.npz differ
diff --git a/outlook/data_correction/sample0026_step002.npz b/outlook/data_correction/sample0026_step002.npz
new file mode 100644
index 0000000..ea0fa23
Binary files /dev/null and b/outlook/data_correction/sample0026_step002.npz differ
diff --git a/outlook/data_correction/sample0026_step003.npz b/outlook/data_correction/sample0026_step003.npz
new file mode 100644
index 0000000..7a38040
Binary files /dev/null and b/outlook/data_correction/sample0026_step003.npz differ
diff --git a/outlook/data_correction/sample0026_step004.npz b/outlook/data_correction/sample0026_step004.npz
new file mode 100644
index 0000000..183e0f8
Binary files /dev/null and b/outlook/data_correction/sample0026_step004.npz differ
diff --git a/outlook/data_correction/sample0026_step005.npz b/outlook/data_correction/sample0026_step005.npz
new file mode 100644
index 0000000..5f3119b
Binary files /dev/null and b/outlook/data_correction/sample0026_step005.npz differ
diff --git a/outlook/data_correction/sample0026_step006.npz b/outlook/data_correction/sample0026_step006.npz
new file mode 100644
index 0000000..739648a
Binary files /dev/null and b/outlook/data_correction/sample0026_step006.npz differ
diff --git a/outlook/data_correction/sample0026_step007.npz b/outlook/data_correction/sample0026_step007.npz
new file mode 100644
index 0000000..a95dcdb
Binary files /dev/null and b/outlook/data_correction/sample0026_step007.npz differ
diff --git a/outlook/data_correction/sample0026_step008.npz b/outlook/data_correction/sample0026_step008.npz
new file mode 100644
index 0000000..c923f34
Binary files /dev/null and b/outlook/data_correction/sample0026_step008.npz differ
diff --git a/outlook/data_correction/sample0026_step009.npz b/outlook/data_correction/sample0026_step009.npz
new file mode 100644
index 0000000..2969f5c
Binary files /dev/null and b/outlook/data_correction/sample0026_step009.npz differ
diff --git a/outlook/data_correction/sample0026_step010.npz b/outlook/data_correction/sample0026_step010.npz
new file mode 100644
index 0000000..ef966e1
Binary files /dev/null and b/outlook/data_correction/sample0026_step010.npz differ
diff --git a/outlook/data_correction/sample0026_step011.npz b/outlook/data_correction/sample0026_step011.npz
new file mode 100644
index 0000000..307a0ef
Binary files /dev/null and b/outlook/data_correction/sample0026_step011.npz differ
diff --git a/outlook/data_correction/sample0026_step012.npz b/outlook/data_correction/sample0026_step012.npz
new file mode 100644
index 0000000..a6f88e7
Binary files /dev/null and b/outlook/data_correction/sample0026_step012.npz differ
diff --git a/outlook/data_correction/sample0026_step013.npz b/outlook/data_correction/sample0026_step013.npz
new file mode 100644
index 0000000..a62787d
Binary files /dev/null and b/outlook/data_correction/sample0026_step013.npz differ
diff --git a/outlook/data_correction/sample0026_step014.npz b/outlook/data_correction/sample0026_step014.npz
new file mode 100644
index 0000000..73a11f7
Binary files /dev/null and b/outlook/data_correction/sample0026_step014.npz differ
diff --git a/outlook/data_correction/sample0026_step015.npz b/outlook/data_correction/sample0026_step015.npz
new file mode 100644
index 0000000..20ad793
Binary files /dev/null and b/outlook/data_correction/sample0026_step015.npz differ
diff --git a/outlook/data_correction/sample0026_step016.npz b/outlook/data_correction/sample0026_step016.npz
new file mode 100644
index 0000000..3f120ad
Binary files /dev/null and b/outlook/data_correction/sample0026_step016.npz differ
diff --git a/outlook/data_correction/sample0026_step017.npz b/outlook/data_correction/sample0026_step017.npz
new file mode 100644
index 0000000..6f691ed
Binary files /dev/null and b/outlook/data_correction/sample0026_step017.npz differ
diff --git a/outlook/data_correction/sample0026_step018.npz b/outlook/data_correction/sample0026_step018.npz
new file mode 100644
index 0000000..05bd8e5
Binary files /dev/null and b/outlook/data_correction/sample0026_step018.npz differ
diff --git a/outlook/data_correction/sample0027_step000.npz b/outlook/data_correction/sample0027_step000.npz
new file mode 100644
index 0000000..8f64160
Binary files /dev/null and b/outlook/data_correction/sample0027_step000.npz differ
diff --git a/outlook/data_correction/sample0027_step001.npz b/outlook/data_correction/sample0027_step001.npz
new file mode 100644
index 0000000..ff3ca37
Binary files /dev/null and b/outlook/data_correction/sample0027_step001.npz differ
diff --git a/outlook/data_correction/sample0027_step002.npz b/outlook/data_correction/sample0027_step002.npz
new file mode 100644
index 0000000..f188609
Binary files /dev/null and b/outlook/data_correction/sample0027_step002.npz differ
diff --git a/outlook/data_correction/sample0027_step003.npz b/outlook/data_correction/sample0027_step003.npz
new file mode 100644
index 0000000..aad7484
Binary files /dev/null and b/outlook/data_correction/sample0027_step003.npz differ
diff --git a/outlook/data_correction/sample0027_step004.npz b/outlook/data_correction/sample0027_step004.npz
new file mode 100644
index 0000000..009305a
Binary files /dev/null and b/outlook/data_correction/sample0027_step004.npz differ
diff --git a/outlook/data_correction/sample0027_step005.npz b/outlook/data_correction/sample0027_step005.npz
new file mode 100644
index 0000000..ba9d750
Binary files /dev/null and b/outlook/data_correction/sample0027_step005.npz differ
diff --git a/outlook/data_correction/sample0027_step006.npz b/outlook/data_correction/sample0027_step006.npz
new file mode 100644
index 0000000..4d6ea37
Binary files /dev/null and b/outlook/data_correction/sample0027_step006.npz differ
diff --git a/outlook/data_correction/sample0027_step007.npz b/outlook/data_correction/sample0027_step007.npz
new file mode 100644
index 0000000..1388c0a
Binary files /dev/null and b/outlook/data_correction/sample0027_step007.npz differ
diff --git a/outlook/data_correction/sample0027_step008.npz b/outlook/data_correction/sample0027_step008.npz
new file mode 100644
index 0000000..5dec3f4
Binary files /dev/null and b/outlook/data_correction/sample0027_step008.npz differ
diff --git a/outlook/data_correction/sample0027_step009.npz b/outlook/data_correction/sample0027_step009.npz
new file mode 100644
index 0000000..32cadc8
Binary files /dev/null and b/outlook/data_correction/sample0027_step009.npz differ
diff --git a/outlook/data_correction/sample0027_step010.npz b/outlook/data_correction/sample0027_step010.npz
new file mode 100644
index 0000000..1e80b24
Binary files /dev/null and b/outlook/data_correction/sample0027_step010.npz differ
diff --git a/outlook/data_correction/sample0027_step011.npz b/outlook/data_correction/sample0027_step011.npz
new file mode 100644
index 0000000..f17b6e1
Binary files /dev/null and b/outlook/data_correction/sample0027_step011.npz differ
diff --git a/outlook/data_correction/sample0027_step012.npz b/outlook/data_correction/sample0027_step012.npz
new file mode 100644
index 0000000..809db87
Binary files /dev/null and b/outlook/data_correction/sample0027_step012.npz differ
diff --git a/outlook/data_correction/sample0027_step013.npz b/outlook/data_correction/sample0027_step013.npz
new file mode 100644
index 0000000..50b31be
Binary files /dev/null and b/outlook/data_correction/sample0027_step013.npz differ
diff --git a/outlook/data_correction/sample0027_step014.npz b/outlook/data_correction/sample0027_step014.npz
new file mode 100644
index 0000000..e89d037
Binary files /dev/null and b/outlook/data_correction/sample0027_step014.npz differ
diff --git a/outlook/data_correction/sample0027_step015.npz b/outlook/data_correction/sample0027_step015.npz
new file mode 100644
index 0000000..e9ef644
Binary files /dev/null and b/outlook/data_correction/sample0027_step015.npz differ
diff --git a/outlook/data_correction/sample0027_step016.npz b/outlook/data_correction/sample0027_step016.npz
new file mode 100644
index 0000000..ec86726
Binary files /dev/null and b/outlook/data_correction/sample0027_step016.npz differ
diff --git a/outlook/data_correction/sample0027_step017.npz b/outlook/data_correction/sample0027_step017.npz
new file mode 100644
index 0000000..f02c316
Binary files /dev/null and b/outlook/data_correction/sample0027_step017.npz differ
diff --git a/outlook/data_correction/sample0027_step018.npz b/outlook/data_correction/sample0027_step018.npz
new file mode 100644
index 0000000..d7c62c2
Binary files /dev/null and b/outlook/data_correction/sample0027_step018.npz differ
diff --git a/outlook/data_correction/sample0028_step000.npz b/outlook/data_correction/sample0028_step000.npz
new file mode 100644
index 0000000..e4f117e
Binary files /dev/null and b/outlook/data_correction/sample0028_step000.npz differ
diff --git a/outlook/data_correction/sample0028_step001.npz b/outlook/data_correction/sample0028_step001.npz
new file mode 100644
index 0000000..3b8fc9e
Binary files /dev/null and b/outlook/data_correction/sample0028_step001.npz differ
diff --git a/outlook/data_correction/sample0028_step002.npz b/outlook/data_correction/sample0028_step002.npz
new file mode 100644
index 0000000..6d3e993
Binary files /dev/null and b/outlook/data_correction/sample0028_step002.npz differ
diff --git a/outlook/data_correction/sample0028_step003.npz b/outlook/data_correction/sample0028_step003.npz
new file mode 100644
index 0000000..c9c549e
Binary files /dev/null and b/outlook/data_correction/sample0028_step003.npz differ
diff --git a/outlook/data_correction/sample0028_step004.npz b/outlook/data_correction/sample0028_step004.npz
new file mode 100644
index 0000000..795aa46
Binary files /dev/null and b/outlook/data_correction/sample0028_step004.npz differ
diff --git a/outlook/data_correction/sample0028_step005.npz b/outlook/data_correction/sample0028_step005.npz
new file mode 100644
index 0000000..699bd7e
Binary files /dev/null and b/outlook/data_correction/sample0028_step005.npz differ
diff --git a/outlook/data_correction/sample0028_step006.npz b/outlook/data_correction/sample0028_step006.npz
new file mode 100644
index 0000000..e0b8092
Binary files /dev/null and b/outlook/data_correction/sample0028_step006.npz differ
diff --git a/outlook/data_correction/sample0028_step007.npz b/outlook/data_correction/sample0028_step007.npz
new file mode 100644
index 0000000..cd3af82
Binary files /dev/null and b/outlook/data_correction/sample0028_step007.npz differ
diff --git a/outlook/data_correction/sample0028_step008.npz b/outlook/data_correction/sample0028_step008.npz
new file mode 100644
index 0000000..ee345aa
Binary files /dev/null and b/outlook/data_correction/sample0028_step008.npz differ
diff --git a/outlook/data_correction/sample0028_step009.npz b/outlook/data_correction/sample0028_step009.npz
new file mode 100644
index 0000000..7a01132
Binary files /dev/null and b/outlook/data_correction/sample0028_step009.npz differ
diff --git a/outlook/data_correction/sample0028_step010.npz b/outlook/data_correction/sample0028_step010.npz
new file mode 100644
index 0000000..708b8e1
Binary files /dev/null and b/outlook/data_correction/sample0028_step010.npz differ
diff --git a/outlook/data_correction/sample0028_step011.npz b/outlook/data_correction/sample0028_step011.npz
new file mode 100644
index 0000000..783e906
Binary files /dev/null and b/outlook/data_correction/sample0028_step011.npz differ
diff --git a/outlook/data_correction/sample0028_step012.npz b/outlook/data_correction/sample0028_step012.npz
new file mode 100644
index 0000000..ade1c6c
Binary files /dev/null and b/outlook/data_correction/sample0028_step012.npz differ
diff --git a/outlook/data_correction/sample0028_step013.npz b/outlook/data_correction/sample0028_step013.npz
new file mode 100644
index 0000000..811b502
Binary files /dev/null and b/outlook/data_correction/sample0028_step013.npz differ
diff --git a/outlook/data_correction/sample0028_step014.npz b/outlook/data_correction/sample0028_step014.npz
new file mode 100644
index 0000000..958e999
Binary files /dev/null and b/outlook/data_correction/sample0028_step014.npz differ
diff --git a/outlook/data_correction/sample0028_step015.npz b/outlook/data_correction/sample0028_step015.npz
new file mode 100644
index 0000000..e35449a
Binary files /dev/null and b/outlook/data_correction/sample0028_step015.npz differ
diff --git a/outlook/data_correction/sample0028_step016.npz b/outlook/data_correction/sample0028_step016.npz
new file mode 100644
index 0000000..c95d83d
Binary files /dev/null and b/outlook/data_correction/sample0028_step016.npz differ
diff --git a/outlook/data_correction/sample0028_step017.npz b/outlook/data_correction/sample0028_step017.npz
new file mode 100644
index 0000000..f935f20
Binary files /dev/null and b/outlook/data_correction/sample0028_step017.npz differ
diff --git a/outlook/data_correction/sample0028_step018.npz b/outlook/data_correction/sample0028_step018.npz
new file mode 100644
index 0000000..9a5ee24
Binary files /dev/null and b/outlook/data_correction/sample0028_step018.npz differ
diff --git a/outlook/data_correction/sample0029_step000.npz b/outlook/data_correction/sample0029_step000.npz
new file mode 100644
index 0000000..a109048
Binary files /dev/null and b/outlook/data_correction/sample0029_step000.npz differ
diff --git a/outlook/data_correction/sample0029_step001.npz b/outlook/data_correction/sample0029_step001.npz
new file mode 100644
index 0000000..2848e70
Binary files /dev/null and b/outlook/data_correction/sample0029_step001.npz differ
diff --git a/outlook/data_correction/sample0029_step002.npz b/outlook/data_correction/sample0029_step002.npz
new file mode 100644
index 0000000..deb7ee8
Binary files /dev/null and b/outlook/data_correction/sample0029_step002.npz differ
diff --git a/outlook/data_correction/sample0029_step003.npz b/outlook/data_correction/sample0029_step003.npz
new file mode 100644
index 0000000..05c7210
Binary files /dev/null and b/outlook/data_correction/sample0029_step003.npz differ
diff --git a/outlook/data_correction/sample0029_step004.npz b/outlook/data_correction/sample0029_step004.npz
new file mode 100644
index 0000000..5c00811
Binary files /dev/null and b/outlook/data_correction/sample0029_step004.npz differ
diff --git a/outlook/data_correction/sample0029_step005.npz b/outlook/data_correction/sample0029_step005.npz
new file mode 100644
index 0000000..7b5faa6
Binary files /dev/null and b/outlook/data_correction/sample0029_step005.npz differ
diff --git a/outlook/data_correction/sample0029_step006.npz b/outlook/data_correction/sample0029_step006.npz
new file mode 100644
index 0000000..16e7055
Binary files /dev/null and b/outlook/data_correction/sample0029_step006.npz differ
diff --git a/outlook/data_correction/sample0029_step007.npz b/outlook/data_correction/sample0029_step007.npz
new file mode 100644
index 0000000..78bbda2
Binary files /dev/null and b/outlook/data_correction/sample0029_step007.npz differ
diff --git a/outlook/data_correction/sample0029_step008.npz b/outlook/data_correction/sample0029_step008.npz
new file mode 100644
index 0000000..4f44bca
Binary files /dev/null and b/outlook/data_correction/sample0029_step008.npz differ
diff --git a/outlook/data_correction/sample0029_step009.npz b/outlook/data_correction/sample0029_step009.npz
new file mode 100644
index 0000000..44c6a48
Binary files /dev/null and b/outlook/data_correction/sample0029_step009.npz differ
diff --git a/outlook/data_correction/sample0029_step010.npz b/outlook/data_correction/sample0029_step010.npz
new file mode 100644
index 0000000..7b53844
Binary files /dev/null and b/outlook/data_correction/sample0029_step010.npz differ
diff --git a/outlook/data_correction/sample0029_step011.npz b/outlook/data_correction/sample0029_step011.npz
new file mode 100644
index 0000000..1af6c02
Binary files /dev/null and b/outlook/data_correction/sample0029_step011.npz differ
diff --git a/outlook/data_correction/sample0029_step012.npz b/outlook/data_correction/sample0029_step012.npz
new file mode 100644
index 0000000..f517075
Binary files /dev/null and b/outlook/data_correction/sample0029_step012.npz differ
diff --git a/outlook/data_correction/sample0029_step013.npz b/outlook/data_correction/sample0029_step013.npz
new file mode 100644
index 0000000..0cfc8d5
Binary files /dev/null and b/outlook/data_correction/sample0029_step013.npz differ
diff --git a/outlook/data_correction/sample0029_step014.npz b/outlook/data_correction/sample0029_step014.npz
new file mode 100644
index 0000000..e728713
Binary files /dev/null and b/outlook/data_correction/sample0029_step014.npz differ
diff --git a/outlook/data_correction/sample0029_step015.npz b/outlook/data_correction/sample0029_step015.npz
new file mode 100644
index 0000000..8b8571e
Binary files /dev/null and b/outlook/data_correction/sample0029_step015.npz differ
diff --git a/outlook/data_correction/sample0029_step016.npz b/outlook/data_correction/sample0029_step016.npz
new file mode 100644
index 0000000..bad3d67
Binary files /dev/null and b/outlook/data_correction/sample0029_step016.npz differ
diff --git a/outlook/data_correction/sample0029_step017.npz b/outlook/data_correction/sample0029_step017.npz
new file mode 100644
index 0000000..70a4f69
Binary files /dev/null and b/outlook/data_correction/sample0029_step017.npz differ
diff --git a/outlook/data_correction/sample0029_step018.npz b/outlook/data_correction/sample0029_step018.npz
new file mode 100644
index 0000000..66ad046
Binary files /dev/null and b/outlook/data_correction/sample0029_step018.npz differ
diff --git a/outlook/data_correction/sample0030_step000.npz b/outlook/data_correction/sample0030_step000.npz
new file mode 100644
index 0000000..80343a8
Binary files /dev/null and b/outlook/data_correction/sample0030_step000.npz differ
diff --git a/outlook/data_correction/sample0030_step001.npz b/outlook/data_correction/sample0030_step001.npz
new file mode 100644
index 0000000..c45d21f
Binary files /dev/null and b/outlook/data_correction/sample0030_step001.npz differ
diff --git a/outlook/data_correction/sample0030_step002.npz b/outlook/data_correction/sample0030_step002.npz
new file mode 100644
index 0000000..e9ed457
Binary files /dev/null and b/outlook/data_correction/sample0030_step002.npz differ
diff --git a/outlook/data_correction/sample0030_step003.npz b/outlook/data_correction/sample0030_step003.npz
new file mode 100644
index 0000000..576dd1e
Binary files /dev/null and b/outlook/data_correction/sample0030_step003.npz differ
diff --git a/outlook/data_correction/sample0030_step004.npz b/outlook/data_correction/sample0030_step004.npz
new file mode 100644
index 0000000..eda095e
Binary files /dev/null and b/outlook/data_correction/sample0030_step004.npz differ
diff --git a/outlook/data_correction/sample0030_step005.npz b/outlook/data_correction/sample0030_step005.npz
new file mode 100644
index 0000000..ffffc6c
Binary files /dev/null and b/outlook/data_correction/sample0030_step005.npz differ
diff --git a/outlook/data_correction/sample0030_step006.npz b/outlook/data_correction/sample0030_step006.npz
new file mode 100644
index 0000000..bacea39
Binary files /dev/null and b/outlook/data_correction/sample0030_step006.npz differ
diff --git a/outlook/data_correction/sample0030_step007.npz b/outlook/data_correction/sample0030_step007.npz
new file mode 100644
index 0000000..34c1e0b
Binary files /dev/null and b/outlook/data_correction/sample0030_step007.npz differ
diff --git a/outlook/data_correction/sample0030_step008.npz b/outlook/data_correction/sample0030_step008.npz
new file mode 100644
index 0000000..50c44ba
Binary files /dev/null and b/outlook/data_correction/sample0030_step008.npz differ
diff --git a/outlook/data_correction/sample0030_step009.npz b/outlook/data_correction/sample0030_step009.npz
new file mode 100644
index 0000000..90242ee
Binary files /dev/null and b/outlook/data_correction/sample0030_step009.npz differ
diff --git a/outlook/data_correction/sample0030_step010.npz b/outlook/data_correction/sample0030_step010.npz
new file mode 100644
index 0000000..2222dec
Binary files /dev/null and b/outlook/data_correction/sample0030_step010.npz differ
diff --git a/outlook/data_correction/sample0030_step011.npz b/outlook/data_correction/sample0030_step011.npz
new file mode 100644
index 0000000..62f5232
Binary files /dev/null and b/outlook/data_correction/sample0030_step011.npz differ
diff --git a/outlook/data_correction/sample0030_step012.npz b/outlook/data_correction/sample0030_step012.npz
new file mode 100644
index 0000000..0162b72
Binary files /dev/null and b/outlook/data_correction/sample0030_step012.npz differ
diff --git a/outlook/data_correction/sample0030_step013.npz b/outlook/data_correction/sample0030_step013.npz
new file mode 100644
index 0000000..b94d694
Binary files /dev/null and b/outlook/data_correction/sample0030_step013.npz differ
diff --git a/outlook/data_correction/sample0030_step014.npz b/outlook/data_correction/sample0030_step014.npz
new file mode 100644
index 0000000..3d86873
Binary files /dev/null and b/outlook/data_correction/sample0030_step014.npz differ
diff --git a/outlook/data_correction/sample0030_step015.npz b/outlook/data_correction/sample0030_step015.npz
new file mode 100644
index 0000000..7cf5815
Binary files /dev/null and b/outlook/data_correction/sample0030_step015.npz differ
diff --git a/outlook/data_correction/sample0030_step016.npz b/outlook/data_correction/sample0030_step016.npz
new file mode 100644
index 0000000..51868f9
Binary files /dev/null and b/outlook/data_correction/sample0030_step016.npz differ
diff --git a/outlook/data_correction/sample0030_step017.npz b/outlook/data_correction/sample0030_step017.npz
new file mode 100644
index 0000000..1914017
Binary files /dev/null and b/outlook/data_correction/sample0030_step017.npz differ
diff --git a/outlook/data_correction/sample0031_step000.npz b/outlook/data_correction/sample0031_step000.npz
new file mode 100644
index 0000000..f2371ea
Binary files /dev/null and b/outlook/data_correction/sample0031_step000.npz differ
diff --git a/outlook/data_correction/sample0031_step001.npz b/outlook/data_correction/sample0031_step001.npz
new file mode 100644
index 0000000..0c21074
Binary files /dev/null and b/outlook/data_correction/sample0031_step001.npz differ
diff --git a/outlook/data_correction/sample0031_step002.npz b/outlook/data_correction/sample0031_step002.npz
new file mode 100644
index 0000000..6597f1c
Binary files /dev/null and b/outlook/data_correction/sample0031_step002.npz differ
diff --git a/outlook/data_correction/sample0031_step003.npz b/outlook/data_correction/sample0031_step003.npz
new file mode 100644
index 0000000..3bc060e
Binary files /dev/null and b/outlook/data_correction/sample0031_step003.npz differ
diff --git a/outlook/data_correction/sample0031_step004.npz b/outlook/data_correction/sample0031_step004.npz
new file mode 100644
index 0000000..f7c8f39
Binary files /dev/null and b/outlook/data_correction/sample0031_step004.npz differ
diff --git a/outlook/data_correction/sample0031_step005.npz b/outlook/data_correction/sample0031_step005.npz
new file mode 100644
index 0000000..ceb4e16
Binary files /dev/null and b/outlook/data_correction/sample0031_step005.npz differ
diff --git a/outlook/data_correction/sample0031_step006.npz b/outlook/data_correction/sample0031_step006.npz
new file mode 100644
index 0000000..ffd6942
Binary files /dev/null and b/outlook/data_correction/sample0031_step006.npz differ
diff --git a/outlook/data_correction/sample0031_step007.npz b/outlook/data_correction/sample0031_step007.npz
new file mode 100644
index 0000000..51b40e7
Binary files /dev/null and b/outlook/data_correction/sample0031_step007.npz differ
diff --git a/outlook/data_correction/sample0031_step008.npz b/outlook/data_correction/sample0031_step008.npz
new file mode 100644
index 0000000..c46d5db
Binary files /dev/null and b/outlook/data_correction/sample0031_step008.npz differ
diff --git a/outlook/data_correction/sample0031_step009.npz b/outlook/data_correction/sample0031_step009.npz
new file mode 100644
index 0000000..09d494d
Binary files /dev/null and b/outlook/data_correction/sample0031_step009.npz differ
diff --git a/outlook/data_correction/sample0031_step010.npz b/outlook/data_correction/sample0031_step010.npz
new file mode 100644
index 0000000..3bca65f
Binary files /dev/null and b/outlook/data_correction/sample0031_step010.npz differ
diff --git a/outlook/data_correction/sample0031_step011.npz b/outlook/data_correction/sample0031_step011.npz
new file mode 100644
index 0000000..8427072
Binary files /dev/null and b/outlook/data_correction/sample0031_step011.npz differ
diff --git a/outlook/data_correction/sample0031_step012.npz b/outlook/data_correction/sample0031_step012.npz
new file mode 100644
index 0000000..2da765d
Binary files /dev/null and b/outlook/data_correction/sample0031_step012.npz differ
diff --git a/outlook/data_correction/sample0031_step013.npz b/outlook/data_correction/sample0031_step013.npz
new file mode 100644
index 0000000..eaf2293
Binary files /dev/null and b/outlook/data_correction/sample0031_step013.npz differ
diff --git a/outlook/data_correction/sample0031_step014.npz b/outlook/data_correction/sample0031_step014.npz
new file mode 100644
index 0000000..329a40f
Binary files /dev/null and b/outlook/data_correction/sample0031_step014.npz differ
diff --git a/outlook/data_correction/sample0031_step015.npz b/outlook/data_correction/sample0031_step015.npz
new file mode 100644
index 0000000..0ce92db
Binary files /dev/null and b/outlook/data_correction/sample0031_step015.npz differ
diff --git a/outlook/data_correction/sample0031_step016.npz b/outlook/data_correction/sample0031_step016.npz
new file mode 100644
index 0000000..430329b
Binary files /dev/null and b/outlook/data_correction/sample0031_step016.npz differ
diff --git a/outlook/data_correction/sample0031_step017.npz b/outlook/data_correction/sample0031_step017.npz
new file mode 100644
index 0000000..3efcd5f
Binary files /dev/null and b/outlook/data_correction/sample0031_step017.npz differ
diff --git a/outlook/data_correction/sample0032_step000.npz b/outlook/data_correction/sample0032_step000.npz
new file mode 100644
index 0000000..7fc4b00
Binary files /dev/null and b/outlook/data_correction/sample0032_step000.npz differ
diff --git a/outlook/data_correction/sample0032_step001.npz b/outlook/data_correction/sample0032_step001.npz
new file mode 100644
index 0000000..5dbfc9f
Binary files /dev/null and b/outlook/data_correction/sample0032_step001.npz differ
diff --git a/outlook/data_correction/sample0032_step002.npz b/outlook/data_correction/sample0032_step002.npz
new file mode 100644
index 0000000..57ce78c
Binary files /dev/null and b/outlook/data_correction/sample0032_step002.npz differ
diff --git a/outlook/data_correction/sample0032_step003.npz b/outlook/data_correction/sample0032_step003.npz
new file mode 100644
index 0000000..c30d6bb
Binary files /dev/null and b/outlook/data_correction/sample0032_step003.npz differ
diff --git a/outlook/data_correction/sample0032_step004.npz b/outlook/data_correction/sample0032_step004.npz
new file mode 100644
index 0000000..ba4927c
Binary files /dev/null and b/outlook/data_correction/sample0032_step004.npz differ
diff --git a/outlook/data_correction/sample0032_step005.npz b/outlook/data_correction/sample0032_step005.npz
new file mode 100644
index 0000000..2a3f394
Binary files /dev/null and b/outlook/data_correction/sample0032_step005.npz differ
diff --git a/outlook/data_correction/sample0032_step006.npz b/outlook/data_correction/sample0032_step006.npz
new file mode 100644
index 0000000..3c2ab8a
Binary files /dev/null and b/outlook/data_correction/sample0032_step006.npz differ
diff --git a/outlook/data_correction/sample0032_step007.npz b/outlook/data_correction/sample0032_step007.npz
new file mode 100644
index 0000000..74683da
Binary files /dev/null and b/outlook/data_correction/sample0032_step007.npz differ
diff --git a/outlook/data_correction/sample0032_step008.npz b/outlook/data_correction/sample0032_step008.npz
new file mode 100644
index 0000000..de0abda
Binary files /dev/null and b/outlook/data_correction/sample0032_step008.npz differ
diff --git a/outlook/data_correction/sample0032_step009.npz b/outlook/data_correction/sample0032_step009.npz
new file mode 100644
index 0000000..74a0f40
Binary files /dev/null and b/outlook/data_correction/sample0032_step009.npz differ
diff --git a/outlook/data_correction/sample0032_step010.npz b/outlook/data_correction/sample0032_step010.npz
new file mode 100644
index 0000000..dde598d
Binary files /dev/null and b/outlook/data_correction/sample0032_step010.npz differ
diff --git a/outlook/data_correction/sample0032_step011.npz b/outlook/data_correction/sample0032_step011.npz
new file mode 100644
index 0000000..3df7797
Binary files /dev/null and b/outlook/data_correction/sample0032_step011.npz differ
diff --git a/outlook/data_correction/sample0032_step012.npz b/outlook/data_correction/sample0032_step012.npz
new file mode 100644
index 0000000..080b5c2
Binary files /dev/null and b/outlook/data_correction/sample0032_step012.npz differ
diff --git a/outlook/data_correction/sample0032_step013.npz b/outlook/data_correction/sample0032_step013.npz
new file mode 100644
index 0000000..9bbef47
Binary files /dev/null and b/outlook/data_correction/sample0032_step013.npz differ
diff --git a/outlook/data_correction/sample0032_step014.npz b/outlook/data_correction/sample0032_step014.npz
new file mode 100644
index 0000000..d8f0c62
Binary files /dev/null and b/outlook/data_correction/sample0032_step014.npz differ
diff --git a/outlook/data_correction/sample0032_step015.npz b/outlook/data_correction/sample0032_step015.npz
new file mode 100644
index 0000000..d1d66fa
Binary files /dev/null and b/outlook/data_correction/sample0032_step015.npz differ
diff --git a/outlook/data_correction/sample0032_step016.npz b/outlook/data_correction/sample0032_step016.npz
new file mode 100644
index 0000000..75c752c
Binary files /dev/null and b/outlook/data_correction/sample0032_step016.npz differ
diff --git a/outlook/data_correction/sample0032_step017.npz b/outlook/data_correction/sample0032_step017.npz
new file mode 100644
index 0000000..6367af9
Binary files /dev/null and b/outlook/data_correction/sample0032_step017.npz differ
diff --git a/outlook/data_correction/sample0032_step018.npz b/outlook/data_correction/sample0032_step018.npz
new file mode 100644
index 0000000..291ee99
Binary files /dev/null and b/outlook/data_correction/sample0032_step018.npz differ
diff --git a/outlook/data_correction/sample0033_step000.npz b/outlook/data_correction/sample0033_step000.npz
new file mode 100644
index 0000000..2ce804a
Binary files /dev/null and b/outlook/data_correction/sample0033_step000.npz differ
diff --git a/outlook/data_correction/sample0033_step001.npz b/outlook/data_correction/sample0033_step001.npz
new file mode 100644
index 0000000..3d0b4db
Binary files /dev/null and b/outlook/data_correction/sample0033_step001.npz differ
diff --git a/outlook/data_correction/sample0033_step002.npz b/outlook/data_correction/sample0033_step002.npz
new file mode 100644
index 0000000..66ecafc
Binary files /dev/null and b/outlook/data_correction/sample0033_step002.npz differ
diff --git a/outlook/data_correction/sample0033_step003.npz b/outlook/data_correction/sample0033_step003.npz
new file mode 100644
index 0000000..78a08ee
Binary files /dev/null and b/outlook/data_correction/sample0033_step003.npz differ
diff --git a/outlook/data_correction/sample0033_step004.npz b/outlook/data_correction/sample0033_step004.npz
new file mode 100644
index 0000000..1ba9668
Binary files /dev/null and b/outlook/data_correction/sample0033_step004.npz differ
diff --git a/outlook/data_correction/sample0033_step005.npz b/outlook/data_correction/sample0033_step005.npz
new file mode 100644
index 0000000..1a32c72
Binary files /dev/null and b/outlook/data_correction/sample0033_step005.npz differ
diff --git a/outlook/data_correction/sample0033_step006.npz b/outlook/data_correction/sample0033_step006.npz
new file mode 100644
index 0000000..f04f32a
Binary files /dev/null and b/outlook/data_correction/sample0033_step006.npz differ
diff --git a/outlook/data_correction/sample0033_step007.npz b/outlook/data_correction/sample0033_step007.npz
new file mode 100644
index 0000000..aaef3d2
Binary files /dev/null and b/outlook/data_correction/sample0033_step007.npz differ
diff --git a/outlook/data_correction/sample0033_step008.npz b/outlook/data_correction/sample0033_step008.npz
new file mode 100644
index 0000000..6a9b9e2
Binary files /dev/null and b/outlook/data_correction/sample0033_step008.npz differ
diff --git a/outlook/data_correction/sample0033_step009.npz b/outlook/data_correction/sample0033_step009.npz
new file mode 100644
index 0000000..8a66421
Binary files /dev/null and b/outlook/data_correction/sample0033_step009.npz differ
diff --git a/outlook/data_correction/sample0033_step010.npz b/outlook/data_correction/sample0033_step010.npz
new file mode 100644
index 0000000..3359aba
Binary files /dev/null and b/outlook/data_correction/sample0033_step010.npz differ
diff --git a/outlook/data_correction/sample0033_step011.npz b/outlook/data_correction/sample0033_step011.npz
new file mode 100644
index 0000000..202b2c6
Binary files /dev/null and b/outlook/data_correction/sample0033_step011.npz differ
diff --git a/outlook/data_correction/sample0033_step012.npz b/outlook/data_correction/sample0033_step012.npz
new file mode 100644
index 0000000..b2368b8
Binary files /dev/null and b/outlook/data_correction/sample0033_step012.npz differ
diff --git a/outlook/data_correction/sample0033_step013.npz b/outlook/data_correction/sample0033_step013.npz
new file mode 100644
index 0000000..3d7535b
Binary files /dev/null and b/outlook/data_correction/sample0033_step013.npz differ
diff --git a/outlook/data_correction/sample0033_step014.npz b/outlook/data_correction/sample0033_step014.npz
new file mode 100644
index 0000000..2b6faa6
Binary files /dev/null and b/outlook/data_correction/sample0033_step014.npz differ
diff --git a/outlook/data_correction/sample0033_step015.npz b/outlook/data_correction/sample0033_step015.npz
new file mode 100644
index 0000000..c73a52f
Binary files /dev/null and b/outlook/data_correction/sample0033_step015.npz differ
diff --git a/outlook/data_correction/sample0033_step016.npz b/outlook/data_correction/sample0033_step016.npz
new file mode 100644
index 0000000..69c7344
Binary files /dev/null and b/outlook/data_correction/sample0033_step016.npz differ
diff --git a/outlook/data_correction/sample0033_step017.npz b/outlook/data_correction/sample0033_step017.npz
new file mode 100644
index 0000000..98e15ac
Binary files /dev/null and b/outlook/data_correction/sample0033_step017.npz differ
diff --git a/outlook/data_correction/sample0033_step018.npz b/outlook/data_correction/sample0033_step018.npz
new file mode 100644
index 0000000..c3a0f93
Binary files /dev/null and b/outlook/data_correction/sample0033_step018.npz differ
diff --git a/outlook/data_correction/sample0034_step000.npz b/outlook/data_correction/sample0034_step000.npz
new file mode 100644
index 0000000..2a080a0
Binary files /dev/null and b/outlook/data_correction/sample0034_step000.npz differ
diff --git a/outlook/data_correction/sample0034_step001.npz b/outlook/data_correction/sample0034_step001.npz
new file mode 100644
index 0000000..ccdb2d5
Binary files /dev/null and b/outlook/data_correction/sample0034_step001.npz differ
diff --git a/outlook/data_correction/sample0034_step002.npz b/outlook/data_correction/sample0034_step002.npz
new file mode 100644
index 0000000..5d3521b
Binary files /dev/null and b/outlook/data_correction/sample0034_step002.npz differ
diff --git a/outlook/data_correction/sample0034_step003.npz b/outlook/data_correction/sample0034_step003.npz
new file mode 100644
index 0000000..d74cedf
Binary files /dev/null and b/outlook/data_correction/sample0034_step003.npz differ
diff --git a/outlook/data_correction/sample0034_step004.npz b/outlook/data_correction/sample0034_step004.npz
new file mode 100644
index 0000000..049f0e8
Binary files /dev/null and b/outlook/data_correction/sample0034_step004.npz differ
diff --git a/outlook/data_correction/sample0034_step005.npz b/outlook/data_correction/sample0034_step005.npz
new file mode 100644
index 0000000..cd4a0b6
Binary files /dev/null and b/outlook/data_correction/sample0034_step005.npz differ
diff --git a/outlook/data_correction/sample0034_step006.npz b/outlook/data_correction/sample0034_step006.npz
new file mode 100644
index 0000000..320f03c
Binary files /dev/null and b/outlook/data_correction/sample0034_step006.npz differ
diff --git a/outlook/data_correction/sample0034_step007.npz b/outlook/data_correction/sample0034_step007.npz
new file mode 100644
index 0000000..f7b440e
Binary files /dev/null and b/outlook/data_correction/sample0034_step007.npz differ
diff --git a/outlook/data_correction/sample0034_step008.npz b/outlook/data_correction/sample0034_step008.npz
new file mode 100644
index 0000000..28d8aad
Binary files /dev/null and b/outlook/data_correction/sample0034_step008.npz differ
diff --git a/outlook/data_correction/sample0034_step009.npz b/outlook/data_correction/sample0034_step009.npz
new file mode 100644
index 0000000..9492eae
Binary files /dev/null and b/outlook/data_correction/sample0034_step009.npz differ
diff --git a/outlook/data_correction/sample0034_step010.npz b/outlook/data_correction/sample0034_step010.npz
new file mode 100644
index 0000000..39e0802
Binary files /dev/null and b/outlook/data_correction/sample0034_step010.npz differ
diff --git a/outlook/data_correction/sample0034_step011.npz b/outlook/data_correction/sample0034_step011.npz
new file mode 100644
index 0000000..44609f8
Binary files /dev/null and b/outlook/data_correction/sample0034_step011.npz differ
diff --git a/outlook/data_correction/sample0034_step012.npz b/outlook/data_correction/sample0034_step012.npz
new file mode 100644
index 0000000..0a36e8a
Binary files /dev/null and b/outlook/data_correction/sample0034_step012.npz differ
diff --git a/outlook/data_correction/sample0034_step013.npz b/outlook/data_correction/sample0034_step013.npz
new file mode 100644
index 0000000..18ce382
Binary files /dev/null and b/outlook/data_correction/sample0034_step013.npz differ
diff --git a/outlook/data_correction/sample0034_step014.npz b/outlook/data_correction/sample0034_step014.npz
new file mode 100644
index 0000000..a4daf3c
Binary files /dev/null and b/outlook/data_correction/sample0034_step014.npz differ
diff --git a/outlook/data_correction/sample0034_step015.npz b/outlook/data_correction/sample0034_step015.npz
new file mode 100644
index 0000000..b7c15d9
Binary files /dev/null and b/outlook/data_correction/sample0034_step015.npz differ
diff --git a/outlook/data_correction/sample0034_step016.npz b/outlook/data_correction/sample0034_step016.npz
new file mode 100644
index 0000000..b15f009
Binary files /dev/null and b/outlook/data_correction/sample0034_step016.npz differ
diff --git a/outlook/data_correction/sample0034_step017.npz b/outlook/data_correction/sample0034_step017.npz
new file mode 100644
index 0000000..242b94a
Binary files /dev/null and b/outlook/data_correction/sample0034_step017.npz differ
diff --git a/outlook/data_correction/sample0034_step018.npz b/outlook/data_correction/sample0034_step018.npz
new file mode 100644
index 0000000..4021305
Binary files /dev/null and b/outlook/data_correction/sample0034_step018.npz differ
diff --git a/outlook/data_correction/sample0035_step000.npz b/outlook/data_correction/sample0035_step000.npz
new file mode 100644
index 0000000..3d3625a
Binary files /dev/null and b/outlook/data_correction/sample0035_step000.npz differ
diff --git a/outlook/data_correction/sample0035_step001.npz b/outlook/data_correction/sample0035_step001.npz
new file mode 100644
index 0000000..ab19991
Binary files /dev/null and b/outlook/data_correction/sample0035_step001.npz differ
diff --git a/outlook/data_correction/sample0035_step002.npz b/outlook/data_correction/sample0035_step002.npz
new file mode 100644
index 0000000..3728494
Binary files /dev/null and b/outlook/data_correction/sample0035_step002.npz differ
diff --git a/outlook/data_correction/sample0035_step003.npz b/outlook/data_correction/sample0035_step003.npz
new file mode 100644
index 0000000..0b08eab
Binary files /dev/null and b/outlook/data_correction/sample0035_step003.npz differ
diff --git a/outlook/data_correction/sample0035_step004.npz b/outlook/data_correction/sample0035_step004.npz
new file mode 100644
index 0000000..716c95d
Binary files /dev/null and b/outlook/data_correction/sample0035_step004.npz differ
diff --git a/outlook/data_correction/sample0035_step005.npz b/outlook/data_correction/sample0035_step005.npz
new file mode 100644
index 0000000..eef28b5
Binary files /dev/null and b/outlook/data_correction/sample0035_step005.npz differ
diff --git a/outlook/data_correction/sample0035_step006.npz b/outlook/data_correction/sample0035_step006.npz
new file mode 100644
index 0000000..9698eb3
Binary files /dev/null and b/outlook/data_correction/sample0035_step006.npz differ
diff --git a/outlook/data_correction/sample0035_step007.npz b/outlook/data_correction/sample0035_step007.npz
new file mode 100644
index 0000000..18bf6c9
Binary files /dev/null and b/outlook/data_correction/sample0035_step007.npz differ
diff --git a/outlook/data_correction/sample0035_step008.npz b/outlook/data_correction/sample0035_step008.npz
new file mode 100644
index 0000000..d27c90c
Binary files /dev/null and b/outlook/data_correction/sample0035_step008.npz differ
diff --git a/outlook/data_correction/sample0035_step009.npz b/outlook/data_correction/sample0035_step009.npz
new file mode 100644
index 0000000..1b45f5f
Binary files /dev/null and b/outlook/data_correction/sample0035_step009.npz differ
diff --git a/outlook/data_correction/sample0035_step010.npz b/outlook/data_correction/sample0035_step010.npz
new file mode 100644
index 0000000..979f92f
Binary files /dev/null and b/outlook/data_correction/sample0035_step010.npz differ
diff --git a/outlook/data_correction/sample0035_step011.npz b/outlook/data_correction/sample0035_step011.npz
new file mode 100644
index 0000000..442761d
Binary files /dev/null and b/outlook/data_correction/sample0035_step011.npz differ
diff --git a/outlook/data_correction/sample0035_step012.npz b/outlook/data_correction/sample0035_step012.npz
new file mode 100644
index 0000000..1ab7269
Binary files /dev/null and b/outlook/data_correction/sample0035_step012.npz differ
diff --git a/outlook/data_correction/sample0035_step013.npz b/outlook/data_correction/sample0035_step013.npz
new file mode 100644
index 0000000..e594f36
Binary files /dev/null and b/outlook/data_correction/sample0035_step013.npz differ
diff --git a/outlook/data_correction/sample0035_step014.npz b/outlook/data_correction/sample0035_step014.npz
new file mode 100644
index 0000000..267e3b8
Binary files /dev/null and b/outlook/data_correction/sample0035_step014.npz differ
diff --git a/outlook/data_correction/sample0035_step015.npz b/outlook/data_correction/sample0035_step015.npz
new file mode 100644
index 0000000..0ffa0fb
Binary files /dev/null and b/outlook/data_correction/sample0035_step015.npz differ
diff --git a/outlook/data_correction/sample0035_step016.npz b/outlook/data_correction/sample0035_step016.npz
new file mode 100644
index 0000000..20d2def
Binary files /dev/null and b/outlook/data_correction/sample0035_step016.npz differ
diff --git a/outlook/data_correction/sample0035_step017.npz b/outlook/data_correction/sample0035_step017.npz
new file mode 100644
index 0000000..8b5a424
Binary files /dev/null and b/outlook/data_correction/sample0035_step017.npz differ
diff --git a/outlook/data_correction/sample0035_step018.npz b/outlook/data_correction/sample0035_step018.npz
new file mode 100644
index 0000000..0b85dd7
Binary files /dev/null and b/outlook/data_correction/sample0035_step018.npz differ
diff --git a/outlook/data_correction/sample0036_step000.npz b/outlook/data_correction/sample0036_step000.npz
new file mode 100644
index 0000000..9bcb2a5
Binary files /dev/null and b/outlook/data_correction/sample0036_step000.npz differ
diff --git a/outlook/data_correction/sample0036_step001.npz b/outlook/data_correction/sample0036_step001.npz
new file mode 100644
index 0000000..2d1aadc
Binary files /dev/null and b/outlook/data_correction/sample0036_step001.npz differ
diff --git a/outlook/data_correction/sample0036_step002.npz b/outlook/data_correction/sample0036_step002.npz
new file mode 100644
index 0000000..6a072f9
Binary files /dev/null and b/outlook/data_correction/sample0036_step002.npz differ
diff --git a/outlook/data_correction/sample0036_step003.npz b/outlook/data_correction/sample0036_step003.npz
new file mode 100644
index 0000000..c2c7dbb
Binary files /dev/null and b/outlook/data_correction/sample0036_step003.npz differ
diff --git a/outlook/data_correction/sample0036_step004.npz b/outlook/data_correction/sample0036_step004.npz
new file mode 100644
index 0000000..15d95b8
Binary files /dev/null and b/outlook/data_correction/sample0036_step004.npz differ
diff --git a/outlook/data_correction/sample0036_step005.npz b/outlook/data_correction/sample0036_step005.npz
new file mode 100644
index 0000000..0f9c8cb
Binary files /dev/null and b/outlook/data_correction/sample0036_step005.npz differ
diff --git a/outlook/data_correction/sample0036_step006.npz b/outlook/data_correction/sample0036_step006.npz
new file mode 100644
index 0000000..4d017ec
Binary files /dev/null and b/outlook/data_correction/sample0036_step006.npz differ
diff --git a/outlook/data_correction/sample0036_step007.npz b/outlook/data_correction/sample0036_step007.npz
new file mode 100644
index 0000000..af1bbeb
Binary files /dev/null and b/outlook/data_correction/sample0036_step007.npz differ
diff --git a/outlook/data_correction/sample0036_step008.npz b/outlook/data_correction/sample0036_step008.npz
new file mode 100644
index 0000000..acbc223
Binary files /dev/null and b/outlook/data_correction/sample0036_step008.npz differ
diff --git a/outlook/data_correction/sample0036_step009.npz b/outlook/data_correction/sample0036_step009.npz
new file mode 100644
index 0000000..d59549f
Binary files /dev/null and b/outlook/data_correction/sample0036_step009.npz differ
diff --git a/outlook/data_correction/sample0036_step010.npz b/outlook/data_correction/sample0036_step010.npz
new file mode 100644
index 0000000..c3804b0
Binary files /dev/null and b/outlook/data_correction/sample0036_step010.npz differ
diff --git a/outlook/data_correction/sample0036_step011.npz b/outlook/data_correction/sample0036_step011.npz
new file mode 100644
index 0000000..6386b5f
Binary files /dev/null and b/outlook/data_correction/sample0036_step011.npz differ
diff --git a/outlook/data_correction/sample0036_step012.npz b/outlook/data_correction/sample0036_step012.npz
new file mode 100644
index 0000000..0f13a44
Binary files /dev/null and b/outlook/data_correction/sample0036_step012.npz differ
diff --git a/outlook/data_correction/sample0036_step013.npz b/outlook/data_correction/sample0036_step013.npz
new file mode 100644
index 0000000..6131cf0
Binary files /dev/null and b/outlook/data_correction/sample0036_step013.npz differ
diff --git a/outlook/data_correction/sample0036_step014.npz b/outlook/data_correction/sample0036_step014.npz
new file mode 100644
index 0000000..c69face
Binary files /dev/null and b/outlook/data_correction/sample0036_step014.npz differ
diff --git a/outlook/data_correction/sample0036_step015.npz b/outlook/data_correction/sample0036_step015.npz
new file mode 100644
index 0000000..211a217
Binary files /dev/null and b/outlook/data_correction/sample0036_step015.npz differ
diff --git a/outlook/data_correction/sample0036_step016.npz b/outlook/data_correction/sample0036_step016.npz
new file mode 100644
index 0000000..6883ce2
Binary files /dev/null and b/outlook/data_correction/sample0036_step016.npz differ
diff --git a/outlook/data_correction/sample0036_step017.npz b/outlook/data_correction/sample0036_step017.npz
new file mode 100644
index 0000000..e42af9f
Binary files /dev/null and b/outlook/data_correction/sample0036_step017.npz differ
diff --git a/outlook/data_correction/sample0036_step018.npz b/outlook/data_correction/sample0036_step018.npz
new file mode 100644
index 0000000..8c7833d
Binary files /dev/null and b/outlook/data_correction/sample0036_step018.npz differ
diff --git a/outlook/data_correction/sample0037_step000.npz b/outlook/data_correction/sample0037_step000.npz
new file mode 100644
index 0000000..5f92185
Binary files /dev/null and b/outlook/data_correction/sample0037_step000.npz differ
diff --git a/outlook/data_correction/sample0037_step001.npz b/outlook/data_correction/sample0037_step001.npz
new file mode 100644
index 0000000..88ef850
Binary files /dev/null and b/outlook/data_correction/sample0037_step001.npz differ
diff --git a/outlook/data_correction/sample0037_step002.npz b/outlook/data_correction/sample0037_step002.npz
new file mode 100644
index 0000000..1fc7127
Binary files /dev/null and b/outlook/data_correction/sample0037_step002.npz differ
diff --git a/outlook/data_correction/sample0037_step003.npz b/outlook/data_correction/sample0037_step003.npz
new file mode 100644
index 0000000..29023f8
Binary files /dev/null and b/outlook/data_correction/sample0037_step003.npz differ
diff --git a/outlook/data_correction/sample0037_step004.npz b/outlook/data_correction/sample0037_step004.npz
new file mode 100644
index 0000000..242248e
Binary files /dev/null and b/outlook/data_correction/sample0037_step004.npz differ
diff --git a/outlook/data_correction/sample0037_step005.npz b/outlook/data_correction/sample0037_step005.npz
new file mode 100644
index 0000000..85b5792
Binary files /dev/null and b/outlook/data_correction/sample0037_step005.npz differ
diff --git a/outlook/data_correction/sample0037_step006.npz b/outlook/data_correction/sample0037_step006.npz
new file mode 100644
index 0000000..896517d
Binary files /dev/null and b/outlook/data_correction/sample0037_step006.npz differ
diff --git a/outlook/data_correction/sample0037_step007.npz b/outlook/data_correction/sample0037_step007.npz
new file mode 100644
index 0000000..7d36bc5
Binary files /dev/null and b/outlook/data_correction/sample0037_step007.npz differ
diff --git a/outlook/data_correction/sample0037_step008.npz b/outlook/data_correction/sample0037_step008.npz
new file mode 100644
index 0000000..4c31a37
Binary files /dev/null and b/outlook/data_correction/sample0037_step008.npz differ
diff --git a/outlook/data_correction/sample0037_step009.npz b/outlook/data_correction/sample0037_step009.npz
new file mode 100644
index 0000000..1087f67
Binary files /dev/null and b/outlook/data_correction/sample0037_step009.npz differ
diff --git a/outlook/data_correction/sample0037_step010.npz b/outlook/data_correction/sample0037_step010.npz
new file mode 100644
index 0000000..44c51ab
Binary files /dev/null and b/outlook/data_correction/sample0037_step010.npz differ
diff --git a/outlook/data_correction/sample0037_step011.npz b/outlook/data_correction/sample0037_step011.npz
new file mode 100644
index 0000000..d5e2800
Binary files /dev/null and b/outlook/data_correction/sample0037_step011.npz differ
diff --git a/outlook/data_correction/sample0037_step012.npz b/outlook/data_correction/sample0037_step012.npz
new file mode 100644
index 0000000..0148ff9
Binary files /dev/null and b/outlook/data_correction/sample0037_step012.npz differ
diff --git a/outlook/data_correction/sample0037_step013.npz b/outlook/data_correction/sample0037_step013.npz
new file mode 100644
index 0000000..7950e79
Binary files /dev/null and b/outlook/data_correction/sample0037_step013.npz differ
diff --git a/outlook/data_correction/sample0037_step014.npz b/outlook/data_correction/sample0037_step014.npz
new file mode 100644
index 0000000..e615aff
Binary files /dev/null and b/outlook/data_correction/sample0037_step014.npz differ
diff --git a/outlook/data_correction/sample0037_step015.npz b/outlook/data_correction/sample0037_step015.npz
new file mode 100644
index 0000000..7f3cc5a
Binary files /dev/null and b/outlook/data_correction/sample0037_step015.npz differ
diff --git a/outlook/data_correction/sample0037_step016.npz b/outlook/data_correction/sample0037_step016.npz
new file mode 100644
index 0000000..edc904e
Binary files /dev/null and b/outlook/data_correction/sample0037_step016.npz differ
diff --git a/outlook/data_correction/sample0037_step017.npz b/outlook/data_correction/sample0037_step017.npz
new file mode 100644
index 0000000..b04571f
Binary files /dev/null and b/outlook/data_correction/sample0037_step017.npz differ
diff --git a/outlook/data_correction/sample0037_step018.npz b/outlook/data_correction/sample0037_step018.npz
new file mode 100644
index 0000000..e033694
Binary files /dev/null and b/outlook/data_correction/sample0037_step018.npz differ
diff --git a/outlook/data_correction/sample0038_step000.npz b/outlook/data_correction/sample0038_step000.npz
new file mode 100644
index 0000000..66cfcb1
Binary files /dev/null and b/outlook/data_correction/sample0038_step000.npz differ
diff --git a/outlook/data_correction/sample0038_step001.npz b/outlook/data_correction/sample0038_step001.npz
new file mode 100644
index 0000000..c96483e
Binary files /dev/null and b/outlook/data_correction/sample0038_step001.npz differ
diff --git a/outlook/data_correction/sample0038_step002.npz b/outlook/data_correction/sample0038_step002.npz
new file mode 100644
index 0000000..2f89ee5
Binary files /dev/null and b/outlook/data_correction/sample0038_step002.npz differ
diff --git a/outlook/data_correction/sample0038_step003.npz b/outlook/data_correction/sample0038_step003.npz
new file mode 100644
index 0000000..ddbf676
Binary files /dev/null and b/outlook/data_correction/sample0038_step003.npz differ
diff --git a/outlook/data_correction/sample0038_step004.npz b/outlook/data_correction/sample0038_step004.npz
new file mode 100644
index 0000000..206c762
Binary files /dev/null and b/outlook/data_correction/sample0038_step004.npz differ
diff --git a/outlook/data_correction/sample0038_step005.npz b/outlook/data_correction/sample0038_step005.npz
new file mode 100644
index 0000000..289d8ed
Binary files /dev/null and b/outlook/data_correction/sample0038_step005.npz differ
diff --git a/outlook/data_correction/sample0038_step006.npz b/outlook/data_correction/sample0038_step006.npz
new file mode 100644
index 0000000..fb59100
Binary files /dev/null and b/outlook/data_correction/sample0038_step006.npz differ
diff --git a/outlook/data_correction/sample0038_step007.npz b/outlook/data_correction/sample0038_step007.npz
new file mode 100644
index 0000000..9e06374
Binary files /dev/null and b/outlook/data_correction/sample0038_step007.npz differ
diff --git a/outlook/data_correction/sample0038_step008.npz b/outlook/data_correction/sample0038_step008.npz
new file mode 100644
index 0000000..faae2ce
Binary files /dev/null and b/outlook/data_correction/sample0038_step008.npz differ
diff --git a/outlook/data_correction/sample0038_step009.npz b/outlook/data_correction/sample0038_step009.npz
new file mode 100644
index 0000000..7258ab5
Binary files /dev/null and b/outlook/data_correction/sample0038_step009.npz differ
diff --git a/outlook/data_correction/sample0038_step010.npz b/outlook/data_correction/sample0038_step010.npz
new file mode 100644
index 0000000..b19c7a1
Binary files /dev/null and b/outlook/data_correction/sample0038_step010.npz differ
diff --git a/outlook/data_correction/sample0038_step011.npz b/outlook/data_correction/sample0038_step011.npz
new file mode 100644
index 0000000..00784fb
Binary files /dev/null and b/outlook/data_correction/sample0038_step011.npz differ
diff --git a/outlook/data_correction/sample0038_step012.npz b/outlook/data_correction/sample0038_step012.npz
new file mode 100644
index 0000000..2520a65
Binary files /dev/null and b/outlook/data_correction/sample0038_step012.npz differ
diff --git a/outlook/data_correction/sample0038_step013.npz b/outlook/data_correction/sample0038_step013.npz
new file mode 100644
index 0000000..9e335f2
Binary files /dev/null and b/outlook/data_correction/sample0038_step013.npz differ
diff --git a/outlook/data_correction/sample0038_step014.npz b/outlook/data_correction/sample0038_step014.npz
new file mode 100644
index 0000000..3bb8a76
Binary files /dev/null and b/outlook/data_correction/sample0038_step014.npz differ
diff --git a/outlook/data_correction/sample0038_step015.npz b/outlook/data_correction/sample0038_step015.npz
new file mode 100644
index 0000000..28e50ac
Binary files /dev/null and b/outlook/data_correction/sample0038_step015.npz differ
diff --git a/outlook/data_correction/sample0038_step016.npz b/outlook/data_correction/sample0038_step016.npz
new file mode 100644
index 0000000..bf0df6f
Binary files /dev/null and b/outlook/data_correction/sample0038_step016.npz differ
diff --git a/outlook/data_correction/sample0038_step017.npz b/outlook/data_correction/sample0038_step017.npz
new file mode 100644
index 0000000..85f4bcc
Binary files /dev/null and b/outlook/data_correction/sample0038_step017.npz differ
diff --git a/outlook/data_correction/sample0038_step018.npz b/outlook/data_correction/sample0038_step018.npz
new file mode 100644
index 0000000..1c4042d
Binary files /dev/null and b/outlook/data_correction/sample0038_step018.npz differ
diff --git a/outlook/data_correction/sample0039_step000.npz b/outlook/data_correction/sample0039_step000.npz
new file mode 100644
index 0000000..345c4cf
Binary files /dev/null and b/outlook/data_correction/sample0039_step000.npz differ
diff --git a/outlook/data_correction/sample0039_step001.npz b/outlook/data_correction/sample0039_step001.npz
new file mode 100644
index 0000000..017fc97
Binary files /dev/null and b/outlook/data_correction/sample0039_step001.npz differ
diff --git a/outlook/data_correction/sample0039_step002.npz b/outlook/data_correction/sample0039_step002.npz
new file mode 100644
index 0000000..051f152
Binary files /dev/null and b/outlook/data_correction/sample0039_step002.npz differ
diff --git a/outlook/data_correction/sample0039_step003.npz b/outlook/data_correction/sample0039_step003.npz
new file mode 100644
index 0000000..676c577
Binary files /dev/null and b/outlook/data_correction/sample0039_step003.npz differ
diff --git a/outlook/data_correction/sample0039_step004.npz b/outlook/data_correction/sample0039_step004.npz
new file mode 100644
index 0000000..926b55a
Binary files /dev/null and b/outlook/data_correction/sample0039_step004.npz differ
diff --git a/outlook/data_correction/sample0039_step005.npz b/outlook/data_correction/sample0039_step005.npz
new file mode 100644
index 0000000..06e976a
Binary files /dev/null and b/outlook/data_correction/sample0039_step005.npz differ
diff --git a/outlook/data_correction/sample0039_step006.npz b/outlook/data_correction/sample0039_step006.npz
new file mode 100644
index 0000000..abe47a3
Binary files /dev/null and b/outlook/data_correction/sample0039_step006.npz differ
diff --git a/outlook/data_correction/sample0039_step007.npz b/outlook/data_correction/sample0039_step007.npz
new file mode 100644
index 0000000..8baaba1
Binary files /dev/null and b/outlook/data_correction/sample0039_step007.npz differ
diff --git a/outlook/data_correction/sample0039_step008.npz b/outlook/data_correction/sample0039_step008.npz
new file mode 100644
index 0000000..eed46fb
Binary files /dev/null and b/outlook/data_correction/sample0039_step008.npz differ
diff --git a/outlook/data_correction/sample0039_step009.npz b/outlook/data_correction/sample0039_step009.npz
new file mode 100644
index 0000000..e011780
Binary files /dev/null and b/outlook/data_correction/sample0039_step009.npz differ
diff --git a/outlook/data_correction/sample0039_step010.npz b/outlook/data_correction/sample0039_step010.npz
new file mode 100644
index 0000000..3b36869
Binary files /dev/null and b/outlook/data_correction/sample0039_step010.npz differ
diff --git a/outlook/data_correction/sample0039_step011.npz b/outlook/data_correction/sample0039_step011.npz
new file mode 100644
index 0000000..654a450
Binary files /dev/null and b/outlook/data_correction/sample0039_step011.npz differ
diff --git a/outlook/data_correction/sample0039_step012.npz b/outlook/data_correction/sample0039_step012.npz
new file mode 100644
index 0000000..ea57ea1
Binary files /dev/null and b/outlook/data_correction/sample0039_step012.npz differ
diff --git a/outlook/data_correction/sample0039_step013.npz b/outlook/data_correction/sample0039_step013.npz
new file mode 100644
index 0000000..0a0c950
Binary files /dev/null and b/outlook/data_correction/sample0039_step013.npz differ
diff --git a/outlook/data_correction/sample0039_step014.npz b/outlook/data_correction/sample0039_step014.npz
new file mode 100644
index 0000000..c658c48
Binary files /dev/null and b/outlook/data_correction/sample0039_step014.npz differ
diff --git a/outlook/data_correction/sample0039_step015.npz b/outlook/data_correction/sample0039_step015.npz
new file mode 100644
index 0000000..c2a27f7
Binary files /dev/null and b/outlook/data_correction/sample0039_step015.npz differ
diff --git a/outlook/data_correction/sample0039_step016.npz b/outlook/data_correction/sample0039_step016.npz
new file mode 100644
index 0000000..053fa52
Binary files /dev/null and b/outlook/data_correction/sample0039_step016.npz differ
diff --git a/outlook/data_correction/sample0039_step017.npz b/outlook/data_correction/sample0039_step017.npz
new file mode 100644
index 0000000..f975a17
Binary files /dev/null and b/outlook/data_correction/sample0039_step017.npz differ
diff --git a/outlook/data_correction/sample0039_step018.npz b/outlook/data_correction/sample0039_step018.npz
new file mode 100644
index 0000000..57149f4
Binary files /dev/null and b/outlook/data_correction/sample0039_step018.npz differ
diff --git a/outlook/data_correction/sample0040_step000.npz b/outlook/data_correction/sample0040_step000.npz
new file mode 100644
index 0000000..ad5bae7
Binary files /dev/null and b/outlook/data_correction/sample0040_step000.npz differ
diff --git a/outlook/data_correction/sample0040_step001.npz b/outlook/data_correction/sample0040_step001.npz
new file mode 100644
index 0000000..2c87f30
Binary files /dev/null and b/outlook/data_correction/sample0040_step001.npz differ
diff --git a/outlook/data_correction/sample0040_step002.npz b/outlook/data_correction/sample0040_step002.npz
new file mode 100644
index 0000000..eff9af8
Binary files /dev/null and b/outlook/data_correction/sample0040_step002.npz differ
diff --git a/outlook/data_correction/sample0040_step003.npz b/outlook/data_correction/sample0040_step003.npz
new file mode 100644
index 0000000..ffe8c1e
Binary files /dev/null and b/outlook/data_correction/sample0040_step003.npz differ
diff --git a/outlook/data_correction/sample0040_step004.npz b/outlook/data_correction/sample0040_step004.npz
new file mode 100644
index 0000000..c71d07c
Binary files /dev/null and b/outlook/data_correction/sample0040_step004.npz differ
diff --git a/outlook/data_correction/sample0040_step005.npz b/outlook/data_correction/sample0040_step005.npz
new file mode 100644
index 0000000..63974ff
Binary files /dev/null and b/outlook/data_correction/sample0040_step005.npz differ
diff --git a/outlook/data_correction/sample0040_step006.npz b/outlook/data_correction/sample0040_step006.npz
new file mode 100644
index 0000000..e5ec7e7
Binary files /dev/null and b/outlook/data_correction/sample0040_step006.npz differ
diff --git a/outlook/data_correction/sample0040_step007.npz b/outlook/data_correction/sample0040_step007.npz
new file mode 100644
index 0000000..88f414f
Binary files /dev/null and b/outlook/data_correction/sample0040_step007.npz differ
diff --git a/outlook/data_correction/sample0040_step008.npz b/outlook/data_correction/sample0040_step008.npz
new file mode 100644
index 0000000..a5c39ac
Binary files /dev/null and b/outlook/data_correction/sample0040_step008.npz differ
diff --git a/outlook/data_correction/sample0040_step009.npz b/outlook/data_correction/sample0040_step009.npz
new file mode 100644
index 0000000..97f0017
Binary files /dev/null and b/outlook/data_correction/sample0040_step009.npz differ
diff --git a/outlook/data_correction/sample0040_step010.npz b/outlook/data_correction/sample0040_step010.npz
new file mode 100644
index 0000000..cb3c19b
Binary files /dev/null and b/outlook/data_correction/sample0040_step010.npz differ
diff --git a/outlook/data_correction/sample0040_step011.npz b/outlook/data_correction/sample0040_step011.npz
new file mode 100644
index 0000000..38f7fb8
Binary files /dev/null and b/outlook/data_correction/sample0040_step011.npz differ
diff --git a/outlook/data_correction/sample0040_step012.npz b/outlook/data_correction/sample0040_step012.npz
new file mode 100644
index 0000000..c179682
Binary files /dev/null and b/outlook/data_correction/sample0040_step012.npz differ
diff --git a/outlook/data_correction/sample0040_step013.npz b/outlook/data_correction/sample0040_step013.npz
new file mode 100644
index 0000000..6e4ed6b
Binary files /dev/null and b/outlook/data_correction/sample0040_step013.npz differ
diff --git a/outlook/data_correction/sample0040_step014.npz b/outlook/data_correction/sample0040_step014.npz
new file mode 100644
index 0000000..4682144
Binary files /dev/null and b/outlook/data_correction/sample0040_step014.npz differ
diff --git a/outlook/data_correction/sample0040_step015.npz b/outlook/data_correction/sample0040_step015.npz
new file mode 100644
index 0000000..4613982
Binary files /dev/null and b/outlook/data_correction/sample0040_step015.npz differ
diff --git a/outlook/data_correction/sample0040_step016.npz b/outlook/data_correction/sample0040_step016.npz
new file mode 100644
index 0000000..e3ff315
Binary files /dev/null and b/outlook/data_correction/sample0040_step016.npz differ
diff --git a/outlook/data_correction/sample0040_step017.npz b/outlook/data_correction/sample0040_step017.npz
new file mode 100644
index 0000000..b4673b7
Binary files /dev/null and b/outlook/data_correction/sample0040_step017.npz differ
diff --git a/outlook/data_correction/sample0040_step018.npz b/outlook/data_correction/sample0040_step018.npz
new file mode 100644
index 0000000..767736a
Binary files /dev/null and b/outlook/data_correction/sample0040_step018.npz differ
diff --git a/outlook/data_correction/sample0040_step019.npz b/outlook/data_correction/sample0040_step019.npz
new file mode 100644
index 0000000..201f0d4
Binary files /dev/null and b/outlook/data_correction/sample0040_step019.npz differ
diff --git a/outlook/data_correction/sample0041_step000.npz b/outlook/data_correction/sample0041_step000.npz
new file mode 100644
index 0000000..60224f1
Binary files /dev/null and b/outlook/data_correction/sample0041_step000.npz differ
diff --git a/outlook/data_correction/sample0041_step001.npz b/outlook/data_correction/sample0041_step001.npz
new file mode 100644
index 0000000..f39a0e5
Binary files /dev/null and b/outlook/data_correction/sample0041_step001.npz differ
diff --git a/outlook/data_correction/sample0041_step002.npz b/outlook/data_correction/sample0041_step002.npz
new file mode 100644
index 0000000..6a306d7
Binary files /dev/null and b/outlook/data_correction/sample0041_step002.npz differ
diff --git a/outlook/data_correction/sample0041_step003.npz b/outlook/data_correction/sample0041_step003.npz
new file mode 100644
index 0000000..7f9f5ba
Binary files /dev/null and b/outlook/data_correction/sample0041_step003.npz differ
diff --git a/outlook/data_correction/sample0041_step004.npz b/outlook/data_correction/sample0041_step004.npz
new file mode 100644
index 0000000..4c4b983
Binary files /dev/null and b/outlook/data_correction/sample0041_step004.npz differ
diff --git a/outlook/data_correction/sample0041_step005.npz b/outlook/data_correction/sample0041_step005.npz
new file mode 100644
index 0000000..9bf0c5f
Binary files /dev/null and b/outlook/data_correction/sample0041_step005.npz differ
diff --git a/outlook/data_correction/sample0041_step006.npz b/outlook/data_correction/sample0041_step006.npz
new file mode 100644
index 0000000..8019101
Binary files /dev/null and b/outlook/data_correction/sample0041_step006.npz differ
diff --git a/outlook/data_correction/sample0041_step007.npz b/outlook/data_correction/sample0041_step007.npz
new file mode 100644
index 0000000..472154e
Binary files /dev/null and b/outlook/data_correction/sample0041_step007.npz differ
diff --git a/outlook/data_correction/sample0041_step008.npz b/outlook/data_correction/sample0041_step008.npz
new file mode 100644
index 0000000..870fe75
Binary files /dev/null and b/outlook/data_correction/sample0041_step008.npz differ
diff --git a/outlook/data_correction/sample0041_step009.npz b/outlook/data_correction/sample0041_step009.npz
new file mode 100644
index 0000000..0e5f756
Binary files /dev/null and b/outlook/data_correction/sample0041_step009.npz differ
diff --git a/outlook/data_correction/sample0041_step010.npz b/outlook/data_correction/sample0041_step010.npz
new file mode 100644
index 0000000..41837b2
Binary files /dev/null and b/outlook/data_correction/sample0041_step010.npz differ
diff --git a/outlook/data_correction/sample0041_step011.npz b/outlook/data_correction/sample0041_step011.npz
new file mode 100644
index 0000000..779d484
Binary files /dev/null and b/outlook/data_correction/sample0041_step011.npz differ
diff --git a/outlook/data_correction/sample0041_step012.npz b/outlook/data_correction/sample0041_step012.npz
new file mode 100644
index 0000000..67d5a9e
Binary files /dev/null and b/outlook/data_correction/sample0041_step012.npz differ
diff --git a/outlook/data_correction/sample0041_step013.npz b/outlook/data_correction/sample0041_step013.npz
new file mode 100644
index 0000000..cc48fe4
Binary files /dev/null and b/outlook/data_correction/sample0041_step013.npz differ
diff --git a/outlook/data_correction/sample0041_step014.npz b/outlook/data_correction/sample0041_step014.npz
new file mode 100644
index 0000000..c36328c
Binary files /dev/null and b/outlook/data_correction/sample0041_step014.npz differ
diff --git a/outlook/data_correction/sample0041_step015.npz b/outlook/data_correction/sample0041_step015.npz
new file mode 100644
index 0000000..4cafa40
Binary files /dev/null and b/outlook/data_correction/sample0041_step015.npz differ
diff --git a/outlook/data_correction/sample0041_step016.npz b/outlook/data_correction/sample0041_step016.npz
new file mode 100644
index 0000000..47170d6
Binary files /dev/null and b/outlook/data_correction/sample0041_step016.npz differ
diff --git a/outlook/data_correction/sample0041_step017.npz b/outlook/data_correction/sample0041_step017.npz
new file mode 100644
index 0000000..b5085bd
Binary files /dev/null and b/outlook/data_correction/sample0041_step017.npz differ
diff --git a/outlook/data_correction/sample0041_step018.npz b/outlook/data_correction/sample0041_step018.npz
new file mode 100644
index 0000000..cebad31
Binary files /dev/null and b/outlook/data_correction/sample0041_step018.npz differ
diff --git a/outlook/data_correction/sample0042_step000.npz b/outlook/data_correction/sample0042_step000.npz
new file mode 100644
index 0000000..4f7ccbf
Binary files /dev/null and b/outlook/data_correction/sample0042_step000.npz differ
diff --git a/outlook/data_correction/sample0042_step001.npz b/outlook/data_correction/sample0042_step001.npz
new file mode 100644
index 0000000..5afdcb6
Binary files /dev/null and b/outlook/data_correction/sample0042_step001.npz differ
diff --git a/outlook/data_correction/sample0042_step002.npz b/outlook/data_correction/sample0042_step002.npz
new file mode 100644
index 0000000..c42a8ff
Binary files /dev/null and b/outlook/data_correction/sample0042_step002.npz differ
diff --git a/outlook/data_correction/sample0042_step003.npz b/outlook/data_correction/sample0042_step003.npz
new file mode 100644
index 0000000..a4485d2
Binary files /dev/null and b/outlook/data_correction/sample0042_step003.npz differ
diff --git a/outlook/data_correction/sample0042_step004.npz b/outlook/data_correction/sample0042_step004.npz
new file mode 100644
index 0000000..9c4dfe8
Binary files /dev/null and b/outlook/data_correction/sample0042_step004.npz differ
diff --git a/outlook/data_correction/sample0042_step005.npz b/outlook/data_correction/sample0042_step005.npz
new file mode 100644
index 0000000..9d79b40
Binary files /dev/null and b/outlook/data_correction/sample0042_step005.npz differ
diff --git a/outlook/data_correction/sample0042_step006.npz b/outlook/data_correction/sample0042_step006.npz
new file mode 100644
index 0000000..4b46c44
Binary files /dev/null and b/outlook/data_correction/sample0042_step006.npz differ
diff --git a/outlook/data_correction/sample0042_step007.npz b/outlook/data_correction/sample0042_step007.npz
new file mode 100644
index 0000000..3924419
Binary files /dev/null and b/outlook/data_correction/sample0042_step007.npz differ
diff --git a/outlook/data_correction/sample0042_step008.npz b/outlook/data_correction/sample0042_step008.npz
new file mode 100644
index 0000000..fd36c9c
Binary files /dev/null and b/outlook/data_correction/sample0042_step008.npz differ
diff --git a/outlook/data_correction/sample0042_step009.npz b/outlook/data_correction/sample0042_step009.npz
new file mode 100644
index 0000000..5cba85a
Binary files /dev/null and b/outlook/data_correction/sample0042_step009.npz differ
diff --git a/outlook/data_correction/sample0042_step010.npz b/outlook/data_correction/sample0042_step010.npz
new file mode 100644
index 0000000..3ced92c
Binary files /dev/null and b/outlook/data_correction/sample0042_step010.npz differ
diff --git a/outlook/data_correction/sample0042_step011.npz b/outlook/data_correction/sample0042_step011.npz
new file mode 100644
index 0000000..914bf27
Binary files /dev/null and b/outlook/data_correction/sample0042_step011.npz differ
diff --git a/outlook/data_correction/sample0042_step012.npz b/outlook/data_correction/sample0042_step012.npz
new file mode 100644
index 0000000..4fd2da5
Binary files /dev/null and b/outlook/data_correction/sample0042_step012.npz differ
diff --git a/outlook/data_correction/sample0042_step013.npz b/outlook/data_correction/sample0042_step013.npz
new file mode 100644
index 0000000..c2d1f52
Binary files /dev/null and b/outlook/data_correction/sample0042_step013.npz differ
diff --git a/outlook/data_correction/sample0042_step014.npz b/outlook/data_correction/sample0042_step014.npz
new file mode 100644
index 0000000..d976e02
Binary files /dev/null and b/outlook/data_correction/sample0042_step014.npz differ
diff --git a/outlook/data_correction/sample0042_step015.npz b/outlook/data_correction/sample0042_step015.npz
new file mode 100644
index 0000000..d0b1970
Binary files /dev/null and b/outlook/data_correction/sample0042_step015.npz differ
diff --git a/outlook/data_correction/sample0042_step016.npz b/outlook/data_correction/sample0042_step016.npz
new file mode 100644
index 0000000..428525d
Binary files /dev/null and b/outlook/data_correction/sample0042_step016.npz differ
diff --git a/outlook/data_correction/sample0042_step017.npz b/outlook/data_correction/sample0042_step017.npz
new file mode 100644
index 0000000..7e9e0bd
Binary files /dev/null and b/outlook/data_correction/sample0042_step017.npz differ
diff --git a/outlook/data_correction/sample0042_step018.npz b/outlook/data_correction/sample0042_step018.npz
new file mode 100644
index 0000000..8d5202a
Binary files /dev/null and b/outlook/data_correction/sample0042_step018.npz differ
diff --git a/outlook/data_correction/sample0043_step000.npz b/outlook/data_correction/sample0043_step000.npz
new file mode 100644
index 0000000..b1f090f
Binary files /dev/null and b/outlook/data_correction/sample0043_step000.npz differ
diff --git a/outlook/data_correction/sample0043_step001.npz b/outlook/data_correction/sample0043_step001.npz
new file mode 100644
index 0000000..ae029a2
Binary files /dev/null and b/outlook/data_correction/sample0043_step001.npz differ
diff --git a/outlook/data_correction/sample0043_step002.npz b/outlook/data_correction/sample0043_step002.npz
new file mode 100644
index 0000000..cea36cf
Binary files /dev/null and b/outlook/data_correction/sample0043_step002.npz differ
diff --git a/outlook/data_correction/sample0043_step003.npz b/outlook/data_correction/sample0043_step003.npz
new file mode 100644
index 0000000..9b226a0
Binary files /dev/null and b/outlook/data_correction/sample0043_step003.npz differ
diff --git a/outlook/data_correction/sample0043_step004.npz b/outlook/data_correction/sample0043_step004.npz
new file mode 100644
index 0000000..eb184b9
Binary files /dev/null and b/outlook/data_correction/sample0043_step004.npz differ
diff --git a/outlook/data_correction/sample0043_step005.npz b/outlook/data_correction/sample0043_step005.npz
new file mode 100644
index 0000000..8abf253
Binary files /dev/null and b/outlook/data_correction/sample0043_step005.npz differ
diff --git a/outlook/data_correction/sample0043_step006.npz b/outlook/data_correction/sample0043_step006.npz
new file mode 100644
index 0000000..2e78dd5
Binary files /dev/null and b/outlook/data_correction/sample0043_step006.npz differ
diff --git a/outlook/data_correction/sample0043_step007.npz b/outlook/data_correction/sample0043_step007.npz
new file mode 100644
index 0000000..4ea39c6
Binary files /dev/null and b/outlook/data_correction/sample0043_step007.npz differ
diff --git a/outlook/data_correction/sample0043_step008.npz b/outlook/data_correction/sample0043_step008.npz
new file mode 100644
index 0000000..a0cdab6
Binary files /dev/null and b/outlook/data_correction/sample0043_step008.npz differ
diff --git a/outlook/data_correction/sample0043_step009.npz b/outlook/data_correction/sample0043_step009.npz
new file mode 100644
index 0000000..d75dcd3
Binary files /dev/null and b/outlook/data_correction/sample0043_step009.npz differ
diff --git a/outlook/data_correction/sample0043_step010.npz b/outlook/data_correction/sample0043_step010.npz
new file mode 100644
index 0000000..356d913
Binary files /dev/null and b/outlook/data_correction/sample0043_step010.npz differ
diff --git a/outlook/data_correction/sample0043_step011.npz b/outlook/data_correction/sample0043_step011.npz
new file mode 100644
index 0000000..5c8b5b2
Binary files /dev/null and b/outlook/data_correction/sample0043_step011.npz differ
diff --git a/outlook/data_correction/sample0043_step012.npz b/outlook/data_correction/sample0043_step012.npz
new file mode 100644
index 0000000..dbfd6be
Binary files /dev/null and b/outlook/data_correction/sample0043_step012.npz differ
diff --git a/outlook/data_correction/sample0043_step013.npz b/outlook/data_correction/sample0043_step013.npz
new file mode 100644
index 0000000..33ce728
Binary files /dev/null and b/outlook/data_correction/sample0043_step013.npz differ
diff --git a/outlook/data_correction/sample0043_step014.npz b/outlook/data_correction/sample0043_step014.npz
new file mode 100644
index 0000000..50b7832
Binary files /dev/null and b/outlook/data_correction/sample0043_step014.npz differ
diff --git a/outlook/data_correction/sample0043_step015.npz b/outlook/data_correction/sample0043_step015.npz
new file mode 100644
index 0000000..ee2fcb1
Binary files /dev/null and b/outlook/data_correction/sample0043_step015.npz differ
diff --git a/outlook/data_correction/sample0043_step016.npz b/outlook/data_correction/sample0043_step016.npz
new file mode 100644
index 0000000..04d5d25
Binary files /dev/null and b/outlook/data_correction/sample0043_step016.npz differ
diff --git a/outlook/data_correction/sample0043_step017.npz b/outlook/data_correction/sample0043_step017.npz
new file mode 100644
index 0000000..7bedc8e
Binary files /dev/null and b/outlook/data_correction/sample0043_step017.npz differ
diff --git a/outlook/data_correction/sample0043_step018.npz b/outlook/data_correction/sample0043_step018.npz
new file mode 100644
index 0000000..37702ff
Binary files /dev/null and b/outlook/data_correction/sample0043_step018.npz differ
diff --git a/outlook/data_correction/sample0044_step000.npz b/outlook/data_correction/sample0044_step000.npz
new file mode 100644
index 0000000..2c5f835
Binary files /dev/null and b/outlook/data_correction/sample0044_step000.npz differ
diff --git a/outlook/data_correction/sample0044_step001.npz b/outlook/data_correction/sample0044_step001.npz
new file mode 100644
index 0000000..629d79d
Binary files /dev/null and b/outlook/data_correction/sample0044_step001.npz differ
diff --git a/outlook/data_correction/sample0044_step002.npz b/outlook/data_correction/sample0044_step002.npz
new file mode 100644
index 0000000..64d850d
Binary files /dev/null and b/outlook/data_correction/sample0044_step002.npz differ
diff --git a/outlook/data_correction/sample0044_step003.npz b/outlook/data_correction/sample0044_step003.npz
new file mode 100644
index 0000000..92ff59d
Binary files /dev/null and b/outlook/data_correction/sample0044_step003.npz differ
diff --git a/outlook/data_correction/sample0044_step004.npz b/outlook/data_correction/sample0044_step004.npz
new file mode 100644
index 0000000..2d92440
Binary files /dev/null and b/outlook/data_correction/sample0044_step004.npz differ
diff --git a/outlook/data_correction/sample0044_step005.npz b/outlook/data_correction/sample0044_step005.npz
new file mode 100644
index 0000000..d883117
Binary files /dev/null and b/outlook/data_correction/sample0044_step005.npz differ
diff --git a/outlook/data_correction/sample0044_step006.npz b/outlook/data_correction/sample0044_step006.npz
new file mode 100644
index 0000000..d6e7027
Binary files /dev/null and b/outlook/data_correction/sample0044_step006.npz differ
diff --git a/outlook/data_correction/sample0044_step007.npz b/outlook/data_correction/sample0044_step007.npz
new file mode 100644
index 0000000..7e7c4d5
Binary files /dev/null and b/outlook/data_correction/sample0044_step007.npz differ
diff --git a/outlook/data_correction/sample0044_step008.npz b/outlook/data_correction/sample0044_step008.npz
new file mode 100644
index 0000000..8bd1a4e
Binary files /dev/null and b/outlook/data_correction/sample0044_step008.npz differ
diff --git a/outlook/data_correction/sample0044_step009.npz b/outlook/data_correction/sample0044_step009.npz
new file mode 100644
index 0000000..8b0ca10
Binary files /dev/null and b/outlook/data_correction/sample0044_step009.npz differ
diff --git a/outlook/data_correction/sample0044_step010.npz b/outlook/data_correction/sample0044_step010.npz
new file mode 100644
index 0000000..633a958
Binary files /dev/null and b/outlook/data_correction/sample0044_step010.npz differ
diff --git a/outlook/data_correction/sample0044_step011.npz b/outlook/data_correction/sample0044_step011.npz
new file mode 100644
index 0000000..3c57534
Binary files /dev/null and b/outlook/data_correction/sample0044_step011.npz differ
diff --git a/outlook/data_correction/sample0044_step012.npz b/outlook/data_correction/sample0044_step012.npz
new file mode 100644
index 0000000..0ebd313
Binary files /dev/null and b/outlook/data_correction/sample0044_step012.npz differ
diff --git a/outlook/data_correction/sample0044_step013.npz b/outlook/data_correction/sample0044_step013.npz
new file mode 100644
index 0000000..b185507
Binary files /dev/null and b/outlook/data_correction/sample0044_step013.npz differ
diff --git a/outlook/data_correction/sample0044_step014.npz b/outlook/data_correction/sample0044_step014.npz
new file mode 100644
index 0000000..ed825c4
Binary files /dev/null and b/outlook/data_correction/sample0044_step014.npz differ
diff --git a/outlook/data_correction/sample0044_step015.npz b/outlook/data_correction/sample0044_step015.npz
new file mode 100644
index 0000000..ee9a694
Binary files /dev/null and b/outlook/data_correction/sample0044_step015.npz differ
diff --git a/outlook/data_correction/sample0044_step016.npz b/outlook/data_correction/sample0044_step016.npz
new file mode 100644
index 0000000..49d62d5
Binary files /dev/null and b/outlook/data_correction/sample0044_step016.npz differ
diff --git a/outlook/data_correction/sample0044_step017.npz b/outlook/data_correction/sample0044_step017.npz
new file mode 100644
index 0000000..005f38d
Binary files /dev/null and b/outlook/data_correction/sample0044_step017.npz differ
diff --git a/outlook/data_correction/sample0044_step018.npz b/outlook/data_correction/sample0044_step018.npz
new file mode 100644
index 0000000..0b1c969
Binary files /dev/null and b/outlook/data_correction/sample0044_step018.npz differ
diff --git a/outlook/data_correction/sample0045_step000.npz b/outlook/data_correction/sample0045_step000.npz
new file mode 100644
index 0000000..114eb16
Binary files /dev/null and b/outlook/data_correction/sample0045_step000.npz differ
diff --git a/outlook/data_correction/sample0045_step001.npz b/outlook/data_correction/sample0045_step001.npz
new file mode 100644
index 0000000..51598de
Binary files /dev/null and b/outlook/data_correction/sample0045_step001.npz differ
diff --git a/outlook/data_correction/sample0045_step002.npz b/outlook/data_correction/sample0045_step002.npz
new file mode 100644
index 0000000..98a9439
Binary files /dev/null and b/outlook/data_correction/sample0045_step002.npz differ
diff --git a/outlook/data_correction/sample0045_step003.npz b/outlook/data_correction/sample0045_step003.npz
new file mode 100644
index 0000000..42fc64e
Binary files /dev/null and b/outlook/data_correction/sample0045_step003.npz differ
diff --git a/outlook/data_correction/sample0045_step004.npz b/outlook/data_correction/sample0045_step004.npz
new file mode 100644
index 0000000..c2379c9
Binary files /dev/null and b/outlook/data_correction/sample0045_step004.npz differ
diff --git a/outlook/data_correction/sample0045_step005.npz b/outlook/data_correction/sample0045_step005.npz
new file mode 100644
index 0000000..62488c5
Binary files /dev/null and b/outlook/data_correction/sample0045_step005.npz differ
diff --git a/outlook/data_correction/sample0045_step006.npz b/outlook/data_correction/sample0045_step006.npz
new file mode 100644
index 0000000..d30612b
Binary files /dev/null and b/outlook/data_correction/sample0045_step006.npz differ
diff --git a/outlook/data_correction/sample0045_step007.npz b/outlook/data_correction/sample0045_step007.npz
new file mode 100644
index 0000000..e097e09
Binary files /dev/null and b/outlook/data_correction/sample0045_step007.npz differ
diff --git a/outlook/data_correction/sample0045_step008.npz b/outlook/data_correction/sample0045_step008.npz
new file mode 100644
index 0000000..34bb4d3
Binary files /dev/null and b/outlook/data_correction/sample0045_step008.npz differ
diff --git a/outlook/data_correction/sample0045_step009.npz b/outlook/data_correction/sample0045_step009.npz
new file mode 100644
index 0000000..dd7476a
Binary files /dev/null and b/outlook/data_correction/sample0045_step009.npz differ
diff --git a/outlook/data_correction/sample0045_step010.npz b/outlook/data_correction/sample0045_step010.npz
new file mode 100644
index 0000000..6039d4b
Binary files /dev/null and b/outlook/data_correction/sample0045_step010.npz differ
diff --git a/outlook/data_correction/sample0045_step011.npz b/outlook/data_correction/sample0045_step011.npz
new file mode 100644
index 0000000..1b245bd
Binary files /dev/null and b/outlook/data_correction/sample0045_step011.npz differ
diff --git a/outlook/data_correction/sample0045_step012.npz b/outlook/data_correction/sample0045_step012.npz
new file mode 100644
index 0000000..514e425
Binary files /dev/null and b/outlook/data_correction/sample0045_step012.npz differ
diff --git a/outlook/data_correction/sample0045_step013.npz b/outlook/data_correction/sample0045_step013.npz
new file mode 100644
index 0000000..dd980a8
Binary files /dev/null and b/outlook/data_correction/sample0045_step013.npz differ
diff --git a/outlook/data_correction/sample0045_step014.npz b/outlook/data_correction/sample0045_step014.npz
new file mode 100644
index 0000000..b391ea8
Binary files /dev/null and b/outlook/data_correction/sample0045_step014.npz differ
diff --git a/outlook/data_correction/sample0045_step015.npz b/outlook/data_correction/sample0045_step015.npz
new file mode 100644
index 0000000..5162992
Binary files /dev/null and b/outlook/data_correction/sample0045_step015.npz differ
diff --git a/outlook/data_correction/sample0045_step016.npz b/outlook/data_correction/sample0045_step016.npz
new file mode 100644
index 0000000..421da21
Binary files /dev/null and b/outlook/data_correction/sample0045_step016.npz differ
diff --git a/outlook/data_correction/sample0045_step017.npz b/outlook/data_correction/sample0045_step017.npz
new file mode 100644
index 0000000..e62f42c
Binary files /dev/null and b/outlook/data_correction/sample0045_step017.npz differ
diff --git a/outlook/data_correction/sample0045_step018.npz b/outlook/data_correction/sample0045_step018.npz
new file mode 100644
index 0000000..2943555
Binary files /dev/null and b/outlook/data_correction/sample0045_step018.npz differ
diff --git a/outlook/data_correction/sample0046_step000.npz b/outlook/data_correction/sample0046_step000.npz
new file mode 100644
index 0000000..b0143e8
Binary files /dev/null and b/outlook/data_correction/sample0046_step000.npz differ
diff --git a/outlook/data_correction/sample0046_step001.npz b/outlook/data_correction/sample0046_step001.npz
new file mode 100644
index 0000000..2993b87
Binary files /dev/null and b/outlook/data_correction/sample0046_step001.npz differ
diff --git a/outlook/data_correction/sample0046_step002.npz b/outlook/data_correction/sample0046_step002.npz
new file mode 100644
index 0000000..9bc7ce3
Binary files /dev/null and b/outlook/data_correction/sample0046_step002.npz differ
diff --git a/outlook/data_correction/sample0046_step003.npz b/outlook/data_correction/sample0046_step003.npz
new file mode 100644
index 0000000..444f142
Binary files /dev/null and b/outlook/data_correction/sample0046_step003.npz differ
diff --git a/outlook/data_correction/sample0046_step004.npz b/outlook/data_correction/sample0046_step004.npz
new file mode 100644
index 0000000..66e2b6b
Binary files /dev/null and b/outlook/data_correction/sample0046_step004.npz differ
diff --git a/outlook/data_correction/sample0046_step005.npz b/outlook/data_correction/sample0046_step005.npz
new file mode 100644
index 0000000..0b3628c
Binary files /dev/null and b/outlook/data_correction/sample0046_step005.npz differ
diff --git a/outlook/data_correction/sample0046_step006.npz b/outlook/data_correction/sample0046_step006.npz
new file mode 100644
index 0000000..3cea18d
Binary files /dev/null and b/outlook/data_correction/sample0046_step006.npz differ
diff --git a/outlook/data_correction/sample0046_step007.npz b/outlook/data_correction/sample0046_step007.npz
new file mode 100644
index 0000000..6bc70d0
Binary files /dev/null and b/outlook/data_correction/sample0046_step007.npz differ
diff --git a/outlook/data_correction/sample0046_step008.npz b/outlook/data_correction/sample0046_step008.npz
new file mode 100644
index 0000000..5ddde50
Binary files /dev/null and b/outlook/data_correction/sample0046_step008.npz differ
diff --git a/outlook/data_correction/sample0046_step009.npz b/outlook/data_correction/sample0046_step009.npz
new file mode 100644
index 0000000..116dae8
Binary files /dev/null and b/outlook/data_correction/sample0046_step009.npz differ
diff --git a/outlook/data_correction/sample0046_step010.npz b/outlook/data_correction/sample0046_step010.npz
new file mode 100644
index 0000000..6e53793
Binary files /dev/null and b/outlook/data_correction/sample0046_step010.npz differ
diff --git a/outlook/data_correction/sample0046_step011.npz b/outlook/data_correction/sample0046_step011.npz
new file mode 100644
index 0000000..c12f55e
Binary files /dev/null and b/outlook/data_correction/sample0046_step011.npz differ
diff --git a/outlook/data_correction/sample0046_step012.npz b/outlook/data_correction/sample0046_step012.npz
new file mode 100644
index 0000000..e2bf19a
Binary files /dev/null and b/outlook/data_correction/sample0046_step012.npz differ
diff --git a/outlook/data_correction/sample0046_step013.npz b/outlook/data_correction/sample0046_step013.npz
new file mode 100644
index 0000000..3d9b9f3
Binary files /dev/null and b/outlook/data_correction/sample0046_step013.npz differ
diff --git a/outlook/data_correction/sample0046_step014.npz b/outlook/data_correction/sample0046_step014.npz
new file mode 100644
index 0000000..d968257
Binary files /dev/null and b/outlook/data_correction/sample0046_step014.npz differ
diff --git a/outlook/data_correction/sample0046_step015.npz b/outlook/data_correction/sample0046_step015.npz
new file mode 100644
index 0000000..c12533e
Binary files /dev/null and b/outlook/data_correction/sample0046_step015.npz differ
diff --git a/outlook/data_correction/sample0046_step016.npz b/outlook/data_correction/sample0046_step016.npz
new file mode 100644
index 0000000..7dd2829
Binary files /dev/null and b/outlook/data_correction/sample0046_step016.npz differ
diff --git a/outlook/data_correction/sample0046_step017.npz b/outlook/data_correction/sample0046_step017.npz
new file mode 100644
index 0000000..5aef400
Binary files /dev/null and b/outlook/data_correction/sample0046_step017.npz differ
diff --git a/outlook/data_correction/sample0046_step018.npz b/outlook/data_correction/sample0046_step018.npz
new file mode 100644
index 0000000..f7b543c
Binary files /dev/null and b/outlook/data_correction/sample0046_step018.npz differ
diff --git a/outlook/data_correction/sample0047_step000.npz b/outlook/data_correction/sample0047_step000.npz
new file mode 100644
index 0000000..be04965
Binary files /dev/null and b/outlook/data_correction/sample0047_step000.npz differ
diff --git a/outlook/data_correction/sample0047_step001.npz b/outlook/data_correction/sample0047_step001.npz
new file mode 100644
index 0000000..6e0ebc5
Binary files /dev/null and b/outlook/data_correction/sample0047_step001.npz differ
diff --git a/outlook/data_correction/sample0047_step002.npz b/outlook/data_correction/sample0047_step002.npz
new file mode 100644
index 0000000..3106cd4
Binary files /dev/null and b/outlook/data_correction/sample0047_step002.npz differ
diff --git a/outlook/data_correction/sample0047_step003.npz b/outlook/data_correction/sample0047_step003.npz
new file mode 100644
index 0000000..ed5ee54
Binary files /dev/null and b/outlook/data_correction/sample0047_step003.npz differ
diff --git a/outlook/data_correction/sample0047_step004.npz b/outlook/data_correction/sample0047_step004.npz
new file mode 100644
index 0000000..028f267
Binary files /dev/null and b/outlook/data_correction/sample0047_step004.npz differ
diff --git a/outlook/data_correction/sample0047_step005.npz b/outlook/data_correction/sample0047_step005.npz
new file mode 100644
index 0000000..e2ee99e
Binary files /dev/null and b/outlook/data_correction/sample0047_step005.npz differ
diff --git a/outlook/data_correction/sample0047_step006.npz b/outlook/data_correction/sample0047_step006.npz
new file mode 100644
index 0000000..aeaf1a5
Binary files /dev/null and b/outlook/data_correction/sample0047_step006.npz differ
diff --git a/outlook/data_correction/sample0047_step007.npz b/outlook/data_correction/sample0047_step007.npz
new file mode 100644
index 0000000..ebe1886
Binary files /dev/null and b/outlook/data_correction/sample0047_step007.npz differ
diff --git a/outlook/data_correction/sample0047_step008.npz b/outlook/data_correction/sample0047_step008.npz
new file mode 100644
index 0000000..0c5ff8f
Binary files /dev/null and b/outlook/data_correction/sample0047_step008.npz differ
diff --git a/outlook/data_correction/sample0047_step009.npz b/outlook/data_correction/sample0047_step009.npz
new file mode 100644
index 0000000..fa13bb8
Binary files /dev/null and b/outlook/data_correction/sample0047_step009.npz differ
diff --git a/outlook/data_correction/sample0047_step010.npz b/outlook/data_correction/sample0047_step010.npz
new file mode 100644
index 0000000..dc50136
Binary files /dev/null and b/outlook/data_correction/sample0047_step010.npz differ
diff --git a/outlook/data_correction/sample0047_step011.npz b/outlook/data_correction/sample0047_step011.npz
new file mode 100644
index 0000000..e655c39
Binary files /dev/null and b/outlook/data_correction/sample0047_step011.npz differ
diff --git a/outlook/data_correction/sample0047_step012.npz b/outlook/data_correction/sample0047_step012.npz
new file mode 100644
index 0000000..0e5299a
Binary files /dev/null and b/outlook/data_correction/sample0047_step012.npz differ
diff --git a/outlook/data_correction/sample0047_step013.npz b/outlook/data_correction/sample0047_step013.npz
new file mode 100644
index 0000000..a84cf33
Binary files /dev/null and b/outlook/data_correction/sample0047_step013.npz differ
diff --git a/outlook/data_correction/sample0047_step014.npz b/outlook/data_correction/sample0047_step014.npz
new file mode 100644
index 0000000..1a3f04a
Binary files /dev/null and b/outlook/data_correction/sample0047_step014.npz differ
diff --git a/outlook/data_correction/sample0047_step015.npz b/outlook/data_correction/sample0047_step015.npz
new file mode 100644
index 0000000..eda273b
Binary files /dev/null and b/outlook/data_correction/sample0047_step015.npz differ
diff --git a/outlook/data_correction/sample0047_step016.npz b/outlook/data_correction/sample0047_step016.npz
new file mode 100644
index 0000000..b2f4a07
Binary files /dev/null and b/outlook/data_correction/sample0047_step016.npz differ
diff --git a/outlook/data_correction/sample0047_step017.npz b/outlook/data_correction/sample0047_step017.npz
new file mode 100644
index 0000000..31cc910
Binary files /dev/null and b/outlook/data_correction/sample0047_step017.npz differ
diff --git a/outlook/data_correction/sample0047_step018.npz b/outlook/data_correction/sample0047_step018.npz
new file mode 100644
index 0000000..694dba0
Binary files /dev/null and b/outlook/data_correction/sample0047_step018.npz differ
diff --git a/outlook/data_correction/sample0048_step000.npz b/outlook/data_correction/sample0048_step000.npz
new file mode 100644
index 0000000..ffee2d3
Binary files /dev/null and b/outlook/data_correction/sample0048_step000.npz differ
diff --git a/outlook/data_correction/sample0048_step001.npz b/outlook/data_correction/sample0048_step001.npz
new file mode 100644
index 0000000..9fe2956
Binary files /dev/null and b/outlook/data_correction/sample0048_step001.npz differ
diff --git a/outlook/data_correction/sample0048_step002.npz b/outlook/data_correction/sample0048_step002.npz
new file mode 100644
index 0000000..8e59930
Binary files /dev/null and b/outlook/data_correction/sample0048_step002.npz differ
diff --git a/outlook/data_correction/sample0048_step003.npz b/outlook/data_correction/sample0048_step003.npz
new file mode 100644
index 0000000..627f55d
Binary files /dev/null and b/outlook/data_correction/sample0048_step003.npz differ
diff --git a/outlook/data_correction/sample0048_step004.npz b/outlook/data_correction/sample0048_step004.npz
new file mode 100644
index 0000000..1d7ecfc
Binary files /dev/null and b/outlook/data_correction/sample0048_step004.npz differ
diff --git a/outlook/data_correction/sample0048_step005.npz b/outlook/data_correction/sample0048_step005.npz
new file mode 100644
index 0000000..e70a86c
Binary files /dev/null and b/outlook/data_correction/sample0048_step005.npz differ
diff --git a/outlook/data_correction/sample0048_step006.npz b/outlook/data_correction/sample0048_step006.npz
new file mode 100644
index 0000000..023126b
Binary files /dev/null and b/outlook/data_correction/sample0048_step006.npz differ
diff --git a/outlook/data_correction/sample0048_step007.npz b/outlook/data_correction/sample0048_step007.npz
new file mode 100644
index 0000000..101212d
Binary files /dev/null and b/outlook/data_correction/sample0048_step007.npz differ
diff --git a/outlook/data_correction/sample0048_step008.npz b/outlook/data_correction/sample0048_step008.npz
new file mode 100644
index 0000000..e68efa0
Binary files /dev/null and b/outlook/data_correction/sample0048_step008.npz differ
diff --git a/outlook/data_correction/sample0048_step009.npz b/outlook/data_correction/sample0048_step009.npz
new file mode 100644
index 0000000..ced530b
Binary files /dev/null and b/outlook/data_correction/sample0048_step009.npz differ
diff --git a/outlook/data_correction/sample0048_step010.npz b/outlook/data_correction/sample0048_step010.npz
new file mode 100644
index 0000000..2310762
Binary files /dev/null and b/outlook/data_correction/sample0048_step010.npz differ
diff --git a/outlook/data_correction/sample0048_step011.npz b/outlook/data_correction/sample0048_step011.npz
new file mode 100644
index 0000000..2c02b9b
Binary files /dev/null and b/outlook/data_correction/sample0048_step011.npz differ
diff --git a/outlook/data_correction/sample0048_step012.npz b/outlook/data_correction/sample0048_step012.npz
new file mode 100644
index 0000000..a4b31a7
Binary files /dev/null and b/outlook/data_correction/sample0048_step012.npz differ
diff --git a/outlook/data_correction/sample0048_step013.npz b/outlook/data_correction/sample0048_step013.npz
new file mode 100644
index 0000000..c478407
Binary files /dev/null and b/outlook/data_correction/sample0048_step013.npz differ
diff --git a/outlook/data_correction/sample0048_step014.npz b/outlook/data_correction/sample0048_step014.npz
new file mode 100644
index 0000000..6cc37ae
Binary files /dev/null and b/outlook/data_correction/sample0048_step014.npz differ
diff --git a/outlook/data_correction/sample0048_step015.npz b/outlook/data_correction/sample0048_step015.npz
new file mode 100644
index 0000000..e96779f
Binary files /dev/null and b/outlook/data_correction/sample0048_step015.npz differ
diff --git a/outlook/data_correction/sample0048_step016.npz b/outlook/data_correction/sample0048_step016.npz
new file mode 100644
index 0000000..e69cf28
Binary files /dev/null and b/outlook/data_correction/sample0048_step016.npz differ
diff --git a/outlook/data_correction/sample0048_step017.npz b/outlook/data_correction/sample0048_step017.npz
new file mode 100644
index 0000000..0b37b82
Binary files /dev/null and b/outlook/data_correction/sample0048_step017.npz differ
diff --git a/outlook/data_correction/sample0049_step000.npz b/outlook/data_correction/sample0049_step000.npz
new file mode 100644
index 0000000..db0630d
Binary files /dev/null and b/outlook/data_correction/sample0049_step000.npz differ
diff --git a/outlook/data_correction/sample0049_step001.npz b/outlook/data_correction/sample0049_step001.npz
new file mode 100644
index 0000000..7ddbcdf
Binary files /dev/null and b/outlook/data_correction/sample0049_step001.npz differ
diff --git a/outlook/data_correction/sample0049_step002.npz b/outlook/data_correction/sample0049_step002.npz
new file mode 100644
index 0000000..b7d9f00
Binary files /dev/null and b/outlook/data_correction/sample0049_step002.npz differ
diff --git a/outlook/data_correction/sample0049_step003.npz b/outlook/data_correction/sample0049_step003.npz
new file mode 100644
index 0000000..fa6fac8
Binary files /dev/null and b/outlook/data_correction/sample0049_step003.npz differ
diff --git a/outlook/data_correction/sample0049_step004.npz b/outlook/data_correction/sample0049_step004.npz
new file mode 100644
index 0000000..e6793b0
Binary files /dev/null and b/outlook/data_correction/sample0049_step004.npz differ
diff --git a/outlook/data_correction/sample0049_step005.npz b/outlook/data_correction/sample0049_step005.npz
new file mode 100644
index 0000000..13bd176
Binary files /dev/null and b/outlook/data_correction/sample0049_step005.npz differ
diff --git a/outlook/data_correction/sample0049_step006.npz b/outlook/data_correction/sample0049_step006.npz
new file mode 100644
index 0000000..d5e0204
Binary files /dev/null and b/outlook/data_correction/sample0049_step006.npz differ
diff --git a/outlook/data_correction/sample0049_step007.npz b/outlook/data_correction/sample0049_step007.npz
new file mode 100644
index 0000000..744a0dc
Binary files /dev/null and b/outlook/data_correction/sample0049_step007.npz differ
diff --git a/outlook/data_correction/sample0049_step008.npz b/outlook/data_correction/sample0049_step008.npz
new file mode 100644
index 0000000..d1869f8
Binary files /dev/null and b/outlook/data_correction/sample0049_step008.npz differ
diff --git a/outlook/data_correction/sample0049_step009.npz b/outlook/data_correction/sample0049_step009.npz
new file mode 100644
index 0000000..ed7ff7a
Binary files /dev/null and b/outlook/data_correction/sample0049_step009.npz differ
diff --git a/outlook/data_correction/sample0049_step010.npz b/outlook/data_correction/sample0049_step010.npz
new file mode 100644
index 0000000..b346cd2
Binary files /dev/null and b/outlook/data_correction/sample0049_step010.npz differ
diff --git a/outlook/data_correction/sample0049_step011.npz b/outlook/data_correction/sample0049_step011.npz
new file mode 100644
index 0000000..1153704
Binary files /dev/null and b/outlook/data_correction/sample0049_step011.npz differ
diff --git a/outlook/data_correction/sample0049_step012.npz b/outlook/data_correction/sample0049_step012.npz
new file mode 100644
index 0000000..1f87869
Binary files /dev/null and b/outlook/data_correction/sample0049_step012.npz differ
diff --git a/outlook/data_correction/sample0049_step013.npz b/outlook/data_correction/sample0049_step013.npz
new file mode 100644
index 0000000..a0f9044
Binary files /dev/null and b/outlook/data_correction/sample0049_step013.npz differ
diff --git a/outlook/data_correction/sample0049_step014.npz b/outlook/data_correction/sample0049_step014.npz
new file mode 100644
index 0000000..3de0fea
Binary files /dev/null and b/outlook/data_correction/sample0049_step014.npz differ
diff --git a/outlook/data_correction/sample0049_step015.npz b/outlook/data_correction/sample0049_step015.npz
new file mode 100644
index 0000000..8748d82
Binary files /dev/null and b/outlook/data_correction/sample0049_step015.npz differ
diff --git a/outlook/data_correction/sample0049_step016.npz b/outlook/data_correction/sample0049_step016.npz
new file mode 100644
index 0000000..c1c11c2
Binary files /dev/null and b/outlook/data_correction/sample0049_step016.npz differ
diff --git a/outlook/data_correction/sample0049_step017.npz b/outlook/data_correction/sample0049_step017.npz
new file mode 100644
index 0000000..6f81412
Binary files /dev/null and b/outlook/data_correction/sample0049_step017.npz differ
diff --git a/outlook/data_correction/sample0049_step018.npz b/outlook/data_correction/sample0049_step018.npz
new file mode 100644
index 0000000..b620192
Binary files /dev/null and b/outlook/data_correction/sample0049_step018.npz differ
diff --git a/outlook/data_correction/sample0050_step000.npz b/outlook/data_correction/sample0050_step000.npz
new file mode 100644
index 0000000..82c79fd
Binary files /dev/null and b/outlook/data_correction/sample0050_step000.npz differ
diff --git a/outlook/data_correction/sample0050_step001.npz b/outlook/data_correction/sample0050_step001.npz
new file mode 100644
index 0000000..87391ac
Binary files /dev/null and b/outlook/data_correction/sample0050_step001.npz differ
diff --git a/outlook/data_correction/sample0050_step002.npz b/outlook/data_correction/sample0050_step002.npz
new file mode 100644
index 0000000..02de379
Binary files /dev/null and b/outlook/data_correction/sample0050_step002.npz differ
diff --git a/outlook/data_correction/sample0050_step003.npz b/outlook/data_correction/sample0050_step003.npz
new file mode 100644
index 0000000..7bf6a9e
Binary files /dev/null and b/outlook/data_correction/sample0050_step003.npz differ
diff --git a/outlook/data_correction/sample0050_step004.npz b/outlook/data_correction/sample0050_step004.npz
new file mode 100644
index 0000000..446a04c
Binary files /dev/null and b/outlook/data_correction/sample0050_step004.npz differ
diff --git a/outlook/data_correction/sample0050_step005.npz b/outlook/data_correction/sample0050_step005.npz
new file mode 100644
index 0000000..8427f9d
Binary files /dev/null and b/outlook/data_correction/sample0050_step005.npz differ
diff --git a/outlook/data_correction/sample0050_step006.npz b/outlook/data_correction/sample0050_step006.npz
new file mode 100644
index 0000000..75bb8c0
Binary files /dev/null and b/outlook/data_correction/sample0050_step006.npz differ
diff --git a/outlook/data_correction/sample0050_step007.npz b/outlook/data_correction/sample0050_step007.npz
new file mode 100644
index 0000000..79dc59a
Binary files /dev/null and b/outlook/data_correction/sample0050_step007.npz differ
diff --git a/outlook/data_correction/sample0050_step008.npz b/outlook/data_correction/sample0050_step008.npz
new file mode 100644
index 0000000..44594ec
Binary files /dev/null and b/outlook/data_correction/sample0050_step008.npz differ
diff --git a/outlook/data_correction/sample0050_step009.npz b/outlook/data_correction/sample0050_step009.npz
new file mode 100644
index 0000000..de1c183
Binary files /dev/null and b/outlook/data_correction/sample0050_step009.npz differ
diff --git a/outlook/data_correction/sample0050_step010.npz b/outlook/data_correction/sample0050_step010.npz
new file mode 100644
index 0000000..7699d61
Binary files /dev/null and b/outlook/data_correction/sample0050_step010.npz differ
diff --git a/outlook/data_correction/sample0050_step011.npz b/outlook/data_correction/sample0050_step011.npz
new file mode 100644
index 0000000..5ee95fa
Binary files /dev/null and b/outlook/data_correction/sample0050_step011.npz differ
diff --git a/outlook/data_correction/sample0050_step012.npz b/outlook/data_correction/sample0050_step012.npz
new file mode 100644
index 0000000..a9b4051
Binary files /dev/null and b/outlook/data_correction/sample0050_step012.npz differ
diff --git a/outlook/data_correction/sample0050_step013.npz b/outlook/data_correction/sample0050_step013.npz
new file mode 100644
index 0000000..95a71a4
Binary files /dev/null and b/outlook/data_correction/sample0050_step013.npz differ
diff --git a/outlook/data_correction/sample0050_step014.npz b/outlook/data_correction/sample0050_step014.npz
new file mode 100644
index 0000000..65ec8f8
Binary files /dev/null and b/outlook/data_correction/sample0050_step014.npz differ
diff --git a/outlook/data_correction/sample0050_step015.npz b/outlook/data_correction/sample0050_step015.npz
new file mode 100644
index 0000000..adbf372
Binary files /dev/null and b/outlook/data_correction/sample0050_step015.npz differ
diff --git a/outlook/data_correction/sample0050_step016.npz b/outlook/data_correction/sample0050_step016.npz
new file mode 100644
index 0000000..9ac3e82
Binary files /dev/null and b/outlook/data_correction/sample0050_step016.npz differ
diff --git a/outlook/data_correction/sample0050_step017.npz b/outlook/data_correction/sample0050_step017.npz
new file mode 100644
index 0000000..b3a6ce5
Binary files /dev/null and b/outlook/data_correction/sample0050_step017.npz differ
diff --git a/outlook/data_correction/sample0050_step018.npz b/outlook/data_correction/sample0050_step018.npz
new file mode 100644
index 0000000..132bc86
Binary files /dev/null and b/outlook/data_correction/sample0050_step018.npz differ
diff --git a/outlook/data_correction/sample0051_step000.npz b/outlook/data_correction/sample0051_step000.npz
new file mode 100644
index 0000000..4d2b19f
Binary files /dev/null and b/outlook/data_correction/sample0051_step000.npz differ
diff --git a/outlook/data_correction/sample0051_step001.npz b/outlook/data_correction/sample0051_step001.npz
new file mode 100644
index 0000000..ee664cc
Binary files /dev/null and b/outlook/data_correction/sample0051_step001.npz differ
diff --git a/outlook/data_correction/sample0051_step002.npz b/outlook/data_correction/sample0051_step002.npz
new file mode 100644
index 0000000..a04610e
Binary files /dev/null and b/outlook/data_correction/sample0051_step002.npz differ
diff --git a/outlook/data_correction/sample0051_step003.npz b/outlook/data_correction/sample0051_step003.npz
new file mode 100644
index 0000000..4907a3f
Binary files /dev/null and b/outlook/data_correction/sample0051_step003.npz differ
diff --git a/outlook/data_correction/sample0051_step004.npz b/outlook/data_correction/sample0051_step004.npz
new file mode 100644
index 0000000..d203edc
Binary files /dev/null and b/outlook/data_correction/sample0051_step004.npz differ
diff --git a/outlook/data_correction/sample0051_step005.npz b/outlook/data_correction/sample0051_step005.npz
new file mode 100644
index 0000000..f1e6ffc
Binary files /dev/null and b/outlook/data_correction/sample0051_step005.npz differ
diff --git a/outlook/data_correction/sample0051_step006.npz b/outlook/data_correction/sample0051_step006.npz
new file mode 100644
index 0000000..cfce12e
Binary files /dev/null and b/outlook/data_correction/sample0051_step006.npz differ
diff --git a/outlook/data_correction/sample0051_step007.npz b/outlook/data_correction/sample0051_step007.npz
new file mode 100644
index 0000000..e0c829b
Binary files /dev/null and b/outlook/data_correction/sample0051_step007.npz differ
diff --git a/outlook/data_correction/sample0051_step008.npz b/outlook/data_correction/sample0051_step008.npz
new file mode 100644
index 0000000..6ed759f
Binary files /dev/null and b/outlook/data_correction/sample0051_step008.npz differ
diff --git a/outlook/data_correction/sample0051_step009.npz b/outlook/data_correction/sample0051_step009.npz
new file mode 100644
index 0000000..5405220
Binary files /dev/null and b/outlook/data_correction/sample0051_step009.npz differ
diff --git a/outlook/data_correction/sample0051_step010.npz b/outlook/data_correction/sample0051_step010.npz
new file mode 100644
index 0000000..4ce249e
Binary files /dev/null and b/outlook/data_correction/sample0051_step010.npz differ
diff --git a/outlook/data_correction/sample0051_step011.npz b/outlook/data_correction/sample0051_step011.npz
new file mode 100644
index 0000000..2eebfc8
Binary files /dev/null and b/outlook/data_correction/sample0051_step011.npz differ
diff --git a/outlook/data_correction/sample0051_step012.npz b/outlook/data_correction/sample0051_step012.npz
new file mode 100644
index 0000000..de6701e
Binary files /dev/null and b/outlook/data_correction/sample0051_step012.npz differ
diff --git a/outlook/data_correction/sample0051_step013.npz b/outlook/data_correction/sample0051_step013.npz
new file mode 100644
index 0000000..b875d27
Binary files /dev/null and b/outlook/data_correction/sample0051_step013.npz differ
diff --git a/outlook/data_correction/sample0051_step014.npz b/outlook/data_correction/sample0051_step014.npz
new file mode 100644
index 0000000..02fbd71
Binary files /dev/null and b/outlook/data_correction/sample0051_step014.npz differ
diff --git a/outlook/data_correction/sample0051_step015.npz b/outlook/data_correction/sample0051_step015.npz
new file mode 100644
index 0000000..5dbde13
Binary files /dev/null and b/outlook/data_correction/sample0051_step015.npz differ
diff --git a/outlook/data_correction/sample0051_step016.npz b/outlook/data_correction/sample0051_step016.npz
new file mode 100644
index 0000000..9ad88b0
Binary files /dev/null and b/outlook/data_correction/sample0051_step016.npz differ
diff --git a/outlook/data_correction/sample0051_step017.npz b/outlook/data_correction/sample0051_step017.npz
new file mode 100644
index 0000000..8b1902e
Binary files /dev/null and b/outlook/data_correction/sample0051_step017.npz differ
diff --git a/outlook/data_correction/sample0051_step018.npz b/outlook/data_correction/sample0051_step018.npz
new file mode 100644
index 0000000..aed1fdf
Binary files /dev/null and b/outlook/data_correction/sample0051_step018.npz differ
diff --git a/outlook/data_correction/sample0052_step000.npz b/outlook/data_correction/sample0052_step000.npz
new file mode 100644
index 0000000..c1aad3f
Binary files /dev/null and b/outlook/data_correction/sample0052_step000.npz differ
diff --git a/outlook/data_correction/sample0052_step001.npz b/outlook/data_correction/sample0052_step001.npz
new file mode 100644
index 0000000..fb73543
Binary files /dev/null and b/outlook/data_correction/sample0052_step001.npz differ
diff --git a/outlook/data_correction/sample0052_step002.npz b/outlook/data_correction/sample0052_step002.npz
new file mode 100644
index 0000000..c49dd12
Binary files /dev/null and b/outlook/data_correction/sample0052_step002.npz differ
diff --git a/outlook/data_correction/sample0052_step003.npz b/outlook/data_correction/sample0052_step003.npz
new file mode 100644
index 0000000..94f4591
Binary files /dev/null and b/outlook/data_correction/sample0052_step003.npz differ
diff --git a/outlook/data_correction/sample0052_step004.npz b/outlook/data_correction/sample0052_step004.npz
new file mode 100644
index 0000000..52207d6
Binary files /dev/null and b/outlook/data_correction/sample0052_step004.npz differ
diff --git a/outlook/data_correction/sample0052_step005.npz b/outlook/data_correction/sample0052_step005.npz
new file mode 100644
index 0000000..186c557
Binary files /dev/null and b/outlook/data_correction/sample0052_step005.npz differ
diff --git a/outlook/data_correction/sample0052_step006.npz b/outlook/data_correction/sample0052_step006.npz
new file mode 100644
index 0000000..2afb815
Binary files /dev/null and b/outlook/data_correction/sample0052_step006.npz differ
diff --git a/outlook/data_correction/sample0052_step007.npz b/outlook/data_correction/sample0052_step007.npz
new file mode 100644
index 0000000..cd9b221
Binary files /dev/null and b/outlook/data_correction/sample0052_step007.npz differ
diff --git a/outlook/data_correction/sample0052_step008.npz b/outlook/data_correction/sample0052_step008.npz
new file mode 100644
index 0000000..87b6537
Binary files /dev/null and b/outlook/data_correction/sample0052_step008.npz differ
diff --git a/outlook/data_correction/sample0052_step009.npz b/outlook/data_correction/sample0052_step009.npz
new file mode 100644
index 0000000..14a61ea
Binary files /dev/null and b/outlook/data_correction/sample0052_step009.npz differ
diff --git a/outlook/data_correction/sample0052_step010.npz b/outlook/data_correction/sample0052_step010.npz
new file mode 100644
index 0000000..808cba8
Binary files /dev/null and b/outlook/data_correction/sample0052_step010.npz differ
diff --git a/outlook/data_correction/sample0052_step011.npz b/outlook/data_correction/sample0052_step011.npz
new file mode 100644
index 0000000..fc5b37e
Binary files /dev/null and b/outlook/data_correction/sample0052_step011.npz differ
diff --git a/outlook/data_correction/sample0052_step012.npz b/outlook/data_correction/sample0052_step012.npz
new file mode 100644
index 0000000..edb9945
Binary files /dev/null and b/outlook/data_correction/sample0052_step012.npz differ
diff --git a/outlook/data_correction/sample0052_step013.npz b/outlook/data_correction/sample0052_step013.npz
new file mode 100644
index 0000000..fa6645c
Binary files /dev/null and b/outlook/data_correction/sample0052_step013.npz differ
diff --git a/outlook/data_correction/sample0052_step014.npz b/outlook/data_correction/sample0052_step014.npz
new file mode 100644
index 0000000..7fce7a9
Binary files /dev/null and b/outlook/data_correction/sample0052_step014.npz differ
diff --git a/outlook/data_correction/sample0052_step015.npz b/outlook/data_correction/sample0052_step015.npz
new file mode 100644
index 0000000..f521269
Binary files /dev/null and b/outlook/data_correction/sample0052_step015.npz differ
diff --git a/outlook/data_correction/sample0052_step016.npz b/outlook/data_correction/sample0052_step016.npz
new file mode 100644
index 0000000..d8fee2f
Binary files /dev/null and b/outlook/data_correction/sample0052_step016.npz differ
diff --git a/outlook/data_correction/sample0052_step017.npz b/outlook/data_correction/sample0052_step017.npz
new file mode 100644
index 0000000..18219c1
Binary files /dev/null and b/outlook/data_correction/sample0052_step017.npz differ
diff --git a/outlook/data_correction/sample0053_step000.npz b/outlook/data_correction/sample0053_step000.npz
new file mode 100644
index 0000000..b98aeca
Binary files /dev/null and b/outlook/data_correction/sample0053_step000.npz differ
diff --git a/outlook/data_correction/sample0053_step001.npz b/outlook/data_correction/sample0053_step001.npz
new file mode 100644
index 0000000..2c93ab2
Binary files /dev/null and b/outlook/data_correction/sample0053_step001.npz differ
diff --git a/outlook/data_correction/sample0053_step002.npz b/outlook/data_correction/sample0053_step002.npz
new file mode 100644
index 0000000..113a490
Binary files /dev/null and b/outlook/data_correction/sample0053_step002.npz differ
diff --git a/outlook/data_correction/sample0053_step003.npz b/outlook/data_correction/sample0053_step003.npz
new file mode 100644
index 0000000..b940e14
Binary files /dev/null and b/outlook/data_correction/sample0053_step003.npz differ
diff --git a/outlook/data_correction/sample0053_step004.npz b/outlook/data_correction/sample0053_step004.npz
new file mode 100644
index 0000000..c158e27
Binary files /dev/null and b/outlook/data_correction/sample0053_step004.npz differ
diff --git a/outlook/data_correction/sample0053_step005.npz b/outlook/data_correction/sample0053_step005.npz
new file mode 100644
index 0000000..67b1b87
Binary files /dev/null and b/outlook/data_correction/sample0053_step005.npz differ
diff --git a/outlook/data_correction/sample0053_step006.npz b/outlook/data_correction/sample0053_step006.npz
new file mode 100644
index 0000000..023549d
Binary files /dev/null and b/outlook/data_correction/sample0053_step006.npz differ
diff --git a/outlook/data_correction/sample0053_step007.npz b/outlook/data_correction/sample0053_step007.npz
new file mode 100644
index 0000000..da0c9c2
Binary files /dev/null and b/outlook/data_correction/sample0053_step007.npz differ
diff --git a/outlook/data_correction/sample0053_step008.npz b/outlook/data_correction/sample0053_step008.npz
new file mode 100644
index 0000000..0133513
Binary files /dev/null and b/outlook/data_correction/sample0053_step008.npz differ
diff --git a/outlook/data_correction/sample0053_step009.npz b/outlook/data_correction/sample0053_step009.npz
new file mode 100644
index 0000000..1e968bd
Binary files /dev/null and b/outlook/data_correction/sample0053_step009.npz differ
diff --git a/outlook/data_correction/sample0053_step010.npz b/outlook/data_correction/sample0053_step010.npz
new file mode 100644
index 0000000..7c2c4f2
Binary files /dev/null and b/outlook/data_correction/sample0053_step010.npz differ
diff --git a/outlook/data_correction/sample0053_step011.npz b/outlook/data_correction/sample0053_step011.npz
new file mode 100644
index 0000000..0d3a361
Binary files /dev/null and b/outlook/data_correction/sample0053_step011.npz differ
diff --git a/outlook/data_correction/sample0053_step012.npz b/outlook/data_correction/sample0053_step012.npz
new file mode 100644
index 0000000..9138bbd
Binary files /dev/null and b/outlook/data_correction/sample0053_step012.npz differ
diff --git a/outlook/data_correction/sample0053_step013.npz b/outlook/data_correction/sample0053_step013.npz
new file mode 100644
index 0000000..bef659b
Binary files /dev/null and b/outlook/data_correction/sample0053_step013.npz differ
diff --git a/outlook/data_correction/sample0053_step014.npz b/outlook/data_correction/sample0053_step014.npz
new file mode 100644
index 0000000..a34a8fa
Binary files /dev/null and b/outlook/data_correction/sample0053_step014.npz differ
diff --git a/outlook/data_correction/sample0053_step015.npz b/outlook/data_correction/sample0053_step015.npz
new file mode 100644
index 0000000..0566eb9
Binary files /dev/null and b/outlook/data_correction/sample0053_step015.npz differ
diff --git a/outlook/data_correction/sample0053_step016.npz b/outlook/data_correction/sample0053_step016.npz
new file mode 100644
index 0000000..cd2b558
Binary files /dev/null and b/outlook/data_correction/sample0053_step016.npz differ
diff --git a/outlook/data_correction/sample0053_step017.npz b/outlook/data_correction/sample0053_step017.npz
new file mode 100644
index 0000000..cd9e562
Binary files /dev/null and b/outlook/data_correction/sample0053_step017.npz differ
diff --git a/outlook/data_correction/sample0053_step018.npz b/outlook/data_correction/sample0053_step018.npz
new file mode 100644
index 0000000..0160eed
Binary files /dev/null and b/outlook/data_correction/sample0053_step018.npz differ
diff --git a/outlook/data_correction/sample0054_step000.npz b/outlook/data_correction/sample0054_step000.npz
new file mode 100644
index 0000000..29bc84f
Binary files /dev/null and b/outlook/data_correction/sample0054_step000.npz differ
diff --git a/outlook/data_correction/sample0054_step001.npz b/outlook/data_correction/sample0054_step001.npz
new file mode 100644
index 0000000..7f42101
Binary files /dev/null and b/outlook/data_correction/sample0054_step001.npz differ
diff --git a/outlook/data_correction/sample0054_step002.npz b/outlook/data_correction/sample0054_step002.npz
new file mode 100644
index 0000000..d817f3b
Binary files /dev/null and b/outlook/data_correction/sample0054_step002.npz differ
diff --git a/outlook/data_correction/sample0054_step003.npz b/outlook/data_correction/sample0054_step003.npz
new file mode 100644
index 0000000..ce68e59
Binary files /dev/null and b/outlook/data_correction/sample0054_step003.npz differ
diff --git a/outlook/data_correction/sample0054_step004.npz b/outlook/data_correction/sample0054_step004.npz
new file mode 100644
index 0000000..56a6ba5
Binary files /dev/null and b/outlook/data_correction/sample0054_step004.npz differ
diff --git a/outlook/data_correction/sample0054_step005.npz b/outlook/data_correction/sample0054_step005.npz
new file mode 100644
index 0000000..de3d5a1
Binary files /dev/null and b/outlook/data_correction/sample0054_step005.npz differ
diff --git a/outlook/data_correction/sample0054_step006.npz b/outlook/data_correction/sample0054_step006.npz
new file mode 100644
index 0000000..c5d6731
Binary files /dev/null and b/outlook/data_correction/sample0054_step006.npz differ
diff --git a/outlook/data_correction/sample0054_step007.npz b/outlook/data_correction/sample0054_step007.npz
new file mode 100644
index 0000000..e3eeac0
Binary files /dev/null and b/outlook/data_correction/sample0054_step007.npz differ
diff --git a/outlook/data_correction/sample0054_step008.npz b/outlook/data_correction/sample0054_step008.npz
new file mode 100644
index 0000000..f0a4c17
Binary files /dev/null and b/outlook/data_correction/sample0054_step008.npz differ
diff --git a/outlook/data_correction/sample0054_step009.npz b/outlook/data_correction/sample0054_step009.npz
new file mode 100644
index 0000000..3e67e0f
Binary files /dev/null and b/outlook/data_correction/sample0054_step009.npz differ
diff --git a/outlook/data_correction/sample0054_step010.npz b/outlook/data_correction/sample0054_step010.npz
new file mode 100644
index 0000000..beab284
Binary files /dev/null and b/outlook/data_correction/sample0054_step010.npz differ
diff --git a/outlook/data_correction/sample0054_step011.npz b/outlook/data_correction/sample0054_step011.npz
new file mode 100644
index 0000000..4be0b79
Binary files /dev/null and b/outlook/data_correction/sample0054_step011.npz differ
diff --git a/outlook/data_correction/sample0054_step012.npz b/outlook/data_correction/sample0054_step012.npz
new file mode 100644
index 0000000..f2de0d2
Binary files /dev/null and b/outlook/data_correction/sample0054_step012.npz differ
diff --git a/outlook/data_correction/sample0054_step013.npz b/outlook/data_correction/sample0054_step013.npz
new file mode 100644
index 0000000..bbb5b84
Binary files /dev/null and b/outlook/data_correction/sample0054_step013.npz differ
diff --git a/outlook/data_correction/sample0054_step014.npz b/outlook/data_correction/sample0054_step014.npz
new file mode 100644
index 0000000..81a8ac3
Binary files /dev/null and b/outlook/data_correction/sample0054_step014.npz differ
diff --git a/outlook/data_correction/sample0054_step015.npz b/outlook/data_correction/sample0054_step015.npz
new file mode 100644
index 0000000..a3a38bb
Binary files /dev/null and b/outlook/data_correction/sample0054_step015.npz differ
diff --git a/outlook/data_correction/sample0054_step016.npz b/outlook/data_correction/sample0054_step016.npz
new file mode 100644
index 0000000..5829d89
Binary files /dev/null and b/outlook/data_correction/sample0054_step016.npz differ
diff --git a/outlook/data_correction/sample0054_step017.npz b/outlook/data_correction/sample0054_step017.npz
new file mode 100644
index 0000000..3864b06
Binary files /dev/null and b/outlook/data_correction/sample0054_step017.npz differ
diff --git a/outlook/data_correction/sample0055_step000.npz b/outlook/data_correction/sample0055_step000.npz
new file mode 100644
index 0000000..025cc32
Binary files /dev/null and b/outlook/data_correction/sample0055_step000.npz differ
diff --git a/outlook/data_correction/sample0055_step001.npz b/outlook/data_correction/sample0055_step001.npz
new file mode 100644
index 0000000..8af83ae
Binary files /dev/null and b/outlook/data_correction/sample0055_step001.npz differ
diff --git a/outlook/data_correction/sample0055_step002.npz b/outlook/data_correction/sample0055_step002.npz
new file mode 100644
index 0000000..a4d57f8
Binary files /dev/null and b/outlook/data_correction/sample0055_step002.npz differ
diff --git a/outlook/data_correction/sample0055_step003.npz b/outlook/data_correction/sample0055_step003.npz
new file mode 100644
index 0000000..6881abc
Binary files /dev/null and b/outlook/data_correction/sample0055_step003.npz differ
diff --git a/outlook/data_correction/sample0055_step004.npz b/outlook/data_correction/sample0055_step004.npz
new file mode 100644
index 0000000..d5920c3
Binary files /dev/null and b/outlook/data_correction/sample0055_step004.npz differ
diff --git a/outlook/data_correction/sample0055_step005.npz b/outlook/data_correction/sample0055_step005.npz
new file mode 100644
index 0000000..60a529e
Binary files /dev/null and b/outlook/data_correction/sample0055_step005.npz differ
diff --git a/outlook/data_correction/sample0055_step006.npz b/outlook/data_correction/sample0055_step006.npz
new file mode 100644
index 0000000..7ad9039
Binary files /dev/null and b/outlook/data_correction/sample0055_step006.npz differ
diff --git a/outlook/data_correction/sample0055_step007.npz b/outlook/data_correction/sample0055_step007.npz
new file mode 100644
index 0000000..d61e123
Binary files /dev/null and b/outlook/data_correction/sample0055_step007.npz differ
diff --git a/outlook/data_correction/sample0055_step008.npz b/outlook/data_correction/sample0055_step008.npz
new file mode 100644
index 0000000..9cbed67
Binary files /dev/null and b/outlook/data_correction/sample0055_step008.npz differ
diff --git a/outlook/data_correction/sample0055_step009.npz b/outlook/data_correction/sample0055_step009.npz
new file mode 100644
index 0000000..d3c9854
Binary files /dev/null and b/outlook/data_correction/sample0055_step009.npz differ
diff --git a/outlook/data_correction/sample0055_step010.npz b/outlook/data_correction/sample0055_step010.npz
new file mode 100644
index 0000000..34b13fd
Binary files /dev/null and b/outlook/data_correction/sample0055_step010.npz differ
diff --git a/outlook/data_correction/sample0055_step011.npz b/outlook/data_correction/sample0055_step011.npz
new file mode 100644
index 0000000..b1e8a56
Binary files /dev/null and b/outlook/data_correction/sample0055_step011.npz differ
diff --git a/outlook/data_correction/sample0055_step012.npz b/outlook/data_correction/sample0055_step012.npz
new file mode 100644
index 0000000..6d95ddc
Binary files /dev/null and b/outlook/data_correction/sample0055_step012.npz differ
diff --git a/outlook/data_correction/sample0055_step013.npz b/outlook/data_correction/sample0055_step013.npz
new file mode 100644
index 0000000..80c59d2
Binary files /dev/null and b/outlook/data_correction/sample0055_step013.npz differ
diff --git a/outlook/data_correction/sample0055_step014.npz b/outlook/data_correction/sample0055_step014.npz
new file mode 100644
index 0000000..4b5f2ff
Binary files /dev/null and b/outlook/data_correction/sample0055_step014.npz differ
diff --git a/outlook/data_correction/sample0055_step015.npz b/outlook/data_correction/sample0055_step015.npz
new file mode 100644
index 0000000..3d1be5c
Binary files /dev/null and b/outlook/data_correction/sample0055_step015.npz differ
diff --git a/outlook/data_correction/sample0055_step016.npz b/outlook/data_correction/sample0055_step016.npz
new file mode 100644
index 0000000..5353703
Binary files /dev/null and b/outlook/data_correction/sample0055_step016.npz differ
diff --git a/outlook/data_correction/sample0055_step017.npz b/outlook/data_correction/sample0055_step017.npz
new file mode 100644
index 0000000..a9f71ba
Binary files /dev/null and b/outlook/data_correction/sample0055_step017.npz differ
diff --git a/outlook/data_correction/sample0056_step000.npz b/outlook/data_correction/sample0056_step000.npz
new file mode 100644
index 0000000..42d2131
Binary files /dev/null and b/outlook/data_correction/sample0056_step000.npz differ
diff --git a/outlook/data_correction/sample0056_step001.npz b/outlook/data_correction/sample0056_step001.npz
new file mode 100644
index 0000000..058712c
Binary files /dev/null and b/outlook/data_correction/sample0056_step001.npz differ
diff --git a/outlook/data_correction/sample0056_step002.npz b/outlook/data_correction/sample0056_step002.npz
new file mode 100644
index 0000000..fd1b4ec
Binary files /dev/null and b/outlook/data_correction/sample0056_step002.npz differ
diff --git a/outlook/data_correction/sample0056_step003.npz b/outlook/data_correction/sample0056_step003.npz
new file mode 100644
index 0000000..b5cb57b
Binary files /dev/null and b/outlook/data_correction/sample0056_step003.npz differ
diff --git a/outlook/data_correction/sample0056_step004.npz b/outlook/data_correction/sample0056_step004.npz
new file mode 100644
index 0000000..2eceb76
Binary files /dev/null and b/outlook/data_correction/sample0056_step004.npz differ
diff --git a/outlook/data_correction/sample0056_step005.npz b/outlook/data_correction/sample0056_step005.npz
new file mode 100644
index 0000000..122ec7a
Binary files /dev/null and b/outlook/data_correction/sample0056_step005.npz differ
diff --git a/outlook/data_correction/sample0056_step006.npz b/outlook/data_correction/sample0056_step006.npz
new file mode 100644
index 0000000..098f23f
Binary files /dev/null and b/outlook/data_correction/sample0056_step006.npz differ
diff --git a/outlook/data_correction/sample0056_step007.npz b/outlook/data_correction/sample0056_step007.npz
new file mode 100644
index 0000000..ef12ffb
Binary files /dev/null and b/outlook/data_correction/sample0056_step007.npz differ
diff --git a/outlook/data_correction/sample0056_step008.npz b/outlook/data_correction/sample0056_step008.npz
new file mode 100644
index 0000000..1c7b877
Binary files /dev/null and b/outlook/data_correction/sample0056_step008.npz differ
diff --git a/outlook/data_correction/sample0056_step009.npz b/outlook/data_correction/sample0056_step009.npz
new file mode 100644
index 0000000..acaa42a
Binary files /dev/null and b/outlook/data_correction/sample0056_step009.npz differ
diff --git a/outlook/data_correction/sample0056_step010.npz b/outlook/data_correction/sample0056_step010.npz
new file mode 100644
index 0000000..aa267dd
Binary files /dev/null and b/outlook/data_correction/sample0056_step010.npz differ
diff --git a/outlook/data_correction/sample0056_step011.npz b/outlook/data_correction/sample0056_step011.npz
new file mode 100644
index 0000000..11069e7
Binary files /dev/null and b/outlook/data_correction/sample0056_step011.npz differ
diff --git a/outlook/data_correction/sample0056_step012.npz b/outlook/data_correction/sample0056_step012.npz
new file mode 100644
index 0000000..a56c150
Binary files /dev/null and b/outlook/data_correction/sample0056_step012.npz differ
diff --git a/outlook/data_correction/sample0056_step013.npz b/outlook/data_correction/sample0056_step013.npz
new file mode 100644
index 0000000..5a13ab3
Binary files /dev/null and b/outlook/data_correction/sample0056_step013.npz differ
diff --git a/outlook/data_correction/sample0056_step014.npz b/outlook/data_correction/sample0056_step014.npz
new file mode 100644
index 0000000..573fec5
Binary files /dev/null and b/outlook/data_correction/sample0056_step014.npz differ
diff --git a/outlook/data_correction/sample0056_step015.npz b/outlook/data_correction/sample0056_step015.npz
new file mode 100644
index 0000000..16a3247
Binary files /dev/null and b/outlook/data_correction/sample0056_step015.npz differ
diff --git a/outlook/data_correction/sample0056_step016.npz b/outlook/data_correction/sample0056_step016.npz
new file mode 100644
index 0000000..0c6140d
Binary files /dev/null and b/outlook/data_correction/sample0056_step016.npz differ
diff --git a/outlook/data_correction/sample0056_step017.npz b/outlook/data_correction/sample0056_step017.npz
new file mode 100644
index 0000000..101648b
Binary files /dev/null and b/outlook/data_correction/sample0056_step017.npz differ
diff --git a/outlook/data_correction/sample0056_step018.npz b/outlook/data_correction/sample0056_step018.npz
new file mode 100644
index 0000000..fc08519
Binary files /dev/null and b/outlook/data_correction/sample0056_step018.npz differ
diff --git a/outlook/data_correction/sample0057_step000.npz b/outlook/data_correction/sample0057_step000.npz
new file mode 100644
index 0000000..0ca3700
Binary files /dev/null and b/outlook/data_correction/sample0057_step000.npz differ
diff --git a/outlook/data_correction/sample0057_step001.npz b/outlook/data_correction/sample0057_step001.npz
new file mode 100644
index 0000000..3d21399
Binary files /dev/null and b/outlook/data_correction/sample0057_step001.npz differ
diff --git a/outlook/data_correction/sample0057_step002.npz b/outlook/data_correction/sample0057_step002.npz
new file mode 100644
index 0000000..797a1c8
Binary files /dev/null and b/outlook/data_correction/sample0057_step002.npz differ
diff --git a/outlook/data_correction/sample0057_step003.npz b/outlook/data_correction/sample0057_step003.npz
new file mode 100644
index 0000000..dccf384
Binary files /dev/null and b/outlook/data_correction/sample0057_step003.npz differ
diff --git a/outlook/data_correction/sample0057_step004.npz b/outlook/data_correction/sample0057_step004.npz
new file mode 100644
index 0000000..3ca6184
Binary files /dev/null and b/outlook/data_correction/sample0057_step004.npz differ
diff --git a/outlook/data_correction/sample0057_step005.npz b/outlook/data_correction/sample0057_step005.npz
new file mode 100644
index 0000000..9bb3e0f
Binary files /dev/null and b/outlook/data_correction/sample0057_step005.npz differ
diff --git a/outlook/data_correction/sample0057_step006.npz b/outlook/data_correction/sample0057_step006.npz
new file mode 100644
index 0000000..6ab9b42
Binary files /dev/null and b/outlook/data_correction/sample0057_step006.npz differ
diff --git a/outlook/data_correction/sample0057_step007.npz b/outlook/data_correction/sample0057_step007.npz
new file mode 100644
index 0000000..e4cc05b
Binary files /dev/null and b/outlook/data_correction/sample0057_step007.npz differ
diff --git a/outlook/data_correction/sample0057_step008.npz b/outlook/data_correction/sample0057_step008.npz
new file mode 100644
index 0000000..0bf2bb5
Binary files /dev/null and b/outlook/data_correction/sample0057_step008.npz differ
diff --git a/outlook/data_correction/sample0057_step009.npz b/outlook/data_correction/sample0057_step009.npz
new file mode 100644
index 0000000..9987f49
Binary files /dev/null and b/outlook/data_correction/sample0057_step009.npz differ
diff --git a/outlook/data_correction/sample0057_step010.npz b/outlook/data_correction/sample0057_step010.npz
new file mode 100644
index 0000000..23695eb
Binary files /dev/null and b/outlook/data_correction/sample0057_step010.npz differ
diff --git a/outlook/data_correction/sample0057_step011.npz b/outlook/data_correction/sample0057_step011.npz
new file mode 100644
index 0000000..3500425
Binary files /dev/null and b/outlook/data_correction/sample0057_step011.npz differ
diff --git a/outlook/data_correction/sample0057_step012.npz b/outlook/data_correction/sample0057_step012.npz
new file mode 100644
index 0000000..9b6e31e
Binary files /dev/null and b/outlook/data_correction/sample0057_step012.npz differ
diff --git a/outlook/data_correction/sample0057_step013.npz b/outlook/data_correction/sample0057_step013.npz
new file mode 100644
index 0000000..5eccfaf
Binary files /dev/null and b/outlook/data_correction/sample0057_step013.npz differ
diff --git a/outlook/data_correction/sample0057_step014.npz b/outlook/data_correction/sample0057_step014.npz
new file mode 100644
index 0000000..8b99916
Binary files /dev/null and b/outlook/data_correction/sample0057_step014.npz differ
diff --git a/outlook/data_correction/sample0057_step015.npz b/outlook/data_correction/sample0057_step015.npz
new file mode 100644
index 0000000..7d73350
Binary files /dev/null and b/outlook/data_correction/sample0057_step015.npz differ
diff --git a/outlook/data_correction/sample0057_step016.npz b/outlook/data_correction/sample0057_step016.npz
new file mode 100644
index 0000000..003facc
Binary files /dev/null and b/outlook/data_correction/sample0057_step016.npz differ
diff --git a/outlook/data_correction/sample0057_step017.npz b/outlook/data_correction/sample0057_step017.npz
new file mode 100644
index 0000000..d20888c
Binary files /dev/null and b/outlook/data_correction/sample0057_step017.npz differ
diff --git a/outlook/data_correction/sample0058_step000.npz b/outlook/data_correction/sample0058_step000.npz
new file mode 100644
index 0000000..ce9bf76
Binary files /dev/null and b/outlook/data_correction/sample0058_step000.npz differ
diff --git a/outlook/data_correction/sample0058_step001.npz b/outlook/data_correction/sample0058_step001.npz
new file mode 100644
index 0000000..a096cef
Binary files /dev/null and b/outlook/data_correction/sample0058_step001.npz differ
diff --git a/outlook/data_correction/sample0058_step002.npz b/outlook/data_correction/sample0058_step002.npz
new file mode 100644
index 0000000..0a342d9
Binary files /dev/null and b/outlook/data_correction/sample0058_step002.npz differ
diff --git a/outlook/data_correction/sample0058_step003.npz b/outlook/data_correction/sample0058_step003.npz
new file mode 100644
index 0000000..1b87b0f
Binary files /dev/null and b/outlook/data_correction/sample0058_step003.npz differ
diff --git a/outlook/data_correction/sample0058_step004.npz b/outlook/data_correction/sample0058_step004.npz
new file mode 100644
index 0000000..65f85a9
Binary files /dev/null and b/outlook/data_correction/sample0058_step004.npz differ
diff --git a/outlook/data_correction/sample0058_step005.npz b/outlook/data_correction/sample0058_step005.npz
new file mode 100644
index 0000000..24050fe
Binary files /dev/null and b/outlook/data_correction/sample0058_step005.npz differ
diff --git a/outlook/data_correction/sample0058_step006.npz b/outlook/data_correction/sample0058_step006.npz
new file mode 100644
index 0000000..e06cbe3
Binary files /dev/null and b/outlook/data_correction/sample0058_step006.npz differ
diff --git a/outlook/data_correction/sample0058_step007.npz b/outlook/data_correction/sample0058_step007.npz
new file mode 100644
index 0000000..22295ab
Binary files /dev/null and b/outlook/data_correction/sample0058_step007.npz differ
diff --git a/outlook/data_correction/sample0058_step008.npz b/outlook/data_correction/sample0058_step008.npz
new file mode 100644
index 0000000..43923ba
Binary files /dev/null and b/outlook/data_correction/sample0058_step008.npz differ
diff --git a/outlook/data_correction/sample0058_step009.npz b/outlook/data_correction/sample0058_step009.npz
new file mode 100644
index 0000000..fde7701
Binary files /dev/null and b/outlook/data_correction/sample0058_step009.npz differ
diff --git a/outlook/data_correction/sample0058_step010.npz b/outlook/data_correction/sample0058_step010.npz
new file mode 100644
index 0000000..f1f8159
Binary files /dev/null and b/outlook/data_correction/sample0058_step010.npz differ
diff --git a/outlook/data_correction/sample0058_step011.npz b/outlook/data_correction/sample0058_step011.npz
new file mode 100644
index 0000000..9cba27f
Binary files /dev/null and b/outlook/data_correction/sample0058_step011.npz differ
diff --git a/outlook/data_correction/sample0058_step012.npz b/outlook/data_correction/sample0058_step012.npz
new file mode 100644
index 0000000..8585729
Binary files /dev/null and b/outlook/data_correction/sample0058_step012.npz differ
diff --git a/outlook/data_correction/sample0058_step013.npz b/outlook/data_correction/sample0058_step013.npz
new file mode 100644
index 0000000..7a6f667
Binary files /dev/null and b/outlook/data_correction/sample0058_step013.npz differ
diff --git a/outlook/data_correction/sample0058_step014.npz b/outlook/data_correction/sample0058_step014.npz
new file mode 100644
index 0000000..5ad133c
Binary files /dev/null and b/outlook/data_correction/sample0058_step014.npz differ
diff --git a/outlook/data_correction/sample0058_step015.npz b/outlook/data_correction/sample0058_step015.npz
new file mode 100644
index 0000000..e8f7dad
Binary files /dev/null and b/outlook/data_correction/sample0058_step015.npz differ
diff --git a/outlook/data_correction/sample0058_step016.npz b/outlook/data_correction/sample0058_step016.npz
new file mode 100644
index 0000000..8efec3b
Binary files /dev/null and b/outlook/data_correction/sample0058_step016.npz differ
diff --git a/outlook/data_correction/sample0058_step017.npz b/outlook/data_correction/sample0058_step017.npz
new file mode 100644
index 0000000..66dafdb
Binary files /dev/null and b/outlook/data_correction/sample0058_step017.npz differ
diff --git a/outlook/data_correction/sample0058_step018.npz b/outlook/data_correction/sample0058_step018.npz
new file mode 100644
index 0000000..d957b97
Binary files /dev/null and b/outlook/data_correction/sample0058_step018.npz differ
diff --git a/outlook/data_correction/sample0059_step000.npz b/outlook/data_correction/sample0059_step000.npz
new file mode 100644
index 0000000..545c0bd
Binary files /dev/null and b/outlook/data_correction/sample0059_step000.npz differ
diff --git a/outlook/data_correction/sample0059_step001.npz b/outlook/data_correction/sample0059_step001.npz
new file mode 100644
index 0000000..c9e5a0a
Binary files /dev/null and b/outlook/data_correction/sample0059_step001.npz differ
diff --git a/outlook/data_correction/sample0059_step002.npz b/outlook/data_correction/sample0059_step002.npz
new file mode 100644
index 0000000..34402f6
Binary files /dev/null and b/outlook/data_correction/sample0059_step002.npz differ
diff --git a/outlook/data_correction/sample0059_step003.npz b/outlook/data_correction/sample0059_step003.npz
new file mode 100644
index 0000000..dad8436
Binary files /dev/null and b/outlook/data_correction/sample0059_step003.npz differ
diff --git a/outlook/data_correction/sample0059_step004.npz b/outlook/data_correction/sample0059_step004.npz
new file mode 100644
index 0000000..15ab0d0
Binary files /dev/null and b/outlook/data_correction/sample0059_step004.npz differ
diff --git a/outlook/data_correction/sample0059_step005.npz b/outlook/data_correction/sample0059_step005.npz
new file mode 100644
index 0000000..5cc4a24
Binary files /dev/null and b/outlook/data_correction/sample0059_step005.npz differ
diff --git a/outlook/data_correction/sample0059_step006.npz b/outlook/data_correction/sample0059_step006.npz
new file mode 100644
index 0000000..d92954c
Binary files /dev/null and b/outlook/data_correction/sample0059_step006.npz differ
diff --git a/outlook/data_correction/sample0059_step007.npz b/outlook/data_correction/sample0059_step007.npz
new file mode 100644
index 0000000..b6cdb18
Binary files /dev/null and b/outlook/data_correction/sample0059_step007.npz differ
diff --git a/outlook/data_correction/sample0059_step008.npz b/outlook/data_correction/sample0059_step008.npz
new file mode 100644
index 0000000..b8dc3f5
Binary files /dev/null and b/outlook/data_correction/sample0059_step008.npz differ
diff --git a/outlook/data_correction/sample0059_step009.npz b/outlook/data_correction/sample0059_step009.npz
new file mode 100644
index 0000000..1f97740
Binary files /dev/null and b/outlook/data_correction/sample0059_step009.npz differ
diff --git a/outlook/data_correction/sample0059_step010.npz b/outlook/data_correction/sample0059_step010.npz
new file mode 100644
index 0000000..d8b71c9
Binary files /dev/null and b/outlook/data_correction/sample0059_step010.npz differ
diff --git a/outlook/data_correction/sample0059_step011.npz b/outlook/data_correction/sample0059_step011.npz
new file mode 100644
index 0000000..26e8c23
Binary files /dev/null and b/outlook/data_correction/sample0059_step011.npz differ
diff --git a/outlook/data_correction/sample0059_step012.npz b/outlook/data_correction/sample0059_step012.npz
new file mode 100644
index 0000000..6d4950b
Binary files /dev/null and b/outlook/data_correction/sample0059_step012.npz differ
diff --git a/outlook/data_correction/sample0059_step013.npz b/outlook/data_correction/sample0059_step013.npz
new file mode 100644
index 0000000..991eeb1
Binary files /dev/null and b/outlook/data_correction/sample0059_step013.npz differ
diff --git a/outlook/data_correction/sample0059_step014.npz b/outlook/data_correction/sample0059_step014.npz
new file mode 100644
index 0000000..5d0fd29
Binary files /dev/null and b/outlook/data_correction/sample0059_step014.npz differ
diff --git a/outlook/data_correction/sample0059_step015.npz b/outlook/data_correction/sample0059_step015.npz
new file mode 100644
index 0000000..7c94edc
Binary files /dev/null and b/outlook/data_correction/sample0059_step015.npz differ
diff --git a/outlook/data_correction/sample0059_step016.npz b/outlook/data_correction/sample0059_step016.npz
new file mode 100644
index 0000000..b8c655f
Binary files /dev/null and b/outlook/data_correction/sample0059_step016.npz differ
diff --git a/outlook/data_correction/sample0059_step017.npz b/outlook/data_correction/sample0059_step017.npz
new file mode 100644
index 0000000..faed907
Binary files /dev/null and b/outlook/data_correction/sample0059_step017.npz differ
diff --git a/outlook/data_correction/sample0059_step018.npz b/outlook/data_correction/sample0059_step018.npz
new file mode 100644
index 0000000..c72130a
Binary files /dev/null and b/outlook/data_correction/sample0059_step018.npz differ
diff --git a/outlook/data_correction/sample0059_step019.npz b/outlook/data_correction/sample0059_step019.npz
new file mode 100644
index 0000000..88ff22a
Binary files /dev/null and b/outlook/data_correction/sample0059_step019.npz differ
diff --git a/outlook/data_correction/sample0060_step000.npz b/outlook/data_correction/sample0060_step000.npz
new file mode 100644
index 0000000..1131687
Binary files /dev/null and b/outlook/data_correction/sample0060_step000.npz differ
diff --git a/outlook/data_correction/sample0060_step001.npz b/outlook/data_correction/sample0060_step001.npz
new file mode 100644
index 0000000..9823def
Binary files /dev/null and b/outlook/data_correction/sample0060_step001.npz differ
diff --git a/outlook/data_correction/sample0060_step002.npz b/outlook/data_correction/sample0060_step002.npz
new file mode 100644
index 0000000..f3288b7
Binary files /dev/null and b/outlook/data_correction/sample0060_step002.npz differ
diff --git a/outlook/data_correction/sample0060_step003.npz b/outlook/data_correction/sample0060_step003.npz
new file mode 100644
index 0000000..2fc5269
Binary files /dev/null and b/outlook/data_correction/sample0060_step003.npz differ
diff --git a/outlook/data_correction/sample0060_step004.npz b/outlook/data_correction/sample0060_step004.npz
new file mode 100644
index 0000000..bd76899
Binary files /dev/null and b/outlook/data_correction/sample0060_step004.npz differ
diff --git a/outlook/data_correction/sample0060_step005.npz b/outlook/data_correction/sample0060_step005.npz
new file mode 100644
index 0000000..8982a3f
Binary files /dev/null and b/outlook/data_correction/sample0060_step005.npz differ
diff --git a/outlook/data_correction/sample0060_step006.npz b/outlook/data_correction/sample0060_step006.npz
new file mode 100644
index 0000000..1481ff6
Binary files /dev/null and b/outlook/data_correction/sample0060_step006.npz differ
diff --git a/outlook/data_correction/sample0060_step007.npz b/outlook/data_correction/sample0060_step007.npz
new file mode 100644
index 0000000..ccddac2
Binary files /dev/null and b/outlook/data_correction/sample0060_step007.npz differ
diff --git a/outlook/data_correction/sample0060_step008.npz b/outlook/data_correction/sample0060_step008.npz
new file mode 100644
index 0000000..f4df70d
Binary files /dev/null and b/outlook/data_correction/sample0060_step008.npz differ
diff --git a/outlook/data_correction/sample0060_step009.npz b/outlook/data_correction/sample0060_step009.npz
new file mode 100644
index 0000000..274cfc9
Binary files /dev/null and b/outlook/data_correction/sample0060_step009.npz differ
diff --git a/outlook/data_correction/sample0060_step010.npz b/outlook/data_correction/sample0060_step010.npz
new file mode 100644
index 0000000..3b836d1
Binary files /dev/null and b/outlook/data_correction/sample0060_step010.npz differ
diff --git a/outlook/data_correction/sample0060_step011.npz b/outlook/data_correction/sample0060_step011.npz
new file mode 100644
index 0000000..39d7f9b
Binary files /dev/null and b/outlook/data_correction/sample0060_step011.npz differ
diff --git a/outlook/data_correction/sample0060_step012.npz b/outlook/data_correction/sample0060_step012.npz
new file mode 100644
index 0000000..da1ec59
Binary files /dev/null and b/outlook/data_correction/sample0060_step012.npz differ
diff --git a/outlook/data_correction/sample0060_step013.npz b/outlook/data_correction/sample0060_step013.npz
new file mode 100644
index 0000000..578a857
Binary files /dev/null and b/outlook/data_correction/sample0060_step013.npz differ
diff --git a/outlook/data_correction/sample0060_step014.npz b/outlook/data_correction/sample0060_step014.npz
new file mode 100644
index 0000000..fdac5d0
Binary files /dev/null and b/outlook/data_correction/sample0060_step014.npz differ
diff --git a/outlook/data_correction/sample0060_step015.npz b/outlook/data_correction/sample0060_step015.npz
new file mode 100644
index 0000000..a9b89ca
Binary files /dev/null and b/outlook/data_correction/sample0060_step015.npz differ
diff --git a/outlook/data_correction/sample0060_step016.npz b/outlook/data_correction/sample0060_step016.npz
new file mode 100644
index 0000000..ba8766e
Binary files /dev/null and b/outlook/data_correction/sample0060_step016.npz differ
diff --git a/outlook/data_correction/sample0060_step017.npz b/outlook/data_correction/sample0060_step017.npz
new file mode 100644
index 0000000..465e5f2
Binary files /dev/null and b/outlook/data_correction/sample0060_step017.npz differ
diff --git a/outlook/data_correction/sample0061_step000.npz b/outlook/data_correction/sample0061_step000.npz
new file mode 100644
index 0000000..148eab8
Binary files /dev/null and b/outlook/data_correction/sample0061_step000.npz differ
diff --git a/outlook/data_correction/sample0061_step001.npz b/outlook/data_correction/sample0061_step001.npz
new file mode 100644
index 0000000..340cfb6
Binary files /dev/null and b/outlook/data_correction/sample0061_step001.npz differ
diff --git a/outlook/data_correction/sample0061_step002.npz b/outlook/data_correction/sample0061_step002.npz
new file mode 100644
index 0000000..4b1cdf7
Binary files /dev/null and b/outlook/data_correction/sample0061_step002.npz differ
diff --git a/outlook/data_correction/sample0061_step003.npz b/outlook/data_correction/sample0061_step003.npz
new file mode 100644
index 0000000..2e33e09
Binary files /dev/null and b/outlook/data_correction/sample0061_step003.npz differ
diff --git a/outlook/data_correction/sample0061_step004.npz b/outlook/data_correction/sample0061_step004.npz
new file mode 100644
index 0000000..c9171c1
Binary files /dev/null and b/outlook/data_correction/sample0061_step004.npz differ
diff --git a/outlook/data_correction/sample0061_step005.npz b/outlook/data_correction/sample0061_step005.npz
new file mode 100644
index 0000000..29d220f
Binary files /dev/null and b/outlook/data_correction/sample0061_step005.npz differ
diff --git a/outlook/data_correction/sample0061_step006.npz b/outlook/data_correction/sample0061_step006.npz
new file mode 100644
index 0000000..da35094
Binary files /dev/null and b/outlook/data_correction/sample0061_step006.npz differ
diff --git a/outlook/data_correction/sample0061_step007.npz b/outlook/data_correction/sample0061_step007.npz
new file mode 100644
index 0000000..15a4388
Binary files /dev/null and b/outlook/data_correction/sample0061_step007.npz differ
diff --git a/outlook/data_correction/sample0061_step008.npz b/outlook/data_correction/sample0061_step008.npz
new file mode 100644
index 0000000..90d822b
Binary files /dev/null and b/outlook/data_correction/sample0061_step008.npz differ
diff --git a/outlook/data_correction/sample0061_step009.npz b/outlook/data_correction/sample0061_step009.npz
new file mode 100644
index 0000000..72b6ddf
Binary files /dev/null and b/outlook/data_correction/sample0061_step009.npz differ
diff --git a/outlook/data_correction/sample0061_step010.npz b/outlook/data_correction/sample0061_step010.npz
new file mode 100644
index 0000000..374e978
Binary files /dev/null and b/outlook/data_correction/sample0061_step010.npz differ
diff --git a/outlook/data_correction/sample0061_step011.npz b/outlook/data_correction/sample0061_step011.npz
new file mode 100644
index 0000000..01adc27
Binary files /dev/null and b/outlook/data_correction/sample0061_step011.npz differ
diff --git a/outlook/data_correction/sample0061_step012.npz b/outlook/data_correction/sample0061_step012.npz
new file mode 100644
index 0000000..058701d
Binary files /dev/null and b/outlook/data_correction/sample0061_step012.npz differ
diff --git a/outlook/data_correction/sample0061_step013.npz b/outlook/data_correction/sample0061_step013.npz
new file mode 100644
index 0000000..6719f1e
Binary files /dev/null and b/outlook/data_correction/sample0061_step013.npz differ
diff --git a/outlook/data_correction/sample0061_step014.npz b/outlook/data_correction/sample0061_step014.npz
new file mode 100644
index 0000000..1f22eb8
Binary files /dev/null and b/outlook/data_correction/sample0061_step014.npz differ
diff --git a/outlook/data_correction/sample0061_step015.npz b/outlook/data_correction/sample0061_step015.npz
new file mode 100644
index 0000000..609cae1
Binary files /dev/null and b/outlook/data_correction/sample0061_step015.npz differ
diff --git a/outlook/data_correction/sample0061_step016.npz b/outlook/data_correction/sample0061_step016.npz
new file mode 100644
index 0000000..8613c39
Binary files /dev/null and b/outlook/data_correction/sample0061_step016.npz differ
diff --git a/outlook/data_correction/sample0061_step017.npz b/outlook/data_correction/sample0061_step017.npz
new file mode 100644
index 0000000..5a5aa00
Binary files /dev/null and b/outlook/data_correction/sample0061_step017.npz differ
diff --git a/outlook/data_correction/sample0061_step018.npz b/outlook/data_correction/sample0061_step018.npz
new file mode 100644
index 0000000..7bbb96e
Binary files /dev/null and b/outlook/data_correction/sample0061_step018.npz differ
diff --git a/outlook/data_correction/sample0062_step000.npz b/outlook/data_correction/sample0062_step000.npz
new file mode 100644
index 0000000..ca90445
Binary files /dev/null and b/outlook/data_correction/sample0062_step000.npz differ
diff --git a/outlook/data_correction/sample0062_step001.npz b/outlook/data_correction/sample0062_step001.npz
new file mode 100644
index 0000000..24ec812
Binary files /dev/null and b/outlook/data_correction/sample0062_step001.npz differ
diff --git a/outlook/data_correction/sample0062_step002.npz b/outlook/data_correction/sample0062_step002.npz
new file mode 100644
index 0000000..229e364
Binary files /dev/null and b/outlook/data_correction/sample0062_step002.npz differ
diff --git a/outlook/data_correction/sample0062_step003.npz b/outlook/data_correction/sample0062_step003.npz
new file mode 100644
index 0000000..e5006b1
Binary files /dev/null and b/outlook/data_correction/sample0062_step003.npz differ
diff --git a/outlook/data_correction/sample0062_step004.npz b/outlook/data_correction/sample0062_step004.npz
new file mode 100644
index 0000000..bd6943f
Binary files /dev/null and b/outlook/data_correction/sample0062_step004.npz differ
diff --git a/outlook/data_correction/sample0062_step005.npz b/outlook/data_correction/sample0062_step005.npz
new file mode 100644
index 0000000..4d02d6c
Binary files /dev/null and b/outlook/data_correction/sample0062_step005.npz differ
diff --git a/outlook/data_correction/sample0062_step006.npz b/outlook/data_correction/sample0062_step006.npz
new file mode 100644
index 0000000..afc5855
Binary files /dev/null and b/outlook/data_correction/sample0062_step006.npz differ
diff --git a/outlook/data_correction/sample0062_step007.npz b/outlook/data_correction/sample0062_step007.npz
new file mode 100644
index 0000000..4a77b4b
Binary files /dev/null and b/outlook/data_correction/sample0062_step007.npz differ
diff --git a/outlook/data_correction/sample0062_step008.npz b/outlook/data_correction/sample0062_step008.npz
new file mode 100644
index 0000000..ab6c875
Binary files /dev/null and b/outlook/data_correction/sample0062_step008.npz differ
diff --git a/outlook/data_correction/sample0062_step009.npz b/outlook/data_correction/sample0062_step009.npz
new file mode 100644
index 0000000..981cad0
Binary files /dev/null and b/outlook/data_correction/sample0062_step009.npz differ
diff --git a/outlook/data_correction/sample0062_step010.npz b/outlook/data_correction/sample0062_step010.npz
new file mode 100644
index 0000000..ee2d877
Binary files /dev/null and b/outlook/data_correction/sample0062_step010.npz differ
diff --git a/outlook/data_correction/sample0062_step011.npz b/outlook/data_correction/sample0062_step011.npz
new file mode 100644
index 0000000..5d6f994
Binary files /dev/null and b/outlook/data_correction/sample0062_step011.npz differ
diff --git a/outlook/data_correction/sample0062_step012.npz b/outlook/data_correction/sample0062_step012.npz
new file mode 100644
index 0000000..429e9a2
Binary files /dev/null and b/outlook/data_correction/sample0062_step012.npz differ
diff --git a/outlook/data_correction/sample0062_step013.npz b/outlook/data_correction/sample0062_step013.npz
new file mode 100644
index 0000000..881d4b5
Binary files /dev/null and b/outlook/data_correction/sample0062_step013.npz differ
diff --git a/outlook/data_correction/sample0062_step014.npz b/outlook/data_correction/sample0062_step014.npz
new file mode 100644
index 0000000..5def531
Binary files /dev/null and b/outlook/data_correction/sample0062_step014.npz differ
diff --git a/outlook/data_correction/sample0062_step015.npz b/outlook/data_correction/sample0062_step015.npz
new file mode 100644
index 0000000..a07ee7c
Binary files /dev/null and b/outlook/data_correction/sample0062_step015.npz differ
diff --git a/outlook/data_correction/sample0062_step016.npz b/outlook/data_correction/sample0062_step016.npz
new file mode 100644
index 0000000..eb8a95c
Binary files /dev/null and b/outlook/data_correction/sample0062_step016.npz differ
diff --git a/outlook/data_correction/sample0062_step017.npz b/outlook/data_correction/sample0062_step017.npz
new file mode 100644
index 0000000..2363fa6
Binary files /dev/null and b/outlook/data_correction/sample0062_step017.npz differ
diff --git a/outlook/data_correction/sample0062_step018.npz b/outlook/data_correction/sample0062_step018.npz
new file mode 100644
index 0000000..7e823c9
Binary files /dev/null and b/outlook/data_correction/sample0062_step018.npz differ
diff --git a/outlook/data_correction/sample0063_step000.npz b/outlook/data_correction/sample0063_step000.npz
new file mode 100644
index 0000000..9e9fc83
Binary files /dev/null and b/outlook/data_correction/sample0063_step000.npz differ
diff --git a/outlook/data_correction/sample0063_step001.npz b/outlook/data_correction/sample0063_step001.npz
new file mode 100644
index 0000000..f9759b2
Binary files /dev/null and b/outlook/data_correction/sample0063_step001.npz differ
diff --git a/outlook/data_correction/sample0063_step002.npz b/outlook/data_correction/sample0063_step002.npz
new file mode 100644
index 0000000..e5231f7
Binary files /dev/null and b/outlook/data_correction/sample0063_step002.npz differ
diff --git a/outlook/data_correction/sample0063_step003.npz b/outlook/data_correction/sample0063_step003.npz
new file mode 100644
index 0000000..7acd76c
Binary files /dev/null and b/outlook/data_correction/sample0063_step003.npz differ
diff --git a/outlook/data_correction/sample0063_step004.npz b/outlook/data_correction/sample0063_step004.npz
new file mode 100644
index 0000000..4e571d2
Binary files /dev/null and b/outlook/data_correction/sample0063_step004.npz differ
diff --git a/outlook/data_correction/sample0063_step005.npz b/outlook/data_correction/sample0063_step005.npz
new file mode 100644
index 0000000..10a185b
Binary files /dev/null and b/outlook/data_correction/sample0063_step005.npz differ
diff --git a/outlook/data_correction/sample0063_step006.npz b/outlook/data_correction/sample0063_step006.npz
new file mode 100644
index 0000000..efc13a7
Binary files /dev/null and b/outlook/data_correction/sample0063_step006.npz differ
diff --git a/outlook/data_correction/sample0063_step007.npz b/outlook/data_correction/sample0063_step007.npz
new file mode 100644
index 0000000..6960358
Binary files /dev/null and b/outlook/data_correction/sample0063_step007.npz differ
diff --git a/outlook/data_correction/sample0063_step008.npz b/outlook/data_correction/sample0063_step008.npz
new file mode 100644
index 0000000..940e2b8
Binary files /dev/null and b/outlook/data_correction/sample0063_step008.npz differ
diff --git a/outlook/data_correction/sample0063_step009.npz b/outlook/data_correction/sample0063_step009.npz
new file mode 100644
index 0000000..69ca1fb
Binary files /dev/null and b/outlook/data_correction/sample0063_step009.npz differ
diff --git a/outlook/data_correction/sample0063_step010.npz b/outlook/data_correction/sample0063_step010.npz
new file mode 100644
index 0000000..e3184b9
Binary files /dev/null and b/outlook/data_correction/sample0063_step010.npz differ
diff --git a/outlook/data_correction/sample0063_step011.npz b/outlook/data_correction/sample0063_step011.npz
new file mode 100644
index 0000000..7748e15
Binary files /dev/null and b/outlook/data_correction/sample0063_step011.npz differ
diff --git a/outlook/data_correction/sample0063_step012.npz b/outlook/data_correction/sample0063_step012.npz
new file mode 100644
index 0000000..c8e953a
Binary files /dev/null and b/outlook/data_correction/sample0063_step012.npz differ
diff --git a/outlook/data_correction/sample0063_step013.npz b/outlook/data_correction/sample0063_step013.npz
new file mode 100644
index 0000000..6f1a4e1
Binary files /dev/null and b/outlook/data_correction/sample0063_step013.npz differ
diff --git a/outlook/data_correction/sample0063_step014.npz b/outlook/data_correction/sample0063_step014.npz
new file mode 100644
index 0000000..58bf2e8
Binary files /dev/null and b/outlook/data_correction/sample0063_step014.npz differ
diff --git a/outlook/data_correction/sample0063_step015.npz b/outlook/data_correction/sample0063_step015.npz
new file mode 100644
index 0000000..c6438db
Binary files /dev/null and b/outlook/data_correction/sample0063_step015.npz differ
diff --git a/outlook/data_correction/sample0063_step016.npz b/outlook/data_correction/sample0063_step016.npz
new file mode 100644
index 0000000..5d70c1c
Binary files /dev/null and b/outlook/data_correction/sample0063_step016.npz differ
diff --git a/outlook/data_correction/sample0063_step017.npz b/outlook/data_correction/sample0063_step017.npz
new file mode 100644
index 0000000..6630a27
Binary files /dev/null and b/outlook/data_correction/sample0063_step017.npz differ
diff --git a/outlook/data_correction/sample0063_step018.npz b/outlook/data_correction/sample0063_step018.npz
new file mode 100644
index 0000000..84e4498
Binary files /dev/null and b/outlook/data_correction/sample0063_step018.npz differ
diff --git a/outlook/data_correction/sample0064_step000.npz b/outlook/data_correction/sample0064_step000.npz
new file mode 100644
index 0000000..80e076a
Binary files /dev/null and b/outlook/data_correction/sample0064_step000.npz differ
diff --git a/outlook/data_correction/sample0064_step001.npz b/outlook/data_correction/sample0064_step001.npz
new file mode 100644
index 0000000..9e78318
Binary files /dev/null and b/outlook/data_correction/sample0064_step001.npz differ
diff --git a/outlook/data_correction/sample0064_step002.npz b/outlook/data_correction/sample0064_step002.npz
new file mode 100644
index 0000000..00da4fb
Binary files /dev/null and b/outlook/data_correction/sample0064_step002.npz differ
diff --git a/outlook/data_correction/sample0064_step003.npz b/outlook/data_correction/sample0064_step003.npz
new file mode 100644
index 0000000..d8acf0b
Binary files /dev/null and b/outlook/data_correction/sample0064_step003.npz differ
diff --git a/outlook/data_correction/sample0064_step004.npz b/outlook/data_correction/sample0064_step004.npz
new file mode 100644
index 0000000..7600496
Binary files /dev/null and b/outlook/data_correction/sample0064_step004.npz differ
diff --git a/outlook/data_correction/sample0064_step005.npz b/outlook/data_correction/sample0064_step005.npz
new file mode 100644
index 0000000..9866128
Binary files /dev/null and b/outlook/data_correction/sample0064_step005.npz differ
diff --git a/outlook/data_correction/sample0064_step006.npz b/outlook/data_correction/sample0064_step006.npz
new file mode 100644
index 0000000..cbb9d5c
Binary files /dev/null and b/outlook/data_correction/sample0064_step006.npz differ
diff --git a/outlook/data_correction/sample0064_step007.npz b/outlook/data_correction/sample0064_step007.npz
new file mode 100644
index 0000000..ddbd260
Binary files /dev/null and b/outlook/data_correction/sample0064_step007.npz differ
diff --git a/outlook/data_correction/sample0064_step008.npz b/outlook/data_correction/sample0064_step008.npz
new file mode 100644
index 0000000..db54517
Binary files /dev/null and b/outlook/data_correction/sample0064_step008.npz differ
diff --git a/outlook/data_correction/sample0064_step009.npz b/outlook/data_correction/sample0064_step009.npz
new file mode 100644
index 0000000..c379a3c
Binary files /dev/null and b/outlook/data_correction/sample0064_step009.npz differ
diff --git a/outlook/data_correction/sample0064_step010.npz b/outlook/data_correction/sample0064_step010.npz
new file mode 100644
index 0000000..41feac7
Binary files /dev/null and b/outlook/data_correction/sample0064_step010.npz differ
diff --git a/outlook/data_correction/sample0064_step011.npz b/outlook/data_correction/sample0064_step011.npz
new file mode 100644
index 0000000..f11cf74
Binary files /dev/null and b/outlook/data_correction/sample0064_step011.npz differ
diff --git a/outlook/data_correction/sample0064_step012.npz b/outlook/data_correction/sample0064_step012.npz
new file mode 100644
index 0000000..b358416
Binary files /dev/null and b/outlook/data_correction/sample0064_step012.npz differ
diff --git a/outlook/data_correction/sample0064_step013.npz b/outlook/data_correction/sample0064_step013.npz
new file mode 100644
index 0000000..e9d452a
Binary files /dev/null and b/outlook/data_correction/sample0064_step013.npz differ
diff --git a/outlook/data_correction/sample0064_step014.npz b/outlook/data_correction/sample0064_step014.npz
new file mode 100644
index 0000000..396b538
Binary files /dev/null and b/outlook/data_correction/sample0064_step014.npz differ
diff --git a/outlook/data_correction/sample0064_step015.npz b/outlook/data_correction/sample0064_step015.npz
new file mode 100644
index 0000000..efd351f
Binary files /dev/null and b/outlook/data_correction/sample0064_step015.npz differ
diff --git a/outlook/data_correction/sample0064_step016.npz b/outlook/data_correction/sample0064_step016.npz
new file mode 100644
index 0000000..c5bc0c7
Binary files /dev/null and b/outlook/data_correction/sample0064_step016.npz differ
diff --git a/outlook/data_correction/sample0064_step017.npz b/outlook/data_correction/sample0064_step017.npz
new file mode 100644
index 0000000..807fbb7
Binary files /dev/null and b/outlook/data_correction/sample0064_step017.npz differ
diff --git a/outlook/data_correction/sample0064_step018.npz b/outlook/data_correction/sample0064_step018.npz
new file mode 100644
index 0000000..e8f4951
Binary files /dev/null and b/outlook/data_correction/sample0064_step018.npz differ
diff --git a/outlook/data_correction/sample0065_step000.npz b/outlook/data_correction/sample0065_step000.npz
new file mode 100644
index 0000000..36c334e
Binary files /dev/null and b/outlook/data_correction/sample0065_step000.npz differ
diff --git a/outlook/data_correction/sample0065_step001.npz b/outlook/data_correction/sample0065_step001.npz
new file mode 100644
index 0000000..e8ea350
Binary files /dev/null and b/outlook/data_correction/sample0065_step001.npz differ
diff --git a/outlook/data_correction/sample0065_step002.npz b/outlook/data_correction/sample0065_step002.npz
new file mode 100644
index 0000000..64fa2db
Binary files /dev/null and b/outlook/data_correction/sample0065_step002.npz differ
diff --git a/outlook/data_correction/sample0065_step003.npz b/outlook/data_correction/sample0065_step003.npz
new file mode 100644
index 0000000..253b483
Binary files /dev/null and b/outlook/data_correction/sample0065_step003.npz differ
diff --git a/outlook/data_correction/sample0065_step004.npz b/outlook/data_correction/sample0065_step004.npz
new file mode 100644
index 0000000..8f95795
Binary files /dev/null and b/outlook/data_correction/sample0065_step004.npz differ
diff --git a/outlook/data_correction/sample0065_step005.npz b/outlook/data_correction/sample0065_step005.npz
new file mode 100644
index 0000000..09d42bb
Binary files /dev/null and b/outlook/data_correction/sample0065_step005.npz differ
diff --git a/outlook/data_correction/sample0065_step006.npz b/outlook/data_correction/sample0065_step006.npz
new file mode 100644
index 0000000..c5433b1
Binary files /dev/null and b/outlook/data_correction/sample0065_step006.npz differ
diff --git a/outlook/data_correction/sample0065_step007.npz b/outlook/data_correction/sample0065_step007.npz
new file mode 100644
index 0000000..4d4e13e
Binary files /dev/null and b/outlook/data_correction/sample0065_step007.npz differ
diff --git a/outlook/data_correction/sample0065_step008.npz b/outlook/data_correction/sample0065_step008.npz
new file mode 100644
index 0000000..18937cc
Binary files /dev/null and b/outlook/data_correction/sample0065_step008.npz differ
diff --git a/outlook/data_correction/sample0065_step009.npz b/outlook/data_correction/sample0065_step009.npz
new file mode 100644
index 0000000..2529bfe
Binary files /dev/null and b/outlook/data_correction/sample0065_step009.npz differ
diff --git a/outlook/data_correction/sample0065_step010.npz b/outlook/data_correction/sample0065_step010.npz
new file mode 100644
index 0000000..1f15f03
Binary files /dev/null and b/outlook/data_correction/sample0065_step010.npz differ
diff --git a/outlook/data_correction/sample0065_step011.npz b/outlook/data_correction/sample0065_step011.npz
new file mode 100644
index 0000000..de69671
Binary files /dev/null and b/outlook/data_correction/sample0065_step011.npz differ
diff --git a/outlook/data_correction/sample0065_step012.npz b/outlook/data_correction/sample0065_step012.npz
new file mode 100644
index 0000000..300d5c9
Binary files /dev/null and b/outlook/data_correction/sample0065_step012.npz differ
diff --git a/outlook/data_correction/sample0065_step013.npz b/outlook/data_correction/sample0065_step013.npz
new file mode 100644
index 0000000..78ac8e0
Binary files /dev/null and b/outlook/data_correction/sample0065_step013.npz differ
diff --git a/outlook/data_correction/sample0065_step014.npz b/outlook/data_correction/sample0065_step014.npz
new file mode 100644
index 0000000..2b6bf0a
Binary files /dev/null and b/outlook/data_correction/sample0065_step014.npz differ
diff --git a/outlook/data_correction/sample0065_step015.npz b/outlook/data_correction/sample0065_step015.npz
new file mode 100644
index 0000000..87499a1
Binary files /dev/null and b/outlook/data_correction/sample0065_step015.npz differ
diff --git a/outlook/data_correction/sample0065_step016.npz b/outlook/data_correction/sample0065_step016.npz
new file mode 100644
index 0000000..3f3ff14
Binary files /dev/null and b/outlook/data_correction/sample0065_step016.npz differ
diff --git a/outlook/data_correction/sample0065_step017.npz b/outlook/data_correction/sample0065_step017.npz
new file mode 100644
index 0000000..2f2e7f0
Binary files /dev/null and b/outlook/data_correction/sample0065_step017.npz differ
diff --git a/outlook/data_correction/sample0065_step018.npz b/outlook/data_correction/sample0065_step018.npz
new file mode 100644
index 0000000..35d1159
Binary files /dev/null and b/outlook/data_correction/sample0065_step018.npz differ
diff --git a/outlook/data_correction/sample0066_step000.npz b/outlook/data_correction/sample0066_step000.npz
new file mode 100644
index 0000000..7889753
Binary files /dev/null and b/outlook/data_correction/sample0066_step000.npz differ
diff --git a/outlook/data_correction/sample0066_step001.npz b/outlook/data_correction/sample0066_step001.npz
new file mode 100644
index 0000000..b917cfb
Binary files /dev/null and b/outlook/data_correction/sample0066_step001.npz differ
diff --git a/outlook/data_correction/sample0066_step002.npz b/outlook/data_correction/sample0066_step002.npz
new file mode 100644
index 0000000..67235ee
Binary files /dev/null and b/outlook/data_correction/sample0066_step002.npz differ
diff --git a/outlook/data_correction/sample0066_step003.npz b/outlook/data_correction/sample0066_step003.npz
new file mode 100644
index 0000000..368b7d4
Binary files /dev/null and b/outlook/data_correction/sample0066_step003.npz differ
diff --git a/outlook/data_correction/sample0066_step004.npz b/outlook/data_correction/sample0066_step004.npz
new file mode 100644
index 0000000..dea7bee
Binary files /dev/null and b/outlook/data_correction/sample0066_step004.npz differ
diff --git a/outlook/data_correction/sample0066_step005.npz b/outlook/data_correction/sample0066_step005.npz
new file mode 100644
index 0000000..a121ebe
Binary files /dev/null and b/outlook/data_correction/sample0066_step005.npz differ
diff --git a/outlook/data_correction/sample0066_step006.npz b/outlook/data_correction/sample0066_step006.npz
new file mode 100644
index 0000000..82707e5
Binary files /dev/null and b/outlook/data_correction/sample0066_step006.npz differ
diff --git a/outlook/data_correction/sample0066_step007.npz b/outlook/data_correction/sample0066_step007.npz
new file mode 100644
index 0000000..688528b
Binary files /dev/null and b/outlook/data_correction/sample0066_step007.npz differ
diff --git a/outlook/data_correction/sample0066_step008.npz b/outlook/data_correction/sample0066_step008.npz
new file mode 100644
index 0000000..f199364
Binary files /dev/null and b/outlook/data_correction/sample0066_step008.npz differ
diff --git a/outlook/data_correction/sample0066_step009.npz b/outlook/data_correction/sample0066_step009.npz
new file mode 100644
index 0000000..694596a
Binary files /dev/null and b/outlook/data_correction/sample0066_step009.npz differ
diff --git a/outlook/data_correction/sample0066_step010.npz b/outlook/data_correction/sample0066_step010.npz
new file mode 100644
index 0000000..ffe71f0
Binary files /dev/null and b/outlook/data_correction/sample0066_step010.npz differ
diff --git a/outlook/data_correction/sample0066_step011.npz b/outlook/data_correction/sample0066_step011.npz
new file mode 100644
index 0000000..dead8e9
Binary files /dev/null and b/outlook/data_correction/sample0066_step011.npz differ
diff --git a/outlook/data_correction/sample0066_step012.npz b/outlook/data_correction/sample0066_step012.npz
new file mode 100644
index 0000000..00f1650
Binary files /dev/null and b/outlook/data_correction/sample0066_step012.npz differ
diff --git a/outlook/data_correction/sample0066_step013.npz b/outlook/data_correction/sample0066_step013.npz
new file mode 100644
index 0000000..18e2069
Binary files /dev/null and b/outlook/data_correction/sample0066_step013.npz differ
diff --git a/outlook/data_correction/sample0066_step014.npz b/outlook/data_correction/sample0066_step014.npz
new file mode 100644
index 0000000..9189b9a
Binary files /dev/null and b/outlook/data_correction/sample0066_step014.npz differ
diff --git a/outlook/data_correction/sample0066_step015.npz b/outlook/data_correction/sample0066_step015.npz
new file mode 100644
index 0000000..4838aea
Binary files /dev/null and b/outlook/data_correction/sample0066_step015.npz differ
diff --git a/outlook/data_correction/sample0066_step016.npz b/outlook/data_correction/sample0066_step016.npz
new file mode 100644
index 0000000..ed2bbff
Binary files /dev/null and b/outlook/data_correction/sample0066_step016.npz differ
diff --git a/outlook/data_correction/sample0066_step017.npz b/outlook/data_correction/sample0066_step017.npz
new file mode 100644
index 0000000..78de78f
Binary files /dev/null and b/outlook/data_correction/sample0066_step017.npz differ
diff --git a/outlook/data_correction/sample0066_step018.npz b/outlook/data_correction/sample0066_step018.npz
new file mode 100644
index 0000000..1bb0c8d
Binary files /dev/null and b/outlook/data_correction/sample0066_step018.npz differ
diff --git a/outlook/data_correction/sample0067_step000.npz b/outlook/data_correction/sample0067_step000.npz
new file mode 100644
index 0000000..eb3bb0a
Binary files /dev/null and b/outlook/data_correction/sample0067_step000.npz differ
diff --git a/outlook/data_correction/sample0067_step001.npz b/outlook/data_correction/sample0067_step001.npz
new file mode 100644
index 0000000..10aac42
Binary files /dev/null and b/outlook/data_correction/sample0067_step001.npz differ
diff --git a/outlook/data_correction/sample0067_step002.npz b/outlook/data_correction/sample0067_step002.npz
new file mode 100644
index 0000000..eb7a462
Binary files /dev/null and b/outlook/data_correction/sample0067_step002.npz differ
diff --git a/outlook/data_correction/sample0067_step003.npz b/outlook/data_correction/sample0067_step003.npz
new file mode 100644
index 0000000..d6de8b2
Binary files /dev/null and b/outlook/data_correction/sample0067_step003.npz differ
diff --git a/outlook/data_correction/sample0067_step004.npz b/outlook/data_correction/sample0067_step004.npz
new file mode 100644
index 0000000..1d4bdf8
Binary files /dev/null and b/outlook/data_correction/sample0067_step004.npz differ
diff --git a/outlook/data_correction/sample0067_step005.npz b/outlook/data_correction/sample0067_step005.npz
new file mode 100644
index 0000000..be4c314
Binary files /dev/null and b/outlook/data_correction/sample0067_step005.npz differ
diff --git a/outlook/data_correction/sample0067_step006.npz b/outlook/data_correction/sample0067_step006.npz
new file mode 100644
index 0000000..5e60c6a
Binary files /dev/null and b/outlook/data_correction/sample0067_step006.npz differ
diff --git a/outlook/data_correction/sample0067_step007.npz b/outlook/data_correction/sample0067_step007.npz
new file mode 100644
index 0000000..4758693
Binary files /dev/null and b/outlook/data_correction/sample0067_step007.npz differ
diff --git a/outlook/data_correction/sample0067_step008.npz b/outlook/data_correction/sample0067_step008.npz
new file mode 100644
index 0000000..fde2996
Binary files /dev/null and b/outlook/data_correction/sample0067_step008.npz differ
diff --git a/outlook/data_correction/sample0067_step009.npz b/outlook/data_correction/sample0067_step009.npz
new file mode 100644
index 0000000..fbc0419
Binary files /dev/null and b/outlook/data_correction/sample0067_step009.npz differ
diff --git a/outlook/data_correction/sample0067_step010.npz b/outlook/data_correction/sample0067_step010.npz
new file mode 100644
index 0000000..de8d1c5
Binary files /dev/null and b/outlook/data_correction/sample0067_step010.npz differ
diff --git a/outlook/data_correction/sample0067_step011.npz b/outlook/data_correction/sample0067_step011.npz
new file mode 100644
index 0000000..7f36711
Binary files /dev/null and b/outlook/data_correction/sample0067_step011.npz differ
diff --git a/outlook/data_correction/sample0067_step012.npz b/outlook/data_correction/sample0067_step012.npz
new file mode 100644
index 0000000..d103aa8
Binary files /dev/null and b/outlook/data_correction/sample0067_step012.npz differ
diff --git a/outlook/data_correction/sample0067_step013.npz b/outlook/data_correction/sample0067_step013.npz
new file mode 100644
index 0000000..fd96c82
Binary files /dev/null and b/outlook/data_correction/sample0067_step013.npz differ
diff --git a/outlook/data_correction/sample0067_step014.npz b/outlook/data_correction/sample0067_step014.npz
new file mode 100644
index 0000000..8c7b202
Binary files /dev/null and b/outlook/data_correction/sample0067_step014.npz differ
diff --git a/outlook/data_correction/sample0067_step015.npz b/outlook/data_correction/sample0067_step015.npz
new file mode 100644
index 0000000..8dcf949
Binary files /dev/null and b/outlook/data_correction/sample0067_step015.npz differ
diff --git a/outlook/data_correction/sample0067_step016.npz b/outlook/data_correction/sample0067_step016.npz
new file mode 100644
index 0000000..5b07c35
Binary files /dev/null and b/outlook/data_correction/sample0067_step016.npz differ
diff --git a/outlook/data_correction/sample0067_step017.npz b/outlook/data_correction/sample0067_step017.npz
new file mode 100644
index 0000000..f47f322
Binary files /dev/null and b/outlook/data_correction/sample0067_step017.npz differ
diff --git a/outlook/data_correction/sample0067_step018.npz b/outlook/data_correction/sample0067_step018.npz
new file mode 100644
index 0000000..d6173c5
Binary files /dev/null and b/outlook/data_correction/sample0067_step018.npz differ
diff --git a/outlook/data_correction/sample0068_step000.npz b/outlook/data_correction/sample0068_step000.npz
new file mode 100644
index 0000000..556d6a0
Binary files /dev/null and b/outlook/data_correction/sample0068_step000.npz differ
diff --git a/outlook/data_correction/sample0068_step001.npz b/outlook/data_correction/sample0068_step001.npz
new file mode 100644
index 0000000..66a9a6e
Binary files /dev/null and b/outlook/data_correction/sample0068_step001.npz differ
diff --git a/outlook/data_correction/sample0068_step002.npz b/outlook/data_correction/sample0068_step002.npz
new file mode 100644
index 0000000..690c282
Binary files /dev/null and b/outlook/data_correction/sample0068_step002.npz differ
diff --git a/outlook/data_correction/sample0068_step003.npz b/outlook/data_correction/sample0068_step003.npz
new file mode 100644
index 0000000..487176c
Binary files /dev/null and b/outlook/data_correction/sample0068_step003.npz differ
diff --git a/outlook/data_correction/sample0068_step004.npz b/outlook/data_correction/sample0068_step004.npz
new file mode 100644
index 0000000..746f7a2
Binary files /dev/null and b/outlook/data_correction/sample0068_step004.npz differ
diff --git a/outlook/data_correction/sample0068_step005.npz b/outlook/data_correction/sample0068_step005.npz
new file mode 100644
index 0000000..e357e40
Binary files /dev/null and b/outlook/data_correction/sample0068_step005.npz differ
diff --git a/outlook/data_correction/sample0068_step006.npz b/outlook/data_correction/sample0068_step006.npz
new file mode 100644
index 0000000..58521aa
Binary files /dev/null and b/outlook/data_correction/sample0068_step006.npz differ
diff --git a/outlook/data_correction/sample0068_step007.npz b/outlook/data_correction/sample0068_step007.npz
new file mode 100644
index 0000000..67a9e26
Binary files /dev/null and b/outlook/data_correction/sample0068_step007.npz differ
diff --git a/outlook/data_correction/sample0068_step008.npz b/outlook/data_correction/sample0068_step008.npz
new file mode 100644
index 0000000..c397054
Binary files /dev/null and b/outlook/data_correction/sample0068_step008.npz differ
diff --git a/outlook/data_correction/sample0068_step009.npz b/outlook/data_correction/sample0068_step009.npz
new file mode 100644
index 0000000..ee81782
Binary files /dev/null and b/outlook/data_correction/sample0068_step009.npz differ
diff --git a/outlook/data_correction/sample0068_step010.npz b/outlook/data_correction/sample0068_step010.npz
new file mode 100644
index 0000000..3ddee3c
Binary files /dev/null and b/outlook/data_correction/sample0068_step010.npz differ
diff --git a/outlook/data_correction/sample0068_step011.npz b/outlook/data_correction/sample0068_step011.npz
new file mode 100644
index 0000000..3a18c23
Binary files /dev/null and b/outlook/data_correction/sample0068_step011.npz differ
diff --git a/outlook/data_correction/sample0068_step012.npz b/outlook/data_correction/sample0068_step012.npz
new file mode 100644
index 0000000..53700ea
Binary files /dev/null and b/outlook/data_correction/sample0068_step012.npz differ
diff --git a/outlook/data_correction/sample0068_step013.npz b/outlook/data_correction/sample0068_step013.npz
new file mode 100644
index 0000000..502f67f
Binary files /dev/null and b/outlook/data_correction/sample0068_step013.npz differ
diff --git a/outlook/data_correction/sample0068_step014.npz b/outlook/data_correction/sample0068_step014.npz
new file mode 100644
index 0000000..841dd5d
Binary files /dev/null and b/outlook/data_correction/sample0068_step014.npz differ
diff --git a/outlook/data_correction/sample0068_step015.npz b/outlook/data_correction/sample0068_step015.npz
new file mode 100644
index 0000000..476139f
Binary files /dev/null and b/outlook/data_correction/sample0068_step015.npz differ
diff --git a/outlook/data_correction/sample0068_step016.npz b/outlook/data_correction/sample0068_step016.npz
new file mode 100644
index 0000000..5f12cbc
Binary files /dev/null and b/outlook/data_correction/sample0068_step016.npz differ
diff --git a/outlook/data_correction/sample0068_step017.npz b/outlook/data_correction/sample0068_step017.npz
new file mode 100644
index 0000000..8baa0c6
Binary files /dev/null and b/outlook/data_correction/sample0068_step017.npz differ
diff --git a/outlook/data_correction/sample0068_step018.npz b/outlook/data_correction/sample0068_step018.npz
new file mode 100644
index 0000000..5f4a65b
Binary files /dev/null and b/outlook/data_correction/sample0068_step018.npz differ
diff --git a/outlook/data_correction/sample0069_step000.npz b/outlook/data_correction/sample0069_step000.npz
new file mode 100644
index 0000000..37b4d6e
Binary files /dev/null and b/outlook/data_correction/sample0069_step000.npz differ
diff --git a/outlook/data_correction/sample0069_step001.npz b/outlook/data_correction/sample0069_step001.npz
new file mode 100644
index 0000000..0ad6e39
Binary files /dev/null and b/outlook/data_correction/sample0069_step001.npz differ
diff --git a/outlook/data_correction/sample0069_step002.npz b/outlook/data_correction/sample0069_step002.npz
new file mode 100644
index 0000000..2e93486
Binary files /dev/null and b/outlook/data_correction/sample0069_step002.npz differ
diff --git a/outlook/data_correction/sample0069_step003.npz b/outlook/data_correction/sample0069_step003.npz
new file mode 100644
index 0000000..2ca052f
Binary files /dev/null and b/outlook/data_correction/sample0069_step003.npz differ
diff --git a/outlook/data_correction/sample0069_step004.npz b/outlook/data_correction/sample0069_step004.npz
new file mode 100644
index 0000000..633eb55
Binary files /dev/null and b/outlook/data_correction/sample0069_step004.npz differ
diff --git a/outlook/data_correction/sample0069_step005.npz b/outlook/data_correction/sample0069_step005.npz
new file mode 100644
index 0000000..f434126
Binary files /dev/null and b/outlook/data_correction/sample0069_step005.npz differ
diff --git a/outlook/data_correction/sample0069_step006.npz b/outlook/data_correction/sample0069_step006.npz
new file mode 100644
index 0000000..afc2af1
Binary files /dev/null and b/outlook/data_correction/sample0069_step006.npz differ
diff --git a/outlook/data_correction/sample0069_step007.npz b/outlook/data_correction/sample0069_step007.npz
new file mode 100644
index 0000000..ee7df0c
Binary files /dev/null and b/outlook/data_correction/sample0069_step007.npz differ
diff --git a/outlook/data_correction/sample0069_step008.npz b/outlook/data_correction/sample0069_step008.npz
new file mode 100644
index 0000000..97d71fe
Binary files /dev/null and b/outlook/data_correction/sample0069_step008.npz differ
diff --git a/outlook/data_correction/sample0069_step009.npz b/outlook/data_correction/sample0069_step009.npz
new file mode 100644
index 0000000..8b4f9b7
Binary files /dev/null and b/outlook/data_correction/sample0069_step009.npz differ
diff --git a/outlook/data_correction/sample0069_step010.npz b/outlook/data_correction/sample0069_step010.npz
new file mode 100644
index 0000000..f16b008
Binary files /dev/null and b/outlook/data_correction/sample0069_step010.npz differ
diff --git a/outlook/data_correction/sample0069_step011.npz b/outlook/data_correction/sample0069_step011.npz
new file mode 100644
index 0000000..2da2fa0
Binary files /dev/null and b/outlook/data_correction/sample0069_step011.npz differ
diff --git a/outlook/data_correction/sample0069_step012.npz b/outlook/data_correction/sample0069_step012.npz
new file mode 100644
index 0000000..12a2072
Binary files /dev/null and b/outlook/data_correction/sample0069_step012.npz differ
diff --git a/outlook/data_correction/sample0069_step013.npz b/outlook/data_correction/sample0069_step013.npz
new file mode 100644
index 0000000..05107c8
Binary files /dev/null and b/outlook/data_correction/sample0069_step013.npz differ
diff --git a/outlook/data_correction/sample0069_step014.npz b/outlook/data_correction/sample0069_step014.npz
new file mode 100644
index 0000000..e92ab16
Binary files /dev/null and b/outlook/data_correction/sample0069_step014.npz differ
diff --git a/outlook/data_correction/sample0069_step015.npz b/outlook/data_correction/sample0069_step015.npz
new file mode 100644
index 0000000..0b30b36
Binary files /dev/null and b/outlook/data_correction/sample0069_step015.npz differ
diff --git a/outlook/data_correction/sample0069_step016.npz b/outlook/data_correction/sample0069_step016.npz
new file mode 100644
index 0000000..722f519
Binary files /dev/null and b/outlook/data_correction/sample0069_step016.npz differ
diff --git a/outlook/data_correction/sample0069_step017.npz b/outlook/data_correction/sample0069_step017.npz
new file mode 100644
index 0000000..39f331d
Binary files /dev/null and b/outlook/data_correction/sample0069_step017.npz differ
diff --git a/outlook/data_correction/sample0069_step018.npz b/outlook/data_correction/sample0069_step018.npz
new file mode 100644
index 0000000..d10b355
Binary files /dev/null and b/outlook/data_correction/sample0069_step018.npz differ
diff --git a/outlook/data_correction/sample0070_step000.npz b/outlook/data_correction/sample0070_step000.npz
new file mode 100644
index 0000000..6ad284b
Binary files /dev/null and b/outlook/data_correction/sample0070_step000.npz differ
diff --git a/outlook/data_correction/sample0070_step001.npz b/outlook/data_correction/sample0070_step001.npz
new file mode 100644
index 0000000..1a1baa9
Binary files /dev/null and b/outlook/data_correction/sample0070_step001.npz differ
diff --git a/outlook/data_correction/sample0070_step002.npz b/outlook/data_correction/sample0070_step002.npz
new file mode 100644
index 0000000..43f1327
Binary files /dev/null and b/outlook/data_correction/sample0070_step002.npz differ
diff --git a/outlook/data_correction/sample0070_step003.npz b/outlook/data_correction/sample0070_step003.npz
new file mode 100644
index 0000000..900565a
Binary files /dev/null and b/outlook/data_correction/sample0070_step003.npz differ
diff --git a/outlook/data_correction/sample0070_step004.npz b/outlook/data_correction/sample0070_step004.npz
new file mode 100644
index 0000000..2eae4cf
Binary files /dev/null and b/outlook/data_correction/sample0070_step004.npz differ
diff --git a/outlook/data_correction/sample0070_step005.npz b/outlook/data_correction/sample0070_step005.npz
new file mode 100644
index 0000000..36a4ae8
Binary files /dev/null and b/outlook/data_correction/sample0070_step005.npz differ
diff --git a/outlook/data_correction/sample0070_step006.npz b/outlook/data_correction/sample0070_step006.npz
new file mode 100644
index 0000000..aa1a11f
Binary files /dev/null and b/outlook/data_correction/sample0070_step006.npz differ
diff --git a/outlook/data_correction/sample0070_step007.npz b/outlook/data_correction/sample0070_step007.npz
new file mode 100644
index 0000000..40f2687
Binary files /dev/null and b/outlook/data_correction/sample0070_step007.npz differ
diff --git a/outlook/data_correction/sample0070_step008.npz b/outlook/data_correction/sample0070_step008.npz
new file mode 100644
index 0000000..be6ca5c
Binary files /dev/null and b/outlook/data_correction/sample0070_step008.npz differ
diff --git a/outlook/data_correction/sample0070_step009.npz b/outlook/data_correction/sample0070_step009.npz
new file mode 100644
index 0000000..7530495
Binary files /dev/null and b/outlook/data_correction/sample0070_step009.npz differ
diff --git a/outlook/data_correction/sample0070_step010.npz b/outlook/data_correction/sample0070_step010.npz
new file mode 100644
index 0000000..6ba88b0
Binary files /dev/null and b/outlook/data_correction/sample0070_step010.npz differ
diff --git a/outlook/data_correction/sample0070_step011.npz b/outlook/data_correction/sample0070_step011.npz
new file mode 100644
index 0000000..3d0c050
Binary files /dev/null and b/outlook/data_correction/sample0070_step011.npz differ
diff --git a/outlook/data_correction/sample0070_step012.npz b/outlook/data_correction/sample0070_step012.npz
new file mode 100644
index 0000000..5e457a0
Binary files /dev/null and b/outlook/data_correction/sample0070_step012.npz differ
diff --git a/outlook/data_correction/sample0070_step013.npz b/outlook/data_correction/sample0070_step013.npz
new file mode 100644
index 0000000..0e3b798
Binary files /dev/null and b/outlook/data_correction/sample0070_step013.npz differ
diff --git a/outlook/data_correction/sample0070_step014.npz b/outlook/data_correction/sample0070_step014.npz
new file mode 100644
index 0000000..1fafaba
Binary files /dev/null and b/outlook/data_correction/sample0070_step014.npz differ
diff --git a/outlook/data_correction/sample0070_step015.npz b/outlook/data_correction/sample0070_step015.npz
new file mode 100644
index 0000000..099f38d
Binary files /dev/null and b/outlook/data_correction/sample0070_step015.npz differ
diff --git a/outlook/data_correction/sample0070_step016.npz b/outlook/data_correction/sample0070_step016.npz
new file mode 100644
index 0000000..af6b49b
Binary files /dev/null and b/outlook/data_correction/sample0070_step016.npz differ
diff --git a/outlook/data_correction/sample0070_step017.npz b/outlook/data_correction/sample0070_step017.npz
new file mode 100644
index 0000000..7c11177
Binary files /dev/null and b/outlook/data_correction/sample0070_step017.npz differ
diff --git a/outlook/data_correction/sample0070_step018.npz b/outlook/data_correction/sample0070_step018.npz
new file mode 100644
index 0000000..c036069
Binary files /dev/null and b/outlook/data_correction/sample0070_step018.npz differ
diff --git a/outlook/data_correction/sample0071_step000.npz b/outlook/data_correction/sample0071_step000.npz
new file mode 100644
index 0000000..5a684a8
Binary files /dev/null and b/outlook/data_correction/sample0071_step000.npz differ
diff --git a/outlook/data_correction/sample0071_step001.npz b/outlook/data_correction/sample0071_step001.npz
new file mode 100644
index 0000000..d576e4c
Binary files /dev/null and b/outlook/data_correction/sample0071_step001.npz differ
diff --git a/outlook/data_correction/sample0071_step002.npz b/outlook/data_correction/sample0071_step002.npz
new file mode 100644
index 0000000..746996b
Binary files /dev/null and b/outlook/data_correction/sample0071_step002.npz differ
diff --git a/outlook/data_correction/sample0071_step003.npz b/outlook/data_correction/sample0071_step003.npz
new file mode 100644
index 0000000..a14add3
Binary files /dev/null and b/outlook/data_correction/sample0071_step003.npz differ
diff --git a/outlook/data_correction/sample0071_step004.npz b/outlook/data_correction/sample0071_step004.npz
new file mode 100644
index 0000000..5e1e8f3
Binary files /dev/null and b/outlook/data_correction/sample0071_step004.npz differ
diff --git a/outlook/data_correction/sample0071_step005.npz b/outlook/data_correction/sample0071_step005.npz
new file mode 100644
index 0000000..374f5b6
Binary files /dev/null and b/outlook/data_correction/sample0071_step005.npz differ
diff --git a/outlook/data_correction/sample0071_step006.npz b/outlook/data_correction/sample0071_step006.npz
new file mode 100644
index 0000000..d7640f2
Binary files /dev/null and b/outlook/data_correction/sample0071_step006.npz differ
diff --git a/outlook/data_correction/sample0071_step007.npz b/outlook/data_correction/sample0071_step007.npz
new file mode 100644
index 0000000..38d2dca
Binary files /dev/null and b/outlook/data_correction/sample0071_step007.npz differ
diff --git a/outlook/data_correction/sample0071_step008.npz b/outlook/data_correction/sample0071_step008.npz
new file mode 100644
index 0000000..17d03ca
Binary files /dev/null and b/outlook/data_correction/sample0071_step008.npz differ
diff --git a/outlook/data_correction/sample0071_step009.npz b/outlook/data_correction/sample0071_step009.npz
new file mode 100644
index 0000000..e329932
Binary files /dev/null and b/outlook/data_correction/sample0071_step009.npz differ
diff --git a/outlook/data_correction/sample0071_step010.npz b/outlook/data_correction/sample0071_step010.npz
new file mode 100644
index 0000000..1e8b02d
Binary files /dev/null and b/outlook/data_correction/sample0071_step010.npz differ
diff --git a/outlook/data_correction/sample0071_step011.npz b/outlook/data_correction/sample0071_step011.npz
new file mode 100644
index 0000000..76d279e
Binary files /dev/null and b/outlook/data_correction/sample0071_step011.npz differ
diff --git a/outlook/data_correction/sample0071_step012.npz b/outlook/data_correction/sample0071_step012.npz
new file mode 100644
index 0000000..320c949
Binary files /dev/null and b/outlook/data_correction/sample0071_step012.npz differ
diff --git a/outlook/data_correction/sample0071_step013.npz b/outlook/data_correction/sample0071_step013.npz
new file mode 100644
index 0000000..98ad6cf
Binary files /dev/null and b/outlook/data_correction/sample0071_step013.npz differ
diff --git a/outlook/data_correction/sample0071_step014.npz b/outlook/data_correction/sample0071_step014.npz
new file mode 100644
index 0000000..85f20a3
Binary files /dev/null and b/outlook/data_correction/sample0071_step014.npz differ
diff --git a/outlook/data_correction/sample0071_step015.npz b/outlook/data_correction/sample0071_step015.npz
new file mode 100644
index 0000000..a4ad6fe
Binary files /dev/null and b/outlook/data_correction/sample0071_step015.npz differ
diff --git a/outlook/data_correction/sample0071_step016.npz b/outlook/data_correction/sample0071_step016.npz
new file mode 100644
index 0000000..5902eab
Binary files /dev/null and b/outlook/data_correction/sample0071_step016.npz differ
diff --git a/outlook/data_correction/sample0071_step017.npz b/outlook/data_correction/sample0071_step017.npz
new file mode 100644
index 0000000..e323b25
Binary files /dev/null and b/outlook/data_correction/sample0071_step017.npz differ
diff --git a/outlook/data_correction/sample0071_step018.npz b/outlook/data_correction/sample0071_step018.npz
new file mode 100644
index 0000000..c280545
Binary files /dev/null and b/outlook/data_correction/sample0071_step018.npz differ
diff --git a/outlook/data_correction/sample0072_step000.npz b/outlook/data_correction/sample0072_step000.npz
new file mode 100644
index 0000000..44ab95a
Binary files /dev/null and b/outlook/data_correction/sample0072_step000.npz differ
diff --git a/outlook/data_correction/sample0072_step001.npz b/outlook/data_correction/sample0072_step001.npz
new file mode 100644
index 0000000..255112c
Binary files /dev/null and b/outlook/data_correction/sample0072_step001.npz differ
diff --git a/outlook/data_correction/sample0072_step002.npz b/outlook/data_correction/sample0072_step002.npz
new file mode 100644
index 0000000..c871a8a
Binary files /dev/null and b/outlook/data_correction/sample0072_step002.npz differ
diff --git a/outlook/data_correction/sample0072_step003.npz b/outlook/data_correction/sample0072_step003.npz
new file mode 100644
index 0000000..d302ac3
Binary files /dev/null and b/outlook/data_correction/sample0072_step003.npz differ
diff --git a/outlook/data_correction/sample0072_step004.npz b/outlook/data_correction/sample0072_step004.npz
new file mode 100644
index 0000000..2e3b035
Binary files /dev/null and b/outlook/data_correction/sample0072_step004.npz differ
diff --git a/outlook/data_correction/sample0072_step005.npz b/outlook/data_correction/sample0072_step005.npz
new file mode 100644
index 0000000..f61143e
Binary files /dev/null and b/outlook/data_correction/sample0072_step005.npz differ
diff --git a/outlook/data_correction/sample0072_step006.npz b/outlook/data_correction/sample0072_step006.npz
new file mode 100644
index 0000000..640ba83
Binary files /dev/null and b/outlook/data_correction/sample0072_step006.npz differ
diff --git a/outlook/data_correction/sample0072_step007.npz b/outlook/data_correction/sample0072_step007.npz
new file mode 100644
index 0000000..f455321
Binary files /dev/null and b/outlook/data_correction/sample0072_step007.npz differ
diff --git a/outlook/data_correction/sample0072_step008.npz b/outlook/data_correction/sample0072_step008.npz
new file mode 100644
index 0000000..31447c0
Binary files /dev/null and b/outlook/data_correction/sample0072_step008.npz differ
diff --git a/outlook/data_correction/sample0072_step009.npz b/outlook/data_correction/sample0072_step009.npz
new file mode 100644
index 0000000..97e6841
Binary files /dev/null and b/outlook/data_correction/sample0072_step009.npz differ
diff --git a/outlook/data_correction/sample0072_step010.npz b/outlook/data_correction/sample0072_step010.npz
new file mode 100644
index 0000000..421f409
Binary files /dev/null and b/outlook/data_correction/sample0072_step010.npz differ
diff --git a/outlook/data_correction/sample0072_step011.npz b/outlook/data_correction/sample0072_step011.npz
new file mode 100644
index 0000000..b001ecb
Binary files /dev/null and b/outlook/data_correction/sample0072_step011.npz differ
diff --git a/outlook/data_correction/sample0072_step012.npz b/outlook/data_correction/sample0072_step012.npz
new file mode 100644
index 0000000..afd1816
Binary files /dev/null and b/outlook/data_correction/sample0072_step012.npz differ
diff --git a/outlook/data_correction/sample0072_step013.npz b/outlook/data_correction/sample0072_step013.npz
new file mode 100644
index 0000000..f06c5e2
Binary files /dev/null and b/outlook/data_correction/sample0072_step013.npz differ
diff --git a/outlook/data_correction/sample0072_step014.npz b/outlook/data_correction/sample0072_step014.npz
new file mode 100644
index 0000000..8fdf39b
Binary files /dev/null and b/outlook/data_correction/sample0072_step014.npz differ
diff --git a/outlook/data_correction/sample0072_step015.npz b/outlook/data_correction/sample0072_step015.npz
new file mode 100644
index 0000000..22c5706
Binary files /dev/null and b/outlook/data_correction/sample0072_step015.npz differ
diff --git a/outlook/data_correction/sample0072_step016.npz b/outlook/data_correction/sample0072_step016.npz
new file mode 100644
index 0000000..878ab55
Binary files /dev/null and b/outlook/data_correction/sample0072_step016.npz differ
diff --git a/outlook/data_correction/sample0072_step017.npz b/outlook/data_correction/sample0072_step017.npz
new file mode 100644
index 0000000..8981398
Binary files /dev/null and b/outlook/data_correction/sample0072_step017.npz differ
diff --git a/outlook/data_correction/sample0072_step018.npz b/outlook/data_correction/sample0072_step018.npz
new file mode 100644
index 0000000..bf52539
Binary files /dev/null and b/outlook/data_correction/sample0072_step018.npz differ
diff --git a/outlook/data_correction/sample0073_step000.npz b/outlook/data_correction/sample0073_step000.npz
new file mode 100644
index 0000000..c2c1810
Binary files /dev/null and b/outlook/data_correction/sample0073_step000.npz differ
diff --git a/outlook/data_correction/sample0073_step001.npz b/outlook/data_correction/sample0073_step001.npz
new file mode 100644
index 0000000..02e220a
Binary files /dev/null and b/outlook/data_correction/sample0073_step001.npz differ
diff --git a/outlook/data_correction/sample0073_step002.npz b/outlook/data_correction/sample0073_step002.npz
new file mode 100644
index 0000000..30e6c02
Binary files /dev/null and b/outlook/data_correction/sample0073_step002.npz differ
diff --git a/outlook/data_correction/sample0073_step003.npz b/outlook/data_correction/sample0073_step003.npz
new file mode 100644
index 0000000..b8e67bc
Binary files /dev/null and b/outlook/data_correction/sample0073_step003.npz differ
diff --git a/outlook/data_correction/sample0073_step004.npz b/outlook/data_correction/sample0073_step004.npz
new file mode 100644
index 0000000..a21ff95
Binary files /dev/null and b/outlook/data_correction/sample0073_step004.npz differ
diff --git a/outlook/data_correction/sample0073_step005.npz b/outlook/data_correction/sample0073_step005.npz
new file mode 100644
index 0000000..5c7aee1
Binary files /dev/null and b/outlook/data_correction/sample0073_step005.npz differ
diff --git a/outlook/data_correction/sample0073_step006.npz b/outlook/data_correction/sample0073_step006.npz
new file mode 100644
index 0000000..559a41e
Binary files /dev/null and b/outlook/data_correction/sample0073_step006.npz differ
diff --git a/outlook/data_correction/sample0073_step007.npz b/outlook/data_correction/sample0073_step007.npz
new file mode 100644
index 0000000..2b252da
Binary files /dev/null and b/outlook/data_correction/sample0073_step007.npz differ
diff --git a/outlook/data_correction/sample0073_step008.npz b/outlook/data_correction/sample0073_step008.npz
new file mode 100644
index 0000000..aaa4659
Binary files /dev/null and b/outlook/data_correction/sample0073_step008.npz differ
diff --git a/outlook/data_correction/sample0073_step009.npz b/outlook/data_correction/sample0073_step009.npz
new file mode 100644
index 0000000..4630efd
Binary files /dev/null and b/outlook/data_correction/sample0073_step009.npz differ
diff --git a/outlook/data_correction/sample0073_step010.npz b/outlook/data_correction/sample0073_step010.npz
new file mode 100644
index 0000000..3efe212
Binary files /dev/null and b/outlook/data_correction/sample0073_step010.npz differ
diff --git a/outlook/data_correction/sample0073_step011.npz b/outlook/data_correction/sample0073_step011.npz
new file mode 100644
index 0000000..9386157
Binary files /dev/null and b/outlook/data_correction/sample0073_step011.npz differ
diff --git a/outlook/data_correction/sample0073_step012.npz b/outlook/data_correction/sample0073_step012.npz
new file mode 100644
index 0000000..dcd534f
Binary files /dev/null and b/outlook/data_correction/sample0073_step012.npz differ
diff --git a/outlook/data_correction/sample0073_step013.npz b/outlook/data_correction/sample0073_step013.npz
new file mode 100644
index 0000000..aa5bbd0
Binary files /dev/null and b/outlook/data_correction/sample0073_step013.npz differ
diff --git a/outlook/data_correction/sample0073_step014.npz b/outlook/data_correction/sample0073_step014.npz
new file mode 100644
index 0000000..c76c504
Binary files /dev/null and b/outlook/data_correction/sample0073_step014.npz differ
diff --git a/outlook/data_correction/sample0073_step015.npz b/outlook/data_correction/sample0073_step015.npz
new file mode 100644
index 0000000..de2c40b
Binary files /dev/null and b/outlook/data_correction/sample0073_step015.npz differ
diff --git a/outlook/data_correction/sample0073_step016.npz b/outlook/data_correction/sample0073_step016.npz
new file mode 100644
index 0000000..a4a75bb
Binary files /dev/null and b/outlook/data_correction/sample0073_step016.npz differ
diff --git a/outlook/data_correction/sample0073_step017.npz b/outlook/data_correction/sample0073_step017.npz
new file mode 100644
index 0000000..08d7345
Binary files /dev/null and b/outlook/data_correction/sample0073_step017.npz differ
diff --git a/outlook/data_correction/sample0073_step018.npz b/outlook/data_correction/sample0073_step018.npz
new file mode 100644
index 0000000..d1dc123
Binary files /dev/null and b/outlook/data_correction/sample0073_step018.npz differ
diff --git a/outlook/data_correction/sample0074_step000.npz b/outlook/data_correction/sample0074_step000.npz
new file mode 100644
index 0000000..f630b4c
Binary files /dev/null and b/outlook/data_correction/sample0074_step000.npz differ
diff --git a/outlook/data_correction/sample0074_step001.npz b/outlook/data_correction/sample0074_step001.npz
new file mode 100644
index 0000000..31a2ba1
Binary files /dev/null and b/outlook/data_correction/sample0074_step001.npz differ
diff --git a/outlook/data_correction/sample0074_step002.npz b/outlook/data_correction/sample0074_step002.npz
new file mode 100644
index 0000000..507cbfc
Binary files /dev/null and b/outlook/data_correction/sample0074_step002.npz differ
diff --git a/outlook/data_correction/sample0074_step003.npz b/outlook/data_correction/sample0074_step003.npz
new file mode 100644
index 0000000..44bc150
Binary files /dev/null and b/outlook/data_correction/sample0074_step003.npz differ
diff --git a/outlook/data_correction/sample0074_step004.npz b/outlook/data_correction/sample0074_step004.npz
new file mode 100644
index 0000000..153e436
Binary files /dev/null and b/outlook/data_correction/sample0074_step004.npz differ
diff --git a/outlook/data_correction/sample0074_step005.npz b/outlook/data_correction/sample0074_step005.npz
new file mode 100644
index 0000000..9f77e98
Binary files /dev/null and b/outlook/data_correction/sample0074_step005.npz differ
diff --git a/outlook/data_correction/sample0074_step006.npz b/outlook/data_correction/sample0074_step006.npz
new file mode 100644
index 0000000..506ffc9
Binary files /dev/null and b/outlook/data_correction/sample0074_step006.npz differ
diff --git a/outlook/data_correction/sample0074_step007.npz b/outlook/data_correction/sample0074_step007.npz
new file mode 100644
index 0000000..ae77af4
Binary files /dev/null and b/outlook/data_correction/sample0074_step007.npz differ
diff --git a/outlook/data_correction/sample0074_step008.npz b/outlook/data_correction/sample0074_step008.npz
new file mode 100644
index 0000000..8662625
Binary files /dev/null and b/outlook/data_correction/sample0074_step008.npz differ
diff --git a/outlook/data_correction/sample0074_step009.npz b/outlook/data_correction/sample0074_step009.npz
new file mode 100644
index 0000000..b089286
Binary files /dev/null and b/outlook/data_correction/sample0074_step009.npz differ
diff --git a/outlook/data_correction/sample0074_step010.npz b/outlook/data_correction/sample0074_step010.npz
new file mode 100644
index 0000000..3e3ef9a
Binary files /dev/null and b/outlook/data_correction/sample0074_step010.npz differ
diff --git a/outlook/data_correction/sample0074_step011.npz b/outlook/data_correction/sample0074_step011.npz
new file mode 100644
index 0000000..a6adf20
Binary files /dev/null and b/outlook/data_correction/sample0074_step011.npz differ
diff --git a/outlook/data_correction/sample0074_step012.npz b/outlook/data_correction/sample0074_step012.npz
new file mode 100644
index 0000000..29bb93b
Binary files /dev/null and b/outlook/data_correction/sample0074_step012.npz differ
diff --git a/outlook/data_correction/sample0074_step013.npz b/outlook/data_correction/sample0074_step013.npz
new file mode 100644
index 0000000..1c4730d
Binary files /dev/null and b/outlook/data_correction/sample0074_step013.npz differ
diff --git a/outlook/data_correction/sample0074_step014.npz b/outlook/data_correction/sample0074_step014.npz
new file mode 100644
index 0000000..7c951a9
Binary files /dev/null and b/outlook/data_correction/sample0074_step014.npz differ
diff --git a/outlook/data_correction/sample0074_step015.npz b/outlook/data_correction/sample0074_step015.npz
new file mode 100644
index 0000000..f647d13
Binary files /dev/null and b/outlook/data_correction/sample0074_step015.npz differ
diff --git a/outlook/data_correction/sample0074_step016.npz b/outlook/data_correction/sample0074_step016.npz
new file mode 100644
index 0000000..3a77791
Binary files /dev/null and b/outlook/data_correction/sample0074_step016.npz differ
diff --git a/outlook/data_correction/sample0074_step017.npz b/outlook/data_correction/sample0074_step017.npz
new file mode 100644
index 0000000..2c6d439
Binary files /dev/null and b/outlook/data_correction/sample0074_step017.npz differ
diff --git a/outlook/data_correction/sample0074_step018.npz b/outlook/data_correction/sample0074_step018.npz
new file mode 100644
index 0000000..b0b4c31
Binary files /dev/null and b/outlook/data_correction/sample0074_step018.npz differ
diff --git a/outlook/data_correction/sample0075_step000.npz b/outlook/data_correction/sample0075_step000.npz
new file mode 100644
index 0000000..f7f2950
Binary files /dev/null and b/outlook/data_correction/sample0075_step000.npz differ
diff --git a/outlook/data_correction/sample0075_step001.npz b/outlook/data_correction/sample0075_step001.npz
new file mode 100644
index 0000000..14ecc5a
Binary files /dev/null and b/outlook/data_correction/sample0075_step001.npz differ
diff --git a/outlook/data_correction/sample0075_step002.npz b/outlook/data_correction/sample0075_step002.npz
new file mode 100644
index 0000000..73c438b
Binary files /dev/null and b/outlook/data_correction/sample0075_step002.npz differ
diff --git a/outlook/data_correction/sample0075_step003.npz b/outlook/data_correction/sample0075_step003.npz
new file mode 100644
index 0000000..c9fcd32
Binary files /dev/null and b/outlook/data_correction/sample0075_step003.npz differ
diff --git a/outlook/data_correction/sample0075_step004.npz b/outlook/data_correction/sample0075_step004.npz
new file mode 100644
index 0000000..0aec81f
Binary files /dev/null and b/outlook/data_correction/sample0075_step004.npz differ
diff --git a/outlook/data_correction/sample0075_step005.npz b/outlook/data_correction/sample0075_step005.npz
new file mode 100644
index 0000000..875ead6
Binary files /dev/null and b/outlook/data_correction/sample0075_step005.npz differ
diff --git a/outlook/data_correction/sample0075_step006.npz b/outlook/data_correction/sample0075_step006.npz
new file mode 100644
index 0000000..72f33ef
Binary files /dev/null and b/outlook/data_correction/sample0075_step006.npz differ
diff --git a/outlook/data_correction/sample0075_step007.npz b/outlook/data_correction/sample0075_step007.npz
new file mode 100644
index 0000000..2e4ba82
Binary files /dev/null and b/outlook/data_correction/sample0075_step007.npz differ
diff --git a/outlook/data_correction/sample0075_step008.npz b/outlook/data_correction/sample0075_step008.npz
new file mode 100644
index 0000000..8ce34d3
Binary files /dev/null and b/outlook/data_correction/sample0075_step008.npz differ
diff --git a/outlook/data_correction/sample0075_step009.npz b/outlook/data_correction/sample0075_step009.npz
new file mode 100644
index 0000000..4ad1bd5
Binary files /dev/null and b/outlook/data_correction/sample0075_step009.npz differ
diff --git a/outlook/data_correction/sample0075_step010.npz b/outlook/data_correction/sample0075_step010.npz
new file mode 100644
index 0000000..4b4b072
Binary files /dev/null and b/outlook/data_correction/sample0075_step010.npz differ
diff --git a/outlook/data_correction/sample0075_step011.npz b/outlook/data_correction/sample0075_step011.npz
new file mode 100644
index 0000000..b6ac3bd
Binary files /dev/null and b/outlook/data_correction/sample0075_step011.npz differ
diff --git a/outlook/data_correction/sample0075_step012.npz b/outlook/data_correction/sample0075_step012.npz
new file mode 100644
index 0000000..cd5b51d
Binary files /dev/null and b/outlook/data_correction/sample0075_step012.npz differ
diff --git a/outlook/data_correction/sample0075_step013.npz b/outlook/data_correction/sample0075_step013.npz
new file mode 100644
index 0000000..d6926e8
Binary files /dev/null and b/outlook/data_correction/sample0075_step013.npz differ
diff --git a/outlook/data_correction/sample0075_step014.npz b/outlook/data_correction/sample0075_step014.npz
new file mode 100644
index 0000000..8517ef1
Binary files /dev/null and b/outlook/data_correction/sample0075_step014.npz differ
diff --git a/outlook/data_correction/sample0075_step015.npz b/outlook/data_correction/sample0075_step015.npz
new file mode 100644
index 0000000..530ecb6
Binary files /dev/null and b/outlook/data_correction/sample0075_step015.npz differ
diff --git a/outlook/data_correction/sample0075_step016.npz b/outlook/data_correction/sample0075_step016.npz
new file mode 100644
index 0000000..e039f85
Binary files /dev/null and b/outlook/data_correction/sample0075_step016.npz differ
diff --git a/outlook/data_correction/sample0075_step017.npz b/outlook/data_correction/sample0075_step017.npz
new file mode 100644
index 0000000..12ed43c
Binary files /dev/null and b/outlook/data_correction/sample0075_step017.npz differ
diff --git a/outlook/data_correction/sample0075_step018.npz b/outlook/data_correction/sample0075_step018.npz
new file mode 100644
index 0000000..0581b3f
Binary files /dev/null and b/outlook/data_correction/sample0075_step018.npz differ
diff --git a/outlook/data_correction/sample0076_step000.npz b/outlook/data_correction/sample0076_step000.npz
new file mode 100644
index 0000000..40cffde
Binary files /dev/null and b/outlook/data_correction/sample0076_step000.npz differ
diff --git a/outlook/data_correction/sample0076_step001.npz b/outlook/data_correction/sample0076_step001.npz
new file mode 100644
index 0000000..335e548
Binary files /dev/null and b/outlook/data_correction/sample0076_step001.npz differ
diff --git a/outlook/data_correction/sample0076_step002.npz b/outlook/data_correction/sample0076_step002.npz
new file mode 100644
index 0000000..f5f1f67
Binary files /dev/null and b/outlook/data_correction/sample0076_step002.npz differ
diff --git a/outlook/data_correction/sample0076_step003.npz b/outlook/data_correction/sample0076_step003.npz
new file mode 100644
index 0000000..d8044bb
Binary files /dev/null and b/outlook/data_correction/sample0076_step003.npz differ
diff --git a/outlook/data_correction/sample0076_step004.npz b/outlook/data_correction/sample0076_step004.npz
new file mode 100644
index 0000000..23c3562
Binary files /dev/null and b/outlook/data_correction/sample0076_step004.npz differ
diff --git a/outlook/data_correction/sample0076_step005.npz b/outlook/data_correction/sample0076_step005.npz
new file mode 100644
index 0000000..31d7fbd
Binary files /dev/null and b/outlook/data_correction/sample0076_step005.npz differ
diff --git a/outlook/data_correction/sample0076_step006.npz b/outlook/data_correction/sample0076_step006.npz
new file mode 100644
index 0000000..c60f056
Binary files /dev/null and b/outlook/data_correction/sample0076_step006.npz differ
diff --git a/outlook/data_correction/sample0076_step007.npz b/outlook/data_correction/sample0076_step007.npz
new file mode 100644
index 0000000..9e89628
Binary files /dev/null and b/outlook/data_correction/sample0076_step007.npz differ
diff --git a/outlook/data_correction/sample0076_step008.npz b/outlook/data_correction/sample0076_step008.npz
new file mode 100644
index 0000000..da81e4b
Binary files /dev/null and b/outlook/data_correction/sample0076_step008.npz differ
diff --git a/outlook/data_correction/sample0076_step009.npz b/outlook/data_correction/sample0076_step009.npz
new file mode 100644
index 0000000..8f6898c
Binary files /dev/null and b/outlook/data_correction/sample0076_step009.npz differ
diff --git a/outlook/data_correction/sample0076_step010.npz b/outlook/data_correction/sample0076_step010.npz
new file mode 100644
index 0000000..b8cc46f
Binary files /dev/null and b/outlook/data_correction/sample0076_step010.npz differ
diff --git a/outlook/data_correction/sample0076_step011.npz b/outlook/data_correction/sample0076_step011.npz
new file mode 100644
index 0000000..c528968
Binary files /dev/null and b/outlook/data_correction/sample0076_step011.npz differ
diff --git a/outlook/data_correction/sample0076_step012.npz b/outlook/data_correction/sample0076_step012.npz
new file mode 100644
index 0000000..f633a8f
Binary files /dev/null and b/outlook/data_correction/sample0076_step012.npz differ
diff --git a/outlook/data_correction/sample0076_step013.npz b/outlook/data_correction/sample0076_step013.npz
new file mode 100644
index 0000000..734e73d
Binary files /dev/null and b/outlook/data_correction/sample0076_step013.npz differ
diff --git a/outlook/data_correction/sample0076_step014.npz b/outlook/data_correction/sample0076_step014.npz
new file mode 100644
index 0000000..fbf5882
Binary files /dev/null and b/outlook/data_correction/sample0076_step014.npz differ
diff --git a/outlook/data_correction/sample0076_step015.npz b/outlook/data_correction/sample0076_step015.npz
new file mode 100644
index 0000000..2b7b899
Binary files /dev/null and b/outlook/data_correction/sample0076_step015.npz differ
diff --git a/outlook/data_correction/sample0076_step016.npz b/outlook/data_correction/sample0076_step016.npz
new file mode 100644
index 0000000..0b55556
Binary files /dev/null and b/outlook/data_correction/sample0076_step016.npz differ
diff --git a/outlook/data_correction/sample0076_step017.npz b/outlook/data_correction/sample0076_step017.npz
new file mode 100644
index 0000000..3ddf436
Binary files /dev/null and b/outlook/data_correction/sample0076_step017.npz differ
diff --git a/outlook/data_correction/sample0076_step018.npz b/outlook/data_correction/sample0076_step018.npz
new file mode 100644
index 0000000..d66c805
Binary files /dev/null and b/outlook/data_correction/sample0076_step018.npz differ
diff --git a/outlook/data_correction/sample0077_step000.npz b/outlook/data_correction/sample0077_step000.npz
new file mode 100644
index 0000000..92addfd
Binary files /dev/null and b/outlook/data_correction/sample0077_step000.npz differ
diff --git a/outlook/data_correction/sample0077_step001.npz b/outlook/data_correction/sample0077_step001.npz
new file mode 100644
index 0000000..8f26b20
Binary files /dev/null and b/outlook/data_correction/sample0077_step001.npz differ
diff --git a/outlook/data_correction/sample0077_step002.npz b/outlook/data_correction/sample0077_step002.npz
new file mode 100644
index 0000000..ab169f2
Binary files /dev/null and b/outlook/data_correction/sample0077_step002.npz differ
diff --git a/outlook/data_correction/sample0077_step003.npz b/outlook/data_correction/sample0077_step003.npz
new file mode 100644
index 0000000..a919a48
Binary files /dev/null and b/outlook/data_correction/sample0077_step003.npz differ
diff --git a/outlook/data_correction/sample0077_step004.npz b/outlook/data_correction/sample0077_step004.npz
new file mode 100644
index 0000000..9f00bfb
Binary files /dev/null and b/outlook/data_correction/sample0077_step004.npz differ
diff --git a/outlook/data_correction/sample0077_step005.npz b/outlook/data_correction/sample0077_step005.npz
new file mode 100644
index 0000000..a097ea4
Binary files /dev/null and b/outlook/data_correction/sample0077_step005.npz differ
diff --git a/outlook/data_correction/sample0077_step006.npz b/outlook/data_correction/sample0077_step006.npz
new file mode 100644
index 0000000..000ecaa
Binary files /dev/null and b/outlook/data_correction/sample0077_step006.npz differ
diff --git a/outlook/data_correction/sample0077_step007.npz b/outlook/data_correction/sample0077_step007.npz
new file mode 100644
index 0000000..1f70fce
Binary files /dev/null and b/outlook/data_correction/sample0077_step007.npz differ
diff --git a/outlook/data_correction/sample0077_step008.npz b/outlook/data_correction/sample0077_step008.npz
new file mode 100644
index 0000000..1a16228
Binary files /dev/null and b/outlook/data_correction/sample0077_step008.npz differ
diff --git a/outlook/data_correction/sample0077_step009.npz b/outlook/data_correction/sample0077_step009.npz
new file mode 100644
index 0000000..e06d036
Binary files /dev/null and b/outlook/data_correction/sample0077_step009.npz differ
diff --git a/outlook/data_correction/sample0077_step010.npz b/outlook/data_correction/sample0077_step010.npz
new file mode 100644
index 0000000..46e259b
Binary files /dev/null and b/outlook/data_correction/sample0077_step010.npz differ
diff --git a/outlook/data_correction/sample0077_step011.npz b/outlook/data_correction/sample0077_step011.npz
new file mode 100644
index 0000000..372e233
Binary files /dev/null and b/outlook/data_correction/sample0077_step011.npz differ
diff --git a/outlook/data_correction/sample0077_step012.npz b/outlook/data_correction/sample0077_step012.npz
new file mode 100644
index 0000000..d0b8f0e
Binary files /dev/null and b/outlook/data_correction/sample0077_step012.npz differ
diff --git a/outlook/data_correction/sample0077_step013.npz b/outlook/data_correction/sample0077_step013.npz
new file mode 100644
index 0000000..d371a82
Binary files /dev/null and b/outlook/data_correction/sample0077_step013.npz differ
diff --git a/outlook/data_correction/sample0077_step014.npz b/outlook/data_correction/sample0077_step014.npz
new file mode 100644
index 0000000..1d0446c
Binary files /dev/null and b/outlook/data_correction/sample0077_step014.npz differ
diff --git a/outlook/data_correction/sample0077_step015.npz b/outlook/data_correction/sample0077_step015.npz
new file mode 100644
index 0000000..73fcb32
Binary files /dev/null and b/outlook/data_correction/sample0077_step015.npz differ
diff --git a/outlook/data_correction/sample0077_step016.npz b/outlook/data_correction/sample0077_step016.npz
new file mode 100644
index 0000000..14d35a3
Binary files /dev/null and b/outlook/data_correction/sample0077_step016.npz differ
diff --git a/outlook/data_correction/sample0077_step017.npz b/outlook/data_correction/sample0077_step017.npz
new file mode 100644
index 0000000..8eca5fe
Binary files /dev/null and b/outlook/data_correction/sample0077_step017.npz differ
diff --git a/outlook/data_correction/sample0077_step018.npz b/outlook/data_correction/sample0077_step018.npz
new file mode 100644
index 0000000..8f0f714
Binary files /dev/null and b/outlook/data_correction/sample0077_step018.npz differ
diff --git a/outlook/data_correction/sample0078_step000.npz b/outlook/data_correction/sample0078_step000.npz
new file mode 100644
index 0000000..67ed3fb
Binary files /dev/null and b/outlook/data_correction/sample0078_step000.npz differ
diff --git a/outlook/data_correction/sample0078_step001.npz b/outlook/data_correction/sample0078_step001.npz
new file mode 100644
index 0000000..c0d3519
Binary files /dev/null and b/outlook/data_correction/sample0078_step001.npz differ
diff --git a/outlook/data_correction/sample0078_step002.npz b/outlook/data_correction/sample0078_step002.npz
new file mode 100644
index 0000000..85c3159
Binary files /dev/null and b/outlook/data_correction/sample0078_step002.npz differ
diff --git a/outlook/data_correction/sample0078_step003.npz b/outlook/data_correction/sample0078_step003.npz
new file mode 100644
index 0000000..8567585
Binary files /dev/null and b/outlook/data_correction/sample0078_step003.npz differ
diff --git a/outlook/data_correction/sample0078_step004.npz b/outlook/data_correction/sample0078_step004.npz
new file mode 100644
index 0000000..2bdde92
Binary files /dev/null and b/outlook/data_correction/sample0078_step004.npz differ
diff --git a/outlook/data_correction/sample0078_step005.npz b/outlook/data_correction/sample0078_step005.npz
new file mode 100644
index 0000000..fec8353
Binary files /dev/null and b/outlook/data_correction/sample0078_step005.npz differ
diff --git a/outlook/data_correction/sample0078_step006.npz b/outlook/data_correction/sample0078_step006.npz
new file mode 100644
index 0000000..7726cee
Binary files /dev/null and b/outlook/data_correction/sample0078_step006.npz differ
diff --git a/outlook/data_correction/sample0078_step007.npz b/outlook/data_correction/sample0078_step007.npz
new file mode 100644
index 0000000..2da3b60
Binary files /dev/null and b/outlook/data_correction/sample0078_step007.npz differ
diff --git a/outlook/data_correction/sample0078_step008.npz b/outlook/data_correction/sample0078_step008.npz
new file mode 100644
index 0000000..36d00f5
Binary files /dev/null and b/outlook/data_correction/sample0078_step008.npz differ
diff --git a/outlook/data_correction/sample0078_step009.npz b/outlook/data_correction/sample0078_step009.npz
new file mode 100644
index 0000000..59ed27c
Binary files /dev/null and b/outlook/data_correction/sample0078_step009.npz differ
diff --git a/outlook/data_correction/sample0078_step010.npz b/outlook/data_correction/sample0078_step010.npz
new file mode 100644
index 0000000..5b95c28
Binary files /dev/null and b/outlook/data_correction/sample0078_step010.npz differ
diff --git a/outlook/data_correction/sample0078_step011.npz b/outlook/data_correction/sample0078_step011.npz
new file mode 100644
index 0000000..5aa6dea
Binary files /dev/null and b/outlook/data_correction/sample0078_step011.npz differ
diff --git a/outlook/data_correction/sample0078_step012.npz b/outlook/data_correction/sample0078_step012.npz
new file mode 100644
index 0000000..b05d398
Binary files /dev/null and b/outlook/data_correction/sample0078_step012.npz differ
diff --git a/outlook/data_correction/sample0078_step013.npz b/outlook/data_correction/sample0078_step013.npz
new file mode 100644
index 0000000..9d1327d
Binary files /dev/null and b/outlook/data_correction/sample0078_step013.npz differ
diff --git a/outlook/data_correction/sample0078_step014.npz b/outlook/data_correction/sample0078_step014.npz
new file mode 100644
index 0000000..4a9a594
Binary files /dev/null and b/outlook/data_correction/sample0078_step014.npz differ
diff --git a/outlook/data_correction/sample0078_step015.npz b/outlook/data_correction/sample0078_step015.npz
new file mode 100644
index 0000000..8cac703
Binary files /dev/null and b/outlook/data_correction/sample0078_step015.npz differ
diff --git a/outlook/data_correction/sample0078_step016.npz b/outlook/data_correction/sample0078_step016.npz
new file mode 100644
index 0000000..2bc947b
Binary files /dev/null and b/outlook/data_correction/sample0078_step016.npz differ
diff --git a/outlook/data_correction/sample0078_step017.npz b/outlook/data_correction/sample0078_step017.npz
new file mode 100644
index 0000000..58dbe80
Binary files /dev/null and b/outlook/data_correction/sample0078_step017.npz differ
diff --git a/outlook/data_correction/sample0078_step018.npz b/outlook/data_correction/sample0078_step018.npz
new file mode 100644
index 0000000..f181f8e
Binary files /dev/null and b/outlook/data_correction/sample0078_step018.npz differ
diff --git a/outlook/data_correction/sample0079_step000.npz b/outlook/data_correction/sample0079_step000.npz
new file mode 100644
index 0000000..292d11f
Binary files /dev/null and b/outlook/data_correction/sample0079_step000.npz differ
diff --git a/outlook/data_correction/sample0079_step001.npz b/outlook/data_correction/sample0079_step001.npz
new file mode 100644
index 0000000..1749f38
Binary files /dev/null and b/outlook/data_correction/sample0079_step001.npz differ
diff --git a/outlook/data_correction/sample0079_step002.npz b/outlook/data_correction/sample0079_step002.npz
new file mode 100644
index 0000000..17ff871
Binary files /dev/null and b/outlook/data_correction/sample0079_step002.npz differ
diff --git a/outlook/data_correction/sample0079_step003.npz b/outlook/data_correction/sample0079_step003.npz
new file mode 100644
index 0000000..17ce34a
Binary files /dev/null and b/outlook/data_correction/sample0079_step003.npz differ
diff --git a/outlook/data_correction/sample0079_step004.npz b/outlook/data_correction/sample0079_step004.npz
new file mode 100644
index 0000000..1934ffd
Binary files /dev/null and b/outlook/data_correction/sample0079_step004.npz differ
diff --git a/outlook/data_correction/sample0079_step005.npz b/outlook/data_correction/sample0079_step005.npz
new file mode 100644
index 0000000..d5db8e4
Binary files /dev/null and b/outlook/data_correction/sample0079_step005.npz differ
diff --git a/outlook/data_correction/sample0079_step006.npz b/outlook/data_correction/sample0079_step006.npz
new file mode 100644
index 0000000..2a6c9b0
Binary files /dev/null and b/outlook/data_correction/sample0079_step006.npz differ
diff --git a/outlook/data_correction/sample0079_step007.npz b/outlook/data_correction/sample0079_step007.npz
new file mode 100644
index 0000000..eaaf725
Binary files /dev/null and b/outlook/data_correction/sample0079_step007.npz differ
diff --git a/outlook/data_correction/sample0079_step008.npz b/outlook/data_correction/sample0079_step008.npz
new file mode 100644
index 0000000..e627f83
Binary files /dev/null and b/outlook/data_correction/sample0079_step008.npz differ
diff --git a/outlook/data_correction/sample0079_step009.npz b/outlook/data_correction/sample0079_step009.npz
new file mode 100644
index 0000000..2d5ba7d
Binary files /dev/null and b/outlook/data_correction/sample0079_step009.npz differ
diff --git a/outlook/data_correction/sample0079_step010.npz b/outlook/data_correction/sample0079_step010.npz
new file mode 100644
index 0000000..e9dcf84
Binary files /dev/null and b/outlook/data_correction/sample0079_step010.npz differ
diff --git a/outlook/data_correction/sample0079_step011.npz b/outlook/data_correction/sample0079_step011.npz
new file mode 100644
index 0000000..c7aed90
Binary files /dev/null and b/outlook/data_correction/sample0079_step011.npz differ
diff --git a/outlook/data_correction/sample0079_step012.npz b/outlook/data_correction/sample0079_step012.npz
new file mode 100644
index 0000000..21e365d
Binary files /dev/null and b/outlook/data_correction/sample0079_step012.npz differ
diff --git a/outlook/data_correction/sample0079_step013.npz b/outlook/data_correction/sample0079_step013.npz
new file mode 100644
index 0000000..cea3723
Binary files /dev/null and b/outlook/data_correction/sample0079_step013.npz differ
diff --git a/outlook/data_correction/sample0079_step014.npz b/outlook/data_correction/sample0079_step014.npz
new file mode 100644
index 0000000..86069b4
Binary files /dev/null and b/outlook/data_correction/sample0079_step014.npz differ
diff --git a/outlook/data_correction/sample0079_step015.npz b/outlook/data_correction/sample0079_step015.npz
new file mode 100644
index 0000000..eb273bc
Binary files /dev/null and b/outlook/data_correction/sample0079_step015.npz differ
diff --git a/outlook/data_correction/sample0080_step000.npz b/outlook/data_correction/sample0080_step000.npz
new file mode 100644
index 0000000..acf0643
Binary files /dev/null and b/outlook/data_correction/sample0080_step000.npz differ
diff --git a/outlook/data_correction/sample0080_step001.npz b/outlook/data_correction/sample0080_step001.npz
new file mode 100644
index 0000000..517eb0e
Binary files /dev/null and b/outlook/data_correction/sample0080_step001.npz differ
diff --git a/outlook/data_correction/sample0080_step002.npz b/outlook/data_correction/sample0080_step002.npz
new file mode 100644
index 0000000..2b4771a
Binary files /dev/null and b/outlook/data_correction/sample0080_step002.npz differ
diff --git a/outlook/data_correction/sample0080_step003.npz b/outlook/data_correction/sample0080_step003.npz
new file mode 100644
index 0000000..775726d
Binary files /dev/null and b/outlook/data_correction/sample0080_step003.npz differ
diff --git a/outlook/data_correction/sample0080_step004.npz b/outlook/data_correction/sample0080_step004.npz
new file mode 100644
index 0000000..b5867f8
Binary files /dev/null and b/outlook/data_correction/sample0080_step004.npz differ
diff --git a/outlook/data_correction/sample0080_step005.npz b/outlook/data_correction/sample0080_step005.npz
new file mode 100644
index 0000000..c24c673
Binary files /dev/null and b/outlook/data_correction/sample0080_step005.npz differ
diff --git a/outlook/data_correction/sample0080_step006.npz b/outlook/data_correction/sample0080_step006.npz
new file mode 100644
index 0000000..7c84ba8
Binary files /dev/null and b/outlook/data_correction/sample0080_step006.npz differ
diff --git a/outlook/data_correction/sample0080_step007.npz b/outlook/data_correction/sample0080_step007.npz
new file mode 100644
index 0000000..af7722d
Binary files /dev/null and b/outlook/data_correction/sample0080_step007.npz differ
diff --git a/outlook/data_correction/sample0080_step008.npz b/outlook/data_correction/sample0080_step008.npz
new file mode 100644
index 0000000..a79eea9
Binary files /dev/null and b/outlook/data_correction/sample0080_step008.npz differ
diff --git a/outlook/data_correction/sample0080_step009.npz b/outlook/data_correction/sample0080_step009.npz
new file mode 100644
index 0000000..828085d
Binary files /dev/null and b/outlook/data_correction/sample0080_step009.npz differ
diff --git a/outlook/data_correction/sample0080_step010.npz b/outlook/data_correction/sample0080_step010.npz
new file mode 100644
index 0000000..2ffcc41
Binary files /dev/null and b/outlook/data_correction/sample0080_step010.npz differ
diff --git a/outlook/data_correction/sample0080_step011.npz b/outlook/data_correction/sample0080_step011.npz
new file mode 100644
index 0000000..8df8afe
Binary files /dev/null and b/outlook/data_correction/sample0080_step011.npz differ
diff --git a/outlook/data_correction/sample0080_step012.npz b/outlook/data_correction/sample0080_step012.npz
new file mode 100644
index 0000000..1cbff74
Binary files /dev/null and b/outlook/data_correction/sample0080_step012.npz differ
diff --git a/outlook/data_correction/sample0080_step013.npz b/outlook/data_correction/sample0080_step013.npz
new file mode 100644
index 0000000..61ac3e8
Binary files /dev/null and b/outlook/data_correction/sample0080_step013.npz differ
diff --git a/outlook/data_correction/sample0080_step014.npz b/outlook/data_correction/sample0080_step014.npz
new file mode 100644
index 0000000..7cb43c6
Binary files /dev/null and b/outlook/data_correction/sample0080_step014.npz differ
diff --git a/outlook/data_correction/sample0080_step015.npz b/outlook/data_correction/sample0080_step015.npz
new file mode 100644
index 0000000..35ab902
Binary files /dev/null and b/outlook/data_correction/sample0080_step015.npz differ
diff --git a/outlook/data_correction/sample0080_step016.npz b/outlook/data_correction/sample0080_step016.npz
new file mode 100644
index 0000000..feddd84
Binary files /dev/null and b/outlook/data_correction/sample0080_step016.npz differ
diff --git a/outlook/data_correction/sample0080_step017.npz b/outlook/data_correction/sample0080_step017.npz
new file mode 100644
index 0000000..882f74a
Binary files /dev/null and b/outlook/data_correction/sample0080_step017.npz differ
diff --git a/outlook/data_correction/sample0080_step018.npz b/outlook/data_correction/sample0080_step018.npz
new file mode 100644
index 0000000..a0bd981
Binary files /dev/null and b/outlook/data_correction/sample0080_step018.npz differ
diff --git a/outlook/data_correction/sample0081_step000.npz b/outlook/data_correction/sample0081_step000.npz
new file mode 100644
index 0000000..35af4f2
Binary files /dev/null and b/outlook/data_correction/sample0081_step000.npz differ
diff --git a/outlook/data_correction/sample0081_step001.npz b/outlook/data_correction/sample0081_step001.npz
new file mode 100644
index 0000000..ddc9fd2
Binary files /dev/null and b/outlook/data_correction/sample0081_step001.npz differ
diff --git a/outlook/data_correction/sample0081_step002.npz b/outlook/data_correction/sample0081_step002.npz
new file mode 100644
index 0000000..69384d8
Binary files /dev/null and b/outlook/data_correction/sample0081_step002.npz differ
diff --git a/outlook/data_correction/sample0081_step003.npz b/outlook/data_correction/sample0081_step003.npz
new file mode 100644
index 0000000..a82b6bf
Binary files /dev/null and b/outlook/data_correction/sample0081_step003.npz differ
diff --git a/outlook/data_correction/sample0081_step004.npz b/outlook/data_correction/sample0081_step004.npz
new file mode 100644
index 0000000..3041a14
Binary files /dev/null and b/outlook/data_correction/sample0081_step004.npz differ
diff --git a/outlook/data_correction/sample0081_step005.npz b/outlook/data_correction/sample0081_step005.npz
new file mode 100644
index 0000000..de13319
Binary files /dev/null and b/outlook/data_correction/sample0081_step005.npz differ
diff --git a/outlook/data_correction/sample0081_step006.npz b/outlook/data_correction/sample0081_step006.npz
new file mode 100644
index 0000000..5dbc1b0
Binary files /dev/null and b/outlook/data_correction/sample0081_step006.npz differ
diff --git a/outlook/data_correction/sample0081_step007.npz b/outlook/data_correction/sample0081_step007.npz
new file mode 100644
index 0000000..7404577
Binary files /dev/null and b/outlook/data_correction/sample0081_step007.npz differ
diff --git a/outlook/data_correction/sample0081_step008.npz b/outlook/data_correction/sample0081_step008.npz
new file mode 100644
index 0000000..900c60b
Binary files /dev/null and b/outlook/data_correction/sample0081_step008.npz differ
diff --git a/outlook/data_correction/sample0081_step009.npz b/outlook/data_correction/sample0081_step009.npz
new file mode 100644
index 0000000..0b293bd
Binary files /dev/null and b/outlook/data_correction/sample0081_step009.npz differ
diff --git a/outlook/data_correction/sample0081_step010.npz b/outlook/data_correction/sample0081_step010.npz
new file mode 100644
index 0000000..ac6a5c3
Binary files /dev/null and b/outlook/data_correction/sample0081_step010.npz differ
diff --git a/outlook/data_correction/sample0081_step011.npz b/outlook/data_correction/sample0081_step011.npz
new file mode 100644
index 0000000..18d64f5
Binary files /dev/null and b/outlook/data_correction/sample0081_step011.npz differ
diff --git a/outlook/data_correction/sample0081_step012.npz b/outlook/data_correction/sample0081_step012.npz
new file mode 100644
index 0000000..7953ac6
Binary files /dev/null and b/outlook/data_correction/sample0081_step012.npz differ
diff --git a/outlook/data_correction/sample0081_step013.npz b/outlook/data_correction/sample0081_step013.npz
new file mode 100644
index 0000000..9229f29
Binary files /dev/null and b/outlook/data_correction/sample0081_step013.npz differ
diff --git a/outlook/data_correction/sample0081_step014.npz b/outlook/data_correction/sample0081_step014.npz
new file mode 100644
index 0000000..71e8416
Binary files /dev/null and b/outlook/data_correction/sample0081_step014.npz differ
diff --git a/outlook/data_correction/sample0081_step015.npz b/outlook/data_correction/sample0081_step015.npz
new file mode 100644
index 0000000..b605739
Binary files /dev/null and b/outlook/data_correction/sample0081_step015.npz differ
diff --git a/outlook/data_correction/sample0081_step016.npz b/outlook/data_correction/sample0081_step016.npz
new file mode 100644
index 0000000..10e0230
Binary files /dev/null and b/outlook/data_correction/sample0081_step016.npz differ
diff --git a/outlook/data_correction/sample0081_step017.npz b/outlook/data_correction/sample0081_step017.npz
new file mode 100644
index 0000000..a680d99
Binary files /dev/null and b/outlook/data_correction/sample0081_step017.npz differ
diff --git a/outlook/data_correction/sample0081_step018.npz b/outlook/data_correction/sample0081_step018.npz
new file mode 100644
index 0000000..fee19f0
Binary files /dev/null and b/outlook/data_correction/sample0081_step018.npz differ
diff --git a/outlook/data_correction/sample0081_step019.npz b/outlook/data_correction/sample0081_step019.npz
new file mode 100644
index 0000000..43caaea
Binary files /dev/null and b/outlook/data_correction/sample0081_step019.npz differ
diff --git a/outlook/data_correction/sample0082_step000.npz b/outlook/data_correction/sample0082_step000.npz
new file mode 100644
index 0000000..a5ed540
Binary files /dev/null and b/outlook/data_correction/sample0082_step000.npz differ
diff --git a/outlook/data_correction/sample0082_step001.npz b/outlook/data_correction/sample0082_step001.npz
new file mode 100644
index 0000000..88f076f
Binary files /dev/null and b/outlook/data_correction/sample0082_step001.npz differ
diff --git a/outlook/data_correction/sample0082_step002.npz b/outlook/data_correction/sample0082_step002.npz
new file mode 100644
index 0000000..06eb1f9
Binary files /dev/null and b/outlook/data_correction/sample0082_step002.npz differ
diff --git a/outlook/data_correction/sample0082_step003.npz b/outlook/data_correction/sample0082_step003.npz
new file mode 100644
index 0000000..3dd302a
Binary files /dev/null and b/outlook/data_correction/sample0082_step003.npz differ
diff --git a/outlook/data_correction/sample0082_step004.npz b/outlook/data_correction/sample0082_step004.npz
new file mode 100644
index 0000000..1f153d1
Binary files /dev/null and b/outlook/data_correction/sample0082_step004.npz differ
diff --git a/outlook/data_correction/sample0082_step005.npz b/outlook/data_correction/sample0082_step005.npz
new file mode 100644
index 0000000..1bc5207
Binary files /dev/null and b/outlook/data_correction/sample0082_step005.npz differ
diff --git a/outlook/data_correction/sample0082_step006.npz b/outlook/data_correction/sample0082_step006.npz
new file mode 100644
index 0000000..f325747
Binary files /dev/null and b/outlook/data_correction/sample0082_step006.npz differ
diff --git a/outlook/data_correction/sample0082_step007.npz b/outlook/data_correction/sample0082_step007.npz
new file mode 100644
index 0000000..767c670
Binary files /dev/null and b/outlook/data_correction/sample0082_step007.npz differ
diff --git a/outlook/data_correction/sample0082_step008.npz b/outlook/data_correction/sample0082_step008.npz
new file mode 100644
index 0000000..684f102
Binary files /dev/null and b/outlook/data_correction/sample0082_step008.npz differ
diff --git a/outlook/data_correction/sample0082_step009.npz b/outlook/data_correction/sample0082_step009.npz
new file mode 100644
index 0000000..321a231
Binary files /dev/null and b/outlook/data_correction/sample0082_step009.npz differ
diff --git a/outlook/data_correction/sample0082_step010.npz b/outlook/data_correction/sample0082_step010.npz
new file mode 100644
index 0000000..91040fb
Binary files /dev/null and b/outlook/data_correction/sample0082_step010.npz differ
diff --git a/outlook/data_correction/sample0082_step011.npz b/outlook/data_correction/sample0082_step011.npz
new file mode 100644
index 0000000..4d9b5b3
Binary files /dev/null and b/outlook/data_correction/sample0082_step011.npz differ
diff --git a/outlook/data_correction/sample0082_step012.npz b/outlook/data_correction/sample0082_step012.npz
new file mode 100644
index 0000000..fd0ffb8
Binary files /dev/null and b/outlook/data_correction/sample0082_step012.npz differ
diff --git a/outlook/data_correction/sample0082_step013.npz b/outlook/data_correction/sample0082_step013.npz
new file mode 100644
index 0000000..4808ac8
Binary files /dev/null and b/outlook/data_correction/sample0082_step013.npz differ
diff --git a/outlook/data_correction/sample0082_step014.npz b/outlook/data_correction/sample0082_step014.npz
new file mode 100644
index 0000000..4db2e75
Binary files /dev/null and b/outlook/data_correction/sample0082_step014.npz differ
diff --git a/outlook/data_correction/sample0082_step015.npz b/outlook/data_correction/sample0082_step015.npz
new file mode 100644
index 0000000..4d39847
Binary files /dev/null and b/outlook/data_correction/sample0082_step015.npz differ
diff --git a/outlook/data_correction/sample0082_step016.npz b/outlook/data_correction/sample0082_step016.npz
new file mode 100644
index 0000000..ffd0229
Binary files /dev/null and b/outlook/data_correction/sample0082_step016.npz differ
diff --git a/outlook/data_correction/sample0082_step017.npz b/outlook/data_correction/sample0082_step017.npz
new file mode 100644
index 0000000..8f86094
Binary files /dev/null and b/outlook/data_correction/sample0082_step017.npz differ
diff --git a/outlook/data_correction/sample0082_step018.npz b/outlook/data_correction/sample0082_step018.npz
new file mode 100644
index 0000000..8c05609
Binary files /dev/null and b/outlook/data_correction/sample0082_step018.npz differ
diff --git a/outlook/data_correction/sample0083_step000.npz b/outlook/data_correction/sample0083_step000.npz
new file mode 100644
index 0000000..9daca06
Binary files /dev/null and b/outlook/data_correction/sample0083_step000.npz differ
diff --git a/outlook/data_correction/sample0083_step001.npz b/outlook/data_correction/sample0083_step001.npz
new file mode 100644
index 0000000..7f42100
Binary files /dev/null and b/outlook/data_correction/sample0083_step001.npz differ
diff --git a/outlook/data_correction/sample0083_step002.npz b/outlook/data_correction/sample0083_step002.npz
new file mode 100644
index 0000000..5a01cec
Binary files /dev/null and b/outlook/data_correction/sample0083_step002.npz differ
diff --git a/outlook/data_correction/sample0083_step003.npz b/outlook/data_correction/sample0083_step003.npz
new file mode 100644
index 0000000..eeab2a7
Binary files /dev/null and b/outlook/data_correction/sample0083_step003.npz differ
diff --git a/outlook/data_correction/sample0083_step004.npz b/outlook/data_correction/sample0083_step004.npz
new file mode 100644
index 0000000..cbabd2e
Binary files /dev/null and b/outlook/data_correction/sample0083_step004.npz differ
diff --git a/outlook/data_correction/sample0083_step005.npz b/outlook/data_correction/sample0083_step005.npz
new file mode 100644
index 0000000..3ccbbb2
Binary files /dev/null and b/outlook/data_correction/sample0083_step005.npz differ
diff --git a/outlook/data_correction/sample0083_step006.npz b/outlook/data_correction/sample0083_step006.npz
new file mode 100644
index 0000000..c8fa997
Binary files /dev/null and b/outlook/data_correction/sample0083_step006.npz differ
diff --git a/outlook/data_correction/sample0083_step007.npz b/outlook/data_correction/sample0083_step007.npz
new file mode 100644
index 0000000..a3ae9ed
Binary files /dev/null and b/outlook/data_correction/sample0083_step007.npz differ
diff --git a/outlook/data_correction/sample0083_step008.npz b/outlook/data_correction/sample0083_step008.npz
new file mode 100644
index 0000000..6c14ac5
Binary files /dev/null and b/outlook/data_correction/sample0083_step008.npz differ
diff --git a/outlook/data_correction/sample0083_step009.npz b/outlook/data_correction/sample0083_step009.npz
new file mode 100644
index 0000000..b07e503
Binary files /dev/null and b/outlook/data_correction/sample0083_step009.npz differ
diff --git a/outlook/data_correction/sample0083_step010.npz b/outlook/data_correction/sample0083_step010.npz
new file mode 100644
index 0000000..70a9cf8
Binary files /dev/null and b/outlook/data_correction/sample0083_step010.npz differ
diff --git a/outlook/data_correction/sample0083_step011.npz b/outlook/data_correction/sample0083_step011.npz
new file mode 100644
index 0000000..6ea8bdb
Binary files /dev/null and b/outlook/data_correction/sample0083_step011.npz differ
diff --git a/outlook/data_correction/sample0083_step012.npz b/outlook/data_correction/sample0083_step012.npz
new file mode 100644
index 0000000..a8dde52
Binary files /dev/null and b/outlook/data_correction/sample0083_step012.npz differ
diff --git a/outlook/data_correction/sample0083_step013.npz b/outlook/data_correction/sample0083_step013.npz
new file mode 100644
index 0000000..928257d
Binary files /dev/null and b/outlook/data_correction/sample0083_step013.npz differ
diff --git a/outlook/data_correction/sample0083_step014.npz b/outlook/data_correction/sample0083_step014.npz
new file mode 100644
index 0000000..cc43e54
Binary files /dev/null and b/outlook/data_correction/sample0083_step014.npz differ
diff --git a/outlook/data_correction/sample0083_step015.npz b/outlook/data_correction/sample0083_step015.npz
new file mode 100644
index 0000000..992f764
Binary files /dev/null and b/outlook/data_correction/sample0083_step015.npz differ
diff --git a/outlook/data_correction/sample0083_step016.npz b/outlook/data_correction/sample0083_step016.npz
new file mode 100644
index 0000000..4f0d7d1
Binary files /dev/null and b/outlook/data_correction/sample0083_step016.npz differ
diff --git a/outlook/data_correction/sample0083_step017.npz b/outlook/data_correction/sample0083_step017.npz
new file mode 100644
index 0000000..73fae68
Binary files /dev/null and b/outlook/data_correction/sample0083_step017.npz differ
diff --git a/outlook/data_correction/sample0083_step018.npz b/outlook/data_correction/sample0083_step018.npz
new file mode 100644
index 0000000..8614a77
Binary files /dev/null and b/outlook/data_correction/sample0083_step018.npz differ
diff --git a/outlook/data_correction/sample0084_step000.npz b/outlook/data_correction/sample0084_step000.npz
new file mode 100644
index 0000000..197a79a
Binary files /dev/null and b/outlook/data_correction/sample0084_step000.npz differ
diff --git a/outlook/data_correction/sample0084_step001.npz b/outlook/data_correction/sample0084_step001.npz
new file mode 100644
index 0000000..a71bc2f
Binary files /dev/null and b/outlook/data_correction/sample0084_step001.npz differ
diff --git a/outlook/data_correction/sample0084_step002.npz b/outlook/data_correction/sample0084_step002.npz
new file mode 100644
index 0000000..75c545b
Binary files /dev/null and b/outlook/data_correction/sample0084_step002.npz differ
diff --git a/outlook/data_correction/sample0084_step003.npz b/outlook/data_correction/sample0084_step003.npz
new file mode 100644
index 0000000..519fbbc
Binary files /dev/null and b/outlook/data_correction/sample0084_step003.npz differ
diff --git a/outlook/data_correction/sample0084_step004.npz b/outlook/data_correction/sample0084_step004.npz
new file mode 100644
index 0000000..d33c33a
Binary files /dev/null and b/outlook/data_correction/sample0084_step004.npz differ
diff --git a/outlook/data_correction/sample0084_step005.npz b/outlook/data_correction/sample0084_step005.npz
new file mode 100644
index 0000000..9c68f99
Binary files /dev/null and b/outlook/data_correction/sample0084_step005.npz differ
diff --git a/outlook/data_correction/sample0084_step006.npz b/outlook/data_correction/sample0084_step006.npz
new file mode 100644
index 0000000..59d92ed
Binary files /dev/null and b/outlook/data_correction/sample0084_step006.npz differ
diff --git a/outlook/data_correction/sample0084_step007.npz b/outlook/data_correction/sample0084_step007.npz
new file mode 100644
index 0000000..284b3c1
Binary files /dev/null and b/outlook/data_correction/sample0084_step007.npz differ
diff --git a/outlook/data_correction/sample0084_step008.npz b/outlook/data_correction/sample0084_step008.npz
new file mode 100644
index 0000000..d727427
Binary files /dev/null and b/outlook/data_correction/sample0084_step008.npz differ
diff --git a/outlook/data_correction/sample0084_step009.npz b/outlook/data_correction/sample0084_step009.npz
new file mode 100644
index 0000000..7de3d22
Binary files /dev/null and b/outlook/data_correction/sample0084_step009.npz differ
diff --git a/outlook/data_correction/sample0084_step010.npz b/outlook/data_correction/sample0084_step010.npz
new file mode 100644
index 0000000..8693085
Binary files /dev/null and b/outlook/data_correction/sample0084_step010.npz differ
diff --git a/outlook/data_correction/sample0084_step011.npz b/outlook/data_correction/sample0084_step011.npz
new file mode 100644
index 0000000..3d2f42b
Binary files /dev/null and b/outlook/data_correction/sample0084_step011.npz differ
diff --git a/outlook/data_correction/sample0084_step012.npz b/outlook/data_correction/sample0084_step012.npz
new file mode 100644
index 0000000..9639897
Binary files /dev/null and b/outlook/data_correction/sample0084_step012.npz differ
diff --git a/outlook/data_correction/sample0084_step013.npz b/outlook/data_correction/sample0084_step013.npz
new file mode 100644
index 0000000..ede4d0a
Binary files /dev/null and b/outlook/data_correction/sample0084_step013.npz differ
diff --git a/outlook/data_correction/sample0084_step014.npz b/outlook/data_correction/sample0084_step014.npz
new file mode 100644
index 0000000..768152c
Binary files /dev/null and b/outlook/data_correction/sample0084_step014.npz differ
diff --git a/outlook/data_correction/sample0084_step015.npz b/outlook/data_correction/sample0084_step015.npz
new file mode 100644
index 0000000..9392418
Binary files /dev/null and b/outlook/data_correction/sample0084_step015.npz differ
diff --git a/outlook/data_correction/sample0084_step016.npz b/outlook/data_correction/sample0084_step016.npz
new file mode 100644
index 0000000..2a9cff9
Binary files /dev/null and b/outlook/data_correction/sample0084_step016.npz differ
diff --git a/outlook/data_correction/sample0084_step017.npz b/outlook/data_correction/sample0084_step017.npz
new file mode 100644
index 0000000..feedb42
Binary files /dev/null and b/outlook/data_correction/sample0084_step017.npz differ
diff --git a/outlook/data_correction/sample0084_step018.npz b/outlook/data_correction/sample0084_step018.npz
new file mode 100644
index 0000000..8fbc483
Binary files /dev/null and b/outlook/data_correction/sample0084_step018.npz differ
diff --git a/outlook/data_correction/sample0085_step000.npz b/outlook/data_correction/sample0085_step000.npz
new file mode 100644
index 0000000..6b50637
Binary files /dev/null and b/outlook/data_correction/sample0085_step000.npz differ
diff --git a/outlook/data_correction/sample0085_step001.npz b/outlook/data_correction/sample0085_step001.npz
new file mode 100644
index 0000000..e8742bf
Binary files /dev/null and b/outlook/data_correction/sample0085_step001.npz differ
diff --git a/outlook/data_correction/sample0085_step002.npz b/outlook/data_correction/sample0085_step002.npz
new file mode 100644
index 0000000..d7c405e
Binary files /dev/null and b/outlook/data_correction/sample0085_step002.npz differ
diff --git a/outlook/data_correction/sample0085_step003.npz b/outlook/data_correction/sample0085_step003.npz
new file mode 100644
index 0000000..2dd0776
Binary files /dev/null and b/outlook/data_correction/sample0085_step003.npz differ
diff --git a/outlook/data_correction/sample0085_step004.npz b/outlook/data_correction/sample0085_step004.npz
new file mode 100644
index 0000000..f6a8f20
Binary files /dev/null and b/outlook/data_correction/sample0085_step004.npz differ
diff --git a/outlook/data_correction/sample0085_step005.npz b/outlook/data_correction/sample0085_step005.npz
new file mode 100644
index 0000000..2998795
Binary files /dev/null and b/outlook/data_correction/sample0085_step005.npz differ
diff --git a/outlook/data_correction/sample0085_step006.npz b/outlook/data_correction/sample0085_step006.npz
new file mode 100644
index 0000000..3492c5e
Binary files /dev/null and b/outlook/data_correction/sample0085_step006.npz differ
diff --git a/outlook/data_correction/sample0085_step007.npz b/outlook/data_correction/sample0085_step007.npz
new file mode 100644
index 0000000..2d361c9
Binary files /dev/null and b/outlook/data_correction/sample0085_step007.npz differ
diff --git a/outlook/data_correction/sample0085_step008.npz b/outlook/data_correction/sample0085_step008.npz
new file mode 100644
index 0000000..aefe05b
Binary files /dev/null and b/outlook/data_correction/sample0085_step008.npz differ
diff --git a/outlook/data_correction/sample0085_step009.npz b/outlook/data_correction/sample0085_step009.npz
new file mode 100644
index 0000000..585ccb9
Binary files /dev/null and b/outlook/data_correction/sample0085_step009.npz differ
diff --git a/outlook/data_correction/sample0085_step010.npz b/outlook/data_correction/sample0085_step010.npz
new file mode 100644
index 0000000..9b7dc25
Binary files /dev/null and b/outlook/data_correction/sample0085_step010.npz differ
diff --git a/outlook/data_correction/sample0085_step011.npz b/outlook/data_correction/sample0085_step011.npz
new file mode 100644
index 0000000..ee8c041
Binary files /dev/null and b/outlook/data_correction/sample0085_step011.npz differ
diff --git a/outlook/data_correction/sample0085_step012.npz b/outlook/data_correction/sample0085_step012.npz
new file mode 100644
index 0000000..c258189
Binary files /dev/null and b/outlook/data_correction/sample0085_step012.npz differ
diff --git a/outlook/data_correction/sample0085_step013.npz b/outlook/data_correction/sample0085_step013.npz
new file mode 100644
index 0000000..a10a91d
Binary files /dev/null and b/outlook/data_correction/sample0085_step013.npz differ
diff --git a/outlook/data_correction/sample0085_step014.npz b/outlook/data_correction/sample0085_step014.npz
new file mode 100644
index 0000000..09b972c
Binary files /dev/null and b/outlook/data_correction/sample0085_step014.npz differ
diff --git a/outlook/data_correction/sample0085_step015.npz b/outlook/data_correction/sample0085_step015.npz
new file mode 100644
index 0000000..2c02f09
Binary files /dev/null and b/outlook/data_correction/sample0085_step015.npz differ
diff --git a/outlook/data_correction/sample0085_step016.npz b/outlook/data_correction/sample0085_step016.npz
new file mode 100644
index 0000000..eb1949e
Binary files /dev/null and b/outlook/data_correction/sample0085_step016.npz differ
diff --git a/outlook/data_correction/sample0085_step017.npz b/outlook/data_correction/sample0085_step017.npz
new file mode 100644
index 0000000..6ec33de
Binary files /dev/null and b/outlook/data_correction/sample0085_step017.npz differ
diff --git a/outlook/data_correction/sample0085_step018.npz b/outlook/data_correction/sample0085_step018.npz
new file mode 100644
index 0000000..da927da
Binary files /dev/null and b/outlook/data_correction/sample0085_step018.npz differ
diff --git a/outlook/data_correction/sample0086_step000.npz b/outlook/data_correction/sample0086_step000.npz
new file mode 100644
index 0000000..7669e15
Binary files /dev/null and b/outlook/data_correction/sample0086_step000.npz differ
diff --git a/outlook/data_correction/sample0086_step001.npz b/outlook/data_correction/sample0086_step001.npz
new file mode 100644
index 0000000..9df4429
Binary files /dev/null and b/outlook/data_correction/sample0086_step001.npz differ
diff --git a/outlook/data_correction/sample0086_step002.npz b/outlook/data_correction/sample0086_step002.npz
new file mode 100644
index 0000000..5bdba66
Binary files /dev/null and b/outlook/data_correction/sample0086_step002.npz differ
diff --git a/outlook/data_correction/sample0086_step003.npz b/outlook/data_correction/sample0086_step003.npz
new file mode 100644
index 0000000..4addefe
Binary files /dev/null and b/outlook/data_correction/sample0086_step003.npz differ
diff --git a/outlook/data_correction/sample0086_step004.npz b/outlook/data_correction/sample0086_step004.npz
new file mode 100644
index 0000000..7632031
Binary files /dev/null and b/outlook/data_correction/sample0086_step004.npz differ
diff --git a/outlook/data_correction/sample0086_step005.npz b/outlook/data_correction/sample0086_step005.npz
new file mode 100644
index 0000000..5d1c16d
Binary files /dev/null and b/outlook/data_correction/sample0086_step005.npz differ
diff --git a/outlook/data_correction/sample0086_step006.npz b/outlook/data_correction/sample0086_step006.npz
new file mode 100644
index 0000000..3166959
Binary files /dev/null and b/outlook/data_correction/sample0086_step006.npz differ
diff --git a/outlook/data_correction/sample0086_step007.npz b/outlook/data_correction/sample0086_step007.npz
new file mode 100644
index 0000000..d8e308f
Binary files /dev/null and b/outlook/data_correction/sample0086_step007.npz differ
diff --git a/outlook/data_correction/sample0086_step008.npz b/outlook/data_correction/sample0086_step008.npz
new file mode 100644
index 0000000..65a7342
Binary files /dev/null and b/outlook/data_correction/sample0086_step008.npz differ
diff --git a/outlook/data_correction/sample0086_step009.npz b/outlook/data_correction/sample0086_step009.npz
new file mode 100644
index 0000000..4fee2f3
Binary files /dev/null and b/outlook/data_correction/sample0086_step009.npz differ
diff --git a/outlook/data_correction/sample0086_step010.npz b/outlook/data_correction/sample0086_step010.npz
new file mode 100644
index 0000000..b84f7b6
Binary files /dev/null and b/outlook/data_correction/sample0086_step010.npz differ
diff --git a/outlook/data_correction/sample0086_step011.npz b/outlook/data_correction/sample0086_step011.npz
new file mode 100644
index 0000000..cb54735
Binary files /dev/null and b/outlook/data_correction/sample0086_step011.npz differ
diff --git a/outlook/data_correction/sample0086_step012.npz b/outlook/data_correction/sample0086_step012.npz
new file mode 100644
index 0000000..e8c8a58
Binary files /dev/null and b/outlook/data_correction/sample0086_step012.npz differ
diff --git a/outlook/data_correction/sample0086_step013.npz b/outlook/data_correction/sample0086_step013.npz
new file mode 100644
index 0000000..0e335b6
Binary files /dev/null and b/outlook/data_correction/sample0086_step013.npz differ
diff --git a/outlook/data_correction/sample0086_step014.npz b/outlook/data_correction/sample0086_step014.npz
new file mode 100644
index 0000000..e5380b1
Binary files /dev/null and b/outlook/data_correction/sample0086_step014.npz differ
diff --git a/outlook/data_correction/sample0086_step015.npz b/outlook/data_correction/sample0086_step015.npz
new file mode 100644
index 0000000..a009473
Binary files /dev/null and b/outlook/data_correction/sample0086_step015.npz differ
diff --git a/outlook/data_correction/sample0086_step016.npz b/outlook/data_correction/sample0086_step016.npz
new file mode 100644
index 0000000..89a535a
Binary files /dev/null and b/outlook/data_correction/sample0086_step016.npz differ
diff --git a/outlook/data_correction/sample0086_step017.npz b/outlook/data_correction/sample0086_step017.npz
new file mode 100644
index 0000000..1a59300
Binary files /dev/null and b/outlook/data_correction/sample0086_step017.npz differ
diff --git a/outlook/data_correction/sample0086_step018.npz b/outlook/data_correction/sample0086_step018.npz
new file mode 100644
index 0000000..50c76e4
Binary files /dev/null and b/outlook/data_correction/sample0086_step018.npz differ
diff --git a/outlook/data_correction/sample0087_step000.npz b/outlook/data_correction/sample0087_step000.npz
new file mode 100644
index 0000000..51474d5
Binary files /dev/null and b/outlook/data_correction/sample0087_step000.npz differ
diff --git a/outlook/data_correction/sample0087_step001.npz b/outlook/data_correction/sample0087_step001.npz
new file mode 100644
index 0000000..e16dafe
Binary files /dev/null and b/outlook/data_correction/sample0087_step001.npz differ
diff --git a/outlook/data_correction/sample0087_step002.npz b/outlook/data_correction/sample0087_step002.npz
new file mode 100644
index 0000000..315d386
Binary files /dev/null and b/outlook/data_correction/sample0087_step002.npz differ
diff --git a/outlook/data_correction/sample0087_step003.npz b/outlook/data_correction/sample0087_step003.npz
new file mode 100644
index 0000000..5dc89a6
Binary files /dev/null and b/outlook/data_correction/sample0087_step003.npz differ
diff --git a/outlook/data_correction/sample0087_step004.npz b/outlook/data_correction/sample0087_step004.npz
new file mode 100644
index 0000000..e893e76
Binary files /dev/null and b/outlook/data_correction/sample0087_step004.npz differ
diff --git a/outlook/data_correction/sample0087_step005.npz b/outlook/data_correction/sample0087_step005.npz
new file mode 100644
index 0000000..2a10afa
Binary files /dev/null and b/outlook/data_correction/sample0087_step005.npz differ
diff --git a/outlook/data_correction/sample0087_step006.npz b/outlook/data_correction/sample0087_step006.npz
new file mode 100644
index 0000000..b5ffc2c
Binary files /dev/null and b/outlook/data_correction/sample0087_step006.npz differ
diff --git a/outlook/data_correction/sample0087_step007.npz b/outlook/data_correction/sample0087_step007.npz
new file mode 100644
index 0000000..a501af7
Binary files /dev/null and b/outlook/data_correction/sample0087_step007.npz differ
diff --git a/outlook/data_correction/sample0087_step008.npz b/outlook/data_correction/sample0087_step008.npz
new file mode 100644
index 0000000..0a4546c
Binary files /dev/null and b/outlook/data_correction/sample0087_step008.npz differ
diff --git a/outlook/data_correction/sample0087_step009.npz b/outlook/data_correction/sample0087_step009.npz
new file mode 100644
index 0000000..dc371a2
Binary files /dev/null and b/outlook/data_correction/sample0087_step009.npz differ
diff --git a/outlook/data_correction/sample0087_step010.npz b/outlook/data_correction/sample0087_step010.npz
new file mode 100644
index 0000000..0c9e2ef
Binary files /dev/null and b/outlook/data_correction/sample0087_step010.npz differ
diff --git a/outlook/data_correction/sample0087_step011.npz b/outlook/data_correction/sample0087_step011.npz
new file mode 100644
index 0000000..cbbbb8c
Binary files /dev/null and b/outlook/data_correction/sample0087_step011.npz differ
diff --git a/outlook/data_correction/sample0087_step012.npz b/outlook/data_correction/sample0087_step012.npz
new file mode 100644
index 0000000..5494c15
Binary files /dev/null and b/outlook/data_correction/sample0087_step012.npz differ
diff --git a/outlook/data_correction/sample0087_step013.npz b/outlook/data_correction/sample0087_step013.npz
new file mode 100644
index 0000000..293d5bf
Binary files /dev/null and b/outlook/data_correction/sample0087_step013.npz differ
diff --git a/outlook/data_correction/sample0087_step014.npz b/outlook/data_correction/sample0087_step014.npz
new file mode 100644
index 0000000..7931251
Binary files /dev/null and b/outlook/data_correction/sample0087_step014.npz differ
diff --git a/outlook/data_correction/sample0087_step015.npz b/outlook/data_correction/sample0087_step015.npz
new file mode 100644
index 0000000..5b26e2b
Binary files /dev/null and b/outlook/data_correction/sample0087_step015.npz differ
diff --git a/outlook/data_correction/sample0087_step016.npz b/outlook/data_correction/sample0087_step016.npz
new file mode 100644
index 0000000..e1b8ff7
Binary files /dev/null and b/outlook/data_correction/sample0087_step016.npz differ
diff --git a/outlook/data_correction/sample0087_step017.npz b/outlook/data_correction/sample0087_step017.npz
new file mode 100644
index 0000000..86b6148
Binary files /dev/null and b/outlook/data_correction/sample0087_step017.npz differ
diff --git a/outlook/data_correction/sample0087_step018.npz b/outlook/data_correction/sample0087_step018.npz
new file mode 100644
index 0000000..b52ee48
Binary files /dev/null and b/outlook/data_correction/sample0087_step018.npz differ
diff --git a/outlook/data_correction/sample0088_step000.npz b/outlook/data_correction/sample0088_step000.npz
new file mode 100644
index 0000000..25053d6
Binary files /dev/null and b/outlook/data_correction/sample0088_step000.npz differ
diff --git a/outlook/data_correction/sample0088_step001.npz b/outlook/data_correction/sample0088_step001.npz
new file mode 100644
index 0000000..3afff7b
Binary files /dev/null and b/outlook/data_correction/sample0088_step001.npz differ
diff --git a/outlook/data_correction/sample0088_step002.npz b/outlook/data_correction/sample0088_step002.npz
new file mode 100644
index 0000000..369397f
Binary files /dev/null and b/outlook/data_correction/sample0088_step002.npz differ
diff --git a/outlook/data_correction/sample0088_step003.npz b/outlook/data_correction/sample0088_step003.npz
new file mode 100644
index 0000000..f0f6096
Binary files /dev/null and b/outlook/data_correction/sample0088_step003.npz differ
diff --git a/outlook/data_correction/sample0088_step004.npz b/outlook/data_correction/sample0088_step004.npz
new file mode 100644
index 0000000..f460660
Binary files /dev/null and b/outlook/data_correction/sample0088_step004.npz differ
diff --git a/outlook/data_correction/sample0088_step005.npz b/outlook/data_correction/sample0088_step005.npz
new file mode 100644
index 0000000..9c891f6
Binary files /dev/null and b/outlook/data_correction/sample0088_step005.npz differ
diff --git a/outlook/data_correction/sample0088_step006.npz b/outlook/data_correction/sample0088_step006.npz
new file mode 100644
index 0000000..21b5eb5
Binary files /dev/null and b/outlook/data_correction/sample0088_step006.npz differ
diff --git a/outlook/data_correction/sample0088_step007.npz b/outlook/data_correction/sample0088_step007.npz
new file mode 100644
index 0000000..633067c
Binary files /dev/null and b/outlook/data_correction/sample0088_step007.npz differ
diff --git a/outlook/data_correction/sample0088_step008.npz b/outlook/data_correction/sample0088_step008.npz
new file mode 100644
index 0000000..1060846
Binary files /dev/null and b/outlook/data_correction/sample0088_step008.npz differ
diff --git a/outlook/data_correction/sample0088_step009.npz b/outlook/data_correction/sample0088_step009.npz
new file mode 100644
index 0000000..01b70a3
Binary files /dev/null and b/outlook/data_correction/sample0088_step009.npz differ
diff --git a/outlook/data_correction/sample0088_step010.npz b/outlook/data_correction/sample0088_step010.npz
new file mode 100644
index 0000000..1b1be9c
Binary files /dev/null and b/outlook/data_correction/sample0088_step010.npz differ
diff --git a/outlook/data_correction/sample0088_step011.npz b/outlook/data_correction/sample0088_step011.npz
new file mode 100644
index 0000000..9f22f91
Binary files /dev/null and b/outlook/data_correction/sample0088_step011.npz differ
diff --git a/outlook/data_correction/sample0088_step012.npz b/outlook/data_correction/sample0088_step012.npz
new file mode 100644
index 0000000..8f93190
Binary files /dev/null and b/outlook/data_correction/sample0088_step012.npz differ
diff --git a/outlook/data_correction/sample0088_step013.npz b/outlook/data_correction/sample0088_step013.npz
new file mode 100644
index 0000000..0f7b52b
Binary files /dev/null and b/outlook/data_correction/sample0088_step013.npz differ
diff --git a/outlook/data_correction/sample0088_step014.npz b/outlook/data_correction/sample0088_step014.npz
new file mode 100644
index 0000000..f2b71af
Binary files /dev/null and b/outlook/data_correction/sample0088_step014.npz differ
diff --git a/outlook/data_correction/sample0088_step015.npz b/outlook/data_correction/sample0088_step015.npz
new file mode 100644
index 0000000..acda7e9
Binary files /dev/null and b/outlook/data_correction/sample0088_step015.npz differ
diff --git a/outlook/data_correction/sample0088_step016.npz b/outlook/data_correction/sample0088_step016.npz
new file mode 100644
index 0000000..f2122d9
Binary files /dev/null and b/outlook/data_correction/sample0088_step016.npz differ
diff --git a/outlook/data_correction/sample0088_step017.npz b/outlook/data_correction/sample0088_step017.npz
new file mode 100644
index 0000000..f31f802
Binary files /dev/null and b/outlook/data_correction/sample0088_step017.npz differ
diff --git a/outlook/data_correction/sample0089_step000.npz b/outlook/data_correction/sample0089_step000.npz
new file mode 100644
index 0000000..98afb1c
Binary files /dev/null and b/outlook/data_correction/sample0089_step000.npz differ
diff --git a/outlook/data_correction/sample0089_step001.npz b/outlook/data_correction/sample0089_step001.npz
new file mode 100644
index 0000000..e3c0a8c
Binary files /dev/null and b/outlook/data_correction/sample0089_step001.npz differ
diff --git a/outlook/data_correction/sample0089_step002.npz b/outlook/data_correction/sample0089_step002.npz
new file mode 100644
index 0000000..7e3cde8
Binary files /dev/null and b/outlook/data_correction/sample0089_step002.npz differ
diff --git a/outlook/data_correction/sample0089_step003.npz b/outlook/data_correction/sample0089_step003.npz
new file mode 100644
index 0000000..b434ad9
Binary files /dev/null and b/outlook/data_correction/sample0089_step003.npz differ
diff --git a/outlook/data_correction/sample0089_step004.npz b/outlook/data_correction/sample0089_step004.npz
new file mode 100644
index 0000000..ec0f0b3
Binary files /dev/null and b/outlook/data_correction/sample0089_step004.npz differ
diff --git a/outlook/data_correction/sample0089_step005.npz b/outlook/data_correction/sample0089_step005.npz
new file mode 100644
index 0000000..8793373
Binary files /dev/null and b/outlook/data_correction/sample0089_step005.npz differ
diff --git a/outlook/data_correction/sample0089_step006.npz b/outlook/data_correction/sample0089_step006.npz
new file mode 100644
index 0000000..f75ad67
Binary files /dev/null and b/outlook/data_correction/sample0089_step006.npz differ
diff --git a/outlook/data_correction/sample0089_step007.npz b/outlook/data_correction/sample0089_step007.npz
new file mode 100644
index 0000000..f3a5d29
Binary files /dev/null and b/outlook/data_correction/sample0089_step007.npz differ
diff --git a/outlook/data_correction/sample0089_step008.npz b/outlook/data_correction/sample0089_step008.npz
new file mode 100644
index 0000000..3584365
Binary files /dev/null and b/outlook/data_correction/sample0089_step008.npz differ
diff --git a/outlook/data_correction/sample0089_step009.npz b/outlook/data_correction/sample0089_step009.npz
new file mode 100644
index 0000000..e4fdcde
Binary files /dev/null and b/outlook/data_correction/sample0089_step009.npz differ
diff --git a/outlook/data_correction/sample0089_step010.npz b/outlook/data_correction/sample0089_step010.npz
new file mode 100644
index 0000000..78f2712
Binary files /dev/null and b/outlook/data_correction/sample0089_step010.npz differ
diff --git a/outlook/data_correction/sample0089_step011.npz b/outlook/data_correction/sample0089_step011.npz
new file mode 100644
index 0000000..8deba89
Binary files /dev/null and b/outlook/data_correction/sample0089_step011.npz differ
diff --git a/outlook/data_correction/sample0089_step012.npz b/outlook/data_correction/sample0089_step012.npz
new file mode 100644
index 0000000..ec8a35d
Binary files /dev/null and b/outlook/data_correction/sample0089_step012.npz differ
diff --git a/outlook/data_correction/sample0089_step013.npz b/outlook/data_correction/sample0089_step013.npz
new file mode 100644
index 0000000..67013f5
Binary files /dev/null and b/outlook/data_correction/sample0089_step013.npz differ
diff --git a/outlook/data_correction/sample0089_step014.npz b/outlook/data_correction/sample0089_step014.npz
new file mode 100644
index 0000000..2f9fc47
Binary files /dev/null and b/outlook/data_correction/sample0089_step014.npz differ
diff --git a/outlook/data_correction/sample0089_step015.npz b/outlook/data_correction/sample0089_step015.npz
new file mode 100644
index 0000000..81a2131
Binary files /dev/null and b/outlook/data_correction/sample0089_step015.npz differ
diff --git a/outlook/data_correction/sample0089_step016.npz b/outlook/data_correction/sample0089_step016.npz
new file mode 100644
index 0000000..19e4cb5
Binary files /dev/null and b/outlook/data_correction/sample0089_step016.npz differ
diff --git a/outlook/data_correction/sample0089_step017.npz b/outlook/data_correction/sample0089_step017.npz
new file mode 100644
index 0000000..55c48a1
Binary files /dev/null and b/outlook/data_correction/sample0089_step017.npz differ
diff --git a/outlook/data_correction/sample0090_step000.npz b/outlook/data_correction/sample0090_step000.npz
new file mode 100644
index 0000000..8185df2
Binary files /dev/null and b/outlook/data_correction/sample0090_step000.npz differ
diff --git a/outlook/data_correction/sample0090_step001.npz b/outlook/data_correction/sample0090_step001.npz
new file mode 100644
index 0000000..1506df1
Binary files /dev/null and b/outlook/data_correction/sample0090_step001.npz differ
diff --git a/outlook/data_correction/sample0090_step002.npz b/outlook/data_correction/sample0090_step002.npz
new file mode 100644
index 0000000..5735379
Binary files /dev/null and b/outlook/data_correction/sample0090_step002.npz differ
diff --git a/outlook/data_correction/sample0090_step003.npz b/outlook/data_correction/sample0090_step003.npz
new file mode 100644
index 0000000..08ffaac
Binary files /dev/null and b/outlook/data_correction/sample0090_step003.npz differ
diff --git a/outlook/data_correction/sample0090_step004.npz b/outlook/data_correction/sample0090_step004.npz
new file mode 100644
index 0000000..1b2fcd7
Binary files /dev/null and b/outlook/data_correction/sample0090_step004.npz differ
diff --git a/outlook/data_correction/sample0090_step005.npz b/outlook/data_correction/sample0090_step005.npz
new file mode 100644
index 0000000..76e71c4
Binary files /dev/null and b/outlook/data_correction/sample0090_step005.npz differ
diff --git a/outlook/data_correction/sample0090_step006.npz b/outlook/data_correction/sample0090_step006.npz
new file mode 100644
index 0000000..1ae040a
Binary files /dev/null and b/outlook/data_correction/sample0090_step006.npz differ
diff --git a/outlook/data_correction/sample0090_step007.npz b/outlook/data_correction/sample0090_step007.npz
new file mode 100644
index 0000000..f8d5e9a
Binary files /dev/null and b/outlook/data_correction/sample0090_step007.npz differ
diff --git a/outlook/data_correction/sample0090_step008.npz b/outlook/data_correction/sample0090_step008.npz
new file mode 100644
index 0000000..4982320
Binary files /dev/null and b/outlook/data_correction/sample0090_step008.npz differ
diff --git a/outlook/data_correction/sample0090_step009.npz b/outlook/data_correction/sample0090_step009.npz
new file mode 100644
index 0000000..ee3a1dd
Binary files /dev/null and b/outlook/data_correction/sample0090_step009.npz differ
diff --git a/outlook/data_correction/sample0090_step010.npz b/outlook/data_correction/sample0090_step010.npz
new file mode 100644
index 0000000..4dd9437
Binary files /dev/null and b/outlook/data_correction/sample0090_step010.npz differ
diff --git a/outlook/data_correction/sample0090_step011.npz b/outlook/data_correction/sample0090_step011.npz
new file mode 100644
index 0000000..24af697
Binary files /dev/null and b/outlook/data_correction/sample0090_step011.npz differ
diff --git a/outlook/data_correction/sample0090_step012.npz b/outlook/data_correction/sample0090_step012.npz
new file mode 100644
index 0000000..bec2ea0
Binary files /dev/null and b/outlook/data_correction/sample0090_step012.npz differ
diff --git a/outlook/data_correction/sample0090_step013.npz b/outlook/data_correction/sample0090_step013.npz
new file mode 100644
index 0000000..2e88a0e
Binary files /dev/null and b/outlook/data_correction/sample0090_step013.npz differ
diff --git a/outlook/data_correction/sample0090_step014.npz b/outlook/data_correction/sample0090_step014.npz
new file mode 100644
index 0000000..d3ffcc5
Binary files /dev/null and b/outlook/data_correction/sample0090_step014.npz differ
diff --git a/outlook/data_correction/sample0090_step015.npz b/outlook/data_correction/sample0090_step015.npz
new file mode 100644
index 0000000..531d9c7
Binary files /dev/null and b/outlook/data_correction/sample0090_step015.npz differ
diff --git a/outlook/data_correction/sample0090_step016.npz b/outlook/data_correction/sample0090_step016.npz
new file mode 100644
index 0000000..5c31fa9
Binary files /dev/null and b/outlook/data_correction/sample0090_step016.npz differ
diff --git a/outlook/data_correction/sample0090_step017.npz b/outlook/data_correction/sample0090_step017.npz
new file mode 100644
index 0000000..c11e161
Binary files /dev/null and b/outlook/data_correction/sample0090_step017.npz differ
diff --git a/outlook/data_correction/sample0090_step018.npz b/outlook/data_correction/sample0090_step018.npz
new file mode 100644
index 0000000..7976fe0
Binary files /dev/null and b/outlook/data_correction/sample0090_step018.npz differ
diff --git a/outlook/data_correction/sample0091_step000.npz b/outlook/data_correction/sample0091_step000.npz
new file mode 100644
index 0000000..4e14767
Binary files /dev/null and b/outlook/data_correction/sample0091_step000.npz differ
diff --git a/outlook/data_correction/sample0091_step001.npz b/outlook/data_correction/sample0091_step001.npz
new file mode 100644
index 0000000..379657f
Binary files /dev/null and b/outlook/data_correction/sample0091_step001.npz differ
diff --git a/outlook/data_correction/sample0091_step002.npz b/outlook/data_correction/sample0091_step002.npz
new file mode 100644
index 0000000..3fded33
Binary files /dev/null and b/outlook/data_correction/sample0091_step002.npz differ
diff --git a/outlook/data_correction/sample0091_step003.npz b/outlook/data_correction/sample0091_step003.npz
new file mode 100644
index 0000000..168b545
Binary files /dev/null and b/outlook/data_correction/sample0091_step003.npz differ
diff --git a/outlook/data_correction/sample0091_step004.npz b/outlook/data_correction/sample0091_step004.npz
new file mode 100644
index 0000000..88408f2
Binary files /dev/null and b/outlook/data_correction/sample0091_step004.npz differ
diff --git a/outlook/data_correction/sample0091_step005.npz b/outlook/data_correction/sample0091_step005.npz
new file mode 100644
index 0000000..86163f4
Binary files /dev/null and b/outlook/data_correction/sample0091_step005.npz differ
diff --git a/outlook/data_correction/sample0091_step006.npz b/outlook/data_correction/sample0091_step006.npz
new file mode 100644
index 0000000..9bc2fec
Binary files /dev/null and b/outlook/data_correction/sample0091_step006.npz differ
diff --git a/outlook/data_correction/sample0091_step007.npz b/outlook/data_correction/sample0091_step007.npz
new file mode 100644
index 0000000..6150d4c
Binary files /dev/null and b/outlook/data_correction/sample0091_step007.npz differ
diff --git a/outlook/data_correction/sample0091_step008.npz b/outlook/data_correction/sample0091_step008.npz
new file mode 100644
index 0000000..ec05678
Binary files /dev/null and b/outlook/data_correction/sample0091_step008.npz differ
diff --git a/outlook/data_correction/sample0091_step009.npz b/outlook/data_correction/sample0091_step009.npz
new file mode 100644
index 0000000..a6aeea1
Binary files /dev/null and b/outlook/data_correction/sample0091_step009.npz differ
diff --git a/outlook/data_correction/sample0091_step010.npz b/outlook/data_correction/sample0091_step010.npz
new file mode 100644
index 0000000..4ea18db
Binary files /dev/null and b/outlook/data_correction/sample0091_step010.npz differ
diff --git a/outlook/data_correction/sample0091_step011.npz b/outlook/data_correction/sample0091_step011.npz
new file mode 100644
index 0000000..a8939b5
Binary files /dev/null and b/outlook/data_correction/sample0091_step011.npz differ
diff --git a/outlook/data_correction/sample0091_step012.npz b/outlook/data_correction/sample0091_step012.npz
new file mode 100644
index 0000000..6820234
Binary files /dev/null and b/outlook/data_correction/sample0091_step012.npz differ
diff --git a/outlook/data_correction/sample0091_step013.npz b/outlook/data_correction/sample0091_step013.npz
new file mode 100644
index 0000000..f159c78
Binary files /dev/null and b/outlook/data_correction/sample0091_step013.npz differ
diff --git a/outlook/data_correction/sample0091_step014.npz b/outlook/data_correction/sample0091_step014.npz
new file mode 100644
index 0000000..a69722d
Binary files /dev/null and b/outlook/data_correction/sample0091_step014.npz differ
diff --git a/outlook/data_correction/sample0091_step015.npz b/outlook/data_correction/sample0091_step015.npz
new file mode 100644
index 0000000..a081fda
Binary files /dev/null and b/outlook/data_correction/sample0091_step015.npz differ
diff --git a/outlook/data_correction/sample0091_step016.npz b/outlook/data_correction/sample0091_step016.npz
new file mode 100644
index 0000000..59c673b
Binary files /dev/null and b/outlook/data_correction/sample0091_step016.npz differ
diff --git a/outlook/data_correction/sample0091_step017.npz b/outlook/data_correction/sample0091_step017.npz
new file mode 100644
index 0000000..130934a
Binary files /dev/null and b/outlook/data_correction/sample0091_step017.npz differ
diff --git a/outlook/data_correction/sample0091_step018.npz b/outlook/data_correction/sample0091_step018.npz
new file mode 100644
index 0000000..6717649
Binary files /dev/null and b/outlook/data_correction/sample0091_step018.npz differ
diff --git a/outlook/data_correction/sample0092_step000.npz b/outlook/data_correction/sample0092_step000.npz
new file mode 100644
index 0000000..24f48d9
Binary files /dev/null and b/outlook/data_correction/sample0092_step000.npz differ
diff --git a/outlook/data_correction/sample0092_step001.npz b/outlook/data_correction/sample0092_step001.npz
new file mode 100644
index 0000000..be88dcf
Binary files /dev/null and b/outlook/data_correction/sample0092_step001.npz differ
diff --git a/outlook/data_correction/sample0092_step002.npz b/outlook/data_correction/sample0092_step002.npz
new file mode 100644
index 0000000..7a058c1
Binary files /dev/null and b/outlook/data_correction/sample0092_step002.npz differ
diff --git a/outlook/data_correction/sample0092_step003.npz b/outlook/data_correction/sample0092_step003.npz
new file mode 100644
index 0000000..15a7f3d
Binary files /dev/null and b/outlook/data_correction/sample0092_step003.npz differ
diff --git a/outlook/data_correction/sample0092_step004.npz b/outlook/data_correction/sample0092_step004.npz
new file mode 100644
index 0000000..e009879
Binary files /dev/null and b/outlook/data_correction/sample0092_step004.npz differ
diff --git a/outlook/data_correction/sample0092_step005.npz b/outlook/data_correction/sample0092_step005.npz
new file mode 100644
index 0000000..0fe471f
Binary files /dev/null and b/outlook/data_correction/sample0092_step005.npz differ
diff --git a/outlook/data_correction/sample0092_step006.npz b/outlook/data_correction/sample0092_step006.npz
new file mode 100644
index 0000000..3c2042a
Binary files /dev/null and b/outlook/data_correction/sample0092_step006.npz differ
diff --git a/outlook/data_correction/sample0092_step007.npz b/outlook/data_correction/sample0092_step007.npz
new file mode 100644
index 0000000..7d2c8ce
Binary files /dev/null and b/outlook/data_correction/sample0092_step007.npz differ
diff --git a/outlook/data_correction/sample0092_step008.npz b/outlook/data_correction/sample0092_step008.npz
new file mode 100644
index 0000000..79406e4
Binary files /dev/null and b/outlook/data_correction/sample0092_step008.npz differ
diff --git a/outlook/data_correction/sample0092_step009.npz b/outlook/data_correction/sample0092_step009.npz
new file mode 100644
index 0000000..fe35d84
Binary files /dev/null and b/outlook/data_correction/sample0092_step009.npz differ
diff --git a/outlook/data_correction/sample0092_step010.npz b/outlook/data_correction/sample0092_step010.npz
new file mode 100644
index 0000000..766134d
Binary files /dev/null and b/outlook/data_correction/sample0092_step010.npz differ
diff --git a/outlook/data_correction/sample0092_step011.npz b/outlook/data_correction/sample0092_step011.npz
new file mode 100644
index 0000000..a0d6664
Binary files /dev/null and b/outlook/data_correction/sample0092_step011.npz differ
diff --git a/outlook/data_correction/sample0092_step012.npz b/outlook/data_correction/sample0092_step012.npz
new file mode 100644
index 0000000..ae643ca
Binary files /dev/null and b/outlook/data_correction/sample0092_step012.npz differ
diff --git a/outlook/data_correction/sample0092_step013.npz b/outlook/data_correction/sample0092_step013.npz
new file mode 100644
index 0000000..58e6283
Binary files /dev/null and b/outlook/data_correction/sample0092_step013.npz differ
diff --git a/outlook/data_correction/sample0092_step014.npz b/outlook/data_correction/sample0092_step014.npz
new file mode 100644
index 0000000..cc9c506
Binary files /dev/null and b/outlook/data_correction/sample0092_step014.npz differ
diff --git a/outlook/data_correction/sample0092_step015.npz b/outlook/data_correction/sample0092_step015.npz
new file mode 100644
index 0000000..6fa3845
Binary files /dev/null and b/outlook/data_correction/sample0092_step015.npz differ
diff --git a/outlook/data_correction/sample0092_step016.npz b/outlook/data_correction/sample0092_step016.npz
new file mode 100644
index 0000000..a2ad372
Binary files /dev/null and b/outlook/data_correction/sample0092_step016.npz differ
diff --git a/outlook/data_correction/sample0092_step017.npz b/outlook/data_correction/sample0092_step017.npz
new file mode 100644
index 0000000..eea92f7
Binary files /dev/null and b/outlook/data_correction/sample0092_step017.npz differ
diff --git a/outlook/data_correction/sample0092_step018.npz b/outlook/data_correction/sample0092_step018.npz
new file mode 100644
index 0000000..b2c07c5
Binary files /dev/null and b/outlook/data_correction/sample0092_step018.npz differ
diff --git a/outlook/data_correction/sample0093_step000.npz b/outlook/data_correction/sample0093_step000.npz
new file mode 100644
index 0000000..a98183d
Binary files /dev/null and b/outlook/data_correction/sample0093_step000.npz differ
diff --git a/outlook/data_correction/sample0093_step001.npz b/outlook/data_correction/sample0093_step001.npz
new file mode 100644
index 0000000..97af737
Binary files /dev/null and b/outlook/data_correction/sample0093_step001.npz differ
diff --git a/outlook/data_correction/sample0093_step002.npz b/outlook/data_correction/sample0093_step002.npz
new file mode 100644
index 0000000..ebe467c
Binary files /dev/null and b/outlook/data_correction/sample0093_step002.npz differ
diff --git a/outlook/data_correction/sample0093_step003.npz b/outlook/data_correction/sample0093_step003.npz
new file mode 100644
index 0000000..2050f10
Binary files /dev/null and b/outlook/data_correction/sample0093_step003.npz differ
diff --git a/outlook/data_correction/sample0093_step004.npz b/outlook/data_correction/sample0093_step004.npz
new file mode 100644
index 0000000..6c08b6e
Binary files /dev/null and b/outlook/data_correction/sample0093_step004.npz differ
diff --git a/outlook/data_correction/sample0093_step005.npz b/outlook/data_correction/sample0093_step005.npz
new file mode 100644
index 0000000..88f9c1a
Binary files /dev/null and b/outlook/data_correction/sample0093_step005.npz differ
diff --git a/outlook/data_correction/sample0093_step006.npz b/outlook/data_correction/sample0093_step006.npz
new file mode 100644
index 0000000..76cacb7
Binary files /dev/null and b/outlook/data_correction/sample0093_step006.npz differ
diff --git a/outlook/data_correction/sample0093_step007.npz b/outlook/data_correction/sample0093_step007.npz
new file mode 100644
index 0000000..8d461e6
Binary files /dev/null and b/outlook/data_correction/sample0093_step007.npz differ
diff --git a/outlook/data_correction/sample0093_step008.npz b/outlook/data_correction/sample0093_step008.npz
new file mode 100644
index 0000000..14fa510
Binary files /dev/null and b/outlook/data_correction/sample0093_step008.npz differ
diff --git a/outlook/data_correction/sample0093_step009.npz b/outlook/data_correction/sample0093_step009.npz
new file mode 100644
index 0000000..e3fe636
Binary files /dev/null and b/outlook/data_correction/sample0093_step009.npz differ
diff --git a/outlook/data_correction/sample0093_step010.npz b/outlook/data_correction/sample0093_step010.npz
new file mode 100644
index 0000000..0db55c5
Binary files /dev/null and b/outlook/data_correction/sample0093_step010.npz differ
diff --git a/outlook/data_correction/sample0093_step011.npz b/outlook/data_correction/sample0093_step011.npz
new file mode 100644
index 0000000..3f6bc26
Binary files /dev/null and b/outlook/data_correction/sample0093_step011.npz differ
diff --git a/outlook/data_correction/sample0093_step012.npz b/outlook/data_correction/sample0093_step012.npz
new file mode 100644
index 0000000..2c50830
Binary files /dev/null and b/outlook/data_correction/sample0093_step012.npz differ
diff --git a/outlook/data_correction/sample0093_step013.npz b/outlook/data_correction/sample0093_step013.npz
new file mode 100644
index 0000000..570cd24
Binary files /dev/null and b/outlook/data_correction/sample0093_step013.npz differ
diff --git a/outlook/data_correction/sample0093_step014.npz b/outlook/data_correction/sample0093_step014.npz
new file mode 100644
index 0000000..9f4a1c8
Binary files /dev/null and b/outlook/data_correction/sample0093_step014.npz differ
diff --git a/outlook/data_correction/sample0093_step015.npz b/outlook/data_correction/sample0093_step015.npz
new file mode 100644
index 0000000..1f152e4
Binary files /dev/null and b/outlook/data_correction/sample0093_step015.npz differ
diff --git a/outlook/data_correction/sample0093_step016.npz b/outlook/data_correction/sample0093_step016.npz
new file mode 100644
index 0000000..9e6d136
Binary files /dev/null and b/outlook/data_correction/sample0093_step016.npz differ
diff --git a/outlook/data_correction/sample0093_step017.npz b/outlook/data_correction/sample0093_step017.npz
new file mode 100644
index 0000000..c1e380d
Binary files /dev/null and b/outlook/data_correction/sample0093_step017.npz differ
diff --git a/outlook/data_correction/sample0093_step018.npz b/outlook/data_correction/sample0093_step018.npz
new file mode 100644
index 0000000..784baec
Binary files /dev/null and b/outlook/data_correction/sample0093_step018.npz differ
diff --git a/outlook/data_correction/sample0093_step019.npz b/outlook/data_correction/sample0093_step019.npz
new file mode 100644
index 0000000..747b080
Binary files /dev/null and b/outlook/data_correction/sample0093_step019.npz differ
diff --git a/outlook/data_correction/sample0094_step000.npz b/outlook/data_correction/sample0094_step000.npz
new file mode 100644
index 0000000..796cec9
Binary files /dev/null and b/outlook/data_correction/sample0094_step000.npz differ
diff --git a/outlook/data_correction/sample0094_step001.npz b/outlook/data_correction/sample0094_step001.npz
new file mode 100644
index 0000000..07f19d7
Binary files /dev/null and b/outlook/data_correction/sample0094_step001.npz differ
diff --git a/outlook/data_correction/sample0094_step002.npz b/outlook/data_correction/sample0094_step002.npz
new file mode 100644
index 0000000..71a94ee
Binary files /dev/null and b/outlook/data_correction/sample0094_step002.npz differ
diff --git a/outlook/data_correction/sample0094_step003.npz b/outlook/data_correction/sample0094_step003.npz
new file mode 100644
index 0000000..95e7290
Binary files /dev/null and b/outlook/data_correction/sample0094_step003.npz differ
diff --git a/outlook/data_correction/sample0094_step004.npz b/outlook/data_correction/sample0094_step004.npz
new file mode 100644
index 0000000..fb57b07
Binary files /dev/null and b/outlook/data_correction/sample0094_step004.npz differ
diff --git a/outlook/data_correction/sample0094_step005.npz b/outlook/data_correction/sample0094_step005.npz
new file mode 100644
index 0000000..dc2eee2
Binary files /dev/null and b/outlook/data_correction/sample0094_step005.npz differ
diff --git a/outlook/data_correction/sample0094_step006.npz b/outlook/data_correction/sample0094_step006.npz
new file mode 100644
index 0000000..d96572d
Binary files /dev/null and b/outlook/data_correction/sample0094_step006.npz differ
diff --git a/outlook/data_correction/sample0094_step007.npz b/outlook/data_correction/sample0094_step007.npz
new file mode 100644
index 0000000..162cfaa
Binary files /dev/null and b/outlook/data_correction/sample0094_step007.npz differ
diff --git a/outlook/data_correction/sample0094_step008.npz b/outlook/data_correction/sample0094_step008.npz
new file mode 100644
index 0000000..7f562a0
Binary files /dev/null and b/outlook/data_correction/sample0094_step008.npz differ
diff --git a/outlook/data_correction/sample0094_step009.npz b/outlook/data_correction/sample0094_step009.npz
new file mode 100644
index 0000000..2635296
Binary files /dev/null and b/outlook/data_correction/sample0094_step009.npz differ
diff --git a/outlook/data_correction/sample0094_step010.npz b/outlook/data_correction/sample0094_step010.npz
new file mode 100644
index 0000000..d6bb071
Binary files /dev/null and b/outlook/data_correction/sample0094_step010.npz differ
diff --git a/outlook/data_correction/sample0094_step011.npz b/outlook/data_correction/sample0094_step011.npz
new file mode 100644
index 0000000..c94dd70
Binary files /dev/null and b/outlook/data_correction/sample0094_step011.npz differ
diff --git a/outlook/data_correction/sample0094_step012.npz b/outlook/data_correction/sample0094_step012.npz
new file mode 100644
index 0000000..6823758
Binary files /dev/null and b/outlook/data_correction/sample0094_step012.npz differ
diff --git a/outlook/data_correction/sample0094_step013.npz b/outlook/data_correction/sample0094_step013.npz
new file mode 100644
index 0000000..7a1fd8e
Binary files /dev/null and b/outlook/data_correction/sample0094_step013.npz differ
diff --git a/outlook/data_correction/sample0094_step014.npz b/outlook/data_correction/sample0094_step014.npz
new file mode 100644
index 0000000..a148062
Binary files /dev/null and b/outlook/data_correction/sample0094_step014.npz differ
diff --git a/outlook/data_correction/sample0094_step015.npz b/outlook/data_correction/sample0094_step015.npz
new file mode 100644
index 0000000..b38df3d
Binary files /dev/null and b/outlook/data_correction/sample0094_step015.npz differ
diff --git a/outlook/data_correction/sample0094_step016.npz b/outlook/data_correction/sample0094_step016.npz
new file mode 100644
index 0000000..bf0ec71
Binary files /dev/null and b/outlook/data_correction/sample0094_step016.npz differ
diff --git a/outlook/data_correction/sample0094_step017.npz b/outlook/data_correction/sample0094_step017.npz
new file mode 100644
index 0000000..656df77
Binary files /dev/null and b/outlook/data_correction/sample0094_step017.npz differ
diff --git a/outlook/data_correction/sample0095_step000.npz b/outlook/data_correction/sample0095_step000.npz
new file mode 100644
index 0000000..495b119
Binary files /dev/null and b/outlook/data_correction/sample0095_step000.npz differ
diff --git a/outlook/data_correction/sample0095_step001.npz b/outlook/data_correction/sample0095_step001.npz
new file mode 100644
index 0000000..d672738
Binary files /dev/null and b/outlook/data_correction/sample0095_step001.npz differ
diff --git a/outlook/data_correction/sample0095_step002.npz b/outlook/data_correction/sample0095_step002.npz
new file mode 100644
index 0000000..f597563
Binary files /dev/null and b/outlook/data_correction/sample0095_step002.npz differ
diff --git a/outlook/data_correction/sample0095_step003.npz b/outlook/data_correction/sample0095_step003.npz
new file mode 100644
index 0000000..acf746e
Binary files /dev/null and b/outlook/data_correction/sample0095_step003.npz differ
diff --git a/outlook/data_correction/sample0095_step004.npz b/outlook/data_correction/sample0095_step004.npz
new file mode 100644
index 0000000..7439399
Binary files /dev/null and b/outlook/data_correction/sample0095_step004.npz differ
diff --git a/outlook/data_correction/sample0095_step005.npz b/outlook/data_correction/sample0095_step005.npz
new file mode 100644
index 0000000..bf04e34
Binary files /dev/null and b/outlook/data_correction/sample0095_step005.npz differ
diff --git a/outlook/data_correction/sample0095_step006.npz b/outlook/data_correction/sample0095_step006.npz
new file mode 100644
index 0000000..77e6744
Binary files /dev/null and b/outlook/data_correction/sample0095_step006.npz differ
diff --git a/outlook/data_correction/sample0095_step007.npz b/outlook/data_correction/sample0095_step007.npz
new file mode 100644
index 0000000..e1aa15c
Binary files /dev/null and b/outlook/data_correction/sample0095_step007.npz differ
diff --git a/outlook/data_correction/sample0095_step008.npz b/outlook/data_correction/sample0095_step008.npz
new file mode 100644
index 0000000..339c57a
Binary files /dev/null and b/outlook/data_correction/sample0095_step008.npz differ
diff --git a/outlook/data_correction/sample0095_step009.npz b/outlook/data_correction/sample0095_step009.npz
new file mode 100644
index 0000000..931c65d
Binary files /dev/null and b/outlook/data_correction/sample0095_step009.npz differ
diff --git a/outlook/data_correction/sample0095_step010.npz b/outlook/data_correction/sample0095_step010.npz
new file mode 100644
index 0000000..47d2e25
Binary files /dev/null and b/outlook/data_correction/sample0095_step010.npz differ
diff --git a/outlook/data_correction/sample0095_step011.npz b/outlook/data_correction/sample0095_step011.npz
new file mode 100644
index 0000000..4dfd41f
Binary files /dev/null and b/outlook/data_correction/sample0095_step011.npz differ
diff --git a/outlook/data_correction/sample0095_step012.npz b/outlook/data_correction/sample0095_step012.npz
new file mode 100644
index 0000000..6ff9531
Binary files /dev/null and b/outlook/data_correction/sample0095_step012.npz differ
diff --git a/outlook/data_correction/sample0095_step013.npz b/outlook/data_correction/sample0095_step013.npz
new file mode 100644
index 0000000..d5b625b
Binary files /dev/null and b/outlook/data_correction/sample0095_step013.npz differ
diff --git a/outlook/data_correction/sample0095_step014.npz b/outlook/data_correction/sample0095_step014.npz
new file mode 100644
index 0000000..50c2587
Binary files /dev/null and b/outlook/data_correction/sample0095_step014.npz differ
diff --git a/outlook/data_correction/sample0095_step015.npz b/outlook/data_correction/sample0095_step015.npz
new file mode 100644
index 0000000..3852968
Binary files /dev/null and b/outlook/data_correction/sample0095_step015.npz differ
diff --git a/outlook/data_correction/sample0095_step016.npz b/outlook/data_correction/sample0095_step016.npz
new file mode 100644
index 0000000..2f633a1
Binary files /dev/null and b/outlook/data_correction/sample0095_step016.npz differ
diff --git a/outlook/data_correction/sample0095_step017.npz b/outlook/data_correction/sample0095_step017.npz
new file mode 100644
index 0000000..082bbd0
Binary files /dev/null and b/outlook/data_correction/sample0095_step017.npz differ
diff --git a/outlook/data_correction/sample0095_step018.npz b/outlook/data_correction/sample0095_step018.npz
new file mode 100644
index 0000000..9314d36
Binary files /dev/null and b/outlook/data_correction/sample0095_step018.npz differ
diff --git a/outlook/data_correction/sample0095_step019.npz b/outlook/data_correction/sample0095_step019.npz
new file mode 100644
index 0000000..6ff1af8
Binary files /dev/null and b/outlook/data_correction/sample0095_step019.npz differ
diff --git a/outlook/data_correction/sample0096_step000.npz b/outlook/data_correction/sample0096_step000.npz
new file mode 100644
index 0000000..9f0485b
Binary files /dev/null and b/outlook/data_correction/sample0096_step000.npz differ
diff --git a/outlook/data_correction/sample0096_step001.npz b/outlook/data_correction/sample0096_step001.npz
new file mode 100644
index 0000000..d09d609
Binary files /dev/null and b/outlook/data_correction/sample0096_step001.npz differ
diff --git a/outlook/data_correction/sample0096_step002.npz b/outlook/data_correction/sample0096_step002.npz
new file mode 100644
index 0000000..8b2e8e7
Binary files /dev/null and b/outlook/data_correction/sample0096_step002.npz differ
diff --git a/outlook/data_correction/sample0096_step003.npz b/outlook/data_correction/sample0096_step003.npz
new file mode 100644
index 0000000..b5ec3a7
Binary files /dev/null and b/outlook/data_correction/sample0096_step003.npz differ
diff --git a/outlook/data_correction/sample0096_step004.npz b/outlook/data_correction/sample0096_step004.npz
new file mode 100644
index 0000000..2985698
Binary files /dev/null and b/outlook/data_correction/sample0096_step004.npz differ
diff --git a/outlook/data_correction/sample0096_step005.npz b/outlook/data_correction/sample0096_step005.npz
new file mode 100644
index 0000000..72bcd21
Binary files /dev/null and b/outlook/data_correction/sample0096_step005.npz differ
diff --git a/outlook/data_correction/sample0096_step006.npz b/outlook/data_correction/sample0096_step006.npz
new file mode 100644
index 0000000..d7cebaf
Binary files /dev/null and b/outlook/data_correction/sample0096_step006.npz differ
diff --git a/outlook/data_correction/sample0096_step007.npz b/outlook/data_correction/sample0096_step007.npz
new file mode 100644
index 0000000..3246c68
Binary files /dev/null and b/outlook/data_correction/sample0096_step007.npz differ
diff --git a/outlook/data_correction/sample0096_step008.npz b/outlook/data_correction/sample0096_step008.npz
new file mode 100644
index 0000000..cb70d68
Binary files /dev/null and b/outlook/data_correction/sample0096_step008.npz differ
diff --git a/outlook/data_correction/sample0096_step009.npz b/outlook/data_correction/sample0096_step009.npz
new file mode 100644
index 0000000..edf14de
Binary files /dev/null and b/outlook/data_correction/sample0096_step009.npz differ
diff --git a/outlook/data_correction/sample0096_step010.npz b/outlook/data_correction/sample0096_step010.npz
new file mode 100644
index 0000000..02ef6ae
Binary files /dev/null and b/outlook/data_correction/sample0096_step010.npz differ
diff --git a/outlook/data_correction/sample0096_step011.npz b/outlook/data_correction/sample0096_step011.npz
new file mode 100644
index 0000000..05fb7a5
Binary files /dev/null and b/outlook/data_correction/sample0096_step011.npz differ
diff --git a/outlook/data_correction/sample0096_step012.npz b/outlook/data_correction/sample0096_step012.npz
new file mode 100644
index 0000000..786ab5e
Binary files /dev/null and b/outlook/data_correction/sample0096_step012.npz differ
diff --git a/outlook/data_correction/sample0096_step013.npz b/outlook/data_correction/sample0096_step013.npz
new file mode 100644
index 0000000..c3e7bc6
Binary files /dev/null and b/outlook/data_correction/sample0096_step013.npz differ
diff --git a/outlook/data_correction/sample0096_step014.npz b/outlook/data_correction/sample0096_step014.npz
new file mode 100644
index 0000000..fda7b30
Binary files /dev/null and b/outlook/data_correction/sample0096_step014.npz differ
diff --git a/outlook/data_correction/sample0096_step015.npz b/outlook/data_correction/sample0096_step015.npz
new file mode 100644
index 0000000..28552ec
Binary files /dev/null and b/outlook/data_correction/sample0096_step015.npz differ
diff --git a/outlook/data_correction/sample0096_step016.npz b/outlook/data_correction/sample0096_step016.npz
new file mode 100644
index 0000000..c5e65dd
Binary files /dev/null and b/outlook/data_correction/sample0096_step016.npz differ
diff --git a/outlook/data_correction/sample0096_step017.npz b/outlook/data_correction/sample0096_step017.npz
new file mode 100644
index 0000000..f6bc8c5
Binary files /dev/null and b/outlook/data_correction/sample0096_step017.npz differ
diff --git a/outlook/data_correction/sample0096_step018.npz b/outlook/data_correction/sample0096_step018.npz
new file mode 100644
index 0000000..3ee4e99
Binary files /dev/null and b/outlook/data_correction/sample0096_step018.npz differ
diff --git a/outlook/data_correction/sample0097_step000.npz b/outlook/data_correction/sample0097_step000.npz
new file mode 100644
index 0000000..73c339e
Binary files /dev/null and b/outlook/data_correction/sample0097_step000.npz differ
diff --git a/outlook/data_correction/sample0097_step001.npz b/outlook/data_correction/sample0097_step001.npz
new file mode 100644
index 0000000..64f6a3d
Binary files /dev/null and b/outlook/data_correction/sample0097_step001.npz differ
diff --git a/outlook/data_correction/sample0097_step002.npz b/outlook/data_correction/sample0097_step002.npz
new file mode 100644
index 0000000..2396521
Binary files /dev/null and b/outlook/data_correction/sample0097_step002.npz differ
diff --git a/outlook/data_correction/sample0097_step003.npz b/outlook/data_correction/sample0097_step003.npz
new file mode 100644
index 0000000..81618f0
Binary files /dev/null and b/outlook/data_correction/sample0097_step003.npz differ
diff --git a/outlook/data_correction/sample0097_step004.npz b/outlook/data_correction/sample0097_step004.npz
new file mode 100644
index 0000000..acd29fa
Binary files /dev/null and b/outlook/data_correction/sample0097_step004.npz differ
diff --git a/outlook/data_correction/sample0097_step005.npz b/outlook/data_correction/sample0097_step005.npz
new file mode 100644
index 0000000..efe2527
Binary files /dev/null and b/outlook/data_correction/sample0097_step005.npz differ
diff --git a/outlook/data_correction/sample0097_step006.npz b/outlook/data_correction/sample0097_step006.npz
new file mode 100644
index 0000000..0c2af68
Binary files /dev/null and b/outlook/data_correction/sample0097_step006.npz differ
diff --git a/outlook/data_correction/sample0097_step007.npz b/outlook/data_correction/sample0097_step007.npz
new file mode 100644
index 0000000..cecd78f
Binary files /dev/null and b/outlook/data_correction/sample0097_step007.npz differ
diff --git a/outlook/data_correction/sample0097_step008.npz b/outlook/data_correction/sample0097_step008.npz
new file mode 100644
index 0000000..150117b
Binary files /dev/null and b/outlook/data_correction/sample0097_step008.npz differ
diff --git a/outlook/data_correction/sample0097_step009.npz b/outlook/data_correction/sample0097_step009.npz
new file mode 100644
index 0000000..6131301
Binary files /dev/null and b/outlook/data_correction/sample0097_step009.npz differ
diff --git a/outlook/data_correction/sample0097_step010.npz b/outlook/data_correction/sample0097_step010.npz
new file mode 100644
index 0000000..e7789ab
Binary files /dev/null and b/outlook/data_correction/sample0097_step010.npz differ
diff --git a/outlook/data_correction/sample0097_step011.npz b/outlook/data_correction/sample0097_step011.npz
new file mode 100644
index 0000000..122895f
Binary files /dev/null and b/outlook/data_correction/sample0097_step011.npz differ
diff --git a/outlook/data_correction/sample0097_step012.npz b/outlook/data_correction/sample0097_step012.npz
new file mode 100644
index 0000000..330bd82
Binary files /dev/null and b/outlook/data_correction/sample0097_step012.npz differ
diff --git a/outlook/data_correction/sample0097_step013.npz b/outlook/data_correction/sample0097_step013.npz
new file mode 100644
index 0000000..f7dfcd1
Binary files /dev/null and b/outlook/data_correction/sample0097_step013.npz differ
diff --git a/outlook/data_correction/sample0097_step014.npz b/outlook/data_correction/sample0097_step014.npz
new file mode 100644
index 0000000..69db408
Binary files /dev/null and b/outlook/data_correction/sample0097_step014.npz differ
diff --git a/outlook/data_correction/sample0097_step015.npz b/outlook/data_correction/sample0097_step015.npz
new file mode 100644
index 0000000..0f2ef76
Binary files /dev/null and b/outlook/data_correction/sample0097_step015.npz differ
diff --git a/outlook/data_correction/sample0097_step016.npz b/outlook/data_correction/sample0097_step016.npz
new file mode 100644
index 0000000..9d4f060
Binary files /dev/null and b/outlook/data_correction/sample0097_step016.npz differ
diff --git a/outlook/data_correction/sample0097_step017.npz b/outlook/data_correction/sample0097_step017.npz
new file mode 100644
index 0000000..ba8f6b6
Binary files /dev/null and b/outlook/data_correction/sample0097_step017.npz differ
diff --git a/outlook/data_correction/sample0097_step018.npz b/outlook/data_correction/sample0097_step018.npz
new file mode 100644
index 0000000..dcac8cf
Binary files /dev/null and b/outlook/data_correction/sample0097_step018.npz differ
diff --git a/outlook/data_correction/sample0098_step000.npz b/outlook/data_correction/sample0098_step000.npz
new file mode 100644
index 0000000..62f43e9
Binary files /dev/null and b/outlook/data_correction/sample0098_step000.npz differ
diff --git a/outlook/data_correction/sample0098_step001.npz b/outlook/data_correction/sample0098_step001.npz
new file mode 100644
index 0000000..e625b90
Binary files /dev/null and b/outlook/data_correction/sample0098_step001.npz differ
diff --git a/outlook/data_correction/sample0098_step002.npz b/outlook/data_correction/sample0098_step002.npz
new file mode 100644
index 0000000..f1a97f5
Binary files /dev/null and b/outlook/data_correction/sample0098_step002.npz differ
diff --git a/outlook/data_correction/sample0098_step003.npz b/outlook/data_correction/sample0098_step003.npz
new file mode 100644
index 0000000..85ca422
Binary files /dev/null and b/outlook/data_correction/sample0098_step003.npz differ
diff --git a/outlook/data_correction/sample0098_step004.npz b/outlook/data_correction/sample0098_step004.npz
new file mode 100644
index 0000000..34d5e97
Binary files /dev/null and b/outlook/data_correction/sample0098_step004.npz differ
diff --git a/outlook/data_correction/sample0098_step005.npz b/outlook/data_correction/sample0098_step005.npz
new file mode 100644
index 0000000..57fd88f
Binary files /dev/null and b/outlook/data_correction/sample0098_step005.npz differ
diff --git a/outlook/data_correction/sample0098_step006.npz b/outlook/data_correction/sample0098_step006.npz
new file mode 100644
index 0000000..7f3a0ff
Binary files /dev/null and b/outlook/data_correction/sample0098_step006.npz differ
diff --git a/outlook/data_correction/sample0098_step007.npz b/outlook/data_correction/sample0098_step007.npz
new file mode 100644
index 0000000..7c72e2e
Binary files /dev/null and b/outlook/data_correction/sample0098_step007.npz differ
diff --git a/outlook/data_correction/sample0098_step008.npz b/outlook/data_correction/sample0098_step008.npz
new file mode 100644
index 0000000..6909406
Binary files /dev/null and b/outlook/data_correction/sample0098_step008.npz differ
diff --git a/outlook/data_correction/sample0098_step009.npz b/outlook/data_correction/sample0098_step009.npz
new file mode 100644
index 0000000..7b40009
Binary files /dev/null and b/outlook/data_correction/sample0098_step009.npz differ
diff --git a/outlook/data_correction/sample0098_step010.npz b/outlook/data_correction/sample0098_step010.npz
new file mode 100644
index 0000000..c42f327
Binary files /dev/null and b/outlook/data_correction/sample0098_step010.npz differ
diff --git a/outlook/data_correction/sample0098_step011.npz b/outlook/data_correction/sample0098_step011.npz
new file mode 100644
index 0000000..be4ca16
Binary files /dev/null and b/outlook/data_correction/sample0098_step011.npz differ
diff --git a/outlook/data_correction/sample0098_step012.npz b/outlook/data_correction/sample0098_step012.npz
new file mode 100644
index 0000000..bdca947
Binary files /dev/null and b/outlook/data_correction/sample0098_step012.npz differ
diff --git a/outlook/data_correction/sample0098_step013.npz b/outlook/data_correction/sample0098_step013.npz
new file mode 100644
index 0000000..341962d
Binary files /dev/null and b/outlook/data_correction/sample0098_step013.npz differ
diff --git a/outlook/data_correction/sample0098_step014.npz b/outlook/data_correction/sample0098_step014.npz
new file mode 100644
index 0000000..3831a3a
Binary files /dev/null and b/outlook/data_correction/sample0098_step014.npz differ
diff --git a/outlook/data_correction/sample0098_step015.npz b/outlook/data_correction/sample0098_step015.npz
new file mode 100644
index 0000000..e29b136
Binary files /dev/null and b/outlook/data_correction/sample0098_step015.npz differ
diff --git a/outlook/data_correction/sample0098_step016.npz b/outlook/data_correction/sample0098_step016.npz
new file mode 100644
index 0000000..3ec12d4
Binary files /dev/null and b/outlook/data_correction/sample0098_step016.npz differ
diff --git a/outlook/data_correction/sample0098_step017.npz b/outlook/data_correction/sample0098_step017.npz
new file mode 100644
index 0000000..40fd031
Binary files /dev/null and b/outlook/data_correction/sample0098_step017.npz differ
diff --git a/outlook/data_correction/sample0098_step018.npz b/outlook/data_correction/sample0098_step018.npz
new file mode 100644
index 0000000..6f55be5
Binary files /dev/null and b/outlook/data_correction/sample0098_step018.npz differ
diff --git a/outlook/data_correction/sample0099_step000.npz b/outlook/data_correction/sample0099_step000.npz
new file mode 100644
index 0000000..1fa899b
Binary files /dev/null and b/outlook/data_correction/sample0099_step000.npz differ
diff --git a/outlook/data_correction/sample0099_step001.npz b/outlook/data_correction/sample0099_step001.npz
new file mode 100644
index 0000000..561c9d9
Binary files /dev/null and b/outlook/data_correction/sample0099_step001.npz differ
diff --git a/outlook/data_correction/sample0099_step002.npz b/outlook/data_correction/sample0099_step002.npz
new file mode 100644
index 0000000..f0d2106
Binary files /dev/null and b/outlook/data_correction/sample0099_step002.npz differ
diff --git a/outlook/data_correction/sample0099_step003.npz b/outlook/data_correction/sample0099_step003.npz
new file mode 100644
index 0000000..8c0d5b0
Binary files /dev/null and b/outlook/data_correction/sample0099_step003.npz differ
diff --git a/outlook/data_correction/sample0099_step004.npz b/outlook/data_correction/sample0099_step004.npz
new file mode 100644
index 0000000..5e882f9
Binary files /dev/null and b/outlook/data_correction/sample0099_step004.npz differ
diff --git a/outlook/data_correction/sample0099_step005.npz b/outlook/data_correction/sample0099_step005.npz
new file mode 100644
index 0000000..d0da908
Binary files /dev/null and b/outlook/data_correction/sample0099_step005.npz differ
diff --git a/outlook/data_correction/sample0099_step006.npz b/outlook/data_correction/sample0099_step006.npz
new file mode 100644
index 0000000..8f5ad04
Binary files /dev/null and b/outlook/data_correction/sample0099_step006.npz differ
diff --git a/outlook/data_correction/sample0099_step007.npz b/outlook/data_correction/sample0099_step007.npz
new file mode 100644
index 0000000..8fa76bd
Binary files /dev/null and b/outlook/data_correction/sample0099_step007.npz differ
diff --git a/outlook/data_correction/sample0099_step008.npz b/outlook/data_correction/sample0099_step008.npz
new file mode 100644
index 0000000..7819245
Binary files /dev/null and b/outlook/data_correction/sample0099_step008.npz differ
diff --git a/outlook/data_correction/sample0099_step009.npz b/outlook/data_correction/sample0099_step009.npz
new file mode 100644
index 0000000..4a928db
Binary files /dev/null and b/outlook/data_correction/sample0099_step009.npz differ
diff --git a/outlook/data_correction/sample0099_step010.npz b/outlook/data_correction/sample0099_step010.npz
new file mode 100644
index 0000000..6cdeea6
Binary files /dev/null and b/outlook/data_correction/sample0099_step010.npz differ
diff --git a/outlook/data_correction/sample0099_step011.npz b/outlook/data_correction/sample0099_step011.npz
new file mode 100644
index 0000000..5f64c0b
Binary files /dev/null and b/outlook/data_correction/sample0099_step011.npz differ
diff --git a/outlook/data_correction/sample0099_step012.npz b/outlook/data_correction/sample0099_step012.npz
new file mode 100644
index 0000000..e3d8a86
Binary files /dev/null and b/outlook/data_correction/sample0099_step012.npz differ
diff --git a/outlook/data_correction/sample0099_step013.npz b/outlook/data_correction/sample0099_step013.npz
new file mode 100644
index 0000000..007e392
Binary files /dev/null and b/outlook/data_correction/sample0099_step013.npz differ
diff --git a/outlook/data_correction/sample0099_step014.npz b/outlook/data_correction/sample0099_step014.npz
new file mode 100644
index 0000000..b26953c
Binary files /dev/null and b/outlook/data_correction/sample0099_step014.npz differ
diff --git a/outlook/data_correction/sample0099_step015.npz b/outlook/data_correction/sample0099_step015.npz
new file mode 100644
index 0000000..b20864f
Binary files /dev/null and b/outlook/data_correction/sample0099_step015.npz differ
diff --git a/outlook/data_correction/sample0099_step016.npz b/outlook/data_correction/sample0099_step016.npz
new file mode 100644
index 0000000..0ae9805
Binary files /dev/null and b/outlook/data_correction/sample0099_step016.npz differ
diff --git a/outlook/data_correction/sample0099_step017.npz b/outlook/data_correction/sample0099_step017.npz
new file mode 100644
index 0000000..765a702
Binary files /dev/null and b/outlook/data_correction/sample0099_step017.npz differ
diff --git a/outlook/data_correction/sample0099_step018.npz b/outlook/data_correction/sample0099_step018.npz
new file mode 100644
index 0000000..3a5b268
Binary files /dev/null and b/outlook/data_correction/sample0099_step018.npz differ
diff --git a/outlook/data_correction/summary.json b/outlook/data_correction/summary.json
new file mode 100644
index 0000000..7fae4e3
--- /dev/null
+++ b/outlook/data_correction/summary.json
@@ -0,0 +1,10 @@
+{
+ "total_steps": 1888,
+ "total_files": 1888,
+ "mean_elements": 3497.1530720338983,
+ "mean_teacher_mark_ratio": 0.02968902442738579,
+ "mean_physics_mark_ratio": 0.02968902442738579,
+ "mean_overlap_teacher_physics": 15.933262711864407,
+ "mean_correction_pos_ratio": 0.024622349172869883,
+ "mean_correction_neg_ratio": 0.024622349172869883
+}
\ No newline at end of file
diff --git a/outlook/data_correction_check/sample0001_step001.png b/outlook/data_correction_check/sample0001_step001.png
new file mode 100644
index 0000000..201a3e5
Binary files /dev/null and b/outlook/data_correction_check/sample0001_step001.png differ
diff --git a/outlook/data_correction_check/sample0025_step001.png b/outlook/data_correction_check/sample0025_step001.png
new file mode 100644
index 0000000..348f355
Binary files /dev/null and b/outlook/data_correction_check/sample0025_step001.png differ
diff --git a/outlook/data_correction_check/sample0027_step019.png b/outlook/data_correction_check/sample0027_step019.png
new file mode 100644
index 0000000..e3b8c1a
Binary files /dev/null and b/outlook/data_correction_check/sample0027_step019.png differ
diff --git a/outlook/data_correction_check/sample0039_step001.png b/outlook/data_correction_check/sample0039_step001.png
new file mode 100644
index 0000000..e548868
Binary files /dev/null and b/outlook/data_correction_check/sample0039_step001.png differ
diff --git a/outlook/logs/correction_4581.err b/outlook/logs/correction_4581.err
new file mode 100644
index 0000000..b707c60
--- /dev/null
+++ b/outlook/logs/correction_4581.err
@@ -0,0 +1 @@
+slurmstepd: error: *** JOB 4581 ON node05 CANCELLED AT 2026-06-06T14:31:07 ***
diff --git a/outlook/logs/correction_4581.out b/outlook/logs/correction_4581.out
new file mode 100644
index 0000000..c0cf334
--- /dev/null
+++ b/outlook/logs/correction_4581.out
@@ -0,0 +1,26 @@
+============================================================
+Teacher-Mark Binary Classifier Training
+============================================================
+ Data dir: outlook/data_correction
+ Device: cuda
+ Epochs: 100
+ Batch size: 1
+ LR: 0.001
+ Latent dim: 64
+ MP steps: 3
+ Checkpoint: outlook/ckpt/correction.pt
+ Log: /public/home/dxw/Codes/afem/outlook/ckpt/correction_train_log.json
+
+Loading dataset...
+ Found 1998 files across 100 samples
+ Train samples: 80 Val samples: 20
+ Train: 1598 graphs, 2203757 nodes, 65355 positive (3.0%)
+ Val: 400 graphs, 513740 nodes, 15208 positive (3.0%)
+ Loaded in 5.7s
+
+Training...
+ Epoch 0 | train=0.9876 val=0.9234 | auc=0.8342 topk=0.216 phys=0.120 lr=1.00e-03
+ Epoch 10 | train=0.7189 val=0.7505 | auc=0.8856 topk=0.307 phys=0.120 lr=1.00e-03
+ Epoch 20 | train=0.6477 val=0.7192 | auc=0.8954 topk=0.312 phys=0.120 lr=1.00e-03
+ Epoch 30 | train=0.6108 val=0.7108 | auc=0.9025 topk=0.342 phys=0.120 lr=1.00e-03
+ Epoch 40 | train=0.5436 val=0.7289 | auc=0.9107 topk=0.357 phys=0.120 lr=5.00e-04
diff --git a/outlook/logs/correction_4582.err b/outlook/logs/correction_4582.err
new file mode 100644
index 0000000..e69de29
diff --git a/outlook/logs/correction_4582.out b/outlook/logs/correction_4582.out
new file mode 100644
index 0000000..e3b518c
--- /dev/null
+++ b/outlook/logs/correction_4582.out
@@ -0,0 +1,48 @@
+============================================================
+Teacher-Mark Binary Classifier Training
+============================================================
+ Data dir: outlook/data_correction
+ Device: cuda
+ Epochs: 100
+ Batch size: 32
+ LR: 0.001
+ Latent dim: 64
+ MP steps: 3
+ Checkpoint: outlook/ckpt/correction.pt
+ Log: /public/home/dxw/Codes/afem/outlook/ckpt/correction_train_log.json
+
+Loading dataset...
+ Found 1998 files across 100 samples
+ Train samples: 80 Val samples: 20
+ Train: 1598 graphs, 2203757 nodes, 65355 positive (3.0%)
+ Val: 400 graphs, 513740 nodes, 15208 positive (3.0%)
+ Loaded in 5.6s
+
+Training...
+ Epoch 0 | train=1.2278 val=1.1452 | auc=0.7556 topk=0.165 phys=0.120 lr=1.00e-03 | 3.5s
+ Epoch 10 | train=0.7870 val=0.8045 | auc=0.8856 topk=0.287 phys=0.120 lr=1.00e-03 | 1.9s
+ Epoch 20 | train=0.6734 val=0.7438 | auc=0.9029 topk=0.318 phys=0.120 lr=1.00e-03 | 1.9s
+ Epoch 30 | train=0.6258 val=0.7229 | auc=0.9079 topk=0.342 phys=0.120 lr=1.00e-03 | 1.9s
+ Epoch 40 | train=0.5536 val=0.7068 | auc=0.9134 topk=0.351 phys=0.120 lr=5.00e-04 | 1.9s
+ Epoch 50 | train=0.5223 val=0.7220 | auc=0.9140 topk=0.359 phys=0.120 lr=2.50e-04 | 1.9s
+ Epoch 60 | train=0.5032 val=0.7522 | auc=0.9117 topk=0.363 phys=0.120 lr=1.25e-04 | 1.9s
+ Epoch 70 | train=0.4880 val=0.7545 | auc=0.9127 topk=0.362 phys=0.120 lr=1.25e-04 | 1.9s
+ Epoch 80 | train=0.4804 val=0.7735 | auc=0.9121 topk=0.368 phys=0.120 lr=6.25e-05 | 1.9s
+ Epoch 90 | train=0.4763 val=0.7756 | auc=0.9121 topk=0.365 phys=0.120 lr=3.13e-05 | 1.9s
+ Epoch 99 | train=0.4737 val=0.7832 | auc=0.9116 topk=0.364 phys=0.120 lr=1.56e-05 | 1.9s
+
+Training completed in 191.7s
+
+Checkpoint saved: outlook/ckpt/correction.pt
+Training log saved: /public/home/dxw/Codes/afem/outlook/ckpt/correction_train_log.json
+
+============================================================
+Best epoch: 38
+ val_loss: 0.6904
+ val_auc: 0.9152
+ val_topk: 0.347
+ phys_topk: 0.120
+ GNN beats physics: YES
+============================================================
+
+Done.
diff --git a/outlook/logs/correction_4584.err b/outlook/logs/correction_4584.err
new file mode 100644
index 0000000..e69de29
diff --git a/outlook/logs/correction_4584.out b/outlook/logs/correction_4584.out
new file mode 100644
index 0000000..ce86a8a
--- /dev/null
+++ b/outlook/logs/correction_4584.out
@@ -0,0 +1,48 @@
+============================================================
+Teacher-Mark Binary Classifier Training
+============================================================
+ Data dir: outlook/data_correction
+ Device: cuda
+ Epochs: 100
+ Batch size: 32
+ LR: 0.001
+ Latent dim: 64
+ MP steps: 3
+ Checkpoint: outlook/ckpt/correction.pt
+ Log: /public/home/dxw/Codes/afem/outlook/ckpt/correction_train_log.json
+
+Loading dataset...
+ Found 1236 files across 100 samples
+ Train samples: 80 Val samples: 20
+ Train: 991 graphs, 5274265 nodes, 157771 positive (3.0%)
+ Val: 245 graphs, 1296751 nodes, 38781 positive (3.0%)
+ Loaded in 7.1s
+
+Training...
+ Epoch 0 | train=1.2012 val=1.1091 | auc=0.7760 topk=0.230 phys=0.153 lr=1.00e-03 | 4.7s
+ Epoch 10 | train=0.5825 val=0.6353 | auc=0.9287 topk=0.372 phys=0.153 lr=1.00e-03 | 3.2s
+ Epoch 20 | train=0.5019 val=0.5901 | auc=0.9378 topk=0.416 phys=0.153 lr=1.00e-03 | 3.2s
+ Epoch 30 | train=0.5124 val=0.5745 | auc=0.9417 topk=0.423 phys=0.153 lr=1.00e-03 | 3.1s
+ Epoch 40 | train=0.4355 val=0.5334 | auc=0.9498 topk=0.466 phys=0.153 lr=1.00e-03 | 3.2s
+ Epoch 50 | train=0.4143 val=0.5467 | auc=0.9520 topk=0.490 phys=0.153 lr=1.00e-03 | 3.2s
+ Epoch 60 | train=0.3744 val=0.5686 | auc=0.9506 topk=0.486 phys=0.153 lr=5.00e-04 | 3.2s
+ Epoch 70 | train=0.3544 val=0.5963 | auc=0.9510 topk=0.491 phys=0.153 lr=2.50e-04 | 3.1s
+ Epoch 80 | train=0.3443 val=0.6211 | auc=0.9505 topk=0.490 phys=0.153 lr=1.25e-04 | 3.3s
+ Epoch 90 | train=0.3419 val=0.6288 | auc=0.9502 topk=0.491 phys=0.153 lr=6.25e-05 | 3.2s
+ Epoch 99 | train=0.3382 val=0.6329 | auc=0.9501 topk=0.490 phys=0.153 lr=3.13e-05 | 3.2s
+
+Training completed in 321.8s
+
+Checkpoint saved: outlook/ckpt/correction.pt
+Training log saved: /public/home/dxw/Codes/afem/outlook/ckpt/correction_train_log.json
+
+============================================================
+Best epoch: 40
+ val_loss: 0.5334
+ val_auc: 0.9498
+ val_topk: 0.466
+ phys_topk: 0.153
+ GNN beats physics: YES
+============================================================
+
+Done.
diff --git a/outlook/logs/correction_4585.err b/outlook/logs/correction_4585.err
new file mode 100644
index 0000000..e69de29
diff --git a/outlook/logs/correction_4585.out b/outlook/logs/correction_4585.out
new file mode 100644
index 0000000..78172cf
--- /dev/null
+++ b/outlook/logs/correction_4585.out
@@ -0,0 +1,48 @@
+============================================================
+Teacher-Mark Binary Classifier Training
+============================================================
+ Data dir: outlook/data_correction
+ Device: cuda
+ Epochs: 100
+ Batch size: 32
+ LR: 0.001
+ Latent dim: 64
+ MP steps: 3
+ Checkpoint: outlook/ckpt/correction.pt
+ Log: /public/home/dxw/Codes/afem/outlook/ckpt/correction_train_log.json
+
+Loading dataset...
+ Found 1956 files across 100 samples
+ Train samples: 80 Val samples: 20
+ Train: 1568 graphs, 2258286 nodes, 66961 positive (3.0%)
+ Val: 388 graphs, 549666 nodes, 16295 positive (3.0%)
+ Loaded in 7.4s
+
+Training...
+ Epoch 0 | train=1.3072 val=1.2934 | auc=0.6305 topk=0.127 phys=0.102 lr=1.00e-03 | 3.3s | total=3.3s
+ Epoch 10 | train=0.8706 val=0.8948 | auc=0.8608 topk=0.258 phys=0.102 lr=1.00e-03 | 1.8s | total=21.9s
+ Epoch 20 | train=0.7636 val=0.8598 | auc=0.8790 topk=0.312 phys=0.102 lr=1.00e-03 | 1.9s | total=40.6s
+ Epoch 30 | train=0.6756 val=0.8004 | auc=0.8966 topk=0.319 phys=0.102 lr=1.00e-03 | 1.9s | total=59.2s
+ Epoch 40 | train=0.6571 val=0.7746 | auc=0.8983 topk=0.343 phys=0.102 lr=1.00e-03 | 1.9s | total=77.8s
+ Epoch 50 | train=0.5787 val=0.8101 | auc=0.9032 topk=0.366 phys=0.102 lr=5.00e-04 | 1.9s | total=96.4s
+ Epoch 60 | train=0.5457 val=0.8059 | auc=0.9075 topk=0.372 phys=0.102 lr=2.50e-04 | 1.9s | total=115.0s
+ Epoch 70 | train=0.5333 val=0.8503 | auc=0.9035 topk=0.372 phys=0.102 lr=1.25e-04 | 1.9s | total=133.6s
+ Epoch 80 | train=0.5197 val=0.8692 | auc=0.9021 topk=0.368 phys=0.102 lr=1.25e-04 | 1.8s | total=152.1s
+ Epoch 90 | train=0.5113 val=0.8570 | auc=0.9063 topk=0.375 phys=0.102 lr=6.25e-05 | 1.9s | total=170.7s
+ Epoch 99 | train=0.5058 val=0.8703 | auc=0.9036 topk=0.371 phys=0.102 lr=3.13e-05 | 1.9s | total=187.4s
+
+Training completed in 187.9s
+
+Checkpoint saved: outlook/ckpt/correction.pt
+Training log saved: /public/home/dxw/Codes/afem/outlook/ckpt/correction_train_log.json
+
+============================================================
+Best epoch: 37
+ val_loss: 0.7372
+ val_auc: 0.9060
+ val_topk: 0.343
+ phys_topk: 0.102
+ GNN beats physics: YES
+============================================================
+
+Done.
diff --git a/outlook/logs/correction_4586.err b/outlook/logs/correction_4586.err
new file mode 100644
index 0000000..e69de29
diff --git a/outlook/logs/correction_4586.out b/outlook/logs/correction_4586.out
new file mode 100644
index 0000000..e948dc3
--- /dev/null
+++ b/outlook/logs/correction_4586.out
@@ -0,0 +1,48 @@
+============================================================
+Teacher-Mark Binary Classifier Training
+============================================================
+ Data dir: outlook/data_correction
+ Device: cuda
+ Epochs: 100
+ Batch size: 32
+ LR: 0.001
+ Latent dim: 64
+ MP steps: 3
+ Checkpoint: outlook/ckpt/correction.pt
+ Log: /public/home/dxw/Codes/afem/outlook/ckpt/correction_train_log.json
+
+Loading dataset...
+ Found 1888 files across 100 samples
+ Train samples: 80 Val samples: 20
+ Train: 1513 graphs, 5301714 nodes, 158309 positive (3.0%)
+ Val: 375 graphs, 1300911 nodes, 38849 positive (3.0%)
+ Loaded in 11.4s
+
+Training...
+ Epoch 0 | train=1.2141 val=1.1141 | auc=0.7793 topk=0.182 phys=0.130 lr=1.00e-03 | 5.0s | total=5.0s
+ Epoch 10 | train=0.6835 val=0.7105 | auc=0.9103 topk=0.338 phys=0.130 lr=1.00e-03 | 3.4s | total=39.4s
+ Epoch 20 | train=0.6046 val=0.6748 | auc=0.9220 topk=0.370 phys=0.130 lr=1.00e-03 | 3.4s | total=73.5s
+ Epoch 30 | train=0.5223 val=0.6292 | auc=0.9316 topk=0.402 phys=0.130 lr=1.00e-03 | 3.4s | total=107.5s
+ Epoch 40 | train=0.4965 val=0.6377 | auc=0.9323 topk=0.421 phys=0.130 lr=1.00e-03 | 3.4s | total=141.5s
+ Epoch 50 | train=0.4445 val=0.6005 | auc=0.9408 topk=0.433 phys=0.130 lr=5.00e-04 | 3.4s | total=175.4s
+ Epoch 60 | train=0.4331 val=0.6315 | auc=0.9386 topk=0.438 phys=0.130 lr=5.00e-04 | 3.4s | total=209.4s
+ Epoch 70 | train=0.4120 val=0.6089 | auc=0.9432 topk=0.452 phys=0.130 lr=2.50e-04 | 3.4s | total=243.5s
+ Epoch 80 | train=0.4015 val=0.6321 | auc=0.9424 topk=0.455 phys=0.130 lr=1.25e-04 | 3.4s | total=277.7s
+ Epoch 90 | train=0.3970 val=0.6364 | auc=0.9422 topk=0.455 phys=0.130 lr=6.25e-05 | 3.4s | total=311.7s
+ Epoch 99 | train=0.3922 val=0.6449 | auc=0.9419 topk=0.454 phys=0.130 lr=6.25e-05 | 3.4s | total=342.5s
+
+Training completed in 343.1s
+
+Checkpoint saved: outlook/ckpt/correction.pt
+Training log saved: /public/home/dxw/Codes/afem/outlook/ckpt/correction_train_log.json
+
+============================================================
+Best epoch: 57
+ val_loss: 0.5873
+ val_auc: 0.9412
+ val_topk: 0.440
+ phys_topk: 0.130
+ GNN beats physics: YES
+============================================================
+
+Done.
diff --git a/outlook/output/build_pptx.py b/outlook/output/build_pptx.py
new file mode 100644
index 0000000..d4d4b4c
--- /dev/null
+++ b/outlook/output/build_pptx.py
@@ -0,0 +1,1071 @@
+#!/usr/bin/env python3
+"""
+Build GNN-AMR correction presentation PPTX from README content.
+Nature-style academic presentation, simplified Chinese.
+"""
+
+import json
+from pathlib import Path
+
+import numpy as np
+from pptx import Presentation
+from pptx.util import Inches, Pt, Emu
+from pptx.dml.color import RGBColor
+from pptx.enum.text import PP_ALIGN, MSO_ANCHOR
+from pptx.enum.shapes import MSO_SHAPE
+
+# ── Paths ──
+ROOT = Path(__file__).resolve().parent.parent.parent # afem/
+OUTLOOK = ROOT / "outlook"
+OUTPUT = OUTLOOK / "output"
+ASSETS = OUTPUT / "assets" / "figures"
+
+# ── Colors ──
+WHITE = RGBColor(0xFF, 0xFF, 0xFF)
+BG_LIGHT = RGBColor(0xF8, 0xF9, 0xFA)
+TEXT_DARK = RGBColor(0x1A, 0x1A, 0x2E)
+TEXT_MID = RGBColor(0x4A, 0x4A, 0x5A)
+TEXT_LIGHT = RGBColor(0x8A, 0x8A, 0x9A)
+ACCENT_BLUE = RGBColor(0x21, 0x96, 0xF3)
+ACCENT_RED = RGBColor(0xE9, 0x1E, 0x63)
+ACCENT_GREEN = RGBColor(0x4C, 0xAF, 0x50)
+ACCENT_ORANGE = RGBColor(0xFF, 0x98, 0x00)
+BORDER_LIGHT = RGBColor(0xE0, 0xE0, 0xE0)
+
+# ── Fonts ──
+FONT_CN = "Microsoft YaHei"
+FONT_EN = "Calibri"
+
+# ── Slide dimensions (16:9) ──
+SLIDE_W = Inches(13.333)
+SLIDE_H = Inches(7.5)
+
+
+def set_slide_bg(slide, color=BG_LIGHT):
+ """Set slide background color."""
+ bg = slide.background
+ fill = bg.fill
+ fill.solid()
+ fill.fore_color.rgb = color
+
+
+def add_shape_fill(slide, left, top, width, height, color, alpha=None):
+ """Add a colored rectangle shape."""
+ shape = slide.shapes.add_shape(MSO_SHAPE.RECTANGLE, left, top, width, height)
+ shape.fill.solid()
+ shape.fill.fore_color.rgb = color
+ shape.line.fill.background()
+ if alpha is not None:
+ shape.fill.fore_color.brightness = alpha
+ return shape
+
+
+def add_text_box(slide, left, top, width, height, text, font_size=14,
+ color=TEXT_DARK, bold=False, align=PP_ALIGN.LEFT,
+ font_name=FONT_CN, line_spacing=1.3):
+ """Add a text box with formatted text."""
+ txBox = slide.shapes.add_textbox(left, top, width, height)
+ tf = txBox.text_frame
+ tf.word_wrap = True
+ p = tf.paragraphs[0]
+ p.text = text
+ p.font.size = Pt(font_size)
+ p.font.color.rgb = color
+ p.font.bold = bold
+ p.font.name = font_name
+ p.alignment = align
+ p.space_after = Pt(2)
+ if line_spacing:
+ p.line_spacing = Pt(font_size * line_spacing)
+ return txBox
+
+
+def add_bullet_list(slide, left, top, width, height, items, font_size=14,
+ color=TEXT_DARK, font_name=FONT_CN, bullet_char="•"):
+ """Add a bulleted list."""
+ txBox = slide.shapes.add_textbox(left, top, width, height)
+ tf = txBox.text_frame
+ tf.word_wrap = True
+ for i, item in enumerate(items):
+ if i == 0:
+ p = tf.paragraphs[0]
+ else:
+ p = tf.add_paragraph()
+ p.text = f"{bullet_char} {item}"
+ p.font.size = Pt(font_size)
+ p.font.color.rgb = color
+ p.font.name = font_name
+ p.space_after = Pt(6)
+ p.line_spacing = Pt(font_size * 1.5)
+ return txBox
+
+
+def add_caption(slide, left, top, width, text, font_size=9, color=TEXT_LIGHT):
+ """Add a small caption/source line."""
+ return add_text_box(slide, left, top, width, Inches(0.3), text,
+ font_size=font_size, color=color)
+
+
+def add_takeaway_strip(slide, text, top=None):
+ """Add a bottom takeaway strip."""
+ if top is None:
+ top = SLIDE_H - Inches(0.6)
+ strip = add_shape_fill(slide, Inches(0), top, SLIDE_W, Inches(0.5),
+ RGBColor(0xE8, 0xF0, 0xFE))
+ add_text_box(slide, Inches(0.5), top + Inches(0.05), SLIDE_W - Inches(1),
+ Inches(0.4), f"✦ {text}", font_size=12, color=ACCENT_BLUE,
+ bold=True, align=PP_ALIGN.LEFT)
+
+
+def add_source_label(slide, text):
+ """Add source label at bottom-right."""
+ add_text_box(slide, SLIDE_W - Inches(4), SLIDE_H - Inches(0.35),
+ Inches(3.5), Inches(0.25), text,
+ font_size=8, color=TEXT_LIGHT, align=PP_ALIGN.RIGHT)
+
+
+def add_image_safe(slide, img_path, left, top, width, height):
+ """Add image if file exists, otherwise add placeholder."""
+ p = Path(img_path)
+ if p.exists() and p.stat().st_size > 0:
+ slide.shapes.add_picture(str(p), left, top, width, height)
+ else:
+ shape = add_shape_fill(slide, left, top, width, height, BORDER_LIGHT)
+ add_text_box(slide, left, top + height // 2 - Inches(0.2),
+ width, Inches(0.4), f"[{p.name}]", font_size=10,
+ color=TEXT_LIGHT, align=PP_ALIGN.CENTER)
+
+
+# ============================================================================
+# Slide builders
+# ============================================================================
+
+
+def slide_01_title(prs):
+ """Title slide."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6]) # blank
+ set_slide_bg(slide, WHITE)
+
+ # Top accent bar
+ add_shape_fill(slide, Inches(0), Inches(0), SLIDE_W, Inches(0.08), ACCENT_BLUE)
+
+ # Title
+ add_text_box(slide, Inches(1), Inches(1.8), Inches(11), Inches(1.2),
+ "GNN 引导的自适应网格加密",
+ font_size=36, color=TEXT_DARK, bold=True, align=PP_ALIGN.CENTER)
+
+ # Subtitle
+ add_text_box(slide, Inches(1), Inches(3.1), Inches(11), Inches(0.8),
+ "用于 2D Helmholtz 散射问题的图神经网络修正学习",
+ font_size=20, color=TEXT_MID, align=PP_ALIGN.CENTER)
+
+ # Separator line
+ add_shape_fill(slide, Inches(5), Inches(4.2), Inches(3), Inches(0.03), ACCENT_BLUE)
+
+ # Meta
+ add_text_box(slide, Inches(1), Inches(4.6), Inches(11), Inches(0.5),
+ "Problem-to-Solution: 用 GNN 学习残差驱动 AMR 的修正信号",
+ font_size=14, color=TEXT_LIGHT, align=PP_ALIGN.CENTER)
+
+ add_text_box(slide, Inches(1), Inches(5.5), Inches(11), Inches(0.5),
+ "AFEM Research Group | 2026",
+ font_size=12, color=TEXT_LIGHT, align=PP_ALIGN.CENTER)
+
+
+def slide_02_background(prs):
+ """Research background."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.4), Inches(12), Inches(0.7),
+ "研究背景:为什么这个问题重要",
+ font_size=28, color=TEXT_DARK, bold=True)
+
+ add_shape_fill(slide, Inches(0.6), Inches(1.1), Inches(2), Inches(0.04), ACCENT_BLUE)
+
+ # Left column: physics problem
+ add_text_box(slide, Inches(0.6), Inches(1.5), Inches(5.5), Inches(0.5),
+ "物理问题:2D 介质圆柱电磁散射", font_size=18, color=ACCENT_BLUE, bold=True)
+
+ add_bullet_list(slide, Inches(0.6), Inches(2.1), Inches(5.5), Inches(3.5), [
+ "求解散射场公式:∇²u + k²·ε_r·u = −k²·(ε_r−1)·u_inc",
+ "入射波 u_inc = exp(i·k·x),Sommerfeld 辐射 BC",
+ "介质圆柱参数:k ∈ [3,15],ε_r ∈ [2,8],r ∈ [0.05,0.25]",
+ "FEM 求解器:P1 三角元 + Sommerfeld BC",
+ "参考解:Mie 解析解(精确对比基准)",
+ ], font_size=13)
+
+ # Right column: why it matters
+ add_text_box(slide, Inches(6.8), Inches(1.5), Inches(5.8), Inches(0.5),
+ "核心挑战:网格预算有限下的误差最小化",
+ font_size=18, color=ACCENT_RED, bold=True)
+
+ add_bullet_list(slide, Inches(6.8), Inches(2.1), Inches(5.8), Inches(3.5), [
+ "精细网格 → 高精度,但计算代价高",
+ "粗网格 → 快速,但误差大",
+ "目标:在给定网格预算 N 下,最小化 FEM 解误差",
+ "传统 AMR 需要逐步求解 FEM → 计算开销大",
+ "能否用数据驱动方法替代?",
+ ], font_size=13)
+
+ # Bottom box: parameter space
+ box = add_shape_fill(slide, Inches(0.6), Inches(5.6), Inches(12.1), Inches(1.2),
+ RGBColor(0xF0, 0xF4, 0xF8))
+ add_text_box(slide, Inches(0.8), Inches(5.7), Inches(11.5), Inches(0.4),
+ "参数空间", font_size=14, color=ACCENT_BLUE, bold=True)
+ add_text_box(slide, Inches(0.8), Inches(6.1), Inches(11.5), Inches(0.5),
+ "k ∈ [3,15] | ε_r ∈ [2,8] | cx, cy ∈ [0.2,0.8] | radius ∈ [0.05,0.25] | "
+ "统一初始网格 32×32 = 2048 单元",
+ font_size=12, color=TEXT_MID)
+
+
+def slide_03_gap(prs):
+ """Knowledge gap / bottleneck."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.4), Inches(12), Inches(0.7),
+ "技术瓶颈:传统残差驱动 AMR 的局限",
+ font_size=28, color=TEXT_DARK, bold=True)
+
+ add_shape_fill(slide, Inches(0.6), Inches(1.1), Inches(2), Inches(0.04), ACCENT_RED)
+
+ # Left: traditional AMR
+ add_text_box(slide, Inches(0.6), Inches(1.5), Inches(5.5), Inches(0.5),
+ "传统残差驱动 AMR 流程", font_size=18, color=TEXT_MID, bold=True)
+
+ add_bullet_list(slide, Inches(0.6), Inches(2.1), Inches(5.5), Inches(3.0), [
+ "每步:FEM 求解 → 计算残差估计器 η → 标记 top-k → 加密",
+ "残差 η = √(r_int² + r_jump² + r_sbc²)",
+ "需要每步都做 FEM solve → 计算量大",
+ "η 是局部最优,不能利用全局几何/物理信息",
+ "无法离线推理:必须在线计算残差",
+ ], font_size=13)
+
+ # Right: what we want
+ add_text_box(slide, Inches(6.8), Inches(1.5), Inches(5.8), Inches(0.5),
+ "我们希望实现", font_size=18, color=ACCENT_GREEN, bold=True)
+
+ add_bullet_list(slide, Inches(6.8), Inches(2.1), Inches(5.8), Inches(3.0), [
+ "用 GNN 学习 \"哪些单元应被加密\"",
+ "推理时只需几何/物理特征 → 无需 FEM solve",
+ "一次前向传播 → 全图单元标记",
+ "可离线部署,计算代价大幅降低",
+ "超越纯物理先验的标记策略",
+ ], font_size=13)
+
+ # Bottom: key insight
+ box = add_shape_fill(slide, Inches(0.6), Inches(5.3), Inches(12.1), Inches(1.5),
+ RGBColor(0xFE, 0xF3, 0xE2))
+ add_text_box(slide, Inches(0.8), Inches(5.4), Inches(11.5), Inches(0.4),
+ "核心洞察", font_size=14, color=ACCENT_ORANGE, bold=True)
+ add_text_box(slide, Inches(0.8), Inches(5.85), Inches(11.5), Inches(0.8),
+ "物理先验 physics_score = h/λ_eff 可以粗略判断分辨率不足的单元,但它忽略了散射体几何、"
+ "波场相位、材料界面等关键信息。GNN 可以学习这些物理先验无法捕捉的修正信号。",
+ font_size=13, color=TEXT_MID)
+
+
+def slide_04_approach(prs):
+ """Core approach: correction learning."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.4), Inches(12), Inches(0.7),
+ "核心思路:GNN 学习修正信号",
+ font_size=28, color=TEXT_DARK, bold=True)
+
+ add_shape_fill(slide, Inches(0.6), Inches(1.1), Inches(2), Inches(0.04), ACCENT_GREEN)
+
+ # Three mark schemes
+ add_text_box(slide, Inches(0.6), Inches(1.5), Inches(12), Inches(0.5),
+ "三种标记方案的对比", font_size=18, color=TEXT_MID, bold=True)
+
+ # Three boxes
+ box_w = Inches(3.7)
+ box_h = Inches(2.8)
+ gap = Inches(0.35)
+ x0 = Inches(0.6)
+ y_top = Inches(2.2)
+
+ # Box 1: teacher
+ b1 = add_shape_fill(slide, x0, y_top, box_w, box_h, RGBColor(0xE8, 0xF5, 0xE9))
+ add_text_box(slide, x0 + Inches(0.15), y_top + Inches(0.1), box_w - Inches(0.3), Inches(0.4),
+ "teacher_mark (η 信号)", font_size=14, color=ACCENT_GREEN, bold=True)
+ add_bullet_list(slide, x0 + Inches(0.15), y_top + Inches(0.55), box_w - Inches(0.3), Inches(2.0), [
+ "基于残差估计器 η 排序",
+ "取 top 3% 单元标记为 1",
+ "需要 FEM solve → 计算代价高",
+ "代表 \"最优\" 加密决策",
+ ], font_size=12, color=TEXT_MID, bullet_char="▸")
+
+ # Box 2: physics
+ b2 = add_shape_fill(slide, x0 + box_w + gap, y_top, box_w, box_h, RGBColor(0xE3, 0xF2, 0xFD))
+ add_text_box(slide, x0 + box_w + gap + Inches(0.15), y_top + Inches(0.1),
+ box_w - Inches(0.3), Inches(0.4),
+ "physics_score (物理先验)", font_size=14, color=ACCENT_BLUE, bold=True)
+ add_bullet_list(slide, x0 + box_w + gap + Inches(0.15), y_top + Inches(0.55),
+ box_w - Inches(0.3), Inches(2.0), [
+ "h / λ_eff,纯几何计算",
+ "无需 FEM solve",
+ "忽略波场、几何、材料信息",
+ "基线对比方法",
+ ], font_size=12, color=TEXT_MID, bullet_char="▸")
+
+ # Box 3: correction
+ b3 = add_shape_fill(slide, x0 + 2 * (box_w + gap), y_top, box_w, box_h, RGBColor(0xFC, 0xE4, 0xEC))
+ add_text_box(slide, x0 + 2 * (box_w + gap) + Inches(0.15), y_top + Inches(0.1),
+ box_w - Inches(0.3), Inches(0.4),
+ "correction_label (GNN 目标)", font_size=14, color=ACCENT_RED, bold=True)
+ add_bullet_list(slide, x0 + 2 * (box_w + gap) + Inches(0.15), y_top + Inches(0.55),
+ box_w - Inches(0.3), Inches(2.0), [
+ "= teacher_mark − physics_mark",
+ "+1:teacher 独有(应加密)",
+ " 0:两者一致",
+ "−1:physics 独有(不应加密)",
+ ], font_size=12, color=TEXT_MID, bullet_char="▸")
+
+ # Bottom takeaway
+ add_takeaway_strip(slide,
+ "GNN 的训练目标:学习 teacher 与 physics 之间的差异,使标记策略超越纯物理先验")
+
+
+def slide_05_pipeline(prs):
+ """Full pipeline overview."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.4), Inches(12), Inches(0.7),
+ "全流程概览:5 步流水线",
+ font_size=28, color=TEXT_DARK, bold=True)
+
+ add_shape_fill(slide, Inches(0.6), Inches(1.1), Inches(2), Inches(0.04), ACCENT_BLUE)
+
+ # Pipeline steps as connected boxes
+ steps = [
+ ("Step 1", "数据生成", "gen.py", "残差驱动 AMR\n保存逐步数据 + 标签", ACCENT_BLUE),
+ ("Step 2", "数据校验", "check.py", "字段完整性\n统计趋势\n空间可视化", ACCENT_GREEN),
+ ("Step 3", "训练", "train.py", "features + physics_score\n→ GNN → sigmoid\n→ 二分类", ACCENT_RED),
+ ("Step 4", "评估", "test/eval.py", "离线指标 + Rollout\n三种方法对比", ACCENT_ORANGE),
+ ("Step 5", "可视化", "viz.py", "端到端 AMR\n单步对比", RGBColor(0x9C, 0x27, 0xB0)),
+ ]
+
+ box_w = Inches(2.2)
+ box_h = Inches(3.2)
+ x_start = Inches(0.5)
+ y_top = Inches(1.6)
+ gap = Inches(0.3)
+
+ for i, (step_num, title, script, desc, color) in enumerate(steps):
+ x = x_start + i * (box_w + gap)
+
+ # Step number circle
+ circle = slide.shapes.add_shape(MSO_SHAPE.OVAL, x + Inches(0.8), y_top, Inches(0.6), Inches(0.6))
+ circle.fill.solid()
+ circle.fill.fore_color.rgb = color
+ circle.line.fill.background()
+ tf = circle.text_frame
+ tf.paragraphs[0].text = str(i + 1)
+ tf.paragraphs[0].font.size = Pt(18)
+ tf.paragraphs[0].font.color.rgb = WHITE
+ tf.paragraphs[0].font.bold = True
+ tf.paragraphs[0].alignment = PP_ALIGN.CENTER
+ tf.word_wrap = False
+
+ # Title
+ add_text_box(slide, x, y_top + Inches(0.7), box_w, Inches(0.4),
+ title, font_size=16, color=color, bold=True, align=PP_ALIGN.CENTER)
+
+ # Script name
+ add_text_box(slide, x, y_top + Inches(1.1), box_w, Inches(0.3),
+ script, font_size=10, color=TEXT_LIGHT, align=PP_ALIGN.CENTER,
+ font_name=FONT_EN)
+
+ # Description
+ add_text_box(slide, x + Inches(0.1), y_top + Inches(1.5), box_w - Inches(0.2), Inches(1.8),
+ desc, font_size=11, color=TEXT_MID, align=PP_ALIGN.CENTER)
+
+ # Arrow between steps
+ if i < len(steps) - 1:
+ arrow_x = x + box_w + Inches(0.05)
+ arrow_y = y_top + Inches(0.25)
+ add_text_box(slide, arrow_x, arrow_y, Inches(0.2), Inches(0.3),
+ "→", font_size=20, color=TEXT_LIGHT, align=PP_ALIGN.CENTER)
+
+ # Bottom: key data flow
+ box = add_shape_fill(slide, Inches(0.5), Inches(5.3), Inches(12.3), Inches(1.5),
+ RGBColor(0xF5, 0xF5, 0xF5))
+ add_text_box(slide, Inches(0.7), Inches(5.4), Inches(11.8), Inches(0.4),
+ "数据流", font_size=14, color=ACCENT_BLUE, bold=True)
+ add_text_box(slide, Inches(0.7), Inches(5.85), Inches(11.8), Inches(0.8),
+ "PDE 参数采样 → 初始网格 → AMR 循环(FEM solve → η → marks → save → refine)→ "
+ "训练数据 (.npz) → GNN 训练 → checkpoint → 离线推理 / Rollout 评估 → 可视化",
+ font_size=12, color=TEXT_MID)
+
+
+def slide_06_data(prs):
+ """Data generation and marking strategy."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.4), Inches(12), Inches(0.7),
+ "Step 1:数据生成与标记策略",
+ font_size=28, color=TEXT_DARK, bold=True)
+
+ add_shape_fill(slide, Inches(0.6), Inches(1.1), Inches(2), Inches(0.04), ACCENT_BLUE)
+
+ # Left: data generation flow
+ add_text_box(slide, Inches(0.6), Inches(1.5), Inches(5.5), Inches(0.5),
+ "残差驱动 AMR 循环", font_size=18, color=TEXT_MID, bold=True)
+
+ add_bullet_list(slide, Inches(0.6), Inches(2.1), Inches(5.5), Inches(2.5), [
+ "100 个 PDE 样本,统一初始网格 32×32",
+ "每步:FEM solve → 残差 η → 三种标记 → 保存 → 加密",
+ "每步保存 .npz:15-dim 特征 + 边索引 + 标记",
+ "共 1236 个 step 文件,平均 ~12 步/样本",
+ "加密时使用安全过滤:面积 + 反向 Dörfler",
+ ], font_size=13)
+
+ # Right: residual estimator
+ add_text_box(slide, Inches(6.8), Inches(1.5), Inches(5.8), Inches(0.5),
+ "残差估计器 η(Teacher Signal)",
+ font_size=18, color=TEXT_MID, bold=True)
+
+ add_bullet_list(slide, Inches(6.8), Inches(2.1), Inches(5.8), Inches(2.5), [
+ "η = √(r_int² + r_jump² + r_sbc²)",
+ "r_int:内部残差(PDE 残差 × h/k)",
+ "r_jump:梯度跳变(相邻单元边界)",
+ "r_sbc:Sommerfeld BC 边界残差",
+ "使用 k₀ 归一化,介质内短波残差自然放大",
+ ], font_size=13)
+
+ # Bottom: data check visualization
+ add_image_safe(slide, OUTLOOK / "data_correction_check" / "sample0011_step002.png",
+ Inches(0.6), Inches(4.6), Inches(12.1), Inches(2.4))
+ add_source_label(slide, "Source: check_correction_data.py — 4 面板空间可视化")
+
+
+def slide_07_features(prs):
+ """Feature engineering."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.4), Inches(12), Inches(0.7),
+ "Step 1:15 维特征工程",
+ font_size=28, color=TEXT_DARK, bold=True)
+
+ add_shape_fill(slide, Inches(0.6), Inches(1.1), Inches(2), Inches(0.04), ACCENT_BLUE)
+
+ # Feature table
+ features = [
+ ("0, 1", "x, y", "单元中点坐标"),
+ ("2", "area", "单元面积"),
+ ("3", "dist_to_center", "到圆柱中心距离"),
+ ("4", "signed_dist", "dist − radius(负值=介质内)"),
+ ("5", "inside", "是否在圆柱内 (0/1)"),
+ ("6", "k", "波数(全局常量)"),
+ ("7", "eps_r", "介电常数(全局常量)"),
+ ("8", "radius", "半径(全局常量)"),
+ ("9, 10", "cx, cy", "圆柱中心(全局常量)"),
+ ("11", "k_h", "k × √area(网格-波数耦合)"),
+ ("12", "k_eps_h", "k × √eps_r × √area(介质内分辨率)"),
+ ("13", "sin(k·x)", "入射波相位 sin 分量"),
+ ("14", "cos(k·x)", "入射波相位 cos 分量"),
+ ]
+
+ # Table header
+ y_start = Inches(1.5)
+ row_h = Inches(0.32)
+ col_widths = [Inches(0.8), Inches(2.0), Inches(5.5)]
+ x_start = Inches(0.6)
+
+ # Header
+ header_bg = add_shape_fill(slide, x_start, y_start,
+ sum(w for w in col_widths), row_h, ACCENT_BLUE)
+ headers = ["维度", "特征名", "说明"]
+ x = x_start
+ for j, (hdr, w) in enumerate(zip(headers, col_widths)):
+ add_text_box(slide, x, y_start + Inches(0.02), w, row_h,
+ hdr, font_size=11, color=WHITE, bold=True, align=PP_ALIGN.CENTER)
+ x += w
+
+ # Rows
+ for i, (dim, name, desc) in enumerate(features):
+ y = y_start + (i + 1) * row_h
+ bg_color = RGBColor(0xF8, 0xF9, 0xFA) if i % 2 == 0 else WHITE
+ add_shape_fill(slide, x_start, y, sum(w for w in col_widths), row_h, bg_color)
+
+ x = x_start
+ vals = [dim, name, desc]
+ for j, (val, w) in enumerate(zip(vals, col_widths)):
+ font_name = FONT_EN if j < 2 else FONT_CN
+ add_text_box(slide, x, y + Inches(0.02), w, row_h,
+ val, font_size=10, color=TEXT_DARK,
+ align=PP_ALIGN.CENTER if j < 2 else PP_ALIGN.LEFT,
+ font_name=font_name)
+ x += w
+
+ # Right: physics score
+ box_x = Inches(9.2)
+ box = add_shape_fill(slide, box_x, Inches(1.5), Inches(3.5), Inches(3.5),
+ RGBColor(0xE8, 0xF0, 0xFE))
+ add_text_box(slide, box_x + Inches(0.15), Inches(1.6), Inches(3.2), Inches(0.4),
+ "Physics Score(第 16 维输入)", font_size=13, color=ACCENT_BLUE, bold=True)
+ add_text_box(slide, box_x + Inches(0.15), Inches(2.1), Inches(3.2), Inches(2.5),
+ "λ_eff = 2π/(k·√ε_r) 介质内\n"
+ " = 2π/k 介质外\n\n"
+ "h = √(2·area) 特征长度\n\n"
+ "physics_score = h / λ_eff\n\n"
+ "> 1 表示分辨率不足\n"
+ "→ 应优先加密",
+ font_size=11, color=TEXT_MID, font_name=FONT_EN)
+
+ # Bottom: normalization
+ add_takeaway_strip(slide,
+ "训练时 15-dim 特征 + physics_score = 16-dim 输入,z-score 归一化")
+
+
+def slide_08_gnn(prs):
+ """GNN architecture."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.4), Inches(12), Inches(0.7),
+ "Step 3:CorrectionGNN 架构",
+ font_size=28, color=TEXT_DARK, bold=True)
+
+ add_shape_fill(slide, Inches(0.6), Inches(1.1), Inches(2), Inches(0.04), ACCENT_RED)
+
+ # Architecture diagram as text boxes
+ # Embedding layer
+ add_text_box(slide, Inches(0.6), Inches(1.5), Inches(5.5), Inches(0.5),
+ "模型结构", font_size=18, color=TEXT_MID, bold=True)
+
+ arch_lines = [
+ "CorrectionGNN(基于 DensityGNN 骨干)",
+ "├── node_embedding: Linear(16 → latent_dim)",
+ "├── edge_embedding: Linear(16 → latent_dim)",
+ "├── mp_steps × 3:",
+ "│ ├── EdgeModule: MLP([src|dst|edge]) → latent_dim",
+ "│ ├── NodeModule: MLP([node|scatter_mean]) → latent_dim",
+ "│ └── LayerNorm + Residual",
+ "├── GlobalVirtualNode: mean_pool → attn_gate → broadcast",
+ "└── head: Linear(64→64) → ReLU → Linear(64→1)",
+ ]
+
+ y = Inches(2.1)
+ for line in arch_lines:
+ add_text_box(slide, Inches(0.6), y, Inches(5.5), Inches(0.3),
+ line, font_size=11, color=TEXT_DARK, font_name="Consolas")
+ y += Inches(0.28)
+
+ # Right: key design choices
+ add_text_box(slide, Inches(6.8), Inches(1.5), Inches(5.8), Inches(0.5),
+ "关键设计", font_size=18, color=TEXT_MID, bold=True)
+
+ designs = [
+ ("消息传递", "每步含边更新 + 节点更新,2 层 MLP + LayerNorm + 残差"),
+ ("GVN", "mean pooling → attention-gated broadcast,scale 可学习"),
+ ("边特征", "|x[src] − x[dst]|(16 维绝对差),输入和 latent 各计算一次"),
+ ("边丢弃", "训练时 edge_dropout=0.1,推理时 0.0"),
+ ("输出头", "单 logit → BCEWithLogitsLoss 训练"),
+ ]
+
+ y = Inches(2.1)
+ for title, desc in designs:
+ add_text_box(slide, Inches(6.8), y, Inches(5.8), Inches(0.3),
+ f"▸ {title}", font_size=13, color=ACCENT_BLUE, bold=True)
+ add_text_box(slide, Inches(7.1), y + Inches(0.32), Inches(5.5), Inches(0.4),
+ desc, font_size=11, color=TEXT_MID)
+ y += Inches(0.8)
+
+ # Bottom: training config table
+ box = add_shape_fill(slide, Inches(0.6), Inches(5.0), Inches(12.1), Inches(2.0),
+ RGBColor(0xF5, 0xF5, 0xF5))
+ add_text_box(slide, Inches(0.8), Inches(5.1), Inches(11.5), Inches(0.4),
+ "训练配置", font_size=14, color=ACCENT_RED, bold=True)
+
+ configs = [
+ "latent_dim=64", "mp_steps=3", "head_hidden=64", "edge_dropout=0.1",
+ "lr=1e-3", "weight_decay=1e-4", "batch_size=1", "epochs=100",
+ "optimizer=Adam", "scheduler=ReduceLROnPlateau", "AMP (GPU)",
+ ]
+ add_text_box(slide, Inches(0.8), Inches(5.5), Inches(11.5), Inches(0.4),
+ " | ".join(configs), font_size=10, color=TEXT_MID,
+ font_name=FONT_EN)
+
+ # Loss function
+ add_text_box(slide, Inches(0.8), Inches(6.0), Inches(11.5), Inches(0.8),
+ "损失函数:BCEWithLogitsLoss + per-graph pos_weight = neg_count/pos_count,"
+ "解决正负样本不平衡。向量化实现,无 Python 循环。",
+ font_size=12, color=TEXT_MID)
+
+
+def slide_09_training(prs):
+ """Training results."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.4), Inches(12), Inches(0.7),
+ "Step 3:训练结果 — AUC 0.950,top-k 远超物理先验",
+ font_size=28, color=TEXT_DARK, bold=True)
+
+ add_shape_fill(slide, Inches(0.6), Inches(1.1), Inches(2), Inches(0.04), ACCENT_GREEN)
+
+ # Key metrics as big numbers
+ metrics = [
+ ("AUC", "0.950", "二分类判别能力"),
+ ("GNN top-k", "46.6%", "与 η 标记的重叠率"),
+ ("Physics top-k", "15.3%", "物理先验基线"),
+ ("GNN/Physics", "3.0×", "GNN 优势倍数"),
+ ]
+
+ box_w = Inches(2.8)
+ box_h = Inches(1.8)
+ x_start = Inches(0.6)
+ y_top = Inches(1.6)
+ gap = Inches(0.25)
+
+ for i, (label, value, desc) in enumerate(metrics):
+ x = x_start + i * (box_w + gap)
+ color = ACCENT_BLUE if i < 2 else (ACCENT_GREEN if i == 3 else TEXT_MID)
+ bg = RGBColor(0xE8, 0xF0, 0xFE) if i < 2 else (
+ RGBColor(0xE8, 0xF5, 0xE9) if i == 3 else RGBColor(0xF5, 0xF5, 0xF5))
+
+ add_shape_fill(slide, x, y_top, box_w, box_h, bg)
+ add_text_box(slide, x, y_top + Inches(0.15), box_w, Inches(0.35),
+ label, font_size=13, color=TEXT_LIGHT, align=PP_ALIGN.CENTER)
+ add_text_box(slide, x, y_top + Inches(0.5), box_w, Inches(0.8),
+ value, font_size=32, color=color, bold=True, align=PP_ALIGN.CENTER,
+ font_name=FONT_EN)
+ add_text_box(slide, x, y_top + Inches(1.3), box_w, Inches(0.35),
+ desc, font_size=10, color=TEXT_LIGHT, align=PP_ALIGN.CENTER)
+
+ # Training curve placeholder
+ add_text_box(slide, Inches(0.6), Inches(3.8), Inches(5.5), Inches(0.5),
+ "训练过程", font_size=18, color=TEXT_MID, bold=True)
+
+ add_bullet_list(slide, Inches(0.6), Inches(4.3), Inches(5.5), Inches(2.5), [
+ "100 epochs,最佳 epoch=40",
+ "train_loss: 0.435 → val_loss: 0.533",
+ "val_topk_overlap: 0.466 (vs physics 0.153)",
+ "GNN 在验证集上 100% 样本优于 physics",
+ "使用 AMP 混合精度加速 GPU 训练",
+ ], font_size=13)
+
+ # Right: what this means
+ add_text_box(slide, Inches(6.8), Inches(3.8), Inches(5.8), Inches(0.5),
+ "结果解读", font_size=18, color=TEXT_MID, bold=True)
+
+ add_bullet_list(slide, Inches(6.8), Inches(4.3), Inches(5.8), Inches(2.5), [
+ "AUC=0.95 表明 GNN 能很好地区分应加密/不应加密单元",
+ "top-k 46.6% 意味着 GNN 预测的 top-k 中近半与 η 一致",
+ "物理先验仅 15.3% → GNN 学到了大量额外信息",
+ "GNN 从几何+波场相位中捕捉了 η 的关键模式",
+ ], font_size=13)
+
+ add_takeaway_strip(slide,
+ "GNN 不仅记住了 η 的模式,还学到了从几何/物理特征推断加密优先级的能力")
+
+
+def slide_10_eval(prs):
+ """Offline evaluation."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.4), Inches(12), Inches(0.7),
+ "Step 4a:离线评估 — GNN vs Physics 对比",
+ font_size=28, color=TEXT_DARK, bold=True)
+
+ add_shape_fill(slide, Inches(0.6), Inches(1.1), Inches(2), Inches(0.04), ACCENT_ORANGE)
+
+ # Test visualization image
+ add_image_safe(slide, OUTLOOK / "result" / "correction" / "vis" / "sample0000_step004_vis.png",
+ Inches(0.6), Inches(1.5), Inches(12.1), Inches(3.5))
+ add_source_label(slide, "Source: test_correction.py — 验证集逐图可视化 (2×2: teacher/GNN/physics/TP·FP·FN·TN)")
+
+ # Bottom: what the panels show
+ add_text_box(slide, Inches(0.6), Inches(5.2), Inches(5.5), Inches(0.5),
+ "评估指标", font_size=18, color=TEXT_MID, bold=True)
+
+ add_bullet_list(slide, Inches(0.6), Inches(5.7), Inches(5.5), Inches(1.5), [
+ "top-k overlap:GNN/probability top-k 与 teacher_mark 交集",
+ "AUC:ROC-AUC(GNN vs physics baseline)",
+ "gnn_beats_physics_ratio:GNN 优于 physics 的样本比例",
+ ], font_size=12)
+
+ add_text_box(slide, Inches(6.8), Inches(5.2), Inches(5.8), Inches(0.5),
+ "解读", font_size=18, color=TEXT_MID, bold=True)
+
+ add_bullet_list(slide, Inches(6.8), Inches(5.7), Inches(5.8), Inches(1.5), [
+ "左上:True teacher_mark(η top-3% 标记)",
+ "右上:GNN 预测(top-k selection)",
+ "左下:Physics baseline(h/λ_eff top-k)",
+ "右下:TP/FP/FN/TN 误差分类图",
+ ], font_size=12)
+
+
+def slide_11_rollout(prs):
+ """Rollout evaluation results."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.4), Inches(12), Inches(0.7),
+ "Step 4b:Rollout 评估 — 迭代加密到目标单元数",
+ font_size=28, color=TEXT_DARK, bold=True)
+
+ add_shape_fill(slide, Inches(0.6), Inches(1.1), Inches(2), Inches(0.04), ACCENT_ORANGE)
+
+ # Rollout curve
+ add_image_safe(slide, OUTLOOK / "result" / "correction" / "rollout" / "aw_rel_vs_elements.png",
+ Inches(0.6), Inches(1.5), Inches(7), Inches(4.0))
+ add_source_label(slide, "Source: eval_correction.py — aw_rel vs actual elements")
+
+ # Right: three methods comparison
+ add_text_box(slide, Inches(8.0), Inches(1.5), Inches(4.8), Inches(0.5),
+ "三种评估方法", font_size=16, color=TEXT_MID, bold=True)
+
+ methods_data = [
+ ("physics", "h/λ_eff", "纯物理先验基线"),
+ ("neural", "GNN sigmoid", "纯 GNN 概率"),
+ ("hybrid", "α·z(physics)+β·z(neural)", "z-score 混合"),
+ ]
+
+ y = Inches(2.1)
+ for method, formula, desc in methods_data:
+ add_text_box(slide, Inches(8.0), y, Inches(4.8), Inches(0.3),
+ f"▸ {method}: {formula}", font_size=12, color=ACCENT_BLUE, bold=True)
+ add_text_box(slide, Inches(8.3), y + Inches(0.3), Inches(4.5), Inches(0.3),
+ desc, font_size=11, color=TEXT_MID)
+ y += Inches(0.7)
+
+ # Bottom: results table
+ box = add_shape_fill(slide, Inches(0.6), Inches(5.6), Inches(12.1), Inches(1.5),
+ RGBColor(0xF5, 0xF5, 0xF5))
+ add_text_box(slide, Inches(0.8), Inches(5.7), Inches(11.5), Inches(0.4),
+ "Rollout 结果(aw_rel,面积加权相对误差)",
+ font_size=13, color=ACCENT_ORANGE, bold=True)
+
+ add_text_box(slide, Inches(0.8), Inches(6.1), Inches(11.5), Inches(0.9),
+ "target=4000: physics 14.1% → neural 14.0% → hybrid 13.8% (↓1.9%)\n"
+ "target=8000: physics 13.3% → neural 13.0% → hybrid 13.0% (↓1.8%)\n"
+ "target=12000: physics 12.9% → neural 12.8% → hybrid 12.8% (↓0.2%)",
+ font_size=11, color=TEXT_MID, font_name=FONT_EN)
+
+
+def slide_12_viz(prs):
+ """Visualization: AMR results."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.4), Inches(12), Inches(0.7),
+ "Step 5:可视化 — 端到端 AMR 与单步对比",
+ font_size=28, color=TEXT_DARK, bold=True)
+
+ add_shape_fill(slide, Inches(0.6), Inches(1.1), Inches(2), Inches(0.04), RGBColor(0x9C, 0x27, 0xB0))
+
+ # AMR overview
+ add_image_safe(slide, OUTLOOK / "result" / "correction" / "viz" / "amr_overview.png",
+ Inches(0.6), Inches(1.5), Inches(12.1), Inches(2.8))
+ add_source_label(slide, "Source: viz_correction.py — GNN 驱动 AMR 全流程:网格 + 场图总览")
+
+ # Bottom: two modes
+ add_text_box(slide, Inches(0.6), Inches(4.6), Inches(5.5), Inches(0.5),
+ "模式 1:端到端 AMR", font_size=16, color=RGBColor(0x9C, 0x27, 0xB0), bold=True)
+ add_bullet_list(slide, Inches(0.6), Inches(5.1), Inches(5.5), Inches(1.8), [
+ "GNN 驱动完整细化循环",
+ "每步做 FEM solve,展示网格和场的演变",
+ "输出:amr_overview.png + amr_steps/stepXX.png",
+ "支持自定义物理参数(--k, --eps-r 等)",
+ ], font_size=12)
+
+ add_text_box(slide, Inches(6.8), Inches(4.6), Inches(5.8), Inches(0.5),
+ "模式 2:单步对比", font_size=16, color=RGBColor(0x9C, 0x27, 0xB0), bold=True)
+ add_bullet_list(slide, Inches(6.8), Inches(5.1), Inches(5.8), Inches(1.8), [
+ "重建指定 AMR 步的 mesh",
+ "对比 GNN / teacher / physics 三种标记",
+ "2×2 对比图 + 3 面板场图 + 误差图",
+ "支持 Physics vs GNN vs Eta 三方对比",
+ ], font_size=12)
+
+
+def slide_13_viz_detail(prs):
+ """Visualization detail: marks comparison."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.4), Inches(12), Inches(0.7),
+ "单步对比:GNN vs Teacher vs Physics 标记",
+ font_size=28, color=TEXT_DARK, bold=True)
+
+ add_shape_fill(slide, Inches(0.6), Inches(1.1), Inches(2), Inches(0.04), RGBColor(0x9C, 0x27, 0xB0))
+
+ # Marks comparison image
+ add_image_safe(slide, OUTLOOK / "result" / "correction" / "viz" / "marks_sample0005_step010.png",
+ Inches(0.6), Inches(1.5), Inches(7.5), Inches(5.5))
+ add_source_label(slide, "Source: viz_correction.py — marks_sample0005_step010.png")
+
+ # Right: interpretation
+ add_text_box(slide, Inches(8.5), Inches(1.5), Inches(4.3), Inches(0.5),
+ "解读", font_size=18, color=TEXT_MID, bold=True)
+
+ add_bullet_list(slide, Inches(8.5), Inches(2.1), Inches(4.3), Inches(4.5), [
+ "左上:True teacher_mark(η top-3%)",
+ "右上:GNN 预测标记",
+ "左下:Physics baseline 标记",
+ "右下:误差分类",
+ "",
+ "TP(绿):GNN 正确预测的加密单元",
+ "FP(蓝):GNN 误判为应加密",
+ "FN(红):GNN 漏掉的应加密单元",
+ "TN(灰):正确预测的非加密单元",
+ ], font_size=12)
+
+ add_takeaway_strip(slide,
+ "GNN 能有效捕捉散射体界面和波前附近的高残差区域")
+
+
+def slide_14_robustness(prs):
+ """Validation and robustness."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.4), Inches(12), Inches(0.7),
+ "验证与稳健性:数据质量保障",
+ font_size=28, color=TEXT_DARK, bold=True)
+
+ add_shape_fill(slide, Inches(0.6), Inches(1.1), Inches(2), Inches(0.04), ACCENT_GREEN)
+
+ # Five checks
+ add_text_box(slide, Inches(0.6), Inches(1.5), Inches(5.5), Inches(0.5),
+ "数据校验 5 项检查", font_size=18, color=TEXT_MID, bold=True)
+
+ checks = [
+ ("1", "字段完整性", "每个 .npz 包含所有必需字段、维度/类型正确"),
+ ("2", "全局统计", "teacher/physics mark 比例、IoU、correction 正负比"),
+ ("3", "逐步趋势", "correction 信号随 AMR 步数合理衰减"),
+ ("4", "空间可视化", "随机 5 样本 4 面板图(score/eta/mark/correction)"),
+ ("5", "最终判定", "PASS / WARNING / FAIL"),
+ ]
+
+ y = Inches(2.1)
+ for num, title, desc in checks:
+ circle = slide.shapes.add_shape(MSO_SHAPE.OVAL, Inches(0.6), y, Inches(0.4), Inches(0.4))
+ circle.fill.solid()
+ circle.fill.fore_color.rgb = ACCENT_GREEN
+ circle.line.fill.background()
+ tf = circle.text_frame
+ tf.paragraphs[0].text = num
+ tf.paragraphs[0].font.size = Pt(12)
+ tf.paragraphs[0].font.color.rgb = WHITE
+ tf.paragraphs[0].font.bold = True
+ tf.paragraphs[0].alignment = PP_ALIGN.CENTER
+
+ add_text_box(slide, Inches(1.1), y, Inches(1.5), Inches(0.35),
+ title, font_size=13, color=TEXT_DARK, bold=True)
+ add_text_box(slide, Inches(2.6), y, Inches(4), Inches(0.35),
+ desc, font_size=11, color=TEXT_MID)
+ y += Inches(0.5)
+
+ # Right: comparison visualization
+ add_text_box(slide, Inches(6.8), Inches(1.5), Inches(5.8), Inches(0.5),
+ "三方对比可视化", font_size=18, color=TEXT_MID, bold=True)
+
+ add_image_safe(slide, OUTLOOK / "result" / "correction" / "viz" / "compare_sample0005_step010.png",
+ Inches(6.8), Inches(2.1), Inches(5.8), Inches(3.0))
+ add_source_label(slide, "Source: viz_correction.py — Physics vs GNN vs Eta (2×3 field + error)")
+
+ # Bottom: robustness
+ box = add_shape_fill(slide, Inches(0.6), Inches(5.5), Inches(12.1), Inches(1.3),
+ RGBColor(0xE8, 0xF5, 0xE9))
+ add_text_box(slide, Inches(0.8), Inches(5.6), Inches(11.5), Inches(0.4),
+ "稳健性保障", font_size=14, color=ACCENT_GREEN, bold=True)
+ add_bullet_list(slide, Inches(0.8), Inches(6.0), Inches(11.5), Inches(0.7), [
+ "训练/验证按 sample ID 划分(无数据泄漏) | 统一初始网格消除网格差异 | "
+ "安全过滤防止退化单元 | 多目标单元数评估(2k/4k/8k/12k)",
+ ], font_size=11, color=TEXT_MID)
+
+
+def slide_15_innovation(prs):
+ """Innovation and value."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.4), Inches(12), Inches(0.7),
+ "创新点与可复用价值",
+ font_size=28, color=TEXT_DARK, bold=True)
+
+ add_shape_fill(slide, Inches(0.6), Inches(1.1), Inches(2), Inches(0.04), ACCENT_BLUE)
+
+ innovations = [
+ ("Correction Learning 框架",
+ "不直接预测 η,而是学习 teacher 与 physics 之间的差异。"
+ "这使得 GNN 专注于物理先验无法捕捉的信息,而非重复已有知识。"),
+ ("无需 FEM 的推理",
+ "推理时只需几何/物理特征(15-dim + physics_score),"
+ "无需 FEM solve,可离线部署,计算代价从 O(N_steps × FEM) 降至 O(N_steps × GNN forward)。"),
+ ("三标记对比设计",
+ "teacher_mark / physics_mark / correction_label 的三重对比,"
+ "清晰量化了 GNN 相对于物理先验的增量价值。"),
+ ("安全过滤机制",
+ "面积过滤 + 反向 Dörfler 过滤的两层安全机制,"
+ "防止对退化单元或误差极小单元做无意义加密。"),
+ ("统一评估体系",
+ "离线指标(top-k/AUC)+ Rollout 评估(三种方法 × 多目标单元数)"
+ "+ 端到端可视化,全方位验证 GNN 的有效性。"),
+ ]
+
+ y = Inches(1.5)
+ for i, (title, desc) in enumerate(innovations):
+ # Number
+ add_text_box(slide, Inches(0.6), y, Inches(0.5), Inches(0.4),
+ f"{i+1}.", font_size=16, color=ACCENT_BLUE, bold=True)
+ add_text_box(slide, Inches(1.1), y, Inches(4.5), Inches(0.4),
+ title, font_size=15, color=TEXT_DARK, bold=True)
+ add_text_box(slide, Inches(1.1), y + Inches(0.4), Inches(11), Inches(0.5),
+ desc, font_size=12, color=TEXT_MID)
+ y += Inches(1.0)
+
+ add_takeaway_strip(slide,
+ "Correction learning 框架可推广到其他 PDE 问题和 AMR 策略")
+
+
+def slide_16_limitations(prs):
+ """Limitations and open questions."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.4), Inches(12), Inches(0.7),
+ "局限性与未解决问题",
+ font_size=28, color=TEXT_DARK, bold=True)
+
+ add_shape_fill(slide, Inches(0.6), Inches(1.1), Inches(2), Inches(0.04), ACCENT_ORANGE)
+
+ # Current limitations
+ add_text_box(slide, Inches(0.6), Inches(1.5), Inches(5.5), Inches(0.5),
+ "当前局限", font_size=18, color=ACCENT_RED, bold=True)
+
+ add_bullet_list(slide, Inches(0.6), Inches(2.1), Inches(5.5), Inches(3.5), [
+ "仅验证 2D Helmholtz 介质圆柱散射问题",
+ "参数空间有限:k∈[3,15],ε_r∈[2,8]",
+ "统一初始网格(32×32),未测试非均匀初始网格",
+ "Rollout 改善幅度有限(~2%),高预算下差异缩小",
+ "correction_label 依赖 η 的质量(teacher 信号的上限)",
+ "batch_size=1 的图级训练,大规模数据效率低",
+ ], font_size=13)
+
+ # Open questions
+ add_text_box(slide, Inches(6.8), Inches(1.5), Inches(5.8), Inches(0.5),
+ "开放问题", font_size=18, color=ACCENT_BLUE, bold=True)
+
+ add_bullet_list(slide, Inches(6.8), Inches(2.1), Inches(5.8), Inches(3.5), [
+ "能否推广到 3D 问题和其他 PDE(Maxwell, elasticity)?",
+ "如何处理更复杂的散射体(多体、非圆柱)?",
+ "是否可以用 RL 替代 supervised correction learning?",
+ "如何自适应调整 mark_fraction?",
+ "GNN 推理速度 vs FEM solve 的实际加速比?",
+ "能否与 hp-AMR 或 spectral 方法结合?",
+ ], font_size=13)
+
+ # Bottom: boundary conditions
+ box = add_shape_fill(slide, Inches(0.6), Inches(5.5), Inches(12.1), Inches(1.3),
+ RGBColor(0xFE, 0xF3, 0xE2))
+ add_text_box(slide, Inches(0.8), Inches(5.6), Inches(11.5), Inches(0.4),
+ "应用边界", font_size=14, color=ACCENT_ORANGE, bold=True)
+ add_text_box(slide, Inches(0.8), Inches(6.0), Inches(11.5), Inches(0.7),
+ "本方法的核心假设:(1) 物理先验 physics_score 提供了合理的基线;"
+ "(2) 残差估计器 η 是可信的 teacher signal;"
+ "(3) 网格拓扑变化可以通过图结构捕捉。"
+ "当这些假设不成立时(如高频率问题、复杂几何),方法的有效性需要重新验证。",
+ font_size=12, color=TEXT_MID)
+
+
+def slide_17_summary(prs):
+ """Summary."""
+ slide = prs.slides.add_slide(prs.slide_layouts[6])
+ set_slide_bg(slide, WHITE)
+
+ # Top accent bar
+ add_shape_fill(slide, Inches(0), Inches(0), SLIDE_W, Inches(0.08), ACCENT_BLUE)
+
+ add_text_box(slide, Inches(0.6), Inches(0.6), Inches(12), Inches(0.7),
+ "总结",
+ font_size=32, color=TEXT_DARK, bold=True, align=PP_ALIGN.CENTER)
+
+ # Summary points as cards
+ cards = [
+ ("问题", "2D Helmholtz 散射的 FEM 求解需要自适应网格加密,"
+ "但传统残差驱动 AMR 计算代价高"),
+ ("方法", "Correction Learning:GNN 学习 teacher_mark 与 physics_mark 之间的差异,"
+ "推理时无需 FEM solve"),
+ ("数据", "100 样本 × ~12 步 = 1236 个训练样本,15-dim 特征 + physics_score"),
+ ("架构", "DensityGNN 骨干 + 二分类头,消息传递 + GVN + edge dropout"),
+ ("结果", "AUC=0.950,top-k 46.6%(vs physics 15.3%),"
+ "Rollout aw_rel 改善 ~2%"),
+ ("价值", "Correction learning 框架可推广到其他 PDE 问题,"
+ "推理代价从 FEM solve 降至 GNN forward"),
+ ]
+
+ y = Inches(1.6)
+ for i, (label, text) in enumerate(cards):
+ bg = RGBColor(0xE8, 0xF0, 0xFE) if i % 2 == 0 else RGBColor(0xF5, 0xF5, 0xF5)
+ add_shape_fill(slide, Inches(1), y, Inches(11.3), Inches(0.7), bg)
+ add_text_box(slide, Inches(1.2), y + Inches(0.05), Inches(1.5), Inches(0.6),
+ label, font_size=14, color=ACCENT_BLUE, bold=True)
+ add_text_box(slide, Inches(2.8), y + Inches(0.05), Inches(9.2), Inches(0.6),
+ text, font_size=13, color=TEXT_MID)
+ y += Inches(0.8)
+
+ # Bottom
+ add_text_box(slide, Inches(1), Inches(6.5), Inches(11.3), Inches(0.5),
+ "谢谢!欢迎提问与讨论",
+ font_size=20, color=TEXT_DARK, bold=True, align=PP_ALIGN.CENTER)
+
+
+# ============================================================================
+# Main
+# ============================================================================
+
+
+def main():
+ prs = Presentation()
+ prs.slide_width = SLIDE_W
+ prs.slide_height = SLIDE_H
+
+ # Build all slides
+ slide_01_title(prs)
+ slide_02_background(prs)
+ slide_03_gap(prs)
+ slide_04_approach(prs)
+ slide_05_pipeline(prs)
+ slide_06_data(prs)
+ slide_07_features(prs)
+ slide_08_gnn(prs)
+ slide_09_training(prs)
+ slide_10_eval(prs)
+ slide_11_rollout(prs)
+ slide_12_viz(prs)
+ slide_13_viz_detail(prs)
+ slide_14_robustness(prs)
+ slide_15_innovation(prs)
+ slide_16_limitations(prs)
+ slide_17_summary(prs)
+
+ # Save
+ out_path = OUTPUT / "final_presentation_cn.pptx"
+ prs.save(str(out_path))
+ print(f"✓ Saved: {out_path}")
+ print(f" Slides: {len(prs.slides)}")
+
+ # Count images
+ img_count = 0
+ for slide in prs.slides:
+ for shape in slide.shapes:
+ if shape.shape_type == 13: # picture
+ img_count += 1
+ print(f" Images: {img_count}")
+
+ return out_path
+
+
+if __name__ == "__main__":
+ main()
diff --git a/outlook/output/final_presentation_cn.pptx b/outlook/output/final_presentation_cn.pptx
new file mode 100644
index 0000000..ffe33cd
Binary files /dev/null and b/outlook/output/final_presentation_cn.pptx differ
diff --git a/outlook/output/qa_report.md b/outlook/output/qa_report.md
new file mode 100644
index 0000000..c6357e2
--- /dev/null
+++ b/outlook/output/qa_report.md
@@ -0,0 +1,79 @@
+# QA Report — GNN-AMR Correction Presentation
+
+## PPTX Status
+- **File**: `output/final_presentation_cn.pptx`
+- **Creation**: ✅ Success
+- **Slides**: 17
+- **Dimensions**: 13.3" × 7.5" (16:9 widescreen)
+- **Images inserted**: 6 (from existing result files)
+
+## Slide Summary
+
+| Slide | Title | Type | Images |
+|-------|-------|------|--------|
+| 1 | GNN 引导的自适应网格加密 | Title | 0 |
+| 2 | 研究背景:为什么这个问题重要 | Background | 0 |
+| 3 | 技术瓶颈:传统残差驱动 AMR 的局限 | Gap | 0 |
+| 4 | 核心思路:GNN 学习修正信号 | Approach | 0 |
+| 5 | 全流程概览:5 步流水线 | Pipeline | 0 |
+| 6 | Step 1:数据生成与标记策略 | Method | 1 |
+| 7 | Step 1:15 维特征工程 | Method | 0 |
+| 8 | Step 3:CorrectionGNN 架构 | Architecture | 0 |
+| 9 | Step 3:训练结果 | Result | 0 |
+| 10 | Step 4a:离线评估 | Result | 1 |
+| 11 | Step 4b:Rollout 评估 | Result | 1 |
+| 12 | Step 5:端到端 AMR 可视化 | Visualization | 1 |
+| 13 | 单步对比:GNN vs Teacher vs Physics | Visualization | 1 |
+| 14 | 验证与稳健性 | Validation | 1 |
+| 15 | 创新点与可复用价值 | Innovation | 0 |
+| 16 | 局限性与未解决问题 | Limitations | 0 |
+| 17 | 总结 | Summary | 0 |
+
+## Figure Assets Used
+
+| Asset | Source | Slide |
+|-------|--------|-------|
+| `data_correction_check/sample0011_step002.png` | check_correction_data.py | 6 |
+| `result/correction/vis/sample0000_step004_vis.png` | test_correction.py | 10 |
+| `result/correction/rollout/aw_rel_vs_elements.png` | eval_correction.py | 11 |
+| `result/correction/viz/amr_overview.png` | viz_correction.py | 12 |
+| `result/correction/viz/marks_sample0005_step010.png` | viz_correction.py | 13 |
+| `result/correction/viz/compare_sample0005_step010.png` | viz_correction.py | 14 |
+
+## Data Sources
+
+- Training log: `outlook/ckpt/correction_train_log.json` (best epoch 40, AUC=0.950)
+- Rollout results: `outlook/result/correction/rollout/eval_results.json`
+- Dataset: `outlook/data_correction/` (100 samples, 1236 step files)
+
+## Verification
+
+- ✅ PPTX reopens successfully
+- ✅ 17 slides created
+- ✅ 6 images embedded
+- ✅ All slide titles in Chinese
+- ✅ Consistent color scheme (blue/red/green/orange accents)
+- ✅ 16:9 widescreen format
+- ⚠️ No speaker notes added (lightweight deck)
+- ⚠️ No headless renderer available for visual QA
+
+## Presentation Arc
+
+**Problem-to-Solution** (methods paper):
+1. Background: Helmholtz scattering + FEM
+2. Gap: Traditional AMR needs per-step FEM solve
+3. Approach: Correction learning (teacher - physics)
+4. Pipeline: 5-step workflow
+5. Architecture: CorrectionGNN
+6. Training: AUC=0.950, top-k 46.6%
+7. Evaluation: Offline + Rollout
+8. Visualization: AMR + step comparison
+9. Validation: 5-check data quality
+10. Innovation + Limitations + Summary
+
+## Known Limitations
+
+- No speaker notes (can be added manually)
+- Some text-heavy slides (features, architecture) use structured layouts rather than figures
+- Rollout improvement is modest (~2%) — presented honestly
+- No rendered slide previews (no headless renderer available)
diff --git a/outlook/result/correction/ood_results.json b/outlook/result/correction/ood_results.json
new file mode 100644
index 0000000..283affd
--- /dev/null
+++ b/outlook/result/correction/ood_results.json
@@ -0,0 +1,362 @@
+[
+ {
+ "k": 20,
+ "target": 5000,
+ "method": "physics",
+ "actual": 4998,
+ "aw_rel": 0.3217149300243721,
+ "max_err": 0.6962009018743558,
+ "steps": 14,
+ "time": 0.4661191359627992
+ },
+ {
+ "k": 20,
+ "target": 5000,
+ "method": "neural",
+ "actual": 4998,
+ "aw_rel": 0.32556276681459906,
+ "max_err": 0.6825978318090722,
+ "steps": 13,
+ "time": 0.6737254089675844
+ },
+ {
+ "k": 20,
+ "target": 5000,
+ "method": "hybrid",
+ "actual": 4993,
+ "aw_rel": 0.317281215613024,
+ "max_err": 0.6923355308694191,
+ "steps": 15,
+ "time": 0.769882422988303
+ },
+ {
+ "k": 20,
+ "target": 10000,
+ "method": "physics",
+ "actual": 10000,
+ "aw_rel": 0.2455356542863538,
+ "max_err": 0.5550836298189422,
+ "steps": 20,
+ "time": 1.0794300560373813
+ },
+ {
+ "k": 20,
+ "target": 10000,
+ "method": "neural",
+ "actual": 10000,
+ "aw_rel": 0.17851543463179662,
+ "max_err": 0.34862177256997806,
+ "steps": 17,
+ "time": 1.1895099669927731
+ },
+ {
+ "k": 20,
+ "target": 10000,
+ "method": "hybrid",
+ "actual": 10000,
+ "aw_rel": 0.195654945512401,
+ "max_err": 0.4277126651743185,
+ "steps": 20,
+ "time": 1.4911086679203436
+ },
+ {
+ "k": 20,
+ "target": 20000,
+ "method": "physics",
+ "actual": 20000,
+ "aw_rel": 0.10609176644235017,
+ "max_err": 0.1886166220958851,
+ "steps": 26,
+ "time": 2.6345828390913084
+ },
+ {
+ "k": 20,
+ "target": 20000,
+ "method": "neural",
+ "actual": 19993,
+ "aw_rel": 0.10683447717264158,
+ "max_err": 0.17809393345606878,
+ "steps": 22,
+ "time": 3.3632535689976066
+ },
+ {
+ "k": 20,
+ "target": 20000,
+ "method": "hybrid",
+ "actual": 19997,
+ "aw_rel": 0.14034818937447865,
+ "max_err": 0.2866884663237459,
+ "steps": 25,
+ "time": 3.6751408700365573
+ },
+ {
+ "k": 30,
+ "target": 5000,
+ "method": "physics",
+ "actual": 4998,
+ "aw_rel": 0.3393543560786418,
+ "max_err": 0.5825866799685764,
+ "steps": 11,
+ "time": 0.4228137138998136
+ },
+ {
+ "k": 30,
+ "target": 5000,
+ "method": "neural",
+ "actual": 4998,
+ "aw_rel": 0.2352016905332648,
+ "max_err": 0.3942031180281991,
+ "steps": 10,
+ "time": 0.550575491040945
+ },
+ {
+ "k": 30,
+ "target": 5000,
+ "method": "hybrid",
+ "actual": 5000,
+ "aw_rel": 0.27940272630002383,
+ "max_err": 0.5234578460680863,
+ "steps": 12,
+ "time": 0.5970521529670805
+ },
+ {
+ "k": 30,
+ "target": 10000,
+ "method": "physics",
+ "actual": 9996,
+ "aw_rel": 0.15152857803270367,
+ "max_err": 0.31107218357043964,
+ "steps": 17,
+ "time": 1.144380453042686
+ },
+ {
+ "k": 30,
+ "target": 10000,
+ "method": "neural",
+ "actual": 10000,
+ "aw_rel": 0.13398555817493557,
+ "max_err": 0.22077948547792497,
+ "steps": 14,
+ "time": 1.0638798179570585
+ },
+ {
+ "k": 30,
+ "target": 10000,
+ "method": "hybrid",
+ "actual": 10000,
+ "aw_rel": 0.1333944281065923,
+ "max_err": 0.222614344459093,
+ "steps": 17,
+ "time": 1.3644415650051087
+ },
+ {
+ "k": 30,
+ "target": 20000,
+ "method": "physics",
+ "actual": 19998,
+ "aw_rel": 0.1013801309718931,
+ "max_err": 0.19801070484784075,
+ "steps": 23,
+ "time": 2.814543951069936
+ },
+ {
+ "k": 30,
+ "target": 20000,
+ "method": "neural",
+ "actual": 19993,
+ "aw_rel": 0.08375406203605103,
+ "max_err": 0.1545919881725948,
+ "steps": 18,
+ "time": 2.8871457159984857
+ },
+ {
+ "k": 30,
+ "target": 20000,
+ "method": "hybrid",
+ "actual": 19999,
+ "aw_rel": 0.07957568140418023,
+ "max_err": 0.16280394699178038,
+ "steps": 22,
+ "time": 3.5479730810038745
+ },
+ {
+ "k": 50,
+ "target": 5000,
+ "method": "physics",
+ "actual": 5000,
+ "aw_rel": 0.9399889711282081,
+ "max_err": 1.8551082594833581,
+ "steps": 5,
+ "time": 0.2624021719675511
+ },
+ {
+ "k": 50,
+ "target": 5000,
+ "method": "neural",
+ "actual": 4994,
+ "aw_rel": 0.8816133183093701,
+ "max_err": 1.6715958338102723,
+ "steps": 5,
+ "time": 0.42504396208096296
+ },
+ {
+ "k": 50,
+ "target": 5000,
+ "method": "hybrid",
+ "actual": 5000,
+ "aw_rel": 0.9097180903636368,
+ "max_err": 1.8077696886774013,
+ "steps": 5,
+ "time": 0.35448640398681164
+ },
+ {
+ "k": 50,
+ "target": 10000,
+ "method": "physics",
+ "actual": 9997,
+ "aw_rel": 0.7355680200787589,
+ "max_err": 1.5899885575892054,
+ "steps": 11,
+ "time": 0.9496761029586196
+ },
+ {
+ "k": 50,
+ "target": 10000,
+ "method": "neural",
+ "actual": 9998,
+ "aw_rel": 0.5292294206824351,
+ "max_err": 0.9634931018865338,
+ "steps": 9,
+ "time": 1.0958814750192687
+ },
+ {
+ "k": 50,
+ "target": 10000,
+ "method": "hybrid",
+ "actual": 9998,
+ "aw_rel": 0.6846834225521029,
+ "max_err": 1.4539268243973664,
+ "steps": 11,
+ "time": 1.3632835500175133
+ },
+ {
+ "k": 50,
+ "target": 20000,
+ "method": "physics",
+ "actual": 20000,
+ "aw_rel": 0.330029350109224,
+ "max_err": 0.7286443170264326,
+ "steps": 17,
+ "time": 2.434937956975773
+ },
+ {
+ "k": 50,
+ "target": 20000,
+ "method": "neural",
+ "actual": 19998,
+ "aw_rel": 0.2798627650153386,
+ "max_err": 0.5184926556640339,
+ "steps": 13,
+ "time": 2.791371556930244
+ },
+ {
+ "k": 50,
+ "target": 20000,
+ "method": "hybrid",
+ "actual": 19997,
+ "aw_rel": 0.2927164810256369,
+ "max_err": 0.5762839628774012,
+ "steps": 16,
+ "time": 3.4059831629274413
+ },
+ {
+ "k": 80,
+ "target": 5000,
+ "method": "physics",
+ "actual": 5000,
+ "aw_rel": 1.2205603946522747,
+ "max_err": 3.195377444630849,
+ "steps": 2,
+ "time": 0.22934054106008261
+ },
+ {
+ "k": 80,
+ "target": 5000,
+ "method": "neural",
+ "actual": 4992,
+ "aw_rel": 1.3983690019561066,
+ "max_err": 4.999275444133655,
+ "steps": 3,
+ "time": 0.3926586000015959
+ },
+ {
+ "k": 80,
+ "target": 5000,
+ "method": "hybrid",
+ "actual": 4992,
+ "aw_rel": 1.3983690019561066,
+ "max_err": 4.999275444133655,
+ "steps": 3,
+ "time": 0.3923477160278708
+ },
+ {
+ "k": 80,
+ "target": 10000,
+ "method": "physics",
+ "actual": 9998,
+ "aw_rel": 1.3577599393700264,
+ "max_err": 4.857732238902951,
+ "steps": 6,
+ "time": 0.74451503099408
+ },
+ {
+ "k": 80,
+ "target": 10000,
+ "method": "neural",
+ "actual": 9998,
+ "aw_rel": 1.276527461917587,
+ "max_err": 5.371709517847322,
+ "steps": 6,
+ "time": 0.9330636019585654
+ },
+ {
+ "k": 80,
+ "target": 10000,
+ "method": "hybrid",
+ "actual": 10000,
+ "aw_rel": 1.2768180104865037,
+ "max_err": 5.351544613527751,
+ "steps": 6,
+ "time": 0.783925783005543
+ },
+ {
+ "k": 80,
+ "target": 20000,
+ "method": "physics",
+ "actual": 20000,
+ "aw_rel": 1.0164081471693989,
+ "max_err": 3.7356988990538214,
+ "steps": 12,
+ "time": 1.9508233020314947
+ },
+ {
+ "k": 80,
+ "target": 20000,
+ "method": "neural",
+ "actual": 19997,
+ "aw_rel": 0.9267010264634065,
+ "max_err": 3.37806038592756,
+ "steps": 11,
+ "time": 2.7887377929873765
+ },
+ {
+ "k": 80,
+ "target": 20000,
+ "method": "hybrid",
+ "actual": 20000,
+ "aw_rel": 1.0593643066000908,
+ "max_err": 3.971632931871011,
+ "steps": 11,
+ "time": 2.330883653019555
+ }
+]
\ No newline at end of file
diff --git a/outlook/result/correction/rollout/aw_rel_vs_elements.png b/outlook/result/correction/rollout/aw_rel_vs_elements.png
new file mode 100644
index 0000000..a226acf
Binary files /dev/null and b/outlook/result/correction/rollout/aw_rel_vs_elements.png differ
diff --git a/outlook/result/correction/rollout/eval_results.json b/outlook/result/correction/rollout/eval_results.json
new file mode 100644
index 0000000..7817a42
--- /dev/null
+++ b/outlook/result/correction/rollout/eval_results.json
@@ -0,0 +1,59142 @@
+{
+ "results": [
+ {
+ "aw_rel": 0.08052738380554773,
+ "max_err": 0.11331282600437803,
+ "actual_elements": 2012,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.5852655172348022,
+ "score_mean": 0.21816910803318024,
+ "score_p50": 0.2108563780784607,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 10,
+ "n_interface": 353,
+ "n_outside": 149,
+ "selected_inside_frac": 0.6666666666666666,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.16666666666666669,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 502,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.2926327586174011,
+ "score_mean": 0.20857807993888855,
+ "score_p50": 0.2108563780784607,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 43,
+ "n_interface": 388,
+ "n_outside": 149,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.13541666666666674,
+ "selected_y_range": 0.15624999999999994,
+ "step": 1,
+ "n_elem": 580,
+ "target_elements": 2000,
+ "gap": 1420,
+ "cutoff_score": 0.2926327586174011,
+ "num_tied_at_cutoff": 43,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2926327586174011,
+ "score_mean": 0.18396154046058655,
+ "score_p50": 0.2108563780784607,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 118,
+ "n_interface": 447,
+ "n_outside": 149,
+ "selected_inside_frac": 0.47619047619047616,
+ "selected_interface_frac": 0.5238095238095238,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2916666666666667,
+ "selected_y_range": 0.31250000000000006,
+ "step": 2,
+ "n_elem": 714,
+ "target_elements": 2000,
+ "gap": 1286,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 476,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.16945083439350128,
+ "score_p50": 0.2108563780784607,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 523,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.4583333333333333,
+ "step": 3,
+ "n_elem": 830,
+ "target_elements": 2000,
+ "gap": 1170,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 444,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.15505248308181763,
+ "score_p50": 0.14631637930870056,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 667,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5833333333333333,
+ "step": 4,
+ "n_elem": 974,
+ "target_elements": 2000,
+ "gap": 1026,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 386,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.1430462896823883,
+ "score_p50": 0.14631637930870056,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 831,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 5,
+ "n_elem": 1138,
+ "target_elements": 2000,
+ "gap": 862,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 322,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.13322575390338898,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 1011,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1318,
+ "target_elements": 2000,
+ "gap": 682,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 256,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.12484901398420334,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 1215,
+ "n_outside": 150,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.7333333333333333,
+ "selected_outside_frac": 0.26666666666666666,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1523,
+ "target_elements": 2000,
+ "gap": 477,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 182,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.11770134419202805,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.1490979790687561,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 1339,
+ "n_outside": 259,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1756,
+ "target_elements": 2000,
+ "gap": 244,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 98,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.11217573285102844,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.14631637930870056,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 1340,
+ "n_outside": 488,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.0625,
+ "selected_y_range": 0.8125,
+ "step": 9,
+ "n_elem": 1986,
+ "target_elements": 2000,
+ "gap": 14,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 24,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 0,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.07815755228655923,
+ "max_err": 0.11531703879233438,
+ "actual_elements": 2091,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9934565424919128,
+ "score_mean": 0.07500632107257843,
+ "score_p50": 6.093935667195183e-08,
+ "score_p90": 0.07531663775444031,
+ "fraction_gt1": 0.0,
+ "n_inside": 10,
+ "n_interface": 353,
+ "n_outside": 149,
+ "selected_inside_frac": 0.6666666666666666,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.18749999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9718235731124878,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9889408946037292,
+ "score_mean": 0.11986444890499115,
+ "score_p50": 6.333994519991393e-07,
+ "score_p90": 0.7595665454864502,
+ "fraction_gt1": 0.0,
+ "n_inside": 42,
+ "n_interface": 399,
+ "n_outside": 149,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.07291666666666674,
+ "selected_y_range": 0.10416666666666674,
+ "step": 1,
+ "n_elem": 590,
+ "target_elements": 2000,
+ "gap": 1410,
+ "cutoff_score": 0.9690684080123901,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884064793586731,
+ "score_mean": 0.10657678544521332,
+ "score_p50": 5.227629662840627e-05,
+ "score_p90": 0.5473951101303101,
+ "fraction_gt1": 0.0,
+ "n_inside": 112,
+ "n_interface": 419,
+ "n_outside": 149,
+ "selected_inside_frac": 0.25,
+ "selected_interface_frac": 0.75,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25,
+ "selected_y_range": 0.3333333333333333,
+ "step": 2,
+ "n_elem": 680,
+ "target_elements": 2000,
+ "gap": 1320,
+ "cutoff_score": 0.9624195694923401,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9921642541885376,
+ "score_mean": 0.13704104721546173,
+ "score_p50": 0.0002797393244691193,
+ "score_p90": 0.6833012104034424,
+ "fraction_gt1": 0.0,
+ "n_inside": 140,
+ "n_interface": 507,
+ "n_outside": 149,
+ "selected_inside_frac": 0.043478260869565216,
+ "selected_interface_frac": 0.9565217391304348,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.31249999999999994,
+ "step": 3,
+ "n_elem": 796,
+ "target_elements": 2000,
+ "gap": 1204,
+ "cutoff_score": 0.9497892260551453,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9846216440200806,
+ "score_mean": 0.15107499063014984,
+ "score_p50": 0.0011595698306337,
+ "score_p90": 0.7330833673477173,
+ "fraction_gt1": 0.0,
+ "n_inside": 146,
+ "n_interface": 629,
+ "n_outside": 149,
+ "selected_inside_frac": 0.37037037037037035,
+ "selected_interface_frac": 0.6296296296296297,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43750000000000006,
+ "selected_y_range": 0.37500000000000006,
+ "step": 4,
+ "n_elem": 924,
+ "target_elements": 2000,
+ "gap": 1076,
+ "cutoff_score": 0.9488162994384766,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9886919260025024,
+ "score_mean": 0.1602586805820465,
+ "score_p50": 0.0014855308691039681,
+ "score_p90": 0.7576364278793335,
+ "fraction_gt1": 0.0,
+ "n_inside": 208,
+ "n_interface": 725,
+ "n_outside": 149,
+ "selected_inside_frac": 0.1875,
+ "selected_interface_frac": 0.8125,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.75,
+ "step": 5,
+ "n_elem": 1082,
+ "target_elements": 2000,
+ "gap": 918,
+ "cutoff_score": 0.9326253533363342,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884822368621826,
+ "score_mean": 0.167030930519104,
+ "score_p50": 0.0016726161120459437,
+ "score_p90": 0.7636300921440125,
+ "fraction_gt1": 0.0,
+ "n_inside": 250,
+ "n_interface": 886,
+ "n_outside": 158,
+ "selected_inside_frac": 0.23684210526315788,
+ "selected_interface_frac": 0.6052631578947368,
+ "selected_outside_frac": 0.15789473684210525,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.875,
+ "step": 6,
+ "n_elem": 1294,
+ "target_elements": 2000,
+ "gap": 706,
+ "cutoff_score": 0.9395723342895508,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9829899072647095,
+ "score_mean": 0.15791092813014984,
+ "score_p50": 0.0013266829773783684,
+ "score_p90": 0.7393683791160583,
+ "fraction_gt1": 0.0,
+ "n_inside": 305,
+ "n_interface": 1026,
+ "n_outside": 199,
+ "selected_inside_frac": 0.17777777777777778,
+ "selected_interface_frac": 0.6444444444444445,
+ "selected_outside_frac": 0.17777777777777778,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.875,
+ "step": 7,
+ "n_elem": 1530,
+ "target_elements": 2000,
+ "gap": 470,
+ "cutoff_score": 0.9371219873428345,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9867375493049622,
+ "score_mean": 0.15111692249774933,
+ "score_p50": 0.0016333359526470304,
+ "score_p90": 0.7256923913955688,
+ "fraction_gt1": 0.0,
+ "n_inside": 338,
+ "n_interface": 1199,
+ "n_outside": 247,
+ "selected_inside_frac": 0.11320754716981132,
+ "selected_interface_frac": 0.6981132075471698,
+ "selected_outside_frac": 0.18867924528301888,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8958333333333333,
+ "step": 8,
+ "n_elem": 1784,
+ "target_elements": 2000,
+ "gap": 216,
+ "cutoff_score": 0.9288814067840576,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 0,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.08189206624265355,
+ "max_err": 0.11010402980149006,
+ "actual_elements": 2023,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 5.438248634338379,
+ "score_mean": -4.76837158203125e-07,
+ "score_p50": -0.22538062930107117,
+ "score_p90": -0.06992969661951065,
+ "fraction_gt1": 0.07421875,
+ "n_inside": 10,
+ "n_interface": 353,
+ "n_outside": 149,
+ "selected_inside_frac": 0.6666666666666666,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.18749999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 1.7804309129714966,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 2.6309945583343506,
+ "score_mean": -3.2327943699783646e-07,
+ "score_p50": -0.14177681505680084,
+ "score_p90": 0.6716103553771973,
+ "fraction_gt1": 0.08813559322033898,
+ "n_inside": 42,
+ "n_interface": 399,
+ "n_outside": 149,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.07291666666666674,
+ "selected_y_range": 0.10416666666666674,
+ "step": 1,
+ "n_elem": 590,
+ "target_elements": 2000,
+ "gap": 1410,
+ "cutoff_score": 2.5969438552856445,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.8590035438537598,
+ "score_mean": -5.04886429553153e-07,
+ "score_p50": 0.03841699659824371,
+ "score_p90": 0.5662412643432617,
+ "fraction_gt1": 0.07352941176470588,
+ "n_inside": 112,
+ "n_interface": 419,
+ "n_outside": 149,
+ "selected_inside_frac": 0.7,
+ "selected_interface_frac": 0.3,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666674,
+ "selected_y_range": 0.31249999999999994,
+ "step": 2,
+ "n_elem": 680,
+ "target_elements": 2000,
+ "gap": 1320,
+ "cutoff_score": 1.8898340463638306,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.8158512115478516,
+ "score_mean": -1.4559913097400567e-07,
+ "score_p50": 0.11797866225242615,
+ "score_p90": 0.7131918668746948,
+ "fraction_gt1": 0.07888040712468193,
+ "n_inside": 157,
+ "n_interface": 480,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.3958333333333333,
+ "step": 3,
+ "n_elem": 786,
+ "target_elements": 2000,
+ "gap": 1214,
+ "cutoff_score": 1.736061930656433,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8181957006454468,
+ "score_mean": -2.012148030416938e-07,
+ "score_p50": 0.2397436946630478,
+ "score_p90": 0.8137219548225403,
+ "fraction_gt1": 0.07802197802197802,
+ "n_inside": 157,
+ "n_interface": 604,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.6458333333333333,
+ "step": 4,
+ "n_elem": 910,
+ "target_elements": 2000,
+ "gap": 1090,
+ "cutoff_score": 1.3406727313995361,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.830768346786499,
+ "score_mean": -2.8899222570544225e-08,
+ "score_p50": -0.14503276348114014,
+ "score_p90": 0.8663500547409058,
+ "fraction_gt1": 0.08238636363636363,
+ "n_inside": 157,
+ "n_interface": 750,
+ "n_outside": 149,
+ "selected_inside_frac": 0.16129032258064516,
+ "selected_interface_frac": 0.8387096774193549,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.8125,
+ "step": 5,
+ "n_elem": 1056,
+ "target_elements": 2000,
+ "gap": 944,
+ "cutoff_score": 1.2298989295959473,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0031492710113525,
+ "score_mean": -2.9296876391526894e-07,
+ "score_p50": -0.12529097497463226,
+ "score_p90": 1.1045702695846558,
+ "fraction_gt1": 0.116,
+ "n_inside": 177,
+ "n_interface": 913,
+ "n_outside": 160,
+ "selected_inside_frac": 0.10810810810810811,
+ "selected_interface_frac": 0.40540540540540543,
+ "selected_outside_frac": 0.4864864864864865,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1250,
+ "target_elements": 2000,
+ "gap": 750,
+ "cutoff_score": 1.3743970394134521,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2431201934814453,
+ "score_mean": -8.343835133928224e-08,
+ "score_p50": -0.5032551288604736,
+ "score_p90": 1.0565963983535767,
+ "fraction_gt1": 0.12440191387559808,
+ "n_inside": 197,
+ "n_interface": 1012,
+ "n_outside": 254,
+ "selected_inside_frac": 0.4186046511627907,
+ "selected_interface_frac": 0.37209302325581395,
+ "selected_outside_frac": 0.20930232558139536,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9166666666666667,
+ "step": 7,
+ "n_elem": 1463,
+ "target_elements": 2000,
+ "gap": 537,
+ "cutoff_score": 1.5340217351913452,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3994226455688477,
+ "score_mean": 0.0,
+ "score_p50": -0.4209725856781006,
+ "score_p90": 1.219143033027649,
+ "fraction_gt1": 0.16339869281045752,
+ "n_inside": 281,
+ "n_interface": 1101,
+ "n_outside": 301,
+ "selected_inside_frac": 0.48,
+ "selected_interface_frac": 0.38,
+ "selected_outside_frac": 0.14,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.9166666666666667,
+ "step": 8,
+ "n_elem": 1683,
+ "target_elements": 2000,
+ "gap": 317,
+ "cutoff_score": 1.7154951095581055,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.750715494155884,
+ "score_mean": -1.8808985657869925e-07,
+ "score_p50": -0.32049715518951416,
+ "score_p90": 1.2590558528900146,
+ "fraction_gt1": 0.12018489984591679,
+ "n_inside": 388,
+ "n_interface": 1212,
+ "n_outside": 347,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.35294117647058826,
+ "selected_outside_frac": 0.6470588235294118,
+ "selected_x_range": 0.25,
+ "selected_y_range": 0.375,
+ "step": 9,
+ "n_elem": 1947,
+ "target_elements": 2000,
+ "gap": 53,
+ "cutoff_score": 2.3474488258361816,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 0,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.07898092907272944,
+ "max_err": 0.11923865109825912,
+ "actual_elements": 4144,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.5852655172348022,
+ "score_mean": 0.21816910803318024,
+ "score_p50": 0.2108563780784607,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 10,
+ "n_interface": 353,
+ "n_outside": 149,
+ "selected_inside_frac": 0.6666666666666666,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.16666666666666669,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 502,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.2926327586174011,
+ "score_mean": 0.20857807993888855,
+ "score_p50": 0.2108563780784607,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 43,
+ "n_interface": 388,
+ "n_outside": 149,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.13541666666666674,
+ "selected_y_range": 0.15624999999999994,
+ "step": 1,
+ "n_elem": 580,
+ "target_elements": 4000,
+ "gap": 3420,
+ "cutoff_score": 0.2926327586174011,
+ "num_tied_at_cutoff": 43,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2926327586174011,
+ "score_mean": 0.18396154046058655,
+ "score_p50": 0.2108563780784607,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 118,
+ "n_interface": 447,
+ "n_outside": 149,
+ "selected_inside_frac": 0.47619047619047616,
+ "selected_interface_frac": 0.5238095238095238,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2916666666666667,
+ "selected_y_range": 0.31250000000000006,
+ "step": 2,
+ "n_elem": 714,
+ "target_elements": 4000,
+ "gap": 3286,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 476,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.16945083439350128,
+ "score_p50": 0.2108563780784607,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 523,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.4583333333333333,
+ "step": 3,
+ "n_elem": 830,
+ "target_elements": 4000,
+ "gap": 3170,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 444,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.15505248308181763,
+ "score_p50": 0.14631637930870056,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 667,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5833333333333333,
+ "step": 4,
+ "n_elem": 974,
+ "target_elements": 4000,
+ "gap": 3026,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 386,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.1430462896823883,
+ "score_p50": 0.14631637930870056,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 831,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 5,
+ "n_elem": 1138,
+ "target_elements": 4000,
+ "gap": 2862,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 322,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.13322575390338898,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 1011,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1318,
+ "target_elements": 4000,
+ "gap": 2682,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 256,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.12484901398420334,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 1215,
+ "n_outside": 150,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.7333333333333333,
+ "selected_outside_frac": 0.26666666666666666,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1523,
+ "target_elements": 4000,
+ "gap": 2477,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 182,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.11770134419202805,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.1490979790687561,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 1339,
+ "n_outside": 259,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1756,
+ "target_elements": 4000,
+ "gap": 2244,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 98,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.11217573285102844,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.14631637930870056,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 1340,
+ "n_outside": 488,
+ "selected_inside_frac": 0.2033898305084746,
+ "selected_interface_frac": 0.3898305084745763,
+ "selected_outside_frac": 0.4067796610169492,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 1986,
+ "target_elements": 4000,
+ "gap": 2014,
+ "cutoff_score": 0.1490979790687561,
+ "num_tied_at_cutoff": 146,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1490979790687561,
+ "score_mean": 0.10605624318122864,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.14631637930870056,
+ "fraction_gt1": 0.0,
+ "n_inside": 211,
+ "n_interface": 1457,
+ "n_outside": 572,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333334,
+ "selected_y_range": 0.9166666666666667,
+ "step": 10,
+ "n_elem": 2240,
+ "target_elements": 4000,
+ "gap": 1760,
+ "cutoff_score": 0.1490979790687561,
+ "num_tied_at_cutoff": 106,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1490979790687561,
+ "score_mean": 0.09896855056285858,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.10542818903923035,
+ "fraction_gt1": 0.0,
+ "n_inside": 211,
+ "n_interface": 1762,
+ "n_outside": 577,
+ "selected_inside_frac": 0.5263157894736842,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.47368421052631576,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2550,
+ "target_elements": 4000,
+ "gap": 1450,
+ "cutoff_score": 0.14631637930870056,
+ "num_tied_at_cutoff": 127,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14631637930870056,
+ "score_mean": 0.09043122828006744,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.10542818903923035,
+ "fraction_gt1": 0.0,
+ "n_inside": 387,
+ "n_interface": 1884,
+ "n_outside": 739,
+ "selected_inside_frac": 0.6666666666666666,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25,
+ "selected_y_range": 0.2708333333333333,
+ "step": 12,
+ "n_elem": 3010,
+ "target_elements": 4000,
+ "gap": 990,
+ "cutoff_score": 0.10542818903923035,
+ "num_tied_at_cutoff": 1510,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10542818903923035,
+ "score_mean": 0.08514362573623657,
+ "score_p50": 0.07454898953437805,
+ "score_p90": 0.10542818903923035,
+ "fraction_gt1": 0.0,
+ "n_inside": 597,
+ "n_interface": 2046,
+ "n_outside": 739,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4270833333333333,
+ "selected_y_range": 0.4166666666666667,
+ "step": 13,
+ "n_elem": 3382,
+ "target_elements": 4000,
+ "gap": 618,
+ "cutoff_score": 0.10542818903923035,
+ "num_tied_at_cutoff": 1456,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10542818903923035,
+ "score_mean": 0.0794186219573021,
+ "score_p50": 0.07454898953437805,
+ "score_p90": 0.10542818903923035,
+ "fraction_gt1": 0.0,
+ "n_inside": 597,
+ "n_interface": 2486,
+ "n_outside": 739,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4791666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 14,
+ "n_elem": 3822,
+ "target_elements": 4000,
+ "gap": 178,
+ "cutoff_score": 0.10542818903923035,
+ "num_tied_at_cutoff": 1300,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 0,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07903923192488811,
+ "max_err": 0.11735248633410866,
+ "actual_elements": 4073,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9934565424919128,
+ "score_mean": 0.07500632107257843,
+ "score_p50": 6.093935667195183e-08,
+ "score_p90": 0.07531663775444031,
+ "fraction_gt1": 0.0,
+ "n_inside": 10,
+ "n_interface": 353,
+ "n_outside": 149,
+ "selected_inside_frac": 0.6666666666666666,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.18749999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9718235731124878,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9889408946037292,
+ "score_mean": 0.11986444890499115,
+ "score_p50": 6.333994519991393e-07,
+ "score_p90": 0.7595665454864502,
+ "fraction_gt1": 0.0,
+ "n_inside": 42,
+ "n_interface": 399,
+ "n_outside": 149,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.07291666666666674,
+ "selected_y_range": 0.10416666666666674,
+ "step": 1,
+ "n_elem": 590,
+ "target_elements": 4000,
+ "gap": 3410,
+ "cutoff_score": 0.9690684080123901,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884064793586731,
+ "score_mean": 0.10657678544521332,
+ "score_p50": 5.227629662840627e-05,
+ "score_p90": 0.5473951101303101,
+ "fraction_gt1": 0.0,
+ "n_inside": 112,
+ "n_interface": 419,
+ "n_outside": 149,
+ "selected_inside_frac": 0.25,
+ "selected_interface_frac": 0.75,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25,
+ "selected_y_range": 0.3333333333333333,
+ "step": 2,
+ "n_elem": 680,
+ "target_elements": 4000,
+ "gap": 3320,
+ "cutoff_score": 0.9624195694923401,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9921642541885376,
+ "score_mean": 0.13704104721546173,
+ "score_p50": 0.0002797393244691193,
+ "score_p90": 0.6833012104034424,
+ "fraction_gt1": 0.0,
+ "n_inside": 140,
+ "n_interface": 507,
+ "n_outside": 149,
+ "selected_inside_frac": 0.043478260869565216,
+ "selected_interface_frac": 0.9565217391304348,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.31249999999999994,
+ "step": 3,
+ "n_elem": 796,
+ "target_elements": 4000,
+ "gap": 3204,
+ "cutoff_score": 0.9497892260551453,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9846216440200806,
+ "score_mean": 0.15107499063014984,
+ "score_p50": 0.0011595698306337,
+ "score_p90": 0.7330833673477173,
+ "fraction_gt1": 0.0,
+ "n_inside": 146,
+ "n_interface": 629,
+ "n_outside": 149,
+ "selected_inside_frac": 0.37037037037037035,
+ "selected_interface_frac": 0.6296296296296297,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43750000000000006,
+ "selected_y_range": 0.37500000000000006,
+ "step": 4,
+ "n_elem": 924,
+ "target_elements": 4000,
+ "gap": 3076,
+ "cutoff_score": 0.9488162994384766,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9886919260025024,
+ "score_mean": 0.1602586805820465,
+ "score_p50": 0.0014855308691039681,
+ "score_p90": 0.7576364278793335,
+ "fraction_gt1": 0.0,
+ "n_inside": 208,
+ "n_interface": 725,
+ "n_outside": 149,
+ "selected_inside_frac": 0.1875,
+ "selected_interface_frac": 0.8125,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.75,
+ "step": 5,
+ "n_elem": 1082,
+ "target_elements": 4000,
+ "gap": 2918,
+ "cutoff_score": 0.9326253533363342,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884822368621826,
+ "score_mean": 0.167030930519104,
+ "score_p50": 0.0016726161120459437,
+ "score_p90": 0.7636300921440125,
+ "fraction_gt1": 0.0,
+ "n_inside": 250,
+ "n_interface": 886,
+ "n_outside": 158,
+ "selected_inside_frac": 0.23684210526315788,
+ "selected_interface_frac": 0.6052631578947368,
+ "selected_outside_frac": 0.15789473684210525,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.875,
+ "step": 6,
+ "n_elem": 1294,
+ "target_elements": 4000,
+ "gap": 2706,
+ "cutoff_score": 0.9395723342895508,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9829899072647095,
+ "score_mean": 0.15791092813014984,
+ "score_p50": 0.0013266829773783684,
+ "score_p90": 0.7393683791160583,
+ "fraction_gt1": 0.0,
+ "n_inside": 305,
+ "n_interface": 1026,
+ "n_outside": 199,
+ "selected_inside_frac": 0.17777777777777778,
+ "selected_interface_frac": 0.6444444444444445,
+ "selected_outside_frac": 0.17777777777777778,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.875,
+ "step": 7,
+ "n_elem": 1530,
+ "target_elements": 4000,
+ "gap": 2470,
+ "cutoff_score": 0.9371219873428345,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9867375493049622,
+ "score_mean": 0.15111692249774933,
+ "score_p50": 0.0016333359526470304,
+ "score_p90": 0.7256923913955688,
+ "fraction_gt1": 0.0,
+ "n_inside": 338,
+ "n_interface": 1199,
+ "n_outside": 247,
+ "selected_inside_frac": 0.11320754716981132,
+ "selected_interface_frac": 0.6981132075471698,
+ "selected_outside_frac": 0.18867924528301888,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8958333333333333,
+ "step": 8,
+ "n_elem": 1784,
+ "target_elements": 4000,
+ "gap": 2216,
+ "cutoff_score": 0.9288814067840576,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9868490695953369,
+ "score_mean": 0.14866839349269867,
+ "score_p50": 0.0016517328331246972,
+ "score_p90": 0.715869665145874,
+ "fraction_gt1": 0.0,
+ "n_inside": 389,
+ "n_interface": 1408,
+ "n_outside": 294,
+ "selected_inside_frac": 0.16129032258064516,
+ "selected_interface_frac": 0.7419354838709677,
+ "selected_outside_frac": 0.0967741935483871,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9166666666666667,
+ "step": 9,
+ "n_elem": 2091,
+ "target_elements": 4000,
+ "gap": 1909,
+ "cutoff_score": 0.9164719581604004,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9862514138221741,
+ "score_mean": 0.13654521107673645,
+ "score_p50": 0.001580156502313912,
+ "score_p90": 0.6341267228126526,
+ "fraction_gt1": 0.0,
+ "n_inside": 450,
+ "n_interface": 1665,
+ "n_outside": 342,
+ "selected_inside_frac": 0.2054794520547945,
+ "selected_interface_frac": 0.4246575342465753,
+ "selected_outside_frac": 0.3698630136986301,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9583333333333333,
+ "step": 10,
+ "n_elem": 2457,
+ "target_elements": 4000,
+ "gap": 1543,
+ "cutoff_score": 0.9063092470169067,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9769663214683533,
+ "score_mean": 0.135296031832695,
+ "score_p50": 0.0009819662664085627,
+ "score_p90": 0.5987653732299805,
+ "fraction_gt1": 0.0,
+ "n_inside": 532,
+ "n_interface": 1864,
+ "n_outside": 463,
+ "selected_inside_frac": 0.12941176470588237,
+ "selected_interface_frac": 0.788235294117647,
+ "selected_outside_frac": 0.08235294117647059,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2859,
+ "target_elements": 4000,
+ "gap": 1141,
+ "cutoff_score": 0.880954921245575,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9748899340629578,
+ "score_mean": 0.14992962777614594,
+ "score_p50": 0.001078388886526227,
+ "score_p90": 0.6928356885910034,
+ "fraction_gt1": 0.0,
+ "n_inside": 619,
+ "n_interface": 2283,
+ "n_outside": 494,
+ "selected_inside_frac": 0.33663366336633666,
+ "selected_interface_frac": 0.5841584158415841,
+ "selected_outside_frac": 0.07920792079207921,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.875,
+ "step": 12,
+ "n_elem": 3396,
+ "target_elements": 4000,
+ "gap": 604,
+ "cutoff_score": 0.9041675329208374,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9857368469238281,
+ "score_mean": 0.16217035055160522,
+ "score_p50": 0.0011920253746211529,
+ "score_p90": 0.7646087408065796,
+ "fraction_gt1": 0.0,
+ "n_inside": 779,
+ "n_interface": 2638,
+ "n_outside": 529,
+ "selected_inside_frac": 0.05555555555555555,
+ "selected_interface_frac": 0.7777777777777778,
+ "selected_outside_frac": 0.16666666666666666,
+ "selected_x_range": 0.7395833333333333,
+ "selected_y_range": 0.7083333333333334,
+ "step": 13,
+ "n_elem": 3946,
+ "target_elements": 4000,
+ "gap": 54,
+ "cutoff_score": 0.9639667272567749,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 0,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.079231875396727,
+ "max_err": 0.11919562530125011,
+ "actual_elements": 4023,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 5.438248634338379,
+ "score_mean": -4.76837158203125e-07,
+ "score_p50": -0.22538062930107117,
+ "score_p90": -0.06992969661951065,
+ "fraction_gt1": 0.07421875,
+ "n_inside": 10,
+ "n_interface": 353,
+ "n_outside": 149,
+ "selected_inside_frac": 0.6666666666666666,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.18749999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 1.7804309129714966,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 2.6309945583343506,
+ "score_mean": -3.2327943699783646e-07,
+ "score_p50": -0.14177681505680084,
+ "score_p90": 0.6716103553771973,
+ "fraction_gt1": 0.08813559322033898,
+ "n_inside": 42,
+ "n_interface": 399,
+ "n_outside": 149,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.07291666666666674,
+ "selected_y_range": 0.10416666666666674,
+ "step": 1,
+ "n_elem": 590,
+ "target_elements": 4000,
+ "gap": 3410,
+ "cutoff_score": 2.5969438552856445,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.8590035438537598,
+ "score_mean": -5.04886429553153e-07,
+ "score_p50": 0.03841699659824371,
+ "score_p90": 0.5662412643432617,
+ "fraction_gt1": 0.07352941176470588,
+ "n_inside": 112,
+ "n_interface": 419,
+ "n_outside": 149,
+ "selected_inside_frac": 0.7,
+ "selected_interface_frac": 0.3,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666674,
+ "selected_y_range": 0.31249999999999994,
+ "step": 2,
+ "n_elem": 680,
+ "target_elements": 4000,
+ "gap": 3320,
+ "cutoff_score": 1.8898340463638306,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.8158512115478516,
+ "score_mean": -1.4559913097400567e-07,
+ "score_p50": 0.11797866225242615,
+ "score_p90": 0.7131918668746948,
+ "fraction_gt1": 0.07888040712468193,
+ "n_inside": 157,
+ "n_interface": 480,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.3958333333333333,
+ "step": 3,
+ "n_elem": 786,
+ "target_elements": 4000,
+ "gap": 3214,
+ "cutoff_score": 1.736061930656433,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8181957006454468,
+ "score_mean": -2.012148030416938e-07,
+ "score_p50": 0.2397436946630478,
+ "score_p90": 0.8137219548225403,
+ "fraction_gt1": 0.07802197802197802,
+ "n_inside": 157,
+ "n_interface": 604,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.6458333333333333,
+ "step": 4,
+ "n_elem": 910,
+ "target_elements": 4000,
+ "gap": 3090,
+ "cutoff_score": 1.3406727313995361,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.830768346786499,
+ "score_mean": -2.8899222570544225e-08,
+ "score_p50": -0.14503276348114014,
+ "score_p90": 0.8663500547409058,
+ "fraction_gt1": 0.08238636363636363,
+ "n_inside": 157,
+ "n_interface": 750,
+ "n_outside": 149,
+ "selected_inside_frac": 0.16129032258064516,
+ "selected_interface_frac": 0.8387096774193549,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.8125,
+ "step": 5,
+ "n_elem": 1056,
+ "target_elements": 4000,
+ "gap": 2944,
+ "cutoff_score": 1.2298989295959473,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0031492710113525,
+ "score_mean": -2.9296876391526894e-07,
+ "score_p50": -0.12529097497463226,
+ "score_p90": 1.1045702695846558,
+ "fraction_gt1": 0.116,
+ "n_inside": 177,
+ "n_interface": 913,
+ "n_outside": 160,
+ "selected_inside_frac": 0.10810810810810811,
+ "selected_interface_frac": 0.40540540540540543,
+ "selected_outside_frac": 0.4864864864864865,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1250,
+ "target_elements": 4000,
+ "gap": 2750,
+ "cutoff_score": 1.3743970394134521,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2431201934814453,
+ "score_mean": -8.343835133928224e-08,
+ "score_p50": -0.5032551288604736,
+ "score_p90": 1.0565963983535767,
+ "fraction_gt1": 0.12440191387559808,
+ "n_inside": 197,
+ "n_interface": 1012,
+ "n_outside": 254,
+ "selected_inside_frac": 0.4186046511627907,
+ "selected_interface_frac": 0.37209302325581395,
+ "selected_outside_frac": 0.20930232558139536,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9166666666666667,
+ "step": 7,
+ "n_elem": 1463,
+ "target_elements": 4000,
+ "gap": 2537,
+ "cutoff_score": 1.5340217351913452,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3994226455688477,
+ "score_mean": 0.0,
+ "score_p50": -0.4209725856781006,
+ "score_p90": 1.219143033027649,
+ "fraction_gt1": 0.16339869281045752,
+ "n_inside": 281,
+ "n_interface": 1101,
+ "n_outside": 301,
+ "selected_inside_frac": 0.48,
+ "selected_interface_frac": 0.38,
+ "selected_outside_frac": 0.14,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.9166666666666667,
+ "step": 8,
+ "n_elem": 1683,
+ "target_elements": 4000,
+ "gap": 2317,
+ "cutoff_score": 1.7154951095581055,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.750715494155884,
+ "score_mean": -1.8808985657869925e-07,
+ "score_p50": -0.32049715518951416,
+ "score_p90": 1.2590558528900146,
+ "fraction_gt1": 0.12018489984591679,
+ "n_inside": 388,
+ "n_interface": 1212,
+ "n_outside": 347,
+ "selected_inside_frac": 0.29310344827586204,
+ "selected_interface_frac": 0.29310344827586204,
+ "selected_outside_frac": 0.41379310344827586,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 1947,
+ "target_elements": 4000,
+ "gap": 2053,
+ "cutoff_score": 1.8359384536743164,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 3.072410821914673,
+ "score_mean": -1.9306195042645413e-07,
+ "score_p50": -0.22766616940498352,
+ "score_p90": 0.9533596634864807,
+ "fraction_gt1": 0.09489380930863081,
+ "n_inside": 465,
+ "n_interface": 1299,
+ "n_outside": 449,
+ "selected_inside_frac": 0.25757575757575757,
+ "selected_interface_frac": 0.4090909090909091,
+ "selected_outside_frac": 0.3333333333333333,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9479166666666666,
+ "step": 10,
+ "n_elem": 2213,
+ "target_elements": 4000,
+ "gap": 1787,
+ "cutoff_score": 1.6912550926208496,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2975058555603027,
+ "score_mean": -1.4395084235729882e-07,
+ "score_p50": -0.09650863707065582,
+ "score_p90": 0.9363903999328613,
+ "fraction_gt1": 0.09394654088050315,
+ "n_inside": 541,
+ "n_interface": 1473,
+ "n_outside": 530,
+ "selected_inside_frac": 0.02631578947368421,
+ "selected_interface_frac": 0.9736842105263158,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.8541666666666667,
+ "step": 11,
+ "n_elem": 2544,
+ "target_elements": 4000,
+ "gap": 1456,
+ "cutoff_score": 1.4990614652633667,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.308173179626465,
+ "score_mean": -8.363844727909964e-08,
+ "score_p50": 0.027747541666030884,
+ "score_p90": 0.9291861653327942,
+ "fraction_gt1": 0.0829051044878383,
+ "n_inside": 551,
+ "n_interface": 1838,
+ "n_outside": 530,
+ "selected_inside_frac": 0.06896551724137931,
+ "selected_interface_frac": 0.9080459770114943,
+ "selected_outside_frac": 0.022988505747126436,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 2919,
+ "target_elements": 4000,
+ "gap": 1081,
+ "cutoff_score": 1.5514416694641113,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.47066068649292,
+ "score_mean": -1.0815443829415017e-07,
+ "score_p50": 0.16499271988868713,
+ "score_p90": 1.0316932201385498,
+ "fraction_gt1": 0.1151801535735381,
+ "n_inside": 591,
+ "n_interface": 2247,
+ "n_outside": 548,
+ "selected_inside_frac": 0.19801980198019803,
+ "selected_interface_frac": 0.6633663366336634,
+ "selected_outside_frac": 0.13861386138613863,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3386,
+ "target_elements": 4000,
+ "gap": 614,
+ "cutoff_score": 1.5491067171096802,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.677403450012207,
+ "score_mean": -6.146541409179918e-08,
+ "score_p50": -0.3247694671154022,
+ "score_p90": 1.023447871208191,
+ "fraction_gt1": 0.10322255790533737,
+ "n_inside": 665,
+ "n_interface": 2667,
+ "n_outside": 640,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.2222222222222222,
+ "selected_outside_frac": 0.7777777777777778,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.8125,
+ "step": 14,
+ "n_elem": 3972,
+ "target_elements": 4000,
+ "gap": 28,
+ "cutoff_score": 2.411778450012207,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 0,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07994347424212582,
+ "max_err": 0.12112091009266446,
+ "actual_elements": 8087,
+ "num_steps": 21,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.5852655172348022,
+ "score_mean": 0.21816910803318024,
+ "score_p50": 0.2108563780784607,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 10,
+ "n_interface": 353,
+ "n_outside": 149,
+ "selected_inside_frac": 0.6666666666666666,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.16666666666666669,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 502,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.2926327586174011,
+ "score_mean": 0.20857807993888855,
+ "score_p50": 0.2108563780784607,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 43,
+ "n_interface": 388,
+ "n_outside": 149,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.13541666666666674,
+ "selected_y_range": 0.15624999999999994,
+ "step": 1,
+ "n_elem": 580,
+ "target_elements": 8000,
+ "gap": 7420,
+ "cutoff_score": 0.2926327586174011,
+ "num_tied_at_cutoff": 43,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2926327586174011,
+ "score_mean": 0.18396154046058655,
+ "score_p50": 0.2108563780784607,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 118,
+ "n_interface": 447,
+ "n_outside": 149,
+ "selected_inside_frac": 0.47619047619047616,
+ "selected_interface_frac": 0.5238095238095238,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2916666666666667,
+ "selected_y_range": 0.31250000000000006,
+ "step": 2,
+ "n_elem": 714,
+ "target_elements": 8000,
+ "gap": 7286,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 476,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.16945083439350128,
+ "score_p50": 0.2108563780784607,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 523,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.4583333333333333,
+ "step": 3,
+ "n_elem": 830,
+ "target_elements": 8000,
+ "gap": 7170,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 444,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.15505248308181763,
+ "score_p50": 0.14631637930870056,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 667,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5833333333333333,
+ "step": 4,
+ "n_elem": 974,
+ "target_elements": 8000,
+ "gap": 7026,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 386,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.1430462896823883,
+ "score_p50": 0.14631637930870056,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 831,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 5,
+ "n_elem": 1138,
+ "target_elements": 8000,
+ "gap": 6862,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 322,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.13322575390338898,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 1011,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1318,
+ "target_elements": 8000,
+ "gap": 6682,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 256,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.12484901398420334,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.2108563780784607,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 1215,
+ "n_outside": 150,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.7333333333333333,
+ "selected_outside_frac": 0.26666666666666666,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1523,
+ "target_elements": 8000,
+ "gap": 6477,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 182,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.11770134419202805,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.1490979790687561,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 1339,
+ "n_outside": 259,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1756,
+ "target_elements": 8000,
+ "gap": 6244,
+ "cutoff_score": 0.2108563780784607,
+ "num_tied_at_cutoff": 98,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2108563780784607,
+ "score_mean": 0.11217573285102844,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.14631637930870056,
+ "fraction_gt1": 0.0,
+ "n_inside": 158,
+ "n_interface": 1340,
+ "n_outside": 488,
+ "selected_inside_frac": 0.2033898305084746,
+ "selected_interface_frac": 0.3898305084745763,
+ "selected_outside_frac": 0.4067796610169492,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 1986,
+ "target_elements": 8000,
+ "gap": 6014,
+ "cutoff_score": 0.1490979790687561,
+ "num_tied_at_cutoff": 146,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1490979790687561,
+ "score_mean": 0.10605624318122864,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.14631637930870056,
+ "fraction_gt1": 0.0,
+ "n_inside": 211,
+ "n_interface": 1457,
+ "n_outside": 572,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333334,
+ "selected_y_range": 0.9166666666666667,
+ "step": 10,
+ "n_elem": 2240,
+ "target_elements": 8000,
+ "gap": 5760,
+ "cutoff_score": 0.1490979790687561,
+ "num_tied_at_cutoff": 106,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1490979790687561,
+ "score_mean": 0.09896855056285858,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.10542818903923035,
+ "fraction_gt1": 0.0,
+ "n_inside": 211,
+ "n_interface": 1762,
+ "n_outside": 577,
+ "selected_inside_frac": 0.5263157894736842,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.47368421052631576,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2550,
+ "target_elements": 8000,
+ "gap": 5450,
+ "cutoff_score": 0.14631637930870056,
+ "num_tied_at_cutoff": 127,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14631637930870056,
+ "score_mean": 0.09043122828006744,
+ "score_p50": 0.10542818903923035,
+ "score_p90": 0.10542818903923035,
+ "fraction_gt1": 0.0,
+ "n_inside": 387,
+ "n_interface": 1884,
+ "n_outside": 739,
+ "selected_inside_frac": 0.6666666666666666,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25,
+ "selected_y_range": 0.2708333333333333,
+ "step": 12,
+ "n_elem": 3010,
+ "target_elements": 8000,
+ "gap": 4990,
+ "cutoff_score": 0.10542818903923035,
+ "num_tied_at_cutoff": 1510,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10542818903923035,
+ "score_mean": 0.08514362573623657,
+ "score_p50": 0.07454898953437805,
+ "score_p90": 0.10542818903923035,
+ "fraction_gt1": 0.0,
+ "n_inside": 597,
+ "n_interface": 2046,
+ "n_outside": 739,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4270833333333333,
+ "selected_y_range": 0.4166666666666667,
+ "step": 13,
+ "n_elem": 3382,
+ "target_elements": 8000,
+ "gap": 4618,
+ "cutoff_score": 0.10542818903923035,
+ "num_tied_at_cutoff": 1456,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10542818903923035,
+ "score_mean": 0.0794186219573021,
+ "score_p50": 0.07454898953437805,
+ "score_p90": 0.10542818903923035,
+ "fraction_gt1": 0.0,
+ "n_inside": 597,
+ "n_interface": 2486,
+ "n_outside": 739,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.53125,
+ "selected_y_range": 0.5416666666666667,
+ "step": 14,
+ "n_elem": 3822,
+ "target_elements": 8000,
+ "gap": 4178,
+ "cutoff_score": 0.10542818903923035,
+ "num_tied_at_cutoff": 1300,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10542818903923035,
+ "score_mean": 0.07422970235347748,
+ "score_p50": 0.07454898953437805,
+ "score_p90": 0.10542818903923035,
+ "fraction_gt1": 0.0,
+ "n_inside": 597,
+ "n_interface": 2996,
+ "n_outside": 739,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6770833333333333,
+ "selected_y_range": 0.6666666666666667,
+ "step": 15,
+ "n_elem": 4332,
+ "target_elements": 8000,
+ "gap": 3668,
+ "cutoff_score": 0.10542818903923035,
+ "num_tied_at_cutoff": 1122,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10542818903923035,
+ "score_mean": 0.06963694840669632,
+ "score_p50": 0.07315818965435028,
+ "score_p90": 0.10542818903923035,
+ "fraction_gt1": 0.0,
+ "n_inside": 597,
+ "n_interface": 3576,
+ "n_outside": 739,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.7916666666666667,
+ "step": 16,
+ "n_elem": 4912,
+ "target_elements": 8000,
+ "gap": 3088,
+ "cutoff_score": 0.10542818903923035,
+ "num_tied_at_cutoff": 920,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10542818903923035,
+ "score_mean": 0.06568985432386398,
+ "score_p50": 0.05271409451961517,
+ "score_p90": 0.10542818903923035,
+ "fraction_gt1": 0.0,
+ "n_inside": 597,
+ "n_interface": 4216,
+ "n_outside": 739,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.9166666666666667,
+ "step": 17,
+ "n_elem": 5552,
+ "target_elements": 8000,
+ "gap": 2448,
+ "cutoff_score": 0.10542818903923035,
+ "num_tied_at_cutoff": 694,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10542818903923035,
+ "score_mean": 0.06227141246199608,
+ "score_p50": 0.05271409451961517,
+ "score_p90": 0.07454898953437805,
+ "fraction_gt1": 0.0,
+ "n_inside": 597,
+ "n_interface": 4875,
+ "n_outside": 784,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0053475935828877,
+ "selected_outside_frac": 0.9946524064171123,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 18,
+ "n_elem": 6256,
+ "target_elements": 8000,
+ "gap": 1744,
+ "cutoff_score": 0.10542818903923035,
+ "num_tied_at_cutoff": 450,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10542818903923035,
+ "score_mean": 0.05933882296085358,
+ "score_p50": 0.05271409451961517,
+ "score_p90": 0.07454898953437805,
+ "fraction_gt1": 0.0,
+ "n_inside": 597,
+ "n_interface": 4902,
+ "n_outside": 1514,
+ "selected_inside_frac": 0.047619047619047616,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.9523809523809523,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 19,
+ "n_elem": 7013,
+ "target_elements": 8000,
+ "gap": 987,
+ "cutoff_score": 0.10346130281686783,
+ "num_tied_at_cutoff": 84,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10346130281686783,
+ "score_mean": 0.05692246928811073,
+ "score_p50": 0.05271409451961517,
+ "score_p90": 0.07454898953437805,
+ "fraction_gt1": 0.0,
+ "n_inside": 638,
+ "n_interface": 4921,
+ "n_outside": 2198,
+ "selected_inside_frac": 0.8395061728395061,
+ "selected_interface_frac": 0.16049382716049382,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16927083333333337,
+ "selected_y_range": 0.21875,
+ "step": 20,
+ "n_elem": 7757,
+ "target_elements": 8000,
+ "gap": 243,
+ "cutoff_score": 0.07454898953437805,
+ "num_tied_at_cutoff": 993,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 0,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07942678607252357,
+ "max_err": 0.12044400384771978,
+ "actual_elements": 8374,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9934565424919128,
+ "score_mean": 0.07500632107257843,
+ "score_p50": 6.093935667195183e-08,
+ "score_p90": 0.07531663775444031,
+ "fraction_gt1": 0.0,
+ "n_inside": 10,
+ "n_interface": 353,
+ "n_outside": 149,
+ "selected_inside_frac": 0.6666666666666666,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.18749999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9718235731124878,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9889408946037292,
+ "score_mean": 0.11986444890499115,
+ "score_p50": 6.333994519991393e-07,
+ "score_p90": 0.7595665454864502,
+ "fraction_gt1": 0.0,
+ "n_inside": 42,
+ "n_interface": 399,
+ "n_outside": 149,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.07291666666666674,
+ "selected_y_range": 0.10416666666666674,
+ "step": 1,
+ "n_elem": 590,
+ "target_elements": 8000,
+ "gap": 7410,
+ "cutoff_score": 0.9690684080123901,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884064793586731,
+ "score_mean": 0.10657678544521332,
+ "score_p50": 5.227629662840627e-05,
+ "score_p90": 0.5473951101303101,
+ "fraction_gt1": 0.0,
+ "n_inside": 112,
+ "n_interface": 419,
+ "n_outside": 149,
+ "selected_inside_frac": 0.25,
+ "selected_interface_frac": 0.75,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25,
+ "selected_y_range": 0.3333333333333333,
+ "step": 2,
+ "n_elem": 680,
+ "target_elements": 8000,
+ "gap": 7320,
+ "cutoff_score": 0.9624195694923401,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9921642541885376,
+ "score_mean": 0.13704104721546173,
+ "score_p50": 0.0002797393244691193,
+ "score_p90": 0.6833012104034424,
+ "fraction_gt1": 0.0,
+ "n_inside": 140,
+ "n_interface": 507,
+ "n_outside": 149,
+ "selected_inside_frac": 0.043478260869565216,
+ "selected_interface_frac": 0.9565217391304348,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.31249999999999994,
+ "step": 3,
+ "n_elem": 796,
+ "target_elements": 8000,
+ "gap": 7204,
+ "cutoff_score": 0.9497892260551453,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9846216440200806,
+ "score_mean": 0.15107499063014984,
+ "score_p50": 0.0011595698306337,
+ "score_p90": 0.7330833673477173,
+ "fraction_gt1": 0.0,
+ "n_inside": 146,
+ "n_interface": 629,
+ "n_outside": 149,
+ "selected_inside_frac": 0.37037037037037035,
+ "selected_interface_frac": 0.6296296296296297,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43750000000000006,
+ "selected_y_range": 0.37500000000000006,
+ "step": 4,
+ "n_elem": 924,
+ "target_elements": 8000,
+ "gap": 7076,
+ "cutoff_score": 0.9488162994384766,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9886919260025024,
+ "score_mean": 0.1602586805820465,
+ "score_p50": 0.0014855308691039681,
+ "score_p90": 0.7576364278793335,
+ "fraction_gt1": 0.0,
+ "n_inside": 208,
+ "n_interface": 725,
+ "n_outside": 149,
+ "selected_inside_frac": 0.1875,
+ "selected_interface_frac": 0.8125,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.75,
+ "step": 5,
+ "n_elem": 1082,
+ "target_elements": 8000,
+ "gap": 6918,
+ "cutoff_score": 0.9326253533363342,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884822368621826,
+ "score_mean": 0.167030930519104,
+ "score_p50": 0.0016726161120459437,
+ "score_p90": 0.7636300921440125,
+ "fraction_gt1": 0.0,
+ "n_inside": 250,
+ "n_interface": 886,
+ "n_outside": 158,
+ "selected_inside_frac": 0.23684210526315788,
+ "selected_interface_frac": 0.6052631578947368,
+ "selected_outside_frac": 0.15789473684210525,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.875,
+ "step": 6,
+ "n_elem": 1294,
+ "target_elements": 8000,
+ "gap": 6706,
+ "cutoff_score": 0.9395723342895508,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9829899072647095,
+ "score_mean": 0.15791092813014984,
+ "score_p50": 0.0013266829773783684,
+ "score_p90": 0.7393683791160583,
+ "fraction_gt1": 0.0,
+ "n_inside": 305,
+ "n_interface": 1026,
+ "n_outside": 199,
+ "selected_inside_frac": 0.17777777777777778,
+ "selected_interface_frac": 0.6444444444444445,
+ "selected_outside_frac": 0.17777777777777778,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.875,
+ "step": 7,
+ "n_elem": 1530,
+ "target_elements": 8000,
+ "gap": 6470,
+ "cutoff_score": 0.9371219873428345,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9867375493049622,
+ "score_mean": 0.15111692249774933,
+ "score_p50": 0.0016333359526470304,
+ "score_p90": 0.7256923913955688,
+ "fraction_gt1": 0.0,
+ "n_inside": 338,
+ "n_interface": 1199,
+ "n_outside": 247,
+ "selected_inside_frac": 0.11320754716981132,
+ "selected_interface_frac": 0.6981132075471698,
+ "selected_outside_frac": 0.18867924528301888,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8958333333333333,
+ "step": 8,
+ "n_elem": 1784,
+ "target_elements": 8000,
+ "gap": 6216,
+ "cutoff_score": 0.9288814067840576,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9868490695953369,
+ "score_mean": 0.14866839349269867,
+ "score_p50": 0.0016517328331246972,
+ "score_p90": 0.715869665145874,
+ "fraction_gt1": 0.0,
+ "n_inside": 389,
+ "n_interface": 1408,
+ "n_outside": 294,
+ "selected_inside_frac": 0.16129032258064516,
+ "selected_interface_frac": 0.7419354838709677,
+ "selected_outside_frac": 0.0967741935483871,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9166666666666667,
+ "step": 9,
+ "n_elem": 2091,
+ "target_elements": 8000,
+ "gap": 5909,
+ "cutoff_score": 0.9164719581604004,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9862514138221741,
+ "score_mean": 0.13654521107673645,
+ "score_p50": 0.001580156502313912,
+ "score_p90": 0.6341267228126526,
+ "fraction_gt1": 0.0,
+ "n_inside": 450,
+ "n_interface": 1665,
+ "n_outside": 342,
+ "selected_inside_frac": 0.2054794520547945,
+ "selected_interface_frac": 0.4246575342465753,
+ "selected_outside_frac": 0.3698630136986301,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9583333333333333,
+ "step": 10,
+ "n_elem": 2457,
+ "target_elements": 8000,
+ "gap": 5543,
+ "cutoff_score": 0.9063092470169067,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9769663214683533,
+ "score_mean": 0.135296031832695,
+ "score_p50": 0.0009819662664085627,
+ "score_p90": 0.5987653732299805,
+ "fraction_gt1": 0.0,
+ "n_inside": 532,
+ "n_interface": 1864,
+ "n_outside": 463,
+ "selected_inside_frac": 0.12941176470588237,
+ "selected_interface_frac": 0.788235294117647,
+ "selected_outside_frac": 0.08235294117647059,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2859,
+ "target_elements": 8000,
+ "gap": 5141,
+ "cutoff_score": 0.880954921245575,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9748899340629578,
+ "score_mean": 0.14992962777614594,
+ "score_p50": 0.001078388886526227,
+ "score_p90": 0.6928356885910034,
+ "fraction_gt1": 0.0,
+ "n_inside": 619,
+ "n_interface": 2283,
+ "n_outside": 494,
+ "selected_inside_frac": 0.33663366336633666,
+ "selected_interface_frac": 0.5841584158415841,
+ "selected_outside_frac": 0.07920792079207921,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.875,
+ "step": 12,
+ "n_elem": 3396,
+ "target_elements": 8000,
+ "gap": 4604,
+ "cutoff_score": 0.9041675329208374,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9857368469238281,
+ "score_mean": 0.16217035055160522,
+ "score_p50": 0.0011920253746211529,
+ "score_p90": 0.7646087408065796,
+ "fraction_gt1": 0.0,
+ "n_inside": 779,
+ "n_interface": 2638,
+ "n_outside": 529,
+ "selected_inside_frac": 0.2288135593220339,
+ "selected_interface_frac": 0.6694915254237288,
+ "selected_outside_frac": 0.1016949152542373,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3946,
+ "target_elements": 8000,
+ "gap": 4054,
+ "cutoff_score": 0.9112496376037598,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.990972638130188,
+ "score_mean": 0.1560600847005844,
+ "score_p50": 0.0011577593395486474,
+ "score_p90": 0.7559195160865784,
+ "fraction_gt1": 0.0,
+ "n_inside": 968,
+ "n_interface": 3134,
+ "n_outside": 609,
+ "selected_inside_frac": 0.11347517730496454,
+ "selected_interface_frac": 0.6595744680851063,
+ "selected_outside_frac": 0.22695035460992907,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9479166666666667,
+ "step": 14,
+ "n_elem": 4711,
+ "target_elements": 8000,
+ "gap": 3289,
+ "cutoff_score": 0.9147497415542603,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9835047721862793,
+ "score_mean": 0.16782470047473907,
+ "score_p50": 0.0013752211816608906,
+ "score_p90": 0.7598609328269958,
+ "fraction_gt1": 0.0,
+ "n_inside": 1075,
+ "n_interface": 3677,
+ "n_outside": 820,
+ "selected_inside_frac": 0.11976047904191617,
+ "selected_interface_frac": 0.7664670658682635,
+ "selected_outside_frac": 0.11377245508982035,
+ "selected_x_range": 0.8645833333333334,
+ "selected_y_range": 0.96875,
+ "step": 15,
+ "n_elem": 5572,
+ "target_elements": 8000,
+ "gap": 2428,
+ "cutoff_score": 0.9304700493812561,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9912647604942322,
+ "score_mean": 0.16653843224048615,
+ "score_p50": 0.001249930588528514,
+ "score_p90": 0.7643611431121826,
+ "fraction_gt1": 0.0,
+ "n_inside": 1203,
+ "n_interface": 4391,
+ "n_outside": 926,
+ "selected_inside_frac": 0.16923076923076924,
+ "selected_interface_frac": 0.7076923076923077,
+ "selected_outside_frac": 0.12307692307692308,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9479166666666667,
+ "step": 16,
+ "n_elem": 6520,
+ "target_elements": 8000,
+ "gap": 1480,
+ "cutoff_score": 0.9251590967178345,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9854252934455872,
+ "score_mean": 0.15749897062778473,
+ "score_p50": 0.0025561549700796604,
+ "score_p90": 0.7513144016265869,
+ "fraction_gt1": 0.0,
+ "n_inside": 1415,
+ "n_interface": 5211,
+ "n_outside": 1070,
+ "selected_inside_frac": 0.16831683168316833,
+ "selected_interface_frac": 0.7920792079207921,
+ "selected_outside_frac": 0.039603960396039604,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.875,
+ "step": 17,
+ "n_elem": 7696,
+ "target_elements": 8000,
+ "gap": 304,
+ "cutoff_score": 0.9493498206138611,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 0,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07968317438531121,
+ "max_err": 0.12142235299756002,
+ "actual_elements": 8009,
+ "num_steps": 19,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 5.438248634338379,
+ "score_mean": -4.76837158203125e-07,
+ "score_p50": -0.22538062930107117,
+ "score_p90": -0.06992969661951065,
+ "fraction_gt1": 0.07421875,
+ "n_inside": 10,
+ "n_interface": 353,
+ "n_outside": 149,
+ "selected_inside_frac": 0.6666666666666666,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.18749999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 1.7804309129714966,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 2.6309945583343506,
+ "score_mean": -3.2327943699783646e-07,
+ "score_p50": -0.14177681505680084,
+ "score_p90": 0.6716103553771973,
+ "fraction_gt1": 0.08813559322033898,
+ "n_inside": 42,
+ "n_interface": 399,
+ "n_outside": 149,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.07291666666666674,
+ "selected_y_range": 0.10416666666666674,
+ "step": 1,
+ "n_elem": 590,
+ "target_elements": 8000,
+ "gap": 7410,
+ "cutoff_score": 2.5969438552856445,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.8590035438537598,
+ "score_mean": -5.04886429553153e-07,
+ "score_p50": 0.03841699659824371,
+ "score_p90": 0.5662412643432617,
+ "fraction_gt1": 0.07352941176470588,
+ "n_inside": 112,
+ "n_interface": 419,
+ "n_outside": 149,
+ "selected_inside_frac": 0.7,
+ "selected_interface_frac": 0.3,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666674,
+ "selected_y_range": 0.31249999999999994,
+ "step": 2,
+ "n_elem": 680,
+ "target_elements": 8000,
+ "gap": 7320,
+ "cutoff_score": 1.8898340463638306,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.8158512115478516,
+ "score_mean": -1.4559913097400567e-07,
+ "score_p50": 0.11797866225242615,
+ "score_p90": 0.7131918668746948,
+ "fraction_gt1": 0.07888040712468193,
+ "n_inside": 157,
+ "n_interface": 480,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.3958333333333333,
+ "step": 3,
+ "n_elem": 786,
+ "target_elements": 8000,
+ "gap": 7214,
+ "cutoff_score": 1.736061930656433,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8181957006454468,
+ "score_mean": -2.012148030416938e-07,
+ "score_p50": 0.2397436946630478,
+ "score_p90": 0.8137219548225403,
+ "fraction_gt1": 0.07802197802197802,
+ "n_inside": 157,
+ "n_interface": 604,
+ "n_outside": 149,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.6458333333333333,
+ "step": 4,
+ "n_elem": 910,
+ "target_elements": 8000,
+ "gap": 7090,
+ "cutoff_score": 1.3406727313995361,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.830768346786499,
+ "score_mean": -2.8899222570544225e-08,
+ "score_p50": -0.14503276348114014,
+ "score_p90": 0.8663500547409058,
+ "fraction_gt1": 0.08238636363636363,
+ "n_inside": 157,
+ "n_interface": 750,
+ "n_outside": 149,
+ "selected_inside_frac": 0.16129032258064516,
+ "selected_interface_frac": 0.8387096774193549,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.8125,
+ "step": 5,
+ "n_elem": 1056,
+ "target_elements": 8000,
+ "gap": 6944,
+ "cutoff_score": 1.2298989295959473,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0031492710113525,
+ "score_mean": -2.9296876391526894e-07,
+ "score_p50": -0.12529097497463226,
+ "score_p90": 1.1045702695846558,
+ "fraction_gt1": 0.116,
+ "n_inside": 177,
+ "n_interface": 913,
+ "n_outside": 160,
+ "selected_inside_frac": 0.10810810810810811,
+ "selected_interface_frac": 0.40540540540540543,
+ "selected_outside_frac": 0.4864864864864865,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1250,
+ "target_elements": 8000,
+ "gap": 6750,
+ "cutoff_score": 1.3743970394134521,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2431201934814453,
+ "score_mean": -8.343835133928224e-08,
+ "score_p50": -0.5032551288604736,
+ "score_p90": 1.0565963983535767,
+ "fraction_gt1": 0.12440191387559808,
+ "n_inside": 197,
+ "n_interface": 1012,
+ "n_outside": 254,
+ "selected_inside_frac": 0.4186046511627907,
+ "selected_interface_frac": 0.37209302325581395,
+ "selected_outside_frac": 0.20930232558139536,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9166666666666667,
+ "step": 7,
+ "n_elem": 1463,
+ "target_elements": 8000,
+ "gap": 6537,
+ "cutoff_score": 1.5340217351913452,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3994226455688477,
+ "score_mean": 0.0,
+ "score_p50": -0.4209725856781006,
+ "score_p90": 1.219143033027649,
+ "fraction_gt1": 0.16339869281045752,
+ "n_inside": 281,
+ "n_interface": 1101,
+ "n_outside": 301,
+ "selected_inside_frac": 0.48,
+ "selected_interface_frac": 0.38,
+ "selected_outside_frac": 0.14,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.9166666666666667,
+ "step": 8,
+ "n_elem": 1683,
+ "target_elements": 8000,
+ "gap": 6317,
+ "cutoff_score": 1.7154951095581055,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.750715494155884,
+ "score_mean": -1.8808985657869925e-07,
+ "score_p50": -0.32049715518951416,
+ "score_p90": 1.2590558528900146,
+ "fraction_gt1": 0.12018489984591679,
+ "n_inside": 388,
+ "n_interface": 1212,
+ "n_outside": 347,
+ "selected_inside_frac": 0.29310344827586204,
+ "selected_interface_frac": 0.29310344827586204,
+ "selected_outside_frac": 0.41379310344827586,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 1947,
+ "target_elements": 8000,
+ "gap": 6053,
+ "cutoff_score": 1.8359384536743164,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 3.072410821914673,
+ "score_mean": -1.9306195042645413e-07,
+ "score_p50": -0.22766616940498352,
+ "score_p90": 0.9533596634864807,
+ "fraction_gt1": 0.09489380930863081,
+ "n_inside": 465,
+ "n_interface": 1299,
+ "n_outside": 449,
+ "selected_inside_frac": 0.25757575757575757,
+ "selected_interface_frac": 0.4090909090909091,
+ "selected_outside_frac": 0.3333333333333333,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9479166666666666,
+ "step": 10,
+ "n_elem": 2213,
+ "target_elements": 8000,
+ "gap": 5787,
+ "cutoff_score": 1.6912550926208496,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2975058555603027,
+ "score_mean": -1.4395084235729882e-07,
+ "score_p50": -0.09650863707065582,
+ "score_p90": 0.9363903999328613,
+ "fraction_gt1": 0.09394654088050315,
+ "n_inside": 541,
+ "n_interface": 1473,
+ "n_outside": 530,
+ "selected_inside_frac": 0.02631578947368421,
+ "selected_interface_frac": 0.9736842105263158,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.8541666666666667,
+ "step": 11,
+ "n_elem": 2544,
+ "target_elements": 8000,
+ "gap": 5456,
+ "cutoff_score": 1.4990614652633667,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.308173179626465,
+ "score_mean": -8.363844727909964e-08,
+ "score_p50": 0.027747541666030884,
+ "score_p90": 0.9291861653327942,
+ "fraction_gt1": 0.0829051044878383,
+ "n_inside": 551,
+ "n_interface": 1838,
+ "n_outside": 530,
+ "selected_inside_frac": 0.06896551724137931,
+ "selected_interface_frac": 0.9080459770114943,
+ "selected_outside_frac": 0.022988505747126436,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 2919,
+ "target_elements": 8000,
+ "gap": 5081,
+ "cutoff_score": 1.5514416694641113,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.47066068649292,
+ "score_mean": -1.0815443829415017e-07,
+ "score_p50": 0.16499271988868713,
+ "score_p90": 1.0316932201385498,
+ "fraction_gt1": 0.1151801535735381,
+ "n_inside": 591,
+ "n_interface": 2247,
+ "n_outside": 548,
+ "selected_inside_frac": 0.19801980198019803,
+ "selected_interface_frac": 0.6633663366336634,
+ "selected_outside_frac": 0.13861386138613863,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3386,
+ "target_elements": 8000,
+ "gap": 4614,
+ "cutoff_score": 1.5491067171096802,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.677403450012207,
+ "score_mean": -6.146541409179918e-08,
+ "score_p50": -0.3247694671154022,
+ "score_p90": 1.023447871208191,
+ "fraction_gt1": 0.10322255790533737,
+ "n_inside": 665,
+ "n_interface": 2667,
+ "n_outside": 640,
+ "selected_inside_frac": 0.17647058823529413,
+ "selected_interface_frac": 0.5210084033613446,
+ "selected_outside_frac": 0.3025210084033613,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 14,
+ "n_elem": 3972,
+ "target_elements": 8000,
+ "gap": 4028,
+ "cutoff_score": 1.5409218072891235,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.328192710876465,
+ "score_mean": -5.293595606303825e-08,
+ "score_p50": -0.2060297280550003,
+ "score_p90": 0.973337709903717,
+ "fraction_gt1": 0.0969210754553339,
+ "n_inside": 779,
+ "n_interface": 3017,
+ "n_outside": 816,
+ "selected_inside_frac": 0.10869565217391304,
+ "selected_interface_frac": 0.5797101449275363,
+ "selected_outside_frac": 0.3115942028985507,
+ "selected_x_range": 0.8958333333333334,
+ "selected_y_range": 0.9791666666666667,
+ "step": 15,
+ "n_elem": 4612,
+ "target_elements": 8000,
+ "gap": 3388,
+ "cutoff_score": 1.3737331628799438,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.166718006134033,
+ "score_mean": -3.443126672664221e-08,
+ "score_p50": -0.07560805976390839,
+ "score_p90": 0.9278503656387329,
+ "fraction_gt1": 0.09213990221887927,
+ "n_inside": 860,
+ "n_interface": 3436,
+ "n_outside": 1022,
+ "selected_inside_frac": 0.1320754716981132,
+ "selected_interface_frac": 0.7610062893081762,
+ "selected_outside_frac": 0.1069182389937107,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.84375,
+ "step": 16,
+ "n_elem": 5318,
+ "target_elements": 8000,
+ "gap": 2682,
+ "cutoff_score": 1.3629283905029297,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.263040065765381,
+ "score_mean": 5.987752160763193e-08,
+ "score_p50": 0.056821390986442566,
+ "score_p90": 1.029172658920288,
+ "fraction_gt1": 0.10595160235448005,
+ "n_inside": 960,
+ "n_interface": 4048,
+ "n_outside": 1108,
+ "selected_inside_frac": 0.5191256830601093,
+ "selected_interface_frac": 0.36065573770491804,
+ "selected_outside_frac": 0.12021857923497267,
+ "selected_x_range": 0.9270833333333333,
+ "selected_y_range": 0.9270833333333333,
+ "step": 17,
+ "n_elem": 6116,
+ "target_elements": 8000,
+ "gap": 1884,
+ "cutoff_score": 1.5323199033737183,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4026975631713867,
+ "score_mean": -1.5676837961109413e-07,
+ "score_p50": -0.41136109828948975,
+ "score_p90": 1.107131838798523,
+ "fraction_gt1": 0.13527397260273974,
+ "n_inside": 1332,
+ "n_interface": 4440,
+ "n_outside": 1236,
+ "selected_inside_frac": 0.14285714285714285,
+ "selected_interface_frac": 0.4095238095238095,
+ "selected_outside_frac": 0.44761904761904764,
+ "selected_x_range": 0.9583333333333334,
+ "selected_y_range": 0.9479166666666667,
+ "step": 18,
+ "n_elem": 7008,
+ "target_elements": 8000,
+ "gap": 992,
+ "cutoff_score": 1.6577520370483398,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 0,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.08934857926955284,
+ "max_err": 0.19694223703008806,
+ "actual_elements": 2052,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.4901019036769867,
+ "score_mean": 0.30303388833999634,
+ "score_p50": 0.2909775674343109,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 31,
+ "n_interface": 275,
+ "n_outside": 206,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333337,
+ "selected_y_range": 0.24999999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.4901019036769867,
+ "num_tied_at_cutoff": 31,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.4901019036769867,
+ "score_mean": 0.27693888545036316,
+ "score_p50": 0.2909775674343109,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 99,
+ "n_interface": 311,
+ "n_outside": 206,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666669,
+ "selected_y_range": 0.16666666666666663,
+ "step": 1,
+ "n_elem": 616,
+ "target_elements": 2000,
+ "gap": 1384,
+ "cutoff_score": 0.34655436873435974,
+ "num_tied_at_cutoff": 16,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.2583051025867462,
+ "score_p50": 0.2909775674343109,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 316,
+ "n_outside": 206,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.39583333333333326,
+ "step": 2,
+ "n_elem": 698,
+ "target_elements": 2000,
+ "gap": 1302,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 454,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.23398108780384064,
+ "score_p50": 0.24505095183849335,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 442,
+ "n_outside": 206,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 3,
+ "n_elem": 824,
+ "target_elements": 2000,
+ "gap": 1176,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 404,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.2136290818452835,
+ "score_p50": 0.20575222373008728,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 588,
+ "n_outside": 206,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.6458333333333333,
+ "step": 4,
+ "n_elem": 970,
+ "target_elements": 2000,
+ "gap": 1030,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 348,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.19665849208831787,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 756,
+ "n_outside": 206,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.75,
+ "step": 5,
+ "n_elem": 1138,
+ "target_elements": 2000,
+ "gap": 862,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 284,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.18197377026081085,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 947,
+ "n_outside": 214,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.3,
+ "selected_outside_frac": 0.7,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.875,
+ "step": 6,
+ "n_elem": 1337,
+ "target_elements": 2000,
+ "gap": 663,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 212,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.17012648284435272,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.24505095183849335,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 1006,
+ "n_outside": 374,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 7,
+ "n_elem": 1556,
+ "target_elements": 2000,
+ "gap": 444,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 134,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.16089849174022675,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.20575222373008728,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 1006,
+ "n_outside": 602,
+ "selected_inside_frac": 0.018867924528301886,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.9811320754716981,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1784,
+ "target_elements": 2000,
+ "gap": 216,
+ "cutoff_score": 0.24505095183849335,
+ "num_tied_at_cutoff": 78,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.24505095183849335,
+ "score_mean": 0.1543942540884018,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.20575222373008728,
+ "fraction_gt1": 0.0,
+ "n_inside": 181,
+ "n_interface": 1013,
+ "n_outside": 782,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.21875000000000006,
+ "step": 9,
+ "n_elem": 1976,
+ "target_elements": 2000,
+ "gap": 24,
+ "cutoff_score": 0.24505095183849335,
+ "num_tied_at_cutoff": 75,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 4,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.07945389993811275,
+ "max_err": 0.19446924522226527,
+ "actual_elements": 2135,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.992885410785675,
+ "score_mean": 0.09208986908197403,
+ "score_p50": 1.8585392353998031e-06,
+ "score_p90": 0.3576612174510956,
+ "fraction_gt1": 0.0,
+ "n_inside": 31,
+ "n_interface": 275,
+ "n_outside": 206,
+ "selected_inside_frac": 0.8666666666666667,
+ "selected_interface_frac": 0.13333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.08333333333333337,
+ "selected_y_range": 0.24999999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9806128144264221,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9889501929283142,
+ "score_mean": 0.06570076197385788,
+ "score_p50": 3.81430727429688e-05,
+ "score_p90": 0.16536004841327667,
+ "fraction_gt1": 0.0,
+ "n_inside": 84,
+ "n_interface": 302,
+ "n_outside": 206,
+ "selected_inside_frac": 0.5882352941176471,
+ "selected_interface_frac": 0.4117647058823529,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3958333333333333,
+ "selected_y_range": 0.2708333333333333,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 2000,
+ "gap": 1408,
+ "cutoff_score": 0.8850477337837219,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9867637753486633,
+ "score_mean": 0.11772926151752472,
+ "score_p50": 0.0002742839860729873,
+ "score_p90": 0.5364360809326172,
+ "fraction_gt1": 0.0,
+ "n_inside": 122,
+ "n_interface": 364,
+ "n_outside": 206,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.45,
+ "selected_outside_frac": 0.15,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.43750000000000006,
+ "step": 2,
+ "n_elem": 692,
+ "target_elements": 2000,
+ "gap": 1308,
+ "cutoff_score": 0.9368601441383362,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9940663576126099,
+ "score_mean": 0.17281271517276764,
+ "score_p50": 0.00027957314159721136,
+ "score_p90": 0.8454119563102722,
+ "fraction_gt1": 0.0,
+ "n_inside": 169,
+ "n_interface": 429,
+ "n_outside": 226,
+ "selected_inside_frac": 0.041666666666666664,
+ "selected_interface_frac": 0.4166666666666667,
+ "selected_outside_frac": 0.5416666666666666,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5625,
+ "step": 3,
+ "n_elem": 824,
+ "target_elements": 2000,
+ "gap": 1176,
+ "cutoff_score": 0.9825772643089294,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9906829595565796,
+ "score_mean": 0.17181965708732605,
+ "score_p50": 0.0002955030067823827,
+ "score_p90": 0.8324840068817139,
+ "fraction_gt1": 0.0,
+ "n_inside": 179,
+ "n_interface": 485,
+ "n_outside": 304,
+ "selected_inside_frac": 0.10344827586206896,
+ "selected_interface_frac": 0.4827586206896552,
+ "selected_outside_frac": 0.41379310344827586,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.7916666666666667,
+ "step": 4,
+ "n_elem": 968,
+ "target_elements": 2000,
+ "gap": 1032,
+ "cutoff_score": 0.9690840840339661,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9920151233673096,
+ "score_mean": 0.1482677459716797,
+ "score_p50": 0.0004950115690007806,
+ "score_p90": 0.8064414858818054,
+ "fraction_gt1": 0.0,
+ "n_inside": 201,
+ "n_interface": 555,
+ "n_outside": 384,
+ "selected_inside_frac": 0.3235294117647059,
+ "selected_interface_frac": 0.35294117647058826,
+ "selected_outside_frac": 0.3235294117647059,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.8125,
+ "step": 5,
+ "n_elem": 1140,
+ "target_elements": 2000,
+ "gap": 860,
+ "cutoff_score": 0.9612401127815247,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.989989161491394,
+ "score_mean": 0.1287865787744522,
+ "score_p50": 0.0006326963775791228,
+ "score_p90": 0.6087119579315186,
+ "fraction_gt1": 0.0,
+ "n_inside": 263,
+ "n_interface": 628,
+ "n_outside": 443,
+ "selected_inside_frac": 0.225,
+ "selected_interface_frac": 0.475,
+ "selected_outside_frac": 0.3,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1334,
+ "target_elements": 2000,
+ "gap": 666,
+ "cutoff_score": 0.9471388459205627,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9854903221130371,
+ "score_mean": 0.12543177604675293,
+ "score_p50": 0.0007582938414998353,
+ "score_p90": 0.5718586444854736,
+ "fraction_gt1": 0.0,
+ "n_inside": 327,
+ "n_interface": 739,
+ "n_outside": 511,
+ "selected_inside_frac": 0.19148936170212766,
+ "selected_interface_frac": 0.5957446808510638,
+ "selected_outside_frac": 0.2127659574468085,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8333333333333333,
+ "step": 7,
+ "n_elem": 1577,
+ "target_elements": 2000,
+ "gap": 423,
+ "cutoff_score": 0.9172139167785645,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9817178249359131,
+ "score_mean": 0.13516530394554138,
+ "score_p50": 0.0010229800827801228,
+ "score_p90": 0.6763890981674194,
+ "fraction_gt1": 0.0,
+ "n_inside": 379,
+ "n_interface": 890,
+ "n_outside": 571,
+ "selected_inside_frac": 0.20754716981132076,
+ "selected_interface_frac": 0.660377358490566,
+ "selected_outside_frac": 0.1320754716981132,
+ "selected_x_range": 0.7604166666666667,
+ "selected_y_range": 0.44270833333333337,
+ "step": 8,
+ "n_elem": 1840,
+ "target_elements": 2000,
+ "gap": 160,
+ "cutoff_score": 0.8894029855728149,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 4,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.08358993846087802,
+ "max_err": 0.19309141417217415,
+ "actual_elements": 2124,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 3.6700055599212646,
+ "score_mean": 3.725290298461914e-07,
+ "score_p50": -0.30077314376831055,
+ "score_p90": 0.3743993937969208,
+ "fraction_gt1": 0.0859375,
+ "n_inside": 31,
+ "n_interface": 275,
+ "n_outside": 206,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.24999999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 3.6285319328308105,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 4.886500358581543,
+ "score_mean": -7.758706033200724e-08,
+ "score_p50": -0.0675140768289566,
+ "score_p90": 0.427655965089798,
+ "fraction_gt1": 0.06779661016949153,
+ "n_inside": 91,
+ "n_interface": 293,
+ "n_outside": 206,
+ "selected_inside_frac": 0.6470588235294118,
+ "selected_interface_frac": 0.35294117647058826,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.25000000000000006,
+ "step": 1,
+ "n_elem": 590,
+ "target_elements": 2000,
+ "gap": 1410,
+ "cutoff_score": 2.257305145263672,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.859717607498169,
+ "score_mean": 2.461094936734298e-07,
+ "score_p50": 0.07974791526794434,
+ "score_p90": 1.0646231174468994,
+ "fraction_gt1": 0.10263929618768329,
+ "n_inside": 134,
+ "n_interface": 342,
+ "n_outside": 206,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.31250000000000006,
+ "selected_y_range": 0.3958333333333333,
+ "step": 2,
+ "n_elem": 682,
+ "target_elements": 2000,
+ "gap": 1318,
+ "cutoff_score": 1.7949471473693848,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.6941978931427002,
+ "score_mean": 2.8826428888351074e-07,
+ "score_p50": 0.16835461556911469,
+ "score_p90": 1.2933415174484253,
+ "fraction_gt1": 0.1385390428211587,
+ "n_inside": 134,
+ "n_interface": 448,
+ "n_outside": 212,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.30434782608695654,
+ "selected_outside_frac": 0.6956521739130435,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.5833333333333333,
+ "step": 3,
+ "n_elem": 794,
+ "target_elements": 2000,
+ "gap": 1206,
+ "cutoff_score": 1.6527304649353027,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8579692840576172,
+ "score_mean": 1.9731193390271073e-07,
+ "score_p50": -0.04959115386009216,
+ "score_p90": 1.3994653224945068,
+ "fraction_gt1": 0.16056034482758622,
+ "n_inside": 135,
+ "n_interface": 496,
+ "n_outside": 297,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.2962962962962963,
+ "selected_outside_frac": 0.7037037037037037,
+ "selected_x_range": 0.39583333333333326,
+ "selected_y_range": 0.7083333333333333,
+ "step": 4,
+ "n_elem": 928,
+ "target_elements": 2000,
+ "gap": 1072,
+ "cutoff_score": 1.7685205936431885,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.013970375061035,
+ "score_mean": 1.7257819706628652e-07,
+ "score_p50": -0.2390221208333969,
+ "score_p90": 1.4682300090789795,
+ "fraction_gt1": 0.14797360980207352,
+ "n_inside": 135,
+ "n_interface": 537,
+ "n_outside": 389,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.3870967741935484,
+ "selected_outside_frac": 0.6129032258064516,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.8125,
+ "step": 5,
+ "n_elem": 1061,
+ "target_elements": 2000,
+ "gap": 939,
+ "cutoff_score": 1.7936561107635498,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1455180644989014,
+ "score_mean": 7.610368868427031e-08,
+ "score_p50": -0.403462678194046,
+ "score_p90": 1.4210878610610962,
+ "fraction_gt1": 0.1288445552784705,
+ "n_inside": 135,
+ "n_interface": 595,
+ "n_outside": 473,
+ "selected_inside_frac": 0.4444444444444444,
+ "selected_interface_frac": 0.16666666666666666,
+ "selected_outside_frac": 0.3888888888888889,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1203,
+ "target_elements": 2000,
+ "gap": 797,
+ "cutoff_score": 1.8217172622680664,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2484517097473145,
+ "score_mean": 1.0930364879868648e-07,
+ "score_p50": -0.5350779294967651,
+ "score_p90": 1.1533337831497192,
+ "fraction_gt1": 0.1310888252148997,
+ "n_inside": 210,
+ "n_interface": 650,
+ "n_outside": 536,
+ "selected_inside_frac": 0.926829268292683,
+ "selected_interface_frac": 0.07317073170731707,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333337,
+ "selected_y_range": 0.40625,
+ "step": 7,
+ "n_elem": 1396,
+ "target_elements": 2000,
+ "gap": 604,
+ "cutoff_score": 2.0212221145629883,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.769927501678467,
+ "score_mean": 2.07988449574259e-07,
+ "score_p50": -0.42856669425964355,
+ "score_p90": 1.2348649501800537,
+ "fraction_gt1": 0.18339529120198264,
+ "n_inside": 385,
+ "n_interface": 693,
+ "n_outside": 536,
+ "selected_inside_frac": 0.125,
+ "selected_interface_frac": 0.8541666666666666,
+ "selected_outside_frac": 0.020833333333333332,
+ "selected_x_range": 0.7604166666666667,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1614,
+ "target_elements": 2000,
+ "gap": 386,
+ "cutoff_score": 2.020348310470581,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.758720636367798,
+ "score_mean": 2.618129997244978e-07,
+ "score_p50": -0.34616661071777344,
+ "score_p90": 1.2891759872436523,
+ "fraction_gt1": 0.15603217158176944,
+ "n_inside": 414,
+ "n_interface": 901,
+ "n_outside": 550,
+ "selected_inside_frac": 0.1111111111111111,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.35555555555555557,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.8333333333333333,
+ "step": 9,
+ "n_elem": 1865,
+ "target_elements": 2000,
+ "gap": 135,
+ "cutoff_score": 1.9224313497543335,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 4,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.07401967632993778,
+ "max_err": 0.2062931256153554,
+ "actual_elements": 4162,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.4901019036769867,
+ "score_mean": 0.30303388833999634,
+ "score_p50": 0.2909775674343109,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 31,
+ "n_interface": 275,
+ "n_outside": 206,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333337,
+ "selected_y_range": 0.24999999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.4901019036769867,
+ "num_tied_at_cutoff": 31,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.4901019036769867,
+ "score_mean": 0.27693888545036316,
+ "score_p50": 0.2909775674343109,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 99,
+ "n_interface": 311,
+ "n_outside": 206,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666669,
+ "selected_y_range": 0.16666666666666663,
+ "step": 1,
+ "n_elem": 616,
+ "target_elements": 4000,
+ "gap": 3384,
+ "cutoff_score": 0.34655436873435974,
+ "num_tied_at_cutoff": 16,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.2583051025867462,
+ "score_p50": 0.2909775674343109,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 316,
+ "n_outside": 206,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.39583333333333326,
+ "step": 2,
+ "n_elem": 698,
+ "target_elements": 4000,
+ "gap": 3302,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 454,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.23398108780384064,
+ "score_p50": 0.24505095183849335,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 442,
+ "n_outside": 206,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 3,
+ "n_elem": 824,
+ "target_elements": 4000,
+ "gap": 3176,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 404,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.2136290818452835,
+ "score_p50": 0.20575222373008728,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 588,
+ "n_outside": 206,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.6458333333333333,
+ "step": 4,
+ "n_elem": 970,
+ "target_elements": 4000,
+ "gap": 3030,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 348,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.19665849208831787,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 756,
+ "n_outside": 206,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.75,
+ "step": 5,
+ "n_elem": 1138,
+ "target_elements": 4000,
+ "gap": 2862,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 284,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.18197377026081085,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 947,
+ "n_outside": 214,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.3,
+ "selected_outside_frac": 0.7,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.875,
+ "step": 6,
+ "n_elem": 1337,
+ "target_elements": 4000,
+ "gap": 2663,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 212,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.17012648284435272,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.24505095183849335,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 1006,
+ "n_outside": 374,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 7,
+ "n_elem": 1556,
+ "target_elements": 4000,
+ "gap": 2444,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 134,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.16089849174022675,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.20575222373008728,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 1006,
+ "n_outside": 602,
+ "selected_inside_frac": 0.018867924528301886,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.9811320754716981,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1784,
+ "target_elements": 4000,
+ "gap": 2216,
+ "cutoff_score": 0.24505095183849335,
+ "num_tied_at_cutoff": 78,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.24505095183849335,
+ "score_mean": 0.1543942540884018,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.20575222373008728,
+ "fraction_gt1": 0.0,
+ "n_inside": 181,
+ "n_interface": 1013,
+ "n_outside": 782,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.2604166666666667,
+ "step": 9,
+ "n_elem": 1976,
+ "target_elements": 4000,
+ "gap": 2024,
+ "cutoff_score": 0.24505095183849335,
+ "num_tied_at_cutoff": 75,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.24505095183849335,
+ "score_mean": 0.14512667059898376,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.14548878371715546,
+ "fraction_gt1": 0.0,
+ "n_inside": 388,
+ "n_interface": 1074,
+ "n_outside": 782,
+ "selected_inside_frac": 0.23880597014925373,
+ "selected_interface_frac": 0.7611940298507462,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.6875,
+ "step": 10,
+ "n_elem": 2244,
+ "target_elements": 4000,
+ "gap": 1756,
+ "cutoff_score": 0.20575222373008728,
+ "num_tied_at_cutoff": 120,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20575222373008728,
+ "score_mean": 0.1361667960882187,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.14548878371715546,
+ "fraction_gt1": 0.0,
+ "n_inside": 448,
+ "n_interface": 1313,
+ "n_outside": 782,
+ "selected_inside_frac": 0.17105263157894737,
+ "selected_interface_frac": 0.15789473684210525,
+ "selected_outside_frac": 0.6710526315789473,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2543,
+ "target_elements": 4000,
+ "gap": 1457,
+ "cutoff_score": 0.17327718436717987,
+ "num_tied_at_cutoff": 69,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17327718436717987,
+ "score_mean": 0.12676431238651276,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.14548878371715546,
+ "fraction_gt1": 0.0,
+ "n_inside": 489,
+ "n_interface": 1412,
+ "n_outside": 1011,
+ "selected_inside_frac": 0.6206896551724138,
+ "selected_interface_frac": 0.3793103448275862,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.35416666666666674,
+ "selected_y_range": 0.34375,
+ "step": 12,
+ "n_elem": 2912,
+ "target_elements": 4000,
+ "gap": 1088,
+ "cutoff_score": 0.14548878371715546,
+ "num_tied_at_cutoff": 1466,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14548878371715546,
+ "score_mean": 0.11775282770395279,
+ "score_p50": 0.12252547591924667,
+ "score_p90": 0.14548878371715546,
+ "fraction_gt1": 0.0,
+ "n_inside": 699,
+ "n_interface": 1606,
+ "n_outside": 1011,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.47916666666666674,
+ "selected_y_range": 0.44791666666666674,
+ "step": 13,
+ "n_elem": 3316,
+ "target_elements": 4000,
+ "gap": 684,
+ "cutoff_score": 0.14548878371715546,
+ "num_tied_at_cutoff": 1394,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14548878371715546,
+ "score_mean": 0.10965727269649506,
+ "score_p50": 0.10287611186504364,
+ "score_p90": 0.14548878371715546,
+ "fraction_gt1": 0.0,
+ "n_inside": 699,
+ "n_interface": 2048,
+ "n_outside": 1011,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.5729166666666667,
+ "step": 14,
+ "n_elem": 3758,
+ "target_elements": 4000,
+ "gap": 242,
+ "cutoff_score": 0.14548878371715546,
+ "num_tied_at_cutoff": 1236,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 4,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07470985808162096,
+ "max_err": 0.20689753968713226,
+ "actual_elements": 4174,
+ "num_steps": 13,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.992885410785675,
+ "score_mean": 0.09208986908197403,
+ "score_p50": 1.8585392353998031e-06,
+ "score_p90": 0.3576612174510956,
+ "fraction_gt1": 0.0,
+ "n_inside": 31,
+ "n_interface": 275,
+ "n_outside": 206,
+ "selected_inside_frac": 0.8666666666666667,
+ "selected_interface_frac": 0.13333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.08333333333333337,
+ "selected_y_range": 0.24999999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9806128144264221,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9889501929283142,
+ "score_mean": 0.06570076197385788,
+ "score_p50": 3.81430727429688e-05,
+ "score_p90": 0.16536004841327667,
+ "fraction_gt1": 0.0,
+ "n_inside": 84,
+ "n_interface": 302,
+ "n_outside": 206,
+ "selected_inside_frac": 0.5882352941176471,
+ "selected_interface_frac": 0.4117647058823529,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3958333333333333,
+ "selected_y_range": 0.2708333333333333,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 4000,
+ "gap": 3408,
+ "cutoff_score": 0.8850477337837219,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9867637753486633,
+ "score_mean": 0.11772926151752472,
+ "score_p50": 0.0002742839860729873,
+ "score_p90": 0.5364360809326172,
+ "fraction_gt1": 0.0,
+ "n_inside": 122,
+ "n_interface": 364,
+ "n_outside": 206,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.45,
+ "selected_outside_frac": 0.15,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.43750000000000006,
+ "step": 2,
+ "n_elem": 692,
+ "target_elements": 4000,
+ "gap": 3308,
+ "cutoff_score": 0.9368601441383362,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9940663576126099,
+ "score_mean": 0.17281271517276764,
+ "score_p50": 0.00027957314159721136,
+ "score_p90": 0.8454119563102722,
+ "fraction_gt1": 0.0,
+ "n_inside": 169,
+ "n_interface": 429,
+ "n_outside": 226,
+ "selected_inside_frac": 0.041666666666666664,
+ "selected_interface_frac": 0.4166666666666667,
+ "selected_outside_frac": 0.5416666666666666,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5625,
+ "step": 3,
+ "n_elem": 824,
+ "target_elements": 4000,
+ "gap": 3176,
+ "cutoff_score": 0.9825772643089294,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9906829595565796,
+ "score_mean": 0.17181965708732605,
+ "score_p50": 0.0002955030067823827,
+ "score_p90": 0.8324840068817139,
+ "fraction_gt1": 0.0,
+ "n_inside": 179,
+ "n_interface": 485,
+ "n_outside": 304,
+ "selected_inside_frac": 0.10344827586206896,
+ "selected_interface_frac": 0.4827586206896552,
+ "selected_outside_frac": 0.41379310344827586,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.7916666666666667,
+ "step": 4,
+ "n_elem": 968,
+ "target_elements": 4000,
+ "gap": 3032,
+ "cutoff_score": 0.9690840840339661,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9920151233673096,
+ "score_mean": 0.1482677459716797,
+ "score_p50": 0.0004950115690007806,
+ "score_p90": 0.8064414858818054,
+ "fraction_gt1": 0.0,
+ "n_inside": 201,
+ "n_interface": 555,
+ "n_outside": 384,
+ "selected_inside_frac": 0.3235294117647059,
+ "selected_interface_frac": 0.35294117647058826,
+ "selected_outside_frac": 0.3235294117647059,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.8125,
+ "step": 5,
+ "n_elem": 1140,
+ "target_elements": 4000,
+ "gap": 2860,
+ "cutoff_score": 0.9612401127815247,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.989989161491394,
+ "score_mean": 0.1287865787744522,
+ "score_p50": 0.0006326963775791228,
+ "score_p90": 0.6087119579315186,
+ "fraction_gt1": 0.0,
+ "n_inside": 263,
+ "n_interface": 628,
+ "n_outside": 443,
+ "selected_inside_frac": 0.225,
+ "selected_interface_frac": 0.475,
+ "selected_outside_frac": 0.3,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1334,
+ "target_elements": 4000,
+ "gap": 2666,
+ "cutoff_score": 0.9471388459205627,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9854903221130371,
+ "score_mean": 0.12543177604675293,
+ "score_p50": 0.0007582938414998353,
+ "score_p90": 0.5718586444854736,
+ "fraction_gt1": 0.0,
+ "n_inside": 327,
+ "n_interface": 739,
+ "n_outside": 511,
+ "selected_inside_frac": 0.19148936170212766,
+ "selected_interface_frac": 0.5957446808510638,
+ "selected_outside_frac": 0.2127659574468085,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8333333333333333,
+ "step": 7,
+ "n_elem": 1577,
+ "target_elements": 4000,
+ "gap": 2423,
+ "cutoff_score": 0.9172139167785645,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9817178249359131,
+ "score_mean": 0.13516530394554138,
+ "score_p50": 0.0010229800827801228,
+ "score_p90": 0.6763890981674194,
+ "fraction_gt1": 0.0,
+ "n_inside": 379,
+ "n_interface": 890,
+ "n_outside": 571,
+ "selected_inside_frac": 0.21818181818181817,
+ "selected_interface_frac": 0.6545454545454545,
+ "selected_outside_frac": 0.12727272727272726,
+ "selected_x_range": 0.7604166666666667,
+ "selected_y_range": 0.44270833333333337,
+ "step": 8,
+ "n_elem": 1840,
+ "target_elements": 4000,
+ "gap": 2160,
+ "cutoff_score": 0.887151300907135,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9874354600906372,
+ "score_mean": 0.1530187577009201,
+ "score_p50": 0.0015537566505372524,
+ "score_p90": 0.7388982176780701,
+ "fraction_gt1": 0.0,
+ "n_inside": 446,
+ "n_interface": 1087,
+ "n_outside": 612,
+ "selected_inside_frac": 0.296875,
+ "selected_interface_frac": 0.390625,
+ "selected_outside_frac": 0.3125,
+ "selected_x_range": 0.6510416666666667,
+ "selected_y_range": 0.9375,
+ "step": 9,
+ "n_elem": 2145,
+ "target_elements": 4000,
+ "gap": 1855,
+ "cutoff_score": 0.9204908609390259,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9825031757354736,
+ "score_mean": 0.15994009375572205,
+ "score_p50": 0.0013986859703436494,
+ "score_p90": 0.7570742964744568,
+ "fraction_gt1": 0.0,
+ "n_inside": 562,
+ "n_interface": 1247,
+ "n_outside": 731,
+ "selected_inside_frac": 0.13157894736842105,
+ "selected_interface_frac": 0.39473684210526316,
+ "selected_outside_frac": 0.47368421052631576,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 10,
+ "n_elem": 2540,
+ "target_elements": 4000,
+ "gap": 1460,
+ "cutoff_score": 0.9317290186882019,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9910257458686829,
+ "score_mean": 0.1686985045671463,
+ "score_p50": 0.0009717302746139467,
+ "score_p90": 0.7955906391143799,
+ "fraction_gt1": 0.0,
+ "n_inside": 622,
+ "n_interface": 1423,
+ "n_outside": 948,
+ "selected_inside_frac": 0.11235955056179775,
+ "selected_interface_frac": 0.5955056179775281,
+ "selected_outside_frac": 0.29213483146067415,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2993,
+ "target_elements": 4000,
+ "gap": 1007,
+ "cutoff_score": 0.9277037382125854,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9872041344642639,
+ "score_mean": 0.15049561858177185,
+ "score_p50": 0.0006758433301001787,
+ "score_p90": 0.7488041520118713,
+ "fraction_gt1": 0.0,
+ "n_inside": 683,
+ "n_interface": 1726,
+ "n_outside": 1115,
+ "selected_inside_frac": 0.34285714285714286,
+ "selected_interface_frac": 0.3904761904761905,
+ "selected_outside_frac": 0.26666666666666666,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 3524,
+ "target_elements": 4000,
+ "gap": 476,
+ "cutoff_score": 0.9247748851776123,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 4,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07309977987451403,
+ "max_err": 0.20848556201706486,
+ "actual_elements": 4181,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 3.6700055599212646,
+ "score_mean": 3.725290298461914e-07,
+ "score_p50": -0.30077314376831055,
+ "score_p90": 0.3743993937969208,
+ "fraction_gt1": 0.0859375,
+ "n_inside": 31,
+ "n_interface": 275,
+ "n_outside": 206,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.24999999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 3.6285319328308105,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 4.886500358581543,
+ "score_mean": -7.758706033200724e-08,
+ "score_p50": -0.0675140768289566,
+ "score_p90": 0.427655965089798,
+ "fraction_gt1": 0.06779661016949153,
+ "n_inside": 91,
+ "n_interface": 293,
+ "n_outside": 206,
+ "selected_inside_frac": 0.6470588235294118,
+ "selected_interface_frac": 0.35294117647058826,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.25000000000000006,
+ "step": 1,
+ "n_elem": 590,
+ "target_elements": 4000,
+ "gap": 3410,
+ "cutoff_score": 2.257305145263672,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.859717607498169,
+ "score_mean": 2.461094936734298e-07,
+ "score_p50": 0.07974791526794434,
+ "score_p90": 1.0646231174468994,
+ "fraction_gt1": 0.10263929618768329,
+ "n_inside": 134,
+ "n_interface": 342,
+ "n_outside": 206,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.31250000000000006,
+ "selected_y_range": 0.3958333333333333,
+ "step": 2,
+ "n_elem": 682,
+ "target_elements": 4000,
+ "gap": 3318,
+ "cutoff_score": 1.7949471473693848,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.6941978931427002,
+ "score_mean": 2.8826428888351074e-07,
+ "score_p50": 0.16835461556911469,
+ "score_p90": 1.2933415174484253,
+ "fraction_gt1": 0.1385390428211587,
+ "n_inside": 134,
+ "n_interface": 448,
+ "n_outside": 212,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.30434782608695654,
+ "selected_outside_frac": 0.6956521739130435,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.5833333333333333,
+ "step": 3,
+ "n_elem": 794,
+ "target_elements": 4000,
+ "gap": 3206,
+ "cutoff_score": 1.6527304649353027,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8579692840576172,
+ "score_mean": 1.9731193390271073e-07,
+ "score_p50": -0.04959115386009216,
+ "score_p90": 1.3994653224945068,
+ "fraction_gt1": 0.16056034482758622,
+ "n_inside": 135,
+ "n_interface": 496,
+ "n_outside": 297,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.2962962962962963,
+ "selected_outside_frac": 0.7037037037037037,
+ "selected_x_range": 0.39583333333333326,
+ "selected_y_range": 0.7083333333333333,
+ "step": 4,
+ "n_elem": 928,
+ "target_elements": 4000,
+ "gap": 3072,
+ "cutoff_score": 1.7685205936431885,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.013970375061035,
+ "score_mean": 1.7257819706628652e-07,
+ "score_p50": -0.2390221208333969,
+ "score_p90": 1.4682300090789795,
+ "fraction_gt1": 0.14797360980207352,
+ "n_inside": 135,
+ "n_interface": 537,
+ "n_outside": 389,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.3870967741935484,
+ "selected_outside_frac": 0.6129032258064516,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.8125,
+ "step": 5,
+ "n_elem": 1061,
+ "target_elements": 4000,
+ "gap": 2939,
+ "cutoff_score": 1.7936561107635498,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1455180644989014,
+ "score_mean": 7.610368868427031e-08,
+ "score_p50": -0.403462678194046,
+ "score_p90": 1.4210878610610962,
+ "fraction_gt1": 0.1288445552784705,
+ "n_inside": 135,
+ "n_interface": 595,
+ "n_outside": 473,
+ "selected_inside_frac": 0.4444444444444444,
+ "selected_interface_frac": 0.16666666666666666,
+ "selected_outside_frac": 0.3888888888888889,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1203,
+ "target_elements": 4000,
+ "gap": 2797,
+ "cutoff_score": 1.8217172622680664,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2484517097473145,
+ "score_mean": 1.0930364879868648e-07,
+ "score_p50": -0.5350779294967651,
+ "score_p90": 1.1533337831497192,
+ "fraction_gt1": 0.1310888252148997,
+ "n_inside": 210,
+ "n_interface": 650,
+ "n_outside": 536,
+ "selected_inside_frac": 0.926829268292683,
+ "selected_interface_frac": 0.07317073170731707,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333337,
+ "selected_y_range": 0.40625,
+ "step": 7,
+ "n_elem": 1396,
+ "target_elements": 4000,
+ "gap": 2604,
+ "cutoff_score": 2.0212221145629883,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.769927501678467,
+ "score_mean": 2.07988449574259e-07,
+ "score_p50": -0.42856669425964355,
+ "score_p90": 1.2348649501800537,
+ "fraction_gt1": 0.18339529120198264,
+ "n_inside": 385,
+ "n_interface": 693,
+ "n_outside": 536,
+ "selected_inside_frac": 0.125,
+ "selected_interface_frac": 0.8541666666666666,
+ "selected_outside_frac": 0.020833333333333332,
+ "selected_x_range": 0.7604166666666667,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1614,
+ "target_elements": 4000,
+ "gap": 2386,
+ "cutoff_score": 2.020348310470581,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.758720636367798,
+ "score_mean": 2.618129997244978e-07,
+ "score_p50": -0.34616661071777344,
+ "score_p90": 1.2891759872436523,
+ "fraction_gt1": 0.15603217158176944,
+ "n_inside": 414,
+ "n_interface": 901,
+ "n_outside": 550,
+ "selected_inside_frac": 0.09090909090909091,
+ "selected_interface_frac": 0.5454545454545454,
+ "selected_outside_frac": 0.36363636363636365,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.8333333333333333,
+ "step": 9,
+ "n_elem": 1865,
+ "target_elements": 4000,
+ "gap": 2135,
+ "cutoff_score": 1.8483693599700928,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4135279655456543,
+ "score_mean": 7.044685901291814e-08,
+ "score_p50": -0.22653459012508392,
+ "score_p90": 1.2904210090637207,
+ "fraction_gt1": 0.13619575253924285,
+ "n_inside": 436,
+ "n_interface": 1050,
+ "n_outside": 680,
+ "selected_inside_frac": 0.1875,
+ "selected_interface_frac": 0.484375,
+ "selected_outside_frac": 0.328125,
+ "selected_x_range": 0.9479166666666666,
+ "selected_y_range": 0.9791666666666667,
+ "step": 10,
+ "n_elem": 2166,
+ "target_elements": 4000,
+ "gap": 1834,
+ "cutoff_score": 1.6233316659927368,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.247863292694092,
+ "score_mean": 4.8847663691731213e-08,
+ "score_p50": -0.11391063034534454,
+ "score_p90": 1.2465503215789795,
+ "fraction_gt1": 0.1332533013205282,
+ "n_inside": 485,
+ "n_interface": 1219,
+ "n_outside": 795,
+ "selected_inside_frac": 0.16216216216216217,
+ "selected_interface_frac": 0.17567567567567569,
+ "selected_outside_frac": 0.6621621621621622,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2499,
+ "target_elements": 4000,
+ "gap": 1501,
+ "cutoff_score": 1.4521293640136719,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.374072551727295,
+ "score_mean": 1.9281024776773847e-07,
+ "score_p50": 0.034089893102645874,
+ "score_p90": 1.2623471021652222,
+ "fraction_gt1": 0.16848016848016847,
+ "n_inside": 552,
+ "n_interface": 1301,
+ "n_outside": 996,
+ "selected_inside_frac": 0.08235294117647059,
+ "selected_interface_frac": 0.8588235294117647,
+ "selected_outside_frac": 0.058823529411764705,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 2849,
+ "target_elements": 4000,
+ "gap": 1151,
+ "cutoff_score": 1.4600560665130615,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.014835834503174,
+ "score_mean": 2.0607326689514593e-07,
+ "score_p50": -0.10891468077898026,
+ "score_p90": 1.2609004974365234,
+ "fraction_gt1": 0.16574585635359115,
+ "n_inside": 590,
+ "n_interface": 1643,
+ "n_outside": 1025,
+ "selected_inside_frac": 0.030927835051546393,
+ "selected_interface_frac": 0.3402061855670103,
+ "selected_outside_frac": 0.6288659793814433,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.8541666666666666,
+ "step": 13,
+ "n_elem": 3258,
+ "target_elements": 4000,
+ "gap": 742,
+ "cutoff_score": 1.6186273097991943,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2848784923553467,
+ "score_mean": 8.133682882771609e-08,
+ "score_p50": -0.353529691696167,
+ "score_p90": 1.3654428720474243,
+ "fraction_gt1": 0.15378464818763327,
+ "n_inside": 612,
+ "n_interface": 1828,
+ "n_outside": 1312,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.6341463414634146,
+ "selected_outside_frac": 0.36585365853658536,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9791666666666667,
+ "step": 14,
+ "n_elem": 3752,
+ "target_elements": 4000,
+ "gap": 248,
+ "cutoff_score": 1.7804770469665527,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 4,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.0738437383727712,
+ "max_err": 0.21057634304886386,
+ "actual_elements": 8162,
+ "num_steps": 21,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.4901019036769867,
+ "score_mean": 0.30303388833999634,
+ "score_p50": 0.2909775674343109,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 31,
+ "n_interface": 275,
+ "n_outside": 206,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333337,
+ "selected_y_range": 0.24999999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.4901019036769867,
+ "num_tied_at_cutoff": 31,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.4901019036769867,
+ "score_mean": 0.27693888545036316,
+ "score_p50": 0.2909775674343109,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 99,
+ "n_interface": 311,
+ "n_outside": 206,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666669,
+ "selected_y_range": 0.16666666666666663,
+ "step": 1,
+ "n_elem": 616,
+ "target_elements": 8000,
+ "gap": 7384,
+ "cutoff_score": 0.34655436873435974,
+ "num_tied_at_cutoff": 16,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.2583051025867462,
+ "score_p50": 0.2909775674343109,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 316,
+ "n_outside": 206,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.39583333333333326,
+ "step": 2,
+ "n_elem": 698,
+ "target_elements": 8000,
+ "gap": 7302,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 454,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.23398108780384064,
+ "score_p50": 0.24505095183849335,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 442,
+ "n_outside": 206,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 3,
+ "n_elem": 824,
+ "target_elements": 8000,
+ "gap": 7176,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 404,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.2136290818452835,
+ "score_p50": 0.20575222373008728,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 588,
+ "n_outside": 206,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.6458333333333333,
+ "step": 4,
+ "n_elem": 970,
+ "target_elements": 8000,
+ "gap": 7030,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 348,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.19665849208831787,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 756,
+ "n_outside": 206,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.75,
+ "step": 5,
+ "n_elem": 1138,
+ "target_elements": 8000,
+ "gap": 6862,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 284,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.18197377026081085,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.2909775674343109,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 947,
+ "n_outside": 214,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.3,
+ "selected_outside_frac": 0.7,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.875,
+ "step": 6,
+ "n_elem": 1337,
+ "target_elements": 8000,
+ "gap": 6663,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 212,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.17012648284435272,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.24505095183849335,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 1006,
+ "n_outside": 374,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 7,
+ "n_elem": 1556,
+ "target_elements": 8000,
+ "gap": 6444,
+ "cutoff_score": 0.2909775674343109,
+ "num_tied_at_cutoff": 134,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2909775674343109,
+ "score_mean": 0.16089849174022675,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.20575222373008728,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 1006,
+ "n_outside": 602,
+ "selected_inside_frac": 0.018867924528301886,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.9811320754716981,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1784,
+ "target_elements": 8000,
+ "gap": 6216,
+ "cutoff_score": 0.24505095183849335,
+ "num_tied_at_cutoff": 78,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.24505095183849335,
+ "score_mean": 0.1543942540884018,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.20575222373008728,
+ "fraction_gt1": 0.0,
+ "n_inside": 181,
+ "n_interface": 1013,
+ "n_outside": 782,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.2604166666666667,
+ "step": 9,
+ "n_elem": 1976,
+ "target_elements": 8000,
+ "gap": 6024,
+ "cutoff_score": 0.24505095183849335,
+ "num_tied_at_cutoff": 75,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.24505095183849335,
+ "score_mean": 0.14512667059898376,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.14548878371715546,
+ "fraction_gt1": 0.0,
+ "n_inside": 388,
+ "n_interface": 1074,
+ "n_outside": 782,
+ "selected_inside_frac": 0.23880597014925373,
+ "selected_interface_frac": 0.7611940298507462,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.6875,
+ "step": 10,
+ "n_elem": 2244,
+ "target_elements": 8000,
+ "gap": 5756,
+ "cutoff_score": 0.20575222373008728,
+ "num_tied_at_cutoff": 120,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20575222373008728,
+ "score_mean": 0.1361667960882187,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.14548878371715546,
+ "fraction_gt1": 0.0,
+ "n_inside": 448,
+ "n_interface": 1313,
+ "n_outside": 782,
+ "selected_inside_frac": 0.17105263157894737,
+ "selected_interface_frac": 0.15789473684210525,
+ "selected_outside_frac": 0.6710526315789473,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2543,
+ "target_elements": 8000,
+ "gap": 5457,
+ "cutoff_score": 0.17327718436717987,
+ "num_tied_at_cutoff": 69,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17327718436717987,
+ "score_mean": 0.12676431238651276,
+ "score_p50": 0.14548878371715546,
+ "score_p90": 0.14548878371715546,
+ "fraction_gt1": 0.0,
+ "n_inside": 489,
+ "n_interface": 1412,
+ "n_outside": 1011,
+ "selected_inside_frac": 0.6206896551724138,
+ "selected_interface_frac": 0.3793103448275862,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.35416666666666674,
+ "selected_y_range": 0.34375,
+ "step": 12,
+ "n_elem": 2912,
+ "target_elements": 8000,
+ "gap": 5088,
+ "cutoff_score": 0.14548878371715546,
+ "num_tied_at_cutoff": 1466,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14548878371715546,
+ "score_mean": 0.11775282770395279,
+ "score_p50": 0.12252547591924667,
+ "score_p90": 0.14548878371715546,
+ "fraction_gt1": 0.0,
+ "n_inside": 699,
+ "n_interface": 1606,
+ "n_outside": 1011,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.47916666666666674,
+ "selected_y_range": 0.44791666666666674,
+ "step": 13,
+ "n_elem": 3316,
+ "target_elements": 8000,
+ "gap": 4684,
+ "cutoff_score": 0.14548878371715546,
+ "num_tied_at_cutoff": 1394,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14548878371715546,
+ "score_mean": 0.10965727269649506,
+ "score_p50": 0.10287611186504364,
+ "score_p90": 0.14548878371715546,
+ "fraction_gt1": 0.0,
+ "n_inside": 699,
+ "n_interface": 2048,
+ "n_outside": 1011,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.59375,
+ "step": 14,
+ "n_elem": 3758,
+ "target_elements": 8000,
+ "gap": 4242,
+ "cutoff_score": 0.14548878371715546,
+ "num_tied_at_cutoff": 1236,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14548878371715546,
+ "score_mean": 0.10218039900064468,
+ "score_p50": 0.10287611186504364,
+ "score_p90": 0.14548878371715546,
+ "fraction_gt1": 0.0,
+ "n_inside": 699,
+ "n_interface": 2576,
+ "n_outside": 1011,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6979166666666667,
+ "selected_y_range": 0.6979166666666667,
+ "step": 15,
+ "n_elem": 4286,
+ "target_elements": 8000,
+ "gap": 3714,
+ "cutoff_score": 0.14548878371715546,
+ "num_tied_at_cutoff": 1046,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14548878371715546,
+ "score_mean": 0.09563856571912766,
+ "score_p50": 0.08663859218358994,
+ "score_p90": 0.14548878371715546,
+ "fraction_gt1": 0.0,
+ "n_inside": 699,
+ "n_interface": 3176,
+ "n_outside": 1011,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.8229166666666667,
+ "step": 16,
+ "n_elem": 4886,
+ "target_elements": 8000,
+ "gap": 3114,
+ "cutoff_score": 0.14548878371715546,
+ "num_tied_at_cutoff": 832,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14548878371715546,
+ "score_mean": 0.09018724411725998,
+ "score_p50": 0.07274439185857773,
+ "score_p90": 0.14548878371715546,
+ "fraction_gt1": 0.0,
+ "n_inside": 699,
+ "n_interface": 3772,
+ "n_outside": 1055,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.024242424242424242,
+ "selected_outside_frac": 0.9757575757575757,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.9166666666666667,
+ "step": 17,
+ "n_elem": 5526,
+ "target_elements": 8000,
+ "gap": 2474,
+ "cutoff_score": 0.14548878371715546,
+ "num_tied_at_cutoff": 616,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14548878371715546,
+ "score_mean": 0.08558259159326553,
+ "score_p50": 0.07274439185857773,
+ "score_p90": 0.12252547591924667,
+ "fraction_gt1": 0.0,
+ "n_inside": 699,
+ "n_interface": 3806,
+ "n_outside": 1706,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9791666666666667,
+ "step": 18,
+ "n_elem": 6211,
+ "target_elements": 8000,
+ "gap": 1789,
+ "cutoff_score": 0.14548878371715546,
+ "num_tied_at_cutoff": 390,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14548878371715546,
+ "score_mean": 0.08166217803955078,
+ "score_p50": 0.07274439185857773,
+ "score_p90": 0.10287611186504364,
+ "fraction_gt1": 0.0,
+ "n_inside": 699,
+ "n_interface": 3806,
+ "n_outside": 2429,
+ "selected_inside_frac": 0.18269230769230768,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.8173076923076923,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 19,
+ "n_elem": 6934,
+ "target_elements": 8000,
+ "gap": 1066,
+ "cutoff_score": 0.12252547591924667,
+ "num_tied_at_cutoff": 329,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12252547591924667,
+ "score_mean": 0.07756754010915756,
+ "score_p50": 0.07274439185857773,
+ "score_p90": 0.10287611186504364,
+ "fraction_gt1": 0.0,
+ "n_inside": 880,
+ "n_interface": 3927,
+ "n_outside": 2979,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333337,
+ "selected_y_range": 0.2552083333333333,
+ "step": 20,
+ "n_elem": 7786,
+ "target_elements": 8000,
+ "gap": 214,
+ "cutoff_score": 0.12252547591924667,
+ "num_tied_at_cutoff": 243,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 4,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.0729120466534454,
+ "max_err": 0.21160017817120763,
+ "actual_elements": 8072,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.992885410785675,
+ "score_mean": 0.09208986908197403,
+ "score_p50": 1.8585392353998031e-06,
+ "score_p90": 0.3576612174510956,
+ "fraction_gt1": 0.0,
+ "n_inside": 31,
+ "n_interface": 275,
+ "n_outside": 206,
+ "selected_inside_frac": 0.8666666666666667,
+ "selected_interface_frac": 0.13333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.08333333333333337,
+ "selected_y_range": 0.24999999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9806128144264221,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9889501929283142,
+ "score_mean": 0.06570076197385788,
+ "score_p50": 3.81430727429688e-05,
+ "score_p90": 0.16536004841327667,
+ "fraction_gt1": 0.0,
+ "n_inside": 84,
+ "n_interface": 302,
+ "n_outside": 206,
+ "selected_inside_frac": 0.5882352941176471,
+ "selected_interface_frac": 0.4117647058823529,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3958333333333333,
+ "selected_y_range": 0.2708333333333333,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 8000,
+ "gap": 7408,
+ "cutoff_score": 0.8850477337837219,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9867637753486633,
+ "score_mean": 0.11772926151752472,
+ "score_p50": 0.0002742839860729873,
+ "score_p90": 0.5364360809326172,
+ "fraction_gt1": 0.0,
+ "n_inside": 122,
+ "n_interface": 364,
+ "n_outside": 206,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.45,
+ "selected_outside_frac": 0.15,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.43750000000000006,
+ "step": 2,
+ "n_elem": 692,
+ "target_elements": 8000,
+ "gap": 7308,
+ "cutoff_score": 0.9368601441383362,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9940663576126099,
+ "score_mean": 0.17281271517276764,
+ "score_p50": 0.00027957314159721136,
+ "score_p90": 0.8454119563102722,
+ "fraction_gt1": 0.0,
+ "n_inside": 169,
+ "n_interface": 429,
+ "n_outside": 226,
+ "selected_inside_frac": 0.041666666666666664,
+ "selected_interface_frac": 0.4166666666666667,
+ "selected_outside_frac": 0.5416666666666666,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5625,
+ "step": 3,
+ "n_elem": 824,
+ "target_elements": 8000,
+ "gap": 7176,
+ "cutoff_score": 0.9825772643089294,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9906829595565796,
+ "score_mean": 0.17181965708732605,
+ "score_p50": 0.0002955030067823827,
+ "score_p90": 0.8324840068817139,
+ "fraction_gt1": 0.0,
+ "n_inside": 179,
+ "n_interface": 485,
+ "n_outside": 304,
+ "selected_inside_frac": 0.10344827586206896,
+ "selected_interface_frac": 0.4827586206896552,
+ "selected_outside_frac": 0.41379310344827586,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.7916666666666667,
+ "step": 4,
+ "n_elem": 968,
+ "target_elements": 8000,
+ "gap": 7032,
+ "cutoff_score": 0.9690840840339661,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9920151233673096,
+ "score_mean": 0.1482677459716797,
+ "score_p50": 0.0004950115690007806,
+ "score_p90": 0.8064414858818054,
+ "fraction_gt1": 0.0,
+ "n_inside": 201,
+ "n_interface": 555,
+ "n_outside": 384,
+ "selected_inside_frac": 0.3235294117647059,
+ "selected_interface_frac": 0.35294117647058826,
+ "selected_outside_frac": 0.3235294117647059,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.8125,
+ "step": 5,
+ "n_elem": 1140,
+ "target_elements": 8000,
+ "gap": 6860,
+ "cutoff_score": 0.9612401127815247,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.989989161491394,
+ "score_mean": 0.1287865787744522,
+ "score_p50": 0.0006326963775791228,
+ "score_p90": 0.6087119579315186,
+ "fraction_gt1": 0.0,
+ "n_inside": 263,
+ "n_interface": 628,
+ "n_outside": 443,
+ "selected_inside_frac": 0.225,
+ "selected_interface_frac": 0.475,
+ "selected_outside_frac": 0.3,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1334,
+ "target_elements": 8000,
+ "gap": 6666,
+ "cutoff_score": 0.9471388459205627,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9854903221130371,
+ "score_mean": 0.12543177604675293,
+ "score_p50": 0.0007582938414998353,
+ "score_p90": 0.5718586444854736,
+ "fraction_gt1": 0.0,
+ "n_inside": 327,
+ "n_interface": 739,
+ "n_outside": 511,
+ "selected_inside_frac": 0.19148936170212766,
+ "selected_interface_frac": 0.5957446808510638,
+ "selected_outside_frac": 0.2127659574468085,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8333333333333333,
+ "step": 7,
+ "n_elem": 1577,
+ "target_elements": 8000,
+ "gap": 6423,
+ "cutoff_score": 0.9172139167785645,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9817178249359131,
+ "score_mean": 0.13516530394554138,
+ "score_p50": 0.0010229800827801228,
+ "score_p90": 0.6763890981674194,
+ "fraction_gt1": 0.0,
+ "n_inside": 379,
+ "n_interface": 890,
+ "n_outside": 571,
+ "selected_inside_frac": 0.21818181818181817,
+ "selected_interface_frac": 0.6545454545454545,
+ "selected_outside_frac": 0.12727272727272726,
+ "selected_x_range": 0.7604166666666667,
+ "selected_y_range": 0.44270833333333337,
+ "step": 8,
+ "n_elem": 1840,
+ "target_elements": 8000,
+ "gap": 6160,
+ "cutoff_score": 0.887151300907135,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9874354600906372,
+ "score_mean": 0.1530187577009201,
+ "score_p50": 0.0015537566505372524,
+ "score_p90": 0.7388982176780701,
+ "fraction_gt1": 0.0,
+ "n_inside": 446,
+ "n_interface": 1087,
+ "n_outside": 612,
+ "selected_inside_frac": 0.296875,
+ "selected_interface_frac": 0.390625,
+ "selected_outside_frac": 0.3125,
+ "selected_x_range": 0.6510416666666667,
+ "selected_y_range": 0.9375,
+ "step": 9,
+ "n_elem": 2145,
+ "target_elements": 8000,
+ "gap": 5855,
+ "cutoff_score": 0.9204908609390259,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9825031757354736,
+ "score_mean": 0.15994009375572205,
+ "score_p50": 0.0013986859703436494,
+ "score_p90": 0.7570742964744568,
+ "fraction_gt1": 0.0,
+ "n_inside": 562,
+ "n_interface": 1247,
+ "n_outside": 731,
+ "selected_inside_frac": 0.13157894736842105,
+ "selected_interface_frac": 0.39473684210526316,
+ "selected_outside_frac": 0.47368421052631576,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 10,
+ "n_elem": 2540,
+ "target_elements": 8000,
+ "gap": 5460,
+ "cutoff_score": 0.9317290186882019,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9910257458686829,
+ "score_mean": 0.1686985045671463,
+ "score_p50": 0.0009717302746139467,
+ "score_p90": 0.7955906391143799,
+ "fraction_gt1": 0.0,
+ "n_inside": 622,
+ "n_interface": 1423,
+ "n_outside": 948,
+ "selected_inside_frac": 0.11235955056179775,
+ "selected_interface_frac": 0.5955056179775281,
+ "selected_outside_frac": 0.29213483146067415,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2993,
+ "target_elements": 8000,
+ "gap": 5007,
+ "cutoff_score": 0.9277037382125854,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9872041344642639,
+ "score_mean": 0.15049561858177185,
+ "score_p50": 0.0006758433301001787,
+ "score_p90": 0.7488041520118713,
+ "fraction_gt1": 0.0,
+ "n_inside": 683,
+ "n_interface": 1726,
+ "n_outside": 1115,
+ "selected_inside_frac": 0.34285714285714286,
+ "selected_interface_frac": 0.3904761904761905,
+ "selected_outside_frac": 0.26666666666666666,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 3524,
+ "target_elements": 8000,
+ "gap": 4476,
+ "cutoff_score": 0.9247748851776123,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9873501658439636,
+ "score_mean": 0.13921907544136047,
+ "score_p50": 0.0009948264341801405,
+ "score_p90": 0.6936156153678894,
+ "fraction_gt1": 0.0,
+ "n_inside": 909,
+ "n_interface": 1973,
+ "n_outside": 1292,
+ "selected_inside_frac": 0.28,
+ "selected_interface_frac": 0.4,
+ "selected_outside_frac": 0.32,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9479166666666667,
+ "step": 13,
+ "n_elem": 4174,
+ "target_elements": 8000,
+ "gap": 3826,
+ "cutoff_score": 0.9194583296775818,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9874809384346008,
+ "score_mean": 0.13328462839126587,
+ "score_p50": 0.0009707628632895648,
+ "score_p90": 0.662693977355957,
+ "fraction_gt1": 0.0,
+ "n_inside": 1116,
+ "n_interface": 2259,
+ "n_outside": 1516,
+ "selected_inside_frac": 0.2054794520547945,
+ "selected_interface_frac": 0.5616438356164384,
+ "selected_outside_frac": 0.2328767123287671,
+ "selected_x_range": 0.9322916666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 14,
+ "n_elem": 4891,
+ "target_elements": 8000,
+ "gap": 3109,
+ "cutoff_score": 0.9150902628898621,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9842255115509033,
+ "score_mean": 0.13211262226104736,
+ "score_p50": 0.0010324225295335054,
+ "score_p90": 0.6019018292427063,
+ "fraction_gt1": 0.0,
+ "n_inside": 1293,
+ "n_interface": 2754,
+ "n_outside": 1721,
+ "selected_inside_frac": 0.1676300578034682,
+ "selected_interface_frac": 0.6416184971098265,
+ "selected_outside_frac": 0.1907514450867052,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.9479166666666667,
+ "step": 15,
+ "n_elem": 5768,
+ "target_elements": 8000,
+ "gap": 2232,
+ "cutoff_score": 0.8932210803031921,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9871265292167664,
+ "score_mean": 0.14431454241275787,
+ "score_p50": 0.0016443321947008371,
+ "score_p90": 0.6983461380004883,
+ "fraction_gt1": 0.0,
+ "n_inside": 1486,
+ "n_interface": 3359,
+ "n_outside": 1919,
+ "selected_inside_frac": 0.2722772277227723,
+ "selected_interface_frac": 0.48514851485148514,
+ "selected_outside_frac": 0.24257425742574257,
+ "selected_x_range": 0.984375,
+ "selected_y_range": 0.984375,
+ "step": 16,
+ "n_elem": 6764,
+ "target_elements": 8000,
+ "gap": 1236,
+ "cutoff_score": 0.902449369430542,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9862877130508423,
+ "score_mean": 0.15844973921775818,
+ "score_p50": 0.0027882722206413746,
+ "score_p90": 0.765119194984436,
+ "fraction_gt1": 0.0,
+ "n_inside": 1773,
+ "n_interface": 3907,
+ "n_outside": 2270,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.5,
+ "selected_x_range": 0.4895833333333333,
+ "selected_y_range": 0.90625,
+ "step": 17,
+ "n_elem": 7950,
+ "target_elements": 8000,
+ "gap": 50,
+ "cutoff_score": 0.9769878387451172,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 4,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07286337511063339,
+ "max_err": 0.21222109058938193,
+ "actual_elements": 8216,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 3.6700055599212646,
+ "score_mean": 3.725290298461914e-07,
+ "score_p50": -0.30077314376831055,
+ "score_p90": 0.3743993937969208,
+ "fraction_gt1": 0.0859375,
+ "n_inside": 31,
+ "n_interface": 275,
+ "n_outside": 206,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.24999999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 3.6285319328308105,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 4.886500358581543,
+ "score_mean": -7.758706033200724e-08,
+ "score_p50": -0.0675140768289566,
+ "score_p90": 0.427655965089798,
+ "fraction_gt1": 0.06779661016949153,
+ "n_inside": 91,
+ "n_interface": 293,
+ "n_outside": 206,
+ "selected_inside_frac": 0.6470588235294118,
+ "selected_interface_frac": 0.35294117647058826,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.25000000000000006,
+ "step": 1,
+ "n_elem": 590,
+ "target_elements": 8000,
+ "gap": 7410,
+ "cutoff_score": 2.257305145263672,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.859717607498169,
+ "score_mean": 2.461094936734298e-07,
+ "score_p50": 0.07974791526794434,
+ "score_p90": 1.0646231174468994,
+ "fraction_gt1": 0.10263929618768329,
+ "n_inside": 134,
+ "n_interface": 342,
+ "n_outside": 206,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.31250000000000006,
+ "selected_y_range": 0.3958333333333333,
+ "step": 2,
+ "n_elem": 682,
+ "target_elements": 8000,
+ "gap": 7318,
+ "cutoff_score": 1.7949471473693848,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.6941978931427002,
+ "score_mean": 2.8826428888351074e-07,
+ "score_p50": 0.16835461556911469,
+ "score_p90": 1.2933415174484253,
+ "fraction_gt1": 0.1385390428211587,
+ "n_inside": 134,
+ "n_interface": 448,
+ "n_outside": 212,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.30434782608695654,
+ "selected_outside_frac": 0.6956521739130435,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.5833333333333333,
+ "step": 3,
+ "n_elem": 794,
+ "target_elements": 8000,
+ "gap": 7206,
+ "cutoff_score": 1.6527304649353027,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8579692840576172,
+ "score_mean": 1.9731193390271073e-07,
+ "score_p50": -0.04959115386009216,
+ "score_p90": 1.3994653224945068,
+ "fraction_gt1": 0.16056034482758622,
+ "n_inside": 135,
+ "n_interface": 496,
+ "n_outside": 297,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.2962962962962963,
+ "selected_outside_frac": 0.7037037037037037,
+ "selected_x_range": 0.39583333333333326,
+ "selected_y_range": 0.7083333333333333,
+ "step": 4,
+ "n_elem": 928,
+ "target_elements": 8000,
+ "gap": 7072,
+ "cutoff_score": 1.7685205936431885,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.013970375061035,
+ "score_mean": 1.7257819706628652e-07,
+ "score_p50": -0.2390221208333969,
+ "score_p90": 1.4682300090789795,
+ "fraction_gt1": 0.14797360980207352,
+ "n_inside": 135,
+ "n_interface": 537,
+ "n_outside": 389,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.3870967741935484,
+ "selected_outside_frac": 0.6129032258064516,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.8125,
+ "step": 5,
+ "n_elem": 1061,
+ "target_elements": 8000,
+ "gap": 6939,
+ "cutoff_score": 1.7936561107635498,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1455180644989014,
+ "score_mean": 7.610368868427031e-08,
+ "score_p50": -0.403462678194046,
+ "score_p90": 1.4210878610610962,
+ "fraction_gt1": 0.1288445552784705,
+ "n_inside": 135,
+ "n_interface": 595,
+ "n_outside": 473,
+ "selected_inside_frac": 0.4444444444444444,
+ "selected_interface_frac": 0.16666666666666666,
+ "selected_outside_frac": 0.3888888888888889,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1203,
+ "target_elements": 8000,
+ "gap": 6797,
+ "cutoff_score": 1.8217172622680664,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2484517097473145,
+ "score_mean": 1.0930364879868648e-07,
+ "score_p50": -0.5350779294967651,
+ "score_p90": 1.1533337831497192,
+ "fraction_gt1": 0.1310888252148997,
+ "n_inside": 210,
+ "n_interface": 650,
+ "n_outside": 536,
+ "selected_inside_frac": 0.926829268292683,
+ "selected_interface_frac": 0.07317073170731707,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333337,
+ "selected_y_range": 0.40625,
+ "step": 7,
+ "n_elem": 1396,
+ "target_elements": 8000,
+ "gap": 6604,
+ "cutoff_score": 2.0212221145629883,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.769927501678467,
+ "score_mean": 2.07988449574259e-07,
+ "score_p50": -0.42856669425964355,
+ "score_p90": 1.2348649501800537,
+ "fraction_gt1": 0.18339529120198264,
+ "n_inside": 385,
+ "n_interface": 693,
+ "n_outside": 536,
+ "selected_inside_frac": 0.125,
+ "selected_interface_frac": 0.8541666666666666,
+ "selected_outside_frac": 0.020833333333333332,
+ "selected_x_range": 0.7604166666666667,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1614,
+ "target_elements": 8000,
+ "gap": 6386,
+ "cutoff_score": 2.020348310470581,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.758720636367798,
+ "score_mean": 2.618129997244978e-07,
+ "score_p50": -0.34616661071777344,
+ "score_p90": 1.2891759872436523,
+ "fraction_gt1": 0.15603217158176944,
+ "n_inside": 414,
+ "n_interface": 901,
+ "n_outside": 550,
+ "selected_inside_frac": 0.09090909090909091,
+ "selected_interface_frac": 0.5454545454545454,
+ "selected_outside_frac": 0.36363636363636365,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.8333333333333333,
+ "step": 9,
+ "n_elem": 1865,
+ "target_elements": 8000,
+ "gap": 6135,
+ "cutoff_score": 1.8483693599700928,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4135279655456543,
+ "score_mean": 7.044685901291814e-08,
+ "score_p50": -0.22653459012508392,
+ "score_p90": 1.2904210090637207,
+ "fraction_gt1": 0.13619575253924285,
+ "n_inside": 436,
+ "n_interface": 1050,
+ "n_outside": 680,
+ "selected_inside_frac": 0.1875,
+ "selected_interface_frac": 0.484375,
+ "selected_outside_frac": 0.328125,
+ "selected_x_range": 0.9479166666666666,
+ "selected_y_range": 0.9791666666666667,
+ "step": 10,
+ "n_elem": 2166,
+ "target_elements": 8000,
+ "gap": 5834,
+ "cutoff_score": 1.6233316659927368,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.247863292694092,
+ "score_mean": 4.8847663691731213e-08,
+ "score_p50": -0.11391063034534454,
+ "score_p90": 1.2465503215789795,
+ "fraction_gt1": 0.1332533013205282,
+ "n_inside": 485,
+ "n_interface": 1219,
+ "n_outside": 795,
+ "selected_inside_frac": 0.16216216216216217,
+ "selected_interface_frac": 0.17567567567567569,
+ "selected_outside_frac": 0.6621621621621622,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2499,
+ "target_elements": 8000,
+ "gap": 5501,
+ "cutoff_score": 1.4521293640136719,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.374072551727295,
+ "score_mean": 1.9281024776773847e-07,
+ "score_p50": 0.034089893102645874,
+ "score_p90": 1.2623471021652222,
+ "fraction_gt1": 0.16848016848016847,
+ "n_inside": 552,
+ "n_interface": 1301,
+ "n_outside": 996,
+ "selected_inside_frac": 0.08235294117647059,
+ "selected_interface_frac": 0.8588235294117647,
+ "selected_outside_frac": 0.058823529411764705,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 2849,
+ "target_elements": 8000,
+ "gap": 5151,
+ "cutoff_score": 1.4600560665130615,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.014835834503174,
+ "score_mean": 2.0607326689514593e-07,
+ "score_p50": -0.10891468077898026,
+ "score_p90": 1.2609004974365234,
+ "fraction_gt1": 0.16574585635359115,
+ "n_inside": 590,
+ "n_interface": 1643,
+ "n_outside": 1025,
+ "selected_inside_frac": 0.030927835051546393,
+ "selected_interface_frac": 0.3402061855670103,
+ "selected_outside_frac": 0.6288659793814433,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.8541666666666666,
+ "step": 13,
+ "n_elem": 3258,
+ "target_elements": 8000,
+ "gap": 4742,
+ "cutoff_score": 1.6186273097991943,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2848784923553467,
+ "score_mean": 8.133682882771609e-08,
+ "score_p50": -0.353529691696167,
+ "score_p90": 1.3654428720474243,
+ "fraction_gt1": 0.15378464818763327,
+ "n_inside": 612,
+ "n_interface": 1828,
+ "n_outside": 1312,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.6428571428571429,
+ "selected_outside_frac": 0.35714285714285715,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 14,
+ "n_elem": 3752,
+ "target_elements": 8000,
+ "gap": 4248,
+ "cutoff_score": 1.7515416145324707,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.465622901916504,
+ "score_mean": 5.6776890744458797e-08,
+ "score_p50": -0.25081866979599,
+ "score_p90": 1.3038685321807861,
+ "fraction_gt1": 0.13697674418604652,
+ "n_inside": 612,
+ "n_interface": 2145,
+ "n_outside": 1543,
+ "selected_inside_frac": 0.023255813953488372,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.6434108527131783,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 15,
+ "n_elem": 4300,
+ "target_elements": 8000,
+ "gap": 3700,
+ "cutoff_score": 1.7036042213439941,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.145695686340332,
+ "score_mean": 0.0,
+ "score_p50": -0.1407354176044464,
+ "score_p90": 1.2711094617843628,
+ "fraction_gt1": 0.12989690721649486,
+ "n_inside": 629,
+ "n_interface": 2366,
+ "n_outside": 1855,
+ "selected_inside_frac": 0.6482758620689655,
+ "selected_interface_frac": 0.2,
+ "selected_outside_frac": 0.15172413793103448,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 16,
+ "n_elem": 4850,
+ "target_elements": 8000,
+ "gap": 3150,
+ "cutoff_score": 1.7285375595092773,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3203983306884766,
+ "score_mean": 8.873001178244522e-08,
+ "score_p50": -0.19841063022613525,
+ "score_p90": 1.2203859090805054,
+ "fraction_gt1": 0.11920770488824278,
+ "n_inside": 981,
+ "n_interface": 2554,
+ "n_outside": 1968,
+ "selected_inside_frac": 0.8848484848484849,
+ "selected_interface_frac": 0.06060606060606061,
+ "selected_outside_frac": 0.05454545454545454,
+ "selected_x_range": 0.7135416666666667,
+ "selected_y_range": 0.9375,
+ "step": 17,
+ "n_elem": 5503,
+ "target_elements": 8000,
+ "gap": 2497,
+ "cutoff_score": 1.8529071807861328,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3883211612701416,
+ "score_mean": 2.743153117990005e-07,
+ "score_p50": -0.39700862765312195,
+ "score_p90": 1.085141897201538,
+ "fraction_gt1": 0.13113964686998394,
+ "n_inside": 1564,
+ "n_interface": 2657,
+ "n_outside": 2009,
+ "selected_inside_frac": 0.11290322580645161,
+ "selected_interface_frac": 0.7741935483870968,
+ "selected_outside_frac": 0.11290322580645161,
+ "selected_x_range": 0.9166666666666666,
+ "selected_y_range": 0.9479166666666667,
+ "step": 18,
+ "n_elem": 6230,
+ "target_elements": 8000,
+ "gap": 1770,
+ "cutoff_score": 1.7371439933776855,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.551645278930664,
+ "score_mean": 1.1962652024521958e-07,
+ "score_p50": -0.39166563749313354,
+ "score_p90": 1.1871839761734009,
+ "fraction_gt1": 0.15875682486350273,
+ "n_inside": 1663,
+ "n_interface": 3354,
+ "n_outside": 2126,
+ "selected_inside_frac": 0.018691588785046728,
+ "selected_interface_frac": 0.5467289719626168,
+ "selected_outside_frac": 0.43457943925233644,
+ "selected_x_range": 0.921875,
+ "selected_y_range": 0.9427083333333333,
+ "step": 19,
+ "n_elem": 7143,
+ "target_elements": 8000,
+ "gap": 857,
+ "cutoff_score": 1.6926543712615967,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 4,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.8529779074573017,
+ "max_err": 1.636931016039323,
+ "actual_elements": 2092,
+ "num_steps": 7,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.5309396982192993,
+ "score_mean": 0.4285905361175537,
+ "score_p50": 0.4117544889450073,
+ "score_p90": 0.5309396982192993,
+ "fraction_gt1": 0.0,
+ "n_inside": 186,
+ "n_interface": 176,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666674,
+ "selected_y_range": 0.32291666666666674,
+ "step": 0,
+ "n_elem": 692,
+ "target_elements": 2000,
+ "gap": 1308,
+ "cutoff_score": 0.5309396982192993,
+ "num_tied_at_cutoff": 186,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.5309396982192993,
+ "score_mean": 0.3584388494491577,
+ "score_p50": 0.4117544889450073,
+ "score_p90": 0.5309396982192993,
+ "fraction_gt1": 0.0,
+ "n_inside": 284,
+ "n_interface": 300,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.26041666666666674,
+ "selected_y_range": 0.26041666666666674,
+ "step": 1,
+ "n_elem": 914,
+ "target_elements": 2000,
+ "gap": 1086,
+ "cutoff_score": 0.5309396982192993,
+ "num_tied_at_cutoff": 132,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.5309396982192993,
+ "score_mean": 0.3309299945831299,
+ "score_p50": 0.37543103098869324,
+ "score_p90": 0.4117544889450073,
+ "fraction_gt1": 0.0,
+ "n_inside": 439,
+ "n_interface": 311,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666674,
+ "selected_y_range": 0.19791666666666674,
+ "step": 2,
+ "n_elem": 1080,
+ "target_elements": 2000,
+ "gap": 920,
+ "cutoff_score": 0.5309396982192993,
+ "num_tied_at_cutoff": 74,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.5309396982192993,
+ "score_mean": 0.3107033371925354,
+ "score_p50": 0.26546984910964966,
+ "score_p90": 0.4117544889450073,
+ "fraction_gt1": 0.0,
+ "n_inside": 603,
+ "n_interface": 311,
+ "n_outside": 330,
+ "selected_inside_frac": 0.4864864864864865,
+ "selected_interface_frac": 0.5135135135135135,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.49999999999999994,
+ "step": 3,
+ "n_elem": 1244,
+ "target_elements": 2000,
+ "gap": 756,
+ "cutoff_score": 0.4117544889450073,
+ "num_tied_at_cutoff": 418,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4117544889450073,
+ "score_mean": 0.2901240587234497,
+ "score_p50": 0.26546984910964966,
+ "score_p90": 0.4117544889450073,
+ "fraction_gt1": 0.0,
+ "n_inside": 669,
+ "n_interface": 430,
+ "n_outside": 330,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 1429,
+ "target_elements": 2000,
+ "gap": 571,
+ "cutoff_score": 0.4117544889450073,
+ "num_tied_at_cutoff": 372,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4117544889450073,
+ "score_mean": 0.27220192551612854,
+ "score_p50": 0.26546984910964966,
+ "score_p90": 0.4117544889450073,
+ "fraction_gt1": 0.0,
+ "n_inside": 669,
+ "n_interface": 580,
+ "n_outside": 372,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 5,
+ "n_elem": 1621,
+ "target_elements": 2000,
+ "gap": 379,
+ "cutoff_score": 0.4117544889450073,
+ "num_tied_at_cutoff": 302,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4117544889450073,
+ "score_mean": 0.25585049390792847,
+ "score_p50": 0.26546984910964966,
+ "score_p90": 0.4117544889450073,
+ "fraction_gt1": 0.0,
+ "n_inside": 669,
+ "n_interface": 580,
+ "n_outside": 599,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1848,
+ "target_elements": 2000,
+ "gap": 152,
+ "cutoff_score": 0.4117544889450073,
+ "num_tied_at_cutoff": 218,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 10,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.4861886376587662,
+ "max_err": 0.8699402359585366,
+ "actual_elements": 2104,
+ "num_steps": 7,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9404385089874268,
+ "score_mean": 0.21067245304584503,
+ "score_p50": 3.698746198210756e-08,
+ "score_p90": 0.8752402663230896,
+ "fraction_gt1": 0.0,
+ "n_inside": 186,
+ "n_interface": 176,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.15625,
+ "selected_y_range": 0.11458333333333326,
+ "step": 0,
+ "n_elem": 692,
+ "target_elements": 2000,
+ "gap": 1308,
+ "cutoff_score": 0.9146258234977722,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9470723271369934,
+ "score_mean": 0.2158619910478592,
+ "score_p50": 0.0002834229962900281,
+ "score_p90": 0.8834565877914429,
+ "fraction_gt1": 0.0,
+ "n_inside": 292,
+ "n_interface": 176,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333326,
+ "selected_y_range": 0.20833333333333326,
+ "step": 1,
+ "n_elem": 798,
+ "target_elements": 2000,
+ "gap": 1202,
+ "cutoff_score": 0.9260175824165344,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9516232013702393,
+ "score_mean": 0.24058283865451813,
+ "score_p50": 0.011344145983457565,
+ "score_p90": 0.8800809383392334,
+ "fraction_gt1": 0.0,
+ "n_inside": 415,
+ "n_interface": 195,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333326,
+ "selected_y_range": 0.30208333333333326,
+ "step": 2,
+ "n_elem": 940,
+ "target_elements": 2000,
+ "gap": 1060,
+ "cutoff_score": 0.9296045303344727,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9615260362625122,
+ "score_mean": 0.26833370327949524,
+ "score_p50": 0.06809782981872559,
+ "score_p90": 0.8433135747909546,
+ "fraction_gt1": 0.0,
+ "n_inside": 559,
+ "n_interface": 207,
+ "n_outside": 330,
+ "selected_inside_frac": 0.625,
+ "selected_interface_frac": 0.375,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666663,
+ "selected_y_range": 0.41666666666666674,
+ "step": 3,
+ "n_elem": 1096,
+ "target_elements": 2000,
+ "gap": 904,
+ "cutoff_score": 0.910150408744812,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9211116433143616,
+ "score_mean": 0.28551411628723145,
+ "score_p50": 0.11136765778064728,
+ "score_p90": 0.8217718601226807,
+ "fraction_gt1": 0.0,
+ "n_inside": 680,
+ "n_interface": 296,
+ "n_outside": 330,
+ "selected_inside_frac": 0.9743589743589743,
+ "selected_interface_frac": 0.02564102564102564,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.15625,
+ "selected_y_range": 0.27604166666666663,
+ "step": 4,
+ "n_elem": 1306,
+ "target_elements": 2000,
+ "gap": 694,
+ "cutoff_score": 0.8916016221046448,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9291041493415833,
+ "score_mean": 0.3005717098712921,
+ "score_p50": 0.12339244782924652,
+ "score_p90": 0.8266776204109192,
+ "fraction_gt1": 0.0,
+ "n_inside": 859,
+ "n_interface": 305,
+ "n_outside": 330,
+ "selected_inside_frac": 0.8181818181818182,
+ "selected_interface_frac": 0.18181818181818182,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34375,
+ "selected_y_range": 0.34895833333333326,
+ "step": 5,
+ "n_elem": 1494,
+ "target_elements": 2000,
+ "gap": 506,
+ "cutoff_score": 0.8845000267028809,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.940112292766571,
+ "score_mean": 0.2981850802898407,
+ "score_p50": 0.0728418156504631,
+ "score_p90": 0.8422064781188965,
+ "fraction_gt1": 0.0,
+ "n_inside": 1083,
+ "n_interface": 371,
+ "n_outside": 330,
+ "selected_inside_frac": 0.8301886792452831,
+ "selected_interface_frac": 0.16981132075471697,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.40625,
+ "selected_y_range": 0.40625,
+ "step": 6,
+ "n_elem": 1784,
+ "target_elements": 2000,
+ "gap": 216,
+ "cutoff_score": 0.8879352807998657,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 10,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.4651267455715912,
+ "max_err": 0.8147289394519187,
+ "actual_elements": 2019,
+ "num_steps": 7,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 1.7021138668060303,
+ "score_mean": -1.5435190903190232e-07,
+ "score_p50": -0.410194993019104,
+ "score_p90": 1.608445405960083,
+ "fraction_gt1": 0.23410404624277456,
+ "n_inside": 186,
+ "n_interface": 176,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.15625,
+ "selected_y_range": 0.11458333333333326,
+ "step": 0,
+ "n_elem": 692,
+ "target_elements": 2000,
+ "gap": 1308,
+ "cutoff_score": 1.665029525756836,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 1.842795729637146,
+ "score_mean": -7.648515776281783e-08,
+ "score_p50": -0.22589969635009766,
+ "score_p90": 1.7458347082138062,
+ "fraction_gt1": 0.17167919799498746,
+ "n_inside": 292,
+ "n_interface": 176,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333326,
+ "selected_y_range": 0.20833333333333326,
+ "step": 1,
+ "n_elem": 798,
+ "target_elements": 2000,
+ "gap": 1202,
+ "cutoff_score": 1.81209397315979,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.9956107139587402,
+ "score_mean": -1.2986203046239098e-07,
+ "score_p50": -0.08050832152366638,
+ "score_p90": 1.02254056930542,
+ "fraction_gt1": 0.11170212765957446,
+ "n_inside": 415,
+ "n_interface": 195,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333326,
+ "selected_y_range": 0.30208333333333326,
+ "step": 2,
+ "n_elem": 940,
+ "target_elements": 2000,
+ "gap": 1060,
+ "cutoff_score": 1.9631414413452148,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2406322956085205,
+ "score_mean": 0.0,
+ "score_p50": 0.061260074377059937,
+ "score_p90": 0.9446280002593994,
+ "fraction_gt1": 0.09124087591240876,
+ "n_inside": 559,
+ "n_interface": 207,
+ "n_outside": 330,
+ "selected_inside_frac": 0.625,
+ "selected_interface_frac": 0.375,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34375,
+ "selected_y_range": 0.45833333333333326,
+ "step": 3,
+ "n_elem": 1096,
+ "target_elements": 2000,
+ "gap": 904,
+ "cutoff_score": 1.2246887683868408,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.4508475065231323,
+ "score_mean": 4.7240831690942287e-08,
+ "score_p50": 0.18394735455513,
+ "score_p90": 0.6693001985549927,
+ "fraction_gt1": 0.06346749226006192,
+ "n_inside": 666,
+ "n_interface": 296,
+ "n_outside": 330,
+ "selected_inside_frac": 0.9473684210526315,
+ "selected_interface_frac": 0.05263157894736842,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.28645833333333337,
+ "step": 4,
+ "n_elem": 1292,
+ "target_elements": 2000,
+ "gap": 708,
+ "cutoff_score": 1.3141289949417114,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.5830366611480713,
+ "score_mean": -2.05644052897469e-08,
+ "score_p50": 0.2674584686756134,
+ "score_p90": 0.7597330808639526,
+ "fraction_gt1": 0.03099730458221024,
+ "n_inside": 836,
+ "n_interface": 318,
+ "n_outside": 330,
+ "selected_inside_frac": 0.9090909090909091,
+ "selected_interface_frac": 0.09090909090909091,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.390625,
+ "selected_y_range": 0.4791666666666667,
+ "step": 5,
+ "n_elem": 1484,
+ "target_elements": 2000,
+ "gap": 516,
+ "cutoff_score": 1.0597398281097412,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.6017018556594849,
+ "score_mean": -6.935812990604973e-08,
+ "score_p50": 0.2665657103061676,
+ "score_p90": 0.8595209121704102,
+ "fraction_gt1": 0.004545454545454545,
+ "n_inside": 1003,
+ "n_interface": 427,
+ "n_outside": 330,
+ "selected_inside_frac": 0.8461538461538461,
+ "selected_interface_frac": 0.15384615384615385,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.3802083333333333,
+ "step": 6,
+ "n_elem": 1760,
+ "target_elements": 2000,
+ "gap": 240,
+ "cutoff_score": 0.9568816423416138,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 10,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.303723149720663,
+ "max_err": 0.5301073175256764,
+ "actual_elements": 4162,
+ "num_steps": 12,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.5309396982192993,
+ "score_mean": 0.4285905361175537,
+ "score_p50": 0.4117544889450073,
+ "score_p90": 0.5309396982192993,
+ "fraction_gt1": 0.0,
+ "n_inside": 186,
+ "n_interface": 176,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666674,
+ "selected_y_range": 0.32291666666666674,
+ "step": 0,
+ "n_elem": 692,
+ "target_elements": 4000,
+ "gap": 3308,
+ "cutoff_score": 0.5309396982192993,
+ "num_tied_at_cutoff": 186,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.5309396982192993,
+ "score_mean": 0.3584388494491577,
+ "score_p50": 0.4117544889450073,
+ "score_p90": 0.5309396982192993,
+ "fraction_gt1": 0.0,
+ "n_inside": 284,
+ "n_interface": 300,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.26041666666666674,
+ "selected_y_range": 0.26041666666666674,
+ "step": 1,
+ "n_elem": 914,
+ "target_elements": 4000,
+ "gap": 3086,
+ "cutoff_score": 0.5309396982192993,
+ "num_tied_at_cutoff": 132,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.5309396982192993,
+ "score_mean": 0.3309299945831299,
+ "score_p50": 0.37543103098869324,
+ "score_p90": 0.4117544889450073,
+ "fraction_gt1": 0.0,
+ "n_inside": 439,
+ "n_interface": 311,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666674,
+ "selected_y_range": 0.19791666666666674,
+ "step": 2,
+ "n_elem": 1080,
+ "target_elements": 4000,
+ "gap": 2920,
+ "cutoff_score": 0.5309396982192993,
+ "num_tied_at_cutoff": 74,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.5309396982192993,
+ "score_mean": 0.3107033371925354,
+ "score_p50": 0.26546984910964966,
+ "score_p90": 0.4117544889450073,
+ "fraction_gt1": 0.0,
+ "n_inside": 603,
+ "n_interface": 311,
+ "n_outside": 330,
+ "selected_inside_frac": 0.4864864864864865,
+ "selected_interface_frac": 0.5135135135135135,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.49999999999999994,
+ "step": 3,
+ "n_elem": 1244,
+ "target_elements": 4000,
+ "gap": 2756,
+ "cutoff_score": 0.4117544889450073,
+ "num_tied_at_cutoff": 418,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4117544889450073,
+ "score_mean": 0.2901240587234497,
+ "score_p50": 0.26546984910964966,
+ "score_p90": 0.4117544889450073,
+ "fraction_gt1": 0.0,
+ "n_inside": 669,
+ "n_interface": 430,
+ "n_outside": 330,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 1429,
+ "target_elements": 4000,
+ "gap": 2571,
+ "cutoff_score": 0.4117544889450073,
+ "num_tied_at_cutoff": 372,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4117544889450073,
+ "score_mean": 0.27220192551612854,
+ "score_p50": 0.26546984910964966,
+ "score_p90": 0.4117544889450073,
+ "fraction_gt1": 0.0,
+ "n_inside": 669,
+ "n_interface": 580,
+ "n_outside": 372,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 5,
+ "n_elem": 1621,
+ "target_elements": 4000,
+ "gap": 2379,
+ "cutoff_score": 0.4117544889450073,
+ "num_tied_at_cutoff": 302,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4117544889450073,
+ "score_mean": 0.25585049390792847,
+ "score_p50": 0.26546984910964966,
+ "score_p90": 0.4117544889450073,
+ "fraction_gt1": 0.0,
+ "n_inside": 669,
+ "n_interface": 580,
+ "n_outside": 599,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1848,
+ "target_elements": 4000,
+ "gap": 2152,
+ "cutoff_score": 0.4117544889450073,
+ "num_tied_at_cutoff": 218,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4117544889450073,
+ "score_mean": 0.24131928384304047,
+ "score_p50": 0.20587724447250366,
+ "score_p90": 0.2911543846130371,
+ "fraction_gt1": 0.0,
+ "n_inside": 669,
+ "n_interface": 580,
+ "n_outside": 862,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 7,
+ "n_elem": 2111,
+ "target_elements": 4000,
+ "gap": 1889,
+ "cutoff_score": 0.4117544889450073,
+ "num_tied_at_cutoff": 120,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4117544889450073,
+ "score_mean": 0.22989729046821594,
+ "score_p50": 0.20587724447250366,
+ "score_p90": 0.2911543846130371,
+ "fraction_gt1": 0.0,
+ "n_inside": 669,
+ "n_interface": 580,
+ "n_outside": 1121,
+ "selected_inside_frac": 0.49295774647887325,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.5070422535211268,
+ "selected_x_range": 0.9010416666666666,
+ "selected_y_range": 0.8802083333333333,
+ "step": 8,
+ "n_elem": 2370,
+ "target_elements": 4000,
+ "gap": 1630,
+ "cutoff_score": 0.37543103098869324,
+ "num_tied_at_cutoff": 77,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.37543103098869324,
+ "score_mean": 0.21577519178390503,
+ "score_p50": 0.20587724447250366,
+ "score_p90": 0.26546984910964966,
+ "fraction_gt1": 0.0,
+ "n_inside": 825,
+ "n_interface": 642,
+ "n_outside": 1241,
+ "selected_inside_frac": 0.32098765432098764,
+ "selected_interface_frac": 0.41975308641975306,
+ "selected_outside_frac": 0.25925925925925924,
+ "selected_x_range": 0.7083333333333334,
+ "selected_y_range": 0.7708333333333334,
+ "step": 9,
+ "n_elem": 2708,
+ "target_elements": 4000,
+ "gap": 1292,
+ "cutoff_score": 0.2911543846130371,
+ "num_tied_at_cutoff": 110,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2911543846130371,
+ "score_mean": 0.2016461193561554,
+ "score_p50": 0.20587724447250366,
+ "score_p90": 0.26546984910964966,
+ "fraction_gt1": 0.0,
+ "n_inside": 951,
+ "n_interface": 802,
+ "n_outside": 1338,
+ "selected_inside_frac": 0.42391304347826086,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.5760869565217391,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 10,
+ "n_elem": 3091,
+ "target_elements": 4000,
+ "gap": 909,
+ "cutoff_score": 0.26546984910964966,
+ "num_tied_at_cutoff": 532,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.26546984910964966,
+ "score_mean": 0.1807575523853302,
+ "score_p50": 0.18771551549434662,
+ "score_p90": 0.26546984910964966,
+ "fraction_gt1": 0.0,
+ "n_inside": 1132,
+ "n_interface": 995,
+ "n_outside": 1597,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.30208333333333326,
+ "selected_y_range": 0.28645833333333326,
+ "step": 11,
+ "n_elem": 3724,
+ "target_elements": 4000,
+ "gap": 276,
+ "cutoff_score": 0.26546984910964966,
+ "num_tied_at_cutoff": 443,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 10,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.25811106452999955,
+ "max_err": 0.3318723103111867,
+ "actual_elements": 4113,
+ "num_steps": 11,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9404385089874268,
+ "score_mean": 0.21067245304584503,
+ "score_p50": 3.698746198210756e-08,
+ "score_p90": 0.8752402663230896,
+ "fraction_gt1": 0.0,
+ "n_inside": 186,
+ "n_interface": 176,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.15625,
+ "selected_y_range": 0.11458333333333326,
+ "step": 0,
+ "n_elem": 692,
+ "target_elements": 4000,
+ "gap": 3308,
+ "cutoff_score": 0.9146258234977722,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9470723271369934,
+ "score_mean": 0.2158619910478592,
+ "score_p50": 0.0002834229962900281,
+ "score_p90": 0.8834565877914429,
+ "fraction_gt1": 0.0,
+ "n_inside": 292,
+ "n_interface": 176,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333326,
+ "selected_y_range": 0.20833333333333326,
+ "step": 1,
+ "n_elem": 798,
+ "target_elements": 4000,
+ "gap": 3202,
+ "cutoff_score": 0.9260175824165344,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9516232013702393,
+ "score_mean": 0.24058283865451813,
+ "score_p50": 0.011344145983457565,
+ "score_p90": 0.8800809383392334,
+ "fraction_gt1": 0.0,
+ "n_inside": 415,
+ "n_interface": 195,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333326,
+ "selected_y_range": 0.30208333333333326,
+ "step": 2,
+ "n_elem": 940,
+ "target_elements": 4000,
+ "gap": 3060,
+ "cutoff_score": 0.9296045303344727,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9615260362625122,
+ "score_mean": 0.26833370327949524,
+ "score_p50": 0.06809782981872559,
+ "score_p90": 0.8433135747909546,
+ "fraction_gt1": 0.0,
+ "n_inside": 559,
+ "n_interface": 207,
+ "n_outside": 330,
+ "selected_inside_frac": 0.625,
+ "selected_interface_frac": 0.375,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666663,
+ "selected_y_range": 0.41666666666666674,
+ "step": 3,
+ "n_elem": 1096,
+ "target_elements": 4000,
+ "gap": 2904,
+ "cutoff_score": 0.910150408744812,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9211116433143616,
+ "score_mean": 0.28551411628723145,
+ "score_p50": 0.11136765778064728,
+ "score_p90": 0.8217718601226807,
+ "fraction_gt1": 0.0,
+ "n_inside": 680,
+ "n_interface": 296,
+ "n_outside": 330,
+ "selected_inside_frac": 0.9743589743589743,
+ "selected_interface_frac": 0.02564102564102564,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.15625,
+ "selected_y_range": 0.27604166666666663,
+ "step": 4,
+ "n_elem": 1306,
+ "target_elements": 4000,
+ "gap": 2694,
+ "cutoff_score": 0.8916016221046448,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9291041493415833,
+ "score_mean": 0.3005717098712921,
+ "score_p50": 0.12339244782924652,
+ "score_p90": 0.8266776204109192,
+ "fraction_gt1": 0.0,
+ "n_inside": 859,
+ "n_interface": 305,
+ "n_outside": 330,
+ "selected_inside_frac": 0.8181818181818182,
+ "selected_interface_frac": 0.18181818181818182,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34375,
+ "selected_y_range": 0.34895833333333326,
+ "step": 5,
+ "n_elem": 1494,
+ "target_elements": 4000,
+ "gap": 2506,
+ "cutoff_score": 0.8845000267028809,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.940112292766571,
+ "score_mean": 0.2981850802898407,
+ "score_p50": 0.0728418156504631,
+ "score_p90": 0.8422064781188965,
+ "fraction_gt1": 0.0,
+ "n_inside": 1083,
+ "n_interface": 371,
+ "n_outside": 330,
+ "selected_inside_frac": 0.8301886792452831,
+ "selected_interface_frac": 0.16981132075471697,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.40625,
+ "selected_y_range": 0.40625,
+ "step": 6,
+ "n_elem": 1784,
+ "target_elements": 4000,
+ "gap": 2216,
+ "cutoff_score": 0.8879352807998657,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.930315375328064,
+ "score_mean": 0.2784808874130249,
+ "score_p50": 0.07254970073699951,
+ "score_p90": 0.8441838026046753,
+ "fraction_gt1": 0.0,
+ "n_inside": 1322,
+ "n_interface": 452,
+ "n_outside": 330,
+ "selected_inside_frac": 0.873015873015873,
+ "selected_interface_frac": 0.12698412698412698,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.4791666666666667,
+ "step": 7,
+ "n_elem": 2104,
+ "target_elements": 4000,
+ "gap": 1896,
+ "cutoff_score": 0.8895148634910583,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.929781436920166,
+ "score_mean": 0.27178293466567993,
+ "score_p50": 0.06810377538204193,
+ "score_p90": 0.8265230655670166,
+ "fraction_gt1": 0.0,
+ "n_inside": 1653,
+ "n_interface": 507,
+ "n_outside": 330,
+ "selected_inside_frac": 0.8378378378378378,
+ "selected_interface_frac": 0.16216216216216217,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.5104166666666667,
+ "step": 8,
+ "n_elem": 2490,
+ "target_elements": 4000,
+ "gap": 1510,
+ "cutoff_score": 0.8882371783256531,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9365755915641785,
+ "score_mean": 0.2692863941192627,
+ "score_p50": 0.09718379378318787,
+ "score_p90": 0.8014166951179504,
+ "fraction_gt1": 0.0,
+ "n_inside": 2031,
+ "n_interface": 580,
+ "n_outside": 330,
+ "selected_inside_frac": 0.7954545454545454,
+ "selected_interface_frac": 0.20454545454545456,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.40625,
+ "selected_y_range": 0.47916666666666674,
+ "step": 9,
+ "n_elem": 2941,
+ "target_elements": 4000,
+ "gap": 1059,
+ "cutoff_score": 0.8777886033058167,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.922439455986023,
+ "score_mean": 0.2761397361755371,
+ "score_p50": 0.12483206391334534,
+ "score_p90": 0.8105919361114502,
+ "fraction_gt1": 0.0,
+ "n_inside": 2408,
+ "n_interface": 739,
+ "n_outside": 330,
+ "selected_inside_frac": 0.8653846153846154,
+ "selected_interface_frac": 0.1346153846153846,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.44791666666666674,
+ "selected_y_range": 0.5104166666666667,
+ "step": 10,
+ "n_elem": 3477,
+ "target_elements": 4000,
+ "gap": 523,
+ "cutoff_score": 0.8759119510650635,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 10,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.23295092918681334,
+ "max_err": 0.35193688028784087,
+ "actual_elements": 4127,
+ "num_steps": 12,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 1.7021138668060303,
+ "score_mean": -1.5435190903190232e-07,
+ "score_p50": -0.410194993019104,
+ "score_p90": 1.608445405960083,
+ "fraction_gt1": 0.23410404624277456,
+ "n_inside": 186,
+ "n_interface": 176,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.15625,
+ "selected_y_range": 0.11458333333333326,
+ "step": 0,
+ "n_elem": 692,
+ "target_elements": 4000,
+ "gap": 3308,
+ "cutoff_score": 1.665029525756836,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 1.842795729637146,
+ "score_mean": -7.648515776281783e-08,
+ "score_p50": -0.22589969635009766,
+ "score_p90": 1.7458347082138062,
+ "fraction_gt1": 0.17167919799498746,
+ "n_inside": 292,
+ "n_interface": 176,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333326,
+ "selected_y_range": 0.20833333333333326,
+ "step": 1,
+ "n_elem": 798,
+ "target_elements": 4000,
+ "gap": 3202,
+ "cutoff_score": 1.81209397315979,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.9956107139587402,
+ "score_mean": -1.2986203046239098e-07,
+ "score_p50": -0.08050832152366638,
+ "score_p90": 1.02254056930542,
+ "fraction_gt1": 0.11170212765957446,
+ "n_inside": 415,
+ "n_interface": 195,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333326,
+ "selected_y_range": 0.30208333333333326,
+ "step": 2,
+ "n_elem": 940,
+ "target_elements": 4000,
+ "gap": 3060,
+ "cutoff_score": 1.9631414413452148,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2406322956085205,
+ "score_mean": 0.0,
+ "score_p50": 0.061260074377059937,
+ "score_p90": 0.9446280002593994,
+ "fraction_gt1": 0.09124087591240876,
+ "n_inside": 559,
+ "n_interface": 207,
+ "n_outside": 330,
+ "selected_inside_frac": 0.625,
+ "selected_interface_frac": 0.375,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34375,
+ "selected_y_range": 0.45833333333333326,
+ "step": 3,
+ "n_elem": 1096,
+ "target_elements": 4000,
+ "gap": 2904,
+ "cutoff_score": 1.2246887683868408,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.4508475065231323,
+ "score_mean": 4.7240831690942287e-08,
+ "score_p50": 0.18394735455513,
+ "score_p90": 0.6693001985549927,
+ "fraction_gt1": 0.06346749226006192,
+ "n_inside": 666,
+ "n_interface": 296,
+ "n_outside": 330,
+ "selected_inside_frac": 0.9473684210526315,
+ "selected_interface_frac": 0.05263157894736842,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.28645833333333337,
+ "step": 4,
+ "n_elem": 1292,
+ "target_elements": 4000,
+ "gap": 2708,
+ "cutoff_score": 1.3141289949417114,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.5830366611480713,
+ "score_mean": -2.05644052897469e-08,
+ "score_p50": 0.2674584686756134,
+ "score_p90": 0.7597330808639526,
+ "fraction_gt1": 0.03099730458221024,
+ "n_inside": 836,
+ "n_interface": 318,
+ "n_outside": 330,
+ "selected_inside_frac": 0.9090909090909091,
+ "selected_interface_frac": 0.09090909090909091,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.390625,
+ "selected_y_range": 0.4791666666666667,
+ "step": 5,
+ "n_elem": 1484,
+ "target_elements": 4000,
+ "gap": 2516,
+ "cutoff_score": 1.0597398281097412,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.6017018556594849,
+ "score_mean": -6.935812990604973e-08,
+ "score_p50": 0.2665657103061676,
+ "score_p90": 0.8595209121704102,
+ "fraction_gt1": 0.004545454545454545,
+ "n_inside": 1003,
+ "n_interface": 427,
+ "n_outside": 330,
+ "selected_inside_frac": 0.8461538461538461,
+ "selected_interface_frac": 0.15384615384615385,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.3802083333333333,
+ "step": 6,
+ "n_elem": 1760,
+ "target_elements": 4000,
+ "gap": 2240,
+ "cutoff_score": 0.9568816423416138,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.0916093587875366,
+ "score_mean": -1.2092155543541594e-07,
+ "score_p50": 0.09684698283672333,
+ "score_p90": 0.9131066799163818,
+ "fraction_gt1": 0.05943536404160475,
+ "n_inside": 1217,
+ "n_interface": 472,
+ "n_outside": 330,
+ "selected_inside_frac": 0.9666666666666667,
+ "selected_interface_frac": 0.03333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.36458333333333337,
+ "selected_y_range": 0.34375,
+ "step": 7,
+ "n_elem": 2019,
+ "target_elements": 4000,
+ "gap": 1981,
+ "cutoff_score": 1.0374577045440674,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.699549674987793,
+ "score_mean": 5.168091021801047e-08,
+ "score_p50": -0.12757247686386108,
+ "score_p90": 0.8265579342842102,
+ "fraction_gt1": 0.07197290431837426,
+ "n_inside": 1547,
+ "n_interface": 485,
+ "n_outside": 330,
+ "selected_inside_frac": 0.8714285714285714,
+ "selected_interface_frac": 0.12857142857142856,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.4791666666666667,
+ "step": 8,
+ "n_elem": 2362,
+ "target_elements": 4000,
+ "gap": 1638,
+ "cutoff_score": 1.167358160018921,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.827289342880249,
+ "score_mean": 0.0,
+ "score_p50": -0.18630237877368927,
+ "score_p90": 0.9039276242256165,
+ "fraction_gt1": 0.042583904727535184,
+ "n_inside": 1875,
+ "n_interface": 564,
+ "n_outside": 332,
+ "selected_inside_frac": 0.8192771084337349,
+ "selected_interface_frac": 0.1566265060240964,
+ "selected_outside_frac": 0.024096385542168676,
+ "selected_x_range": 0.53125,
+ "selected_y_range": 0.625,
+ "step": 9,
+ "n_elem": 2771,
+ "target_elements": 4000,
+ "gap": 1229,
+ "cutoff_score": 1.1047452688217163,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.7408699989318848,
+ "score_mean": -3.759479838549851e-08,
+ "score_p50": -0.2508476972579956,
+ "score_p90": 0.998776912689209,
+ "fraction_gt1": 0.09793655682168155,
+ "n_inside": 2170,
+ "n_interface": 732,
+ "n_outside": 345,
+ "selected_inside_frac": 0.1134020618556701,
+ "selected_interface_frac": 0.4639175257731959,
+ "selected_outside_frac": 0.422680412371134,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.78125,
+ "step": 10,
+ "n_elem": 3247,
+ "target_elements": 4000,
+ "gap": 753,
+ "cutoff_score": 1.089919090270996,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.5303486585617065,
+ "score_mean": -1.645596015009687e-08,
+ "score_p50": -0.1743716448545456,
+ "score_p90": 1.073185920715332,
+ "fraction_gt1": 0.14100835804799136,
+ "n_inside": 2221,
+ "n_interface": 968,
+ "n_outside": 520,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8958333333333333,
+ "step": 11,
+ "n_elem": 3709,
+ "target_elements": 4000,
+ "gap": 291,
+ "cutoff_score": 1.245466947555542,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 10,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.208324938643037,
+ "max_err": 0.32524313831789287,
+ "actual_elements": 8188,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.5309396982192993,
+ "score_mean": 0.4285905361175537,
+ "score_p50": 0.4117544889450073,
+ "score_p90": 0.5309396982192993,
+ "fraction_gt1": 0.0,
+ "n_inside": 186,
+ "n_interface": 176,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666674,
+ "selected_y_range": 0.32291666666666674,
+ "step": 0,
+ "n_elem": 692,
+ "target_elements": 8000,
+ "gap": 7308,
+ "cutoff_score": 0.5309396982192993,
+ "num_tied_at_cutoff": 186,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.5309396982192993,
+ "score_mean": 0.3584388494491577,
+ "score_p50": 0.4117544889450073,
+ "score_p90": 0.5309396982192993,
+ "fraction_gt1": 0.0,
+ "n_inside": 284,
+ "n_interface": 300,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.26041666666666674,
+ "selected_y_range": 0.26041666666666674,
+ "step": 1,
+ "n_elem": 914,
+ "target_elements": 8000,
+ "gap": 7086,
+ "cutoff_score": 0.5309396982192993,
+ "num_tied_at_cutoff": 132,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.5309396982192993,
+ "score_mean": 0.3309299945831299,
+ "score_p50": 0.37543103098869324,
+ "score_p90": 0.4117544889450073,
+ "fraction_gt1": 0.0,
+ "n_inside": 439,
+ "n_interface": 311,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666674,
+ "selected_y_range": 0.19791666666666674,
+ "step": 2,
+ "n_elem": 1080,
+ "target_elements": 8000,
+ "gap": 6920,
+ "cutoff_score": 0.5309396982192993,
+ "num_tied_at_cutoff": 74,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.5309396982192993,
+ "score_mean": 0.3107033371925354,
+ "score_p50": 0.26546984910964966,
+ "score_p90": 0.4117544889450073,
+ "fraction_gt1": 0.0,
+ "n_inside": 603,
+ "n_interface": 311,
+ "n_outside": 330,
+ "selected_inside_frac": 0.4864864864864865,
+ "selected_interface_frac": 0.5135135135135135,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.49999999999999994,
+ "step": 3,
+ "n_elem": 1244,
+ "target_elements": 8000,
+ "gap": 6756,
+ "cutoff_score": 0.4117544889450073,
+ "num_tied_at_cutoff": 418,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4117544889450073,
+ "score_mean": 0.2901240587234497,
+ "score_p50": 0.26546984910964966,
+ "score_p90": 0.4117544889450073,
+ "fraction_gt1": 0.0,
+ "n_inside": 669,
+ "n_interface": 430,
+ "n_outside": 330,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 1429,
+ "target_elements": 8000,
+ "gap": 6571,
+ "cutoff_score": 0.4117544889450073,
+ "num_tied_at_cutoff": 372,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4117544889450073,
+ "score_mean": 0.27220192551612854,
+ "score_p50": 0.26546984910964966,
+ "score_p90": 0.4117544889450073,
+ "fraction_gt1": 0.0,
+ "n_inside": 669,
+ "n_interface": 580,
+ "n_outside": 372,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 5,
+ "n_elem": 1621,
+ "target_elements": 8000,
+ "gap": 6379,
+ "cutoff_score": 0.4117544889450073,
+ "num_tied_at_cutoff": 302,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4117544889450073,
+ "score_mean": 0.25585049390792847,
+ "score_p50": 0.26546984910964966,
+ "score_p90": 0.4117544889450073,
+ "fraction_gt1": 0.0,
+ "n_inside": 669,
+ "n_interface": 580,
+ "n_outside": 599,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1848,
+ "target_elements": 8000,
+ "gap": 6152,
+ "cutoff_score": 0.4117544889450073,
+ "num_tied_at_cutoff": 218,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4117544889450073,
+ "score_mean": 0.24131928384304047,
+ "score_p50": 0.20587724447250366,
+ "score_p90": 0.2911543846130371,
+ "fraction_gt1": 0.0,
+ "n_inside": 669,
+ "n_interface": 580,
+ "n_outside": 862,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 7,
+ "n_elem": 2111,
+ "target_elements": 8000,
+ "gap": 5889,
+ "cutoff_score": 0.4117544889450073,
+ "num_tied_at_cutoff": 120,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4117544889450073,
+ "score_mean": 0.22989729046821594,
+ "score_p50": 0.20587724447250366,
+ "score_p90": 0.2911543846130371,
+ "fraction_gt1": 0.0,
+ "n_inside": 669,
+ "n_interface": 580,
+ "n_outside": 1121,
+ "selected_inside_frac": 0.49295774647887325,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.5070422535211268,
+ "selected_x_range": 0.9010416666666666,
+ "selected_y_range": 0.8802083333333333,
+ "step": 8,
+ "n_elem": 2370,
+ "target_elements": 8000,
+ "gap": 5630,
+ "cutoff_score": 0.37543103098869324,
+ "num_tied_at_cutoff": 77,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.37543103098869324,
+ "score_mean": 0.21577519178390503,
+ "score_p50": 0.20587724447250366,
+ "score_p90": 0.26546984910964966,
+ "fraction_gt1": 0.0,
+ "n_inside": 825,
+ "n_interface": 642,
+ "n_outside": 1241,
+ "selected_inside_frac": 0.32098765432098764,
+ "selected_interface_frac": 0.41975308641975306,
+ "selected_outside_frac": 0.25925925925925924,
+ "selected_x_range": 0.7083333333333334,
+ "selected_y_range": 0.7708333333333334,
+ "step": 9,
+ "n_elem": 2708,
+ "target_elements": 8000,
+ "gap": 5292,
+ "cutoff_score": 0.2911543846130371,
+ "num_tied_at_cutoff": 110,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2911543846130371,
+ "score_mean": 0.2016461193561554,
+ "score_p50": 0.20587724447250366,
+ "score_p90": 0.26546984910964966,
+ "fraction_gt1": 0.0,
+ "n_inside": 951,
+ "n_interface": 802,
+ "n_outside": 1338,
+ "selected_inside_frac": 0.42391304347826086,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.5760869565217391,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 10,
+ "n_elem": 3091,
+ "target_elements": 8000,
+ "gap": 4909,
+ "cutoff_score": 0.26546984910964966,
+ "num_tied_at_cutoff": 532,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.26546984910964966,
+ "score_mean": 0.1807575523853302,
+ "score_p50": 0.18771551549434662,
+ "score_p90": 0.26546984910964966,
+ "fraction_gt1": 0.0,
+ "n_inside": 1132,
+ "n_interface": 995,
+ "n_outside": 1597,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.30208333333333326,
+ "selected_y_range": 0.28645833333333326,
+ "step": 11,
+ "n_elem": 3724,
+ "target_elements": 8000,
+ "gap": 4276,
+ "cutoff_score": 0.26546984910964966,
+ "num_tied_at_cutoff": 443,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.26546984910964966,
+ "score_mean": 0.1693834513425827,
+ "score_p50": 0.18771551549434662,
+ "score_p90": 0.20587724447250366,
+ "fraction_gt1": 0.0,
+ "n_inside": 1648,
+ "n_interface": 999,
+ "n_outside": 1597,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.22395833333333326,
+ "selected_y_range": 0.22395833333333326,
+ "step": 12,
+ "n_elem": 4244,
+ "target_elements": 8000,
+ "gap": 3756,
+ "cutoff_score": 0.26546984910964966,
+ "num_tied_at_cutoff": 274,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.26546984910964966,
+ "score_mean": 0.16045993566513062,
+ "score_p50": 0.14557719230651855,
+ "score_p90": 0.20587724447250366,
+ "fraction_gt1": 0.0,
+ "n_inside": 2176,
+ "n_interface": 999,
+ "n_outside": 1597,
+ "selected_inside_frac": 0.6573426573426573,
+ "selected_interface_frac": 0.34265734265734266,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.44791666666666674,
+ "step": 13,
+ "n_elem": 4772,
+ "target_elements": 8000,
+ "gap": 3228,
+ "cutoff_score": 0.20587724447250366,
+ "num_tied_at_cutoff": 1370,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20587724447250366,
+ "score_mean": 0.1516226828098297,
+ "score_p50": 0.13273492455482483,
+ "score_p90": 0.20587724447250366,
+ "fraction_gt1": 0.0,
+ "n_inside": 2498,
+ "n_interface": 1257,
+ "n_outside": 1597,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.59375,
+ "step": 14,
+ "n_elem": 5352,
+ "target_elements": 8000,
+ "gap": 2648,
+ "cutoff_score": 0.20587724447250366,
+ "num_tied_at_cutoff": 1284,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20587724447250366,
+ "score_mean": 0.1427331268787384,
+ "score_p50": 0.13273492455482483,
+ "score_p90": 0.20587724447250366,
+ "fraction_gt1": 0.0,
+ "n_inside": 2498,
+ "n_interface": 1899,
+ "n_outside": 1597,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.20670391061452514,
+ "selected_outside_frac": 0.7932960893854749,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6979166666666667,
+ "step": 15,
+ "n_elem": 5994,
+ "target_elements": 8000,
+ "gap": 2006,
+ "cutoff_score": 0.20587724447250366,
+ "num_tied_at_cutoff": 1070,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20587724447250366,
+ "score_mean": 0.13491563498973846,
+ "score_p50": 0.13273492455482483,
+ "score_p90": 0.20587724447250366,
+ "fraction_gt1": 0.0,
+ "n_inside": 2498,
+ "n_interface": 2030,
+ "n_outside": 2175,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.8229166666666667,
+ "step": 16,
+ "n_elem": 6703,
+ "target_elements": 8000,
+ "gap": 1297,
+ "cutoff_score": 0.20587724447250366,
+ "num_tied_at_cutoff": 828,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20587724447250366,
+ "score_mean": 0.12776173651218414,
+ "score_p50": 0.13273492455482483,
+ "score_p90": 0.18771551549434662,
+ "fraction_gt1": 0.0,
+ "n_inside": 2498,
+ "n_interface": 2030,
+ "n_outside": 2988,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 17,
+ "n_elem": 7516,
+ "target_elements": 8000,
+ "gap": 484,
+ "cutoff_score": 0.20587724447250366,
+ "num_tied_at_cutoff": 552,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 10,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.18499067343668904,
+ "max_err": 0.22558616024070127,
+ "actual_elements": 8133,
+ "num_steps": 16,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9404385089874268,
+ "score_mean": 0.21067245304584503,
+ "score_p50": 3.698746198210756e-08,
+ "score_p90": 0.8752402663230896,
+ "fraction_gt1": 0.0,
+ "n_inside": 186,
+ "n_interface": 176,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.15625,
+ "selected_y_range": 0.11458333333333326,
+ "step": 0,
+ "n_elem": 692,
+ "target_elements": 8000,
+ "gap": 7308,
+ "cutoff_score": 0.9146258234977722,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9470723271369934,
+ "score_mean": 0.2158619910478592,
+ "score_p50": 0.0002834229962900281,
+ "score_p90": 0.8834565877914429,
+ "fraction_gt1": 0.0,
+ "n_inside": 292,
+ "n_interface": 176,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333326,
+ "selected_y_range": 0.20833333333333326,
+ "step": 1,
+ "n_elem": 798,
+ "target_elements": 8000,
+ "gap": 7202,
+ "cutoff_score": 0.9260175824165344,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9516232013702393,
+ "score_mean": 0.24058283865451813,
+ "score_p50": 0.011344145983457565,
+ "score_p90": 0.8800809383392334,
+ "fraction_gt1": 0.0,
+ "n_inside": 415,
+ "n_interface": 195,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333326,
+ "selected_y_range": 0.30208333333333326,
+ "step": 2,
+ "n_elem": 940,
+ "target_elements": 8000,
+ "gap": 7060,
+ "cutoff_score": 0.9296045303344727,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9615260362625122,
+ "score_mean": 0.26833370327949524,
+ "score_p50": 0.06809782981872559,
+ "score_p90": 0.8433135747909546,
+ "fraction_gt1": 0.0,
+ "n_inside": 559,
+ "n_interface": 207,
+ "n_outside": 330,
+ "selected_inside_frac": 0.625,
+ "selected_interface_frac": 0.375,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666663,
+ "selected_y_range": 0.41666666666666674,
+ "step": 3,
+ "n_elem": 1096,
+ "target_elements": 8000,
+ "gap": 6904,
+ "cutoff_score": 0.910150408744812,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9211116433143616,
+ "score_mean": 0.28551411628723145,
+ "score_p50": 0.11136765778064728,
+ "score_p90": 0.8217718601226807,
+ "fraction_gt1": 0.0,
+ "n_inside": 680,
+ "n_interface": 296,
+ "n_outside": 330,
+ "selected_inside_frac": 0.9743589743589743,
+ "selected_interface_frac": 0.02564102564102564,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.15625,
+ "selected_y_range": 0.27604166666666663,
+ "step": 4,
+ "n_elem": 1306,
+ "target_elements": 8000,
+ "gap": 6694,
+ "cutoff_score": 0.8916016221046448,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9291041493415833,
+ "score_mean": 0.3005717098712921,
+ "score_p50": 0.12339244782924652,
+ "score_p90": 0.8266776204109192,
+ "fraction_gt1": 0.0,
+ "n_inside": 859,
+ "n_interface": 305,
+ "n_outside": 330,
+ "selected_inside_frac": 0.8181818181818182,
+ "selected_interface_frac": 0.18181818181818182,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34375,
+ "selected_y_range": 0.34895833333333326,
+ "step": 5,
+ "n_elem": 1494,
+ "target_elements": 8000,
+ "gap": 6506,
+ "cutoff_score": 0.8845000267028809,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.940112292766571,
+ "score_mean": 0.2981850802898407,
+ "score_p50": 0.0728418156504631,
+ "score_p90": 0.8422064781188965,
+ "fraction_gt1": 0.0,
+ "n_inside": 1083,
+ "n_interface": 371,
+ "n_outside": 330,
+ "selected_inside_frac": 0.8301886792452831,
+ "selected_interface_frac": 0.16981132075471697,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.40625,
+ "selected_y_range": 0.40625,
+ "step": 6,
+ "n_elem": 1784,
+ "target_elements": 8000,
+ "gap": 6216,
+ "cutoff_score": 0.8879352807998657,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.930315375328064,
+ "score_mean": 0.2784808874130249,
+ "score_p50": 0.07254970073699951,
+ "score_p90": 0.8441838026046753,
+ "fraction_gt1": 0.0,
+ "n_inside": 1322,
+ "n_interface": 452,
+ "n_outside": 330,
+ "selected_inside_frac": 0.873015873015873,
+ "selected_interface_frac": 0.12698412698412698,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.4791666666666667,
+ "step": 7,
+ "n_elem": 2104,
+ "target_elements": 8000,
+ "gap": 5896,
+ "cutoff_score": 0.8895148634910583,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.929781436920166,
+ "score_mean": 0.27178293466567993,
+ "score_p50": 0.06810377538204193,
+ "score_p90": 0.8265230655670166,
+ "fraction_gt1": 0.0,
+ "n_inside": 1653,
+ "n_interface": 507,
+ "n_outside": 330,
+ "selected_inside_frac": 0.8378378378378378,
+ "selected_interface_frac": 0.16216216216216217,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.5104166666666667,
+ "step": 8,
+ "n_elem": 2490,
+ "target_elements": 8000,
+ "gap": 5510,
+ "cutoff_score": 0.8882371783256531,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9365755915641785,
+ "score_mean": 0.2692863941192627,
+ "score_p50": 0.09718379378318787,
+ "score_p90": 0.8014166951179504,
+ "fraction_gt1": 0.0,
+ "n_inside": 2031,
+ "n_interface": 580,
+ "n_outside": 330,
+ "selected_inside_frac": 0.7954545454545454,
+ "selected_interface_frac": 0.20454545454545456,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.40625,
+ "selected_y_range": 0.47916666666666674,
+ "step": 9,
+ "n_elem": 2941,
+ "target_elements": 8000,
+ "gap": 5059,
+ "cutoff_score": 0.8777886033058167,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.922439455986023,
+ "score_mean": 0.2761397361755371,
+ "score_p50": 0.12483206391334534,
+ "score_p90": 0.8105919361114502,
+ "fraction_gt1": 0.0,
+ "n_inside": 2408,
+ "n_interface": 739,
+ "n_outside": 330,
+ "selected_inside_frac": 0.8653846153846154,
+ "selected_interface_frac": 0.1346153846153846,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.44791666666666674,
+ "selected_y_range": 0.5104166666666667,
+ "step": 10,
+ "n_elem": 3477,
+ "target_elements": 8000,
+ "gap": 4523,
+ "cutoff_score": 0.8759119510650635,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.920905590057373,
+ "score_mean": 0.295057088136673,
+ "score_p50": 0.15469121932983398,
+ "score_p90": 0.8065792322158813,
+ "fraction_gt1": 0.0,
+ "n_inside": 2935,
+ "n_interface": 848,
+ "n_outside": 330,
+ "selected_inside_frac": 0.7967479674796748,
+ "selected_interface_frac": 0.2032520325203252,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.5729166666666667,
+ "step": 11,
+ "n_elem": 4113,
+ "target_elements": 8000,
+ "gap": 3887,
+ "cutoff_score": 0.8759223818778992,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9236679077148438,
+ "score_mean": 0.2994203567504883,
+ "score_p50": 0.13112568855285645,
+ "score_p90": 0.8146976232528687,
+ "fraction_gt1": 0.0,
+ "n_inside": 3497,
+ "n_interface": 1008,
+ "n_outside": 332,
+ "selected_inside_frac": 0.8137931034482758,
+ "selected_interface_frac": 0.16551724137931034,
+ "selected_outside_frac": 0.020689655172413793,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.65625,
+ "step": 12,
+ "n_elem": 4837,
+ "target_elements": 8000,
+ "gap": 3163,
+ "cutoff_score": 0.8719934821128845,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9258890151977539,
+ "score_mean": 0.2995346188545227,
+ "score_p50": 0.12073270976543427,
+ "score_p90": 0.8385696411132812,
+ "fraction_gt1": 0.0,
+ "n_inside": 4149,
+ "n_interface": 1169,
+ "n_outside": 350,
+ "selected_inside_frac": 0.6705882352941176,
+ "selected_interface_frac": 0.24705882352941178,
+ "selected_outside_frac": 0.08235294117647059,
+ "selected_x_range": 0.65625,
+ "selected_y_range": 0.84375,
+ "step": 13,
+ "n_elem": 5668,
+ "target_elements": 8000,
+ "gap": 2332,
+ "cutoff_score": 0.8755069971084595,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9283923506736755,
+ "score_mean": 0.2739160656929016,
+ "score_p50": 0.07827363163232803,
+ "score_p90": 0.8331884741783142,
+ "fraction_gt1": 0.0,
+ "n_inside": 4809,
+ "n_interface": 1451,
+ "n_outside": 427,
+ "selected_inside_frac": 0.65,
+ "selected_interface_frac": 0.245,
+ "selected_outside_frac": 0.105,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.7708333333333333,
+ "step": 14,
+ "n_elem": 6687,
+ "target_elements": 8000,
+ "gap": 1313,
+ "cutoff_score": 0.8771907687187195,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9386938810348511,
+ "score_mean": 0.2516302466392517,
+ "score_p50": 0.0570235513150692,
+ "score_p90": 0.8086481690406799,
+ "fraction_gt1": 0.0,
+ "n_inside": 5572,
+ "n_interface": 1725,
+ "n_outside": 566,
+ "selected_inside_frac": 0.6222222222222222,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.044444444444444446,
+ "selected_x_range": 0.6302083333333333,
+ "selected_y_range": 0.42708333333333337,
+ "step": 15,
+ "n_elem": 7863,
+ "target_elements": 8000,
+ "gap": 137,
+ "cutoff_score": 0.8999395966529846,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 10,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.17653646337492324,
+ "max_err": 0.23811941478951726,
+ "actual_elements": 8127,
+ "num_steps": 17,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 1.7021138668060303,
+ "score_mean": -1.5435190903190232e-07,
+ "score_p50": -0.410194993019104,
+ "score_p90": 1.608445405960083,
+ "fraction_gt1": 0.23410404624277456,
+ "n_inside": 186,
+ "n_interface": 176,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.15625,
+ "selected_y_range": 0.11458333333333326,
+ "step": 0,
+ "n_elem": 692,
+ "target_elements": 8000,
+ "gap": 7308,
+ "cutoff_score": 1.665029525756836,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 1.842795729637146,
+ "score_mean": -7.648515776281783e-08,
+ "score_p50": -0.22589969635009766,
+ "score_p90": 1.7458347082138062,
+ "fraction_gt1": 0.17167919799498746,
+ "n_inside": 292,
+ "n_interface": 176,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333326,
+ "selected_y_range": 0.20833333333333326,
+ "step": 1,
+ "n_elem": 798,
+ "target_elements": 8000,
+ "gap": 7202,
+ "cutoff_score": 1.81209397315979,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.9956107139587402,
+ "score_mean": -1.2986203046239098e-07,
+ "score_p50": -0.08050832152366638,
+ "score_p90": 1.02254056930542,
+ "fraction_gt1": 0.11170212765957446,
+ "n_inside": 415,
+ "n_interface": 195,
+ "n_outside": 330,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333326,
+ "selected_y_range": 0.30208333333333326,
+ "step": 2,
+ "n_elem": 940,
+ "target_elements": 8000,
+ "gap": 7060,
+ "cutoff_score": 1.9631414413452148,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2406322956085205,
+ "score_mean": 0.0,
+ "score_p50": 0.061260074377059937,
+ "score_p90": 0.9446280002593994,
+ "fraction_gt1": 0.09124087591240876,
+ "n_inside": 559,
+ "n_interface": 207,
+ "n_outside": 330,
+ "selected_inside_frac": 0.625,
+ "selected_interface_frac": 0.375,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34375,
+ "selected_y_range": 0.45833333333333326,
+ "step": 3,
+ "n_elem": 1096,
+ "target_elements": 8000,
+ "gap": 6904,
+ "cutoff_score": 1.2246887683868408,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.4508475065231323,
+ "score_mean": 4.7240831690942287e-08,
+ "score_p50": 0.18394735455513,
+ "score_p90": 0.6693001985549927,
+ "fraction_gt1": 0.06346749226006192,
+ "n_inside": 666,
+ "n_interface": 296,
+ "n_outside": 330,
+ "selected_inside_frac": 0.9473684210526315,
+ "selected_interface_frac": 0.05263157894736842,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.28645833333333337,
+ "step": 4,
+ "n_elem": 1292,
+ "target_elements": 8000,
+ "gap": 6708,
+ "cutoff_score": 1.3141289949417114,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.5830366611480713,
+ "score_mean": -2.05644052897469e-08,
+ "score_p50": 0.2674584686756134,
+ "score_p90": 0.7597330808639526,
+ "fraction_gt1": 0.03099730458221024,
+ "n_inside": 836,
+ "n_interface": 318,
+ "n_outside": 330,
+ "selected_inside_frac": 0.9090909090909091,
+ "selected_interface_frac": 0.09090909090909091,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.390625,
+ "selected_y_range": 0.4791666666666667,
+ "step": 5,
+ "n_elem": 1484,
+ "target_elements": 8000,
+ "gap": 6516,
+ "cutoff_score": 1.0597398281097412,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.6017018556594849,
+ "score_mean": -6.935812990604973e-08,
+ "score_p50": 0.2665657103061676,
+ "score_p90": 0.8595209121704102,
+ "fraction_gt1": 0.004545454545454545,
+ "n_inside": 1003,
+ "n_interface": 427,
+ "n_outside": 330,
+ "selected_inside_frac": 0.8461538461538461,
+ "selected_interface_frac": 0.15384615384615385,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.3802083333333333,
+ "step": 6,
+ "n_elem": 1760,
+ "target_elements": 8000,
+ "gap": 6240,
+ "cutoff_score": 0.9568816423416138,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.0916093587875366,
+ "score_mean": -1.2092155543541594e-07,
+ "score_p50": 0.09684698283672333,
+ "score_p90": 0.9131066799163818,
+ "fraction_gt1": 0.05943536404160475,
+ "n_inside": 1217,
+ "n_interface": 472,
+ "n_outside": 330,
+ "selected_inside_frac": 0.9666666666666667,
+ "selected_interface_frac": 0.03333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.36458333333333337,
+ "selected_y_range": 0.34375,
+ "step": 7,
+ "n_elem": 2019,
+ "target_elements": 8000,
+ "gap": 5981,
+ "cutoff_score": 1.0374577045440674,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.699549674987793,
+ "score_mean": 5.168091021801047e-08,
+ "score_p50": -0.12757247686386108,
+ "score_p90": 0.8265579342842102,
+ "fraction_gt1": 0.07197290431837426,
+ "n_inside": 1547,
+ "n_interface": 485,
+ "n_outside": 330,
+ "selected_inside_frac": 0.8714285714285714,
+ "selected_interface_frac": 0.12857142857142856,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.4791666666666667,
+ "step": 8,
+ "n_elem": 2362,
+ "target_elements": 8000,
+ "gap": 5638,
+ "cutoff_score": 1.167358160018921,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.827289342880249,
+ "score_mean": 0.0,
+ "score_p50": -0.18630237877368927,
+ "score_p90": 0.9039276242256165,
+ "fraction_gt1": 0.042583904727535184,
+ "n_inside": 1875,
+ "n_interface": 564,
+ "n_outside": 332,
+ "selected_inside_frac": 0.8192771084337349,
+ "selected_interface_frac": 0.1566265060240964,
+ "selected_outside_frac": 0.024096385542168676,
+ "selected_x_range": 0.53125,
+ "selected_y_range": 0.625,
+ "step": 9,
+ "n_elem": 2771,
+ "target_elements": 8000,
+ "gap": 5229,
+ "cutoff_score": 1.1047452688217163,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.7408699989318848,
+ "score_mean": -3.759479838549851e-08,
+ "score_p50": -0.2508476972579956,
+ "score_p90": 0.998776912689209,
+ "fraction_gt1": 0.09793655682168155,
+ "n_inside": 2170,
+ "n_interface": 732,
+ "n_outside": 345,
+ "selected_inside_frac": 0.1134020618556701,
+ "selected_interface_frac": 0.4639175257731959,
+ "selected_outside_frac": 0.422680412371134,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.78125,
+ "step": 10,
+ "n_elem": 3247,
+ "target_elements": 8000,
+ "gap": 4753,
+ "cutoff_score": 1.089919090270996,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.5303486585617065,
+ "score_mean": -1.645596015009687e-08,
+ "score_p50": -0.1743716448545456,
+ "score_p90": 1.073185920715332,
+ "fraction_gt1": 0.14100835804799136,
+ "n_inside": 2221,
+ "n_interface": 968,
+ "n_outside": 520,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 11,
+ "n_elem": 3709,
+ "target_elements": 8000,
+ "gap": 4291,
+ "cutoff_score": 1.2362279891967773,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.9046237468719482,
+ "score_mean": 4.391018393334889e-08,
+ "score_p50": -0.07282885909080505,
+ "score_p90": 0.9955637454986572,
+ "fraction_gt1": 0.09664268585131894,
+ "n_inside": 2221,
+ "n_interface": 969,
+ "n_outside": 980,
+ "selected_inside_frac": 0.344,
+ "selected_interface_frac": 0.128,
+ "selected_outside_frac": 0.528,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.96875,
+ "step": 12,
+ "n_elem": 4170,
+ "target_elements": 8000,
+ "gap": 3830,
+ "cutoff_score": 1.0876928567886353,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.30714750289917,
+ "score_mean": 9.667659384149374e-08,
+ "score_p50": 0.07081857323646545,
+ "score_p90": 0.9878171682357788,
+ "fraction_gt1": 0.09714889123548047,
+ "n_inside": 2463,
+ "n_interface": 1062,
+ "n_outside": 1210,
+ "selected_inside_frac": 0.9366197183098591,
+ "selected_interface_frac": 0.06338028169014084,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.47916666666666663,
+ "step": 13,
+ "n_elem": 4735,
+ "target_elements": 8000,
+ "gap": 3265,
+ "cutoff_score": 1.1527230739593506,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.3855763673782349,
+ "score_mean": 1.1370185859505e-07,
+ "score_p50": 0.18463584780693054,
+ "score_p90": 0.9301006197929382,
+ "fraction_gt1": 0.09631147540983606,
+ "n_inside": 3043,
+ "n_interface": 1115,
+ "n_outside": 1210,
+ "selected_inside_frac": 0.9316770186335404,
+ "selected_interface_frac": 0.06832298136645963,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33072916666666674,
+ "selected_y_range": 0.421875,
+ "step": 14,
+ "n_elem": 5368,
+ "target_elements": 8000,
+ "gap": 2632,
+ "cutoff_score": 1.2885468006134033,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.7649409770965576,
+ "score_mean": -1.9845604981583165e-07,
+ "score_p50": 0.09480100870132446,
+ "score_p90": 0.9041427373886108,
+ "fraction_gt1": 0.061941147780848645,
+ "n_inside": 3725,
+ "n_interface": 1216,
+ "n_outside": 1210,
+ "selected_inside_frac": 0.8641304347826086,
+ "selected_interface_frac": 0.11413043478260869,
+ "selected_outside_frac": 0.021739130434782608,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.7291666666666667,
+ "step": 15,
+ "n_elem": 6151,
+ "target_elements": 8000,
+ "gap": 1849,
+ "cutoff_score": 1.2914690971374512,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.7500245571136475,
+ "score_mean": -1.5467166747384908e-07,
+ "score_p50": -0.0349276177585125,
+ "score_p90": 0.9673603773117065,
+ "fraction_gt1": 0.08390820779952132,
+ "n_inside": 4386,
+ "n_interface": 1481,
+ "n_outside": 1236,
+ "selected_inside_frac": 0.3380281690140845,
+ "selected_interface_frac": 0.20657276995305165,
+ "selected_outside_frac": 0.45539906103286387,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 16,
+ "n_elem": 7103,
+ "target_elements": 8000,
+ "gap": 897,
+ "cutoff_score": 1.106756567955017,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 10,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.10500549888054822,
+ "max_err": 0.10865235225152377,
+ "actual_elements": 2109,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.41072121262550354,
+ "score_mean": 0.22286908328533173,
+ "score_p50": 0.21562933921813965,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 19,
+ "n_interface": 324,
+ "n_outside": 169,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.41072121262550354,
+ "num_tied_at_cutoff": 19,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.29042375087738037,
+ "score_mean": 0.20789112150669098,
+ "score_p50": 0.21562933921813965,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 73,
+ "n_interface": 354,
+ "n_outside": 169,
+ "selected_inside_frac": 0.11764705882352941,
+ "selected_interface_frac": 0.8823529411764706,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.31250000000000006,
+ "step": 1,
+ "n_elem": 596,
+ "target_elements": 2000,
+ "gap": 1404,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 474,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.18886502087116241,
+ "score_p50": 0.21562933921813965,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 444,
+ "n_outside": 169,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.4375,
+ "step": 2,
+ "n_elem": 696,
+ "target_elements": 2000,
+ "gap": 1304,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 438,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.17232419550418854,
+ "score_p50": 0.20536060631275177,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 560,
+ "n_outside": 169,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5625,
+ "step": 3,
+ "n_elem": 812,
+ "target_elements": 2000,
+ "gap": 1188,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 394,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.15785343945026398,
+ "score_p50": 0.15247297286987305,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 699,
+ "n_outside": 169,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.6875,
+ "step": 4,
+ "n_elem": 951,
+ "target_elements": 2000,
+ "gap": 1049,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 340,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.14495983719825745,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 870,
+ "n_outside": 169,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.8125,
+ "step": 5,
+ "n_elem": 1122,
+ "target_elements": 2000,
+ "gap": 878,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 274,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.13539569079875946,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 1041,
+ "n_outside": 169,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 6,
+ "n_elem": 1293,
+ "target_elements": 2000,
+ "gap": 707,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 212,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.127513587474823,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.20536060631275177,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 1187,
+ "n_outside": 209,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.9583333333333333,
+ "step": 7,
+ "n_elem": 1479,
+ "target_elements": 2000,
+ "gap": 521,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 144,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.12073235958814621,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.15247297286987305,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 1193,
+ "n_outside": 409,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.33333333333333337,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1685,
+ "target_elements": 2000,
+ "gap": 315,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 74,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.11565104126930237,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.15247297286987305,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 1193,
+ "n_outside": 603,
+ "selected_inside_frac": 0.7,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.3,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.65625,
+ "step": 9,
+ "n_elem": 1879,
+ "target_elements": 2000,
+ "gap": 121,
+ "cutoff_score": 0.20536060631275177,
+ "num_tied_at_cutoff": 67,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 12,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.1049077174085552,
+ "max_err": 0.10774622990579776,
+ "actual_elements": 2104,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9955825209617615,
+ "score_mean": 0.09441429376602173,
+ "score_p50": 8.827402098177117e-08,
+ "score_p90": 0.33931487798690796,
+ "fraction_gt1": 0.0,
+ "n_inside": 19,
+ "n_interface": 324,
+ "n_outside": 169,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9874179363250732,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9886847138404846,
+ "score_mean": 0.0916495993733406,
+ "score_p50": 3.4580866667965893e-06,
+ "score_p90": 0.38996458053588867,
+ "fraction_gt1": 0.0,
+ "n_inside": 68,
+ "n_interface": 349,
+ "n_outside": 169,
+ "selected_inside_frac": 0.058823529411764705,
+ "selected_interface_frac": 0.9411764705882353,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.3333333333333333,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 2000,
+ "gap": 1414,
+ "cutoff_score": 0.9031882882118225,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9908521771430969,
+ "score_mean": 0.12131942063570023,
+ "score_p50": 1.3892124115955085e-05,
+ "score_p90": 0.6798334121704102,
+ "fraction_gt1": 0.0,
+ "n_inside": 74,
+ "n_interface": 431,
+ "n_outside": 169,
+ "selected_inside_frac": 0.85,
+ "selected_interface_frac": 0.15,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.2604166666666667,
+ "step": 2,
+ "n_elem": 674,
+ "target_elements": 2000,
+ "gap": 1326,
+ "cutoff_score": 0.970234751701355,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9919467568397522,
+ "score_mean": 0.1489458531141281,
+ "score_p50": 6.030924487276934e-05,
+ "score_p90": 0.7660239934921265,
+ "fraction_gt1": 0.0,
+ "n_inside": 150,
+ "n_interface": 455,
+ "n_outside": 169,
+ "selected_inside_frac": 0.043478260869565216,
+ "selected_interface_frac": 0.9565217391304348,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.5416666666666667,
+ "step": 3,
+ "n_elem": 774,
+ "target_elements": 2000,
+ "gap": 1226,
+ "cutoff_score": 0.9594491720199585,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9891449809074402,
+ "score_mean": 0.12810610234737396,
+ "score_p50": 0.0002161820011679083,
+ "score_p90": 0.6997902393341064,
+ "fraction_gt1": 0.0,
+ "n_inside": 160,
+ "n_interface": 594,
+ "n_outside": 169,
+ "selected_inside_frac": 0.2222222222222222,
+ "selected_interface_frac": 0.7777777777777778,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.75,
+ "step": 4,
+ "n_elem": 923,
+ "target_elements": 2000,
+ "gap": 1077,
+ "cutoff_score": 0.9570680856704712,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9914374947547913,
+ "score_mean": 0.11842774599790573,
+ "score_p50": 0.0005320497439242899,
+ "score_p90": 0.612553060054779,
+ "fraction_gt1": 0.0,
+ "n_inside": 196,
+ "n_interface": 734,
+ "n_outside": 171,
+ "selected_inside_frac": 0.12121212121212122,
+ "selected_interface_frac": 0.7878787878787878,
+ "selected_outside_frac": 0.09090909090909091,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.875,
+ "step": 5,
+ "n_elem": 1101,
+ "target_elements": 2000,
+ "gap": 899,
+ "cutoff_score": 0.9425533413887024,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9831812977790833,
+ "score_mean": 0.11278923600912094,
+ "score_p50": 0.0010252832435071468,
+ "score_p90": 0.5100634694099426,
+ "fraction_gt1": 0.0,
+ "n_inside": 221,
+ "n_interface": 885,
+ "n_outside": 197,
+ "selected_inside_frac": 0.1794871794871795,
+ "selected_interface_frac": 0.7435897435897436,
+ "selected_outside_frac": 0.07692307692307693,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.5625,
+ "step": 6,
+ "n_elem": 1303,
+ "target_elements": 2000,
+ "gap": 697,
+ "cutoff_score": 0.884083092212677,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9857203364372253,
+ "score_mean": 0.14237743616104126,
+ "score_p50": 0.0013702393043786287,
+ "score_p90": 0.6928130984306335,
+ "fraction_gt1": 0.0,
+ "n_inside": 247,
+ "n_interface": 1046,
+ "n_outside": 222,
+ "selected_inside_frac": 0.28888888888888886,
+ "selected_interface_frac": 0.6444444444444445,
+ "selected_outside_frac": 0.06666666666666667,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1515,
+ "target_elements": 2000,
+ "gap": 485,
+ "cutoff_score": 0.9032872915267944,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9850894212722778,
+ "score_mean": 0.16435499489307404,
+ "score_p50": 0.0007882347563281655,
+ "score_p90": 0.7682014107704163,
+ "fraction_gt1": 0.0,
+ "n_inside": 328,
+ "n_interface": 1210,
+ "n_outside": 248,
+ "selected_inside_frac": 0.3018867924528302,
+ "selected_interface_frac": 0.6415094339622641,
+ "selected_outside_frac": 0.05660377358490566,
+ "selected_x_range": 0.8020833333333333,
+ "selected_y_range": 0.9166666666666667,
+ "step": 8,
+ "n_elem": 1786,
+ "target_elements": 2000,
+ "gap": 214,
+ "cutoff_score": 0.9391939640045166,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 12,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10573227253056569,
+ "max_err": 0.1097650552318995,
+ "actual_elements": 2005,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 4.188912391662598,
+ "score_mean": -5.960464477539063e-08,
+ "score_p50": -0.27018609642982483,
+ "score_p90": 0.3480664789676666,
+ "fraction_gt1": 0.0859375,
+ "n_inside": 19,
+ "n_interface": 324,
+ "n_outside": 169,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 4.174036026000977,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 6.144552230834961,
+ "score_mean": 1.1229271024149057e-07,
+ "score_p50": -0.06686985492706299,
+ "score_p90": 0.5601119995117188,
+ "fraction_gt1": 0.08020477815699659,
+ "n_inside": 68,
+ "n_interface": 349,
+ "n_outside": 169,
+ "selected_inside_frac": 0.23529411764705882,
+ "selected_interface_frac": 0.7647058823529411,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.31250000000000006,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 2000,
+ "gap": 1414,
+ "cutoff_score": 1.9197684526443481,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.7603771686553955,
+ "score_mean": -1.4715449481172982e-07,
+ "score_p50": 0.06360875070095062,
+ "score_p90": 1.0668948888778687,
+ "fraction_gt1": 0.10385756676557864,
+ "n_inside": 82,
+ "n_interface": 423,
+ "n_outside": 169,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.45833333333333326,
+ "step": 2,
+ "n_elem": 674,
+ "target_elements": 2000,
+ "gap": 1326,
+ "cutoff_score": 1.6424791812896729,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.8992414474487305,
+ "score_mean": 0.0,
+ "score_p50": 0.18913249671459198,
+ "score_p90": 1.2075227499008179,
+ "fraction_gt1": 0.11392405063291139,
+ "n_inside": 128,
+ "n_interface": 493,
+ "n_outside": 169,
+ "selected_inside_frac": 0.30434782608695654,
+ "selected_interface_frac": 0.6956521739130435,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5625,
+ "step": 3,
+ "n_elem": 790,
+ "target_elements": 2000,
+ "gap": 1210,
+ "cutoff_score": 1.7768186330795288,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.115414619445801,
+ "score_mean": -3.243100721306291e-08,
+ "score_p50": -0.2870488166809082,
+ "score_p90": 1.0291199684143066,
+ "fraction_gt1": 0.10626992561105207,
+ "n_inside": 167,
+ "n_interface": 605,
+ "n_outside": 169,
+ "selected_inside_frac": 0.25,
+ "selected_interface_frac": 0.7142857142857143,
+ "selected_outside_frac": 0.03571428571428571,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.7916666666666667,
+ "step": 4,
+ "n_elem": 941,
+ "target_elements": 2000,
+ "gap": 1059,
+ "cutoff_score": 1.9231879711151123,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3699684143066406,
+ "score_mean": 0.0,
+ "score_p50": -0.14307592809200287,
+ "score_p90": 1.0912668704986572,
+ "fraction_gt1": 0.10685663401602849,
+ "n_inside": 208,
+ "n_interface": 739,
+ "n_outside": 176,
+ "selected_inside_frac": 0.12121212121212122,
+ "selected_interface_frac": 0.6666666666666666,
+ "selected_outside_frac": 0.21212121212121213,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.9375,
+ "step": 5,
+ "n_elem": 1123,
+ "target_elements": 2000,
+ "gap": 877,
+ "cutoff_score": 1.8589766025543213,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2914140224456787,
+ "score_mean": 3.483741650711636e-08,
+ "score_p50": -0.23827990889549255,
+ "score_p90": 1.0078151226043701,
+ "fraction_gt1": 0.1035007610350076,
+ "n_inside": 221,
+ "n_interface": 874,
+ "n_outside": 219,
+ "selected_inside_frac": 0.1282051282051282,
+ "selected_interface_frac": 0.6666666666666666,
+ "selected_outside_frac": 0.20512820512820512,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.59375,
+ "step": 6,
+ "n_elem": 1314,
+ "target_elements": 2000,
+ "gap": 686,
+ "cutoff_score": 1.6651946306228638,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.56657075881958,
+ "score_mean": 0.0,
+ "score_p50": -0.4313696324825287,
+ "score_p90": 1.1012698411941528,
+ "fraction_gt1": 0.13120104438642297,
+ "n_inside": 254,
+ "n_interface": 1019,
+ "n_outside": 259,
+ "selected_inside_frac": 0.06666666666666667,
+ "selected_interface_frac": 0.8,
+ "selected_outside_frac": 0.13333333333333333,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.7604166666666667,
+ "step": 7,
+ "n_elem": 1532,
+ "target_elements": 2000,
+ "gap": 468,
+ "cutoff_score": 1.6144157648086548,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.559791326522827,
+ "score_mean": -5.2018599205894134e-08,
+ "score_p50": -0.3671249747276306,
+ "score_p90": 1.244198203086853,
+ "fraction_gt1": 0.15170454545454545,
+ "n_inside": 275,
+ "n_interface": 1184,
+ "n_outside": 301,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.40384615384615385,
+ "selected_outside_frac": 0.5961538461538461,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.84375,
+ "step": 8,
+ "n_elem": 1760,
+ "target_elements": 2000,
+ "gap": 240,
+ "cutoff_score": 1.7802891731262207,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 12,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10471443811810563,
+ "max_err": 0.1109722596992743,
+ "actual_elements": 4077,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.41072121262550354,
+ "score_mean": 0.22286908328533173,
+ "score_p50": 0.21562933921813965,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 19,
+ "n_interface": 324,
+ "n_outside": 169,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.41072121262550354,
+ "num_tied_at_cutoff": 19,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.29042375087738037,
+ "score_mean": 0.20789112150669098,
+ "score_p50": 0.21562933921813965,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 73,
+ "n_interface": 354,
+ "n_outside": 169,
+ "selected_inside_frac": 0.11764705882352941,
+ "selected_interface_frac": 0.8823529411764706,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.31250000000000006,
+ "step": 1,
+ "n_elem": 596,
+ "target_elements": 4000,
+ "gap": 3404,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 474,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.18886502087116241,
+ "score_p50": 0.21562933921813965,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 444,
+ "n_outside": 169,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.4375,
+ "step": 2,
+ "n_elem": 696,
+ "target_elements": 4000,
+ "gap": 3304,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 438,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.17232419550418854,
+ "score_p50": 0.20536060631275177,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 560,
+ "n_outside": 169,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5625,
+ "step": 3,
+ "n_elem": 812,
+ "target_elements": 4000,
+ "gap": 3188,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 394,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.15785343945026398,
+ "score_p50": 0.15247297286987305,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 699,
+ "n_outside": 169,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.6875,
+ "step": 4,
+ "n_elem": 951,
+ "target_elements": 4000,
+ "gap": 3049,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 340,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.14495983719825745,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 870,
+ "n_outside": 169,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.8125,
+ "step": 5,
+ "n_elem": 1122,
+ "target_elements": 4000,
+ "gap": 2878,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 274,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.13539569079875946,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 1041,
+ "n_outside": 169,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 6,
+ "n_elem": 1293,
+ "target_elements": 4000,
+ "gap": 2707,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 212,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.127513587474823,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.20536060631275177,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 1187,
+ "n_outside": 209,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.9583333333333333,
+ "step": 7,
+ "n_elem": 1479,
+ "target_elements": 4000,
+ "gap": 2521,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 144,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.12073235958814621,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.15247297286987305,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 1193,
+ "n_outside": 409,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.33333333333333337,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1685,
+ "target_elements": 4000,
+ "gap": 2315,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 74,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.11565104126930237,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.15247297286987305,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 1193,
+ "n_outside": 603,
+ "selected_inside_frac": 0.7857142857142857,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.21428571428571427,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.65625,
+ "step": 9,
+ "n_elem": 1879,
+ "target_elements": 4000,
+ "gap": 2121,
+ "cutoff_score": 0.20536060631275177,
+ "num_tied_at_cutoff": 67,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20536060631275177,
+ "score_mean": 0.10895613580942154,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.10781466960906982,
+ "fraction_gt1": 0.0,
+ "n_inside": 230,
+ "n_interface": 1268,
+ "n_outside": 645,
+ "selected_inside_frac": 0.09375,
+ "selected_interface_frac": 0.90625,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333334,
+ "selected_y_range": 0.6875,
+ "step": 10,
+ "n_elem": 2143,
+ "target_elements": 4000,
+ "gap": 1857,
+ "cutoff_score": 0.15247297286987305,
+ "num_tied_at_cutoff": 127,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15247297286987305,
+ "score_mean": 0.10190916061401367,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.10781466960906982,
+ "fraction_gt1": 0.0,
+ "n_inside": 258,
+ "n_interface": 1534,
+ "n_outside": 645,
+ "selected_inside_frac": 0.1095890410958904,
+ "selected_interface_frac": 0.3972602739726027,
+ "selected_outside_frac": 0.4931506849315068,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2437,
+ "target_elements": 4000,
+ "gap": 1563,
+ "cutoff_score": 0.14521187543869019,
+ "num_tied_at_cutoff": 31,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14521187543869019,
+ "score_mean": 0.09511899948120117,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.10781466960906982,
+ "fraction_gt1": 0.0,
+ "n_inside": 298,
+ "n_interface": 1697,
+ "n_outside": 793,
+ "selected_inside_frac": 0.1927710843373494,
+ "selected_interface_frac": 0.8072289156626506,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666674,
+ "selected_y_range": 0.3229166666666667,
+ "step": 12,
+ "n_elem": 2788,
+ "target_elements": 4000,
+ "gap": 1212,
+ "cutoff_score": 0.10781466960906982,
+ "num_tied_at_cutoff": 1500,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10781466960906982,
+ "score_mean": 0.08830714970827103,
+ "score_p50": 0.10268030315637589,
+ "score_p90": 0.10781466960906982,
+ "fraction_gt1": 0.0,
+ "n_inside": 360,
+ "n_interface": 2013,
+ "n_outside": 793,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4479166666666667,
+ "selected_y_range": 0.44791666666666674,
+ "step": 13,
+ "n_elem": 3166,
+ "target_elements": 4000,
+ "gap": 834,
+ "cutoff_score": 0.10781466960906982,
+ "num_tied_at_cutoff": 1386,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10781466960906982,
+ "score_mean": 0.08195101469755173,
+ "score_p50": 0.07623648643493652,
+ "score_p90": 0.10781466960906982,
+ "fraction_gt1": 0.0,
+ "n_inside": 360,
+ "n_interface": 2453,
+ "n_outside": 793,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.59375,
+ "step": 14,
+ "n_elem": 3606,
+ "target_elements": 4000,
+ "gap": 394,
+ "cutoff_score": 0.10781466960906982,
+ "num_tied_at_cutoff": 1230,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 12,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.10484988702966977,
+ "max_err": 0.11037051722236821,
+ "actual_elements": 4114,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9955825209617615,
+ "score_mean": 0.09441429376602173,
+ "score_p50": 8.827402098177117e-08,
+ "score_p90": 0.33931487798690796,
+ "fraction_gt1": 0.0,
+ "n_inside": 19,
+ "n_interface": 324,
+ "n_outside": 169,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9874179363250732,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9886847138404846,
+ "score_mean": 0.0916495993733406,
+ "score_p50": 3.4580866667965893e-06,
+ "score_p90": 0.38996458053588867,
+ "fraction_gt1": 0.0,
+ "n_inside": 68,
+ "n_interface": 349,
+ "n_outside": 169,
+ "selected_inside_frac": 0.058823529411764705,
+ "selected_interface_frac": 0.9411764705882353,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.3333333333333333,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 4000,
+ "gap": 3414,
+ "cutoff_score": 0.9031882882118225,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9908521771430969,
+ "score_mean": 0.12131942063570023,
+ "score_p50": 1.3892124115955085e-05,
+ "score_p90": 0.6798334121704102,
+ "fraction_gt1": 0.0,
+ "n_inside": 74,
+ "n_interface": 431,
+ "n_outside": 169,
+ "selected_inside_frac": 0.85,
+ "selected_interface_frac": 0.15,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.2604166666666667,
+ "step": 2,
+ "n_elem": 674,
+ "target_elements": 4000,
+ "gap": 3326,
+ "cutoff_score": 0.970234751701355,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9919467568397522,
+ "score_mean": 0.1489458531141281,
+ "score_p50": 6.030924487276934e-05,
+ "score_p90": 0.7660239934921265,
+ "fraction_gt1": 0.0,
+ "n_inside": 150,
+ "n_interface": 455,
+ "n_outside": 169,
+ "selected_inside_frac": 0.043478260869565216,
+ "selected_interface_frac": 0.9565217391304348,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.5416666666666667,
+ "step": 3,
+ "n_elem": 774,
+ "target_elements": 4000,
+ "gap": 3226,
+ "cutoff_score": 0.9594491720199585,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9891449809074402,
+ "score_mean": 0.12810610234737396,
+ "score_p50": 0.0002161820011679083,
+ "score_p90": 0.6997902393341064,
+ "fraction_gt1": 0.0,
+ "n_inside": 160,
+ "n_interface": 594,
+ "n_outside": 169,
+ "selected_inside_frac": 0.2222222222222222,
+ "selected_interface_frac": 0.7777777777777778,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.75,
+ "step": 4,
+ "n_elem": 923,
+ "target_elements": 4000,
+ "gap": 3077,
+ "cutoff_score": 0.9570680856704712,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9914374947547913,
+ "score_mean": 0.11842774599790573,
+ "score_p50": 0.0005320497439242899,
+ "score_p90": 0.612553060054779,
+ "fraction_gt1": 0.0,
+ "n_inside": 196,
+ "n_interface": 734,
+ "n_outside": 171,
+ "selected_inside_frac": 0.12121212121212122,
+ "selected_interface_frac": 0.7878787878787878,
+ "selected_outside_frac": 0.09090909090909091,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.875,
+ "step": 5,
+ "n_elem": 1101,
+ "target_elements": 4000,
+ "gap": 2899,
+ "cutoff_score": 0.9425533413887024,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9831812977790833,
+ "score_mean": 0.11278923600912094,
+ "score_p50": 0.0010252832435071468,
+ "score_p90": 0.5100634694099426,
+ "fraction_gt1": 0.0,
+ "n_inside": 221,
+ "n_interface": 885,
+ "n_outside": 197,
+ "selected_inside_frac": 0.1794871794871795,
+ "selected_interface_frac": 0.7435897435897436,
+ "selected_outside_frac": 0.07692307692307693,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.5625,
+ "step": 6,
+ "n_elem": 1303,
+ "target_elements": 4000,
+ "gap": 2697,
+ "cutoff_score": 0.884083092212677,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9857203364372253,
+ "score_mean": 0.14237743616104126,
+ "score_p50": 0.0013702393043786287,
+ "score_p90": 0.6928130984306335,
+ "fraction_gt1": 0.0,
+ "n_inside": 247,
+ "n_interface": 1046,
+ "n_outside": 222,
+ "selected_inside_frac": 0.28888888888888886,
+ "selected_interface_frac": 0.6444444444444445,
+ "selected_outside_frac": 0.06666666666666667,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1515,
+ "target_elements": 4000,
+ "gap": 2485,
+ "cutoff_score": 0.9032872915267944,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9850894212722778,
+ "score_mean": 0.16435499489307404,
+ "score_p50": 0.0007882347563281655,
+ "score_p90": 0.7682014107704163,
+ "fraction_gt1": 0.0,
+ "n_inside": 328,
+ "n_interface": 1210,
+ "n_outside": 248,
+ "selected_inside_frac": 0.3018867924528302,
+ "selected_interface_frac": 0.6415094339622641,
+ "selected_outside_frac": 0.05660377358490566,
+ "selected_x_range": 0.8020833333333333,
+ "selected_y_range": 0.9166666666666667,
+ "step": 8,
+ "n_elem": 1786,
+ "target_elements": 4000,
+ "gap": 2214,
+ "cutoff_score": 0.9391939640045166,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9905917048454285,
+ "score_mean": 0.1644863486289978,
+ "score_p50": 0.0008575943647883832,
+ "score_p90": 0.8191220164299011,
+ "fraction_gt1": 0.0,
+ "n_inside": 424,
+ "n_interface": 1410,
+ "n_outside": 270,
+ "selected_inside_frac": 0.031746031746031744,
+ "selected_interface_frac": 0.8412698412698413,
+ "selected_outside_frac": 0.12698412698412698,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.8229166666666667,
+ "step": 9,
+ "n_elem": 2104,
+ "target_elements": 4000,
+ "gap": 1896,
+ "cutoff_score": 0.944058895111084,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.988461971282959,
+ "score_mean": 0.14721353352069855,
+ "score_p50": 0.0005640789750032127,
+ "score_p90": 0.7692374587059021,
+ "fraction_gt1": 0.0,
+ "n_inside": 447,
+ "n_interface": 1692,
+ "n_outside": 324,
+ "selected_inside_frac": 0.0273972602739726,
+ "selected_interface_frac": 0.3835616438356164,
+ "selected_outside_frac": 0.589041095890411,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.9270833333333333,
+ "step": 10,
+ "n_elem": 2463,
+ "target_elements": 4000,
+ "gap": 1537,
+ "cutoff_score": 0.9534937143325806,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9859138131141663,
+ "score_mean": 0.13382942974567413,
+ "score_p50": 0.0005081812851130962,
+ "score_p90": 0.6265798807144165,
+ "fraction_gt1": 0.0,
+ "n_inside": 463,
+ "n_interface": 1887,
+ "n_outside": 496,
+ "selected_inside_frac": 0.25882352941176473,
+ "selected_interface_frac": 0.5529411764705883,
+ "selected_outside_frac": 0.18823529411764706,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8541666666666667,
+ "step": 11,
+ "n_elem": 2846,
+ "target_elements": 4000,
+ "gap": 1154,
+ "cutoff_score": 0.918552577495575,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9799436926841736,
+ "score_mean": 0.12444503605365753,
+ "score_p50": 0.0006425027968361974,
+ "score_p90": 0.6110063791275024,
+ "fraction_gt1": 0.0,
+ "n_inside": 589,
+ "n_interface": 2174,
+ "n_outside": 553,
+ "selected_inside_frac": 0.12121212121212122,
+ "selected_interface_frac": 0.7070707070707071,
+ "selected_outside_frac": 0.1717171717171717,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 3316,
+ "target_elements": 4000,
+ "gap": 684,
+ "cutoff_score": 0.890565812587738,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.982638955116272,
+ "score_mean": 0.1264800727367401,
+ "score_p50": 0.0010213528294116259,
+ "score_p90": 0.614962100982666,
+ "fraction_gt1": 0.0,
+ "n_inside": 676,
+ "n_interface": 2581,
+ "n_outside": 643,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.9090909090909091,
+ "selected_outside_frac": 0.09090909090909091,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8229166666666667,
+ "step": 13,
+ "n_elem": 3900,
+ "target_elements": 4000,
+ "gap": 100,
+ "cutoff_score": 0.9414085149765015,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 12,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.10457222659661024,
+ "max_err": 0.11087767744552696,
+ "actual_elements": 4030,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 4.188912391662598,
+ "score_mean": -5.960464477539063e-08,
+ "score_p50": -0.27018609642982483,
+ "score_p90": 0.3480664789676666,
+ "fraction_gt1": 0.0859375,
+ "n_inside": 19,
+ "n_interface": 324,
+ "n_outside": 169,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 4.174036026000977,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 6.144552230834961,
+ "score_mean": 1.1229271024149057e-07,
+ "score_p50": -0.06686985492706299,
+ "score_p90": 0.5601119995117188,
+ "fraction_gt1": 0.08020477815699659,
+ "n_inside": 68,
+ "n_interface": 349,
+ "n_outside": 169,
+ "selected_inside_frac": 0.23529411764705882,
+ "selected_interface_frac": 0.7647058823529411,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.31250000000000006,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 4000,
+ "gap": 3414,
+ "cutoff_score": 1.9197684526443481,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.7603771686553955,
+ "score_mean": -1.4715449481172982e-07,
+ "score_p50": 0.06360875070095062,
+ "score_p90": 1.0668948888778687,
+ "fraction_gt1": 0.10385756676557864,
+ "n_inside": 82,
+ "n_interface": 423,
+ "n_outside": 169,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.45833333333333326,
+ "step": 2,
+ "n_elem": 674,
+ "target_elements": 4000,
+ "gap": 3326,
+ "cutoff_score": 1.6424791812896729,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.8992414474487305,
+ "score_mean": 0.0,
+ "score_p50": 0.18913249671459198,
+ "score_p90": 1.2075227499008179,
+ "fraction_gt1": 0.11392405063291139,
+ "n_inside": 128,
+ "n_interface": 493,
+ "n_outside": 169,
+ "selected_inside_frac": 0.30434782608695654,
+ "selected_interface_frac": 0.6956521739130435,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5625,
+ "step": 3,
+ "n_elem": 790,
+ "target_elements": 4000,
+ "gap": 3210,
+ "cutoff_score": 1.7768186330795288,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.115414619445801,
+ "score_mean": -3.243100721306291e-08,
+ "score_p50": -0.2870488166809082,
+ "score_p90": 1.0291199684143066,
+ "fraction_gt1": 0.10626992561105207,
+ "n_inside": 167,
+ "n_interface": 605,
+ "n_outside": 169,
+ "selected_inside_frac": 0.25,
+ "selected_interface_frac": 0.7142857142857143,
+ "selected_outside_frac": 0.03571428571428571,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.7916666666666667,
+ "step": 4,
+ "n_elem": 941,
+ "target_elements": 4000,
+ "gap": 3059,
+ "cutoff_score": 1.9231879711151123,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3699684143066406,
+ "score_mean": 0.0,
+ "score_p50": -0.14307592809200287,
+ "score_p90": 1.0912668704986572,
+ "fraction_gt1": 0.10685663401602849,
+ "n_inside": 208,
+ "n_interface": 739,
+ "n_outside": 176,
+ "selected_inside_frac": 0.12121212121212122,
+ "selected_interface_frac": 0.6666666666666666,
+ "selected_outside_frac": 0.21212121212121213,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.9375,
+ "step": 5,
+ "n_elem": 1123,
+ "target_elements": 4000,
+ "gap": 2877,
+ "cutoff_score": 1.8589766025543213,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2914140224456787,
+ "score_mean": 3.483741650711636e-08,
+ "score_p50": -0.23827990889549255,
+ "score_p90": 1.0078151226043701,
+ "fraction_gt1": 0.1035007610350076,
+ "n_inside": 221,
+ "n_interface": 874,
+ "n_outside": 219,
+ "selected_inside_frac": 0.1282051282051282,
+ "selected_interface_frac": 0.6666666666666666,
+ "selected_outside_frac": 0.20512820512820512,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.59375,
+ "step": 6,
+ "n_elem": 1314,
+ "target_elements": 4000,
+ "gap": 2686,
+ "cutoff_score": 1.6651946306228638,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.56657075881958,
+ "score_mean": 0.0,
+ "score_p50": -0.4313696324825287,
+ "score_p90": 1.1012698411941528,
+ "fraction_gt1": 0.13120104438642297,
+ "n_inside": 254,
+ "n_interface": 1019,
+ "n_outside": 259,
+ "selected_inside_frac": 0.06666666666666667,
+ "selected_interface_frac": 0.8,
+ "selected_outside_frac": 0.13333333333333333,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.7604166666666667,
+ "step": 7,
+ "n_elem": 1532,
+ "target_elements": 4000,
+ "gap": 2468,
+ "cutoff_score": 1.6144157648086548,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.559791326522827,
+ "score_mean": -5.2018599205894134e-08,
+ "score_p50": -0.3671249747276306,
+ "score_p90": 1.244198203086853,
+ "fraction_gt1": 0.15170454545454545,
+ "n_inside": 275,
+ "n_interface": 1184,
+ "n_outside": 301,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.40384615384615385,
+ "selected_outside_frac": 0.5961538461538461,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.84375,
+ "step": 8,
+ "n_elem": 1760,
+ "target_elements": 4000,
+ "gap": 2240,
+ "cutoff_score": 1.7802891731262207,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.8790738582611084,
+ "score_mean": -4.5662211789476714e-08,
+ "score_p50": -0.3091028332710266,
+ "score_p90": 1.1218663454055786,
+ "fraction_gt1": 0.12718204488778054,
+ "n_inside": 275,
+ "n_interface": 1279,
+ "n_outside": 451,
+ "selected_inside_frac": 0.11666666666666667,
+ "selected_interface_frac": 0.23333333333333334,
+ "selected_outside_frac": 0.65,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.7395833333333333,
+ "step": 9,
+ "n_elem": 2005,
+ "target_elements": 4000,
+ "gap": 1995,
+ "cutoff_score": 1.7982137203216553,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2854747772216797,
+ "score_mean": -1.2067583554653538e-07,
+ "score_p50": -0.18422390520572662,
+ "score_p90": 1.1111042499542236,
+ "fraction_gt1": 0.11291739894551846,
+ "n_inside": 308,
+ "n_interface": 1388,
+ "n_outside": 580,
+ "selected_inside_frac": 0.25,
+ "selected_interface_frac": 0.7205882352941176,
+ "selected_outside_frac": 0.029411764705882353,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.8958333333333334,
+ "step": 10,
+ "n_elem": 2276,
+ "target_elements": 4000,
+ "gap": 1724,
+ "cutoff_score": 1.341468334197998,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1057446002960205,
+ "score_mean": 3.4652813951652206e-08,
+ "score_p50": -0.005028247833251953,
+ "score_p90": 1.1102017164230347,
+ "fraction_gt1": 0.11771385314155942,
+ "n_inside": 387,
+ "n_interface": 1665,
+ "n_outside": 590,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.9113924050632911,
+ "selected_outside_frac": 0.08860759493670886,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2642,
+ "target_elements": 4000,
+ "gap": 1358,
+ "cutoff_score": 1.4870388507843018,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3664963245391846,
+ "score_mean": 1.00090453258872e-07,
+ "score_p50": 0.13865788280963898,
+ "score_p90": 1.0840177536010742,
+ "fraction_gt1": 0.1321744834371925,
+ "n_inside": 387,
+ "n_interface": 2022,
+ "n_outside": 640,
+ "selected_inside_frac": 0.4175824175824176,
+ "selected_interface_frac": 0.5054945054945055,
+ "selected_outside_frac": 0.07692307692307693,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8958333333333334,
+ "step": 12,
+ "n_elem": 3049,
+ "target_elements": 4000,
+ "gap": 951,
+ "cutoff_score": 1.6613917350769043,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.6045074462890625,
+ "score_mean": -6.947655606381886e-08,
+ "score_p50": -0.3308178186416626,
+ "score_p90": 1.1880990266799927,
+ "fraction_gt1": 0.11553784860557768,
+ "n_inside": 552,
+ "n_interface": 2282,
+ "n_outside": 680,
+ "selected_inside_frac": 0.42857142857142855,
+ "selected_interface_frac": 0.47619047619047616,
+ "selected_outside_frac": 0.09523809523809523,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3514,
+ "target_elements": 4000,
+ "gap": 486,
+ "cutoff_score": 1.739284873008728,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 12,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.1046046161549075,
+ "max_err": 0.10932292402151816,
+ "actual_elements": 8014,
+ "num_steps": 21,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.41072121262550354,
+ "score_mean": 0.22286908328533173,
+ "score_p50": 0.21562933921813965,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 19,
+ "n_interface": 324,
+ "n_outside": 169,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.41072121262550354,
+ "num_tied_at_cutoff": 19,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.29042375087738037,
+ "score_mean": 0.20789112150669098,
+ "score_p50": 0.21562933921813965,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 73,
+ "n_interface": 354,
+ "n_outside": 169,
+ "selected_inside_frac": 0.11764705882352941,
+ "selected_interface_frac": 0.8823529411764706,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.31250000000000006,
+ "step": 1,
+ "n_elem": 596,
+ "target_elements": 8000,
+ "gap": 7404,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 474,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.18886502087116241,
+ "score_p50": 0.21562933921813965,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 444,
+ "n_outside": 169,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.4375,
+ "step": 2,
+ "n_elem": 696,
+ "target_elements": 8000,
+ "gap": 7304,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 438,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.17232419550418854,
+ "score_p50": 0.20536060631275177,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 560,
+ "n_outside": 169,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5625,
+ "step": 3,
+ "n_elem": 812,
+ "target_elements": 8000,
+ "gap": 7188,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 394,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.15785343945026398,
+ "score_p50": 0.15247297286987305,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 699,
+ "n_outside": 169,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.6875,
+ "step": 4,
+ "n_elem": 951,
+ "target_elements": 8000,
+ "gap": 7049,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 340,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.14495983719825745,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 870,
+ "n_outside": 169,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.8125,
+ "step": 5,
+ "n_elem": 1122,
+ "target_elements": 8000,
+ "gap": 6878,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 274,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.13539569079875946,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.21562933921813965,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 1041,
+ "n_outside": 169,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 6,
+ "n_elem": 1293,
+ "target_elements": 8000,
+ "gap": 6707,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 212,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.127513587474823,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.20536060631275177,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 1187,
+ "n_outside": 209,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.9583333333333333,
+ "step": 7,
+ "n_elem": 1479,
+ "target_elements": 8000,
+ "gap": 6521,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 144,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.12073235958814621,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.15247297286987305,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 1193,
+ "n_outside": 409,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.33333333333333337,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1685,
+ "target_elements": 8000,
+ "gap": 6315,
+ "cutoff_score": 0.21562933921813965,
+ "num_tied_at_cutoff": 74,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21562933921813965,
+ "score_mean": 0.11565104126930237,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.15247297286987305,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 1193,
+ "n_outside": 603,
+ "selected_inside_frac": 0.7857142857142857,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.21428571428571427,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.65625,
+ "step": 9,
+ "n_elem": 1879,
+ "target_elements": 8000,
+ "gap": 6121,
+ "cutoff_score": 0.20536060631275177,
+ "num_tied_at_cutoff": 67,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20536060631275177,
+ "score_mean": 0.10895613580942154,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.10781466960906982,
+ "fraction_gt1": 0.0,
+ "n_inside": 230,
+ "n_interface": 1268,
+ "n_outside": 645,
+ "selected_inside_frac": 0.09375,
+ "selected_interface_frac": 0.90625,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333334,
+ "selected_y_range": 0.6875,
+ "step": 10,
+ "n_elem": 2143,
+ "target_elements": 8000,
+ "gap": 5857,
+ "cutoff_score": 0.15247297286987305,
+ "num_tied_at_cutoff": 127,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15247297286987305,
+ "score_mean": 0.10190916061401367,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.10781466960906982,
+ "fraction_gt1": 0.0,
+ "n_inside": 258,
+ "n_interface": 1534,
+ "n_outside": 645,
+ "selected_inside_frac": 0.1095890410958904,
+ "selected_interface_frac": 0.3972602739726027,
+ "selected_outside_frac": 0.4931506849315068,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2437,
+ "target_elements": 8000,
+ "gap": 5563,
+ "cutoff_score": 0.14521187543869019,
+ "num_tied_at_cutoff": 31,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14521187543869019,
+ "score_mean": 0.09511899948120117,
+ "score_p50": 0.10781466960906982,
+ "score_p90": 0.10781466960906982,
+ "fraction_gt1": 0.0,
+ "n_inside": 298,
+ "n_interface": 1697,
+ "n_outside": 793,
+ "selected_inside_frac": 0.1927710843373494,
+ "selected_interface_frac": 0.8072289156626506,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666674,
+ "selected_y_range": 0.3229166666666667,
+ "step": 12,
+ "n_elem": 2788,
+ "target_elements": 8000,
+ "gap": 5212,
+ "cutoff_score": 0.10781466960906982,
+ "num_tied_at_cutoff": 1500,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10781466960906982,
+ "score_mean": 0.08830714970827103,
+ "score_p50": 0.10268030315637589,
+ "score_p90": 0.10781466960906982,
+ "fraction_gt1": 0.0,
+ "n_inside": 360,
+ "n_interface": 2013,
+ "n_outside": 793,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4479166666666667,
+ "selected_y_range": 0.44791666666666674,
+ "step": 13,
+ "n_elem": 3166,
+ "target_elements": 8000,
+ "gap": 4834,
+ "cutoff_score": 0.10781466960906982,
+ "num_tied_at_cutoff": 1386,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10781466960906982,
+ "score_mean": 0.08195101469755173,
+ "score_p50": 0.07623648643493652,
+ "score_p90": 0.10781466960906982,
+ "fraction_gt1": 0.0,
+ "n_inside": 360,
+ "n_interface": 2453,
+ "n_outside": 793,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.59375,
+ "step": 14,
+ "n_elem": 3606,
+ "target_elements": 8000,
+ "gap": 4394,
+ "cutoff_score": 0.10781466960906982,
+ "num_tied_at_cutoff": 1230,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10781466960906982,
+ "score_mean": 0.07663854211568832,
+ "score_p50": 0.07623648643493652,
+ "score_p90": 0.10781466960906982,
+ "fraction_gt1": 0.0,
+ "n_inside": 360,
+ "n_interface": 2924,
+ "n_outside": 793,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.65625,
+ "selected_y_range": 0.71875,
+ "step": 15,
+ "n_elem": 4077,
+ "target_elements": 8000,
+ "gap": 3923,
+ "cutoff_score": 0.10781466960906982,
+ "num_tied_at_cutoff": 1072,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10781466960906982,
+ "score_mean": 0.07201272994279861,
+ "score_p50": 0.05390733480453491,
+ "score_p90": 0.10781466960906982,
+ "fraction_gt1": 0.0,
+ "n_inside": 360,
+ "n_interface": 3448,
+ "n_outside": 793,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.8229166666666667,
+ "step": 16,
+ "n_elem": 4601,
+ "target_elements": 8000,
+ "gap": 3399,
+ "cutoff_score": 0.10781466960906982,
+ "num_tied_at_cutoff": 894,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10781466960906982,
+ "score_mean": 0.0678669810295105,
+ "score_p50": 0.05390733480453491,
+ "score_p90": 0.10781466960906982,
+ "fraction_gt1": 0.0,
+ "n_inside": 360,
+ "n_interface": 4045,
+ "n_outside": 793,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.8580645161290322,
+ "selected_outside_frac": 0.14193548387096774,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.9166666666666667,
+ "step": 17,
+ "n_elem": 5198,
+ "target_elements": 8000,
+ "gap": 2802,
+ "cutoff_score": 0.10781466960906982,
+ "num_tied_at_cutoff": 696,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10781466960906982,
+ "score_mean": 0.06442564725875854,
+ "score_p50": 0.05390733480453491,
+ "score_p90": 0.10268030315637589,
+ "fraction_gt1": 0.0,
+ "n_inside": 360,
+ "n_interface": 4521,
+ "n_outside": 946,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 18,
+ "n_elem": 5827,
+ "target_elements": 8000,
+ "gap": 2173,
+ "cutoff_score": 0.10781466960906982,
+ "num_tied_at_cutoff": 484,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10781466960906982,
+ "score_mean": 0.0614495724439621,
+ "score_p50": 0.05390733480453491,
+ "score_p90": 0.07623648643493652,
+ "fraction_gt1": 0.0,
+ "n_inside": 360,
+ "n_interface": 4522,
+ "n_outside": 1621,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.35416666666666663,
+ "selected_y_range": 0.9791666666666667,
+ "step": 19,
+ "n_elem": 6503,
+ "target_elements": 8000,
+ "gap": 1497,
+ "cutoff_score": 0.10781466960906982,
+ "num_tied_at_cutoff": 266,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10781466960906982,
+ "score_mean": 0.05903087183833122,
+ "score_p50": 0.05390733480453491,
+ "score_p90": 0.07623648643493652,
+ "fraction_gt1": 0.0,
+ "n_inside": 360,
+ "n_interface": 4522,
+ "n_outside": 2294,
+ "selected_inside_frac": 0.7395348837209302,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.26046511627906976,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.671875,
+ "step": 20,
+ "n_elem": 7176,
+ "target_elements": 8000,
+ "gap": 824,
+ "cutoff_score": 0.10268030315637589,
+ "num_tied_at_cutoff": 217,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 12,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.10475237336766466,
+ "max_err": 0.10986812133069268,
+ "actual_elements": 8502,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9955825209617615,
+ "score_mean": 0.09441429376602173,
+ "score_p50": 8.827402098177117e-08,
+ "score_p90": 0.33931487798690796,
+ "fraction_gt1": 0.0,
+ "n_inside": 19,
+ "n_interface": 324,
+ "n_outside": 169,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9874179363250732,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9886847138404846,
+ "score_mean": 0.0916495993733406,
+ "score_p50": 3.4580866667965893e-06,
+ "score_p90": 0.38996458053588867,
+ "fraction_gt1": 0.0,
+ "n_inside": 68,
+ "n_interface": 349,
+ "n_outside": 169,
+ "selected_inside_frac": 0.058823529411764705,
+ "selected_interface_frac": 0.9411764705882353,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.3333333333333333,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 8000,
+ "gap": 7414,
+ "cutoff_score": 0.9031882882118225,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9908521771430969,
+ "score_mean": 0.12131942063570023,
+ "score_p50": 1.3892124115955085e-05,
+ "score_p90": 0.6798334121704102,
+ "fraction_gt1": 0.0,
+ "n_inside": 74,
+ "n_interface": 431,
+ "n_outside": 169,
+ "selected_inside_frac": 0.85,
+ "selected_interface_frac": 0.15,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.2604166666666667,
+ "step": 2,
+ "n_elem": 674,
+ "target_elements": 8000,
+ "gap": 7326,
+ "cutoff_score": 0.970234751701355,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9919467568397522,
+ "score_mean": 0.1489458531141281,
+ "score_p50": 6.030924487276934e-05,
+ "score_p90": 0.7660239934921265,
+ "fraction_gt1": 0.0,
+ "n_inside": 150,
+ "n_interface": 455,
+ "n_outside": 169,
+ "selected_inside_frac": 0.043478260869565216,
+ "selected_interface_frac": 0.9565217391304348,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.5416666666666667,
+ "step": 3,
+ "n_elem": 774,
+ "target_elements": 8000,
+ "gap": 7226,
+ "cutoff_score": 0.9594491720199585,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9891449809074402,
+ "score_mean": 0.12810610234737396,
+ "score_p50": 0.0002161820011679083,
+ "score_p90": 0.6997902393341064,
+ "fraction_gt1": 0.0,
+ "n_inside": 160,
+ "n_interface": 594,
+ "n_outside": 169,
+ "selected_inside_frac": 0.2222222222222222,
+ "selected_interface_frac": 0.7777777777777778,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.75,
+ "step": 4,
+ "n_elem": 923,
+ "target_elements": 8000,
+ "gap": 7077,
+ "cutoff_score": 0.9570680856704712,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9914374947547913,
+ "score_mean": 0.11842774599790573,
+ "score_p50": 0.0005320497439242899,
+ "score_p90": 0.612553060054779,
+ "fraction_gt1": 0.0,
+ "n_inside": 196,
+ "n_interface": 734,
+ "n_outside": 171,
+ "selected_inside_frac": 0.12121212121212122,
+ "selected_interface_frac": 0.7878787878787878,
+ "selected_outside_frac": 0.09090909090909091,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.875,
+ "step": 5,
+ "n_elem": 1101,
+ "target_elements": 8000,
+ "gap": 6899,
+ "cutoff_score": 0.9425533413887024,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9831812977790833,
+ "score_mean": 0.11278923600912094,
+ "score_p50": 0.0010252832435071468,
+ "score_p90": 0.5100634694099426,
+ "fraction_gt1": 0.0,
+ "n_inside": 221,
+ "n_interface": 885,
+ "n_outside": 197,
+ "selected_inside_frac": 0.1794871794871795,
+ "selected_interface_frac": 0.7435897435897436,
+ "selected_outside_frac": 0.07692307692307693,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.5625,
+ "step": 6,
+ "n_elem": 1303,
+ "target_elements": 8000,
+ "gap": 6697,
+ "cutoff_score": 0.884083092212677,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9857203364372253,
+ "score_mean": 0.14237743616104126,
+ "score_p50": 0.0013702393043786287,
+ "score_p90": 0.6928130984306335,
+ "fraction_gt1": 0.0,
+ "n_inside": 247,
+ "n_interface": 1046,
+ "n_outside": 222,
+ "selected_inside_frac": 0.28888888888888886,
+ "selected_interface_frac": 0.6444444444444445,
+ "selected_outside_frac": 0.06666666666666667,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1515,
+ "target_elements": 8000,
+ "gap": 6485,
+ "cutoff_score": 0.9032872915267944,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9850894212722778,
+ "score_mean": 0.16435499489307404,
+ "score_p50": 0.0007882347563281655,
+ "score_p90": 0.7682014107704163,
+ "fraction_gt1": 0.0,
+ "n_inside": 328,
+ "n_interface": 1210,
+ "n_outside": 248,
+ "selected_inside_frac": 0.3018867924528302,
+ "selected_interface_frac": 0.6415094339622641,
+ "selected_outside_frac": 0.05660377358490566,
+ "selected_x_range": 0.8020833333333333,
+ "selected_y_range": 0.9166666666666667,
+ "step": 8,
+ "n_elem": 1786,
+ "target_elements": 8000,
+ "gap": 6214,
+ "cutoff_score": 0.9391939640045166,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9905917048454285,
+ "score_mean": 0.1644863486289978,
+ "score_p50": 0.0008575943647883832,
+ "score_p90": 0.8191220164299011,
+ "fraction_gt1": 0.0,
+ "n_inside": 424,
+ "n_interface": 1410,
+ "n_outside": 270,
+ "selected_inside_frac": 0.031746031746031744,
+ "selected_interface_frac": 0.8412698412698413,
+ "selected_outside_frac": 0.12698412698412698,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.8229166666666667,
+ "step": 9,
+ "n_elem": 2104,
+ "target_elements": 8000,
+ "gap": 5896,
+ "cutoff_score": 0.944058895111084,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.988461971282959,
+ "score_mean": 0.14721353352069855,
+ "score_p50": 0.0005640789750032127,
+ "score_p90": 0.7692374587059021,
+ "fraction_gt1": 0.0,
+ "n_inside": 447,
+ "n_interface": 1692,
+ "n_outside": 324,
+ "selected_inside_frac": 0.0273972602739726,
+ "selected_interface_frac": 0.3835616438356164,
+ "selected_outside_frac": 0.589041095890411,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.9270833333333333,
+ "step": 10,
+ "n_elem": 2463,
+ "target_elements": 8000,
+ "gap": 5537,
+ "cutoff_score": 0.9534937143325806,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9859138131141663,
+ "score_mean": 0.13382942974567413,
+ "score_p50": 0.0005081812851130962,
+ "score_p90": 0.6265798807144165,
+ "fraction_gt1": 0.0,
+ "n_inside": 463,
+ "n_interface": 1887,
+ "n_outside": 496,
+ "selected_inside_frac": 0.25882352941176473,
+ "selected_interface_frac": 0.5529411764705883,
+ "selected_outside_frac": 0.18823529411764706,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8541666666666667,
+ "step": 11,
+ "n_elem": 2846,
+ "target_elements": 8000,
+ "gap": 5154,
+ "cutoff_score": 0.918552577495575,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9799436926841736,
+ "score_mean": 0.12444503605365753,
+ "score_p50": 0.0006425027968361974,
+ "score_p90": 0.6110063791275024,
+ "fraction_gt1": 0.0,
+ "n_inside": 589,
+ "n_interface": 2174,
+ "n_outside": 553,
+ "selected_inside_frac": 0.12121212121212122,
+ "selected_interface_frac": 0.7070707070707071,
+ "selected_outside_frac": 0.1717171717171717,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 3316,
+ "target_elements": 8000,
+ "gap": 4684,
+ "cutoff_score": 0.890565812587738,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.982638955116272,
+ "score_mean": 0.1264800727367401,
+ "score_p50": 0.0010213528294116259,
+ "score_p90": 0.614962100982666,
+ "fraction_gt1": 0.0,
+ "n_inside": 676,
+ "n_interface": 2581,
+ "n_outside": 643,
+ "selected_inside_frac": 0.08547008547008547,
+ "selected_interface_frac": 0.811965811965812,
+ "selected_outside_frac": 0.10256410256410256,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 13,
+ "n_elem": 3900,
+ "target_elements": 8000,
+ "gap": 4100,
+ "cutoff_score": 0.882189154624939,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9810885190963745,
+ "score_mean": 0.13458919525146484,
+ "score_p50": 0.0010803451295942068,
+ "score_p90": 0.6378597617149353,
+ "fraction_gt1": 0.0,
+ "n_inside": 757,
+ "n_interface": 3118,
+ "n_outside": 719,
+ "selected_inside_frac": 0.15328467153284672,
+ "selected_interface_frac": 0.7299270072992701,
+ "selected_outside_frac": 0.11678832116788321,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 14,
+ "n_elem": 4594,
+ "target_elements": 8000,
+ "gap": 3406,
+ "cutoff_score": 0.8828399181365967,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9902455806732178,
+ "score_mean": 0.14328771829605103,
+ "score_p50": 0.0018158715683966875,
+ "score_p90": 0.6771261692047119,
+ "fraction_gt1": 0.0,
+ "n_inside": 892,
+ "n_interface": 3702,
+ "n_outside": 822,
+ "selected_inside_frac": 0.21604938271604937,
+ "selected_interface_frac": 0.6358024691358025,
+ "selected_outside_frac": 0.14814814814814814,
+ "selected_x_range": 0.984375,
+ "selected_y_range": 0.9375,
+ "step": 15,
+ "n_elem": 5416,
+ "target_elements": 8000,
+ "gap": 2584,
+ "cutoff_score": 0.90477055311203,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9919435977935791,
+ "score_mean": 0.14546233415603638,
+ "score_p50": 0.0021944011095911264,
+ "score_p90": 0.6767959594726562,
+ "fraction_gt1": 0.0,
+ "n_inside": 1120,
+ "n_interface": 4304,
+ "n_outside": 964,
+ "selected_inside_frac": 0.34554973821989526,
+ "selected_interface_frac": 0.5863874345549738,
+ "selected_outside_frac": 0.06806282722513089,
+ "selected_x_range": 0.9427083333333333,
+ "selected_y_range": 0.9791666666666667,
+ "step": 16,
+ "n_elem": 6388,
+ "target_elements": 8000,
+ "gap": 1612,
+ "cutoff_score": 0.9109838604927063,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9890878200531006,
+ "score_mean": 0.15751145780086517,
+ "score_p50": 0.0028440263122320175,
+ "score_p90": 0.7266513705253601,
+ "fraction_gt1": 0.0,
+ "n_inside": 1480,
+ "n_interface": 5016,
+ "n_outside": 1047,
+ "selected_inside_frac": 0.15789473684210525,
+ "selected_interface_frac": 0.7763157894736842,
+ "selected_outside_frac": 0.06578947368421052,
+ "selected_x_range": 0.9739583333333333,
+ "selected_y_range": 0.9375,
+ "step": 17,
+ "n_elem": 7543,
+ "target_elements": 8000,
+ "gap": 457,
+ "cutoff_score": 0.929224967956543,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 12,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.10489857753690385,
+ "max_err": 0.11077130307999784,
+ "actual_elements": 8069,
+ "num_steps": 19,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 4.188912391662598,
+ "score_mean": -5.960464477539063e-08,
+ "score_p50": -0.27018609642982483,
+ "score_p90": 0.3480664789676666,
+ "fraction_gt1": 0.0859375,
+ "n_inside": 19,
+ "n_interface": 324,
+ "n_outside": 169,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 4.174036026000977,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 6.144552230834961,
+ "score_mean": 1.1229271024149057e-07,
+ "score_p50": -0.06686985492706299,
+ "score_p90": 0.5601119995117188,
+ "fraction_gt1": 0.08020477815699659,
+ "n_inside": 68,
+ "n_interface": 349,
+ "n_outside": 169,
+ "selected_inside_frac": 0.23529411764705882,
+ "selected_interface_frac": 0.7647058823529411,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.31250000000000006,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 8000,
+ "gap": 7414,
+ "cutoff_score": 1.9197684526443481,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.7603771686553955,
+ "score_mean": -1.4715449481172982e-07,
+ "score_p50": 0.06360875070095062,
+ "score_p90": 1.0668948888778687,
+ "fraction_gt1": 0.10385756676557864,
+ "n_inside": 82,
+ "n_interface": 423,
+ "n_outside": 169,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.45833333333333326,
+ "step": 2,
+ "n_elem": 674,
+ "target_elements": 8000,
+ "gap": 7326,
+ "cutoff_score": 1.6424791812896729,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.8992414474487305,
+ "score_mean": 0.0,
+ "score_p50": 0.18913249671459198,
+ "score_p90": 1.2075227499008179,
+ "fraction_gt1": 0.11392405063291139,
+ "n_inside": 128,
+ "n_interface": 493,
+ "n_outside": 169,
+ "selected_inside_frac": 0.30434782608695654,
+ "selected_interface_frac": 0.6956521739130435,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5625,
+ "step": 3,
+ "n_elem": 790,
+ "target_elements": 8000,
+ "gap": 7210,
+ "cutoff_score": 1.7768186330795288,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.115414619445801,
+ "score_mean": -3.243100721306291e-08,
+ "score_p50": -0.2870488166809082,
+ "score_p90": 1.0291199684143066,
+ "fraction_gt1": 0.10626992561105207,
+ "n_inside": 167,
+ "n_interface": 605,
+ "n_outside": 169,
+ "selected_inside_frac": 0.25,
+ "selected_interface_frac": 0.7142857142857143,
+ "selected_outside_frac": 0.03571428571428571,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.7916666666666667,
+ "step": 4,
+ "n_elem": 941,
+ "target_elements": 8000,
+ "gap": 7059,
+ "cutoff_score": 1.9231879711151123,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3699684143066406,
+ "score_mean": 0.0,
+ "score_p50": -0.14307592809200287,
+ "score_p90": 1.0912668704986572,
+ "fraction_gt1": 0.10685663401602849,
+ "n_inside": 208,
+ "n_interface": 739,
+ "n_outside": 176,
+ "selected_inside_frac": 0.12121212121212122,
+ "selected_interface_frac": 0.6666666666666666,
+ "selected_outside_frac": 0.21212121212121213,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.9375,
+ "step": 5,
+ "n_elem": 1123,
+ "target_elements": 8000,
+ "gap": 6877,
+ "cutoff_score": 1.8589766025543213,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2914140224456787,
+ "score_mean": 3.483741650711636e-08,
+ "score_p50": -0.23827990889549255,
+ "score_p90": 1.0078151226043701,
+ "fraction_gt1": 0.1035007610350076,
+ "n_inside": 221,
+ "n_interface": 874,
+ "n_outside": 219,
+ "selected_inside_frac": 0.1282051282051282,
+ "selected_interface_frac": 0.6666666666666666,
+ "selected_outside_frac": 0.20512820512820512,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.59375,
+ "step": 6,
+ "n_elem": 1314,
+ "target_elements": 8000,
+ "gap": 6686,
+ "cutoff_score": 1.6651946306228638,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.56657075881958,
+ "score_mean": 0.0,
+ "score_p50": -0.4313696324825287,
+ "score_p90": 1.1012698411941528,
+ "fraction_gt1": 0.13120104438642297,
+ "n_inside": 254,
+ "n_interface": 1019,
+ "n_outside": 259,
+ "selected_inside_frac": 0.06666666666666667,
+ "selected_interface_frac": 0.8,
+ "selected_outside_frac": 0.13333333333333333,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.7604166666666667,
+ "step": 7,
+ "n_elem": 1532,
+ "target_elements": 8000,
+ "gap": 6468,
+ "cutoff_score": 1.6144157648086548,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.559791326522827,
+ "score_mean": -5.2018599205894134e-08,
+ "score_p50": -0.3671249747276306,
+ "score_p90": 1.244198203086853,
+ "fraction_gt1": 0.15170454545454545,
+ "n_inside": 275,
+ "n_interface": 1184,
+ "n_outside": 301,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.40384615384615385,
+ "selected_outside_frac": 0.5961538461538461,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.84375,
+ "step": 8,
+ "n_elem": 1760,
+ "target_elements": 8000,
+ "gap": 6240,
+ "cutoff_score": 1.7802891731262207,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.8790738582611084,
+ "score_mean": -4.5662211789476714e-08,
+ "score_p50": -0.3091028332710266,
+ "score_p90": 1.1218663454055786,
+ "fraction_gt1": 0.12718204488778054,
+ "n_inside": 275,
+ "n_interface": 1279,
+ "n_outside": 451,
+ "selected_inside_frac": 0.11666666666666667,
+ "selected_interface_frac": 0.23333333333333334,
+ "selected_outside_frac": 0.65,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.7395833333333333,
+ "step": 9,
+ "n_elem": 2005,
+ "target_elements": 8000,
+ "gap": 5995,
+ "cutoff_score": 1.7982137203216553,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2854747772216797,
+ "score_mean": -1.2067583554653538e-07,
+ "score_p50": -0.18422390520572662,
+ "score_p90": 1.1111042499542236,
+ "fraction_gt1": 0.11291739894551846,
+ "n_inside": 308,
+ "n_interface": 1388,
+ "n_outside": 580,
+ "selected_inside_frac": 0.25,
+ "selected_interface_frac": 0.7205882352941176,
+ "selected_outside_frac": 0.029411764705882353,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.8958333333333334,
+ "step": 10,
+ "n_elem": 2276,
+ "target_elements": 8000,
+ "gap": 5724,
+ "cutoff_score": 1.341468334197998,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1057446002960205,
+ "score_mean": 3.4652813951652206e-08,
+ "score_p50": -0.005028247833251953,
+ "score_p90": 1.1102017164230347,
+ "fraction_gt1": 0.11771385314155942,
+ "n_inside": 387,
+ "n_interface": 1665,
+ "n_outside": 590,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.9113924050632911,
+ "selected_outside_frac": 0.08860759493670886,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2642,
+ "target_elements": 8000,
+ "gap": 5358,
+ "cutoff_score": 1.4870388507843018,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3664963245391846,
+ "score_mean": 1.00090453258872e-07,
+ "score_p50": 0.13865788280963898,
+ "score_p90": 1.0840177536010742,
+ "fraction_gt1": 0.1321744834371925,
+ "n_inside": 387,
+ "n_interface": 2022,
+ "n_outside": 640,
+ "selected_inside_frac": 0.4175824175824176,
+ "selected_interface_frac": 0.5054945054945055,
+ "selected_outside_frac": 0.07692307692307693,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8958333333333334,
+ "step": 12,
+ "n_elem": 3049,
+ "target_elements": 8000,
+ "gap": 4951,
+ "cutoff_score": 1.6613917350769043,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.6045074462890625,
+ "score_mean": -6.947655606381886e-08,
+ "score_p50": -0.3308178186416626,
+ "score_p90": 1.1880990266799927,
+ "fraction_gt1": 0.11553784860557768,
+ "n_inside": 552,
+ "n_interface": 2282,
+ "n_outside": 680,
+ "selected_inside_frac": 0.42857142857142855,
+ "selected_interface_frac": 0.47619047619047616,
+ "selected_outside_frac": 0.09523809523809523,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3514,
+ "target_elements": 8000,
+ "gap": 4486,
+ "cutoff_score": 1.739284873008728,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.7788166999816895,
+ "score_mean": -1.514520064915814e-08,
+ "score_p50": -0.24367815256118774,
+ "score_p90": 1.030077576637268,
+ "fraction_gt1": 0.10347394540942928,
+ "n_inside": 737,
+ "n_interface": 2554,
+ "n_outside": 739,
+ "selected_inside_frac": 0.14166666666666666,
+ "selected_interface_frac": 0.5833333333333334,
+ "selected_outside_frac": 0.275,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 14,
+ "n_elem": 4030,
+ "target_elements": 8000,
+ "gap": 3970,
+ "cutoff_score": 1.6617896556854248,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5887598991394043,
+ "score_mean": -1.310048389768781e-07,
+ "score_p50": -0.14245617389678955,
+ "score_p90": 0.9108554720878601,
+ "fraction_gt1": 0.08220648207769908,
+ "n_inside": 827,
+ "n_interface": 2933,
+ "n_outside": 899,
+ "selected_inside_frac": 0.08633093525179857,
+ "selected_interface_frac": 0.762589928057554,
+ "selected_outside_frac": 0.1510791366906475,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.8958333333333334,
+ "step": 15,
+ "n_elem": 4659,
+ "target_elements": 8000,
+ "gap": 3341,
+ "cutoff_score": 1.5569612979888916,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2778353691101074,
+ "score_mean": -9.18167089025701e-08,
+ "score_p50": -0.037061333656311035,
+ "score_p90": 0.9341287016868591,
+ "fraction_gt1": 0.08800300864986838,
+ "n_inside": 877,
+ "n_interface": 3437,
+ "n_outside": 1004,
+ "selected_inside_frac": 0.1761006289308176,
+ "selected_interface_frac": 0.7735849056603774,
+ "selected_outside_frac": 0.050314465408805034,
+ "selected_x_range": 0.9427083333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 16,
+ "n_elem": 5318,
+ "target_elements": 8000,
+ "gap": 2682,
+ "cutoff_score": 1.5063194036483765,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3252387046813965,
+ "score_mean": -7.945993019120579e-08,
+ "score_p50": -0.10755877196788788,
+ "score_p90": 1.0504344701766968,
+ "fraction_gt1": 0.11798209926769732,
+ "n_inside": 1007,
+ "n_interface": 4084,
+ "n_outside": 1054,
+ "selected_inside_frac": 0.14130434782608695,
+ "selected_interface_frac": 0.7282608695652174,
+ "selected_outside_frac": 0.13043478260869565,
+ "selected_x_range": 0.9427083333333333,
+ "selected_y_range": 0.9791666666666667,
+ "step": 17,
+ "n_elem": 6145,
+ "target_elements": 8000,
+ "gap": 1855,
+ "cutoff_score": 1.4472870826721191,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.519547939300537,
+ "score_mean": 6.82815368691081e-08,
+ "score_p50": -0.37825149297714233,
+ "score_p90": 1.1301785707473755,
+ "fraction_gt1": 0.14417563977066145,
+ "n_inside": 1143,
+ "n_interface": 4827,
+ "n_outside": 1181,
+ "selected_inside_frac": 0.018691588785046728,
+ "selected_interface_frac": 0.21495327102803738,
+ "selected_outside_frac": 0.7663551401869159,
+ "selected_x_range": 0.984375,
+ "selected_y_range": 0.9791666666666667,
+ "step": 18,
+ "n_elem": 7151,
+ "target_elements": 8000,
+ "gap": 849,
+ "cutoff_score": 1.6301413774490356,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 12,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.1490085107414551,
+ "max_err": 0.3669082994563495,
+ "actual_elements": 2084,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.31268930435180664,
+ "score_mean": 0.14973831176757812,
+ "score_p50": 0.12478189915418625,
+ "score_p90": 0.31268930435180664,
+ "fraction_gt1": 0.0,
+ "n_inside": 68,
+ "n_interface": 444,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3958333333333333,
+ "selected_y_range": 0.3958333333333333,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.31268930435180664,
+ "num_tied_at_cutoff": 68,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.31268930435180664,
+ "score_mean": 0.13647492229938507,
+ "score_p50": 0.12478189915418625,
+ "score_p90": 0.22110474109649658,
+ "fraction_gt1": 0.0,
+ "n_inside": 137,
+ "n_interface": 499,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.2708333333333333,
+ "step": 1,
+ "n_elem": 636,
+ "target_elements": 2000,
+ "gap": 1364,
+ "cutoff_score": 0.31268930435180664,
+ "num_tied_at_cutoff": 32,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.31268930435180664,
+ "score_mean": 0.13158893585205078,
+ "score_p50": 0.12478189915418625,
+ "score_p90": 0.15634465217590332,
+ "fraction_gt1": 0.0,
+ "n_inside": 236,
+ "n_interface": 502,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.375,
+ "step": 2,
+ "n_elem": 738,
+ "target_elements": 2000,
+ "gap": 1262,
+ "cutoff_score": 0.22110474109649658,
+ "num_tied_at_cutoff": 28,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15634465217590332,
+ "score_mean": 0.12223470211029053,
+ "score_p50": 0.12478189915418625,
+ "score_p90": 0.15634465217590332,
+ "fraction_gt1": 0.0,
+ "n_inside": 333,
+ "n_interface": 529,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3958333333333333,
+ "selected_y_range": 0.40625000000000006,
+ "step": 3,
+ "n_elem": 862,
+ "target_elements": 2000,
+ "gap": 1138,
+ "cutoff_score": 0.15634465217590332,
+ "num_tied_at_cutoff": 206,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15634465217590332,
+ "score_mean": 0.10438445955514908,
+ "score_p50": 0.11055237054824829,
+ "score_p90": 0.15634465217590332,
+ "fraction_gt1": 0.0,
+ "n_inside": 452,
+ "n_interface": 652,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34374999999999994,
+ "selected_y_range": 0.3541666666666667,
+ "step": 4,
+ "n_elem": 1104,
+ "target_elements": 2000,
+ "gap": 896,
+ "cutoff_score": 0.15634465217590332,
+ "num_tied_at_cutoff": 144,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15634465217590332,
+ "score_mean": 0.0968390479683876,
+ "score_p50": 0.11055237054824829,
+ "score_p90": 0.12478189915418625,
+ "fraction_gt1": 0.0,
+ "n_inside": 626,
+ "n_interface": 664,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666674,
+ "selected_y_range": 0.22916666666666669,
+ "step": 5,
+ "n_elem": 1290,
+ "target_elements": 2000,
+ "gap": 710,
+ "cutoff_score": 0.15634465217590332,
+ "num_tied_at_cutoff": 90,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15634465217590332,
+ "score_mean": 0.0913110002875328,
+ "score_p50": 0.07817232608795166,
+ "score_p90": 0.12478189915418625,
+ "fraction_gt1": 0.0,
+ "n_inside": 806,
+ "n_interface": 664,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7727272727272727,
+ "selected_interface_frac": 0.22727272727272727,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.5,
+ "step": 6,
+ "n_elem": 1470,
+ "target_elements": 2000,
+ "gap": 530,
+ "cutoff_score": 0.12478189915418625,
+ "num_tied_at_cutoff": 384,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12478189915418625,
+ "score_mean": 0.08635908365249634,
+ "score_p50": 0.07817232608795166,
+ "score_p90": 0.12478189915418625,
+ "fraction_gt1": 0.0,
+ "n_inside": 930,
+ "n_interface": 730,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.6458333333333333,
+ "step": 7,
+ "n_elem": 1660,
+ "target_elements": 2000,
+ "gap": 340,
+ "cutoff_score": 0.12478189915418625,
+ "num_tied_at_cutoff": 358,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12478189915418625,
+ "score_mean": 0.08083821088075638,
+ "score_p50": 0.07817232608795166,
+ "score_p90": 0.12478189915418625,
+ "fraction_gt1": 0.0,
+ "n_inside": 930,
+ "n_interface": 967,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8125,
+ "step": 8,
+ "n_elem": 1897,
+ "target_elements": 2000,
+ "gap": 103,
+ "cutoff_score": 0.12478189915418625,
+ "num_tied_at_cutoff": 270,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 18,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.1458920321141851,
+ "max_err": 0.3616356363130673,
+ "actual_elements": 2128,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9824209809303284,
+ "score_mean": 0.12232765555381775,
+ "score_p50": 2.211448091316015e-08,
+ "score_p90": 0.739281415939331,
+ "fraction_gt1": 0.0,
+ "n_inside": 68,
+ "n_interface": 444,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.2916666666666667,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9690935015678406,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.974609375,
+ "score_mean": 0.09398568421602249,
+ "score_p50": 2.911710907937959e-06,
+ "score_p90": 0.4097967743873596,
+ "fraction_gt1": 0.0,
+ "n_inside": 134,
+ "n_interface": 454,
+ "n_outside": 0,
+ "selected_inside_frac": 0.8235294117647058,
+ "selected_interface_frac": 0.17647058823529413,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25,
+ "selected_y_range": 0.3958333333333333,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 2000,
+ "gap": 1412,
+ "cutoff_score": 0.9499219655990601,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9775201678276062,
+ "score_mean": 0.07953057438135147,
+ "score_p50": 8.568990597268566e-05,
+ "score_p90": 0.17509514093399048,
+ "fraction_gt1": 0.0,
+ "n_inside": 205,
+ "n_interface": 485,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.43749999999999994,
+ "step": 2,
+ "n_elem": 690,
+ "target_elements": 2000,
+ "gap": 1310,
+ "cutoff_score": 0.9239787459373474,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9759549498558044,
+ "score_mean": 0.11429779976606369,
+ "score_p50": 0.0002495083608664572,
+ "score_p90": 0.5701617002487183,
+ "fraction_gt1": 0.0,
+ "n_inside": 245,
+ "n_interface": 551,
+ "n_outside": 0,
+ "selected_inside_frac": 0.6521739130434783,
+ "selected_interface_frac": 0.34782608695652173,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.4479166666666667,
+ "step": 3,
+ "n_elem": 796,
+ "target_elements": 2000,
+ "gap": 1204,
+ "cutoff_score": 0.8865976929664612,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9805507659912109,
+ "score_mean": 0.14917604625225067,
+ "score_p50": 0.0002460355462972075,
+ "score_p90": 0.7157517671585083,
+ "fraction_gt1": 0.0,
+ "n_inside": 334,
+ "n_interface": 602,
+ "n_outside": 0,
+ "selected_inside_frac": 0.6071428571428571,
+ "selected_interface_frac": 0.39285714285714285,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 936,
+ "target_elements": 2000,
+ "gap": 1064,
+ "cutoff_score": 0.9231388568878174,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9851996898651123,
+ "score_mean": 0.15492717921733856,
+ "score_p50": 0.00021296509657986462,
+ "score_p90": 0.7898117303848267,
+ "fraction_gt1": 0.0,
+ "n_inside": 419,
+ "n_interface": 689,
+ "n_outside": 0,
+ "selected_inside_frac": 0.8484848484848485,
+ "selected_interface_frac": 0.15151515151515152,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666663,
+ "selected_y_range": 0.6666666666666667,
+ "step": 5,
+ "n_elem": 1108,
+ "target_elements": 2000,
+ "gap": 892,
+ "cutoff_score": 0.9495992660522461,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9798663258552551,
+ "score_mean": 0.12905550003051758,
+ "score_p50": 0.00045990588841959834,
+ "score_p90": 0.6664384007453918,
+ "fraction_gt1": 0.0,
+ "n_inside": 567,
+ "n_interface": 743,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5128205128205128,
+ "selected_interface_frac": 0.48717948717948717,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.7708333333333333,
+ "step": 6,
+ "n_elem": 1310,
+ "target_elements": 2000,
+ "gap": 690,
+ "cutoff_score": 0.9238672256469727,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9839729070663452,
+ "score_mean": 0.11183256655931473,
+ "score_p50": 0.0015131962718442082,
+ "score_p90": 0.5506990551948547,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 854,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3695652173913043,
+ "selected_interface_frac": 0.6304347826086957,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.7916666666666667,
+ "step": 7,
+ "n_elem": 1539,
+ "target_elements": 2000,
+ "gap": 461,
+ "cutoff_score": 0.8679277896881104,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9874845147132874,
+ "score_mean": 0.11207211762666702,
+ "score_p50": 0.0029439995996654034,
+ "score_p90": 0.4905548095703125,
+ "fraction_gt1": 0.0,
+ "n_inside": 781,
+ "n_interface": 1031,
+ "n_outside": 0,
+ "selected_inside_frac": 0.24074074074074073,
+ "selected_interface_frac": 0.7592592592592593,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 8,
+ "n_elem": 1812,
+ "target_elements": 2000,
+ "gap": 188,
+ "cutoff_score": 0.866354763507843,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 18,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.14544091143919047,
+ "max_err": 0.36178063721279696,
+ "actual_elements": 2056,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.7635397911071777,
+ "score_mean": 3.2782554626464844e-07,
+ "score_p50": -0.40700775384902954,
+ "score_p90": 2.222975969314575,
+ "fraction_gt1": 0.1328125,
+ "n_inside": 68,
+ "n_interface": 444,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.2916666666666667,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 2.7405149936676025,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.39369797706604,
+ "score_mean": -1.9462740752373975e-08,
+ "score_p50": -0.3635123372077942,
+ "score_p90": 0.6417871117591858,
+ "fraction_gt1": 0.08673469387755102,
+ "n_inside": 134,
+ "n_interface": 454,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3958333333333333,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 2000,
+ "gap": 1412,
+ "cutoff_score": 3.3324460983276367,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 4.614664554595947,
+ "score_mean": -6.134747110309036e-08,
+ "score_p50": -0.35310542583465576,
+ "score_p90": 1.1473751068115234,
+ "fraction_gt1": 0.1154970760233918,
+ "n_inside": 211,
+ "n_interface": 473,
+ "n_outside": 0,
+ "selected_inside_frac": 0.85,
+ "selected_interface_frac": 0.15,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.30208333333333337,
+ "selected_y_range": 0.3645833333333333,
+ "step": 2,
+ "n_elem": 684,
+ "target_elements": 2000,
+ "gap": 1316,
+ "cutoff_score": 1.8244867324829102,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 3.126037120819092,
+ "score_mean": 2.3061141973812482e-07,
+ "score_p50": -0.29996800422668457,
+ "score_p90": 1.2829740047454834,
+ "fraction_gt1": 0.12720403022670027,
+ "n_inside": 297,
+ "n_interface": 497,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.3125,
+ "step": 3,
+ "n_elem": 794,
+ "target_elements": 2000,
+ "gap": 1206,
+ "cutoff_score": 1.8351387977600098,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0212202072143555,
+ "score_mean": 2.4245957774837734e-07,
+ "score_p50": -0.09745994210243225,
+ "score_p90": 1.3688790798187256,
+ "fraction_gt1": 0.1408898305084746,
+ "n_inside": 404,
+ "n_interface": 540,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.34375000000000006,
+ "step": 4,
+ "n_elem": 944,
+ "target_elements": 2000,
+ "gap": 1056,
+ "cutoff_score": 1.8058165311813354,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.097609043121338,
+ "score_mean": 0.0,
+ "score_p50": -0.009419769048690796,
+ "score_p90": 1.4769212007522583,
+ "fraction_gt1": 0.13883847549909256,
+ "n_inside": 546,
+ "n_interface": 556,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7575757575757576,
+ "selected_interface_frac": 0.24242424242424243,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28125,
+ "selected_y_range": 0.5,
+ "step": 5,
+ "n_elem": 1102,
+ "target_elements": 2000,
+ "gap": 898,
+ "cutoff_score": 1.5830546617507935,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1776115894317627,
+ "score_mean": -2.3804663129567416e-08,
+ "score_p50": -0.03364501893520355,
+ "score_p90": 1.432813048362732,
+ "fraction_gt1": 0.1419656786271451,
+ "n_inside": 648,
+ "n_interface": 634,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4473684210526316,
+ "selected_interface_frac": 0.5526315789473685,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.40625,
+ "selected_y_range": 0.625,
+ "step": 6,
+ "n_elem": 1282,
+ "target_elements": 2000,
+ "gap": 718,
+ "cutoff_score": 1.7805255651474,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.557999610900879,
+ "score_mean": 1.2288957407236012e-07,
+ "score_p50": -0.4401373267173767,
+ "score_p90": 1.2766480445861816,
+ "fraction_gt1": 0.11610738255033556,
+ "n_inside": 730,
+ "n_interface": 760,
+ "n_outside": 0,
+ "selected_inside_frac": 0.2727272727272727,
+ "selected_interface_frac": 0.7272727272727273,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.6875,
+ "step": 7,
+ "n_elem": 1490,
+ "target_elements": 2000,
+ "gap": 510,
+ "cutoff_score": 2.123270034790039,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5054538249969482,
+ "score_mean": 1.7951516895209352e-07,
+ "score_p50": -0.3549685478210449,
+ "score_p90": 1.0752314329147339,
+ "fraction_gt1": 0.10764705882352942,
+ "n_inside": 789,
+ "n_interface": 911,
+ "n_outside": 0,
+ "selected_inside_frac": 0.19607843137254902,
+ "selected_interface_frac": 0.803921568627451,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.875,
+ "step": 8,
+ "n_elem": 1700,
+ "target_elements": 2000,
+ "gap": 300,
+ "cutoff_score": 2.110211133956909,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4955995082855225,
+ "score_mean": 1.7162237497814203e-07,
+ "score_p50": -0.2758154571056366,
+ "score_p90": 1.110772728919983,
+ "fraction_gt1": 0.1165644171779141,
+ "n_inside": 852,
+ "n_interface": 1104,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.7291666666666667,
+ "step": 9,
+ "n_elem": 1956,
+ "target_elements": 2000,
+ "gap": 44,
+ "cutoff_score": 2.2397165298461914,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 18,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.14244800547242656,
+ "max_err": 0.36889484960060426,
+ "actual_elements": 4186,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.31268930435180664,
+ "score_mean": 0.14973831176757812,
+ "score_p50": 0.12478189915418625,
+ "score_p90": 0.31268930435180664,
+ "fraction_gt1": 0.0,
+ "n_inside": 68,
+ "n_interface": 444,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3958333333333333,
+ "selected_y_range": 0.3958333333333333,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.31268930435180664,
+ "num_tied_at_cutoff": 68,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.31268930435180664,
+ "score_mean": 0.13647492229938507,
+ "score_p50": 0.12478189915418625,
+ "score_p90": 0.22110474109649658,
+ "fraction_gt1": 0.0,
+ "n_inside": 137,
+ "n_interface": 499,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.2708333333333333,
+ "step": 1,
+ "n_elem": 636,
+ "target_elements": 4000,
+ "gap": 3364,
+ "cutoff_score": 0.31268930435180664,
+ "num_tied_at_cutoff": 32,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.31268930435180664,
+ "score_mean": 0.13158893585205078,
+ "score_p50": 0.12478189915418625,
+ "score_p90": 0.15634465217590332,
+ "fraction_gt1": 0.0,
+ "n_inside": 236,
+ "n_interface": 502,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.375,
+ "step": 2,
+ "n_elem": 738,
+ "target_elements": 4000,
+ "gap": 3262,
+ "cutoff_score": 0.22110474109649658,
+ "num_tied_at_cutoff": 28,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15634465217590332,
+ "score_mean": 0.12223470211029053,
+ "score_p50": 0.12478189915418625,
+ "score_p90": 0.15634465217590332,
+ "fraction_gt1": 0.0,
+ "n_inside": 333,
+ "n_interface": 529,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3958333333333333,
+ "selected_y_range": 0.40625000000000006,
+ "step": 3,
+ "n_elem": 862,
+ "target_elements": 4000,
+ "gap": 3138,
+ "cutoff_score": 0.15634465217590332,
+ "num_tied_at_cutoff": 206,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15634465217590332,
+ "score_mean": 0.10438445955514908,
+ "score_p50": 0.11055237054824829,
+ "score_p90": 0.15634465217590332,
+ "fraction_gt1": 0.0,
+ "n_inside": 452,
+ "n_interface": 652,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34374999999999994,
+ "selected_y_range": 0.3541666666666667,
+ "step": 4,
+ "n_elem": 1104,
+ "target_elements": 4000,
+ "gap": 2896,
+ "cutoff_score": 0.15634465217590332,
+ "num_tied_at_cutoff": 144,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15634465217590332,
+ "score_mean": 0.0968390479683876,
+ "score_p50": 0.11055237054824829,
+ "score_p90": 0.12478189915418625,
+ "fraction_gt1": 0.0,
+ "n_inside": 626,
+ "n_interface": 664,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666674,
+ "selected_y_range": 0.22916666666666669,
+ "step": 5,
+ "n_elem": 1290,
+ "target_elements": 4000,
+ "gap": 2710,
+ "cutoff_score": 0.15634465217590332,
+ "num_tied_at_cutoff": 90,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15634465217590332,
+ "score_mean": 0.0913110002875328,
+ "score_p50": 0.07817232608795166,
+ "score_p90": 0.12478189915418625,
+ "fraction_gt1": 0.0,
+ "n_inside": 806,
+ "n_interface": 664,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7727272727272727,
+ "selected_interface_frac": 0.22727272727272727,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.5,
+ "step": 6,
+ "n_elem": 1470,
+ "target_elements": 4000,
+ "gap": 2530,
+ "cutoff_score": 0.12478189915418625,
+ "num_tied_at_cutoff": 384,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12478189915418625,
+ "score_mean": 0.08635908365249634,
+ "score_p50": 0.07817232608795166,
+ "score_p90": 0.12478189915418625,
+ "fraction_gt1": 0.0,
+ "n_inside": 930,
+ "n_interface": 730,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.6458333333333333,
+ "step": 7,
+ "n_elem": 1660,
+ "target_elements": 4000,
+ "gap": 2340,
+ "cutoff_score": 0.12478189915418625,
+ "num_tied_at_cutoff": 358,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12478189915418625,
+ "score_mean": 0.08083821088075638,
+ "score_p50": 0.07817232608795166,
+ "score_p90": 0.12478189915418625,
+ "fraction_gt1": 0.0,
+ "n_inside": 930,
+ "n_interface": 967,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.875,
+ "step": 8,
+ "n_elem": 1897,
+ "target_elements": 4000,
+ "gap": 2103,
+ "cutoff_score": 0.12478189915418625,
+ "num_tied_at_cutoff": 270,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12478189915418625,
+ "score_mean": 0.07588154077529907,
+ "score_p50": 0.07817232608795166,
+ "score_p90": 0.11055237054824829,
+ "fraction_gt1": 0.0,
+ "n_inside": 930,
+ "n_interface": 1243,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 2173,
+ "target_elements": 4000,
+ "gap": 1827,
+ "cutoff_score": 0.12478189915418625,
+ "num_tied_at_cutoff": 174,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12478189915418625,
+ "score_mean": 0.07186287641525269,
+ "score_p50": 0.062390949577093124,
+ "score_p90": 0.08823412656784058,
+ "fraction_gt1": 0.0,
+ "n_inside": 930,
+ "n_interface": 1534,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0136986301369863,
+ "selected_interface_frac": 0.9863013698630136,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 10,
+ "n_elem": 2464,
+ "target_elements": 4000,
+ "gap": 1536,
+ "cutoff_score": 0.11055237054824829,
+ "num_tied_at_cutoff": 144,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11055237054824829,
+ "score_mean": 0.06896433979272842,
+ "score_p50": 0.062390949577093124,
+ "score_p90": 0.07817232608795166,
+ "fraction_gt1": 0.0,
+ "n_inside": 936,
+ "n_interface": 1781,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.36979166666666663,
+ "selected_y_range": 0.390625,
+ "step": 11,
+ "n_elem": 2717,
+ "target_elements": 4000,
+ "gap": 1283,
+ "cutoff_score": 0.11055237054824829,
+ "num_tied_at_cutoff": 143,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11055237054824829,
+ "score_mean": 0.06450492143630981,
+ "score_p50": 0.062390949577093124,
+ "score_p90": 0.07817232608795166,
+ "fraction_gt1": 0.0,
+ "n_inside": 1271,
+ "n_interface": 1838,
+ "n_outside": 0,
+ "selected_inside_frac": 0.6021505376344086,
+ "selected_interface_frac": 0.3978494623655914,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.625,
+ "step": 12,
+ "n_elem": 3109,
+ "target_elements": 4000,
+ "gap": 891,
+ "cutoff_score": 0.08823412656784058,
+ "num_tied_at_cutoff": 97,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.08823412656784058,
+ "score_mean": 0.06075851991772652,
+ "score_p50": 0.062390949577093124,
+ "score_p90": 0.07817232608795166,
+ "fraction_gt1": 0.0,
+ "n_inside": 1495,
+ "n_interface": 2023,
+ "n_outside": 0,
+ "selected_inside_frac": 0.44761904761904764,
+ "selected_interface_frac": 0.5523809523809524,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333334,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3518,
+ "target_elements": 4000,
+ "gap": 482,
+ "cutoff_score": 0.07817232608795166,
+ "num_tied_at_cutoff": 666,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 18,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.14326052300923375,
+ "max_err": 0.3660686465385189,
+ "actual_elements": 4010,
+ "num_steps": 13,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9824209809303284,
+ "score_mean": 0.12232765555381775,
+ "score_p50": 2.211448091316015e-08,
+ "score_p90": 0.739281415939331,
+ "fraction_gt1": 0.0,
+ "n_inside": 68,
+ "n_interface": 444,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.2916666666666667,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9690935015678406,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.974609375,
+ "score_mean": 0.09398568421602249,
+ "score_p50": 2.911710907937959e-06,
+ "score_p90": 0.4097967743873596,
+ "fraction_gt1": 0.0,
+ "n_inside": 134,
+ "n_interface": 454,
+ "n_outside": 0,
+ "selected_inside_frac": 0.8235294117647058,
+ "selected_interface_frac": 0.17647058823529413,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25,
+ "selected_y_range": 0.3958333333333333,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 4000,
+ "gap": 3412,
+ "cutoff_score": 0.9499219655990601,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9775201678276062,
+ "score_mean": 0.07953057438135147,
+ "score_p50": 8.568990597268566e-05,
+ "score_p90": 0.17509514093399048,
+ "fraction_gt1": 0.0,
+ "n_inside": 205,
+ "n_interface": 485,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.43749999999999994,
+ "step": 2,
+ "n_elem": 690,
+ "target_elements": 4000,
+ "gap": 3310,
+ "cutoff_score": 0.9239787459373474,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9759549498558044,
+ "score_mean": 0.11429779976606369,
+ "score_p50": 0.0002495083608664572,
+ "score_p90": 0.5701617002487183,
+ "fraction_gt1": 0.0,
+ "n_inside": 245,
+ "n_interface": 551,
+ "n_outside": 0,
+ "selected_inside_frac": 0.6521739130434783,
+ "selected_interface_frac": 0.34782608695652173,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.4479166666666667,
+ "step": 3,
+ "n_elem": 796,
+ "target_elements": 4000,
+ "gap": 3204,
+ "cutoff_score": 0.8865976929664612,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9805507659912109,
+ "score_mean": 0.14917604625225067,
+ "score_p50": 0.0002460355462972075,
+ "score_p90": 0.7157517671585083,
+ "fraction_gt1": 0.0,
+ "n_inside": 334,
+ "n_interface": 602,
+ "n_outside": 0,
+ "selected_inside_frac": 0.6071428571428571,
+ "selected_interface_frac": 0.39285714285714285,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 936,
+ "target_elements": 4000,
+ "gap": 3064,
+ "cutoff_score": 0.9231388568878174,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9851996898651123,
+ "score_mean": 0.15492717921733856,
+ "score_p50": 0.00021296509657986462,
+ "score_p90": 0.7898117303848267,
+ "fraction_gt1": 0.0,
+ "n_inside": 419,
+ "n_interface": 689,
+ "n_outside": 0,
+ "selected_inside_frac": 0.8484848484848485,
+ "selected_interface_frac": 0.15151515151515152,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666663,
+ "selected_y_range": 0.6666666666666667,
+ "step": 5,
+ "n_elem": 1108,
+ "target_elements": 4000,
+ "gap": 2892,
+ "cutoff_score": 0.9495992660522461,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9798663258552551,
+ "score_mean": 0.12905550003051758,
+ "score_p50": 0.00045990588841959834,
+ "score_p90": 0.6664384007453918,
+ "fraction_gt1": 0.0,
+ "n_inside": 567,
+ "n_interface": 743,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5128205128205128,
+ "selected_interface_frac": 0.48717948717948717,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.7708333333333333,
+ "step": 6,
+ "n_elem": 1310,
+ "target_elements": 4000,
+ "gap": 2690,
+ "cutoff_score": 0.9238672256469727,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9839729070663452,
+ "score_mean": 0.11183256655931473,
+ "score_p50": 0.0015131962718442082,
+ "score_p90": 0.5506990551948547,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 854,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3695652173913043,
+ "selected_interface_frac": 0.6304347826086957,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.7916666666666667,
+ "step": 7,
+ "n_elem": 1539,
+ "target_elements": 4000,
+ "gap": 2461,
+ "cutoff_score": 0.8679277896881104,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9874845147132874,
+ "score_mean": 0.11207211762666702,
+ "score_p50": 0.0029439995996654034,
+ "score_p90": 0.4905548095703125,
+ "fraction_gt1": 0.0,
+ "n_inside": 781,
+ "n_interface": 1031,
+ "n_outside": 0,
+ "selected_inside_frac": 0.24074074074074073,
+ "selected_interface_frac": 0.7592592592592593,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 8,
+ "n_elem": 1812,
+ "target_elements": 4000,
+ "gap": 2188,
+ "cutoff_score": 0.866354763507843,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.980680525302887,
+ "score_mean": 0.13658343255519867,
+ "score_p50": 0.003557974938303232,
+ "score_p90": 0.5873838663101196,
+ "fraction_gt1": 0.0,
+ "n_inside": 867,
+ "n_interface": 1261,
+ "n_outside": 0,
+ "selected_inside_frac": 0.2222222222222222,
+ "selected_interface_frac": 0.7777777777777778,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.9479166666666667,
+ "step": 9,
+ "n_elem": 2128,
+ "target_elements": 4000,
+ "gap": 1872,
+ "cutoff_score": 0.8620074391365051,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9760388731956482,
+ "score_mean": 0.16058382391929626,
+ "score_p50": 0.0042586736381053925,
+ "score_p90": 0.7092594504356384,
+ "fraction_gt1": 0.0,
+ "n_inside": 957,
+ "n_interface": 1518,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7432432432432432,
+ "selected_interface_frac": 0.25675675675675674,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7604166666666667,
+ "selected_y_range": 0.8854166666666666,
+ "step": 10,
+ "n_elem": 2475,
+ "target_elements": 4000,
+ "gap": 1525,
+ "cutoff_score": 0.8988246321678162,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9891147613525391,
+ "score_mean": 0.17210492491722107,
+ "score_p50": 0.003883677301928401,
+ "score_p90": 0.7735196352005005,
+ "fraction_gt1": 0.0,
+ "n_inside": 1288,
+ "n_interface": 1629,
+ "n_outside": 0,
+ "selected_inside_frac": 0.40229885057471265,
+ "selected_interface_frac": 0.5977011494252874,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.9166666666666667,
+ "step": 11,
+ "n_elem": 2917,
+ "target_elements": 4000,
+ "gap": 1083,
+ "cutoff_score": 0.9120863080024719,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9777413010597229,
+ "score_mean": 0.164240300655365,
+ "score_p50": 0.002658464014530182,
+ "score_p90": 0.7412118911743164,
+ "fraction_gt1": 0.0,
+ "n_inside": 1488,
+ "n_interface": 1933,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5098039215686274,
+ "selected_interface_frac": 0.49019607843137253,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 12,
+ "n_elem": 3421,
+ "target_elements": 4000,
+ "gap": 579,
+ "cutoff_score": 0.915090799331665,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 18,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.14050734859465439,
+ "max_err": 0.37260091305497806,
+ "actual_elements": 4082,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.7635397911071777,
+ "score_mean": 3.2782554626464844e-07,
+ "score_p50": -0.40700775384902954,
+ "score_p90": 2.222975969314575,
+ "fraction_gt1": 0.1328125,
+ "n_inside": 68,
+ "n_interface": 444,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.2916666666666667,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 2.7405149936676025,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.39369797706604,
+ "score_mean": -1.9462740752373975e-08,
+ "score_p50": -0.3635123372077942,
+ "score_p90": 0.6417871117591858,
+ "fraction_gt1": 0.08673469387755102,
+ "n_inside": 134,
+ "n_interface": 454,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3958333333333333,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 4000,
+ "gap": 3412,
+ "cutoff_score": 3.3324460983276367,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 4.614664554595947,
+ "score_mean": -6.134747110309036e-08,
+ "score_p50": -0.35310542583465576,
+ "score_p90": 1.1473751068115234,
+ "fraction_gt1": 0.1154970760233918,
+ "n_inside": 211,
+ "n_interface": 473,
+ "n_outside": 0,
+ "selected_inside_frac": 0.85,
+ "selected_interface_frac": 0.15,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.30208333333333337,
+ "selected_y_range": 0.3645833333333333,
+ "step": 2,
+ "n_elem": 684,
+ "target_elements": 4000,
+ "gap": 3316,
+ "cutoff_score": 1.8244867324829102,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 3.126037120819092,
+ "score_mean": 2.3061141973812482e-07,
+ "score_p50": -0.29996800422668457,
+ "score_p90": 1.2829740047454834,
+ "fraction_gt1": 0.12720403022670027,
+ "n_inside": 297,
+ "n_interface": 497,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.3125,
+ "step": 3,
+ "n_elem": 794,
+ "target_elements": 4000,
+ "gap": 3206,
+ "cutoff_score": 1.8351387977600098,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0212202072143555,
+ "score_mean": 2.4245957774837734e-07,
+ "score_p50": -0.09745994210243225,
+ "score_p90": 1.3688790798187256,
+ "fraction_gt1": 0.1408898305084746,
+ "n_inside": 404,
+ "n_interface": 540,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.34375000000000006,
+ "step": 4,
+ "n_elem": 944,
+ "target_elements": 4000,
+ "gap": 3056,
+ "cutoff_score": 1.8058165311813354,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.097609043121338,
+ "score_mean": 0.0,
+ "score_p50": -0.009419769048690796,
+ "score_p90": 1.4769212007522583,
+ "fraction_gt1": 0.13883847549909256,
+ "n_inside": 546,
+ "n_interface": 556,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7575757575757576,
+ "selected_interface_frac": 0.24242424242424243,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28125,
+ "selected_y_range": 0.5,
+ "step": 5,
+ "n_elem": 1102,
+ "target_elements": 4000,
+ "gap": 2898,
+ "cutoff_score": 1.5830546617507935,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1776115894317627,
+ "score_mean": -2.3804663129567416e-08,
+ "score_p50": -0.03364501893520355,
+ "score_p90": 1.432813048362732,
+ "fraction_gt1": 0.1419656786271451,
+ "n_inside": 648,
+ "n_interface": 634,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4473684210526316,
+ "selected_interface_frac": 0.5526315789473685,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.40625,
+ "selected_y_range": 0.625,
+ "step": 6,
+ "n_elem": 1282,
+ "target_elements": 4000,
+ "gap": 2718,
+ "cutoff_score": 1.7805255651474,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.557999610900879,
+ "score_mean": 1.2288957407236012e-07,
+ "score_p50": -0.4401373267173767,
+ "score_p90": 1.2766480445861816,
+ "fraction_gt1": 0.11610738255033556,
+ "n_inside": 730,
+ "n_interface": 760,
+ "n_outside": 0,
+ "selected_inside_frac": 0.2727272727272727,
+ "selected_interface_frac": 0.7272727272727273,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.6875,
+ "step": 7,
+ "n_elem": 1490,
+ "target_elements": 4000,
+ "gap": 2510,
+ "cutoff_score": 2.123270034790039,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5054538249969482,
+ "score_mean": 1.7951516895209352e-07,
+ "score_p50": -0.3549685478210449,
+ "score_p90": 1.0752314329147339,
+ "fraction_gt1": 0.10764705882352942,
+ "n_inside": 789,
+ "n_interface": 911,
+ "n_outside": 0,
+ "selected_inside_frac": 0.19607843137254902,
+ "selected_interface_frac": 0.803921568627451,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.875,
+ "step": 8,
+ "n_elem": 1700,
+ "target_elements": 4000,
+ "gap": 2300,
+ "cutoff_score": 2.110211133956909,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4955995082855225,
+ "score_mean": 1.7162237497814203e-07,
+ "score_p50": -0.2758154571056366,
+ "score_p90": 1.110772728919983,
+ "fraction_gt1": 0.1165644171779141,
+ "n_inside": 852,
+ "n_interface": 1104,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5172413793103449,
+ "selected_interface_frac": 0.4827586206896552,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.78125,
+ "step": 9,
+ "n_elem": 1956,
+ "target_elements": 4000,
+ "gap": 2044,
+ "cutoff_score": 1.8683909177780151,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3291072845458984,
+ "score_mean": 6.754665093922085e-08,
+ "score_p50": -0.17971833050251007,
+ "score_p90": 1.167832374572754,
+ "fraction_gt1": 0.1407702523240372,
+ "n_inside": 1001,
+ "n_interface": 1258,
+ "n_outside": 0,
+ "selected_inside_frac": 0.582089552238806,
+ "selected_interface_frac": 0.417910447761194,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8645833333333334,
+ "selected_y_range": 0.9583333333333333,
+ "step": 10,
+ "n_elem": 2259,
+ "target_elements": 4000,
+ "gap": 1741,
+ "cutoff_score": 1.7963166236877441,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.465984582901001,
+ "score_mean": 0.0,
+ "score_p50": -0.046994537115097046,
+ "score_p90": 1.1491904258728027,
+ "fraction_gt1": 0.14334213504337986,
+ "n_inside": 1210,
+ "n_interface": 1441,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3037974683544304,
+ "selected_interface_frac": 0.6962025316455697,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9583333333333333,
+ "step": 11,
+ "n_elem": 2651,
+ "target_elements": 4000,
+ "gap": 1349,
+ "cutoff_score": 1.6947910785675049,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.7662014961242676,
+ "score_mean": -1.0051903132080042e-07,
+ "score_p50": -0.3614617586135864,
+ "score_p90": 1.1022484302520752,
+ "fraction_gt1": 0.1297760210803689,
+ "n_inside": 1328,
+ "n_interface": 1708,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4175824175824176,
+ "selected_interface_frac": 0.5824175824175825,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.96875,
+ "step": 12,
+ "n_elem": 3036,
+ "target_elements": 4000,
+ "gap": 964,
+ "cutoff_score": 1.588074803352356,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3945560455322266,
+ "score_mean": 5.307405004373322e-08,
+ "score_p50": -0.2475365251302719,
+ "score_p90": 1.1626225709915161,
+ "fraction_gt1": 0.14173913043478262,
+ "n_inside": 1502,
+ "n_interface": 1948,
+ "n_outside": 0,
+ "selected_inside_frac": 0.9805825242718447,
+ "selected_interface_frac": 0.019417475728155338,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.44270833333333337,
+ "selected_y_range": 0.6666666666666667,
+ "step": 13,
+ "n_elem": 3450,
+ "target_elements": 4000,
+ "gap": 550,
+ "cutoff_score": 1.6406188011169434,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1332201957702637,
+ "score_mean": 1.2389780579269427e-07,
+ "score_p50": -0.08617517352104187,
+ "score_p90": 1.2809889316558838,
+ "fraction_gt1": 0.1395584876934788,
+ "n_inside": 1977,
+ "n_interface": 1964,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7368421052631579,
+ "selected_interface_frac": 0.2631578947368421,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.6458333333333334,
+ "step": 14,
+ "n_elem": 3941,
+ "target_elements": 4000,
+ "gap": 59,
+ "cutoff_score": 1.8073654174804688,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 18,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.14097731583445006,
+ "max_err": 0.3708161028618547,
+ "actual_elements": 8223,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.31268930435180664,
+ "score_mean": 0.14973831176757812,
+ "score_p50": 0.12478189915418625,
+ "score_p90": 0.31268930435180664,
+ "fraction_gt1": 0.0,
+ "n_inside": 68,
+ "n_interface": 444,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3958333333333333,
+ "selected_y_range": 0.3958333333333333,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.31268930435180664,
+ "num_tied_at_cutoff": 68,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.31268930435180664,
+ "score_mean": 0.13647492229938507,
+ "score_p50": 0.12478189915418625,
+ "score_p90": 0.22110474109649658,
+ "fraction_gt1": 0.0,
+ "n_inside": 137,
+ "n_interface": 499,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.2708333333333333,
+ "step": 1,
+ "n_elem": 636,
+ "target_elements": 8000,
+ "gap": 7364,
+ "cutoff_score": 0.31268930435180664,
+ "num_tied_at_cutoff": 32,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.31268930435180664,
+ "score_mean": 0.13158893585205078,
+ "score_p50": 0.12478189915418625,
+ "score_p90": 0.15634465217590332,
+ "fraction_gt1": 0.0,
+ "n_inside": 236,
+ "n_interface": 502,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.375,
+ "step": 2,
+ "n_elem": 738,
+ "target_elements": 8000,
+ "gap": 7262,
+ "cutoff_score": 0.22110474109649658,
+ "num_tied_at_cutoff": 28,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15634465217590332,
+ "score_mean": 0.12223470211029053,
+ "score_p50": 0.12478189915418625,
+ "score_p90": 0.15634465217590332,
+ "fraction_gt1": 0.0,
+ "n_inside": 333,
+ "n_interface": 529,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3958333333333333,
+ "selected_y_range": 0.40625000000000006,
+ "step": 3,
+ "n_elem": 862,
+ "target_elements": 8000,
+ "gap": 7138,
+ "cutoff_score": 0.15634465217590332,
+ "num_tied_at_cutoff": 206,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15634465217590332,
+ "score_mean": 0.10438445955514908,
+ "score_p50": 0.11055237054824829,
+ "score_p90": 0.15634465217590332,
+ "fraction_gt1": 0.0,
+ "n_inside": 452,
+ "n_interface": 652,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34374999999999994,
+ "selected_y_range": 0.3541666666666667,
+ "step": 4,
+ "n_elem": 1104,
+ "target_elements": 8000,
+ "gap": 6896,
+ "cutoff_score": 0.15634465217590332,
+ "num_tied_at_cutoff": 144,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15634465217590332,
+ "score_mean": 0.0968390479683876,
+ "score_p50": 0.11055237054824829,
+ "score_p90": 0.12478189915418625,
+ "fraction_gt1": 0.0,
+ "n_inside": 626,
+ "n_interface": 664,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666674,
+ "selected_y_range": 0.22916666666666669,
+ "step": 5,
+ "n_elem": 1290,
+ "target_elements": 8000,
+ "gap": 6710,
+ "cutoff_score": 0.15634465217590332,
+ "num_tied_at_cutoff": 90,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15634465217590332,
+ "score_mean": 0.0913110002875328,
+ "score_p50": 0.07817232608795166,
+ "score_p90": 0.12478189915418625,
+ "fraction_gt1": 0.0,
+ "n_inside": 806,
+ "n_interface": 664,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7727272727272727,
+ "selected_interface_frac": 0.22727272727272727,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.5,
+ "step": 6,
+ "n_elem": 1470,
+ "target_elements": 8000,
+ "gap": 6530,
+ "cutoff_score": 0.12478189915418625,
+ "num_tied_at_cutoff": 384,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12478189915418625,
+ "score_mean": 0.08635908365249634,
+ "score_p50": 0.07817232608795166,
+ "score_p90": 0.12478189915418625,
+ "fraction_gt1": 0.0,
+ "n_inside": 930,
+ "n_interface": 730,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.6458333333333333,
+ "step": 7,
+ "n_elem": 1660,
+ "target_elements": 8000,
+ "gap": 6340,
+ "cutoff_score": 0.12478189915418625,
+ "num_tied_at_cutoff": 358,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12478189915418625,
+ "score_mean": 0.08083821088075638,
+ "score_p50": 0.07817232608795166,
+ "score_p90": 0.12478189915418625,
+ "fraction_gt1": 0.0,
+ "n_inside": 930,
+ "n_interface": 967,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.875,
+ "step": 8,
+ "n_elem": 1897,
+ "target_elements": 8000,
+ "gap": 6103,
+ "cutoff_score": 0.12478189915418625,
+ "num_tied_at_cutoff": 270,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12478189915418625,
+ "score_mean": 0.07588154077529907,
+ "score_p50": 0.07817232608795166,
+ "score_p90": 0.11055237054824829,
+ "fraction_gt1": 0.0,
+ "n_inside": 930,
+ "n_interface": 1243,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 2173,
+ "target_elements": 8000,
+ "gap": 5827,
+ "cutoff_score": 0.12478189915418625,
+ "num_tied_at_cutoff": 174,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12478189915418625,
+ "score_mean": 0.07186287641525269,
+ "score_p50": 0.062390949577093124,
+ "score_p90": 0.08823412656784058,
+ "fraction_gt1": 0.0,
+ "n_inside": 930,
+ "n_interface": 1534,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0136986301369863,
+ "selected_interface_frac": 0.9863013698630136,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 10,
+ "n_elem": 2464,
+ "target_elements": 8000,
+ "gap": 5536,
+ "cutoff_score": 0.11055237054824829,
+ "num_tied_at_cutoff": 144,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11055237054824829,
+ "score_mean": 0.06896433979272842,
+ "score_p50": 0.062390949577093124,
+ "score_p90": 0.07817232608795166,
+ "fraction_gt1": 0.0,
+ "n_inside": 936,
+ "n_interface": 1781,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.36979166666666663,
+ "selected_y_range": 0.390625,
+ "step": 11,
+ "n_elem": 2717,
+ "target_elements": 8000,
+ "gap": 5283,
+ "cutoff_score": 0.11055237054824829,
+ "num_tied_at_cutoff": 143,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11055237054824829,
+ "score_mean": 0.06450492143630981,
+ "score_p50": 0.062390949577093124,
+ "score_p90": 0.07817232608795166,
+ "fraction_gt1": 0.0,
+ "n_inside": 1271,
+ "n_interface": 1838,
+ "n_outside": 0,
+ "selected_inside_frac": 0.6021505376344086,
+ "selected_interface_frac": 0.3978494623655914,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.625,
+ "step": 12,
+ "n_elem": 3109,
+ "target_elements": 8000,
+ "gap": 4891,
+ "cutoff_score": 0.08823412656784058,
+ "num_tied_at_cutoff": 97,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.08823412656784058,
+ "score_mean": 0.06075851991772652,
+ "score_p50": 0.062390949577093124,
+ "score_p90": 0.07817232608795166,
+ "fraction_gt1": 0.0,
+ "n_inside": 1495,
+ "n_interface": 2023,
+ "n_outside": 0,
+ "selected_inside_frac": 0.44761904761904764,
+ "selected_interface_frac": 0.5523809523809524,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333334,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3518,
+ "target_elements": 8000,
+ "gap": 4482,
+ "cutoff_score": 0.07817232608795166,
+ "num_tied_at_cutoff": 666,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.07817232608795166,
+ "score_mean": 0.054812364280223846,
+ "score_p50": 0.055276185274124146,
+ "score_p90": 0.07817232608795166,
+ "fraction_gt1": 0.0,
+ "n_inside": 1709,
+ "n_interface": 2477,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.3802083333333333,
+ "step": 14,
+ "n_elem": 4186,
+ "target_elements": 8000,
+ "gap": 3814,
+ "cutoff_score": 0.07817232608795166,
+ "num_tied_at_cutoff": 570,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.07817232608795166,
+ "score_mean": 0.051543835550546646,
+ "score_p50": 0.055276185274124146,
+ "score_p90": 0.062390949577093124,
+ "fraction_gt1": 0.0,
+ "n_inside": 2240,
+ "n_interface": 2480,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.30208333333333326,
+ "selected_y_range": 0.3020833333333333,
+ "step": 15,
+ "n_elem": 4720,
+ "target_elements": 8000,
+ "gap": 3280,
+ "cutoff_score": 0.07817232608795166,
+ "num_tied_at_cutoff": 402,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.07817232608795166,
+ "score_mean": 0.048662297427654266,
+ "score_p50": 0.04411706328392029,
+ "score_p90": 0.062390949577093124,
+ "fraction_gt1": 0.0,
+ "n_inside": 2840,
+ "n_interface": 2480,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333326,
+ "selected_y_range": 0.22395833333333331,
+ "step": 16,
+ "n_elem": 5320,
+ "target_elements": 8000,
+ "gap": 2680,
+ "cutoff_score": 0.07817232608795166,
+ "num_tied_at_cutoff": 206,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.07817232608795166,
+ "score_mean": 0.046394795179367065,
+ "score_p50": 0.03908616304397583,
+ "score_p90": 0.062390949577093124,
+ "fraction_gt1": 0.0,
+ "n_inside": 3426,
+ "n_interface": 2480,
+ "n_outside": 0,
+ "selected_inside_frac": 0.14689265536723164,
+ "selected_interface_frac": 0.8531073446327684,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.59375,
+ "step": 17,
+ "n_elem": 5906,
+ "target_elements": 8000,
+ "gap": 2094,
+ "cutoff_score": 0.062390949577093124,
+ "num_tied_at_cutoff": 1338,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.062390949577093124,
+ "score_mean": 0.04355202987790108,
+ "score_p50": 0.03908616304397583,
+ "score_p90": 0.062390949577093124,
+ "fraction_gt1": 0.0,
+ "n_inside": 3520,
+ "n_interface": 3146,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6979166666666667,
+ "selected_y_range": 0.71875,
+ "step": 18,
+ "n_elem": 6666,
+ "target_elements": 8000,
+ "gap": 1334,
+ "cutoff_score": 0.062390949577093124,
+ "num_tied_at_cutoff": 1108,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.062390949577093124,
+ "score_mean": 0.04107441380620003,
+ "score_p50": 0.03908616304397583,
+ "score_p90": 0.062390949577093124,
+ "fraction_gt1": 0.0,
+ "n_inside": 3520,
+ "n_interface": 3958,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.90625,
+ "step": 19,
+ "n_elem": 7478,
+ "target_elements": 8000,
+ "gap": 522,
+ "cutoff_score": 0.062390949577093124,
+ "num_tied_at_cutoff": 844,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 18,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.1399189779528564,
+ "max_err": 0.3717193519338115,
+ "actual_elements": 8449,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9824209809303284,
+ "score_mean": 0.12232765555381775,
+ "score_p50": 2.211448091316015e-08,
+ "score_p90": 0.739281415939331,
+ "fraction_gt1": 0.0,
+ "n_inside": 68,
+ "n_interface": 444,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.2916666666666667,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9690935015678406,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.974609375,
+ "score_mean": 0.09398568421602249,
+ "score_p50": 2.911710907937959e-06,
+ "score_p90": 0.4097967743873596,
+ "fraction_gt1": 0.0,
+ "n_inside": 134,
+ "n_interface": 454,
+ "n_outside": 0,
+ "selected_inside_frac": 0.8235294117647058,
+ "selected_interface_frac": 0.17647058823529413,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25,
+ "selected_y_range": 0.3958333333333333,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 8000,
+ "gap": 7412,
+ "cutoff_score": 0.9499219655990601,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9775201678276062,
+ "score_mean": 0.07953057438135147,
+ "score_p50": 8.568990597268566e-05,
+ "score_p90": 0.17509514093399048,
+ "fraction_gt1": 0.0,
+ "n_inside": 205,
+ "n_interface": 485,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.43749999999999994,
+ "step": 2,
+ "n_elem": 690,
+ "target_elements": 8000,
+ "gap": 7310,
+ "cutoff_score": 0.9239787459373474,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9759549498558044,
+ "score_mean": 0.11429779976606369,
+ "score_p50": 0.0002495083608664572,
+ "score_p90": 0.5701617002487183,
+ "fraction_gt1": 0.0,
+ "n_inside": 245,
+ "n_interface": 551,
+ "n_outside": 0,
+ "selected_inside_frac": 0.6521739130434783,
+ "selected_interface_frac": 0.34782608695652173,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.4479166666666667,
+ "step": 3,
+ "n_elem": 796,
+ "target_elements": 8000,
+ "gap": 7204,
+ "cutoff_score": 0.8865976929664612,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9805507659912109,
+ "score_mean": 0.14917604625225067,
+ "score_p50": 0.0002460355462972075,
+ "score_p90": 0.7157517671585083,
+ "fraction_gt1": 0.0,
+ "n_inside": 334,
+ "n_interface": 602,
+ "n_outside": 0,
+ "selected_inside_frac": 0.6071428571428571,
+ "selected_interface_frac": 0.39285714285714285,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 936,
+ "target_elements": 8000,
+ "gap": 7064,
+ "cutoff_score": 0.9231388568878174,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9851996898651123,
+ "score_mean": 0.15492717921733856,
+ "score_p50": 0.00021296509657986462,
+ "score_p90": 0.7898117303848267,
+ "fraction_gt1": 0.0,
+ "n_inside": 419,
+ "n_interface": 689,
+ "n_outside": 0,
+ "selected_inside_frac": 0.8484848484848485,
+ "selected_interface_frac": 0.15151515151515152,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666663,
+ "selected_y_range": 0.6666666666666667,
+ "step": 5,
+ "n_elem": 1108,
+ "target_elements": 8000,
+ "gap": 6892,
+ "cutoff_score": 0.9495992660522461,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9798663258552551,
+ "score_mean": 0.12905550003051758,
+ "score_p50": 0.00045990588841959834,
+ "score_p90": 0.6664384007453918,
+ "fraction_gt1": 0.0,
+ "n_inside": 567,
+ "n_interface": 743,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5128205128205128,
+ "selected_interface_frac": 0.48717948717948717,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.7708333333333333,
+ "step": 6,
+ "n_elem": 1310,
+ "target_elements": 8000,
+ "gap": 6690,
+ "cutoff_score": 0.9238672256469727,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9839729070663452,
+ "score_mean": 0.11183256655931473,
+ "score_p50": 0.0015131962718442082,
+ "score_p90": 0.5506990551948547,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 854,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3695652173913043,
+ "selected_interface_frac": 0.6304347826086957,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.7916666666666667,
+ "step": 7,
+ "n_elem": 1539,
+ "target_elements": 8000,
+ "gap": 6461,
+ "cutoff_score": 0.8679277896881104,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9874845147132874,
+ "score_mean": 0.11207211762666702,
+ "score_p50": 0.0029439995996654034,
+ "score_p90": 0.4905548095703125,
+ "fraction_gt1": 0.0,
+ "n_inside": 781,
+ "n_interface": 1031,
+ "n_outside": 0,
+ "selected_inside_frac": 0.24074074074074073,
+ "selected_interface_frac": 0.7592592592592593,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 8,
+ "n_elem": 1812,
+ "target_elements": 8000,
+ "gap": 6188,
+ "cutoff_score": 0.866354763507843,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.980680525302887,
+ "score_mean": 0.13658343255519867,
+ "score_p50": 0.003557974938303232,
+ "score_p90": 0.5873838663101196,
+ "fraction_gt1": 0.0,
+ "n_inside": 867,
+ "n_interface": 1261,
+ "n_outside": 0,
+ "selected_inside_frac": 0.2222222222222222,
+ "selected_interface_frac": 0.7777777777777778,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.9479166666666667,
+ "step": 9,
+ "n_elem": 2128,
+ "target_elements": 8000,
+ "gap": 5872,
+ "cutoff_score": 0.8620074391365051,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9760388731956482,
+ "score_mean": 0.16058382391929626,
+ "score_p50": 0.0042586736381053925,
+ "score_p90": 0.7092594504356384,
+ "fraction_gt1": 0.0,
+ "n_inside": 957,
+ "n_interface": 1518,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7432432432432432,
+ "selected_interface_frac": 0.25675675675675674,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7604166666666667,
+ "selected_y_range": 0.8854166666666666,
+ "step": 10,
+ "n_elem": 2475,
+ "target_elements": 8000,
+ "gap": 5525,
+ "cutoff_score": 0.8988246321678162,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9891147613525391,
+ "score_mean": 0.17210492491722107,
+ "score_p50": 0.003883677301928401,
+ "score_p90": 0.7735196352005005,
+ "fraction_gt1": 0.0,
+ "n_inside": 1288,
+ "n_interface": 1629,
+ "n_outside": 0,
+ "selected_inside_frac": 0.40229885057471265,
+ "selected_interface_frac": 0.5977011494252874,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.9166666666666667,
+ "step": 11,
+ "n_elem": 2917,
+ "target_elements": 8000,
+ "gap": 5083,
+ "cutoff_score": 0.9120863080024719,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9777413010597229,
+ "score_mean": 0.164240300655365,
+ "score_p50": 0.002658464014530182,
+ "score_p90": 0.7412118911743164,
+ "fraction_gt1": 0.0,
+ "n_inside": 1488,
+ "n_interface": 1933,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5098039215686274,
+ "selected_interface_frac": 0.49019607843137253,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 12,
+ "n_elem": 3421,
+ "target_elements": 8000,
+ "gap": 4579,
+ "cutoff_score": 0.915090799331665,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9837896227836609,
+ "score_mean": 0.15637166798114777,
+ "score_p50": 0.0025050416588783264,
+ "score_p90": 0.7034538388252258,
+ "fraction_gt1": 0.0,
+ "n_inside": 1776,
+ "n_interface": 2234,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3333333333333333,
+ "selected_interface_frac": 0.6666666666666666,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.96875,
+ "step": 13,
+ "n_elem": 4010,
+ "target_elements": 8000,
+ "gap": 3990,
+ "cutoff_score": 0.8855765461921692,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9835648536682129,
+ "score_mean": 0.14725930988788605,
+ "score_p50": 0.00266857398673892,
+ "score_p90": 0.6895186305046082,
+ "fraction_gt1": 0.0,
+ "n_inside": 2026,
+ "n_interface": 2662,
+ "n_outside": 0,
+ "selected_inside_frac": 0.37142857142857144,
+ "selected_interface_frac": 0.6285714285714286,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9739583333333333,
+ "selected_y_range": 0.9791666666666667,
+ "step": 14,
+ "n_elem": 4688,
+ "target_elements": 8000,
+ "gap": 3312,
+ "cutoff_score": 0.872140645980835,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9716002345085144,
+ "score_mean": 0.1446654200553894,
+ "score_p50": 0.0027139969170093536,
+ "score_p90": 0.6582590937614441,
+ "fraction_gt1": 0.0,
+ "n_inside": 2344,
+ "n_interface": 3151,
+ "n_outside": 0,
+ "selected_inside_frac": 0.36585365853658536,
+ "selected_interface_frac": 0.6341463414634146,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.671875,
+ "selected_y_range": 0.9375,
+ "step": 15,
+ "n_elem": 5495,
+ "target_elements": 8000,
+ "gap": 2505,
+ "cutoff_score": 0.864945650100708,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9665747880935669,
+ "score_mean": 0.14732791483402252,
+ "score_p50": 0.003320016898214817,
+ "score_p90": 0.6779677271842957,
+ "fraction_gt1": 0.0,
+ "n_inside": 2703,
+ "n_interface": 3709,
+ "n_outside": 0,
+ "selected_inside_frac": 0.453125,
+ "selected_interface_frac": 0.546875,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.734375,
+ "selected_y_range": 0.9479166666666667,
+ "step": 16,
+ "n_elem": 6412,
+ "target_elements": 8000,
+ "gap": 1588,
+ "cutoff_score": 0.8784128427505493,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9848968982696533,
+ "score_mean": 0.14348389208316803,
+ "score_p50": 0.004366714041680098,
+ "score_p90": 0.6430350542068481,
+ "fraction_gt1": 0.0,
+ "n_inside": 3229,
+ "n_interface": 4317,
+ "n_outside": 0,
+ "selected_inside_frac": 0.48344370860927155,
+ "selected_interface_frac": 0.5165562913907285,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7552083333333333,
+ "selected_y_range": 0.875,
+ "step": 17,
+ "n_elem": 7546,
+ "target_elements": 8000,
+ "gap": 454,
+ "cutoff_score": 0.905209481716156,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 18,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.14214791110892216,
+ "max_err": 0.3695234902420778,
+ "actual_elements": 8173,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.7635397911071777,
+ "score_mean": 3.2782554626464844e-07,
+ "score_p50": -0.40700775384902954,
+ "score_p90": 2.222975969314575,
+ "fraction_gt1": 0.1328125,
+ "n_inside": 68,
+ "n_interface": 444,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.2916666666666667,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 2.7405149936676025,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.39369797706604,
+ "score_mean": -1.9462740752373975e-08,
+ "score_p50": -0.3635123372077942,
+ "score_p90": 0.6417871117591858,
+ "fraction_gt1": 0.08673469387755102,
+ "n_inside": 134,
+ "n_interface": 454,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3958333333333333,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 8000,
+ "gap": 7412,
+ "cutoff_score": 3.3324460983276367,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 4.614664554595947,
+ "score_mean": -6.134747110309036e-08,
+ "score_p50": -0.35310542583465576,
+ "score_p90": 1.1473751068115234,
+ "fraction_gt1": 0.1154970760233918,
+ "n_inside": 211,
+ "n_interface": 473,
+ "n_outside": 0,
+ "selected_inside_frac": 0.85,
+ "selected_interface_frac": 0.15,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.30208333333333337,
+ "selected_y_range": 0.3645833333333333,
+ "step": 2,
+ "n_elem": 684,
+ "target_elements": 8000,
+ "gap": 7316,
+ "cutoff_score": 1.8244867324829102,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 3.126037120819092,
+ "score_mean": 2.3061141973812482e-07,
+ "score_p50": -0.29996800422668457,
+ "score_p90": 1.2829740047454834,
+ "fraction_gt1": 0.12720403022670027,
+ "n_inside": 297,
+ "n_interface": 497,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.3125,
+ "step": 3,
+ "n_elem": 794,
+ "target_elements": 8000,
+ "gap": 7206,
+ "cutoff_score": 1.8351387977600098,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0212202072143555,
+ "score_mean": 2.4245957774837734e-07,
+ "score_p50": -0.09745994210243225,
+ "score_p90": 1.3688790798187256,
+ "fraction_gt1": 0.1408898305084746,
+ "n_inside": 404,
+ "n_interface": 540,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.34375000000000006,
+ "step": 4,
+ "n_elem": 944,
+ "target_elements": 8000,
+ "gap": 7056,
+ "cutoff_score": 1.8058165311813354,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.097609043121338,
+ "score_mean": 0.0,
+ "score_p50": -0.009419769048690796,
+ "score_p90": 1.4769212007522583,
+ "fraction_gt1": 0.13883847549909256,
+ "n_inside": 546,
+ "n_interface": 556,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7575757575757576,
+ "selected_interface_frac": 0.24242424242424243,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28125,
+ "selected_y_range": 0.5,
+ "step": 5,
+ "n_elem": 1102,
+ "target_elements": 8000,
+ "gap": 6898,
+ "cutoff_score": 1.5830546617507935,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1776115894317627,
+ "score_mean": -2.3804663129567416e-08,
+ "score_p50": -0.03364501893520355,
+ "score_p90": 1.432813048362732,
+ "fraction_gt1": 0.1419656786271451,
+ "n_inside": 648,
+ "n_interface": 634,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4473684210526316,
+ "selected_interface_frac": 0.5526315789473685,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.40625,
+ "selected_y_range": 0.625,
+ "step": 6,
+ "n_elem": 1282,
+ "target_elements": 8000,
+ "gap": 6718,
+ "cutoff_score": 1.7805255651474,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.557999610900879,
+ "score_mean": 1.2288957407236012e-07,
+ "score_p50": -0.4401373267173767,
+ "score_p90": 1.2766480445861816,
+ "fraction_gt1": 0.11610738255033556,
+ "n_inside": 730,
+ "n_interface": 760,
+ "n_outside": 0,
+ "selected_inside_frac": 0.2727272727272727,
+ "selected_interface_frac": 0.7272727272727273,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.6875,
+ "step": 7,
+ "n_elem": 1490,
+ "target_elements": 8000,
+ "gap": 6510,
+ "cutoff_score": 2.123270034790039,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5054538249969482,
+ "score_mean": 1.7951516895209352e-07,
+ "score_p50": -0.3549685478210449,
+ "score_p90": 1.0752314329147339,
+ "fraction_gt1": 0.10764705882352942,
+ "n_inside": 789,
+ "n_interface": 911,
+ "n_outside": 0,
+ "selected_inside_frac": 0.19607843137254902,
+ "selected_interface_frac": 0.803921568627451,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.875,
+ "step": 8,
+ "n_elem": 1700,
+ "target_elements": 8000,
+ "gap": 6300,
+ "cutoff_score": 2.110211133956909,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4955995082855225,
+ "score_mean": 1.7162237497814203e-07,
+ "score_p50": -0.2758154571056366,
+ "score_p90": 1.110772728919983,
+ "fraction_gt1": 0.1165644171779141,
+ "n_inside": 852,
+ "n_interface": 1104,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5172413793103449,
+ "selected_interface_frac": 0.4827586206896552,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.78125,
+ "step": 9,
+ "n_elem": 1956,
+ "target_elements": 8000,
+ "gap": 6044,
+ "cutoff_score": 1.8683909177780151,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3291072845458984,
+ "score_mean": 6.754665093922085e-08,
+ "score_p50": -0.17971833050251007,
+ "score_p90": 1.167832374572754,
+ "fraction_gt1": 0.1407702523240372,
+ "n_inside": 1001,
+ "n_interface": 1258,
+ "n_outside": 0,
+ "selected_inside_frac": 0.582089552238806,
+ "selected_interface_frac": 0.417910447761194,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8645833333333334,
+ "selected_y_range": 0.9583333333333333,
+ "step": 10,
+ "n_elem": 2259,
+ "target_elements": 8000,
+ "gap": 5741,
+ "cutoff_score": 1.7963166236877441,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.465984582901001,
+ "score_mean": 0.0,
+ "score_p50": -0.046994537115097046,
+ "score_p90": 1.1491904258728027,
+ "fraction_gt1": 0.14334213504337986,
+ "n_inside": 1210,
+ "n_interface": 1441,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3037974683544304,
+ "selected_interface_frac": 0.6962025316455697,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9583333333333333,
+ "step": 11,
+ "n_elem": 2651,
+ "target_elements": 8000,
+ "gap": 5349,
+ "cutoff_score": 1.6947910785675049,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.7662014961242676,
+ "score_mean": -1.0051903132080042e-07,
+ "score_p50": -0.3614617586135864,
+ "score_p90": 1.1022484302520752,
+ "fraction_gt1": 0.1297760210803689,
+ "n_inside": 1328,
+ "n_interface": 1708,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4175824175824176,
+ "selected_interface_frac": 0.5824175824175825,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.96875,
+ "step": 12,
+ "n_elem": 3036,
+ "target_elements": 8000,
+ "gap": 4964,
+ "cutoff_score": 1.588074803352356,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3945560455322266,
+ "score_mean": 5.307405004373322e-08,
+ "score_p50": -0.2475365251302719,
+ "score_p90": 1.1626225709915161,
+ "fraction_gt1": 0.14173913043478262,
+ "n_inside": 1502,
+ "n_interface": 1948,
+ "n_outside": 0,
+ "selected_inside_frac": 0.9805825242718447,
+ "selected_interface_frac": 0.019417475728155338,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.44270833333333337,
+ "selected_y_range": 0.6666666666666667,
+ "step": 13,
+ "n_elem": 3450,
+ "target_elements": 8000,
+ "gap": 4550,
+ "cutoff_score": 1.6406188011169434,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1332201957702637,
+ "score_mean": 1.2389780579269427e-07,
+ "score_p50": -0.08617517352104187,
+ "score_p90": 1.2809889316558838,
+ "fraction_gt1": 0.1395584876934788,
+ "n_inside": 1977,
+ "n_interface": 1964,
+ "n_outside": 0,
+ "selected_inside_frac": 0.9152542372881356,
+ "selected_interface_frac": 0.0847457627118644,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.6666666666666667,
+ "step": 14,
+ "n_elem": 3941,
+ "target_elements": 8000,
+ "gap": 4059,
+ "cutoff_score": 1.574336290359497,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.258223056793213,
+ "score_mean": 2.692331513287627e-08,
+ "score_p50": -0.16396503150463104,
+ "score_p90": 1.3149898052215576,
+ "fraction_gt1": 0.14005293339214822,
+ "n_inside": 2443,
+ "n_interface": 2091,
+ "n_outside": 0,
+ "selected_inside_frac": 0.41911764705882354,
+ "selected_interface_frac": 0.5808823529411765,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.9583333333333334,
+ "step": 15,
+ "n_elem": 4534,
+ "target_elements": 8000,
+ "gap": 3466,
+ "cutoff_score": 1.5277501344680786,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2513508796691895,
+ "score_mean": 6.986091705130093e-08,
+ "score_p50": -0.038617730140686035,
+ "score_p90": 1.1824110746383667,
+ "fraction_gt1": 0.1316291491797024,
+ "n_inside": 2738,
+ "n_interface": 2504,
+ "n_outside": 0,
+ "selected_inside_frac": 0.16560509554140126,
+ "selected_interface_frac": 0.8343949044585988,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.90625,
+ "step": 16,
+ "n_elem": 5242,
+ "target_elements": 8000,
+ "gap": 2758,
+ "cutoff_score": 1.7482305765151978,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.389805555343628,
+ "score_mean": -4.0758035169119466e-08,
+ "score_p50": -0.3082156777381897,
+ "score_p90": 1.1722038984298706,
+ "fraction_gt1": 0.12554257095158597,
+ "n_inside": 2885,
+ "n_interface": 3105,
+ "n_outside": 0,
+ "selected_inside_frac": 0.12290502793296089,
+ "selected_interface_frac": 0.8770949720670391,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.9791666666666667,
+ "step": 17,
+ "n_elem": 5990,
+ "target_elements": 8000,
+ "gap": 2010,
+ "cutoff_score": 1.7906746864318848,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5974299907684326,
+ "score_mean": -3.58977523262638e-08,
+ "score_p50": -0.3442285358905792,
+ "score_p90": 1.107119083404541,
+ "fraction_gt1": 0.10645493309807381,
+ "n_inside": 3010,
+ "n_interface": 3791,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7009803921568627,
+ "selected_interface_frac": 0.29901960784313725,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333334,
+ "selected_y_range": 0.9791666666666667,
+ "step": 18,
+ "n_elem": 6801,
+ "target_elements": 8000,
+ "gap": 1199,
+ "cutoff_score": 1.7197120189666748,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.7177939414978027,
+ "score_mean": 2.1828897445175244e-07,
+ "score_p50": -0.29585492610931396,
+ "score_p90": 0.9740715026855469,
+ "fraction_gt1": 0.09349853110231192,
+ "n_inside": 3746,
+ "n_interface": 4083,
+ "n_outside": 0,
+ "selected_inside_frac": 0.631578947368421,
+ "selected_interface_frac": 0.3684210526315789,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7421875,
+ "selected_y_range": 0.9791666666666667,
+ "step": 19,
+ "n_elem": 7829,
+ "target_elements": 8000,
+ "gap": 171,
+ "cutoff_score": 1.9306113719940186,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 18,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.2709790455376742,
+ "max_err": 0.19545529584205285,
+ "actual_elements": 2077,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.3139084279537201,
+ "score_mean": 0.19560372829437256,
+ "score_p50": 0.182230144739151,
+ "score_p90": 0.3007405996322632,
+ "fraction_gt1": 0.0,
+ "n_inside": 52,
+ "n_interface": 344,
+ "n_outside": 116,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.33333333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.3139084279537201,
+ "num_tied_at_cutoff": 52,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.3139084279537201,
+ "score_mean": 0.17798875272274017,
+ "score_p50": 0.182230144739151,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 110,
+ "n_interface": 388,
+ "n_outside": 116,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333326,
+ "selected_y_range": 0.20833333333333326,
+ "step": 1,
+ "n_elem": 614,
+ "target_elements": 2000,
+ "gap": 1386,
+ "cutoff_score": 0.3139084279537201,
+ "num_tied_at_cutoff": 22,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.22196677327156067,
+ "score_mean": 0.16949792206287384,
+ "score_p50": 0.182230144739151,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 190,
+ "n_interface": 388,
+ "n_outside": 116,
+ "selected_inside_frac": 0.7,
+ "selected_interface_frac": 0.3,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.32291666666666663,
+ "step": 2,
+ "n_elem": 694,
+ "target_elements": 2000,
+ "gap": 1306,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 434,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.1553240418434143,
+ "score_p50": 0.182230144739151,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 436,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.5416666666666667,
+ "step": 3,
+ "n_elem": 804,
+ "target_elements": 2000,
+ "gap": 1196,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 418,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.14170286059379578,
+ "score_p50": 0.15695421397686005,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 573,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 941,
+ "target_elements": 2000,
+ "gap": 1059,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 366,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.13121397793293,
+ "score_p50": 0.12885616719722748,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 714,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 5,
+ "n_elem": 1082,
+ "target_elements": 2000,
+ "gap": 918,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 316,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.12159214168787003,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 888,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1256,
+ "target_elements": 2000,
+ "gap": 744,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 250,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.11344945430755615,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 1084,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.8958333333333333,
+ "step": 7,
+ "n_elem": 1452,
+ "target_elements": 2000,
+ "gap": 548,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 180,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.10652299970388412,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.15695421397686005,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 1288,
+ "n_outside": 137,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1677,
+ "target_elements": 2000,
+ "gap": 323,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 94,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.10140486806631088,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.12885616719722748,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 1296,
+ "n_outside": 339,
+ "selected_inside_frac": 0.2972972972972973,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.7027027027027027,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.8333333333333333,
+ "step": 9,
+ "n_elem": 1887,
+ "target_elements": 2000,
+ "gap": 113,
+ "cutoff_score": 0.15695421397686005,
+ "num_tied_at_cutoff": 157,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 22,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.27467565094056906,
+ "max_err": 0.196849284584513,
+ "actual_elements": 2055,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9891124367713928,
+ "score_mean": 0.11546915769577026,
+ "score_p50": 5.662667001971045e-10,
+ "score_p90": 0.6390256881713867,
+ "fraction_gt1": 0.0,
+ "n_inside": 52,
+ "n_interface": 344,
+ "n_outside": 116,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.25,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9734729528427124,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9766668081283569,
+ "score_mean": 0.09381262958049774,
+ "score_p50": 1.354442602519157e-08,
+ "score_p90": 0.4386219084262848,
+ "fraction_gt1": 0.0,
+ "n_inside": 121,
+ "n_interface": 349,
+ "n_outside": 116,
+ "selected_inside_frac": 0.47058823529411764,
+ "selected_interface_frac": 0.5294117647058824,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.375,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 2000,
+ "gap": 1414,
+ "cutoff_score": 0.9406792521476746,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9862961769104004,
+ "score_mean": 0.05686844512820244,
+ "score_p50": 1.8453270058671478e-06,
+ "score_p90": 0.15268166363239288,
+ "fraction_gt1": 0.0,
+ "n_inside": 159,
+ "n_interface": 422,
+ "n_outside": 116,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.39583333333333326,
+ "selected_y_range": 0.5625,
+ "step": 2,
+ "n_elem": 697,
+ "target_elements": 2000,
+ "gap": 1303,
+ "cutoff_score": 0.7853129506111145,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9720667004585266,
+ "score_mean": 0.09702292084693909,
+ "score_p50": 7.242098945425823e-06,
+ "score_p90": 0.46015769243240356,
+ "fraction_gt1": 0.0,
+ "n_inside": 197,
+ "n_interface": 484,
+ "n_outside": 116,
+ "selected_inside_frac": 0.9565217391304348,
+ "selected_interface_frac": 0.043478260869565216,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25,
+ "selected_y_range": 0.26041666666666674,
+ "step": 3,
+ "n_elem": 797,
+ "target_elements": 2000,
+ "gap": 1203,
+ "cutoff_score": 0.9390133619308472,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9862684607505798,
+ "score_mean": 0.09238310903310776,
+ "score_p50": 2.181318632210605e-05,
+ "score_p90": 0.3561573326587677,
+ "fraction_gt1": 0.0,
+ "n_inside": 306,
+ "n_interface": 493,
+ "n_outside": 116,
+ "selected_inside_frac": 0.48148148148148145,
+ "selected_interface_frac": 0.5185185185185185,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 915,
+ "target_elements": 2000,
+ "gap": 1085,
+ "cutoff_score": 0.9441143274307251,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9888188242912292,
+ "score_mean": 0.09381899237632751,
+ "score_p50": 6.75135524943471e-05,
+ "score_p90": 0.3909471333026886,
+ "fraction_gt1": 0.0,
+ "n_inside": 366,
+ "n_interface": 586,
+ "n_outside": 116,
+ "selected_inside_frac": 0.5625,
+ "selected_interface_frac": 0.4375,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34375,
+ "selected_y_range": 0.65625,
+ "step": 5,
+ "n_elem": 1068,
+ "target_elements": 2000,
+ "gap": 932,
+ "cutoff_score": 0.8908727169036865,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9800784587860107,
+ "score_mean": 0.09136144071817398,
+ "score_p50": 0.00035227107582613826,
+ "score_p90": 0.4002313017845154,
+ "fraction_gt1": 0.0,
+ "n_inside": 457,
+ "n_interface": 677,
+ "n_outside": 116,
+ "selected_inside_frac": 0.2972972972972973,
+ "selected_interface_frac": 0.7027027027027027,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.46875,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1250,
+ "target_elements": 2000,
+ "gap": 750,
+ "cutoff_score": 0.8760324120521545,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9845714569091797,
+ "score_mean": 0.08120784908533096,
+ "score_p50": 0.0012864975724369287,
+ "score_p90": 0.29707157611846924,
+ "fraction_gt1": 0.0,
+ "n_inside": 516,
+ "n_interface": 840,
+ "n_outside": 116,
+ "selected_inside_frac": 0.4318181818181818,
+ "selected_interface_frac": 0.5681818181818182,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5729166666666667,
+ "selected_y_range": 0.8854166666666666,
+ "step": 7,
+ "n_elem": 1472,
+ "target_elements": 2000,
+ "gap": 528,
+ "cutoff_score": 0.8196656107902527,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9773736000061035,
+ "score_mean": 0.10020328313112259,
+ "score_p50": 0.0022930586710572243,
+ "score_p90": 0.37293145060539246,
+ "fraction_gt1": 0.0,
+ "n_inside": 605,
+ "n_interface": 1026,
+ "n_outside": 118,
+ "selected_inside_frac": 0.34615384615384615,
+ "selected_interface_frac": 0.6153846153846154,
+ "selected_outside_frac": 0.038461538461538464,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.96875,
+ "step": 8,
+ "n_elem": 1749,
+ "target_elements": 2000,
+ "gap": 251,
+ "cutoff_score": 0.7764726877212524,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 22,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.27619993549164473,
+ "max_err": 0.19689260198728098,
+ "actual_elements": 2057,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 3.037043809890747,
+ "score_mean": -7.450580596923828e-08,
+ "score_p50": -0.37296217679977417,
+ "score_p90": 1.347489356994629,
+ "fraction_gt1": 0.119140625,
+ "n_inside": 52,
+ "n_interface": 344,
+ "n_outside": 116,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.25,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 3.0092978477478027,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.8148083686828613,
+ "score_mean": 1.7576250854745012e-07,
+ "score_p50": -0.21060621738433838,
+ "score_p90": 0.8027170896530151,
+ "fraction_gt1": 0.09897610921501707,
+ "n_inside": 121,
+ "n_interface": 349,
+ "n_outside": 116,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.33333333333333326,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 2000,
+ "gap": 1414,
+ "cutoff_score": 3.5117294788360596,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2117199897766113,
+ "score_mean": 4.980613539373735e-07,
+ "score_p50": 0.0768081545829773,
+ "score_p90": 0.23117370903491974,
+ "fraction_gt1": 0.08605341246290801,
+ "n_inside": 187,
+ "n_interface": 371,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333326,
+ "selected_y_range": 0.4583333333333333,
+ "step": 2,
+ "n_elem": 674,
+ "target_elements": 2000,
+ "gap": 1326,
+ "cutoff_score": 2.188779830932617,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.7688426971435547,
+ "score_mean": 8.882865643045079e-08,
+ "score_p50": 0.1628483235836029,
+ "score_p90": 0.8004462122917175,
+ "fraction_gt1": 0.08279430789133248,
+ "n_inside": 189,
+ "n_interface": 468,
+ "n_outside": 116,
+ "selected_inside_frac": 0.6521739130434783,
+ "selected_interface_frac": 0.34782608695652173,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.5208333333333333,
+ "step": 3,
+ "n_elem": 773,
+ "target_elements": 2000,
+ "gap": 1227,
+ "cutoff_score": 1.8332608938217163,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4215011596679688,
+ "score_mean": 6.744215852449997e-08,
+ "score_p50": 0.2782990038394928,
+ "score_p90": 0.7049338221549988,
+ "fraction_gt1": 0.08287292817679558,
+ "n_inside": 274,
+ "n_interface": 515,
+ "n_outside": 116,
+ "selected_inside_frac": 0.7037037037037037,
+ "selected_interface_frac": 0.2962962962962963,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 905,
+ "target_elements": 2000,
+ "gap": 1095,
+ "cutoff_score": 2.035191059112549,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.379047393798828,
+ "score_mean": -5.7853227986015554e-08,
+ "score_p50": -0.03395324945449829,
+ "score_p90": 0.8741037845611572,
+ "fraction_gt1": 0.0909952606635071,
+ "n_inside": 356,
+ "n_interface": 583,
+ "n_outside": 116,
+ "selected_inside_frac": 0.7419354838709677,
+ "selected_interface_frac": 0.25806451612903225,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.5416666666666667,
+ "step": 5,
+ "n_elem": 1055,
+ "target_elements": 2000,
+ "gap": 945,
+ "cutoff_score": 1.9483797550201416,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.334571361541748,
+ "score_mean": 9.876239204231752e-08,
+ "score_p50": -0.3163306415081024,
+ "score_p90": 1.0360510349273682,
+ "fraction_gt1": 0.10275080906148867,
+ "n_inside": 472,
+ "n_interface": 648,
+ "n_outside": 116,
+ "selected_inside_frac": 0.4864864864864865,
+ "selected_interface_frac": 0.5135135135135135,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.49999999999999994,
+ "selected_y_range": 0.84375,
+ "step": 6,
+ "n_elem": 1236,
+ "target_elements": 2000,
+ "gap": 764,
+ "cutoff_score": 1.7839512825012207,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4819271564483643,
+ "score_mean": 6.335829283443672e-08,
+ "score_p50": -0.4223827123641968,
+ "score_p90": 1.1585137844085693,
+ "fraction_gt1": 0.11003460207612457,
+ "n_inside": 558,
+ "n_interface": 771,
+ "n_outside": 116,
+ "selected_inside_frac": 0.18604651162790697,
+ "selected_interface_frac": 0.7906976744186046,
+ "selected_outside_frac": 0.023255813953488372,
+ "selected_x_range": 0.5729166666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 7,
+ "n_elem": 1445,
+ "target_elements": 2000,
+ "gap": 555,
+ "cutoff_score": 1.8287936449050903,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5542376041412354,
+ "score_mean": 3.6395441327385925e-08,
+ "score_p50": -0.3820977210998535,
+ "score_p90": 1.1320910453796387,
+ "fraction_gt1": 0.12581991651759095,
+ "n_inside": 602,
+ "n_interface": 953,
+ "n_outside": 122,
+ "selected_inside_frac": 0.24,
+ "selected_interface_frac": 0.76,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6145833333333333,
+ "selected_y_range": 0.8125,
+ "step": 8,
+ "n_elem": 1677,
+ "target_elements": 2000,
+ "gap": 323,
+ "cutoff_score": 1.6299880743026733,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5852832794189453,
+ "score_mean": -7.869411433603091e-08,
+ "score_p50": -0.33461061120033264,
+ "score_p90": 1.3114540576934814,
+ "fraction_gt1": 0.15368746776689016,
+ "n_inside": 660,
+ "n_interface": 1157,
+ "n_outside": 122,
+ "selected_inside_frac": 0.1,
+ "selected_interface_frac": 0.2,
+ "selected_outside_frac": 0.7,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.9166666666666667,
+ "step": 9,
+ "n_elem": 1939,
+ "target_elements": 2000,
+ "gap": 61,
+ "cutoff_score": 2.1003665924072266,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 22,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.2757269273076938,
+ "max_err": 0.19537738354696688,
+ "actual_elements": 4060,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.3139084279537201,
+ "score_mean": 0.19560372829437256,
+ "score_p50": 0.182230144739151,
+ "score_p90": 0.3007405996322632,
+ "fraction_gt1": 0.0,
+ "n_inside": 52,
+ "n_interface": 344,
+ "n_outside": 116,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.33333333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.3139084279537201,
+ "num_tied_at_cutoff": 52,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.3139084279537201,
+ "score_mean": 0.17798875272274017,
+ "score_p50": 0.182230144739151,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 110,
+ "n_interface": 388,
+ "n_outside": 116,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333326,
+ "selected_y_range": 0.20833333333333326,
+ "step": 1,
+ "n_elem": 614,
+ "target_elements": 4000,
+ "gap": 3386,
+ "cutoff_score": 0.3139084279537201,
+ "num_tied_at_cutoff": 22,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.22196677327156067,
+ "score_mean": 0.16949792206287384,
+ "score_p50": 0.182230144739151,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 190,
+ "n_interface": 388,
+ "n_outside": 116,
+ "selected_inside_frac": 0.7,
+ "selected_interface_frac": 0.3,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.32291666666666663,
+ "step": 2,
+ "n_elem": 694,
+ "target_elements": 4000,
+ "gap": 3306,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 434,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.1553240418434143,
+ "score_p50": 0.182230144739151,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 436,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.5416666666666667,
+ "step": 3,
+ "n_elem": 804,
+ "target_elements": 4000,
+ "gap": 3196,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 418,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.14170286059379578,
+ "score_p50": 0.15695421397686005,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 573,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 941,
+ "target_elements": 4000,
+ "gap": 3059,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 366,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.13121397793293,
+ "score_p50": 0.12885616719722748,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 714,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 5,
+ "n_elem": 1082,
+ "target_elements": 4000,
+ "gap": 2918,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 316,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.12159214168787003,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 888,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1256,
+ "target_elements": 4000,
+ "gap": 2744,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 250,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.11344945430755615,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 1084,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.8958333333333333,
+ "step": 7,
+ "n_elem": 1452,
+ "target_elements": 4000,
+ "gap": 2548,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 180,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.10652299970388412,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.15695421397686005,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 1288,
+ "n_outside": 137,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1677,
+ "target_elements": 4000,
+ "gap": 2323,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 94,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.10140486806631088,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.12885616719722748,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 1296,
+ "n_outside": 339,
+ "selected_inside_frac": 0.5357142857142857,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.4642857142857143,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.8333333333333333,
+ "step": 9,
+ "n_elem": 1887,
+ "target_elements": 4000,
+ "gap": 2113,
+ "cutoff_score": 0.15695421397686005,
+ "num_tied_at_cutoff": 157,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15695421397686005,
+ "score_mean": 0.09410127997398376,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.11098338663578033,
+ "fraction_gt1": 0.0,
+ "n_inside": 390,
+ "n_interface": 1382,
+ "n_outside": 427,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.26041666666666674,
+ "selected_y_range": 0.22916666666666674,
+ "step": 10,
+ "n_elem": 2199,
+ "target_elements": 4000,
+ "gap": 1801,
+ "cutoff_score": 0.15695421397686005,
+ "num_tied_at_cutoff": 90,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15695421397686005,
+ "score_mean": 0.08970287442207336,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.11098338663578033,
+ "fraction_gt1": 0.0,
+ "n_inside": 646,
+ "n_interface": 1382,
+ "n_outside": 427,
+ "selected_inside_frac": 0.136986301369863,
+ "selected_interface_frac": 0.863013698630137,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333334,
+ "selected_y_range": 0.7708333333333334,
+ "step": 11,
+ "n_elem": 2455,
+ "target_elements": 4000,
+ "gap": 1545,
+ "cutoff_score": 0.12885616719722748,
+ "num_tied_at_cutoff": 123,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12885616719722748,
+ "score_mean": 0.0840642899274826,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.0911150723695755,
+ "fraction_gt1": 0.0,
+ "n_inside": 688,
+ "n_interface": 1672,
+ "n_outside": 427,
+ "selected_inside_frac": 0.2891566265060241,
+ "selected_interface_frac": 0.3493975903614458,
+ "selected_outside_frac": 0.3614457831325301,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 2787,
+ "target_elements": 4000,
+ "gap": 1213,
+ "cutoff_score": 0.11098338663578033,
+ "num_tied_at_cutoff": 116,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11098338663578033,
+ "score_mean": 0.07840277999639511,
+ "score_p50": 0.07847710698843002,
+ "score_p90": 0.0911150723695755,
+ "fraction_gt1": 0.0,
+ "n_inside": 803,
+ "n_interface": 1840,
+ "n_outside": 545,
+ "selected_inside_frac": 0.8210526315789474,
+ "selected_interface_frac": 0.17894736842105263,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.39583333333333326,
+ "selected_y_range": 0.3958333333333333,
+ "step": 13,
+ "n_elem": 3188,
+ "target_elements": 4000,
+ "gap": 812,
+ "cutoff_score": 0.0911150723695755,
+ "num_tied_at_cutoff": 1364,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.0911150723695755,
+ "score_mean": 0.07348944991827011,
+ "score_p50": 0.07847710698843002,
+ "score_p90": 0.0911150723695755,
+ "fraction_gt1": 0.0,
+ "n_inside": 1110,
+ "n_interface": 1939,
+ "n_outside": 545,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.46875,
+ "selected_y_range": 0.53125,
+ "step": 14,
+ "n_elem": 3594,
+ "target_elements": 4000,
+ "gap": 406,
+ "cutoff_score": 0.0911150723695755,
+ "num_tied_at_cutoff": 1326,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 22,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.26958023545474413,
+ "max_err": 0.19463266860051565,
+ "actual_elements": 4146,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9891124367713928,
+ "score_mean": 0.11546915769577026,
+ "score_p50": 5.662667001971045e-10,
+ "score_p90": 0.6390256881713867,
+ "fraction_gt1": 0.0,
+ "n_inside": 52,
+ "n_interface": 344,
+ "n_outside": 116,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.25,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9734729528427124,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9766668081283569,
+ "score_mean": 0.09381262958049774,
+ "score_p50": 1.354442602519157e-08,
+ "score_p90": 0.4386219084262848,
+ "fraction_gt1": 0.0,
+ "n_inside": 121,
+ "n_interface": 349,
+ "n_outside": 116,
+ "selected_inside_frac": 0.47058823529411764,
+ "selected_interface_frac": 0.5294117647058824,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.375,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 4000,
+ "gap": 3414,
+ "cutoff_score": 0.9406792521476746,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9862961769104004,
+ "score_mean": 0.05686844512820244,
+ "score_p50": 1.8453270058671478e-06,
+ "score_p90": 0.15268166363239288,
+ "fraction_gt1": 0.0,
+ "n_inside": 159,
+ "n_interface": 422,
+ "n_outside": 116,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.39583333333333326,
+ "selected_y_range": 0.5625,
+ "step": 2,
+ "n_elem": 697,
+ "target_elements": 4000,
+ "gap": 3303,
+ "cutoff_score": 0.7853129506111145,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9720667004585266,
+ "score_mean": 0.09702292084693909,
+ "score_p50": 7.242098945425823e-06,
+ "score_p90": 0.46015769243240356,
+ "fraction_gt1": 0.0,
+ "n_inside": 197,
+ "n_interface": 484,
+ "n_outside": 116,
+ "selected_inside_frac": 0.9565217391304348,
+ "selected_interface_frac": 0.043478260869565216,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25,
+ "selected_y_range": 0.26041666666666674,
+ "step": 3,
+ "n_elem": 797,
+ "target_elements": 4000,
+ "gap": 3203,
+ "cutoff_score": 0.9390133619308472,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9862684607505798,
+ "score_mean": 0.09238310903310776,
+ "score_p50": 2.181318632210605e-05,
+ "score_p90": 0.3561573326587677,
+ "fraction_gt1": 0.0,
+ "n_inside": 306,
+ "n_interface": 493,
+ "n_outside": 116,
+ "selected_inside_frac": 0.48148148148148145,
+ "selected_interface_frac": 0.5185185185185185,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 915,
+ "target_elements": 4000,
+ "gap": 3085,
+ "cutoff_score": 0.9441143274307251,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9888188242912292,
+ "score_mean": 0.09381899237632751,
+ "score_p50": 6.75135524943471e-05,
+ "score_p90": 0.3909471333026886,
+ "fraction_gt1": 0.0,
+ "n_inside": 366,
+ "n_interface": 586,
+ "n_outside": 116,
+ "selected_inside_frac": 0.5625,
+ "selected_interface_frac": 0.4375,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34375,
+ "selected_y_range": 0.65625,
+ "step": 5,
+ "n_elem": 1068,
+ "target_elements": 4000,
+ "gap": 2932,
+ "cutoff_score": 0.8908727169036865,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9800784587860107,
+ "score_mean": 0.09136144071817398,
+ "score_p50": 0.00035227107582613826,
+ "score_p90": 0.4002313017845154,
+ "fraction_gt1": 0.0,
+ "n_inside": 457,
+ "n_interface": 677,
+ "n_outside": 116,
+ "selected_inside_frac": 0.2972972972972973,
+ "selected_interface_frac": 0.7027027027027027,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.46875,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1250,
+ "target_elements": 4000,
+ "gap": 2750,
+ "cutoff_score": 0.8760324120521545,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9845714569091797,
+ "score_mean": 0.08120784908533096,
+ "score_p50": 0.0012864975724369287,
+ "score_p90": 0.29707157611846924,
+ "fraction_gt1": 0.0,
+ "n_inside": 516,
+ "n_interface": 840,
+ "n_outside": 116,
+ "selected_inside_frac": 0.4318181818181818,
+ "selected_interface_frac": 0.5681818181818182,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5729166666666667,
+ "selected_y_range": 0.8854166666666666,
+ "step": 7,
+ "n_elem": 1472,
+ "target_elements": 4000,
+ "gap": 2528,
+ "cutoff_score": 0.8196656107902527,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9773736000061035,
+ "score_mean": 0.10020328313112259,
+ "score_p50": 0.0022930586710572243,
+ "score_p90": 0.37293145060539246,
+ "fraction_gt1": 0.0,
+ "n_inside": 605,
+ "n_interface": 1026,
+ "n_outside": 118,
+ "selected_inside_frac": 0.34615384615384615,
+ "selected_interface_frac": 0.6153846153846154,
+ "selected_outside_frac": 0.038461538461538464,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.96875,
+ "step": 8,
+ "n_elem": 1749,
+ "target_elements": 4000,
+ "gap": 2251,
+ "cutoff_score": 0.7764726877212524,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9797390699386597,
+ "score_mean": 0.14620015025138855,
+ "score_p50": 0.0015464895404875278,
+ "score_p90": 0.6710746884346008,
+ "fraction_gt1": 0.0,
+ "n_inside": 707,
+ "n_interface": 1223,
+ "n_outside": 125,
+ "selected_inside_frac": 0.5573770491803278,
+ "selected_interface_frac": 0.4426229508196721,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6979166666666667,
+ "selected_y_range": 0.84375,
+ "step": 9,
+ "n_elem": 2055,
+ "target_elements": 4000,
+ "gap": 1945,
+ "cutoff_score": 0.8733325600624084,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9864164590835571,
+ "score_mean": 0.16652870178222656,
+ "score_p50": 0.001348423189483583,
+ "score_p90": 0.7529284358024597,
+ "fraction_gt1": 0.0,
+ "n_inside": 867,
+ "n_interface": 1405,
+ "n_outside": 125,
+ "selected_inside_frac": 0.4647887323943662,
+ "selected_interface_frac": 0.5070422535211268,
+ "selected_outside_frac": 0.028169014084507043,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.78125,
+ "step": 10,
+ "n_elem": 2397,
+ "target_elements": 4000,
+ "gap": 1603,
+ "cutoff_score": 0.910014271736145,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9830347299575806,
+ "score_mean": 0.16731925308704376,
+ "score_p50": 0.0012529219966381788,
+ "score_p90": 0.7977287769317627,
+ "fraction_gt1": 0.0,
+ "n_inside": 1035,
+ "n_interface": 1611,
+ "n_outside": 139,
+ "selected_inside_frac": 0.2891566265060241,
+ "selected_interface_frac": 0.5301204819277109,
+ "selected_outside_frac": 0.18072289156626506,
+ "selected_x_range": 0.8802083333333334,
+ "selected_y_range": 0.9479166666666667,
+ "step": 11,
+ "n_elem": 2785,
+ "target_elements": 4000,
+ "gap": 1215,
+ "cutoff_score": 0.9208494424819946,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.982080340385437,
+ "score_mean": 0.1409522145986557,
+ "score_p50": 0.0009879693388938904,
+ "score_p90": 0.7099282145500183,
+ "fraction_gt1": 0.0,
+ "n_inside": 1192,
+ "n_interface": 1880,
+ "n_outside": 220,
+ "selected_inside_frac": 0.23469387755102042,
+ "selected_interface_frac": 0.6122448979591837,
+ "selected_outside_frac": 0.15306122448979592,
+ "selected_x_range": 0.953125,
+ "selected_y_range": 0.9479166666666667,
+ "step": 12,
+ "n_elem": 3292,
+ "target_elements": 4000,
+ "gap": 708,
+ "cutoff_score": 0.9183087348937988,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9886893630027771,
+ "score_mean": 0.11879634112119675,
+ "score_p50": 0.0012201413046568632,
+ "score_p90": 0.5532421469688416,
+ "fraction_gt1": 0.0,
+ "n_inside": 1334,
+ "n_interface": 2243,
+ "n_outside": 313,
+ "selected_inside_frac": 0.3333333333333333,
+ "selected_interface_frac": 0.6388888888888888,
+ "selected_outside_frac": 0.027777777777777776,
+ "selected_x_range": 0.9114583333333333,
+ "selected_y_range": 0.9427083333333334,
+ "step": 13,
+ "n_elem": 3890,
+ "target_elements": 4000,
+ "gap": 110,
+ "cutoff_score": 0.9395775198936462,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 22,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.2696185340393434,
+ "max_err": 0.19424847835774772,
+ "actual_elements": 4161,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 3.037043809890747,
+ "score_mean": -7.450580596923828e-08,
+ "score_p50": -0.37296217679977417,
+ "score_p90": 1.347489356994629,
+ "fraction_gt1": 0.119140625,
+ "n_inside": 52,
+ "n_interface": 344,
+ "n_outside": 116,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.25,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 3.0092978477478027,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.8148083686828613,
+ "score_mean": 1.7576250854745012e-07,
+ "score_p50": -0.21060621738433838,
+ "score_p90": 0.8027170896530151,
+ "fraction_gt1": 0.09897610921501707,
+ "n_inside": 121,
+ "n_interface": 349,
+ "n_outside": 116,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.33333333333333326,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 4000,
+ "gap": 3414,
+ "cutoff_score": 3.5117294788360596,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2117199897766113,
+ "score_mean": 4.980613539373735e-07,
+ "score_p50": 0.0768081545829773,
+ "score_p90": 0.23117370903491974,
+ "fraction_gt1": 0.08605341246290801,
+ "n_inside": 187,
+ "n_interface": 371,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333326,
+ "selected_y_range": 0.4583333333333333,
+ "step": 2,
+ "n_elem": 674,
+ "target_elements": 4000,
+ "gap": 3326,
+ "cutoff_score": 2.188779830932617,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.7688426971435547,
+ "score_mean": 8.882865643045079e-08,
+ "score_p50": 0.1628483235836029,
+ "score_p90": 0.8004462122917175,
+ "fraction_gt1": 0.08279430789133248,
+ "n_inside": 189,
+ "n_interface": 468,
+ "n_outside": 116,
+ "selected_inside_frac": 0.6521739130434783,
+ "selected_interface_frac": 0.34782608695652173,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.5208333333333333,
+ "step": 3,
+ "n_elem": 773,
+ "target_elements": 4000,
+ "gap": 3227,
+ "cutoff_score": 1.8332608938217163,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4215011596679688,
+ "score_mean": 6.744215852449997e-08,
+ "score_p50": 0.2782990038394928,
+ "score_p90": 0.7049338221549988,
+ "fraction_gt1": 0.08287292817679558,
+ "n_inside": 274,
+ "n_interface": 515,
+ "n_outside": 116,
+ "selected_inside_frac": 0.7037037037037037,
+ "selected_interface_frac": 0.2962962962962963,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 905,
+ "target_elements": 4000,
+ "gap": 3095,
+ "cutoff_score": 2.035191059112549,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.379047393798828,
+ "score_mean": -5.7853227986015554e-08,
+ "score_p50": -0.03395324945449829,
+ "score_p90": 0.8741037845611572,
+ "fraction_gt1": 0.0909952606635071,
+ "n_inside": 356,
+ "n_interface": 583,
+ "n_outside": 116,
+ "selected_inside_frac": 0.7419354838709677,
+ "selected_interface_frac": 0.25806451612903225,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.5416666666666667,
+ "step": 5,
+ "n_elem": 1055,
+ "target_elements": 4000,
+ "gap": 2945,
+ "cutoff_score": 1.9483797550201416,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.334571361541748,
+ "score_mean": 9.876239204231752e-08,
+ "score_p50": -0.3163306415081024,
+ "score_p90": 1.0360510349273682,
+ "fraction_gt1": 0.10275080906148867,
+ "n_inside": 472,
+ "n_interface": 648,
+ "n_outside": 116,
+ "selected_inside_frac": 0.4864864864864865,
+ "selected_interface_frac": 0.5135135135135135,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.49999999999999994,
+ "selected_y_range": 0.84375,
+ "step": 6,
+ "n_elem": 1236,
+ "target_elements": 4000,
+ "gap": 2764,
+ "cutoff_score": 1.7839512825012207,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4819271564483643,
+ "score_mean": 6.335829283443672e-08,
+ "score_p50": -0.4223827123641968,
+ "score_p90": 1.1585137844085693,
+ "fraction_gt1": 0.11003460207612457,
+ "n_inside": 558,
+ "n_interface": 771,
+ "n_outside": 116,
+ "selected_inside_frac": 0.18604651162790697,
+ "selected_interface_frac": 0.7906976744186046,
+ "selected_outside_frac": 0.023255813953488372,
+ "selected_x_range": 0.5729166666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 7,
+ "n_elem": 1445,
+ "target_elements": 4000,
+ "gap": 2555,
+ "cutoff_score": 1.8287936449050903,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5542376041412354,
+ "score_mean": 3.6395441327385925e-08,
+ "score_p50": -0.3820977210998535,
+ "score_p90": 1.1320910453796387,
+ "fraction_gt1": 0.12581991651759095,
+ "n_inside": 602,
+ "n_interface": 953,
+ "n_outside": 122,
+ "selected_inside_frac": 0.24,
+ "selected_interface_frac": 0.76,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6145833333333333,
+ "selected_y_range": 0.8125,
+ "step": 8,
+ "n_elem": 1677,
+ "target_elements": 4000,
+ "gap": 2323,
+ "cutoff_score": 1.6299880743026733,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5852832794189453,
+ "score_mean": -7.869411433603091e-08,
+ "score_p50": -0.33461061120033264,
+ "score_p90": 1.3114540576934814,
+ "fraction_gt1": 0.15368746776689016,
+ "n_inside": 660,
+ "n_interface": 1157,
+ "n_outside": 122,
+ "selected_inside_frac": 0.08620689655172414,
+ "selected_interface_frac": 0.3275862068965517,
+ "selected_outside_frac": 0.5862068965517241,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.96875,
+ "step": 9,
+ "n_elem": 1939,
+ "target_elements": 4000,
+ "gap": 2061,
+ "cutoff_score": 1.8120838403701782,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.788602352142334,
+ "score_mean": 1.3709603763345513e-07,
+ "score_p50": -0.2736806869506836,
+ "score_p90": 1.254826545715332,
+ "fraction_gt1": 0.12668463611859837,
+ "n_inside": 685,
+ "n_interface": 1290,
+ "n_outside": 251,
+ "selected_inside_frac": 0.015151515151515152,
+ "selected_interface_frac": 0.5454545454545454,
+ "selected_outside_frac": 0.4393939393939394,
+ "selected_x_range": 0.6770833333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 10,
+ "n_elem": 2226,
+ "target_elements": 4000,
+ "gap": 1774,
+ "cutoff_score": 1.8051320314407349,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 3.0909423828125,
+ "score_mean": -1.2211915922932803e-08,
+ "score_p50": -0.1971721202135086,
+ "score_p90": 0.9264003038406372,
+ "fraction_gt1": 0.08683473389355742,
+ "n_inside": 688,
+ "n_interface": 1445,
+ "n_outside": 366,
+ "selected_inside_frac": 0.581081081081081,
+ "selected_interface_frac": 0.25675675675675674,
+ "selected_outside_frac": 0.16216216216216217,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2499,
+ "target_elements": 4000,
+ "gap": 1501,
+ "cutoff_score": 1.5989789962768555,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1681647300720215,
+ "score_mean": -5.342713293998713e-08,
+ "score_p50": -0.03448483347892761,
+ "score_p90": 1.0476387739181519,
+ "fraction_gt1": 0.10364145658263306,
+ "n_inside": 891,
+ "n_interface": 1556,
+ "n_outside": 409,
+ "selected_inside_frac": 0.21176470588235294,
+ "selected_interface_frac": 0.7764705882352941,
+ "selected_outside_frac": 0.011764705882352941,
+ "selected_x_range": 0.39583333333333337,
+ "selected_y_range": 0.9270833333333334,
+ "step": 12,
+ "n_elem": 2856,
+ "target_elements": 4000,
+ "gap": 1144,
+ "cutoff_score": 1.4625060558319092,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0566415786743164,
+ "score_mean": 7.475217955743574e-08,
+ "score_p50": 0.09975475072860718,
+ "score_p90": 1.0065901279449463,
+ "fraction_gt1": 0.10226576852418862,
+ "n_inside": 990,
+ "n_interface": 1861,
+ "n_outside": 415,
+ "selected_inside_frac": 0.25773195876288657,
+ "selected_interface_frac": 0.7422680412371134,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.7291666666666667,
+ "step": 13,
+ "n_elem": 3266,
+ "target_elements": 4000,
+ "gap": 734,
+ "cutoff_score": 1.4573540687561035,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1335885524749756,
+ "score_mean": 1.6402890423705685e-07,
+ "score_p50": 0.09037131071090698,
+ "score_p90": 1.055550456047058,
+ "fraction_gt1": 0.13249126578876647,
+ "n_inside": 1119,
+ "n_interface": 2187,
+ "n_outside": 415,
+ "selected_inside_frac": 0.8494623655913979,
+ "selected_interface_frac": 0.12903225806451613,
+ "selected_outside_frac": 0.021505376344086023,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8229166666666667,
+ "step": 14,
+ "n_elem": 3721,
+ "target_elements": 4000,
+ "gap": 279,
+ "cutoff_score": 1.568286657333374,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 22,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.2714652491672851,
+ "max_err": 0.19751922266363808,
+ "actual_elements": 8063,
+ "num_steps": 21,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.3139084279537201,
+ "score_mean": 0.19560372829437256,
+ "score_p50": 0.182230144739151,
+ "score_p90": 0.3007405996322632,
+ "fraction_gt1": 0.0,
+ "n_inside": 52,
+ "n_interface": 344,
+ "n_outside": 116,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.33333333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.3139084279537201,
+ "num_tied_at_cutoff": 52,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.3139084279537201,
+ "score_mean": 0.17798875272274017,
+ "score_p50": 0.182230144739151,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 110,
+ "n_interface": 388,
+ "n_outside": 116,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333326,
+ "selected_y_range": 0.20833333333333326,
+ "step": 1,
+ "n_elem": 614,
+ "target_elements": 8000,
+ "gap": 7386,
+ "cutoff_score": 0.3139084279537201,
+ "num_tied_at_cutoff": 22,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.22196677327156067,
+ "score_mean": 0.16949792206287384,
+ "score_p50": 0.182230144739151,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 190,
+ "n_interface": 388,
+ "n_outside": 116,
+ "selected_inside_frac": 0.7,
+ "selected_interface_frac": 0.3,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.32291666666666663,
+ "step": 2,
+ "n_elem": 694,
+ "target_elements": 8000,
+ "gap": 7306,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 434,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.1553240418434143,
+ "score_p50": 0.182230144739151,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 436,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.5416666666666667,
+ "step": 3,
+ "n_elem": 804,
+ "target_elements": 8000,
+ "gap": 7196,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 418,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.14170286059379578,
+ "score_p50": 0.15695421397686005,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 573,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 941,
+ "target_elements": 8000,
+ "gap": 7059,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 366,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.13121397793293,
+ "score_p50": 0.12885616719722748,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 714,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 5,
+ "n_elem": 1082,
+ "target_elements": 8000,
+ "gap": 6918,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 316,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.12159214168787003,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 888,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1256,
+ "target_elements": 8000,
+ "gap": 6744,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 250,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.11344945430755615,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.182230144739151,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 1084,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.8958333333333333,
+ "step": 7,
+ "n_elem": 1452,
+ "target_elements": 8000,
+ "gap": 6548,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 180,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.10652299970388412,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.15695421397686005,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 1288,
+ "n_outside": 137,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1677,
+ "target_elements": 8000,
+ "gap": 6323,
+ "cutoff_score": 0.182230144739151,
+ "num_tied_at_cutoff": 94,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.182230144739151,
+ "score_mean": 0.10140486806631088,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.12885616719722748,
+ "fraction_gt1": 0.0,
+ "n_inside": 252,
+ "n_interface": 1296,
+ "n_outside": 339,
+ "selected_inside_frac": 0.5357142857142857,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.4642857142857143,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.8333333333333333,
+ "step": 9,
+ "n_elem": 1887,
+ "target_elements": 8000,
+ "gap": 6113,
+ "cutoff_score": 0.15695421397686005,
+ "num_tied_at_cutoff": 157,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15695421397686005,
+ "score_mean": 0.09410127997398376,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.11098338663578033,
+ "fraction_gt1": 0.0,
+ "n_inside": 390,
+ "n_interface": 1382,
+ "n_outside": 427,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.26041666666666674,
+ "selected_y_range": 0.22916666666666674,
+ "step": 10,
+ "n_elem": 2199,
+ "target_elements": 8000,
+ "gap": 5801,
+ "cutoff_score": 0.15695421397686005,
+ "num_tied_at_cutoff": 90,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15695421397686005,
+ "score_mean": 0.08970287442207336,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.11098338663578033,
+ "fraction_gt1": 0.0,
+ "n_inside": 646,
+ "n_interface": 1382,
+ "n_outside": 427,
+ "selected_inside_frac": 0.136986301369863,
+ "selected_interface_frac": 0.863013698630137,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333334,
+ "selected_y_range": 0.7708333333333334,
+ "step": 11,
+ "n_elem": 2455,
+ "target_elements": 8000,
+ "gap": 5545,
+ "cutoff_score": 0.12885616719722748,
+ "num_tied_at_cutoff": 123,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12885616719722748,
+ "score_mean": 0.0840642899274826,
+ "score_p50": 0.0911150723695755,
+ "score_p90": 0.0911150723695755,
+ "fraction_gt1": 0.0,
+ "n_inside": 688,
+ "n_interface": 1672,
+ "n_outside": 427,
+ "selected_inside_frac": 0.2891566265060241,
+ "selected_interface_frac": 0.3493975903614458,
+ "selected_outside_frac": 0.3614457831325301,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 2787,
+ "target_elements": 8000,
+ "gap": 5213,
+ "cutoff_score": 0.11098338663578033,
+ "num_tied_at_cutoff": 116,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11098338663578033,
+ "score_mean": 0.07840277999639511,
+ "score_p50": 0.07847710698843002,
+ "score_p90": 0.0911150723695755,
+ "fraction_gt1": 0.0,
+ "n_inside": 803,
+ "n_interface": 1840,
+ "n_outside": 545,
+ "selected_inside_frac": 0.8210526315789474,
+ "selected_interface_frac": 0.17894736842105263,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.39583333333333326,
+ "selected_y_range": 0.3958333333333333,
+ "step": 13,
+ "n_elem": 3188,
+ "target_elements": 8000,
+ "gap": 4812,
+ "cutoff_score": 0.0911150723695755,
+ "num_tied_at_cutoff": 1364,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.0911150723695755,
+ "score_mean": 0.07348944991827011,
+ "score_p50": 0.07847710698843002,
+ "score_p90": 0.0911150723695755,
+ "fraction_gt1": 0.0,
+ "n_inside": 1110,
+ "n_interface": 1939,
+ "n_outside": 545,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.46875,
+ "selected_y_range": 0.53125,
+ "step": 14,
+ "n_elem": 3594,
+ "target_elements": 8000,
+ "gap": 4406,
+ "cutoff_score": 0.0911150723695755,
+ "num_tied_at_cutoff": 1326,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.0911150723695755,
+ "score_mean": 0.06855317950248718,
+ "score_p50": 0.06442808359861374,
+ "score_p90": 0.0911150723695755,
+ "fraction_gt1": 0.0,
+ "n_inside": 1110,
+ "n_interface": 2405,
+ "n_outside": 545,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5729166666666667,
+ "selected_y_range": 0.6354166666666667,
+ "step": 15,
+ "n_elem": 4060,
+ "target_elements": 8000,
+ "gap": 3940,
+ "cutoff_score": 0.0911150723695755,
+ "num_tied_at_cutoff": 1166,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.0911150723695755,
+ "score_mean": 0.0643470361828804,
+ "score_p50": 0.06442808359861374,
+ "score_p90": 0.0911150723695755,
+ "fraction_gt1": 0.0,
+ "n_inside": 1110,
+ "n_interface": 2906,
+ "n_outside": 545,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.65625,
+ "selected_y_range": 0.7291666666666667,
+ "step": 16,
+ "n_elem": 4561,
+ "target_elements": 8000,
+ "gap": 3439,
+ "cutoff_score": 0.0911150723695755,
+ "num_tied_at_cutoff": 1004,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.0911150723695755,
+ "score_mean": 0.060771118849515915,
+ "score_p50": 0.05549169331789017,
+ "score_p90": 0.0911150723695755,
+ "fraction_gt1": 0.0,
+ "n_inside": 1110,
+ "n_interface": 3439,
+ "n_outside": 545,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8229166666666667,
+ "step": 17,
+ "n_elem": 5094,
+ "target_elements": 8000,
+ "gap": 2906,
+ "cutoff_score": 0.0911150723695755,
+ "num_tied_at_cutoff": 836,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.0911150723695755,
+ "score_mean": 0.057482101023197174,
+ "score_p50": 0.04555753618478775,
+ "score_p90": 0.0911150723695755,
+ "fraction_gt1": 0.0,
+ "n_inside": 1110,
+ "n_interface": 4057,
+ "n_outside": 545,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.9166666666666667,
+ "step": 18,
+ "n_elem": 5712,
+ "target_elements": 8000,
+ "gap": 2288,
+ "cutoff_score": 0.0911150723695755,
+ "num_tied_at_cutoff": 630,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.0911150723695755,
+ "score_mean": 0.05458196625113487,
+ "score_p50": 0.04555753618478775,
+ "score_p90": 0.07847710698843002,
+ "fraction_gt1": 0.0,
+ "n_inside": 1110,
+ "n_interface": 4742,
+ "n_outside": 545,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.16230366492146597,
+ "selected_outside_frac": 0.837696335078534,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 19,
+ "n_elem": 6397,
+ "target_elements": 8000,
+ "gap": 1603,
+ "cutoff_score": 0.0911150723695755,
+ "num_tied_at_cutoff": 400,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.0911150723695755,
+ "score_mean": 0.05207286775112152,
+ "score_p50": 0.04555753618478775,
+ "score_p90": 0.06442808359861374,
+ "fraction_gt1": 0.0,
+ "n_inside": 1110,
+ "n_interface": 4874,
+ "n_outside": 1155,
+ "selected_inside_frac": 0.308411214953271,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.6915887850467289,
+ "selected_x_range": 0.921875,
+ "selected_y_range": 0.8541666666666667,
+ "step": 20,
+ "n_elem": 7139,
+ "target_elements": 8000,
+ "gap": 861,
+ "cutoff_score": 0.07847710698843002,
+ "num_tied_at_cutoff": 506,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 22,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.27089851129878156,
+ "max_err": 0.19799212577841496,
+ "actual_elements": 8627,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9891124367713928,
+ "score_mean": 0.11546915769577026,
+ "score_p50": 5.662667001971045e-10,
+ "score_p90": 0.6390256881713867,
+ "fraction_gt1": 0.0,
+ "n_inside": 52,
+ "n_interface": 344,
+ "n_outside": 116,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.25,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9734729528427124,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9766668081283569,
+ "score_mean": 0.09381262958049774,
+ "score_p50": 1.354442602519157e-08,
+ "score_p90": 0.4386219084262848,
+ "fraction_gt1": 0.0,
+ "n_inside": 121,
+ "n_interface": 349,
+ "n_outside": 116,
+ "selected_inside_frac": 0.47058823529411764,
+ "selected_interface_frac": 0.5294117647058824,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.375,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 8000,
+ "gap": 7414,
+ "cutoff_score": 0.9406792521476746,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9862961769104004,
+ "score_mean": 0.05686844512820244,
+ "score_p50": 1.8453270058671478e-06,
+ "score_p90": 0.15268166363239288,
+ "fraction_gt1": 0.0,
+ "n_inside": 159,
+ "n_interface": 422,
+ "n_outside": 116,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.39583333333333326,
+ "selected_y_range": 0.5625,
+ "step": 2,
+ "n_elem": 697,
+ "target_elements": 8000,
+ "gap": 7303,
+ "cutoff_score": 0.7853129506111145,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9720667004585266,
+ "score_mean": 0.09702292084693909,
+ "score_p50": 7.242098945425823e-06,
+ "score_p90": 0.46015769243240356,
+ "fraction_gt1": 0.0,
+ "n_inside": 197,
+ "n_interface": 484,
+ "n_outside": 116,
+ "selected_inside_frac": 0.9565217391304348,
+ "selected_interface_frac": 0.043478260869565216,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25,
+ "selected_y_range": 0.26041666666666674,
+ "step": 3,
+ "n_elem": 797,
+ "target_elements": 8000,
+ "gap": 7203,
+ "cutoff_score": 0.9390133619308472,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9862684607505798,
+ "score_mean": 0.09238310903310776,
+ "score_p50": 2.181318632210605e-05,
+ "score_p90": 0.3561573326587677,
+ "fraction_gt1": 0.0,
+ "n_inside": 306,
+ "n_interface": 493,
+ "n_outside": 116,
+ "selected_inside_frac": 0.48148148148148145,
+ "selected_interface_frac": 0.5185185185185185,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 915,
+ "target_elements": 8000,
+ "gap": 7085,
+ "cutoff_score": 0.9441143274307251,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9888188242912292,
+ "score_mean": 0.09381899237632751,
+ "score_p50": 6.75135524943471e-05,
+ "score_p90": 0.3909471333026886,
+ "fraction_gt1": 0.0,
+ "n_inside": 366,
+ "n_interface": 586,
+ "n_outside": 116,
+ "selected_inside_frac": 0.5625,
+ "selected_interface_frac": 0.4375,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34375,
+ "selected_y_range": 0.65625,
+ "step": 5,
+ "n_elem": 1068,
+ "target_elements": 8000,
+ "gap": 6932,
+ "cutoff_score": 0.8908727169036865,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9800784587860107,
+ "score_mean": 0.09136144071817398,
+ "score_p50": 0.00035227107582613826,
+ "score_p90": 0.4002313017845154,
+ "fraction_gt1": 0.0,
+ "n_inside": 457,
+ "n_interface": 677,
+ "n_outside": 116,
+ "selected_inside_frac": 0.2972972972972973,
+ "selected_interface_frac": 0.7027027027027027,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.46875,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1250,
+ "target_elements": 8000,
+ "gap": 6750,
+ "cutoff_score": 0.8760324120521545,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9845714569091797,
+ "score_mean": 0.08120784908533096,
+ "score_p50": 0.0012864975724369287,
+ "score_p90": 0.29707157611846924,
+ "fraction_gt1": 0.0,
+ "n_inside": 516,
+ "n_interface": 840,
+ "n_outside": 116,
+ "selected_inside_frac": 0.4318181818181818,
+ "selected_interface_frac": 0.5681818181818182,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5729166666666667,
+ "selected_y_range": 0.8854166666666666,
+ "step": 7,
+ "n_elem": 1472,
+ "target_elements": 8000,
+ "gap": 6528,
+ "cutoff_score": 0.8196656107902527,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9773736000061035,
+ "score_mean": 0.10020328313112259,
+ "score_p50": 0.0022930586710572243,
+ "score_p90": 0.37293145060539246,
+ "fraction_gt1": 0.0,
+ "n_inside": 605,
+ "n_interface": 1026,
+ "n_outside": 118,
+ "selected_inside_frac": 0.34615384615384615,
+ "selected_interface_frac": 0.6153846153846154,
+ "selected_outside_frac": 0.038461538461538464,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.96875,
+ "step": 8,
+ "n_elem": 1749,
+ "target_elements": 8000,
+ "gap": 6251,
+ "cutoff_score": 0.7764726877212524,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9797390699386597,
+ "score_mean": 0.14620015025138855,
+ "score_p50": 0.0015464895404875278,
+ "score_p90": 0.6710746884346008,
+ "fraction_gt1": 0.0,
+ "n_inside": 707,
+ "n_interface": 1223,
+ "n_outside": 125,
+ "selected_inside_frac": 0.5573770491803278,
+ "selected_interface_frac": 0.4426229508196721,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6979166666666667,
+ "selected_y_range": 0.84375,
+ "step": 9,
+ "n_elem": 2055,
+ "target_elements": 8000,
+ "gap": 5945,
+ "cutoff_score": 0.8733325600624084,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9864164590835571,
+ "score_mean": 0.16652870178222656,
+ "score_p50": 0.001348423189483583,
+ "score_p90": 0.7529284358024597,
+ "fraction_gt1": 0.0,
+ "n_inside": 867,
+ "n_interface": 1405,
+ "n_outside": 125,
+ "selected_inside_frac": 0.4647887323943662,
+ "selected_interface_frac": 0.5070422535211268,
+ "selected_outside_frac": 0.028169014084507043,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.78125,
+ "step": 10,
+ "n_elem": 2397,
+ "target_elements": 8000,
+ "gap": 5603,
+ "cutoff_score": 0.910014271736145,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9830347299575806,
+ "score_mean": 0.16731925308704376,
+ "score_p50": 0.0012529219966381788,
+ "score_p90": 0.7977287769317627,
+ "fraction_gt1": 0.0,
+ "n_inside": 1035,
+ "n_interface": 1611,
+ "n_outside": 139,
+ "selected_inside_frac": 0.2891566265060241,
+ "selected_interface_frac": 0.5301204819277109,
+ "selected_outside_frac": 0.18072289156626506,
+ "selected_x_range": 0.8802083333333334,
+ "selected_y_range": 0.9479166666666667,
+ "step": 11,
+ "n_elem": 2785,
+ "target_elements": 8000,
+ "gap": 5215,
+ "cutoff_score": 0.9208494424819946,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.982080340385437,
+ "score_mean": 0.1409522145986557,
+ "score_p50": 0.0009879693388938904,
+ "score_p90": 0.7099282145500183,
+ "fraction_gt1": 0.0,
+ "n_inside": 1192,
+ "n_interface": 1880,
+ "n_outside": 220,
+ "selected_inside_frac": 0.23469387755102042,
+ "selected_interface_frac": 0.6122448979591837,
+ "selected_outside_frac": 0.15306122448979592,
+ "selected_x_range": 0.953125,
+ "selected_y_range": 0.9479166666666667,
+ "step": 12,
+ "n_elem": 3292,
+ "target_elements": 8000,
+ "gap": 4708,
+ "cutoff_score": 0.9183087348937988,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9886893630027771,
+ "score_mean": 0.11879634112119675,
+ "score_p50": 0.0012201413046568632,
+ "score_p90": 0.5532421469688416,
+ "fraction_gt1": 0.0,
+ "n_inside": 1334,
+ "n_interface": 2243,
+ "n_outside": 313,
+ "selected_inside_frac": 0.27586206896551724,
+ "selected_interface_frac": 0.6637931034482759,
+ "selected_outside_frac": 0.0603448275862069,
+ "selected_x_range": 0.9739583333333333,
+ "selected_y_range": 0.953125,
+ "step": 13,
+ "n_elem": 3890,
+ "target_elements": 8000,
+ "gap": 4110,
+ "cutoff_score": 0.886771023273468,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.966733455657959,
+ "score_mean": 0.1181359514594078,
+ "score_p50": 0.00165143224876374,
+ "score_p90": 0.5547007918357849,
+ "fraction_gt1": 0.0,
+ "n_inside": 1547,
+ "n_interface": 2630,
+ "n_outside": 346,
+ "selected_inside_frac": 0.45185185185185184,
+ "selected_interface_frac": 0.5185185185185185,
+ "selected_outside_frac": 0.02962962962962963,
+ "selected_x_range": 0.703125,
+ "selected_y_range": 0.984375,
+ "step": 14,
+ "n_elem": 4523,
+ "target_elements": 8000,
+ "gap": 3477,
+ "cutoff_score": 0.8552883863449097,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9731431603431702,
+ "score_mean": 0.1154266968369484,
+ "score_p50": 0.003313907189294696,
+ "score_p90": 0.5057527422904968,
+ "fraction_gt1": 0.0,
+ "n_inside": 1908,
+ "n_interface": 3047,
+ "n_outside": 362,
+ "selected_inside_frac": 0.389937106918239,
+ "selected_interface_frac": 0.5786163522012578,
+ "selected_outside_frac": 0.031446540880503145,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9739583333333333,
+ "step": 15,
+ "n_elem": 5317,
+ "target_elements": 8000,
+ "gap": 2683,
+ "cutoff_score": 0.8541509509086609,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9767122864723206,
+ "score_mean": 0.12968552112579346,
+ "score_p50": 0.005633984692394733,
+ "score_p90": 0.5416041612625122,
+ "fraction_gt1": 0.0,
+ "n_inside": 2256,
+ "n_interface": 3590,
+ "n_outside": 392,
+ "selected_inside_frac": 0.2887700534759358,
+ "selected_interface_frac": 0.6951871657754011,
+ "selected_outside_frac": 0.016042780748663103,
+ "selected_x_range": 0.9583333333333334,
+ "selected_y_range": 0.984375,
+ "step": 16,
+ "n_elem": 6238,
+ "target_elements": 8000,
+ "gap": 1762,
+ "cutoff_score": 0.8517552614212036,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9814483523368835,
+ "score_mean": 0.1553547978401184,
+ "score_p50": 0.004844042006880045,
+ "score_p90": 0.6456120014190674,
+ "fraction_gt1": 0.0,
+ "n_inside": 2570,
+ "n_interface": 4336,
+ "n_outside": 416,
+ "selected_inside_frac": 0.2648401826484018,
+ "selected_interface_frac": 0.6666666666666666,
+ "selected_outside_frac": 0.0684931506849315,
+ "selected_x_range": 0.984375,
+ "selected_y_range": 0.984375,
+ "step": 17,
+ "n_elem": 7322,
+ "target_elements": 8000,
+ "gap": 678,
+ "cutoff_score": 0.8650811314582825,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 22,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.2684231531882333,
+ "max_err": 0.19751062207347192,
+ "actual_elements": 8204,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 3.037043809890747,
+ "score_mean": -7.450580596923828e-08,
+ "score_p50": -0.37296217679977417,
+ "score_p90": 1.347489356994629,
+ "fraction_gt1": 0.119140625,
+ "n_inside": 52,
+ "n_interface": 344,
+ "n_outside": 116,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.25,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 3.0092978477478027,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.8148083686828613,
+ "score_mean": 1.7576250854745012e-07,
+ "score_p50": -0.21060621738433838,
+ "score_p90": 0.8027170896530151,
+ "fraction_gt1": 0.09897610921501707,
+ "n_inside": 121,
+ "n_interface": 349,
+ "n_outside": 116,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.33333333333333326,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 8000,
+ "gap": 7414,
+ "cutoff_score": 3.5117294788360596,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2117199897766113,
+ "score_mean": 4.980613539373735e-07,
+ "score_p50": 0.0768081545829773,
+ "score_p90": 0.23117370903491974,
+ "fraction_gt1": 0.08605341246290801,
+ "n_inside": 187,
+ "n_interface": 371,
+ "n_outside": 116,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333326,
+ "selected_y_range": 0.4583333333333333,
+ "step": 2,
+ "n_elem": 674,
+ "target_elements": 8000,
+ "gap": 7326,
+ "cutoff_score": 2.188779830932617,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.7688426971435547,
+ "score_mean": 8.882865643045079e-08,
+ "score_p50": 0.1628483235836029,
+ "score_p90": 0.8004462122917175,
+ "fraction_gt1": 0.08279430789133248,
+ "n_inside": 189,
+ "n_interface": 468,
+ "n_outside": 116,
+ "selected_inside_frac": 0.6521739130434783,
+ "selected_interface_frac": 0.34782608695652173,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.5208333333333333,
+ "step": 3,
+ "n_elem": 773,
+ "target_elements": 8000,
+ "gap": 7227,
+ "cutoff_score": 1.8332608938217163,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4215011596679688,
+ "score_mean": 6.744215852449997e-08,
+ "score_p50": 0.2782990038394928,
+ "score_p90": 0.7049338221549988,
+ "fraction_gt1": 0.08287292817679558,
+ "n_inside": 274,
+ "n_interface": 515,
+ "n_outside": 116,
+ "selected_inside_frac": 0.7037037037037037,
+ "selected_interface_frac": 0.2962962962962963,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 905,
+ "target_elements": 8000,
+ "gap": 7095,
+ "cutoff_score": 2.035191059112549,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.379047393798828,
+ "score_mean": -5.7853227986015554e-08,
+ "score_p50": -0.03395324945449829,
+ "score_p90": 0.8741037845611572,
+ "fraction_gt1": 0.0909952606635071,
+ "n_inside": 356,
+ "n_interface": 583,
+ "n_outside": 116,
+ "selected_inside_frac": 0.7419354838709677,
+ "selected_interface_frac": 0.25806451612903225,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.5416666666666667,
+ "step": 5,
+ "n_elem": 1055,
+ "target_elements": 8000,
+ "gap": 6945,
+ "cutoff_score": 1.9483797550201416,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.334571361541748,
+ "score_mean": 9.876239204231752e-08,
+ "score_p50": -0.3163306415081024,
+ "score_p90": 1.0360510349273682,
+ "fraction_gt1": 0.10275080906148867,
+ "n_inside": 472,
+ "n_interface": 648,
+ "n_outside": 116,
+ "selected_inside_frac": 0.4864864864864865,
+ "selected_interface_frac": 0.5135135135135135,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.49999999999999994,
+ "selected_y_range": 0.84375,
+ "step": 6,
+ "n_elem": 1236,
+ "target_elements": 8000,
+ "gap": 6764,
+ "cutoff_score": 1.7839512825012207,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4819271564483643,
+ "score_mean": 6.335829283443672e-08,
+ "score_p50": -0.4223827123641968,
+ "score_p90": 1.1585137844085693,
+ "fraction_gt1": 0.11003460207612457,
+ "n_inside": 558,
+ "n_interface": 771,
+ "n_outside": 116,
+ "selected_inside_frac": 0.18604651162790697,
+ "selected_interface_frac": 0.7906976744186046,
+ "selected_outside_frac": 0.023255813953488372,
+ "selected_x_range": 0.5729166666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 7,
+ "n_elem": 1445,
+ "target_elements": 8000,
+ "gap": 6555,
+ "cutoff_score": 1.8287936449050903,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5542376041412354,
+ "score_mean": 3.6395441327385925e-08,
+ "score_p50": -0.3820977210998535,
+ "score_p90": 1.1320910453796387,
+ "fraction_gt1": 0.12581991651759095,
+ "n_inside": 602,
+ "n_interface": 953,
+ "n_outside": 122,
+ "selected_inside_frac": 0.24,
+ "selected_interface_frac": 0.76,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6145833333333333,
+ "selected_y_range": 0.8125,
+ "step": 8,
+ "n_elem": 1677,
+ "target_elements": 8000,
+ "gap": 6323,
+ "cutoff_score": 1.6299880743026733,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5852832794189453,
+ "score_mean": -7.869411433603091e-08,
+ "score_p50": -0.33461061120033264,
+ "score_p90": 1.3114540576934814,
+ "fraction_gt1": 0.15368746776689016,
+ "n_inside": 660,
+ "n_interface": 1157,
+ "n_outside": 122,
+ "selected_inside_frac": 0.08620689655172414,
+ "selected_interface_frac": 0.3275862068965517,
+ "selected_outside_frac": 0.5862068965517241,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.96875,
+ "step": 9,
+ "n_elem": 1939,
+ "target_elements": 8000,
+ "gap": 6061,
+ "cutoff_score": 1.8120838403701782,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.788602352142334,
+ "score_mean": 1.3709603763345513e-07,
+ "score_p50": -0.2736806869506836,
+ "score_p90": 1.254826545715332,
+ "fraction_gt1": 0.12668463611859837,
+ "n_inside": 685,
+ "n_interface": 1290,
+ "n_outside": 251,
+ "selected_inside_frac": 0.015151515151515152,
+ "selected_interface_frac": 0.5454545454545454,
+ "selected_outside_frac": 0.4393939393939394,
+ "selected_x_range": 0.6770833333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 10,
+ "n_elem": 2226,
+ "target_elements": 8000,
+ "gap": 5774,
+ "cutoff_score": 1.8051320314407349,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 3.0909423828125,
+ "score_mean": -1.2211915922932803e-08,
+ "score_p50": -0.1971721202135086,
+ "score_p90": 0.9264003038406372,
+ "fraction_gt1": 0.08683473389355742,
+ "n_inside": 688,
+ "n_interface": 1445,
+ "n_outside": 366,
+ "selected_inside_frac": 0.581081081081081,
+ "selected_interface_frac": 0.25675675675675674,
+ "selected_outside_frac": 0.16216216216216217,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2499,
+ "target_elements": 8000,
+ "gap": 5501,
+ "cutoff_score": 1.5989789962768555,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1681647300720215,
+ "score_mean": -5.342713293998713e-08,
+ "score_p50": -0.03448483347892761,
+ "score_p90": 1.0476387739181519,
+ "fraction_gt1": 0.10364145658263306,
+ "n_inside": 891,
+ "n_interface": 1556,
+ "n_outside": 409,
+ "selected_inside_frac": 0.21176470588235294,
+ "selected_interface_frac": 0.7764705882352941,
+ "selected_outside_frac": 0.011764705882352941,
+ "selected_x_range": 0.39583333333333337,
+ "selected_y_range": 0.9270833333333334,
+ "step": 12,
+ "n_elem": 2856,
+ "target_elements": 8000,
+ "gap": 5144,
+ "cutoff_score": 1.4625060558319092,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0566415786743164,
+ "score_mean": 7.475217955743574e-08,
+ "score_p50": 0.09975475072860718,
+ "score_p90": 1.0065901279449463,
+ "fraction_gt1": 0.10226576852418862,
+ "n_inside": 990,
+ "n_interface": 1861,
+ "n_outside": 415,
+ "selected_inside_frac": 0.25773195876288657,
+ "selected_interface_frac": 0.7422680412371134,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.7291666666666667,
+ "step": 13,
+ "n_elem": 3266,
+ "target_elements": 8000,
+ "gap": 4734,
+ "cutoff_score": 1.4573540687561035,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1335885524749756,
+ "score_mean": 1.6402890423705685e-07,
+ "score_p50": 0.09037131071090698,
+ "score_p90": 1.055550456047058,
+ "fraction_gt1": 0.13249126578876647,
+ "n_inside": 1119,
+ "n_interface": 2187,
+ "n_outside": 415,
+ "selected_inside_frac": 0.8648648648648649,
+ "selected_interface_frac": 0.10810810810810811,
+ "selected_outside_frac": 0.02702702702702703,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8229166666666667,
+ "step": 14,
+ "n_elem": 3721,
+ "target_elements": 8000,
+ "gap": 4279,
+ "cutoff_score": 1.5401763916015625,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4450130462646484,
+ "score_mean": 4.316489210509644e-08,
+ "score_p50": -0.2273387461900711,
+ "score_p90": 1.150179386138916,
+ "fraction_gt1": 0.12022630834512023,
+ "n_inside": 1526,
+ "n_interface": 2284,
+ "n_outside": 432,
+ "selected_inside_frac": 0.5118110236220472,
+ "selected_interface_frac": 0.47244094488188976,
+ "selected_outside_frac": 0.015748031496062992,
+ "selected_x_range": 0.953125,
+ "selected_y_range": 0.9791666666666667,
+ "step": 15,
+ "n_elem": 4242,
+ "target_elements": 8000,
+ "gap": 3758,
+ "cutoff_score": 1.4720515012741089,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.50693416595459,
+ "score_mean": 1.4926062874565105e-07,
+ "score_p50": -0.15223060548305511,
+ "score_p90": 1.0873950719833374,
+ "fraction_gt1": 0.1143264723863868,
+ "n_inside": 1858,
+ "n_interface": 2605,
+ "n_outside": 444,
+ "selected_inside_frac": 0.23809523809523808,
+ "selected_interface_frac": 0.6938775510204082,
+ "selected_outside_frac": 0.06802721088435375,
+ "selected_x_range": 0.984375,
+ "selected_y_range": 0.9791666666666667,
+ "step": 16,
+ "n_elem": 4907,
+ "target_elements": 8000,
+ "gap": 3093,
+ "cutoff_score": 1.5494306087493896,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.231790542602539,
+ "score_mean": -6.46102549239913e-08,
+ "score_p50": -0.2335902601480484,
+ "score_p90": 1.1196937561035156,
+ "fraction_gt1": 0.1166196189131969,
+ "n_inside": 2041,
+ "n_interface": 3127,
+ "n_outside": 500,
+ "selected_inside_frac": 0.21764705882352942,
+ "selected_interface_frac": 0.7,
+ "selected_outside_frac": 0.08235294117647059,
+ "selected_x_range": 0.9010416666666666,
+ "selected_y_range": 0.984375,
+ "step": 17,
+ "n_elem": 5668,
+ "target_elements": 8000,
+ "gap": 2332,
+ "cutoff_score": 1.5545926094055176,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2578182220458984,
+ "score_mean": 5.591006768668194e-08,
+ "score_p50": -0.1815335750579834,
+ "score_p90": 1.1479175090789795,
+ "fraction_gt1": 0.12809160305343512,
+ "n_inside": 2248,
+ "n_interface": 3735,
+ "n_outside": 567,
+ "selected_inside_frac": 0.47959183673469385,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.02040816326530612,
+ "selected_x_range": 0.7864583333333333,
+ "selected_y_range": 0.984375,
+ "step": 18,
+ "n_elem": 6550,
+ "target_elements": 8000,
+ "gap": 1450,
+ "cutoff_score": 1.4422017335891724,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2669501304626465,
+ "score_mean": 0.0,
+ "score_p50": -0.28745734691619873,
+ "score_p90": 1.167261004447937,
+ "fraction_gt1": 0.13716171617161715,
+ "n_inside": 2700,
+ "n_interface": 4276,
+ "n_outside": 599,
+ "selected_inside_frac": 0.09929078014184398,
+ "selected_interface_frac": 0.2127659574468085,
+ "selected_outside_frac": 0.6879432624113475,
+ "selected_x_range": 0.8177083333333334,
+ "selected_y_range": 0.9739583333333333,
+ "step": 19,
+ "n_elem": 7575,
+ "target_elements": 8000,
+ "gap": 425,
+ "cutoff_score": 1.6701682806015015,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 22,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.3213093244214309,
+ "max_err": 0.5715198086739477,
+ "actual_elements": 2014,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.7250164747238159,
+ "score_mean": 0.45627957582473755,
+ "score_p50": 0.39105212688446045,
+ "score_p90": 0.7250164747238159,
+ "fraction_gt1": 0.0,
+ "n_inside": 100,
+ "n_interface": 211,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4791666666666667,
+ "selected_y_range": 0.4583333333333333,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.7250164747238159,
+ "num_tied_at_cutoff": 100,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.7250164747238159,
+ "score_mean": 0.4070162773132324,
+ "score_p50": 0.39105212688446045,
+ "score_p90": 0.5126640796661377,
+ "fraction_gt1": 0.0,
+ "n_inside": 174,
+ "n_interface": 263,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.3958333333333333,
+ "step": 1,
+ "n_elem": 638,
+ "target_elements": 2000,
+ "gap": 1362,
+ "cutoff_score": 0.7250164747238159,
+ "num_tied_at_cutoff": 61,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.7250164747238159,
+ "score_mean": 0.3832763135433197,
+ "score_p50": 0.39105212688446045,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 268,
+ "n_interface": 271,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333337,
+ "selected_y_range": 0.20833333333333331,
+ "step": 2,
+ "n_elem": 740,
+ "target_elements": 2000,
+ "gap": 1260,
+ "cutoff_score": 0.7250164747238159,
+ "num_tied_at_cutoff": 28,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.5126640796661377,
+ "score_mean": 0.36622658371925354,
+ "score_p50": 0.36250823736190796,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 366,
+ "n_interface": 271,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.375,
+ "step": 3,
+ "n_elem": 838,
+ "target_elements": 2000,
+ "gap": 1162,
+ "cutoff_score": 0.5126640796661377,
+ "num_tied_at_cutoff": 27,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.33842819929122925,
+ "score_p50": 0.36250823736190796,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 487,
+ "n_interface": 282,
+ "n_outside": 201,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 970,
+ "target_elements": 2000,
+ "gap": 1030,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 374,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.3109055459499359,
+ "score_p50": 0.36250823736190796,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 490,
+ "n_interface": 432,
+ "n_outside": 201,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.75,
+ "step": 5,
+ "n_elem": 1123,
+ "target_elements": 2000,
+ "gap": 877,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 314,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.28591859340667725,
+ "score_p50": 0.25633203983306885,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 490,
+ "n_interface": 614,
+ "n_outside": 201,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.9166666666666667,
+ "step": 6,
+ "n_elem": 1305,
+ "target_elements": 2000,
+ "gap": 695,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 248,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.26397740840911865,
+ "score_p50": 0.25633203983306885,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 490,
+ "n_interface": 771,
+ "n_outside": 261,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.022222222222222223,
+ "selected_outside_frac": 0.9777777777777777,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.9583333333333333,
+ "step": 7,
+ "n_elem": 1522,
+ "target_elements": 2000,
+ "gap": 478,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 168,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.24773135781288147,
+ "score_p50": 0.19552606344223022,
+ "score_p90": 0.36250823736190796,
+ "fraction_gt1": 0.0,
+ "n_inside": 490,
+ "n_interface": 785,
+ "n_outside": 459,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1734,
+ "target_elements": 2000,
+ "gap": 266,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 94,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.23490126430988312,
+ "score_p50": 0.19552606344223022,
+ "score_p90": 0.36250823736190796,
+ "fraction_gt1": 0.0,
+ "n_inside": 490,
+ "n_interface": 785,
+ "n_outside": 673,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.08333333333333326,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 1948,
+ "target_elements": 2000,
+ "gap": 52,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 20,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 30,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.2665716405979284,
+ "max_err": 0.4261903941383609,
+ "actual_elements": 2134,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9885134100914001,
+ "score_mean": 0.14659422636032104,
+ "score_p50": 1.1160338999616215e-06,
+ "score_p90": 0.9025349617004395,
+ "fraction_gt1": 0.0,
+ "n_inside": 100,
+ "n_interface": 211,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666669,
+ "selected_y_range": 0.20833333333333331,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9813299775123596,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9874178171157837,
+ "score_mean": 0.15333694219589233,
+ "score_p50": 7.658299000468105e-05,
+ "score_p90": 0.8193220496177673,
+ "fraction_gt1": 0.0,
+ "n_inside": 171,
+ "n_interface": 216,
+ "n_outside": 201,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.3333333333333333,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 2000,
+ "gap": 1412,
+ "cutoff_score": 0.9583333134651184,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9761215448379517,
+ "score_mean": 0.17671780288219452,
+ "score_p50": 0.00543655501678586,
+ "score_p90": 0.8146694898605347,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 236,
+ "n_outside": 201,
+ "selected_inside_frac": 0.8,
+ "selected_interface_frac": 0.2,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.49999999999999994,
+ "selected_y_range": 0.37499999999999994,
+ "step": 2,
+ "n_elem": 698,
+ "target_elements": 2000,
+ "gap": 1302,
+ "cutoff_score": 0.9346137642860413,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9733557105064392,
+ "score_mean": 0.20932038128376007,
+ "score_p50": 0.0099423136562109,
+ "score_p90": 0.8053687810897827,
+ "fraction_gt1": 0.0,
+ "n_inside": 357,
+ "n_interface": 266,
+ "n_outside": 201,
+ "selected_inside_frac": 0.8333333333333334,
+ "selected_interface_frac": 0.16666666666666666,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.3958333333333333,
+ "step": 3,
+ "n_elem": 824,
+ "target_elements": 2000,
+ "gap": 1176,
+ "cutoff_score": 0.9279984831809998,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9704475998878479,
+ "score_mean": 0.21597976982593536,
+ "score_p50": 0.010285168886184692,
+ "score_p90": 0.8071600794792175,
+ "fraction_gt1": 0.0,
+ "n_inside": 470,
+ "n_interface": 294,
+ "n_outside": 204,
+ "selected_inside_frac": 0.5172413793103449,
+ "selected_interface_frac": 0.3448275862068966,
+ "selected_outside_frac": 0.13793103448275862,
+ "selected_x_range": 0.6979166666666667,
+ "selected_y_range": 0.3958333333333333,
+ "step": 4,
+ "n_elem": 968,
+ "target_elements": 2000,
+ "gap": 1032,
+ "cutoff_score": 0.920789897441864,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9652867317199707,
+ "score_mean": 0.20987974107265472,
+ "score_p50": 0.010162784717977047,
+ "score_p90": 0.8100589513778687,
+ "fraction_gt1": 0.0,
+ "n_inside": 563,
+ "n_interface": 359,
+ "n_outside": 234,
+ "selected_inside_frac": 0.5588235294117647,
+ "selected_interface_frac": 0.11764705882352941,
+ "selected_outside_frac": 0.3235294117647059,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.47916666666666674,
+ "step": 5,
+ "n_elem": 1156,
+ "target_elements": 2000,
+ "gap": 844,
+ "cutoff_score": 0.9060515761375427,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.970497727394104,
+ "score_mean": 0.20982372760772705,
+ "score_p50": 0.010909739881753922,
+ "score_p90": 0.8406352996826172,
+ "fraction_gt1": 0.0,
+ "n_inside": 672,
+ "n_interface": 392,
+ "n_outside": 288,
+ "selected_inside_frac": 0.55,
+ "selected_interface_frac": 0.225,
+ "selected_outside_frac": 0.225,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.5104166666666667,
+ "step": 6,
+ "n_elem": 1352,
+ "target_elements": 2000,
+ "gap": 648,
+ "cutoff_score": 0.9091985821723938,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9687715172767639,
+ "score_mean": 0.2013421207666397,
+ "score_p50": 0.011381298303604126,
+ "score_p90": 0.8110408782958984,
+ "fraction_gt1": 0.0,
+ "n_inside": 788,
+ "n_interface": 453,
+ "n_outside": 345,
+ "selected_inside_frac": 0.8085106382978723,
+ "selected_interface_frac": 0.14893617021276595,
+ "selected_outside_frac": 0.0425531914893617,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.5416666666666667,
+ "step": 7,
+ "n_elem": 1586,
+ "target_elements": 2000,
+ "gap": 414,
+ "cutoff_score": 0.8944756388664246,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9619367718696594,
+ "score_mean": 0.20253045856952667,
+ "score_p50": 0.0185477863997221,
+ "score_p90": 0.7844789624214172,
+ "fraction_gt1": 0.0,
+ "n_inside": 998,
+ "n_interface": 503,
+ "n_outside": 359,
+ "selected_inside_frac": 0.6521739130434783,
+ "selected_interface_frac": 0.2391304347826087,
+ "selected_outside_frac": 0.10869565217391304,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.5416666666666667,
+ "step": 8,
+ "n_elem": 1860,
+ "target_elements": 2000,
+ "gap": 140,
+ "cutoff_score": 0.901479184627533,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 30,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.2402637736732209,
+ "max_err": 0.3822174306612507,
+ "actual_elements": 2054,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.3266658782958984,
+ "score_mean": -1.4156103134155273e-07,
+ "score_p50": -0.47473615407943726,
+ "score_p90": 2.177816867828369,
+ "fraction_gt1": 0.16796875,
+ "n_inside": 100,
+ "n_interface": 211,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666669,
+ "selected_y_range": 0.20833333333333331,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 2.3154735565185547,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 2.6702189445495605,
+ "score_mean": -7.136338098234773e-08,
+ "score_p50": -0.41805487871170044,
+ "score_p90": 1.8317278623580933,
+ "fraction_gt1": 0.14965986394557823,
+ "n_inside": 171,
+ "n_interface": 216,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.3333333333333333,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 2000,
+ "gap": 1412,
+ "cutoff_score": 2.6208016872406006,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 3.2382354736328125,
+ "score_mean": -2.0672131029186858e-07,
+ "score_p50": -0.3386293053627014,
+ "score_p90": 1.0534499883651733,
+ "fraction_gt1": 0.11560693641618497,
+ "n_inside": 263,
+ "n_interface": 228,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.4583333333333333,
+ "step": 2,
+ "n_elem": 692,
+ "target_elements": 2000,
+ "gap": 1308,
+ "cutoff_score": 3.044022560119629,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 4.200798988342285,
+ "score_mean": -4.083743831984066e-08,
+ "score_p50": -0.16535496711730957,
+ "score_p90": 1.1047775745391846,
+ "fraction_gt1": 0.1297229219143577,
+ "n_inside": 344,
+ "n_interface": 249,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4270833333333333,
+ "selected_y_range": 0.42708333333333337,
+ "step": 3,
+ "n_elem": 794,
+ "target_elements": 2000,
+ "gap": 1206,
+ "cutoff_score": 1.9059563875198364,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.209787607192993,
+ "score_mean": -2.3372324164938618e-07,
+ "score_p50": 0.046647608280181885,
+ "score_p90": 1.2054967880249023,
+ "fraction_gt1": 0.1400437636761488,
+ "n_inside": 447,
+ "n_interface": 266,
+ "n_outside": 201,
+ "selected_inside_frac": 0.2222222222222222,
+ "selected_interface_frac": 0.7777777777777778,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.65625,
+ "selected_y_range": 0.34374999999999994,
+ "step": 4,
+ "n_elem": 914,
+ "target_elements": 2000,
+ "gap": 1086,
+ "cutoff_score": 1.483943223953247,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.6128365993499756,
+ "score_mean": -2.3430001760971209e-07,
+ "score_p50": 0.15978793799877167,
+ "score_p90": 1.3723058700561523,
+ "fraction_gt1": 0.15547024952015356,
+ "n_inside": 481,
+ "n_interface": 357,
+ "n_outside": 204,
+ "selected_inside_frac": 0.3225806451612903,
+ "selected_interface_frac": 0.16129032258064516,
+ "selected_outside_frac": 0.5161290322580645,
+ "selected_x_range": 0.53125,
+ "selected_y_range": 0.37500000000000006,
+ "step": 5,
+ "n_elem": 1042,
+ "target_elements": 2000,
+ "gap": 958,
+ "cutoff_score": 1.4809153079986572,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.8915314674377441,
+ "score_mean": -1.0105158310125262e-07,
+ "score_p50": 0.10535643994808197,
+ "score_p90": 1.3267875909805298,
+ "fraction_gt1": 0.1423841059602649,
+ "n_inside": 539,
+ "n_interface": 382,
+ "n_outside": 287,
+ "selected_inside_frac": 0.8888888888888888,
+ "selected_interface_frac": 0.08333333333333333,
+ "selected_outside_frac": 0.027777777777777776,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.43750000000000006,
+ "step": 6,
+ "n_elem": 1208,
+ "target_elements": 2000,
+ "gap": 792,
+ "cutoff_score": 1.6746454238891602,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.996254563331604,
+ "score_mean": -4.3596539711643345e-08,
+ "score_p50": -0.2846832275390625,
+ "score_p90": 1.4494909048080444,
+ "fraction_gt1": 0.15857142857142856,
+ "n_inside": 694,
+ "n_interface": 407,
+ "n_outside": 299,
+ "selected_inside_frac": 0.5952380952380952,
+ "selected_interface_frac": 0.11904761904761904,
+ "selected_outside_frac": 0.2857142857142857,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.5416666666666667,
+ "step": 7,
+ "n_elem": 1400,
+ "target_elements": 2000,
+ "gap": 600,
+ "cutoff_score": 1.7101725339889526,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0360493659973145,
+ "score_mean": 1.1164967617105503e-07,
+ "score_p50": -0.21882487833499908,
+ "score_p90": 1.3820576667785645,
+ "fraction_gt1": 0.15548780487804878,
+ "n_inside": 817,
+ "n_interface": 459,
+ "n_outside": 364,
+ "selected_inside_frac": 0.6122448979591837,
+ "selected_interface_frac": 0.16326530612244897,
+ "selected_outside_frac": 0.22448979591836735,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.5625,
+ "step": 8,
+ "n_elem": 1640,
+ "target_elements": 2000,
+ "gap": 360,
+ "cutoff_score": 1.776989221572876,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2239861488342285,
+ "score_mean": -7.849171623774964e-08,
+ "score_p50": -0.43968892097473145,
+ "score_p90": 1.2557255029678345,
+ "fraction_gt1": 0.13271604938271606,
+ "n_inside": 1007,
+ "n_interface": 511,
+ "n_outside": 426,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.7777777777777778,
+ "selected_outside_frac": 0.2222222222222222,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.75,
+ "step": 9,
+ "n_elem": 1944,
+ "target_elements": 2000,
+ "gap": 56,
+ "cutoff_score": 2.0429372787475586,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 30,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.16195104024698168,
+ "max_err": 0.2552767938493987,
+ "actual_elements": 4070,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.7250164747238159,
+ "score_mean": 0.45627957582473755,
+ "score_p50": 0.39105212688446045,
+ "score_p90": 0.7250164747238159,
+ "fraction_gt1": 0.0,
+ "n_inside": 100,
+ "n_interface": 211,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4791666666666667,
+ "selected_y_range": 0.4583333333333333,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.7250164747238159,
+ "num_tied_at_cutoff": 100,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.7250164747238159,
+ "score_mean": 0.4070162773132324,
+ "score_p50": 0.39105212688446045,
+ "score_p90": 0.5126640796661377,
+ "fraction_gt1": 0.0,
+ "n_inside": 174,
+ "n_interface": 263,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.3958333333333333,
+ "step": 1,
+ "n_elem": 638,
+ "target_elements": 4000,
+ "gap": 3362,
+ "cutoff_score": 0.7250164747238159,
+ "num_tied_at_cutoff": 61,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.7250164747238159,
+ "score_mean": 0.3832763135433197,
+ "score_p50": 0.39105212688446045,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 268,
+ "n_interface": 271,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333337,
+ "selected_y_range": 0.20833333333333331,
+ "step": 2,
+ "n_elem": 740,
+ "target_elements": 4000,
+ "gap": 3260,
+ "cutoff_score": 0.7250164747238159,
+ "num_tied_at_cutoff": 28,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.5126640796661377,
+ "score_mean": 0.36622658371925354,
+ "score_p50": 0.36250823736190796,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 366,
+ "n_interface": 271,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.375,
+ "step": 3,
+ "n_elem": 838,
+ "target_elements": 4000,
+ "gap": 3162,
+ "cutoff_score": 0.5126640796661377,
+ "num_tied_at_cutoff": 27,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.33842819929122925,
+ "score_p50": 0.36250823736190796,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 487,
+ "n_interface": 282,
+ "n_outside": 201,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 970,
+ "target_elements": 4000,
+ "gap": 3030,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 374,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.3109055459499359,
+ "score_p50": 0.36250823736190796,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 490,
+ "n_interface": 432,
+ "n_outside": 201,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.75,
+ "step": 5,
+ "n_elem": 1123,
+ "target_elements": 4000,
+ "gap": 2877,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 314,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.28591859340667725,
+ "score_p50": 0.25633203983306885,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 490,
+ "n_interface": 614,
+ "n_outside": 201,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.9166666666666667,
+ "step": 6,
+ "n_elem": 1305,
+ "target_elements": 4000,
+ "gap": 2695,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 248,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.26397740840911865,
+ "score_p50": 0.25633203983306885,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 490,
+ "n_interface": 771,
+ "n_outside": 261,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.022222222222222223,
+ "selected_outside_frac": 0.9777777777777777,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.9583333333333333,
+ "step": 7,
+ "n_elem": 1522,
+ "target_elements": 4000,
+ "gap": 2478,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 168,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.24773135781288147,
+ "score_p50": 0.19552606344223022,
+ "score_p90": 0.36250823736190796,
+ "fraction_gt1": 0.0,
+ "n_inside": 490,
+ "n_interface": 785,
+ "n_outside": 459,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1734,
+ "target_elements": 4000,
+ "gap": 2266,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 94,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.23490126430988312,
+ "score_p50": 0.19552606344223022,
+ "score_p90": 0.36250823736190796,
+ "fraction_gt1": 0.0,
+ "n_inside": 490,
+ "n_interface": 785,
+ "n_outside": 673,
+ "selected_inside_frac": 0.6551724137931034,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.3448275862068966,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 1948,
+ "target_elements": 4000,
+ "gap": 2052,
+ "cutoff_score": 0.36250823736190796,
+ "num_tied_at_cutoff": 305,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36250823736190796,
+ "score_mean": 0.21469442546367645,
+ "score_p50": 0.19552606344223022,
+ "score_p90": 0.2765156030654907,
+ "fraction_gt1": 0.0,
+ "n_inside": 654,
+ "n_interface": 917,
+ "n_outside": 743,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4479166666666667,
+ "selected_y_range": 0.4479166666666667,
+ "step": 10,
+ "n_elem": 2314,
+ "target_elements": 4000,
+ "gap": 1686,
+ "cutoff_score": 0.36250823736190796,
+ "num_tied_at_cutoff": 222,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36250823736190796,
+ "score_mean": 0.20343321561813354,
+ "score_p50": 0.19552606344223022,
+ "score_p90": 0.25633203983306885,
+ "fraction_gt1": 0.0,
+ "n_inside": 957,
+ "n_interface": 924,
+ "n_outside": 743,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666663,
+ "selected_y_range": 0.2916666666666667,
+ "step": 11,
+ "n_elem": 2624,
+ "target_elements": 4000,
+ "gap": 1376,
+ "cutoff_score": 0.36250823736190796,
+ "num_tied_at_cutoff": 126,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36250823736190796,
+ "score_mean": 0.19435539841651917,
+ "score_p50": 0.19552606344223022,
+ "score_p90": 0.25633203983306885,
+ "fraction_gt1": 0.0,
+ "n_inside": 1281,
+ "n_interface": 924,
+ "n_outside": 743,
+ "selected_inside_frac": 0.20454545454545456,
+ "selected_interface_frac": 0.48863636363636365,
+ "selected_outside_frac": 0.3068181818181818,
+ "selected_x_range": 0.7708333333333334,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 2948,
+ "target_elements": 4000,
+ "gap": 1052,
+ "cutoff_score": 0.2765156030654907,
+ "num_tied_at_cutoff": 112,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2765156030654907,
+ "score_mean": 0.1823457032442093,
+ "score_p50": 0.18125411868095398,
+ "score_p90": 0.19552606344223022,
+ "fraction_gt1": 0.0,
+ "n_inside": 1355,
+ "n_interface": 1135,
+ "n_outside": 858,
+ "selected_inside_frac": 0.62,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.38,
+ "selected_x_range": 0.9427083333333334,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3348,
+ "target_elements": 4000,
+ "gap": 652,
+ "cutoff_score": 0.25633203983306885,
+ "num_tied_at_cutoff": 219,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25633203983306885,
+ "score_mean": 0.16969400644302368,
+ "score_p50": 0.18125411868095398,
+ "score_p90": 0.19552606344223022,
+ "fraction_gt1": 0.0,
+ "n_inside": 1634,
+ "n_interface": 1182,
+ "n_outside": 1024,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.375,
+ "step": 14,
+ "n_elem": 3840,
+ "target_elements": 4000,
+ "gap": 160,
+ "cutoff_score": 0.25633203983306885,
+ "num_tied_at_cutoff": 134,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 30,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.167530376746016,
+ "max_err": 0.2659904064143226,
+ "actual_elements": 4148,
+ "num_steps": 13,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9885134100914001,
+ "score_mean": 0.14659422636032104,
+ "score_p50": 1.1160338999616215e-06,
+ "score_p90": 0.9025349617004395,
+ "fraction_gt1": 0.0,
+ "n_inside": 100,
+ "n_interface": 211,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666669,
+ "selected_y_range": 0.20833333333333331,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9813299775123596,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9874178171157837,
+ "score_mean": 0.15333694219589233,
+ "score_p50": 7.658299000468105e-05,
+ "score_p90": 0.8193220496177673,
+ "fraction_gt1": 0.0,
+ "n_inside": 171,
+ "n_interface": 216,
+ "n_outside": 201,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.3333333333333333,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 4000,
+ "gap": 3412,
+ "cutoff_score": 0.9583333134651184,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9761215448379517,
+ "score_mean": 0.17671780288219452,
+ "score_p50": 0.00543655501678586,
+ "score_p90": 0.8146694898605347,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 236,
+ "n_outside": 201,
+ "selected_inside_frac": 0.8,
+ "selected_interface_frac": 0.2,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.49999999999999994,
+ "selected_y_range": 0.37499999999999994,
+ "step": 2,
+ "n_elem": 698,
+ "target_elements": 4000,
+ "gap": 3302,
+ "cutoff_score": 0.9346137642860413,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9733557105064392,
+ "score_mean": 0.20932038128376007,
+ "score_p50": 0.0099423136562109,
+ "score_p90": 0.8053687810897827,
+ "fraction_gt1": 0.0,
+ "n_inside": 357,
+ "n_interface": 266,
+ "n_outside": 201,
+ "selected_inside_frac": 0.8333333333333334,
+ "selected_interface_frac": 0.16666666666666666,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.3958333333333333,
+ "step": 3,
+ "n_elem": 824,
+ "target_elements": 4000,
+ "gap": 3176,
+ "cutoff_score": 0.9279984831809998,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9704475998878479,
+ "score_mean": 0.21597976982593536,
+ "score_p50": 0.010285168886184692,
+ "score_p90": 0.8071600794792175,
+ "fraction_gt1": 0.0,
+ "n_inside": 470,
+ "n_interface": 294,
+ "n_outside": 204,
+ "selected_inside_frac": 0.5172413793103449,
+ "selected_interface_frac": 0.3448275862068966,
+ "selected_outside_frac": 0.13793103448275862,
+ "selected_x_range": 0.6979166666666667,
+ "selected_y_range": 0.3958333333333333,
+ "step": 4,
+ "n_elem": 968,
+ "target_elements": 4000,
+ "gap": 3032,
+ "cutoff_score": 0.920789897441864,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9652867317199707,
+ "score_mean": 0.20987974107265472,
+ "score_p50": 0.010162784717977047,
+ "score_p90": 0.8100589513778687,
+ "fraction_gt1": 0.0,
+ "n_inside": 563,
+ "n_interface": 359,
+ "n_outside": 234,
+ "selected_inside_frac": 0.5588235294117647,
+ "selected_interface_frac": 0.11764705882352941,
+ "selected_outside_frac": 0.3235294117647059,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.47916666666666674,
+ "step": 5,
+ "n_elem": 1156,
+ "target_elements": 4000,
+ "gap": 2844,
+ "cutoff_score": 0.9060515761375427,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.970497727394104,
+ "score_mean": 0.20982372760772705,
+ "score_p50": 0.010909739881753922,
+ "score_p90": 0.8406352996826172,
+ "fraction_gt1": 0.0,
+ "n_inside": 672,
+ "n_interface": 392,
+ "n_outside": 288,
+ "selected_inside_frac": 0.55,
+ "selected_interface_frac": 0.225,
+ "selected_outside_frac": 0.225,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.5104166666666667,
+ "step": 6,
+ "n_elem": 1352,
+ "target_elements": 4000,
+ "gap": 2648,
+ "cutoff_score": 0.9091985821723938,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9687715172767639,
+ "score_mean": 0.2013421207666397,
+ "score_p50": 0.011381298303604126,
+ "score_p90": 0.8110408782958984,
+ "fraction_gt1": 0.0,
+ "n_inside": 788,
+ "n_interface": 453,
+ "n_outside": 345,
+ "selected_inside_frac": 0.8085106382978723,
+ "selected_interface_frac": 0.14893617021276595,
+ "selected_outside_frac": 0.0425531914893617,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.5416666666666667,
+ "step": 7,
+ "n_elem": 1586,
+ "target_elements": 4000,
+ "gap": 2414,
+ "cutoff_score": 0.8944756388664246,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9619367718696594,
+ "score_mean": 0.20253045856952667,
+ "score_p50": 0.0185477863997221,
+ "score_p90": 0.7844789624214172,
+ "fraction_gt1": 0.0,
+ "n_inside": 998,
+ "n_interface": 503,
+ "n_outside": 359,
+ "selected_inside_frac": 0.6909090909090909,
+ "selected_interface_frac": 0.21818181818181817,
+ "selected_outside_frac": 0.09090909090909091,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.6041666666666667,
+ "step": 8,
+ "n_elem": 1860,
+ "target_elements": 4000,
+ "gap": 2140,
+ "cutoff_score": 0.8973016738891602,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9560441970825195,
+ "score_mean": 0.20893815159797668,
+ "score_p50": 0.020797278732061386,
+ "score_p90": 0.78929203748703,
+ "fraction_gt1": 0.0,
+ "n_inside": 1206,
+ "n_interface": 584,
+ "n_outside": 398,
+ "selected_inside_frac": 0.6615384615384615,
+ "selected_interface_frac": 0.2153846153846154,
+ "selected_outside_frac": 0.12307692307692308,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.6875,
+ "step": 9,
+ "n_elem": 2188,
+ "target_elements": 4000,
+ "gap": 1812,
+ "cutoff_score": 0.9011638164520264,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9671384692192078,
+ "score_mean": 0.20591092109680176,
+ "score_p50": 0.025799956172704697,
+ "score_p90": 0.7792710065841675,
+ "fraction_gt1": 0.0,
+ "n_inside": 1429,
+ "n_interface": 680,
+ "n_outside": 457,
+ "selected_inside_frac": 0.47368421052631576,
+ "selected_interface_frac": 0.3815789473684211,
+ "selected_outside_frac": 0.14473684210526316,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.7916666666666667,
+ "step": 10,
+ "n_elem": 2566,
+ "target_elements": 4000,
+ "gap": 1434,
+ "cutoff_score": 0.9025012850761414,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9733696579933167,
+ "score_mean": 0.22530119121074677,
+ "score_p50": 0.028859954327344894,
+ "score_p90": 0.7981647253036499,
+ "fraction_gt1": 0.0,
+ "n_inside": 1625,
+ "n_interface": 873,
+ "n_outside": 508,
+ "selected_inside_frac": 0.35555555555555557,
+ "selected_interface_frac": 0.32222222222222224,
+ "selected_outside_frac": 0.32222222222222224,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.8541666666666667,
+ "step": 11,
+ "n_elem": 3006,
+ "target_elements": 4000,
+ "gap": 994,
+ "cutoff_score": 0.8883593678474426,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9644017815589905,
+ "score_mean": 0.22296515107154846,
+ "score_p50": 0.013731757178902626,
+ "score_p90": 0.8158706426620483,
+ "fraction_gt1": 0.0,
+ "n_inside": 1821,
+ "n_interface": 1038,
+ "n_outside": 679,
+ "selected_inside_frac": 0.39622641509433965,
+ "selected_interface_frac": 0.25471698113207547,
+ "selected_outside_frac": 0.3490566037735849,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.8541666666666667,
+ "step": 12,
+ "n_elem": 3538,
+ "target_elements": 4000,
+ "gap": 462,
+ "cutoff_score": 0.8951866626739502,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 30,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.16061003372586835,
+ "max_err": 0.23556126872441063,
+ "actual_elements": 4077,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.3266658782958984,
+ "score_mean": -1.4156103134155273e-07,
+ "score_p50": -0.47473615407943726,
+ "score_p90": 2.177816867828369,
+ "fraction_gt1": 0.16796875,
+ "n_inside": 100,
+ "n_interface": 211,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666669,
+ "selected_y_range": 0.20833333333333331,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 2.3154735565185547,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 2.6702189445495605,
+ "score_mean": -7.136338098234773e-08,
+ "score_p50": -0.41805487871170044,
+ "score_p90": 1.8317278623580933,
+ "fraction_gt1": 0.14965986394557823,
+ "n_inside": 171,
+ "n_interface": 216,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.3333333333333333,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 4000,
+ "gap": 3412,
+ "cutoff_score": 2.6208016872406006,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 3.2382354736328125,
+ "score_mean": -2.0672131029186858e-07,
+ "score_p50": -0.3386293053627014,
+ "score_p90": 1.0534499883651733,
+ "fraction_gt1": 0.11560693641618497,
+ "n_inside": 263,
+ "n_interface": 228,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.4583333333333333,
+ "step": 2,
+ "n_elem": 692,
+ "target_elements": 4000,
+ "gap": 3308,
+ "cutoff_score": 3.044022560119629,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 4.200798988342285,
+ "score_mean": -4.083743831984066e-08,
+ "score_p50": -0.16535496711730957,
+ "score_p90": 1.1047775745391846,
+ "fraction_gt1": 0.1297229219143577,
+ "n_inside": 344,
+ "n_interface": 249,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4270833333333333,
+ "selected_y_range": 0.42708333333333337,
+ "step": 3,
+ "n_elem": 794,
+ "target_elements": 4000,
+ "gap": 3206,
+ "cutoff_score": 1.9059563875198364,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.209787607192993,
+ "score_mean": -2.3372324164938618e-07,
+ "score_p50": 0.046647608280181885,
+ "score_p90": 1.2054967880249023,
+ "fraction_gt1": 0.1400437636761488,
+ "n_inside": 447,
+ "n_interface": 266,
+ "n_outside": 201,
+ "selected_inside_frac": 0.2222222222222222,
+ "selected_interface_frac": 0.7777777777777778,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.65625,
+ "selected_y_range": 0.34374999999999994,
+ "step": 4,
+ "n_elem": 914,
+ "target_elements": 4000,
+ "gap": 3086,
+ "cutoff_score": 1.483943223953247,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.6128365993499756,
+ "score_mean": -2.3430001760971209e-07,
+ "score_p50": 0.15978793799877167,
+ "score_p90": 1.3723058700561523,
+ "fraction_gt1": 0.15547024952015356,
+ "n_inside": 481,
+ "n_interface": 357,
+ "n_outside": 204,
+ "selected_inside_frac": 0.3225806451612903,
+ "selected_interface_frac": 0.16129032258064516,
+ "selected_outside_frac": 0.5161290322580645,
+ "selected_x_range": 0.53125,
+ "selected_y_range": 0.37500000000000006,
+ "step": 5,
+ "n_elem": 1042,
+ "target_elements": 4000,
+ "gap": 2958,
+ "cutoff_score": 1.4809153079986572,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.8915314674377441,
+ "score_mean": -1.0105158310125262e-07,
+ "score_p50": 0.10535643994808197,
+ "score_p90": 1.3267875909805298,
+ "fraction_gt1": 0.1423841059602649,
+ "n_inside": 539,
+ "n_interface": 382,
+ "n_outside": 287,
+ "selected_inside_frac": 0.8888888888888888,
+ "selected_interface_frac": 0.08333333333333333,
+ "selected_outside_frac": 0.027777777777777776,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.43750000000000006,
+ "step": 6,
+ "n_elem": 1208,
+ "target_elements": 4000,
+ "gap": 2792,
+ "cutoff_score": 1.6746454238891602,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.996254563331604,
+ "score_mean": -4.3596539711643345e-08,
+ "score_p50": -0.2846832275390625,
+ "score_p90": 1.4494909048080444,
+ "fraction_gt1": 0.15857142857142856,
+ "n_inside": 694,
+ "n_interface": 407,
+ "n_outside": 299,
+ "selected_inside_frac": 0.5952380952380952,
+ "selected_interface_frac": 0.11904761904761904,
+ "selected_outside_frac": 0.2857142857142857,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.5416666666666667,
+ "step": 7,
+ "n_elem": 1400,
+ "target_elements": 4000,
+ "gap": 2600,
+ "cutoff_score": 1.7101725339889526,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0360493659973145,
+ "score_mean": 1.1164967617105503e-07,
+ "score_p50": -0.21882487833499908,
+ "score_p90": 1.3820576667785645,
+ "fraction_gt1": 0.15548780487804878,
+ "n_inside": 817,
+ "n_interface": 459,
+ "n_outside": 364,
+ "selected_inside_frac": 0.6122448979591837,
+ "selected_interface_frac": 0.16326530612244897,
+ "selected_outside_frac": 0.22448979591836735,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.5625,
+ "step": 8,
+ "n_elem": 1640,
+ "target_elements": 4000,
+ "gap": 2360,
+ "cutoff_score": 1.776989221572876,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2239861488342285,
+ "score_mean": -7.849171623774964e-08,
+ "score_p50": -0.43968892097473145,
+ "score_p90": 1.2557255029678345,
+ "fraction_gt1": 0.13271604938271606,
+ "n_inside": 1007,
+ "n_interface": 511,
+ "n_outside": 426,
+ "selected_inside_frac": 0.5172413793103449,
+ "selected_interface_frac": 0.3448275862068966,
+ "selected_outside_frac": 0.13793103448275862,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.7708333333333333,
+ "step": 9,
+ "n_elem": 1944,
+ "target_elements": 4000,
+ "gap": 2056,
+ "cutoff_score": 1.8864445686340332,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5750532150268555,
+ "score_mean": -5.365728128481351e-08,
+ "score_p50": -0.49433812499046326,
+ "score_p90": 1.2484962940216064,
+ "fraction_gt1": 0.149010989010989,
+ "n_inside": 1160,
+ "n_interface": 643,
+ "n_outside": 472,
+ "selected_inside_frac": 0.17647058823529413,
+ "selected_interface_frac": 0.4411764705882353,
+ "selected_outside_frac": 0.38235294117647056,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8958333333333333,
+ "step": 10,
+ "n_elem": 2275,
+ "target_elements": 4000,
+ "gap": 1725,
+ "cutoff_score": 1.5347840785980225,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.41444993019104,
+ "score_mean": 2.3322566988781546e-08,
+ "score_p50": -0.3943311274051666,
+ "score_p90": 1.3435722589492798,
+ "fraction_gt1": 0.14978983568972107,
+ "n_inside": 1213,
+ "n_interface": 804,
+ "n_outside": 600,
+ "selected_inside_frac": 0.2692307692307692,
+ "selected_interface_frac": 0.3717948717948718,
+ "selected_outside_frac": 0.358974358974359,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9375,
+ "step": 11,
+ "n_elem": 2617,
+ "target_elements": 4000,
+ "gap": 1383,
+ "cutoff_score": 1.686885952949524,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1328940391540527,
+ "score_mean": -1.2268372984181042e-07,
+ "score_p50": -0.27738386392593384,
+ "score_p90": 1.1841530799865723,
+ "fraction_gt1": 0.12763819095477386,
+ "n_inside": 1324,
+ "n_interface": 924,
+ "n_outside": 737,
+ "selected_inside_frac": 0.898876404494382,
+ "selected_interface_frac": 0.0449438202247191,
+ "selected_outside_frac": 0.056179775280898875,
+ "selected_x_range": 0.7291666666666666,
+ "selected_y_range": 0.453125,
+ "step": 12,
+ "n_elem": 2985,
+ "target_elements": 4000,
+ "gap": 1015,
+ "cutoff_score": 1.8269518613815308,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.051287889480591,
+ "score_mean": 5.361799892966701e-08,
+ "score_p50": -0.10909907519817352,
+ "score_p90": 1.2314014434814453,
+ "fraction_gt1": 0.15285505124450952,
+ "n_inside": 1679,
+ "n_interface": 971,
+ "n_outside": 765,
+ "selected_inside_frac": 0.9117647058823529,
+ "selected_interface_frac": 0.06862745098039216,
+ "selected_outside_frac": 0.0196078431372549,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.5208333333333334,
+ "step": 13,
+ "n_elem": 3415,
+ "target_elements": 4000,
+ "gap": 585,
+ "cutoff_score": 1.8772013187408447,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.437765121459961,
+ "score_mean": -4.711926493428109e-08,
+ "score_p50": 0.056723594665527344,
+ "score_p90": 1.342343807220459,
+ "fraction_gt1": 0.17164179104477612,
+ "n_inside": 2102,
+ "n_interface": 1009,
+ "n_outside": 775,
+ "selected_inside_frac": 0.6052631578947368,
+ "selected_interface_frac": 0.02631578947368421,
+ "selected_outside_frac": 0.3684210526315789,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.625,
+ "step": 14,
+ "n_elem": 3886,
+ "target_elements": 4000,
+ "gap": 114,
+ "cutoff_score": 1.9423761367797852,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 30,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13953515066548064,
+ "max_err": 0.21263874240436675,
+ "actual_elements": 8126,
+ "num_steps": 21,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.7250164747238159,
+ "score_mean": 0.45627957582473755,
+ "score_p50": 0.39105212688446045,
+ "score_p90": 0.7250164747238159,
+ "fraction_gt1": 0.0,
+ "n_inside": 100,
+ "n_interface": 211,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4791666666666667,
+ "selected_y_range": 0.4583333333333333,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.7250164747238159,
+ "num_tied_at_cutoff": 100,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.7250164747238159,
+ "score_mean": 0.4070162773132324,
+ "score_p50": 0.39105212688446045,
+ "score_p90": 0.5126640796661377,
+ "fraction_gt1": 0.0,
+ "n_inside": 174,
+ "n_interface": 263,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.3958333333333333,
+ "step": 1,
+ "n_elem": 638,
+ "target_elements": 8000,
+ "gap": 7362,
+ "cutoff_score": 0.7250164747238159,
+ "num_tied_at_cutoff": 61,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.7250164747238159,
+ "score_mean": 0.3832763135433197,
+ "score_p50": 0.39105212688446045,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 268,
+ "n_interface": 271,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333337,
+ "selected_y_range": 0.20833333333333331,
+ "step": 2,
+ "n_elem": 740,
+ "target_elements": 8000,
+ "gap": 7260,
+ "cutoff_score": 0.7250164747238159,
+ "num_tied_at_cutoff": 28,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.5126640796661377,
+ "score_mean": 0.36622658371925354,
+ "score_p50": 0.36250823736190796,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 366,
+ "n_interface": 271,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.375,
+ "step": 3,
+ "n_elem": 838,
+ "target_elements": 8000,
+ "gap": 7162,
+ "cutoff_score": 0.5126640796661377,
+ "num_tied_at_cutoff": 27,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.33842819929122925,
+ "score_p50": 0.36250823736190796,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 487,
+ "n_interface": 282,
+ "n_outside": 201,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 970,
+ "target_elements": 8000,
+ "gap": 7030,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 374,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.3109055459499359,
+ "score_p50": 0.36250823736190796,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 490,
+ "n_interface": 432,
+ "n_outside": 201,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.75,
+ "step": 5,
+ "n_elem": 1123,
+ "target_elements": 8000,
+ "gap": 6877,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 314,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.28591859340667725,
+ "score_p50": 0.25633203983306885,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 490,
+ "n_interface": 614,
+ "n_outside": 201,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.9166666666666667,
+ "step": 6,
+ "n_elem": 1305,
+ "target_elements": 8000,
+ "gap": 6695,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 248,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.26397740840911865,
+ "score_p50": 0.25633203983306885,
+ "score_p90": 0.39105212688446045,
+ "fraction_gt1": 0.0,
+ "n_inside": 490,
+ "n_interface": 771,
+ "n_outside": 261,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.022222222222222223,
+ "selected_outside_frac": 0.9777777777777777,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.9583333333333333,
+ "step": 7,
+ "n_elem": 1522,
+ "target_elements": 8000,
+ "gap": 6478,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 168,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.24773135781288147,
+ "score_p50": 0.19552606344223022,
+ "score_p90": 0.36250823736190796,
+ "fraction_gt1": 0.0,
+ "n_inside": 490,
+ "n_interface": 785,
+ "n_outside": 459,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1734,
+ "target_elements": 8000,
+ "gap": 6266,
+ "cutoff_score": 0.39105212688446045,
+ "num_tied_at_cutoff": 94,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.39105212688446045,
+ "score_mean": 0.23490126430988312,
+ "score_p50": 0.19552606344223022,
+ "score_p90": 0.36250823736190796,
+ "fraction_gt1": 0.0,
+ "n_inside": 490,
+ "n_interface": 785,
+ "n_outside": 673,
+ "selected_inside_frac": 0.6551724137931034,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.3448275862068966,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 1948,
+ "target_elements": 8000,
+ "gap": 6052,
+ "cutoff_score": 0.36250823736190796,
+ "num_tied_at_cutoff": 305,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36250823736190796,
+ "score_mean": 0.21469442546367645,
+ "score_p50": 0.19552606344223022,
+ "score_p90": 0.2765156030654907,
+ "fraction_gt1": 0.0,
+ "n_inside": 654,
+ "n_interface": 917,
+ "n_outside": 743,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4479166666666667,
+ "selected_y_range": 0.4479166666666667,
+ "step": 10,
+ "n_elem": 2314,
+ "target_elements": 8000,
+ "gap": 5686,
+ "cutoff_score": 0.36250823736190796,
+ "num_tied_at_cutoff": 222,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36250823736190796,
+ "score_mean": 0.20343321561813354,
+ "score_p50": 0.19552606344223022,
+ "score_p90": 0.25633203983306885,
+ "fraction_gt1": 0.0,
+ "n_inside": 957,
+ "n_interface": 924,
+ "n_outside": 743,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666663,
+ "selected_y_range": 0.2916666666666667,
+ "step": 11,
+ "n_elem": 2624,
+ "target_elements": 8000,
+ "gap": 5376,
+ "cutoff_score": 0.36250823736190796,
+ "num_tied_at_cutoff": 126,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36250823736190796,
+ "score_mean": 0.19435539841651917,
+ "score_p50": 0.19552606344223022,
+ "score_p90": 0.25633203983306885,
+ "fraction_gt1": 0.0,
+ "n_inside": 1281,
+ "n_interface": 924,
+ "n_outside": 743,
+ "selected_inside_frac": 0.20454545454545456,
+ "selected_interface_frac": 0.48863636363636365,
+ "selected_outside_frac": 0.3068181818181818,
+ "selected_x_range": 0.7708333333333334,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 2948,
+ "target_elements": 8000,
+ "gap": 5052,
+ "cutoff_score": 0.2765156030654907,
+ "num_tied_at_cutoff": 112,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2765156030654907,
+ "score_mean": 0.1823457032442093,
+ "score_p50": 0.18125411868095398,
+ "score_p90": 0.19552606344223022,
+ "fraction_gt1": 0.0,
+ "n_inside": 1355,
+ "n_interface": 1135,
+ "n_outside": 858,
+ "selected_inside_frac": 0.62,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.38,
+ "selected_x_range": 0.9427083333333334,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3348,
+ "target_elements": 8000,
+ "gap": 4652,
+ "cutoff_score": 0.25633203983306885,
+ "num_tied_at_cutoff": 219,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25633203983306885,
+ "score_mean": 0.16969400644302368,
+ "score_p50": 0.18125411868095398,
+ "score_p90": 0.19552606344223022,
+ "fraction_gt1": 0.0,
+ "n_inside": 1634,
+ "n_interface": 1182,
+ "n_outside": 1024,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.375,
+ "step": 14,
+ "n_elem": 3840,
+ "target_elements": 8000,
+ "gap": 4160,
+ "cutoff_score": 0.25633203983306885,
+ "num_tied_at_cutoff": 134,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25633203983306885,
+ "score_mean": 0.16002000868320465,
+ "score_p50": 0.18125411868095398,
+ "score_p90": 0.19552606344223022,
+ "fraction_gt1": 0.0,
+ "n_inside": 2116,
+ "n_interface": 1182,
+ "n_outside": 1024,
+ "selected_inside_frac": 0.09302325581395349,
+ "selected_interface_frac": 0.9069767441860465,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5729166666666667,
+ "selected_y_range": 0.6041666666666667,
+ "step": 15,
+ "n_elem": 4322,
+ "target_elements": 8000,
+ "gap": 3678,
+ "cutoff_score": 0.19552606344223022,
+ "num_tied_at_cutoff": 1186,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.19552606344223022,
+ "score_mean": 0.14906689524650574,
+ "score_p50": 0.13825780153274536,
+ "score_p90": 0.19552606344223022,
+ "fraction_gt1": 0.0,
+ "n_inside": 2166,
+ "n_interface": 1709,
+ "n_outside": 1024,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.65625,
+ "selected_y_range": 0.7604166666666667,
+ "step": 16,
+ "n_elem": 4899,
+ "target_elements": 8000,
+ "gap": 3101,
+ "cutoff_score": 0.19552606344223022,
+ "num_tied_at_cutoff": 1002,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.19552606344223022,
+ "score_mean": 0.13968677818775177,
+ "score_p50": 0.12816601991653442,
+ "score_p90": 0.19552606344223022,
+ "fraction_gt1": 0.0,
+ "n_inside": 2166,
+ "n_interface": 2327,
+ "n_outside": 1024,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.90625,
+ "step": 17,
+ "n_elem": 5517,
+ "target_elements": 8000,
+ "gap": 2483,
+ "cutoff_score": 0.19552606344223022,
+ "num_tied_at_cutoff": 792,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.19552606344223022,
+ "score_mean": 0.13152101635932922,
+ "score_p50": 0.12816601991653442,
+ "score_p90": 0.18125411868095398,
+ "fraction_gt1": 0.0,
+ "n_inside": 2166,
+ "n_interface": 2977,
+ "n_outside": 1051,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.005405405405405406,
+ "selected_outside_frac": 0.9945945945945946,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 18,
+ "n_elem": 6194,
+ "target_elements": 8000,
+ "gap": 1806,
+ "cutoff_score": 0.19552606344223022,
+ "num_tied_at_cutoff": 572,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.19552606344223022,
+ "score_mean": 0.12462243437767029,
+ "score_p50": 0.09776303172111511,
+ "score_p90": 0.18125411868095398,
+ "fraction_gt1": 0.0,
+ "n_inside": 2166,
+ "n_interface": 3000,
+ "n_outside": 1742,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.29166666666666674,
+ "selected_y_range": 0.9791666666666667,
+ "step": 19,
+ "n_elem": 6908,
+ "target_elements": 8000,
+ "gap": 1092,
+ "cutoff_score": 0.19552606344223022,
+ "num_tied_at_cutoff": 346,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.19552606344223022,
+ "score_mean": 0.11883001774549484,
+ "score_p50": 0.09776303172111511,
+ "score_p90": 0.18125411868095398,
+ "fraction_gt1": 0.0,
+ "n_inside": 2166,
+ "n_interface": 3000,
+ "n_outside": 2486,
+ "selected_inside_frac": 0.1206896551724138,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.8793103448275862,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 20,
+ "n_elem": 7652,
+ "target_elements": 8000,
+ "gap": 348,
+ "cutoff_score": 0.18125411868095398,
+ "num_tied_at_cutoff": 982,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 30,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.13248068312140837,
+ "max_err": 0.1947240968888983,
+ "actual_elements": 8278,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9885134100914001,
+ "score_mean": 0.14659422636032104,
+ "score_p50": 1.1160338999616215e-06,
+ "score_p90": 0.9025349617004395,
+ "fraction_gt1": 0.0,
+ "n_inside": 100,
+ "n_interface": 211,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666669,
+ "selected_y_range": 0.20833333333333331,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9813299775123596,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9874178171157837,
+ "score_mean": 0.15333694219589233,
+ "score_p50": 7.658299000468105e-05,
+ "score_p90": 0.8193220496177673,
+ "fraction_gt1": 0.0,
+ "n_inside": 171,
+ "n_interface": 216,
+ "n_outside": 201,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.3333333333333333,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 8000,
+ "gap": 7412,
+ "cutoff_score": 0.9583333134651184,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9761215448379517,
+ "score_mean": 0.17671780288219452,
+ "score_p50": 0.00543655501678586,
+ "score_p90": 0.8146694898605347,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 236,
+ "n_outside": 201,
+ "selected_inside_frac": 0.8,
+ "selected_interface_frac": 0.2,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.49999999999999994,
+ "selected_y_range": 0.37499999999999994,
+ "step": 2,
+ "n_elem": 698,
+ "target_elements": 8000,
+ "gap": 7302,
+ "cutoff_score": 0.9346137642860413,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9733557105064392,
+ "score_mean": 0.20932038128376007,
+ "score_p50": 0.0099423136562109,
+ "score_p90": 0.8053687810897827,
+ "fraction_gt1": 0.0,
+ "n_inside": 357,
+ "n_interface": 266,
+ "n_outside": 201,
+ "selected_inside_frac": 0.8333333333333334,
+ "selected_interface_frac": 0.16666666666666666,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.3958333333333333,
+ "step": 3,
+ "n_elem": 824,
+ "target_elements": 8000,
+ "gap": 7176,
+ "cutoff_score": 0.9279984831809998,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9704475998878479,
+ "score_mean": 0.21597976982593536,
+ "score_p50": 0.010285168886184692,
+ "score_p90": 0.8071600794792175,
+ "fraction_gt1": 0.0,
+ "n_inside": 470,
+ "n_interface": 294,
+ "n_outside": 204,
+ "selected_inside_frac": 0.5172413793103449,
+ "selected_interface_frac": 0.3448275862068966,
+ "selected_outside_frac": 0.13793103448275862,
+ "selected_x_range": 0.6979166666666667,
+ "selected_y_range": 0.3958333333333333,
+ "step": 4,
+ "n_elem": 968,
+ "target_elements": 8000,
+ "gap": 7032,
+ "cutoff_score": 0.920789897441864,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9652867317199707,
+ "score_mean": 0.20987974107265472,
+ "score_p50": 0.010162784717977047,
+ "score_p90": 0.8100589513778687,
+ "fraction_gt1": 0.0,
+ "n_inside": 563,
+ "n_interface": 359,
+ "n_outside": 234,
+ "selected_inside_frac": 0.5588235294117647,
+ "selected_interface_frac": 0.11764705882352941,
+ "selected_outside_frac": 0.3235294117647059,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.47916666666666674,
+ "step": 5,
+ "n_elem": 1156,
+ "target_elements": 8000,
+ "gap": 6844,
+ "cutoff_score": 0.9060515761375427,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.970497727394104,
+ "score_mean": 0.20982372760772705,
+ "score_p50": 0.010909739881753922,
+ "score_p90": 0.8406352996826172,
+ "fraction_gt1": 0.0,
+ "n_inside": 672,
+ "n_interface": 392,
+ "n_outside": 288,
+ "selected_inside_frac": 0.55,
+ "selected_interface_frac": 0.225,
+ "selected_outside_frac": 0.225,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.5104166666666667,
+ "step": 6,
+ "n_elem": 1352,
+ "target_elements": 8000,
+ "gap": 6648,
+ "cutoff_score": 0.9091985821723938,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9687715172767639,
+ "score_mean": 0.2013421207666397,
+ "score_p50": 0.011381298303604126,
+ "score_p90": 0.8110408782958984,
+ "fraction_gt1": 0.0,
+ "n_inside": 788,
+ "n_interface": 453,
+ "n_outside": 345,
+ "selected_inside_frac": 0.8085106382978723,
+ "selected_interface_frac": 0.14893617021276595,
+ "selected_outside_frac": 0.0425531914893617,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.5416666666666667,
+ "step": 7,
+ "n_elem": 1586,
+ "target_elements": 8000,
+ "gap": 6414,
+ "cutoff_score": 0.8944756388664246,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9619367718696594,
+ "score_mean": 0.20253045856952667,
+ "score_p50": 0.0185477863997221,
+ "score_p90": 0.7844789624214172,
+ "fraction_gt1": 0.0,
+ "n_inside": 998,
+ "n_interface": 503,
+ "n_outside": 359,
+ "selected_inside_frac": 0.6909090909090909,
+ "selected_interface_frac": 0.21818181818181817,
+ "selected_outside_frac": 0.09090909090909091,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.6041666666666667,
+ "step": 8,
+ "n_elem": 1860,
+ "target_elements": 8000,
+ "gap": 6140,
+ "cutoff_score": 0.8973016738891602,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9560441970825195,
+ "score_mean": 0.20893815159797668,
+ "score_p50": 0.020797278732061386,
+ "score_p90": 0.78929203748703,
+ "fraction_gt1": 0.0,
+ "n_inside": 1206,
+ "n_interface": 584,
+ "n_outside": 398,
+ "selected_inside_frac": 0.6615384615384615,
+ "selected_interface_frac": 0.2153846153846154,
+ "selected_outside_frac": 0.12307692307692308,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.6875,
+ "step": 9,
+ "n_elem": 2188,
+ "target_elements": 8000,
+ "gap": 5812,
+ "cutoff_score": 0.9011638164520264,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9671384692192078,
+ "score_mean": 0.20591092109680176,
+ "score_p50": 0.025799956172704697,
+ "score_p90": 0.7792710065841675,
+ "fraction_gt1": 0.0,
+ "n_inside": 1429,
+ "n_interface": 680,
+ "n_outside": 457,
+ "selected_inside_frac": 0.47368421052631576,
+ "selected_interface_frac": 0.3815789473684211,
+ "selected_outside_frac": 0.14473684210526316,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.7916666666666667,
+ "step": 10,
+ "n_elem": 2566,
+ "target_elements": 8000,
+ "gap": 5434,
+ "cutoff_score": 0.9025012850761414,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9733696579933167,
+ "score_mean": 0.22530119121074677,
+ "score_p50": 0.028859954327344894,
+ "score_p90": 0.7981647253036499,
+ "fraction_gt1": 0.0,
+ "n_inside": 1625,
+ "n_interface": 873,
+ "n_outside": 508,
+ "selected_inside_frac": 0.35555555555555557,
+ "selected_interface_frac": 0.32222222222222224,
+ "selected_outside_frac": 0.32222222222222224,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.8541666666666667,
+ "step": 11,
+ "n_elem": 3006,
+ "target_elements": 8000,
+ "gap": 4994,
+ "cutoff_score": 0.8883593678474426,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9644017815589905,
+ "score_mean": 0.22296515107154846,
+ "score_p50": 0.013731757178902626,
+ "score_p90": 0.8158706426620483,
+ "fraction_gt1": 0.0,
+ "n_inside": 1821,
+ "n_interface": 1038,
+ "n_outside": 679,
+ "selected_inside_frac": 0.39622641509433965,
+ "selected_interface_frac": 0.25471698113207547,
+ "selected_outside_frac": 0.3490566037735849,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.8541666666666667,
+ "step": 12,
+ "n_elem": 3538,
+ "target_elements": 8000,
+ "gap": 4462,
+ "cutoff_score": 0.8951866626739502,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9788441061973572,
+ "score_mean": 0.21482491493225098,
+ "score_p50": 0.008157366886734962,
+ "score_p90": 0.8224164843559265,
+ "fraction_gt1": 0.0,
+ "n_inside": 2069,
+ "n_interface": 1199,
+ "n_outside": 880,
+ "selected_inside_frac": 0.5967741935483871,
+ "selected_interface_frac": 0.1693548387096774,
+ "selected_outside_frac": 0.23387096774193547,
+ "selected_x_range": 0.9270833333333334,
+ "selected_y_range": 0.8125,
+ "step": 13,
+ "n_elem": 4148,
+ "target_elements": 8000,
+ "gap": 3852,
+ "cutoff_score": 0.9069240093231201,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9707594513893127,
+ "score_mean": 0.19757017493247986,
+ "score_p50": 0.007549428381025791,
+ "score_p90": 0.7968035936355591,
+ "fraction_gt1": 0.0,
+ "n_inside": 2452,
+ "n_interface": 1315,
+ "n_outside": 1059,
+ "selected_inside_frac": 0.7430555555555556,
+ "selected_interface_frac": 0.16666666666666666,
+ "selected_outside_frac": 0.09027777777777778,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9166666666666667,
+ "step": 14,
+ "n_elem": 4826,
+ "target_elements": 8000,
+ "gap": 3174,
+ "cutoff_score": 0.8955187201499939,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9556688666343689,
+ "score_mean": 0.18541695177555084,
+ "score_p50": 0.010862912982702255,
+ "score_p90": 0.7684678435325623,
+ "fraction_gt1": 0.0,
+ "n_inside": 3010,
+ "n_interface": 1464,
+ "n_outside": 1148,
+ "selected_inside_frac": 0.6130952380952381,
+ "selected_interface_frac": 0.15476190476190477,
+ "selected_outside_frac": 0.23214285714285715,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9375,
+ "step": 15,
+ "n_elem": 5622,
+ "target_elements": 8000,
+ "gap": 2378,
+ "cutoff_score": 0.8725817203521729,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9687389731407166,
+ "score_mean": 0.1779780387878418,
+ "score_p50": 0.012686551548540592,
+ "score_p90": 0.7331696152687073,
+ "fraction_gt1": 0.0,
+ "n_inside": 3571,
+ "n_interface": 1628,
+ "n_outside": 1360,
+ "selected_inside_frac": 0.5051020408163265,
+ "selected_interface_frac": 0.2857142857142857,
+ "selected_outside_frac": 0.20918367346938777,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.7916666666666666,
+ "step": 16,
+ "n_elem": 6559,
+ "target_elements": 8000,
+ "gap": 1441,
+ "cutoff_score": 0.8582631945610046,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9621679186820984,
+ "score_mean": 0.18109789490699768,
+ "score_p50": 0.01028572116047144,
+ "score_p90": 0.7362321019172668,
+ "fraction_gt1": 0.0,
+ "n_inside": 4125,
+ "n_interface": 1960,
+ "n_outside": 1611,
+ "selected_inside_frac": 0.801980198019802,
+ "selected_interface_frac": 0.15841584158415842,
+ "selected_outside_frac": 0.039603960396039604,
+ "selected_x_range": 0.578125,
+ "selected_y_range": 0.7291666666666666,
+ "step": 17,
+ "n_elem": 7696,
+ "target_elements": 8000,
+ "gap": 304,
+ "cutoff_score": 0.9023028016090393,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 30,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.12534804983915018,
+ "max_err": 0.18815404088693166,
+ "actual_elements": 8341,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.3266658782958984,
+ "score_mean": -1.4156103134155273e-07,
+ "score_p50": -0.47473615407943726,
+ "score_p90": 2.177816867828369,
+ "fraction_gt1": 0.16796875,
+ "n_inside": 100,
+ "n_interface": 211,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666669,
+ "selected_y_range": 0.20833333333333331,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 2.3154735565185547,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 2.6702189445495605,
+ "score_mean": -7.136338098234773e-08,
+ "score_p50": -0.41805487871170044,
+ "score_p90": 1.8317278623580933,
+ "fraction_gt1": 0.14965986394557823,
+ "n_inside": 171,
+ "n_interface": 216,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.3333333333333333,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 8000,
+ "gap": 7412,
+ "cutoff_score": 2.6208016872406006,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 3.2382354736328125,
+ "score_mean": -2.0672131029186858e-07,
+ "score_p50": -0.3386293053627014,
+ "score_p90": 1.0534499883651733,
+ "fraction_gt1": 0.11560693641618497,
+ "n_inside": 263,
+ "n_interface": 228,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.4583333333333333,
+ "step": 2,
+ "n_elem": 692,
+ "target_elements": 8000,
+ "gap": 7308,
+ "cutoff_score": 3.044022560119629,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 4.200798988342285,
+ "score_mean": -4.083743831984066e-08,
+ "score_p50": -0.16535496711730957,
+ "score_p90": 1.1047775745391846,
+ "fraction_gt1": 0.1297229219143577,
+ "n_inside": 344,
+ "n_interface": 249,
+ "n_outside": 201,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4270833333333333,
+ "selected_y_range": 0.42708333333333337,
+ "step": 3,
+ "n_elem": 794,
+ "target_elements": 8000,
+ "gap": 7206,
+ "cutoff_score": 1.9059563875198364,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.209787607192993,
+ "score_mean": -2.3372324164938618e-07,
+ "score_p50": 0.046647608280181885,
+ "score_p90": 1.2054967880249023,
+ "fraction_gt1": 0.1400437636761488,
+ "n_inside": 447,
+ "n_interface": 266,
+ "n_outside": 201,
+ "selected_inside_frac": 0.2222222222222222,
+ "selected_interface_frac": 0.7777777777777778,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.65625,
+ "selected_y_range": 0.34374999999999994,
+ "step": 4,
+ "n_elem": 914,
+ "target_elements": 8000,
+ "gap": 7086,
+ "cutoff_score": 1.483943223953247,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.6128365993499756,
+ "score_mean": -2.3430001760971209e-07,
+ "score_p50": 0.15978793799877167,
+ "score_p90": 1.3723058700561523,
+ "fraction_gt1": 0.15547024952015356,
+ "n_inside": 481,
+ "n_interface": 357,
+ "n_outside": 204,
+ "selected_inside_frac": 0.3225806451612903,
+ "selected_interface_frac": 0.16129032258064516,
+ "selected_outside_frac": 0.5161290322580645,
+ "selected_x_range": 0.53125,
+ "selected_y_range": 0.37500000000000006,
+ "step": 5,
+ "n_elem": 1042,
+ "target_elements": 8000,
+ "gap": 6958,
+ "cutoff_score": 1.4809153079986572,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.8915314674377441,
+ "score_mean": -1.0105158310125262e-07,
+ "score_p50": 0.10535643994808197,
+ "score_p90": 1.3267875909805298,
+ "fraction_gt1": 0.1423841059602649,
+ "n_inside": 539,
+ "n_interface": 382,
+ "n_outside": 287,
+ "selected_inside_frac": 0.8888888888888888,
+ "selected_interface_frac": 0.08333333333333333,
+ "selected_outside_frac": 0.027777777777777776,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.43750000000000006,
+ "step": 6,
+ "n_elem": 1208,
+ "target_elements": 8000,
+ "gap": 6792,
+ "cutoff_score": 1.6746454238891602,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.996254563331604,
+ "score_mean": -4.3596539711643345e-08,
+ "score_p50": -0.2846832275390625,
+ "score_p90": 1.4494909048080444,
+ "fraction_gt1": 0.15857142857142856,
+ "n_inside": 694,
+ "n_interface": 407,
+ "n_outside": 299,
+ "selected_inside_frac": 0.5952380952380952,
+ "selected_interface_frac": 0.11904761904761904,
+ "selected_outside_frac": 0.2857142857142857,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.5416666666666667,
+ "step": 7,
+ "n_elem": 1400,
+ "target_elements": 8000,
+ "gap": 6600,
+ "cutoff_score": 1.7101725339889526,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0360493659973145,
+ "score_mean": 1.1164967617105503e-07,
+ "score_p50": -0.21882487833499908,
+ "score_p90": 1.3820576667785645,
+ "fraction_gt1": 0.15548780487804878,
+ "n_inside": 817,
+ "n_interface": 459,
+ "n_outside": 364,
+ "selected_inside_frac": 0.6122448979591837,
+ "selected_interface_frac": 0.16326530612244897,
+ "selected_outside_frac": 0.22448979591836735,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.5625,
+ "step": 8,
+ "n_elem": 1640,
+ "target_elements": 8000,
+ "gap": 6360,
+ "cutoff_score": 1.776989221572876,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2239861488342285,
+ "score_mean": -7.849171623774964e-08,
+ "score_p50": -0.43968892097473145,
+ "score_p90": 1.2557255029678345,
+ "fraction_gt1": 0.13271604938271606,
+ "n_inside": 1007,
+ "n_interface": 511,
+ "n_outside": 426,
+ "selected_inside_frac": 0.5172413793103449,
+ "selected_interface_frac": 0.3448275862068966,
+ "selected_outside_frac": 0.13793103448275862,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.7708333333333333,
+ "step": 9,
+ "n_elem": 1944,
+ "target_elements": 8000,
+ "gap": 6056,
+ "cutoff_score": 1.8864445686340332,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5750532150268555,
+ "score_mean": -5.365728128481351e-08,
+ "score_p50": -0.49433812499046326,
+ "score_p90": 1.2484962940216064,
+ "fraction_gt1": 0.149010989010989,
+ "n_inside": 1160,
+ "n_interface": 643,
+ "n_outside": 472,
+ "selected_inside_frac": 0.17647058823529413,
+ "selected_interface_frac": 0.4411764705882353,
+ "selected_outside_frac": 0.38235294117647056,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8958333333333333,
+ "step": 10,
+ "n_elem": 2275,
+ "target_elements": 8000,
+ "gap": 5725,
+ "cutoff_score": 1.5347840785980225,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.41444993019104,
+ "score_mean": 2.3322566988781546e-08,
+ "score_p50": -0.3943311274051666,
+ "score_p90": 1.3435722589492798,
+ "fraction_gt1": 0.14978983568972107,
+ "n_inside": 1213,
+ "n_interface": 804,
+ "n_outside": 600,
+ "selected_inside_frac": 0.2692307692307692,
+ "selected_interface_frac": 0.3717948717948718,
+ "selected_outside_frac": 0.358974358974359,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9375,
+ "step": 11,
+ "n_elem": 2617,
+ "target_elements": 8000,
+ "gap": 5383,
+ "cutoff_score": 1.686885952949524,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1328940391540527,
+ "score_mean": -1.2268372984181042e-07,
+ "score_p50": -0.27738386392593384,
+ "score_p90": 1.1841530799865723,
+ "fraction_gt1": 0.12763819095477386,
+ "n_inside": 1324,
+ "n_interface": 924,
+ "n_outside": 737,
+ "selected_inside_frac": 0.898876404494382,
+ "selected_interface_frac": 0.0449438202247191,
+ "selected_outside_frac": 0.056179775280898875,
+ "selected_x_range": 0.7291666666666666,
+ "selected_y_range": 0.453125,
+ "step": 12,
+ "n_elem": 2985,
+ "target_elements": 8000,
+ "gap": 5015,
+ "cutoff_score": 1.8269518613815308,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.051287889480591,
+ "score_mean": 5.361799892966701e-08,
+ "score_p50": -0.10909907519817352,
+ "score_p90": 1.2314014434814453,
+ "fraction_gt1": 0.15285505124450952,
+ "n_inside": 1679,
+ "n_interface": 971,
+ "n_outside": 765,
+ "selected_inside_frac": 0.9117647058823529,
+ "selected_interface_frac": 0.06862745098039216,
+ "selected_outside_frac": 0.0196078431372549,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.5208333333333334,
+ "step": 13,
+ "n_elem": 3415,
+ "target_elements": 8000,
+ "gap": 4585,
+ "cutoff_score": 1.8772013187408447,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.437765121459961,
+ "score_mean": -4.711926493428109e-08,
+ "score_p50": 0.056723594665527344,
+ "score_p90": 1.342343807220459,
+ "fraction_gt1": 0.17164179104477612,
+ "n_inside": 2102,
+ "n_interface": 1009,
+ "n_outside": 775,
+ "selected_inside_frac": 0.3017241379310345,
+ "selected_interface_frac": 0.5517241379310345,
+ "selected_outside_frac": 0.14655172413793102,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.6666666666666667,
+ "step": 14,
+ "n_elem": 3886,
+ "target_elements": 8000,
+ "gap": 4114,
+ "cutoff_score": 1.5821688175201416,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.120605230331421,
+ "score_mean": 0.0,
+ "score_p50": -0.2378234565258026,
+ "score_p90": 1.382939100265503,
+ "fraction_gt1": 0.16074681238615665,
+ "n_inside": 2263,
+ "n_interface": 1278,
+ "n_outside": 851,
+ "selected_inside_frac": 0.05343511450381679,
+ "selected_interface_frac": 0.183206106870229,
+ "selected_outside_frac": 0.7633587786259542,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8333333333333334,
+ "step": 15,
+ "n_elem": 4392,
+ "target_elements": 8000,
+ "gap": 3608,
+ "cutoff_score": 1.63523530960083,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1346936225891113,
+ "score_mean": -4.870150149827168e-08,
+ "score_p50": -0.41027265787124634,
+ "score_p90": 1.3601086139678955,
+ "fraction_gt1": 0.16177937362856573,
+ "n_inside": 2294,
+ "n_interface": 1444,
+ "n_outside": 1275,
+ "selected_inside_frac": 0.6066666666666667,
+ "selected_interface_frac": 0.19333333333333333,
+ "selected_outside_frac": 0.2,
+ "selected_x_range": 0.9583333333333334,
+ "selected_y_range": 0.9791666666666667,
+ "step": 16,
+ "n_elem": 5013,
+ "target_elements": 8000,
+ "gap": 2987,
+ "cutoff_score": 1.659238338470459,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.030789375305176,
+ "score_mean": -2.147990763035068e-08,
+ "score_p50": -0.3064029812812805,
+ "score_p90": 1.4394676685333252,
+ "fraction_gt1": 0.14939292627133557,
+ "n_inside": 2634,
+ "n_interface": 1620,
+ "n_outside": 1429,
+ "selected_inside_frac": 0.8294117647058824,
+ "selected_interface_frac": 0.08235294117647059,
+ "selected_outside_frac": 0.08823529411764706,
+ "selected_x_range": 0.9479166666666666,
+ "selected_y_range": 0.75,
+ "step": 17,
+ "n_elem": 5683,
+ "target_elements": 8000,
+ "gap": 2317,
+ "cutoff_score": 1.8038268089294434,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.271326780319214,
+ "score_mean": -3.809340398674976e-08,
+ "score_p50": -0.2027207911014557,
+ "score_p90": 1.2957298755645752,
+ "fraction_gt1": 0.13793103448275862,
+ "n_inside": 3145,
+ "n_interface": 1735,
+ "n_outside": 1529,
+ "selected_inside_frac": 0.8177083333333334,
+ "selected_interface_frac": 0.078125,
+ "selected_outside_frac": 0.10416666666666667,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9583333333333334,
+ "step": 18,
+ "n_elem": 6409,
+ "target_elements": 8000,
+ "gap": 1591,
+ "cutoff_score": 1.7898751497268677,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.425442934036255,
+ "score_mean": 3.331613385171295e-08,
+ "score_p50": -0.06520351767539978,
+ "score_p90": 1.1756548881530762,
+ "fraction_gt1": 0.12131550218340612,
+ "n_inside": 3852,
+ "n_interface": 1841,
+ "n_outside": 1635,
+ "selected_inside_frac": 0.7351598173515982,
+ "selected_interface_frac": 0.1461187214611872,
+ "selected_outside_frac": 0.1187214611872146,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9791666666666667,
+ "step": 19,
+ "n_elem": 7328,
+ "target_elements": 8000,
+ "gap": 672,
+ "cutoff_score": 1.779794692993164,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 30,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.1315402140941779,
+ "max_err": 0.2078316170868224,
+ "actual_elements": 2088,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.40803760290145874,
+ "score_mean": 0.19542086124420166,
+ "score_p50": 0.166127011179924,
+ "score_p90": 0.40803760290145874,
+ "fraction_gt1": 0.0,
+ "n_inside": 62,
+ "n_interface": 426,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.35416666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.40803760290145874,
+ "num_tied_at_cutoff": 62,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.40803760290145874,
+ "score_mean": 0.1780664026737213,
+ "score_p50": 0.166127011179924,
+ "score_p90": 0.20401880145072937,
+ "fraction_gt1": 0.0,
+ "n_inside": 138,
+ "n_interface": 478,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333326,
+ "selected_y_range": 0.20833333333333334,
+ "step": 1,
+ "n_elem": 640,
+ "target_elements": 2000,
+ "gap": 1360,
+ "cutoff_score": 0.40803760290145874,
+ "num_tied_at_cutoff": 22,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.28852617740631104,
+ "score_mean": 0.17307288944721222,
+ "score_p50": 0.166127011179924,
+ "score_p90": 0.20401880145072937,
+ "fraction_gt1": 0.0,
+ "n_inside": 218,
+ "n_interface": 478,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 720,
+ "target_elements": 2000,
+ "gap": 1280,
+ "cutoff_score": 0.28852617740631104,
+ "num_tied_at_cutoff": 25,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.28852617740631104,
+ "score_mean": 0.16032052040100098,
+ "score_p50": 0.166127011179924,
+ "score_p90": 0.20401880145072937,
+ "fraction_gt1": 0.0,
+ "n_inside": 310,
+ "n_interface": 504,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.35416666666666674,
+ "step": 3,
+ "n_elem": 838,
+ "target_elements": 2000,
+ "gap": 1162,
+ "cutoff_score": 0.20401880145072937,
+ "num_tied_at_cutoff": 166,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20401880145072937,
+ "score_mean": 0.1404348909854889,
+ "score_p50": 0.14426308870315552,
+ "score_p90": 0.20401880145072937,
+ "fraction_gt1": 0.0,
+ "n_inside": 433,
+ "n_interface": 589,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.29166666666666663,
+ "step": 4,
+ "n_elem": 1046,
+ "target_elements": 2000,
+ "gap": 954,
+ "cutoff_score": 0.20401880145072937,
+ "num_tied_at_cutoff": 120,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20401880145072937,
+ "score_mean": 0.13047966361045837,
+ "score_p50": 0.14426308870315552,
+ "score_p90": 0.166127011179924,
+ "fraction_gt1": 0.0,
+ "n_inside": 591,
+ "n_interface": 597,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666674,
+ "selected_y_range": 0.19791666666666666,
+ "step": 5,
+ "n_elem": 1212,
+ "target_elements": 2000,
+ "gap": 788,
+ "cutoff_score": 0.20401880145072937,
+ "num_tied_at_cutoff": 68,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20401880145072937,
+ "score_mean": 0.12280246615409851,
+ "score_p50": 0.10200940072536469,
+ "score_p90": 0.166127011179924,
+ "fraction_gt1": 0.0,
+ "n_inside": 759,
+ "n_interface": 597,
+ "n_outside": 24,
+ "selected_inside_frac": 0.3902439024390244,
+ "selected_interface_frac": 0.6097560975609756,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 6,
+ "n_elem": 1380,
+ "target_elements": 2000,
+ "gap": 620,
+ "cutoff_score": 0.166127011179924,
+ "num_tied_at_cutoff": 398,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.166127011179924,
+ "score_mean": 0.11416815221309662,
+ "score_p50": 0.10200940072536469,
+ "score_p90": 0.166127011179924,
+ "fraction_gt1": 0.0,
+ "n_inside": 823,
+ "n_interface": 749,
+ "n_outside": 24,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6875,
+ "step": 7,
+ "n_elem": 1596,
+ "target_elements": 2000,
+ "gap": 404,
+ "cutoff_score": 0.166127011179924,
+ "num_tied_at_cutoff": 342,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.166127011179924,
+ "score_mean": 0.10669182240962982,
+ "score_p50": 0.10200940072536469,
+ "score_p90": 0.166127011179924,
+ "fraction_gt1": 0.0,
+ "n_inside": 823,
+ "n_interface": 981,
+ "n_outside": 24,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.7708333333333333,
+ "step": 8,
+ "n_elem": 1828,
+ "target_elements": 2000,
+ "gap": 172,
+ "cutoff_score": 0.166127011179924,
+ "num_tied_at_cutoff": 266,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 31,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.13654333298643365,
+ "max_err": 0.2131294190345976,
+ "actual_elements": 2048,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9844838976860046,
+ "score_mean": 0.1213134229183197,
+ "score_p50": 1.6096787902597498e-08,
+ "score_p90": 0.8122177720069885,
+ "fraction_gt1": 0.0,
+ "n_inside": 62,
+ "n_interface": 426,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.27083333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9635205864906311,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9824643731117249,
+ "score_mean": 0.07272741943597794,
+ "score_p50": 1.5401147948068683e-06,
+ "score_p90": 0.11799190938472748,
+ "fraction_gt1": 0.0,
+ "n_inside": 137,
+ "n_interface": 439,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.35416666666666674,
+ "step": 1,
+ "n_elem": 600,
+ "target_elements": 2000,
+ "gap": 1400,
+ "cutoff_score": 0.9585379958152771,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.968678891658783,
+ "score_mean": 0.06136460602283478,
+ "score_p50": 0.0001360505702905357,
+ "score_p90": 0.1732838898897171,
+ "fraction_gt1": 0.0,
+ "n_inside": 212,
+ "n_interface": 446,
+ "n_outside": 24,
+ "selected_inside_frac": 0.3,
+ "selected_interface_frac": 0.7,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.375,
+ "step": 2,
+ "n_elem": 682,
+ "target_elements": 2000,
+ "gap": 1318,
+ "cutoff_score": 0.6807460784912109,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9800183176994324,
+ "score_mean": 0.14436101913452148,
+ "score_p50": 0.00010539851791691035,
+ "score_p90": 0.6515418291091919,
+ "fraction_gt1": 0.0,
+ "n_inside": 243,
+ "n_interface": 529,
+ "n_outside": 24,
+ "selected_inside_frac": 0.6521739130434783,
+ "selected_interface_frac": 0.34782608695652173,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28125,
+ "selected_y_range": 0.5208333333333333,
+ "step": 3,
+ "n_elem": 796,
+ "target_elements": 2000,
+ "gap": 1204,
+ "cutoff_score": 0.9356649518013,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9871017932891846,
+ "score_mean": 0.18074506521224976,
+ "score_p50": 0.00014614677638746798,
+ "score_p90": 0.8655922412872314,
+ "fraction_gt1": 0.0,
+ "n_inside": 322,
+ "n_interface": 590,
+ "n_outside": 24,
+ "selected_inside_frac": 0.6428571428571429,
+ "selected_interface_frac": 0.35714285714285715,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.44791666666666663,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 936,
+ "target_elements": 2000,
+ "gap": 1064,
+ "cutoff_score": 0.9461722373962402,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9753790497779846,
+ "score_mean": 0.1516806036233902,
+ "score_p50": 0.00039312749868258834,
+ "score_p90": 0.8459008932113647,
+ "fraction_gt1": 0.0,
+ "n_inside": 432,
+ "n_interface": 649,
+ "n_outside": 24,
+ "selected_inside_frac": 0.7878787878787878,
+ "selected_interface_frac": 0.21212121212121213,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.44791666666666663,
+ "step": 5,
+ "n_elem": 1105,
+ "target_elements": 2000,
+ "gap": 895,
+ "cutoff_score": 0.9434822201728821,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.982613742351532,
+ "score_mean": 0.13360965251922607,
+ "score_p50": 0.0010387164074927568,
+ "score_p90": 0.7067351341247559,
+ "fraction_gt1": 0.0,
+ "n_inside": 560,
+ "n_interface": 694,
+ "n_outside": 24,
+ "selected_inside_frac": 0.34210526315789475,
+ "selected_interface_frac": 0.6578947368421053,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.7708333333333333,
+ "step": 6,
+ "n_elem": 1278,
+ "target_elements": 2000,
+ "gap": 722,
+ "cutoff_score": 0.9358747005462646,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9846788644790649,
+ "score_mean": 0.12639525532722473,
+ "score_p50": 0.0016448074020445347,
+ "score_p90": 0.6074583530426025,
+ "fraction_gt1": 0.0,
+ "n_inside": 636,
+ "n_interface": 848,
+ "n_outside": 24,
+ "selected_inside_frac": 0.7111111111111111,
+ "selected_interface_frac": 0.28888888888888886,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4895833333333333,
+ "selected_y_range": 0.59375,
+ "step": 7,
+ "n_elem": 1508,
+ "target_elements": 2000,
+ "gap": 492,
+ "cutoff_score": 0.9094220399856567,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9678143262863159,
+ "score_mean": 0.12731873989105225,
+ "score_p50": 0.0017050601309165359,
+ "score_p90": 0.5868976712226868,
+ "fraction_gt1": 0.0,
+ "n_inside": 805,
+ "n_interface": 926,
+ "n_outside": 24,
+ "selected_inside_frac": 0.3076923076923077,
+ "selected_interface_frac": 0.6923076923076923,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.9166666666666667,
+ "step": 8,
+ "n_elem": 1755,
+ "target_elements": 2000,
+ "gap": 245,
+ "cutoff_score": 0.881667971611023,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 31,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.13469910908852464,
+ "max_err": 0.2111708008230363,
+ "actual_elements": 2109,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.7977280616760254,
+ "score_mean": 7.450580596923828e-08,
+ "score_p50": -0.38947755098342896,
+ "score_p90": 2.508208751678467,
+ "fraction_gt1": 0.12109375,
+ "n_inside": 62,
+ "n_interface": 426,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.27083333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 2.762495994567871,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.9172067642211914,
+ "score_mean": -1.5894572769070692e-08,
+ "score_p50": -0.33050429821014404,
+ "score_p90": 0.7795855402946472,
+ "fraction_gt1": 0.07833333333333334,
+ "n_inside": 137,
+ "n_interface": 439,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.35416666666666674,
+ "step": 1,
+ "n_elem": 600,
+ "target_elements": 2000,
+ "gap": 1400,
+ "cutoff_score": 3.8646788597106934,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 3.7740530967712402,
+ "score_mean": 5.593397744974027e-08,
+ "score_p50": -0.3685372471809387,
+ "score_p90": 0.9048230051994324,
+ "fraction_gt1": 0.09530791788856305,
+ "n_inside": 212,
+ "n_interface": 446,
+ "n_outside": 24,
+ "selected_inside_frac": 0.65,
+ "selected_interface_frac": 0.35,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666663,
+ "selected_y_range": 0.38541666666666663,
+ "step": 2,
+ "n_elem": 682,
+ "target_elements": 2000,
+ "gap": 1318,
+ "cutoff_score": 2.178379774093628,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 3.007706642150879,
+ "score_mean": 1.1509862218872513e-07,
+ "score_p50": -0.21328721940517426,
+ "score_p90": 1.3322539329528809,
+ "fraction_gt1": 0.13793103448275862,
+ "n_inside": 270,
+ "n_interface": 518,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666663,
+ "selected_y_range": 0.2708333333333333,
+ "step": 3,
+ "n_elem": 812,
+ "target_elements": 2000,
+ "gap": 1188,
+ "cutoff_score": 1.9497885704040527,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.9771478176116943,
+ "score_mean": -4.838939560158906e-08,
+ "score_p50": -0.044967904686927795,
+ "score_p90": 1.4444918632507324,
+ "fraction_gt1": 0.15961945031712474,
+ "n_inside": 386,
+ "n_interface": 536,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28125,
+ "selected_y_range": 0.3125,
+ "step": 4,
+ "n_elem": 946,
+ "target_elements": 2000,
+ "gap": 1054,
+ "cutoff_score": 1.8412392139434814,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1134588718414307,
+ "score_mean": -2.4833471456986445e-07,
+ "score_p50": -0.15539760887622833,
+ "score_p90": 1.5149749517440796,
+ "fraction_gt1": 0.14466546112115733,
+ "n_inside": 543,
+ "n_interface": 539,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.35416666666666674,
+ "step": 5,
+ "n_elem": 1106,
+ "target_elements": 2000,
+ "gap": 894,
+ "cutoff_score": 1.6521477699279785,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.16367769241333,
+ "score_mean": 0.0,
+ "score_p50": -0.026506125926971436,
+ "score_p90": 1.4743547439575195,
+ "fraction_gt1": 0.1389324960753532,
+ "n_inside": 681,
+ "n_interface": 569,
+ "n_outside": 24,
+ "selected_inside_frac": 0.07894736842105263,
+ "selected_interface_frac": 0.9210526315789473,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666674,
+ "selected_y_range": 0.6458333333333333,
+ "step": 6,
+ "n_elem": 1274,
+ "target_elements": 2000,
+ "gap": 726,
+ "cutoff_score": 1.8100231885910034,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3228893280029297,
+ "score_mean": 6.357829107628277e-08,
+ "score_p50": -0.40577730536460876,
+ "score_p90": 1.211838722229004,
+ "fraction_gt1": 0.11736111111111111,
+ "n_inside": 697,
+ "n_interface": 719,
+ "n_outside": 24,
+ "selected_inside_frac": 0.06976744186046512,
+ "selected_interface_frac": 0.9302325581395349,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.7708333333333333,
+ "step": 7,
+ "n_elem": 1440,
+ "target_elements": 2000,
+ "gap": 560,
+ "cutoff_score": 2.058474540710449,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.713182210922241,
+ "score_mean": 1.6686404080701323e-07,
+ "score_p50": -0.3976214528083801,
+ "score_p90": 1.1361891031265259,
+ "fraction_gt1": 0.11543134872417983,
+ "n_inside": 713,
+ "n_interface": 909,
+ "n_outside": 24,
+ "selected_inside_frac": 0.5102040816326531,
+ "selected_interface_frac": 0.4897959183673469,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.9166666666666667,
+ "step": 8,
+ "n_elem": 1646,
+ "target_elements": 2000,
+ "gap": 354,
+ "cutoff_score": 2.060802459716797,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4504356384277344,
+ "score_mean": -4.8134982222336475e-08,
+ "score_p50": -0.30117708444595337,
+ "score_p90": 1.0894367694854736,
+ "fraction_gt1": 0.11829652996845426,
+ "n_inside": 821,
+ "n_interface": 1057,
+ "n_outside": 24,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7239583333333334,
+ "selected_y_range": 0.6875,
+ "step": 9,
+ "n_elem": 1902,
+ "target_elements": 2000,
+ "gap": 98,
+ "cutoff_score": 2.020869255065918,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 31,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.13261581870818934,
+ "max_err": 0.21435457491329035,
+ "actual_elements": 4144,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.40803760290145874,
+ "score_mean": 0.19542086124420166,
+ "score_p50": 0.166127011179924,
+ "score_p90": 0.40803760290145874,
+ "fraction_gt1": 0.0,
+ "n_inside": 62,
+ "n_interface": 426,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.35416666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.40803760290145874,
+ "num_tied_at_cutoff": 62,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.40803760290145874,
+ "score_mean": 0.1780664026737213,
+ "score_p50": 0.166127011179924,
+ "score_p90": 0.20401880145072937,
+ "fraction_gt1": 0.0,
+ "n_inside": 138,
+ "n_interface": 478,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333326,
+ "selected_y_range": 0.20833333333333334,
+ "step": 1,
+ "n_elem": 640,
+ "target_elements": 4000,
+ "gap": 3360,
+ "cutoff_score": 0.40803760290145874,
+ "num_tied_at_cutoff": 22,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.28852617740631104,
+ "score_mean": 0.17307288944721222,
+ "score_p50": 0.166127011179924,
+ "score_p90": 0.20401880145072937,
+ "fraction_gt1": 0.0,
+ "n_inside": 218,
+ "n_interface": 478,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 720,
+ "target_elements": 4000,
+ "gap": 3280,
+ "cutoff_score": 0.28852617740631104,
+ "num_tied_at_cutoff": 25,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.28852617740631104,
+ "score_mean": 0.16032052040100098,
+ "score_p50": 0.166127011179924,
+ "score_p90": 0.20401880145072937,
+ "fraction_gt1": 0.0,
+ "n_inside": 310,
+ "n_interface": 504,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.35416666666666674,
+ "step": 3,
+ "n_elem": 838,
+ "target_elements": 4000,
+ "gap": 3162,
+ "cutoff_score": 0.20401880145072937,
+ "num_tied_at_cutoff": 166,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20401880145072937,
+ "score_mean": 0.1404348909854889,
+ "score_p50": 0.14426308870315552,
+ "score_p90": 0.20401880145072937,
+ "fraction_gt1": 0.0,
+ "n_inside": 433,
+ "n_interface": 589,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.29166666666666663,
+ "step": 4,
+ "n_elem": 1046,
+ "target_elements": 4000,
+ "gap": 2954,
+ "cutoff_score": 0.20401880145072937,
+ "num_tied_at_cutoff": 120,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20401880145072937,
+ "score_mean": 0.13047966361045837,
+ "score_p50": 0.14426308870315552,
+ "score_p90": 0.166127011179924,
+ "fraction_gt1": 0.0,
+ "n_inside": 591,
+ "n_interface": 597,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666674,
+ "selected_y_range": 0.19791666666666666,
+ "step": 5,
+ "n_elem": 1212,
+ "target_elements": 4000,
+ "gap": 2788,
+ "cutoff_score": 0.20401880145072937,
+ "num_tied_at_cutoff": 68,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20401880145072937,
+ "score_mean": 0.12280246615409851,
+ "score_p50": 0.10200940072536469,
+ "score_p90": 0.166127011179924,
+ "fraction_gt1": 0.0,
+ "n_inside": 759,
+ "n_interface": 597,
+ "n_outside": 24,
+ "selected_inside_frac": 0.3902439024390244,
+ "selected_interface_frac": 0.6097560975609756,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 6,
+ "n_elem": 1380,
+ "target_elements": 4000,
+ "gap": 2620,
+ "cutoff_score": 0.166127011179924,
+ "num_tied_at_cutoff": 398,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.166127011179924,
+ "score_mean": 0.11416815221309662,
+ "score_p50": 0.10200940072536469,
+ "score_p90": 0.166127011179924,
+ "fraction_gt1": 0.0,
+ "n_inside": 823,
+ "n_interface": 749,
+ "n_outside": 24,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6875,
+ "step": 7,
+ "n_elem": 1596,
+ "target_elements": 4000,
+ "gap": 2404,
+ "cutoff_score": 0.166127011179924,
+ "num_tied_at_cutoff": 342,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.166127011179924,
+ "score_mean": 0.10669182240962982,
+ "score_p50": 0.10200940072536469,
+ "score_p90": 0.166127011179924,
+ "fraction_gt1": 0.0,
+ "n_inside": 823,
+ "n_interface": 981,
+ "n_outside": 24,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.7708333333333333,
+ "step": 8,
+ "n_elem": 1828,
+ "target_elements": 4000,
+ "gap": 2172,
+ "cutoff_score": 0.166127011179924,
+ "num_tied_at_cutoff": 266,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.166127011179924,
+ "score_mean": 0.10039196908473969,
+ "score_p50": 0.10200940072536469,
+ "score_p90": 0.14426308870315552,
+ "fraction_gt1": 0.0,
+ "n_inside": 823,
+ "n_interface": 1241,
+ "n_outside": 24,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 9,
+ "n_elem": 2088,
+ "target_elements": 4000,
+ "gap": 1912,
+ "cutoff_score": 0.166127011179924,
+ "num_tied_at_cutoff": 170,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.166127011179924,
+ "score_mean": 0.09503725171089172,
+ "score_p50": 0.083063505589962,
+ "score_p90": 0.11746954172849655,
+ "fraction_gt1": 0.0,
+ "n_inside": 823,
+ "n_interface": 1529,
+ "n_outside": 24,
+ "selected_inside_frac": 0.1267605633802817,
+ "selected_interface_frac": 0.5352112676056338,
+ "selected_outside_frac": 0.3380281690140845,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 10,
+ "n_elem": 2376,
+ "target_elements": 4000,
+ "gap": 1624,
+ "cutoff_score": 0.14426308870315552,
+ "num_tied_at_cutoff": 156,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14426308870315552,
+ "score_mean": 0.08994443714618683,
+ "score_p50": 0.083063505589962,
+ "score_p90": 0.10200940072536469,
+ "fraction_gt1": 0.0,
+ "n_inside": 861,
+ "n_interface": 1718,
+ "n_outside": 95,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3697916666666667,
+ "selected_y_range": 0.36979166666666663,
+ "step": 11,
+ "n_elem": 2674,
+ "target_elements": 4000,
+ "gap": 1326,
+ "cutoff_score": 0.14426308870315552,
+ "num_tied_at_cutoff": 144,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14426308870315552,
+ "score_mean": 0.08466257154941559,
+ "score_p50": 0.083063505589962,
+ "score_p90": 0.10200940072536469,
+ "fraction_gt1": 0.0,
+ "n_inside": 1205,
+ "n_interface": 1746,
+ "n_outside": 95,
+ "selected_inside_frac": 0.4175824175824176,
+ "selected_interface_frac": 0.5824175824175825,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333334,
+ "selected_y_range": 0.8333333333333334,
+ "step": 12,
+ "n_elem": 3046,
+ "target_elements": 4000,
+ "gap": 954,
+ "cutoff_score": 0.11746954172849655,
+ "num_tied_at_cutoff": 106,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11746954172849655,
+ "score_mean": 0.07931963354349136,
+ "score_p50": 0.083063505589962,
+ "score_p90": 0.10200940072536469,
+ "fraction_gt1": 0.0,
+ "n_inside": 1375,
+ "n_interface": 2000,
+ "n_outside": 95,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3470,
+ "target_elements": 4000,
+ "gap": 530,
+ "cutoff_score": 0.10200940072536469,
+ "num_tied_at_cutoff": 603,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 31,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.1327774503621352,
+ "max_err": 0.2190519219432061,
+ "actual_elements": 4191,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9844838976860046,
+ "score_mean": 0.1213134229183197,
+ "score_p50": 1.6096787902597498e-08,
+ "score_p90": 0.8122177720069885,
+ "fraction_gt1": 0.0,
+ "n_inside": 62,
+ "n_interface": 426,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.27083333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9635205864906311,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9824643731117249,
+ "score_mean": 0.07272741943597794,
+ "score_p50": 1.5401147948068683e-06,
+ "score_p90": 0.11799190938472748,
+ "fraction_gt1": 0.0,
+ "n_inside": 137,
+ "n_interface": 439,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.35416666666666674,
+ "step": 1,
+ "n_elem": 600,
+ "target_elements": 4000,
+ "gap": 3400,
+ "cutoff_score": 0.9585379958152771,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.968678891658783,
+ "score_mean": 0.06136460602283478,
+ "score_p50": 0.0001360505702905357,
+ "score_p90": 0.1732838898897171,
+ "fraction_gt1": 0.0,
+ "n_inside": 212,
+ "n_interface": 446,
+ "n_outside": 24,
+ "selected_inside_frac": 0.3,
+ "selected_interface_frac": 0.7,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.375,
+ "step": 2,
+ "n_elem": 682,
+ "target_elements": 4000,
+ "gap": 3318,
+ "cutoff_score": 0.6807460784912109,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9800183176994324,
+ "score_mean": 0.14436101913452148,
+ "score_p50": 0.00010539851791691035,
+ "score_p90": 0.6515418291091919,
+ "fraction_gt1": 0.0,
+ "n_inside": 243,
+ "n_interface": 529,
+ "n_outside": 24,
+ "selected_inside_frac": 0.6521739130434783,
+ "selected_interface_frac": 0.34782608695652173,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28125,
+ "selected_y_range": 0.5208333333333333,
+ "step": 3,
+ "n_elem": 796,
+ "target_elements": 4000,
+ "gap": 3204,
+ "cutoff_score": 0.9356649518013,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9871017932891846,
+ "score_mean": 0.18074506521224976,
+ "score_p50": 0.00014614677638746798,
+ "score_p90": 0.8655922412872314,
+ "fraction_gt1": 0.0,
+ "n_inside": 322,
+ "n_interface": 590,
+ "n_outside": 24,
+ "selected_inside_frac": 0.6428571428571429,
+ "selected_interface_frac": 0.35714285714285715,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.44791666666666663,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 936,
+ "target_elements": 4000,
+ "gap": 3064,
+ "cutoff_score": 0.9461722373962402,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9753790497779846,
+ "score_mean": 0.1516806036233902,
+ "score_p50": 0.00039312749868258834,
+ "score_p90": 0.8459008932113647,
+ "fraction_gt1": 0.0,
+ "n_inside": 432,
+ "n_interface": 649,
+ "n_outside": 24,
+ "selected_inside_frac": 0.7878787878787878,
+ "selected_interface_frac": 0.21212121212121213,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.44791666666666663,
+ "step": 5,
+ "n_elem": 1105,
+ "target_elements": 4000,
+ "gap": 2895,
+ "cutoff_score": 0.9434822201728821,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.982613742351532,
+ "score_mean": 0.13360965251922607,
+ "score_p50": 0.0010387164074927568,
+ "score_p90": 0.7067351341247559,
+ "fraction_gt1": 0.0,
+ "n_inside": 560,
+ "n_interface": 694,
+ "n_outside": 24,
+ "selected_inside_frac": 0.34210526315789475,
+ "selected_interface_frac": 0.6578947368421053,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.7708333333333333,
+ "step": 6,
+ "n_elem": 1278,
+ "target_elements": 4000,
+ "gap": 2722,
+ "cutoff_score": 0.9358747005462646,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9846788644790649,
+ "score_mean": 0.12639525532722473,
+ "score_p50": 0.0016448074020445347,
+ "score_p90": 0.6074583530426025,
+ "fraction_gt1": 0.0,
+ "n_inside": 636,
+ "n_interface": 848,
+ "n_outside": 24,
+ "selected_inside_frac": 0.7111111111111111,
+ "selected_interface_frac": 0.28888888888888886,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4895833333333333,
+ "selected_y_range": 0.59375,
+ "step": 7,
+ "n_elem": 1508,
+ "target_elements": 4000,
+ "gap": 2492,
+ "cutoff_score": 0.9094220399856567,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9678143262863159,
+ "score_mean": 0.12731873989105225,
+ "score_p50": 0.0017050601309165359,
+ "score_p90": 0.5868976712226868,
+ "fraction_gt1": 0.0,
+ "n_inside": 805,
+ "n_interface": 926,
+ "n_outside": 24,
+ "selected_inside_frac": 0.3076923076923077,
+ "selected_interface_frac": 0.6923076923076923,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.9166666666666667,
+ "step": 8,
+ "n_elem": 1755,
+ "target_elements": 4000,
+ "gap": 2245,
+ "cutoff_score": 0.881667971611023,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9704636335372925,
+ "score_mean": 0.13242584466934204,
+ "score_p50": 0.0028657764196395874,
+ "score_p90": 0.6200555562973022,
+ "fraction_gt1": 0.0,
+ "n_inside": 904,
+ "n_interface": 1120,
+ "n_outside": 24,
+ "selected_inside_frac": 0.21311475409836064,
+ "selected_interface_frac": 0.7868852459016393,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.8125,
+ "step": 9,
+ "n_elem": 2048,
+ "target_elements": 4000,
+ "gap": 1952,
+ "cutoff_score": 0.8598911762237549,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.983323872089386,
+ "score_mean": 0.1448795199394226,
+ "score_p50": 0.004990322515368462,
+ "score_p90": 0.648949146270752,
+ "fraction_gt1": 0.0,
+ "n_inside": 985,
+ "n_interface": 1395,
+ "n_outside": 24,
+ "selected_inside_frac": 0.6388888888888888,
+ "selected_interface_frac": 0.3611111111111111,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.78125,
+ "step": 10,
+ "n_elem": 2404,
+ "target_elements": 4000,
+ "gap": 1596,
+ "cutoff_score": 0.9206727147102356,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9895265102386475,
+ "score_mean": 0.17059487104415894,
+ "score_p50": 0.002904783468693495,
+ "score_p90": 0.714047908782959,
+ "fraction_gt1": 0.0,
+ "n_inside": 1201,
+ "n_interface": 1553,
+ "n_outside": 24,
+ "selected_inside_frac": 0.5060240963855421,
+ "selected_interface_frac": 0.4939759036144578,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 11,
+ "n_elem": 2778,
+ "target_elements": 4000,
+ "gap": 1222,
+ "cutoff_score": 0.9019455909729004,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9794052839279175,
+ "score_mean": 0.17768454551696777,
+ "score_p50": 0.001843723701313138,
+ "score_p90": 0.7685052752494812,
+ "fraction_gt1": 0.0,
+ "n_inside": 1446,
+ "n_interface": 1786,
+ "n_outside": 24,
+ "selected_inside_frac": 0.4536082474226804,
+ "selected_interface_frac": 0.5463917525773195,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.8958333333333333,
+ "step": 12,
+ "n_elem": 3256,
+ "target_elements": 4000,
+ "gap": 744,
+ "cutoff_score": 0.9116873741149902,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9833182096481323,
+ "score_mean": 0.15831907093524933,
+ "score_p50": 0.0019054264994338155,
+ "score_p90": 0.7788243293762207,
+ "fraction_gt1": 0.0,
+ "n_inside": 1737,
+ "n_interface": 2082,
+ "n_outside": 24,
+ "selected_inside_frac": 0.2692307692307692,
+ "selected_interface_frac": 0.7307692307692307,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.7604166666666667,
+ "step": 13,
+ "n_elem": 3843,
+ "target_elements": 4000,
+ "gap": 157,
+ "cutoff_score": 0.9460614919662476,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 31,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.1346068057759482,
+ "max_err": 0.2143575743363919,
+ "actual_elements": 4129,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.7977280616760254,
+ "score_mean": 7.450580596923828e-08,
+ "score_p50": -0.38947755098342896,
+ "score_p90": 2.508208751678467,
+ "fraction_gt1": 0.12109375,
+ "n_inside": 62,
+ "n_interface": 426,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.27083333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 2.762495994567871,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.9172067642211914,
+ "score_mean": -1.5894572769070692e-08,
+ "score_p50": -0.33050429821014404,
+ "score_p90": 0.7795855402946472,
+ "fraction_gt1": 0.07833333333333334,
+ "n_inside": 137,
+ "n_interface": 439,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.35416666666666674,
+ "step": 1,
+ "n_elem": 600,
+ "target_elements": 4000,
+ "gap": 3400,
+ "cutoff_score": 3.8646788597106934,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 3.7740530967712402,
+ "score_mean": 5.593397744974027e-08,
+ "score_p50": -0.3685372471809387,
+ "score_p90": 0.9048230051994324,
+ "fraction_gt1": 0.09530791788856305,
+ "n_inside": 212,
+ "n_interface": 446,
+ "n_outside": 24,
+ "selected_inside_frac": 0.65,
+ "selected_interface_frac": 0.35,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666663,
+ "selected_y_range": 0.38541666666666663,
+ "step": 2,
+ "n_elem": 682,
+ "target_elements": 4000,
+ "gap": 3318,
+ "cutoff_score": 2.178379774093628,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 3.007706642150879,
+ "score_mean": 1.1509862218872513e-07,
+ "score_p50": -0.21328721940517426,
+ "score_p90": 1.3322539329528809,
+ "fraction_gt1": 0.13793103448275862,
+ "n_inside": 270,
+ "n_interface": 518,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666663,
+ "selected_y_range": 0.2708333333333333,
+ "step": 3,
+ "n_elem": 812,
+ "target_elements": 4000,
+ "gap": 3188,
+ "cutoff_score": 1.9497885704040527,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.9771478176116943,
+ "score_mean": -4.838939560158906e-08,
+ "score_p50": -0.044967904686927795,
+ "score_p90": 1.4444918632507324,
+ "fraction_gt1": 0.15961945031712474,
+ "n_inside": 386,
+ "n_interface": 536,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28125,
+ "selected_y_range": 0.3125,
+ "step": 4,
+ "n_elem": 946,
+ "target_elements": 4000,
+ "gap": 3054,
+ "cutoff_score": 1.8412392139434814,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1134588718414307,
+ "score_mean": -2.4833471456986445e-07,
+ "score_p50": -0.15539760887622833,
+ "score_p90": 1.5149749517440796,
+ "fraction_gt1": 0.14466546112115733,
+ "n_inside": 543,
+ "n_interface": 539,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.35416666666666674,
+ "step": 5,
+ "n_elem": 1106,
+ "target_elements": 4000,
+ "gap": 2894,
+ "cutoff_score": 1.6521477699279785,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.16367769241333,
+ "score_mean": 0.0,
+ "score_p50": -0.026506125926971436,
+ "score_p90": 1.4743547439575195,
+ "fraction_gt1": 0.1389324960753532,
+ "n_inside": 681,
+ "n_interface": 569,
+ "n_outside": 24,
+ "selected_inside_frac": 0.07894736842105263,
+ "selected_interface_frac": 0.9210526315789473,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666674,
+ "selected_y_range": 0.6458333333333333,
+ "step": 6,
+ "n_elem": 1274,
+ "target_elements": 4000,
+ "gap": 2726,
+ "cutoff_score": 1.8100231885910034,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3228893280029297,
+ "score_mean": 6.357829107628277e-08,
+ "score_p50": -0.40577730536460876,
+ "score_p90": 1.211838722229004,
+ "fraction_gt1": 0.11736111111111111,
+ "n_inside": 697,
+ "n_interface": 719,
+ "n_outside": 24,
+ "selected_inside_frac": 0.06976744186046512,
+ "selected_interface_frac": 0.9302325581395349,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.7708333333333333,
+ "step": 7,
+ "n_elem": 1440,
+ "target_elements": 4000,
+ "gap": 2560,
+ "cutoff_score": 2.058474540710449,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.713182210922241,
+ "score_mean": 1.6686404080701323e-07,
+ "score_p50": -0.3976214528083801,
+ "score_p90": 1.1361891031265259,
+ "fraction_gt1": 0.11543134872417983,
+ "n_inside": 713,
+ "n_interface": 909,
+ "n_outside": 24,
+ "selected_inside_frac": 0.5102040816326531,
+ "selected_interface_frac": 0.4897959183673469,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.9166666666666667,
+ "step": 8,
+ "n_elem": 1646,
+ "target_elements": 4000,
+ "gap": 2354,
+ "cutoff_score": 2.060802459716797,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4504356384277344,
+ "score_mean": -4.8134982222336475e-08,
+ "score_p50": -0.30117708444595337,
+ "score_p90": 1.0894367694854736,
+ "fraction_gt1": 0.11829652996845426,
+ "n_inside": 821,
+ "n_interface": 1057,
+ "n_outside": 24,
+ "selected_inside_frac": 0.5614035087719298,
+ "selected_interface_frac": 0.43859649122807015,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.765625,
+ "selected_y_range": 0.6875,
+ "step": 9,
+ "n_elem": 1902,
+ "target_elements": 4000,
+ "gap": 2098,
+ "cutoff_score": 1.815657138824463,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3968679904937744,
+ "score_mean": 0.0,
+ "score_p50": -0.1849919855594635,
+ "score_p90": 1.0908178091049194,
+ "fraction_gt1": 0.13915416098226466,
+ "n_inside": 988,
+ "n_interface": 1187,
+ "n_outside": 24,
+ "selected_inside_frac": 0.46153846153846156,
+ "selected_interface_frac": 0.5384615384615384,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.8645833333333334,
+ "step": 10,
+ "n_elem": 2199,
+ "target_elements": 4000,
+ "gap": 1801,
+ "cutoff_score": 1.6911981105804443,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3277668952941895,
+ "score_mean": 2.374908802948994e-08,
+ "score_p50": -0.07720144093036652,
+ "score_p90": 1.210118293762207,
+ "fraction_gt1": 0.15603112840466926,
+ "n_inside": 1158,
+ "n_interface": 1388,
+ "n_outside": 24,
+ "selected_inside_frac": 0.7012987012987013,
+ "selected_interface_frac": 0.2987012987012987,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.65625,
+ "step": 11,
+ "n_elem": 2570,
+ "target_elements": 4000,
+ "gap": 1430,
+ "cutoff_score": 1.5310070514678955,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.214714527130127,
+ "score_mean": 6.142417419141566e-08,
+ "score_p50": -0.2999107539653778,
+ "score_p90": 1.2579107284545898,
+ "fraction_gt1": 0.1479369339147937,
+ "n_inside": 1441,
+ "n_interface": 1516,
+ "n_outside": 24,
+ "selected_inside_frac": 0.5168539325842697,
+ "selected_interface_frac": 0.34831460674157305,
+ "selected_outside_frac": 0.1348314606741573,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.8125,
+ "step": 12,
+ "n_elem": 2981,
+ "target_elements": 4000,
+ "gap": 1019,
+ "cutoff_score": 1.4913228750228882,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2379050254821777,
+ "score_mean": 7.14906676080318e-08,
+ "score_p50": -0.19112852215766907,
+ "score_p90": 1.2307581901550293,
+ "fraction_gt1": 0.14699853587115666,
+ "n_inside": 1680,
+ "n_interface": 1666,
+ "n_outside": 69,
+ "selected_inside_frac": 0.5588235294117647,
+ "selected_interface_frac": 0.38235294117647056,
+ "selected_outside_frac": 0.058823529411764705,
+ "selected_x_range": 0.6979166666666666,
+ "selected_y_range": 0.8125,
+ "step": 13,
+ "n_elem": 3415,
+ "target_elements": 4000,
+ "gap": 585,
+ "cutoff_score": 1.5345113277435303,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1160712242126465,
+ "score_mean": 9.414162605025922e-08,
+ "score_p50": -0.054910942912101746,
+ "score_p90": 1.3023816347122192,
+ "fraction_gt1": 0.15732647814910025,
+ "n_inside": 1941,
+ "n_interface": 1858,
+ "n_outside": 91,
+ "selected_inside_frac": 0.5555555555555556,
+ "selected_interface_frac": 0.4444444444444444,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333334,
+ "selected_y_range": 0.8541666666666667,
+ "step": 14,
+ "n_elem": 3890,
+ "target_elements": 4000,
+ "gap": 110,
+ "cutoff_score": 1.745161533355713,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 31,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13128552499084753,
+ "max_err": 0.21726710736743615,
+ "actual_elements": 8132,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.40803760290145874,
+ "score_mean": 0.19542086124420166,
+ "score_p50": 0.166127011179924,
+ "score_p90": 0.40803760290145874,
+ "fraction_gt1": 0.0,
+ "n_inside": 62,
+ "n_interface": 426,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.35416666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.40803760290145874,
+ "num_tied_at_cutoff": 62,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.40803760290145874,
+ "score_mean": 0.1780664026737213,
+ "score_p50": 0.166127011179924,
+ "score_p90": 0.20401880145072937,
+ "fraction_gt1": 0.0,
+ "n_inside": 138,
+ "n_interface": 478,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333326,
+ "selected_y_range": 0.20833333333333334,
+ "step": 1,
+ "n_elem": 640,
+ "target_elements": 8000,
+ "gap": 7360,
+ "cutoff_score": 0.40803760290145874,
+ "num_tied_at_cutoff": 22,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.28852617740631104,
+ "score_mean": 0.17307288944721222,
+ "score_p50": 0.166127011179924,
+ "score_p90": 0.20401880145072937,
+ "fraction_gt1": 0.0,
+ "n_inside": 218,
+ "n_interface": 478,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 720,
+ "target_elements": 8000,
+ "gap": 7280,
+ "cutoff_score": 0.28852617740631104,
+ "num_tied_at_cutoff": 25,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.28852617740631104,
+ "score_mean": 0.16032052040100098,
+ "score_p50": 0.166127011179924,
+ "score_p90": 0.20401880145072937,
+ "fraction_gt1": 0.0,
+ "n_inside": 310,
+ "n_interface": 504,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.35416666666666674,
+ "step": 3,
+ "n_elem": 838,
+ "target_elements": 8000,
+ "gap": 7162,
+ "cutoff_score": 0.20401880145072937,
+ "num_tied_at_cutoff": 166,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20401880145072937,
+ "score_mean": 0.1404348909854889,
+ "score_p50": 0.14426308870315552,
+ "score_p90": 0.20401880145072937,
+ "fraction_gt1": 0.0,
+ "n_inside": 433,
+ "n_interface": 589,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.29166666666666663,
+ "step": 4,
+ "n_elem": 1046,
+ "target_elements": 8000,
+ "gap": 6954,
+ "cutoff_score": 0.20401880145072937,
+ "num_tied_at_cutoff": 120,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20401880145072937,
+ "score_mean": 0.13047966361045837,
+ "score_p50": 0.14426308870315552,
+ "score_p90": 0.166127011179924,
+ "fraction_gt1": 0.0,
+ "n_inside": 591,
+ "n_interface": 597,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666674,
+ "selected_y_range": 0.19791666666666666,
+ "step": 5,
+ "n_elem": 1212,
+ "target_elements": 8000,
+ "gap": 6788,
+ "cutoff_score": 0.20401880145072937,
+ "num_tied_at_cutoff": 68,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20401880145072937,
+ "score_mean": 0.12280246615409851,
+ "score_p50": 0.10200940072536469,
+ "score_p90": 0.166127011179924,
+ "fraction_gt1": 0.0,
+ "n_inside": 759,
+ "n_interface": 597,
+ "n_outside": 24,
+ "selected_inside_frac": 0.3902439024390244,
+ "selected_interface_frac": 0.6097560975609756,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 6,
+ "n_elem": 1380,
+ "target_elements": 8000,
+ "gap": 6620,
+ "cutoff_score": 0.166127011179924,
+ "num_tied_at_cutoff": 398,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.166127011179924,
+ "score_mean": 0.11416815221309662,
+ "score_p50": 0.10200940072536469,
+ "score_p90": 0.166127011179924,
+ "fraction_gt1": 0.0,
+ "n_inside": 823,
+ "n_interface": 749,
+ "n_outside": 24,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6875,
+ "step": 7,
+ "n_elem": 1596,
+ "target_elements": 8000,
+ "gap": 6404,
+ "cutoff_score": 0.166127011179924,
+ "num_tied_at_cutoff": 342,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.166127011179924,
+ "score_mean": 0.10669182240962982,
+ "score_p50": 0.10200940072536469,
+ "score_p90": 0.166127011179924,
+ "fraction_gt1": 0.0,
+ "n_inside": 823,
+ "n_interface": 981,
+ "n_outside": 24,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.7708333333333333,
+ "step": 8,
+ "n_elem": 1828,
+ "target_elements": 8000,
+ "gap": 6172,
+ "cutoff_score": 0.166127011179924,
+ "num_tied_at_cutoff": 266,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.166127011179924,
+ "score_mean": 0.10039196908473969,
+ "score_p50": 0.10200940072536469,
+ "score_p90": 0.14426308870315552,
+ "fraction_gt1": 0.0,
+ "n_inside": 823,
+ "n_interface": 1241,
+ "n_outside": 24,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 9,
+ "n_elem": 2088,
+ "target_elements": 8000,
+ "gap": 5912,
+ "cutoff_score": 0.166127011179924,
+ "num_tied_at_cutoff": 170,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.166127011179924,
+ "score_mean": 0.09503725171089172,
+ "score_p50": 0.083063505589962,
+ "score_p90": 0.11746954172849655,
+ "fraction_gt1": 0.0,
+ "n_inside": 823,
+ "n_interface": 1529,
+ "n_outside": 24,
+ "selected_inside_frac": 0.1267605633802817,
+ "selected_interface_frac": 0.5352112676056338,
+ "selected_outside_frac": 0.3380281690140845,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 10,
+ "n_elem": 2376,
+ "target_elements": 8000,
+ "gap": 5624,
+ "cutoff_score": 0.14426308870315552,
+ "num_tied_at_cutoff": 156,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14426308870315552,
+ "score_mean": 0.08994443714618683,
+ "score_p50": 0.083063505589962,
+ "score_p90": 0.10200940072536469,
+ "fraction_gt1": 0.0,
+ "n_inside": 861,
+ "n_interface": 1718,
+ "n_outside": 95,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3697916666666667,
+ "selected_y_range": 0.36979166666666663,
+ "step": 11,
+ "n_elem": 2674,
+ "target_elements": 8000,
+ "gap": 5326,
+ "cutoff_score": 0.14426308870315552,
+ "num_tied_at_cutoff": 144,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14426308870315552,
+ "score_mean": 0.08466257154941559,
+ "score_p50": 0.083063505589962,
+ "score_p90": 0.10200940072536469,
+ "fraction_gt1": 0.0,
+ "n_inside": 1205,
+ "n_interface": 1746,
+ "n_outside": 95,
+ "selected_inside_frac": 0.4175824175824176,
+ "selected_interface_frac": 0.5824175824175825,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333334,
+ "selected_y_range": 0.8333333333333334,
+ "step": 12,
+ "n_elem": 3046,
+ "target_elements": 8000,
+ "gap": 4954,
+ "cutoff_score": 0.11746954172849655,
+ "num_tied_at_cutoff": 106,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11746954172849655,
+ "score_mean": 0.07931963354349136,
+ "score_p50": 0.083063505589962,
+ "score_p90": 0.10200940072536469,
+ "fraction_gt1": 0.0,
+ "n_inside": 1375,
+ "n_interface": 2000,
+ "n_outside": 95,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3470,
+ "target_elements": 8000,
+ "gap": 4530,
+ "cutoff_score": 0.10200940072536469,
+ "num_tied_at_cutoff": 603,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10200940072536469,
+ "score_mean": 0.07138427346944809,
+ "score_p50": 0.07213154435157776,
+ "score_p90": 0.10200940072536469,
+ "fraction_gt1": 0.0,
+ "n_inside": 1605,
+ "n_interface": 2444,
+ "n_outside": 95,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3645833333333333,
+ "selected_y_range": 0.33333333333333337,
+ "step": 14,
+ "n_elem": 4144,
+ "target_elements": 8000,
+ "gap": 3856,
+ "cutoff_score": 0.10200940072536469,
+ "num_tied_at_cutoff": 492,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10200940072536469,
+ "score_mean": 0.06727788597345352,
+ "score_p50": 0.07213154435157776,
+ "score_p90": 0.083063505589962,
+ "fraction_gt1": 0.0,
+ "n_inside": 2112,
+ "n_interface": 2447,
+ "n_outside": 95,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.27083333333333337,
+ "step": 15,
+ "n_elem": 4654,
+ "target_elements": 8000,
+ "gap": 3346,
+ "cutoff_score": 0.10200940072536469,
+ "num_tied_at_cutoff": 330,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10200940072536469,
+ "score_mean": 0.06366707384586334,
+ "score_p50": 0.058734770864248276,
+ "score_p90": 0.083063505589962,
+ "fraction_gt1": 0.0,
+ "n_inside": 2676,
+ "n_interface": 2447,
+ "n_outside": 95,
+ "selected_inside_frac": 0.9487179487179487,
+ "selected_interface_frac": 0.05128205128205128,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.37500000000000006,
+ "selected_y_range": 0.375,
+ "step": 16,
+ "n_elem": 5218,
+ "target_elements": 8000,
+ "gap": 2782,
+ "cutoff_score": 0.083063505589962,
+ "num_tied_at_cutoff": 1342,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.083063505589962,
+ "score_mean": 0.060685090720653534,
+ "score_p50": 0.05100470036268234,
+ "score_p90": 0.083063505589962,
+ "fraction_gt1": 0.0,
+ "n_inside": 3184,
+ "n_interface": 2501,
+ "n_outside": 95,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.6041666666666667,
+ "step": 17,
+ "n_elem": 5780,
+ "target_elements": 8000,
+ "gap": 2220,
+ "cutoff_score": 0.083063505589962,
+ "num_tied_at_cutoff": 1320,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.083063505589962,
+ "score_mean": 0.05698757246136665,
+ "score_p50": 0.05100470036268234,
+ "score_p90": 0.083063505589962,
+ "fraction_gt1": 0.0,
+ "n_inside": 3184,
+ "n_interface": 3235,
+ "n_outside": 95,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6979166666666667,
+ "selected_y_range": 0.6979166666666667,
+ "step": 18,
+ "n_elem": 6514,
+ "target_elements": 8000,
+ "gap": 1486,
+ "cutoff_score": 0.083063505589962,
+ "num_tied_at_cutoff": 1062,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.083063505589962,
+ "score_mean": 0.05375266447663307,
+ "score_p50": 0.05100470036268234,
+ "score_p90": 0.083063505589962,
+ "fraction_gt1": 0.0,
+ "n_inside": 3184,
+ "n_interface": 4045,
+ "n_outside": 95,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.8125,
+ "step": 19,
+ "n_elem": 7324,
+ "target_elements": 8000,
+ "gap": 676,
+ "cutoff_score": 0.083063505589962,
+ "num_tied_at_cutoff": 788,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 31,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.13187208579149484,
+ "max_err": 0.2186050373275027,
+ "actual_elements": 8489,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9844838976860046,
+ "score_mean": 0.1213134229183197,
+ "score_p50": 1.6096787902597498e-08,
+ "score_p90": 0.8122177720069885,
+ "fraction_gt1": 0.0,
+ "n_inside": 62,
+ "n_interface": 426,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.27083333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9635205864906311,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9824643731117249,
+ "score_mean": 0.07272741943597794,
+ "score_p50": 1.5401147948068683e-06,
+ "score_p90": 0.11799190938472748,
+ "fraction_gt1": 0.0,
+ "n_inside": 137,
+ "n_interface": 439,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.35416666666666674,
+ "step": 1,
+ "n_elem": 600,
+ "target_elements": 8000,
+ "gap": 7400,
+ "cutoff_score": 0.9585379958152771,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.968678891658783,
+ "score_mean": 0.06136460602283478,
+ "score_p50": 0.0001360505702905357,
+ "score_p90": 0.1732838898897171,
+ "fraction_gt1": 0.0,
+ "n_inside": 212,
+ "n_interface": 446,
+ "n_outside": 24,
+ "selected_inside_frac": 0.3,
+ "selected_interface_frac": 0.7,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.375,
+ "step": 2,
+ "n_elem": 682,
+ "target_elements": 8000,
+ "gap": 7318,
+ "cutoff_score": 0.6807460784912109,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9800183176994324,
+ "score_mean": 0.14436101913452148,
+ "score_p50": 0.00010539851791691035,
+ "score_p90": 0.6515418291091919,
+ "fraction_gt1": 0.0,
+ "n_inside": 243,
+ "n_interface": 529,
+ "n_outside": 24,
+ "selected_inside_frac": 0.6521739130434783,
+ "selected_interface_frac": 0.34782608695652173,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28125,
+ "selected_y_range": 0.5208333333333333,
+ "step": 3,
+ "n_elem": 796,
+ "target_elements": 8000,
+ "gap": 7204,
+ "cutoff_score": 0.9356649518013,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9871017932891846,
+ "score_mean": 0.18074506521224976,
+ "score_p50": 0.00014614677638746798,
+ "score_p90": 0.8655922412872314,
+ "fraction_gt1": 0.0,
+ "n_inside": 322,
+ "n_interface": 590,
+ "n_outside": 24,
+ "selected_inside_frac": 0.6428571428571429,
+ "selected_interface_frac": 0.35714285714285715,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.44791666666666663,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 936,
+ "target_elements": 8000,
+ "gap": 7064,
+ "cutoff_score": 0.9461722373962402,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9753790497779846,
+ "score_mean": 0.1516806036233902,
+ "score_p50": 0.00039312749868258834,
+ "score_p90": 0.8459008932113647,
+ "fraction_gt1": 0.0,
+ "n_inside": 432,
+ "n_interface": 649,
+ "n_outside": 24,
+ "selected_inside_frac": 0.7878787878787878,
+ "selected_interface_frac": 0.21212121212121213,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.44791666666666663,
+ "step": 5,
+ "n_elem": 1105,
+ "target_elements": 8000,
+ "gap": 6895,
+ "cutoff_score": 0.9434822201728821,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.982613742351532,
+ "score_mean": 0.13360965251922607,
+ "score_p50": 0.0010387164074927568,
+ "score_p90": 0.7067351341247559,
+ "fraction_gt1": 0.0,
+ "n_inside": 560,
+ "n_interface": 694,
+ "n_outside": 24,
+ "selected_inside_frac": 0.34210526315789475,
+ "selected_interface_frac": 0.6578947368421053,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.7708333333333333,
+ "step": 6,
+ "n_elem": 1278,
+ "target_elements": 8000,
+ "gap": 6722,
+ "cutoff_score": 0.9358747005462646,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9846788644790649,
+ "score_mean": 0.12639525532722473,
+ "score_p50": 0.0016448074020445347,
+ "score_p90": 0.6074583530426025,
+ "fraction_gt1": 0.0,
+ "n_inside": 636,
+ "n_interface": 848,
+ "n_outside": 24,
+ "selected_inside_frac": 0.7111111111111111,
+ "selected_interface_frac": 0.28888888888888886,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4895833333333333,
+ "selected_y_range": 0.59375,
+ "step": 7,
+ "n_elem": 1508,
+ "target_elements": 8000,
+ "gap": 6492,
+ "cutoff_score": 0.9094220399856567,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9678143262863159,
+ "score_mean": 0.12731873989105225,
+ "score_p50": 0.0017050601309165359,
+ "score_p90": 0.5868976712226868,
+ "fraction_gt1": 0.0,
+ "n_inside": 805,
+ "n_interface": 926,
+ "n_outside": 24,
+ "selected_inside_frac": 0.3076923076923077,
+ "selected_interface_frac": 0.6923076923076923,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.9166666666666667,
+ "step": 8,
+ "n_elem": 1755,
+ "target_elements": 8000,
+ "gap": 6245,
+ "cutoff_score": 0.881667971611023,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9704636335372925,
+ "score_mean": 0.13242584466934204,
+ "score_p50": 0.0028657764196395874,
+ "score_p90": 0.6200555562973022,
+ "fraction_gt1": 0.0,
+ "n_inside": 904,
+ "n_interface": 1120,
+ "n_outside": 24,
+ "selected_inside_frac": 0.21311475409836064,
+ "selected_interface_frac": 0.7868852459016393,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.8125,
+ "step": 9,
+ "n_elem": 2048,
+ "target_elements": 8000,
+ "gap": 5952,
+ "cutoff_score": 0.8598911762237549,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.983323872089386,
+ "score_mean": 0.1448795199394226,
+ "score_p50": 0.004990322515368462,
+ "score_p90": 0.648949146270752,
+ "fraction_gt1": 0.0,
+ "n_inside": 985,
+ "n_interface": 1395,
+ "n_outside": 24,
+ "selected_inside_frac": 0.6388888888888888,
+ "selected_interface_frac": 0.3611111111111111,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.78125,
+ "step": 10,
+ "n_elem": 2404,
+ "target_elements": 8000,
+ "gap": 5596,
+ "cutoff_score": 0.9206727147102356,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9895265102386475,
+ "score_mean": 0.17059487104415894,
+ "score_p50": 0.002904783468693495,
+ "score_p90": 0.714047908782959,
+ "fraction_gt1": 0.0,
+ "n_inside": 1201,
+ "n_interface": 1553,
+ "n_outside": 24,
+ "selected_inside_frac": 0.5060240963855421,
+ "selected_interface_frac": 0.4939759036144578,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 11,
+ "n_elem": 2778,
+ "target_elements": 8000,
+ "gap": 5222,
+ "cutoff_score": 0.9019455909729004,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9794052839279175,
+ "score_mean": 0.17768454551696777,
+ "score_p50": 0.001843723701313138,
+ "score_p90": 0.7685052752494812,
+ "fraction_gt1": 0.0,
+ "n_inside": 1446,
+ "n_interface": 1786,
+ "n_outside": 24,
+ "selected_inside_frac": 0.4536082474226804,
+ "selected_interface_frac": 0.5463917525773195,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.8958333333333333,
+ "step": 12,
+ "n_elem": 3256,
+ "target_elements": 8000,
+ "gap": 4744,
+ "cutoff_score": 0.9116873741149902,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9833182096481323,
+ "score_mean": 0.15831907093524933,
+ "score_p50": 0.0019054264994338155,
+ "score_p90": 0.7788243293762207,
+ "fraction_gt1": 0.0,
+ "n_inside": 1737,
+ "n_interface": 2082,
+ "n_outside": 24,
+ "selected_inside_frac": 0.4782608695652174,
+ "selected_interface_frac": 0.5217391304347826,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.84375,
+ "step": 13,
+ "n_elem": 3843,
+ "target_elements": 8000,
+ "gap": 4157,
+ "cutoff_score": 0.9227697253227234,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9781925678253174,
+ "score_mean": 0.1406417042016983,
+ "score_p50": 0.0022896742448210716,
+ "score_p90": 0.6617099046707153,
+ "fraction_gt1": 0.0,
+ "n_inside": 2074,
+ "n_interface": 2418,
+ "n_outside": 24,
+ "selected_inside_frac": 0.4666666666666667,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9479166666666667,
+ "step": 14,
+ "n_elem": 4516,
+ "target_elements": 8000,
+ "gap": 3484,
+ "cutoff_score": 0.9024529457092285,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9770199060440063,
+ "score_mean": 0.13316984474658966,
+ "score_p50": 0.0025491404812783003,
+ "score_p90": 0.6220852732658386,
+ "fraction_gt1": 0.0,
+ "n_inside": 2404,
+ "n_interface": 2817,
+ "n_outside": 24,
+ "selected_inside_frac": 0.4394904458598726,
+ "selected_interface_frac": 0.4968152866242038,
+ "selected_outside_frac": 0.06369426751592357,
+ "selected_x_range": 0.9739583333333333,
+ "selected_y_range": 0.96875,
+ "step": 15,
+ "n_elem": 5245,
+ "target_elements": 8000,
+ "gap": 2755,
+ "cutoff_score": 0.8574387431144714,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9790383577346802,
+ "score_mean": 0.13547061383724213,
+ "score_p50": 0.0029741765465587378,
+ "score_p90": 0.6300484538078308,
+ "fraction_gt1": 0.0,
+ "n_inside": 2842,
+ "n_interface": 3288,
+ "n_outside": 63,
+ "selected_inside_frac": 0.2918918918918919,
+ "selected_interface_frac": 0.6918918918918919,
+ "selected_outside_frac": 0.016216216216216217,
+ "selected_x_range": 0.9739583333333334,
+ "selected_y_range": 0.984375,
+ "step": 16,
+ "n_elem": 6193,
+ "target_elements": 8000,
+ "gap": 1807,
+ "cutoff_score": 0.8704949617385864,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9755522608757019,
+ "score_mean": 0.1485036462545395,
+ "score_p50": 0.003729005344212055,
+ "score_p90": 0.6618390679359436,
+ "fraction_gt1": 0.0,
+ "n_inside": 3185,
+ "n_interface": 3981,
+ "n_outside": 79,
+ "selected_inside_frac": 0.3548387096774194,
+ "selected_interface_frac": 0.6359447004608295,
+ "selected_outside_frac": 0.009216589861751152,
+ "selected_x_range": 0.9010416666666666,
+ "selected_y_range": 0.9739583333333333,
+ "step": 17,
+ "n_elem": 7245,
+ "target_elements": 8000,
+ "gap": 755,
+ "cutoff_score": 0.8828405737876892,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 31,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.1319906316736827,
+ "max_err": 0.2180811349822318,
+ "actual_elements": 8343,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.7977280616760254,
+ "score_mean": 7.450580596923828e-08,
+ "score_p50": -0.38947755098342896,
+ "score_p90": 2.508208751678467,
+ "fraction_gt1": 0.12109375,
+ "n_inside": 62,
+ "n_interface": 426,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.27083333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 2.762495994567871,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.9172067642211914,
+ "score_mean": -1.5894572769070692e-08,
+ "score_p50": -0.33050429821014404,
+ "score_p90": 0.7795855402946472,
+ "fraction_gt1": 0.07833333333333334,
+ "n_inside": 137,
+ "n_interface": 439,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.35416666666666674,
+ "step": 1,
+ "n_elem": 600,
+ "target_elements": 8000,
+ "gap": 7400,
+ "cutoff_score": 3.8646788597106934,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 3.7740530967712402,
+ "score_mean": 5.593397744974027e-08,
+ "score_p50": -0.3685372471809387,
+ "score_p90": 0.9048230051994324,
+ "fraction_gt1": 0.09530791788856305,
+ "n_inside": 212,
+ "n_interface": 446,
+ "n_outside": 24,
+ "selected_inside_frac": 0.65,
+ "selected_interface_frac": 0.35,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666663,
+ "selected_y_range": 0.38541666666666663,
+ "step": 2,
+ "n_elem": 682,
+ "target_elements": 8000,
+ "gap": 7318,
+ "cutoff_score": 2.178379774093628,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 3.007706642150879,
+ "score_mean": 1.1509862218872513e-07,
+ "score_p50": -0.21328721940517426,
+ "score_p90": 1.3322539329528809,
+ "fraction_gt1": 0.13793103448275862,
+ "n_inside": 270,
+ "n_interface": 518,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666663,
+ "selected_y_range": 0.2708333333333333,
+ "step": 3,
+ "n_elem": 812,
+ "target_elements": 8000,
+ "gap": 7188,
+ "cutoff_score": 1.9497885704040527,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.9771478176116943,
+ "score_mean": -4.838939560158906e-08,
+ "score_p50": -0.044967904686927795,
+ "score_p90": 1.4444918632507324,
+ "fraction_gt1": 0.15961945031712474,
+ "n_inside": 386,
+ "n_interface": 536,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28125,
+ "selected_y_range": 0.3125,
+ "step": 4,
+ "n_elem": 946,
+ "target_elements": 8000,
+ "gap": 7054,
+ "cutoff_score": 1.8412392139434814,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1134588718414307,
+ "score_mean": -2.4833471456986445e-07,
+ "score_p50": -0.15539760887622833,
+ "score_p90": 1.5149749517440796,
+ "fraction_gt1": 0.14466546112115733,
+ "n_inside": 543,
+ "n_interface": 539,
+ "n_outside": 24,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.35416666666666674,
+ "step": 5,
+ "n_elem": 1106,
+ "target_elements": 8000,
+ "gap": 6894,
+ "cutoff_score": 1.6521477699279785,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.16367769241333,
+ "score_mean": 0.0,
+ "score_p50": -0.026506125926971436,
+ "score_p90": 1.4743547439575195,
+ "fraction_gt1": 0.1389324960753532,
+ "n_inside": 681,
+ "n_interface": 569,
+ "n_outside": 24,
+ "selected_inside_frac": 0.07894736842105263,
+ "selected_interface_frac": 0.9210526315789473,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666674,
+ "selected_y_range": 0.6458333333333333,
+ "step": 6,
+ "n_elem": 1274,
+ "target_elements": 8000,
+ "gap": 6726,
+ "cutoff_score": 1.8100231885910034,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3228893280029297,
+ "score_mean": 6.357829107628277e-08,
+ "score_p50": -0.40577730536460876,
+ "score_p90": 1.211838722229004,
+ "fraction_gt1": 0.11736111111111111,
+ "n_inside": 697,
+ "n_interface": 719,
+ "n_outside": 24,
+ "selected_inside_frac": 0.06976744186046512,
+ "selected_interface_frac": 0.9302325581395349,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.7708333333333333,
+ "step": 7,
+ "n_elem": 1440,
+ "target_elements": 8000,
+ "gap": 6560,
+ "cutoff_score": 2.058474540710449,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.713182210922241,
+ "score_mean": 1.6686404080701323e-07,
+ "score_p50": -0.3976214528083801,
+ "score_p90": 1.1361891031265259,
+ "fraction_gt1": 0.11543134872417983,
+ "n_inside": 713,
+ "n_interface": 909,
+ "n_outside": 24,
+ "selected_inside_frac": 0.5102040816326531,
+ "selected_interface_frac": 0.4897959183673469,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.9166666666666667,
+ "step": 8,
+ "n_elem": 1646,
+ "target_elements": 8000,
+ "gap": 6354,
+ "cutoff_score": 2.060802459716797,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4504356384277344,
+ "score_mean": -4.8134982222336475e-08,
+ "score_p50": -0.30117708444595337,
+ "score_p90": 1.0894367694854736,
+ "fraction_gt1": 0.11829652996845426,
+ "n_inside": 821,
+ "n_interface": 1057,
+ "n_outside": 24,
+ "selected_inside_frac": 0.5614035087719298,
+ "selected_interface_frac": 0.43859649122807015,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.765625,
+ "selected_y_range": 0.6875,
+ "step": 9,
+ "n_elem": 1902,
+ "target_elements": 8000,
+ "gap": 6098,
+ "cutoff_score": 1.815657138824463,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3968679904937744,
+ "score_mean": 0.0,
+ "score_p50": -0.1849919855594635,
+ "score_p90": 1.0908178091049194,
+ "fraction_gt1": 0.13915416098226466,
+ "n_inside": 988,
+ "n_interface": 1187,
+ "n_outside": 24,
+ "selected_inside_frac": 0.46153846153846156,
+ "selected_interface_frac": 0.5384615384615384,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.8645833333333334,
+ "step": 10,
+ "n_elem": 2199,
+ "target_elements": 8000,
+ "gap": 5801,
+ "cutoff_score": 1.6911981105804443,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3277668952941895,
+ "score_mean": 2.374908802948994e-08,
+ "score_p50": -0.07720144093036652,
+ "score_p90": 1.210118293762207,
+ "fraction_gt1": 0.15603112840466926,
+ "n_inside": 1158,
+ "n_interface": 1388,
+ "n_outside": 24,
+ "selected_inside_frac": 0.7012987012987013,
+ "selected_interface_frac": 0.2987012987012987,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.65625,
+ "step": 11,
+ "n_elem": 2570,
+ "target_elements": 8000,
+ "gap": 5430,
+ "cutoff_score": 1.5310070514678955,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.214714527130127,
+ "score_mean": 6.142417419141566e-08,
+ "score_p50": -0.2999107539653778,
+ "score_p90": 1.2579107284545898,
+ "fraction_gt1": 0.1479369339147937,
+ "n_inside": 1441,
+ "n_interface": 1516,
+ "n_outside": 24,
+ "selected_inside_frac": 0.5168539325842697,
+ "selected_interface_frac": 0.34831460674157305,
+ "selected_outside_frac": 0.1348314606741573,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.8125,
+ "step": 12,
+ "n_elem": 2981,
+ "target_elements": 8000,
+ "gap": 5019,
+ "cutoff_score": 1.4913228750228882,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2379050254821777,
+ "score_mean": 7.14906676080318e-08,
+ "score_p50": -0.19112852215766907,
+ "score_p90": 1.2307581901550293,
+ "fraction_gt1": 0.14699853587115666,
+ "n_inside": 1680,
+ "n_interface": 1666,
+ "n_outside": 69,
+ "selected_inside_frac": 0.5588235294117647,
+ "selected_interface_frac": 0.38235294117647056,
+ "selected_outside_frac": 0.058823529411764705,
+ "selected_x_range": 0.6979166666666666,
+ "selected_y_range": 0.8125,
+ "step": 13,
+ "n_elem": 3415,
+ "target_elements": 8000,
+ "gap": 4585,
+ "cutoff_score": 1.5345113277435303,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1160712242126465,
+ "score_mean": 9.414162605025922e-08,
+ "score_p50": -0.054910942912101746,
+ "score_p90": 1.3023816347122192,
+ "fraction_gt1": 0.15732647814910025,
+ "n_inside": 1941,
+ "n_interface": 1858,
+ "n_outside": 91,
+ "selected_inside_frac": 0.7758620689655172,
+ "selected_interface_frac": 0.22413793103448276,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333334,
+ "selected_y_range": 0.8541666666666667,
+ "step": 14,
+ "n_elem": 3890,
+ "target_elements": 8000,
+ "gap": 4110,
+ "cutoff_score": 1.5542271137237549,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.212667465209961,
+ "score_mean": 8.052131761360215e-08,
+ "score_p50": -0.1527571976184845,
+ "score_p90": 1.4200501441955566,
+ "fraction_gt1": 0.1503957783641161,
+ "n_inside": 2371,
+ "n_interface": 2085,
+ "n_outside": 92,
+ "selected_inside_frac": 0.5735294117647058,
+ "selected_interface_frac": 0.4264705882352941,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333334,
+ "selected_y_range": 0.875,
+ "step": 15,
+ "n_elem": 4548,
+ "target_elements": 8000,
+ "gap": 3452,
+ "cutoff_score": 1.5691572427749634,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1980462074279785,
+ "score_mean": 4.686900112460535e-08,
+ "score_p50": -0.023098289966583252,
+ "score_p90": 1.2688264846801758,
+ "fraction_gt1": 0.13745440583605298,
+ "n_inside": 2755,
+ "n_interface": 2361,
+ "n_outside": 93,
+ "selected_inside_frac": 0.07692307692307693,
+ "selected_interface_frac": 0.9230769230769231,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8645833333333333,
+ "selected_y_range": 0.9791666666666667,
+ "step": 16,
+ "n_elem": 5209,
+ "target_elements": 8000,
+ "gap": 2791,
+ "cutoff_score": 1.7703843116760254,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3050894737243652,
+ "score_mean": 1.241182587818912e-07,
+ "score_p50": -0.29798030853271484,
+ "score_p90": 1.240304946899414,
+ "fraction_gt1": 0.12319945771903067,
+ "n_inside": 2817,
+ "n_interface": 2991,
+ "n_outside": 93,
+ "selected_inside_frac": 0.11864406779661017,
+ "selected_interface_frac": 0.8813559322033898,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 17,
+ "n_elem": 5901,
+ "target_elements": 8000,
+ "gap": 2099,
+ "cutoff_score": 1.909037709236145,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.7910232543945312,
+ "score_mean": 1.8282209524045356e-08,
+ "score_p50": -0.2178320288658142,
+ "score_p90": 1.140731692314148,
+ "fraction_gt1": 0.10992960910588588,
+ "n_inside": 2919,
+ "n_interface": 3665,
+ "n_outside": 93,
+ "selected_inside_frac": 0.615,
+ "selected_interface_frac": 0.385,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7994791666666666,
+ "selected_y_range": 0.9166666666666667,
+ "step": 18,
+ "n_elem": 6677,
+ "target_elements": 8000,
+ "gap": 1323,
+ "cutoff_score": 1.7891480922698975,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.28485107421875,
+ "score_mean": 1.766574655448494e-07,
+ "score_p50": -0.2931342124938965,
+ "score_p90": 0.9655622839927673,
+ "fraction_gt1": 0.09525062491777397,
+ "n_inside": 3425,
+ "n_interface": 4083,
+ "n_outside": 93,
+ "selected_inside_frac": 0.6541353383458647,
+ "selected_interface_frac": 0.3157894736842105,
+ "selected_outside_frac": 0.03007518796992481,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8854166666666667,
+ "step": 19,
+ "n_elem": 7601,
+ "target_elements": 8000,
+ "gap": 399,
+ "cutoff_score": 1.8667453527450562,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 31,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.18985138296251217,
+ "max_err": 0.4720768450009831,
+ "actual_elements": 2092,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.7259042859077454,
+ "score_mean": 0.39941802620887756,
+ "score_p50": 0.36641833186149597,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 47,
+ "n_interface": 158,
+ "n_outside": 307,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333337,
+ "selected_y_range": 0.27083333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.7259042859077454,
+ "num_tied_at_cutoff": 47,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.7259042859077454,
+ "score_mean": 0.3631361126899719,
+ "score_p50": 0.36641833186149597,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 109,
+ "n_interface": 206,
+ "n_outside": 307,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.13541666666666669,
+ "selected_y_range": 0.29166666666666663,
+ "step": 1,
+ "n_elem": 622,
+ "target_elements": 2000,
+ "gap": 1378,
+ "cutoff_score": 0.5132918357849121,
+ "num_tied_at_cutoff": 25,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.5132918357849121,
+ "score_mean": 0.3461705446243286,
+ "score_p50": 0.36641833186149597,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 186,
+ "n_interface": 211,
+ "n_outside": 307,
+ "selected_inside_frac": 0.38095238095238093,
+ "selected_interface_frac": 0.6190476190476191,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.4375,
+ "step": 2,
+ "n_elem": 704,
+ "target_elements": 2000,
+ "gap": 1296,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 436,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.31667837500572205,
+ "score_p50": 0.3629521429538727,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 287,
+ "n_outside": 307,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.45833333333333337,
+ "step": 3,
+ "n_elem": 821,
+ "target_elements": 2000,
+ "gap": 1179,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 406,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.2907886803150177,
+ "score_p50": 0.3629521429538727,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 414,
+ "n_outside": 307,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 948,
+ "target_elements": 2000,
+ "gap": 1052,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 360,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.2695218622684479,
+ "score_p50": 0.25664591789245605,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 546,
+ "n_outside": 313,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.1875,
+ "selected_outside_frac": 0.8125,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.625,
+ "step": 5,
+ "n_elem": 1086,
+ "target_elements": 2000,
+ "gap": 914,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 310,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.24987584352493286,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 594,
+ "n_outside": 434,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.75,
+ "step": 6,
+ "n_elem": 1255,
+ "target_elements": 2000,
+ "gap": 745,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 248,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.23243077099323273,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 594,
+ "n_outside": 636,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8333333333333333,
+ "step": 7,
+ "n_elem": 1457,
+ "target_elements": 2000,
+ "gap": 543,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 172,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.2176399528980255,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.3629521429538727,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 594,
+ "n_outside": 866,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.45833333333333326,
+ "step": 8,
+ "n_elem": 1687,
+ "target_elements": 2000,
+ "gap": 313,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 86,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.20745520293712616,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.2590968906879425,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 594,
+ "n_outside": 1066,
+ "selected_inside_frac": 0.40540540540540543,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.5945945945945946,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.90625,
+ "step": 9,
+ "n_elem": 1887,
+ "target_elements": 2000,
+ "gap": 113,
+ "cutoff_score": 0.3629521429538727,
+ "num_tied_at_cutoff": 135,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 33,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.1512955530397781,
+ "max_err": 0.5072435871624084,
+ "actual_elements": 2094,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9915785789489746,
+ "score_mean": 0.11031495034694672,
+ "score_p50": 2.892238398999325e-06,
+ "score_p90": 0.6887500286102295,
+ "fraction_gt1": 0.0,
+ "n_inside": 47,
+ "n_interface": 158,
+ "n_outside": 307,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333337,
+ "selected_y_range": 0.14583333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9839450716972351,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9853091835975647,
+ "score_mean": 0.11826665699481964,
+ "score_p50": 0.00013062740617897362,
+ "score_p90": 0.5434913635253906,
+ "fraction_gt1": 0.0,
+ "n_inside": 107,
+ "n_interface": 172,
+ "n_outside": 307,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.27083333333333337,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 2000,
+ "gap": 1414,
+ "cutoff_score": 0.9223898649215698,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9866276383399963,
+ "score_mean": 0.15491215884685516,
+ "score_p50": 0.0014410868752747774,
+ "score_p90": 0.7854480743408203,
+ "fraction_gt1": 0.0,
+ "n_inside": 172,
+ "n_interface": 207,
+ "n_outside": 307,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34375000000000006,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 686,
+ "target_elements": 2000,
+ "gap": 1314,
+ "cutoff_score": 0.9490460753440857,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884604215621948,
+ "score_mean": 0.2212914377450943,
+ "score_p50": 0.00312151201069355,
+ "score_p90": 0.89687180519104,
+ "fraction_gt1": 0.0,
+ "n_inside": 243,
+ "n_interface": 260,
+ "n_outside": 307,
+ "selected_inside_frac": 0.125,
+ "selected_interface_frac": 0.375,
+ "selected_outside_frac": 0.5,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.32291666666666663,
+ "step": 3,
+ "n_elem": 810,
+ "target_elements": 2000,
+ "gap": 1190,
+ "cutoff_score": 0.9764677882194519,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9881666302680969,
+ "score_mean": 0.23089174926280975,
+ "score_p50": 0.0021424642764031887,
+ "score_p90": 0.8824987411499023,
+ "fraction_gt1": 0.0,
+ "n_inside": 266,
+ "n_interface": 313,
+ "n_outside": 361,
+ "selected_inside_frac": 0.21428571428571427,
+ "selected_interface_frac": 0.14285714285714285,
+ "selected_outside_frac": 0.6428571428571429,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 940,
+ "target_elements": 2000,
+ "gap": 1060,
+ "cutoff_score": 0.9759381413459778,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9859462380409241,
+ "score_mean": 0.20986567437648773,
+ "score_p50": 0.0023777491878718138,
+ "score_p90": 0.8667338490486145,
+ "fraction_gt1": 0.0,
+ "n_inside": 309,
+ "n_interface": 331,
+ "n_outside": 453,
+ "selected_inside_frac": 0.28125,
+ "selected_interface_frac": 0.28125,
+ "selected_outside_frac": 0.4375,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 5,
+ "n_elem": 1093,
+ "target_elements": 2000,
+ "gap": 907,
+ "cutoff_score": 0.9528957605361938,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9806530475616455,
+ "score_mean": 0.18699580430984497,
+ "score_p50": 0.0024132411926984787,
+ "score_p90": 0.8576707243919373,
+ "fraction_gt1": 0.0,
+ "n_inside": 355,
+ "n_interface": 385,
+ "n_outside": 520,
+ "selected_inside_frac": 0.5405405405405406,
+ "selected_interface_frac": 0.40540540540540543,
+ "selected_outside_frac": 0.05405405405405406,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.6354166666666666,
+ "step": 6,
+ "n_elem": 1260,
+ "target_elements": 2000,
+ "gap": 740,
+ "cutoff_score": 0.9348055720329285,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9833042621612549,
+ "score_mean": 0.17013908922672272,
+ "score_p50": 0.006556142587214708,
+ "score_p90": 0.7637436389923096,
+ "fraction_gt1": 0.0,
+ "n_inside": 479,
+ "n_interface": 477,
+ "n_outside": 538,
+ "selected_inside_frac": 0.2727272727272727,
+ "selected_interface_frac": 0.6136363636363636,
+ "selected_outside_frac": 0.11363636363636363,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 7,
+ "n_elem": 1494,
+ "target_elements": 2000,
+ "gap": 506,
+ "cutoff_score": 0.921555757522583,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9777207970619202,
+ "score_mean": 0.1705700159072876,
+ "score_p50": 0.009123850613832474,
+ "score_p90": 0.7109577655792236,
+ "fraction_gt1": 0.0,
+ "n_inside": 560,
+ "n_interface": 627,
+ "n_outside": 569,
+ "selected_inside_frac": 0.3269230769230769,
+ "selected_interface_frac": 0.4807692307692308,
+ "selected_outside_frac": 0.19230769230769232,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.7604166666666666,
+ "step": 8,
+ "n_elem": 1756,
+ "target_elements": 2000,
+ "gap": 244,
+ "cutoff_score": 0.8820492029190063,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 33,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.14845182514449934,
+ "max_err": 0.497039262916446,
+ "actual_elements": 2102,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 3.1038460731506348,
+ "score_mean": -2.2351741790771484e-08,
+ "score_p50": -0.3506219983100891,
+ "score_p90": 1.2421157360076904,
+ "fraction_gt1": 0.107421875,
+ "n_inside": 47,
+ "n_interface": 158,
+ "n_outside": 307,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333337,
+ "selected_y_range": 0.14583333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 3.090583324432373,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 4.004301071166992,
+ "score_mean": -1.269395824010644e-07,
+ "score_p50": -0.3016190826892853,
+ "score_p90": 0.7532603144645691,
+ "fraction_gt1": 0.08873720136518772,
+ "n_inside": 107,
+ "n_interface": 172,
+ "n_outside": 307,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18750000000000003,
+ "selected_y_range": 0.27083333333333337,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 2000,
+ "gap": 1414,
+ "cutoff_score": 3.860090732574463,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 3.1789112091064453,
+ "score_mean": -6.567218235886685e-08,
+ "score_p50": -0.14581254124641418,
+ "score_p90": 1.1638789176940918,
+ "fraction_gt1": 0.1122754491017964,
+ "n_inside": 167,
+ "n_interface": 194,
+ "n_outside": 307,
+ "selected_inside_frac": 0.55,
+ "selected_interface_frac": 0.45,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.42708333333333337,
+ "selected_y_range": 0.28125,
+ "step": 2,
+ "n_elem": 668,
+ "target_elements": 2000,
+ "gap": 1332,
+ "cutoff_score": 1.5141509771347046,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.3950806856155396,
+ "score_mean": 3.8629845988680245e-08,
+ "score_p50": -0.0002888143062591553,
+ "score_p90": 1.2939499616622925,
+ "fraction_gt1": 0.16582278481012658,
+ "n_inside": 218,
+ "n_interface": 265,
+ "n_outside": 307,
+ "selected_inside_frac": 0.21739130434782608,
+ "selected_interface_frac": 0.5217391304347826,
+ "selected_outside_frac": 0.2608695652173913,
+ "selected_x_range": 0.37500000000000006,
+ "selected_y_range": 0.375,
+ "step": 3,
+ "n_elem": 790,
+ "target_elements": 2000,
+ "gap": 1210,
+ "cutoff_score": 1.3726475238800049,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.490771770477295,
+ "score_mean": -1.1660646492828164e-07,
+ "score_p50": 0.1182197779417038,
+ "score_p90": 1.4121841192245483,
+ "fraction_gt1": 0.18231441048034935,
+ "n_inside": 252,
+ "n_interface": 328,
+ "n_outside": 336,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.18518518518518517,
+ "selected_outside_frac": 0.8148148148148148,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.5,
+ "step": 4,
+ "n_elem": 916,
+ "target_elements": 2000,
+ "gap": 1084,
+ "cutoff_score": 1.470392107963562,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.6737271547317505,
+ "score_mean": 5.8406847358583036e-08,
+ "score_p50": -0.09623228758573532,
+ "score_p90": 1.5032249689102173,
+ "fraction_gt1": 0.14641148325358852,
+ "n_inside": 252,
+ "n_interface": 355,
+ "n_outside": 438,
+ "selected_inside_frac": 0.8064516129032258,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.1935483870967742,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.49999999999999994,
+ "step": 5,
+ "n_elem": 1045,
+ "target_elements": 2000,
+ "gap": 955,
+ "cutoff_score": 1.6553771495819092,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.01366925239563,
+ "score_mean": 1.2375335245451424e-07,
+ "score_p50": -0.23140305280685425,
+ "score_p90": 1.2173080444335938,
+ "fraction_gt1": 0.13138686131386862,
+ "n_inside": 384,
+ "n_interface": 363,
+ "n_outside": 486,
+ "selected_inside_frac": 0.6111111111111112,
+ "selected_interface_frac": 0.05555555555555555,
+ "selected_outside_frac": 0.3333333333333333,
+ "selected_x_range": 0.8020833333333333,
+ "selected_y_range": 0.6458333333333333,
+ "step": 6,
+ "n_elem": 1233,
+ "target_elements": 2000,
+ "gap": 767,
+ "cutoff_score": 1.8813526630401611,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.147847890853882,
+ "score_mean": -1.0603744726722653e-07,
+ "score_p50": -0.21594958007335663,
+ "score_p90": 1.1019333600997925,
+ "fraction_gt1": 0.10979847116052814,
+ "n_inside": 496,
+ "n_interface": 388,
+ "n_outside": 555,
+ "selected_inside_frac": 0.37209302325581395,
+ "selected_interface_frac": 0.6046511627906976,
+ "selected_outside_frac": 0.023255813953488372,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.7708333333333333,
+ "step": 7,
+ "n_elem": 1439,
+ "target_elements": 2000,
+ "gap": 561,
+ "cutoff_score": 1.7174072265625,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9576714038848877,
+ "score_mean": -1.8722440131568874e-07,
+ "score_p50": -0.4605388045310974,
+ "score_p90": 1.0310616493225098,
+ "fraction_gt1": 0.11042944785276074,
+ "n_inside": 561,
+ "n_interface": 502,
+ "n_outside": 567,
+ "selected_inside_frac": 0.3125,
+ "selected_interface_frac": 0.5833333333333334,
+ "selected_outside_frac": 0.10416666666666667,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.71875,
+ "step": 8,
+ "n_elem": 1630,
+ "target_elements": 2000,
+ "gap": 370,
+ "cutoff_score": 1.53867506980896,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1009581089019775,
+ "score_mean": 0.0,
+ "score_p50": -0.3601774573326111,
+ "score_p90": 1.0179094076156616,
+ "fraction_gt1": 0.10471204188481675,
+ "n_inside": 658,
+ "n_interface": 644,
+ "n_outside": 608,
+ "selected_inside_frac": 0.3,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.36666666666666664,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.90625,
+ "step": 9,
+ "n_elem": 1910,
+ "target_elements": 2000,
+ "gap": 90,
+ "cutoff_score": 1.7027069330215454,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 33,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.1398845723078097,
+ "max_err": 0.5156053889488167,
+ "actual_elements": 4116,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.7259042859077454,
+ "score_mean": 0.39941802620887756,
+ "score_p50": 0.36641833186149597,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 47,
+ "n_interface": 158,
+ "n_outside": 307,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333337,
+ "selected_y_range": 0.27083333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.7259042859077454,
+ "num_tied_at_cutoff": 47,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.7259042859077454,
+ "score_mean": 0.3631361126899719,
+ "score_p50": 0.36641833186149597,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 109,
+ "n_interface": 206,
+ "n_outside": 307,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.13541666666666669,
+ "selected_y_range": 0.29166666666666663,
+ "step": 1,
+ "n_elem": 622,
+ "target_elements": 4000,
+ "gap": 3378,
+ "cutoff_score": 0.5132918357849121,
+ "num_tied_at_cutoff": 25,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.5132918357849121,
+ "score_mean": 0.3461705446243286,
+ "score_p50": 0.36641833186149597,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 186,
+ "n_interface": 211,
+ "n_outside": 307,
+ "selected_inside_frac": 0.38095238095238093,
+ "selected_interface_frac": 0.6190476190476191,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.4375,
+ "step": 2,
+ "n_elem": 704,
+ "target_elements": 4000,
+ "gap": 3296,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 436,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.31667837500572205,
+ "score_p50": 0.3629521429538727,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 287,
+ "n_outside": 307,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.45833333333333337,
+ "step": 3,
+ "n_elem": 821,
+ "target_elements": 4000,
+ "gap": 3179,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 406,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.2907886803150177,
+ "score_p50": 0.3629521429538727,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 414,
+ "n_outside": 307,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 948,
+ "target_elements": 4000,
+ "gap": 3052,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 360,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.2695218622684479,
+ "score_p50": 0.25664591789245605,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 546,
+ "n_outside": 313,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.1875,
+ "selected_outside_frac": 0.8125,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.625,
+ "step": 5,
+ "n_elem": 1086,
+ "target_elements": 4000,
+ "gap": 2914,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 310,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.24987584352493286,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 594,
+ "n_outside": 434,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.75,
+ "step": 6,
+ "n_elem": 1255,
+ "target_elements": 4000,
+ "gap": 2745,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 248,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.23243077099323273,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 594,
+ "n_outside": 636,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8333333333333333,
+ "step": 7,
+ "n_elem": 1457,
+ "target_elements": 4000,
+ "gap": 2543,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 172,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.2176399528980255,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.3629521429538727,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 594,
+ "n_outside": 866,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.45833333333333326,
+ "step": 8,
+ "n_elem": 1687,
+ "target_elements": 4000,
+ "gap": 2313,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 86,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.20745520293712616,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.2590968906879425,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 594,
+ "n_outside": 1066,
+ "selected_inside_frac": 0.6071428571428571,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.39285714285714285,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.90625,
+ "step": 9,
+ "n_elem": 1887,
+ "target_elements": 4000,
+ "gap": 2113,
+ "cutoff_score": 0.3629521429538727,
+ "num_tied_at_cutoff": 135,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3629521429538727,
+ "score_mean": 0.19348111748695374,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.25664591789245605,
+ "fraction_gt1": 0.0,
+ "n_inside": 386,
+ "n_interface": 677,
+ "n_outside": 1141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666666,
+ "selected_y_range": 0.22916666666666663,
+ "step": 10,
+ "n_elem": 2204,
+ "target_elements": 4000,
+ "gap": 1796,
+ "cutoff_score": 0.3629521429538727,
+ "num_tied_at_cutoff": 70,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2590968906879425,
+ "score_mean": 0.18624718487262726,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.18320916593074799,
+ "fraction_gt1": 0.0,
+ "n_inside": 624,
+ "n_interface": 677,
+ "n_outside": 1141,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.5068493150684932,
+ "selected_outside_frac": 0.4931506849315068,
+ "selected_x_range": 0.8333333333333334,
+ "selected_y_range": 0.7708333333333334,
+ "step": 11,
+ "n_elem": 2442,
+ "target_elements": 4000,
+ "gap": 1558,
+ "cutoff_score": 0.2590968906879425,
+ "num_tied_at_cutoff": 120,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2590968906879425,
+ "score_mean": 0.17343178391456604,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.18320916593074799,
+ "fraction_gt1": 0.0,
+ "n_inside": 624,
+ "n_interface": 847,
+ "n_outside": 1316,
+ "selected_inside_frac": 0.4578313253012048,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.5421686746987951,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 2787,
+ "target_elements": 4000,
+ "gap": 1213,
+ "cutoff_score": 0.25664591789245605,
+ "num_tied_at_cutoff": 102,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25664591789245605,
+ "score_mean": 0.16161078214645386,
+ "score_p50": 0.18147607147693634,
+ "score_p90": 0.18320916593074799,
+ "fraction_gt1": 0.0,
+ "n_inside": 799,
+ "n_interface": 878,
+ "n_outside": 1521,
+ "selected_inside_frac": 0.5473684210526316,
+ "selected_interface_frac": 0.45263157894736844,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.38541666666666663,
+ "step": 13,
+ "n_elem": 3198,
+ "target_elements": 4000,
+ "gap": 802,
+ "cutoff_score": 0.18320916593074799,
+ "num_tied_at_cutoff": 1380,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.18320916593074799,
+ "score_mean": 0.1508018523454666,
+ "score_p50": 0.12954844534397125,
+ "score_p90": 0.18320916593074799,
+ "fraction_gt1": 0.0,
+ "n_inside": 1001,
+ "n_interface": 1112,
+ "n_outside": 1521,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.47916666666666663,
+ "step": 14,
+ "n_elem": 3634,
+ "target_elements": 4000,
+ "gap": 366,
+ "cutoff_score": 0.18320916593074799,
+ "num_tied_at_cutoff": 1298,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 33,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13519991482132024,
+ "max_err": 0.5155909358383997,
+ "actual_elements": 4112,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9915785789489746,
+ "score_mean": 0.11031495034694672,
+ "score_p50": 2.892238398999325e-06,
+ "score_p90": 0.6887500286102295,
+ "fraction_gt1": 0.0,
+ "n_inside": 47,
+ "n_interface": 158,
+ "n_outside": 307,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333337,
+ "selected_y_range": 0.14583333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9839450716972351,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9853091835975647,
+ "score_mean": 0.11826665699481964,
+ "score_p50": 0.00013062740617897362,
+ "score_p90": 0.5434913635253906,
+ "fraction_gt1": 0.0,
+ "n_inside": 107,
+ "n_interface": 172,
+ "n_outside": 307,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.27083333333333337,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 4000,
+ "gap": 3414,
+ "cutoff_score": 0.9223898649215698,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9866276383399963,
+ "score_mean": 0.15491215884685516,
+ "score_p50": 0.0014410868752747774,
+ "score_p90": 0.7854480743408203,
+ "fraction_gt1": 0.0,
+ "n_inside": 172,
+ "n_interface": 207,
+ "n_outside": 307,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34375000000000006,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 686,
+ "target_elements": 4000,
+ "gap": 3314,
+ "cutoff_score": 0.9490460753440857,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884604215621948,
+ "score_mean": 0.2212914377450943,
+ "score_p50": 0.00312151201069355,
+ "score_p90": 0.89687180519104,
+ "fraction_gt1": 0.0,
+ "n_inside": 243,
+ "n_interface": 260,
+ "n_outside": 307,
+ "selected_inside_frac": 0.125,
+ "selected_interface_frac": 0.375,
+ "selected_outside_frac": 0.5,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.32291666666666663,
+ "step": 3,
+ "n_elem": 810,
+ "target_elements": 4000,
+ "gap": 3190,
+ "cutoff_score": 0.9764677882194519,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9881666302680969,
+ "score_mean": 0.23089174926280975,
+ "score_p50": 0.0021424642764031887,
+ "score_p90": 0.8824987411499023,
+ "fraction_gt1": 0.0,
+ "n_inside": 266,
+ "n_interface": 313,
+ "n_outside": 361,
+ "selected_inside_frac": 0.21428571428571427,
+ "selected_interface_frac": 0.14285714285714285,
+ "selected_outside_frac": 0.6428571428571429,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 940,
+ "target_elements": 4000,
+ "gap": 3060,
+ "cutoff_score": 0.9759381413459778,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9859462380409241,
+ "score_mean": 0.20986567437648773,
+ "score_p50": 0.0023777491878718138,
+ "score_p90": 0.8667338490486145,
+ "fraction_gt1": 0.0,
+ "n_inside": 309,
+ "n_interface": 331,
+ "n_outside": 453,
+ "selected_inside_frac": 0.28125,
+ "selected_interface_frac": 0.28125,
+ "selected_outside_frac": 0.4375,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 5,
+ "n_elem": 1093,
+ "target_elements": 4000,
+ "gap": 2907,
+ "cutoff_score": 0.9528957605361938,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9806530475616455,
+ "score_mean": 0.18699580430984497,
+ "score_p50": 0.0024132411926984787,
+ "score_p90": 0.8576707243919373,
+ "fraction_gt1": 0.0,
+ "n_inside": 355,
+ "n_interface": 385,
+ "n_outside": 520,
+ "selected_inside_frac": 0.5405405405405406,
+ "selected_interface_frac": 0.40540540540540543,
+ "selected_outside_frac": 0.05405405405405406,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.6354166666666666,
+ "step": 6,
+ "n_elem": 1260,
+ "target_elements": 4000,
+ "gap": 2740,
+ "cutoff_score": 0.9348055720329285,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9833042621612549,
+ "score_mean": 0.17013908922672272,
+ "score_p50": 0.006556142587214708,
+ "score_p90": 0.7637436389923096,
+ "fraction_gt1": 0.0,
+ "n_inside": 479,
+ "n_interface": 477,
+ "n_outside": 538,
+ "selected_inside_frac": 0.2727272727272727,
+ "selected_interface_frac": 0.6136363636363636,
+ "selected_outside_frac": 0.11363636363636363,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 7,
+ "n_elem": 1494,
+ "target_elements": 4000,
+ "gap": 2506,
+ "cutoff_score": 0.921555757522583,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9777207970619202,
+ "score_mean": 0.1705700159072876,
+ "score_p50": 0.009123850613832474,
+ "score_p90": 0.7109577655792236,
+ "fraction_gt1": 0.0,
+ "n_inside": 560,
+ "n_interface": 627,
+ "n_outside": 569,
+ "selected_inside_frac": 0.3269230769230769,
+ "selected_interface_frac": 0.4807692307692308,
+ "selected_outside_frac": 0.19230769230769232,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.7604166666666666,
+ "step": 8,
+ "n_elem": 1756,
+ "target_elements": 4000,
+ "gap": 2244,
+ "cutoff_score": 0.8820492029190063,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9685114622116089,
+ "score_mean": 0.1814717948436737,
+ "score_p50": 0.010265584103763103,
+ "score_p90": 0.7414183616638184,
+ "fraction_gt1": 0.0,
+ "n_inside": 681,
+ "n_interface": 773,
+ "n_outside": 640,
+ "selected_inside_frac": 0.5967741935483871,
+ "selected_interface_frac": 0.20967741935483872,
+ "selected_outside_frac": 0.1935483870967742,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.59375,
+ "step": 9,
+ "n_elem": 2094,
+ "target_elements": 4000,
+ "gap": 1906,
+ "cutoff_score": 0.8898711800575256,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9766130447387695,
+ "score_mean": 0.19715344905853271,
+ "score_p50": 0.010136481374502182,
+ "score_p90": 0.7846953868865967,
+ "fraction_gt1": 0.0,
+ "n_inside": 880,
+ "n_interface": 856,
+ "n_outside": 717,
+ "selected_inside_frac": 0.3287671232876712,
+ "selected_interface_frac": 0.2876712328767123,
+ "selected_outside_frac": 0.3835616438356164,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.5,
+ "step": 10,
+ "n_elem": 2453,
+ "target_elements": 4000,
+ "gap": 1547,
+ "cutoff_score": 0.9111329317092896,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9853315353393555,
+ "score_mean": 0.2214185744524002,
+ "score_p50": 0.009311134926974773,
+ "score_p90": 0.8296290040016174,
+ "fraction_gt1": 0.0,
+ "n_inside": 1019,
+ "n_interface": 970,
+ "n_outside": 874,
+ "selected_inside_frac": 0.25882352941176473,
+ "selected_interface_frac": 0.35294117647058826,
+ "selected_outside_frac": 0.38823529411764707,
+ "selected_x_range": 0.7604166666666667,
+ "selected_y_range": 0.5416666666666666,
+ "step": 11,
+ "n_elem": 2863,
+ "target_elements": 4000,
+ "gap": 1137,
+ "cutoff_score": 0.9156163930892944,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9843170642852783,
+ "score_mean": 0.21503902971744537,
+ "score_p50": 0.006354520097374916,
+ "score_p90": 0.8235622644424438,
+ "fraction_gt1": 0.0,
+ "n_inside": 1164,
+ "n_interface": 1117,
+ "n_outside": 1072,
+ "selected_inside_frac": 0.49,
+ "selected_interface_frac": 0.28,
+ "selected_outside_frac": 0.23,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.90625,
+ "step": 12,
+ "n_elem": 3353,
+ "target_elements": 4000,
+ "gap": 647,
+ "cutoff_score": 0.9127927422523499,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9800057411193848,
+ "score_mean": 0.20288363099098206,
+ "score_p50": 0.006384735461324453,
+ "score_p90": 0.8123385310173035,
+ "fraction_gt1": 0.0,
+ "n_inside": 1427,
+ "n_interface": 1271,
+ "n_outside": 1195,
+ "selected_inside_frac": 0.2,
+ "selected_interface_frac": 0.5428571428571428,
+ "selected_outside_frac": 0.2571428571428571,
+ "selected_x_range": 0.6302083333333334,
+ "selected_y_range": 0.3125,
+ "step": 13,
+ "n_elem": 3893,
+ "target_elements": 4000,
+ "gap": 107,
+ "cutoff_score": 0.9425908327102661,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 33,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13018466853649405,
+ "max_err": 0.5191880038283625,
+ "actual_elements": 4148,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 3.1038460731506348,
+ "score_mean": -2.2351741790771484e-08,
+ "score_p50": -0.3506219983100891,
+ "score_p90": 1.2421157360076904,
+ "fraction_gt1": 0.107421875,
+ "n_inside": 47,
+ "n_interface": 158,
+ "n_outside": 307,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333337,
+ "selected_y_range": 0.14583333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 3.090583324432373,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 4.004301071166992,
+ "score_mean": -1.269395824010644e-07,
+ "score_p50": -0.3016190826892853,
+ "score_p90": 0.7532603144645691,
+ "fraction_gt1": 0.08873720136518772,
+ "n_inside": 107,
+ "n_interface": 172,
+ "n_outside": 307,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18750000000000003,
+ "selected_y_range": 0.27083333333333337,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 4000,
+ "gap": 3414,
+ "cutoff_score": 3.860090732574463,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 3.1789112091064453,
+ "score_mean": -6.567218235886685e-08,
+ "score_p50": -0.14581254124641418,
+ "score_p90": 1.1638789176940918,
+ "fraction_gt1": 0.1122754491017964,
+ "n_inside": 167,
+ "n_interface": 194,
+ "n_outside": 307,
+ "selected_inside_frac": 0.55,
+ "selected_interface_frac": 0.45,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.42708333333333337,
+ "selected_y_range": 0.28125,
+ "step": 2,
+ "n_elem": 668,
+ "target_elements": 4000,
+ "gap": 3332,
+ "cutoff_score": 1.5141509771347046,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.3950806856155396,
+ "score_mean": 3.8629845988680245e-08,
+ "score_p50": -0.0002888143062591553,
+ "score_p90": 1.2939499616622925,
+ "fraction_gt1": 0.16582278481012658,
+ "n_inside": 218,
+ "n_interface": 265,
+ "n_outside": 307,
+ "selected_inside_frac": 0.21739130434782608,
+ "selected_interface_frac": 0.5217391304347826,
+ "selected_outside_frac": 0.2608695652173913,
+ "selected_x_range": 0.37500000000000006,
+ "selected_y_range": 0.375,
+ "step": 3,
+ "n_elem": 790,
+ "target_elements": 4000,
+ "gap": 3210,
+ "cutoff_score": 1.3726475238800049,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.490771770477295,
+ "score_mean": -1.1660646492828164e-07,
+ "score_p50": 0.1182197779417038,
+ "score_p90": 1.4121841192245483,
+ "fraction_gt1": 0.18231441048034935,
+ "n_inside": 252,
+ "n_interface": 328,
+ "n_outside": 336,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.18518518518518517,
+ "selected_outside_frac": 0.8148148148148148,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.5,
+ "step": 4,
+ "n_elem": 916,
+ "target_elements": 4000,
+ "gap": 3084,
+ "cutoff_score": 1.470392107963562,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.6737271547317505,
+ "score_mean": 5.8406847358583036e-08,
+ "score_p50": -0.09623228758573532,
+ "score_p90": 1.5032249689102173,
+ "fraction_gt1": 0.14641148325358852,
+ "n_inside": 252,
+ "n_interface": 355,
+ "n_outside": 438,
+ "selected_inside_frac": 0.8064516129032258,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.1935483870967742,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.49999999999999994,
+ "step": 5,
+ "n_elem": 1045,
+ "target_elements": 4000,
+ "gap": 2955,
+ "cutoff_score": 1.6553771495819092,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.01366925239563,
+ "score_mean": 1.2375335245451424e-07,
+ "score_p50": -0.23140305280685425,
+ "score_p90": 1.2173080444335938,
+ "fraction_gt1": 0.13138686131386862,
+ "n_inside": 384,
+ "n_interface": 363,
+ "n_outside": 486,
+ "selected_inside_frac": 0.6111111111111112,
+ "selected_interface_frac": 0.05555555555555555,
+ "selected_outside_frac": 0.3333333333333333,
+ "selected_x_range": 0.8020833333333333,
+ "selected_y_range": 0.6458333333333333,
+ "step": 6,
+ "n_elem": 1233,
+ "target_elements": 4000,
+ "gap": 2767,
+ "cutoff_score": 1.8813526630401611,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.147847890853882,
+ "score_mean": -1.0603744726722653e-07,
+ "score_p50": -0.21594958007335663,
+ "score_p90": 1.1019333600997925,
+ "fraction_gt1": 0.10979847116052814,
+ "n_inside": 496,
+ "n_interface": 388,
+ "n_outside": 555,
+ "selected_inside_frac": 0.37209302325581395,
+ "selected_interface_frac": 0.6046511627906976,
+ "selected_outside_frac": 0.023255813953488372,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.7708333333333333,
+ "step": 7,
+ "n_elem": 1439,
+ "target_elements": 4000,
+ "gap": 2561,
+ "cutoff_score": 1.7174072265625,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9576714038848877,
+ "score_mean": -1.8722440131568874e-07,
+ "score_p50": -0.4605388045310974,
+ "score_p90": 1.0310616493225098,
+ "fraction_gt1": 0.11042944785276074,
+ "n_inside": 561,
+ "n_interface": 502,
+ "n_outside": 567,
+ "selected_inside_frac": 0.3125,
+ "selected_interface_frac": 0.5833333333333334,
+ "selected_outside_frac": 0.10416666666666667,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.71875,
+ "step": 8,
+ "n_elem": 1630,
+ "target_elements": 4000,
+ "gap": 2370,
+ "cutoff_score": 1.53867506980896,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1009581089019775,
+ "score_mean": 0.0,
+ "score_p50": -0.3601774573326111,
+ "score_p90": 1.0179094076156616,
+ "fraction_gt1": 0.10471204188481675,
+ "n_inside": 658,
+ "n_interface": 644,
+ "n_outside": 608,
+ "selected_inside_frac": 0.43859649122807015,
+ "selected_interface_frac": 0.24561403508771928,
+ "selected_outside_frac": 0.3157894736842105,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.90625,
+ "step": 9,
+ "n_elem": 1910,
+ "target_elements": 4000,
+ "gap": 2090,
+ "cutoff_score": 1.5423206090927124,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8363686800003052,
+ "score_mean": 0.0,
+ "score_p50": -0.29245808720588684,
+ "score_p90": 1.1277297735214233,
+ "fraction_gt1": 0.16808606006275212,
+ "n_inside": 794,
+ "n_interface": 712,
+ "n_outside": 725,
+ "selected_inside_frac": 0.2878787878787879,
+ "selected_interface_frac": 0.3181818181818182,
+ "selected_outside_frac": 0.3939393939393939,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9479166666666667,
+ "step": 10,
+ "n_elem": 2231,
+ "target_elements": 4000,
+ "gap": 1769,
+ "cutoff_score": 1.2756259441375732,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.817032814025879,
+ "score_mean": 2.3529358017526647e-08,
+ "score_p50": -0.21821677684783936,
+ "score_p90": 1.224172592163086,
+ "fraction_gt1": 0.15612952968388588,
+ "n_inside": 891,
+ "n_interface": 838,
+ "n_outside": 865,
+ "selected_inside_frac": 0.16883116883116883,
+ "selected_interface_frac": 0.03896103896103896,
+ "selected_outside_frac": 0.7922077922077922,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2594,
+ "target_elements": 4000,
+ "gap": 1406,
+ "cutoff_score": 1.4011672735214233,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.9683948755264282,
+ "score_mean": -1.8646177579739742e-07,
+ "score_p50": -0.13061359524726868,
+ "score_p90": 1.1652452945709229,
+ "fraction_gt1": 0.1364562118126273,
+ "n_inside": 958,
+ "n_interface": 879,
+ "n_outside": 1109,
+ "selected_inside_frac": 0.10227272727272728,
+ "selected_interface_frac": 0.3181818181818182,
+ "selected_outside_frac": 0.5795454545454546,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9375,
+ "step": 12,
+ "n_elem": 2946,
+ "target_elements": 4000,
+ "gap": 1054,
+ "cutoff_score": 1.2448699474334717,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9130806922912598,
+ "score_mean": -2.196826329736723e-07,
+ "score_p50": 0.005917191505432129,
+ "score_p90": 1.2145695686340332,
+ "fraction_gt1": 0.15296940611877624,
+ "n_inside": 993,
+ "n_interface": 1034,
+ "n_outside": 1307,
+ "selected_inside_frac": 0.18,
+ "selected_interface_frac": 0.27,
+ "selected_outside_frac": 0.55,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.7291666666666666,
+ "step": 13,
+ "n_elem": 3334,
+ "target_elements": 4000,
+ "gap": 666,
+ "cutoff_score": 1.3465253114700317,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.833274006843567,
+ "score_mean": -1.5952732468349495e-08,
+ "score_p50": 0.08011705428361893,
+ "score_p90": 1.272158145904541,
+ "fraction_gt1": 0.165446941975954,
+ "n_inside": 1087,
+ "n_interface": 1180,
+ "n_outside": 1559,
+ "selected_inside_frac": 0.6379310344827587,
+ "selected_interface_frac": 0.20689655172413793,
+ "selected_outside_frac": 0.15517241379310345,
+ "selected_x_range": 0.8541666666666666,
+ "selected_y_range": 0.65625,
+ "step": 14,
+ "n_elem": 3826,
+ "target_elements": 4000,
+ "gap": 174,
+ "cutoff_score": 1.506502389907837,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 33,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13036161263064489,
+ "max_err": 0.5170167241471355,
+ "actual_elements": 8105,
+ "num_steps": 21,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.7259042859077454,
+ "score_mean": 0.39941802620887756,
+ "score_p50": 0.36641833186149597,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 47,
+ "n_interface": 158,
+ "n_outside": 307,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333337,
+ "selected_y_range": 0.27083333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.7259042859077454,
+ "num_tied_at_cutoff": 47,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.7259042859077454,
+ "score_mean": 0.3631361126899719,
+ "score_p50": 0.36641833186149597,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 109,
+ "n_interface": 206,
+ "n_outside": 307,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.13541666666666669,
+ "selected_y_range": 0.29166666666666663,
+ "step": 1,
+ "n_elem": 622,
+ "target_elements": 8000,
+ "gap": 7378,
+ "cutoff_score": 0.5132918357849121,
+ "num_tied_at_cutoff": 25,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.5132918357849121,
+ "score_mean": 0.3461705446243286,
+ "score_p50": 0.36641833186149597,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 186,
+ "n_interface": 211,
+ "n_outside": 307,
+ "selected_inside_frac": 0.38095238095238093,
+ "selected_interface_frac": 0.6190476190476191,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.4375,
+ "step": 2,
+ "n_elem": 704,
+ "target_elements": 8000,
+ "gap": 7296,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 436,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.31667837500572205,
+ "score_p50": 0.3629521429538727,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 287,
+ "n_outside": 307,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.45833333333333337,
+ "step": 3,
+ "n_elem": 821,
+ "target_elements": 8000,
+ "gap": 7179,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 406,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.2907886803150177,
+ "score_p50": 0.3629521429538727,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 414,
+ "n_outside": 307,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 948,
+ "target_elements": 8000,
+ "gap": 7052,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 360,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.2695218622684479,
+ "score_p50": 0.25664591789245605,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 546,
+ "n_outside": 313,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.1875,
+ "selected_outside_frac": 0.8125,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.625,
+ "step": 5,
+ "n_elem": 1086,
+ "target_elements": 8000,
+ "gap": 6914,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 310,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.24987584352493286,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 594,
+ "n_outside": 434,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.75,
+ "step": 6,
+ "n_elem": 1255,
+ "target_elements": 8000,
+ "gap": 6745,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 248,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.23243077099323273,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.36641833186149597,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 594,
+ "n_outside": 636,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8333333333333333,
+ "step": 7,
+ "n_elem": 1457,
+ "target_elements": 8000,
+ "gap": 6543,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 172,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.2176399528980255,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.3629521429538727,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 594,
+ "n_outside": 866,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.45833333333333326,
+ "step": 8,
+ "n_elem": 1687,
+ "target_elements": 8000,
+ "gap": 6313,
+ "cutoff_score": 0.36641833186149597,
+ "num_tied_at_cutoff": 86,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.36641833186149597,
+ "score_mean": 0.20745520293712616,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.2590968906879425,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 594,
+ "n_outside": 1066,
+ "selected_inside_frac": 0.6071428571428571,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.39285714285714285,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.90625,
+ "step": 9,
+ "n_elem": 1887,
+ "target_elements": 8000,
+ "gap": 6113,
+ "cutoff_score": 0.3629521429538727,
+ "num_tied_at_cutoff": 135,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3629521429538727,
+ "score_mean": 0.19348111748695374,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.25664591789245605,
+ "fraction_gt1": 0.0,
+ "n_inside": 386,
+ "n_interface": 677,
+ "n_outside": 1141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666666,
+ "selected_y_range": 0.22916666666666663,
+ "step": 10,
+ "n_elem": 2204,
+ "target_elements": 8000,
+ "gap": 5796,
+ "cutoff_score": 0.3629521429538727,
+ "num_tied_at_cutoff": 70,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2590968906879425,
+ "score_mean": 0.18624718487262726,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.18320916593074799,
+ "fraction_gt1": 0.0,
+ "n_inside": 624,
+ "n_interface": 677,
+ "n_outside": 1141,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.5068493150684932,
+ "selected_outside_frac": 0.4931506849315068,
+ "selected_x_range": 0.8333333333333334,
+ "selected_y_range": 0.7708333333333334,
+ "step": 11,
+ "n_elem": 2442,
+ "target_elements": 8000,
+ "gap": 5558,
+ "cutoff_score": 0.2590968906879425,
+ "num_tied_at_cutoff": 120,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2590968906879425,
+ "score_mean": 0.17343178391456604,
+ "score_p50": 0.18320916593074799,
+ "score_p90": 0.18320916593074799,
+ "fraction_gt1": 0.0,
+ "n_inside": 624,
+ "n_interface": 847,
+ "n_outside": 1316,
+ "selected_inside_frac": 0.4578313253012048,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.5421686746987951,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 2787,
+ "target_elements": 8000,
+ "gap": 5213,
+ "cutoff_score": 0.25664591789245605,
+ "num_tied_at_cutoff": 102,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25664591789245605,
+ "score_mean": 0.16161078214645386,
+ "score_p50": 0.18147607147693634,
+ "score_p90": 0.18320916593074799,
+ "fraction_gt1": 0.0,
+ "n_inside": 799,
+ "n_interface": 878,
+ "n_outside": 1521,
+ "selected_inside_frac": 0.5473684210526316,
+ "selected_interface_frac": 0.45263157894736844,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.38541666666666663,
+ "step": 13,
+ "n_elem": 3198,
+ "target_elements": 8000,
+ "gap": 4802,
+ "cutoff_score": 0.18320916593074799,
+ "num_tied_at_cutoff": 1380,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.18320916593074799,
+ "score_mean": 0.1508018523454666,
+ "score_p50": 0.12954844534397125,
+ "score_p90": 0.18320916593074799,
+ "fraction_gt1": 0.0,
+ "n_inside": 1001,
+ "n_interface": 1112,
+ "n_outside": 1521,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.47916666666666663,
+ "step": 14,
+ "n_elem": 3634,
+ "target_elements": 8000,
+ "gap": 4366,
+ "cutoff_score": 0.18320916593074799,
+ "num_tied_at_cutoff": 1298,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.18320916593074799,
+ "score_mean": 0.14033347368240356,
+ "score_p50": 0.12954844534397125,
+ "score_p90": 0.18320916593074799,
+ "fraction_gt1": 0.0,
+ "n_inside": 1001,
+ "n_interface": 1594,
+ "n_outside": 1521,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.5729166666666667,
+ "step": 15,
+ "n_elem": 4116,
+ "target_elements": 8000,
+ "gap": 3884,
+ "cutoff_score": 0.18320916593074799,
+ "num_tied_at_cutoff": 1130,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.18320916593074799,
+ "score_mean": 0.13187040388584137,
+ "score_p50": 0.12954844534397125,
+ "score_p90": 0.18320916593074799,
+ "fraction_gt1": 0.0,
+ "n_inside": 1001,
+ "n_interface": 2086,
+ "n_outside": 1521,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.2608695652173913,
+ "selected_outside_frac": 0.7391304347826086,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.6354166666666667,
+ "step": 16,
+ "n_elem": 4608,
+ "target_elements": 8000,
+ "gap": 3392,
+ "cutoff_score": 0.18320916593074799,
+ "num_tied_at_cutoff": 966,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.18320916593074799,
+ "score_mean": 0.12436997890472412,
+ "score_p50": 0.12832295894622803,
+ "score_p90": 0.18320916593074799,
+ "fraction_gt1": 0.0,
+ "n_inside": 1001,
+ "n_interface": 2246,
+ "n_outside": 1907,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.75,
+ "step": 17,
+ "n_elem": 5154,
+ "target_elements": 8000,
+ "gap": 2846,
+ "cutoff_score": 0.18320916593074799,
+ "num_tied_at_cutoff": 784,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.18320916593074799,
+ "score_mean": 0.1176861897110939,
+ "score_p50": 0.09160458296537399,
+ "score_p90": 0.18320916593074799,
+ "fraction_gt1": 0.0,
+ "n_inside": 1001,
+ "n_interface": 2246,
+ "n_outside": 2511,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.84375,
+ "step": 18,
+ "n_elem": 5758,
+ "target_elements": 8000,
+ "gap": 2242,
+ "cutoff_score": 0.18320916593074799,
+ "num_tied_at_cutoff": 594,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.18320916593074799,
+ "score_mean": 0.11160968989133835,
+ "score_p50": 0.09160458296537399,
+ "score_p90": 0.18147607147693634,
+ "fraction_gt1": 0.0,
+ "n_inside": 1001,
+ "n_interface": 2246,
+ "n_outside": 3203,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.5104166666666667,
+ "step": 19,
+ "n_elem": 6450,
+ "target_elements": 8000,
+ "gap": 1550,
+ "cutoff_score": 0.18320916593074799,
+ "num_tied_at_cutoff": 364,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.18320916593074799,
+ "score_mean": 0.10657380521297455,
+ "score_p50": 0.09160458296537399,
+ "score_p90": 0.12954844534397125,
+ "fraction_gt1": 0.0,
+ "n_inside": 1001,
+ "n_interface": 2246,
+ "n_outside": 3916,
+ "selected_inside_frac": 0.40186915887850466,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.5981308411214953,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.9322916666666667,
+ "step": 20,
+ "n_elem": 7163,
+ "target_elements": 8000,
+ "gap": 837,
+ "cutoff_score": 0.18147607147693634,
+ "num_tied_at_cutoff": 450,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 33,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.12819069477167264,
+ "max_err": 0.5265099087889007,
+ "actual_elements": 8474,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9915785789489746,
+ "score_mean": 0.11031495034694672,
+ "score_p50": 2.892238398999325e-06,
+ "score_p90": 0.6887500286102295,
+ "fraction_gt1": 0.0,
+ "n_inside": 47,
+ "n_interface": 158,
+ "n_outside": 307,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333337,
+ "selected_y_range": 0.14583333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9839450716972351,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9853091835975647,
+ "score_mean": 0.11826665699481964,
+ "score_p50": 0.00013062740617897362,
+ "score_p90": 0.5434913635253906,
+ "fraction_gt1": 0.0,
+ "n_inside": 107,
+ "n_interface": 172,
+ "n_outside": 307,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.27083333333333337,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 8000,
+ "gap": 7414,
+ "cutoff_score": 0.9223898649215698,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9866276383399963,
+ "score_mean": 0.15491215884685516,
+ "score_p50": 0.0014410868752747774,
+ "score_p90": 0.7854480743408203,
+ "fraction_gt1": 0.0,
+ "n_inside": 172,
+ "n_interface": 207,
+ "n_outside": 307,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34375000000000006,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 686,
+ "target_elements": 8000,
+ "gap": 7314,
+ "cutoff_score": 0.9490460753440857,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884604215621948,
+ "score_mean": 0.2212914377450943,
+ "score_p50": 0.00312151201069355,
+ "score_p90": 0.89687180519104,
+ "fraction_gt1": 0.0,
+ "n_inside": 243,
+ "n_interface": 260,
+ "n_outside": 307,
+ "selected_inside_frac": 0.125,
+ "selected_interface_frac": 0.375,
+ "selected_outside_frac": 0.5,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.32291666666666663,
+ "step": 3,
+ "n_elem": 810,
+ "target_elements": 8000,
+ "gap": 7190,
+ "cutoff_score": 0.9764677882194519,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9881666302680969,
+ "score_mean": 0.23089174926280975,
+ "score_p50": 0.0021424642764031887,
+ "score_p90": 0.8824987411499023,
+ "fraction_gt1": 0.0,
+ "n_inside": 266,
+ "n_interface": 313,
+ "n_outside": 361,
+ "selected_inside_frac": 0.21428571428571427,
+ "selected_interface_frac": 0.14285714285714285,
+ "selected_outside_frac": 0.6428571428571429,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 940,
+ "target_elements": 8000,
+ "gap": 7060,
+ "cutoff_score": 0.9759381413459778,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9859462380409241,
+ "score_mean": 0.20986567437648773,
+ "score_p50": 0.0023777491878718138,
+ "score_p90": 0.8667338490486145,
+ "fraction_gt1": 0.0,
+ "n_inside": 309,
+ "n_interface": 331,
+ "n_outside": 453,
+ "selected_inside_frac": 0.28125,
+ "selected_interface_frac": 0.28125,
+ "selected_outside_frac": 0.4375,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 5,
+ "n_elem": 1093,
+ "target_elements": 8000,
+ "gap": 6907,
+ "cutoff_score": 0.9528957605361938,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9806530475616455,
+ "score_mean": 0.18699580430984497,
+ "score_p50": 0.0024132411926984787,
+ "score_p90": 0.8576707243919373,
+ "fraction_gt1": 0.0,
+ "n_inside": 355,
+ "n_interface": 385,
+ "n_outside": 520,
+ "selected_inside_frac": 0.5405405405405406,
+ "selected_interface_frac": 0.40540540540540543,
+ "selected_outside_frac": 0.05405405405405406,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.6354166666666666,
+ "step": 6,
+ "n_elem": 1260,
+ "target_elements": 8000,
+ "gap": 6740,
+ "cutoff_score": 0.9348055720329285,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9833042621612549,
+ "score_mean": 0.17013908922672272,
+ "score_p50": 0.006556142587214708,
+ "score_p90": 0.7637436389923096,
+ "fraction_gt1": 0.0,
+ "n_inside": 479,
+ "n_interface": 477,
+ "n_outside": 538,
+ "selected_inside_frac": 0.2727272727272727,
+ "selected_interface_frac": 0.6136363636363636,
+ "selected_outside_frac": 0.11363636363636363,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 7,
+ "n_elem": 1494,
+ "target_elements": 8000,
+ "gap": 6506,
+ "cutoff_score": 0.921555757522583,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9777207970619202,
+ "score_mean": 0.1705700159072876,
+ "score_p50": 0.009123850613832474,
+ "score_p90": 0.7109577655792236,
+ "fraction_gt1": 0.0,
+ "n_inside": 560,
+ "n_interface": 627,
+ "n_outside": 569,
+ "selected_inside_frac": 0.3269230769230769,
+ "selected_interface_frac": 0.4807692307692308,
+ "selected_outside_frac": 0.19230769230769232,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.7604166666666666,
+ "step": 8,
+ "n_elem": 1756,
+ "target_elements": 8000,
+ "gap": 6244,
+ "cutoff_score": 0.8820492029190063,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9685114622116089,
+ "score_mean": 0.1814717948436737,
+ "score_p50": 0.010265584103763103,
+ "score_p90": 0.7414183616638184,
+ "fraction_gt1": 0.0,
+ "n_inside": 681,
+ "n_interface": 773,
+ "n_outside": 640,
+ "selected_inside_frac": 0.5967741935483871,
+ "selected_interface_frac": 0.20967741935483872,
+ "selected_outside_frac": 0.1935483870967742,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.59375,
+ "step": 9,
+ "n_elem": 2094,
+ "target_elements": 8000,
+ "gap": 5906,
+ "cutoff_score": 0.8898711800575256,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9766130447387695,
+ "score_mean": 0.19715344905853271,
+ "score_p50": 0.010136481374502182,
+ "score_p90": 0.7846953868865967,
+ "fraction_gt1": 0.0,
+ "n_inside": 880,
+ "n_interface": 856,
+ "n_outside": 717,
+ "selected_inside_frac": 0.3287671232876712,
+ "selected_interface_frac": 0.2876712328767123,
+ "selected_outside_frac": 0.3835616438356164,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.5,
+ "step": 10,
+ "n_elem": 2453,
+ "target_elements": 8000,
+ "gap": 5547,
+ "cutoff_score": 0.9111329317092896,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9853315353393555,
+ "score_mean": 0.2214185744524002,
+ "score_p50": 0.009311134926974773,
+ "score_p90": 0.8296290040016174,
+ "fraction_gt1": 0.0,
+ "n_inside": 1019,
+ "n_interface": 970,
+ "n_outside": 874,
+ "selected_inside_frac": 0.25882352941176473,
+ "selected_interface_frac": 0.35294117647058826,
+ "selected_outside_frac": 0.38823529411764707,
+ "selected_x_range": 0.7604166666666667,
+ "selected_y_range": 0.5416666666666666,
+ "step": 11,
+ "n_elem": 2863,
+ "target_elements": 8000,
+ "gap": 5137,
+ "cutoff_score": 0.9156163930892944,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9843170642852783,
+ "score_mean": 0.21503902971744537,
+ "score_p50": 0.006354520097374916,
+ "score_p90": 0.8235622644424438,
+ "fraction_gt1": 0.0,
+ "n_inside": 1164,
+ "n_interface": 1117,
+ "n_outside": 1072,
+ "selected_inside_frac": 0.49,
+ "selected_interface_frac": 0.28,
+ "selected_outside_frac": 0.23,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.90625,
+ "step": 12,
+ "n_elem": 3353,
+ "target_elements": 8000,
+ "gap": 4647,
+ "cutoff_score": 0.9127927422523499,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9800057411193848,
+ "score_mean": 0.20288363099098206,
+ "score_p50": 0.006384735461324453,
+ "score_p90": 0.8123385310173035,
+ "fraction_gt1": 0.0,
+ "n_inside": 1427,
+ "n_interface": 1271,
+ "n_outside": 1195,
+ "selected_inside_frac": 0.25862068965517243,
+ "selected_interface_frac": 0.5689655172413793,
+ "selected_outside_frac": 0.1724137931034483,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.78125,
+ "step": 13,
+ "n_elem": 3893,
+ "target_elements": 8000,
+ "gap": 4107,
+ "cutoff_score": 0.9051874876022339,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9835772514343262,
+ "score_mean": 0.18025289475917816,
+ "score_p50": 0.0056452443823218346,
+ "score_p90": 0.7752698659896851,
+ "fraction_gt1": 0.0,
+ "n_inside": 1612,
+ "n_interface": 1671,
+ "n_outside": 1345,
+ "selected_inside_frac": 0.5144927536231884,
+ "selected_interface_frac": 0.3188405797101449,
+ "selected_outside_frac": 0.16666666666666666,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.8229166666666667,
+ "step": 14,
+ "n_elem": 4628,
+ "target_elements": 8000,
+ "gap": 3372,
+ "cutoff_score": 0.8921108841896057,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9717727899551392,
+ "score_mean": 0.17089660465717316,
+ "score_p50": 0.0068656038492918015,
+ "score_p90": 0.7431626915931702,
+ "fraction_gt1": 0.0,
+ "n_inside": 2027,
+ "n_interface": 1944,
+ "n_outside": 1501,
+ "selected_inside_frac": 0.4024390243902439,
+ "selected_interface_frac": 0.32926829268292684,
+ "selected_outside_frac": 0.2682926829268293,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 15,
+ "n_elem": 5472,
+ "target_elements": 8000,
+ "gap": 2528,
+ "cutoff_score": 0.8700575232505798,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9746991395950317,
+ "score_mean": 0.173438161611557,
+ "score_p50": 0.008333016186952591,
+ "score_p90": 0.7256451845169067,
+ "fraction_gt1": 0.0,
+ "n_inside": 2410,
+ "n_interface": 2262,
+ "n_outside": 1758,
+ "selected_inside_frac": 0.421875,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.24479166666666666,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8489583333333333,
+ "step": 16,
+ "n_elem": 6430,
+ "target_elements": 8000,
+ "gap": 1570,
+ "cutoff_score": 0.881779134273529,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9798669815063477,
+ "score_mean": 0.18593916296958923,
+ "score_p50": 0.006871834862977266,
+ "score_p90": 0.7622634172439575,
+ "fraction_gt1": 0.0,
+ "n_inside": 2807,
+ "n_interface": 2603,
+ "n_outside": 2072,
+ "selected_inside_frac": 0.5988372093023255,
+ "selected_interface_frac": 0.22093023255813954,
+ "selected_outside_frac": 0.18023255813953487,
+ "selected_x_range": 0.921875,
+ "selected_y_range": 0.796875,
+ "step": 17,
+ "n_elem": 7482,
+ "target_elements": 8000,
+ "gap": 518,
+ "cutoff_score": 0.9011723399162292,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 33,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.1276995612637326,
+ "max_err": 0.5392688500979552,
+ "actual_elements": 8391,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 3.1038460731506348,
+ "score_mean": -2.2351741790771484e-08,
+ "score_p50": -0.3506219983100891,
+ "score_p90": 1.2421157360076904,
+ "fraction_gt1": 0.107421875,
+ "n_inside": 47,
+ "n_interface": 158,
+ "n_outside": 307,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333337,
+ "selected_y_range": 0.14583333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 3.090583324432373,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 4.004301071166992,
+ "score_mean": -1.269395824010644e-07,
+ "score_p50": -0.3016190826892853,
+ "score_p90": 0.7532603144645691,
+ "fraction_gt1": 0.08873720136518772,
+ "n_inside": 107,
+ "n_interface": 172,
+ "n_outside": 307,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18750000000000003,
+ "selected_y_range": 0.27083333333333337,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 8000,
+ "gap": 7414,
+ "cutoff_score": 3.860090732574463,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 3.1789112091064453,
+ "score_mean": -6.567218235886685e-08,
+ "score_p50": -0.14581254124641418,
+ "score_p90": 1.1638789176940918,
+ "fraction_gt1": 0.1122754491017964,
+ "n_inside": 167,
+ "n_interface": 194,
+ "n_outside": 307,
+ "selected_inside_frac": 0.55,
+ "selected_interface_frac": 0.45,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.42708333333333337,
+ "selected_y_range": 0.28125,
+ "step": 2,
+ "n_elem": 668,
+ "target_elements": 8000,
+ "gap": 7332,
+ "cutoff_score": 1.5141509771347046,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.3950806856155396,
+ "score_mean": 3.8629845988680245e-08,
+ "score_p50": -0.0002888143062591553,
+ "score_p90": 1.2939499616622925,
+ "fraction_gt1": 0.16582278481012658,
+ "n_inside": 218,
+ "n_interface": 265,
+ "n_outside": 307,
+ "selected_inside_frac": 0.21739130434782608,
+ "selected_interface_frac": 0.5217391304347826,
+ "selected_outside_frac": 0.2608695652173913,
+ "selected_x_range": 0.37500000000000006,
+ "selected_y_range": 0.375,
+ "step": 3,
+ "n_elem": 790,
+ "target_elements": 8000,
+ "gap": 7210,
+ "cutoff_score": 1.3726475238800049,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.490771770477295,
+ "score_mean": -1.1660646492828164e-07,
+ "score_p50": 0.1182197779417038,
+ "score_p90": 1.4121841192245483,
+ "fraction_gt1": 0.18231441048034935,
+ "n_inside": 252,
+ "n_interface": 328,
+ "n_outside": 336,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.18518518518518517,
+ "selected_outside_frac": 0.8148148148148148,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.5,
+ "step": 4,
+ "n_elem": 916,
+ "target_elements": 8000,
+ "gap": 7084,
+ "cutoff_score": 1.470392107963562,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.6737271547317505,
+ "score_mean": 5.8406847358583036e-08,
+ "score_p50": -0.09623228758573532,
+ "score_p90": 1.5032249689102173,
+ "fraction_gt1": 0.14641148325358852,
+ "n_inside": 252,
+ "n_interface": 355,
+ "n_outside": 438,
+ "selected_inside_frac": 0.8064516129032258,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.1935483870967742,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.49999999999999994,
+ "step": 5,
+ "n_elem": 1045,
+ "target_elements": 8000,
+ "gap": 6955,
+ "cutoff_score": 1.6553771495819092,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.01366925239563,
+ "score_mean": 1.2375335245451424e-07,
+ "score_p50": -0.23140305280685425,
+ "score_p90": 1.2173080444335938,
+ "fraction_gt1": 0.13138686131386862,
+ "n_inside": 384,
+ "n_interface": 363,
+ "n_outside": 486,
+ "selected_inside_frac": 0.6111111111111112,
+ "selected_interface_frac": 0.05555555555555555,
+ "selected_outside_frac": 0.3333333333333333,
+ "selected_x_range": 0.8020833333333333,
+ "selected_y_range": 0.6458333333333333,
+ "step": 6,
+ "n_elem": 1233,
+ "target_elements": 8000,
+ "gap": 6767,
+ "cutoff_score": 1.8813526630401611,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.147847890853882,
+ "score_mean": -1.0603744726722653e-07,
+ "score_p50": -0.21594958007335663,
+ "score_p90": 1.1019333600997925,
+ "fraction_gt1": 0.10979847116052814,
+ "n_inside": 496,
+ "n_interface": 388,
+ "n_outside": 555,
+ "selected_inside_frac": 0.37209302325581395,
+ "selected_interface_frac": 0.6046511627906976,
+ "selected_outside_frac": 0.023255813953488372,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.7708333333333333,
+ "step": 7,
+ "n_elem": 1439,
+ "target_elements": 8000,
+ "gap": 6561,
+ "cutoff_score": 1.7174072265625,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9576714038848877,
+ "score_mean": -1.8722440131568874e-07,
+ "score_p50": -0.4605388045310974,
+ "score_p90": 1.0310616493225098,
+ "fraction_gt1": 0.11042944785276074,
+ "n_inside": 561,
+ "n_interface": 502,
+ "n_outside": 567,
+ "selected_inside_frac": 0.3125,
+ "selected_interface_frac": 0.5833333333333334,
+ "selected_outside_frac": 0.10416666666666667,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.71875,
+ "step": 8,
+ "n_elem": 1630,
+ "target_elements": 8000,
+ "gap": 6370,
+ "cutoff_score": 1.53867506980896,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1009581089019775,
+ "score_mean": 0.0,
+ "score_p50": -0.3601774573326111,
+ "score_p90": 1.0179094076156616,
+ "fraction_gt1": 0.10471204188481675,
+ "n_inside": 658,
+ "n_interface": 644,
+ "n_outside": 608,
+ "selected_inside_frac": 0.43859649122807015,
+ "selected_interface_frac": 0.24561403508771928,
+ "selected_outside_frac": 0.3157894736842105,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.90625,
+ "step": 9,
+ "n_elem": 1910,
+ "target_elements": 8000,
+ "gap": 6090,
+ "cutoff_score": 1.5423206090927124,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8363686800003052,
+ "score_mean": 0.0,
+ "score_p50": -0.29245808720588684,
+ "score_p90": 1.1277297735214233,
+ "fraction_gt1": 0.16808606006275212,
+ "n_inside": 794,
+ "n_interface": 712,
+ "n_outside": 725,
+ "selected_inside_frac": 0.2878787878787879,
+ "selected_interface_frac": 0.3181818181818182,
+ "selected_outside_frac": 0.3939393939393939,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9479166666666667,
+ "step": 10,
+ "n_elem": 2231,
+ "target_elements": 8000,
+ "gap": 5769,
+ "cutoff_score": 1.2756259441375732,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.817032814025879,
+ "score_mean": 2.3529358017526647e-08,
+ "score_p50": -0.21821677684783936,
+ "score_p90": 1.224172592163086,
+ "fraction_gt1": 0.15612952968388588,
+ "n_inside": 891,
+ "n_interface": 838,
+ "n_outside": 865,
+ "selected_inside_frac": 0.16883116883116883,
+ "selected_interface_frac": 0.03896103896103896,
+ "selected_outside_frac": 0.7922077922077922,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2594,
+ "target_elements": 8000,
+ "gap": 5406,
+ "cutoff_score": 1.4011672735214233,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.9683948755264282,
+ "score_mean": -1.8646177579739742e-07,
+ "score_p50": -0.13061359524726868,
+ "score_p90": 1.1652452945709229,
+ "fraction_gt1": 0.1364562118126273,
+ "n_inside": 958,
+ "n_interface": 879,
+ "n_outside": 1109,
+ "selected_inside_frac": 0.10227272727272728,
+ "selected_interface_frac": 0.3181818181818182,
+ "selected_outside_frac": 0.5795454545454546,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9375,
+ "step": 12,
+ "n_elem": 2946,
+ "target_elements": 8000,
+ "gap": 5054,
+ "cutoff_score": 1.2448699474334717,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9130806922912598,
+ "score_mean": -2.196826329736723e-07,
+ "score_p50": 0.005917191505432129,
+ "score_p90": 1.2145695686340332,
+ "fraction_gt1": 0.15296940611877624,
+ "n_inside": 993,
+ "n_interface": 1034,
+ "n_outside": 1307,
+ "selected_inside_frac": 0.18,
+ "selected_interface_frac": 0.27,
+ "selected_outside_frac": 0.55,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.7291666666666666,
+ "step": 13,
+ "n_elem": 3334,
+ "target_elements": 8000,
+ "gap": 4666,
+ "cutoff_score": 1.3465253114700317,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.833274006843567,
+ "score_mean": -1.5952732468349495e-08,
+ "score_p50": 0.08011705428361893,
+ "score_p90": 1.272158145904541,
+ "fraction_gt1": 0.165446941975954,
+ "n_inside": 1087,
+ "n_interface": 1180,
+ "n_outside": 1559,
+ "selected_inside_frac": 0.7456140350877193,
+ "selected_interface_frac": 0.12280701754385964,
+ "selected_outside_frac": 0.13157894736842105,
+ "selected_x_range": 0.8541666666666666,
+ "selected_y_range": 0.6666666666666667,
+ "step": 14,
+ "n_elem": 3826,
+ "target_elements": 8000,
+ "gap": 4174,
+ "cutoff_score": 1.495326280593872,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8373723030090332,
+ "score_mean": -8.412840202254301e-08,
+ "score_p50": -0.23556041717529297,
+ "score_p90": 1.1780091524124146,
+ "fraction_gt1": 0.14311968757178958,
+ "n_inside": 1420,
+ "n_interface": 1275,
+ "n_outside": 1658,
+ "selected_inside_frac": 0.4846153846153846,
+ "selected_interface_frac": 0.2923076923076923,
+ "selected_outside_frac": 0.2230769230769231,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8541666666666667,
+ "step": 15,
+ "n_elem": 4353,
+ "target_elements": 8000,
+ "gap": 3647,
+ "cutoff_score": 1.5969812870025635,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1497814655303955,
+ "score_mean": -2.4282934774078058e-08,
+ "score_p50": -0.2419554442167282,
+ "score_p90": 1.1751708984375,
+ "fraction_gt1": 0.13129102844638948,
+ "n_inside": 1710,
+ "n_interface": 1497,
+ "n_outside": 1820,
+ "selected_inside_frac": 0.56,
+ "selected_interface_frac": 0.24666666666666667,
+ "selected_outside_frac": 0.19333333333333333,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9791666666666667,
+ "step": 16,
+ "n_elem": 5027,
+ "target_elements": 8000,
+ "gap": 2973,
+ "cutoff_score": 1.6699209213256836,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2668662071228027,
+ "score_mean": -2.133723420172373e-08,
+ "score_p50": -0.13502752780914307,
+ "score_p90": 1.1082181930541992,
+ "fraction_gt1": 0.11746198217094914,
+ "n_inside": 2057,
+ "n_interface": 1686,
+ "n_outside": 1978,
+ "selected_inside_frac": 0.2573099415204678,
+ "selected_interface_frac": 0.2046783625730994,
+ "selected_outside_frac": 0.5380116959064327,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9322916666666667,
+ "step": 17,
+ "n_elem": 5721,
+ "target_elements": 8000,
+ "gap": 2279,
+ "cutoff_score": 1.3773853778839111,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.9871268272399902,
+ "score_mean": -1.1163265867253358e-07,
+ "score_p50": -0.01620277762413025,
+ "score_p90": 1.0871573686599731,
+ "fraction_gt1": 0.10928212162780064,
+ "n_inside": 2244,
+ "n_interface": 1921,
+ "n_outside": 2396,
+ "selected_inside_frac": 0.20918367346938777,
+ "selected_interface_frac": 0.6785714285714286,
+ "selected_outside_frac": 0.11224489795918367,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.890625,
+ "step": 18,
+ "n_elem": 6561,
+ "target_elements": 8000,
+ "gap": 1439,
+ "cutoff_score": 1.316901445388794,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.092482805252075,
+ "score_mean": -1.6250041312559915e-08,
+ "score_p50": -0.19660887122154236,
+ "score_p90": 0.9748800992965698,
+ "fraction_gt1": 0.08306709265175719,
+ "n_inside": 2431,
+ "n_interface": 2516,
+ "n_outside": 2565,
+ "selected_inside_frac": 0.6358024691358025,
+ "selected_interface_frac": 0.10493827160493827,
+ "selected_outside_frac": 0.25925925925925924,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.796875,
+ "step": 19,
+ "n_elem": 7512,
+ "target_elements": 8000,
+ "gap": 488,
+ "cutoff_score": 1.4798319339752197,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 33,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.30383171467763914,
+ "max_err": 0.36447642563221994,
+ "actual_elements": 2082,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.510020911693573,
+ "score_mean": 0.24377398192882538,
+ "score_p50": 0.20230431854724884,
+ "score_p90": 0.510020911693573,
+ "fraction_gt1": 0.0,
+ "n_inside": 69,
+ "n_interface": 302,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.375,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.510020911693573,
+ "num_tied_at_cutoff": 69,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.510020911693573,
+ "score_mean": 0.22308090329170227,
+ "score_p50": 0.20230431854724884,
+ "score_p90": 0.3606392443180084,
+ "fraction_gt1": 0.0,
+ "n_inside": 143,
+ "n_interface": 352,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.20833333333333326,
+ "step": 1,
+ "n_elem": 636,
+ "target_elements": 2000,
+ "gap": 1364,
+ "cutoff_score": 0.510020911693573,
+ "num_tied_at_cutoff": 32,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.510020911693573,
+ "score_mean": 0.21583054959774017,
+ "score_p50": 0.20230431854724884,
+ "score_p90": 0.2550104558467865,
+ "fraction_gt1": 0.0,
+ "n_inside": 234,
+ "n_interface": 355,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.35416666666666663,
+ "step": 2,
+ "n_elem": 730,
+ "target_elements": 2000,
+ "gap": 1270,
+ "cutoff_score": 0.3606392443180084,
+ "num_tied_at_cutoff": 36,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3606392443180084,
+ "score_mean": 0.20047885179519653,
+ "score_p50": 0.20230431854724884,
+ "score_p90": 0.2550104558467865,
+ "fraction_gt1": 0.0,
+ "n_inside": 329,
+ "n_interface": 380,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666674,
+ "selected_y_range": 0.375,
+ "step": 3,
+ "n_elem": 850,
+ "target_elements": 2000,
+ "gap": 1150,
+ "cutoff_score": 0.2550104558467865,
+ "num_tied_at_cutoff": 189,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2550104558467865,
+ "score_mean": 0.1770298331975937,
+ "score_p50": 0.20230431854724884,
+ "score_p90": 0.2550104558467865,
+ "fraction_gt1": 0.0,
+ "n_inside": 440,
+ "n_interface": 467,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666674,
+ "selected_y_range": 0.38541666666666674,
+ "step": 4,
+ "n_elem": 1048,
+ "target_elements": 2000,
+ "gap": 952,
+ "cutoff_score": 0.2550104558467865,
+ "num_tied_at_cutoff": 143,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2550104558467865,
+ "score_mean": 0.16092346608638763,
+ "score_p50": 0.1803196221590042,
+ "score_p90": 0.20230431854724884,
+ "fraction_gt1": 0.0,
+ "n_inside": 596,
+ "n_interface": 513,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666674,
+ "selected_y_range": 0.26041666666666674,
+ "step": 5,
+ "n_elem": 1250,
+ "target_elements": 2000,
+ "gap": 750,
+ "cutoff_score": 0.2550104558467865,
+ "num_tied_at_cutoff": 88,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2550104558467865,
+ "score_mean": 0.15102657675743103,
+ "score_p50": 0.12750522792339325,
+ "score_p90": 0.20230431854724884,
+ "fraction_gt1": 0.0,
+ "n_inside": 784,
+ "n_interface": 513,
+ "n_outside": 141,
+ "selected_inside_frac": 0.5581395348837209,
+ "selected_interface_frac": 0.4418604651162791,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 6,
+ "n_elem": 1438,
+ "target_elements": 2000,
+ "gap": 562,
+ "cutoff_score": 0.20230431854724884,
+ "num_tied_at_cutoff": 388,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20230431854724884,
+ "score_mean": 0.14162909984588623,
+ "score_p50": 0.12750522792339325,
+ "score_p90": 0.20230431854724884,
+ "fraction_gt1": 0.0,
+ "n_inside": 878,
+ "n_interface": 621,
+ "n_outside": 141,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.6458333333333333,
+ "step": 7,
+ "n_elem": 1640,
+ "target_elements": 2000,
+ "gap": 360,
+ "cutoff_score": 0.20230431854724884,
+ "num_tied_at_cutoff": 350,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20230431854724884,
+ "score_mean": 0.13282273709774017,
+ "score_p50": 0.12750522792339325,
+ "score_p90": 0.20230431854724884,
+ "fraction_gt1": 0.0,
+ "n_inside": 878,
+ "n_interface": 844,
+ "n_outside": 141,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.7708333333333333,
+ "step": 8,
+ "n_elem": 1863,
+ "target_elements": 2000,
+ "gap": 137,
+ "cutoff_score": 0.20230431854724884,
+ "num_tied_at_cutoff": 270,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 39,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.2898617012153,
+ "max_err": 0.3429854948052597,
+ "actual_elements": 2092,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9813864827156067,
+ "score_mean": 0.15930914878845215,
+ "score_p50": 1.545253092150034e-10,
+ "score_p90": 0.8991144895553589,
+ "fraction_gt1": 0.0,
+ "n_inside": 69,
+ "n_interface": 302,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666674,
+ "selected_y_range": 0.27083333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9588203430175781,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9740841388702393,
+ "score_mean": 0.13281477987766266,
+ "score_p50": 1.3663457032464521e-09,
+ "score_p90": 0.6914096474647522,
+ "fraction_gt1": 0.0,
+ "n_inside": 139,
+ "n_interface": 312,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3125,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 2000,
+ "gap": 1408,
+ "cutoff_score": 0.9520611763000488,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9728057384490967,
+ "score_mean": 0.14691010117530823,
+ "score_p50": 7.541430022683926e-07,
+ "score_p90": 0.6346898674964905,
+ "fraction_gt1": 0.0,
+ "n_inside": 217,
+ "n_interface": 320,
+ "n_outside": 141,
+ "selected_inside_frac": 0.3,
+ "selected_interface_frac": 0.7,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.45833333333333326,
+ "step": 2,
+ "n_elem": 678,
+ "target_elements": 2000,
+ "gap": 1322,
+ "cutoff_score": 0.9269213676452637,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9551114439964294,
+ "score_mean": 0.1851392537355423,
+ "score_p50": 0.0005208502989262342,
+ "score_p90": 0.7970234155654907,
+ "fraction_gt1": 0.0,
+ "n_inside": 245,
+ "n_interface": 389,
+ "n_outside": 141,
+ "selected_inside_frac": 0.8695652173913043,
+ "selected_interface_frac": 0.13043478260869565,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666674,
+ "selected_y_range": 0.4270833333333333,
+ "step": 3,
+ "n_elem": 775,
+ "target_elements": 2000,
+ "gap": 1225,
+ "cutoff_score": 0.9167637228965759,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9797967076301575,
+ "score_mean": 0.22379392385482788,
+ "score_p50": 0.00031505763763561845,
+ "score_p90": 0.9020547866821289,
+ "fraction_gt1": 0.0,
+ "n_inside": 373,
+ "n_interface": 413,
+ "n_outside": 141,
+ "selected_inside_frac": 0.8148148148148148,
+ "selected_interface_frac": 0.18518518518518517,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34375,
+ "selected_y_range": 0.44791666666666663,
+ "step": 4,
+ "n_elem": 927,
+ "target_elements": 2000,
+ "gap": 1073,
+ "cutoff_score": 0.9549024701118469,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9819802045822144,
+ "score_mean": 0.20638974010944366,
+ "score_p50": 0.001940564950928092,
+ "score_p90": 0.8885054588317871,
+ "fraction_gt1": 0.0,
+ "n_inside": 505,
+ "n_interface": 449,
+ "n_outside": 141,
+ "selected_inside_frac": 0.53125,
+ "selected_interface_frac": 0.46875,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666674,
+ "selected_y_range": 0.4895833333333333,
+ "step": 5,
+ "n_elem": 1095,
+ "target_elements": 2000,
+ "gap": 905,
+ "cutoff_score": 0.9585740566253662,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9830884337425232,
+ "score_mean": 0.1939728856086731,
+ "score_p50": 0.004024914465844631,
+ "score_p90": 0.8518239259719849,
+ "fraction_gt1": 0.0,
+ "n_inside": 605,
+ "n_interface": 539,
+ "n_outside": 141,
+ "selected_inside_frac": 0.6578947368421053,
+ "selected_interface_frac": 0.34210526315789475,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.5416666666666667,
+ "step": 6,
+ "n_elem": 1285,
+ "target_elements": 2000,
+ "gap": 715,
+ "cutoff_score": 0.9376363754272461,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9790164232254028,
+ "score_mean": 0.17897933721542358,
+ "score_p50": 0.005940896458923817,
+ "score_p90": 0.7888015508651733,
+ "fraction_gt1": 0.0,
+ "n_inside": 744,
+ "n_interface": 625,
+ "n_outside": 141,
+ "selected_inside_frac": 0.7777777777777778,
+ "selected_interface_frac": 0.2222222222222222,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.5208333333333334,
+ "step": 7,
+ "n_elem": 1510,
+ "target_elements": 2000,
+ "gap": 490,
+ "cutoff_score": 0.9300211071968079,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9829006791114807,
+ "score_mean": 0.18659666180610657,
+ "score_p50": 0.009687351994216442,
+ "score_p90": 0.7801012992858887,
+ "fraction_gt1": 0.0,
+ "n_inside": 949,
+ "n_interface": 700,
+ "n_outside": 141,
+ "selected_inside_frac": 0.5660377358490566,
+ "selected_interface_frac": 0.4339622641509434,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.53125,
+ "selected_y_range": 0.5416666666666667,
+ "step": 8,
+ "n_elem": 1790,
+ "target_elements": 2000,
+ "gap": 210,
+ "cutoff_score": 0.9295120239257812,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 39,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.29387724177276586,
+ "max_err": 0.35098830233911216,
+ "actual_elements": 2006,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.506181001663208,
+ "score_mean": -2.2351741790771484e-07,
+ "score_p50": -0.4374856948852539,
+ "score_p90": 2.382157564163208,
+ "fraction_gt1": 0.134765625,
+ "n_inside": 69,
+ "n_interface": 302,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666674,
+ "selected_y_range": 0.27083333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 2.472162961959839,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.1787478923797607,
+ "score_mean": -1.739811210654807e-07,
+ "score_p50": -0.4183363616466522,
+ "score_p90": 1.119400978088379,
+ "fraction_gt1": 0.11655405405405406,
+ "n_inside": 139,
+ "n_interface": 312,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3125,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 2000,
+ "gap": 1408,
+ "cutoff_score": 3.1402926445007324,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 4.257358551025391,
+ "score_mean": -1.2378073677155044e-07,
+ "score_p50": -0.47729766368865967,
+ "score_p90": 1.1451702117919922,
+ "fraction_gt1": 0.12536873156342182,
+ "n_inside": 217,
+ "n_interface": 320,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666674,
+ "selected_y_range": 0.32291666666666663,
+ "step": 2,
+ "n_elem": 678,
+ "target_elements": 2000,
+ "gap": 1322,
+ "cutoff_score": 2.314527988433838,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.9684715270996094,
+ "score_mean": -1.9217617719391455e-08,
+ "score_p50": -0.365927517414093,
+ "score_p90": 1.3225512504577637,
+ "fraction_gt1": 0.15994962216624686,
+ "n_inside": 299,
+ "n_interface": 354,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666663,
+ "selected_y_range": 0.375,
+ "step": 3,
+ "n_elem": 794,
+ "target_elements": 2000,
+ "gap": 1206,
+ "cutoff_score": 1.702078104019165,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.7883878946304321,
+ "score_mean": -1.4830357031314634e-07,
+ "score_p50": -0.17979241907596588,
+ "score_p90": 1.5806589126586914,
+ "fraction_gt1": 0.1717062634989201,
+ "n_inside": 413,
+ "n_interface": 372,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3125,
+ "step": 4,
+ "n_elem": 926,
+ "target_elements": 2000,
+ "gap": 1074,
+ "cutoff_score": 1.7468284368515015,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0601136684417725,
+ "score_mean": -1.682954717807661e-07,
+ "score_p50": 0.0037664473056793213,
+ "score_p90": 1.3119899034500122,
+ "fraction_gt1": 0.125,
+ "n_inside": 563,
+ "n_interface": 384,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666674,
+ "selected_y_range": 0.375,
+ "step": 5,
+ "n_elem": 1088,
+ "target_elements": 2000,
+ "gap": 912,
+ "cutoff_score": 1.9481639862060547,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2243943214416504,
+ "score_mean": -1.8984496819030028e-07,
+ "score_p50": 0.12841060757637024,
+ "score_p90": 1.211281180381775,
+ "fraction_gt1": 0.11586314152410575,
+ "n_inside": 722,
+ "n_interface": 423,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666674,
+ "selected_y_range": 0.375,
+ "step": 6,
+ "n_elem": 1286,
+ "target_elements": 2000,
+ "gap": 714,
+ "cutoff_score": 1.7146155834197998,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.8879616260528564,
+ "score_mean": 8.23686292505954e-08,
+ "score_p50": -0.07061918079853058,
+ "score_p90": 1.1504757404327393,
+ "fraction_gt1": 0.11538461538461539,
+ "n_inside": 875,
+ "n_interface": 466,
+ "n_outside": 141,
+ "selected_inside_frac": 0.25,
+ "selected_interface_frac": 0.75,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5833333333333333,
+ "step": 7,
+ "n_elem": 1482,
+ "target_elements": 2000,
+ "gap": 518,
+ "cutoff_score": 1.5776201486587524,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.717158555984497,
+ "score_mean": 1.0608659550825905e-07,
+ "score_p50": -0.23954835534095764,
+ "score_p90": 0.7669773101806641,
+ "fraction_gt1": 0.07068366164542295,
+ "n_inside": 954,
+ "n_interface": 631,
+ "n_outside": 141,
+ "selected_inside_frac": 0.9803921568627451,
+ "selected_interface_frac": 0.0196078431372549,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.328125,
+ "selected_y_range": 0.4739583333333333,
+ "step": 8,
+ "n_elem": 1726,
+ "target_elements": 2000,
+ "gap": 274,
+ "cutoff_score": 1.5749552249908447,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8140877485275269,
+ "score_mean": 3.054812580671751e-08,
+ "score_p50": -0.22163057327270508,
+ "score_p90": 0.9388144612312317,
+ "fraction_gt1": 0.07307307307307308,
+ "n_inside": 1172,
+ "n_interface": 685,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.0,
+ "selected_y_range": 0.0,
+ "step": 9,
+ "n_elem": 1998,
+ "target_elements": 2000,
+ "gap": 2,
+ "cutoff_score": 1.8140877485275269,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 39,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.2891641687248131,
+ "max_err": 0.3446403211225921,
+ "actual_elements": 4206,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.510020911693573,
+ "score_mean": 0.24377398192882538,
+ "score_p50": 0.20230431854724884,
+ "score_p90": 0.510020911693573,
+ "fraction_gt1": 0.0,
+ "n_inside": 69,
+ "n_interface": 302,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.375,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.510020911693573,
+ "num_tied_at_cutoff": 69,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.510020911693573,
+ "score_mean": 0.22308090329170227,
+ "score_p50": 0.20230431854724884,
+ "score_p90": 0.3606392443180084,
+ "fraction_gt1": 0.0,
+ "n_inside": 143,
+ "n_interface": 352,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.20833333333333326,
+ "step": 1,
+ "n_elem": 636,
+ "target_elements": 4000,
+ "gap": 3364,
+ "cutoff_score": 0.510020911693573,
+ "num_tied_at_cutoff": 32,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.510020911693573,
+ "score_mean": 0.21583054959774017,
+ "score_p50": 0.20230431854724884,
+ "score_p90": 0.2550104558467865,
+ "fraction_gt1": 0.0,
+ "n_inside": 234,
+ "n_interface": 355,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.35416666666666663,
+ "step": 2,
+ "n_elem": 730,
+ "target_elements": 4000,
+ "gap": 3270,
+ "cutoff_score": 0.3606392443180084,
+ "num_tied_at_cutoff": 36,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3606392443180084,
+ "score_mean": 0.20047885179519653,
+ "score_p50": 0.20230431854724884,
+ "score_p90": 0.2550104558467865,
+ "fraction_gt1": 0.0,
+ "n_inside": 329,
+ "n_interface": 380,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666674,
+ "selected_y_range": 0.375,
+ "step": 3,
+ "n_elem": 850,
+ "target_elements": 4000,
+ "gap": 3150,
+ "cutoff_score": 0.2550104558467865,
+ "num_tied_at_cutoff": 189,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2550104558467865,
+ "score_mean": 0.1770298331975937,
+ "score_p50": 0.20230431854724884,
+ "score_p90": 0.2550104558467865,
+ "fraction_gt1": 0.0,
+ "n_inside": 440,
+ "n_interface": 467,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666674,
+ "selected_y_range": 0.38541666666666674,
+ "step": 4,
+ "n_elem": 1048,
+ "target_elements": 4000,
+ "gap": 2952,
+ "cutoff_score": 0.2550104558467865,
+ "num_tied_at_cutoff": 143,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2550104558467865,
+ "score_mean": 0.16092346608638763,
+ "score_p50": 0.1803196221590042,
+ "score_p90": 0.20230431854724884,
+ "fraction_gt1": 0.0,
+ "n_inside": 596,
+ "n_interface": 513,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666674,
+ "selected_y_range": 0.26041666666666674,
+ "step": 5,
+ "n_elem": 1250,
+ "target_elements": 4000,
+ "gap": 2750,
+ "cutoff_score": 0.2550104558467865,
+ "num_tied_at_cutoff": 88,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2550104558467865,
+ "score_mean": 0.15102657675743103,
+ "score_p50": 0.12750522792339325,
+ "score_p90": 0.20230431854724884,
+ "fraction_gt1": 0.0,
+ "n_inside": 784,
+ "n_interface": 513,
+ "n_outside": 141,
+ "selected_inside_frac": 0.5581395348837209,
+ "selected_interface_frac": 0.4418604651162791,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 6,
+ "n_elem": 1438,
+ "target_elements": 4000,
+ "gap": 2562,
+ "cutoff_score": 0.20230431854724884,
+ "num_tied_at_cutoff": 388,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20230431854724884,
+ "score_mean": 0.14162909984588623,
+ "score_p50": 0.12750522792339325,
+ "score_p90": 0.20230431854724884,
+ "fraction_gt1": 0.0,
+ "n_inside": 878,
+ "n_interface": 621,
+ "n_outside": 141,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.6458333333333333,
+ "step": 7,
+ "n_elem": 1640,
+ "target_elements": 4000,
+ "gap": 2360,
+ "cutoff_score": 0.20230431854724884,
+ "num_tied_at_cutoff": 350,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20230431854724884,
+ "score_mean": 0.13282273709774017,
+ "score_p50": 0.12750522792339325,
+ "score_p90": 0.20230431854724884,
+ "fraction_gt1": 0.0,
+ "n_inside": 878,
+ "n_interface": 844,
+ "n_outside": 141,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.7708333333333333,
+ "step": 8,
+ "n_elem": 1863,
+ "target_elements": 4000,
+ "gap": 2137,
+ "cutoff_score": 0.20230431854724884,
+ "num_tied_at_cutoff": 270,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20230431854724884,
+ "score_mean": 0.12505453824996948,
+ "score_p50": 0.12750522792339325,
+ "score_p90": 0.1803196221590042,
+ "fraction_gt1": 0.0,
+ "n_inside": 878,
+ "n_interface": 1099,
+ "n_outside": 141,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.5555555555555556,
+ "selected_outside_frac": 0.4444444444444444,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 9,
+ "n_elem": 2118,
+ "target_elements": 4000,
+ "gap": 1882,
+ "cutoff_score": 0.20230431854724884,
+ "num_tied_at_cutoff": 176,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20230431854724884,
+ "score_mean": 0.11821041256189346,
+ "score_p50": 0.10115215927362442,
+ "score_p90": 0.1803196221590042,
+ "fraction_gt1": 0.0,
+ "n_inside": 878,
+ "n_interface": 1235,
+ "n_outside": 295,
+ "selected_inside_frac": 0.027777777777777776,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.9722222222222222,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 10,
+ "n_elem": 2408,
+ "target_elements": 4000,
+ "gap": 1592,
+ "cutoff_score": 0.1803196221590042,
+ "num_tied_at_cutoff": 217,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1803196221590042,
+ "score_mean": 0.11304616183042526,
+ "score_p50": 0.10115215927362442,
+ "score_p90": 0.14305074512958527,
+ "fraction_gt1": 0.0,
+ "n_inside": 885,
+ "n_interface": 1250,
+ "n_outside": 528,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666663,
+ "selected_y_range": 0.36979166666666663,
+ "step": 11,
+ "n_elem": 2663,
+ "target_elements": 4000,
+ "gap": 1337,
+ "cutoff_score": 0.1803196221590042,
+ "num_tied_at_cutoff": 212,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1803196221590042,
+ "score_mean": 0.10579689592123032,
+ "score_p50": 0.10115215927362442,
+ "score_p90": 0.12750522792339325,
+ "fraction_gt1": 0.0,
+ "n_inside": 1224,
+ "n_interface": 1297,
+ "n_outside": 528,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28125,
+ "selected_y_range": 0.28125,
+ "step": 12,
+ "n_elem": 3049,
+ "target_elements": 4000,
+ "gap": 951,
+ "cutoff_score": 0.1803196221590042,
+ "num_tied_at_cutoff": 112,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1803196221590042,
+ "score_mean": 0.10072864592075348,
+ "score_p50": 0.10115215927362442,
+ "score_p90": 0.12750522792339325,
+ "fraction_gt1": 0.0,
+ "n_inside": 1594,
+ "n_interface": 1297,
+ "n_outside": 528,
+ "selected_inside_frac": 0.0784313725490196,
+ "selected_interface_frac": 0.6470588235294118,
+ "selected_outside_frac": 0.27450980392156865,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3419,
+ "target_elements": 4000,
+ "gap": 581,
+ "cutoff_score": 0.14305074512958527,
+ "num_tied_at_cutoff": 101,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12750522792339325,
+ "score_mean": 0.09396681189537048,
+ "score_p50": 0.0901598110795021,
+ "score_p90": 0.12750522792339325,
+ "fraction_gt1": 0.0,
+ "n_inside": 1632,
+ "n_interface": 1617,
+ "n_outside": 659,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.40625,
+ "selected_y_range": 0.39583333333333326,
+ "step": 14,
+ "n_elem": 3908,
+ "target_elements": 4000,
+ "gap": 92,
+ "cutoff_score": 0.12750522792339325,
+ "num_tied_at_cutoff": 551,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 39,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.29040481783474764,
+ "max_err": 0.3460140289314123,
+ "actual_elements": 4074,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9813864827156067,
+ "score_mean": 0.15930914878845215,
+ "score_p50": 1.545253092150034e-10,
+ "score_p90": 0.8991144895553589,
+ "fraction_gt1": 0.0,
+ "n_inside": 69,
+ "n_interface": 302,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666674,
+ "selected_y_range": 0.27083333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9588203430175781,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9740841388702393,
+ "score_mean": 0.13281477987766266,
+ "score_p50": 1.3663457032464521e-09,
+ "score_p90": 0.6914096474647522,
+ "fraction_gt1": 0.0,
+ "n_inside": 139,
+ "n_interface": 312,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3125,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 4000,
+ "gap": 3408,
+ "cutoff_score": 0.9520611763000488,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9728057384490967,
+ "score_mean": 0.14691010117530823,
+ "score_p50": 7.541430022683926e-07,
+ "score_p90": 0.6346898674964905,
+ "fraction_gt1": 0.0,
+ "n_inside": 217,
+ "n_interface": 320,
+ "n_outside": 141,
+ "selected_inside_frac": 0.3,
+ "selected_interface_frac": 0.7,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.45833333333333326,
+ "step": 2,
+ "n_elem": 678,
+ "target_elements": 4000,
+ "gap": 3322,
+ "cutoff_score": 0.9269213676452637,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9551114439964294,
+ "score_mean": 0.1851392537355423,
+ "score_p50": 0.0005208502989262342,
+ "score_p90": 0.7970234155654907,
+ "fraction_gt1": 0.0,
+ "n_inside": 245,
+ "n_interface": 389,
+ "n_outside": 141,
+ "selected_inside_frac": 0.8695652173913043,
+ "selected_interface_frac": 0.13043478260869565,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666674,
+ "selected_y_range": 0.4270833333333333,
+ "step": 3,
+ "n_elem": 775,
+ "target_elements": 4000,
+ "gap": 3225,
+ "cutoff_score": 0.9167637228965759,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9797967076301575,
+ "score_mean": 0.22379392385482788,
+ "score_p50": 0.00031505763763561845,
+ "score_p90": 0.9020547866821289,
+ "fraction_gt1": 0.0,
+ "n_inside": 373,
+ "n_interface": 413,
+ "n_outside": 141,
+ "selected_inside_frac": 0.8148148148148148,
+ "selected_interface_frac": 0.18518518518518517,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34375,
+ "selected_y_range": 0.44791666666666663,
+ "step": 4,
+ "n_elem": 927,
+ "target_elements": 4000,
+ "gap": 3073,
+ "cutoff_score": 0.9549024701118469,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9819802045822144,
+ "score_mean": 0.20638974010944366,
+ "score_p50": 0.001940564950928092,
+ "score_p90": 0.8885054588317871,
+ "fraction_gt1": 0.0,
+ "n_inside": 505,
+ "n_interface": 449,
+ "n_outside": 141,
+ "selected_inside_frac": 0.53125,
+ "selected_interface_frac": 0.46875,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666674,
+ "selected_y_range": 0.4895833333333333,
+ "step": 5,
+ "n_elem": 1095,
+ "target_elements": 4000,
+ "gap": 2905,
+ "cutoff_score": 0.9585740566253662,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9830884337425232,
+ "score_mean": 0.1939728856086731,
+ "score_p50": 0.004024914465844631,
+ "score_p90": 0.8518239259719849,
+ "fraction_gt1": 0.0,
+ "n_inside": 605,
+ "n_interface": 539,
+ "n_outside": 141,
+ "selected_inside_frac": 0.6578947368421053,
+ "selected_interface_frac": 0.34210526315789475,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.5416666666666667,
+ "step": 6,
+ "n_elem": 1285,
+ "target_elements": 4000,
+ "gap": 2715,
+ "cutoff_score": 0.9376363754272461,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9790164232254028,
+ "score_mean": 0.17897933721542358,
+ "score_p50": 0.005940896458923817,
+ "score_p90": 0.7888015508651733,
+ "fraction_gt1": 0.0,
+ "n_inside": 744,
+ "n_interface": 625,
+ "n_outside": 141,
+ "selected_inside_frac": 0.7777777777777778,
+ "selected_interface_frac": 0.2222222222222222,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.5208333333333334,
+ "step": 7,
+ "n_elem": 1510,
+ "target_elements": 4000,
+ "gap": 2490,
+ "cutoff_score": 0.9300211071968079,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9829006791114807,
+ "score_mean": 0.18659666180610657,
+ "score_p50": 0.009687351994216442,
+ "score_p90": 0.7801012992858887,
+ "fraction_gt1": 0.0,
+ "n_inside": 949,
+ "n_interface": 700,
+ "n_outside": 141,
+ "selected_inside_frac": 0.5660377358490566,
+ "selected_interface_frac": 0.4339622641509434,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.53125,
+ "selected_y_range": 0.5416666666666667,
+ "step": 8,
+ "n_elem": 1790,
+ "target_elements": 4000,
+ "gap": 2210,
+ "cutoff_score": 0.9295120239257812,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9732649922370911,
+ "score_mean": 0.17816850543022156,
+ "score_p50": 0.00888141617178917,
+ "score_p90": 0.7385180592536926,
+ "fraction_gt1": 0.0,
+ "n_inside": 1101,
+ "n_interface": 850,
+ "n_outside": 141,
+ "selected_inside_frac": 0.8225806451612904,
+ "selected_interface_frac": 0.1774193548387097,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.44791666666666674,
+ "selected_y_range": 0.6041666666666667,
+ "step": 9,
+ "n_elem": 2092,
+ "target_elements": 4000,
+ "gap": 1908,
+ "cutoff_score": 0.9279345273971558,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.971436619758606,
+ "score_mean": 0.18884670734405518,
+ "score_p50": 0.010110702365636826,
+ "score_p90": 0.7561538219451904,
+ "fraction_gt1": 0.0,
+ "n_inside": 1361,
+ "n_interface": 923,
+ "n_outside": 141,
+ "selected_inside_frac": 0.8194444444444444,
+ "selected_interface_frac": 0.18055555555555555,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.47916666666666674,
+ "selected_y_range": 0.5208333333333334,
+ "step": 10,
+ "n_elem": 2425,
+ "target_elements": 4000,
+ "gap": 1575,
+ "cutoff_score": 0.9031500220298767,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.954097330570221,
+ "score_mean": 0.18911272287368774,
+ "score_p50": 0.012913583777844906,
+ "score_p90": 0.7636531591415405,
+ "fraction_gt1": 0.0,
+ "n_inside": 1690,
+ "n_interface": 998,
+ "n_outside": 141,
+ "selected_inside_frac": 0.5357142857142857,
+ "selected_interface_frac": 0.4642857142857143,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.625,
+ "step": 11,
+ "n_elem": 2829,
+ "target_elements": 4000,
+ "gap": 1171,
+ "cutoff_score": 0.8982312083244324,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9691141843795776,
+ "score_mean": 0.18016324937343597,
+ "score_p50": 0.010764725506305695,
+ "score_p90": 0.756527304649353,
+ "fraction_gt1": 0.0,
+ "n_inside": 1956,
+ "n_interface": 1221,
+ "n_outside": 141,
+ "selected_inside_frac": 0.6363636363636364,
+ "selected_interface_frac": 0.36363636363636365,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.578125,
+ "selected_y_range": 0.6875,
+ "step": 12,
+ "n_elem": 3318,
+ "target_elements": 4000,
+ "gap": 682,
+ "cutoff_score": 0.9009184241294861,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.977833092212677,
+ "score_mean": 0.1815817803144455,
+ "score_p50": 0.008687226101756096,
+ "score_p90": 0.7165800333023071,
+ "fraction_gt1": 0.0,
+ "n_inside": 2309,
+ "n_interface": 1461,
+ "n_outside": 141,
+ "selected_inside_frac": 0.3103448275862069,
+ "selected_interface_frac": 0.6896551724137931,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2734375,
+ "selected_y_range": 0.5677083333333334,
+ "step": 13,
+ "n_elem": 3911,
+ "target_elements": 4000,
+ "gap": 89,
+ "cutoff_score": 0.9395272135734558,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 39,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.2892234375374329,
+ "max_err": 0.34253788263659146,
+ "actual_elements": 4188,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.506181001663208,
+ "score_mean": -2.2351741790771484e-07,
+ "score_p50": -0.4374856948852539,
+ "score_p90": 2.382157564163208,
+ "fraction_gt1": 0.134765625,
+ "n_inside": 69,
+ "n_interface": 302,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666674,
+ "selected_y_range": 0.27083333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 2.472162961959839,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.1787478923797607,
+ "score_mean": -1.739811210654807e-07,
+ "score_p50": -0.4183363616466522,
+ "score_p90": 1.119400978088379,
+ "fraction_gt1": 0.11655405405405406,
+ "n_inside": 139,
+ "n_interface": 312,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3125,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 4000,
+ "gap": 3408,
+ "cutoff_score": 3.1402926445007324,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 4.257358551025391,
+ "score_mean": -1.2378073677155044e-07,
+ "score_p50": -0.47729766368865967,
+ "score_p90": 1.1451702117919922,
+ "fraction_gt1": 0.12536873156342182,
+ "n_inside": 217,
+ "n_interface": 320,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666674,
+ "selected_y_range": 0.32291666666666663,
+ "step": 2,
+ "n_elem": 678,
+ "target_elements": 4000,
+ "gap": 3322,
+ "cutoff_score": 2.314527988433838,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.9684715270996094,
+ "score_mean": -1.9217617719391455e-08,
+ "score_p50": -0.365927517414093,
+ "score_p90": 1.3225512504577637,
+ "fraction_gt1": 0.15994962216624686,
+ "n_inside": 299,
+ "n_interface": 354,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666663,
+ "selected_y_range": 0.375,
+ "step": 3,
+ "n_elem": 794,
+ "target_elements": 4000,
+ "gap": 3206,
+ "cutoff_score": 1.702078104019165,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.7883878946304321,
+ "score_mean": -1.4830357031314634e-07,
+ "score_p50": -0.17979241907596588,
+ "score_p90": 1.5806589126586914,
+ "fraction_gt1": 0.1717062634989201,
+ "n_inside": 413,
+ "n_interface": 372,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3125,
+ "step": 4,
+ "n_elem": 926,
+ "target_elements": 4000,
+ "gap": 3074,
+ "cutoff_score": 1.7468284368515015,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0601136684417725,
+ "score_mean": -1.682954717807661e-07,
+ "score_p50": 0.0037664473056793213,
+ "score_p90": 1.3119899034500122,
+ "fraction_gt1": 0.125,
+ "n_inside": 563,
+ "n_interface": 384,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666674,
+ "selected_y_range": 0.375,
+ "step": 5,
+ "n_elem": 1088,
+ "target_elements": 4000,
+ "gap": 2912,
+ "cutoff_score": 1.9481639862060547,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2243943214416504,
+ "score_mean": -1.8984496819030028e-07,
+ "score_p50": 0.12841060757637024,
+ "score_p90": 1.211281180381775,
+ "fraction_gt1": 0.11586314152410575,
+ "n_inside": 722,
+ "n_interface": 423,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666674,
+ "selected_y_range": 0.375,
+ "step": 6,
+ "n_elem": 1286,
+ "target_elements": 4000,
+ "gap": 2714,
+ "cutoff_score": 1.7146155834197998,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.8879616260528564,
+ "score_mean": 8.23686292505954e-08,
+ "score_p50": -0.07061918079853058,
+ "score_p90": 1.1504757404327393,
+ "fraction_gt1": 0.11538461538461539,
+ "n_inside": 875,
+ "n_interface": 466,
+ "n_outside": 141,
+ "selected_inside_frac": 0.25,
+ "selected_interface_frac": 0.75,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5833333333333333,
+ "step": 7,
+ "n_elem": 1482,
+ "target_elements": 4000,
+ "gap": 2518,
+ "cutoff_score": 1.5776201486587524,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.717158555984497,
+ "score_mean": 1.0608659550825905e-07,
+ "score_p50": -0.23954835534095764,
+ "score_p90": 0.7669773101806641,
+ "fraction_gt1": 0.07068366164542295,
+ "n_inside": 954,
+ "n_interface": 631,
+ "n_outside": 141,
+ "selected_inside_frac": 0.9803921568627451,
+ "selected_interface_frac": 0.0196078431372549,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.328125,
+ "selected_y_range": 0.4739583333333333,
+ "step": 8,
+ "n_elem": 1726,
+ "target_elements": 4000,
+ "gap": 2274,
+ "cutoff_score": 1.5749552249908447,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8140877485275269,
+ "score_mean": 3.054812580671751e-08,
+ "score_p50": -0.22163057327270508,
+ "score_p90": 0.9388144612312317,
+ "fraction_gt1": 0.07307307307307308,
+ "n_inside": 1172,
+ "n_interface": 685,
+ "n_outside": 141,
+ "selected_inside_frac": 0.7288135593220338,
+ "selected_interface_frac": 0.2711864406779661,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43229166666666674,
+ "selected_y_range": 0.6354166666666667,
+ "step": 9,
+ "n_elem": 1998,
+ "target_elements": 4000,
+ "gap": 2002,
+ "cutoff_score": 1.2373920679092407,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.895945429801941,
+ "score_mean": -5.286717907893035e-08,
+ "score_p50": -0.15709896385669708,
+ "score_p90": 1.0141648054122925,
+ "fraction_gt1": 0.10524036379385016,
+ "n_inside": 1391,
+ "n_interface": 777,
+ "n_outside": 141,
+ "selected_inside_frac": 0.927536231884058,
+ "selected_interface_frac": 0.07246376811594203,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.5625,
+ "step": 10,
+ "n_elem": 2309,
+ "target_elements": 4000,
+ "gap": 1691,
+ "cutoff_score": 1.2756150960922241,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9989159107208252,
+ "score_mean": 2.2833953394751916e-08,
+ "score_p50": -0.35405856370925903,
+ "score_p90": 1.0268917083740234,
+ "fraction_gt1": 0.10549943883277217,
+ "n_inside": 1714,
+ "n_interface": 818,
+ "n_outside": 141,
+ "selected_inside_frac": 0.825,
+ "selected_interface_frac": 0.175,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.625,
+ "step": 11,
+ "n_elem": 2673,
+ "target_elements": 4000,
+ "gap": 1327,
+ "cutoff_score": 1.3504923582077026,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.200002908706665,
+ "score_mean": 1.9370091308701376e-08,
+ "score_p50": -0.2756069600582123,
+ "score_p90": 1.1355462074279785,
+ "fraction_gt1": 0.16915264995239607,
+ "n_inside": 2074,
+ "n_interface": 936,
+ "n_outside": 141,
+ "selected_inside_frac": 0.7553191489361702,
+ "selected_interface_frac": 0.24468085106382978,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.71875,
+ "step": 12,
+ "n_elem": 3151,
+ "target_elements": 4000,
+ "gap": 849,
+ "cutoff_score": 1.3586466312408447,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0335183143615723,
+ "score_mean": -1.3272118337681604e-07,
+ "score_p50": -0.25736892223358154,
+ "score_p90": 1.21140456199646,
+ "fraction_gt1": 0.15275890187550964,
+ "n_inside": 2429,
+ "n_interface": 1109,
+ "n_outside": 141,
+ "selected_inside_frac": 0.21495327102803738,
+ "selected_interface_frac": 0.32710280373831774,
+ "selected_outside_frac": 0.45794392523364486,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 13,
+ "n_elem": 3679,
+ "target_elements": 4000,
+ "gap": 321,
+ "cutoff_score": 1.473191738128662,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 39,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.28612475463386045,
+ "max_err": 0.3415978877642905,
+ "actual_elements": 8073,
+ "num_steps": 21,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.510020911693573,
+ "score_mean": 0.24377398192882538,
+ "score_p50": 0.20230431854724884,
+ "score_p90": 0.510020911693573,
+ "fraction_gt1": 0.0,
+ "n_inside": 69,
+ "n_interface": 302,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.375,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.510020911693573,
+ "num_tied_at_cutoff": 69,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.510020911693573,
+ "score_mean": 0.22308090329170227,
+ "score_p50": 0.20230431854724884,
+ "score_p90": 0.3606392443180084,
+ "fraction_gt1": 0.0,
+ "n_inside": 143,
+ "n_interface": 352,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.20833333333333326,
+ "step": 1,
+ "n_elem": 636,
+ "target_elements": 8000,
+ "gap": 7364,
+ "cutoff_score": 0.510020911693573,
+ "num_tied_at_cutoff": 32,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.510020911693573,
+ "score_mean": 0.21583054959774017,
+ "score_p50": 0.20230431854724884,
+ "score_p90": 0.2550104558467865,
+ "fraction_gt1": 0.0,
+ "n_inside": 234,
+ "n_interface": 355,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.35416666666666663,
+ "step": 2,
+ "n_elem": 730,
+ "target_elements": 8000,
+ "gap": 7270,
+ "cutoff_score": 0.3606392443180084,
+ "num_tied_at_cutoff": 36,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3606392443180084,
+ "score_mean": 0.20047885179519653,
+ "score_p50": 0.20230431854724884,
+ "score_p90": 0.2550104558467865,
+ "fraction_gt1": 0.0,
+ "n_inside": 329,
+ "n_interface": 380,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666674,
+ "selected_y_range": 0.375,
+ "step": 3,
+ "n_elem": 850,
+ "target_elements": 8000,
+ "gap": 7150,
+ "cutoff_score": 0.2550104558467865,
+ "num_tied_at_cutoff": 189,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2550104558467865,
+ "score_mean": 0.1770298331975937,
+ "score_p50": 0.20230431854724884,
+ "score_p90": 0.2550104558467865,
+ "fraction_gt1": 0.0,
+ "n_inside": 440,
+ "n_interface": 467,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666674,
+ "selected_y_range": 0.38541666666666674,
+ "step": 4,
+ "n_elem": 1048,
+ "target_elements": 8000,
+ "gap": 6952,
+ "cutoff_score": 0.2550104558467865,
+ "num_tied_at_cutoff": 143,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2550104558467865,
+ "score_mean": 0.16092346608638763,
+ "score_p50": 0.1803196221590042,
+ "score_p90": 0.20230431854724884,
+ "fraction_gt1": 0.0,
+ "n_inside": 596,
+ "n_interface": 513,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666674,
+ "selected_y_range": 0.26041666666666674,
+ "step": 5,
+ "n_elem": 1250,
+ "target_elements": 8000,
+ "gap": 6750,
+ "cutoff_score": 0.2550104558467865,
+ "num_tied_at_cutoff": 88,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2550104558467865,
+ "score_mean": 0.15102657675743103,
+ "score_p50": 0.12750522792339325,
+ "score_p90": 0.20230431854724884,
+ "fraction_gt1": 0.0,
+ "n_inside": 784,
+ "n_interface": 513,
+ "n_outside": 141,
+ "selected_inside_frac": 0.5581395348837209,
+ "selected_interface_frac": 0.4418604651162791,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 6,
+ "n_elem": 1438,
+ "target_elements": 8000,
+ "gap": 6562,
+ "cutoff_score": 0.20230431854724884,
+ "num_tied_at_cutoff": 388,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20230431854724884,
+ "score_mean": 0.14162909984588623,
+ "score_p50": 0.12750522792339325,
+ "score_p90": 0.20230431854724884,
+ "fraction_gt1": 0.0,
+ "n_inside": 878,
+ "n_interface": 621,
+ "n_outside": 141,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.6458333333333333,
+ "step": 7,
+ "n_elem": 1640,
+ "target_elements": 8000,
+ "gap": 6360,
+ "cutoff_score": 0.20230431854724884,
+ "num_tied_at_cutoff": 350,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20230431854724884,
+ "score_mean": 0.13282273709774017,
+ "score_p50": 0.12750522792339325,
+ "score_p90": 0.20230431854724884,
+ "fraction_gt1": 0.0,
+ "n_inside": 878,
+ "n_interface": 844,
+ "n_outside": 141,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.7708333333333333,
+ "step": 8,
+ "n_elem": 1863,
+ "target_elements": 8000,
+ "gap": 6137,
+ "cutoff_score": 0.20230431854724884,
+ "num_tied_at_cutoff": 270,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20230431854724884,
+ "score_mean": 0.12505453824996948,
+ "score_p50": 0.12750522792339325,
+ "score_p90": 0.1803196221590042,
+ "fraction_gt1": 0.0,
+ "n_inside": 878,
+ "n_interface": 1099,
+ "n_outside": 141,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.5555555555555556,
+ "selected_outside_frac": 0.4444444444444444,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 9,
+ "n_elem": 2118,
+ "target_elements": 8000,
+ "gap": 5882,
+ "cutoff_score": 0.20230431854724884,
+ "num_tied_at_cutoff": 176,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20230431854724884,
+ "score_mean": 0.11821041256189346,
+ "score_p50": 0.10115215927362442,
+ "score_p90": 0.1803196221590042,
+ "fraction_gt1": 0.0,
+ "n_inside": 878,
+ "n_interface": 1235,
+ "n_outside": 295,
+ "selected_inside_frac": 0.027777777777777776,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.9722222222222222,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 10,
+ "n_elem": 2408,
+ "target_elements": 8000,
+ "gap": 5592,
+ "cutoff_score": 0.1803196221590042,
+ "num_tied_at_cutoff": 217,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1803196221590042,
+ "score_mean": 0.11304616183042526,
+ "score_p50": 0.10115215927362442,
+ "score_p90": 0.14305074512958527,
+ "fraction_gt1": 0.0,
+ "n_inside": 885,
+ "n_interface": 1250,
+ "n_outside": 528,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666663,
+ "selected_y_range": 0.36979166666666663,
+ "step": 11,
+ "n_elem": 2663,
+ "target_elements": 8000,
+ "gap": 5337,
+ "cutoff_score": 0.1803196221590042,
+ "num_tied_at_cutoff": 212,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1803196221590042,
+ "score_mean": 0.10579689592123032,
+ "score_p50": 0.10115215927362442,
+ "score_p90": 0.12750522792339325,
+ "fraction_gt1": 0.0,
+ "n_inside": 1224,
+ "n_interface": 1297,
+ "n_outside": 528,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28125,
+ "selected_y_range": 0.28125,
+ "step": 12,
+ "n_elem": 3049,
+ "target_elements": 8000,
+ "gap": 4951,
+ "cutoff_score": 0.1803196221590042,
+ "num_tied_at_cutoff": 112,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1803196221590042,
+ "score_mean": 0.10072864592075348,
+ "score_p50": 0.10115215927362442,
+ "score_p90": 0.12750522792339325,
+ "fraction_gt1": 0.0,
+ "n_inside": 1594,
+ "n_interface": 1297,
+ "n_outside": 528,
+ "selected_inside_frac": 0.0784313725490196,
+ "selected_interface_frac": 0.6470588235294118,
+ "selected_outside_frac": 0.27450980392156865,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3419,
+ "target_elements": 8000,
+ "gap": 4581,
+ "cutoff_score": 0.14305074512958527,
+ "num_tied_at_cutoff": 101,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12750522792339325,
+ "score_mean": 0.09396681189537048,
+ "score_p50": 0.0901598110795021,
+ "score_p90": 0.12750522792339325,
+ "fraction_gt1": 0.0,
+ "n_inside": 1632,
+ "n_interface": 1617,
+ "n_outside": 659,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.40625,
+ "selected_y_range": 0.39583333333333326,
+ "step": 14,
+ "n_elem": 3908,
+ "target_elements": 8000,
+ "gap": 4092,
+ "cutoff_score": 0.12750522792339325,
+ "num_tied_at_cutoff": 551,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12750522792339325,
+ "score_mean": 0.08533204346895218,
+ "score_p50": 0.0901598110795021,
+ "score_p90": 0.10115215927362442,
+ "fraction_gt1": 0.0,
+ "n_inside": 2105,
+ "n_interface": 1836,
+ "n_outside": 659,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.31770833333333326,
+ "selected_y_range": 0.30208333333333326,
+ "step": 15,
+ "n_elem": 4600,
+ "target_elements": 8000,
+ "gap": 3400,
+ "cutoff_score": 0.12750522792339325,
+ "num_tied_at_cutoff": 366,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12750522792339325,
+ "score_mean": 0.08041469752788544,
+ "score_p50": 0.0901598110795021,
+ "score_p90": 0.10115215927362442,
+ "fraction_gt1": 0.0,
+ "n_inside": 2697,
+ "n_interface": 1836,
+ "n_outside": 659,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333326,
+ "selected_y_range": 0.25520833333333326,
+ "step": 16,
+ "n_elem": 5192,
+ "target_elements": 8000,
+ "gap": 2808,
+ "cutoff_score": 0.12750522792339325,
+ "num_tied_at_cutoff": 180,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12750522792339325,
+ "score_mean": 0.07649390399456024,
+ "score_p50": 0.07152537256479263,
+ "score_p90": 0.10115215927362442,
+ "fraction_gt1": 0.0,
+ "n_inside": 3281,
+ "n_interface": 1836,
+ "n_outside": 659,
+ "selected_inside_frac": 0.10404624277456648,
+ "selected_interface_frac": 0.8959537572254336,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5625,
+ "step": 17,
+ "n_elem": 5776,
+ "target_elements": 8000,
+ "gap": 2224,
+ "cutoff_score": 0.10115215927362442,
+ "num_tied_at_cutoff": 1336,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10115215927362442,
+ "score_mean": 0.07213346660137177,
+ "score_p50": 0.06375261396169662,
+ "score_p90": 0.10115215927362442,
+ "fraction_gt1": 0.0,
+ "n_inside": 3349,
+ "n_interface": 2436,
+ "n_outside": 659,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.6666666666666667,
+ "step": 18,
+ "n_elem": 6444,
+ "target_elements": 8000,
+ "gap": 1556,
+ "cutoff_score": 0.10115215927362442,
+ "num_tied_at_cutoff": 1140,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10115215927362442,
+ "score_mean": 0.06839124113321304,
+ "score_p50": 0.06375261396169662,
+ "score_p90": 0.10115215927362442,
+ "fraction_gt1": 0.0,
+ "n_inside": 3349,
+ "n_interface": 3129,
+ "n_outside": 659,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.78125,
+ "step": 19,
+ "n_elem": 7137,
+ "target_elements": 8000,
+ "gap": 863,
+ "cutoff_score": 0.10115215927362442,
+ "num_tied_at_cutoff": 916,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10115215927362442,
+ "score_mean": 0.06491309404373169,
+ "score_p50": 0.06375261396169662,
+ "score_p90": 0.0901598110795021,
+ "fraction_gt1": 0.0,
+ "n_inside": 3349,
+ "n_interface": 3925,
+ "n_outside": 659,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.71875,
+ "step": 20,
+ "n_elem": 7933,
+ "target_elements": 8000,
+ "gap": 67,
+ "cutoff_score": 0.10115215927362442,
+ "num_tied_at_cutoff": 650,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 39,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.28673858400118757,
+ "max_err": 0.3400727511109129,
+ "actual_elements": 8571,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9813864827156067,
+ "score_mean": 0.15930914878845215,
+ "score_p50": 1.545253092150034e-10,
+ "score_p90": 0.8991144895553589,
+ "fraction_gt1": 0.0,
+ "n_inside": 69,
+ "n_interface": 302,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666674,
+ "selected_y_range": 0.27083333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9588203430175781,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9740841388702393,
+ "score_mean": 0.13281477987766266,
+ "score_p50": 1.3663457032464521e-09,
+ "score_p90": 0.6914096474647522,
+ "fraction_gt1": 0.0,
+ "n_inside": 139,
+ "n_interface": 312,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3125,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 8000,
+ "gap": 7408,
+ "cutoff_score": 0.9520611763000488,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9728057384490967,
+ "score_mean": 0.14691010117530823,
+ "score_p50": 7.541430022683926e-07,
+ "score_p90": 0.6346898674964905,
+ "fraction_gt1": 0.0,
+ "n_inside": 217,
+ "n_interface": 320,
+ "n_outside": 141,
+ "selected_inside_frac": 0.3,
+ "selected_interface_frac": 0.7,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.45833333333333326,
+ "step": 2,
+ "n_elem": 678,
+ "target_elements": 8000,
+ "gap": 7322,
+ "cutoff_score": 0.9269213676452637,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9551114439964294,
+ "score_mean": 0.1851392537355423,
+ "score_p50": 0.0005208502989262342,
+ "score_p90": 0.7970234155654907,
+ "fraction_gt1": 0.0,
+ "n_inside": 245,
+ "n_interface": 389,
+ "n_outside": 141,
+ "selected_inside_frac": 0.8695652173913043,
+ "selected_interface_frac": 0.13043478260869565,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666674,
+ "selected_y_range": 0.4270833333333333,
+ "step": 3,
+ "n_elem": 775,
+ "target_elements": 8000,
+ "gap": 7225,
+ "cutoff_score": 0.9167637228965759,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9797967076301575,
+ "score_mean": 0.22379392385482788,
+ "score_p50": 0.00031505763763561845,
+ "score_p90": 0.9020547866821289,
+ "fraction_gt1": 0.0,
+ "n_inside": 373,
+ "n_interface": 413,
+ "n_outside": 141,
+ "selected_inside_frac": 0.8148148148148148,
+ "selected_interface_frac": 0.18518518518518517,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34375,
+ "selected_y_range": 0.44791666666666663,
+ "step": 4,
+ "n_elem": 927,
+ "target_elements": 8000,
+ "gap": 7073,
+ "cutoff_score": 0.9549024701118469,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9819802045822144,
+ "score_mean": 0.20638974010944366,
+ "score_p50": 0.001940564950928092,
+ "score_p90": 0.8885054588317871,
+ "fraction_gt1": 0.0,
+ "n_inside": 505,
+ "n_interface": 449,
+ "n_outside": 141,
+ "selected_inside_frac": 0.53125,
+ "selected_interface_frac": 0.46875,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666674,
+ "selected_y_range": 0.4895833333333333,
+ "step": 5,
+ "n_elem": 1095,
+ "target_elements": 8000,
+ "gap": 6905,
+ "cutoff_score": 0.9585740566253662,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9830884337425232,
+ "score_mean": 0.1939728856086731,
+ "score_p50": 0.004024914465844631,
+ "score_p90": 0.8518239259719849,
+ "fraction_gt1": 0.0,
+ "n_inside": 605,
+ "n_interface": 539,
+ "n_outside": 141,
+ "selected_inside_frac": 0.6578947368421053,
+ "selected_interface_frac": 0.34210526315789475,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.5416666666666667,
+ "step": 6,
+ "n_elem": 1285,
+ "target_elements": 8000,
+ "gap": 6715,
+ "cutoff_score": 0.9376363754272461,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9790164232254028,
+ "score_mean": 0.17897933721542358,
+ "score_p50": 0.005940896458923817,
+ "score_p90": 0.7888015508651733,
+ "fraction_gt1": 0.0,
+ "n_inside": 744,
+ "n_interface": 625,
+ "n_outside": 141,
+ "selected_inside_frac": 0.7777777777777778,
+ "selected_interface_frac": 0.2222222222222222,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.5208333333333334,
+ "step": 7,
+ "n_elem": 1510,
+ "target_elements": 8000,
+ "gap": 6490,
+ "cutoff_score": 0.9300211071968079,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9829006791114807,
+ "score_mean": 0.18659666180610657,
+ "score_p50": 0.009687351994216442,
+ "score_p90": 0.7801012992858887,
+ "fraction_gt1": 0.0,
+ "n_inside": 949,
+ "n_interface": 700,
+ "n_outside": 141,
+ "selected_inside_frac": 0.5660377358490566,
+ "selected_interface_frac": 0.4339622641509434,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.53125,
+ "selected_y_range": 0.5416666666666667,
+ "step": 8,
+ "n_elem": 1790,
+ "target_elements": 8000,
+ "gap": 6210,
+ "cutoff_score": 0.9295120239257812,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9732649922370911,
+ "score_mean": 0.17816850543022156,
+ "score_p50": 0.00888141617178917,
+ "score_p90": 0.7385180592536926,
+ "fraction_gt1": 0.0,
+ "n_inside": 1101,
+ "n_interface": 850,
+ "n_outside": 141,
+ "selected_inside_frac": 0.8225806451612904,
+ "selected_interface_frac": 0.1774193548387097,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.44791666666666674,
+ "selected_y_range": 0.6041666666666667,
+ "step": 9,
+ "n_elem": 2092,
+ "target_elements": 8000,
+ "gap": 5908,
+ "cutoff_score": 0.9279345273971558,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.971436619758606,
+ "score_mean": 0.18884670734405518,
+ "score_p50": 0.010110702365636826,
+ "score_p90": 0.7561538219451904,
+ "fraction_gt1": 0.0,
+ "n_inside": 1361,
+ "n_interface": 923,
+ "n_outside": 141,
+ "selected_inside_frac": 0.8194444444444444,
+ "selected_interface_frac": 0.18055555555555555,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.47916666666666674,
+ "selected_y_range": 0.5208333333333334,
+ "step": 10,
+ "n_elem": 2425,
+ "target_elements": 8000,
+ "gap": 5575,
+ "cutoff_score": 0.9031500220298767,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.954097330570221,
+ "score_mean": 0.18911272287368774,
+ "score_p50": 0.012913583777844906,
+ "score_p90": 0.7636531591415405,
+ "fraction_gt1": 0.0,
+ "n_inside": 1690,
+ "n_interface": 998,
+ "n_outside": 141,
+ "selected_inside_frac": 0.5357142857142857,
+ "selected_interface_frac": 0.4642857142857143,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.625,
+ "step": 11,
+ "n_elem": 2829,
+ "target_elements": 8000,
+ "gap": 5171,
+ "cutoff_score": 0.8982312083244324,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9691141843795776,
+ "score_mean": 0.18016324937343597,
+ "score_p50": 0.010764725506305695,
+ "score_p90": 0.756527304649353,
+ "fraction_gt1": 0.0,
+ "n_inside": 1956,
+ "n_interface": 1221,
+ "n_outside": 141,
+ "selected_inside_frac": 0.6363636363636364,
+ "selected_interface_frac": 0.36363636363636365,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.578125,
+ "selected_y_range": 0.6875,
+ "step": 12,
+ "n_elem": 3318,
+ "target_elements": 8000,
+ "gap": 4682,
+ "cutoff_score": 0.9009184241294861,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.977833092212677,
+ "score_mean": 0.1815817803144455,
+ "score_p50": 0.008687226101756096,
+ "score_p90": 0.7165800333023071,
+ "fraction_gt1": 0.0,
+ "n_inside": 2309,
+ "n_interface": 1461,
+ "n_outside": 141,
+ "selected_inside_frac": 0.5982905982905983,
+ "selected_interface_frac": 0.4017094017094017,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.484375,
+ "selected_y_range": 0.703125,
+ "step": 13,
+ "n_elem": 3911,
+ "target_elements": 8000,
+ "gap": 4089,
+ "cutoff_score": 0.8956028819084167,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9722927212715149,
+ "score_mean": 0.18220651149749756,
+ "score_p50": 0.009529044851660728,
+ "score_p90": 0.7579662799835205,
+ "fraction_gt1": 0.0,
+ "n_inside": 2727,
+ "n_interface": 1698,
+ "n_outside": 141,
+ "selected_inside_frac": 0.6544117647058824,
+ "selected_interface_frac": 0.34558823529411764,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.703125,
+ "selected_y_range": 0.6614583333333333,
+ "step": 14,
+ "n_elem": 4566,
+ "target_elements": 8000,
+ "gap": 3434,
+ "cutoff_score": 0.8879553079605103,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.978838324546814,
+ "score_mean": 0.18245317041873932,
+ "score_p50": 0.010374614037573338,
+ "score_p90": 0.7572565674781799,
+ "fraction_gt1": 0.0,
+ "n_inside": 3235,
+ "n_interface": 1978,
+ "n_outside": 141,
+ "selected_inside_frac": 0.6,
+ "selected_interface_frac": 0.4,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7864583333333333,
+ "selected_y_range": 0.765625,
+ "step": 15,
+ "n_elem": 5354,
+ "target_elements": 8000,
+ "gap": 2646,
+ "cutoff_score": 0.8860613107681274,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9780660271644592,
+ "score_mean": 0.18388378620147705,
+ "score_p50": 0.007408380042761564,
+ "score_p90": 0.7787922024726868,
+ "fraction_gt1": 0.0,
+ "n_inside": 3812,
+ "n_interface": 2343,
+ "n_outside": 141,
+ "selected_inside_frac": 0.6170212765957447,
+ "selected_interface_frac": 0.3829787234042553,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.7760416666666666,
+ "step": 16,
+ "n_elem": 6296,
+ "target_elements": 8000,
+ "gap": 1704,
+ "cutoff_score": 0.8923419713973999,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.978179931640625,
+ "score_mean": 0.18012721836566925,
+ "score_p50": 0.006858390290290117,
+ "score_p90": 0.7611779570579529,
+ "fraction_gt1": 0.0,
+ "n_inside": 4473,
+ "n_interface": 2758,
+ "n_outside": 146,
+ "selected_inside_frac": 0.7729468599033816,
+ "selected_interface_frac": 0.2222222222222222,
+ "selected_outside_frac": 0.004830917874396135,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.8489583333333333,
+ "step": 17,
+ "n_elem": 7377,
+ "target_elements": 8000,
+ "gap": 623,
+ "cutoff_score": 0.8992912173271179,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 39,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.28651631387340626,
+ "max_err": 0.3400165698460132,
+ "actual_elements": 8180,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.506181001663208,
+ "score_mean": -2.2351741790771484e-07,
+ "score_p50": -0.4374856948852539,
+ "score_p90": 2.382157564163208,
+ "fraction_gt1": 0.134765625,
+ "n_inside": 69,
+ "n_interface": 302,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666674,
+ "selected_y_range": 0.27083333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 2.472162961959839,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.1787478923797607,
+ "score_mean": -1.739811210654807e-07,
+ "score_p50": -0.4183363616466522,
+ "score_p90": 1.119400978088379,
+ "fraction_gt1": 0.11655405405405406,
+ "n_inside": 139,
+ "n_interface": 312,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3125,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 8000,
+ "gap": 7408,
+ "cutoff_score": 3.1402926445007324,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 4.257358551025391,
+ "score_mean": -1.2378073677155044e-07,
+ "score_p50": -0.47729766368865967,
+ "score_p90": 1.1451702117919922,
+ "fraction_gt1": 0.12536873156342182,
+ "n_inside": 217,
+ "n_interface": 320,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666674,
+ "selected_y_range": 0.32291666666666663,
+ "step": 2,
+ "n_elem": 678,
+ "target_elements": 8000,
+ "gap": 7322,
+ "cutoff_score": 2.314527988433838,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.9684715270996094,
+ "score_mean": -1.9217617719391455e-08,
+ "score_p50": -0.365927517414093,
+ "score_p90": 1.3225512504577637,
+ "fraction_gt1": 0.15994962216624686,
+ "n_inside": 299,
+ "n_interface": 354,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666663,
+ "selected_y_range": 0.375,
+ "step": 3,
+ "n_elem": 794,
+ "target_elements": 8000,
+ "gap": 7206,
+ "cutoff_score": 1.702078104019165,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.7883878946304321,
+ "score_mean": -1.4830357031314634e-07,
+ "score_p50": -0.17979241907596588,
+ "score_p90": 1.5806589126586914,
+ "fraction_gt1": 0.1717062634989201,
+ "n_inside": 413,
+ "n_interface": 372,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3125,
+ "step": 4,
+ "n_elem": 926,
+ "target_elements": 8000,
+ "gap": 7074,
+ "cutoff_score": 1.7468284368515015,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0601136684417725,
+ "score_mean": -1.682954717807661e-07,
+ "score_p50": 0.0037664473056793213,
+ "score_p90": 1.3119899034500122,
+ "fraction_gt1": 0.125,
+ "n_inside": 563,
+ "n_interface": 384,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666674,
+ "selected_y_range": 0.375,
+ "step": 5,
+ "n_elem": 1088,
+ "target_elements": 8000,
+ "gap": 6912,
+ "cutoff_score": 1.9481639862060547,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2243943214416504,
+ "score_mean": -1.8984496819030028e-07,
+ "score_p50": 0.12841060757637024,
+ "score_p90": 1.211281180381775,
+ "fraction_gt1": 0.11586314152410575,
+ "n_inside": 722,
+ "n_interface": 423,
+ "n_outside": 141,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666674,
+ "selected_y_range": 0.375,
+ "step": 6,
+ "n_elem": 1286,
+ "target_elements": 8000,
+ "gap": 6714,
+ "cutoff_score": 1.7146155834197998,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.8879616260528564,
+ "score_mean": 8.23686292505954e-08,
+ "score_p50": -0.07061918079853058,
+ "score_p90": 1.1504757404327393,
+ "fraction_gt1": 0.11538461538461539,
+ "n_inside": 875,
+ "n_interface": 466,
+ "n_outside": 141,
+ "selected_inside_frac": 0.25,
+ "selected_interface_frac": 0.75,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5833333333333333,
+ "step": 7,
+ "n_elem": 1482,
+ "target_elements": 8000,
+ "gap": 6518,
+ "cutoff_score": 1.5776201486587524,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.717158555984497,
+ "score_mean": 1.0608659550825905e-07,
+ "score_p50": -0.23954835534095764,
+ "score_p90": 0.7669773101806641,
+ "fraction_gt1": 0.07068366164542295,
+ "n_inside": 954,
+ "n_interface": 631,
+ "n_outside": 141,
+ "selected_inside_frac": 0.9803921568627451,
+ "selected_interface_frac": 0.0196078431372549,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.328125,
+ "selected_y_range": 0.4739583333333333,
+ "step": 8,
+ "n_elem": 1726,
+ "target_elements": 8000,
+ "gap": 6274,
+ "cutoff_score": 1.5749552249908447,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8140877485275269,
+ "score_mean": 3.054812580671751e-08,
+ "score_p50": -0.22163057327270508,
+ "score_p90": 0.9388144612312317,
+ "fraction_gt1": 0.07307307307307308,
+ "n_inside": 1172,
+ "n_interface": 685,
+ "n_outside": 141,
+ "selected_inside_frac": 0.7288135593220338,
+ "selected_interface_frac": 0.2711864406779661,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43229166666666674,
+ "selected_y_range": 0.6354166666666667,
+ "step": 9,
+ "n_elem": 1998,
+ "target_elements": 8000,
+ "gap": 6002,
+ "cutoff_score": 1.2373920679092407,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.895945429801941,
+ "score_mean": -5.286717907893035e-08,
+ "score_p50": -0.15709896385669708,
+ "score_p90": 1.0141648054122925,
+ "fraction_gt1": 0.10524036379385016,
+ "n_inside": 1391,
+ "n_interface": 777,
+ "n_outside": 141,
+ "selected_inside_frac": 0.927536231884058,
+ "selected_interface_frac": 0.07246376811594203,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.5625,
+ "step": 10,
+ "n_elem": 2309,
+ "target_elements": 8000,
+ "gap": 5691,
+ "cutoff_score": 1.2756150960922241,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9989159107208252,
+ "score_mean": 2.2833953394751916e-08,
+ "score_p50": -0.35405856370925903,
+ "score_p90": 1.0268917083740234,
+ "fraction_gt1": 0.10549943883277217,
+ "n_inside": 1714,
+ "n_interface": 818,
+ "n_outside": 141,
+ "selected_inside_frac": 0.825,
+ "selected_interface_frac": 0.175,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.625,
+ "step": 11,
+ "n_elem": 2673,
+ "target_elements": 8000,
+ "gap": 5327,
+ "cutoff_score": 1.3504923582077026,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.200002908706665,
+ "score_mean": 1.9370091308701376e-08,
+ "score_p50": -0.2756069600582123,
+ "score_p90": 1.1355462074279785,
+ "fraction_gt1": 0.16915264995239607,
+ "n_inside": 2074,
+ "n_interface": 936,
+ "n_outside": 141,
+ "selected_inside_frac": 0.7553191489361702,
+ "selected_interface_frac": 0.24468085106382978,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.71875,
+ "step": 12,
+ "n_elem": 3151,
+ "target_elements": 8000,
+ "gap": 4849,
+ "cutoff_score": 1.3586466312408447,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0335183143615723,
+ "score_mean": -1.3272118337681604e-07,
+ "score_p50": -0.25736892223358154,
+ "score_p90": 1.21140456199646,
+ "fraction_gt1": 0.15275890187550964,
+ "n_inside": 2429,
+ "n_interface": 1109,
+ "n_outside": 141,
+ "selected_inside_frac": 0.21818181818181817,
+ "selected_interface_frac": 0.3181818181818182,
+ "selected_outside_frac": 0.4636363636363636,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 13,
+ "n_elem": 3679,
+ "target_elements": 8000,
+ "gap": 4321,
+ "cutoff_score": 1.4712620973587036,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.060875177383423,
+ "score_mean": -7.273016677800115e-08,
+ "score_p50": -0.07235123217105865,
+ "score_p90": 1.124563217163086,
+ "fraction_gt1": 0.1303622497616778,
+ "n_inside": 2590,
+ "n_interface": 1269,
+ "n_outside": 337,
+ "selected_inside_frac": 0.208,
+ "selected_interface_frac": 0.248,
+ "selected_outside_frac": 0.544,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.890625,
+ "step": 14,
+ "n_elem": 4196,
+ "target_elements": 8000,
+ "gap": 3804,
+ "cutoff_score": 1.5779080390930176,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.193061590194702,
+ "score_mean": -1.6972343530596845e-07,
+ "score_p50": 0.0560888946056366,
+ "score_p90": 1.1033987998962402,
+ "fraction_gt1": 0.15401069518716579,
+ "n_inside": 2735,
+ "n_interface": 1394,
+ "n_outside": 546,
+ "selected_inside_frac": 0.6714285714285714,
+ "selected_interface_frac": 0.32857142857142857,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333334,
+ "selected_y_range": 0.6458333333333334,
+ "step": 15,
+ "n_elem": 4675,
+ "target_elements": 8000,
+ "gap": 3325,
+ "cutoff_score": 1.4423476457595825,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.8063194751739502,
+ "score_mean": -1.3230994966306753e-07,
+ "score_p50": 0.08450604975223541,
+ "score_p90": 1.1684356927871704,
+ "fraction_gt1": 0.1360980207351555,
+ "n_inside": 3104,
+ "n_interface": 1655,
+ "n_outside": 546,
+ "selected_inside_frac": 0.3710691823899371,
+ "selected_interface_frac": 0.6289308176100629,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.6041666666666667,
+ "step": 16,
+ "n_elem": 5305,
+ "target_elements": 8000,
+ "gap": 2695,
+ "cutoff_score": 1.2358832359313965,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.5464836359024048,
+ "score_mean": -1.3162856760118302e-07,
+ "score_p50": 0.06207568943500519,
+ "score_p90": 1.2134757041931152,
+ "fraction_gt1": 0.11745189117451892,
+ "n_inside": 3382,
+ "n_interface": 2100,
+ "n_outside": 546,
+ "selected_inside_frac": 0.9777777777777777,
+ "selected_interface_frac": 0.022222222222222223,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.5390625,
+ "step": 17,
+ "n_elem": 6028,
+ "target_elements": 8000,
+ "gap": 1972,
+ "cutoff_score": 1.3679169416427612,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.7239474058151245,
+ "score_mean": -8.933717055015222e-08,
+ "score_p50": -0.22886624932289124,
+ "score_p90": 0.9911494255065918,
+ "fraction_gt1": 0.09997072599531616,
+ "n_inside": 4156,
+ "n_interface": 2130,
+ "n_outside": 546,
+ "selected_inside_frac": 0.9852941176470589,
+ "selected_interface_frac": 0.004901960784313725,
+ "selected_outside_frac": 0.00980392156862745,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.6536458333333334,
+ "step": 18,
+ "n_elem": 6832,
+ "target_elements": 8000,
+ "gap": 1168,
+ "cutoff_score": 1.5330246686935425,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.093944787979126,
+ "score_mean": 1.0922819626557612e-07,
+ "score_p50": -0.2652749717235565,
+ "score_p90": 1.0058183670043945,
+ "fraction_gt1": 0.10060079253483319,
+ "n_inside": 5035,
+ "n_interface": 2232,
+ "n_outside": 556,
+ "selected_inside_frac": 0.5932203389830508,
+ "selected_interface_frac": 0.3389830508474576,
+ "selected_outside_frac": 0.06779661016949153,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.6041666666666667,
+ "step": 19,
+ "n_elem": 7823,
+ "target_elements": 8000,
+ "gap": 177,
+ "cutoff_score": 1.7166601419448853,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 39,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.11353811030365916,
+ "max_err": 0.2095941828337115,
+ "actual_elements": 2020,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.7127212882041931,
+ "score_mean": 0.32071077823638916,
+ "score_p50": 0.306427001953125,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 18,
+ "n_interface": 199,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18750000000000003,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.7127212882041931,
+ "num_tied_at_cutoff": 18,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.5039700269699097,
+ "score_mean": 0.30268266797065735,
+ "score_p50": 0.306427001953125,
+ "score_p90": 0.35636064410209656,
+ "fraction_gt1": 0.0,
+ "n_inside": 67,
+ "n_interface": 230,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18750000000000003,
+ "selected_y_range": 0.18749999999999994,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 2000,
+ "gap": 1408,
+ "cutoff_score": 0.35636064410209656,
+ "num_tied_at_cutoff": 65,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35636064410209656,
+ "score_mean": 0.260710746049881,
+ "score_p50": 0.306427001953125,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 146,
+ "n_interface": 307,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.10416666666666666,
+ "selected_y_range": 0.13541666666666663,
+ "step": 2,
+ "n_elem": 748,
+ "target_elements": 2000,
+ "gap": 1252,
+ "cutoff_score": 0.35636064410209656,
+ "num_tied_at_cutoff": 24,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.24431324005126953,
+ "score_p50": 0.306427001953125,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 307,
+ "n_outside": 295,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.39583333333333326,
+ "step": 3,
+ "n_elem": 846,
+ "target_elements": 2000,
+ "gap": 1154,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 464,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.22366370260715485,
+ "score_p50": 0.17818032205104828,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 453,
+ "n_outside": 295,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 992,
+ "target_elements": 2000,
+ "gap": 1008,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 408,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.2071027308702469,
+ "score_p50": 0.17818032205104828,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 612,
+ "n_outside": 295,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.6875,
+ "step": 5,
+ "n_elem": 1151,
+ "target_elements": 2000,
+ "gap": 849,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 348,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.1928219497203827,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 776,
+ "n_outside": 315,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.05,
+ "selected_outside_frac": 0.95,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1335,
+ "target_elements": 2000,
+ "gap": 665,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 280,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.18033725023269653,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 804,
+ "n_outside": 503,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1551,
+ "target_elements": 2000,
+ "gap": 449,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 202,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.17012138664722443,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.21667660772800446,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 804,
+ "n_outside": 739,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.39583333333333326,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1787,
+ "target_elements": 2000,
+ "gap": 213,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 118,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 44,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10216211675239562,
+ "max_err": 0.1930445832862504,
+ "actual_elements": 2029,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9939823746681213,
+ "score_mean": 0.08061596751213074,
+ "score_p50": 4.2814218659259495e-07,
+ "score_p90": 0.09329056739807129,
+ "fraction_gt1": 0.0,
+ "n_inside": 18,
+ "n_interface": 199,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333334,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9825787544250488,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9872072339057922,
+ "score_mean": 0.12527936697006226,
+ "score_p50": 4.497484951571096e-06,
+ "score_p90": 0.7494838237762451,
+ "fraction_gt1": 0.0,
+ "n_inside": 66,
+ "n_interface": 225,
+ "n_outside": 295,
+ "selected_inside_frac": 0.8235294117647058,
+ "selected_interface_frac": 0.17647058823529413,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.11458333333333337,
+ "selected_y_range": 0.15625000000000006,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 2000,
+ "gap": 1414,
+ "cutoff_score": 0.9506141543388367,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9895283579826355,
+ "score_mean": 0.13366565108299255,
+ "score_p50": 6.838537228759378e-05,
+ "score_p90": 0.8069367408752441,
+ "fraction_gt1": 0.0,
+ "n_inside": 118,
+ "n_interface": 259,
+ "n_outside": 295,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333337,
+ "selected_y_range": 0.3333333333333333,
+ "step": 2,
+ "n_elem": 672,
+ "target_elements": 2000,
+ "gap": 1328,
+ "cutoff_score": 0.9757600426673889,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9944663643836975,
+ "score_mean": 0.12779290974140167,
+ "score_p50": 0.0011406398843973875,
+ "score_p90": 0.6417492628097534,
+ "fraction_gt1": 0.0,
+ "n_inside": 173,
+ "n_interface": 328,
+ "n_outside": 295,
+ "selected_inside_frac": 0.17391304347826086,
+ "selected_interface_frac": 0.6086956521739131,
+ "selected_outside_frac": 0.21739130434782608,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.4375,
+ "step": 3,
+ "n_elem": 796,
+ "target_elements": 2000,
+ "gap": 1204,
+ "cutoff_score": 0.9566822648048401,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9895942211151123,
+ "score_mean": 0.14883719384670258,
+ "score_p50": 0.0029740515165030956,
+ "score_p90": 0.6673248410224915,
+ "fraction_gt1": 0.0,
+ "n_inside": 197,
+ "n_interface": 402,
+ "n_outside": 323,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.5185185185185185,
+ "selected_outside_frac": 0.48148148148148145,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.5,
+ "step": 4,
+ "n_elem": 922,
+ "target_elements": 2000,
+ "gap": 1078,
+ "cutoff_score": 0.9266366362571716,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9882323145866394,
+ "score_mean": 0.18761444091796875,
+ "score_p50": 0.00376064982265234,
+ "score_p90": 0.8055471181869507,
+ "fraction_gt1": 0.0,
+ "n_inside": 197,
+ "n_interface": 475,
+ "n_outside": 396,
+ "selected_inside_frac": 0.1875,
+ "selected_interface_frac": 0.125,
+ "selected_outside_frac": 0.6875,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.6666666666666667,
+ "step": 5,
+ "n_elem": 1068,
+ "target_elements": 2000,
+ "gap": 932,
+ "cutoff_score": 0.9287186861038208,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9886175990104675,
+ "score_mean": 0.201606884598732,
+ "score_p50": 0.0008536590030416846,
+ "score_p90": 0.8568704128265381,
+ "fraction_gt1": 0.0,
+ "n_inside": 236,
+ "n_interface": 514,
+ "n_outside": 520,
+ "selected_inside_frac": 0.47368421052631576,
+ "selected_interface_frac": 0.21052631578947367,
+ "selected_outside_frac": 0.3157894736842105,
+ "selected_x_range": 0.609375,
+ "selected_y_range": 0.38541666666666674,
+ "step": 6,
+ "n_elem": 1270,
+ "target_elements": 2000,
+ "gap": 730,
+ "cutoff_score": 0.9547663927078247,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9916943907737732,
+ "score_mean": 0.19746661186218262,
+ "score_p50": 0.000638054043520242,
+ "score_p90": 0.8675277233123779,
+ "fraction_gt1": 0.0,
+ "n_inside": 339,
+ "n_interface": 569,
+ "n_outside": 578,
+ "selected_inside_frac": 0.06818181818181818,
+ "selected_interface_frac": 0.4090909090909091,
+ "selected_outside_frac": 0.5227272727272727,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.875,
+ "step": 7,
+ "n_elem": 1486,
+ "target_elements": 2000,
+ "gap": 514,
+ "cutoff_score": 0.9580462574958801,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9882163405418396,
+ "score_mean": 0.1589808464050293,
+ "score_p50": 0.00029409368289634585,
+ "score_p90": 0.8249896764755249,
+ "fraction_gt1": 0.0,
+ "n_inside": 362,
+ "n_interface": 678,
+ "n_outside": 695,
+ "selected_inside_frac": 0.46153846153846156,
+ "selected_interface_frac": 0.2692307692307692,
+ "selected_outside_frac": 0.2692307692307692,
+ "selected_x_range": 0.7760416666666667,
+ "selected_y_range": 0.5729166666666666,
+ "step": 8,
+ "n_elem": 1735,
+ "target_elements": 2000,
+ "gap": 265,
+ "cutoff_score": 0.9486973881721497,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 44,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.09673878787009266,
+ "max_err": 0.19177123679485003,
+ "actual_elements": 2060,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 4.410201072692871,
+ "score_mean": 5.21540641784668e-08,
+ "score_p50": -0.25350478291511536,
+ "score_p90": -0.07059170305728912,
+ "fraction_gt1": 0.078125,
+ "n_inside": 18,
+ "n_interface": 199,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333334,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 4.387842178344727,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.842072010040283,
+ "score_mean": 6.509722538794449e-08,
+ "score_p50": -0.1892957091331482,
+ "score_p90": 1.3641932010650635,
+ "fraction_gt1": 0.11945392491467577,
+ "n_inside": 66,
+ "n_interface": 225,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666669,
+ "selected_y_range": 0.125,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 2000,
+ "gap": 1414,
+ "cutoff_score": 2.149293899536133,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.027416944503784,
+ "score_mean": 1.4585607743811124e-07,
+ "score_p50": 0.011823423206806183,
+ "score_p90": 1.1123102903366089,
+ "fraction_gt1": 0.10588235294117647,
+ "n_inside": 134,
+ "n_interface": 251,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.09375000000000003,
+ "selected_y_range": 0.18749999999999994,
+ "step": 2,
+ "n_elem": 680,
+ "target_elements": 2000,
+ "gap": 1320,
+ "cutoff_score": 1.9341182708740234,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.768527626991272,
+ "score_mean": -1.936394511403705e-08,
+ "score_p50": 0.13827747106552124,
+ "score_p90": 1.2296746969223022,
+ "fraction_gt1": 0.11421319796954314,
+ "n_inside": 218,
+ "n_interface": 275,
+ "n_outside": 295,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25000000000000006,
+ "selected_y_range": 0.31249999999999994,
+ "step": 3,
+ "n_elem": 788,
+ "target_elements": 2000,
+ "gap": 1212,
+ "cutoff_score": 1.7632741928100586,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0497100353240967,
+ "score_mean": 3.3908420959960495e-08,
+ "score_p50": 0.21960437297821045,
+ "score_p90": 1.1731747388839722,
+ "fraction_gt1": 0.12,
+ "n_inside": 218,
+ "n_interface": 383,
+ "n_outside": 299,
+ "selected_inside_frac": 0.037037037037037035,
+ "selected_interface_frac": 0.37037037037037035,
+ "selected_outside_frac": 0.5925925925925926,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 900,
+ "target_elements": 2000,
+ "gap": 1100,
+ "cutoff_score": 1.9040555953979492,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1225223541259766,
+ "score_mean": 0.0,
+ "score_p50": -0.29663342237472534,
+ "score_p90": 1.1565029621124268,
+ "fraction_gt1": 0.11164122137404581,
+ "n_inside": 225,
+ "n_interface": 446,
+ "n_outside": 377,
+ "selected_inside_frac": 0.06451612903225806,
+ "selected_interface_frac": 0.16129032258064516,
+ "selected_outside_frac": 0.7741935483870968,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.625,
+ "step": 5,
+ "n_elem": 1048,
+ "target_elements": 2000,
+ "gap": 952,
+ "cutoff_score": 1.8601932525634766,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.075829029083252,
+ "score_mean": 4.978397782906541e-08,
+ "score_p50": -0.18682371079921722,
+ "score_p90": 1.0197422504425049,
+ "fraction_gt1": 0.10929853181076672,
+ "n_inside": 235,
+ "n_interface": 484,
+ "n_outside": 507,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.1388888888888889,
+ "selected_outside_frac": 0.8611111111111112,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1226,
+ "target_elements": 2000,
+ "gap": 774,
+ "cutoff_score": 1.8090312480926514,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.171532392501831,
+ "score_mean": -1.931492334961149e-07,
+ "score_p50": -0.24114197492599487,
+ "score_p90": 1.0340254306793213,
+ "fraction_gt1": 0.11040787623066103,
+ "n_inside": 235,
+ "n_interface": 516,
+ "n_outside": 671,
+ "selected_inside_frac": 0.23809523809523808,
+ "selected_interface_frac": 0.19047619047619047,
+ "selected_outside_frac": 0.5714285714285714,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1422,
+ "target_elements": 2000,
+ "gap": 578,
+ "cutoff_score": 1.6863853931427002,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.407534122467041,
+ "score_mean": -1.2907736390843638e-07,
+ "score_p50": -0.49314600229263306,
+ "score_p90": 1.107820749282837,
+ "fraction_gt1": 0.16555891238670695,
+ "n_inside": 289,
+ "n_interface": 582,
+ "n_outside": 784,
+ "selected_inside_frac": 0.24489795918367346,
+ "selected_interface_frac": 0.42857142857142855,
+ "selected_outside_frac": 0.32653061224489793,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1655,
+ "target_elements": 2000,
+ "gap": 345,
+ "cutoff_score": 1.5136635303497314,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3948936462402344,
+ "score_mean": -1.586152720278733e-08,
+ "score_p50": -0.37526828050613403,
+ "score_p90": 1.3158540725708008,
+ "fraction_gt1": 0.14864864864864866,
+ "n_inside": 341,
+ "n_interface": 725,
+ "n_outside": 858,
+ "selected_inside_frac": 0.08,
+ "selected_interface_frac": 0.8,
+ "selected_outside_frac": 0.12,
+ "selected_x_range": 0.6979166666666667,
+ "selected_y_range": 0.75,
+ "step": 9,
+ "n_elem": 1924,
+ "target_elements": 2000,
+ "gap": 76,
+ "cutoff_score": 1.611389398574829,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 44,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.07751626977161621,
+ "max_err": 0.17476117955621895,
+ "actual_elements": 4108,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.7127212882041931,
+ "score_mean": 0.32071077823638916,
+ "score_p50": 0.306427001953125,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 18,
+ "n_interface": 199,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18750000000000003,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.7127212882041931,
+ "num_tied_at_cutoff": 18,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.5039700269699097,
+ "score_mean": 0.30268266797065735,
+ "score_p50": 0.306427001953125,
+ "score_p90": 0.35636064410209656,
+ "fraction_gt1": 0.0,
+ "n_inside": 67,
+ "n_interface": 230,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18750000000000003,
+ "selected_y_range": 0.18749999999999994,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 4000,
+ "gap": 3408,
+ "cutoff_score": 0.35636064410209656,
+ "num_tied_at_cutoff": 65,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35636064410209656,
+ "score_mean": 0.260710746049881,
+ "score_p50": 0.306427001953125,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 146,
+ "n_interface": 307,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.10416666666666666,
+ "selected_y_range": 0.13541666666666663,
+ "step": 2,
+ "n_elem": 748,
+ "target_elements": 4000,
+ "gap": 3252,
+ "cutoff_score": 0.35636064410209656,
+ "num_tied_at_cutoff": 24,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.24431324005126953,
+ "score_p50": 0.306427001953125,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 307,
+ "n_outside": 295,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.39583333333333326,
+ "step": 3,
+ "n_elem": 846,
+ "target_elements": 4000,
+ "gap": 3154,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 464,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.22366370260715485,
+ "score_p50": 0.17818032205104828,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 453,
+ "n_outside": 295,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 992,
+ "target_elements": 4000,
+ "gap": 3008,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 408,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.2071027308702469,
+ "score_p50": 0.17818032205104828,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 612,
+ "n_outside": 295,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.6875,
+ "step": 5,
+ "n_elem": 1151,
+ "target_elements": 4000,
+ "gap": 2849,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 348,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.1928219497203827,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 776,
+ "n_outside": 315,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.05,
+ "selected_outside_frac": 0.95,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1335,
+ "target_elements": 4000,
+ "gap": 2665,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 280,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.18033725023269653,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 804,
+ "n_outside": 503,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1551,
+ "target_elements": 4000,
+ "gap": 2449,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 202,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.17012138664722443,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.21667660772800446,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 804,
+ "n_outside": 739,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.39583333333333326,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1787,
+ "target_elements": 4000,
+ "gap": 2213,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 118,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.16236001253128052,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.21667660772800446,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 804,
+ "n_outside": 972,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.6,
+ "selected_x_range": 0.8177083333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 2020,
+ "target_elements": 4000,
+ "gap": 1980,
+ "cutoff_score": 0.25198501348495483,
+ "num_tied_at_cutoff": 31,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25198501348495483,
+ "score_mean": 0.15355539321899414,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.17818032205104828,
+ "fraction_gt1": 0.0,
+ "n_inside": 355,
+ "n_interface": 833,
+ "n_outside": 1096,
+ "selected_inside_frac": 0.029411764705882353,
+ "selected_interface_frac": 0.7352941176470589,
+ "selected_outside_frac": 0.23529411764705882,
+ "selected_x_range": 0.7083333333333334,
+ "selected_y_range": 0.8333333333333334,
+ "step": 10,
+ "n_elem": 2284,
+ "target_elements": 4000,
+ "gap": 1716,
+ "cutoff_score": 0.21667660772800446,
+ "num_tied_at_cutoff": 124,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21667660772800446,
+ "score_mean": 0.14315208792686462,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.1532135009765625,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 1058,
+ "n_outside": 1184,
+ "selected_inside_frac": 0.2948717948717949,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.7051282051282052,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2607,
+ "target_elements": 4000,
+ "gap": 1393,
+ "cutoff_score": 0.17818032205104828,
+ "num_tied_at_cutoff": 180,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17818032205104828,
+ "score_mean": 0.13125964999198914,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.1532135009765625,
+ "fraction_gt1": 0.0,
+ "n_inside": 467,
+ "n_interface": 1152,
+ "n_outside": 1425,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16145833333333334,
+ "selected_y_range": 0.17187499999999994,
+ "step": 12,
+ "n_elem": 3044,
+ "target_elements": 4000,
+ "gap": 956,
+ "cutoff_score": 0.17818032205104828,
+ "num_tied_at_cutoff": 132,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17818032205104828,
+ "score_mean": 0.12319972366094589,
+ "score_p50": 0.12599250674247742,
+ "score_p90": 0.1532135009765625,
+ "fraction_gt1": 0.0,
+ "n_inside": 837,
+ "n_interface": 1164,
+ "n_outside": 1425,
+ "selected_inside_frac": 0.13725490196078433,
+ "selected_interface_frac": 0.8627450980392157,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.36458333333333326,
+ "step": 13,
+ "n_elem": 3426,
+ "target_elements": 4000,
+ "gap": 574,
+ "cutoff_score": 0.1532135009765625,
+ "num_tied_at_cutoff": 1500,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1532135009765625,
+ "score_mean": 0.11509677767753601,
+ "score_p50": 0.10833830386400223,
+ "score_p90": 0.1532135009765625,
+ "fraction_gt1": 0.0,
+ "n_inside": 893,
+ "n_interface": 1550,
+ "n_outside": 1425,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.41666666666666674,
+ "step": 14,
+ "n_elem": 3868,
+ "target_elements": 4000,
+ "gap": 132,
+ "cutoff_score": 0.1532135009765625,
+ "num_tied_at_cutoff": 1362,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 44,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.08044989758857843,
+ "max_err": 0.17274478129313942,
+ "actual_elements": 4108,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9939823746681213,
+ "score_mean": 0.08061596751213074,
+ "score_p50": 4.2814218659259495e-07,
+ "score_p90": 0.09329056739807129,
+ "fraction_gt1": 0.0,
+ "n_inside": 18,
+ "n_interface": 199,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333334,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9825787544250488,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9872072339057922,
+ "score_mean": 0.12527936697006226,
+ "score_p50": 4.497484951571096e-06,
+ "score_p90": 0.7494838237762451,
+ "fraction_gt1": 0.0,
+ "n_inside": 66,
+ "n_interface": 225,
+ "n_outside": 295,
+ "selected_inside_frac": 0.8235294117647058,
+ "selected_interface_frac": 0.17647058823529413,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.11458333333333337,
+ "selected_y_range": 0.15625000000000006,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 4000,
+ "gap": 3414,
+ "cutoff_score": 0.9506141543388367,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9895283579826355,
+ "score_mean": 0.13366565108299255,
+ "score_p50": 6.838537228759378e-05,
+ "score_p90": 0.8069367408752441,
+ "fraction_gt1": 0.0,
+ "n_inside": 118,
+ "n_interface": 259,
+ "n_outside": 295,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333337,
+ "selected_y_range": 0.3333333333333333,
+ "step": 2,
+ "n_elem": 672,
+ "target_elements": 4000,
+ "gap": 3328,
+ "cutoff_score": 0.9757600426673889,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9944663643836975,
+ "score_mean": 0.12779290974140167,
+ "score_p50": 0.0011406398843973875,
+ "score_p90": 0.6417492628097534,
+ "fraction_gt1": 0.0,
+ "n_inside": 173,
+ "n_interface": 328,
+ "n_outside": 295,
+ "selected_inside_frac": 0.17391304347826086,
+ "selected_interface_frac": 0.6086956521739131,
+ "selected_outside_frac": 0.21739130434782608,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.4375,
+ "step": 3,
+ "n_elem": 796,
+ "target_elements": 4000,
+ "gap": 3204,
+ "cutoff_score": 0.9566822648048401,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9895942211151123,
+ "score_mean": 0.14883719384670258,
+ "score_p50": 0.0029740515165030956,
+ "score_p90": 0.6673248410224915,
+ "fraction_gt1": 0.0,
+ "n_inside": 197,
+ "n_interface": 402,
+ "n_outside": 323,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.5185185185185185,
+ "selected_outside_frac": 0.48148148148148145,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.5,
+ "step": 4,
+ "n_elem": 922,
+ "target_elements": 4000,
+ "gap": 3078,
+ "cutoff_score": 0.9266366362571716,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9882323145866394,
+ "score_mean": 0.18761444091796875,
+ "score_p50": 0.00376064982265234,
+ "score_p90": 0.8055471181869507,
+ "fraction_gt1": 0.0,
+ "n_inside": 197,
+ "n_interface": 475,
+ "n_outside": 396,
+ "selected_inside_frac": 0.1875,
+ "selected_interface_frac": 0.125,
+ "selected_outside_frac": 0.6875,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.6666666666666667,
+ "step": 5,
+ "n_elem": 1068,
+ "target_elements": 4000,
+ "gap": 2932,
+ "cutoff_score": 0.9287186861038208,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9886175990104675,
+ "score_mean": 0.201606884598732,
+ "score_p50": 0.0008536590030416846,
+ "score_p90": 0.8568704128265381,
+ "fraction_gt1": 0.0,
+ "n_inside": 236,
+ "n_interface": 514,
+ "n_outside": 520,
+ "selected_inside_frac": 0.47368421052631576,
+ "selected_interface_frac": 0.21052631578947367,
+ "selected_outside_frac": 0.3157894736842105,
+ "selected_x_range": 0.609375,
+ "selected_y_range": 0.38541666666666674,
+ "step": 6,
+ "n_elem": 1270,
+ "target_elements": 4000,
+ "gap": 2730,
+ "cutoff_score": 0.9547663927078247,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9916943907737732,
+ "score_mean": 0.19746661186218262,
+ "score_p50": 0.000638054043520242,
+ "score_p90": 0.8675277233123779,
+ "fraction_gt1": 0.0,
+ "n_inside": 339,
+ "n_interface": 569,
+ "n_outside": 578,
+ "selected_inside_frac": 0.06818181818181818,
+ "selected_interface_frac": 0.4090909090909091,
+ "selected_outside_frac": 0.5227272727272727,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.875,
+ "step": 7,
+ "n_elem": 1486,
+ "target_elements": 4000,
+ "gap": 2514,
+ "cutoff_score": 0.9580462574958801,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9882163405418396,
+ "score_mean": 0.1589808464050293,
+ "score_p50": 0.00029409368289634585,
+ "score_p90": 0.8249896764755249,
+ "fraction_gt1": 0.0,
+ "n_inside": 362,
+ "n_interface": 678,
+ "n_outside": 695,
+ "selected_inside_frac": 0.46153846153846156,
+ "selected_interface_frac": 0.2692307692307692,
+ "selected_outside_frac": 0.2692307692307692,
+ "selected_x_range": 0.7760416666666667,
+ "selected_y_range": 0.5729166666666666,
+ "step": 8,
+ "n_elem": 1735,
+ "target_elements": 4000,
+ "gap": 2265,
+ "cutoff_score": 0.9486973881721497,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.987865149974823,
+ "score_mean": 0.13605302572250366,
+ "score_p50": 0.00048456466174684465,
+ "score_p90": 0.6762772798538208,
+ "fraction_gt1": 0.0,
+ "n_inside": 499,
+ "n_interface": 762,
+ "n_outside": 768,
+ "selected_inside_frac": 0.48333333333333334,
+ "selected_interface_frac": 0.31666666666666665,
+ "selected_outside_frac": 0.2,
+ "selected_x_range": 0.8541666666666667,
+ "selected_y_range": 0.9375,
+ "step": 9,
+ "n_elem": 2029,
+ "target_elements": 4000,
+ "gap": 1971,
+ "cutoff_score": 0.9216267466545105,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9842798709869385,
+ "score_mean": 0.11880436539649963,
+ "score_p50": 0.0013920895289629698,
+ "score_p90": 0.5852997303009033,
+ "fraction_gt1": 0.0,
+ "n_inside": 642,
+ "n_interface": 880,
+ "n_outside": 845,
+ "selected_inside_frac": 0.08450704225352113,
+ "selected_interface_frac": 0.7887323943661971,
+ "selected_outside_frac": 0.1267605633802817,
+ "selected_x_range": 0.8541666666666667,
+ "selected_y_range": 0.875,
+ "step": 10,
+ "n_elem": 2367,
+ "target_elements": 4000,
+ "gap": 1633,
+ "cutoff_score": 0.908531129360199,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9946860074996948,
+ "score_mean": 0.12993460893630981,
+ "score_p50": 0.0023980936966836452,
+ "score_p90": 0.5793894529342651,
+ "fraction_gt1": 0.0,
+ "n_inside": 683,
+ "n_interface": 1169,
+ "n_outside": 917,
+ "selected_inside_frac": 0.1927710843373494,
+ "selected_interface_frac": 0.3855421686746988,
+ "selected_outside_frac": 0.42168674698795183,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.8229166666666667,
+ "step": 11,
+ "n_elem": 2769,
+ "target_elements": 4000,
+ "gap": 1231,
+ "cutoff_score": 0.8751580715179443,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9879676699638367,
+ "score_mean": 0.1582755446434021,
+ "score_p50": 0.0028321295976638794,
+ "score_p90": 0.712738573551178,
+ "fraction_gt1": 0.0,
+ "n_inside": 807,
+ "n_interface": 1372,
+ "n_outside": 1130,
+ "selected_inside_frac": 0.1111111111111111,
+ "selected_interface_frac": 0.29292929292929293,
+ "selected_outside_frac": 0.5959595959595959,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.9583333333333334,
+ "step": 12,
+ "n_elem": 3309,
+ "target_elements": 4000,
+ "gap": 691,
+ "cutoff_score": 0.9118451476097107,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9912353754043579,
+ "score_mean": 0.18205179274082184,
+ "score_p50": 0.0016868975944817066,
+ "score_p90": 0.8144252300262451,
+ "fraction_gt1": 0.0,
+ "n_inside": 883,
+ "n_interface": 1528,
+ "n_outside": 1514,
+ "selected_inside_frac": 0.04,
+ "selected_interface_frac": 0.24,
+ "selected_outside_frac": 0.72,
+ "selected_x_range": 0.6302083333333333,
+ "selected_y_range": 0.9375,
+ "step": 13,
+ "n_elem": 3925,
+ "target_elements": 4000,
+ "gap": 75,
+ "cutoff_score": 0.9775673151016235,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 44,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07789536199009595,
+ "max_err": 0.1744252318336773,
+ "actual_elements": 4112,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 4.410201072692871,
+ "score_mean": 5.21540641784668e-08,
+ "score_p50": -0.25350478291511536,
+ "score_p90": -0.07059170305728912,
+ "fraction_gt1": 0.078125,
+ "n_inside": 18,
+ "n_interface": 199,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333334,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 4.387842178344727,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.842072010040283,
+ "score_mean": 6.509722538794449e-08,
+ "score_p50": -0.1892957091331482,
+ "score_p90": 1.3641932010650635,
+ "fraction_gt1": 0.11945392491467577,
+ "n_inside": 66,
+ "n_interface": 225,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666669,
+ "selected_y_range": 0.125,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 4000,
+ "gap": 3414,
+ "cutoff_score": 2.149293899536133,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.027416944503784,
+ "score_mean": 1.4585607743811124e-07,
+ "score_p50": 0.011823423206806183,
+ "score_p90": 1.1123102903366089,
+ "fraction_gt1": 0.10588235294117647,
+ "n_inside": 134,
+ "n_interface": 251,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.09375000000000003,
+ "selected_y_range": 0.18749999999999994,
+ "step": 2,
+ "n_elem": 680,
+ "target_elements": 4000,
+ "gap": 3320,
+ "cutoff_score": 1.9341182708740234,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.768527626991272,
+ "score_mean": -1.936394511403705e-08,
+ "score_p50": 0.13827747106552124,
+ "score_p90": 1.2296746969223022,
+ "fraction_gt1": 0.11421319796954314,
+ "n_inside": 218,
+ "n_interface": 275,
+ "n_outside": 295,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25000000000000006,
+ "selected_y_range": 0.31249999999999994,
+ "step": 3,
+ "n_elem": 788,
+ "target_elements": 4000,
+ "gap": 3212,
+ "cutoff_score": 1.7632741928100586,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0497100353240967,
+ "score_mean": 3.3908420959960495e-08,
+ "score_p50": 0.21960437297821045,
+ "score_p90": 1.1731747388839722,
+ "fraction_gt1": 0.12,
+ "n_inside": 218,
+ "n_interface": 383,
+ "n_outside": 299,
+ "selected_inside_frac": 0.037037037037037035,
+ "selected_interface_frac": 0.37037037037037035,
+ "selected_outside_frac": 0.5925925925925926,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 900,
+ "target_elements": 4000,
+ "gap": 3100,
+ "cutoff_score": 1.9040555953979492,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1225223541259766,
+ "score_mean": 0.0,
+ "score_p50": -0.29663342237472534,
+ "score_p90": 1.1565029621124268,
+ "fraction_gt1": 0.11164122137404581,
+ "n_inside": 225,
+ "n_interface": 446,
+ "n_outside": 377,
+ "selected_inside_frac": 0.06451612903225806,
+ "selected_interface_frac": 0.16129032258064516,
+ "selected_outside_frac": 0.7741935483870968,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.625,
+ "step": 5,
+ "n_elem": 1048,
+ "target_elements": 4000,
+ "gap": 2952,
+ "cutoff_score": 1.8601932525634766,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.075829029083252,
+ "score_mean": 4.978397782906541e-08,
+ "score_p50": -0.18682371079921722,
+ "score_p90": 1.0197422504425049,
+ "fraction_gt1": 0.10929853181076672,
+ "n_inside": 235,
+ "n_interface": 484,
+ "n_outside": 507,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.1388888888888889,
+ "selected_outside_frac": 0.8611111111111112,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1226,
+ "target_elements": 4000,
+ "gap": 2774,
+ "cutoff_score": 1.8090312480926514,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.171532392501831,
+ "score_mean": -1.931492334961149e-07,
+ "score_p50": -0.24114197492599487,
+ "score_p90": 1.0340254306793213,
+ "fraction_gt1": 0.11040787623066103,
+ "n_inside": 235,
+ "n_interface": 516,
+ "n_outside": 671,
+ "selected_inside_frac": 0.23809523809523808,
+ "selected_interface_frac": 0.19047619047619047,
+ "selected_outside_frac": 0.5714285714285714,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1422,
+ "target_elements": 4000,
+ "gap": 2578,
+ "cutoff_score": 1.6863853931427002,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.407534122467041,
+ "score_mean": -1.2907736390843638e-07,
+ "score_p50": -0.49314600229263306,
+ "score_p90": 1.107820749282837,
+ "fraction_gt1": 0.16555891238670695,
+ "n_inside": 289,
+ "n_interface": 582,
+ "n_outside": 784,
+ "selected_inside_frac": 0.24489795918367346,
+ "selected_interface_frac": 0.42857142857142855,
+ "selected_outside_frac": 0.32653061224489793,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1655,
+ "target_elements": 4000,
+ "gap": 2345,
+ "cutoff_score": 1.5136635303497314,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3948936462402344,
+ "score_mean": -1.586152720278733e-08,
+ "score_p50": -0.37526828050613403,
+ "score_p90": 1.3158540725708008,
+ "fraction_gt1": 0.14864864864864866,
+ "n_inside": 341,
+ "n_interface": 725,
+ "n_outside": 858,
+ "selected_inside_frac": 0.3508771929824561,
+ "selected_interface_frac": 0.47368421052631576,
+ "selected_outside_frac": 0.17543859649122806,
+ "selected_x_range": 0.7395833333333333,
+ "selected_y_range": 0.8541666666666667,
+ "step": 9,
+ "n_elem": 1924,
+ "target_elements": 4000,
+ "gap": 2076,
+ "cutoff_score": 1.435987114906311,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.000826358795166,
+ "score_mean": -6.848648581581074e-08,
+ "score_p50": -0.24127435684204102,
+ "score_p90": 1.2534313201904297,
+ "fraction_gt1": 0.13285457809694792,
+ "n_inside": 441,
+ "n_interface": 868,
+ "n_outside": 919,
+ "selected_inside_frac": 0.25757575757575757,
+ "selected_interface_frac": 0.16666666666666666,
+ "selected_outside_frac": 0.5757575757575758,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.7604166666666666,
+ "step": 10,
+ "n_elem": 2228,
+ "target_elements": 4000,
+ "gap": 1772,
+ "cutoff_score": 1.5805377960205078,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2515077590942383,
+ "score_mean": -7.189064632484587e-08,
+ "score_p50": -0.1204209178686142,
+ "score_p90": 1.2610238790512085,
+ "fraction_gt1": 0.12249705535924617,
+ "n_inside": 543,
+ "n_interface": 923,
+ "n_outside": 1081,
+ "selected_inside_frac": 0.618421052631579,
+ "selected_interface_frac": 0.06578947368421052,
+ "selected_outside_frac": 0.3157894736842105,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.9166666666666667,
+ "step": 11,
+ "n_elem": 2547,
+ "target_elements": 4000,
+ "gap": 1453,
+ "cutoff_score": 1.6587474346160889,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.399143934249878,
+ "score_mean": 1.860827865129977e-07,
+ "score_p50": 0.04736059904098511,
+ "score_p90": 1.1027228832244873,
+ "fraction_gt1": 0.138550135501355,
+ "n_inside": 742,
+ "n_interface": 973,
+ "n_outside": 1237,
+ "selected_inside_frac": 0.07954545454545454,
+ "selected_interface_frac": 0.7045454545454546,
+ "selected_outside_frac": 0.2159090909090909,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8333333333333334,
+ "step": 12,
+ "n_elem": 2952,
+ "target_elements": 4000,
+ "gap": 1048,
+ "cutoff_score": 1.6232309341430664,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.29093861579895,
+ "score_mean": -3.624415612080156e-08,
+ "score_p50": 0.16543981432914734,
+ "score_p90": 1.1564102172851562,
+ "fraction_gt1": 0.1377672209026128,
+ "n_inside": 782,
+ "n_interface": 1243,
+ "n_outside": 1343,
+ "selected_inside_frac": 0.039603960396039604,
+ "selected_interface_frac": 0.49504950495049505,
+ "selected_outside_frac": 0.46534653465346537,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3368,
+ "target_elements": 4000,
+ "gap": 632,
+ "cutoff_score": 1.721346378326416,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5896122455596924,
+ "score_mean": -6.27933687269433e-08,
+ "score_p50": -0.3668113350868225,
+ "score_p90": 1.2268959283828735,
+ "fraction_gt1": 0.1309156378600823,
+ "n_inside": 800,
+ "n_interface": 1507,
+ "n_outside": 1581,
+ "selected_inside_frac": 0.16216216216216217,
+ "selected_interface_frac": 0.13513513513513514,
+ "selected_outside_frac": 0.7027027027027027,
+ "selected_x_range": 0.7395833333333334,
+ "selected_y_range": 0.9166666666666667,
+ "step": 14,
+ "n_elem": 3888,
+ "target_elements": 4000,
+ "gap": 112,
+ "cutoff_score": 1.7982604503631592,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 44,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07468565864758103,
+ "max_err": 0.17929259004407405,
+ "actual_elements": 8072,
+ "num_steps": 21,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.7127212882041931,
+ "score_mean": 0.32071077823638916,
+ "score_p50": 0.306427001953125,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 18,
+ "n_interface": 199,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18750000000000003,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.7127212882041931,
+ "num_tied_at_cutoff": 18,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.5039700269699097,
+ "score_mean": 0.30268266797065735,
+ "score_p50": 0.306427001953125,
+ "score_p90": 0.35636064410209656,
+ "fraction_gt1": 0.0,
+ "n_inside": 67,
+ "n_interface": 230,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18750000000000003,
+ "selected_y_range": 0.18749999999999994,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 8000,
+ "gap": 7408,
+ "cutoff_score": 0.35636064410209656,
+ "num_tied_at_cutoff": 65,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35636064410209656,
+ "score_mean": 0.260710746049881,
+ "score_p50": 0.306427001953125,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 146,
+ "n_interface": 307,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.10416666666666666,
+ "selected_y_range": 0.13541666666666663,
+ "step": 2,
+ "n_elem": 748,
+ "target_elements": 8000,
+ "gap": 7252,
+ "cutoff_score": 0.35636064410209656,
+ "num_tied_at_cutoff": 24,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.24431324005126953,
+ "score_p50": 0.306427001953125,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 307,
+ "n_outside": 295,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.39583333333333326,
+ "step": 3,
+ "n_elem": 846,
+ "target_elements": 8000,
+ "gap": 7154,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 464,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.22366370260715485,
+ "score_p50": 0.17818032205104828,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 453,
+ "n_outside": 295,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 992,
+ "target_elements": 8000,
+ "gap": 7008,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 408,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.2071027308702469,
+ "score_p50": 0.17818032205104828,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 612,
+ "n_outside": 295,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.6875,
+ "step": 5,
+ "n_elem": 1151,
+ "target_elements": 8000,
+ "gap": 6849,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 348,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.1928219497203827,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 776,
+ "n_outside": 315,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.05,
+ "selected_outside_frac": 0.95,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1335,
+ "target_elements": 8000,
+ "gap": 6665,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 280,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.18033725023269653,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.306427001953125,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 804,
+ "n_outside": 503,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1551,
+ "target_elements": 8000,
+ "gap": 6449,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 202,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.17012138664722443,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.21667660772800446,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 804,
+ "n_outside": 739,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.39583333333333326,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1787,
+ "target_elements": 8000,
+ "gap": 6213,
+ "cutoff_score": 0.306427001953125,
+ "num_tied_at_cutoff": 118,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.306427001953125,
+ "score_mean": 0.16236001253128052,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.21667660772800446,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 804,
+ "n_outside": 972,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.6,
+ "selected_x_range": 0.8177083333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 2020,
+ "target_elements": 8000,
+ "gap": 5980,
+ "cutoff_score": 0.25198501348495483,
+ "num_tied_at_cutoff": 31,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25198501348495483,
+ "score_mean": 0.15355539321899414,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.17818032205104828,
+ "fraction_gt1": 0.0,
+ "n_inside": 355,
+ "n_interface": 833,
+ "n_outside": 1096,
+ "selected_inside_frac": 0.029411764705882353,
+ "selected_interface_frac": 0.7352941176470589,
+ "selected_outside_frac": 0.23529411764705882,
+ "selected_x_range": 0.7083333333333334,
+ "selected_y_range": 0.8333333333333334,
+ "step": 10,
+ "n_elem": 2284,
+ "target_elements": 8000,
+ "gap": 5716,
+ "cutoff_score": 0.21667660772800446,
+ "num_tied_at_cutoff": 124,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21667660772800446,
+ "score_mean": 0.14315208792686462,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.1532135009765625,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 1058,
+ "n_outside": 1184,
+ "selected_inside_frac": 0.2948717948717949,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.7051282051282052,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2607,
+ "target_elements": 8000,
+ "gap": 5393,
+ "cutoff_score": 0.17818032205104828,
+ "num_tied_at_cutoff": 180,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17818032205104828,
+ "score_mean": 0.13125964999198914,
+ "score_p50": 0.1532135009765625,
+ "score_p90": 0.1532135009765625,
+ "fraction_gt1": 0.0,
+ "n_inside": 467,
+ "n_interface": 1152,
+ "n_outside": 1425,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16145833333333334,
+ "selected_y_range": 0.17187499999999994,
+ "step": 12,
+ "n_elem": 3044,
+ "target_elements": 8000,
+ "gap": 4956,
+ "cutoff_score": 0.17818032205104828,
+ "num_tied_at_cutoff": 132,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17818032205104828,
+ "score_mean": 0.12319972366094589,
+ "score_p50": 0.12599250674247742,
+ "score_p90": 0.1532135009765625,
+ "fraction_gt1": 0.0,
+ "n_inside": 837,
+ "n_interface": 1164,
+ "n_outside": 1425,
+ "selected_inside_frac": 0.13725490196078433,
+ "selected_interface_frac": 0.8627450980392157,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.36458333333333326,
+ "step": 13,
+ "n_elem": 3426,
+ "target_elements": 8000,
+ "gap": 4574,
+ "cutoff_score": 0.1532135009765625,
+ "num_tied_at_cutoff": 1500,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1532135009765625,
+ "score_mean": 0.11509677767753601,
+ "score_p50": 0.10833830386400223,
+ "score_p90": 0.1532135009765625,
+ "fraction_gt1": 0.0,
+ "n_inside": 893,
+ "n_interface": 1550,
+ "n_outside": 1425,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.49999999999999994,
+ "selected_y_range": 0.47916666666666674,
+ "step": 14,
+ "n_elem": 3868,
+ "target_elements": 8000,
+ "gap": 4132,
+ "cutoff_score": 0.1532135009765625,
+ "num_tied_at_cutoff": 1362,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1532135009765625,
+ "score_mean": 0.1079876720905304,
+ "score_p50": 0.10833830386400223,
+ "score_p90": 0.1532135009765625,
+ "fraction_gt1": 0.0,
+ "n_inside": 893,
+ "n_interface": 2034,
+ "n_outside": 1425,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5729166666666667,
+ "selected_y_range": 0.6354166666666667,
+ "step": 15,
+ "n_elem": 4352,
+ "target_elements": 8000,
+ "gap": 3648,
+ "cutoff_score": 0.1532135009765625,
+ "num_tied_at_cutoff": 1198,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1532135009765625,
+ "score_mean": 0.10149595141410828,
+ "score_p50": 0.08909016102552414,
+ "score_p90": 0.1532135009765625,
+ "fraction_gt1": 0.0,
+ "n_inside": 893,
+ "n_interface": 2596,
+ "n_outside": 1425,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.5850340136054422,
+ "selected_outside_frac": 0.41496598639455784,
+ "selected_x_range": 0.65625,
+ "selected_y_range": 0.8229166666666667,
+ "step": 16,
+ "n_elem": 4914,
+ "target_elements": 8000,
+ "gap": 3086,
+ "cutoff_score": 0.1532135009765625,
+ "num_tied_at_cutoff": 1006,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1532135009765625,
+ "score_mean": 0.09575845301151276,
+ "score_p50": 0.07660675048828125,
+ "score_p90": 0.1532135009765625,
+ "fraction_gt1": 0.0,
+ "n_inside": 893,
+ "n_interface": 2915,
+ "n_outside": 1739,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8854166666666667,
+ "step": 17,
+ "n_elem": 5547,
+ "target_elements": 8000,
+ "gap": 2453,
+ "cutoff_score": 0.1532135009765625,
+ "num_tied_at_cutoff": 790,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1532135009765625,
+ "score_mean": 0.090789794921875,
+ "score_p50": 0.07660675048828125,
+ "score_p90": 0.12599250674247742,
+ "fraction_gt1": 0.0,
+ "n_inside": 893,
+ "n_interface": 2915,
+ "n_outside": 2434,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.9479166666666667,
+ "step": 18,
+ "n_elem": 6242,
+ "target_elements": 8000,
+ "gap": 1758,
+ "cutoff_score": 0.1532135009765625,
+ "num_tied_at_cutoff": 556,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1532135009765625,
+ "score_mean": 0.08655837178230286,
+ "score_p50": 0.07660675048828125,
+ "score_p90": 0.10833830386400223,
+ "fraction_gt1": 0.0,
+ "n_inside": 893,
+ "n_interface": 2915,
+ "n_outside": 3172,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.40625,
+ "selected_y_range": 0.9791666666666667,
+ "step": 19,
+ "n_elem": 6980,
+ "target_elements": 8000,
+ "gap": 1020,
+ "cutoff_score": 0.1532135009765625,
+ "num_tied_at_cutoff": 322,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1532135009765625,
+ "score_mean": 0.08303675800561905,
+ "score_p50": 0.07660675048828125,
+ "score_p90": 0.10833830386400223,
+ "fraction_gt1": 0.0,
+ "n_inside": 893,
+ "n_interface": 2915,
+ "n_outside": 3934,
+ "selected_inside_frac": 0.06976744186046512,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.9302325581395349,
+ "selected_x_range": 0.8255208333333334,
+ "selected_y_range": 0.9791666666666667,
+ "step": 20,
+ "n_elem": 7742,
+ "target_elements": 8000,
+ "gap": 258,
+ "cutoff_score": 0.12599250674247742,
+ "num_tied_at_cutoff": 197,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 44,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07249787282682847,
+ "max_err": 0.17808912914369351,
+ "actual_elements": 8588,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9939823746681213,
+ "score_mean": 0.08061596751213074,
+ "score_p50": 4.2814218659259495e-07,
+ "score_p90": 0.09329056739807129,
+ "fraction_gt1": 0.0,
+ "n_inside": 18,
+ "n_interface": 199,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333334,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9825787544250488,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9872072339057922,
+ "score_mean": 0.12527936697006226,
+ "score_p50": 4.497484951571096e-06,
+ "score_p90": 0.7494838237762451,
+ "fraction_gt1": 0.0,
+ "n_inside": 66,
+ "n_interface": 225,
+ "n_outside": 295,
+ "selected_inside_frac": 0.8235294117647058,
+ "selected_interface_frac": 0.17647058823529413,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.11458333333333337,
+ "selected_y_range": 0.15625000000000006,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 8000,
+ "gap": 7414,
+ "cutoff_score": 0.9506141543388367,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9895283579826355,
+ "score_mean": 0.13366565108299255,
+ "score_p50": 6.838537228759378e-05,
+ "score_p90": 0.8069367408752441,
+ "fraction_gt1": 0.0,
+ "n_inside": 118,
+ "n_interface": 259,
+ "n_outside": 295,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.27083333333333337,
+ "selected_y_range": 0.3333333333333333,
+ "step": 2,
+ "n_elem": 672,
+ "target_elements": 8000,
+ "gap": 7328,
+ "cutoff_score": 0.9757600426673889,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9944663643836975,
+ "score_mean": 0.12779290974140167,
+ "score_p50": 0.0011406398843973875,
+ "score_p90": 0.6417492628097534,
+ "fraction_gt1": 0.0,
+ "n_inside": 173,
+ "n_interface": 328,
+ "n_outside": 295,
+ "selected_inside_frac": 0.17391304347826086,
+ "selected_interface_frac": 0.6086956521739131,
+ "selected_outside_frac": 0.21739130434782608,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.4375,
+ "step": 3,
+ "n_elem": 796,
+ "target_elements": 8000,
+ "gap": 7204,
+ "cutoff_score": 0.9566822648048401,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9895942211151123,
+ "score_mean": 0.14883719384670258,
+ "score_p50": 0.0029740515165030956,
+ "score_p90": 0.6673248410224915,
+ "fraction_gt1": 0.0,
+ "n_inside": 197,
+ "n_interface": 402,
+ "n_outside": 323,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.5185185185185185,
+ "selected_outside_frac": 0.48148148148148145,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.5,
+ "step": 4,
+ "n_elem": 922,
+ "target_elements": 8000,
+ "gap": 7078,
+ "cutoff_score": 0.9266366362571716,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9882323145866394,
+ "score_mean": 0.18761444091796875,
+ "score_p50": 0.00376064982265234,
+ "score_p90": 0.8055471181869507,
+ "fraction_gt1": 0.0,
+ "n_inside": 197,
+ "n_interface": 475,
+ "n_outside": 396,
+ "selected_inside_frac": 0.1875,
+ "selected_interface_frac": 0.125,
+ "selected_outside_frac": 0.6875,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.6666666666666667,
+ "step": 5,
+ "n_elem": 1068,
+ "target_elements": 8000,
+ "gap": 6932,
+ "cutoff_score": 0.9287186861038208,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9886175990104675,
+ "score_mean": 0.201606884598732,
+ "score_p50": 0.0008536590030416846,
+ "score_p90": 0.8568704128265381,
+ "fraction_gt1": 0.0,
+ "n_inside": 236,
+ "n_interface": 514,
+ "n_outside": 520,
+ "selected_inside_frac": 0.47368421052631576,
+ "selected_interface_frac": 0.21052631578947367,
+ "selected_outside_frac": 0.3157894736842105,
+ "selected_x_range": 0.609375,
+ "selected_y_range": 0.38541666666666674,
+ "step": 6,
+ "n_elem": 1270,
+ "target_elements": 8000,
+ "gap": 6730,
+ "cutoff_score": 0.9547663927078247,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9916943907737732,
+ "score_mean": 0.19746661186218262,
+ "score_p50": 0.000638054043520242,
+ "score_p90": 0.8675277233123779,
+ "fraction_gt1": 0.0,
+ "n_inside": 339,
+ "n_interface": 569,
+ "n_outside": 578,
+ "selected_inside_frac": 0.06818181818181818,
+ "selected_interface_frac": 0.4090909090909091,
+ "selected_outside_frac": 0.5227272727272727,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.875,
+ "step": 7,
+ "n_elem": 1486,
+ "target_elements": 8000,
+ "gap": 6514,
+ "cutoff_score": 0.9580462574958801,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9882163405418396,
+ "score_mean": 0.1589808464050293,
+ "score_p50": 0.00029409368289634585,
+ "score_p90": 0.8249896764755249,
+ "fraction_gt1": 0.0,
+ "n_inside": 362,
+ "n_interface": 678,
+ "n_outside": 695,
+ "selected_inside_frac": 0.46153846153846156,
+ "selected_interface_frac": 0.2692307692307692,
+ "selected_outside_frac": 0.2692307692307692,
+ "selected_x_range": 0.7760416666666667,
+ "selected_y_range": 0.5729166666666666,
+ "step": 8,
+ "n_elem": 1735,
+ "target_elements": 8000,
+ "gap": 6265,
+ "cutoff_score": 0.9486973881721497,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.987865149974823,
+ "score_mean": 0.13605302572250366,
+ "score_p50": 0.00048456466174684465,
+ "score_p90": 0.6762772798538208,
+ "fraction_gt1": 0.0,
+ "n_inside": 499,
+ "n_interface": 762,
+ "n_outside": 768,
+ "selected_inside_frac": 0.48333333333333334,
+ "selected_interface_frac": 0.31666666666666665,
+ "selected_outside_frac": 0.2,
+ "selected_x_range": 0.8541666666666667,
+ "selected_y_range": 0.9375,
+ "step": 9,
+ "n_elem": 2029,
+ "target_elements": 8000,
+ "gap": 5971,
+ "cutoff_score": 0.9216267466545105,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9842798709869385,
+ "score_mean": 0.11880436539649963,
+ "score_p50": 0.0013920895289629698,
+ "score_p90": 0.5852997303009033,
+ "fraction_gt1": 0.0,
+ "n_inside": 642,
+ "n_interface": 880,
+ "n_outside": 845,
+ "selected_inside_frac": 0.08450704225352113,
+ "selected_interface_frac": 0.7887323943661971,
+ "selected_outside_frac": 0.1267605633802817,
+ "selected_x_range": 0.8541666666666667,
+ "selected_y_range": 0.875,
+ "step": 10,
+ "n_elem": 2367,
+ "target_elements": 8000,
+ "gap": 5633,
+ "cutoff_score": 0.908531129360199,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9946860074996948,
+ "score_mean": 0.12993460893630981,
+ "score_p50": 0.0023980936966836452,
+ "score_p90": 0.5793894529342651,
+ "fraction_gt1": 0.0,
+ "n_inside": 683,
+ "n_interface": 1169,
+ "n_outside": 917,
+ "selected_inside_frac": 0.1927710843373494,
+ "selected_interface_frac": 0.3855421686746988,
+ "selected_outside_frac": 0.42168674698795183,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.8229166666666667,
+ "step": 11,
+ "n_elem": 2769,
+ "target_elements": 8000,
+ "gap": 5231,
+ "cutoff_score": 0.8751580715179443,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9879676699638367,
+ "score_mean": 0.1582755446434021,
+ "score_p50": 0.0028321295976638794,
+ "score_p90": 0.712738573551178,
+ "fraction_gt1": 0.0,
+ "n_inside": 807,
+ "n_interface": 1372,
+ "n_outside": 1130,
+ "selected_inside_frac": 0.1111111111111111,
+ "selected_interface_frac": 0.29292929292929293,
+ "selected_outside_frac": 0.5959595959595959,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.9583333333333334,
+ "step": 12,
+ "n_elem": 3309,
+ "target_elements": 8000,
+ "gap": 4691,
+ "cutoff_score": 0.9118451476097107,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9912353754043579,
+ "score_mean": 0.18205179274082184,
+ "score_p50": 0.0016868975944817066,
+ "score_p90": 0.8144252300262451,
+ "fraction_gt1": 0.0,
+ "n_inside": 883,
+ "n_interface": 1528,
+ "n_outside": 1514,
+ "selected_inside_frac": 0.20512820512820512,
+ "selected_interface_frac": 0.19658119658119658,
+ "selected_outside_frac": 0.5982905982905983,
+ "selected_x_range": 0.7994791666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3925,
+ "target_elements": 8000,
+ "gap": 4075,
+ "cutoff_score": 0.9361514449119568,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.987795352935791,
+ "score_mean": 0.17722029983997345,
+ "score_p50": 0.0008813785389065742,
+ "score_p90": 0.8106275200843811,
+ "fraction_gt1": 0.0,
+ "n_inside": 1029,
+ "n_interface": 1681,
+ "n_outside": 1909,
+ "selected_inside_frac": 0.427536231884058,
+ "selected_interface_frac": 0.2246376811594203,
+ "selected_outside_frac": 0.34782608695652173,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 14,
+ "n_elem": 4619,
+ "target_elements": 8000,
+ "gap": 3381,
+ "cutoff_score": 0.9430609345436096,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9925580024719238,
+ "score_mean": 0.16470788419246674,
+ "score_p50": 0.0007259441772475839,
+ "score_p90": 0.7627663016319275,
+ "fraction_gt1": 0.0,
+ "n_inside": 1296,
+ "n_interface": 1887,
+ "n_outside": 2162,
+ "selected_inside_frac": 0.33125,
+ "selected_interface_frac": 0.50625,
+ "selected_outside_frac": 0.1625,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.8229166666666667,
+ "step": 15,
+ "n_elem": 5345,
+ "target_elements": 8000,
+ "gap": 2655,
+ "cutoff_score": 0.9311503767967224,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9860214591026306,
+ "score_mean": 0.15299637615680695,
+ "score_p50": 0.00100506201852113,
+ "score_p90": 0.7543259263038635,
+ "fraction_gt1": 0.0,
+ "n_inside": 1606,
+ "n_interface": 2333,
+ "n_outside": 2330,
+ "selected_inside_frac": 0.2393617021276596,
+ "selected_interface_frac": 0.4148936170212766,
+ "selected_outside_frac": 0.34574468085106386,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 16,
+ "n_elem": 6269,
+ "target_elements": 8000,
+ "gap": 1731,
+ "cutoff_score": 0.9181851148605347,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9880372285842896,
+ "score_mean": 0.14720702171325684,
+ "score_p50": 0.0011677246075123549,
+ "score_p90": 0.703748345375061,
+ "fraction_gt1": 0.0,
+ "n_inside": 1917,
+ "n_interface": 2807,
+ "n_outside": 2722,
+ "selected_inside_frac": 0.2717391304347826,
+ "selected_interface_frac": 0.44021739130434784,
+ "selected_outside_frac": 0.28804347826086957,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 17,
+ "n_elem": 7446,
+ "target_elements": 8000,
+ "gap": 554,
+ "cutoff_score": 0.9302594661712646,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 44,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07263103296049354,
+ "max_err": 0.1772874048435703,
+ "actual_elements": 8373,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 4.410201072692871,
+ "score_mean": 5.21540641784668e-08,
+ "score_p50": -0.25350478291511536,
+ "score_p90": -0.07059170305728912,
+ "fraction_gt1": 0.078125,
+ "n_inside": 18,
+ "n_interface": 199,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333334,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 4.387842178344727,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.842072010040283,
+ "score_mean": 6.509722538794449e-08,
+ "score_p50": -0.1892957091331482,
+ "score_p90": 1.3641932010650635,
+ "fraction_gt1": 0.11945392491467577,
+ "n_inside": 66,
+ "n_interface": 225,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666669,
+ "selected_y_range": 0.125,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 8000,
+ "gap": 7414,
+ "cutoff_score": 2.149293899536133,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.027416944503784,
+ "score_mean": 1.4585607743811124e-07,
+ "score_p50": 0.011823423206806183,
+ "score_p90": 1.1123102903366089,
+ "fraction_gt1": 0.10588235294117647,
+ "n_inside": 134,
+ "n_interface": 251,
+ "n_outside": 295,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.09375000000000003,
+ "selected_y_range": 0.18749999999999994,
+ "step": 2,
+ "n_elem": 680,
+ "target_elements": 8000,
+ "gap": 7320,
+ "cutoff_score": 1.9341182708740234,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.768527626991272,
+ "score_mean": -1.936394511403705e-08,
+ "score_p50": 0.13827747106552124,
+ "score_p90": 1.2296746969223022,
+ "fraction_gt1": 0.11421319796954314,
+ "n_inside": 218,
+ "n_interface": 275,
+ "n_outside": 295,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25000000000000006,
+ "selected_y_range": 0.31249999999999994,
+ "step": 3,
+ "n_elem": 788,
+ "target_elements": 8000,
+ "gap": 7212,
+ "cutoff_score": 1.7632741928100586,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0497100353240967,
+ "score_mean": 3.3908420959960495e-08,
+ "score_p50": 0.21960437297821045,
+ "score_p90": 1.1731747388839722,
+ "fraction_gt1": 0.12,
+ "n_inside": 218,
+ "n_interface": 383,
+ "n_outside": 299,
+ "selected_inside_frac": 0.037037037037037035,
+ "selected_interface_frac": 0.37037037037037035,
+ "selected_outside_frac": 0.5925925925925926,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 900,
+ "target_elements": 8000,
+ "gap": 7100,
+ "cutoff_score": 1.9040555953979492,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1225223541259766,
+ "score_mean": 0.0,
+ "score_p50": -0.29663342237472534,
+ "score_p90": 1.1565029621124268,
+ "fraction_gt1": 0.11164122137404581,
+ "n_inside": 225,
+ "n_interface": 446,
+ "n_outside": 377,
+ "selected_inside_frac": 0.06451612903225806,
+ "selected_interface_frac": 0.16129032258064516,
+ "selected_outside_frac": 0.7741935483870968,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.625,
+ "step": 5,
+ "n_elem": 1048,
+ "target_elements": 8000,
+ "gap": 6952,
+ "cutoff_score": 1.8601932525634766,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.075829029083252,
+ "score_mean": 4.978397782906541e-08,
+ "score_p50": -0.18682371079921722,
+ "score_p90": 1.0197422504425049,
+ "fraction_gt1": 0.10929853181076672,
+ "n_inside": 235,
+ "n_interface": 484,
+ "n_outside": 507,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.1388888888888889,
+ "selected_outside_frac": 0.8611111111111112,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1226,
+ "target_elements": 8000,
+ "gap": 6774,
+ "cutoff_score": 1.8090312480926514,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.171532392501831,
+ "score_mean": -1.931492334961149e-07,
+ "score_p50": -0.24114197492599487,
+ "score_p90": 1.0340254306793213,
+ "fraction_gt1": 0.11040787623066103,
+ "n_inside": 235,
+ "n_interface": 516,
+ "n_outside": 671,
+ "selected_inside_frac": 0.23809523809523808,
+ "selected_interface_frac": 0.19047619047619047,
+ "selected_outside_frac": 0.5714285714285714,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1422,
+ "target_elements": 8000,
+ "gap": 6578,
+ "cutoff_score": 1.6863853931427002,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.407534122467041,
+ "score_mean": -1.2907736390843638e-07,
+ "score_p50": -0.49314600229263306,
+ "score_p90": 1.107820749282837,
+ "fraction_gt1": 0.16555891238670695,
+ "n_inside": 289,
+ "n_interface": 582,
+ "n_outside": 784,
+ "selected_inside_frac": 0.24489795918367346,
+ "selected_interface_frac": 0.42857142857142855,
+ "selected_outside_frac": 0.32653061224489793,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1655,
+ "target_elements": 8000,
+ "gap": 6345,
+ "cutoff_score": 1.5136635303497314,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3948936462402344,
+ "score_mean": -1.586152720278733e-08,
+ "score_p50": -0.37526828050613403,
+ "score_p90": 1.3158540725708008,
+ "fraction_gt1": 0.14864864864864866,
+ "n_inside": 341,
+ "n_interface": 725,
+ "n_outside": 858,
+ "selected_inside_frac": 0.3508771929824561,
+ "selected_interface_frac": 0.47368421052631576,
+ "selected_outside_frac": 0.17543859649122806,
+ "selected_x_range": 0.7395833333333333,
+ "selected_y_range": 0.8541666666666667,
+ "step": 9,
+ "n_elem": 1924,
+ "target_elements": 8000,
+ "gap": 6076,
+ "cutoff_score": 1.435987114906311,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.000826358795166,
+ "score_mean": -6.848648581581074e-08,
+ "score_p50": -0.24127435684204102,
+ "score_p90": 1.2534313201904297,
+ "fraction_gt1": 0.13285457809694792,
+ "n_inside": 441,
+ "n_interface": 868,
+ "n_outside": 919,
+ "selected_inside_frac": 0.25757575757575757,
+ "selected_interface_frac": 0.16666666666666666,
+ "selected_outside_frac": 0.5757575757575758,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.7604166666666666,
+ "step": 10,
+ "n_elem": 2228,
+ "target_elements": 8000,
+ "gap": 5772,
+ "cutoff_score": 1.5805377960205078,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2515077590942383,
+ "score_mean": -7.189064632484587e-08,
+ "score_p50": -0.1204209178686142,
+ "score_p90": 1.2610238790512085,
+ "fraction_gt1": 0.12249705535924617,
+ "n_inside": 543,
+ "n_interface": 923,
+ "n_outside": 1081,
+ "selected_inside_frac": 0.618421052631579,
+ "selected_interface_frac": 0.06578947368421052,
+ "selected_outside_frac": 0.3157894736842105,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.9166666666666667,
+ "step": 11,
+ "n_elem": 2547,
+ "target_elements": 8000,
+ "gap": 5453,
+ "cutoff_score": 1.6587474346160889,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.399143934249878,
+ "score_mean": 1.860827865129977e-07,
+ "score_p50": 0.04736059904098511,
+ "score_p90": 1.1027228832244873,
+ "fraction_gt1": 0.138550135501355,
+ "n_inside": 742,
+ "n_interface": 973,
+ "n_outside": 1237,
+ "selected_inside_frac": 0.07954545454545454,
+ "selected_interface_frac": 0.7045454545454546,
+ "selected_outside_frac": 0.2159090909090909,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8333333333333334,
+ "step": 12,
+ "n_elem": 2952,
+ "target_elements": 8000,
+ "gap": 5048,
+ "cutoff_score": 1.6232309341430664,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.29093861579895,
+ "score_mean": -3.624415612080156e-08,
+ "score_p50": 0.16543981432914734,
+ "score_p90": 1.1564102172851562,
+ "fraction_gt1": 0.1377672209026128,
+ "n_inside": 782,
+ "n_interface": 1243,
+ "n_outside": 1343,
+ "selected_inside_frac": 0.039603960396039604,
+ "selected_interface_frac": 0.49504950495049505,
+ "selected_outside_frac": 0.46534653465346537,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3368,
+ "target_elements": 8000,
+ "gap": 4632,
+ "cutoff_score": 1.721346378326416,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5896122455596924,
+ "score_mean": -6.27933687269433e-08,
+ "score_p50": -0.3668113350868225,
+ "score_p90": 1.2268959283828735,
+ "fraction_gt1": 0.1309156378600823,
+ "n_inside": 800,
+ "n_interface": 1507,
+ "n_outside": 1581,
+ "selected_inside_frac": 0.06896551724137931,
+ "selected_interface_frac": 0.23275862068965517,
+ "selected_outside_frac": 0.6982758620689655,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9166666666666667,
+ "step": 14,
+ "n_elem": 3888,
+ "target_elements": 8000,
+ "gap": 4112,
+ "cutoff_score": 1.697272539138794,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5221729278564453,
+ "score_mean": 0.0,
+ "score_p50": -0.2698265612125397,
+ "score_p90": 1.1809849739074707,
+ "fraction_gt1": 0.12090118224403301,
+ "n_inside": 836,
+ "n_interface": 1671,
+ "n_outside": 1976,
+ "selected_inside_frac": 0.007462686567164179,
+ "selected_interface_frac": 0.2835820895522388,
+ "selected_outside_frac": 0.7089552238805971,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9791666666666667,
+ "step": 15,
+ "n_elem": 4483,
+ "target_elements": 8000,
+ "gap": 3517,
+ "cutoff_score": 1.6931195259094238,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2133965492248535,
+ "score_mean": -9.521865251826966e-08,
+ "score_p50": -0.14376068115234375,
+ "score_p90": 1.0438332557678223,
+ "fraction_gt1": 0.10393915756630265,
+ "n_inside": 838,
+ "n_interface": 1886,
+ "n_outside": 2404,
+ "selected_inside_frac": 0.058823529411764705,
+ "selected_interface_frac": 0.20261437908496732,
+ "selected_outside_frac": 0.738562091503268,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.96875,
+ "step": 16,
+ "n_elem": 5128,
+ "target_elements": 8000,
+ "gap": 2872,
+ "cutoff_score": 1.5678880214691162,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2738447189331055,
+ "score_mean": -4.1898168490206444e-08,
+ "score_p50": 0.0102003812789917,
+ "score_p90": 0.9817618131637573,
+ "fraction_gt1": 0.09490303758366227,
+ "n_inside": 888,
+ "n_interface": 2073,
+ "n_outside": 2866,
+ "selected_inside_frac": 0.7988505747126436,
+ "selected_interface_frac": 0.06321839080459771,
+ "selected_outside_frac": 0.13793103448275862,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.7291666666666667,
+ "step": 17,
+ "n_elem": 5827,
+ "target_elements": 8000,
+ "gap": 2173,
+ "cutoff_score": 1.7144780158996582,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4224061965942383,
+ "score_mean": 1.824668416361419e-08,
+ "score_p50": -0.38230228424072266,
+ "score_p90": 1.1399435997009277,
+ "fraction_gt1": 0.1508221225710015,
+ "n_inside": 1464,
+ "n_interface": 2236,
+ "n_outside": 2990,
+ "selected_inside_frac": 0.135,
+ "selected_interface_frac": 0.605,
+ "selected_outside_frac": 0.26,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.96875,
+ "step": 18,
+ "n_elem": 6690,
+ "target_elements": 8000,
+ "gap": 1310,
+ "cutoff_score": 1.6067848205566406,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3871009349823,
+ "score_mean": -8.023551600899737e-08,
+ "score_p50": -0.39089423418045044,
+ "score_p90": 1.2331751585006714,
+ "fraction_gt1": 0.145786775338504,
+ "n_inside": 1578,
+ "n_interface": 2774,
+ "n_outside": 3255,
+ "selected_inside_frac": 0.03816793893129771,
+ "selected_interface_frac": 0.5343511450381679,
+ "selected_outside_frac": 0.42748091603053434,
+ "selected_x_range": 0.8385416666666667,
+ "selected_y_range": 0.9166666666666667,
+ "step": 19,
+ "n_elem": 7607,
+ "target_elements": 8000,
+ "gap": 393,
+ "cutoff_score": 1.6123685836791992,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 44,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.10164776360874636,
+ "max_err": 0.2381330850044614,
+ "actual_elements": 2026,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.46692657470703125,
+ "score_mean": 0.1972636878490448,
+ "score_p50": 0.16678009927272797,
+ "score_p90": 0.436911940574646,
+ "fraction_gt1": 0.0,
+ "n_inside": 52,
+ "n_interface": 409,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.3125,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.46692657470703125,
+ "num_tied_at_cutoff": 52,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.46692657470703125,
+ "score_mean": 0.18225760757923126,
+ "score_p50": 0.16678009927272797,
+ "score_p90": 0.23346328735351562,
+ "fraction_gt1": 0.0,
+ "n_inside": 112,
+ "n_interface": 459,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.20833333333333326,
+ "step": 1,
+ "n_elem": 622,
+ "target_elements": 2000,
+ "gap": 1378,
+ "cutoff_score": 0.46692657470703125,
+ "num_tied_at_cutoff": 20,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3301669657230377,
+ "score_mean": 0.17880086600780487,
+ "score_p50": 0.16678009927272797,
+ "score_p90": 0.23346328735351562,
+ "fraction_gt1": 0.0,
+ "n_inside": 187,
+ "n_interface": 460,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34374999999999994,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 698,
+ "target_elements": 2000,
+ "gap": 1302,
+ "cutoff_score": 0.23346328735351562,
+ "num_tied_at_cutoff": 176,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23346328735351562,
+ "score_mean": 0.1577131599187851,
+ "score_p50": 0.16678009927272797,
+ "score_p90": 0.23346328735351562,
+ "fraction_gt1": 0.0,
+ "n_inside": 284,
+ "n_interface": 535,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.31249999999999994,
+ "selected_y_range": 0.29166666666666674,
+ "step": 3,
+ "n_elem": 870,
+ "target_elements": 2000,
+ "gap": 1130,
+ "cutoff_score": 0.23346328735351562,
+ "num_tied_at_cutoff": 132,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23346328735351562,
+ "score_mean": 0.14291533827781677,
+ "score_p50": 0.16508348286151886,
+ "score_p90": 0.16678009927272797,
+ "fraction_gt1": 0.0,
+ "n_inside": 395,
+ "n_interface": 592,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.22916666666666669,
+ "selected_y_range": 0.22916666666666674,
+ "step": 4,
+ "n_elem": 1038,
+ "target_elements": 2000,
+ "gap": 962,
+ "cutoff_score": 0.23346328735351562,
+ "num_tied_at_cutoff": 90,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23346328735351562,
+ "score_mean": 0.13456887006759644,
+ "score_p50": 0.11793133616447449,
+ "score_p90": 0.16678009927272797,
+ "fraction_gt1": 0.0,
+ "n_inside": 549,
+ "n_interface": 592,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.13541666666666663,
+ "selected_y_range": 0.16666666666666674,
+ "step": 5,
+ "n_elem": 1192,
+ "target_elements": 2000,
+ "gap": 808,
+ "cutoff_score": 0.23346328735351562,
+ "num_tied_at_cutoff": 36,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16678009927272797,
+ "score_mean": 0.12855827808380127,
+ "score_p50": 0.11673164367675781,
+ "score_p90": 0.16678009927272797,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 592,
+ "n_outside": 51,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 6,
+ "n_elem": 1328,
+ "target_elements": 2000,
+ "gap": 672,
+ "cutoff_score": 0.16678009927272797,
+ "num_tied_at_cutoff": 412,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16678009927272797,
+ "score_mean": 0.11879178881645203,
+ "score_p50": 0.11673164367675781,
+ "score_p90": 0.16678009927272797,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 800,
+ "n_outside": 51,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.625,
+ "step": 7,
+ "n_elem": 1536,
+ "target_elements": 2000,
+ "gap": 464,
+ "cutoff_score": 0.16678009927272797,
+ "num_tied_at_cutoff": 334,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16678009927272797,
+ "score_mean": 0.11050533503293991,
+ "score_p50": 0.11673164367675781,
+ "score_p90": 0.16678009927272797,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 1034,
+ "n_outside": 51,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 8,
+ "n_elem": 1770,
+ "target_elements": 2000,
+ "gap": 230,
+ "cutoff_score": 0.16678009927272797,
+ "num_tied_at_cutoff": 250,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 45,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10044568954817432,
+ "max_err": 0.23989252017834473,
+ "actual_elements": 2127,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9829397201538086,
+ "score_mean": 0.11538833379745483,
+ "score_p50": 9.142992141164541e-09,
+ "score_p90": 0.7855992317199707,
+ "fraction_gt1": 0.0,
+ "n_inside": 52,
+ "n_interface": 409,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.29166666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9598034024238586,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9774057269096375,
+ "score_mean": 0.09936530888080597,
+ "score_p50": 1.5887785309587343e-07,
+ "score_p90": 0.4050027132034302,
+ "fraction_gt1": 0.0,
+ "n_inside": 112,
+ "n_interface": 431,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3125,
+ "step": 1,
+ "n_elem": 594,
+ "target_elements": 2000,
+ "gap": 1406,
+ "cutoff_score": 0.9496873021125793,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9578854441642761,
+ "score_mean": 0.12836278975009918,
+ "score_p50": 1.897788024507463e-05,
+ "score_p90": 0.5261281728744507,
+ "fraction_gt1": 0.0,
+ "n_inside": 179,
+ "n_interface": 442,
+ "n_outside": 51,
+ "selected_inside_frac": 0.3,
+ "selected_interface_frac": 0.7,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.37500000000000006,
+ "selected_y_range": 0.4375,
+ "step": 2,
+ "n_elem": 672,
+ "target_elements": 2000,
+ "gap": 1328,
+ "cutoff_score": 0.8593349456787109,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.982745349407196,
+ "score_mean": 0.19658970832824707,
+ "score_p50": 6.976926670176908e-05,
+ "score_p90": 0.8978148698806763,
+ "fraction_gt1": 0.0,
+ "n_inside": 220,
+ "n_interface": 525,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3020833333333333,
+ "selected_y_range": 0.26041666666666674,
+ "step": 3,
+ "n_elem": 796,
+ "target_elements": 2000,
+ "gap": 1204,
+ "cutoff_score": 0.9543672204017639,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9836639165878296,
+ "score_mean": 0.17956803739070892,
+ "score_p50": 0.0004764766781590879,
+ "score_p90": 0.8700332641601562,
+ "fraction_gt1": 0.0,
+ "n_inside": 349,
+ "n_interface": 532,
+ "n_outside": 51,
+ "selected_inside_frac": 0.6666666666666666,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.42708333333333337,
+ "selected_y_range": 0.4479166666666667,
+ "step": 4,
+ "n_elem": 932,
+ "target_elements": 2000,
+ "gap": 1068,
+ "cutoff_score": 0.9588744640350342,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9805709719657898,
+ "score_mean": 0.1556427925825119,
+ "score_p50": 0.001968229888007045,
+ "score_p90": 0.789807915687561,
+ "fraction_gt1": 0.0,
+ "n_inside": 452,
+ "n_interface": 595,
+ "n_outside": 51,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.46874999999999994,
+ "selected_y_range": 0.44791666666666663,
+ "step": 5,
+ "n_elem": 1098,
+ "target_elements": 2000,
+ "gap": 902,
+ "cutoff_score": 0.9400981664657593,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9841694831848145,
+ "score_mean": 0.1513286978006363,
+ "score_p50": 0.004049495793879032,
+ "score_p90": 0.6672315001487732,
+ "fraction_gt1": 0.0,
+ "n_inside": 552,
+ "n_interface": 689,
+ "n_outside": 51,
+ "selected_inside_frac": 0.47368421052631576,
+ "selected_interface_frac": 0.5263157894736842,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 6,
+ "n_elem": 1292,
+ "target_elements": 2000,
+ "gap": 708,
+ "cutoff_score": 0.908717930316925,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9749155044555664,
+ "score_mean": 0.16148923337459564,
+ "score_p50": 0.005321210250258446,
+ "score_p90": 0.7083604335784912,
+ "fraction_gt1": 0.0,
+ "n_inside": 662,
+ "n_interface": 811,
+ "n_outside": 51,
+ "selected_inside_frac": 0.5777777777777777,
+ "selected_interface_frac": 0.4222222222222222,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.5416666666666667,
+ "step": 7,
+ "n_elem": 1524,
+ "target_elements": 2000,
+ "gap": 476,
+ "cutoff_score": 0.8850557804107666,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9734304547309875,
+ "score_mean": 0.16254322230815887,
+ "score_p50": 0.005527903791517019,
+ "score_p90": 0.6944942474365234,
+ "fraction_gt1": 0.0,
+ "n_inside": 836,
+ "n_interface": 925,
+ "n_outside": 51,
+ "selected_inside_frac": 0.5925925925925926,
+ "selected_interface_frac": 0.4074074074074074,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.59375,
+ "step": 8,
+ "n_elem": 1812,
+ "target_elements": 2000,
+ "gap": 188,
+ "cutoff_score": 0.9001723527908325,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 45,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10114910381217322,
+ "max_err": 0.2363275308980443,
+ "actual_elements": 2032,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.985250949859619,
+ "score_mean": 2.0302832126617432e-07,
+ "score_p50": -0.3673672080039978,
+ "score_p90": 1.8632582426071167,
+ "fraction_gt1": 0.111328125,
+ "n_inside": 52,
+ "n_interface": 409,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.29166666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 2.945297956466675,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.806316375732422,
+ "score_mean": -3.853229557648774e-08,
+ "score_p50": -0.3559892773628235,
+ "score_p90": 0.8324110507965088,
+ "fraction_gt1": 0.08754208754208755,
+ "n_inside": 112,
+ "n_interface": 431,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3125,
+ "step": 1,
+ "n_elem": 594,
+ "target_elements": 2000,
+ "gap": 1406,
+ "cutoff_score": 3.749636173248291,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 4.891535758972168,
+ "score_mean": -1.1353265705338345e-07,
+ "score_p50": -0.4377170205116272,
+ "score_p90": 1.3143101930618286,
+ "fraction_gt1": 0.14732142857142858,
+ "n_inside": 179,
+ "n_interface": 442,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3229166666666667,
+ "selected_y_range": 0.29166666666666674,
+ "step": 2,
+ "n_elem": 672,
+ "target_elements": 2000,
+ "gap": 1328,
+ "cutoff_score": 1.9221196174621582,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 3.0158891677856445,
+ "score_mean": 1.931492334961149e-07,
+ "score_p50": -0.2997561991214752,
+ "score_p90": 1.5917011499404907,
+ "fraction_gt1": 0.1620253164556962,
+ "n_inside": 276,
+ "n_interface": 463,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28124999999999994,
+ "selected_y_range": 0.25,
+ "step": 3,
+ "n_elem": 790,
+ "target_elements": 2000,
+ "gap": 1210,
+ "cutoff_score": 1.919670581817627,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.272526264190674,
+ "score_mean": 1.575635764083927e-07,
+ "score_p50": -0.11078843474388123,
+ "score_p90": 1.327671766281128,
+ "fraction_gt1": 0.13695652173913042,
+ "n_inside": 401,
+ "n_interface": 468,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18749999999999994,
+ "selected_y_range": 0.32291666666666674,
+ "step": 4,
+ "n_elem": 920,
+ "target_elements": 2000,
+ "gap": 1080,
+ "cutoff_score": 2.201561212539673,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5379066467285156,
+ "score_mean": 2.8204786062246967e-08,
+ "score_p50": 0.06667152047157288,
+ "score_p90": 1.1774916648864746,
+ "fraction_gt1": 0.1044362292051756,
+ "n_inside": 517,
+ "n_interface": 514,
+ "n_outside": 51,
+ "selected_inside_frac": 0.84375,
+ "selected_interface_frac": 0.15625,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.375,
+ "step": 5,
+ "n_elem": 1082,
+ "target_elements": 2000,
+ "gap": 918,
+ "cutoff_score": 1.6681004762649536,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.437368392944336,
+ "score_mean": -6.084046333398874e-08,
+ "score_p50": 0.2000058889389038,
+ "score_p90": 1.0697492361068726,
+ "fraction_gt1": 0.10685805422647528,
+ "n_inside": 642,
+ "n_interface": 561,
+ "n_outside": 51,
+ "selected_inside_frac": 0.02702702702702703,
+ "selected_interface_frac": 0.972972972972973,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 6,
+ "n_elem": 1254,
+ "target_elements": 2000,
+ "gap": 746,
+ "cutoff_score": 1.81544029712677,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9808833599090576,
+ "score_mean": 1.713267607783564e-07,
+ "score_p50": -0.26228636503219604,
+ "score_p90": 0.9367687106132507,
+ "fraction_gt1": 0.09052631578947369,
+ "n_inside": 645,
+ "n_interface": 729,
+ "n_outside": 51,
+ "selected_inside_frac": 0.6190476190476191,
+ "selected_interface_frac": 0.38095238095238093,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.45833333333333326,
+ "step": 7,
+ "n_elem": 1425,
+ "target_elements": 2000,
+ "gap": 575,
+ "cutoff_score": 1.6862897872924805,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0451173782348633,
+ "score_mean": -3.6395441327385925e-08,
+ "score_p50": -0.21102309226989746,
+ "score_p90": 0.9577268362045288,
+ "fraction_gt1": 0.09540846750149076,
+ "n_inside": 783,
+ "n_interface": 843,
+ "n_outside": 51,
+ "selected_inside_frac": 0.62,
+ "selected_interface_frac": 0.38,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.5729166666666667,
+ "step": 8,
+ "n_elem": 1677,
+ "target_elements": 2000,
+ "gap": 323,
+ "cutoff_score": 1.4238741397857666,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.09737491607666,
+ "score_mean": 1.2367813440050668e-07,
+ "score_p50": -0.10349729657173157,
+ "score_p90": 0.9387032389640808,
+ "fraction_gt1": 0.08865248226950355,
+ "n_inside": 946,
+ "n_interface": 977,
+ "n_outside": 51,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.5416666666666667,
+ "step": 9,
+ "n_elem": 1974,
+ "target_elements": 2000,
+ "gap": 26,
+ "cutoff_score": 1.88638174533844,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 45,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10072422656003122,
+ "max_err": 0.24449168856839887,
+ "actual_elements": 4096,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.46692657470703125,
+ "score_mean": 0.1972636878490448,
+ "score_p50": 0.16678009927272797,
+ "score_p90": 0.436911940574646,
+ "fraction_gt1": 0.0,
+ "n_inside": 52,
+ "n_interface": 409,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.3125,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.46692657470703125,
+ "num_tied_at_cutoff": 52,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.46692657470703125,
+ "score_mean": 0.18225760757923126,
+ "score_p50": 0.16678009927272797,
+ "score_p90": 0.23346328735351562,
+ "fraction_gt1": 0.0,
+ "n_inside": 112,
+ "n_interface": 459,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.20833333333333326,
+ "step": 1,
+ "n_elem": 622,
+ "target_elements": 4000,
+ "gap": 3378,
+ "cutoff_score": 0.46692657470703125,
+ "num_tied_at_cutoff": 20,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3301669657230377,
+ "score_mean": 0.17880086600780487,
+ "score_p50": 0.16678009927272797,
+ "score_p90": 0.23346328735351562,
+ "fraction_gt1": 0.0,
+ "n_inside": 187,
+ "n_interface": 460,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34374999999999994,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 698,
+ "target_elements": 4000,
+ "gap": 3302,
+ "cutoff_score": 0.23346328735351562,
+ "num_tied_at_cutoff": 176,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23346328735351562,
+ "score_mean": 0.1577131599187851,
+ "score_p50": 0.16678009927272797,
+ "score_p90": 0.23346328735351562,
+ "fraction_gt1": 0.0,
+ "n_inside": 284,
+ "n_interface": 535,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.31249999999999994,
+ "selected_y_range": 0.29166666666666674,
+ "step": 3,
+ "n_elem": 870,
+ "target_elements": 4000,
+ "gap": 3130,
+ "cutoff_score": 0.23346328735351562,
+ "num_tied_at_cutoff": 132,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23346328735351562,
+ "score_mean": 0.14291533827781677,
+ "score_p50": 0.16508348286151886,
+ "score_p90": 0.16678009927272797,
+ "fraction_gt1": 0.0,
+ "n_inside": 395,
+ "n_interface": 592,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.22916666666666669,
+ "selected_y_range": 0.22916666666666674,
+ "step": 4,
+ "n_elem": 1038,
+ "target_elements": 4000,
+ "gap": 2962,
+ "cutoff_score": 0.23346328735351562,
+ "num_tied_at_cutoff": 90,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23346328735351562,
+ "score_mean": 0.13456887006759644,
+ "score_p50": 0.11793133616447449,
+ "score_p90": 0.16678009927272797,
+ "fraction_gt1": 0.0,
+ "n_inside": 549,
+ "n_interface": 592,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.13541666666666663,
+ "selected_y_range": 0.16666666666666674,
+ "step": 5,
+ "n_elem": 1192,
+ "target_elements": 4000,
+ "gap": 2808,
+ "cutoff_score": 0.23346328735351562,
+ "num_tied_at_cutoff": 36,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16678009927272797,
+ "score_mean": 0.12855827808380127,
+ "score_p50": 0.11673164367675781,
+ "score_p90": 0.16678009927272797,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 592,
+ "n_outside": 51,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 6,
+ "n_elem": 1328,
+ "target_elements": 4000,
+ "gap": 2672,
+ "cutoff_score": 0.16678009927272797,
+ "num_tied_at_cutoff": 412,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16678009927272797,
+ "score_mean": 0.11879178881645203,
+ "score_p50": 0.11673164367675781,
+ "score_p90": 0.16678009927272797,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 800,
+ "n_outside": 51,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.625,
+ "step": 7,
+ "n_elem": 1536,
+ "target_elements": 4000,
+ "gap": 2464,
+ "cutoff_score": 0.16678009927272797,
+ "num_tied_at_cutoff": 334,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16678009927272797,
+ "score_mean": 0.11050533503293991,
+ "score_p50": 0.11673164367675781,
+ "score_p90": 0.16678009927272797,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 1034,
+ "n_outside": 51,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 8,
+ "n_elem": 1770,
+ "target_elements": 4000,
+ "gap": 2230,
+ "cutoff_score": 0.16678009927272797,
+ "num_tied_at_cutoff": 250,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16678009927272797,
+ "score_mean": 0.10365334898233414,
+ "score_p50": 0.08339004963636398,
+ "score_p90": 0.16508348286151886,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 1290,
+ "n_outside": 51,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 9,
+ "n_elem": 2026,
+ "target_elements": 4000,
+ "gap": 1974,
+ "cutoff_score": 0.16678009927272797,
+ "num_tied_at_cutoff": 156,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16678009927272797,
+ "score_mean": 0.09830325841903687,
+ "score_p50": 0.08339004963636398,
+ "score_p90": 0.11793133616447449,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 1546,
+ "n_outside": 51,
+ "selected_inside_frac": 0.029411764705882353,
+ "selected_interface_frac": 0.22058823529411764,
+ "selected_outside_frac": 0.75,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8177083333333333,
+ "step": 10,
+ "n_elem": 2282,
+ "target_elements": 4000,
+ "gap": 1718,
+ "cutoff_score": 0.16508348286151886,
+ "num_tied_at_cutoff": 108,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16508348286151886,
+ "score_mean": 0.0940365195274353,
+ "score_p50": 0.08339004963636398,
+ "score_p90": 0.11673164367675781,
+ "fraction_gt1": 0.0,
+ "n_inside": 694,
+ "n_interface": 1630,
+ "n_outside": 198,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333337,
+ "selected_y_range": 0.33333333333333326,
+ "step": 11,
+ "n_elem": 2522,
+ "target_elements": 4000,
+ "gap": 1478,
+ "cutoff_score": 0.16508348286151886,
+ "num_tied_at_cutoff": 103,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16508348286151886,
+ "score_mean": 0.0886969342827797,
+ "score_p50": 0.08339004963636398,
+ "score_p90": 0.11673164367675781,
+ "fraction_gt1": 0.0,
+ "n_inside": 990,
+ "n_interface": 1680,
+ "n_outside": 198,
+ "selected_inside_frac": 0.23255813953488372,
+ "selected_interface_frac": 0.7674418604651163,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333334,
+ "selected_y_range": 0.7708333333333334,
+ "step": 12,
+ "n_elem": 2868,
+ "target_elements": 4000,
+ "gap": 1132,
+ "cutoff_score": 0.11793133616447449,
+ "num_tied_at_cutoff": 104,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11793133616447449,
+ "score_mean": 0.08282899856567383,
+ "score_p50": 0.08339004963636398,
+ "score_p90": 0.11673164367675781,
+ "fraction_gt1": 0.0,
+ "n_inside": 1080,
+ "n_interface": 1993,
+ "n_outside": 198,
+ "selected_inside_frac": 0.6428571428571429,
+ "selected_interface_frac": 0.35714285714285715,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8958333333333334,
+ "step": 13,
+ "n_elem": 3271,
+ "target_elements": 4000,
+ "gap": 729,
+ "cutoff_score": 0.11673164367675781,
+ "num_tied_at_cutoff": 496,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11673164367675781,
+ "score_mean": 0.07556837052106857,
+ "score_p50": 0.08254174143075943,
+ "score_p90": 0.08339004963636398,
+ "fraction_gt1": 0.0,
+ "n_inside": 1402,
+ "n_interface": 2272,
+ "n_outside": 198,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3020833333333333,
+ "selected_y_range": 0.28645833333333326,
+ "step": 14,
+ "n_elem": 3872,
+ "target_elements": 4000,
+ "gap": 128,
+ "cutoff_score": 0.11673164367675781,
+ "num_tied_at_cutoff": 386,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 45,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.0998746585390048,
+ "max_err": 0.2472443816146344,
+ "actual_elements": 4097,
+ "num_steps": 13,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9829397201538086,
+ "score_mean": 0.11538833379745483,
+ "score_p50": 9.142992141164541e-09,
+ "score_p90": 0.7855992317199707,
+ "fraction_gt1": 0.0,
+ "n_inside": 52,
+ "n_interface": 409,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.29166666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9598034024238586,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9774057269096375,
+ "score_mean": 0.09936530888080597,
+ "score_p50": 1.5887785309587343e-07,
+ "score_p90": 0.4050027132034302,
+ "fraction_gt1": 0.0,
+ "n_inside": 112,
+ "n_interface": 431,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3125,
+ "step": 1,
+ "n_elem": 594,
+ "target_elements": 4000,
+ "gap": 3406,
+ "cutoff_score": 0.9496873021125793,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9578854441642761,
+ "score_mean": 0.12836278975009918,
+ "score_p50": 1.897788024507463e-05,
+ "score_p90": 0.5261281728744507,
+ "fraction_gt1": 0.0,
+ "n_inside": 179,
+ "n_interface": 442,
+ "n_outside": 51,
+ "selected_inside_frac": 0.3,
+ "selected_interface_frac": 0.7,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.37500000000000006,
+ "selected_y_range": 0.4375,
+ "step": 2,
+ "n_elem": 672,
+ "target_elements": 4000,
+ "gap": 3328,
+ "cutoff_score": 0.8593349456787109,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.982745349407196,
+ "score_mean": 0.19658970832824707,
+ "score_p50": 6.976926670176908e-05,
+ "score_p90": 0.8978148698806763,
+ "fraction_gt1": 0.0,
+ "n_inside": 220,
+ "n_interface": 525,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3020833333333333,
+ "selected_y_range": 0.26041666666666674,
+ "step": 3,
+ "n_elem": 796,
+ "target_elements": 4000,
+ "gap": 3204,
+ "cutoff_score": 0.9543672204017639,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9836639165878296,
+ "score_mean": 0.17956803739070892,
+ "score_p50": 0.0004764766781590879,
+ "score_p90": 0.8700332641601562,
+ "fraction_gt1": 0.0,
+ "n_inside": 349,
+ "n_interface": 532,
+ "n_outside": 51,
+ "selected_inside_frac": 0.6666666666666666,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.42708333333333337,
+ "selected_y_range": 0.4479166666666667,
+ "step": 4,
+ "n_elem": 932,
+ "target_elements": 4000,
+ "gap": 3068,
+ "cutoff_score": 0.9588744640350342,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9805709719657898,
+ "score_mean": 0.1556427925825119,
+ "score_p50": 0.001968229888007045,
+ "score_p90": 0.789807915687561,
+ "fraction_gt1": 0.0,
+ "n_inside": 452,
+ "n_interface": 595,
+ "n_outside": 51,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.46874999999999994,
+ "selected_y_range": 0.44791666666666663,
+ "step": 5,
+ "n_elem": 1098,
+ "target_elements": 4000,
+ "gap": 2902,
+ "cutoff_score": 0.9400981664657593,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9841694831848145,
+ "score_mean": 0.1513286978006363,
+ "score_p50": 0.004049495793879032,
+ "score_p90": 0.6672315001487732,
+ "fraction_gt1": 0.0,
+ "n_inside": 552,
+ "n_interface": 689,
+ "n_outside": 51,
+ "selected_inside_frac": 0.47368421052631576,
+ "selected_interface_frac": 0.5263157894736842,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 6,
+ "n_elem": 1292,
+ "target_elements": 4000,
+ "gap": 2708,
+ "cutoff_score": 0.908717930316925,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9749155044555664,
+ "score_mean": 0.16148923337459564,
+ "score_p50": 0.005321210250258446,
+ "score_p90": 0.7083604335784912,
+ "fraction_gt1": 0.0,
+ "n_inside": 662,
+ "n_interface": 811,
+ "n_outside": 51,
+ "selected_inside_frac": 0.5777777777777777,
+ "selected_interface_frac": 0.4222222222222222,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.5416666666666667,
+ "step": 7,
+ "n_elem": 1524,
+ "target_elements": 4000,
+ "gap": 2476,
+ "cutoff_score": 0.8850557804107666,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9734304547309875,
+ "score_mean": 0.16254322230815887,
+ "score_p50": 0.005527903791517019,
+ "score_p90": 0.6944942474365234,
+ "fraction_gt1": 0.0,
+ "n_inside": 836,
+ "n_interface": 925,
+ "n_outside": 51,
+ "selected_inside_frac": 0.5925925925925926,
+ "selected_interface_frac": 0.4074074074074074,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.59375,
+ "step": 8,
+ "n_elem": 1812,
+ "target_elements": 4000,
+ "gap": 2188,
+ "cutoff_score": 0.9001723527908325,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9715894460678101,
+ "score_mean": 0.17008744180202484,
+ "score_p50": 0.0049429084174335,
+ "score_p90": 0.701798677444458,
+ "fraction_gt1": 0.0,
+ "n_inside": 1007,
+ "n_interface": 1069,
+ "n_outside": 51,
+ "selected_inside_frac": 0.42857142857142855,
+ "selected_interface_frac": 0.5714285714285714,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.59375,
+ "step": 9,
+ "n_elem": 2127,
+ "target_elements": 4000,
+ "gap": 1873,
+ "cutoff_score": 0.8941566348075867,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9855085015296936,
+ "score_mean": 0.16736336052417755,
+ "score_p50": 0.0048706866800785065,
+ "score_p90": 0.7298930287361145,
+ "fraction_gt1": 0.0,
+ "n_inside": 1179,
+ "n_interface": 1277,
+ "n_outside": 51,
+ "selected_inside_frac": 0.29333333333333333,
+ "selected_interface_frac": 0.7066666666666667,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.625,
+ "step": 10,
+ "n_elem": 2507,
+ "target_elements": 4000,
+ "gap": 1493,
+ "cutoff_score": 0.8925042152404785,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9705661535263062,
+ "score_mean": 0.16741128265857697,
+ "score_p50": 0.004458220675587654,
+ "score_p90": 0.7226732969284058,
+ "fraction_gt1": 0.0,
+ "n_inside": 1320,
+ "n_interface": 1570,
+ "n_outside": 51,
+ "selected_inside_frac": 0.6590909090909091,
+ "selected_interface_frac": 0.3068181818181818,
+ "selected_outside_frac": 0.03409090909090909,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.78125,
+ "step": 11,
+ "n_elem": 2941,
+ "target_elements": 4000,
+ "gap": 1059,
+ "cutoff_score": 0.8931670784950256,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9781345129013062,
+ "score_mean": 0.16466625034809113,
+ "score_p50": 0.0032904502004384995,
+ "score_p90": 0.7180671095848083,
+ "fraction_gt1": 0.0,
+ "n_inside": 1694,
+ "n_interface": 1727,
+ "n_outside": 63,
+ "selected_inside_frac": 0.40384615384615385,
+ "selected_interface_frac": 0.5961538461538461,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9270833333333333,
+ "selected_y_range": 0.7604166666666667,
+ "step": 12,
+ "n_elem": 3484,
+ "target_elements": 4000,
+ "gap": 516,
+ "cutoff_score": 0.8935048580169678,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 45,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.10124441679123285,
+ "max_err": 0.2446723709217445,
+ "actual_elements": 4106,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.985250949859619,
+ "score_mean": 2.0302832126617432e-07,
+ "score_p50": -0.3673672080039978,
+ "score_p90": 1.8632582426071167,
+ "fraction_gt1": 0.111328125,
+ "n_inside": 52,
+ "n_interface": 409,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.29166666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 2.945297956466675,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.806316375732422,
+ "score_mean": -3.853229557648774e-08,
+ "score_p50": -0.3559892773628235,
+ "score_p90": 0.8324110507965088,
+ "fraction_gt1": 0.08754208754208755,
+ "n_inside": 112,
+ "n_interface": 431,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3125,
+ "step": 1,
+ "n_elem": 594,
+ "target_elements": 4000,
+ "gap": 3406,
+ "cutoff_score": 3.749636173248291,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 4.891535758972168,
+ "score_mean": -1.1353265705338345e-07,
+ "score_p50": -0.4377170205116272,
+ "score_p90": 1.3143101930618286,
+ "fraction_gt1": 0.14732142857142858,
+ "n_inside": 179,
+ "n_interface": 442,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3229166666666667,
+ "selected_y_range": 0.29166666666666674,
+ "step": 2,
+ "n_elem": 672,
+ "target_elements": 4000,
+ "gap": 3328,
+ "cutoff_score": 1.9221196174621582,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 3.0158891677856445,
+ "score_mean": 1.931492334961149e-07,
+ "score_p50": -0.2997561991214752,
+ "score_p90": 1.5917011499404907,
+ "fraction_gt1": 0.1620253164556962,
+ "n_inside": 276,
+ "n_interface": 463,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28124999999999994,
+ "selected_y_range": 0.25,
+ "step": 3,
+ "n_elem": 790,
+ "target_elements": 4000,
+ "gap": 3210,
+ "cutoff_score": 1.919670581817627,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.272526264190674,
+ "score_mean": 1.575635764083927e-07,
+ "score_p50": -0.11078843474388123,
+ "score_p90": 1.327671766281128,
+ "fraction_gt1": 0.13695652173913042,
+ "n_inside": 401,
+ "n_interface": 468,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18749999999999994,
+ "selected_y_range": 0.32291666666666674,
+ "step": 4,
+ "n_elem": 920,
+ "target_elements": 4000,
+ "gap": 3080,
+ "cutoff_score": 2.201561212539673,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5379066467285156,
+ "score_mean": 2.8204786062246967e-08,
+ "score_p50": 0.06667152047157288,
+ "score_p90": 1.1774916648864746,
+ "fraction_gt1": 0.1044362292051756,
+ "n_inside": 517,
+ "n_interface": 514,
+ "n_outside": 51,
+ "selected_inside_frac": 0.84375,
+ "selected_interface_frac": 0.15625,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.375,
+ "step": 5,
+ "n_elem": 1082,
+ "target_elements": 4000,
+ "gap": 2918,
+ "cutoff_score": 1.6681004762649536,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.437368392944336,
+ "score_mean": -6.084046333398874e-08,
+ "score_p50": 0.2000058889389038,
+ "score_p90": 1.0697492361068726,
+ "fraction_gt1": 0.10685805422647528,
+ "n_inside": 642,
+ "n_interface": 561,
+ "n_outside": 51,
+ "selected_inside_frac": 0.02702702702702703,
+ "selected_interface_frac": 0.972972972972973,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 6,
+ "n_elem": 1254,
+ "target_elements": 4000,
+ "gap": 2746,
+ "cutoff_score": 1.81544029712677,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9808833599090576,
+ "score_mean": 1.713267607783564e-07,
+ "score_p50": -0.26228636503219604,
+ "score_p90": 0.9367687106132507,
+ "fraction_gt1": 0.09052631578947369,
+ "n_inside": 645,
+ "n_interface": 729,
+ "n_outside": 51,
+ "selected_inside_frac": 0.6190476190476191,
+ "selected_interface_frac": 0.38095238095238093,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.45833333333333326,
+ "step": 7,
+ "n_elem": 1425,
+ "target_elements": 4000,
+ "gap": 2575,
+ "cutoff_score": 1.6862897872924805,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0451173782348633,
+ "score_mean": -3.6395441327385925e-08,
+ "score_p50": -0.21102309226989746,
+ "score_p90": 0.9577268362045288,
+ "fraction_gt1": 0.09540846750149076,
+ "n_inside": 783,
+ "n_interface": 843,
+ "n_outside": 51,
+ "selected_inside_frac": 0.62,
+ "selected_interface_frac": 0.38,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.5729166666666667,
+ "step": 8,
+ "n_elem": 1677,
+ "target_elements": 4000,
+ "gap": 2323,
+ "cutoff_score": 1.4238741397857666,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.09737491607666,
+ "score_mean": 1.2367813440050668e-07,
+ "score_p50": -0.10349729657173157,
+ "score_p90": 0.9387032389640808,
+ "fraction_gt1": 0.08865248226950355,
+ "n_inside": 946,
+ "n_interface": 977,
+ "n_outside": 51,
+ "selected_inside_frac": 0.6949152542372882,
+ "selected_interface_frac": 0.3050847457627119,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.6354166666666667,
+ "step": 9,
+ "n_elem": 1974,
+ "target_elements": 4000,
+ "gap": 2026,
+ "cutoff_score": 1.3739441633224487,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1809048652648926,
+ "score_mean": -2.6467978031519124e-08,
+ "score_p50": -0.4333856403827667,
+ "score_p90": 1.0722705125808716,
+ "fraction_gt1": 0.12966175195143104,
+ "n_inside": 1143,
+ "n_interface": 1112,
+ "n_outside": 51,
+ "selected_inside_frac": 0.4492753623188406,
+ "selected_interface_frac": 0.5217391304347826,
+ "selected_outside_frac": 0.028985507246376812,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.7604166666666667,
+ "step": 10,
+ "n_elem": 2306,
+ "target_elements": 4000,
+ "gap": 1694,
+ "cutoff_score": 1.4577986001968384,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4238688945770264,
+ "score_mean": -6.857882794975012e-08,
+ "score_p50": -0.3890001177787781,
+ "score_p90": 1.1290966272354126,
+ "fraction_gt1": 0.1707865168539326,
+ "n_inside": 1327,
+ "n_interface": 1285,
+ "n_outside": 58,
+ "selected_inside_frac": 0.75,
+ "selected_interface_frac": 0.225,
+ "selected_outside_frac": 0.025,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.84375,
+ "step": 11,
+ "n_elem": 2670,
+ "target_elements": 4000,
+ "gap": 1330,
+ "cutoff_score": 1.537851333618164,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3841562271118164,
+ "score_mean": -1.3768807605174516e-07,
+ "score_p50": -0.27604392170906067,
+ "score_p90": 1.290246605873108,
+ "fraction_gt1": 0.1498549790525298,
+ "n_inside": 1629,
+ "n_interface": 1403,
+ "n_outside": 71,
+ "selected_inside_frac": 0.6559139784946236,
+ "selected_interface_frac": 0.3010752688172043,
+ "selected_outside_frac": 0.043010752688172046,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.96875,
+ "step": 12,
+ "n_elem": 3103,
+ "target_elements": 4000,
+ "gap": 897,
+ "cutoff_score": 1.5840322971343994,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.395561456680298,
+ "score_mean": -1.006074015208469e-07,
+ "score_p50": -0.13134852051734924,
+ "score_p90": 1.2579981088638306,
+ "fraction_gt1": 0.1239010989010989,
+ "n_inside": 1962,
+ "n_interface": 1581,
+ "n_outside": 97,
+ "selected_inside_frac": 0.28440366972477066,
+ "selected_interface_frac": 0.5504587155963303,
+ "selected_outside_frac": 0.1651376146788991,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.8854166666666666,
+ "step": 13,
+ "n_elem": 3640,
+ "target_elements": 4000,
+ "gap": 360,
+ "cutoff_score": 1.647878885269165,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 45,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.10028907305098234,
+ "max_err": 0.25042689663622075,
+ "actual_elements": 8150,
+ "num_steps": 21,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.46692657470703125,
+ "score_mean": 0.1972636878490448,
+ "score_p50": 0.16678009927272797,
+ "score_p90": 0.436911940574646,
+ "fraction_gt1": 0.0,
+ "n_inside": 52,
+ "n_interface": 409,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.3125,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.46692657470703125,
+ "num_tied_at_cutoff": 52,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.46692657470703125,
+ "score_mean": 0.18225760757923126,
+ "score_p50": 0.16678009927272797,
+ "score_p90": 0.23346328735351562,
+ "fraction_gt1": 0.0,
+ "n_inside": 112,
+ "n_interface": 459,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.20833333333333326,
+ "step": 1,
+ "n_elem": 622,
+ "target_elements": 8000,
+ "gap": 7378,
+ "cutoff_score": 0.46692657470703125,
+ "num_tied_at_cutoff": 20,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3301669657230377,
+ "score_mean": 0.17880086600780487,
+ "score_p50": 0.16678009927272797,
+ "score_p90": 0.23346328735351562,
+ "fraction_gt1": 0.0,
+ "n_inside": 187,
+ "n_interface": 460,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.34374999999999994,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 698,
+ "target_elements": 8000,
+ "gap": 7302,
+ "cutoff_score": 0.23346328735351562,
+ "num_tied_at_cutoff": 176,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23346328735351562,
+ "score_mean": 0.1577131599187851,
+ "score_p50": 0.16678009927272797,
+ "score_p90": 0.23346328735351562,
+ "fraction_gt1": 0.0,
+ "n_inside": 284,
+ "n_interface": 535,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.31249999999999994,
+ "selected_y_range": 0.29166666666666674,
+ "step": 3,
+ "n_elem": 870,
+ "target_elements": 8000,
+ "gap": 7130,
+ "cutoff_score": 0.23346328735351562,
+ "num_tied_at_cutoff": 132,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23346328735351562,
+ "score_mean": 0.14291533827781677,
+ "score_p50": 0.16508348286151886,
+ "score_p90": 0.16678009927272797,
+ "fraction_gt1": 0.0,
+ "n_inside": 395,
+ "n_interface": 592,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.22916666666666669,
+ "selected_y_range": 0.22916666666666674,
+ "step": 4,
+ "n_elem": 1038,
+ "target_elements": 8000,
+ "gap": 6962,
+ "cutoff_score": 0.23346328735351562,
+ "num_tied_at_cutoff": 90,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23346328735351562,
+ "score_mean": 0.13456887006759644,
+ "score_p50": 0.11793133616447449,
+ "score_p90": 0.16678009927272797,
+ "fraction_gt1": 0.0,
+ "n_inside": 549,
+ "n_interface": 592,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.13541666666666663,
+ "selected_y_range": 0.16666666666666674,
+ "step": 5,
+ "n_elem": 1192,
+ "target_elements": 8000,
+ "gap": 6808,
+ "cutoff_score": 0.23346328735351562,
+ "num_tied_at_cutoff": 36,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16678009927272797,
+ "score_mean": 0.12855827808380127,
+ "score_p50": 0.11673164367675781,
+ "score_p90": 0.16678009927272797,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 592,
+ "n_outside": 51,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 6,
+ "n_elem": 1328,
+ "target_elements": 8000,
+ "gap": 6672,
+ "cutoff_score": 0.16678009927272797,
+ "num_tied_at_cutoff": 412,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16678009927272797,
+ "score_mean": 0.11879178881645203,
+ "score_p50": 0.11673164367675781,
+ "score_p90": 0.16678009927272797,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 800,
+ "n_outside": 51,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.625,
+ "step": 7,
+ "n_elem": 1536,
+ "target_elements": 8000,
+ "gap": 6464,
+ "cutoff_score": 0.16678009927272797,
+ "num_tied_at_cutoff": 334,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16678009927272797,
+ "score_mean": 0.11050533503293991,
+ "score_p50": 0.11673164367675781,
+ "score_p90": 0.16678009927272797,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 1034,
+ "n_outside": 51,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 8,
+ "n_elem": 1770,
+ "target_elements": 8000,
+ "gap": 6230,
+ "cutoff_score": 0.16678009927272797,
+ "num_tied_at_cutoff": 250,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16678009927272797,
+ "score_mean": 0.10365334898233414,
+ "score_p50": 0.08339004963636398,
+ "score_p90": 0.16508348286151886,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 1290,
+ "n_outside": 51,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 9,
+ "n_elem": 2026,
+ "target_elements": 8000,
+ "gap": 5974,
+ "cutoff_score": 0.16678009927272797,
+ "num_tied_at_cutoff": 156,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16678009927272797,
+ "score_mean": 0.09830325841903687,
+ "score_p50": 0.08339004963636398,
+ "score_p90": 0.11793133616447449,
+ "fraction_gt1": 0.0,
+ "n_inside": 685,
+ "n_interface": 1546,
+ "n_outside": 51,
+ "selected_inside_frac": 0.029411764705882353,
+ "selected_interface_frac": 0.22058823529411764,
+ "selected_outside_frac": 0.75,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8177083333333333,
+ "step": 10,
+ "n_elem": 2282,
+ "target_elements": 8000,
+ "gap": 5718,
+ "cutoff_score": 0.16508348286151886,
+ "num_tied_at_cutoff": 108,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16508348286151886,
+ "score_mean": 0.0940365195274353,
+ "score_p50": 0.08339004963636398,
+ "score_p90": 0.11673164367675781,
+ "fraction_gt1": 0.0,
+ "n_inside": 694,
+ "n_interface": 1630,
+ "n_outside": 198,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333337,
+ "selected_y_range": 0.33333333333333326,
+ "step": 11,
+ "n_elem": 2522,
+ "target_elements": 8000,
+ "gap": 5478,
+ "cutoff_score": 0.16508348286151886,
+ "num_tied_at_cutoff": 103,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16508348286151886,
+ "score_mean": 0.0886969342827797,
+ "score_p50": 0.08339004963636398,
+ "score_p90": 0.11673164367675781,
+ "fraction_gt1": 0.0,
+ "n_inside": 990,
+ "n_interface": 1680,
+ "n_outside": 198,
+ "selected_inside_frac": 0.23255813953488372,
+ "selected_interface_frac": 0.7674418604651163,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333334,
+ "selected_y_range": 0.7708333333333334,
+ "step": 12,
+ "n_elem": 2868,
+ "target_elements": 8000,
+ "gap": 5132,
+ "cutoff_score": 0.11793133616447449,
+ "num_tied_at_cutoff": 104,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11793133616447449,
+ "score_mean": 0.08282899856567383,
+ "score_p50": 0.08339004963636398,
+ "score_p90": 0.11673164367675781,
+ "fraction_gt1": 0.0,
+ "n_inside": 1080,
+ "n_interface": 1993,
+ "n_outside": 198,
+ "selected_inside_frac": 0.6428571428571429,
+ "selected_interface_frac": 0.35714285714285715,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8958333333333334,
+ "step": 13,
+ "n_elem": 3271,
+ "target_elements": 8000,
+ "gap": 4729,
+ "cutoff_score": 0.11673164367675781,
+ "num_tied_at_cutoff": 496,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11673164367675781,
+ "score_mean": 0.07556837052106857,
+ "score_p50": 0.08254174143075943,
+ "score_p90": 0.08339004963636398,
+ "fraction_gt1": 0.0,
+ "n_inside": 1402,
+ "n_interface": 2272,
+ "n_outside": 198,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3020833333333333,
+ "selected_y_range": 0.28645833333333326,
+ "step": 14,
+ "n_elem": 3872,
+ "target_elements": 8000,
+ "gap": 4128,
+ "cutoff_score": 0.11673164367675781,
+ "num_tied_at_cutoff": 386,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11673164367675781,
+ "score_mean": 0.07142665982246399,
+ "score_p50": 0.08254174143075943,
+ "score_p90": 0.08339004963636398,
+ "fraction_gt1": 0.0,
+ "n_inside": 1892,
+ "n_interface": 2272,
+ "n_outside": 198,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333331,
+ "selected_y_range": 0.20833333333333326,
+ "step": 15,
+ "n_elem": 4362,
+ "target_elements": 8000,
+ "gap": 3638,
+ "cutoff_score": 0.11673164367675781,
+ "num_tied_at_cutoff": 230,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11673164367675781,
+ "score_mean": 0.06797993928194046,
+ "score_p50": 0.058965668082237244,
+ "score_p90": 0.08339004963636398,
+ "fraction_gt1": 0.0,
+ "n_inside": 2404,
+ "n_interface": 2272,
+ "n_outside": 198,
+ "selected_inside_frac": 0.4794520547945205,
+ "selected_interface_frac": 0.5205479452054794,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.44791666666666674,
+ "selected_y_range": 0.44791666666666674,
+ "step": 16,
+ "n_elem": 4874,
+ "target_elements": 8000,
+ "gap": 3126,
+ "cutoff_score": 0.08339004963636398,
+ "num_tied_at_cutoff": 1410,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.08339004963636398,
+ "score_mean": 0.06390021741390228,
+ "score_p50": 0.058365821838378906,
+ "score_p90": 0.08339004963636398,
+ "fraction_gt1": 0.0,
+ "n_inside": 2664,
+ "n_interface": 2640,
+ "n_outside": 198,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.5729166666666667,
+ "step": 17,
+ "n_elem": 5502,
+ "target_elements": 8000,
+ "gap": 2498,
+ "cutoff_score": 0.08339004963636398,
+ "num_tied_at_cutoff": 1274,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.08339004963636398,
+ "score_mean": 0.06000028923153877,
+ "score_p50": 0.058365821838378906,
+ "score_p90": 0.08339004963636398,
+ "fraction_gt1": 0.0,
+ "n_inside": 2664,
+ "n_interface": 3304,
+ "n_outside": 198,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.65625,
+ "step": 18,
+ "n_elem": 6166,
+ "target_elements": 8000,
+ "gap": 1834,
+ "cutoff_score": 0.08339004963636398,
+ "num_tied_at_cutoff": 1060,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.08339004963636398,
+ "score_mean": 0.05651777610182762,
+ "score_p50": 0.058365821838378906,
+ "score_p90": 0.08339004963636398,
+ "fraction_gt1": 0.0,
+ "n_inside": 2664,
+ "n_interface": 4050,
+ "n_outside": 198,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.7291666666666667,
+ "step": 19,
+ "n_elem": 6912,
+ "target_elements": 8000,
+ "gap": 1088,
+ "cutoff_score": 0.08339004963636398,
+ "num_tied_at_cutoff": 816,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.08339004963636398,
+ "score_mean": 0.053583141416311264,
+ "score_p50": 0.058365821838378906,
+ "score_p90": 0.08254174143075943,
+ "fraction_gt1": 0.0,
+ "n_inside": 2664,
+ "n_interface": 4831,
+ "n_outside": 198,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.78125,
+ "step": 20,
+ "n_elem": 7693,
+ "target_elements": 8000,
+ "gap": 307,
+ "cutoff_score": 0.08339004963636398,
+ "num_tied_at_cutoff": 570,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 45,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.09972342247226738,
+ "max_err": 0.25070583095942145,
+ "actual_elements": 8111,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9829397201538086,
+ "score_mean": 0.11538833379745483,
+ "score_p50": 9.142992141164541e-09,
+ "score_p90": 0.7855992317199707,
+ "fraction_gt1": 0.0,
+ "n_inside": 52,
+ "n_interface": 409,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.29166666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9598034024238586,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9774057269096375,
+ "score_mean": 0.09936530888080597,
+ "score_p50": 1.5887785309587343e-07,
+ "score_p90": 0.4050027132034302,
+ "fraction_gt1": 0.0,
+ "n_inside": 112,
+ "n_interface": 431,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3125,
+ "step": 1,
+ "n_elem": 594,
+ "target_elements": 8000,
+ "gap": 7406,
+ "cutoff_score": 0.9496873021125793,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9578854441642761,
+ "score_mean": 0.12836278975009918,
+ "score_p50": 1.897788024507463e-05,
+ "score_p90": 0.5261281728744507,
+ "fraction_gt1": 0.0,
+ "n_inside": 179,
+ "n_interface": 442,
+ "n_outside": 51,
+ "selected_inside_frac": 0.3,
+ "selected_interface_frac": 0.7,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.37500000000000006,
+ "selected_y_range": 0.4375,
+ "step": 2,
+ "n_elem": 672,
+ "target_elements": 8000,
+ "gap": 7328,
+ "cutoff_score": 0.8593349456787109,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.982745349407196,
+ "score_mean": 0.19658970832824707,
+ "score_p50": 6.976926670176908e-05,
+ "score_p90": 0.8978148698806763,
+ "fraction_gt1": 0.0,
+ "n_inside": 220,
+ "n_interface": 525,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3020833333333333,
+ "selected_y_range": 0.26041666666666674,
+ "step": 3,
+ "n_elem": 796,
+ "target_elements": 8000,
+ "gap": 7204,
+ "cutoff_score": 0.9543672204017639,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9836639165878296,
+ "score_mean": 0.17956803739070892,
+ "score_p50": 0.0004764766781590879,
+ "score_p90": 0.8700332641601562,
+ "fraction_gt1": 0.0,
+ "n_inside": 349,
+ "n_interface": 532,
+ "n_outside": 51,
+ "selected_inside_frac": 0.6666666666666666,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.42708333333333337,
+ "selected_y_range": 0.4479166666666667,
+ "step": 4,
+ "n_elem": 932,
+ "target_elements": 8000,
+ "gap": 7068,
+ "cutoff_score": 0.9588744640350342,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9805709719657898,
+ "score_mean": 0.1556427925825119,
+ "score_p50": 0.001968229888007045,
+ "score_p90": 0.789807915687561,
+ "fraction_gt1": 0.0,
+ "n_inside": 452,
+ "n_interface": 595,
+ "n_outside": 51,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.46874999999999994,
+ "selected_y_range": 0.44791666666666663,
+ "step": 5,
+ "n_elem": 1098,
+ "target_elements": 8000,
+ "gap": 6902,
+ "cutoff_score": 0.9400981664657593,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9841694831848145,
+ "score_mean": 0.1513286978006363,
+ "score_p50": 0.004049495793879032,
+ "score_p90": 0.6672315001487732,
+ "fraction_gt1": 0.0,
+ "n_inside": 552,
+ "n_interface": 689,
+ "n_outside": 51,
+ "selected_inside_frac": 0.47368421052631576,
+ "selected_interface_frac": 0.5263157894736842,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 6,
+ "n_elem": 1292,
+ "target_elements": 8000,
+ "gap": 6708,
+ "cutoff_score": 0.908717930316925,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9749155044555664,
+ "score_mean": 0.16148923337459564,
+ "score_p50": 0.005321210250258446,
+ "score_p90": 0.7083604335784912,
+ "fraction_gt1": 0.0,
+ "n_inside": 662,
+ "n_interface": 811,
+ "n_outside": 51,
+ "selected_inside_frac": 0.5777777777777777,
+ "selected_interface_frac": 0.4222222222222222,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.5416666666666667,
+ "step": 7,
+ "n_elem": 1524,
+ "target_elements": 8000,
+ "gap": 6476,
+ "cutoff_score": 0.8850557804107666,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9734304547309875,
+ "score_mean": 0.16254322230815887,
+ "score_p50": 0.005527903791517019,
+ "score_p90": 0.6944942474365234,
+ "fraction_gt1": 0.0,
+ "n_inside": 836,
+ "n_interface": 925,
+ "n_outside": 51,
+ "selected_inside_frac": 0.5925925925925926,
+ "selected_interface_frac": 0.4074074074074074,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.59375,
+ "step": 8,
+ "n_elem": 1812,
+ "target_elements": 8000,
+ "gap": 6188,
+ "cutoff_score": 0.9001723527908325,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9715894460678101,
+ "score_mean": 0.17008744180202484,
+ "score_p50": 0.0049429084174335,
+ "score_p90": 0.701798677444458,
+ "fraction_gt1": 0.0,
+ "n_inside": 1007,
+ "n_interface": 1069,
+ "n_outside": 51,
+ "selected_inside_frac": 0.42857142857142855,
+ "selected_interface_frac": 0.5714285714285714,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.59375,
+ "step": 9,
+ "n_elem": 2127,
+ "target_elements": 8000,
+ "gap": 5873,
+ "cutoff_score": 0.8941566348075867,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9855085015296936,
+ "score_mean": 0.16736336052417755,
+ "score_p50": 0.0048706866800785065,
+ "score_p90": 0.7298930287361145,
+ "fraction_gt1": 0.0,
+ "n_inside": 1179,
+ "n_interface": 1277,
+ "n_outside": 51,
+ "selected_inside_frac": 0.29333333333333333,
+ "selected_interface_frac": 0.7066666666666667,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.625,
+ "step": 10,
+ "n_elem": 2507,
+ "target_elements": 8000,
+ "gap": 5493,
+ "cutoff_score": 0.8925042152404785,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9705661535263062,
+ "score_mean": 0.16741128265857697,
+ "score_p50": 0.004458220675587654,
+ "score_p90": 0.7226732969284058,
+ "fraction_gt1": 0.0,
+ "n_inside": 1320,
+ "n_interface": 1570,
+ "n_outside": 51,
+ "selected_inside_frac": 0.6590909090909091,
+ "selected_interface_frac": 0.3068181818181818,
+ "selected_outside_frac": 0.03409090909090909,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.78125,
+ "step": 11,
+ "n_elem": 2941,
+ "target_elements": 8000,
+ "gap": 5059,
+ "cutoff_score": 0.8931670784950256,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9781345129013062,
+ "score_mean": 0.16466625034809113,
+ "score_p50": 0.0032904502004384995,
+ "score_p90": 0.7180671095848083,
+ "fraction_gt1": 0.0,
+ "n_inside": 1694,
+ "n_interface": 1727,
+ "n_outside": 63,
+ "selected_inside_frac": 0.40384615384615385,
+ "selected_interface_frac": 0.5961538461538461,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9270833333333333,
+ "selected_y_range": 0.7604166666666667,
+ "step": 12,
+ "n_elem": 3484,
+ "target_elements": 8000,
+ "gap": 4516,
+ "cutoff_score": 0.8935048580169678,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.971828043460846,
+ "score_mean": 0.1528153419494629,
+ "score_p50": 0.0035006594844162464,
+ "score_p90": 0.6895220279693604,
+ "fraction_gt1": 0.0,
+ "n_inside": 1950,
+ "n_interface": 2084,
+ "n_outside": 63,
+ "selected_inside_frac": 0.4918032786885246,
+ "selected_interface_frac": 0.45081967213114754,
+ "selected_outside_frac": 0.05737704918032787,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.875,
+ "step": 13,
+ "n_elem": 4097,
+ "target_elements": 8000,
+ "gap": 3903,
+ "cutoff_score": 0.892045795917511,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9823022484779358,
+ "score_mean": 0.1419304758310318,
+ "score_p50": 0.0036555728875100613,
+ "score_p90": 0.6334785223007202,
+ "fraction_gt1": 0.0,
+ "n_inside": 2323,
+ "n_interface": 2406,
+ "n_outside": 99,
+ "selected_inside_frac": 0.4236111111111111,
+ "selected_interface_frac": 0.5763888888888888,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.84375,
+ "step": 14,
+ "n_elem": 4828,
+ "target_elements": 8000,
+ "gap": 3172,
+ "cutoff_score": 0.8623208403587341,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9734023213386536,
+ "score_mean": 0.1396307349205017,
+ "score_p50": 0.003767855931073427,
+ "score_p90": 0.6222659945487976,
+ "fraction_gt1": 0.0,
+ "n_inside": 2694,
+ "n_interface": 2907,
+ "n_outside": 100,
+ "selected_inside_frac": 0.5906432748538012,
+ "selected_interface_frac": 0.391812865497076,
+ "selected_outside_frac": 0.017543859649122806,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9375,
+ "step": 15,
+ "n_elem": 5701,
+ "target_elements": 8000,
+ "gap": 2299,
+ "cutoff_score": 0.8341671228408813,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9840182662010193,
+ "score_mean": 0.14470237493515015,
+ "score_p50": 0.00489109568297863,
+ "score_p90": 0.655266523361206,
+ "fraction_gt1": 0.0,
+ "n_inside": 3286,
+ "n_interface": 3332,
+ "n_outside": 117,
+ "selected_inside_frac": 0.5247524752475248,
+ "selected_interface_frac": 0.47029702970297027,
+ "selected_outside_frac": 0.0049504950495049506,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.953125,
+ "step": 16,
+ "n_elem": 6735,
+ "target_elements": 8000,
+ "gap": 1265,
+ "cutoff_score": 0.8493958711624146,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9674697518348694,
+ "score_mean": 0.15023191273212433,
+ "score_p50": 0.00536104803904891,
+ "score_p90": 0.6418083906173706,
+ "fraction_gt1": 0.0,
+ "n_inside": 3881,
+ "n_interface": 3889,
+ "n_outside": 121,
+ "selected_inside_frac": 0.6666666666666666,
+ "selected_interface_frac": 0.3333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5286458333333333,
+ "selected_y_range": 0.5130208333333333,
+ "step": 17,
+ "n_elem": 7891,
+ "target_elements": 8000,
+ "gap": 109,
+ "cutoff_score": 0.9351024627685547,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 45,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.09944943493327894,
+ "max_err": 0.24973103469062052,
+ "actual_elements": 8383,
+ "num_steps": 19,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.985250949859619,
+ "score_mean": 2.0302832126617432e-07,
+ "score_p50": -0.3673672080039978,
+ "score_p90": 1.8632582426071167,
+ "fraction_gt1": 0.111328125,
+ "n_inside": 52,
+ "n_interface": 409,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.29166666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 2.945297956466675,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.806316375732422,
+ "score_mean": -3.853229557648774e-08,
+ "score_p50": -0.3559892773628235,
+ "score_p90": 0.8324110507965088,
+ "fraction_gt1": 0.08754208754208755,
+ "n_inside": 112,
+ "n_interface": 431,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.3125,
+ "step": 1,
+ "n_elem": 594,
+ "target_elements": 8000,
+ "gap": 7406,
+ "cutoff_score": 3.749636173248291,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 4.891535758972168,
+ "score_mean": -1.1353265705338345e-07,
+ "score_p50": -0.4377170205116272,
+ "score_p90": 1.3143101930618286,
+ "fraction_gt1": 0.14732142857142858,
+ "n_inside": 179,
+ "n_interface": 442,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3229166666666667,
+ "selected_y_range": 0.29166666666666674,
+ "step": 2,
+ "n_elem": 672,
+ "target_elements": 8000,
+ "gap": 7328,
+ "cutoff_score": 1.9221196174621582,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 3.0158891677856445,
+ "score_mean": 1.931492334961149e-07,
+ "score_p50": -0.2997561991214752,
+ "score_p90": 1.5917011499404907,
+ "fraction_gt1": 0.1620253164556962,
+ "n_inside": 276,
+ "n_interface": 463,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28124999999999994,
+ "selected_y_range": 0.25,
+ "step": 3,
+ "n_elem": 790,
+ "target_elements": 8000,
+ "gap": 7210,
+ "cutoff_score": 1.919670581817627,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.272526264190674,
+ "score_mean": 1.575635764083927e-07,
+ "score_p50": -0.11078843474388123,
+ "score_p90": 1.327671766281128,
+ "fraction_gt1": 0.13695652173913042,
+ "n_inside": 401,
+ "n_interface": 468,
+ "n_outside": 51,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18749999999999994,
+ "selected_y_range": 0.32291666666666674,
+ "step": 4,
+ "n_elem": 920,
+ "target_elements": 8000,
+ "gap": 7080,
+ "cutoff_score": 2.201561212539673,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5379066467285156,
+ "score_mean": 2.8204786062246967e-08,
+ "score_p50": 0.06667152047157288,
+ "score_p90": 1.1774916648864746,
+ "fraction_gt1": 0.1044362292051756,
+ "n_inside": 517,
+ "n_interface": 514,
+ "n_outside": 51,
+ "selected_inside_frac": 0.84375,
+ "selected_interface_frac": 0.15625,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.375,
+ "step": 5,
+ "n_elem": 1082,
+ "target_elements": 8000,
+ "gap": 6918,
+ "cutoff_score": 1.6681004762649536,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.437368392944336,
+ "score_mean": -6.084046333398874e-08,
+ "score_p50": 0.2000058889389038,
+ "score_p90": 1.0697492361068726,
+ "fraction_gt1": 0.10685805422647528,
+ "n_inside": 642,
+ "n_interface": 561,
+ "n_outside": 51,
+ "selected_inside_frac": 0.02702702702702703,
+ "selected_interface_frac": 0.972972972972973,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 6,
+ "n_elem": 1254,
+ "target_elements": 8000,
+ "gap": 6746,
+ "cutoff_score": 1.81544029712677,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9808833599090576,
+ "score_mean": 1.713267607783564e-07,
+ "score_p50": -0.26228636503219604,
+ "score_p90": 0.9367687106132507,
+ "fraction_gt1": 0.09052631578947369,
+ "n_inside": 645,
+ "n_interface": 729,
+ "n_outside": 51,
+ "selected_inside_frac": 0.6190476190476191,
+ "selected_interface_frac": 0.38095238095238093,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.45833333333333326,
+ "step": 7,
+ "n_elem": 1425,
+ "target_elements": 8000,
+ "gap": 6575,
+ "cutoff_score": 1.6862897872924805,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0451173782348633,
+ "score_mean": -3.6395441327385925e-08,
+ "score_p50": -0.21102309226989746,
+ "score_p90": 0.9577268362045288,
+ "fraction_gt1": 0.09540846750149076,
+ "n_inside": 783,
+ "n_interface": 843,
+ "n_outside": 51,
+ "selected_inside_frac": 0.62,
+ "selected_interface_frac": 0.38,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.5729166666666667,
+ "step": 8,
+ "n_elem": 1677,
+ "target_elements": 8000,
+ "gap": 6323,
+ "cutoff_score": 1.4238741397857666,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.09737491607666,
+ "score_mean": 1.2367813440050668e-07,
+ "score_p50": -0.10349729657173157,
+ "score_p90": 0.9387032389640808,
+ "fraction_gt1": 0.08865248226950355,
+ "n_inside": 946,
+ "n_interface": 977,
+ "n_outside": 51,
+ "selected_inside_frac": 0.6949152542372882,
+ "selected_interface_frac": 0.3050847457627119,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.6354166666666667,
+ "step": 9,
+ "n_elem": 1974,
+ "target_elements": 8000,
+ "gap": 6026,
+ "cutoff_score": 1.3739441633224487,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1809048652648926,
+ "score_mean": -2.6467978031519124e-08,
+ "score_p50": -0.4333856403827667,
+ "score_p90": 1.0722705125808716,
+ "fraction_gt1": 0.12966175195143104,
+ "n_inside": 1143,
+ "n_interface": 1112,
+ "n_outside": 51,
+ "selected_inside_frac": 0.4492753623188406,
+ "selected_interface_frac": 0.5217391304347826,
+ "selected_outside_frac": 0.028985507246376812,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.7604166666666667,
+ "step": 10,
+ "n_elem": 2306,
+ "target_elements": 8000,
+ "gap": 5694,
+ "cutoff_score": 1.4577986001968384,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4238688945770264,
+ "score_mean": -6.857882794975012e-08,
+ "score_p50": -0.3890001177787781,
+ "score_p90": 1.1290966272354126,
+ "fraction_gt1": 0.1707865168539326,
+ "n_inside": 1327,
+ "n_interface": 1285,
+ "n_outside": 58,
+ "selected_inside_frac": 0.75,
+ "selected_interface_frac": 0.225,
+ "selected_outside_frac": 0.025,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.84375,
+ "step": 11,
+ "n_elem": 2670,
+ "target_elements": 8000,
+ "gap": 5330,
+ "cutoff_score": 1.537851333618164,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3841562271118164,
+ "score_mean": -1.3768807605174516e-07,
+ "score_p50": -0.27604392170906067,
+ "score_p90": 1.290246605873108,
+ "fraction_gt1": 0.1498549790525298,
+ "n_inside": 1629,
+ "n_interface": 1403,
+ "n_outside": 71,
+ "selected_inside_frac": 0.6559139784946236,
+ "selected_interface_frac": 0.3010752688172043,
+ "selected_outside_frac": 0.043010752688172046,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.96875,
+ "step": 12,
+ "n_elem": 3103,
+ "target_elements": 8000,
+ "gap": 4897,
+ "cutoff_score": 1.5840322971343994,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.395561456680298,
+ "score_mean": -1.006074015208469e-07,
+ "score_p50": -0.13134852051734924,
+ "score_p90": 1.2579981088638306,
+ "fraction_gt1": 0.1239010989010989,
+ "n_inside": 1962,
+ "n_interface": 1581,
+ "n_outside": 97,
+ "selected_inside_frac": 0.28440366972477066,
+ "selected_interface_frac": 0.5504587155963303,
+ "selected_outside_frac": 0.1651376146788991,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.8854166666666666,
+ "step": 13,
+ "n_elem": 3640,
+ "target_elements": 8000,
+ "gap": 4360,
+ "cutoff_score": 1.647878885269165,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3620243072509766,
+ "score_mean": 8.918922134171225e-08,
+ "score_p50": -0.007509782910346985,
+ "score_p90": 1.1790645122528076,
+ "fraction_gt1": 0.12493911349245007,
+ "n_inside": 2125,
+ "n_interface": 1809,
+ "n_outside": 172,
+ "selected_inside_frac": 0.34146341463414637,
+ "selected_interface_frac": 0.6585365853658537,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.5520833333333334,
+ "step": 14,
+ "n_elem": 4106,
+ "target_elements": 8000,
+ "gap": 3894,
+ "cutoff_score": 1.5189716815948486,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2448761463165283,
+ "score_mean": -7.729230588893188e-08,
+ "score_p50": 0.1114569902420044,
+ "score_p90": 1.1007888317108154,
+ "fraction_gt1": 0.1270578303081469,
+ "n_inside": 2321,
+ "n_interface": 2245,
+ "n_outside": 172,
+ "selected_inside_frac": 0.1619718309859155,
+ "selected_interface_frac": 0.8380281690140845,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.5833333333333334,
+ "step": 15,
+ "n_elem": 4738,
+ "target_elements": 8000,
+ "gap": 3262,
+ "cutoff_score": 1.6048121452331543,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.34979248046875,
+ "score_mean": -1.927903525711372e-07,
+ "score_p50": -0.20587493479251862,
+ "score_p90": 1.1556166410446167,
+ "fraction_gt1": 0.11835748792270531,
+ "n_inside": 2466,
+ "n_interface": 2744,
+ "n_outside": 172,
+ "selected_inside_frac": 0.7577639751552795,
+ "selected_interface_frac": 0.2422360248447205,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.6458333333333334,
+ "step": 16,
+ "n_elem": 5382,
+ "target_elements": 8000,
+ "gap": 2618,
+ "cutoff_score": 1.6145378351211548,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.6398794651031494,
+ "score_mean": -1.3700372392122517e-07,
+ "score_p50": -0.28187137842178345,
+ "score_p90": 1.0765808820724487,
+ "fraction_gt1": 0.11127144460477793,
+ "n_inside": 3083,
+ "n_interface": 2982,
+ "n_outside": 172,
+ "selected_inside_frac": 0.7272727272727273,
+ "selected_interface_frac": 0.26737967914438504,
+ "selected_outside_frac": 0.0053475935828877,
+ "selected_x_range": 0.9583333333333334,
+ "selected_y_range": 0.7708333333333334,
+ "step": 17,
+ "n_elem": 6237,
+ "target_elements": 8000,
+ "gap": 1763,
+ "cutoff_score": 1.5808980464935303,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.677333354949951,
+ "score_mean": 8.383950245161031e-08,
+ "score_p50": -0.15432746708393097,
+ "score_p90": 0.9257256388664246,
+ "fraction_gt1": 0.09340659340659341,
+ "n_inside": 3773,
+ "n_interface": 3330,
+ "n_outside": 177,
+ "selected_inside_frac": 0.41284403669724773,
+ "selected_interface_frac": 0.46788990825688076,
+ "selected_outside_frac": 0.11926605504587157,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 18,
+ "n_elem": 7280,
+ "target_elements": 8000,
+ "gap": 720,
+ "cutoff_score": 1.4318767786026,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 45,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.11947241508697325,
+ "max_err": 0.18052281201004963,
+ "actual_elements": 2060,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.8316994905471802,
+ "score_mean": 0.35295259952545166,
+ "score_p50": 0.3345019221305847,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 19,
+ "n_interface": 204,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.18750000000000006,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.8316994905471802,
+ "num_tied_at_cutoff": 19,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.5881003737449646,
+ "score_mean": 0.3367770314216614,
+ "score_p50": 0.3345019221305847,
+ "score_p90": 0.4158497452735901,
+ "fraction_gt1": 0.0,
+ "n_inside": 74,
+ "n_interface": 229,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333326,
+ "selected_y_range": 0.19791666666666669,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 2000,
+ "gap": 1408,
+ "cutoff_score": 0.4158497452735901,
+ "num_tied_at_cutoff": 70,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4158497452735901,
+ "score_mean": 0.28663983941078186,
+ "score_p50": 0.3345019221305847,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 150,
+ "n_interface": 325,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.15625,
+ "selected_y_range": 0.16666666666666663,
+ "step": 2,
+ "n_elem": 764,
+ "target_elements": 2000,
+ "gap": 1236,
+ "cutoff_score": 0.4158497452735901,
+ "num_tied_at_cutoff": 29,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.26688235998153687,
+ "score_p50": 0.3345019221305847,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 336,
+ "n_outside": 289,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.39583333333333326,
+ "step": 3,
+ "n_elem": 876,
+ "target_elements": 2000,
+ "gap": 1124,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 456,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.24419711530208588,
+ "score_p50": 0.20792487263679504,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 488,
+ "n_outside": 289,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 1028,
+ "target_elements": 2000,
+ "gap": 972,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 398,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.22553803026676178,
+ "score_p50": 0.20792487263679504,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 660,
+ "n_outside": 289,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6875,
+ "step": 5,
+ "n_elem": 1200,
+ "target_elements": 2000,
+ "gap": 800,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 330,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.21030646562576294,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 800,
+ "n_outside": 337,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.024390243902439025,
+ "selected_outside_frac": 0.975609756097561,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1388,
+ "target_elements": 2000,
+ "gap": 612,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 260,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.197018101811409,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 820,
+ "n_outside": 536,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8958333333333333,
+ "step": 7,
+ "n_elem": 1607,
+ "target_elements": 2000,
+ "gap": 393,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 180,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.18564742803573608,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.23652857542037964,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 820,
+ "n_outside": 787,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1858,
+ "target_elements": 2000,
+ "gap": 142,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 88,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 53,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10149864714754696,
+ "max_err": 0.17180212889737687,
+ "actual_elements": 2158,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9918643236160278,
+ "score_mean": 0.072408527135849,
+ "score_p50": 1.5149925758350946e-08,
+ "score_p90": 0.0317445732653141,
+ "fraction_gt1": 0.0,
+ "n_inside": 19,
+ "n_interface": 204,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666674,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9791882634162903,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9834572672843933,
+ "score_mean": 0.11121499538421631,
+ "score_p50": 1.8728314898908138e-07,
+ "score_p90": 0.6306324005126953,
+ "fraction_gt1": 0.0,
+ "n_inside": 73,
+ "n_interface": 224,
+ "n_outside": 289,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.13541666666666663,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 2000,
+ "gap": 1414,
+ "cutoff_score": 0.9272316098213196,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.989058792591095,
+ "score_mean": 0.1307731568813324,
+ "score_p50": 1.289201190957101e-05,
+ "score_p90": 0.7509958148002625,
+ "fraction_gt1": 0.0,
+ "n_inside": 147,
+ "n_interface": 254,
+ "n_outside": 289,
+ "selected_inside_frac": 0.7,
+ "selected_interface_frac": 0.3,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28125,
+ "selected_y_range": 0.2916666666666667,
+ "step": 2,
+ "n_elem": 690,
+ "target_elements": 2000,
+ "gap": 1310,
+ "cutoff_score": 0.9636080265045166,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9851796627044678,
+ "score_mean": 0.1294909119606018,
+ "score_p50": 0.00020673367544077337,
+ "score_p90": 0.6808438897132874,
+ "fraction_gt1": 0.0,
+ "n_inside": 221,
+ "n_interface": 298,
+ "n_outside": 289,
+ "selected_inside_frac": 0.08333333333333333,
+ "selected_interface_frac": 0.75,
+ "selected_outside_frac": 0.16666666666666666,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.47916666666666674,
+ "step": 3,
+ "n_elem": 808,
+ "target_elements": 2000,
+ "gap": 1192,
+ "cutoff_score": 0.962467610836029,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9713051319122314,
+ "score_mean": 0.13745050132274628,
+ "score_p50": 0.0002968155313283205,
+ "score_p90": 0.7180429100990295,
+ "fraction_gt1": 0.0,
+ "n_inside": 231,
+ "n_interface": 405,
+ "n_outside": 310,
+ "selected_inside_frac": 0.32142857142857145,
+ "selected_interface_frac": 0.6071428571428571,
+ "selected_outside_frac": 0.07142857142857142,
+ "selected_x_range": 0.49999999999999994,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 946,
+ "target_elements": 2000,
+ "gap": 1054,
+ "cutoff_score": 0.8965909481048584,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9713020920753479,
+ "score_mean": 0.1508341282606125,
+ "score_p50": 0.0008761442732065916,
+ "score_p90": 0.7454882264137268,
+ "fraction_gt1": 0.0,
+ "n_inside": 296,
+ "n_interface": 496,
+ "n_outside": 332,
+ "selected_inside_frac": 0.42424242424242425,
+ "selected_interface_frac": 0.45454545454545453,
+ "selected_outside_frac": 0.12121212121212122,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.75,
+ "step": 5,
+ "n_elem": 1124,
+ "target_elements": 2000,
+ "gap": 876,
+ "cutoff_score": 0.937321662902832,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9797461628913879,
+ "score_mean": 0.1527404636144638,
+ "score_p50": 0.0014991401694715023,
+ "score_p90": 0.7472468614578247,
+ "fraction_gt1": 0.0,
+ "n_inside": 373,
+ "n_interface": 603,
+ "n_outside": 363,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.4,
+ "selected_outside_frac": 0.2,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.9166666666666667,
+ "step": 6,
+ "n_elem": 1339,
+ "target_elements": 2000,
+ "gap": 661,
+ "cutoff_score": 0.9119266271591187,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9731366038322449,
+ "score_mean": 0.14735113084316254,
+ "score_p50": 0.0013266282621771097,
+ "score_p90": 0.6673669219017029,
+ "fraction_gt1": 0.0,
+ "n_inside": 457,
+ "n_interface": 705,
+ "n_outside": 404,
+ "selected_inside_frac": 0.5434782608695652,
+ "selected_interface_frac": 0.43478260869565216,
+ "selected_outside_frac": 0.021739130434782608,
+ "selected_x_range": 0.6770833333333333,
+ "selected_y_range": 0.38541666666666663,
+ "step": 7,
+ "n_elem": 1566,
+ "target_elements": 2000,
+ "gap": 434,
+ "cutoff_score": 0.8897555470466614,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.984162449836731,
+ "score_mean": 0.16239462792873383,
+ "score_p50": 0.0014966848539188504,
+ "score_p90": 0.7458480596542358,
+ "fraction_gt1": 0.0,
+ "n_inside": 595,
+ "n_interface": 848,
+ "n_outside": 417,
+ "selected_inside_frac": 0.06521739130434782,
+ "selected_interface_frac": 0.782608695652174,
+ "selected_outside_frac": 0.15217391304347827,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.8333333333333333,
+ "step": 8,
+ "n_elem": 1860,
+ "target_elements": 2000,
+ "gap": 140,
+ "cutoff_score": 0.923326849937439,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 53,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10196057103304433,
+ "max_err": 0.17147528435437606,
+ "actual_elements": 2093,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 4.466363430023193,
+ "score_mean": 7.078051567077637e-08,
+ "score_p50": -0.2493157982826233,
+ "score_p90": -0.18304657936096191,
+ "fraction_gt1": 0.0703125,
+ "n_inside": 19,
+ "n_interface": 204,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666674,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 4.439901351928711,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 4.354396820068359,
+ "score_mean": -3.2548612693972245e-07,
+ "score_p50": -0.25135016441345215,
+ "score_p90": 1.3758212327957153,
+ "fraction_gt1": 0.12116040955631399,
+ "n_inside": 73,
+ "n_interface": 224,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.13541666666666663,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 2000,
+ "gap": 1414,
+ "cutoff_score": 2.38716459274292,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.305842876434326,
+ "score_mean": -4.904610761968797e-08,
+ "score_p50": -0.0007142722606658936,
+ "score_p90": 1.1577554941177368,
+ "fraction_gt1": 0.11,
+ "n_inside": 155,
+ "n_interface": 256,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.07291666666666674,
+ "selected_y_range": 0.18749999999999994,
+ "step": 2,
+ "n_elem": 700,
+ "target_elements": 2000,
+ "gap": 1300,
+ "cutoff_score": 2.030819892883301,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.205253839492798,
+ "score_mean": -9.465750139270313e-08,
+ "score_p50": 0.13012555241584778,
+ "score_p90": 1.30350923538208,
+ "fraction_gt1": 0.11662531017369727,
+ "n_inside": 239,
+ "n_interface": 278,
+ "n_outside": 289,
+ "selected_inside_frac": 0.2916666666666667,
+ "selected_interface_frac": 0.6666666666666666,
+ "selected_outside_frac": 0.041666666666666664,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.31249999999999994,
+ "step": 3,
+ "n_elem": 806,
+ "target_elements": 2000,
+ "gap": 1194,
+ "cutoff_score": 1.7129453420639038,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9160594940185547,
+ "score_mean": 6.520850348579188e-08,
+ "score_p50": 0.24804328382015228,
+ "score_p90": 0.8844138383865356,
+ "fraction_gt1": 0.0876068376068376,
+ "n_inside": 264,
+ "n_interface": 374,
+ "n_outside": 298,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.8214285714285714,
+ "selected_outside_frac": 0.17857142857142858,
+ "selected_x_range": 0.35416666666666674,
+ "selected_y_range": 0.5833333333333333,
+ "step": 4,
+ "n_elem": 936,
+ "target_elements": 2000,
+ "gap": 1064,
+ "cutoff_score": 1.8643463850021362,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0527615547180176,
+ "score_mean": 4.2861767468593825e-08,
+ "score_p50": -0.12948845326900482,
+ "score_p90": 0.9802822470664978,
+ "fraction_gt1": 0.0945692883895131,
+ "n_inside": 264,
+ "n_interface": 478,
+ "n_outside": 326,
+ "selected_inside_frac": 0.40625,
+ "selected_interface_frac": 0.28125,
+ "selected_outside_frac": 0.3125,
+ "selected_x_range": 0.44791666666666663,
+ "selected_y_range": 0.7708333333333333,
+ "step": 5,
+ "n_elem": 1068,
+ "target_elements": 2000,
+ "gap": 932,
+ "cutoff_score": 1.6808875799179077,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1001570224761963,
+ "score_mean": -9.757818730804502e-08,
+ "score_p50": -0.16123688220977783,
+ "score_p90": 0.9745336174964905,
+ "fraction_gt1": 0.09672262190247802,
+ "n_inside": 322,
+ "n_interface": 548,
+ "n_outside": 381,
+ "selected_inside_frac": 0.08108108108108109,
+ "selected_interface_frac": 0.8108108108108109,
+ "selected_outside_frac": 0.10810810810810811,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.49999999999999994,
+ "step": 6,
+ "n_elem": 1251,
+ "target_elements": 2000,
+ "gap": 749,
+ "cutoff_score": 1.5025179386138916,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9409024715423584,
+ "score_mean": -1.0648142989566622e-07,
+ "score_p50": -0.23388639092445374,
+ "score_p90": 1.0063114166259766,
+ "fraction_gt1": 0.10118632240055828,
+ "n_inside": 334,
+ "n_interface": 694,
+ "n_outside": 405,
+ "selected_inside_frac": 0.9047619047619048,
+ "selected_interface_frac": 0.047619047619047616,
+ "selected_outside_frac": 0.047619047619047616,
+ "selected_x_range": 0.35416666666666663,
+ "selected_y_range": 0.8125,
+ "step": 7,
+ "n_elem": 1433,
+ "target_elements": 2000,
+ "gap": 567,
+ "cutoff_score": 1.3949005603790283,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2262041568756104,
+ "score_mean": -3.692386840725703e-08,
+ "score_p50": -0.4075244665145874,
+ "score_p90": 1.1051238775253296,
+ "fraction_gt1": 0.12280701754385964,
+ "n_inside": 504,
+ "n_interface": 730,
+ "n_outside": 419,
+ "selected_inside_frac": 0.14285714285714285,
+ "selected_interface_frac": 0.20408163265306123,
+ "selected_outside_frac": 0.6530612244897959,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.7708333333333333,
+ "step": 8,
+ "n_elem": 1653,
+ "target_elements": 2000,
+ "gap": 347,
+ "cutoff_score": 1.4580552577972412,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.06803035736084,
+ "score_mean": 4.783319340617709e-08,
+ "score_p50": -0.34053176641464233,
+ "score_p90": 1.081743836402893,
+ "fraction_gt1": 0.12748171368861025,
+ "n_inside": 550,
+ "n_interface": 796,
+ "n_outside": 568,
+ "selected_inside_frac": 0.6428571428571429,
+ "selected_interface_frac": 0.14285714285714285,
+ "selected_outside_frac": 0.21428571428571427,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.6979166666666666,
+ "step": 9,
+ "n_elem": 1914,
+ "target_elements": 2000,
+ "gap": 86,
+ "cutoff_score": 1.487775206565857,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 53,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.09355202894070637,
+ "max_err": 0.16781190876892643,
+ "actual_elements": 4008,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.8316994905471802,
+ "score_mean": 0.35295259952545166,
+ "score_p50": 0.3345019221305847,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 19,
+ "n_interface": 204,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.18750000000000006,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.8316994905471802,
+ "num_tied_at_cutoff": 19,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.5881003737449646,
+ "score_mean": 0.3367770314216614,
+ "score_p50": 0.3345019221305847,
+ "score_p90": 0.4158497452735901,
+ "fraction_gt1": 0.0,
+ "n_inside": 74,
+ "n_interface": 229,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333326,
+ "selected_y_range": 0.19791666666666669,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 4000,
+ "gap": 3408,
+ "cutoff_score": 0.4158497452735901,
+ "num_tied_at_cutoff": 70,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4158497452735901,
+ "score_mean": 0.28663983941078186,
+ "score_p50": 0.3345019221305847,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 150,
+ "n_interface": 325,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.15625,
+ "selected_y_range": 0.16666666666666663,
+ "step": 2,
+ "n_elem": 764,
+ "target_elements": 4000,
+ "gap": 3236,
+ "cutoff_score": 0.4158497452735901,
+ "num_tied_at_cutoff": 29,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.26688235998153687,
+ "score_p50": 0.3345019221305847,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 336,
+ "n_outside": 289,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.39583333333333326,
+ "step": 3,
+ "n_elem": 876,
+ "target_elements": 4000,
+ "gap": 3124,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 456,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.24419711530208588,
+ "score_p50": 0.20792487263679504,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 488,
+ "n_outside": 289,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 1028,
+ "target_elements": 4000,
+ "gap": 2972,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 398,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.22553803026676178,
+ "score_p50": 0.20792487263679504,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 660,
+ "n_outside": 289,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6875,
+ "step": 5,
+ "n_elem": 1200,
+ "target_elements": 4000,
+ "gap": 2800,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 330,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.21030646562576294,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 800,
+ "n_outside": 337,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.024390243902439025,
+ "selected_outside_frac": 0.975609756097561,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1388,
+ "target_elements": 4000,
+ "gap": 2612,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 260,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.197018101811409,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 820,
+ "n_outside": 536,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8958333333333333,
+ "step": 7,
+ "n_elem": 1607,
+ "target_elements": 4000,
+ "gap": 2393,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 180,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.18564742803573608,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.23652857542037964,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 820,
+ "n_outside": 787,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1858,
+ "target_elements": 4000,
+ "gap": 2142,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 88,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.1775798201560974,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.23652857542037964,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 820,
+ "n_outside": 1012,
+ "selected_inside_frac": 0.7419354838709677,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.25806451612903225,
+ "selected_x_range": 0.6927083333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 2083,
+ "target_elements": 4000,
+ "gap": 1917,
+ "cutoff_score": 0.2940501868724823,
+ "num_tied_at_cutoff": 49,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23652857542037964,
+ "score_mean": 0.1694689393043518,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.20792487263679504,
+ "fraction_gt1": 0.0,
+ "n_inside": 426,
+ "n_interface": 827,
+ "n_outside": 1069,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.7391304347826086,
+ "selected_outside_frac": 0.2608695652173913,
+ "selected_x_range": 0.7083333333333334,
+ "selected_y_range": 0.7916666666666667,
+ "step": 10,
+ "n_elem": 2322,
+ "target_elements": 4000,
+ "gap": 1678,
+ "cutoff_score": 0.23652857542037964,
+ "num_tied_at_cutoff": 138,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23652857542037964,
+ "score_mean": 0.15782496333122253,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.16725096106529236,
+ "fraction_gt1": 0.0,
+ "n_inside": 426,
+ "n_interface": 1072,
+ "n_outside": 1153,
+ "selected_inside_frac": 0.17721518987341772,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.8227848101265823,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2651,
+ "target_elements": 4000,
+ "gap": 1349,
+ "cutoff_score": 0.20792487263679504,
+ "num_tied_at_cutoff": 176,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20792487263679504,
+ "score_mean": 0.1450435221195221,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.16725096106529236,
+ "fraction_gt1": 0.0,
+ "n_inside": 499,
+ "n_interface": 1149,
+ "n_outside": 1448,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19270833333333326,
+ "selected_y_range": 0.19270833333333331,
+ "step": 12,
+ "n_elem": 3096,
+ "target_elements": 4000,
+ "gap": 904,
+ "cutoff_score": 0.20792487263679504,
+ "num_tied_at_cutoff": 138,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20792487263679504,
+ "score_mean": 0.1354343742132187,
+ "score_p50": 0.11826428771018982,
+ "score_p90": 0.16725096106529236,
+ "fraction_gt1": 0.0,
+ "n_inside": 882,
+ "n_interface": 1200,
+ "n_outside": 1448,
+ "selected_inside_frac": 0.1523809523809524,
+ "selected_interface_frac": 0.8476190476190476,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.37500000000000006,
+ "selected_y_range": 0.375,
+ "step": 13,
+ "n_elem": 3530,
+ "target_elements": 4000,
+ "gap": 470,
+ "cutoff_score": 0.16725096106529236,
+ "num_tied_at_cutoff": 1438,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16725096106529236,
+ "score_mean": 0.12649185955524445,
+ "score_p50": 0.11826428771018982,
+ "score_p90": 0.16725096106529236,
+ "fraction_gt1": 0.0,
+ "n_inside": 956,
+ "n_interface": 1586,
+ "n_outside": 1448,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.0,
+ "selected_y_range": 0.0625,
+ "step": 14,
+ "n_elem": 3990,
+ "target_elements": 4000,
+ "gap": 10,
+ "cutoff_score": 0.16725096106529236,
+ "num_tied_at_cutoff": 1300,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 53,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.08971766994622551,
+ "max_err": 0.16894973326401724,
+ "actual_elements": 4300,
+ "num_steps": 13,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9918643236160278,
+ "score_mean": 0.072408527135849,
+ "score_p50": 1.5149925758350946e-08,
+ "score_p90": 0.0317445732653141,
+ "fraction_gt1": 0.0,
+ "n_inside": 19,
+ "n_interface": 204,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666674,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9791882634162903,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9834572672843933,
+ "score_mean": 0.11121499538421631,
+ "score_p50": 1.8728314898908138e-07,
+ "score_p90": 0.6306324005126953,
+ "fraction_gt1": 0.0,
+ "n_inside": 73,
+ "n_interface": 224,
+ "n_outside": 289,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.13541666666666663,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 4000,
+ "gap": 3414,
+ "cutoff_score": 0.9272316098213196,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.989058792591095,
+ "score_mean": 0.1307731568813324,
+ "score_p50": 1.289201190957101e-05,
+ "score_p90": 0.7509958148002625,
+ "fraction_gt1": 0.0,
+ "n_inside": 147,
+ "n_interface": 254,
+ "n_outside": 289,
+ "selected_inside_frac": 0.7,
+ "selected_interface_frac": 0.3,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28125,
+ "selected_y_range": 0.2916666666666667,
+ "step": 2,
+ "n_elem": 690,
+ "target_elements": 4000,
+ "gap": 3310,
+ "cutoff_score": 0.9636080265045166,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9851796627044678,
+ "score_mean": 0.1294909119606018,
+ "score_p50": 0.00020673367544077337,
+ "score_p90": 0.6808438897132874,
+ "fraction_gt1": 0.0,
+ "n_inside": 221,
+ "n_interface": 298,
+ "n_outside": 289,
+ "selected_inside_frac": 0.08333333333333333,
+ "selected_interface_frac": 0.75,
+ "selected_outside_frac": 0.16666666666666666,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.47916666666666674,
+ "step": 3,
+ "n_elem": 808,
+ "target_elements": 4000,
+ "gap": 3192,
+ "cutoff_score": 0.962467610836029,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9713051319122314,
+ "score_mean": 0.13745050132274628,
+ "score_p50": 0.0002968155313283205,
+ "score_p90": 0.7180429100990295,
+ "fraction_gt1": 0.0,
+ "n_inside": 231,
+ "n_interface": 405,
+ "n_outside": 310,
+ "selected_inside_frac": 0.32142857142857145,
+ "selected_interface_frac": 0.6071428571428571,
+ "selected_outside_frac": 0.07142857142857142,
+ "selected_x_range": 0.49999999999999994,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 946,
+ "target_elements": 4000,
+ "gap": 3054,
+ "cutoff_score": 0.8965909481048584,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9713020920753479,
+ "score_mean": 0.1508341282606125,
+ "score_p50": 0.0008761442732065916,
+ "score_p90": 0.7454882264137268,
+ "fraction_gt1": 0.0,
+ "n_inside": 296,
+ "n_interface": 496,
+ "n_outside": 332,
+ "selected_inside_frac": 0.42424242424242425,
+ "selected_interface_frac": 0.45454545454545453,
+ "selected_outside_frac": 0.12121212121212122,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.75,
+ "step": 5,
+ "n_elem": 1124,
+ "target_elements": 4000,
+ "gap": 2876,
+ "cutoff_score": 0.937321662902832,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9797461628913879,
+ "score_mean": 0.1527404636144638,
+ "score_p50": 0.0014991401694715023,
+ "score_p90": 0.7472468614578247,
+ "fraction_gt1": 0.0,
+ "n_inside": 373,
+ "n_interface": 603,
+ "n_outside": 363,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.4,
+ "selected_outside_frac": 0.2,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.9166666666666667,
+ "step": 6,
+ "n_elem": 1339,
+ "target_elements": 4000,
+ "gap": 2661,
+ "cutoff_score": 0.9119266271591187,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9731366038322449,
+ "score_mean": 0.14735113084316254,
+ "score_p50": 0.0013266282621771097,
+ "score_p90": 0.6673669219017029,
+ "fraction_gt1": 0.0,
+ "n_inside": 457,
+ "n_interface": 705,
+ "n_outside": 404,
+ "selected_inside_frac": 0.5434782608695652,
+ "selected_interface_frac": 0.43478260869565216,
+ "selected_outside_frac": 0.021739130434782608,
+ "selected_x_range": 0.6770833333333333,
+ "selected_y_range": 0.38541666666666663,
+ "step": 7,
+ "n_elem": 1566,
+ "target_elements": 4000,
+ "gap": 2434,
+ "cutoff_score": 0.8897555470466614,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.984162449836731,
+ "score_mean": 0.16239462792873383,
+ "score_p50": 0.0014966848539188504,
+ "score_p90": 0.7458480596542358,
+ "fraction_gt1": 0.0,
+ "n_inside": 595,
+ "n_interface": 848,
+ "n_outside": 417,
+ "selected_inside_frac": 0.09090909090909091,
+ "selected_interface_frac": 0.7272727272727273,
+ "selected_outside_frac": 0.18181818181818182,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.8333333333333333,
+ "step": 8,
+ "n_elem": 1860,
+ "target_elements": 4000,
+ "gap": 2140,
+ "cutoff_score": 0.9115787148475647,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9847748875617981,
+ "score_mean": 0.15853850543498993,
+ "score_p50": 0.0016144865658134222,
+ "score_p90": 0.7801048755645752,
+ "fraction_gt1": 0.0,
+ "n_inside": 631,
+ "n_interface": 1084,
+ "n_outside": 491,
+ "selected_inside_frac": 0.24242424242424243,
+ "selected_interface_frac": 0.5151515151515151,
+ "selected_outside_frac": 0.24242424242424243,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.7916666666666667,
+ "step": 9,
+ "n_elem": 2206,
+ "target_elements": 4000,
+ "gap": 1794,
+ "cutoff_score": 0.9234403371810913,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9808080196380615,
+ "score_mean": 0.15009747445583344,
+ "score_p50": 0.00177351338788867,
+ "score_p90": 0.701933741569519,
+ "fraction_gt1": 0.0,
+ "n_inside": 736,
+ "n_interface": 1288,
+ "n_outside": 584,
+ "selected_inside_frac": 0.21794871794871795,
+ "selected_interface_frac": 0.41025641025641024,
+ "selected_outside_frac": 0.3717948717948718,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.75,
+ "step": 10,
+ "n_elem": 2608,
+ "target_elements": 4000,
+ "gap": 1392,
+ "cutoff_score": 0.9092181921005249,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9860731363296509,
+ "score_mean": 0.13802361488342285,
+ "score_p50": 0.001923971576616168,
+ "score_p90": 0.6164668798446655,
+ "fraction_gt1": 0.0,
+ "n_inside": 847,
+ "n_interface": 1476,
+ "n_outside": 729,
+ "selected_inside_frac": 0.26373626373626374,
+ "selected_interface_frac": 0.5274725274725275,
+ "selected_outside_frac": 0.2087912087912088,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9270833333333334,
+ "step": 11,
+ "n_elem": 3052,
+ "target_elements": 4000,
+ "gap": 948,
+ "cutoff_score": 0.8758811354637146,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9839991927146912,
+ "score_mean": 0.14198651909828186,
+ "score_p50": 0.0018968541407957673,
+ "score_p90": 0.6588308215141296,
+ "fraction_gt1": 0.0,
+ "n_inside": 1010,
+ "n_interface": 1763,
+ "n_outside": 844,
+ "selected_inside_frac": 0.35185185185185186,
+ "selected_interface_frac": 0.4537037037037037,
+ "selected_outside_frac": 0.19444444444444445,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.9375,
+ "step": 12,
+ "n_elem": 3617,
+ "target_elements": 4000,
+ "gap": 383,
+ "cutoff_score": 0.8799528479576111,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 53,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.09353589743279171,
+ "max_err": 0.1684832533556967,
+ "actual_elements": 4130,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 4.466363430023193,
+ "score_mean": 7.078051567077637e-08,
+ "score_p50": -0.2493157982826233,
+ "score_p90": -0.18304657936096191,
+ "fraction_gt1": 0.0703125,
+ "n_inside": 19,
+ "n_interface": 204,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666674,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 4.439901351928711,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 4.354396820068359,
+ "score_mean": -3.2548612693972245e-07,
+ "score_p50": -0.25135016441345215,
+ "score_p90": 1.3758212327957153,
+ "fraction_gt1": 0.12116040955631399,
+ "n_inside": 73,
+ "n_interface": 224,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.13541666666666663,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 4000,
+ "gap": 3414,
+ "cutoff_score": 2.38716459274292,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.305842876434326,
+ "score_mean": -4.904610761968797e-08,
+ "score_p50": -0.0007142722606658936,
+ "score_p90": 1.1577554941177368,
+ "fraction_gt1": 0.11,
+ "n_inside": 155,
+ "n_interface": 256,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.07291666666666674,
+ "selected_y_range": 0.18749999999999994,
+ "step": 2,
+ "n_elem": 700,
+ "target_elements": 4000,
+ "gap": 3300,
+ "cutoff_score": 2.030819892883301,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.205253839492798,
+ "score_mean": -9.465750139270313e-08,
+ "score_p50": 0.13012555241584778,
+ "score_p90": 1.30350923538208,
+ "fraction_gt1": 0.11662531017369727,
+ "n_inside": 239,
+ "n_interface": 278,
+ "n_outside": 289,
+ "selected_inside_frac": 0.2916666666666667,
+ "selected_interface_frac": 0.6666666666666666,
+ "selected_outside_frac": 0.041666666666666664,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.31249999999999994,
+ "step": 3,
+ "n_elem": 806,
+ "target_elements": 4000,
+ "gap": 3194,
+ "cutoff_score": 1.7129453420639038,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9160594940185547,
+ "score_mean": 6.520850348579188e-08,
+ "score_p50": 0.24804328382015228,
+ "score_p90": 0.8844138383865356,
+ "fraction_gt1": 0.0876068376068376,
+ "n_inside": 264,
+ "n_interface": 374,
+ "n_outside": 298,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.8214285714285714,
+ "selected_outside_frac": 0.17857142857142858,
+ "selected_x_range": 0.35416666666666674,
+ "selected_y_range": 0.5833333333333333,
+ "step": 4,
+ "n_elem": 936,
+ "target_elements": 4000,
+ "gap": 3064,
+ "cutoff_score": 1.8643463850021362,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0527615547180176,
+ "score_mean": 4.2861767468593825e-08,
+ "score_p50": -0.12948845326900482,
+ "score_p90": 0.9802822470664978,
+ "fraction_gt1": 0.0945692883895131,
+ "n_inside": 264,
+ "n_interface": 478,
+ "n_outside": 326,
+ "selected_inside_frac": 0.40625,
+ "selected_interface_frac": 0.28125,
+ "selected_outside_frac": 0.3125,
+ "selected_x_range": 0.44791666666666663,
+ "selected_y_range": 0.7708333333333333,
+ "step": 5,
+ "n_elem": 1068,
+ "target_elements": 4000,
+ "gap": 2932,
+ "cutoff_score": 1.6808875799179077,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1001570224761963,
+ "score_mean": -9.757818730804502e-08,
+ "score_p50": -0.16123688220977783,
+ "score_p90": 0.9745336174964905,
+ "fraction_gt1": 0.09672262190247802,
+ "n_inside": 322,
+ "n_interface": 548,
+ "n_outside": 381,
+ "selected_inside_frac": 0.08108108108108109,
+ "selected_interface_frac": 0.8108108108108109,
+ "selected_outside_frac": 0.10810810810810811,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.49999999999999994,
+ "step": 6,
+ "n_elem": 1251,
+ "target_elements": 4000,
+ "gap": 2749,
+ "cutoff_score": 1.5025179386138916,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9409024715423584,
+ "score_mean": -1.0648142989566622e-07,
+ "score_p50": -0.23388639092445374,
+ "score_p90": 1.0063114166259766,
+ "fraction_gt1": 0.10118632240055828,
+ "n_inside": 334,
+ "n_interface": 694,
+ "n_outside": 405,
+ "selected_inside_frac": 0.9047619047619048,
+ "selected_interface_frac": 0.047619047619047616,
+ "selected_outside_frac": 0.047619047619047616,
+ "selected_x_range": 0.35416666666666663,
+ "selected_y_range": 0.8125,
+ "step": 7,
+ "n_elem": 1433,
+ "target_elements": 4000,
+ "gap": 2567,
+ "cutoff_score": 1.3949005603790283,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2262041568756104,
+ "score_mean": -3.692386840725703e-08,
+ "score_p50": -0.4075244665145874,
+ "score_p90": 1.1051238775253296,
+ "fraction_gt1": 0.12280701754385964,
+ "n_inside": 504,
+ "n_interface": 730,
+ "n_outside": 419,
+ "selected_inside_frac": 0.14285714285714285,
+ "selected_interface_frac": 0.20408163265306123,
+ "selected_outside_frac": 0.6530612244897959,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.7708333333333333,
+ "step": 8,
+ "n_elem": 1653,
+ "target_elements": 4000,
+ "gap": 2347,
+ "cutoff_score": 1.4580552577972412,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.06803035736084,
+ "score_mean": 4.783319340617709e-08,
+ "score_p50": -0.34053176641464233,
+ "score_p90": 1.081743836402893,
+ "fraction_gt1": 0.12748171368861025,
+ "n_inside": 550,
+ "n_interface": 796,
+ "n_outside": 568,
+ "selected_inside_frac": 0.6842105263157895,
+ "selected_interface_frac": 0.10526315789473684,
+ "selected_outside_frac": 0.21052631578947367,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.6979166666666666,
+ "step": 9,
+ "n_elem": 1914,
+ "target_elements": 4000,
+ "gap": 2086,
+ "cutoff_score": 1.3327425718307495,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1484079360961914,
+ "score_mean": -1.6399953040036053e-07,
+ "score_p50": -0.2242448329925537,
+ "score_p90": 1.1805146932601929,
+ "fraction_gt1": 0.16748768472906403,
+ "n_inside": 743,
+ "n_interface": 854,
+ "n_outside": 636,
+ "selected_inside_frac": 0.15151515151515152,
+ "selected_interface_frac": 0.4393939393939394,
+ "selected_outside_frac": 0.4090909090909091,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9583333333333333,
+ "step": 10,
+ "n_elem": 2233,
+ "target_elements": 4000,
+ "gap": 1767,
+ "cutoff_score": 1.3558239936828613,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0399415493011475,
+ "score_mean": -1.416128867504085e-07,
+ "score_p50": -0.11502853035926819,
+ "score_p90": 1.354986310005188,
+ "fraction_gt1": 0.14346481051817478,
+ "n_inside": 799,
+ "n_interface": 1017,
+ "n_outside": 770,
+ "selected_inside_frac": 0.11688311688311688,
+ "selected_interface_frac": 0.6493506493506493,
+ "selected_outside_frac": 0.23376623376623376,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.7708333333333334,
+ "step": 11,
+ "n_elem": 2586,
+ "target_elements": 4000,
+ "gap": 1414,
+ "cutoff_score": 1.500049114227295,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.148772716522217,
+ "score_mean": -4.121212526797535e-08,
+ "score_p50": -0.014256522059440613,
+ "score_p90": 1.1833174228668213,
+ "fraction_gt1": 0.12457798784604997,
+ "n_inside": 846,
+ "n_interface": 1250,
+ "n_outside": 866,
+ "selected_inside_frac": 0.07954545454545454,
+ "selected_interface_frac": 0.5340909090909091,
+ "selected_outside_frac": 0.38636363636363635,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9479166666666666,
+ "step": 12,
+ "n_elem": 2962,
+ "target_elements": 4000,
+ "gap": 1038,
+ "cutoff_score": 1.6242163181304932,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.100303888320923,
+ "score_mean": -3.609411791671846e-08,
+ "score_p50": 0.0927412211894989,
+ "score_p90": 1.090245246887207,
+ "fraction_gt1": 0.10940272028385571,
+ "n_inside": 880,
+ "n_interface": 1488,
+ "n_outside": 1014,
+ "selected_inside_frac": 0.0594059405940594,
+ "selected_interface_frac": 0.5346534653465347,
+ "selected_outside_frac": 0.40594059405940597,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.96875,
+ "step": 13,
+ "n_elem": 3382,
+ "target_elements": 4000,
+ "gap": 618,
+ "cutoff_score": 1.5921095609664917,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.429722309112549,
+ "score_mean": -4.755986182658489e-08,
+ "score_p50": 0.04211162030696869,
+ "score_p90": 1.1242014169692993,
+ "fraction_gt1": 0.12675324675324676,
+ "n_inside": 909,
+ "n_interface": 1749,
+ "n_outside": 1192,
+ "selected_inside_frac": 0.06,
+ "selected_interface_frac": 0.3,
+ "selected_outside_frac": 0.64,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9583333333333334,
+ "step": 14,
+ "n_elem": 3850,
+ "target_elements": 4000,
+ "gap": 150,
+ "cutoff_score": 1.6419038772583008,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 53,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.08872849639072485,
+ "max_err": 0.16633667571103217,
+ "actual_elements": 8164,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.8316994905471802,
+ "score_mean": 0.35295259952545166,
+ "score_p50": 0.3345019221305847,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 19,
+ "n_interface": 204,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.18750000000000006,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.8316994905471802,
+ "num_tied_at_cutoff": 19,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.5881003737449646,
+ "score_mean": 0.3367770314216614,
+ "score_p50": 0.3345019221305847,
+ "score_p90": 0.4158497452735901,
+ "fraction_gt1": 0.0,
+ "n_inside": 74,
+ "n_interface": 229,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333326,
+ "selected_y_range": 0.19791666666666669,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 8000,
+ "gap": 7408,
+ "cutoff_score": 0.4158497452735901,
+ "num_tied_at_cutoff": 70,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4158497452735901,
+ "score_mean": 0.28663983941078186,
+ "score_p50": 0.3345019221305847,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 150,
+ "n_interface": 325,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.15625,
+ "selected_y_range": 0.16666666666666663,
+ "step": 2,
+ "n_elem": 764,
+ "target_elements": 8000,
+ "gap": 7236,
+ "cutoff_score": 0.4158497452735901,
+ "num_tied_at_cutoff": 29,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.26688235998153687,
+ "score_p50": 0.3345019221305847,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 336,
+ "n_outside": 289,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.39583333333333326,
+ "step": 3,
+ "n_elem": 876,
+ "target_elements": 8000,
+ "gap": 7124,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 456,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.24419711530208588,
+ "score_p50": 0.20792487263679504,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 488,
+ "n_outside": 289,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 1028,
+ "target_elements": 8000,
+ "gap": 6972,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 398,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.22553803026676178,
+ "score_p50": 0.20792487263679504,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 660,
+ "n_outside": 289,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6875,
+ "step": 5,
+ "n_elem": 1200,
+ "target_elements": 8000,
+ "gap": 6800,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 330,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.21030646562576294,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 800,
+ "n_outside": 337,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.024390243902439025,
+ "selected_outside_frac": 0.975609756097561,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1388,
+ "target_elements": 8000,
+ "gap": 6612,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 260,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.197018101811409,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.3345019221305847,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 820,
+ "n_outside": 536,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8958333333333333,
+ "step": 7,
+ "n_elem": 1607,
+ "target_elements": 8000,
+ "gap": 6393,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 180,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.18564742803573608,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.23652857542037964,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 820,
+ "n_outside": 787,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1858,
+ "target_elements": 8000,
+ "gap": 6142,
+ "cutoff_score": 0.3345019221305847,
+ "num_tied_at_cutoff": 88,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3345019221305847,
+ "score_mean": 0.1775798201560974,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.23652857542037964,
+ "fraction_gt1": 0.0,
+ "n_inside": 251,
+ "n_interface": 820,
+ "n_outside": 1012,
+ "selected_inside_frac": 0.7419354838709677,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.25806451612903225,
+ "selected_x_range": 0.6927083333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 2083,
+ "target_elements": 8000,
+ "gap": 5917,
+ "cutoff_score": 0.2940501868724823,
+ "num_tied_at_cutoff": 49,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23652857542037964,
+ "score_mean": 0.1694689393043518,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.20792487263679504,
+ "fraction_gt1": 0.0,
+ "n_inside": 426,
+ "n_interface": 827,
+ "n_outside": 1069,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.7391304347826086,
+ "selected_outside_frac": 0.2608695652173913,
+ "selected_x_range": 0.7083333333333334,
+ "selected_y_range": 0.7916666666666667,
+ "step": 10,
+ "n_elem": 2322,
+ "target_elements": 8000,
+ "gap": 5678,
+ "cutoff_score": 0.23652857542037964,
+ "num_tied_at_cutoff": 138,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23652857542037964,
+ "score_mean": 0.15782496333122253,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.16725096106529236,
+ "fraction_gt1": 0.0,
+ "n_inside": 426,
+ "n_interface": 1072,
+ "n_outside": 1153,
+ "selected_inside_frac": 0.17721518987341772,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.8227848101265823,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2651,
+ "target_elements": 8000,
+ "gap": 5349,
+ "cutoff_score": 0.20792487263679504,
+ "num_tied_at_cutoff": 176,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20792487263679504,
+ "score_mean": 0.1450435221195221,
+ "score_p50": 0.16725096106529236,
+ "score_p90": 0.16725096106529236,
+ "fraction_gt1": 0.0,
+ "n_inside": 499,
+ "n_interface": 1149,
+ "n_outside": 1448,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19270833333333326,
+ "selected_y_range": 0.19270833333333331,
+ "step": 12,
+ "n_elem": 3096,
+ "target_elements": 8000,
+ "gap": 4904,
+ "cutoff_score": 0.20792487263679504,
+ "num_tied_at_cutoff": 138,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.20792487263679504,
+ "score_mean": 0.1354343742132187,
+ "score_p50": 0.11826428771018982,
+ "score_p90": 0.16725096106529236,
+ "fraction_gt1": 0.0,
+ "n_inside": 882,
+ "n_interface": 1200,
+ "n_outside": 1448,
+ "selected_inside_frac": 0.1523809523809524,
+ "selected_interface_frac": 0.8476190476190476,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.37500000000000006,
+ "selected_y_range": 0.375,
+ "step": 13,
+ "n_elem": 3530,
+ "target_elements": 8000,
+ "gap": 4470,
+ "cutoff_score": 0.16725096106529236,
+ "num_tied_at_cutoff": 1438,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16725096106529236,
+ "score_mean": 0.12649185955524445,
+ "score_p50": 0.11826428771018982,
+ "score_p90": 0.16725096106529236,
+ "fraction_gt1": 0.0,
+ "n_inside": 956,
+ "n_interface": 1586,
+ "n_outside": 1448,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5104166666666667,
+ "step": 14,
+ "n_elem": 3990,
+ "target_elements": 8000,
+ "gap": 4010,
+ "cutoff_score": 0.16725096106529236,
+ "num_tied_at_cutoff": 1300,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16725096106529236,
+ "score_mean": 0.1183781698346138,
+ "score_p50": 0.11826428771018982,
+ "score_p90": 0.16725096106529236,
+ "fraction_gt1": 0.0,
+ "n_inside": 956,
+ "n_interface": 2104,
+ "n_outside": 1448,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.6354166666666667,
+ "step": 15,
+ "n_elem": 4508,
+ "target_elements": 8000,
+ "gap": 3492,
+ "cutoff_score": 0.16725096106529236,
+ "num_tied_at_cutoff": 1124,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16725096106529236,
+ "score_mean": 0.1111757904291153,
+ "score_p50": 0.10396243631839752,
+ "score_p90": 0.16725096106529236,
+ "fraction_gt1": 0.0,
+ "n_inside": 956,
+ "n_interface": 2692,
+ "n_outside": 1448,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.3684210526315789,
+ "selected_outside_frac": 0.631578947368421,
+ "selected_x_range": 0.7604166666666667,
+ "selected_y_range": 0.78125,
+ "step": 16,
+ "n_elem": 5096,
+ "target_elements": 8000,
+ "gap": 2904,
+ "cutoff_score": 0.16725096106529236,
+ "num_tied_at_cutoff": 922,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16725096106529236,
+ "score_mean": 0.10464487224817276,
+ "score_p50": 0.08362548053264618,
+ "score_p90": 0.16725096106529236,
+ "fraction_gt1": 0.0,
+ "n_inside": 956,
+ "n_interface": 2948,
+ "n_outside": 1876,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.8854166666666667,
+ "step": 17,
+ "n_elem": 5780,
+ "target_elements": 8000,
+ "gap": 2220,
+ "cutoff_score": 0.16725096106529236,
+ "num_tied_at_cutoff": 686,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16725096106529236,
+ "score_mean": 0.09920568019151688,
+ "score_p50": 0.08362548053264618,
+ "score_p90": 0.14702509343624115,
+ "fraction_gt1": 0.0,
+ "n_inside": 956,
+ "n_interface": 2948,
+ "n_outside": 2599,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.96875,
+ "step": 18,
+ "n_elem": 6503,
+ "target_elements": 8000,
+ "gap": 1497,
+ "cutoff_score": 0.16725096106529236,
+ "num_tied_at_cutoff": 446,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16725096106529236,
+ "score_mean": 0.0944504365324974,
+ "score_p50": 0.08362548053264618,
+ "score_p90": 0.11826428771018982,
+ "fraction_gt1": 0.0,
+ "n_inside": 956,
+ "n_interface": 2948,
+ "n_outside": 3397,
+ "selected_inside_frac": 0.1689497716894977,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.8310502283105022,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 19,
+ "n_elem": 7301,
+ "target_elements": 8000,
+ "gap": 699,
+ "cutoff_score": 0.14702509343624115,
+ "num_tied_at_cutoff": 262,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 53,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.08660369656344749,
+ "max_err": 0.1693524522812389,
+ "actual_elements": 8351,
+ "num_steps": 17,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9918643236160278,
+ "score_mean": 0.072408527135849,
+ "score_p50": 1.5149925758350946e-08,
+ "score_p90": 0.0317445732653141,
+ "fraction_gt1": 0.0,
+ "n_inside": 19,
+ "n_interface": 204,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666674,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9791882634162903,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9834572672843933,
+ "score_mean": 0.11121499538421631,
+ "score_p50": 1.8728314898908138e-07,
+ "score_p90": 0.6306324005126953,
+ "fraction_gt1": 0.0,
+ "n_inside": 73,
+ "n_interface": 224,
+ "n_outside": 289,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.13541666666666663,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 8000,
+ "gap": 7414,
+ "cutoff_score": 0.9272316098213196,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.989058792591095,
+ "score_mean": 0.1307731568813324,
+ "score_p50": 1.289201190957101e-05,
+ "score_p90": 0.7509958148002625,
+ "fraction_gt1": 0.0,
+ "n_inside": 147,
+ "n_interface": 254,
+ "n_outside": 289,
+ "selected_inside_frac": 0.7,
+ "selected_interface_frac": 0.3,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.28125,
+ "selected_y_range": 0.2916666666666667,
+ "step": 2,
+ "n_elem": 690,
+ "target_elements": 8000,
+ "gap": 7310,
+ "cutoff_score": 0.9636080265045166,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9851796627044678,
+ "score_mean": 0.1294909119606018,
+ "score_p50": 0.00020673367544077337,
+ "score_p90": 0.6808438897132874,
+ "fraction_gt1": 0.0,
+ "n_inside": 221,
+ "n_interface": 298,
+ "n_outside": 289,
+ "selected_inside_frac": 0.08333333333333333,
+ "selected_interface_frac": 0.75,
+ "selected_outside_frac": 0.16666666666666666,
+ "selected_x_range": 0.41666666666666674,
+ "selected_y_range": 0.47916666666666674,
+ "step": 3,
+ "n_elem": 808,
+ "target_elements": 8000,
+ "gap": 7192,
+ "cutoff_score": 0.962467610836029,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9713051319122314,
+ "score_mean": 0.13745050132274628,
+ "score_p50": 0.0002968155313283205,
+ "score_p90": 0.7180429100990295,
+ "fraction_gt1": 0.0,
+ "n_inside": 231,
+ "n_interface": 405,
+ "n_outside": 310,
+ "selected_inside_frac": 0.32142857142857145,
+ "selected_interface_frac": 0.6071428571428571,
+ "selected_outside_frac": 0.07142857142857142,
+ "selected_x_range": 0.49999999999999994,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 946,
+ "target_elements": 8000,
+ "gap": 7054,
+ "cutoff_score": 0.8965909481048584,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9713020920753479,
+ "score_mean": 0.1508341282606125,
+ "score_p50": 0.0008761442732065916,
+ "score_p90": 0.7454882264137268,
+ "fraction_gt1": 0.0,
+ "n_inside": 296,
+ "n_interface": 496,
+ "n_outside": 332,
+ "selected_inside_frac": 0.42424242424242425,
+ "selected_interface_frac": 0.45454545454545453,
+ "selected_outside_frac": 0.12121212121212122,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.75,
+ "step": 5,
+ "n_elem": 1124,
+ "target_elements": 8000,
+ "gap": 6876,
+ "cutoff_score": 0.937321662902832,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9797461628913879,
+ "score_mean": 0.1527404636144638,
+ "score_p50": 0.0014991401694715023,
+ "score_p90": 0.7472468614578247,
+ "fraction_gt1": 0.0,
+ "n_inside": 373,
+ "n_interface": 603,
+ "n_outside": 363,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.4,
+ "selected_outside_frac": 0.2,
+ "selected_x_range": 0.5833333333333333,
+ "selected_y_range": 0.9166666666666667,
+ "step": 6,
+ "n_elem": 1339,
+ "target_elements": 8000,
+ "gap": 6661,
+ "cutoff_score": 0.9119266271591187,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9731366038322449,
+ "score_mean": 0.14735113084316254,
+ "score_p50": 0.0013266282621771097,
+ "score_p90": 0.6673669219017029,
+ "fraction_gt1": 0.0,
+ "n_inside": 457,
+ "n_interface": 705,
+ "n_outside": 404,
+ "selected_inside_frac": 0.5434782608695652,
+ "selected_interface_frac": 0.43478260869565216,
+ "selected_outside_frac": 0.021739130434782608,
+ "selected_x_range": 0.6770833333333333,
+ "selected_y_range": 0.38541666666666663,
+ "step": 7,
+ "n_elem": 1566,
+ "target_elements": 8000,
+ "gap": 6434,
+ "cutoff_score": 0.8897555470466614,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.984162449836731,
+ "score_mean": 0.16239462792873383,
+ "score_p50": 0.0014966848539188504,
+ "score_p90": 0.7458480596542358,
+ "fraction_gt1": 0.0,
+ "n_inside": 595,
+ "n_interface": 848,
+ "n_outside": 417,
+ "selected_inside_frac": 0.09090909090909091,
+ "selected_interface_frac": 0.7272727272727273,
+ "selected_outside_frac": 0.18181818181818182,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.8333333333333333,
+ "step": 8,
+ "n_elem": 1860,
+ "target_elements": 8000,
+ "gap": 6140,
+ "cutoff_score": 0.9115787148475647,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9847748875617981,
+ "score_mean": 0.15853850543498993,
+ "score_p50": 0.0016144865658134222,
+ "score_p90": 0.7801048755645752,
+ "fraction_gt1": 0.0,
+ "n_inside": 631,
+ "n_interface": 1084,
+ "n_outside": 491,
+ "selected_inside_frac": 0.24242424242424243,
+ "selected_interface_frac": 0.5151515151515151,
+ "selected_outside_frac": 0.24242424242424243,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.7916666666666667,
+ "step": 9,
+ "n_elem": 2206,
+ "target_elements": 8000,
+ "gap": 5794,
+ "cutoff_score": 0.9234403371810913,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9808080196380615,
+ "score_mean": 0.15009747445583344,
+ "score_p50": 0.00177351338788867,
+ "score_p90": 0.701933741569519,
+ "fraction_gt1": 0.0,
+ "n_inside": 736,
+ "n_interface": 1288,
+ "n_outside": 584,
+ "selected_inside_frac": 0.21794871794871795,
+ "selected_interface_frac": 0.41025641025641024,
+ "selected_outside_frac": 0.3717948717948718,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.75,
+ "step": 10,
+ "n_elem": 2608,
+ "target_elements": 8000,
+ "gap": 5392,
+ "cutoff_score": 0.9092181921005249,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9860731363296509,
+ "score_mean": 0.13802361488342285,
+ "score_p50": 0.001923971576616168,
+ "score_p90": 0.6164668798446655,
+ "fraction_gt1": 0.0,
+ "n_inside": 847,
+ "n_interface": 1476,
+ "n_outside": 729,
+ "selected_inside_frac": 0.26373626373626374,
+ "selected_interface_frac": 0.5274725274725275,
+ "selected_outside_frac": 0.2087912087912088,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9270833333333334,
+ "step": 11,
+ "n_elem": 3052,
+ "target_elements": 8000,
+ "gap": 4948,
+ "cutoff_score": 0.8758811354637146,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9839991927146912,
+ "score_mean": 0.14198651909828186,
+ "score_p50": 0.0018968541407957673,
+ "score_p90": 0.6588308215141296,
+ "fraction_gt1": 0.0,
+ "n_inside": 1010,
+ "n_interface": 1763,
+ "n_outside": 844,
+ "selected_inside_frac": 0.35185185185185186,
+ "selected_interface_frac": 0.4537037037037037,
+ "selected_outside_frac": 0.19444444444444445,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.9375,
+ "step": 12,
+ "n_elem": 3617,
+ "target_elements": 8000,
+ "gap": 4383,
+ "cutoff_score": 0.8799528479576111,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9900548458099365,
+ "score_mean": 0.15160280466079712,
+ "score_p50": 0.0020778928883373737,
+ "score_p90": 0.68831866979599,
+ "fraction_gt1": 0.0,
+ "n_inside": 1246,
+ "n_interface": 2056,
+ "n_outside": 998,
+ "selected_inside_frac": 0.3798449612403101,
+ "selected_interface_frac": 0.4263565891472868,
+ "selected_outside_frac": 0.1937984496124031,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9479166666666667,
+ "step": 13,
+ "n_elem": 4300,
+ "target_elements": 8000,
+ "gap": 3700,
+ "cutoff_score": 0.8885231018066406,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9899219870567322,
+ "score_mean": 0.16785472631454468,
+ "score_p50": 0.001940643647685647,
+ "score_p90": 0.745121419429779,
+ "fraction_gt1": 0.0,
+ "n_inside": 1541,
+ "n_interface": 2391,
+ "n_outside": 1153,
+ "selected_inside_frac": 0.2236842105263158,
+ "selected_interface_frac": 0.5855263157894737,
+ "selected_outside_frac": 0.19078947368421054,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8854166666666666,
+ "step": 14,
+ "n_elem": 5085,
+ "target_elements": 8000,
+ "gap": 2915,
+ "cutoff_score": 0.9138248562812805,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9898678064346313,
+ "score_mean": 0.17745766043663025,
+ "score_p50": 0.001759431092068553,
+ "score_p90": 0.794768214225769,
+ "fraction_gt1": 0.0,
+ "n_inside": 1754,
+ "n_interface": 2873,
+ "n_outside": 1323,
+ "selected_inside_frac": 0.2696629213483146,
+ "selected_interface_frac": 0.47752808988764045,
+ "selected_outside_frac": 0.25280898876404495,
+ "selected_x_range": 0.984375,
+ "selected_y_range": 0.96875,
+ "step": 15,
+ "n_elem": 5950,
+ "target_elements": 8000,
+ "gap": 2050,
+ "cutoff_score": 0.9242710471153259,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9874441027641296,
+ "score_mean": 0.182628333568573,
+ "score_p50": 0.0019898535683751106,
+ "score_p90": 0.8084306120872498,
+ "fraction_gt1": 0.0,
+ "n_inside": 2073,
+ "n_interface": 3388,
+ "n_outside": 1614,
+ "selected_inside_frac": 0.2688679245283019,
+ "selected_interface_frac": 0.4669811320754717,
+ "selected_outside_frac": 0.2641509433962264,
+ "selected_x_range": 0.953125,
+ "selected_y_range": 0.9479166666666667,
+ "step": 16,
+ "n_elem": 7075,
+ "target_elements": 8000,
+ "gap": 925,
+ "cutoff_score": 0.9350175261497498,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 53,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.0879450550233705,
+ "max_err": 0.16966769078688815,
+ "actual_elements": 8257,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 4.466363430023193,
+ "score_mean": 7.078051567077637e-08,
+ "score_p50": -0.2493157982826233,
+ "score_p90": -0.18304657936096191,
+ "fraction_gt1": 0.0703125,
+ "n_inside": 19,
+ "n_interface": 204,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666674,
+ "selected_y_range": 0.14583333333333337,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 4.439901351928711,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 4.354396820068359,
+ "score_mean": -3.2548612693972245e-07,
+ "score_p50": -0.25135016441345215,
+ "score_p90": 1.3758212327957153,
+ "fraction_gt1": 0.12116040955631399,
+ "n_inside": 73,
+ "n_interface": 224,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.1875,
+ "selected_y_range": 0.13541666666666663,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 8000,
+ "gap": 7414,
+ "cutoff_score": 2.38716459274292,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.305842876434326,
+ "score_mean": -4.904610761968797e-08,
+ "score_p50": -0.0007142722606658936,
+ "score_p90": 1.1577554941177368,
+ "fraction_gt1": 0.11,
+ "n_inside": 155,
+ "n_interface": 256,
+ "n_outside": 289,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.07291666666666674,
+ "selected_y_range": 0.18749999999999994,
+ "step": 2,
+ "n_elem": 700,
+ "target_elements": 8000,
+ "gap": 7300,
+ "cutoff_score": 2.030819892883301,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.205253839492798,
+ "score_mean": -9.465750139270313e-08,
+ "score_p50": 0.13012555241584778,
+ "score_p90": 1.30350923538208,
+ "fraction_gt1": 0.11662531017369727,
+ "n_inside": 239,
+ "n_interface": 278,
+ "n_outside": 289,
+ "selected_inside_frac": 0.2916666666666667,
+ "selected_interface_frac": 0.6666666666666666,
+ "selected_outside_frac": 0.041666666666666664,
+ "selected_x_range": 0.4375,
+ "selected_y_range": 0.31249999999999994,
+ "step": 3,
+ "n_elem": 806,
+ "target_elements": 8000,
+ "gap": 7194,
+ "cutoff_score": 1.7129453420639038,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9160594940185547,
+ "score_mean": 6.520850348579188e-08,
+ "score_p50": 0.24804328382015228,
+ "score_p90": 0.8844138383865356,
+ "fraction_gt1": 0.0876068376068376,
+ "n_inside": 264,
+ "n_interface": 374,
+ "n_outside": 298,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.8214285714285714,
+ "selected_outside_frac": 0.17857142857142858,
+ "selected_x_range": 0.35416666666666674,
+ "selected_y_range": 0.5833333333333333,
+ "step": 4,
+ "n_elem": 936,
+ "target_elements": 8000,
+ "gap": 7064,
+ "cutoff_score": 1.8643463850021362,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0527615547180176,
+ "score_mean": 4.2861767468593825e-08,
+ "score_p50": -0.12948845326900482,
+ "score_p90": 0.9802822470664978,
+ "fraction_gt1": 0.0945692883895131,
+ "n_inside": 264,
+ "n_interface": 478,
+ "n_outside": 326,
+ "selected_inside_frac": 0.40625,
+ "selected_interface_frac": 0.28125,
+ "selected_outside_frac": 0.3125,
+ "selected_x_range": 0.44791666666666663,
+ "selected_y_range": 0.7708333333333333,
+ "step": 5,
+ "n_elem": 1068,
+ "target_elements": 8000,
+ "gap": 6932,
+ "cutoff_score": 1.6808875799179077,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1001570224761963,
+ "score_mean": -9.757818730804502e-08,
+ "score_p50": -0.16123688220977783,
+ "score_p90": 0.9745336174964905,
+ "fraction_gt1": 0.09672262190247802,
+ "n_inside": 322,
+ "n_interface": 548,
+ "n_outside": 381,
+ "selected_inside_frac": 0.08108108108108109,
+ "selected_interface_frac": 0.8108108108108109,
+ "selected_outside_frac": 0.10810810810810811,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.49999999999999994,
+ "step": 6,
+ "n_elem": 1251,
+ "target_elements": 8000,
+ "gap": 6749,
+ "cutoff_score": 1.5025179386138916,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9409024715423584,
+ "score_mean": -1.0648142989566622e-07,
+ "score_p50": -0.23388639092445374,
+ "score_p90": 1.0063114166259766,
+ "fraction_gt1": 0.10118632240055828,
+ "n_inside": 334,
+ "n_interface": 694,
+ "n_outside": 405,
+ "selected_inside_frac": 0.9047619047619048,
+ "selected_interface_frac": 0.047619047619047616,
+ "selected_outside_frac": 0.047619047619047616,
+ "selected_x_range": 0.35416666666666663,
+ "selected_y_range": 0.8125,
+ "step": 7,
+ "n_elem": 1433,
+ "target_elements": 8000,
+ "gap": 6567,
+ "cutoff_score": 1.3949005603790283,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2262041568756104,
+ "score_mean": -3.692386840725703e-08,
+ "score_p50": -0.4075244665145874,
+ "score_p90": 1.1051238775253296,
+ "fraction_gt1": 0.12280701754385964,
+ "n_inside": 504,
+ "n_interface": 730,
+ "n_outside": 419,
+ "selected_inside_frac": 0.14285714285714285,
+ "selected_interface_frac": 0.20408163265306123,
+ "selected_outside_frac": 0.6530612244897959,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.7708333333333333,
+ "step": 8,
+ "n_elem": 1653,
+ "target_elements": 8000,
+ "gap": 6347,
+ "cutoff_score": 1.4580552577972412,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.06803035736084,
+ "score_mean": 4.783319340617709e-08,
+ "score_p50": -0.34053176641464233,
+ "score_p90": 1.081743836402893,
+ "fraction_gt1": 0.12748171368861025,
+ "n_inside": 550,
+ "n_interface": 796,
+ "n_outside": 568,
+ "selected_inside_frac": 0.6842105263157895,
+ "selected_interface_frac": 0.10526315789473684,
+ "selected_outside_frac": 0.21052631578947367,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.6979166666666666,
+ "step": 9,
+ "n_elem": 1914,
+ "target_elements": 8000,
+ "gap": 6086,
+ "cutoff_score": 1.3327425718307495,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1484079360961914,
+ "score_mean": -1.6399953040036053e-07,
+ "score_p50": -0.2242448329925537,
+ "score_p90": 1.1805146932601929,
+ "fraction_gt1": 0.16748768472906403,
+ "n_inside": 743,
+ "n_interface": 854,
+ "n_outside": 636,
+ "selected_inside_frac": 0.15151515151515152,
+ "selected_interface_frac": 0.4393939393939394,
+ "selected_outside_frac": 0.4090909090909091,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9583333333333333,
+ "step": 10,
+ "n_elem": 2233,
+ "target_elements": 8000,
+ "gap": 5767,
+ "cutoff_score": 1.3558239936828613,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0399415493011475,
+ "score_mean": -1.416128867504085e-07,
+ "score_p50": -0.11502853035926819,
+ "score_p90": 1.354986310005188,
+ "fraction_gt1": 0.14346481051817478,
+ "n_inside": 799,
+ "n_interface": 1017,
+ "n_outside": 770,
+ "selected_inside_frac": 0.11688311688311688,
+ "selected_interface_frac": 0.6493506493506493,
+ "selected_outside_frac": 0.23376623376623376,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.7708333333333334,
+ "step": 11,
+ "n_elem": 2586,
+ "target_elements": 8000,
+ "gap": 5414,
+ "cutoff_score": 1.500049114227295,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.148772716522217,
+ "score_mean": -4.121212526797535e-08,
+ "score_p50": -0.014256522059440613,
+ "score_p90": 1.1833174228668213,
+ "fraction_gt1": 0.12457798784604997,
+ "n_inside": 846,
+ "n_interface": 1250,
+ "n_outside": 866,
+ "selected_inside_frac": 0.07954545454545454,
+ "selected_interface_frac": 0.5340909090909091,
+ "selected_outside_frac": 0.38636363636363635,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9479166666666666,
+ "step": 12,
+ "n_elem": 2962,
+ "target_elements": 8000,
+ "gap": 5038,
+ "cutoff_score": 1.6242163181304932,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.100303888320923,
+ "score_mean": -3.609411791671846e-08,
+ "score_p50": 0.0927412211894989,
+ "score_p90": 1.090245246887207,
+ "fraction_gt1": 0.10940272028385571,
+ "n_inside": 880,
+ "n_interface": 1488,
+ "n_outside": 1014,
+ "selected_inside_frac": 0.0594059405940594,
+ "selected_interface_frac": 0.5346534653465347,
+ "selected_outside_frac": 0.40594059405940597,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.96875,
+ "step": 13,
+ "n_elem": 3382,
+ "target_elements": 8000,
+ "gap": 4618,
+ "cutoff_score": 1.5921095609664917,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.429722309112549,
+ "score_mean": -4.755986182658489e-08,
+ "score_p50": 0.04211162030696869,
+ "score_p90": 1.1242014169692993,
+ "fraction_gt1": 0.12675324675324676,
+ "n_inside": 909,
+ "n_interface": 1749,
+ "n_outside": 1192,
+ "selected_inside_frac": 0.21739130434782608,
+ "selected_interface_frac": 0.30434782608695654,
+ "selected_outside_frac": 0.4782608695652174,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9583333333333334,
+ "step": 14,
+ "n_elem": 3850,
+ "target_elements": 8000,
+ "gap": 4150,
+ "cutoff_score": 1.5016125440597534,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4281136989593506,
+ "score_mean": 1.371884827960912e-08,
+ "score_p50": -0.2935352921485901,
+ "score_p90": 1.0004830360412598,
+ "fraction_gt1": 0.10002247696111485,
+ "n_inside": 1019,
+ "n_interface": 1976,
+ "n_outside": 1454,
+ "selected_inside_frac": 0.44360902255639095,
+ "selected_interface_frac": 0.3157894736842105,
+ "selected_outside_frac": 0.24060150375939848,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.9583333333333334,
+ "step": 15,
+ "n_elem": 4449,
+ "target_elements": 8000,
+ "gap": 3551,
+ "cutoff_score": 1.5261969566345215,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0946266651153564,
+ "score_mean": -9.529298239385753e-08,
+ "score_p50": -0.1909472793340683,
+ "score_p90": 0.9954671263694763,
+ "fraction_gt1": 0.09855581576893052,
+ "n_inside": 1293,
+ "n_interface": 2217,
+ "n_outside": 1614,
+ "selected_inside_frac": 0.19607843137254902,
+ "selected_interface_frac": 0.0784313725490196,
+ "selected_outside_frac": 0.7254901960784313,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 16,
+ "n_elem": 5124,
+ "target_elements": 8000,
+ "gap": 2876,
+ "cutoff_score": 1.5623010396957397,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.031926393508911,
+ "score_mean": 2.09814903229244e-08,
+ "score_p50": -0.0928146243095398,
+ "score_p90": 0.9271588921546936,
+ "fraction_gt1": 0.07786180818150568,
+ "n_inside": 1459,
+ "n_interface": 2290,
+ "n_outside": 2069,
+ "selected_inside_frac": 0.40229885057471265,
+ "selected_interface_frac": 0.26436781609195403,
+ "selected_outside_frac": 0.3333333333333333,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 17,
+ "n_elem": 5818,
+ "target_elements": 8000,
+ "gap": 2182,
+ "cutoff_score": 1.2529100179672241,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1338629722595215,
+ "score_mean": -3.660279190853544e-08,
+ "score_p50": 0.061336636543273926,
+ "score_p90": 0.9840861558914185,
+ "fraction_gt1": 0.0944527736131934,
+ "n_inside": 1743,
+ "n_interface": 2575,
+ "n_outside": 2352,
+ "selected_inside_frac": 0.05,
+ "selected_interface_frac": 0.845,
+ "selected_outside_frac": 0.105,
+ "selected_x_range": 0.9427083333333333,
+ "selected_y_range": 0.9375,
+ "step": 18,
+ "n_elem": 6670,
+ "target_elements": 8000,
+ "gap": 1330,
+ "cutoff_score": 1.3023622035980225,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9586355686187744,
+ "score_mean": -4.8008775621610766e-08,
+ "score_p50": -0.3674752116203308,
+ "score_p90": 1.1091829538345337,
+ "fraction_gt1": 0.13568432092291557,
+ "n_inside": 1784,
+ "n_interface": 3353,
+ "n_outside": 2491,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.4435483870967742,
+ "selected_outside_frac": 0.5564516129032258,
+ "selected_x_range": 0.984375,
+ "selected_y_range": 0.9739583333333334,
+ "step": 19,
+ "n_elem": 7628,
+ "target_elements": 8000,
+ "gap": 372,
+ "cutoff_score": 1.3596851825714111,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 53,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.08774826847496171,
+ "max_err": 0.11129746103465724,
+ "actual_elements": 2027,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.6793862581253052,
+ "score_mean": 0.25925469398498535,
+ "score_p50": 0.25427281856536865,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 6,
+ "n_interface": 244,
+ "n_outside": 262,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.14583333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 506,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.3396931290626526,
+ "score_mean": 0.24315135180950165,
+ "score_p50": 0.25427281856536865,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 27,
+ "n_interface": 297,
+ "n_outside": 262,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.10416666666666674,
+ "selected_y_range": 0.11458333333333334,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 2000,
+ "gap": 1414,
+ "cutoff_score": 0.3396931290626526,
+ "num_tied_at_cutoff": 27,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.22044403851032257,
+ "score_p50": 0.25427281856536865,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 336,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.33333333333333337,
+ "step": 2,
+ "n_elem": 686,
+ "target_elements": 2000,
+ "gap": 1314,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 478,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.2002367079257965,
+ "score_p50": 0.25427281856536865,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 458,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4791666666666667,
+ "selected_y_range": 0.49999999999999994,
+ "step": 3,
+ "n_elem": 808,
+ "target_elements": 2000,
+ "gap": 1192,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 430,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.182252436876297,
+ "score_p50": 0.1698465645313263,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 610,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.5833333333333333,
+ "step": 4,
+ "n_elem": 960,
+ "target_elements": 2000,
+ "gap": 1040,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 370,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.1683119386434555,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 773,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.6458333333333333,
+ "step": 5,
+ "n_elem": 1123,
+ "target_elements": 2000,
+ "gap": 877,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 308,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.1572929322719574,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 913,
+ "n_outside": 296,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.07894736842105263,
+ "selected_outside_frac": 0.9210526315789473,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.75,
+ "step": 6,
+ "n_elem": 1297,
+ "target_elements": 2000,
+ "gap": 703,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 242,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.1479654312133789,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 936,
+ "n_outside": 467,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8333333333333333,
+ "step": 7,
+ "n_elem": 1491,
+ "target_elements": 2000,
+ "gap": 509,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 172,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.1398819237947464,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.17979803681373596,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 936,
+ "n_outside": 689,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1713,
+ "target_elements": 2000,
+ "gap": 287,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 92,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.13398477435112,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.17979803681373596,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 936,
+ "n_outside": 894,
+ "selected_inside_frac": 0.1111111111111111,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.8888888888888888,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.7135416666666666,
+ "step": 9,
+ "n_elem": 1918,
+ "target_elements": 2000,
+ "gap": 82,
+ "cutoff_score": 0.24019931256771088,
+ "num_tied_at_cutoff": 15,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 70,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.08297234129322645,
+ "max_err": 0.11258326805906779,
+ "actual_elements": 2146,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9964022636413574,
+ "score_mean": 0.07952524721622467,
+ "score_p50": 1.5794634578014666e-07,
+ "score_p90": 0.15918317437171936,
+ "fraction_gt1": 0.0,
+ "n_inside": 6,
+ "n_interface": 244,
+ "n_outside": 262,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.20833333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9817729592323303,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9945372939109802,
+ "score_mean": 0.11285924911499023,
+ "score_p50": 1.5830437405384146e-06,
+ "score_p90": 0.7299932837486267,
+ "fraction_gt1": 0.0,
+ "n_inside": 27,
+ "n_interface": 299,
+ "n_outside": 262,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.09375,
+ "selected_y_range": 0.07291666666666663,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 2000,
+ "gap": 1412,
+ "cutoff_score": 0.9841596484184265,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9850407242774963,
+ "score_mean": 0.12260516732931137,
+ "score_p50": 0.00010478796320967376,
+ "score_p90": 0.587955117225647,
+ "fraction_gt1": 0.0,
+ "n_inside": 92,
+ "n_interface": 318,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.33333333333333337,
+ "step": 2,
+ "n_elem": 672,
+ "target_elements": 2000,
+ "gap": 1328,
+ "cutoff_score": 0.9665172100067139,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9727126955986023,
+ "score_mean": 0.14441922307014465,
+ "score_p50": 0.00038646458415314555,
+ "score_p90": 0.6735548973083496,
+ "fraction_gt1": 0.0,
+ "n_inside": 96,
+ "n_interface": 428,
+ "n_outside": 262,
+ "selected_inside_frac": 0.21739130434782608,
+ "selected_interface_frac": 0.782608695652174,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.49999999999999994,
+ "step": 3,
+ "n_elem": 786,
+ "target_elements": 2000,
+ "gap": 1214,
+ "cutoff_score": 0.9371320009231567,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9881072640419006,
+ "score_mean": 0.16454611718654633,
+ "score_p50": 0.0007052425062283874,
+ "score_p90": 0.7952210903167725,
+ "fraction_gt1": 0.0,
+ "n_inside": 130,
+ "n_interface": 536,
+ "n_outside": 262,
+ "selected_inside_frac": 0.14814814814814814,
+ "selected_interface_frac": 0.7037037037037037,
+ "selected_outside_frac": 0.14814814814814814,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 928,
+ "target_elements": 2000,
+ "gap": 1072,
+ "cutoff_score": 0.9572539925575256,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9825871586799622,
+ "score_mean": 0.15255317091941833,
+ "score_p50": 0.0008213407127186656,
+ "score_p90": 0.7264804840087891,
+ "fraction_gt1": 0.0,
+ "n_inside": 169,
+ "n_interface": 645,
+ "n_outside": 290,
+ "selected_inside_frac": 0.24242424242424243,
+ "selected_interface_frac": 0.6060606060606061,
+ "selected_outside_frac": 0.15151515151515152,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.6875,
+ "step": 5,
+ "n_elem": 1104,
+ "target_elements": 2000,
+ "gap": 896,
+ "cutoff_score": 0.9317324161529541,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9813841581344604,
+ "score_mean": 0.15031422674655914,
+ "score_p50": 0.002219815505668521,
+ "score_p90": 0.741492509841919,
+ "fraction_gt1": 0.0,
+ "n_inside": 210,
+ "n_interface": 765,
+ "n_outside": 336,
+ "selected_inside_frac": 0.07692307692307693,
+ "selected_interface_frac": 0.8205128205128205,
+ "selected_outside_frac": 0.10256410256410256,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1311,
+ "target_elements": 2000,
+ "gap": 689,
+ "cutoff_score": 0.9338635802268982,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9897448420524597,
+ "score_mean": 0.14800278842449188,
+ "score_p50": 0.00232880562543869,
+ "score_p90": 0.6684014797210693,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 950,
+ "n_outside": 370,
+ "selected_inside_frac": 0.08695652173913043,
+ "selected_interface_frac": 0.5869565217391305,
+ "selected_outside_frac": 0.32608695652173914,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1564,
+ "target_elements": 2000,
+ "gap": 436,
+ "cutoff_score": 0.9255663752555847,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9896082282066345,
+ "score_mean": 0.1524987518787384,
+ "score_p50": 0.0020836233161389828,
+ "score_p90": 0.6588934659957886,
+ "fraction_gt1": 0.0,
+ "n_inside": 271,
+ "n_interface": 1097,
+ "n_outside": 458,
+ "selected_inside_frac": 0.16666666666666666,
+ "selected_interface_frac": 0.5370370370370371,
+ "selected_outside_frac": 0.2962962962962963,
+ "selected_x_range": 0.7395833333333333,
+ "selected_y_range": 0.9479166666666667,
+ "step": 8,
+ "n_elem": 1826,
+ "target_elements": 2000,
+ "gap": 174,
+ "cutoff_score": 0.9032914042472839,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 70,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.08516756213610163,
+ "max_err": 0.11002658977865087,
+ "actual_elements": 2024,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 6.442434787750244,
+ "score_mean": -8.67992639541626e-07,
+ "score_p50": -0.2149740606546402,
+ "score_p90": 0.1063474491238594,
+ "fraction_gt1": 0.072265625,
+ "n_inside": 6,
+ "n_interface": 244,
+ "n_outside": 262,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.20833333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 1.7667995691299438,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 4.109316825866699,
+ "score_mean": -3.3573229529793025e-07,
+ "score_p50": -0.06954780220985413,
+ "score_p90": 0.2126261591911316,
+ "fraction_gt1": 0.06972789115646258,
+ "n_inside": 27,
+ "n_interface": 299,
+ "n_outside": 262,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.10416666666666663,
+ "selected_y_range": 0.07291666666666663,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 2000,
+ "gap": 1412,
+ "cutoff_score": 2.584428310394287,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8776203393936157,
+ "score_mean": -3.1694813173999137e-07,
+ "score_p50": 0.06884632259607315,
+ "score_p90": 0.5784208178520203,
+ "fraction_gt1": 0.06379821958456973,
+ "n_inside": 92,
+ "n_interface": 320,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.33333333333333337,
+ "step": 2,
+ "n_elem": 674,
+ "target_elements": 2000,
+ "gap": 1326,
+ "cutoff_score": 1.7456862926483154,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8075417280197144,
+ "score_mean": -2.897238289278903e-07,
+ "score_p50": 0.18217241764068604,
+ "score_p90": 0.724824070930481,
+ "fraction_gt1": 0.05822784810126582,
+ "n_inside": 92,
+ "n_interface": 436,
+ "n_outside": 262,
+ "selected_inside_frac": 0.21739130434782608,
+ "selected_interface_frac": 0.782608695652174,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.5625,
+ "step": 3,
+ "n_elem": 790,
+ "target_elements": 2000,
+ "gap": 1210,
+ "cutoff_score": 1.3549187183380127,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8173766136169434,
+ "score_mean": -1.4395084235729882e-07,
+ "score_p50": 0.3202270269393921,
+ "score_p90": 0.8102980852127075,
+ "fraction_gt1": 0.0870020964360587,
+ "n_inside": 113,
+ "n_interface": 576,
+ "n_outside": 265,
+ "selected_inside_frac": 0.17857142857142858,
+ "selected_interface_frac": 0.42857142857142855,
+ "selected_outside_frac": 0.39285714285714285,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.6875,
+ "step": 4,
+ "n_elem": 954,
+ "target_elements": 2000,
+ "gap": 1046,
+ "cutoff_score": 1.3510704040527344,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.9837288856506348,
+ "score_mean": -1.340842601393888e-07,
+ "score_p50": -0.14572326838970184,
+ "score_p90": 0.9796810150146484,
+ "fraction_gt1": 0.09402460456942004,
+ "n_inside": 128,
+ "n_interface": 682,
+ "n_outside": 328,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.6470588235294118,
+ "selected_outside_frac": 0.35294117647058826,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8333333333333333,
+ "step": 5,
+ "n_elem": 1138,
+ "target_elements": 2000,
+ "gap": 862,
+ "cutoff_score": 1.4231449365615845,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1193981170654297,
+ "score_mean": 2.311937663534991e-08,
+ "score_p50": -0.3194851875305176,
+ "score_p90": 1.003474473953247,
+ "fraction_gt1": 0.10227272727272728,
+ "n_inside": 128,
+ "n_interface": 801,
+ "n_outside": 391,
+ "selected_inside_frac": 0.46153846153846156,
+ "selected_interface_frac": 0.23076923076923078,
+ "selected_outside_frac": 0.3076923076923077,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9166666666666667,
+ "step": 6,
+ "n_elem": 1320,
+ "target_elements": 2000,
+ "gap": 680,
+ "cutoff_score": 1.4302793741226196,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3219218254089355,
+ "score_mean": -1.4017260241416807e-07,
+ "score_p50": -0.41520875692367554,
+ "score_p90": 1.0973023176193237,
+ "fraction_gt1": 0.11811023622047244,
+ "n_inside": 213,
+ "n_interface": 850,
+ "n_outside": 461,
+ "selected_inside_frac": 0.24444444444444444,
+ "selected_interface_frac": 0.4666666666666667,
+ "selected_outside_frac": 0.28888888888888886,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8645833333333334,
+ "step": 7,
+ "n_elem": 1524,
+ "target_elements": 2000,
+ "gap": 476,
+ "cutoff_score": 1.5783485174179077,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5697903633117676,
+ "score_mean": -2.4568493017795845e-07,
+ "score_p50": -0.35439279675483704,
+ "score_p90": 1.209751009941101,
+ "fraction_gt1": 0.1374353076480736,
+ "n_inside": 271,
+ "n_interface": 945,
+ "n_outside": 523,
+ "selected_inside_frac": 0.038461538461538464,
+ "selected_interface_frac": 0.038461538461538464,
+ "selected_outside_frac": 0.9230769230769231,
+ "selected_x_range": 0.7604166666666666,
+ "selected_y_range": 0.8854166666666667,
+ "step": 8,
+ "n_elem": 1739,
+ "target_elements": 2000,
+ "gap": 261,
+ "cutoff_score": 1.7046202421188354,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5510997772216797,
+ "score_mean": -1.2405519100866513e-07,
+ "score_p50": -0.3127995729446411,
+ "score_p90": 1.0419830083847046,
+ "fraction_gt1": 0.1092479674796748,
+ "n_inside": 286,
+ "n_interface": 964,
+ "n_outside": 718,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.22916666666666674,
+ "step": 9,
+ "n_elem": 1968,
+ "target_elements": 2000,
+ "gap": 32,
+ "cutoff_score": 2.280027389526367,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 70,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.08039012413276385,
+ "max_err": 0.11641532287928058,
+ "actual_elements": 4156,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.6793862581253052,
+ "score_mean": 0.25925469398498535,
+ "score_p50": 0.25427281856536865,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 6,
+ "n_interface": 244,
+ "n_outside": 262,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.14583333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 506,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.3396931290626526,
+ "score_mean": 0.24315135180950165,
+ "score_p50": 0.25427281856536865,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 27,
+ "n_interface": 297,
+ "n_outside": 262,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.10416666666666674,
+ "selected_y_range": 0.11458333333333334,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 4000,
+ "gap": 3414,
+ "cutoff_score": 0.3396931290626526,
+ "num_tied_at_cutoff": 27,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.22044403851032257,
+ "score_p50": 0.25427281856536865,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 336,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.33333333333333337,
+ "step": 2,
+ "n_elem": 686,
+ "target_elements": 4000,
+ "gap": 3314,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 478,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.2002367079257965,
+ "score_p50": 0.25427281856536865,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 458,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4791666666666667,
+ "selected_y_range": 0.49999999999999994,
+ "step": 3,
+ "n_elem": 808,
+ "target_elements": 4000,
+ "gap": 3192,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 430,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.182252436876297,
+ "score_p50": 0.1698465645313263,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 610,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.5833333333333333,
+ "step": 4,
+ "n_elem": 960,
+ "target_elements": 4000,
+ "gap": 3040,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 370,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.1683119386434555,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 773,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.6458333333333333,
+ "step": 5,
+ "n_elem": 1123,
+ "target_elements": 4000,
+ "gap": 2877,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 308,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.1572929322719574,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 913,
+ "n_outside": 296,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.07894736842105263,
+ "selected_outside_frac": 0.9210526315789473,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.75,
+ "step": 6,
+ "n_elem": 1297,
+ "target_elements": 4000,
+ "gap": 2703,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 242,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.1479654312133789,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 936,
+ "n_outside": 467,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8333333333333333,
+ "step": 7,
+ "n_elem": 1491,
+ "target_elements": 4000,
+ "gap": 2509,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 172,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.1398819237947464,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.17979803681373596,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 936,
+ "n_outside": 689,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1713,
+ "target_elements": 4000,
+ "gap": 2287,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 92,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.13398477435112,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.17979803681373596,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 936,
+ "n_outside": 894,
+ "selected_inside_frac": 0.2631578947368421,
+ "selected_interface_frac": 0.3157894736842105,
+ "selected_outside_frac": 0.42105263157894735,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.7395833333333333,
+ "step": 9,
+ "n_elem": 1918,
+ "target_elements": 4000,
+ "gap": 2082,
+ "cutoff_score": 0.17979803681373596,
+ "num_tied_at_cutoff": 158,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17979803681373596,
+ "score_mean": 0.12708696722984314,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.12713640928268433,
+ "fraction_gt1": 0.0,
+ "n_inside": 146,
+ "n_interface": 1032,
+ "n_outside": 977,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.828125,
+ "selected_outside_frac": 0.171875,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.7083333333333334,
+ "step": 10,
+ "n_elem": 2155,
+ "target_elements": 4000,
+ "gap": 1845,
+ "cutoff_score": 0.17979803681373596,
+ "num_tied_at_cutoff": 127,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17979803681373596,
+ "score_mean": 0.11897420138120651,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.12713640928268433,
+ "fraction_gt1": 0.0,
+ "n_inside": 146,
+ "n_interface": 1274,
+ "n_outside": 1022,
+ "selected_inside_frac": 0.2328767123287671,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.7671232876712328,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2442,
+ "target_elements": 4000,
+ "gap": 1558,
+ "cutoff_score": 0.1698465645313263,
+ "num_tied_at_cutoff": 61,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1698465645313263,
+ "score_mean": 0.1095048114657402,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.12713640928268433,
+ "fraction_gt1": 0.0,
+ "n_inside": 229,
+ "n_interface": 1347,
+ "n_outside": 1274,
+ "selected_inside_frac": 0.25882352941176473,
+ "selected_interface_frac": 0.7411764705882353,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2916666666666667,
+ "selected_y_range": 0.28125,
+ "step": 12,
+ "n_elem": 2850,
+ "target_elements": 4000,
+ "gap": 1150,
+ "cutoff_score": 0.12713640928268433,
+ "num_tied_at_cutoff": 1512,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12713640928268433,
+ "score_mean": 0.10200140625238419,
+ "score_p50": 0.08989901840686798,
+ "score_p90": 0.12713640928268433,
+ "fraction_gt1": 0.0,
+ "n_inside": 329,
+ "n_interface": 1631,
+ "n_outside": 1274,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.4479166666666667,
+ "step": 13,
+ "n_elem": 3234,
+ "target_elements": 4000,
+ "gap": 766,
+ "cutoff_score": 0.12713640928268433,
+ "num_tied_at_cutoff": 1410,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12713640928268433,
+ "score_mean": 0.09501544386148453,
+ "score_p50": 0.08989901840686798,
+ "score_p90": 0.12713640928268433,
+ "fraction_gt1": 0.0,
+ "n_inside": 329,
+ "n_interface": 2061,
+ "n_outside": 1274,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.5625,
+ "step": 14,
+ "n_elem": 3664,
+ "target_elements": 4000,
+ "gap": 336,
+ "cutoff_score": 0.12713640928268433,
+ "num_tied_at_cutoff": 1264,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 70,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.08010894885689465,
+ "max_err": 0.11769673231490821,
+ "actual_elements": 4096,
+ "num_steps": 13,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9964022636413574,
+ "score_mean": 0.07952524721622467,
+ "score_p50": 1.5794634578014666e-07,
+ "score_p90": 0.15918317437171936,
+ "fraction_gt1": 0.0,
+ "n_inside": 6,
+ "n_interface": 244,
+ "n_outside": 262,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.20833333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9817729592323303,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9945372939109802,
+ "score_mean": 0.11285924911499023,
+ "score_p50": 1.5830437405384146e-06,
+ "score_p90": 0.7299932837486267,
+ "fraction_gt1": 0.0,
+ "n_inside": 27,
+ "n_interface": 299,
+ "n_outside": 262,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.09375,
+ "selected_y_range": 0.07291666666666663,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 4000,
+ "gap": 3412,
+ "cutoff_score": 0.9841596484184265,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9850407242774963,
+ "score_mean": 0.12260516732931137,
+ "score_p50": 0.00010478796320967376,
+ "score_p90": 0.587955117225647,
+ "fraction_gt1": 0.0,
+ "n_inside": 92,
+ "n_interface": 318,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.33333333333333337,
+ "step": 2,
+ "n_elem": 672,
+ "target_elements": 4000,
+ "gap": 3328,
+ "cutoff_score": 0.9665172100067139,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9727126955986023,
+ "score_mean": 0.14441922307014465,
+ "score_p50": 0.00038646458415314555,
+ "score_p90": 0.6735548973083496,
+ "fraction_gt1": 0.0,
+ "n_inside": 96,
+ "n_interface": 428,
+ "n_outside": 262,
+ "selected_inside_frac": 0.21739130434782608,
+ "selected_interface_frac": 0.782608695652174,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.49999999999999994,
+ "step": 3,
+ "n_elem": 786,
+ "target_elements": 4000,
+ "gap": 3214,
+ "cutoff_score": 0.9371320009231567,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9881072640419006,
+ "score_mean": 0.16454611718654633,
+ "score_p50": 0.0007052425062283874,
+ "score_p90": 0.7952210903167725,
+ "fraction_gt1": 0.0,
+ "n_inside": 130,
+ "n_interface": 536,
+ "n_outside": 262,
+ "selected_inside_frac": 0.14814814814814814,
+ "selected_interface_frac": 0.7037037037037037,
+ "selected_outside_frac": 0.14814814814814814,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 928,
+ "target_elements": 4000,
+ "gap": 3072,
+ "cutoff_score": 0.9572539925575256,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9825871586799622,
+ "score_mean": 0.15255317091941833,
+ "score_p50": 0.0008213407127186656,
+ "score_p90": 0.7264804840087891,
+ "fraction_gt1": 0.0,
+ "n_inside": 169,
+ "n_interface": 645,
+ "n_outside": 290,
+ "selected_inside_frac": 0.24242424242424243,
+ "selected_interface_frac": 0.6060606060606061,
+ "selected_outside_frac": 0.15151515151515152,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.6875,
+ "step": 5,
+ "n_elem": 1104,
+ "target_elements": 4000,
+ "gap": 2896,
+ "cutoff_score": 0.9317324161529541,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9813841581344604,
+ "score_mean": 0.15031422674655914,
+ "score_p50": 0.002219815505668521,
+ "score_p90": 0.741492509841919,
+ "fraction_gt1": 0.0,
+ "n_inside": 210,
+ "n_interface": 765,
+ "n_outside": 336,
+ "selected_inside_frac": 0.07692307692307693,
+ "selected_interface_frac": 0.8205128205128205,
+ "selected_outside_frac": 0.10256410256410256,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1311,
+ "target_elements": 4000,
+ "gap": 2689,
+ "cutoff_score": 0.9338635802268982,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9897448420524597,
+ "score_mean": 0.14800278842449188,
+ "score_p50": 0.00232880562543869,
+ "score_p90": 0.6684014797210693,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 950,
+ "n_outside": 370,
+ "selected_inside_frac": 0.08695652173913043,
+ "selected_interface_frac": 0.5869565217391305,
+ "selected_outside_frac": 0.32608695652173914,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1564,
+ "target_elements": 4000,
+ "gap": 2436,
+ "cutoff_score": 0.9255663752555847,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9896082282066345,
+ "score_mean": 0.1524987518787384,
+ "score_p50": 0.0020836233161389828,
+ "score_p90": 0.6588934659957886,
+ "fraction_gt1": 0.0,
+ "n_inside": 271,
+ "n_interface": 1097,
+ "n_outside": 458,
+ "selected_inside_frac": 0.16666666666666666,
+ "selected_interface_frac": 0.5370370370370371,
+ "selected_outside_frac": 0.2962962962962963,
+ "selected_x_range": 0.7395833333333333,
+ "selected_y_range": 0.9479166666666667,
+ "step": 8,
+ "n_elem": 1826,
+ "target_elements": 4000,
+ "gap": 2174,
+ "cutoff_score": 0.9032914042472839,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9796879887580872,
+ "score_mean": 0.16705551743507385,
+ "score_p50": 0.001405786955729127,
+ "score_p90": 0.7568758726119995,
+ "fraction_gt1": 0.0,
+ "n_inside": 330,
+ "n_interface": 1271,
+ "n_outside": 545,
+ "selected_inside_frac": 0.203125,
+ "selected_interface_frac": 0.421875,
+ "selected_outside_frac": 0.375,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.9479166666666667,
+ "step": 9,
+ "n_elem": 2146,
+ "target_elements": 4000,
+ "gap": 1854,
+ "cutoff_score": 0.9134602546691895,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9855944514274597,
+ "score_mean": 0.16447369754314423,
+ "score_p50": 0.0012472128728404641,
+ "score_p90": 0.769244372844696,
+ "fraction_gt1": 0.0,
+ "n_inside": 403,
+ "n_interface": 1459,
+ "n_outside": 661,
+ "selected_inside_frac": 0.05333333333333334,
+ "selected_interface_frac": 0.41333333333333333,
+ "selected_outside_frac": 0.5333333333333333,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 10,
+ "n_elem": 2523,
+ "target_elements": 4000,
+ "gap": 1477,
+ "cutoff_score": 0.9399386048316956,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9821686148643494,
+ "score_mean": 0.1545819789171219,
+ "score_p50": 0.0012907686177641153,
+ "score_p90": 0.7431838512420654,
+ "fraction_gt1": 0.0,
+ "n_inside": 441,
+ "n_interface": 1655,
+ "n_outside": 824,
+ "selected_inside_frac": 0.22988505747126436,
+ "selected_interface_frac": 0.5747126436781609,
+ "selected_outside_frac": 0.19540229885057472,
+ "selected_x_range": 0.9583333333333334,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2920,
+ "target_elements": 4000,
+ "gap": 1080,
+ "cutoff_score": 0.9226088523864746,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9836717247962952,
+ "score_mean": 0.1548921763896942,
+ "score_p50": 0.001651427592150867,
+ "score_p90": 0.7261499762535095,
+ "fraction_gt1": 0.0,
+ "n_inside": 558,
+ "n_interface": 1988,
+ "n_outside": 933,
+ "selected_inside_frac": 0.09615384615384616,
+ "selected_interface_frac": 0.6730769230769231,
+ "selected_outside_frac": 0.23076923076923078,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8125,
+ "step": 12,
+ "n_elem": 3479,
+ "target_elements": 4000,
+ "gap": 521,
+ "cutoff_score": 0.9190126657485962,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 70,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.08097094949200523,
+ "max_err": 0.11825839192919102,
+ "actual_elements": 4097,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 6.442434787750244,
+ "score_mean": -8.67992639541626e-07,
+ "score_p50": -0.2149740606546402,
+ "score_p90": 0.1063474491238594,
+ "fraction_gt1": 0.072265625,
+ "n_inside": 6,
+ "n_interface": 244,
+ "n_outside": 262,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.20833333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 1.7667995691299438,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 4.109316825866699,
+ "score_mean": -3.3573229529793025e-07,
+ "score_p50": -0.06954780220985413,
+ "score_p90": 0.2126261591911316,
+ "fraction_gt1": 0.06972789115646258,
+ "n_inside": 27,
+ "n_interface": 299,
+ "n_outside": 262,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.10416666666666663,
+ "selected_y_range": 0.07291666666666663,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 4000,
+ "gap": 3412,
+ "cutoff_score": 2.584428310394287,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8776203393936157,
+ "score_mean": -3.1694813173999137e-07,
+ "score_p50": 0.06884632259607315,
+ "score_p90": 0.5784208178520203,
+ "fraction_gt1": 0.06379821958456973,
+ "n_inside": 92,
+ "n_interface": 320,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.33333333333333337,
+ "step": 2,
+ "n_elem": 674,
+ "target_elements": 4000,
+ "gap": 3326,
+ "cutoff_score": 1.7456862926483154,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8075417280197144,
+ "score_mean": -2.897238289278903e-07,
+ "score_p50": 0.18217241764068604,
+ "score_p90": 0.724824070930481,
+ "fraction_gt1": 0.05822784810126582,
+ "n_inside": 92,
+ "n_interface": 436,
+ "n_outside": 262,
+ "selected_inside_frac": 0.21739130434782608,
+ "selected_interface_frac": 0.782608695652174,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.5625,
+ "step": 3,
+ "n_elem": 790,
+ "target_elements": 4000,
+ "gap": 3210,
+ "cutoff_score": 1.3549187183380127,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8173766136169434,
+ "score_mean": -1.4395084235729882e-07,
+ "score_p50": 0.3202270269393921,
+ "score_p90": 0.8102980852127075,
+ "fraction_gt1": 0.0870020964360587,
+ "n_inside": 113,
+ "n_interface": 576,
+ "n_outside": 265,
+ "selected_inside_frac": 0.17857142857142858,
+ "selected_interface_frac": 0.42857142857142855,
+ "selected_outside_frac": 0.39285714285714285,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.6875,
+ "step": 4,
+ "n_elem": 954,
+ "target_elements": 4000,
+ "gap": 3046,
+ "cutoff_score": 1.3510704040527344,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.9837288856506348,
+ "score_mean": -1.340842601393888e-07,
+ "score_p50": -0.14572326838970184,
+ "score_p90": 0.9796810150146484,
+ "fraction_gt1": 0.09402460456942004,
+ "n_inside": 128,
+ "n_interface": 682,
+ "n_outside": 328,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.6470588235294118,
+ "selected_outside_frac": 0.35294117647058826,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8333333333333333,
+ "step": 5,
+ "n_elem": 1138,
+ "target_elements": 4000,
+ "gap": 2862,
+ "cutoff_score": 1.4231449365615845,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1193981170654297,
+ "score_mean": 2.311937663534991e-08,
+ "score_p50": -0.3194851875305176,
+ "score_p90": 1.003474473953247,
+ "fraction_gt1": 0.10227272727272728,
+ "n_inside": 128,
+ "n_interface": 801,
+ "n_outside": 391,
+ "selected_inside_frac": 0.46153846153846156,
+ "selected_interface_frac": 0.23076923076923078,
+ "selected_outside_frac": 0.3076923076923077,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9166666666666667,
+ "step": 6,
+ "n_elem": 1320,
+ "target_elements": 4000,
+ "gap": 2680,
+ "cutoff_score": 1.4302793741226196,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3219218254089355,
+ "score_mean": -1.4017260241416807e-07,
+ "score_p50": -0.41520875692367554,
+ "score_p90": 1.0973023176193237,
+ "fraction_gt1": 0.11811023622047244,
+ "n_inside": 213,
+ "n_interface": 850,
+ "n_outside": 461,
+ "selected_inside_frac": 0.24444444444444444,
+ "selected_interface_frac": 0.4666666666666667,
+ "selected_outside_frac": 0.28888888888888886,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8645833333333334,
+ "step": 7,
+ "n_elem": 1524,
+ "target_elements": 4000,
+ "gap": 2476,
+ "cutoff_score": 1.5783485174179077,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5697903633117676,
+ "score_mean": -2.4568493017795845e-07,
+ "score_p50": -0.35439279675483704,
+ "score_p90": 1.209751009941101,
+ "fraction_gt1": 0.1374353076480736,
+ "n_inside": 271,
+ "n_interface": 945,
+ "n_outside": 523,
+ "selected_inside_frac": 0.038461538461538464,
+ "selected_interface_frac": 0.038461538461538464,
+ "selected_outside_frac": 0.9230769230769231,
+ "selected_x_range": 0.7604166666666666,
+ "selected_y_range": 0.8854166666666667,
+ "step": 8,
+ "n_elem": 1739,
+ "target_elements": 4000,
+ "gap": 2261,
+ "cutoff_score": 1.7046202421188354,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5510997772216797,
+ "score_mean": -1.2405519100866513e-07,
+ "score_p50": -0.3127995729446411,
+ "score_p90": 1.0419830083847046,
+ "fraction_gt1": 0.1092479674796748,
+ "n_inside": 286,
+ "n_interface": 964,
+ "n_outside": 718,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.13559322033898305,
+ "selected_outside_frac": 0.864406779661017,
+ "selected_x_range": 0.8645833333333333,
+ "selected_y_range": 0.96875,
+ "step": 9,
+ "n_elem": 1968,
+ "target_elements": 4000,
+ "gap": 2032,
+ "cutoff_score": 1.8363187313079834,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 3.0210328102111816,
+ "score_mean": 4.163380395993954e-08,
+ "score_p50": -0.23176108300685883,
+ "score_p90": 0.9920452237129211,
+ "fraction_gt1": 0.09777171441564347,
+ "n_inside": 286,
+ "n_interface": 1029,
+ "n_outside": 884,
+ "selected_inside_frac": 0.2,
+ "selected_interface_frac": 0.6923076923076923,
+ "selected_outside_frac": 0.1076923076923077,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.96875,
+ "step": 10,
+ "n_elem": 2199,
+ "target_elements": 4000,
+ "gap": 1801,
+ "cutoff_score": 1.23418128490448,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1257264614105225,
+ "score_mean": 2.416276956296315e-08,
+ "score_p50": -0.060098230838775635,
+ "score_p90": 1.0267205238342285,
+ "fraction_gt1": 0.10451306413301663,
+ "n_inside": 345,
+ "n_interface": 1262,
+ "n_outside": 919,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.8533333333333334,
+ "selected_outside_frac": 0.14666666666666667,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.7708333333333334,
+ "step": 11,
+ "n_elem": 2526,
+ "target_elements": 4000,
+ "gap": 1474,
+ "cutoff_score": 1.3539953231811523,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.304950475692749,
+ "score_mean": -2.1163369723353753e-08,
+ "score_p50": 0.07188403606414795,
+ "score_p90": 0.9978336691856384,
+ "fraction_gt1": 0.09778085991678225,
+ "n_inside": 345,
+ "n_interface": 1546,
+ "n_outside": 993,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.8604651162790697,
+ "selected_outside_frac": 0.13953488372093023,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9583333333333334,
+ "step": 12,
+ "n_elem": 2884,
+ "target_elements": 4000,
+ "gap": 1116,
+ "cutoff_score": 1.442276954650879,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.444748878479004,
+ "score_mean": -1.8339891028062993e-07,
+ "score_p50": 0.22295475006103516,
+ "score_p90": 0.964293360710144,
+ "fraction_gt1": 0.08623798076923077,
+ "n_inside": 345,
+ "n_interface": 1913,
+ "n_outside": 1070,
+ "selected_inside_frac": 0.35353535353535354,
+ "selected_interface_frac": 0.21212121212121213,
+ "selected_outside_frac": 0.43434343434343436,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8854166666666667,
+ "step": 13,
+ "n_elem": 3328,
+ "target_elements": 4000,
+ "gap": 672,
+ "cutoff_score": 1.5828993320465088,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.643233299255371,
+ "score_mean": -1.2545767447136313e-07,
+ "score_p50": -0.29420900344848633,
+ "score_p90": 0.7883077263832092,
+ "fraction_gt1": 0.08453237410071943,
+ "n_inside": 491,
+ "n_interface": 2082,
+ "n_outside": 1319,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.6388888888888888,
+ "selected_outside_frac": 0.3611111111111111,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.9791666666666667,
+ "step": 14,
+ "n_elem": 3892,
+ "target_elements": 4000,
+ "gap": 108,
+ "cutoff_score": 1.798211932182312,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 70,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07972865518467413,
+ "max_err": 0.12002254581863639,
+ "actual_elements": 8138,
+ "num_steps": 21,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.6793862581253052,
+ "score_mean": 0.25925469398498535,
+ "score_p50": 0.25427281856536865,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 6,
+ "n_interface": 244,
+ "n_outside": 262,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.14583333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 506,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.3396931290626526,
+ "score_mean": 0.24315135180950165,
+ "score_p50": 0.25427281856536865,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 27,
+ "n_interface": 297,
+ "n_outside": 262,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.10416666666666674,
+ "selected_y_range": 0.11458333333333334,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 8000,
+ "gap": 7414,
+ "cutoff_score": 0.3396931290626526,
+ "num_tied_at_cutoff": 27,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.22044403851032257,
+ "score_p50": 0.25427281856536865,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 336,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.33333333333333337,
+ "step": 2,
+ "n_elem": 686,
+ "target_elements": 8000,
+ "gap": 7314,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 478,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.2002367079257965,
+ "score_p50": 0.25427281856536865,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 458,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4791666666666667,
+ "selected_y_range": 0.49999999999999994,
+ "step": 3,
+ "n_elem": 808,
+ "target_elements": 8000,
+ "gap": 7192,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 430,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.182252436876297,
+ "score_p50": 0.1698465645313263,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 610,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.5833333333333333,
+ "step": 4,
+ "n_elem": 960,
+ "target_elements": 8000,
+ "gap": 7040,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 370,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.1683119386434555,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 773,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.6458333333333333,
+ "step": 5,
+ "n_elem": 1123,
+ "target_elements": 8000,
+ "gap": 6877,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 308,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.1572929322719574,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 913,
+ "n_outside": 296,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.07894736842105263,
+ "selected_outside_frac": 0.9210526315789473,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.75,
+ "step": 6,
+ "n_elem": 1297,
+ "target_elements": 8000,
+ "gap": 6703,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 242,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.1479654312133789,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.25427281856536865,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 936,
+ "n_outside": 467,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8333333333333333,
+ "step": 7,
+ "n_elem": 1491,
+ "target_elements": 8000,
+ "gap": 6509,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 172,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.1398819237947464,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.17979803681373596,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 936,
+ "n_outside": 689,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1713,
+ "target_elements": 8000,
+ "gap": 6287,
+ "cutoff_score": 0.25427281856536865,
+ "num_tied_at_cutoff": 92,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25427281856536865,
+ "score_mean": 0.13398477435112,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.17979803681373596,
+ "fraction_gt1": 0.0,
+ "n_inside": 88,
+ "n_interface": 936,
+ "n_outside": 894,
+ "selected_inside_frac": 0.2631578947368421,
+ "selected_interface_frac": 0.3157894736842105,
+ "selected_outside_frac": 0.42105263157894735,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.7395833333333333,
+ "step": 9,
+ "n_elem": 1918,
+ "target_elements": 8000,
+ "gap": 6082,
+ "cutoff_score": 0.17979803681373596,
+ "num_tied_at_cutoff": 158,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17979803681373596,
+ "score_mean": 0.12708696722984314,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.12713640928268433,
+ "fraction_gt1": 0.0,
+ "n_inside": 146,
+ "n_interface": 1032,
+ "n_outside": 977,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.828125,
+ "selected_outside_frac": 0.171875,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.7083333333333334,
+ "step": 10,
+ "n_elem": 2155,
+ "target_elements": 8000,
+ "gap": 5845,
+ "cutoff_score": 0.17979803681373596,
+ "num_tied_at_cutoff": 127,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17979803681373596,
+ "score_mean": 0.11897420138120651,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.12713640928268433,
+ "fraction_gt1": 0.0,
+ "n_inside": 146,
+ "n_interface": 1274,
+ "n_outside": 1022,
+ "selected_inside_frac": 0.2328767123287671,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.7671232876712328,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2442,
+ "target_elements": 8000,
+ "gap": 5558,
+ "cutoff_score": 0.1698465645313263,
+ "num_tied_at_cutoff": 61,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1698465645313263,
+ "score_mean": 0.1095048114657402,
+ "score_p50": 0.12713640928268433,
+ "score_p90": 0.12713640928268433,
+ "fraction_gt1": 0.0,
+ "n_inside": 229,
+ "n_interface": 1347,
+ "n_outside": 1274,
+ "selected_inside_frac": 0.25882352941176473,
+ "selected_interface_frac": 0.7411764705882353,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2916666666666667,
+ "selected_y_range": 0.28125,
+ "step": 12,
+ "n_elem": 2850,
+ "target_elements": 8000,
+ "gap": 5150,
+ "cutoff_score": 0.12713640928268433,
+ "num_tied_at_cutoff": 1512,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12713640928268433,
+ "score_mean": 0.10200140625238419,
+ "score_p50": 0.08989901840686798,
+ "score_p90": 0.12713640928268433,
+ "fraction_gt1": 0.0,
+ "n_inside": 329,
+ "n_interface": 1631,
+ "n_outside": 1274,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.4479166666666667,
+ "step": 13,
+ "n_elem": 3234,
+ "target_elements": 8000,
+ "gap": 4766,
+ "cutoff_score": 0.12713640928268433,
+ "num_tied_at_cutoff": 1410,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12713640928268433,
+ "score_mean": 0.09501544386148453,
+ "score_p50": 0.08989901840686798,
+ "score_p90": 0.12713640928268433,
+ "fraction_gt1": 0.0,
+ "n_inside": 329,
+ "n_interface": 2061,
+ "n_outside": 1274,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.5625,
+ "step": 14,
+ "n_elem": 3664,
+ "target_elements": 8000,
+ "gap": 4336,
+ "cutoff_score": 0.12713640928268433,
+ "num_tied_at_cutoff": 1264,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12713640928268433,
+ "score_mean": 0.08880642801523209,
+ "score_p50": 0.08989901840686798,
+ "score_p90": 0.12713640928268433,
+ "fraction_gt1": 0.0,
+ "n_inside": 329,
+ "n_interface": 2553,
+ "n_outside": 1274,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.625,
+ "step": 15,
+ "n_elem": 4156,
+ "target_elements": 8000,
+ "gap": 3844,
+ "cutoff_score": 0.12713640928268433,
+ "num_tied_at_cutoff": 1094,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12713640928268433,
+ "score_mean": 0.08344142138957977,
+ "score_p50": 0.06356820464134216,
+ "score_p90": 0.12713640928268433,
+ "fraction_gt1": 0.0,
+ "n_inside": 329,
+ "n_interface": 3097,
+ "n_outside": 1274,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.6312056737588653,
+ "selected_outside_frac": 0.36879432624113473,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.71875,
+ "step": 16,
+ "n_elem": 4700,
+ "target_elements": 8000,
+ "gap": 3300,
+ "cutoff_score": 0.12713640928268433,
+ "num_tied_at_cutoff": 910,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12713640928268433,
+ "score_mean": 0.07892858982086182,
+ "score_p50": 0.06356820464134216,
+ "score_p90": 0.12713640928268433,
+ "fraction_gt1": 0.0,
+ "n_inside": 329,
+ "n_interface": 3419,
+ "n_outside": 1534,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.7916666666666667,
+ "step": 17,
+ "n_elem": 5282,
+ "target_elements": 8000,
+ "gap": 2718,
+ "cutoff_score": 0.12713640928268433,
+ "num_tied_at_cutoff": 712,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12713640928268433,
+ "score_mean": 0.07498321682214737,
+ "score_p50": 0.06356820464134216,
+ "score_p90": 0.08989901840686798,
+ "fraction_gt1": 0.0,
+ "n_inside": 329,
+ "n_interface": 3419,
+ "n_outside": 2176,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.8854166666666667,
+ "step": 18,
+ "n_elem": 5924,
+ "target_elements": 8000,
+ "gap": 2076,
+ "cutoff_score": 0.12713640928268433,
+ "num_tied_at_cutoff": 492,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12713640928268433,
+ "score_mean": 0.07159069925546646,
+ "score_p50": 0.06356820464134216,
+ "score_p90": 0.08989901840686798,
+ "fraction_gt1": 0.0,
+ "n_inside": 329,
+ "n_interface": 3419,
+ "n_outside": 2858,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 19,
+ "n_elem": 6606,
+ "target_elements": 8000,
+ "gap": 1394,
+ "cutoff_score": 0.12713640928268433,
+ "num_tied_at_cutoff": 276,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.12713640928268433,
+ "score_mean": 0.06875104457139969,
+ "score_p50": 0.06356820464134216,
+ "score_p90": 0.08989901840686798,
+ "fraction_gt1": 0.0,
+ "n_inside": 329,
+ "n_interface": 3419,
+ "n_outside": 3558,
+ "selected_inside_frac": 0.4337899543378995,
+ "selected_interface_frac": 0.2831050228310502,
+ "selected_outside_frac": 0.2831050228310502,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8489583333333334,
+ "step": 20,
+ "n_elem": 7306,
+ "target_elements": 8000,
+ "gap": 694,
+ "cutoff_score": 0.08989901840686798,
+ "num_tied_at_cutoff": 978,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 70,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07935128039637776,
+ "max_err": 0.11913417185502165,
+ "actual_elements": 8096,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9964022636413574,
+ "score_mean": 0.07952524721622467,
+ "score_p50": 1.5794634578014666e-07,
+ "score_p90": 0.15918317437171936,
+ "fraction_gt1": 0.0,
+ "n_inside": 6,
+ "n_interface": 244,
+ "n_outside": 262,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.20833333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9817729592323303,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9945372939109802,
+ "score_mean": 0.11285924911499023,
+ "score_p50": 1.5830437405384146e-06,
+ "score_p90": 0.7299932837486267,
+ "fraction_gt1": 0.0,
+ "n_inside": 27,
+ "n_interface": 299,
+ "n_outside": 262,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.09375,
+ "selected_y_range": 0.07291666666666663,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 8000,
+ "gap": 7412,
+ "cutoff_score": 0.9841596484184265,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9850407242774963,
+ "score_mean": 0.12260516732931137,
+ "score_p50": 0.00010478796320967376,
+ "score_p90": 0.587955117225647,
+ "fraction_gt1": 0.0,
+ "n_inside": 92,
+ "n_interface": 318,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.33333333333333337,
+ "step": 2,
+ "n_elem": 672,
+ "target_elements": 8000,
+ "gap": 7328,
+ "cutoff_score": 0.9665172100067139,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9727126955986023,
+ "score_mean": 0.14441922307014465,
+ "score_p50": 0.00038646458415314555,
+ "score_p90": 0.6735548973083496,
+ "fraction_gt1": 0.0,
+ "n_inside": 96,
+ "n_interface": 428,
+ "n_outside": 262,
+ "selected_inside_frac": 0.21739130434782608,
+ "selected_interface_frac": 0.782608695652174,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43749999999999994,
+ "selected_y_range": 0.49999999999999994,
+ "step": 3,
+ "n_elem": 786,
+ "target_elements": 8000,
+ "gap": 7214,
+ "cutoff_score": 0.9371320009231567,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9881072640419006,
+ "score_mean": 0.16454611718654633,
+ "score_p50": 0.0007052425062283874,
+ "score_p90": 0.7952210903167725,
+ "fraction_gt1": 0.0,
+ "n_inside": 130,
+ "n_interface": 536,
+ "n_outside": 262,
+ "selected_inside_frac": 0.14814814814814814,
+ "selected_interface_frac": 0.7037037037037037,
+ "selected_outside_frac": 0.14814814814814814,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 928,
+ "target_elements": 8000,
+ "gap": 7072,
+ "cutoff_score": 0.9572539925575256,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9825871586799622,
+ "score_mean": 0.15255317091941833,
+ "score_p50": 0.0008213407127186656,
+ "score_p90": 0.7264804840087891,
+ "fraction_gt1": 0.0,
+ "n_inside": 169,
+ "n_interface": 645,
+ "n_outside": 290,
+ "selected_inside_frac": 0.24242424242424243,
+ "selected_interface_frac": 0.6060606060606061,
+ "selected_outside_frac": 0.15151515151515152,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.6875,
+ "step": 5,
+ "n_elem": 1104,
+ "target_elements": 8000,
+ "gap": 6896,
+ "cutoff_score": 0.9317324161529541,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9813841581344604,
+ "score_mean": 0.15031422674655914,
+ "score_p50": 0.002219815505668521,
+ "score_p90": 0.741492509841919,
+ "fraction_gt1": 0.0,
+ "n_inside": 210,
+ "n_interface": 765,
+ "n_outside": 336,
+ "selected_inside_frac": 0.07692307692307693,
+ "selected_interface_frac": 0.8205128205128205,
+ "selected_outside_frac": 0.10256410256410256,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1311,
+ "target_elements": 8000,
+ "gap": 6689,
+ "cutoff_score": 0.9338635802268982,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9897448420524597,
+ "score_mean": 0.14800278842449188,
+ "score_p50": 0.00232880562543869,
+ "score_p90": 0.6684014797210693,
+ "fraction_gt1": 0.0,
+ "n_inside": 244,
+ "n_interface": 950,
+ "n_outside": 370,
+ "selected_inside_frac": 0.08695652173913043,
+ "selected_interface_frac": 0.5869565217391305,
+ "selected_outside_frac": 0.32608695652173914,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1564,
+ "target_elements": 8000,
+ "gap": 6436,
+ "cutoff_score": 0.9255663752555847,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9896082282066345,
+ "score_mean": 0.1524987518787384,
+ "score_p50": 0.0020836233161389828,
+ "score_p90": 0.6588934659957886,
+ "fraction_gt1": 0.0,
+ "n_inside": 271,
+ "n_interface": 1097,
+ "n_outside": 458,
+ "selected_inside_frac": 0.16666666666666666,
+ "selected_interface_frac": 0.5370370370370371,
+ "selected_outside_frac": 0.2962962962962963,
+ "selected_x_range": 0.7395833333333333,
+ "selected_y_range": 0.9479166666666667,
+ "step": 8,
+ "n_elem": 1826,
+ "target_elements": 8000,
+ "gap": 6174,
+ "cutoff_score": 0.9032914042472839,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9796879887580872,
+ "score_mean": 0.16705551743507385,
+ "score_p50": 0.001405786955729127,
+ "score_p90": 0.7568758726119995,
+ "fraction_gt1": 0.0,
+ "n_inside": 330,
+ "n_interface": 1271,
+ "n_outside": 545,
+ "selected_inside_frac": 0.203125,
+ "selected_interface_frac": 0.421875,
+ "selected_outside_frac": 0.375,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.9479166666666667,
+ "step": 9,
+ "n_elem": 2146,
+ "target_elements": 8000,
+ "gap": 5854,
+ "cutoff_score": 0.9134602546691895,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9855944514274597,
+ "score_mean": 0.16447369754314423,
+ "score_p50": 0.0012472128728404641,
+ "score_p90": 0.769244372844696,
+ "fraction_gt1": 0.0,
+ "n_inside": 403,
+ "n_interface": 1459,
+ "n_outside": 661,
+ "selected_inside_frac": 0.05333333333333334,
+ "selected_interface_frac": 0.41333333333333333,
+ "selected_outside_frac": 0.5333333333333333,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 10,
+ "n_elem": 2523,
+ "target_elements": 8000,
+ "gap": 5477,
+ "cutoff_score": 0.9399386048316956,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9821686148643494,
+ "score_mean": 0.1545819789171219,
+ "score_p50": 0.0012907686177641153,
+ "score_p90": 0.7431838512420654,
+ "fraction_gt1": 0.0,
+ "n_inside": 441,
+ "n_interface": 1655,
+ "n_outside": 824,
+ "selected_inside_frac": 0.22988505747126436,
+ "selected_interface_frac": 0.5747126436781609,
+ "selected_outside_frac": 0.19540229885057472,
+ "selected_x_range": 0.9583333333333334,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2920,
+ "target_elements": 8000,
+ "gap": 5080,
+ "cutoff_score": 0.9226088523864746,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9836717247962952,
+ "score_mean": 0.1548921763896942,
+ "score_p50": 0.001651427592150867,
+ "score_p90": 0.7261499762535095,
+ "fraction_gt1": 0.0,
+ "n_inside": 558,
+ "n_interface": 1988,
+ "n_outside": 933,
+ "selected_inside_frac": 0.09615384615384616,
+ "selected_interface_frac": 0.6730769230769231,
+ "selected_outside_frac": 0.23076923076923078,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8125,
+ "step": 12,
+ "n_elem": 3479,
+ "target_elements": 8000,
+ "gap": 4521,
+ "cutoff_score": 0.9190126657485962,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9885936975479126,
+ "score_mean": 0.16263319551944733,
+ "score_p50": 0.0010920795612037182,
+ "score_p90": 0.7338603138923645,
+ "fraction_gt1": 0.0,
+ "n_inside": 612,
+ "n_interface": 2414,
+ "n_outside": 1070,
+ "selected_inside_frac": 0.19672131147540983,
+ "selected_interface_frac": 0.5409836065573771,
+ "selected_outside_frac": 0.26229508196721313,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 4096,
+ "target_elements": 8000,
+ "gap": 3904,
+ "cutoff_score": 0.9082702398300171,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9832737445831299,
+ "score_mean": 0.1572563350200653,
+ "score_p50": 0.0013949967687949538,
+ "score_p90": 0.7145251631736755,
+ "fraction_gt1": 0.0,
+ "n_inside": 773,
+ "n_interface": 2796,
+ "n_outside": 1278,
+ "selected_inside_frac": 0.1310344827586207,
+ "selected_interface_frac": 0.6689655172413793,
+ "selected_outside_frac": 0.2,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9375,
+ "step": 14,
+ "n_elem": 4847,
+ "target_elements": 8000,
+ "gap": 3153,
+ "cutoff_score": 0.9202039837837219,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9850215315818787,
+ "score_mean": 0.15262649953365326,
+ "score_p50": 0.0023454129695892334,
+ "score_p90": 0.7322019338607788,
+ "fraction_gt1": 0.0,
+ "n_inside": 895,
+ "n_interface": 3362,
+ "n_outside": 1452,
+ "selected_inside_frac": 0.12280701754385964,
+ "selected_interface_frac": 0.6374269005847953,
+ "selected_outside_frac": 0.23976608187134502,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.921875,
+ "step": 15,
+ "n_elem": 5709,
+ "target_elements": 8000,
+ "gap": 2291,
+ "cutoff_score": 0.9177892208099365,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9903659820556641,
+ "score_mean": 0.15282458066940308,
+ "score_p50": 0.002599433995783329,
+ "score_p90": 0.6967690587043762,
+ "fraction_gt1": 0.0,
+ "n_inside": 1029,
+ "n_interface": 4018,
+ "n_outside": 1702,
+ "selected_inside_frac": 0.2079207920792079,
+ "selected_interface_frac": 0.599009900990099,
+ "selected_outside_frac": 0.19306930693069307,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 16,
+ "n_elem": 6749,
+ "target_elements": 8000,
+ "gap": 1251,
+ "cutoff_score": 0.9009714126586914,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9865078926086426,
+ "score_mean": 0.16124227643013,
+ "score_p50": 0.00255871145054698,
+ "score_p90": 0.7090877294540405,
+ "fraction_gt1": 0.0,
+ "n_inside": 1278,
+ "n_interface": 4713,
+ "n_outside": 1935,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.75,
+ "selected_outside_frac": 0.25,
+ "selected_x_range": 0.7864583333333333,
+ "selected_y_range": 0.6822916666666666,
+ "step": 17,
+ "n_elem": 7926,
+ "target_elements": 8000,
+ "gap": 74,
+ "cutoff_score": 0.9664470553398132,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 70,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07948949990761932,
+ "max_err": 0.11931370963201979,
+ "actual_elements": 8066,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 6.442434787750244,
+ "score_mean": -8.67992639541626e-07,
+ "score_p50": -0.2149740606546402,
+ "score_p90": 0.1063474491238594,
+ "fraction_gt1": 0.072265625,
+ "n_inside": 6,
+ "n_interface": 244,
+ "n_outside": 262,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.20833333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 1.7667995691299438,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 4.109316825866699,
+ "score_mean": -3.3573229529793025e-07,
+ "score_p50": -0.06954780220985413,
+ "score_p90": 0.2126261591911316,
+ "fraction_gt1": 0.06972789115646258,
+ "n_inside": 27,
+ "n_interface": 299,
+ "n_outside": 262,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.10416666666666663,
+ "selected_y_range": 0.07291666666666663,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 8000,
+ "gap": 7412,
+ "cutoff_score": 2.584428310394287,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8776203393936157,
+ "score_mean": -3.1694813173999137e-07,
+ "score_p50": 0.06884632259607315,
+ "score_p90": 0.5784208178520203,
+ "fraction_gt1": 0.06379821958456973,
+ "n_inside": 92,
+ "n_interface": 320,
+ "n_outside": 262,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.33333333333333337,
+ "step": 2,
+ "n_elem": 674,
+ "target_elements": 8000,
+ "gap": 7326,
+ "cutoff_score": 1.7456862926483154,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8075417280197144,
+ "score_mean": -2.897238289278903e-07,
+ "score_p50": 0.18217241764068604,
+ "score_p90": 0.724824070930481,
+ "fraction_gt1": 0.05822784810126582,
+ "n_inside": 92,
+ "n_interface": 436,
+ "n_outside": 262,
+ "selected_inside_frac": 0.21739130434782608,
+ "selected_interface_frac": 0.782608695652174,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.5625,
+ "step": 3,
+ "n_elem": 790,
+ "target_elements": 8000,
+ "gap": 7210,
+ "cutoff_score": 1.3549187183380127,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8173766136169434,
+ "score_mean": -1.4395084235729882e-07,
+ "score_p50": 0.3202270269393921,
+ "score_p90": 0.8102980852127075,
+ "fraction_gt1": 0.0870020964360587,
+ "n_inside": 113,
+ "n_interface": 576,
+ "n_outside": 265,
+ "selected_inside_frac": 0.17857142857142858,
+ "selected_interface_frac": 0.42857142857142855,
+ "selected_outside_frac": 0.39285714285714285,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.6875,
+ "step": 4,
+ "n_elem": 954,
+ "target_elements": 8000,
+ "gap": 7046,
+ "cutoff_score": 1.3510704040527344,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.9837288856506348,
+ "score_mean": -1.340842601393888e-07,
+ "score_p50": -0.14572326838970184,
+ "score_p90": 0.9796810150146484,
+ "fraction_gt1": 0.09402460456942004,
+ "n_inside": 128,
+ "n_interface": 682,
+ "n_outside": 328,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.6470588235294118,
+ "selected_outside_frac": 0.35294117647058826,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8333333333333333,
+ "step": 5,
+ "n_elem": 1138,
+ "target_elements": 8000,
+ "gap": 6862,
+ "cutoff_score": 1.4231449365615845,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1193981170654297,
+ "score_mean": 2.311937663534991e-08,
+ "score_p50": -0.3194851875305176,
+ "score_p90": 1.003474473953247,
+ "fraction_gt1": 0.10227272727272728,
+ "n_inside": 128,
+ "n_interface": 801,
+ "n_outside": 391,
+ "selected_inside_frac": 0.46153846153846156,
+ "selected_interface_frac": 0.23076923076923078,
+ "selected_outside_frac": 0.3076923076923077,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9166666666666667,
+ "step": 6,
+ "n_elem": 1320,
+ "target_elements": 8000,
+ "gap": 6680,
+ "cutoff_score": 1.4302793741226196,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3219218254089355,
+ "score_mean": -1.4017260241416807e-07,
+ "score_p50": -0.41520875692367554,
+ "score_p90": 1.0973023176193237,
+ "fraction_gt1": 0.11811023622047244,
+ "n_inside": 213,
+ "n_interface": 850,
+ "n_outside": 461,
+ "selected_inside_frac": 0.24444444444444444,
+ "selected_interface_frac": 0.4666666666666667,
+ "selected_outside_frac": 0.28888888888888886,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8645833333333334,
+ "step": 7,
+ "n_elem": 1524,
+ "target_elements": 8000,
+ "gap": 6476,
+ "cutoff_score": 1.5783485174179077,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5697903633117676,
+ "score_mean": -2.4568493017795845e-07,
+ "score_p50": -0.35439279675483704,
+ "score_p90": 1.209751009941101,
+ "fraction_gt1": 0.1374353076480736,
+ "n_inside": 271,
+ "n_interface": 945,
+ "n_outside": 523,
+ "selected_inside_frac": 0.038461538461538464,
+ "selected_interface_frac": 0.038461538461538464,
+ "selected_outside_frac": 0.9230769230769231,
+ "selected_x_range": 0.7604166666666666,
+ "selected_y_range": 0.8854166666666667,
+ "step": 8,
+ "n_elem": 1739,
+ "target_elements": 8000,
+ "gap": 6261,
+ "cutoff_score": 1.7046202421188354,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5510997772216797,
+ "score_mean": -1.2405519100866513e-07,
+ "score_p50": -0.3127995729446411,
+ "score_p90": 1.0419830083847046,
+ "fraction_gt1": 0.1092479674796748,
+ "n_inside": 286,
+ "n_interface": 964,
+ "n_outside": 718,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.13559322033898305,
+ "selected_outside_frac": 0.864406779661017,
+ "selected_x_range": 0.8645833333333333,
+ "selected_y_range": 0.96875,
+ "step": 9,
+ "n_elem": 1968,
+ "target_elements": 8000,
+ "gap": 6032,
+ "cutoff_score": 1.8363187313079834,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 3.0210328102111816,
+ "score_mean": 4.163380395993954e-08,
+ "score_p50": -0.23176108300685883,
+ "score_p90": 0.9920452237129211,
+ "fraction_gt1": 0.09777171441564347,
+ "n_inside": 286,
+ "n_interface": 1029,
+ "n_outside": 884,
+ "selected_inside_frac": 0.2,
+ "selected_interface_frac": 0.6923076923076923,
+ "selected_outside_frac": 0.1076923076923077,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.96875,
+ "step": 10,
+ "n_elem": 2199,
+ "target_elements": 8000,
+ "gap": 5801,
+ "cutoff_score": 1.23418128490448,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1257264614105225,
+ "score_mean": 2.416276956296315e-08,
+ "score_p50": -0.060098230838775635,
+ "score_p90": 1.0267205238342285,
+ "fraction_gt1": 0.10451306413301663,
+ "n_inside": 345,
+ "n_interface": 1262,
+ "n_outside": 919,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.8533333333333334,
+ "selected_outside_frac": 0.14666666666666667,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.7708333333333334,
+ "step": 11,
+ "n_elem": 2526,
+ "target_elements": 8000,
+ "gap": 5474,
+ "cutoff_score": 1.3539953231811523,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.304950475692749,
+ "score_mean": -2.1163369723353753e-08,
+ "score_p50": 0.07188403606414795,
+ "score_p90": 0.9978336691856384,
+ "fraction_gt1": 0.09778085991678225,
+ "n_inside": 345,
+ "n_interface": 1546,
+ "n_outside": 993,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.8604651162790697,
+ "selected_outside_frac": 0.13953488372093023,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9583333333333334,
+ "step": 12,
+ "n_elem": 2884,
+ "target_elements": 8000,
+ "gap": 5116,
+ "cutoff_score": 1.442276954650879,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.444748878479004,
+ "score_mean": -1.8339891028062993e-07,
+ "score_p50": 0.22295475006103516,
+ "score_p90": 0.964293360710144,
+ "fraction_gt1": 0.08623798076923077,
+ "n_inside": 345,
+ "n_interface": 1913,
+ "n_outside": 1070,
+ "selected_inside_frac": 0.35353535353535354,
+ "selected_interface_frac": 0.21212121212121213,
+ "selected_outside_frac": 0.43434343434343436,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8854166666666667,
+ "step": 13,
+ "n_elem": 3328,
+ "target_elements": 8000,
+ "gap": 4672,
+ "cutoff_score": 1.5828993320465088,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.643233299255371,
+ "score_mean": -1.2545767447136313e-07,
+ "score_p50": -0.29420900344848633,
+ "score_p90": 0.7883077263832092,
+ "fraction_gt1": 0.08453237410071943,
+ "n_inside": 491,
+ "n_interface": 2082,
+ "n_outside": 1319,
+ "selected_inside_frac": 0.20689655172413793,
+ "selected_interface_frac": 0.5689655172413793,
+ "selected_outside_frac": 0.22413793103448276,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9791666666666667,
+ "step": 14,
+ "n_elem": 3892,
+ "target_elements": 8000,
+ "gap": 4108,
+ "cutoff_score": 1.5241923332214355,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.345423460006714,
+ "score_mean": -8.130793816008008e-08,
+ "score_p50": -0.1842261701822281,
+ "score_p90": 0.7897288799285889,
+ "fraction_gt1": 0.07726465364120781,
+ "n_inside": 591,
+ "n_interface": 2449,
+ "n_outside": 1464,
+ "selected_inside_frac": 0.014814814814814815,
+ "selected_interface_frac": 0.7481481481481481,
+ "selected_outside_frac": 0.23703703703703705,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9166666666666667,
+ "step": 15,
+ "n_elem": 4504,
+ "target_elements": 8000,
+ "gap": 3496,
+ "cutoff_score": 1.326360821723938,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.035346269607544,
+ "score_mean": -4.743357706615825e-08,
+ "score_p50": -0.0709507167339325,
+ "score_p90": 0.8254902958869934,
+ "fraction_gt1": 0.0691665047600544,
+ "n_inside": 601,
+ "n_interface": 2908,
+ "n_outside": 1638,
+ "selected_inside_frac": 0.18181818181818182,
+ "selected_interface_frac": 0.6818181818181818,
+ "selected_outside_frac": 0.13636363636363635,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8541666666666666,
+ "step": 16,
+ "n_elem": 5147,
+ "target_elements": 8000,
+ "gap": 2853,
+ "cutoff_score": 1.2899833917617798,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.176818370819092,
+ "score_mean": -1.031347665048088e-07,
+ "score_p50": 0.059221476316452026,
+ "score_p90": 0.9639537334442139,
+ "fraction_gt1": 0.0767151064548834,
+ "n_inside": 723,
+ "n_interface": 3422,
+ "n_outside": 1773,
+ "selected_inside_frac": 0.24858757062146894,
+ "selected_interface_frac": 0.20903954802259886,
+ "selected_outside_frac": 0.5423728813559322,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.90625,
+ "step": 17,
+ "n_elem": 5918,
+ "target_elements": 8000,
+ "gap": 2082,
+ "cutoff_score": 1.4170774221420288,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3280632495880127,
+ "score_mean": -1.801509874610474e-08,
+ "score_p50": -0.41008293628692627,
+ "score_p90": 1.0814744234085083,
+ "fraction_gt1": 0.13119834710743802,
+ "n_inside": 902,
+ "n_interface": 3669,
+ "n_outside": 2205,
+ "selected_inside_frac": 0.1477832512315271,
+ "selected_interface_frac": 0.3645320197044335,
+ "selected_outside_frac": 0.4876847290640394,
+ "selected_x_range": 0.9739583333333334,
+ "selected_y_range": 0.984375,
+ "step": 18,
+ "n_elem": 6776,
+ "target_elements": 8000,
+ "gap": 1224,
+ "cutoff_score": 1.4664744138717651,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5589938163757324,
+ "score_mean": -2.9478087526513264e-07,
+ "score_p50": -0.32469886541366577,
+ "score_p90": 1.001618504524231,
+ "fraction_gt1": 0.1009150991357397,
+ "n_inside": 1044,
+ "n_interface": 4108,
+ "n_outside": 2716,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.26041666666666674,
+ "step": 19,
+ "n_elem": 7868,
+ "target_elements": 8000,
+ "gap": 132,
+ "cutoff_score": 2.3729119300842285,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 70,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.14027551147931455,
+ "max_err": 0.16408524396674667,
+ "actual_elements": 2026,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.5985276699066162,
+ "score_mean": 0.22000689804553986,
+ "score_p50": 0.21476009488105774,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 7,
+ "n_interface": 259,
+ "n_outside": 246,
+ "selected_inside_frac": 0.4666666666666667,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666674,
+ "selected_y_range": 0.16666666666666666,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 505,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.2992638349533081,
+ "score_mean": 0.206649512052536,
+ "score_p50": 0.21476009488105774,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 24,
+ "n_interface": 308,
+ "n_outside": 246,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.10416666666666674,
+ "selected_y_range": 0.10416666666666663,
+ "step": 1,
+ "n_elem": 578,
+ "target_elements": 2000,
+ "gap": 1422,
+ "cutoff_score": 0.2992638349533081,
+ "num_tied_at_cutoff": 24,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.18933698534965515,
+ "score_p50": 0.21476009488105774,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 335,
+ "n_outside": 246,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.33333333333333337,
+ "step": 2,
+ "n_elem": 676,
+ "target_elements": 2000,
+ "gap": 1324,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 484,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.17295360565185547,
+ "score_p50": 0.21476009488105774,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 447,
+ "n_outside": 246,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.4583333333333333,
+ "step": 3,
+ "n_elem": 788,
+ "target_elements": 2000,
+ "gap": 1212,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 436,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.15791329741477966,
+ "score_p50": 0.14963191747665405,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 586,
+ "n_outside": 246,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5833333333333333,
+ "step": 4,
+ "n_elem": 927,
+ "target_elements": 2000,
+ "gap": 1073,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 384,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.14629659056663513,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 732,
+ "n_outside": 246,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.6875,
+ "step": 5,
+ "n_elem": 1073,
+ "target_elements": 2000,
+ "gap": 927,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 330,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.1362076848745346,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 901,
+ "n_outside": 246,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.6486486486486487,
+ "selected_outside_frac": 0.35135135135135137,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.7708333333333333,
+ "step": 6,
+ "n_elem": 1242,
+ "target_elements": 2000,
+ "gap": 758,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 270,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.12779134511947632,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 987,
+ "n_outside": 350,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 7,
+ "n_elem": 1432,
+ "target_elements": 2000,
+ "gap": 568,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 198,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.12083952128887177,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.15185831487178802,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 987,
+ "n_outside": 556,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1638,
+ "target_elements": 2000,
+ "gap": 362,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 122,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.11512936651706696,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.15185831487178802,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 987,
+ "n_outside": 773,
+ "selected_inside_frac": 0.041666666666666664,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.9583333333333334,
+ "selected_x_range": 0.7760416666666666,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 1855,
+ "target_elements": 2000,
+ "gap": 145,
+ "cutoff_score": 0.21161149442195892,
+ "num_tied_at_cutoff": 9,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 73,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.13646460738019853,
+ "max_err": 0.16714348901194945,
+ "actual_elements": 2082,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9957192540168762,
+ "score_mean": 0.08339674025774002,
+ "score_p50": 2.8426093479083647e-08,
+ "score_p90": 0.215615376830101,
+ "fraction_gt1": 0.0,
+ "n_inside": 7,
+ "n_interface": 259,
+ "n_outside": 246,
+ "selected_inside_frac": 0.4666666666666667,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.20833333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9785627722740173,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9928781390190125,
+ "score_mean": 0.11758961528539658,
+ "score_p50": 4.464681637728063e-07,
+ "score_p90": 0.694085419178009,
+ "fraction_gt1": 0.0,
+ "n_inside": 24,
+ "n_interface": 322,
+ "n_outside": 246,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.09375,
+ "selected_y_range": 0.09375,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 2000,
+ "gap": 1408,
+ "cutoff_score": 0.9839719533920288,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9873207807540894,
+ "score_mean": 0.14234916865825653,
+ "score_p50": 2.8362448574625887e-05,
+ "score_p90": 0.6865946054458618,
+ "fraction_gt1": 0.0,
+ "n_inside": 86,
+ "n_interface": 334,
+ "n_outside": 246,
+ "selected_inside_frac": 0.05263157894736842,
+ "selected_interface_frac": 0.9473684210526315,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 666,
+ "target_elements": 2000,
+ "gap": 1334,
+ "cutoff_score": 0.9583011269569397,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9832114577293396,
+ "score_mean": 0.15373821556568146,
+ "score_p50": 9.348841558676213e-05,
+ "score_p90": 0.7622707486152649,
+ "fraction_gt1": 0.0,
+ "n_inside": 91,
+ "n_interface": 437,
+ "n_outside": 246,
+ "selected_inside_frac": 0.21739130434782608,
+ "selected_interface_frac": 0.782608695652174,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.43749999999999994,
+ "step": 3,
+ "n_elem": 774,
+ "target_elements": 2000,
+ "gap": 1226,
+ "cutoff_score": 0.9509574770927429,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9897046685218811,
+ "score_mean": 0.15873147547245026,
+ "score_p50": 0.00029285583877936006,
+ "score_p90": 0.7715091705322266,
+ "fraction_gt1": 0.0,
+ "n_inside": 136,
+ "n_interface": 548,
+ "n_outside": 246,
+ "selected_inside_frac": 0.37037037037037035,
+ "selected_interface_frac": 0.6296296296296297,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 930,
+ "target_elements": 2000,
+ "gap": 1070,
+ "cutoff_score": 0.9429003000259399,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.979516863822937,
+ "score_mean": 0.14253315329551697,
+ "score_p50": 0.0006439167773351073,
+ "score_p90": 0.7126004099845886,
+ "fraction_gt1": 0.0,
+ "n_inside": 198,
+ "n_interface": 656,
+ "n_outside": 246,
+ "selected_inside_frac": 0.30303030303030304,
+ "selected_interface_frac": 0.696969696969697,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.6458333333333333,
+ "step": 5,
+ "n_elem": 1100,
+ "target_elements": 2000,
+ "gap": 900,
+ "cutoff_score": 0.924289882183075,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9842892289161682,
+ "score_mean": 0.13422487676143646,
+ "score_p50": 0.0018631668062880635,
+ "score_p90": 0.664932370185852,
+ "fraction_gt1": 0.0,
+ "n_inside": 253,
+ "n_interface": 799,
+ "n_outside": 251,
+ "selected_inside_frac": 0.23076923076923078,
+ "selected_interface_frac": 0.6923076923076923,
+ "selected_outside_frac": 0.07692307692307693,
+ "selected_x_range": 0.5729166666666667,
+ "selected_y_range": 0.5833333333333333,
+ "step": 6,
+ "n_elem": 1303,
+ "target_elements": 2000,
+ "gap": 697,
+ "cutoff_score": 0.9169212579727173,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9739315509796143,
+ "score_mean": 0.13168680667877197,
+ "score_p50": 0.004476789850741625,
+ "score_p90": 0.5888934135437012,
+ "fraction_gt1": 0.0,
+ "n_inside": 305,
+ "n_interface": 949,
+ "n_outside": 269,
+ "selected_inside_frac": 0.06666666666666667,
+ "selected_interface_frac": 0.7555555555555555,
+ "selected_outside_frac": 0.17777777777777778,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.8125,
+ "step": 7,
+ "n_elem": 1523,
+ "target_elements": 2000,
+ "gap": 477,
+ "cutoff_score": 0.8914490938186646,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9833036661148071,
+ "score_mean": 0.14538374543190002,
+ "score_p50": 0.009844240732491016,
+ "score_p90": 0.6084590554237366,
+ "fraction_gt1": 0.0,
+ "n_inside": 334,
+ "n_interface": 1130,
+ "n_outside": 312,
+ "selected_inside_frac": 0.07547169811320754,
+ "selected_interface_frac": 0.8867924528301887,
+ "selected_outside_frac": 0.03773584905660377,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.65625,
+ "step": 8,
+ "n_elem": 1776,
+ "target_elements": 2000,
+ "gap": 224,
+ "cutoff_score": 0.8726999163627625,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 73,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.13748092210933338,
+ "max_err": 0.165210457698197,
+ "actual_elements": 2043,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 6.055624961853027,
+ "score_mean": 2.2351741790771484e-07,
+ "score_p50": -0.22420990467071533,
+ "score_p90": 0.20327065885066986,
+ "fraction_gt1": 0.078125,
+ "n_inside": 7,
+ "n_interface": 259,
+ "n_outside": 246,
+ "selected_inside_frac": 0.4666666666666667,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.20833333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 1.7158957719802856,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 2.722316265106201,
+ "score_mean": 6.363198679082416e-08,
+ "score_p50": -0.06332196295261383,
+ "score_p90": 0.2391987144947052,
+ "fraction_gt1": 0.06418918918918919,
+ "n_inside": 24,
+ "n_interface": 322,
+ "n_outside": 246,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.08333333333333326,
+ "selected_y_range": 0.09375,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 2000,
+ "gap": 1408,
+ "cutoff_score": 2.704119920730591,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.733999729156494,
+ "score_mean": -1.0882769885256494e-07,
+ "score_p50": 0.041114360094070435,
+ "score_p90": 0.507634162902832,
+ "fraction_gt1": 0.06156156156156156,
+ "n_inside": 88,
+ "n_interface": 332,
+ "n_outside": 246,
+ "selected_inside_frac": 0.05263157894736842,
+ "selected_interface_frac": 0.9473684210526315,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 666,
+ "target_elements": 2000,
+ "gap": 1334,
+ "cutoff_score": 1.6104353666305542,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.735374927520752,
+ "score_mean": 0.0,
+ "score_p50": 0.1620054841041565,
+ "score_p90": 0.652284562587738,
+ "fraction_gt1": 0.04392764857881137,
+ "n_inside": 93,
+ "n_interface": 435,
+ "n_outside": 246,
+ "selected_inside_frac": 0.17391304347826086,
+ "selected_interface_frac": 0.8260869565217391,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5625,
+ "step": 3,
+ "n_elem": 774,
+ "target_elements": 2000,
+ "gap": 1226,
+ "cutoff_score": 1.1262705326080322,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.6479158401489258,
+ "score_mean": 9.833806302594894e-08,
+ "score_p50": 0.31700271368026733,
+ "score_p90": 0.7823768258094788,
+ "fraction_gt1": 0.07841031149301826,
+ "n_inside": 110,
+ "n_interface": 575,
+ "n_outside": 246,
+ "selected_inside_frac": 0.5925925925925926,
+ "selected_interface_frac": 0.4074074074074074,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.21875000000000003,
+ "step": 4,
+ "n_elem": 931,
+ "target_elements": 2000,
+ "gap": 1069,
+ "cutoff_score": 1.2279092073440552,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.00162935256958,
+ "score_mean": 2.8257016282395853e-08,
+ "score_p50": -0.15506449341773987,
+ "score_p90": 0.8856353163719177,
+ "fraction_gt1": 0.08518518518518518,
+ "n_inside": 190,
+ "n_interface": 644,
+ "n_outside": 246,
+ "selected_inside_frac": 0.34375,
+ "selected_interface_frac": 0.5625,
+ "selected_outside_frac": 0.09375,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6875,
+ "step": 5,
+ "n_elem": 1080,
+ "target_elements": 2000,
+ "gap": 920,
+ "cutoff_score": 1.4236615896224976,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.156231164932251,
+ "score_mean": 2.4492438299716923e-08,
+ "score_p50": -0.19806978106498718,
+ "score_p90": 0.8900692462921143,
+ "fraction_gt1": 0.0738362760834671,
+ "n_inside": 254,
+ "n_interface": 731,
+ "n_outside": 261,
+ "selected_inside_frac": 0.21621621621621623,
+ "selected_interface_frac": 0.5675675675675675,
+ "selected_outside_frac": 0.21621621621621623,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1246,
+ "target_elements": 2000,
+ "gap": 754,
+ "cutoff_score": 1.3652812242507935,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2946622371673584,
+ "score_mean": -6.287962861506458e-08,
+ "score_p50": -0.37982845306396484,
+ "score_p90": 0.9855086803436279,
+ "fraction_gt1": 0.09684065934065934,
+ "n_inside": 294,
+ "n_interface": 866,
+ "n_outside": 296,
+ "selected_inside_frac": 0.046511627906976744,
+ "selected_interface_frac": 0.7441860465116279,
+ "selected_outside_frac": 0.20930232558139536,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1456,
+ "target_elements": 2000,
+ "gap": 544,
+ "cutoff_score": 1.4024860858917236,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4466238021850586,
+ "score_mean": 1.807913463380828e-08,
+ "score_p50": -0.3176701068878174,
+ "score_p90": 0.9862780570983887,
+ "fraction_gt1": 0.0947867298578199,
+ "n_inside": 305,
+ "n_interface": 1037,
+ "n_outside": 346,
+ "selected_inside_frac": 0.12,
+ "selected_interface_frac": 0.72,
+ "selected_outside_frac": 0.16,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.78125,
+ "step": 8,
+ "n_elem": 1688,
+ "target_elements": 2000,
+ "gap": 312,
+ "cutoff_score": 1.5030683279037476,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5006113052368164,
+ "score_mean": 3.1124507415825065e-08,
+ "score_p50": -0.2735232412815094,
+ "score_p90": 1.2013750076293945,
+ "fraction_gt1": 0.13360530341662416,
+ "n_inside": 336,
+ "n_interface": 1217,
+ "n_outside": 408,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6458333333333333,
+ "step": 9,
+ "n_elem": 1961,
+ "target_elements": 2000,
+ "gap": 39,
+ "cutoff_score": 2.080381155014038,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 73,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.13716474642139553,
+ "max_err": 0.16906267262780833,
+ "actual_elements": 4132,
+ "num_steps": 16,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.5985276699066162,
+ "score_mean": 0.22000689804553986,
+ "score_p50": 0.21476009488105774,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 7,
+ "n_interface": 259,
+ "n_outside": 246,
+ "selected_inside_frac": 0.4666666666666667,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666674,
+ "selected_y_range": 0.16666666666666666,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 505,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.2992638349533081,
+ "score_mean": 0.206649512052536,
+ "score_p50": 0.21476009488105774,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 24,
+ "n_interface": 308,
+ "n_outside": 246,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.10416666666666674,
+ "selected_y_range": 0.10416666666666663,
+ "step": 1,
+ "n_elem": 578,
+ "target_elements": 4000,
+ "gap": 3422,
+ "cutoff_score": 0.2992638349533081,
+ "num_tied_at_cutoff": 24,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.18933698534965515,
+ "score_p50": 0.21476009488105774,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 335,
+ "n_outside": 246,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.33333333333333337,
+ "step": 2,
+ "n_elem": 676,
+ "target_elements": 4000,
+ "gap": 3324,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 484,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.17295360565185547,
+ "score_p50": 0.21476009488105774,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 447,
+ "n_outside": 246,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.4583333333333333,
+ "step": 3,
+ "n_elem": 788,
+ "target_elements": 4000,
+ "gap": 3212,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 436,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.15791329741477966,
+ "score_p50": 0.14963191747665405,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 586,
+ "n_outside": 246,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5833333333333333,
+ "step": 4,
+ "n_elem": 927,
+ "target_elements": 4000,
+ "gap": 3073,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 384,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.14629659056663513,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 732,
+ "n_outside": 246,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.6875,
+ "step": 5,
+ "n_elem": 1073,
+ "target_elements": 4000,
+ "gap": 2927,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 330,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.1362076848745346,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 901,
+ "n_outside": 246,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.6486486486486487,
+ "selected_outside_frac": 0.35135135135135137,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.7708333333333333,
+ "step": 6,
+ "n_elem": 1242,
+ "target_elements": 4000,
+ "gap": 2758,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 270,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.12779134511947632,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 987,
+ "n_outside": 350,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 7,
+ "n_elem": 1432,
+ "target_elements": 4000,
+ "gap": 2568,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 198,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.12083952128887177,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.15185831487178802,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 987,
+ "n_outside": 556,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1638,
+ "target_elements": 4000,
+ "gap": 2362,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 122,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.11512936651706696,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.15185831487178802,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 987,
+ "n_outside": 773,
+ "selected_inside_frac": 0.16363636363636364,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.8363636363636363,
+ "selected_x_range": 0.7760416666666666,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 1855,
+ "target_elements": 4000,
+ "gap": 2145,
+ "cutoff_score": 0.21161149442195892,
+ "num_tied_at_cutoff": 9,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15185831487178802,
+ "score_mean": 0.11077240854501724,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.14963191747665405,
+ "fraction_gt1": 0.0,
+ "n_inside": 131,
+ "n_interface": 993,
+ "n_outside": 926,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333334,
+ "selected_y_range": 0.7083333333333334,
+ "step": 10,
+ "n_elem": 2050,
+ "target_elements": 4000,
+ "gap": 1950,
+ "cutoff_score": 0.15185831487178802,
+ "num_tied_at_cutoff": 138,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15185831487178802,
+ "score_mean": 0.10312623530626297,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.10738004744052887,
+ "fraction_gt1": 0.0,
+ "n_inside": 131,
+ "n_interface": 1281,
+ "n_outside": 926,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.04285714285714286,
+ "selected_outside_frac": 0.9571428571428572,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2338,
+ "target_elements": 4000,
+ "gap": 1662,
+ "cutoff_score": 0.15185831487178802,
+ "num_tied_at_cutoff": 72,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14963191747665405,
+ "score_mean": 0.09656459838151932,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.10738004744052887,
+ "fraction_gt1": 0.0,
+ "n_inside": 131,
+ "n_interface": 1296,
+ "n_outside": 1231,
+ "selected_inside_frac": 0.9873417721518988,
+ "selected_interface_frac": 0.012658227848101266,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.125,
+ "step": 12,
+ "n_elem": 2658,
+ "target_elements": 4000,
+ "gap": 1342,
+ "cutoff_score": 0.10738004744052887,
+ "num_tied_at_cutoff": 1530,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10738004744052887,
+ "score_mean": 0.09033490717411041,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.10738004744052887,
+ "fraction_gt1": 0.0,
+ "n_inside": 383,
+ "n_interface": 1396,
+ "n_outside": 1231,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666674,
+ "selected_y_range": 0.3125,
+ "step": 13,
+ "n_elem": 3010,
+ "target_elements": 4000,
+ "gap": 990,
+ "cutoff_score": 0.10738004744052887,
+ "num_tied_at_cutoff": 1516,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10738004744052887,
+ "score_mean": 0.0845477506518364,
+ "score_p50": 0.07592915743589401,
+ "score_p90": 0.10738004744052887,
+ "fraction_gt1": 0.0,
+ "n_inside": 383,
+ "n_interface": 1754,
+ "n_outside": 1231,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.46875,
+ "selected_y_range": 0.46875000000000006,
+ "step": 14,
+ "n_elem": 3368,
+ "target_elements": 4000,
+ "gap": 632,
+ "cutoff_score": 0.10738004744052887,
+ "num_tied_at_cutoff": 1394,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10738004744052887,
+ "score_mean": 0.07886912673711777,
+ "score_p50": 0.07592915743589401,
+ "score_p90": 0.10738004744052887,
+ "fraction_gt1": 0.0,
+ "n_inside": 383,
+ "n_interface": 2198,
+ "n_outside": 1231,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.5416666666666667,
+ "step": 15,
+ "n_elem": 3812,
+ "target_elements": 4000,
+ "gap": 188,
+ "cutoff_score": 0.10738004744052887,
+ "num_tied_at_cutoff": 1246,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 73,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13738535866149587,
+ "max_err": 0.16600364745635557,
+ "actual_elements": 4175,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9957192540168762,
+ "score_mean": 0.08339674025774002,
+ "score_p50": 2.8426093479083647e-08,
+ "score_p90": 0.215615376830101,
+ "fraction_gt1": 0.0,
+ "n_inside": 7,
+ "n_interface": 259,
+ "n_outside": 246,
+ "selected_inside_frac": 0.4666666666666667,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.20833333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9785627722740173,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9928781390190125,
+ "score_mean": 0.11758961528539658,
+ "score_p50": 4.464681637728063e-07,
+ "score_p90": 0.694085419178009,
+ "fraction_gt1": 0.0,
+ "n_inside": 24,
+ "n_interface": 322,
+ "n_outside": 246,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.09375,
+ "selected_y_range": 0.09375,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 4000,
+ "gap": 3408,
+ "cutoff_score": 0.9839719533920288,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9873207807540894,
+ "score_mean": 0.14234916865825653,
+ "score_p50": 2.8362448574625887e-05,
+ "score_p90": 0.6865946054458618,
+ "fraction_gt1": 0.0,
+ "n_inside": 86,
+ "n_interface": 334,
+ "n_outside": 246,
+ "selected_inside_frac": 0.05263157894736842,
+ "selected_interface_frac": 0.9473684210526315,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 666,
+ "target_elements": 4000,
+ "gap": 3334,
+ "cutoff_score": 0.9583011269569397,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9832114577293396,
+ "score_mean": 0.15373821556568146,
+ "score_p50": 9.348841558676213e-05,
+ "score_p90": 0.7622707486152649,
+ "fraction_gt1": 0.0,
+ "n_inside": 91,
+ "n_interface": 437,
+ "n_outside": 246,
+ "selected_inside_frac": 0.21739130434782608,
+ "selected_interface_frac": 0.782608695652174,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.43749999999999994,
+ "step": 3,
+ "n_elem": 774,
+ "target_elements": 4000,
+ "gap": 3226,
+ "cutoff_score": 0.9509574770927429,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9897046685218811,
+ "score_mean": 0.15873147547245026,
+ "score_p50": 0.00029285583877936006,
+ "score_p90": 0.7715091705322266,
+ "fraction_gt1": 0.0,
+ "n_inside": 136,
+ "n_interface": 548,
+ "n_outside": 246,
+ "selected_inside_frac": 0.37037037037037035,
+ "selected_interface_frac": 0.6296296296296297,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 930,
+ "target_elements": 4000,
+ "gap": 3070,
+ "cutoff_score": 0.9429003000259399,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.979516863822937,
+ "score_mean": 0.14253315329551697,
+ "score_p50": 0.0006439167773351073,
+ "score_p90": 0.7126004099845886,
+ "fraction_gt1": 0.0,
+ "n_inside": 198,
+ "n_interface": 656,
+ "n_outside": 246,
+ "selected_inside_frac": 0.30303030303030304,
+ "selected_interface_frac": 0.696969696969697,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.6458333333333333,
+ "step": 5,
+ "n_elem": 1100,
+ "target_elements": 4000,
+ "gap": 2900,
+ "cutoff_score": 0.924289882183075,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9842892289161682,
+ "score_mean": 0.13422487676143646,
+ "score_p50": 0.0018631668062880635,
+ "score_p90": 0.664932370185852,
+ "fraction_gt1": 0.0,
+ "n_inside": 253,
+ "n_interface": 799,
+ "n_outside": 251,
+ "selected_inside_frac": 0.23076923076923078,
+ "selected_interface_frac": 0.6923076923076923,
+ "selected_outside_frac": 0.07692307692307693,
+ "selected_x_range": 0.5729166666666667,
+ "selected_y_range": 0.5833333333333333,
+ "step": 6,
+ "n_elem": 1303,
+ "target_elements": 4000,
+ "gap": 2697,
+ "cutoff_score": 0.9169212579727173,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9739315509796143,
+ "score_mean": 0.13168680667877197,
+ "score_p50": 0.004476789850741625,
+ "score_p90": 0.5888934135437012,
+ "fraction_gt1": 0.0,
+ "n_inside": 305,
+ "n_interface": 949,
+ "n_outside": 269,
+ "selected_inside_frac": 0.06666666666666667,
+ "selected_interface_frac": 0.7555555555555555,
+ "selected_outside_frac": 0.17777777777777778,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.8125,
+ "step": 7,
+ "n_elem": 1523,
+ "target_elements": 4000,
+ "gap": 2477,
+ "cutoff_score": 0.8914490938186646,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9833036661148071,
+ "score_mean": 0.14538374543190002,
+ "score_p50": 0.009844240732491016,
+ "score_p90": 0.6084590554237366,
+ "fraction_gt1": 0.0,
+ "n_inside": 334,
+ "n_interface": 1130,
+ "n_outside": 312,
+ "selected_inside_frac": 0.07547169811320754,
+ "selected_interface_frac": 0.8867924528301887,
+ "selected_outside_frac": 0.03773584905660377,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.65625,
+ "step": 8,
+ "n_elem": 1776,
+ "target_elements": 4000,
+ "gap": 2224,
+ "cutoff_score": 0.8726999163627625,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9726877808570862,
+ "score_mean": 0.1720340996980667,
+ "score_p50": 0.004572498612105846,
+ "score_p90": 0.6715002655982971,
+ "fraction_gt1": 0.0,
+ "n_inside": 363,
+ "n_interface": 1384,
+ "n_outside": 335,
+ "selected_inside_frac": 0.06451612903225806,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.43548387096774194,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.90625,
+ "step": 9,
+ "n_elem": 2082,
+ "target_elements": 4000,
+ "gap": 1918,
+ "cutoff_score": 0.8943572044372559,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9843103885650635,
+ "score_mean": 0.1898256093263626,
+ "score_p50": 0.003664647229015827,
+ "score_p90": 0.7846413254737854,
+ "fraction_gt1": 0.0,
+ "n_inside": 389,
+ "n_interface": 1567,
+ "n_outside": 473,
+ "selected_inside_frac": 0.08333333333333333,
+ "selected_interface_frac": 0.5277777777777778,
+ "selected_outside_frac": 0.3888888888888889,
+ "selected_x_range": 0.8229166666666666,
+ "selected_y_range": 0.90625,
+ "step": 10,
+ "n_elem": 2429,
+ "target_elements": 4000,
+ "gap": 1571,
+ "cutoff_score": 0.9072148203849792,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9849345684051514,
+ "score_mean": 0.17976345121860504,
+ "score_p50": 0.002065023873001337,
+ "score_p90": 0.7969171404838562,
+ "fraction_gt1": 0.0,
+ "n_inside": 431,
+ "n_interface": 1802,
+ "n_outside": 612,
+ "selected_inside_frac": 0.12941176470588237,
+ "selected_interface_frac": 0.4,
+ "selected_outside_frac": 0.47058823529411764,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.9270833333333333,
+ "step": 11,
+ "n_elem": 2845,
+ "target_elements": 4000,
+ "gap": 1155,
+ "cutoff_score": 0.9339032173156738,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9854419231414795,
+ "score_mean": 0.1715575009584427,
+ "score_p50": 0.0015375446528196335,
+ "score_p90": 0.7796086668968201,
+ "fraction_gt1": 0.0,
+ "n_inside": 495,
+ "n_interface": 2024,
+ "n_outside": 765,
+ "selected_inside_frac": 0.37755102040816324,
+ "selected_interface_frac": 0.46938775510204084,
+ "selected_outside_frac": 0.15306122448979592,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 12,
+ "n_elem": 3284,
+ "target_elements": 4000,
+ "gap": 716,
+ "cutoff_score": 0.9130396842956543,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9825202822685242,
+ "score_mean": 0.15821573138237,
+ "score_p50": 0.0015286135021597147,
+ "score_p90": 0.7115806937217712,
+ "fraction_gt1": 0.0,
+ "n_inside": 698,
+ "n_interface": 2313,
+ "n_outside": 838,
+ "selected_inside_frac": 0.06,
+ "selected_interface_frac": 0.86,
+ "selected_outside_frac": 0.08,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.7291666666666667,
+ "step": 13,
+ "n_elem": 3849,
+ "target_elements": 4000,
+ "gap": 151,
+ "cutoff_score": 0.9366512894630432,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 73,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.137231633797009,
+ "max_err": 0.16755578695003032,
+ "actual_elements": 4158,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 6.055624961853027,
+ "score_mean": 2.2351741790771484e-07,
+ "score_p50": -0.22420990467071533,
+ "score_p90": 0.20327065885066986,
+ "fraction_gt1": 0.078125,
+ "n_inside": 7,
+ "n_interface": 259,
+ "n_outside": 246,
+ "selected_inside_frac": 0.4666666666666667,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.20833333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 1.7158957719802856,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 2.722316265106201,
+ "score_mean": 6.363198679082416e-08,
+ "score_p50": -0.06332196295261383,
+ "score_p90": 0.2391987144947052,
+ "fraction_gt1": 0.06418918918918919,
+ "n_inside": 24,
+ "n_interface": 322,
+ "n_outside": 246,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.08333333333333326,
+ "selected_y_range": 0.09375,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 4000,
+ "gap": 3408,
+ "cutoff_score": 2.704119920730591,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.733999729156494,
+ "score_mean": -1.0882769885256494e-07,
+ "score_p50": 0.041114360094070435,
+ "score_p90": 0.507634162902832,
+ "fraction_gt1": 0.06156156156156156,
+ "n_inside": 88,
+ "n_interface": 332,
+ "n_outside": 246,
+ "selected_inside_frac": 0.05263157894736842,
+ "selected_interface_frac": 0.9473684210526315,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 666,
+ "target_elements": 4000,
+ "gap": 3334,
+ "cutoff_score": 1.6104353666305542,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.735374927520752,
+ "score_mean": 0.0,
+ "score_p50": 0.1620054841041565,
+ "score_p90": 0.652284562587738,
+ "fraction_gt1": 0.04392764857881137,
+ "n_inside": 93,
+ "n_interface": 435,
+ "n_outside": 246,
+ "selected_inside_frac": 0.17391304347826086,
+ "selected_interface_frac": 0.8260869565217391,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5625,
+ "step": 3,
+ "n_elem": 774,
+ "target_elements": 4000,
+ "gap": 3226,
+ "cutoff_score": 1.1262705326080322,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.6479158401489258,
+ "score_mean": 9.833806302594894e-08,
+ "score_p50": 0.31700271368026733,
+ "score_p90": 0.7823768258094788,
+ "fraction_gt1": 0.07841031149301826,
+ "n_inside": 110,
+ "n_interface": 575,
+ "n_outside": 246,
+ "selected_inside_frac": 0.5925925925925926,
+ "selected_interface_frac": 0.4074074074074074,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.21875000000000003,
+ "step": 4,
+ "n_elem": 931,
+ "target_elements": 4000,
+ "gap": 3069,
+ "cutoff_score": 1.2279092073440552,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.00162935256958,
+ "score_mean": 2.8257016282395853e-08,
+ "score_p50": -0.15506449341773987,
+ "score_p90": 0.8856353163719177,
+ "fraction_gt1": 0.08518518518518518,
+ "n_inside": 190,
+ "n_interface": 644,
+ "n_outside": 246,
+ "selected_inside_frac": 0.34375,
+ "selected_interface_frac": 0.5625,
+ "selected_outside_frac": 0.09375,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6875,
+ "step": 5,
+ "n_elem": 1080,
+ "target_elements": 4000,
+ "gap": 2920,
+ "cutoff_score": 1.4236615896224976,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.156231164932251,
+ "score_mean": 2.4492438299716923e-08,
+ "score_p50": -0.19806978106498718,
+ "score_p90": 0.8900692462921143,
+ "fraction_gt1": 0.0738362760834671,
+ "n_inside": 254,
+ "n_interface": 731,
+ "n_outside": 261,
+ "selected_inside_frac": 0.21621621621621623,
+ "selected_interface_frac": 0.5675675675675675,
+ "selected_outside_frac": 0.21621621621621623,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1246,
+ "target_elements": 4000,
+ "gap": 2754,
+ "cutoff_score": 1.3652812242507935,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2946622371673584,
+ "score_mean": -6.287962861506458e-08,
+ "score_p50": -0.37982845306396484,
+ "score_p90": 0.9855086803436279,
+ "fraction_gt1": 0.09684065934065934,
+ "n_inside": 294,
+ "n_interface": 866,
+ "n_outside": 296,
+ "selected_inside_frac": 0.046511627906976744,
+ "selected_interface_frac": 0.7441860465116279,
+ "selected_outside_frac": 0.20930232558139536,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1456,
+ "target_elements": 4000,
+ "gap": 2544,
+ "cutoff_score": 1.4024860858917236,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4466238021850586,
+ "score_mean": 1.807913463380828e-08,
+ "score_p50": -0.3176701068878174,
+ "score_p90": 0.9862780570983887,
+ "fraction_gt1": 0.0947867298578199,
+ "n_inside": 305,
+ "n_interface": 1037,
+ "n_outside": 346,
+ "selected_inside_frac": 0.12,
+ "selected_interface_frac": 0.72,
+ "selected_outside_frac": 0.16,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.78125,
+ "step": 8,
+ "n_elem": 1688,
+ "target_elements": 4000,
+ "gap": 2312,
+ "cutoff_score": 1.5030683279037476,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5006113052368164,
+ "score_mean": 3.1124507415825065e-08,
+ "score_p50": -0.2735232412815094,
+ "score_p90": 1.2013750076293945,
+ "fraction_gt1": 0.13360530341662416,
+ "n_inside": 336,
+ "n_interface": 1217,
+ "n_outside": 408,
+ "selected_inside_frac": 0.017241379310344827,
+ "selected_interface_frac": 0.22413793103448276,
+ "selected_outside_frac": 0.7586206896551724,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.90625,
+ "step": 9,
+ "n_elem": 1961,
+ "target_elements": 4000,
+ "gap": 2039,
+ "cutoff_score": 1.638482689857483,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5732474327087402,
+ "score_mean": -1.3617839300650303e-08,
+ "score_p50": -0.21249189972877502,
+ "score_p90": 0.8420066237449646,
+ "fraction_gt1": 0.08389112003569835,
+ "n_inside": 341,
+ "n_interface": 1293,
+ "n_outside": 607,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.49999999999999994,
+ "step": 10,
+ "n_elem": 2241,
+ "target_elements": 4000,
+ "gap": 1759,
+ "cutoff_score": 1.9835634231567383,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.9651594161987305,
+ "score_mean": 4.9541522884055667e-08,
+ "score_p50": -0.14327354729175568,
+ "score_p90": 0.7554121017456055,
+ "fraction_gt1": 0.07548701298701299,
+ "n_inside": 341,
+ "n_interface": 1293,
+ "n_outside": 830,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.8493150684931506,
+ "selected_outside_frac": 0.1506849315068493,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2464,
+ "target_elements": 4000,
+ "gap": 1536,
+ "cutoff_score": 1.2524304389953613,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1703996658325195,
+ "score_mean": 1.6016923609640799e-07,
+ "score_p50": 0.02800130844116211,
+ "score_p90": 0.8951619863510132,
+ "fraction_gt1": 0.06018194541637509,
+ "n_inside": 341,
+ "n_interface": 1636,
+ "n_outside": 881,
+ "selected_inside_frac": 0.38823529411764707,
+ "selected_interface_frac": 0.5411764705882353,
+ "selected_outside_frac": 0.07058823529411765,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.7916666666666667,
+ "step": 12,
+ "n_elem": 2858,
+ "target_elements": 4000,
+ "gap": 1142,
+ "cutoff_score": 1.3653106689453125,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.020258903503418,
+ "score_mean": 1.8461934203628516e-08,
+ "score_p50": 0.18242093920707703,
+ "score_p90": 1.0065739154815674,
+ "fraction_gt1": 0.10072595281306715,
+ "n_inside": 495,
+ "n_interface": 1893,
+ "n_outside": 918,
+ "selected_inside_frac": 0.1919191919191919,
+ "selected_interface_frac": 0.5656565656565656,
+ "selected_outside_frac": 0.24242424242424243,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3306,
+ "target_elements": 4000,
+ "gap": 694,
+ "cutoff_score": 1.260138750076294,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2475790977478027,
+ "score_mean": 6.357829107628277e-08,
+ "score_p50": -0.22334739565849304,
+ "score_p90": 0.8757645487785339,
+ "fraction_gt1": 0.09088541666666666,
+ "n_inside": 572,
+ "n_interface": 2215,
+ "n_outside": 1053,
+ "selected_inside_frac": 0.09433962264150944,
+ "selected_interface_frac": 0.660377358490566,
+ "selected_outside_frac": 0.24528301886792453,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.9479166666666667,
+ "step": 14,
+ "n_elem": 3840,
+ "target_elements": 4000,
+ "gap": 160,
+ "cutoff_score": 1.4928607940673828,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 73,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13763558017204727,
+ "max_err": 0.16839462342167955,
+ "actual_elements": 8178,
+ "num_steps": 22,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.5985276699066162,
+ "score_mean": 0.22000689804553986,
+ "score_p50": 0.21476009488105774,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 7,
+ "n_interface": 259,
+ "n_outside": 246,
+ "selected_inside_frac": 0.4666666666666667,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666674,
+ "selected_y_range": 0.16666666666666666,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 505,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.2992638349533081,
+ "score_mean": 0.206649512052536,
+ "score_p50": 0.21476009488105774,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 24,
+ "n_interface": 308,
+ "n_outside": 246,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.10416666666666674,
+ "selected_y_range": 0.10416666666666663,
+ "step": 1,
+ "n_elem": 578,
+ "target_elements": 8000,
+ "gap": 7422,
+ "cutoff_score": 0.2992638349533081,
+ "num_tied_at_cutoff": 24,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.18933698534965515,
+ "score_p50": 0.21476009488105774,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 335,
+ "n_outside": 246,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.33333333333333337,
+ "step": 2,
+ "n_elem": 676,
+ "target_elements": 8000,
+ "gap": 7324,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 484,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.17295360565185547,
+ "score_p50": 0.21476009488105774,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 447,
+ "n_outside": 246,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.4583333333333333,
+ "step": 3,
+ "n_elem": 788,
+ "target_elements": 8000,
+ "gap": 7212,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 436,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.15791329741477966,
+ "score_p50": 0.14963191747665405,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 586,
+ "n_outside": 246,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5833333333333333,
+ "step": 4,
+ "n_elem": 927,
+ "target_elements": 8000,
+ "gap": 7073,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 384,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.14629659056663513,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 732,
+ "n_outside": 246,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.6875,
+ "step": 5,
+ "n_elem": 1073,
+ "target_elements": 8000,
+ "gap": 6927,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 330,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.1362076848745346,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 901,
+ "n_outside": 246,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.6486486486486487,
+ "selected_outside_frac": 0.35135135135135137,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.7708333333333333,
+ "step": 6,
+ "n_elem": 1242,
+ "target_elements": 8000,
+ "gap": 6758,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 270,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.12779134511947632,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.21476009488105774,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 987,
+ "n_outside": 350,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.8958333333333333,
+ "step": 7,
+ "n_elem": 1432,
+ "target_elements": 8000,
+ "gap": 6568,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 198,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.12083952128887177,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.15185831487178802,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 987,
+ "n_outside": 556,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1638,
+ "target_elements": 8000,
+ "gap": 6362,
+ "cutoff_score": 0.21476009488105774,
+ "num_tied_at_cutoff": 122,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.21476009488105774,
+ "score_mean": 0.11512936651706696,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.15185831487178802,
+ "fraction_gt1": 0.0,
+ "n_inside": 95,
+ "n_interface": 987,
+ "n_outside": 773,
+ "selected_inside_frac": 0.16363636363636364,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.8363636363636363,
+ "selected_x_range": 0.7760416666666666,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 1855,
+ "target_elements": 8000,
+ "gap": 6145,
+ "cutoff_score": 0.21161149442195892,
+ "num_tied_at_cutoff": 9,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15185831487178802,
+ "score_mean": 0.11077240854501724,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.14963191747665405,
+ "fraction_gt1": 0.0,
+ "n_inside": 131,
+ "n_interface": 993,
+ "n_outside": 926,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333334,
+ "selected_y_range": 0.7083333333333334,
+ "step": 10,
+ "n_elem": 2050,
+ "target_elements": 8000,
+ "gap": 5950,
+ "cutoff_score": 0.15185831487178802,
+ "num_tied_at_cutoff": 138,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.15185831487178802,
+ "score_mean": 0.10312623530626297,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.10738004744052887,
+ "fraction_gt1": 0.0,
+ "n_inside": 131,
+ "n_interface": 1281,
+ "n_outside": 926,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.04285714285714286,
+ "selected_outside_frac": 0.9571428571428572,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2338,
+ "target_elements": 8000,
+ "gap": 5662,
+ "cutoff_score": 0.15185831487178802,
+ "num_tied_at_cutoff": 72,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.14963191747665405,
+ "score_mean": 0.09656459838151932,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.10738004744052887,
+ "fraction_gt1": 0.0,
+ "n_inside": 131,
+ "n_interface": 1296,
+ "n_outside": 1231,
+ "selected_inside_frac": 0.9873417721518988,
+ "selected_interface_frac": 0.012658227848101266,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.125,
+ "selected_y_range": 0.125,
+ "step": 12,
+ "n_elem": 2658,
+ "target_elements": 8000,
+ "gap": 5342,
+ "cutoff_score": 0.10738004744052887,
+ "num_tied_at_cutoff": 1530,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10738004744052887,
+ "score_mean": 0.09033490717411041,
+ "score_p50": 0.10738004744052887,
+ "score_p90": 0.10738004744052887,
+ "fraction_gt1": 0.0,
+ "n_inside": 383,
+ "n_interface": 1396,
+ "n_outside": 1231,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666674,
+ "selected_y_range": 0.3125,
+ "step": 13,
+ "n_elem": 3010,
+ "target_elements": 8000,
+ "gap": 4990,
+ "cutoff_score": 0.10738004744052887,
+ "num_tied_at_cutoff": 1516,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10738004744052887,
+ "score_mean": 0.0845477506518364,
+ "score_p50": 0.07592915743589401,
+ "score_p90": 0.10738004744052887,
+ "fraction_gt1": 0.0,
+ "n_inside": 383,
+ "n_interface": 1754,
+ "n_outside": 1231,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.46875,
+ "selected_y_range": 0.46875000000000006,
+ "step": 14,
+ "n_elem": 3368,
+ "target_elements": 8000,
+ "gap": 4632,
+ "cutoff_score": 0.10738004744052887,
+ "num_tied_at_cutoff": 1394,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10738004744052887,
+ "score_mean": 0.07886912673711777,
+ "score_p50": 0.07592915743589401,
+ "score_p90": 0.10738004744052887,
+ "fraction_gt1": 0.0,
+ "n_inside": 383,
+ "n_interface": 2198,
+ "n_outside": 1231,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.59375,
+ "step": 15,
+ "n_elem": 3812,
+ "target_elements": 8000,
+ "gap": 4188,
+ "cutoff_score": 0.10738004744052887,
+ "num_tied_at_cutoff": 1246,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10738004744052887,
+ "score_mean": 0.07392529398202896,
+ "score_p50": 0.07481595873832703,
+ "score_p90": 0.10738004744052887,
+ "fraction_gt1": 0.0,
+ "n_inside": 383,
+ "n_interface": 2692,
+ "n_outside": 1231,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.6979166666666667,
+ "step": 16,
+ "n_elem": 4306,
+ "target_elements": 8000,
+ "gap": 3694,
+ "cutoff_score": 0.10738004744052887,
+ "num_tied_at_cutoff": 1082,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10738004744052887,
+ "score_mean": 0.06973651796579361,
+ "score_p50": 0.053690023720264435,
+ "score_p90": 0.10738004744052887,
+ "fraction_gt1": 0.0,
+ "n_inside": 383,
+ "n_interface": 3223,
+ "n_outside": 1231,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.78125,
+ "step": 17,
+ "n_elem": 4837,
+ "target_elements": 8000,
+ "gap": 3163,
+ "cutoff_score": 0.10738004744052887,
+ "num_tied_at_cutoff": 906,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10738004744052887,
+ "score_mean": 0.06599561870098114,
+ "score_p50": 0.053690023720264435,
+ "score_p90": 0.10738004744052887,
+ "fraction_gt1": 0.0,
+ "n_inside": 383,
+ "n_interface": 3727,
+ "n_outside": 1330,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.8854166666666667,
+ "step": 18,
+ "n_elem": 5440,
+ "target_elements": 8000,
+ "gap": 2560,
+ "cutoff_score": 0.10738004744052887,
+ "num_tied_at_cutoff": 696,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10738004744052887,
+ "score_mean": 0.0627526342868805,
+ "score_p50": 0.053690023720264435,
+ "score_p90": 0.07592915743589401,
+ "fraction_gt1": 0.0,
+ "n_inside": 383,
+ "n_interface": 3727,
+ "n_outside": 1986,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 19,
+ "n_elem": 6096,
+ "target_elements": 8000,
+ "gap": 1904,
+ "cutoff_score": 0.10738004744052887,
+ "num_tied_at_cutoff": 474,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10738004744052887,
+ "score_mean": 0.05996447056531906,
+ "score_p50": 0.053690023720264435,
+ "score_p90": 0.07592915743589401,
+ "fraction_gt1": 0.0,
+ "n_inside": 383,
+ "n_interface": 3727,
+ "n_outside": 2689,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 20,
+ "n_elem": 6799,
+ "target_elements": 8000,
+ "gap": 1201,
+ "cutoff_score": 0.10738004744052887,
+ "num_tied_at_cutoff": 240,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10738004744052887,
+ "score_mean": 0.0577905997633934,
+ "score_p50": 0.053690023720264435,
+ "score_p90": 0.07592915743589401,
+ "fraction_gt1": 0.0,
+ "n_inside": 383,
+ "n_interface": 3727,
+ "n_outside": 3354,
+ "selected_inside_frac": 0.21910112359550563,
+ "selected_interface_frac": 0.6123595505617978,
+ "selected_outside_frac": 0.16853932584269662,
+ "selected_x_range": 0.9322916666666667,
+ "selected_y_range": 0.8697916666666667,
+ "step": 21,
+ "n_elem": 7464,
+ "target_elements": 8000,
+ "gap": 536,
+ "cutoff_score": 0.07592915743589401,
+ "num_tied_at_cutoff": 972,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 73,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.1371810180386107,
+ "max_err": 0.16815642076751994,
+ "actual_elements": 8472,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9957192540168762,
+ "score_mean": 0.08339674025774002,
+ "score_p50": 2.8426093479083647e-08,
+ "score_p90": 0.215615376830101,
+ "fraction_gt1": 0.0,
+ "n_inside": 7,
+ "n_interface": 259,
+ "n_outside": 246,
+ "selected_inside_frac": 0.4666666666666667,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.20833333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9785627722740173,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9928781390190125,
+ "score_mean": 0.11758961528539658,
+ "score_p50": 4.464681637728063e-07,
+ "score_p90": 0.694085419178009,
+ "fraction_gt1": 0.0,
+ "n_inside": 24,
+ "n_interface": 322,
+ "n_outside": 246,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.09375,
+ "selected_y_range": 0.09375,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 8000,
+ "gap": 7408,
+ "cutoff_score": 0.9839719533920288,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9873207807540894,
+ "score_mean": 0.14234916865825653,
+ "score_p50": 2.8362448574625887e-05,
+ "score_p90": 0.6865946054458618,
+ "fraction_gt1": 0.0,
+ "n_inside": 86,
+ "n_interface": 334,
+ "n_outside": 246,
+ "selected_inside_frac": 0.05263157894736842,
+ "selected_interface_frac": 0.9473684210526315,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 666,
+ "target_elements": 8000,
+ "gap": 7334,
+ "cutoff_score": 0.9583011269569397,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9832114577293396,
+ "score_mean": 0.15373821556568146,
+ "score_p50": 9.348841558676213e-05,
+ "score_p90": 0.7622707486152649,
+ "fraction_gt1": 0.0,
+ "n_inside": 91,
+ "n_interface": 437,
+ "n_outside": 246,
+ "selected_inside_frac": 0.21739130434782608,
+ "selected_interface_frac": 0.782608695652174,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.43749999999999994,
+ "step": 3,
+ "n_elem": 774,
+ "target_elements": 8000,
+ "gap": 7226,
+ "cutoff_score": 0.9509574770927429,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9897046685218811,
+ "score_mean": 0.15873147547245026,
+ "score_p50": 0.00029285583877936006,
+ "score_p90": 0.7715091705322266,
+ "fraction_gt1": 0.0,
+ "n_inside": 136,
+ "n_interface": 548,
+ "n_outside": 246,
+ "selected_inside_frac": 0.37037037037037035,
+ "selected_interface_frac": 0.6296296296296297,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 930,
+ "target_elements": 8000,
+ "gap": 7070,
+ "cutoff_score": 0.9429003000259399,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.979516863822937,
+ "score_mean": 0.14253315329551697,
+ "score_p50": 0.0006439167773351073,
+ "score_p90": 0.7126004099845886,
+ "fraction_gt1": 0.0,
+ "n_inside": 198,
+ "n_interface": 656,
+ "n_outside": 246,
+ "selected_inside_frac": 0.30303030303030304,
+ "selected_interface_frac": 0.696969696969697,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.6458333333333333,
+ "step": 5,
+ "n_elem": 1100,
+ "target_elements": 8000,
+ "gap": 6900,
+ "cutoff_score": 0.924289882183075,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9842892289161682,
+ "score_mean": 0.13422487676143646,
+ "score_p50": 0.0018631668062880635,
+ "score_p90": 0.664932370185852,
+ "fraction_gt1": 0.0,
+ "n_inside": 253,
+ "n_interface": 799,
+ "n_outside": 251,
+ "selected_inside_frac": 0.23076923076923078,
+ "selected_interface_frac": 0.6923076923076923,
+ "selected_outside_frac": 0.07692307692307693,
+ "selected_x_range": 0.5729166666666667,
+ "selected_y_range": 0.5833333333333333,
+ "step": 6,
+ "n_elem": 1303,
+ "target_elements": 8000,
+ "gap": 6697,
+ "cutoff_score": 0.9169212579727173,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9739315509796143,
+ "score_mean": 0.13168680667877197,
+ "score_p50": 0.004476789850741625,
+ "score_p90": 0.5888934135437012,
+ "fraction_gt1": 0.0,
+ "n_inside": 305,
+ "n_interface": 949,
+ "n_outside": 269,
+ "selected_inside_frac": 0.06666666666666667,
+ "selected_interface_frac": 0.7555555555555555,
+ "selected_outside_frac": 0.17777777777777778,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.8125,
+ "step": 7,
+ "n_elem": 1523,
+ "target_elements": 8000,
+ "gap": 6477,
+ "cutoff_score": 0.8914490938186646,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9833036661148071,
+ "score_mean": 0.14538374543190002,
+ "score_p50": 0.009844240732491016,
+ "score_p90": 0.6084590554237366,
+ "fraction_gt1": 0.0,
+ "n_inside": 334,
+ "n_interface": 1130,
+ "n_outside": 312,
+ "selected_inside_frac": 0.07547169811320754,
+ "selected_interface_frac": 0.8867924528301887,
+ "selected_outside_frac": 0.03773584905660377,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.65625,
+ "step": 8,
+ "n_elem": 1776,
+ "target_elements": 8000,
+ "gap": 6224,
+ "cutoff_score": 0.8726999163627625,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9726877808570862,
+ "score_mean": 0.1720340996980667,
+ "score_p50": 0.004572498612105846,
+ "score_p90": 0.6715002655982971,
+ "fraction_gt1": 0.0,
+ "n_inside": 363,
+ "n_interface": 1384,
+ "n_outside": 335,
+ "selected_inside_frac": 0.06451612903225806,
+ "selected_interface_frac": 0.5,
+ "selected_outside_frac": 0.43548387096774194,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.90625,
+ "step": 9,
+ "n_elem": 2082,
+ "target_elements": 8000,
+ "gap": 5918,
+ "cutoff_score": 0.8943572044372559,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9843103885650635,
+ "score_mean": 0.1898256093263626,
+ "score_p50": 0.003664647229015827,
+ "score_p90": 0.7846413254737854,
+ "fraction_gt1": 0.0,
+ "n_inside": 389,
+ "n_interface": 1567,
+ "n_outside": 473,
+ "selected_inside_frac": 0.08333333333333333,
+ "selected_interface_frac": 0.5277777777777778,
+ "selected_outside_frac": 0.3888888888888889,
+ "selected_x_range": 0.8229166666666666,
+ "selected_y_range": 0.90625,
+ "step": 10,
+ "n_elem": 2429,
+ "target_elements": 8000,
+ "gap": 5571,
+ "cutoff_score": 0.9072148203849792,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9849345684051514,
+ "score_mean": 0.17976345121860504,
+ "score_p50": 0.002065023873001337,
+ "score_p90": 0.7969171404838562,
+ "fraction_gt1": 0.0,
+ "n_inside": 431,
+ "n_interface": 1802,
+ "n_outside": 612,
+ "selected_inside_frac": 0.12941176470588237,
+ "selected_interface_frac": 0.4,
+ "selected_outside_frac": 0.47058823529411764,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.9270833333333333,
+ "step": 11,
+ "n_elem": 2845,
+ "target_elements": 8000,
+ "gap": 5155,
+ "cutoff_score": 0.9339032173156738,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9854419231414795,
+ "score_mean": 0.1715575009584427,
+ "score_p50": 0.0015375446528196335,
+ "score_p90": 0.7796086668968201,
+ "fraction_gt1": 0.0,
+ "n_inside": 495,
+ "n_interface": 2024,
+ "n_outside": 765,
+ "selected_inside_frac": 0.37755102040816324,
+ "selected_interface_frac": 0.46938775510204084,
+ "selected_outside_frac": 0.15306122448979592,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 12,
+ "n_elem": 3284,
+ "target_elements": 8000,
+ "gap": 4716,
+ "cutoff_score": 0.9130396842956543,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9825202822685242,
+ "score_mean": 0.15821573138237,
+ "score_p50": 0.0015286135021597147,
+ "score_p90": 0.7115806937217712,
+ "fraction_gt1": 0.0,
+ "n_inside": 698,
+ "n_interface": 2313,
+ "n_outside": 838,
+ "selected_inside_frac": 0.14782608695652175,
+ "selected_interface_frac": 0.7913043478260869,
+ "selected_outside_frac": 0.06086956521739131,
+ "selected_x_range": 0.9583333333333334,
+ "selected_y_range": 0.7291666666666667,
+ "step": 13,
+ "n_elem": 3849,
+ "target_elements": 8000,
+ "gap": 4151,
+ "cutoff_score": 0.8973765969276428,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9893136620521545,
+ "score_mean": 0.15400826930999756,
+ "score_p50": 0.0019574183970689774,
+ "score_p90": 0.7025547027587891,
+ "fraction_gt1": 0.0,
+ "n_inside": 818,
+ "n_interface": 2872,
+ "n_outside": 887,
+ "selected_inside_frac": 0.12408759124087591,
+ "selected_interface_frac": 0.6642335766423357,
+ "selected_outside_frac": 0.2116788321167883,
+ "selected_x_range": 0.9635416666666667,
+ "selected_y_range": 0.9375,
+ "step": 14,
+ "n_elem": 4577,
+ "target_elements": 8000,
+ "gap": 3423,
+ "cutoff_score": 0.8991133570671082,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9820321798324585,
+ "score_mean": 0.1477377712726593,
+ "score_p50": 0.002058524638414383,
+ "score_p90": 0.6934489011764526,
+ "fraction_gt1": 0.0,
+ "n_inside": 914,
+ "n_interface": 3425,
+ "n_outside": 1079,
+ "selected_inside_frac": 0.18518518518518517,
+ "selected_interface_frac": 0.6666666666666666,
+ "selected_outside_frac": 0.14814814814814814,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 15,
+ "n_elem": 5418,
+ "target_elements": 8000,
+ "gap": 2582,
+ "cutoff_score": 0.8807981610298157,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.978384256362915,
+ "score_mean": 0.14326028525829315,
+ "score_p50": 0.003245557891204953,
+ "score_p90": 0.6608462333679199,
+ "fraction_gt1": 0.0,
+ "n_inside": 1110,
+ "n_interface": 4032,
+ "n_outside": 1229,
+ "selected_inside_frac": 0.17277486910994763,
+ "selected_interface_frac": 0.7068062827225131,
+ "selected_outside_frac": 0.12041884816753927,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9270833333333333,
+ "step": 16,
+ "n_elem": 6371,
+ "target_elements": 8000,
+ "gap": 1629,
+ "cutoff_score": 0.8834319114685059,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9779043197631836,
+ "score_mean": 0.1479903906583786,
+ "score_p50": 0.00456262519583106,
+ "score_p90": 0.6722208261489868,
+ "fraction_gt1": 0.0,
+ "n_inside": 1322,
+ "n_interface": 4841,
+ "n_outside": 1361,
+ "selected_inside_frac": 0.0759493670886076,
+ "selected_interface_frac": 0.7974683544303798,
+ "selected_outside_frac": 0.12658227848101267,
+ "selected_x_range": 0.921875,
+ "selected_y_range": 0.9479166666666667,
+ "step": 17,
+ "n_elem": 7524,
+ "target_elements": 8000,
+ "gap": 476,
+ "cutoff_score": 0.905082106590271,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 73,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.1372403963498678,
+ "max_err": 0.16993482708866176,
+ "actual_elements": 8206,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 6.055624961853027,
+ "score_mean": 2.2351741790771484e-07,
+ "score_p50": -0.22420990467071533,
+ "score_p90": 0.20327065885066986,
+ "fraction_gt1": 0.078125,
+ "n_inside": 7,
+ "n_interface": 259,
+ "n_outside": 246,
+ "selected_inside_frac": 0.4666666666666667,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333326,
+ "selected_y_range": 0.20833333333333334,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 1.7158957719802856,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 2.722316265106201,
+ "score_mean": 6.363198679082416e-08,
+ "score_p50": -0.06332196295261383,
+ "score_p90": 0.2391987144947052,
+ "fraction_gt1": 0.06418918918918919,
+ "n_inside": 24,
+ "n_interface": 322,
+ "n_outside": 246,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.08333333333333326,
+ "selected_y_range": 0.09375,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 8000,
+ "gap": 7408,
+ "cutoff_score": 2.704119920730591,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.733999729156494,
+ "score_mean": -1.0882769885256494e-07,
+ "score_p50": 0.041114360094070435,
+ "score_p90": 0.507634162902832,
+ "fraction_gt1": 0.06156156156156156,
+ "n_inside": 88,
+ "n_interface": 332,
+ "n_outside": 246,
+ "selected_inside_frac": 0.05263157894736842,
+ "selected_interface_frac": 0.9473684210526315,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.33333333333333326,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 666,
+ "target_elements": 8000,
+ "gap": 7334,
+ "cutoff_score": 1.6104353666305542,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.735374927520752,
+ "score_mean": 0.0,
+ "score_p50": 0.1620054841041565,
+ "score_p90": 0.652284562587738,
+ "fraction_gt1": 0.04392764857881137,
+ "n_inside": 93,
+ "n_interface": 435,
+ "n_outside": 246,
+ "selected_inside_frac": 0.17391304347826086,
+ "selected_interface_frac": 0.8260869565217391,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5625,
+ "step": 3,
+ "n_elem": 774,
+ "target_elements": 8000,
+ "gap": 7226,
+ "cutoff_score": 1.1262705326080322,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.6479158401489258,
+ "score_mean": 9.833806302594894e-08,
+ "score_p50": 0.31700271368026733,
+ "score_p90": 0.7823768258094788,
+ "fraction_gt1": 0.07841031149301826,
+ "n_inside": 110,
+ "n_interface": 575,
+ "n_outside": 246,
+ "selected_inside_frac": 0.5925925925925926,
+ "selected_interface_frac": 0.4074074074074074,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.21875000000000003,
+ "step": 4,
+ "n_elem": 931,
+ "target_elements": 8000,
+ "gap": 7069,
+ "cutoff_score": 1.2279092073440552,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.00162935256958,
+ "score_mean": 2.8257016282395853e-08,
+ "score_p50": -0.15506449341773987,
+ "score_p90": 0.8856353163719177,
+ "fraction_gt1": 0.08518518518518518,
+ "n_inside": 190,
+ "n_interface": 644,
+ "n_outside": 246,
+ "selected_inside_frac": 0.34375,
+ "selected_interface_frac": 0.5625,
+ "selected_outside_frac": 0.09375,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6875,
+ "step": 5,
+ "n_elem": 1080,
+ "target_elements": 8000,
+ "gap": 6920,
+ "cutoff_score": 1.4236615896224976,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.156231164932251,
+ "score_mean": 2.4492438299716923e-08,
+ "score_p50": -0.19806978106498718,
+ "score_p90": 0.8900692462921143,
+ "fraction_gt1": 0.0738362760834671,
+ "n_inside": 254,
+ "n_interface": 731,
+ "n_outside": 261,
+ "selected_inside_frac": 0.21621621621621623,
+ "selected_interface_frac": 0.5675675675675675,
+ "selected_outside_frac": 0.21621621621621623,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1246,
+ "target_elements": 8000,
+ "gap": 6754,
+ "cutoff_score": 1.3652812242507935,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2946622371673584,
+ "score_mean": -6.287962861506458e-08,
+ "score_p50": -0.37982845306396484,
+ "score_p90": 0.9855086803436279,
+ "fraction_gt1": 0.09684065934065934,
+ "n_inside": 294,
+ "n_interface": 866,
+ "n_outside": 296,
+ "selected_inside_frac": 0.046511627906976744,
+ "selected_interface_frac": 0.7441860465116279,
+ "selected_outside_frac": 0.20930232558139536,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1456,
+ "target_elements": 8000,
+ "gap": 6544,
+ "cutoff_score": 1.4024860858917236,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4466238021850586,
+ "score_mean": 1.807913463380828e-08,
+ "score_p50": -0.3176701068878174,
+ "score_p90": 0.9862780570983887,
+ "fraction_gt1": 0.0947867298578199,
+ "n_inside": 305,
+ "n_interface": 1037,
+ "n_outside": 346,
+ "selected_inside_frac": 0.12,
+ "selected_interface_frac": 0.72,
+ "selected_outside_frac": 0.16,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.78125,
+ "step": 8,
+ "n_elem": 1688,
+ "target_elements": 8000,
+ "gap": 6312,
+ "cutoff_score": 1.5030683279037476,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5006113052368164,
+ "score_mean": 3.1124507415825065e-08,
+ "score_p50": -0.2735232412815094,
+ "score_p90": 1.2013750076293945,
+ "fraction_gt1": 0.13360530341662416,
+ "n_inside": 336,
+ "n_interface": 1217,
+ "n_outside": 408,
+ "selected_inside_frac": 0.017241379310344827,
+ "selected_interface_frac": 0.22413793103448276,
+ "selected_outside_frac": 0.7586206896551724,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.90625,
+ "step": 9,
+ "n_elem": 1961,
+ "target_elements": 8000,
+ "gap": 6039,
+ "cutoff_score": 1.638482689857483,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5732474327087402,
+ "score_mean": -1.3617839300650303e-08,
+ "score_p50": -0.21249189972877502,
+ "score_p90": 0.8420066237449646,
+ "fraction_gt1": 0.08389112003569835,
+ "n_inside": 341,
+ "n_interface": 1293,
+ "n_outside": 607,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.49999999999999994,
+ "step": 10,
+ "n_elem": 2241,
+ "target_elements": 8000,
+ "gap": 5759,
+ "cutoff_score": 1.9835634231567383,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.9651594161987305,
+ "score_mean": 4.9541522884055667e-08,
+ "score_p50": -0.14327354729175568,
+ "score_p90": 0.7554121017456055,
+ "fraction_gt1": 0.07548701298701299,
+ "n_inside": 341,
+ "n_interface": 1293,
+ "n_outside": 830,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.8493150684931506,
+ "selected_outside_frac": 0.1506849315068493,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2464,
+ "target_elements": 8000,
+ "gap": 5536,
+ "cutoff_score": 1.2524304389953613,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1703996658325195,
+ "score_mean": 1.6016923609640799e-07,
+ "score_p50": 0.02800130844116211,
+ "score_p90": 0.8951619863510132,
+ "fraction_gt1": 0.06018194541637509,
+ "n_inside": 341,
+ "n_interface": 1636,
+ "n_outside": 881,
+ "selected_inside_frac": 0.38823529411764707,
+ "selected_interface_frac": 0.5411764705882353,
+ "selected_outside_frac": 0.07058823529411765,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.7916666666666667,
+ "step": 12,
+ "n_elem": 2858,
+ "target_elements": 8000,
+ "gap": 5142,
+ "cutoff_score": 1.3653106689453125,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.020258903503418,
+ "score_mean": 1.8461934203628516e-08,
+ "score_p50": 0.18242093920707703,
+ "score_p90": 1.0065739154815674,
+ "fraction_gt1": 0.10072595281306715,
+ "n_inside": 495,
+ "n_interface": 1893,
+ "n_outside": 918,
+ "selected_inside_frac": 0.1919191919191919,
+ "selected_interface_frac": 0.5656565656565656,
+ "selected_outside_frac": 0.24242424242424243,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3306,
+ "target_elements": 8000,
+ "gap": 4694,
+ "cutoff_score": 1.260138750076294,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2475790977478027,
+ "score_mean": 6.357829107628277e-08,
+ "score_p50": -0.22334739565849304,
+ "score_p90": 0.8757645487785339,
+ "fraction_gt1": 0.09088541666666666,
+ "n_inside": 572,
+ "n_interface": 2215,
+ "n_outside": 1053,
+ "selected_inside_frac": 0.05217391304347826,
+ "selected_interface_frac": 0.5130434782608696,
+ "selected_outside_frac": 0.43478260869565216,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9791666666666667,
+ "step": 14,
+ "n_elem": 3840,
+ "target_elements": 8000,
+ "gap": 4160,
+ "cutoff_score": 1.2612249851226807,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8899104595184326,
+ "score_mean": -2.7736948737810962e-08,
+ "score_p50": -0.20149576663970947,
+ "score_p90": 0.731127142906189,
+ "fraction_gt1": 0.07543740059077482,
+ "n_inside": 600,
+ "n_interface": 2520,
+ "n_outside": 1281,
+ "selected_inside_frac": 0.11363636363636363,
+ "selected_interface_frac": 0.7878787878787878,
+ "selected_outside_frac": 0.09848484848484848,
+ "selected_x_range": 0.8958333333333334,
+ "selected_y_range": 0.7395833333333334,
+ "step": 15,
+ "n_elem": 4401,
+ "target_elements": 8000,
+ "gap": 3599,
+ "cutoff_score": 1.2287269830703735,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.8597707748413086,
+ "score_mean": 1.21680931997048e-08,
+ "score_p50": -0.08082917332649231,
+ "score_p90": 0.7635703086853027,
+ "fraction_gt1": 0.05362838915470494,
+ "n_inside": 674,
+ "n_interface": 2996,
+ "n_outside": 1346,
+ "selected_inside_frac": 0.7266666666666667,
+ "selected_interface_frac": 0.24,
+ "selected_outside_frac": 0.03333333333333333,
+ "selected_x_range": 0.9010416666666666,
+ "selected_y_range": 0.6875,
+ "step": 16,
+ "n_elem": 5016,
+ "target_elements": 8000,
+ "gap": 2984,
+ "cutoff_score": 1.340161919593811,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.221863269805908,
+ "score_mean": 0.0,
+ "score_p50": 0.04271458089351654,
+ "score_p90": 0.8888020515441895,
+ "fraction_gt1": 0.07626377470701416,
+ "n_inside": 1108,
+ "n_interface": 3234,
+ "n_outside": 1375,
+ "selected_inside_frac": 0.16374269005847952,
+ "selected_interface_frac": 0.7485380116959064,
+ "selected_outside_frac": 0.08771929824561403,
+ "selected_x_range": 0.890625,
+ "selected_y_range": 0.9322916666666666,
+ "step": 17,
+ "n_elem": 5717,
+ "target_elements": 8000,
+ "gap": 2283,
+ "cutoff_score": 1.286360263824463,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.254946231842041,
+ "score_mean": -1.8271263613200972e-08,
+ "score_p50": -0.30877357721328735,
+ "score_p90": 0.929552435874939,
+ "fraction_gt1": 0.07977847627600658,
+ "n_inside": 1224,
+ "n_interface": 3985,
+ "n_outside": 1472,
+ "selected_inside_frac": 0.035,
+ "selected_interface_frac": 0.645,
+ "selected_outside_frac": 0.32,
+ "selected_x_range": 0.984375,
+ "selected_y_range": 0.828125,
+ "step": 18,
+ "n_elem": 6681,
+ "target_elements": 8000,
+ "gap": 1319,
+ "cutoff_score": 1.2908363342285156,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.294285535812378,
+ "score_mean": 1.572868413290962e-08,
+ "score_p50": -0.286645770072937,
+ "score_p90": 1.0680134296417236,
+ "fraction_gt1": 0.10758922819224327,
+ "n_inside": 1262,
+ "n_interface": 4699,
+ "n_outside": 1800,
+ "selected_inside_frac": 0.012658227848101266,
+ "selected_interface_frac": 0.17721518987341772,
+ "selected_outside_frac": 0.810126582278481,
+ "selected_x_range": 0.953125,
+ "selected_y_range": 0.953125,
+ "step": 19,
+ "n_elem": 7761,
+ "target_elements": 8000,
+ "gap": 239,
+ "cutoff_score": 1.6589202880859375,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 73,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.2729056414803285,
+ "max_err": 0.44702976241772885,
+ "actual_elements": 2096,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.3090137243270874,
+ "score_mean": 0.14738860726356506,
+ "score_p50": 0.1242992952466011,
+ "score_p90": 0.3090137243270874,
+ "fraction_gt1": 0.0,
+ "n_inside": 64,
+ "n_interface": 448,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.37500000000000006,
+ "selected_y_range": 0.375,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.3090137243270874,
+ "num_tied_at_cutoff": 64,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.3090137243270874,
+ "score_mean": 0.13503292202949524,
+ "score_p50": 0.1242992952466011,
+ "score_p90": 0.1545068621635437,
+ "fraction_gt1": 0.0,
+ "n_inside": 132,
+ "n_interface": 496,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.27083333333333326,
+ "step": 1,
+ "n_elem": 628,
+ "target_elements": 2000,
+ "gap": 1372,
+ "cutoff_score": 0.3090137243270874,
+ "num_tied_at_cutoff": 28,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3090137243270874,
+ "score_mean": 0.131012961268425,
+ "score_p50": 0.1242992952466011,
+ "score_p90": 0.1545068621635437,
+ "fraction_gt1": 0.0,
+ "n_inside": 217,
+ "n_interface": 497,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2708333333333333,
+ "selected_y_range": 0.33333333333333337,
+ "step": 2,
+ "n_elem": 714,
+ "target_elements": 2000,
+ "gap": 1286,
+ "cutoff_score": 0.21850569546222687,
+ "num_tied_at_cutoff": 26,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1545068621635437,
+ "score_mean": 0.12271205335855484,
+ "score_p50": 0.1242992952466011,
+ "score_p90": 0.1545068621635437,
+ "fraction_gt1": 0.0,
+ "n_inside": 314,
+ "n_interface": 512,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3854166666666667,
+ "selected_y_range": 0.375,
+ "step": 3,
+ "n_elem": 826,
+ "target_elements": 2000,
+ "gap": 1174,
+ "cutoff_score": 0.1545068621635437,
+ "num_tied_at_cutoff": 187,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1545068621635437,
+ "score_mean": 0.10381288826465607,
+ "score_p50": 0.10925284773111343,
+ "score_p90": 0.1545068621635437,
+ "fraction_gt1": 0.0,
+ "n_inside": 423,
+ "n_interface": 649,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2916666666666667,
+ "selected_y_range": 0.35416666666666674,
+ "step": 4,
+ "n_elem": 1072,
+ "target_elements": 2000,
+ "gap": 928,
+ "cutoff_score": 0.1545068621635437,
+ "num_tied_at_cutoff": 134,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1545068621635437,
+ "score_mean": 0.09624598920345306,
+ "score_p50": 0.10925284773111343,
+ "score_p90": 0.1242992952466011,
+ "fraction_gt1": 0.0,
+ "n_inside": 586,
+ "n_interface": 662,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666669,
+ "selected_y_range": 0.22916666666666674,
+ "step": 5,
+ "n_elem": 1248,
+ "target_elements": 2000,
+ "gap": 752,
+ "cutoff_score": 0.1545068621635437,
+ "num_tied_at_cutoff": 82,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1545068621635437,
+ "score_mean": 0.09107863903045654,
+ "score_p50": 0.07725343108177185,
+ "score_p90": 0.1242992952466011,
+ "fraction_gt1": 0.0,
+ "n_inside": 748,
+ "n_interface": 662,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7142857142857143,
+ "selected_interface_frac": 0.2857142857142857,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.49999999999999994,
+ "selected_y_range": 0.4791666666666667,
+ "step": 6,
+ "n_elem": 1410,
+ "target_elements": 2000,
+ "gap": 590,
+ "cutoff_score": 0.1242992952466011,
+ "num_tied_at_cutoff": 394,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1242992952466011,
+ "score_mean": 0.08583986014127731,
+ "score_p50": 0.07725343108177185,
+ "score_p90": 0.1242992952466011,
+ "fraction_gt1": 0.0,
+ "n_inside": 860,
+ "n_interface": 740,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.5833333333333333,
+ "step": 7,
+ "n_elem": 1600,
+ "target_elements": 2000,
+ "gap": 400,
+ "cutoff_score": 0.1242992952466011,
+ "num_tied_at_cutoff": 364,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1242992952466011,
+ "score_mean": 0.08017721772193909,
+ "score_p50": 0.07725343108177185,
+ "score_p90": 0.1242992952466011,
+ "fraction_gt1": 0.0,
+ "n_inside": 860,
+ "n_interface": 978,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 8,
+ "n_elem": 1838,
+ "target_elements": 2000,
+ "gap": 162,
+ "cutoff_score": 0.1242992952466011,
+ "num_tied_at_cutoff": 274,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 76,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.2530894211022829,
+ "max_err": 0.45149842688532726,
+ "actual_elements": 2086,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9857812523841858,
+ "score_mean": 0.11739721894264221,
+ "score_p50": 3.699250239463936e-09,
+ "score_p90": 0.6463420391082764,
+ "fraction_gt1": 0.0,
+ "n_inside": 64,
+ "n_interface": 448,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.08333333333333326,
+ "selected_y_range": 0.25,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9668589234352112,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9733119606971741,
+ "score_mean": 0.09414129704236984,
+ "score_p50": 3.121696465768764e-07,
+ "score_p90": 0.4699919819831848,
+ "fraction_gt1": 0.0,
+ "n_inside": 129,
+ "n_interface": 463,
+ "n_outside": 0,
+ "selected_inside_frac": 0.6470588235294118,
+ "selected_interface_frac": 0.35294117647058826,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25000000000000006,
+ "selected_y_range": 0.4375,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 2000,
+ "gap": 1408,
+ "cutoff_score": 0.9296187162399292,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9740607142448425,
+ "score_mean": 0.09528718143701553,
+ "score_p50": 3.6347370041767135e-05,
+ "score_p90": 0.37183743715286255,
+ "fraction_gt1": 0.0,
+ "n_inside": 186,
+ "n_interface": 504,
+ "n_outside": 0,
+ "selected_inside_frac": 0.55,
+ "selected_interface_frac": 0.45,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43750000000000006,
+ "selected_y_range": 0.4375,
+ "step": 2,
+ "n_elem": 690,
+ "target_elements": 2000,
+ "gap": 1310,
+ "cutoff_score": 0.8890592455863953,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9814407825469971,
+ "score_mean": 0.13237036764621735,
+ "score_p50": 9.952984692063183e-05,
+ "score_p90": 0.7086402177810669,
+ "fraction_gt1": 0.0,
+ "n_inside": 225,
+ "n_interface": 564,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5217391304347826,
+ "selected_interface_frac": 0.4782608695652174,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43750000000000006,
+ "selected_y_range": 0.49999999999999994,
+ "step": 3,
+ "n_elem": 789,
+ "target_elements": 2000,
+ "gap": 1211,
+ "cutoff_score": 0.9336262941360474,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9869379997253418,
+ "score_mean": 0.13869377970695496,
+ "score_p50": 0.00016350296209566295,
+ "score_p90": 0.679847240447998,
+ "fraction_gt1": 0.0,
+ "n_inside": 302,
+ "n_interface": 622,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7407407407407407,
+ "selected_interface_frac": 0.25925925925925924,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 924,
+ "target_elements": 2000,
+ "gap": 1076,
+ "cutoff_score": 0.9512006640434265,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9823182821273804,
+ "score_mean": 0.13702690601348877,
+ "score_p50": 0.0002364426472922787,
+ "score_p90": 0.6849011182785034,
+ "fraction_gt1": 0.0,
+ "n_inside": 406,
+ "n_interface": 671,
+ "n_outside": 0,
+ "selected_inside_frac": 0.46875,
+ "selected_interface_frac": 0.53125,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.5520833333333333,
+ "step": 5,
+ "n_elem": 1077,
+ "target_elements": 2000,
+ "gap": 923,
+ "cutoff_score": 0.9069168567657471,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9703503847122192,
+ "score_mean": 0.12048543989658356,
+ "score_p50": 0.0005934405489824712,
+ "score_p90": 0.6051807403564453,
+ "fraction_gt1": 0.0,
+ "n_inside": 495,
+ "n_interface": 791,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4473684210526316,
+ "selected_interface_frac": 0.5526315789473685,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5729166666666667,
+ "step": 6,
+ "n_elem": 1286,
+ "target_elements": 2000,
+ "gap": 714,
+ "cutoff_score": 0.8877521753311157,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.983074963092804,
+ "score_mean": 0.11783989518880844,
+ "score_p50": 0.0018065213225781918,
+ "score_p90": 0.5936719179153442,
+ "fraction_gt1": 0.0,
+ "n_inside": 601,
+ "n_interface": 917,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4666666666666667,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.6354166666666667,
+ "step": 7,
+ "n_elem": 1518,
+ "target_elements": 2000,
+ "gap": 482,
+ "cutoff_score": 0.8935209512710571,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.970948338508606,
+ "score_mean": 0.11610009521245956,
+ "score_p50": 0.0035008983686566353,
+ "score_p90": 0.4763472378253937,
+ "fraction_gt1": 0.0,
+ "n_inside": 716,
+ "n_interface": 1062,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3584905660377358,
+ "selected_interface_frac": 0.6415094339622641,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.6770833333333333,
+ "step": 8,
+ "n_elem": 1778,
+ "target_elements": 2000,
+ "gap": 222,
+ "cutoff_score": 0.884097158908844,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 76,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.26796713035620523,
+ "max_err": 0.450699754471091,
+ "actual_elements": 2092,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.879542827606201,
+ "score_mean": -3.725290298461914e-08,
+ "score_p50": -0.3994287848472595,
+ "score_p90": 1.7535487413406372,
+ "fraction_gt1": 0.13671875,
+ "n_inside": 64,
+ "n_interface": 448,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.08333333333333326,
+ "selected_y_range": 0.25,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 2.8456225395202637,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.4806180000305176,
+ "score_mean": -6.443745537154655e-09,
+ "score_p50": -0.35071831941604614,
+ "score_p90": 0.7770808339118958,
+ "fraction_gt1": 0.08952702702702703,
+ "n_inside": 129,
+ "n_interface": 463,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333331,
+ "selected_y_range": 0.375,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 2000,
+ "gap": 1408,
+ "cutoff_score": 3.3593950271606445,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 4.536044120788574,
+ "score_mean": -7.25015567581977e-08,
+ "score_p50": -0.34921616315841675,
+ "score_p90": 1.1272646188735962,
+ "fraction_gt1": 0.10818713450292397,
+ "n_inside": 201,
+ "n_interface": 483,
+ "n_outside": 0,
+ "selected_inside_frac": 0.8,
+ "selected_interface_frac": 0.2,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.38541666666666663,
+ "step": 2,
+ "n_elem": 684,
+ "target_elements": 2000,
+ "gap": 1316,
+ "cutoff_score": 1.6941282749176025,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.717942714691162,
+ "score_mean": -1.6334975327936263e-07,
+ "score_p50": -0.2451097071170807,
+ "score_p90": 1.3043748140335083,
+ "fraction_gt1": 0.13727959697732997,
+ "n_inside": 273,
+ "n_interface": 521,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.30208333333333337,
+ "selected_y_range": 0.26041666666666663,
+ "step": 3,
+ "n_elem": 794,
+ "target_elements": 2000,
+ "gap": 1206,
+ "cutoff_score": 1.7753112316131592,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.180006742477417,
+ "score_mean": 0.0,
+ "score_p50": -0.09572188556194305,
+ "score_p90": 1.3337727785110474,
+ "fraction_gt1": 0.1277533039647577,
+ "n_inside": 381,
+ "n_interface": 527,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3020833333333333,
+ "selected_y_range": 0.1875,
+ "step": 4,
+ "n_elem": 908,
+ "target_elements": 2000,
+ "gap": 1092,
+ "cutoff_score": 1.7790255546569824,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0228700637817383,
+ "score_mean": -7.378524458090396e-08,
+ "score_p50": 0.046917520463466644,
+ "score_p90": 1.4102329015731812,
+ "fraction_gt1": 0.12669245647969052,
+ "n_inside": 488,
+ "n_interface": 546,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7419354838709677,
+ "selected_interface_frac": 0.25806451612903225,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.5,
+ "step": 5,
+ "n_elem": 1034,
+ "target_elements": 2000,
+ "gap": 966,
+ "cutoff_score": 1.6078438758850098,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.320533275604248,
+ "score_mean": -9.956795565813081e-08,
+ "score_p50": -0.041968606412410736,
+ "score_p90": 1.2054526805877686,
+ "fraction_gt1": 0.12153344208809136,
+ "n_inside": 610,
+ "n_interface": 616,
+ "n_outside": 0,
+ "selected_inside_frac": 0.2777777777777778,
+ "selected_interface_frac": 0.7222222222222222,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5625,
+ "step": 6,
+ "n_elem": 1226,
+ "target_elements": 2000,
+ "gap": 774,
+ "cutoff_score": 1.8575564622879028,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5887575149536133,
+ "score_mean": -2.1326050614334235e-07,
+ "score_p50": -0.17104031145572662,
+ "score_p90": 0.9865032434463501,
+ "fraction_gt1": 0.09643605870020965,
+ "n_inside": 664,
+ "n_interface": 767,
+ "n_outside": 0,
+ "selected_inside_frac": 0.2619047619047619,
+ "selected_interface_frac": 0.7380952380952381,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6041666666666667,
+ "step": 7,
+ "n_elem": 1431,
+ "target_elements": 2000,
+ "gap": 569,
+ "cutoff_score": 1.9445083141326904,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.7187440395355225,
+ "score_mean": -7.47064348161075e-08,
+ "score_p50": -0.30172401666641235,
+ "score_p90": 0.9031780362129211,
+ "fraction_gt1": 0.09057527539779682,
+ "n_inside": 724,
+ "n_interface": 910,
+ "n_outside": 0,
+ "selected_inside_frac": 0.40816326530612246,
+ "selected_interface_frac": 0.5918367346938775,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.6979166666666667,
+ "step": 8,
+ "n_elem": 1634,
+ "target_elements": 2000,
+ "gap": 366,
+ "cutoff_score": 1.618833303451538,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.324678659439087,
+ "score_mean": -4.7658893720381457e-08,
+ "score_p50": -0.2739858329296112,
+ "score_p90": 1.0178922414779663,
+ "fraction_gt1": 0.10411244143675169,
+ "n_inside": 842,
+ "n_interface": 1079,
+ "n_outside": 0,
+ "selected_inside_frac": 0.38461538461538464,
+ "selected_interface_frac": 0.6153846153846154,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7604166666666667,
+ "selected_y_range": 0.78125,
+ "step": 9,
+ "n_elem": 1921,
+ "target_elements": 2000,
+ "gap": 79,
+ "cutoff_score": 1.6144464015960693,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 76,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.2561448650254336,
+ "max_err": 0.4472046491989444,
+ "actual_elements": 4076,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.3090137243270874,
+ "score_mean": 0.14738860726356506,
+ "score_p50": 0.1242992952466011,
+ "score_p90": 0.3090137243270874,
+ "fraction_gt1": 0.0,
+ "n_inside": 64,
+ "n_interface": 448,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.37500000000000006,
+ "selected_y_range": 0.375,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.3090137243270874,
+ "num_tied_at_cutoff": 64,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.3090137243270874,
+ "score_mean": 0.13503292202949524,
+ "score_p50": 0.1242992952466011,
+ "score_p90": 0.1545068621635437,
+ "fraction_gt1": 0.0,
+ "n_inside": 132,
+ "n_interface": 496,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.27083333333333326,
+ "step": 1,
+ "n_elem": 628,
+ "target_elements": 4000,
+ "gap": 3372,
+ "cutoff_score": 0.3090137243270874,
+ "num_tied_at_cutoff": 28,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3090137243270874,
+ "score_mean": 0.131012961268425,
+ "score_p50": 0.1242992952466011,
+ "score_p90": 0.1545068621635437,
+ "fraction_gt1": 0.0,
+ "n_inside": 217,
+ "n_interface": 497,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2708333333333333,
+ "selected_y_range": 0.33333333333333337,
+ "step": 2,
+ "n_elem": 714,
+ "target_elements": 4000,
+ "gap": 3286,
+ "cutoff_score": 0.21850569546222687,
+ "num_tied_at_cutoff": 26,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1545068621635437,
+ "score_mean": 0.12271205335855484,
+ "score_p50": 0.1242992952466011,
+ "score_p90": 0.1545068621635437,
+ "fraction_gt1": 0.0,
+ "n_inside": 314,
+ "n_interface": 512,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3854166666666667,
+ "selected_y_range": 0.375,
+ "step": 3,
+ "n_elem": 826,
+ "target_elements": 4000,
+ "gap": 3174,
+ "cutoff_score": 0.1545068621635437,
+ "num_tied_at_cutoff": 187,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1545068621635437,
+ "score_mean": 0.10381288826465607,
+ "score_p50": 0.10925284773111343,
+ "score_p90": 0.1545068621635437,
+ "fraction_gt1": 0.0,
+ "n_inside": 423,
+ "n_interface": 649,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2916666666666667,
+ "selected_y_range": 0.35416666666666674,
+ "step": 4,
+ "n_elem": 1072,
+ "target_elements": 4000,
+ "gap": 2928,
+ "cutoff_score": 0.1545068621635437,
+ "num_tied_at_cutoff": 134,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1545068621635437,
+ "score_mean": 0.09624598920345306,
+ "score_p50": 0.10925284773111343,
+ "score_p90": 0.1242992952466011,
+ "fraction_gt1": 0.0,
+ "n_inside": 586,
+ "n_interface": 662,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666669,
+ "selected_y_range": 0.22916666666666674,
+ "step": 5,
+ "n_elem": 1248,
+ "target_elements": 4000,
+ "gap": 2752,
+ "cutoff_score": 0.1545068621635437,
+ "num_tied_at_cutoff": 82,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1545068621635437,
+ "score_mean": 0.09107863903045654,
+ "score_p50": 0.07725343108177185,
+ "score_p90": 0.1242992952466011,
+ "fraction_gt1": 0.0,
+ "n_inside": 748,
+ "n_interface": 662,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7142857142857143,
+ "selected_interface_frac": 0.2857142857142857,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.49999999999999994,
+ "selected_y_range": 0.4791666666666667,
+ "step": 6,
+ "n_elem": 1410,
+ "target_elements": 4000,
+ "gap": 2590,
+ "cutoff_score": 0.1242992952466011,
+ "num_tied_at_cutoff": 394,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1242992952466011,
+ "score_mean": 0.08583986014127731,
+ "score_p50": 0.07725343108177185,
+ "score_p90": 0.1242992952466011,
+ "fraction_gt1": 0.0,
+ "n_inside": 860,
+ "n_interface": 740,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.5833333333333333,
+ "step": 7,
+ "n_elem": 1600,
+ "target_elements": 4000,
+ "gap": 2400,
+ "cutoff_score": 0.1242992952466011,
+ "num_tied_at_cutoff": 364,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1242992952466011,
+ "score_mean": 0.08017721772193909,
+ "score_p50": 0.07725343108177185,
+ "score_p90": 0.1242992952466011,
+ "fraction_gt1": 0.0,
+ "n_inside": 860,
+ "n_interface": 978,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 8,
+ "n_elem": 1838,
+ "target_elements": 4000,
+ "gap": 2162,
+ "cutoff_score": 0.1242992952466011,
+ "num_tied_at_cutoff": 274,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1242992952466011,
+ "score_mean": 0.07539129257202148,
+ "score_p50": 0.07725343108177185,
+ "score_p90": 0.10925284773111343,
+ "fraction_gt1": 0.0,
+ "n_inside": 860,
+ "n_interface": 1240,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 9,
+ "n_elem": 2100,
+ "target_elements": 4000,
+ "gap": 1900,
+ "cutoff_score": 0.1242992952466011,
+ "num_tied_at_cutoff": 180,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1242992952466011,
+ "score_mean": 0.0714888796210289,
+ "score_p50": 0.06214964762330055,
+ "score_p90": 0.08789287507534027,
+ "fraction_gt1": 0.0,
+ "n_inside": 860,
+ "n_interface": 1514,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.33333333333333337,
+ "step": 10,
+ "n_elem": 2374,
+ "target_elements": 4000,
+ "gap": 1626,
+ "cutoff_score": 0.1242992952466011,
+ "num_tied_at_cutoff": 86,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1242992952466011,
+ "score_mean": 0.06854493916034698,
+ "score_p50": 0.06214964762330055,
+ "score_p90": 0.07725343108177185,
+ "fraction_gt1": 0.0,
+ "n_inside": 860,
+ "n_interface": 1769,
+ "n_outside": 0,
+ "selected_inside_frac": 0.9230769230769231,
+ "selected_interface_frac": 0.07692307692307693,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7447916666666666,
+ "selected_y_range": 0.8854166666666666,
+ "step": 11,
+ "n_elem": 2629,
+ "target_elements": 4000,
+ "gap": 1371,
+ "cutoff_score": 0.10925284773111343,
+ "num_tied_at_cutoff": 138,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10925284773111343,
+ "score_mean": 0.06421095877885818,
+ "score_p50": 0.06214964762330055,
+ "score_p90": 0.07725343108177185,
+ "fraction_gt1": 0.0,
+ "n_inside": 1167,
+ "n_interface": 1840,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5111111111111111,
+ "selected_interface_frac": 0.4888888888888889,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6458333333333334,
+ "step": 12,
+ "n_elem": 3007,
+ "target_elements": 4000,
+ "gap": 993,
+ "cutoff_score": 0.08789287507534027,
+ "num_tied_at_cutoff": 101,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.08789287507534027,
+ "score_mean": 0.06040854752063751,
+ "score_p50": 0.06214964762330055,
+ "score_p90": 0.07725343108177185,
+ "fraction_gt1": 0.0,
+ "n_inside": 1365,
+ "n_interface": 2039,
+ "n_outside": 0,
+ "selected_inside_frac": 0.45098039215686275,
+ "selected_interface_frac": 0.5490196078431373,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3404,
+ "target_elements": 4000,
+ "gap": 596,
+ "cutoff_score": 0.07725343108177185,
+ "num_tied_at_cutoff": 634,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 76,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.24291594897463759,
+ "max_err": 0.4520909371195353,
+ "actual_elements": 4053,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9857812523841858,
+ "score_mean": 0.11739721894264221,
+ "score_p50": 3.699250239463936e-09,
+ "score_p90": 0.6463420391082764,
+ "fraction_gt1": 0.0,
+ "n_inside": 64,
+ "n_interface": 448,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.08333333333333326,
+ "selected_y_range": 0.25,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9668589234352112,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9733119606971741,
+ "score_mean": 0.09414129704236984,
+ "score_p50": 3.121696465768764e-07,
+ "score_p90": 0.4699919819831848,
+ "fraction_gt1": 0.0,
+ "n_inside": 129,
+ "n_interface": 463,
+ "n_outside": 0,
+ "selected_inside_frac": 0.6470588235294118,
+ "selected_interface_frac": 0.35294117647058826,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25000000000000006,
+ "selected_y_range": 0.4375,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 4000,
+ "gap": 3408,
+ "cutoff_score": 0.9296187162399292,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9740607142448425,
+ "score_mean": 0.09528718143701553,
+ "score_p50": 3.6347370041767135e-05,
+ "score_p90": 0.37183743715286255,
+ "fraction_gt1": 0.0,
+ "n_inside": 186,
+ "n_interface": 504,
+ "n_outside": 0,
+ "selected_inside_frac": 0.55,
+ "selected_interface_frac": 0.45,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43750000000000006,
+ "selected_y_range": 0.4375,
+ "step": 2,
+ "n_elem": 690,
+ "target_elements": 4000,
+ "gap": 3310,
+ "cutoff_score": 0.8890592455863953,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9814407825469971,
+ "score_mean": 0.13237036764621735,
+ "score_p50": 9.952984692063183e-05,
+ "score_p90": 0.7086402177810669,
+ "fraction_gt1": 0.0,
+ "n_inside": 225,
+ "n_interface": 564,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5217391304347826,
+ "selected_interface_frac": 0.4782608695652174,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43750000000000006,
+ "selected_y_range": 0.49999999999999994,
+ "step": 3,
+ "n_elem": 789,
+ "target_elements": 4000,
+ "gap": 3211,
+ "cutoff_score": 0.9336262941360474,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9869379997253418,
+ "score_mean": 0.13869377970695496,
+ "score_p50": 0.00016350296209566295,
+ "score_p90": 0.679847240447998,
+ "fraction_gt1": 0.0,
+ "n_inside": 302,
+ "n_interface": 622,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7407407407407407,
+ "selected_interface_frac": 0.25925925925925924,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 924,
+ "target_elements": 4000,
+ "gap": 3076,
+ "cutoff_score": 0.9512006640434265,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9823182821273804,
+ "score_mean": 0.13702690601348877,
+ "score_p50": 0.0002364426472922787,
+ "score_p90": 0.6849011182785034,
+ "fraction_gt1": 0.0,
+ "n_inside": 406,
+ "n_interface": 671,
+ "n_outside": 0,
+ "selected_inside_frac": 0.46875,
+ "selected_interface_frac": 0.53125,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.5520833333333333,
+ "step": 5,
+ "n_elem": 1077,
+ "target_elements": 4000,
+ "gap": 2923,
+ "cutoff_score": 0.9069168567657471,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9703503847122192,
+ "score_mean": 0.12048543989658356,
+ "score_p50": 0.0005934405489824712,
+ "score_p90": 0.6051807403564453,
+ "fraction_gt1": 0.0,
+ "n_inside": 495,
+ "n_interface": 791,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4473684210526316,
+ "selected_interface_frac": 0.5526315789473685,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5729166666666667,
+ "step": 6,
+ "n_elem": 1286,
+ "target_elements": 4000,
+ "gap": 2714,
+ "cutoff_score": 0.8877521753311157,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.983074963092804,
+ "score_mean": 0.11783989518880844,
+ "score_p50": 0.0018065213225781918,
+ "score_p90": 0.5936719179153442,
+ "fraction_gt1": 0.0,
+ "n_inside": 601,
+ "n_interface": 917,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4666666666666667,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.6354166666666667,
+ "step": 7,
+ "n_elem": 1518,
+ "target_elements": 4000,
+ "gap": 2482,
+ "cutoff_score": 0.8935209512710571,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.970948338508606,
+ "score_mean": 0.11610009521245956,
+ "score_p50": 0.0035008983686566353,
+ "score_p90": 0.4763472378253937,
+ "fraction_gt1": 0.0,
+ "n_inside": 716,
+ "n_interface": 1062,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3584905660377358,
+ "selected_interface_frac": 0.6415094339622641,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.6770833333333333,
+ "step": 8,
+ "n_elem": 1778,
+ "target_elements": 4000,
+ "gap": 2222,
+ "cutoff_score": 0.884097158908844,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9618964195251465,
+ "score_mean": 0.1355159729719162,
+ "score_p50": 0.004652470350265503,
+ "score_p90": 0.5715392827987671,
+ "fraction_gt1": 0.0,
+ "n_inside": 829,
+ "n_interface": 1257,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3225806451612903,
+ "selected_interface_frac": 0.6774193548387096,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.7604166666666667,
+ "step": 9,
+ "n_elem": 2086,
+ "target_elements": 4000,
+ "gap": 1914,
+ "cutoff_score": 0.8203967213630676,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9683687090873718,
+ "score_mean": 0.16122248768806458,
+ "score_p50": 0.004811770748347044,
+ "score_p90": 0.6773361563682556,
+ "fraction_gt1": 0.0,
+ "n_inside": 958,
+ "n_interface": 1477,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4931506849315068,
+ "selected_interface_frac": 0.5068493150684932,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8125,
+ "step": 10,
+ "n_elem": 2435,
+ "target_elements": 4000,
+ "gap": 1565,
+ "cutoff_score": 0.8705449104309082,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.991371750831604,
+ "score_mean": 0.18030710518360138,
+ "score_p50": 0.005456141196191311,
+ "score_p90": 0.7246991395950317,
+ "fraction_gt1": 0.0,
+ "n_inside": 1177,
+ "n_interface": 1701,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3953488372093023,
+ "selected_interface_frac": 0.6046511627906976,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.875,
+ "step": 11,
+ "n_elem": 2878,
+ "target_elements": 4000,
+ "gap": 1122,
+ "cutoff_score": 0.8929303884506226,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9610725045204163,
+ "score_mean": 0.1734645813703537,
+ "score_p50": 0.0028782454319298267,
+ "score_p90": 0.7440385818481445,
+ "fraction_gt1": 0.0,
+ "n_inside": 1378,
+ "n_interface": 1991,
+ "n_outside": 0,
+ "selected_inside_frac": 0.22772277227722773,
+ "selected_interface_frac": 0.7722772277227723,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 12,
+ "n_elem": 3369,
+ "target_elements": 4000,
+ "gap": 631,
+ "cutoff_score": 0.8809709548950195,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9736518859863281,
+ "score_mean": 0.1621973216533661,
+ "score_p50": 0.0029904437251389027,
+ "score_p90": 0.7197805047035217,
+ "fraction_gt1": 0.0,
+ "n_inside": 1529,
+ "n_interface": 2424,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4,
+ "selected_interface_frac": 0.6,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4322916666666667,
+ "selected_y_range": 0.7760416666666666,
+ "step": 13,
+ "n_elem": 3953,
+ "target_elements": 4000,
+ "gap": 47,
+ "cutoff_score": 0.9448257684707642,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 76,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.25566714051309636,
+ "max_err": 0.45166447369041895,
+ "actual_elements": 4099,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.879542827606201,
+ "score_mean": -3.725290298461914e-08,
+ "score_p50": -0.3994287848472595,
+ "score_p90": 1.7535487413406372,
+ "fraction_gt1": 0.13671875,
+ "n_inside": 64,
+ "n_interface": 448,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.08333333333333326,
+ "selected_y_range": 0.25,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 2.8456225395202637,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.4806180000305176,
+ "score_mean": -6.443745537154655e-09,
+ "score_p50": -0.35071831941604614,
+ "score_p90": 0.7770808339118958,
+ "fraction_gt1": 0.08952702702702703,
+ "n_inside": 129,
+ "n_interface": 463,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333331,
+ "selected_y_range": 0.375,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 4000,
+ "gap": 3408,
+ "cutoff_score": 3.3593950271606445,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 4.536044120788574,
+ "score_mean": -7.25015567581977e-08,
+ "score_p50": -0.34921616315841675,
+ "score_p90": 1.1272646188735962,
+ "fraction_gt1": 0.10818713450292397,
+ "n_inside": 201,
+ "n_interface": 483,
+ "n_outside": 0,
+ "selected_inside_frac": 0.8,
+ "selected_interface_frac": 0.2,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.38541666666666663,
+ "step": 2,
+ "n_elem": 684,
+ "target_elements": 4000,
+ "gap": 3316,
+ "cutoff_score": 1.6941282749176025,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.717942714691162,
+ "score_mean": -1.6334975327936263e-07,
+ "score_p50": -0.2451097071170807,
+ "score_p90": 1.3043748140335083,
+ "fraction_gt1": 0.13727959697732997,
+ "n_inside": 273,
+ "n_interface": 521,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.30208333333333337,
+ "selected_y_range": 0.26041666666666663,
+ "step": 3,
+ "n_elem": 794,
+ "target_elements": 4000,
+ "gap": 3206,
+ "cutoff_score": 1.7753112316131592,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.180006742477417,
+ "score_mean": 0.0,
+ "score_p50": -0.09572188556194305,
+ "score_p90": 1.3337727785110474,
+ "fraction_gt1": 0.1277533039647577,
+ "n_inside": 381,
+ "n_interface": 527,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3020833333333333,
+ "selected_y_range": 0.1875,
+ "step": 4,
+ "n_elem": 908,
+ "target_elements": 4000,
+ "gap": 3092,
+ "cutoff_score": 1.7790255546569824,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0228700637817383,
+ "score_mean": -7.378524458090396e-08,
+ "score_p50": 0.046917520463466644,
+ "score_p90": 1.4102329015731812,
+ "fraction_gt1": 0.12669245647969052,
+ "n_inside": 488,
+ "n_interface": 546,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7419354838709677,
+ "selected_interface_frac": 0.25806451612903225,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.5,
+ "step": 5,
+ "n_elem": 1034,
+ "target_elements": 4000,
+ "gap": 2966,
+ "cutoff_score": 1.6078438758850098,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.320533275604248,
+ "score_mean": -9.956795565813081e-08,
+ "score_p50": -0.041968606412410736,
+ "score_p90": 1.2054526805877686,
+ "fraction_gt1": 0.12153344208809136,
+ "n_inside": 610,
+ "n_interface": 616,
+ "n_outside": 0,
+ "selected_inside_frac": 0.2777777777777778,
+ "selected_interface_frac": 0.7222222222222222,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5625,
+ "step": 6,
+ "n_elem": 1226,
+ "target_elements": 4000,
+ "gap": 2774,
+ "cutoff_score": 1.8575564622879028,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5887575149536133,
+ "score_mean": -2.1326050614334235e-07,
+ "score_p50": -0.17104031145572662,
+ "score_p90": 0.9865032434463501,
+ "fraction_gt1": 0.09643605870020965,
+ "n_inside": 664,
+ "n_interface": 767,
+ "n_outside": 0,
+ "selected_inside_frac": 0.2619047619047619,
+ "selected_interface_frac": 0.7380952380952381,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6041666666666667,
+ "step": 7,
+ "n_elem": 1431,
+ "target_elements": 4000,
+ "gap": 2569,
+ "cutoff_score": 1.9445083141326904,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.7187440395355225,
+ "score_mean": -7.47064348161075e-08,
+ "score_p50": -0.30172401666641235,
+ "score_p90": 0.9031780362129211,
+ "fraction_gt1": 0.09057527539779682,
+ "n_inside": 724,
+ "n_interface": 910,
+ "n_outside": 0,
+ "selected_inside_frac": 0.40816326530612246,
+ "selected_interface_frac": 0.5918367346938775,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.6979166666666667,
+ "step": 8,
+ "n_elem": 1634,
+ "target_elements": 4000,
+ "gap": 2366,
+ "cutoff_score": 1.618833303451538,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.324678659439087,
+ "score_mean": -4.7658893720381457e-08,
+ "score_p50": -0.2739858329296112,
+ "score_p90": 1.0178922414779663,
+ "fraction_gt1": 0.10411244143675169,
+ "n_inside": 842,
+ "n_interface": 1079,
+ "n_outside": 0,
+ "selected_inside_frac": 0.42105263157894735,
+ "selected_interface_frac": 0.5789473684210527,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.8229166666666667,
+ "step": 9,
+ "n_elem": 1921,
+ "target_elements": 4000,
+ "gap": 2079,
+ "cutoff_score": 1.318751335144043,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2499608993530273,
+ "score_mean": 1.0759833912743488e-07,
+ "score_p50": -0.1840345561504364,
+ "score_p90": 1.0814533233642578,
+ "fraction_gt1": 0.1375055090348171,
+ "n_inside": 1008,
+ "n_interface": 1261,
+ "n_outside": 0,
+ "selected_inside_frac": 0.17647058823529413,
+ "selected_interface_frac": 0.8235294117647058,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9375,
+ "step": 10,
+ "n_elem": 2269,
+ "target_elements": 4000,
+ "gap": 1731,
+ "cutoff_score": 1.4862041473388672,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4479689598083496,
+ "score_mean": 1.1630174867605092e-07,
+ "score_p50": -0.05455033481121063,
+ "score_p90": 1.1397658586502075,
+ "fraction_gt1": 0.11166158536585366,
+ "n_inside": 1089,
+ "n_interface": 1535,
+ "n_outside": 0,
+ "selected_inside_frac": 0.38461538461538464,
+ "selected_interface_frac": 0.6153846153846154,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8854166666666666,
+ "selected_y_range": 0.859375,
+ "step": 11,
+ "n_elem": 2624,
+ "target_elements": 4000,
+ "gap": 1376,
+ "cutoff_score": 1.3929307460784912,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3521595001220703,
+ "score_mean": 6.059082124920678e-08,
+ "score_p50": -0.3600511848926544,
+ "score_p90": 1.0176856517791748,
+ "fraction_gt1": 0.11978821972203839,
+ "n_inside": 1255,
+ "n_interface": 1767,
+ "n_outside": 0,
+ "selected_inside_frac": 0.6,
+ "selected_interface_frac": 0.4,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.96875,
+ "step": 12,
+ "n_elem": 3022,
+ "target_elements": 4000,
+ "gap": 978,
+ "cutoff_score": 1.5042452812194824,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2413854598999023,
+ "score_mean": -1.6019725990190636e-07,
+ "score_p50": -0.21007221937179565,
+ "score_p90": 1.167527437210083,
+ "fraction_gt1": 0.1280256634587343,
+ "n_inside": 1499,
+ "n_interface": 1930,
+ "n_outside": 0,
+ "selected_inside_frac": 0.9215686274509803,
+ "selected_interface_frac": 0.0784313725490196,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.6666666666666667,
+ "step": 13,
+ "n_elem": 3429,
+ "target_elements": 4000,
+ "gap": 571,
+ "cutoff_score": 1.5720136165618896,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2338547706604004,
+ "score_mean": -1.5602033442974061e-07,
+ "score_p50": -0.04430583119392395,
+ "score_p90": 1.2070447206497192,
+ "fraction_gt1": 0.12704498977505113,
+ "n_inside": 1913,
+ "n_interface": 1999,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7931034482758621,
+ "selected_interface_frac": 0.20689655172413793,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.625,
+ "step": 14,
+ "n_elem": 3912,
+ "target_elements": 4000,
+ "gap": 88,
+ "cutoff_score": 1.8146440982818604,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 76,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.2502998882109489,
+ "max_err": 0.45367003591613364,
+ "actual_elements": 8086,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.3090137243270874,
+ "score_mean": 0.14738860726356506,
+ "score_p50": 0.1242992952466011,
+ "score_p90": 0.3090137243270874,
+ "fraction_gt1": 0.0,
+ "n_inside": 64,
+ "n_interface": 448,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.37500000000000006,
+ "selected_y_range": 0.375,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.3090137243270874,
+ "num_tied_at_cutoff": 64,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.3090137243270874,
+ "score_mean": 0.13503292202949524,
+ "score_p50": 0.1242992952466011,
+ "score_p90": 0.1545068621635437,
+ "fraction_gt1": 0.0,
+ "n_inside": 132,
+ "n_interface": 496,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.27083333333333326,
+ "step": 1,
+ "n_elem": 628,
+ "target_elements": 8000,
+ "gap": 7372,
+ "cutoff_score": 0.3090137243270874,
+ "num_tied_at_cutoff": 28,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.3090137243270874,
+ "score_mean": 0.131012961268425,
+ "score_p50": 0.1242992952466011,
+ "score_p90": 0.1545068621635437,
+ "fraction_gt1": 0.0,
+ "n_inside": 217,
+ "n_interface": 497,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2708333333333333,
+ "selected_y_range": 0.33333333333333337,
+ "step": 2,
+ "n_elem": 714,
+ "target_elements": 8000,
+ "gap": 7286,
+ "cutoff_score": 0.21850569546222687,
+ "num_tied_at_cutoff": 26,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1545068621635437,
+ "score_mean": 0.12271205335855484,
+ "score_p50": 0.1242992952466011,
+ "score_p90": 0.1545068621635437,
+ "fraction_gt1": 0.0,
+ "n_inside": 314,
+ "n_interface": 512,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3854166666666667,
+ "selected_y_range": 0.375,
+ "step": 3,
+ "n_elem": 826,
+ "target_elements": 8000,
+ "gap": 7174,
+ "cutoff_score": 0.1545068621635437,
+ "num_tied_at_cutoff": 187,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1545068621635437,
+ "score_mean": 0.10381288826465607,
+ "score_p50": 0.10925284773111343,
+ "score_p90": 0.1545068621635437,
+ "fraction_gt1": 0.0,
+ "n_inside": 423,
+ "n_interface": 649,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2916666666666667,
+ "selected_y_range": 0.35416666666666674,
+ "step": 4,
+ "n_elem": 1072,
+ "target_elements": 8000,
+ "gap": 6928,
+ "cutoff_score": 0.1545068621635437,
+ "num_tied_at_cutoff": 134,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1545068621635437,
+ "score_mean": 0.09624598920345306,
+ "score_p50": 0.10925284773111343,
+ "score_p90": 0.1242992952466011,
+ "fraction_gt1": 0.0,
+ "n_inside": 586,
+ "n_interface": 662,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19791666666666669,
+ "selected_y_range": 0.22916666666666674,
+ "step": 5,
+ "n_elem": 1248,
+ "target_elements": 8000,
+ "gap": 6752,
+ "cutoff_score": 0.1545068621635437,
+ "num_tied_at_cutoff": 82,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1545068621635437,
+ "score_mean": 0.09107863903045654,
+ "score_p50": 0.07725343108177185,
+ "score_p90": 0.1242992952466011,
+ "fraction_gt1": 0.0,
+ "n_inside": 748,
+ "n_interface": 662,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7142857142857143,
+ "selected_interface_frac": 0.2857142857142857,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.49999999999999994,
+ "selected_y_range": 0.4791666666666667,
+ "step": 6,
+ "n_elem": 1410,
+ "target_elements": 8000,
+ "gap": 6590,
+ "cutoff_score": 0.1242992952466011,
+ "num_tied_at_cutoff": 394,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1242992952466011,
+ "score_mean": 0.08583986014127731,
+ "score_p50": 0.07725343108177185,
+ "score_p90": 0.1242992952466011,
+ "fraction_gt1": 0.0,
+ "n_inside": 860,
+ "n_interface": 740,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.5833333333333333,
+ "step": 7,
+ "n_elem": 1600,
+ "target_elements": 8000,
+ "gap": 6400,
+ "cutoff_score": 0.1242992952466011,
+ "num_tied_at_cutoff": 364,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1242992952466011,
+ "score_mean": 0.08017721772193909,
+ "score_p50": 0.07725343108177185,
+ "score_p90": 0.1242992952466011,
+ "fraction_gt1": 0.0,
+ "n_inside": 860,
+ "n_interface": 978,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 8,
+ "n_elem": 1838,
+ "target_elements": 8000,
+ "gap": 6162,
+ "cutoff_score": 0.1242992952466011,
+ "num_tied_at_cutoff": 274,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1242992952466011,
+ "score_mean": 0.07539129257202148,
+ "score_p50": 0.07725343108177185,
+ "score_p90": 0.10925284773111343,
+ "fraction_gt1": 0.0,
+ "n_inside": 860,
+ "n_interface": 1240,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 9,
+ "n_elem": 2100,
+ "target_elements": 8000,
+ "gap": 5900,
+ "cutoff_score": 0.1242992952466011,
+ "num_tied_at_cutoff": 180,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1242992952466011,
+ "score_mean": 0.0714888796210289,
+ "score_p50": 0.06214964762330055,
+ "score_p90": 0.08789287507534027,
+ "fraction_gt1": 0.0,
+ "n_inside": 860,
+ "n_interface": 1514,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.33333333333333337,
+ "step": 10,
+ "n_elem": 2374,
+ "target_elements": 8000,
+ "gap": 5626,
+ "cutoff_score": 0.1242992952466011,
+ "num_tied_at_cutoff": 86,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.1242992952466011,
+ "score_mean": 0.06854493916034698,
+ "score_p50": 0.06214964762330055,
+ "score_p90": 0.07725343108177185,
+ "fraction_gt1": 0.0,
+ "n_inside": 860,
+ "n_interface": 1769,
+ "n_outside": 0,
+ "selected_inside_frac": 0.9230769230769231,
+ "selected_interface_frac": 0.07692307692307693,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7447916666666666,
+ "selected_y_range": 0.8854166666666666,
+ "step": 11,
+ "n_elem": 2629,
+ "target_elements": 8000,
+ "gap": 5371,
+ "cutoff_score": 0.10925284773111343,
+ "num_tied_at_cutoff": 138,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.10925284773111343,
+ "score_mean": 0.06421095877885818,
+ "score_p50": 0.06214964762330055,
+ "score_p90": 0.07725343108177185,
+ "fraction_gt1": 0.0,
+ "n_inside": 1167,
+ "n_interface": 1840,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5111111111111111,
+ "selected_interface_frac": 0.4888888888888889,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6458333333333334,
+ "step": 12,
+ "n_elem": 3007,
+ "target_elements": 8000,
+ "gap": 4993,
+ "cutoff_score": 0.08789287507534027,
+ "num_tied_at_cutoff": 101,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.08789287507534027,
+ "score_mean": 0.06040854752063751,
+ "score_p50": 0.06214964762330055,
+ "score_p90": 0.07725343108177185,
+ "fraction_gt1": 0.0,
+ "n_inside": 1365,
+ "n_interface": 2039,
+ "n_outside": 0,
+ "selected_inside_frac": 0.45098039215686275,
+ "selected_interface_frac": 0.5490196078431373,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3404,
+ "target_elements": 8000,
+ "gap": 4596,
+ "cutoff_score": 0.07725343108177185,
+ "num_tied_at_cutoff": 634,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.07725343108177185,
+ "score_mean": 0.054336532950401306,
+ "score_p50": 0.05462642386555672,
+ "score_p90": 0.07725343108177185,
+ "fraction_gt1": 0.0,
+ "n_inside": 1582,
+ "n_interface": 2494,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.38020833333333326,
+ "step": 14,
+ "n_elem": 4076,
+ "target_elements": 8000,
+ "gap": 3924,
+ "cutoff_score": 0.07725343108177185,
+ "num_tied_at_cutoff": 533,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.07725343108177185,
+ "score_mean": 0.05081266164779663,
+ "score_p50": 0.05462642386555672,
+ "score_p90": 0.06214964762330055,
+ "fraction_gt1": 0.0,
+ "n_inside": 2111,
+ "n_interface": 2523,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2708333333333333,
+ "selected_y_range": 0.28645833333333326,
+ "step": 15,
+ "n_elem": 4634,
+ "target_elements": 8000,
+ "gap": 3366,
+ "cutoff_score": 0.07725343108177185,
+ "num_tied_at_cutoff": 366,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.07725343108177185,
+ "score_mean": 0.048075370490550995,
+ "score_p50": 0.043946437537670135,
+ "score_p90": 0.06214964762330055,
+ "fraction_gt1": 0.0,
+ "n_inside": 2675,
+ "n_interface": 2523,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.19270833333333331,
+ "selected_y_range": 0.19270833333333326,
+ "step": 16,
+ "n_elem": 5198,
+ "target_elements": 8000,
+ "gap": 2802,
+ "cutoff_score": 0.07725343108177185,
+ "num_tied_at_cutoff": 188,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.07725343108177185,
+ "score_mean": 0.04581436514854431,
+ "score_p50": 0.038626715540885925,
+ "score_p90": 0.06214964762330055,
+ "fraction_gt1": 0.0,
+ "n_inside": 3253,
+ "n_interface": 2523,
+ "n_outside": 0,
+ "selected_inside_frac": 0.06936416184971098,
+ "selected_interface_frac": 0.930635838150289,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5729166666666667,
+ "selected_y_range": 0.53125,
+ "step": 17,
+ "n_elem": 5776,
+ "target_elements": 8000,
+ "gap": 2224,
+ "cutoff_score": 0.06214964762330055,
+ "num_tied_at_cutoff": 1342,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.06214964762330055,
+ "score_mean": 0.04311563819646835,
+ "score_p50": 0.038626715540885925,
+ "score_p90": 0.06214964762330055,
+ "fraction_gt1": 0.0,
+ "n_inside": 3299,
+ "n_interface": 3185,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.6354166666666667,
+ "step": 18,
+ "n_elem": 6484,
+ "target_elements": 8000,
+ "gap": 1516,
+ "cutoff_score": 0.06214964762330055,
+ "num_tied_at_cutoff": 1112,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.06214964762330055,
+ "score_mean": 0.04069391265511513,
+ "score_p50": 0.038626715540885925,
+ "score_p90": 0.06214964762330055,
+ "fraction_gt1": 0.0,
+ "n_inside": 3299,
+ "n_interface": 3969,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8854166666666667,
+ "selected_y_range": 0.7604166666666667,
+ "step": 19,
+ "n_elem": 7268,
+ "target_elements": 8000,
+ "gap": 732,
+ "cutoff_score": 0.06214964762330055,
+ "num_tied_at_cutoff": 856,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 76,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.24534260603407348,
+ "max_err": 0.45485603710673683,
+ "actual_elements": 8358,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9857812523841858,
+ "score_mean": 0.11739721894264221,
+ "score_p50": 3.699250239463936e-09,
+ "score_p90": 0.6463420391082764,
+ "fraction_gt1": 0.0,
+ "n_inside": 64,
+ "n_interface": 448,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.08333333333333326,
+ "selected_y_range": 0.25,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9668589234352112,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9733119606971741,
+ "score_mean": 0.09414129704236984,
+ "score_p50": 3.121696465768764e-07,
+ "score_p90": 0.4699919819831848,
+ "fraction_gt1": 0.0,
+ "n_inside": 129,
+ "n_interface": 463,
+ "n_outside": 0,
+ "selected_inside_frac": 0.6470588235294118,
+ "selected_interface_frac": 0.35294117647058826,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.25000000000000006,
+ "selected_y_range": 0.4375,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 8000,
+ "gap": 7408,
+ "cutoff_score": 0.9296187162399292,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9740607142448425,
+ "score_mean": 0.09528718143701553,
+ "score_p50": 3.6347370041767135e-05,
+ "score_p90": 0.37183743715286255,
+ "fraction_gt1": 0.0,
+ "n_inside": 186,
+ "n_interface": 504,
+ "n_outside": 0,
+ "selected_inside_frac": 0.55,
+ "selected_interface_frac": 0.45,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43750000000000006,
+ "selected_y_range": 0.4375,
+ "step": 2,
+ "n_elem": 690,
+ "target_elements": 8000,
+ "gap": 7310,
+ "cutoff_score": 0.8890592455863953,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9814407825469971,
+ "score_mean": 0.13237036764621735,
+ "score_p50": 9.952984692063183e-05,
+ "score_p90": 0.7086402177810669,
+ "fraction_gt1": 0.0,
+ "n_inside": 225,
+ "n_interface": 564,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5217391304347826,
+ "selected_interface_frac": 0.4782608695652174,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.43750000000000006,
+ "selected_y_range": 0.49999999999999994,
+ "step": 3,
+ "n_elem": 789,
+ "target_elements": 8000,
+ "gap": 7211,
+ "cutoff_score": 0.9336262941360474,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9869379997253418,
+ "score_mean": 0.13869377970695496,
+ "score_p50": 0.00016350296209566295,
+ "score_p90": 0.679847240447998,
+ "fraction_gt1": 0.0,
+ "n_inside": 302,
+ "n_interface": 622,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7407407407407407,
+ "selected_interface_frac": 0.25925925925925924,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 924,
+ "target_elements": 8000,
+ "gap": 7076,
+ "cutoff_score": 0.9512006640434265,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9823182821273804,
+ "score_mean": 0.13702690601348877,
+ "score_p50": 0.0002364426472922787,
+ "score_p90": 0.6849011182785034,
+ "fraction_gt1": 0.0,
+ "n_inside": 406,
+ "n_interface": 671,
+ "n_outside": 0,
+ "selected_inside_frac": 0.46875,
+ "selected_interface_frac": 0.53125,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.5520833333333333,
+ "step": 5,
+ "n_elem": 1077,
+ "target_elements": 8000,
+ "gap": 6923,
+ "cutoff_score": 0.9069168567657471,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9703503847122192,
+ "score_mean": 0.12048543989658356,
+ "score_p50": 0.0005934405489824712,
+ "score_p90": 0.6051807403564453,
+ "fraction_gt1": 0.0,
+ "n_inside": 495,
+ "n_interface": 791,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4473684210526316,
+ "selected_interface_frac": 0.5526315789473685,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5729166666666667,
+ "step": 6,
+ "n_elem": 1286,
+ "target_elements": 8000,
+ "gap": 6714,
+ "cutoff_score": 0.8877521753311157,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.983074963092804,
+ "score_mean": 0.11783989518880844,
+ "score_p50": 0.0018065213225781918,
+ "score_p90": 0.5936719179153442,
+ "fraction_gt1": 0.0,
+ "n_inside": 601,
+ "n_interface": 917,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4666666666666667,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.6354166666666667,
+ "step": 7,
+ "n_elem": 1518,
+ "target_elements": 8000,
+ "gap": 6482,
+ "cutoff_score": 0.8935209512710571,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.970948338508606,
+ "score_mean": 0.11610009521245956,
+ "score_p50": 0.0035008983686566353,
+ "score_p90": 0.4763472378253937,
+ "fraction_gt1": 0.0,
+ "n_inside": 716,
+ "n_interface": 1062,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3584905660377358,
+ "selected_interface_frac": 0.6415094339622641,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.6770833333333333,
+ "step": 8,
+ "n_elem": 1778,
+ "target_elements": 8000,
+ "gap": 6222,
+ "cutoff_score": 0.884097158908844,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9618964195251465,
+ "score_mean": 0.1355159729719162,
+ "score_p50": 0.004652470350265503,
+ "score_p90": 0.5715392827987671,
+ "fraction_gt1": 0.0,
+ "n_inside": 829,
+ "n_interface": 1257,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3225806451612903,
+ "selected_interface_frac": 0.6774193548387096,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.7604166666666667,
+ "step": 9,
+ "n_elem": 2086,
+ "target_elements": 8000,
+ "gap": 5914,
+ "cutoff_score": 0.8203967213630676,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9683687090873718,
+ "score_mean": 0.16122248768806458,
+ "score_p50": 0.004811770748347044,
+ "score_p90": 0.6773361563682556,
+ "fraction_gt1": 0.0,
+ "n_inside": 958,
+ "n_interface": 1477,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4931506849315068,
+ "selected_interface_frac": 0.5068493150684932,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8125,
+ "step": 10,
+ "n_elem": 2435,
+ "target_elements": 8000,
+ "gap": 5565,
+ "cutoff_score": 0.8705449104309082,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.991371750831604,
+ "score_mean": 0.18030710518360138,
+ "score_p50": 0.005456141196191311,
+ "score_p90": 0.7246991395950317,
+ "fraction_gt1": 0.0,
+ "n_inside": 1177,
+ "n_interface": 1701,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3953488372093023,
+ "selected_interface_frac": 0.6046511627906976,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.875,
+ "step": 11,
+ "n_elem": 2878,
+ "target_elements": 8000,
+ "gap": 5122,
+ "cutoff_score": 0.8929303884506226,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9610725045204163,
+ "score_mean": 0.1734645813703537,
+ "score_p50": 0.0028782454319298267,
+ "score_p90": 0.7440385818481445,
+ "fraction_gt1": 0.0,
+ "n_inside": 1378,
+ "n_interface": 1991,
+ "n_outside": 0,
+ "selected_inside_frac": 0.22772277227722773,
+ "selected_interface_frac": 0.7722772277227723,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 12,
+ "n_elem": 3369,
+ "target_elements": 8000,
+ "gap": 4631,
+ "cutoff_score": 0.8809709548950195,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9736518859863281,
+ "score_mean": 0.1621973216533661,
+ "score_p50": 0.0029904437251389027,
+ "score_p90": 0.7197805047035217,
+ "fraction_gt1": 0.0,
+ "n_inside": 1529,
+ "n_interface": 2424,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4661016949152542,
+ "selected_interface_frac": 0.5338983050847458,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.953125,
+ "step": 13,
+ "n_elem": 3953,
+ "target_elements": 8000,
+ "gap": 4047,
+ "cutoff_score": 0.876388430595398,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.979233980178833,
+ "score_mean": 0.15156209468841553,
+ "score_p50": 0.003089478937909007,
+ "score_p90": 0.6903964877128601,
+ "fraction_gt1": 0.0,
+ "n_inside": 1852,
+ "n_interface": 2801,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3237410071942446,
+ "selected_interface_frac": 0.6762589928057554,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9739583333333333,
+ "selected_y_range": 0.9114583333333333,
+ "step": 14,
+ "n_elem": 4653,
+ "target_elements": 8000,
+ "gap": 3347,
+ "cutoff_score": 0.867319643497467,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9824219346046448,
+ "score_mean": 0.1545717567205429,
+ "score_p50": 0.0033385250717401505,
+ "score_p90": 0.679088294506073,
+ "fraction_gt1": 0.0,
+ "n_inside": 2159,
+ "n_interface": 3321,
+ "n_outside": 0,
+ "selected_inside_frac": 0.49390243902439024,
+ "selected_interface_frac": 0.5060975609756098,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9739583333333333,
+ "step": 15,
+ "n_elem": 5480,
+ "target_elements": 8000,
+ "gap": 2520,
+ "cutoff_score": 0.8575153350830078,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9788692593574524,
+ "score_mean": 0.15513531863689423,
+ "score_p50": 0.0036660695914179087,
+ "score_p90": 0.6927449703216553,
+ "fraction_gt1": 0.0,
+ "n_inside": 2657,
+ "n_interface": 3802,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3626943005181347,
+ "selected_interface_frac": 0.6373056994818653,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8385416666666666,
+ "selected_y_range": 0.953125,
+ "step": 16,
+ "n_elem": 6459,
+ "target_elements": 8000,
+ "gap": 1541,
+ "cutoff_score": 0.8471768498420715,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9800488948822021,
+ "score_mean": 0.1569761335849762,
+ "score_p50": 0.004589964635670185,
+ "score_p90": 0.6966399550437927,
+ "fraction_gt1": 0.0,
+ "n_inside": 3136,
+ "n_interface": 4507,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5546218487394958,
+ "selected_interface_frac": 0.44537815126050423,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.703125,
+ "step": 17,
+ "n_elem": 7643,
+ "target_elements": 8000,
+ "gap": 357,
+ "cutoff_score": 0.8957863450050354,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 76,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.24935651828973157,
+ "max_err": 0.4536534310726794,
+ "actual_elements": 8163,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.879542827606201,
+ "score_mean": -3.725290298461914e-08,
+ "score_p50": -0.3994287848472595,
+ "score_p90": 1.7535487413406372,
+ "fraction_gt1": 0.13671875,
+ "n_inside": 64,
+ "n_interface": 448,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.08333333333333326,
+ "selected_y_range": 0.25,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 2.8456225395202637,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.4806180000305176,
+ "score_mean": -6.443745537154655e-09,
+ "score_p50": -0.35071831941604614,
+ "score_p90": 0.7770808339118958,
+ "fraction_gt1": 0.08952702702702703,
+ "n_inside": 129,
+ "n_interface": 463,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333331,
+ "selected_y_range": 0.375,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 8000,
+ "gap": 7408,
+ "cutoff_score": 3.3593950271606445,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 4.536044120788574,
+ "score_mean": -7.25015567581977e-08,
+ "score_p50": -0.34921616315841675,
+ "score_p90": 1.1272646188735962,
+ "fraction_gt1": 0.10818713450292397,
+ "n_inside": 201,
+ "n_interface": 483,
+ "n_outside": 0,
+ "selected_inside_frac": 0.8,
+ "selected_interface_frac": 0.2,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3333333333333333,
+ "selected_y_range": 0.38541666666666663,
+ "step": 2,
+ "n_elem": 684,
+ "target_elements": 8000,
+ "gap": 7316,
+ "cutoff_score": 1.6941282749176025,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.717942714691162,
+ "score_mean": -1.6334975327936263e-07,
+ "score_p50": -0.2451097071170807,
+ "score_p90": 1.3043748140335083,
+ "fraction_gt1": 0.13727959697732997,
+ "n_inside": 273,
+ "n_interface": 521,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.30208333333333337,
+ "selected_y_range": 0.26041666666666663,
+ "step": 3,
+ "n_elem": 794,
+ "target_elements": 8000,
+ "gap": 7206,
+ "cutoff_score": 1.7753112316131592,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.180006742477417,
+ "score_mean": 0.0,
+ "score_p50": -0.09572188556194305,
+ "score_p90": 1.3337727785110474,
+ "fraction_gt1": 0.1277533039647577,
+ "n_inside": 381,
+ "n_interface": 527,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3020833333333333,
+ "selected_y_range": 0.1875,
+ "step": 4,
+ "n_elem": 908,
+ "target_elements": 8000,
+ "gap": 7092,
+ "cutoff_score": 1.7790255546569824,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0228700637817383,
+ "score_mean": -7.378524458090396e-08,
+ "score_p50": 0.046917520463466644,
+ "score_p90": 1.4102329015731812,
+ "fraction_gt1": 0.12669245647969052,
+ "n_inside": 488,
+ "n_interface": 546,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7419354838709677,
+ "selected_interface_frac": 0.25806451612903225,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.5,
+ "step": 5,
+ "n_elem": 1034,
+ "target_elements": 8000,
+ "gap": 6966,
+ "cutoff_score": 1.6078438758850098,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.320533275604248,
+ "score_mean": -9.956795565813081e-08,
+ "score_p50": -0.041968606412410736,
+ "score_p90": 1.2054526805877686,
+ "fraction_gt1": 0.12153344208809136,
+ "n_inside": 610,
+ "n_interface": 616,
+ "n_outside": 0,
+ "selected_inside_frac": 0.2777777777777778,
+ "selected_interface_frac": 0.7222222222222222,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5208333333333333,
+ "selected_y_range": 0.5625,
+ "step": 6,
+ "n_elem": 1226,
+ "target_elements": 8000,
+ "gap": 6774,
+ "cutoff_score": 1.8575564622879028,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5887575149536133,
+ "score_mean": -2.1326050614334235e-07,
+ "score_p50": -0.17104031145572662,
+ "score_p90": 0.9865032434463501,
+ "fraction_gt1": 0.09643605870020965,
+ "n_inside": 664,
+ "n_interface": 767,
+ "n_outside": 0,
+ "selected_inside_frac": 0.2619047619047619,
+ "selected_interface_frac": 0.7380952380952381,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.6041666666666667,
+ "step": 7,
+ "n_elem": 1431,
+ "target_elements": 8000,
+ "gap": 6569,
+ "cutoff_score": 1.9445083141326904,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.7187440395355225,
+ "score_mean": -7.47064348161075e-08,
+ "score_p50": -0.30172401666641235,
+ "score_p90": 0.9031780362129211,
+ "fraction_gt1": 0.09057527539779682,
+ "n_inside": 724,
+ "n_interface": 910,
+ "n_outside": 0,
+ "selected_inside_frac": 0.40816326530612246,
+ "selected_interface_frac": 0.5918367346938775,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.6979166666666667,
+ "step": 8,
+ "n_elem": 1634,
+ "target_elements": 8000,
+ "gap": 6366,
+ "cutoff_score": 1.618833303451538,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.324678659439087,
+ "score_mean": -4.7658893720381457e-08,
+ "score_p50": -0.2739858329296112,
+ "score_p90": 1.0178922414779663,
+ "fraction_gt1": 0.10411244143675169,
+ "n_inside": 842,
+ "n_interface": 1079,
+ "n_outside": 0,
+ "selected_inside_frac": 0.42105263157894735,
+ "selected_interface_frac": 0.5789473684210527,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.8229166666666667,
+ "step": 9,
+ "n_elem": 1921,
+ "target_elements": 8000,
+ "gap": 6079,
+ "cutoff_score": 1.318751335144043,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2499608993530273,
+ "score_mean": 1.0759833912743488e-07,
+ "score_p50": -0.1840345561504364,
+ "score_p90": 1.0814533233642578,
+ "fraction_gt1": 0.1375055090348171,
+ "n_inside": 1008,
+ "n_interface": 1261,
+ "n_outside": 0,
+ "selected_inside_frac": 0.17647058823529413,
+ "selected_interface_frac": 0.8235294117647058,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9375,
+ "step": 10,
+ "n_elem": 2269,
+ "target_elements": 8000,
+ "gap": 5731,
+ "cutoff_score": 1.4862041473388672,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4479689598083496,
+ "score_mean": 1.1630174867605092e-07,
+ "score_p50": -0.05455033481121063,
+ "score_p90": 1.1397658586502075,
+ "fraction_gt1": 0.11166158536585366,
+ "n_inside": 1089,
+ "n_interface": 1535,
+ "n_outside": 0,
+ "selected_inside_frac": 0.38461538461538464,
+ "selected_interface_frac": 0.6153846153846154,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8854166666666666,
+ "selected_y_range": 0.859375,
+ "step": 11,
+ "n_elem": 2624,
+ "target_elements": 8000,
+ "gap": 5376,
+ "cutoff_score": 1.3929307460784912,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3521595001220703,
+ "score_mean": 6.059082124920678e-08,
+ "score_p50": -0.3600511848926544,
+ "score_p90": 1.0176856517791748,
+ "fraction_gt1": 0.11978821972203839,
+ "n_inside": 1255,
+ "n_interface": 1767,
+ "n_outside": 0,
+ "selected_inside_frac": 0.6,
+ "selected_interface_frac": 0.4,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.96875,
+ "step": 12,
+ "n_elem": 3022,
+ "target_elements": 8000,
+ "gap": 4978,
+ "cutoff_score": 1.5042452812194824,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2413854598999023,
+ "score_mean": -1.6019725990190636e-07,
+ "score_p50": -0.21007221937179565,
+ "score_p90": 1.167527437210083,
+ "fraction_gt1": 0.1280256634587343,
+ "n_inside": 1499,
+ "n_interface": 1930,
+ "n_outside": 0,
+ "selected_inside_frac": 0.9215686274509803,
+ "selected_interface_frac": 0.0784313725490196,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.6666666666666667,
+ "step": 13,
+ "n_elem": 3429,
+ "target_elements": 8000,
+ "gap": 4571,
+ "cutoff_score": 1.5720136165618896,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.2338547706604004,
+ "score_mean": -1.5602033442974061e-07,
+ "score_p50": -0.04430583119392395,
+ "score_p90": 1.2070447206497192,
+ "fraction_gt1": 0.12704498977505113,
+ "n_inside": 1913,
+ "n_interface": 1999,
+ "n_outside": 0,
+ "selected_inside_frac": 0.811965811965812,
+ "selected_interface_frac": 0.18803418803418803,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333334,
+ "selected_y_range": 0.7291666666666667,
+ "step": 14,
+ "n_elem": 3912,
+ "target_elements": 8000,
+ "gap": 4088,
+ "cutoff_score": 1.4218347072601318,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0066580772399902,
+ "score_mean": -8.084126790208757e-08,
+ "score_p50": -0.13481074571609497,
+ "score_p90": 1.077545166015625,
+ "fraction_gt1": 0.11920529801324503,
+ "n_inside": 2344,
+ "n_interface": 2186,
+ "n_outside": 0,
+ "selected_inside_frac": 0.2518518518518518,
+ "selected_interface_frac": 0.7481481481481481,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8541666666666667,
+ "selected_y_range": 0.8333333333333334,
+ "step": 15,
+ "n_elem": 4530,
+ "target_elements": 8000,
+ "gap": 3470,
+ "cutoff_score": 1.6125177145004272,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0612902641296387,
+ "score_mean": 4.7350781073873804e-08,
+ "score_p50": -0.026601895689964294,
+ "score_p90": 1.1242412328720093,
+ "fraction_gt1": 0.12083010085337471,
+ "n_inside": 2516,
+ "n_interface": 2640,
+ "n_outside": 0,
+ "selected_inside_frac": 0.11688311688311688,
+ "selected_interface_frac": 0.8831168831168831,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.65625,
+ "selected_y_range": 0.9583333333333334,
+ "step": 16,
+ "n_elem": 5156,
+ "target_elements": 8000,
+ "gap": 2844,
+ "cutoff_score": 1.7313082218170166,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.420382022857666,
+ "score_mean": -2.0831111058328133e-08,
+ "score_p50": -0.18771979212760925,
+ "score_p90": 0.9985261559486389,
+ "fraction_gt1": 0.1,
+ "n_inside": 2620,
+ "n_interface": 3240,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5542857142857143,
+ "selected_interface_frac": 0.44571428571428573,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333334,
+ "selected_y_range": 0.9479166666666667,
+ "step": 17,
+ "n_elem": 5860,
+ "target_elements": 8000,
+ "gap": 2140,
+ "cutoff_score": 1.526496410369873,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5027565956115723,
+ "score_mean": 1.8081811603565257e-08,
+ "score_p50": -0.18829664587974548,
+ "score_p90": 0.9118187427520752,
+ "fraction_gt1": 0.08250629536364983,
+ "n_inside": 3131,
+ "n_interface": 3618,
+ "n_outside": 2,
+ "selected_inside_frac": 0.42574257425742573,
+ "selected_interface_frac": 0.5742574257425742,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 18,
+ "n_elem": 6751,
+ "target_elements": 8000,
+ "gap": 1249,
+ "cutoff_score": 1.4795806407928467,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.119562864303589,
+ "score_mean": 3.118413971492373e-08,
+ "score_p50": -0.16502588987350464,
+ "score_p90": 0.894393265247345,
+ "fraction_gt1": 0.07587175884531869,
+ "n_inside": 3627,
+ "n_interface": 4200,
+ "n_outside": 2,
+ "selected_inside_frac": 0.5614035087719298,
+ "selected_interface_frac": 0.43859649122807015,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8072916666666666,
+ "step": 19,
+ "n_elem": 7829,
+ "target_elements": 8000,
+ "gap": 171,
+ "cutoff_score": 1.7791324853897095,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 76,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.2288882743526955,
+ "max_err": 0.4913694799052504,
+ "actual_elements": 2013,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.6834332346916199,
+ "score_mean": 0.4017657935619354,
+ "score_p50": 0.35567477345466614,
+ "score_p90": 0.6834332346916199,
+ "fraction_gt1": 0.0,
+ "n_inside": 72,
+ "n_interface": 207,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.3958333333333333,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.6834332346916199,
+ "num_tied_at_cutoff": 72,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.6834332346916199,
+ "score_mean": 0.3619372844696045,
+ "score_p50": 0.35567477345466614,
+ "score_p90": 0.48326030373573303,
+ "fraction_gt1": 0.0,
+ "n_inside": 140,
+ "n_interface": 257,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.27083333333333326,
+ "step": 1,
+ "n_elem": 630,
+ "target_elements": 2000,
+ "gap": 1370,
+ "cutoff_score": 0.6834332346916199,
+ "num_tied_at_cutoff": 36,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.6834332346916199,
+ "score_mean": 0.34338846802711487,
+ "score_p50": 0.35567477345466614,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 235,
+ "n_interface": 262,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.27083333333333326,
+ "step": 2,
+ "n_elem": 730,
+ "target_elements": 2000,
+ "gap": 1270,
+ "cutoff_score": 0.48326030373573303,
+ "num_tied_at_cutoff": 35,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.48326030373573303,
+ "score_mean": 0.3205571472644806,
+ "score_p50": 0.34171661734580994,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 331,
+ "n_interface": 272,
+ "n_outside": 233,
+ "selected_inside_frac": 0.24,
+ "selected_interface_frac": 0.76,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.5,
+ "step": 3,
+ "n_elem": 836,
+ "target_elements": 2000,
+ "gap": 1164,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 406,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.29433560371398926,
+ "score_p50": 0.34171661734580994,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 374,
+ "n_outside": 233,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.6458333333333333,
+ "step": 4,
+ "n_elem": 972,
+ "target_elements": 2000,
+ "gap": 1028,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 364,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.26996153593063354,
+ "score_p50": 0.25150004029273987,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 532,
+ "n_outside": 233,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.7083333333333333,
+ "step": 5,
+ "n_elem": 1130,
+ "target_elements": 2000,
+ "gap": 870,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 306,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.25027328729629517,
+ "score_p50": 0.24163015186786652,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 699,
+ "n_outside": 236,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.38461538461538464,
+ "selected_outside_frac": 0.6153846153846154,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1300,
+ "target_elements": 2000,
+ "gap": 700,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 246,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.2324945330619812,
+ "score_p50": 0.17783738672733307,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 783,
+ "n_outside": 357,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8958333333333333,
+ "step": 7,
+ "n_elem": 1505,
+ "target_elements": 2000,
+ "gap": 495,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 172,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.21804828941822052,
+ "score_p50": 0.17783738672733307,
+ "score_p90": 0.34171661734580994,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 783,
+ "n_outside": 579,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1727,
+ "target_elements": 2000,
+ "gap": 273,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 90,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.2073860913515091,
+ "score_p50": 0.17783738672733307,
+ "score_p90": 0.34171661734580994,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 783,
+ "n_outside": 785,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.27083333333333326,
+ "selected_y_range": 0.27083333333333337,
+ "step": 9,
+ "n_elem": 1933,
+ "target_elements": 2000,
+ "gap": 67,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 24,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 77,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.14662526296823516,
+ "max_err": 0.2924436013205675,
+ "actual_elements": 2162,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9836892485618591,
+ "score_mean": 0.1204695925116539,
+ "score_p50": 1.3357068837649422e-06,
+ "score_p90": 0.7731462717056274,
+ "fraction_gt1": 0.0,
+ "n_inside": 72,
+ "n_interface": 207,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333337,
+ "selected_y_range": 0.22916666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9759896993637085,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9843195080757141,
+ "score_mean": 0.11373396217823029,
+ "score_p50": 0.00011761083442252129,
+ "score_p90": 0.5597172975540161,
+ "fraction_gt1": 0.0,
+ "n_inside": 143,
+ "n_interface": 216,
+ "n_outside": 233,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333334,
+ "selected_y_range": 0.37500000000000006,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 2000,
+ "gap": 1408,
+ "cutoff_score": 0.9455612301826477,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.979345440864563,
+ "score_mean": 0.15649427473545074,
+ "score_p50": 0.0035881316289305687,
+ "score_p90": 0.6392907500267029,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 230,
+ "n_outside": 233,
+ "selected_inside_frac": 0.1,
+ "selected_interface_frac": 0.9,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 690,
+ "target_elements": 2000,
+ "gap": 1310,
+ "cutoff_score": 0.9253379106521606,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9675580263137817,
+ "score_mean": 0.23251014947891235,
+ "score_p50": 0.002725724596530199,
+ "score_p90": 0.8506330251693726,
+ "fraction_gt1": 0.0,
+ "n_inside": 245,
+ "n_interface": 322,
+ "n_outside": 233,
+ "selected_inside_frac": 0.7083333333333334,
+ "selected_interface_frac": 0.041666666666666664,
+ "selected_outside_frac": 0.25,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.30208333333333326,
+ "step": 3,
+ "n_elem": 800,
+ "target_elements": 2000,
+ "gap": 1200,
+ "cutoff_score": 0.9425531625747681,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9855239987373352,
+ "score_mean": 0.2251157909631729,
+ "score_p50": 0.001332665327936411,
+ "score_p90": 0.9076035618782043,
+ "fraction_gt1": 0.0,
+ "n_inside": 347,
+ "n_interface": 343,
+ "n_outside": 266,
+ "selected_inside_frac": 0.4642857142857143,
+ "selected_interface_frac": 0.17857142857142858,
+ "selected_outside_frac": 0.35714285714285715,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.43749999999999994,
+ "step": 4,
+ "n_elem": 956,
+ "target_elements": 2000,
+ "gap": 1044,
+ "cutoff_score": 0.9656956791877747,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9833337664604187,
+ "score_mean": 0.19742907583713531,
+ "score_p50": 0.001700596185401082,
+ "score_p90": 0.8525730967521667,
+ "fraction_gt1": 0.0,
+ "n_inside": 442,
+ "n_interface": 370,
+ "n_outside": 314,
+ "selected_inside_frac": 0.36363636363636365,
+ "selected_interface_frac": 0.2727272727272727,
+ "selected_outside_frac": 0.36363636363636365,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.5416666666666667,
+ "step": 5,
+ "n_elem": 1126,
+ "target_elements": 2000,
+ "gap": 874,
+ "cutoff_score": 0.9406563639640808,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9838821887969971,
+ "score_mean": 0.17225730419158936,
+ "score_p50": 0.0028908993117511272,
+ "score_p90": 0.8244332671165466,
+ "fraction_gt1": 0.0,
+ "n_inside": 508,
+ "n_interface": 434,
+ "n_outside": 382,
+ "selected_inside_frac": 0.7435897435897436,
+ "selected_interface_frac": 0.23076923076923078,
+ "selected_outside_frac": 0.02564102564102564,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.4791666666666667,
+ "step": 6,
+ "n_elem": 1324,
+ "target_elements": 2000,
+ "gap": 676,
+ "cutoff_score": 0.9152442216873169,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9731066823005676,
+ "score_mean": 0.15737569332122803,
+ "score_p50": 0.004924505949020386,
+ "score_p90": 0.7113452553749084,
+ "fraction_gt1": 0.0,
+ "n_inside": 662,
+ "n_interface": 507,
+ "n_outside": 391,
+ "selected_inside_frac": 0.391304347826087,
+ "selected_interface_frac": 0.43478260869565216,
+ "selected_outside_frac": 0.17391304347826086,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.5625,
+ "step": 7,
+ "n_elem": 1560,
+ "target_elements": 2000,
+ "gap": 440,
+ "cutoff_score": 0.9017456769943237,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9839829206466675,
+ "score_mean": 0.17405946552753448,
+ "score_p50": 0.006736181676387787,
+ "score_p90": 0.7338222861289978,
+ "fraction_gt1": 0.0,
+ "n_inside": 783,
+ "n_interface": 625,
+ "n_outside": 433,
+ "selected_inside_frac": 0.6037735849056604,
+ "selected_interface_frac": 0.22641509433962265,
+ "selected_outside_frac": 0.16981132075471697,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.6666666666666667,
+ "step": 8,
+ "n_elem": 1841,
+ "target_elements": 2000,
+ "gap": 159,
+ "cutoff_score": 0.8981049060821533,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 77,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.13127013065889853,
+ "max_err": 0.28795061861464966,
+ "actual_elements": 2106,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.7110061645507812,
+ "score_mean": 3.725290298461914e-08,
+ "score_p50": -0.40810254216194153,
+ "score_p90": 2.0470337867736816,
+ "fraction_gt1": 0.150390625,
+ "n_inside": 72,
+ "n_interface": 207,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333337,
+ "selected_y_range": 0.22916666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 2.697849988937378,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.340188980102539,
+ "score_mean": 5.477183506741312e-08,
+ "score_p50": -0.3361074924468994,
+ "score_p90": 1.0792269706726074,
+ "fraction_gt1": 0.10810810810810811,
+ "n_inside": 143,
+ "n_interface": 216,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.22916666666666666,
+ "selected_y_range": 0.37500000000000006,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 2000,
+ "gap": 1408,
+ "cutoff_score": 3.2638349533081055,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 4.517577171325684,
+ "score_mean": 1.6173423489362904e-07,
+ "score_p50": -0.2769426703453064,
+ "score_p90": 1.1121355295181274,
+ "fraction_gt1": 0.1111111111111111,
+ "n_inside": 226,
+ "n_interface": 225,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3020833333333333,
+ "selected_y_range": 0.28125,
+ "step": 2,
+ "n_elem": 684,
+ "target_elements": 2000,
+ "gap": 1316,
+ "cutoff_score": 1.8784675598144531,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8701382875442505,
+ "score_mean": 4.671057922678301e-07,
+ "score_p50": -0.07343477010726929,
+ "score_p90": 1.104683518409729,
+ "fraction_gt1": 0.13137755102040816,
+ "n_inside": 308,
+ "n_interface": 243,
+ "n_outside": 233,
+ "selected_inside_frac": 0.2608695652173913,
+ "selected_interface_frac": 0.7391304347826086,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.53125,
+ "selected_y_range": 0.34374999999999994,
+ "step": 3,
+ "n_elem": 784,
+ "target_elements": 2000,
+ "gap": 1216,
+ "cutoff_score": 1.362648844718933,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.3941020965576172,
+ "score_mean": 1.173753005900835e-07,
+ "score_p50": 0.05741983652114868,
+ "score_p90": 1.2493796348571777,
+ "fraction_gt1": 0.18681318681318682,
+ "n_inside": 333,
+ "n_interface": 344,
+ "n_outside": 233,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.25925925925925924,
+ "selected_outside_frac": 0.7407407407407407,
+ "selected_x_range": 0.4583333333333333,
+ "selected_y_range": 0.4791666666666667,
+ "step": 4,
+ "n_elem": 910,
+ "target_elements": 2000,
+ "gap": 1090,
+ "cutoff_score": 1.35160231590271,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.5600509643554688,
+ "score_mean": 0.0,
+ "score_p50": 0.18128374218940735,
+ "score_p90": 1.4483000040054321,
+ "fraction_gt1": 0.1702127659574468,
+ "n_inside": 333,
+ "n_interface": 386,
+ "n_outside": 315,
+ "selected_inside_frac": 0.6129032258064516,
+ "selected_interface_frac": 0.16129032258064516,
+ "selected_outside_frac": 0.22580645161290322,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.4583333333333333,
+ "step": 5,
+ "n_elem": 1034,
+ "target_elements": 2000,
+ "gap": 966,
+ "cutoff_score": 1.4863216876983643,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.860123634338379,
+ "score_mean": -2.509669272399151e-08,
+ "score_p50": -0.3155466318130493,
+ "score_p90": 1.481797218322754,
+ "fraction_gt1": 0.15049342105263158,
+ "n_inside": 439,
+ "n_interface": 423,
+ "n_outside": 354,
+ "selected_inside_frac": 0.8055555555555556,
+ "selected_interface_frac": 0.1111111111111111,
+ "selected_outside_frac": 0.08333333333333333,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5,
+ "step": 6,
+ "n_elem": 1216,
+ "target_elements": 2000,
+ "gap": 784,
+ "cutoff_score": 1.7651171684265137,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1355109214782715,
+ "score_mean": 1.3004650156744901e-07,
+ "score_p50": -0.22300684452056885,
+ "score_p90": 1.3632421493530273,
+ "fraction_gt1": 0.14417613636363635,
+ "n_inside": 573,
+ "n_interface": 461,
+ "n_outside": 374,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.11904761904761904,
+ "selected_outside_frac": 0.38095238095238093,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.5833333333333333,
+ "step": 7,
+ "n_elem": 1408,
+ "target_elements": 2000,
+ "gap": 592,
+ "cutoff_score": 1.9283608198165894,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.374770164489746,
+ "score_mean": 1.876849786697221e-08,
+ "score_p50": -0.4521998465061188,
+ "score_p90": 1.2045361995697021,
+ "fraction_gt1": 0.13038130381303814,
+ "n_inside": 689,
+ "n_interface": 497,
+ "n_outside": 440,
+ "selected_inside_frac": 0.7708333333333334,
+ "selected_interface_frac": 0.16666666666666666,
+ "selected_outside_frac": 0.0625,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.625,
+ "step": 8,
+ "n_elem": 1626,
+ "target_elements": 2000,
+ "gap": 374,
+ "cutoff_score": 2.03018856048584,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4022057056427,
+ "score_mean": -8.14671068383177e-08,
+ "score_p50": -0.48556792736053467,
+ "score_p90": 1.089400291442871,
+ "fraction_gt1": 0.11745862253069941,
+ "n_inside": 861,
+ "n_interface": 550,
+ "n_outside": 462,
+ "selected_inside_frac": 0.2619047619047619,
+ "selected_interface_frac": 0.6428571428571429,
+ "selected_outside_frac": 0.09523809523809523,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.6666666666666667,
+ "step": 9,
+ "n_elem": 1873,
+ "target_elements": 2000,
+ "gap": 127,
+ "cutoff_score": 1.7299607992172241,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 77,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10723026505931563,
+ "max_err": 0.311287152613804,
+ "actual_elements": 4142,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.6834332346916199,
+ "score_mean": 0.4017657935619354,
+ "score_p50": 0.35567477345466614,
+ "score_p90": 0.6834332346916199,
+ "fraction_gt1": 0.0,
+ "n_inside": 72,
+ "n_interface": 207,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.3958333333333333,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.6834332346916199,
+ "num_tied_at_cutoff": 72,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.6834332346916199,
+ "score_mean": 0.3619372844696045,
+ "score_p50": 0.35567477345466614,
+ "score_p90": 0.48326030373573303,
+ "fraction_gt1": 0.0,
+ "n_inside": 140,
+ "n_interface": 257,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.27083333333333326,
+ "step": 1,
+ "n_elem": 630,
+ "target_elements": 4000,
+ "gap": 3370,
+ "cutoff_score": 0.6834332346916199,
+ "num_tied_at_cutoff": 36,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.6834332346916199,
+ "score_mean": 0.34338846802711487,
+ "score_p50": 0.35567477345466614,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 235,
+ "n_interface": 262,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.27083333333333326,
+ "step": 2,
+ "n_elem": 730,
+ "target_elements": 4000,
+ "gap": 3270,
+ "cutoff_score": 0.48326030373573303,
+ "num_tied_at_cutoff": 35,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.48326030373573303,
+ "score_mean": 0.3205571472644806,
+ "score_p50": 0.34171661734580994,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 331,
+ "n_interface": 272,
+ "n_outside": 233,
+ "selected_inside_frac": 0.24,
+ "selected_interface_frac": 0.76,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.5,
+ "step": 3,
+ "n_elem": 836,
+ "target_elements": 4000,
+ "gap": 3164,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 406,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.29433560371398926,
+ "score_p50": 0.34171661734580994,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 374,
+ "n_outside": 233,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.6458333333333333,
+ "step": 4,
+ "n_elem": 972,
+ "target_elements": 4000,
+ "gap": 3028,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 364,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.26996153593063354,
+ "score_p50": 0.25150004029273987,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 532,
+ "n_outside": 233,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.7083333333333333,
+ "step": 5,
+ "n_elem": 1130,
+ "target_elements": 4000,
+ "gap": 2870,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 306,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.25027328729629517,
+ "score_p50": 0.24163015186786652,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 699,
+ "n_outside": 236,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.38461538461538464,
+ "selected_outside_frac": 0.6153846153846154,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1300,
+ "target_elements": 4000,
+ "gap": 2700,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 246,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.2324945330619812,
+ "score_p50": 0.17783738672733307,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 783,
+ "n_outside": 357,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8958333333333333,
+ "step": 7,
+ "n_elem": 1505,
+ "target_elements": 4000,
+ "gap": 2495,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 172,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.21804828941822052,
+ "score_p50": 0.17783738672733307,
+ "score_p90": 0.34171661734580994,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 783,
+ "n_outside": 579,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1727,
+ "target_elements": 4000,
+ "gap": 2273,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 90,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.2073860913515091,
+ "score_p50": 0.17783738672733307,
+ "score_p90": 0.34171661734580994,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 783,
+ "n_outside": 785,
+ "selected_inside_frac": 0.5789473684210527,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.42105263157894735,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8333333333333333,
+ "step": 9,
+ "n_elem": 1933,
+ "target_elements": 4000,
+ "gap": 2067,
+ "cutoff_score": 0.34171661734580994,
+ "num_tied_at_cutoff": 206,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34171661734580994,
+ "score_mean": 0.19224506616592407,
+ "score_p50": 0.17783738672733307,
+ "score_p90": 0.25150004029273987,
+ "fraction_gt1": 0.0,
+ "n_inside": 524,
+ "n_interface": 876,
+ "n_outside": 867,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666663,
+ "selected_y_range": 0.3541666666666667,
+ "step": 10,
+ "n_elem": 2267,
+ "target_elements": 4000,
+ "gap": 1733,
+ "cutoff_score": 0.34171661734580994,
+ "num_tied_at_cutoff": 132,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34171661734580994,
+ "score_mean": 0.18332700431346893,
+ "score_p50": 0.17783738672733307,
+ "score_p90": 0.24163015186786652,
+ "fraction_gt1": 0.0,
+ "n_inside": 816,
+ "n_interface": 876,
+ "n_outside": 867,
+ "selected_inside_frac": 0.5526315789473685,
+ "selected_interface_frac": 0.4473684210526316,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.7083333333333334,
+ "step": 11,
+ "n_elem": 2559,
+ "target_elements": 4000,
+ "gap": 1441,
+ "cutoff_score": 0.25150004029273987,
+ "num_tied_at_cutoff": 107,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25150004029273987,
+ "score_mean": 0.17381004989147186,
+ "score_p50": 0.17783738672733307,
+ "score_p90": 0.17783738672733307,
+ "fraction_gt1": 0.0,
+ "n_inside": 972,
+ "n_interface": 1033,
+ "n_outside": 867,
+ "selected_inside_frac": 0.18604651162790697,
+ "selected_interface_frac": 0.1511627906976744,
+ "selected_outside_frac": 0.6627906976744186,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 2872,
+ "target_elements": 4000,
+ "gap": 1128,
+ "cutoff_score": 0.24163015186786652,
+ "num_tied_at_cutoff": 178,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.24163015186786652,
+ "score_mean": 0.16076382994651794,
+ "score_p50": 0.17085830867290497,
+ "score_p90": 0.17783738672733307,
+ "fraction_gt1": 0.0,
+ "n_inside": 1037,
+ "n_interface": 1158,
+ "n_outside": 1123,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3854166666666667,
+ "selected_y_range": 0.34375,
+ "step": 13,
+ "n_elem": 3318,
+ "target_elements": 4000,
+ "gap": 682,
+ "cutoff_score": 0.24163015186786652,
+ "num_tied_at_cutoff": 155,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.24163015186786652,
+ "score_mean": 0.15132056176662445,
+ "score_p50": 0.17085830867290497,
+ "score_p90": 0.17783738672733307,
+ "fraction_gt1": 0.0,
+ "n_inside": 1467,
+ "n_interface": 1160,
+ "n_outside": 1123,
+ "selected_inside_frac": 0.4819277108433735,
+ "selected_interface_frac": 0.5180722891566265,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5,
+ "selected_y_range": 0.5,
+ "step": 14,
+ "n_elem": 3750,
+ "target_elements": 4000,
+ "gap": 250,
+ "cutoff_score": 0.17783738672733307,
+ "num_tied_at_cutoff": 1314,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 77,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.1067926156106558,
+ "max_err": 0.3297352493102587,
+ "actual_elements": 4103,
+ "num_steps": 13,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9836892485618591,
+ "score_mean": 0.1204695925116539,
+ "score_p50": 1.3357068837649422e-06,
+ "score_p90": 0.7731462717056274,
+ "fraction_gt1": 0.0,
+ "n_inside": 72,
+ "n_interface": 207,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333337,
+ "selected_y_range": 0.22916666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9759896993637085,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9843195080757141,
+ "score_mean": 0.11373396217823029,
+ "score_p50": 0.00011761083442252129,
+ "score_p90": 0.5597172975540161,
+ "fraction_gt1": 0.0,
+ "n_inside": 143,
+ "n_interface": 216,
+ "n_outside": 233,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333334,
+ "selected_y_range": 0.37500000000000006,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 4000,
+ "gap": 3408,
+ "cutoff_score": 0.9455612301826477,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.979345440864563,
+ "score_mean": 0.15649427473545074,
+ "score_p50": 0.0035881316289305687,
+ "score_p90": 0.6392907500267029,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 230,
+ "n_outside": 233,
+ "selected_inside_frac": 0.1,
+ "selected_interface_frac": 0.9,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 690,
+ "target_elements": 4000,
+ "gap": 3310,
+ "cutoff_score": 0.9253379106521606,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9675580263137817,
+ "score_mean": 0.23251014947891235,
+ "score_p50": 0.002725724596530199,
+ "score_p90": 0.8506330251693726,
+ "fraction_gt1": 0.0,
+ "n_inside": 245,
+ "n_interface": 322,
+ "n_outside": 233,
+ "selected_inside_frac": 0.7083333333333334,
+ "selected_interface_frac": 0.041666666666666664,
+ "selected_outside_frac": 0.25,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.30208333333333326,
+ "step": 3,
+ "n_elem": 800,
+ "target_elements": 4000,
+ "gap": 3200,
+ "cutoff_score": 0.9425531625747681,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9855239987373352,
+ "score_mean": 0.2251157909631729,
+ "score_p50": 0.001332665327936411,
+ "score_p90": 0.9076035618782043,
+ "fraction_gt1": 0.0,
+ "n_inside": 347,
+ "n_interface": 343,
+ "n_outside": 266,
+ "selected_inside_frac": 0.4642857142857143,
+ "selected_interface_frac": 0.17857142857142858,
+ "selected_outside_frac": 0.35714285714285715,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.43749999999999994,
+ "step": 4,
+ "n_elem": 956,
+ "target_elements": 4000,
+ "gap": 3044,
+ "cutoff_score": 0.9656956791877747,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9833337664604187,
+ "score_mean": 0.19742907583713531,
+ "score_p50": 0.001700596185401082,
+ "score_p90": 0.8525730967521667,
+ "fraction_gt1": 0.0,
+ "n_inside": 442,
+ "n_interface": 370,
+ "n_outside": 314,
+ "selected_inside_frac": 0.36363636363636365,
+ "selected_interface_frac": 0.2727272727272727,
+ "selected_outside_frac": 0.36363636363636365,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.5416666666666667,
+ "step": 5,
+ "n_elem": 1126,
+ "target_elements": 4000,
+ "gap": 2874,
+ "cutoff_score": 0.9406563639640808,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9838821887969971,
+ "score_mean": 0.17225730419158936,
+ "score_p50": 0.0028908993117511272,
+ "score_p90": 0.8244332671165466,
+ "fraction_gt1": 0.0,
+ "n_inside": 508,
+ "n_interface": 434,
+ "n_outside": 382,
+ "selected_inside_frac": 0.7435897435897436,
+ "selected_interface_frac": 0.23076923076923078,
+ "selected_outside_frac": 0.02564102564102564,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.4791666666666667,
+ "step": 6,
+ "n_elem": 1324,
+ "target_elements": 4000,
+ "gap": 2676,
+ "cutoff_score": 0.9152442216873169,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9731066823005676,
+ "score_mean": 0.15737569332122803,
+ "score_p50": 0.004924505949020386,
+ "score_p90": 0.7113452553749084,
+ "fraction_gt1": 0.0,
+ "n_inside": 662,
+ "n_interface": 507,
+ "n_outside": 391,
+ "selected_inside_frac": 0.391304347826087,
+ "selected_interface_frac": 0.43478260869565216,
+ "selected_outside_frac": 0.17391304347826086,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.5625,
+ "step": 7,
+ "n_elem": 1560,
+ "target_elements": 4000,
+ "gap": 2440,
+ "cutoff_score": 0.9017456769943237,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9839829206466675,
+ "score_mean": 0.17405946552753448,
+ "score_p50": 0.006736181676387787,
+ "score_p90": 0.7338222861289978,
+ "fraction_gt1": 0.0,
+ "n_inside": 783,
+ "n_interface": 625,
+ "n_outside": 433,
+ "selected_inside_frac": 0.6181818181818182,
+ "selected_interface_frac": 0.21818181818181817,
+ "selected_outside_frac": 0.16363636363636364,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.6666666666666667,
+ "step": 8,
+ "n_elem": 1841,
+ "target_elements": 4000,
+ "gap": 2159,
+ "cutoff_score": 0.8967596292495728,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9769902229309082,
+ "score_mean": 0.17832674086093903,
+ "score_p50": 0.007429801393300295,
+ "score_p90": 0.7468664646148682,
+ "fraction_gt1": 0.0,
+ "n_inside": 979,
+ "n_interface": 702,
+ "n_outside": 495,
+ "selected_inside_frac": 0.26153846153846155,
+ "selected_interface_frac": 0.5384615384615384,
+ "selected_outside_frac": 0.2,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.7291666666666667,
+ "step": 9,
+ "n_elem": 2176,
+ "target_elements": 4000,
+ "gap": 1824,
+ "cutoff_score": 0.8906948566436768,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9699422717094421,
+ "score_mean": 0.20127707719802856,
+ "score_p50": 0.00978829525411129,
+ "score_p90": 0.801754891872406,
+ "fraction_gt1": 0.0,
+ "n_inside": 1096,
+ "n_interface": 884,
+ "n_outside": 578,
+ "selected_inside_frac": 0.6578947368421053,
+ "selected_interface_frac": 0.14473684210526316,
+ "selected_outside_frac": 0.19736842105263158,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.7291666666666667,
+ "step": 10,
+ "n_elem": 2558,
+ "target_elements": 4000,
+ "gap": 1442,
+ "cutoff_score": 0.9202131628990173,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9805102348327637,
+ "score_mean": 0.20411986112594604,
+ "score_p50": 0.006319739855825901,
+ "score_p90": 0.840757429599762,
+ "fraction_gt1": 0.0,
+ "n_inside": 1361,
+ "n_interface": 957,
+ "n_outside": 677,
+ "selected_inside_frac": 0.38202247191011235,
+ "selected_interface_frac": 0.34831460674157305,
+ "selected_outside_frac": 0.2696629213483146,
+ "selected_x_range": 0.8541666666666667,
+ "selected_y_range": 0.7604166666666667,
+ "step": 11,
+ "n_elem": 2995,
+ "target_elements": 4000,
+ "gap": 1005,
+ "cutoff_score": 0.9255944490432739,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9824479222297668,
+ "score_mean": 0.20855799317359924,
+ "score_p50": 0.003785583656281233,
+ "score_p90": 0.8408969044685364,
+ "fraction_gt1": 0.0,
+ "n_inside": 1563,
+ "n_interface": 1128,
+ "n_outside": 812,
+ "selected_inside_frac": 0.44761904761904764,
+ "selected_interface_frac": 0.37142857142857144,
+ "selected_outside_frac": 0.18095238095238095,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.8020833333333334,
+ "step": 12,
+ "n_elem": 3503,
+ "target_elements": 4000,
+ "gap": 497,
+ "cutoff_score": 0.9223467111587524,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 77,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.10543328526420293,
+ "max_err": 0.3268975100868489,
+ "actual_elements": 4111,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.7110061645507812,
+ "score_mean": 3.725290298461914e-08,
+ "score_p50": -0.40810254216194153,
+ "score_p90": 2.0470337867736816,
+ "fraction_gt1": 0.150390625,
+ "n_inside": 72,
+ "n_interface": 207,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333337,
+ "selected_y_range": 0.22916666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 2.697849988937378,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.340188980102539,
+ "score_mean": 5.477183506741312e-08,
+ "score_p50": -0.3361074924468994,
+ "score_p90": 1.0792269706726074,
+ "fraction_gt1": 0.10810810810810811,
+ "n_inside": 143,
+ "n_interface": 216,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.22916666666666666,
+ "selected_y_range": 0.37500000000000006,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 4000,
+ "gap": 3408,
+ "cutoff_score": 3.2638349533081055,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 4.517577171325684,
+ "score_mean": 1.6173423489362904e-07,
+ "score_p50": -0.2769426703453064,
+ "score_p90": 1.1121355295181274,
+ "fraction_gt1": 0.1111111111111111,
+ "n_inside": 226,
+ "n_interface": 225,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3020833333333333,
+ "selected_y_range": 0.28125,
+ "step": 2,
+ "n_elem": 684,
+ "target_elements": 4000,
+ "gap": 3316,
+ "cutoff_score": 1.8784675598144531,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8701382875442505,
+ "score_mean": 4.671057922678301e-07,
+ "score_p50": -0.07343477010726929,
+ "score_p90": 1.104683518409729,
+ "fraction_gt1": 0.13137755102040816,
+ "n_inside": 308,
+ "n_interface": 243,
+ "n_outside": 233,
+ "selected_inside_frac": 0.2608695652173913,
+ "selected_interface_frac": 0.7391304347826086,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.53125,
+ "selected_y_range": 0.34374999999999994,
+ "step": 3,
+ "n_elem": 784,
+ "target_elements": 4000,
+ "gap": 3216,
+ "cutoff_score": 1.362648844718933,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.3941020965576172,
+ "score_mean": 1.173753005900835e-07,
+ "score_p50": 0.05741983652114868,
+ "score_p90": 1.2493796348571777,
+ "fraction_gt1": 0.18681318681318682,
+ "n_inside": 333,
+ "n_interface": 344,
+ "n_outside": 233,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.25925925925925924,
+ "selected_outside_frac": 0.7407407407407407,
+ "selected_x_range": 0.4583333333333333,
+ "selected_y_range": 0.4791666666666667,
+ "step": 4,
+ "n_elem": 910,
+ "target_elements": 4000,
+ "gap": 3090,
+ "cutoff_score": 1.35160231590271,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.5600509643554688,
+ "score_mean": 0.0,
+ "score_p50": 0.18128374218940735,
+ "score_p90": 1.4483000040054321,
+ "fraction_gt1": 0.1702127659574468,
+ "n_inside": 333,
+ "n_interface": 386,
+ "n_outside": 315,
+ "selected_inside_frac": 0.6129032258064516,
+ "selected_interface_frac": 0.16129032258064516,
+ "selected_outside_frac": 0.22580645161290322,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.4583333333333333,
+ "step": 5,
+ "n_elem": 1034,
+ "target_elements": 4000,
+ "gap": 2966,
+ "cutoff_score": 1.4863216876983643,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.860123634338379,
+ "score_mean": -2.509669272399151e-08,
+ "score_p50": -0.3155466318130493,
+ "score_p90": 1.481797218322754,
+ "fraction_gt1": 0.15049342105263158,
+ "n_inside": 439,
+ "n_interface": 423,
+ "n_outside": 354,
+ "selected_inside_frac": 0.8055555555555556,
+ "selected_interface_frac": 0.1111111111111111,
+ "selected_outside_frac": 0.08333333333333333,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5,
+ "step": 6,
+ "n_elem": 1216,
+ "target_elements": 4000,
+ "gap": 2784,
+ "cutoff_score": 1.7651171684265137,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1355109214782715,
+ "score_mean": 1.3004650156744901e-07,
+ "score_p50": -0.22300684452056885,
+ "score_p90": 1.3632421493530273,
+ "fraction_gt1": 0.14417613636363635,
+ "n_inside": 573,
+ "n_interface": 461,
+ "n_outside": 374,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.11904761904761904,
+ "selected_outside_frac": 0.38095238095238093,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.5833333333333333,
+ "step": 7,
+ "n_elem": 1408,
+ "target_elements": 4000,
+ "gap": 2592,
+ "cutoff_score": 1.9283608198165894,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.374770164489746,
+ "score_mean": 1.876849786697221e-08,
+ "score_p50": -0.4521998465061188,
+ "score_p90": 1.2045361995697021,
+ "fraction_gt1": 0.13038130381303814,
+ "n_inside": 689,
+ "n_interface": 497,
+ "n_outside": 440,
+ "selected_inside_frac": 0.7708333333333334,
+ "selected_interface_frac": 0.16666666666666666,
+ "selected_outside_frac": 0.0625,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.625,
+ "step": 8,
+ "n_elem": 1626,
+ "target_elements": 4000,
+ "gap": 2374,
+ "cutoff_score": 2.03018856048584,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4022057056427,
+ "score_mean": -8.14671068383177e-08,
+ "score_p50": -0.48556792736053467,
+ "score_p90": 1.089400291442871,
+ "fraction_gt1": 0.11745862253069941,
+ "n_inside": 861,
+ "n_interface": 550,
+ "n_outside": 462,
+ "selected_inside_frac": 0.23214285714285715,
+ "selected_interface_frac": 0.6964285714285714,
+ "selected_outside_frac": 0.07142857142857142,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.6666666666666667,
+ "step": 9,
+ "n_elem": 1873,
+ "target_elements": 4000,
+ "gap": 2127,
+ "cutoff_score": 1.6611807346343994,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.446373462677002,
+ "score_mean": 1.1255907139684496e-07,
+ "score_p50": -0.43008819222450256,
+ "score_p90": 1.1370985507965088,
+ "fraction_gt1": 0.16505301982480405,
+ "n_inside": 915,
+ "n_interface": 763,
+ "n_outside": 491,
+ "selected_inside_frac": 0.6615384615384615,
+ "selected_interface_frac": 0.07692307692307693,
+ "selected_outside_frac": 0.26153846153846155,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.75,
+ "step": 10,
+ "n_elem": 2169,
+ "target_elements": 4000,
+ "gap": 1831,
+ "cutoff_score": 1.5717601776123047,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.084186553955078,
+ "score_mean": 1.4514900215090165e-07,
+ "score_p50": -0.30349212884902954,
+ "score_p90": 1.270097255706787,
+ "fraction_gt1": 0.178359096313912,
+ "n_inside": 1111,
+ "n_interface": 824,
+ "n_outside": 588,
+ "selected_inside_frac": 0.56,
+ "selected_interface_frac": 0.22666666666666666,
+ "selected_outside_frac": 0.21333333333333335,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.8333333333333333,
+ "step": 11,
+ "n_elem": 2523,
+ "target_elements": 4000,
+ "gap": 1477,
+ "cutoff_score": 1.4366371631622314,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8389757871627808,
+ "score_mean": 8.430270526105232e-08,
+ "score_p50": -0.19519445300102234,
+ "score_p90": 1.2165948152542114,
+ "fraction_gt1": 0.17023480662983426,
+ "n_inside": 1313,
+ "n_interface": 911,
+ "n_outside": 672,
+ "selected_inside_frac": 0.18604651162790697,
+ "selected_interface_frac": 0.06976744186046512,
+ "selected_outside_frac": 0.7441860465116279,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8854166666666666,
+ "step": 12,
+ "n_elem": 2896,
+ "target_elements": 4000,
+ "gap": 1104,
+ "cutoff_score": 1.6247620582580566,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4575390815734863,
+ "score_mean": -7.404932489407656e-08,
+ "score_p50": -0.07583077251911163,
+ "score_p90": 1.1832822561264038,
+ "fraction_gt1": 0.16166211707612982,
+ "n_inside": 1427,
+ "n_interface": 942,
+ "n_outside": 928,
+ "selected_inside_frac": 0.336734693877551,
+ "selected_interface_frac": 0.4387755102040816,
+ "selected_outside_frac": 0.22448979591836735,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.96875,
+ "step": 13,
+ "n_elem": 3297,
+ "target_elements": 4000,
+ "gap": 703,
+ "cutoff_score": 1.3059642314910889,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.051039457321167,
+ "score_mean": 0.0,
+ "score_p50": 0.07816922664642334,
+ "score_p90": 1.3062366247177124,
+ "fraction_gt1": 0.1861758474576271,
+ "n_inside": 1572,
+ "n_interface": 1176,
+ "n_outside": 1028,
+ "selected_inside_frac": 0.013513513513513514,
+ "selected_interface_frac": 0.3783783783783784,
+ "selected_outside_frac": 0.6081081081081081,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.5833333333333334,
+ "step": 14,
+ "n_elem": 3776,
+ "target_elements": 4000,
+ "gap": 224,
+ "cutoff_score": 1.4427237510681152,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 77,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.10541361291497493,
+ "max_err": 0.3282004765055002,
+ "actual_elements": 8287,
+ "num_steps": 21,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.6834332346916199,
+ "score_mean": 0.4017657935619354,
+ "score_p50": 0.35567477345466614,
+ "score_p90": 0.6834332346916199,
+ "fraction_gt1": 0.0,
+ "n_inside": 72,
+ "n_interface": 207,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.3958333333333333,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.6834332346916199,
+ "num_tied_at_cutoff": 72,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.6834332346916199,
+ "score_mean": 0.3619372844696045,
+ "score_p50": 0.35567477345466614,
+ "score_p90": 0.48326030373573303,
+ "fraction_gt1": 0.0,
+ "n_inside": 140,
+ "n_interface": 257,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3125,
+ "selected_y_range": 0.27083333333333326,
+ "step": 1,
+ "n_elem": 630,
+ "target_elements": 8000,
+ "gap": 7370,
+ "cutoff_score": 0.6834332346916199,
+ "num_tied_at_cutoff": 36,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.6834332346916199,
+ "score_mean": 0.34338846802711487,
+ "score_p50": 0.35567477345466614,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 235,
+ "n_interface": 262,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.27083333333333326,
+ "step": 2,
+ "n_elem": 730,
+ "target_elements": 8000,
+ "gap": 7270,
+ "cutoff_score": 0.48326030373573303,
+ "num_tied_at_cutoff": 35,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.48326030373573303,
+ "score_mean": 0.3205571472644806,
+ "score_p50": 0.34171661734580994,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 331,
+ "n_interface": 272,
+ "n_outside": 233,
+ "selected_inside_frac": 0.24,
+ "selected_interface_frac": 0.76,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.5,
+ "step": 3,
+ "n_elem": 836,
+ "target_elements": 8000,
+ "gap": 7164,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 406,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.29433560371398926,
+ "score_p50": 0.34171661734580994,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 374,
+ "n_outside": 233,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.6458333333333333,
+ "step": 4,
+ "n_elem": 972,
+ "target_elements": 8000,
+ "gap": 7028,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 364,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.26996153593063354,
+ "score_p50": 0.25150004029273987,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 532,
+ "n_outside": 233,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.7083333333333333,
+ "step": 5,
+ "n_elem": 1130,
+ "target_elements": 8000,
+ "gap": 6870,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 306,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.25027328729629517,
+ "score_p50": 0.24163015186786652,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 699,
+ "n_outside": 236,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.38461538461538464,
+ "selected_outside_frac": 0.6153846153846154,
+ "selected_x_range": 0.7708333333333333,
+ "selected_y_range": 0.8125,
+ "step": 6,
+ "n_elem": 1300,
+ "target_elements": 8000,
+ "gap": 6700,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 246,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.2324945330619812,
+ "score_p50": 0.17783738672733307,
+ "score_p90": 0.35567477345466614,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 783,
+ "n_outside": 357,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8958333333333333,
+ "step": 7,
+ "n_elem": 1505,
+ "target_elements": 8000,
+ "gap": 6495,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 172,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.21804828941822052,
+ "score_p50": 0.17783738672733307,
+ "score_p90": 0.34171661734580994,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 783,
+ "n_outside": 579,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1727,
+ "target_elements": 8000,
+ "gap": 6273,
+ "cutoff_score": 0.35567477345466614,
+ "num_tied_at_cutoff": 90,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.35567477345466614,
+ "score_mean": 0.2073860913515091,
+ "score_p50": 0.17783738672733307,
+ "score_p90": 0.34171661734580994,
+ "fraction_gt1": 0.0,
+ "n_inside": 365,
+ "n_interface": 783,
+ "n_outside": 785,
+ "selected_inside_frac": 0.5789473684210527,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.42105263157894735,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.8333333333333333,
+ "step": 9,
+ "n_elem": 1933,
+ "target_elements": 8000,
+ "gap": 6067,
+ "cutoff_score": 0.34171661734580994,
+ "num_tied_at_cutoff": 206,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34171661734580994,
+ "score_mean": 0.19224506616592407,
+ "score_p50": 0.17783738672733307,
+ "score_p90": 0.25150004029273987,
+ "fraction_gt1": 0.0,
+ "n_inside": 524,
+ "n_interface": 876,
+ "n_outside": 867,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.29166666666666663,
+ "selected_y_range": 0.3541666666666667,
+ "step": 10,
+ "n_elem": 2267,
+ "target_elements": 8000,
+ "gap": 5733,
+ "cutoff_score": 0.34171661734580994,
+ "num_tied_at_cutoff": 132,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34171661734580994,
+ "score_mean": 0.18332700431346893,
+ "score_p50": 0.17783738672733307,
+ "score_p90": 0.24163015186786652,
+ "fraction_gt1": 0.0,
+ "n_inside": 816,
+ "n_interface": 876,
+ "n_outside": 867,
+ "selected_inside_frac": 0.5526315789473685,
+ "selected_interface_frac": 0.4473684210526316,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.7083333333333334,
+ "step": 11,
+ "n_elem": 2559,
+ "target_elements": 8000,
+ "gap": 5441,
+ "cutoff_score": 0.25150004029273987,
+ "num_tied_at_cutoff": 107,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.25150004029273987,
+ "score_mean": 0.17381004989147186,
+ "score_p50": 0.17783738672733307,
+ "score_p90": 0.17783738672733307,
+ "fraction_gt1": 0.0,
+ "n_inside": 972,
+ "n_interface": 1033,
+ "n_outside": 867,
+ "selected_inside_frac": 0.18604651162790697,
+ "selected_interface_frac": 0.1511627906976744,
+ "selected_outside_frac": 0.6627906976744186,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 2872,
+ "target_elements": 8000,
+ "gap": 5128,
+ "cutoff_score": 0.24163015186786652,
+ "num_tied_at_cutoff": 178,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.24163015186786652,
+ "score_mean": 0.16076382994651794,
+ "score_p50": 0.17085830867290497,
+ "score_p90": 0.17783738672733307,
+ "fraction_gt1": 0.0,
+ "n_inside": 1037,
+ "n_interface": 1158,
+ "n_outside": 1123,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3854166666666667,
+ "selected_y_range": 0.34375,
+ "step": 13,
+ "n_elem": 3318,
+ "target_elements": 8000,
+ "gap": 4682,
+ "cutoff_score": 0.24163015186786652,
+ "num_tied_at_cutoff": 155,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.24163015186786652,
+ "score_mean": 0.15132056176662445,
+ "score_p50": 0.17085830867290497,
+ "score_p90": 0.17783738672733307,
+ "fraction_gt1": 0.0,
+ "n_inside": 1467,
+ "n_interface": 1160,
+ "n_outside": 1123,
+ "selected_inside_frac": 0.35714285714285715,
+ "selected_interface_frac": 0.6428571428571429,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.53125,
+ "selected_y_range": 0.5104166666666667,
+ "step": 14,
+ "n_elem": 3750,
+ "target_elements": 8000,
+ "gap": 4250,
+ "cutoff_score": 0.17783738672733307,
+ "num_tied_at_cutoff": 1314,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17783738672733307,
+ "score_mean": 0.14126572012901306,
+ "score_p50": 0.12575002014636993,
+ "score_p90": 0.17783738672733307,
+ "fraction_gt1": 0.0,
+ "n_inside": 1615,
+ "n_interface": 1508,
+ "n_outside": 1123,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.65625,
+ "step": 15,
+ "n_elem": 4246,
+ "target_elements": 8000,
+ "gap": 3754,
+ "cutoff_score": 0.17783738672733307,
+ "num_tied_at_cutoff": 1194,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17783738672733307,
+ "score_mean": 0.13187558948993683,
+ "score_p50": 0.12575002014636993,
+ "score_p90": 0.17783738672733307,
+ "fraction_gt1": 0.0,
+ "n_inside": 1615,
+ "n_interface": 2058,
+ "n_outside": 1123,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6979166666666667,
+ "selected_y_range": 0.7291666666666667,
+ "step": 16,
+ "n_elem": 4796,
+ "target_elements": 8000,
+ "gap": 3204,
+ "cutoff_score": 0.17783738672733307,
+ "num_tied_at_cutoff": 1008,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17783738672733307,
+ "score_mean": 0.12387516349554062,
+ "score_p50": 0.12081507593393326,
+ "score_p90": 0.17783738672733307,
+ "fraction_gt1": 0.0,
+ "n_inside": 1615,
+ "n_interface": 2652,
+ "n_outside": 1123,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.5279503105590062,
+ "selected_outside_frac": 0.4720496894409938,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.8229166666666667,
+ "step": 17,
+ "n_elem": 5390,
+ "target_elements": 8000,
+ "gap": 2610,
+ "cutoff_score": 0.17783738672733307,
+ "num_tied_at_cutoff": 810,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17783738672733307,
+ "score_mean": 0.11701443791389465,
+ "score_p50": 0.12081507593393326,
+ "score_p90": 0.17085830867290497,
+ "fraction_gt1": 0.0,
+ "n_inside": 1615,
+ "n_interface": 2950,
+ "n_outside": 1465,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.9166666666666667,
+ "step": 18,
+ "n_elem": 6030,
+ "target_elements": 8000,
+ "gap": 1970,
+ "cutoff_score": 0.17783738672733307,
+ "num_tied_at_cutoff": 598,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17783738672733307,
+ "score_mean": 0.11094143986701965,
+ "score_p50": 0.08891869336366653,
+ "score_p90": 0.17085830867290497,
+ "fraction_gt1": 0.0,
+ "n_inside": 1615,
+ "n_interface": 2950,
+ "n_outside": 2173,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 19,
+ "n_elem": 6738,
+ "target_elements": 8000,
+ "gap": 1262,
+ "cutoff_score": 0.17783738672733307,
+ "num_tied_at_cutoff": 364,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17783738672733307,
+ "score_mean": 0.10580845177173615,
+ "score_p50": 0.08891869336366653,
+ "score_p90": 0.17085830867290497,
+ "fraction_gt1": 0.0,
+ "n_inside": 1615,
+ "n_interface": 2950,
+ "n_outside": 2914,
+ "selected_inside_frac": 0.2947976878612717,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.7052023121387283,
+ "selected_x_range": 0.890625,
+ "selected_y_range": 0.9479166666666667,
+ "step": 20,
+ "n_elem": 7479,
+ "target_elements": 8000,
+ "gap": 521,
+ "cutoff_score": 0.17085830867290497,
+ "num_tied_at_cutoff": 685,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 77,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.09730837393008075,
+ "max_err": 0.348302011437747,
+ "actual_elements": 8316,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9836892485618591,
+ "score_mean": 0.1204695925116539,
+ "score_p50": 1.3357068837649422e-06,
+ "score_p90": 0.7731462717056274,
+ "fraction_gt1": 0.0,
+ "n_inside": 72,
+ "n_interface": 207,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333337,
+ "selected_y_range": 0.22916666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9759896993637085,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9843195080757141,
+ "score_mean": 0.11373396217823029,
+ "score_p50": 0.00011761083442252129,
+ "score_p90": 0.5597172975540161,
+ "fraction_gt1": 0.0,
+ "n_inside": 143,
+ "n_interface": 216,
+ "n_outside": 233,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333334,
+ "selected_y_range": 0.37500000000000006,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 8000,
+ "gap": 7408,
+ "cutoff_score": 0.9455612301826477,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.979345440864563,
+ "score_mean": 0.15649427473545074,
+ "score_p50": 0.0035881316289305687,
+ "score_p90": 0.6392907500267029,
+ "fraction_gt1": 0.0,
+ "n_inside": 227,
+ "n_interface": 230,
+ "n_outside": 233,
+ "selected_inside_frac": 0.1,
+ "selected_interface_frac": 0.9,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 690,
+ "target_elements": 8000,
+ "gap": 7310,
+ "cutoff_score": 0.9253379106521606,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9675580263137817,
+ "score_mean": 0.23251014947891235,
+ "score_p50": 0.002725724596530199,
+ "score_p90": 0.8506330251693726,
+ "fraction_gt1": 0.0,
+ "n_inside": 245,
+ "n_interface": 322,
+ "n_outside": 233,
+ "selected_inside_frac": 0.7083333333333334,
+ "selected_interface_frac": 0.041666666666666664,
+ "selected_outside_frac": 0.25,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.30208333333333326,
+ "step": 3,
+ "n_elem": 800,
+ "target_elements": 8000,
+ "gap": 7200,
+ "cutoff_score": 0.9425531625747681,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9855239987373352,
+ "score_mean": 0.2251157909631729,
+ "score_p50": 0.001332665327936411,
+ "score_p90": 0.9076035618782043,
+ "fraction_gt1": 0.0,
+ "n_inside": 347,
+ "n_interface": 343,
+ "n_outside": 266,
+ "selected_inside_frac": 0.4642857142857143,
+ "selected_interface_frac": 0.17857142857142858,
+ "selected_outside_frac": 0.35714285714285715,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.43749999999999994,
+ "step": 4,
+ "n_elem": 956,
+ "target_elements": 8000,
+ "gap": 7044,
+ "cutoff_score": 0.9656956791877747,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9833337664604187,
+ "score_mean": 0.19742907583713531,
+ "score_p50": 0.001700596185401082,
+ "score_p90": 0.8525730967521667,
+ "fraction_gt1": 0.0,
+ "n_inside": 442,
+ "n_interface": 370,
+ "n_outside": 314,
+ "selected_inside_frac": 0.36363636363636365,
+ "selected_interface_frac": 0.2727272727272727,
+ "selected_outside_frac": 0.36363636363636365,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.5416666666666667,
+ "step": 5,
+ "n_elem": 1126,
+ "target_elements": 8000,
+ "gap": 6874,
+ "cutoff_score": 0.9406563639640808,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9838821887969971,
+ "score_mean": 0.17225730419158936,
+ "score_p50": 0.0028908993117511272,
+ "score_p90": 0.8244332671165466,
+ "fraction_gt1": 0.0,
+ "n_inside": 508,
+ "n_interface": 434,
+ "n_outside": 382,
+ "selected_inside_frac": 0.7435897435897436,
+ "selected_interface_frac": 0.23076923076923078,
+ "selected_outside_frac": 0.02564102564102564,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.4791666666666667,
+ "step": 6,
+ "n_elem": 1324,
+ "target_elements": 8000,
+ "gap": 6676,
+ "cutoff_score": 0.9152442216873169,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9731066823005676,
+ "score_mean": 0.15737569332122803,
+ "score_p50": 0.004924505949020386,
+ "score_p90": 0.7113452553749084,
+ "fraction_gt1": 0.0,
+ "n_inside": 662,
+ "n_interface": 507,
+ "n_outside": 391,
+ "selected_inside_frac": 0.391304347826087,
+ "selected_interface_frac": 0.43478260869565216,
+ "selected_outside_frac": 0.17391304347826086,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.5625,
+ "step": 7,
+ "n_elem": 1560,
+ "target_elements": 8000,
+ "gap": 6440,
+ "cutoff_score": 0.9017456769943237,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9839829206466675,
+ "score_mean": 0.17405946552753448,
+ "score_p50": 0.006736181676387787,
+ "score_p90": 0.7338222861289978,
+ "fraction_gt1": 0.0,
+ "n_inside": 783,
+ "n_interface": 625,
+ "n_outside": 433,
+ "selected_inside_frac": 0.6181818181818182,
+ "selected_interface_frac": 0.21818181818181817,
+ "selected_outside_frac": 0.16363636363636364,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.6666666666666667,
+ "step": 8,
+ "n_elem": 1841,
+ "target_elements": 8000,
+ "gap": 6159,
+ "cutoff_score": 0.8967596292495728,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9769902229309082,
+ "score_mean": 0.17832674086093903,
+ "score_p50": 0.007429801393300295,
+ "score_p90": 0.7468664646148682,
+ "fraction_gt1": 0.0,
+ "n_inside": 979,
+ "n_interface": 702,
+ "n_outside": 495,
+ "selected_inside_frac": 0.26153846153846155,
+ "selected_interface_frac": 0.5384615384615384,
+ "selected_outside_frac": 0.2,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.7291666666666667,
+ "step": 9,
+ "n_elem": 2176,
+ "target_elements": 8000,
+ "gap": 5824,
+ "cutoff_score": 0.8906948566436768,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9699422717094421,
+ "score_mean": 0.20127707719802856,
+ "score_p50": 0.00978829525411129,
+ "score_p90": 0.801754891872406,
+ "fraction_gt1": 0.0,
+ "n_inside": 1096,
+ "n_interface": 884,
+ "n_outside": 578,
+ "selected_inside_frac": 0.6578947368421053,
+ "selected_interface_frac": 0.14473684210526316,
+ "selected_outside_frac": 0.19736842105263158,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.7291666666666667,
+ "step": 10,
+ "n_elem": 2558,
+ "target_elements": 8000,
+ "gap": 5442,
+ "cutoff_score": 0.9202131628990173,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9805102348327637,
+ "score_mean": 0.20411986112594604,
+ "score_p50": 0.006319739855825901,
+ "score_p90": 0.840757429599762,
+ "fraction_gt1": 0.0,
+ "n_inside": 1361,
+ "n_interface": 957,
+ "n_outside": 677,
+ "selected_inside_frac": 0.38202247191011235,
+ "selected_interface_frac": 0.34831460674157305,
+ "selected_outside_frac": 0.2696629213483146,
+ "selected_x_range": 0.8541666666666667,
+ "selected_y_range": 0.7604166666666667,
+ "step": 11,
+ "n_elem": 2995,
+ "target_elements": 8000,
+ "gap": 5005,
+ "cutoff_score": 0.9255944490432739,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9824479222297668,
+ "score_mean": 0.20855799317359924,
+ "score_p50": 0.003785583656281233,
+ "score_p90": 0.8408969044685364,
+ "fraction_gt1": 0.0,
+ "n_inside": 1563,
+ "n_interface": 1128,
+ "n_outside": 812,
+ "selected_inside_frac": 0.44761904761904764,
+ "selected_interface_frac": 0.37142857142857144,
+ "selected_outside_frac": 0.18095238095238095,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.8020833333333334,
+ "step": 12,
+ "n_elem": 3503,
+ "target_elements": 8000,
+ "gap": 4497,
+ "cutoff_score": 0.9223467111587524,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9758082628250122,
+ "score_mean": 0.2036719173192978,
+ "score_p50": 0.005538016092032194,
+ "score_p90": 0.8222132325172424,
+ "fraction_gt1": 0.0,
+ "n_inside": 1837,
+ "n_interface": 1339,
+ "n_outside": 927,
+ "selected_inside_frac": 0.6016260162601627,
+ "selected_interface_frac": 0.1951219512195122,
+ "selected_outside_frac": 0.2032520325203252,
+ "selected_x_range": 0.9270833333333334,
+ "selected_y_range": 0.8854166666666667,
+ "step": 13,
+ "n_elem": 4103,
+ "target_elements": 8000,
+ "gap": 3897,
+ "cutoff_score": 0.9193879961967468,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9855878353118896,
+ "score_mean": 0.196941539645195,
+ "score_p50": 0.004787079524248838,
+ "score_p90": 0.8203157186508179,
+ "fraction_gt1": 0.0,
+ "n_inside": 2212,
+ "n_interface": 1509,
+ "n_outside": 1054,
+ "selected_inside_frac": 0.6013986013986014,
+ "selected_interface_frac": 0.1958041958041958,
+ "selected_outside_frac": 0.20279720279720279,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8854166666666667,
+ "step": 14,
+ "n_elem": 4775,
+ "target_elements": 8000,
+ "gap": 3225,
+ "cutoff_score": 0.9134822487831116,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9812662601470947,
+ "score_mean": 0.18894731998443604,
+ "score_p50": 0.0045558735728263855,
+ "score_p90": 0.8109843134880066,
+ "fraction_gt1": 0.0,
+ "n_inside": 2676,
+ "n_interface": 1691,
+ "n_outside": 1206,
+ "selected_inside_frac": 0.3473053892215569,
+ "selected_interface_frac": 0.32335329341317365,
+ "selected_outside_frac": 0.32934131736526945,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 15,
+ "n_elem": 5573,
+ "target_elements": 8000,
+ "gap": 2427,
+ "cutoff_score": 0.8965919017791748,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.980190098285675,
+ "score_mean": 0.1811683624982834,
+ "score_p50": 0.0038233448285609484,
+ "score_p90": 0.79469895362854,
+ "fraction_gt1": 0.0,
+ "n_inside": 3025,
+ "n_interface": 1995,
+ "n_outside": 1494,
+ "selected_inside_frac": 0.4512820512820513,
+ "selected_interface_frac": 0.30256410256410254,
+ "selected_outside_frac": 0.24615384615384617,
+ "selected_x_range": 0.8072916666666667,
+ "selected_y_range": 0.9375,
+ "step": 16,
+ "n_elem": 6514,
+ "target_elements": 8000,
+ "gap": 1486,
+ "cutoff_score": 0.8953494429588318,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.983109712600708,
+ "score_mean": 0.1804215908050537,
+ "score_p50": 0.004541659727692604,
+ "score_p90": 0.7876580357551575,
+ "fraction_gt1": 0.0,
+ "n_inside": 3559,
+ "n_interface": 2331,
+ "n_outside": 1774,
+ "selected_inside_frac": 0.5982142857142857,
+ "selected_interface_frac": 0.23214285714285715,
+ "selected_outside_frac": 0.16964285714285715,
+ "selected_x_range": 0.7239583333333334,
+ "selected_y_range": 0.8020833333333334,
+ "step": 17,
+ "n_elem": 7664,
+ "target_elements": 8000,
+ "gap": 336,
+ "cutoff_score": 0.9354577660560608,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 77,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.09811010586294085,
+ "max_err": 0.34378700313176813,
+ "actual_elements": 8221,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.7110061645507812,
+ "score_mean": 3.725290298461914e-08,
+ "score_p50": -0.40810254216194153,
+ "score_p90": 2.0470337867736816,
+ "fraction_gt1": 0.150390625,
+ "n_inside": 72,
+ "n_interface": 207,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333337,
+ "selected_y_range": 0.22916666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 2.697849988937378,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.340188980102539,
+ "score_mean": 5.477183506741312e-08,
+ "score_p50": -0.3361074924468994,
+ "score_p90": 1.0792269706726074,
+ "fraction_gt1": 0.10810810810810811,
+ "n_inside": 143,
+ "n_interface": 216,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.22916666666666666,
+ "selected_y_range": 0.37500000000000006,
+ "step": 1,
+ "n_elem": 592,
+ "target_elements": 8000,
+ "gap": 7408,
+ "cutoff_score": 3.2638349533081055,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 4.517577171325684,
+ "score_mean": 1.6173423489362904e-07,
+ "score_p50": -0.2769426703453064,
+ "score_p90": 1.1121355295181274,
+ "fraction_gt1": 0.1111111111111111,
+ "n_inside": 226,
+ "n_interface": 225,
+ "n_outside": 233,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3020833333333333,
+ "selected_y_range": 0.28125,
+ "step": 2,
+ "n_elem": 684,
+ "target_elements": 8000,
+ "gap": 7316,
+ "cutoff_score": 1.8784675598144531,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8701382875442505,
+ "score_mean": 4.671057922678301e-07,
+ "score_p50": -0.07343477010726929,
+ "score_p90": 1.104683518409729,
+ "fraction_gt1": 0.13137755102040816,
+ "n_inside": 308,
+ "n_interface": 243,
+ "n_outside": 233,
+ "selected_inside_frac": 0.2608695652173913,
+ "selected_interface_frac": 0.7391304347826086,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.53125,
+ "selected_y_range": 0.34374999999999994,
+ "step": 3,
+ "n_elem": 784,
+ "target_elements": 8000,
+ "gap": 7216,
+ "cutoff_score": 1.362648844718933,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.3941020965576172,
+ "score_mean": 1.173753005900835e-07,
+ "score_p50": 0.05741983652114868,
+ "score_p90": 1.2493796348571777,
+ "fraction_gt1": 0.18681318681318682,
+ "n_inside": 333,
+ "n_interface": 344,
+ "n_outside": 233,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.25925925925925924,
+ "selected_outside_frac": 0.7407407407407407,
+ "selected_x_range": 0.4583333333333333,
+ "selected_y_range": 0.4791666666666667,
+ "step": 4,
+ "n_elem": 910,
+ "target_elements": 8000,
+ "gap": 7090,
+ "cutoff_score": 1.35160231590271,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.5600509643554688,
+ "score_mean": 0.0,
+ "score_p50": 0.18128374218940735,
+ "score_p90": 1.4483000040054321,
+ "fraction_gt1": 0.1702127659574468,
+ "n_inside": 333,
+ "n_interface": 386,
+ "n_outside": 315,
+ "selected_inside_frac": 0.6129032258064516,
+ "selected_interface_frac": 0.16129032258064516,
+ "selected_outside_frac": 0.22580645161290322,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.4583333333333333,
+ "step": 5,
+ "n_elem": 1034,
+ "target_elements": 8000,
+ "gap": 6966,
+ "cutoff_score": 1.4863216876983643,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.860123634338379,
+ "score_mean": -2.509669272399151e-08,
+ "score_p50": -0.3155466318130493,
+ "score_p90": 1.481797218322754,
+ "fraction_gt1": 0.15049342105263158,
+ "n_inside": 439,
+ "n_interface": 423,
+ "n_outside": 354,
+ "selected_inside_frac": 0.8055555555555556,
+ "selected_interface_frac": 0.1111111111111111,
+ "selected_outside_frac": 0.08333333333333333,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5,
+ "step": 6,
+ "n_elem": 1216,
+ "target_elements": 8000,
+ "gap": 6784,
+ "cutoff_score": 1.7651171684265137,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1355109214782715,
+ "score_mean": 1.3004650156744901e-07,
+ "score_p50": -0.22300684452056885,
+ "score_p90": 1.3632421493530273,
+ "fraction_gt1": 0.14417613636363635,
+ "n_inside": 573,
+ "n_interface": 461,
+ "n_outside": 374,
+ "selected_inside_frac": 0.5,
+ "selected_interface_frac": 0.11904761904761904,
+ "selected_outside_frac": 0.38095238095238093,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.5833333333333333,
+ "step": 7,
+ "n_elem": 1408,
+ "target_elements": 8000,
+ "gap": 6592,
+ "cutoff_score": 1.9283608198165894,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.374770164489746,
+ "score_mean": 1.876849786697221e-08,
+ "score_p50": -0.4521998465061188,
+ "score_p90": 1.2045361995697021,
+ "fraction_gt1": 0.13038130381303814,
+ "n_inside": 689,
+ "n_interface": 497,
+ "n_outside": 440,
+ "selected_inside_frac": 0.7708333333333334,
+ "selected_interface_frac": 0.16666666666666666,
+ "selected_outside_frac": 0.0625,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.625,
+ "step": 8,
+ "n_elem": 1626,
+ "target_elements": 8000,
+ "gap": 6374,
+ "cutoff_score": 2.03018856048584,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4022057056427,
+ "score_mean": -8.14671068383177e-08,
+ "score_p50": -0.48556792736053467,
+ "score_p90": 1.089400291442871,
+ "fraction_gt1": 0.11745862253069941,
+ "n_inside": 861,
+ "n_interface": 550,
+ "n_outside": 462,
+ "selected_inside_frac": 0.23214285714285715,
+ "selected_interface_frac": 0.6964285714285714,
+ "selected_outside_frac": 0.07142857142857142,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.6666666666666667,
+ "step": 9,
+ "n_elem": 1873,
+ "target_elements": 8000,
+ "gap": 6127,
+ "cutoff_score": 1.6611807346343994,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.446373462677002,
+ "score_mean": 1.1255907139684496e-07,
+ "score_p50": -0.43008819222450256,
+ "score_p90": 1.1370985507965088,
+ "fraction_gt1": 0.16505301982480405,
+ "n_inside": 915,
+ "n_interface": 763,
+ "n_outside": 491,
+ "selected_inside_frac": 0.6615384615384615,
+ "selected_interface_frac": 0.07692307692307693,
+ "selected_outside_frac": 0.26153846153846155,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.75,
+ "step": 10,
+ "n_elem": 2169,
+ "target_elements": 8000,
+ "gap": 5831,
+ "cutoff_score": 1.5717601776123047,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.084186553955078,
+ "score_mean": 1.4514900215090165e-07,
+ "score_p50": -0.30349212884902954,
+ "score_p90": 1.270097255706787,
+ "fraction_gt1": 0.178359096313912,
+ "n_inside": 1111,
+ "n_interface": 824,
+ "n_outside": 588,
+ "selected_inside_frac": 0.56,
+ "selected_interface_frac": 0.22666666666666666,
+ "selected_outside_frac": 0.21333333333333335,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.8333333333333333,
+ "step": 11,
+ "n_elem": 2523,
+ "target_elements": 8000,
+ "gap": 5477,
+ "cutoff_score": 1.4366371631622314,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.8389757871627808,
+ "score_mean": 8.430270526105232e-08,
+ "score_p50": -0.19519445300102234,
+ "score_p90": 1.2165948152542114,
+ "fraction_gt1": 0.17023480662983426,
+ "n_inside": 1313,
+ "n_interface": 911,
+ "n_outside": 672,
+ "selected_inside_frac": 0.18604651162790697,
+ "selected_interface_frac": 0.06976744186046512,
+ "selected_outside_frac": 0.7441860465116279,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8854166666666666,
+ "step": 12,
+ "n_elem": 2896,
+ "target_elements": 8000,
+ "gap": 5104,
+ "cutoff_score": 1.6247620582580566,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4575390815734863,
+ "score_mean": -7.404932489407656e-08,
+ "score_p50": -0.07583077251911163,
+ "score_p90": 1.1832822561264038,
+ "fraction_gt1": 0.16166211707612982,
+ "n_inside": 1427,
+ "n_interface": 942,
+ "n_outside": 928,
+ "selected_inside_frac": 0.336734693877551,
+ "selected_interface_frac": 0.4387755102040816,
+ "selected_outside_frac": 0.22448979591836735,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.96875,
+ "step": 13,
+ "n_elem": 3297,
+ "target_elements": 8000,
+ "gap": 4703,
+ "cutoff_score": 1.3059642314910889,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.051039457321167,
+ "score_mean": 0.0,
+ "score_p50": 0.07816922664642334,
+ "score_p90": 1.3062366247177124,
+ "fraction_gt1": 0.1861758474576271,
+ "n_inside": 1572,
+ "n_interface": 1176,
+ "n_outside": 1028,
+ "selected_inside_frac": 0.008849557522123894,
+ "selected_interface_frac": 0.40707964601769914,
+ "selected_outside_frac": 0.584070796460177,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.6145833333333334,
+ "step": 14,
+ "n_elem": 3776,
+ "target_elements": 8000,
+ "gap": 4224,
+ "cutoff_score": 1.4348245859146118,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.819593906402588,
+ "score_mean": 0.0,
+ "score_p50": -0.13710224628448486,
+ "score_p90": 1.3627980947494507,
+ "fraction_gt1": 0.172454523978266,
+ "n_inside": 1575,
+ "n_interface": 1389,
+ "n_outside": 1269,
+ "selected_inside_frac": 0.2698412698412698,
+ "selected_interface_frac": 0.3492063492063492,
+ "selected_outside_frac": 0.38095238095238093,
+ "selected_x_range": 0.9479166666666666,
+ "selected_y_range": 0.6666666666666667,
+ "step": 15,
+ "n_elem": 4233,
+ "target_elements": 8000,
+ "gap": 3767,
+ "cutoff_score": 1.4892622232437134,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.9561607837677002,
+ "score_mean": 5.05153359142696e-08,
+ "score_p50": -0.3441830277442932,
+ "score_p90": 1.3493530750274658,
+ "fraction_gt1": 0.15539002689840678,
+ "n_inside": 1725,
+ "n_interface": 1611,
+ "n_outside": 1497,
+ "selected_inside_frac": 0.9166666666666666,
+ "selected_interface_frac": 0.05555555555555555,
+ "selected_outside_frac": 0.027777777777777776,
+ "selected_x_range": 0.9479166666666666,
+ "selected_y_range": 0.7916666666666667,
+ "step": 16,
+ "n_elem": 4833,
+ "target_elements": 8000,
+ "gap": 3167,
+ "cutoff_score": 1.6567473411560059,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.382176637649536,
+ "score_mean": 8.910241433568444e-08,
+ "score_p50": -0.2477673441171646,
+ "score_p90": 1.2994858026504517,
+ "fraction_gt1": 0.147992700729927,
+ "n_inside": 2284,
+ "n_interface": 1670,
+ "n_outside": 1526,
+ "selected_inside_frac": 0.7317073170731707,
+ "selected_interface_frac": 0.20121951219512196,
+ "selected_outside_frac": 0.06707317073170732,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8333333333333334,
+ "step": 17,
+ "n_elem": 5480,
+ "target_elements": 8000,
+ "gap": 2520,
+ "cutoff_score": 1.7795394659042358,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.7420296669006348,
+ "score_mean": -7.764052156744583e-08,
+ "score_p50": -0.15786243975162506,
+ "score_p90": 1.2730014324188232,
+ "fraction_gt1": 0.12736524089680396,
+ "n_inside": 2832,
+ "n_interface": 1875,
+ "n_outside": 1582,
+ "selected_inside_frac": 0.6595744680851063,
+ "selected_interface_frac": 0.19148936170212766,
+ "selected_outside_frac": 0.14893617021276595,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9166666666666667,
+ "step": 18,
+ "n_elem": 6289,
+ "target_elements": 8000,
+ "gap": 1711,
+ "cutoff_score": 1.8055837154388428,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5053465366363525,
+ "score_mean": 1.706322549921424e-08,
+ "score_p50": -0.1452527493238449,
+ "score_p90": 1.104729175567627,
+ "fraction_gt1": 0.10986860497623707,
+ "n_inside": 3367,
+ "n_interface": 2060,
+ "n_outside": 1727,
+ "selected_inside_frac": 0.2102803738317757,
+ "selected_interface_frac": 0.5280373831775701,
+ "selected_outside_frac": 0.2616822429906542,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 19,
+ "n_elem": 7154,
+ "target_elements": 8000,
+ "gap": 846,
+ "cutoff_score": 1.4872583150863647,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 77,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.09636104673466866,
+ "max_err": 0.16651123590422537,
+ "actual_elements": 2049,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.32465219497680664,
+ "score_mean": 0.12804831564426422,
+ "score_p50": 0.11922118812799454,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 22,
+ "n_interface": 490,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.1875,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.32465219497680664,
+ "num_tied_at_cutoff": 22,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.22956375777721405,
+ "score_mean": 0.12070850282907486,
+ "score_p50": 0.11922118812799454,
+ "score_p90": 0.16232609748840332,
+ "fraction_gt1": 0.0,
+ "n_inside": 76,
+ "n_interface": 530,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.21875000000000006,
+ "selected_y_range": 0.21875,
+ "step": 1,
+ "n_elem": 606,
+ "target_elements": 2000,
+ "gap": 1394,
+ "cutoff_score": 0.16232609748840332,
+ "num_tied_at_cutoff": 67,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16232609748840332,
+ "score_mean": 0.10731500387191772,
+ "score_p50": 0.11922118812799454,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 159,
+ "n_interface": 587,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666669,
+ "selected_y_range": 0.16666666666666674,
+ "step": 2,
+ "n_elem": 746,
+ "target_elements": 2000,
+ "gap": 1254,
+ "cutoff_score": 0.16232609748840332,
+ "num_tied_at_cutoff": 29,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.09980987012386322,
+ "score_p50": 0.11922118812799454,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 599,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.4166666666666667,
+ "step": 3,
+ "n_elem": 860,
+ "target_elements": 2000,
+ "gap": 1140,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 460,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.09119747579097748,
+ "score_p50": 0.08430211246013641,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 745,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 1006,
+ "target_elements": 2000,
+ "gap": 994,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 404,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.08364971727132797,
+ "score_p50": 0.08116304874420166,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 921,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.6458333333333333,
+ "step": 5,
+ "n_elem": 1182,
+ "target_elements": 2000,
+ "gap": 818,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 336,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.07743353396654129,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 1119,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 6,
+ "n_elem": 1380,
+ "target_elements": 2000,
+ "gap": 620,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 262,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.07255163788795471,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 1328,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8125,
+ "step": 7,
+ "n_elem": 1589,
+ "target_elements": 2000,
+ "gap": 411,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 184,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.06849242001771927,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.11478187888860703,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 1552,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.3125,
+ "step": 8,
+ "n_elem": 1813,
+ "target_elements": 2000,
+ "gap": 187,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 110,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 80,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.09506732105153065,
+ "max_err": 0.16721824725195328,
+ "actual_elements": 2018,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9821029901504517,
+ "score_mean": 0.07783321291208267,
+ "score_p50": 2.0097765229820652e-08,
+ "score_p90": 0.09584707021713257,
+ "fraction_gt1": 0.0,
+ "n_inside": 22,
+ "n_interface": 490,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333331,
+ "selected_y_range": 0.14583333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9546433687210083,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9329842925071716,
+ "score_mean": 0.06416012346744537,
+ "score_p50": 1.32926615492579e-07,
+ "score_p90": 0.2305360734462738,
+ "fraction_gt1": 0.0,
+ "n_inside": 75,
+ "n_interface": 511,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2708333333333333,
+ "selected_y_range": 0.33333333333333326,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 2000,
+ "gap": 1414,
+ "cutoff_score": 0.7259058952331543,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9815008640289307,
+ "score_mean": 0.099002406001091,
+ "score_p50": 4.285671820980497e-06,
+ "score_p90": 0.44715315103530884,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 605,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.08333333333333326,
+ "selected_y_range": 0.125,
+ "step": 2,
+ "n_elem": 688,
+ "target_elements": 2000,
+ "gap": 1312,
+ "cutoff_score": 0.9544777274131775,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9818050265312195,
+ "score_mean": 0.12021996080875397,
+ "score_p50": 4.088251444045454e-05,
+ "score_p90": 0.5940529704093933,
+ "fraction_gt1": 0.0,
+ "n_inside": 167,
+ "n_interface": 613,
+ "n_outside": 0,
+ "selected_inside_frac": 0.08695652173913043,
+ "selected_interface_frac": 0.9130434782608695,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3958333333333333,
+ "selected_y_range": 0.39583333333333326,
+ "step": 3,
+ "n_elem": 780,
+ "target_elements": 2000,
+ "gap": 1220,
+ "cutoff_score": 0.9340391159057617,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9890180826187134,
+ "score_mean": 0.1389831006526947,
+ "score_p50": 0.0005004298291169107,
+ "score_p90": 0.7558014988899231,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 732,
+ "n_outside": 0,
+ "selected_inside_frac": 0.18518518518518517,
+ "selected_interface_frac": 0.8148148148148148,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4583333333333333,
+ "selected_y_range": 0.4791666666666667,
+ "step": 4,
+ "n_elem": 908,
+ "target_elements": 2000,
+ "gap": 1092,
+ "cutoff_score": 0.9604814648628235,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9899263381958008,
+ "score_mean": 0.11308097094297409,
+ "score_p50": 0.0011574248783290386,
+ "score_p90": 0.5443233251571655,
+ "fraction_gt1": 0.0,
+ "n_inside": 221,
+ "n_interface": 849,
+ "n_outside": 0,
+ "selected_inside_frac": 0.125,
+ "selected_interface_frac": 0.875,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 5,
+ "n_elem": 1070,
+ "target_elements": 2000,
+ "gap": 930,
+ "cutoff_score": 0.9113346934318542,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9807541370391846,
+ "score_mean": 0.1395498365163803,
+ "score_p50": 0.0015247991541400552,
+ "score_p90": 0.5655149221420288,
+ "fraction_gt1": 0.0,
+ "n_inside": 264,
+ "n_interface": 984,
+ "n_outside": 0,
+ "selected_inside_frac": 0.08108108108108109,
+ "selected_interface_frac": 0.918918918918919,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.625,
+ "step": 6,
+ "n_elem": 1248,
+ "target_elements": 2000,
+ "gap": 752,
+ "cutoff_score": 0.908212423324585,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9822873473167419,
+ "score_mean": 0.15300989151000977,
+ "score_p50": 0.0016388334333896637,
+ "score_p90": 0.7292371392250061,
+ "fraction_gt1": 0.0,
+ "n_inside": 298,
+ "n_interface": 1175,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3181818181818182,
+ "selected_interface_frac": 0.6818181818181818,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6770833333333334,
+ "selected_y_range": 0.6979166666666666,
+ "step": 7,
+ "n_elem": 1473,
+ "target_elements": 2000,
+ "gap": 527,
+ "cutoff_score": 0.8995940089225769,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9757710099220276,
+ "score_mean": 0.1574353128671646,
+ "score_p50": 0.0024409345351159573,
+ "score_p90": 0.7264753580093384,
+ "fraction_gt1": 0.0,
+ "n_inside": 385,
+ "n_interface": 1344,
+ "n_outside": 0,
+ "selected_inside_frac": 0.43137254901960786,
+ "selected_interface_frac": 0.5686274509803921,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.9375,
+ "step": 8,
+ "n_elem": 1729,
+ "target_elements": 2000,
+ "gap": 271,
+ "cutoff_score": 0.9197976589202881,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 80,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.09556022796677935,
+ "max_err": 0.16868352553502947,
+ "actual_elements": 2025,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 4.227579593658447,
+ "score_mean": -1.471489667892456e-07,
+ "score_p50": -0.26671987771987915,
+ "score_p90": -0.06873602420091629,
+ "fraction_gt1": 0.07421875,
+ "n_inside": 22,
+ "n_interface": 490,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333331,
+ "selected_y_range": 0.14583333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 4.170858383178711,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.7658605575561523,
+ "score_mean": -1.4321389585347788e-07,
+ "score_p50": -0.2648969888687134,
+ "score_p90": 0.9224929809570312,
+ "fraction_gt1": 0.09044368600682594,
+ "n_inside": 75,
+ "n_interface": 511,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7058823529411765,
+ "selected_interface_frac": 0.29411764705882354,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.17708333333333337,
+ "selected_y_range": 0.3125,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 2000,
+ "gap": 1414,
+ "cutoff_score": 2.1533021926879883,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.699018955230713,
+ "score_mean": -1.6845528705289325e-07,
+ "score_p50": -0.042577482759952545,
+ "score_p90": 0.9042503833770752,
+ "fraction_gt1": 0.09259259259259259,
+ "n_inside": 137,
+ "n_interface": 565,
+ "n_outside": 0,
+ "selected_inside_frac": 0.8571428571428571,
+ "selected_interface_frac": 0.14285714285714285,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666669,
+ "selected_y_range": 0.20833333333333326,
+ "step": 2,
+ "n_elem": 702,
+ "target_elements": 2000,
+ "gap": 1298,
+ "cutoff_score": 1.8528069257736206,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5305612087249756,
+ "score_mean": -2.45500331175208e-07,
+ "score_p50": 0.09128549695014954,
+ "score_p90": 1.0109800100326538,
+ "fraction_gt1": 0.10148514851485149,
+ "n_inside": 214,
+ "n_interface": 594,
+ "n_outside": 0,
+ "selected_inside_frac": 0.08333333333333333,
+ "selected_interface_frac": 0.9166666666666666,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3958333333333333,
+ "selected_y_range": 0.4166666666666667,
+ "step": 3,
+ "n_elem": 808,
+ "target_elements": 2000,
+ "gap": 1192,
+ "cutoff_score": 1.7132549285888672,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3075387477874756,
+ "score_mean": -1.9479304569358646e-07,
+ "score_p50": 0.22262661159038544,
+ "score_p90": 0.7512127757072449,
+ "fraction_gt1": 0.06914893617021277,
+ "n_inside": 221,
+ "n_interface": 719,
+ "n_outside": 0,
+ "selected_inside_frac": 0.14285714285714285,
+ "selected_interface_frac": 0.8571428571428571,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 940,
+ "target_elements": 2000,
+ "gap": 1060,
+ "cutoff_score": 1.7463200092315674,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1073780059814453,
+ "score_mean": -8.500717996184903e-08,
+ "score_p50": 0.25793567299842834,
+ "score_p90": 0.755977988243103,
+ "fraction_gt1": 0.0807799442896936,
+ "n_inside": 248,
+ "n_interface": 829,
+ "n_outside": 0,
+ "selected_inside_frac": 0.1875,
+ "selected_interface_frac": 0.8125,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.4583333333333333,
+ "step": 5,
+ "n_elem": 1077,
+ "target_elements": 2000,
+ "gap": 923,
+ "cutoff_score": 1.4576294422149658,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1039981842041016,
+ "score_mean": 0.0,
+ "score_p50": -0.18420849740505219,
+ "score_p90": 0.9310572147369385,
+ "fraction_gt1": 0.09033778476040849,
+ "n_inside": 282,
+ "n_interface": 991,
+ "n_outside": 0,
+ "selected_inside_frac": 0.34210526315789475,
+ "selected_interface_frac": 0.6578947368421053,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.75,
+ "step": 6,
+ "n_elem": 1273,
+ "target_elements": 2000,
+ "gap": 727,
+ "cutoff_score": 1.380401372909546,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.158226728439331,
+ "score_mean": 4.088088090270503e-08,
+ "score_p50": -0.11479982733726501,
+ "score_p90": 1.031760573387146,
+ "fraction_gt1": 0.10649698593436034,
+ "n_inside": 349,
+ "n_interface": 1144,
+ "n_outside": 0,
+ "selected_inside_frac": 0.20454545454545456,
+ "selected_interface_frac": 0.7954545454545454,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1493,
+ "target_elements": 2000,
+ "gap": 507,
+ "cutoff_score": 1.4437730312347412,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3143110275268555,
+ "score_mean": -1.2441644514638028e-07,
+ "score_p50": -0.41924598813056946,
+ "score_p90": 0.9875689744949341,
+ "fraction_gt1": 0.0978450786255096,
+ "n_inside": 407,
+ "n_interface": 1310,
+ "n_outside": 0,
+ "selected_inside_frac": 0.35294117647058826,
+ "selected_interface_frac": 0.6470588235294118,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9479166666666667,
+ "step": 8,
+ "n_elem": 1717,
+ "target_elements": 2000,
+ "gap": 283,
+ "cutoff_score": 1.2641571760177612,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 80,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.09546218062676809,
+ "max_err": 0.17179174070002987,
+ "actual_elements": 4012,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.32465219497680664,
+ "score_mean": 0.12804831564426422,
+ "score_p50": 0.11922118812799454,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 22,
+ "n_interface": 490,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.1875,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.32465219497680664,
+ "num_tied_at_cutoff": 22,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.22956375777721405,
+ "score_mean": 0.12070850282907486,
+ "score_p50": 0.11922118812799454,
+ "score_p90": 0.16232609748840332,
+ "fraction_gt1": 0.0,
+ "n_inside": 76,
+ "n_interface": 530,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.21875000000000006,
+ "selected_y_range": 0.21875,
+ "step": 1,
+ "n_elem": 606,
+ "target_elements": 4000,
+ "gap": 3394,
+ "cutoff_score": 0.16232609748840332,
+ "num_tied_at_cutoff": 67,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16232609748840332,
+ "score_mean": 0.10731500387191772,
+ "score_p50": 0.11922118812799454,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 159,
+ "n_interface": 587,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666669,
+ "selected_y_range": 0.16666666666666674,
+ "step": 2,
+ "n_elem": 746,
+ "target_elements": 4000,
+ "gap": 3254,
+ "cutoff_score": 0.16232609748840332,
+ "num_tied_at_cutoff": 29,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.09980987012386322,
+ "score_p50": 0.11922118812799454,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 599,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.4166666666666667,
+ "step": 3,
+ "n_elem": 860,
+ "target_elements": 4000,
+ "gap": 3140,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 460,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.09119747579097748,
+ "score_p50": 0.08430211246013641,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 745,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 1006,
+ "target_elements": 4000,
+ "gap": 2994,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 404,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.08364971727132797,
+ "score_p50": 0.08116304874420166,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 921,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.6458333333333333,
+ "step": 5,
+ "n_elem": 1182,
+ "target_elements": 4000,
+ "gap": 2818,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 336,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.07743353396654129,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 1119,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 6,
+ "n_elem": 1380,
+ "target_elements": 4000,
+ "gap": 2620,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 262,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.07255163788795471,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 1328,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8125,
+ "step": 7,
+ "n_elem": 1589,
+ "target_elements": 4000,
+ "gap": 2411,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 184,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.06849242001771927,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.11478187888860703,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 1552,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.3125,
+ "step": 8,
+ "n_elem": 1813,
+ "target_elements": 4000,
+ "gap": 2187,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 110,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.06520434468984604,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.08430211246013641,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 1788,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5409836065573771,
+ "selected_interface_frac": 0.45901639344262296,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.7864583333333333,
+ "step": 9,
+ "n_elem": 2049,
+ "target_elements": 4000,
+ "gap": 1951,
+ "cutoff_score": 0.11478187888860703,
+ "num_tied_at_cutoff": 73,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11478187888860703,
+ "score_mean": 0.06156054884195328,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.08116304874420166,
+ "fraction_gt1": 0.0,
+ "n_inside": 409,
+ "n_interface": 1928,
+ "n_outside": 0,
+ "selected_inside_frac": 0.34285714285714286,
+ "selected_interface_frac": 0.6571428571428571,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666666,
+ "selected_y_range": 0.625,
+ "step": 10,
+ "n_elem": 2337,
+ "target_elements": 4000,
+ "gap": 1663,
+ "cutoff_score": 0.08430211246013641,
+ "num_tied_at_cutoff": 119,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.08430211246013641,
+ "score_mean": 0.05794103816151619,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.05961059406399727,
+ "fraction_gt1": 0.0,
+ "n_inside": 499,
+ "n_interface": 2142,
+ "n_outside": 0,
+ "selected_inside_frac": 0.12658227848101267,
+ "selected_interface_frac": 0.8734177215189873,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2641,
+ "target_elements": 4000,
+ "gap": 1359,
+ "cutoff_score": 0.08116304874420166,
+ "num_tied_at_cutoff": 166,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.08116304874420166,
+ "score_mean": 0.05335132032632828,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.05961059406399727,
+ "fraction_gt1": 0.0,
+ "n_inside": 546,
+ "n_interface": 2522,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.21875000000000006,
+ "selected_y_range": 0.19270833333333326,
+ "step": 12,
+ "n_elem": 3068,
+ "target_elements": 4000,
+ "gap": 932,
+ "cutoff_score": 0.08116304874420166,
+ "num_tied_at_cutoff": 139,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.08116304874420166,
+ "score_mean": 0.04983370006084442,
+ "score_p50": 0.05739093944430351,
+ "score_p90": 0.05961059406399727,
+ "fraction_gt1": 0.0,
+ "n_inside": 930,
+ "n_interface": 2582,
+ "n_outside": 0,
+ "selected_inside_frac": 0.19047619047619047,
+ "selected_interface_frac": 0.8095238095238095,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.375,
+ "step": 13,
+ "n_elem": 3512,
+ "target_elements": 4000,
+ "gap": 488,
+ "cutoff_score": 0.05961059406399727,
+ "num_tied_at_cutoff": 1510,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.05961059406399727,
+ "score_mean": 0.04643619433045387,
+ "score_p50": 0.04215105623006821,
+ "score_p90": 0.05961059406399727,
+ "fraction_gt1": 0.0,
+ "n_inside": 1024,
+ "n_interface": 2960,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.17708333333333331,
+ "selected_y_range": 0.37499999999999994,
+ "step": 14,
+ "n_elem": 3984,
+ "target_elements": 4000,
+ "gap": 16,
+ "cutoff_score": 0.05961059406399727,
+ "num_tied_at_cutoff": 1378,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 80,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.09533262889735655,
+ "max_err": 0.17126953330554903,
+ "actual_elements": 4204,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9821029901504517,
+ "score_mean": 0.07783321291208267,
+ "score_p50": 2.0097765229820652e-08,
+ "score_p90": 0.09584707021713257,
+ "fraction_gt1": 0.0,
+ "n_inside": 22,
+ "n_interface": 490,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333331,
+ "selected_y_range": 0.14583333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9546433687210083,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9329842925071716,
+ "score_mean": 0.06416012346744537,
+ "score_p50": 1.32926615492579e-07,
+ "score_p90": 0.2305360734462738,
+ "fraction_gt1": 0.0,
+ "n_inside": 75,
+ "n_interface": 511,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2708333333333333,
+ "selected_y_range": 0.33333333333333326,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 4000,
+ "gap": 3414,
+ "cutoff_score": 0.7259058952331543,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9815008640289307,
+ "score_mean": 0.099002406001091,
+ "score_p50": 4.285671820980497e-06,
+ "score_p90": 0.44715315103530884,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 605,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.08333333333333326,
+ "selected_y_range": 0.125,
+ "step": 2,
+ "n_elem": 688,
+ "target_elements": 4000,
+ "gap": 3312,
+ "cutoff_score": 0.9544777274131775,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9818050265312195,
+ "score_mean": 0.12021996080875397,
+ "score_p50": 4.088251444045454e-05,
+ "score_p90": 0.5940529704093933,
+ "fraction_gt1": 0.0,
+ "n_inside": 167,
+ "n_interface": 613,
+ "n_outside": 0,
+ "selected_inside_frac": 0.08695652173913043,
+ "selected_interface_frac": 0.9130434782608695,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3958333333333333,
+ "selected_y_range": 0.39583333333333326,
+ "step": 3,
+ "n_elem": 780,
+ "target_elements": 4000,
+ "gap": 3220,
+ "cutoff_score": 0.9340391159057617,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9890180826187134,
+ "score_mean": 0.1389831006526947,
+ "score_p50": 0.0005004298291169107,
+ "score_p90": 0.7558014988899231,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 732,
+ "n_outside": 0,
+ "selected_inside_frac": 0.18518518518518517,
+ "selected_interface_frac": 0.8148148148148148,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4583333333333333,
+ "selected_y_range": 0.4791666666666667,
+ "step": 4,
+ "n_elem": 908,
+ "target_elements": 4000,
+ "gap": 3092,
+ "cutoff_score": 0.9604814648628235,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9899263381958008,
+ "score_mean": 0.11308097094297409,
+ "score_p50": 0.0011574248783290386,
+ "score_p90": 0.5443233251571655,
+ "fraction_gt1": 0.0,
+ "n_inside": 221,
+ "n_interface": 849,
+ "n_outside": 0,
+ "selected_inside_frac": 0.125,
+ "selected_interface_frac": 0.875,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 5,
+ "n_elem": 1070,
+ "target_elements": 4000,
+ "gap": 2930,
+ "cutoff_score": 0.9113346934318542,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9807541370391846,
+ "score_mean": 0.1395498365163803,
+ "score_p50": 0.0015247991541400552,
+ "score_p90": 0.5655149221420288,
+ "fraction_gt1": 0.0,
+ "n_inside": 264,
+ "n_interface": 984,
+ "n_outside": 0,
+ "selected_inside_frac": 0.08108108108108109,
+ "selected_interface_frac": 0.918918918918919,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.625,
+ "step": 6,
+ "n_elem": 1248,
+ "target_elements": 4000,
+ "gap": 2752,
+ "cutoff_score": 0.908212423324585,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9822873473167419,
+ "score_mean": 0.15300989151000977,
+ "score_p50": 0.0016388334333896637,
+ "score_p90": 0.7292371392250061,
+ "fraction_gt1": 0.0,
+ "n_inside": 298,
+ "n_interface": 1175,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3181818181818182,
+ "selected_interface_frac": 0.6818181818181818,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6770833333333334,
+ "selected_y_range": 0.6979166666666666,
+ "step": 7,
+ "n_elem": 1473,
+ "target_elements": 4000,
+ "gap": 2527,
+ "cutoff_score": 0.8995940089225769,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9757710099220276,
+ "score_mean": 0.1574353128671646,
+ "score_p50": 0.0024409345351159573,
+ "score_p90": 0.7264753580093384,
+ "fraction_gt1": 0.0,
+ "n_inside": 385,
+ "n_interface": 1344,
+ "n_outside": 0,
+ "selected_inside_frac": 0.43137254901960786,
+ "selected_interface_frac": 0.5686274509803921,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.9375,
+ "step": 8,
+ "n_elem": 1729,
+ "target_elements": 4000,
+ "gap": 2271,
+ "cutoff_score": 0.9197976589202881,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9782388210296631,
+ "score_mean": 0.15116707980632782,
+ "score_p50": 0.0019329879432916641,
+ "score_p90": 0.6929871439933777,
+ "fraction_gt1": 0.0,
+ "n_inside": 499,
+ "n_interface": 1519,
+ "n_outside": 0,
+ "selected_inside_frac": 0.08333333333333333,
+ "selected_interface_frac": 0.9166666666666666,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.84375,
+ "step": 9,
+ "n_elem": 2018,
+ "target_elements": 4000,
+ "gap": 1982,
+ "cutoff_score": 0.9081146121025085,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9748825430870056,
+ "score_mean": 0.14804613590240479,
+ "score_p50": 0.001002139295451343,
+ "score_p90": 0.6607406139373779,
+ "fraction_gt1": 0.0,
+ "n_inside": 531,
+ "n_interface": 1831,
+ "n_outside": 0,
+ "selected_inside_frac": 0.12857142857142856,
+ "selected_interface_frac": 0.8714285714285714,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.96875,
+ "step": 10,
+ "n_elem": 2362,
+ "target_elements": 4000,
+ "gap": 1638,
+ "cutoff_score": 0.8835397958755493,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.982468843460083,
+ "score_mean": 0.13893114030361176,
+ "score_p50": 0.0010292346123605967,
+ "score_p90": 0.6639980673789978,
+ "fraction_gt1": 0.0,
+ "n_inside": 608,
+ "n_interface": 2181,
+ "n_outside": 0,
+ "selected_inside_frac": 0.1686746987951807,
+ "selected_interface_frac": 0.8313253012048193,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333334,
+ "selected_y_range": 0.8854166666666666,
+ "step": 11,
+ "n_elem": 2789,
+ "target_elements": 4000,
+ "gap": 1211,
+ "cutoff_score": 0.8847959637641907,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9814808368682861,
+ "score_mean": 0.1319570690393448,
+ "score_p50": 0.001878571230918169,
+ "score_p90": 0.6132850050926208,
+ "fraction_gt1": 0.0,
+ "n_inside": 687,
+ "n_interface": 2574,
+ "n_outside": 0,
+ "selected_inside_frac": 0.20618556701030927,
+ "selected_interface_frac": 0.7938144329896907,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9479166666666667,
+ "step": 12,
+ "n_elem": 3261,
+ "target_elements": 4000,
+ "gap": 739,
+ "cutoff_score": 0.8626706600189209,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.957587480545044,
+ "score_mean": 0.13184647262096405,
+ "score_p50": 0.0028355710674077272,
+ "score_p90": 0.5908676981925964,
+ "fraction_gt1": 0.0,
+ "n_inside": 824,
+ "n_interface": 3025,
+ "n_outside": 0,
+ "selected_inside_frac": 0.18,
+ "selected_interface_frac": 0.82,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.9479166666666667,
+ "step": 13,
+ "n_elem": 3849,
+ "target_elements": 4000,
+ "gap": 151,
+ "cutoff_score": 0.8982212543487549,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 80,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.0954415916145591,
+ "max_err": 0.1713340030058702,
+ "actual_elements": 4115,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 4.227579593658447,
+ "score_mean": -1.471489667892456e-07,
+ "score_p50": -0.26671987771987915,
+ "score_p90": -0.06873602420091629,
+ "fraction_gt1": 0.07421875,
+ "n_inside": 22,
+ "n_interface": 490,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333331,
+ "selected_y_range": 0.14583333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 4.170858383178711,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.7658605575561523,
+ "score_mean": -1.4321389585347788e-07,
+ "score_p50": -0.2648969888687134,
+ "score_p90": 0.9224929809570312,
+ "fraction_gt1": 0.09044368600682594,
+ "n_inside": 75,
+ "n_interface": 511,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7058823529411765,
+ "selected_interface_frac": 0.29411764705882354,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.17708333333333337,
+ "selected_y_range": 0.3125,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 4000,
+ "gap": 3414,
+ "cutoff_score": 2.1533021926879883,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.699018955230713,
+ "score_mean": -1.6845528705289325e-07,
+ "score_p50": -0.042577482759952545,
+ "score_p90": 0.9042503833770752,
+ "fraction_gt1": 0.09259259259259259,
+ "n_inside": 137,
+ "n_interface": 565,
+ "n_outside": 0,
+ "selected_inside_frac": 0.8571428571428571,
+ "selected_interface_frac": 0.14285714285714285,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666669,
+ "selected_y_range": 0.20833333333333326,
+ "step": 2,
+ "n_elem": 702,
+ "target_elements": 4000,
+ "gap": 3298,
+ "cutoff_score": 1.8528069257736206,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5305612087249756,
+ "score_mean": -2.45500331175208e-07,
+ "score_p50": 0.09128549695014954,
+ "score_p90": 1.0109800100326538,
+ "fraction_gt1": 0.10148514851485149,
+ "n_inside": 214,
+ "n_interface": 594,
+ "n_outside": 0,
+ "selected_inside_frac": 0.08333333333333333,
+ "selected_interface_frac": 0.9166666666666666,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3958333333333333,
+ "selected_y_range": 0.4166666666666667,
+ "step": 3,
+ "n_elem": 808,
+ "target_elements": 4000,
+ "gap": 3192,
+ "cutoff_score": 1.7132549285888672,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3075387477874756,
+ "score_mean": -1.9479304569358646e-07,
+ "score_p50": 0.22262661159038544,
+ "score_p90": 0.7512127757072449,
+ "fraction_gt1": 0.06914893617021277,
+ "n_inside": 221,
+ "n_interface": 719,
+ "n_outside": 0,
+ "selected_inside_frac": 0.14285714285714285,
+ "selected_interface_frac": 0.8571428571428571,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 940,
+ "target_elements": 4000,
+ "gap": 3060,
+ "cutoff_score": 1.7463200092315674,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1073780059814453,
+ "score_mean": -8.500717996184903e-08,
+ "score_p50": 0.25793567299842834,
+ "score_p90": 0.755977988243103,
+ "fraction_gt1": 0.0807799442896936,
+ "n_inside": 248,
+ "n_interface": 829,
+ "n_outside": 0,
+ "selected_inside_frac": 0.1875,
+ "selected_interface_frac": 0.8125,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.4583333333333333,
+ "step": 5,
+ "n_elem": 1077,
+ "target_elements": 4000,
+ "gap": 2923,
+ "cutoff_score": 1.4576294422149658,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1039981842041016,
+ "score_mean": 0.0,
+ "score_p50": -0.18420849740505219,
+ "score_p90": 0.9310572147369385,
+ "fraction_gt1": 0.09033778476040849,
+ "n_inside": 282,
+ "n_interface": 991,
+ "n_outside": 0,
+ "selected_inside_frac": 0.34210526315789475,
+ "selected_interface_frac": 0.6578947368421053,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.75,
+ "step": 6,
+ "n_elem": 1273,
+ "target_elements": 4000,
+ "gap": 2727,
+ "cutoff_score": 1.380401372909546,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.158226728439331,
+ "score_mean": 4.088088090270503e-08,
+ "score_p50": -0.11479982733726501,
+ "score_p90": 1.031760573387146,
+ "fraction_gt1": 0.10649698593436034,
+ "n_inside": 349,
+ "n_interface": 1144,
+ "n_outside": 0,
+ "selected_inside_frac": 0.20454545454545456,
+ "selected_interface_frac": 0.7954545454545454,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1493,
+ "target_elements": 4000,
+ "gap": 2507,
+ "cutoff_score": 1.4437730312347412,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3143110275268555,
+ "score_mean": -1.2441644514638028e-07,
+ "score_p50": -0.41924598813056946,
+ "score_p90": 0.9875689744949341,
+ "fraction_gt1": 0.0978450786255096,
+ "n_inside": 407,
+ "n_interface": 1310,
+ "n_outside": 0,
+ "selected_inside_frac": 0.35294117647058826,
+ "selected_interface_frac": 0.6470588235294118,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9479166666666667,
+ "step": 8,
+ "n_elem": 1717,
+ "target_elements": 4000,
+ "gap": 2283,
+ "cutoff_score": 1.2641571760177612,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.459005355834961,
+ "score_mean": -9.04224535247522e-08,
+ "score_p50": -0.3694889545440674,
+ "score_p90": 1.163753867149353,
+ "fraction_gt1": 0.14419753086419754,
+ "n_inside": 519,
+ "n_interface": 1506,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4666666666666667,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.8229166666666667,
+ "step": 9,
+ "n_elem": 2025,
+ "target_elements": 4000,
+ "gap": 1975,
+ "cutoff_score": 1.3213250637054443,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4341721534729004,
+ "score_mean": -1.8073015439767914e-07,
+ "score_p50": -0.26439693570137024,
+ "score_p90": 1.1051527261734009,
+ "fraction_gt1": 0.1065989847715736,
+ "n_inside": 674,
+ "n_interface": 1690,
+ "n_outside": 0,
+ "selected_inside_frac": 0.04285714285714286,
+ "selected_interface_frac": 0.9571428571428572,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333334,
+ "selected_y_range": 0.96875,
+ "step": 10,
+ "n_elem": 2364,
+ "target_elements": 4000,
+ "gap": 1636,
+ "cutoff_score": 1.5189141035079956,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.21045184135437,
+ "score_mean": 1.8280840663464915e-07,
+ "score_p50": -0.16592779755592346,
+ "score_p90": 1.0019896030426025,
+ "fraction_gt1": 0.10108573567952078,
+ "n_inside": 691,
+ "n_interface": 1980,
+ "n_outside": 0,
+ "selected_inside_frac": 0.225,
+ "selected_interface_frac": 0.775,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8541666666666667,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2671,
+ "target_elements": 4000,
+ "gap": 1329,
+ "cutoff_score": 1.322674036026001,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.015519142150879,
+ "score_mean": -1.0776673065038267e-07,
+ "score_p50": -0.011012405157089233,
+ "score_p90": 0.9383413791656494,
+ "fraction_gt1": 0.092776886035313,
+ "n_inside": 805,
+ "n_interface": 2310,
+ "n_outside": 0,
+ "selected_inside_frac": 0.021505376344086023,
+ "selected_interface_frac": 0.978494623655914,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.90625,
+ "step": 12,
+ "n_elem": 3115,
+ "target_elements": 4000,
+ "gap": 885,
+ "cutoff_score": 1.4297152757644653,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.260051727294922,
+ "score_mean": 8.560330400086968e-08,
+ "score_p50": 0.1301216036081314,
+ "score_p90": 0.9925093650817871,
+ "fraction_gt1": 0.0973352033660589,
+ "n_inside": 812,
+ "n_interface": 2753,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3018867924528302,
+ "selected_interface_frac": 0.6981132075471698,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.6666666666666667,
+ "step": 13,
+ "n_elem": 3565,
+ "target_elements": 4000,
+ "gap": 435,
+ "cutoff_score": 1.5528295040130615,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 80,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.09579951221458523,
+ "max_err": 0.17249809654905437,
+ "actual_elements": 8013,
+ "num_steps": 21,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.32465219497680664,
+ "score_mean": 0.12804831564426422,
+ "score_p50": 0.11922118812799454,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 22,
+ "n_interface": 490,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.20833333333333331,
+ "selected_y_range": 0.1875,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.32465219497680664,
+ "num_tied_at_cutoff": 22,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.22956375777721405,
+ "score_mean": 0.12070850282907486,
+ "score_p50": 0.11922118812799454,
+ "score_p90": 0.16232609748840332,
+ "fraction_gt1": 0.0,
+ "n_inside": 76,
+ "n_interface": 530,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.21875000000000006,
+ "selected_y_range": 0.21875,
+ "step": 1,
+ "n_elem": 606,
+ "target_elements": 8000,
+ "gap": 7394,
+ "cutoff_score": 0.16232609748840332,
+ "num_tied_at_cutoff": 67,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16232609748840332,
+ "score_mean": 0.10731500387191772,
+ "score_p50": 0.11922118812799454,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 159,
+ "n_interface": 587,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666669,
+ "selected_y_range": 0.16666666666666674,
+ "step": 2,
+ "n_elem": 746,
+ "target_elements": 8000,
+ "gap": 7254,
+ "cutoff_score": 0.16232609748840332,
+ "num_tied_at_cutoff": 29,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.09980987012386322,
+ "score_p50": 0.11922118812799454,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 599,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4166666666666667,
+ "selected_y_range": 0.4166666666666667,
+ "step": 3,
+ "n_elem": 860,
+ "target_elements": 8000,
+ "gap": 7140,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 460,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.09119747579097748,
+ "score_p50": 0.08430211246013641,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 745,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5625,
+ "step": 4,
+ "n_elem": 1006,
+ "target_elements": 8000,
+ "gap": 6994,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 404,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.08364971727132797,
+ "score_p50": 0.08116304874420166,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 921,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333333,
+ "selected_y_range": 0.6458333333333333,
+ "step": 5,
+ "n_elem": 1182,
+ "target_elements": 8000,
+ "gap": 6818,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 336,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.07743353396654129,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 1119,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.7083333333333333,
+ "step": 6,
+ "n_elem": 1380,
+ "target_elements": 8000,
+ "gap": 6620,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 262,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.07255163788795471,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.11922118812799454,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 1328,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8125,
+ "step": 7,
+ "n_elem": 1589,
+ "target_elements": 8000,
+ "gap": 6411,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 184,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.06849242001771927,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.11478187888860703,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 1552,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.3125,
+ "step": 8,
+ "n_elem": 1813,
+ "target_elements": 8000,
+ "gap": 6187,
+ "cutoff_score": 0.11922118812799454,
+ "num_tied_at_cutoff": 110,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11922118812799454,
+ "score_mean": 0.06520434468984604,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.08430211246013641,
+ "fraction_gt1": 0.0,
+ "n_inside": 261,
+ "n_interface": 1788,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5409836065573771,
+ "selected_interface_frac": 0.45901639344262296,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.7864583333333333,
+ "step": 9,
+ "n_elem": 2049,
+ "target_elements": 8000,
+ "gap": 5951,
+ "cutoff_score": 0.11478187888860703,
+ "num_tied_at_cutoff": 73,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11478187888860703,
+ "score_mean": 0.06156054884195328,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.08116304874420166,
+ "fraction_gt1": 0.0,
+ "n_inside": 409,
+ "n_interface": 1928,
+ "n_outside": 0,
+ "selected_inside_frac": 0.34285714285714286,
+ "selected_interface_frac": 0.6571428571428571,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666666,
+ "selected_y_range": 0.625,
+ "step": 10,
+ "n_elem": 2337,
+ "target_elements": 8000,
+ "gap": 5663,
+ "cutoff_score": 0.08430211246013641,
+ "num_tied_at_cutoff": 119,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.08430211246013641,
+ "score_mean": 0.05794103816151619,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.05961059406399727,
+ "fraction_gt1": 0.0,
+ "n_inside": 499,
+ "n_interface": 2142,
+ "n_outside": 0,
+ "selected_inside_frac": 0.12658227848101267,
+ "selected_interface_frac": 0.8734177215189873,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2641,
+ "target_elements": 8000,
+ "gap": 5359,
+ "cutoff_score": 0.08116304874420166,
+ "num_tied_at_cutoff": 166,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.08116304874420166,
+ "score_mean": 0.05335132032632828,
+ "score_p50": 0.05961059406399727,
+ "score_p90": 0.05961059406399727,
+ "fraction_gt1": 0.0,
+ "n_inside": 546,
+ "n_interface": 2522,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.21875000000000006,
+ "selected_y_range": 0.19270833333333326,
+ "step": 12,
+ "n_elem": 3068,
+ "target_elements": 8000,
+ "gap": 4932,
+ "cutoff_score": 0.08116304874420166,
+ "num_tied_at_cutoff": 139,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.08116304874420166,
+ "score_mean": 0.04983370006084442,
+ "score_p50": 0.05739093944430351,
+ "score_p90": 0.05961059406399727,
+ "fraction_gt1": 0.0,
+ "n_inside": 930,
+ "n_interface": 2582,
+ "n_outside": 0,
+ "selected_inside_frac": 0.19047619047619047,
+ "selected_interface_frac": 0.8095238095238095,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3541666666666667,
+ "selected_y_range": 0.375,
+ "step": 13,
+ "n_elem": 3512,
+ "target_elements": 8000,
+ "gap": 4488,
+ "cutoff_score": 0.05961059406399727,
+ "num_tied_at_cutoff": 1510,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.05961059406399727,
+ "score_mean": 0.04643619433045387,
+ "score_p50": 0.04215105623006821,
+ "score_p90": 0.05961059406399727,
+ "fraction_gt1": 0.0,
+ "n_inside": 1024,
+ "n_interface": 2960,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.53125,
+ "selected_y_range": 0.5104166666666667,
+ "step": 14,
+ "n_elem": 3984,
+ "target_elements": 8000,
+ "gap": 4016,
+ "cutoff_score": 0.05961059406399727,
+ "num_tied_at_cutoff": 1378,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.05961059406399727,
+ "score_mean": 0.04344126954674721,
+ "score_p50": 0.04215105623006821,
+ "score_p90": 0.05961059406399727,
+ "fraction_gt1": 0.0,
+ "n_inside": 1024,
+ "n_interface": 3466,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6666666666666667,
+ "selected_y_range": 0.625,
+ "step": 15,
+ "n_elem": 4490,
+ "target_elements": 8000,
+ "gap": 3510,
+ "cutoff_score": 0.05961059406399727,
+ "num_tied_at_cutoff": 1210,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.05961059406399727,
+ "score_mean": 0.04076237231492996,
+ "score_p50": 0.04058152437210083,
+ "score_p90": 0.05961059406399727,
+ "fraction_gt1": 0.0,
+ "n_inside": 1024,
+ "n_interface": 4043,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.6875,
+ "step": 16,
+ "n_elem": 5067,
+ "target_elements": 8000,
+ "gap": 2933,
+ "cutoff_score": 0.05961059406399727,
+ "num_tied_at_cutoff": 1014,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.05961059406399727,
+ "score_mean": 0.038397423923015594,
+ "score_p50": 0.029805297031998634,
+ "score_p90": 0.05961059406399727,
+ "fraction_gt1": 0.0,
+ "n_inside": 1024,
+ "n_interface": 4692,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.7604166666666667,
+ "step": 17,
+ "n_elem": 5716,
+ "target_elements": 8000,
+ "gap": 2284,
+ "cutoff_score": 0.05961059406399727,
+ "num_tied_at_cutoff": 792,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.05961059406399727,
+ "score_mean": 0.03629414737224579,
+ "score_p50": 0.029805297031998634,
+ "score_p90": 0.05739093944430351,
+ "fraction_gt1": 0.0,
+ "n_inside": 1024,
+ "n_interface": 5424,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8541666666666667,
+ "step": 18,
+ "n_elem": 6448,
+ "target_elements": 8000,
+ "gap": 1552,
+ "cutoff_score": 0.05961059406399727,
+ "num_tied_at_cutoff": 548,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.05961059406399727,
+ "score_mean": 0.034571323543787,
+ "score_p50": 0.029805297031998634,
+ "score_p90": 0.04215105623006821,
+ "fraction_gt1": 0.0,
+ "n_inside": 1024,
+ "n_interface": 6178,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.34375,
+ "step": 19,
+ "n_elem": 7202,
+ "target_elements": 8000,
+ "gap": 798,
+ "cutoff_score": 0.05961059406399727,
+ "num_tied_at_cutoff": 300,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.05961059406399727,
+ "score_mean": 0.03311043232679367,
+ "score_p50": 0.029805297031998634,
+ "score_p90": 0.04215105623006821,
+ "fraction_gt1": 0.0,
+ "n_inside": 1024,
+ "n_interface": 6963,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.84375,
+ "selected_y_range": 0.0625,
+ "step": 20,
+ "n_elem": 7987,
+ "target_elements": 8000,
+ "gap": 13,
+ "cutoff_score": 0.05961059406399727,
+ "num_tied_at_cutoff": 56,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 80,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.09552705097680816,
+ "max_err": 0.17187966073816413,
+ "actual_elements": 8585,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9821029901504517,
+ "score_mean": 0.07783321291208267,
+ "score_p50": 2.0097765229820652e-08,
+ "score_p90": 0.09584707021713257,
+ "fraction_gt1": 0.0,
+ "n_inside": 22,
+ "n_interface": 490,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333331,
+ "selected_y_range": 0.14583333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9546433687210083,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9329842925071716,
+ "score_mean": 0.06416012346744537,
+ "score_p50": 1.32926615492579e-07,
+ "score_p90": 0.2305360734462738,
+ "fraction_gt1": 0.0,
+ "n_inside": 75,
+ "n_interface": 511,
+ "n_outside": 0,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2708333333333333,
+ "selected_y_range": 0.33333333333333326,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 8000,
+ "gap": 7414,
+ "cutoff_score": 0.7259058952331543,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9815008640289307,
+ "score_mean": 0.099002406001091,
+ "score_p50": 4.285671820980497e-06,
+ "score_p90": 0.44715315103530884,
+ "fraction_gt1": 0.0,
+ "n_inside": 83,
+ "n_interface": 605,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.08333333333333326,
+ "selected_y_range": 0.125,
+ "step": 2,
+ "n_elem": 688,
+ "target_elements": 8000,
+ "gap": 7312,
+ "cutoff_score": 0.9544777274131775,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9818050265312195,
+ "score_mean": 0.12021996080875397,
+ "score_p50": 4.088251444045454e-05,
+ "score_p90": 0.5940529704093933,
+ "fraction_gt1": 0.0,
+ "n_inside": 167,
+ "n_interface": 613,
+ "n_outside": 0,
+ "selected_inside_frac": 0.08695652173913043,
+ "selected_interface_frac": 0.9130434782608695,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3958333333333333,
+ "selected_y_range": 0.39583333333333326,
+ "step": 3,
+ "n_elem": 780,
+ "target_elements": 8000,
+ "gap": 7220,
+ "cutoff_score": 0.9340391159057617,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9890180826187134,
+ "score_mean": 0.1389831006526947,
+ "score_p50": 0.0005004298291169107,
+ "score_p90": 0.7558014988899231,
+ "fraction_gt1": 0.0,
+ "n_inside": 176,
+ "n_interface": 732,
+ "n_outside": 0,
+ "selected_inside_frac": 0.18518518518518517,
+ "selected_interface_frac": 0.8148148148148148,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.4583333333333333,
+ "selected_y_range": 0.4791666666666667,
+ "step": 4,
+ "n_elem": 908,
+ "target_elements": 8000,
+ "gap": 7092,
+ "cutoff_score": 0.9604814648628235,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9899263381958008,
+ "score_mean": 0.11308097094297409,
+ "score_p50": 0.0011574248783290386,
+ "score_p90": 0.5443233251571655,
+ "fraction_gt1": 0.0,
+ "n_inside": 221,
+ "n_interface": 849,
+ "n_outside": 0,
+ "selected_inside_frac": 0.125,
+ "selected_interface_frac": 0.875,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.5208333333333333,
+ "step": 5,
+ "n_elem": 1070,
+ "target_elements": 8000,
+ "gap": 6930,
+ "cutoff_score": 0.9113346934318542,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9807541370391846,
+ "score_mean": 0.1395498365163803,
+ "score_p50": 0.0015247991541400552,
+ "score_p90": 0.5655149221420288,
+ "fraction_gt1": 0.0,
+ "n_inside": 264,
+ "n_interface": 984,
+ "n_outside": 0,
+ "selected_inside_frac": 0.08108108108108109,
+ "selected_interface_frac": 0.918918918918919,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.625,
+ "step": 6,
+ "n_elem": 1248,
+ "target_elements": 8000,
+ "gap": 6752,
+ "cutoff_score": 0.908212423324585,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9822873473167419,
+ "score_mean": 0.15300989151000977,
+ "score_p50": 0.0016388334333896637,
+ "score_p90": 0.7292371392250061,
+ "fraction_gt1": 0.0,
+ "n_inside": 298,
+ "n_interface": 1175,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3181818181818182,
+ "selected_interface_frac": 0.6818181818181818,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6770833333333334,
+ "selected_y_range": 0.6979166666666666,
+ "step": 7,
+ "n_elem": 1473,
+ "target_elements": 8000,
+ "gap": 6527,
+ "cutoff_score": 0.8995940089225769,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9757710099220276,
+ "score_mean": 0.1574353128671646,
+ "score_p50": 0.0024409345351159573,
+ "score_p90": 0.7264753580093384,
+ "fraction_gt1": 0.0,
+ "n_inside": 385,
+ "n_interface": 1344,
+ "n_outside": 0,
+ "selected_inside_frac": 0.43137254901960786,
+ "selected_interface_frac": 0.5686274509803921,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.9375,
+ "step": 8,
+ "n_elem": 1729,
+ "target_elements": 8000,
+ "gap": 6271,
+ "cutoff_score": 0.9197976589202881,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9782388210296631,
+ "score_mean": 0.15116707980632782,
+ "score_p50": 0.0019329879432916641,
+ "score_p90": 0.6929871439933777,
+ "fraction_gt1": 0.0,
+ "n_inside": 499,
+ "n_interface": 1519,
+ "n_outside": 0,
+ "selected_inside_frac": 0.08333333333333333,
+ "selected_interface_frac": 0.9166666666666666,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.84375,
+ "step": 9,
+ "n_elem": 2018,
+ "target_elements": 8000,
+ "gap": 5982,
+ "cutoff_score": 0.9081146121025085,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9748825430870056,
+ "score_mean": 0.14804613590240479,
+ "score_p50": 0.001002139295451343,
+ "score_p90": 0.6607406139373779,
+ "fraction_gt1": 0.0,
+ "n_inside": 531,
+ "n_interface": 1831,
+ "n_outside": 0,
+ "selected_inside_frac": 0.12857142857142856,
+ "selected_interface_frac": 0.8714285714285714,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.96875,
+ "step": 10,
+ "n_elem": 2362,
+ "target_elements": 8000,
+ "gap": 5638,
+ "cutoff_score": 0.8835397958755493,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.982468843460083,
+ "score_mean": 0.13893114030361176,
+ "score_p50": 0.0010292346123605967,
+ "score_p90": 0.6639980673789978,
+ "fraction_gt1": 0.0,
+ "n_inside": 608,
+ "n_interface": 2181,
+ "n_outside": 0,
+ "selected_inside_frac": 0.1686746987951807,
+ "selected_interface_frac": 0.8313253012048193,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7083333333333334,
+ "selected_y_range": 0.8854166666666666,
+ "step": 11,
+ "n_elem": 2789,
+ "target_elements": 8000,
+ "gap": 5211,
+ "cutoff_score": 0.8847959637641907,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9814808368682861,
+ "score_mean": 0.1319570690393448,
+ "score_p50": 0.001878571230918169,
+ "score_p90": 0.6132850050926208,
+ "fraction_gt1": 0.0,
+ "n_inside": 687,
+ "n_interface": 2574,
+ "n_outside": 0,
+ "selected_inside_frac": 0.20618556701030927,
+ "selected_interface_frac": 0.7938144329896907,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.9479166666666667,
+ "step": 12,
+ "n_elem": 3261,
+ "target_elements": 8000,
+ "gap": 4739,
+ "cutoff_score": 0.8626706600189209,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.957587480545044,
+ "score_mean": 0.13184647262096405,
+ "score_p50": 0.0028355710674077272,
+ "score_p90": 0.5908676981925964,
+ "fraction_gt1": 0.0,
+ "n_inside": 824,
+ "n_interface": 3025,
+ "n_outside": 0,
+ "selected_inside_frac": 0.19130434782608696,
+ "selected_interface_frac": 0.808695652173913,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.90625,
+ "selected_y_range": 0.9791666666666667,
+ "step": 13,
+ "n_elem": 3849,
+ "target_elements": 8000,
+ "gap": 4151,
+ "cutoff_score": 0.845250129699707,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9787337779998779,
+ "score_mean": 0.14517740905284882,
+ "score_p50": 0.003184977686032653,
+ "score_p90": 0.6427401304244995,
+ "fraction_gt1": 0.0,
+ "n_inside": 993,
+ "n_interface": 3606,
+ "n_outside": 0,
+ "selected_inside_frac": 0.145985401459854,
+ "selected_interface_frac": 0.8540145985401459,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.90625,
+ "step": 14,
+ "n_elem": 4599,
+ "target_elements": 8000,
+ "gap": 3401,
+ "cutoff_score": 0.8824692368507385,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9829402565956116,
+ "score_mean": 0.15984630584716797,
+ "score_p50": 0.002860019914805889,
+ "score_p90": 0.6781296133995056,
+ "fraction_gt1": 0.0,
+ "n_inside": 1107,
+ "n_interface": 4254,
+ "n_outside": 0,
+ "selected_inside_frac": 0.2,
+ "selected_interface_frac": 0.8,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 15,
+ "n_elem": 5361,
+ "target_elements": 8000,
+ "gap": 2639,
+ "cutoff_score": 0.8952045440673828,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9804539084434509,
+ "score_mean": 0.1639963537454605,
+ "score_p50": 0.003402052680030465,
+ "score_p90": 0.7210736870765686,
+ "fraction_gt1": 0.0,
+ "n_inside": 1321,
+ "n_interface": 4950,
+ "n_outside": 0,
+ "selected_inside_frac": 0.23404255319148937,
+ "selected_interface_frac": 0.7659574468085106,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.96875,
+ "step": 16,
+ "n_elem": 6271,
+ "target_elements": 8000,
+ "gap": 1729,
+ "cutoff_score": 0.8995922803878784,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.982296884059906,
+ "score_mean": 0.15913894772529602,
+ "score_p50": 0.004020564258098602,
+ "score_p90": 0.7007918357849121,
+ "fraction_gt1": 0.0,
+ "n_inside": 1570,
+ "n_interface": 5780,
+ "n_outside": 0,
+ "selected_inside_frac": 0.2916666666666667,
+ "selected_interface_frac": 0.7083333333333334,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.921875,
+ "step": 17,
+ "n_elem": 7350,
+ "target_elements": 8000,
+ "gap": 650,
+ "cutoff_score": 0.8929749131202698,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 80,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.09568767663738732,
+ "max_err": 0.17280081966903613,
+ "actual_elements": 8427,
+ "num_steps": 19,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 4.227579593658447,
+ "score_mean": -1.471489667892456e-07,
+ "score_p50": -0.26671987771987915,
+ "score_p90": -0.06873602420091629,
+ "fraction_gt1": 0.07421875,
+ "n_inside": 22,
+ "n_interface": 490,
+ "n_outside": 0,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333331,
+ "selected_y_range": 0.14583333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 4.170858383178711,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.7658605575561523,
+ "score_mean": -1.4321389585347788e-07,
+ "score_p50": -0.2648969888687134,
+ "score_p90": 0.9224929809570312,
+ "fraction_gt1": 0.09044368600682594,
+ "n_inside": 75,
+ "n_interface": 511,
+ "n_outside": 0,
+ "selected_inside_frac": 0.7058823529411765,
+ "selected_interface_frac": 0.29411764705882354,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.17708333333333337,
+ "selected_y_range": 0.3125,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 8000,
+ "gap": 7414,
+ "cutoff_score": 2.1533021926879883,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.699018955230713,
+ "score_mean": -1.6845528705289325e-07,
+ "score_p50": -0.042577482759952545,
+ "score_p90": 0.9042503833770752,
+ "fraction_gt1": 0.09259259259259259,
+ "n_inside": 137,
+ "n_interface": 565,
+ "n_outside": 0,
+ "selected_inside_frac": 0.8571428571428571,
+ "selected_interface_frac": 0.14285714285714285,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666669,
+ "selected_y_range": 0.20833333333333326,
+ "step": 2,
+ "n_elem": 702,
+ "target_elements": 8000,
+ "gap": 7298,
+ "cutoff_score": 1.8528069257736206,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.5305612087249756,
+ "score_mean": -2.45500331175208e-07,
+ "score_p50": 0.09128549695014954,
+ "score_p90": 1.0109800100326538,
+ "fraction_gt1": 0.10148514851485149,
+ "n_inside": 214,
+ "n_interface": 594,
+ "n_outside": 0,
+ "selected_inside_frac": 0.08333333333333333,
+ "selected_interface_frac": 0.9166666666666666,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3958333333333333,
+ "selected_y_range": 0.4166666666666667,
+ "step": 3,
+ "n_elem": 808,
+ "target_elements": 8000,
+ "gap": 7192,
+ "cutoff_score": 1.7132549285888672,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.3075387477874756,
+ "score_mean": -1.9479304569358646e-07,
+ "score_p50": 0.22262661159038544,
+ "score_p90": 0.7512127757072449,
+ "fraction_gt1": 0.06914893617021277,
+ "n_inside": 221,
+ "n_interface": 719,
+ "n_outside": 0,
+ "selected_inside_frac": 0.14285714285714285,
+ "selected_interface_frac": 0.8571428571428571,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5416666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 940,
+ "target_elements": 8000,
+ "gap": 7060,
+ "cutoff_score": 1.7463200092315674,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1073780059814453,
+ "score_mean": -8.500717996184903e-08,
+ "score_p50": 0.25793567299842834,
+ "score_p90": 0.755977988243103,
+ "fraction_gt1": 0.0807799442896936,
+ "n_inside": 248,
+ "n_interface": 829,
+ "n_outside": 0,
+ "selected_inside_frac": 0.1875,
+ "selected_interface_frac": 0.8125,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.625,
+ "selected_y_range": 0.4583333333333333,
+ "step": 5,
+ "n_elem": 1077,
+ "target_elements": 8000,
+ "gap": 6923,
+ "cutoff_score": 1.4576294422149658,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1039981842041016,
+ "score_mean": 0.0,
+ "score_p50": -0.18420849740505219,
+ "score_p90": 0.9310572147369385,
+ "fraction_gt1": 0.09033778476040849,
+ "n_inside": 282,
+ "n_interface": 991,
+ "n_outside": 0,
+ "selected_inside_frac": 0.34210526315789475,
+ "selected_interface_frac": 0.6578947368421053,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.75,
+ "step": 6,
+ "n_elem": 1273,
+ "target_elements": 8000,
+ "gap": 6727,
+ "cutoff_score": 1.380401372909546,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.158226728439331,
+ "score_mean": 4.088088090270503e-08,
+ "score_p50": -0.11479982733726501,
+ "score_p90": 1.031760573387146,
+ "fraction_gt1": 0.10649698593436034,
+ "n_inside": 349,
+ "n_interface": 1144,
+ "n_outside": 0,
+ "selected_inside_frac": 0.20454545454545456,
+ "selected_interface_frac": 0.7954545454545454,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1493,
+ "target_elements": 8000,
+ "gap": 6507,
+ "cutoff_score": 1.4437730312347412,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3143110275268555,
+ "score_mean": -1.2441644514638028e-07,
+ "score_p50": -0.41924598813056946,
+ "score_p90": 0.9875689744949341,
+ "fraction_gt1": 0.0978450786255096,
+ "n_inside": 407,
+ "n_interface": 1310,
+ "n_outside": 0,
+ "selected_inside_frac": 0.35294117647058826,
+ "selected_interface_frac": 0.6470588235294118,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9479166666666667,
+ "step": 8,
+ "n_elem": 1717,
+ "target_elements": 8000,
+ "gap": 6283,
+ "cutoff_score": 1.2641571760177612,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.459005355834961,
+ "score_mean": -9.04224535247522e-08,
+ "score_p50": -0.3694889545440674,
+ "score_p90": 1.163753867149353,
+ "fraction_gt1": 0.14419753086419754,
+ "n_inside": 519,
+ "n_interface": 1506,
+ "n_outside": 0,
+ "selected_inside_frac": 0.4666666666666667,
+ "selected_interface_frac": 0.5333333333333333,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.8229166666666667,
+ "step": 9,
+ "n_elem": 2025,
+ "target_elements": 8000,
+ "gap": 5975,
+ "cutoff_score": 1.3213250637054443,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.4341721534729004,
+ "score_mean": -1.8073015439767914e-07,
+ "score_p50": -0.26439693570137024,
+ "score_p90": 1.1051527261734009,
+ "fraction_gt1": 0.1065989847715736,
+ "n_inside": 674,
+ "n_interface": 1690,
+ "n_outside": 0,
+ "selected_inside_frac": 0.04285714285714286,
+ "selected_interface_frac": 0.9571428571428572,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333334,
+ "selected_y_range": 0.96875,
+ "step": 10,
+ "n_elem": 2364,
+ "target_elements": 8000,
+ "gap": 5636,
+ "cutoff_score": 1.5189141035079956,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.21045184135437,
+ "score_mean": 1.8280840663464915e-07,
+ "score_p50": -0.16592779755592346,
+ "score_p90": 1.0019896030426025,
+ "fraction_gt1": 0.10108573567952078,
+ "n_inside": 691,
+ "n_interface": 1980,
+ "n_outside": 0,
+ "selected_inside_frac": 0.225,
+ "selected_interface_frac": 0.775,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8541666666666667,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2671,
+ "target_elements": 8000,
+ "gap": 5329,
+ "cutoff_score": 1.322674036026001,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.015519142150879,
+ "score_mean": -1.0776673065038267e-07,
+ "score_p50": -0.011012405157089233,
+ "score_p90": 0.9383413791656494,
+ "fraction_gt1": 0.092776886035313,
+ "n_inside": 805,
+ "n_interface": 2310,
+ "n_outside": 0,
+ "selected_inside_frac": 0.021505376344086023,
+ "selected_interface_frac": 0.978494623655914,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.90625,
+ "step": 12,
+ "n_elem": 3115,
+ "target_elements": 8000,
+ "gap": 4885,
+ "cutoff_score": 1.4297152757644653,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.260051727294922,
+ "score_mean": 8.560330400086968e-08,
+ "score_p50": 0.1301216036081314,
+ "score_p90": 0.9925093650817871,
+ "fraction_gt1": 0.0973352033660589,
+ "n_inside": 812,
+ "n_interface": 2753,
+ "n_outside": 0,
+ "selected_inside_frac": 0.3018867924528302,
+ "selected_interface_frac": 0.6981132075471698,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.6666666666666667,
+ "step": 13,
+ "n_elem": 3565,
+ "target_elements": 8000,
+ "gap": 4435,
+ "cutoff_score": 1.5528295040130615,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5104830265045166,
+ "score_mean": -5.9329433810262344e-08,
+ "score_p50": -0.29029977321624756,
+ "score_p90": 0.8896360397338867,
+ "fraction_gt1": 0.08894289185905224,
+ "n_inside": 984,
+ "n_interface": 3131,
+ "n_outside": 0,
+ "selected_inside_frac": 0.5121951219512195,
+ "selected_interface_frac": 0.4878048780487805,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9791666666666667,
+ "step": 14,
+ "n_elem": 4115,
+ "target_elements": 8000,
+ "gap": 3885,
+ "cutoff_score": 1.5495760440826416,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.6397194862365723,
+ "score_mean": -1.8042487681668717e-07,
+ "score_p50": -0.24575351178646088,
+ "score_p90": 0.9297464489936829,
+ "fraction_gt1": 0.07580236486486487,
+ "n_inside": 1261,
+ "n_interface": 3475,
+ "n_outside": 0,
+ "selected_inside_frac": 0.14788732394366197,
+ "selected_interface_frac": 0.852112676056338,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 15,
+ "n_elem": 4736,
+ "target_elements": 8000,
+ "gap": 3264,
+ "cutoff_score": 1.5194531679153442,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4292285442352295,
+ "score_mean": -1.1215574602374545e-07,
+ "score_p50": -0.15270592272281647,
+ "score_p90": 0.9124791026115417,
+ "fraction_gt1": 0.07203234105108416,
+ "n_inside": 1375,
+ "n_interface": 4067,
+ "n_outside": 0,
+ "selected_inside_frac": 0.17791411042944785,
+ "selected_interface_frac": 0.8220858895705522,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 16,
+ "n_elem": 5442,
+ "target_elements": 8000,
+ "gap": 2558,
+ "cutoff_score": 1.4676207304000854,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1968626976013184,
+ "score_mean": 1.9290505193225727e-08,
+ "score_p50": -0.0244562029838562,
+ "score_p90": 0.8995385766029358,
+ "fraction_gt1": 0.07616940581542352,
+ "n_inside": 1540,
+ "n_interface": 4788,
+ "n_outside": 0,
+ "selected_inside_frac": 0.38095238095238093,
+ "selected_interface_frac": 0.6190476190476191,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 17,
+ "n_elem": 6328,
+ "target_elements": 8000,
+ "gap": 1672,
+ "cutoff_score": 1.41111421585083,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.260619878768921,
+ "score_mean": -3.337534337788384e-08,
+ "score_p50": 0.052007049322128296,
+ "score_p90": 1.0519661903381348,
+ "fraction_gt1": 0.12276144907723856,
+ "n_inside": 1852,
+ "n_interface": 5463,
+ "n_outside": 0,
+ "selected_inside_frac": 0.273972602739726,
+ "selected_interface_frac": 0.726027397260274,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.921875,
+ "step": 18,
+ "n_elem": 7315,
+ "target_elements": 8000,
+ "gap": 685,
+ "cutoff_score": 1.4661791324615479,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 80,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.06482073056173757,
+ "max_err": 0.22329974260293817,
+ "actual_elements": 2044,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.4572044014930725,
+ "score_mean": 0.26564478874206543,
+ "score_p50": 0.23580822348594666,
+ "score_p90": 0.4572044014930725,
+ "fraction_gt1": 0.0,
+ "n_inside": 69,
+ "n_interface": 358,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.37499999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.4572044014930725,
+ "num_tied_at_cutoff": 69,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.4572044014930725,
+ "score_mean": 0.23829776048660278,
+ "score_p50": 0.23580822348594666,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 133,
+ "n_interface": 414,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2708333333333333,
+ "selected_y_range": 0.2708333333333333,
+ "step": 1,
+ "n_elem": 632,
+ "target_elements": 2000,
+ "gap": 1368,
+ "cutoff_score": 0.4572044014930725,
+ "num_tied_at_cutoff": 33,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4572044014930725,
+ "score_mean": 0.22613388299942017,
+ "score_p50": 0.23580822348594666,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 229,
+ "n_interface": 418,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2916666666666667,
+ "selected_y_range": 0.22916666666666663,
+ "step": 2,
+ "n_elem": 732,
+ "target_elements": 2000,
+ "gap": 1268,
+ "cutoff_score": 0.3232923448085785,
+ "num_tied_at_cutoff": 28,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.2107333391904831,
+ "score_p50": 0.22860220074653625,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 322,
+ "n_interface": 431,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.47916666666666674,
+ "selected_y_range": 0.5208333333333333,
+ "step": 3,
+ "n_elem": 838,
+ "target_elements": 2000,
+ "gap": 1162,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 410,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.19200840592384338,
+ "score_p50": 0.22860220074653625,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 571,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 980,
+ "target_elements": 2000,
+ "gap": 1020,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 356,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.17598436772823334,
+ "score_p50": 0.16674159467220306,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 735,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.7708333333333333,
+ "step": 5,
+ "n_elem": 1144,
+ "target_elements": 2000,
+ "gap": 856,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 292,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.16181360185146332,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 932,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1341,
+ "target_elements": 2000,
+ "gap": 659,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 220,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.15041689574718475,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.22860220074653625,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 1148,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1557,
+ "target_elements": 2000,
+ "gap": 443,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 140,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.1409211903810501,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.22860220074653625,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 1338,
+ "n_outside": 135,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1797,
+ "target_elements": 2000,
+ "gap": 203,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 54,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.22860220074653625,
+ "score_mean": 0.13499371707439423,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.22860220074653625,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 1346,
+ "n_outside": 312,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.32291666666666674,
+ "selected_y_range": 0.3541666666666667,
+ "step": 9,
+ "n_elem": 1982,
+ "target_elements": 2000,
+ "gap": 18,
+ "cutoff_score": 0.22860220074653625,
+ "num_tied_at_cutoff": 203,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 83,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.05986718692266595,
+ "max_err": 0.22465038136300186,
+ "actual_elements": 2033,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.988832950592041,
+ "score_mean": 0.10231420397758484,
+ "score_p50": 2.2375148489572894e-07,
+ "score_p90": 0.6000185012817383,
+ "fraction_gt1": 0.0,
+ "n_inside": 69,
+ "n_interface": 358,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.12500000000000006,
+ "selected_y_range": 0.2916666666666667,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9711912274360657,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9865478873252869,
+ "score_mean": 0.07753472030162811,
+ "score_p50": 7.617565643158741e-06,
+ "score_p90": 0.18594060838222504,
+ "fraction_gt1": 0.0,
+ "n_inside": 129,
+ "n_interface": 374,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666663,
+ "selected_y_range": 0.37499999999999994,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 2000,
+ "gap": 1412,
+ "cutoff_score": 0.958835780620575,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9837666749954224,
+ "score_mean": 0.07040291279554367,
+ "score_p50": 0.0002114688541041687,
+ "score_p90": 0.19377905130386353,
+ "fraction_gt1": 0.0,
+ "n_inside": 209,
+ "n_interface": 384,
+ "n_outside": 85,
+ "selected_inside_frac": 0.05,
+ "selected_interface_frac": 0.95,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.21874999999999994,
+ "selected_y_range": 0.4583333333333333,
+ "step": 2,
+ "n_elem": 678,
+ "target_elements": 2000,
+ "gap": 1322,
+ "cutoff_score": 0.7808529734611511,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9851352572441101,
+ "score_mean": 0.17593802511692047,
+ "score_p50": 0.0005042410921305418,
+ "score_p90": 0.824576735496521,
+ "fraction_gt1": 0.0,
+ "n_inside": 221,
+ "n_interface": 482,
+ "n_outside": 85,
+ "selected_inside_frac": 0.4782608695652174,
+ "selected_interface_frac": 0.5217391304347826,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.46874999999999994,
+ "selected_y_range": 0.29166666666666674,
+ "step": 3,
+ "n_elem": 788,
+ "target_elements": 2000,
+ "gap": 1212,
+ "cutoff_score": 0.9602533578872681,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9886387586593628,
+ "score_mean": 0.1920272260904312,
+ "score_p50": 0.00022661250841338187,
+ "score_p90": 0.8787121772766113,
+ "fraction_gt1": 0.0,
+ "n_inside": 286,
+ "n_interface": 542,
+ "n_outside": 88,
+ "selected_inside_frac": 0.4074074074074074,
+ "selected_interface_frac": 0.48148148148148145,
+ "selected_outside_frac": 0.1111111111111111,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.6458333333333333,
+ "step": 4,
+ "n_elem": 916,
+ "target_elements": 2000,
+ "gap": 1084,
+ "cutoff_score": 0.962742030620575,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9777019023895264,
+ "score_mean": 0.17425929009914398,
+ "score_p50": 0.00013593390758614987,
+ "score_p90": 0.8889164924621582,
+ "fraction_gt1": 0.0,
+ "n_inside": 349,
+ "n_interface": 630,
+ "n_outside": 104,
+ "selected_inside_frac": 0.875,
+ "selected_interface_frac": 0.09375,
+ "selected_outside_frac": 0.03125,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.5208333333333333,
+ "step": 5,
+ "n_elem": 1083,
+ "target_elements": 2000,
+ "gap": 917,
+ "cutoff_score": 0.9630512595176697,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9946540594100952,
+ "score_mean": 0.1486591398715973,
+ "score_p50": 0.00032242201268672943,
+ "score_p90": 0.7933368682861328,
+ "fraction_gt1": 0.0,
+ "n_inside": 508,
+ "n_interface": 659,
+ "n_outside": 111,
+ "selected_inside_frac": 0.47368421052631576,
+ "selected_interface_frac": 0.5263157894736842,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.6875,
+ "step": 6,
+ "n_elem": 1278,
+ "target_elements": 2000,
+ "gap": 722,
+ "cutoff_score": 0.9565433859825134,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9867746829986572,
+ "score_mean": 0.1288749724626541,
+ "score_p50": 0.0008363041561096907,
+ "score_p90": 0.6740125417709351,
+ "fraction_gt1": 0.0,
+ "n_inside": 598,
+ "n_interface": 768,
+ "n_outside": 121,
+ "selected_inside_frac": 0.3181818181818182,
+ "selected_interface_frac": 0.4318181818181818,
+ "selected_outside_frac": 0.25,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.6979166666666666,
+ "step": 7,
+ "n_elem": 1487,
+ "target_elements": 2000,
+ "gap": 513,
+ "cutoff_score": 0.9232552647590637,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.990079402923584,
+ "score_mean": 0.1190110519528389,
+ "score_p50": 0.00097808672580868,
+ "score_p90": 0.5749855041503906,
+ "fraction_gt1": 0.0,
+ "n_inside": 680,
+ "n_interface": 886,
+ "n_outside": 165,
+ "selected_inside_frac": 0.3137254901960784,
+ "selected_interface_frac": 0.6862745098039216,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.7708333333333333,
+ "step": 8,
+ "n_elem": 1731,
+ "target_elements": 2000,
+ "gap": 269,
+ "cutoff_score": 0.8966287970542908,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 83,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.06099680085768606,
+ "max_err": 0.22991607305650397,
+ "actual_elements": 2074,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.906799077987671,
+ "score_mean": 1.8998980522155762e-07,
+ "score_p50": -0.38659024238586426,
+ "score_p90": 1.6617082357406616,
+ "fraction_gt1": 0.140625,
+ "n_inside": 69,
+ "n_interface": 358,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.12500000000000006,
+ "selected_y_range": 0.2916666666666667,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 2.8741655349731445,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.5705080032348633,
+ "score_mean": -9.082612706379223e-08,
+ "score_p50": -0.2723870277404785,
+ "score_p90": 0.4481663107872009,
+ "fraction_gt1": 0.08673469387755102,
+ "n_inside": 129,
+ "n_interface": 374,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666663,
+ "selected_y_range": 0.37499999999999994,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 2000,
+ "gap": 1412,
+ "cutoff_score": 3.5117502212524414,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 4.282808303833008,
+ "score_mean": 2.5318787066908044e-08,
+ "score_p50": -0.18743430078029633,
+ "score_p90": 0.9516360759735107,
+ "fraction_gt1": 0.08702064896755163,
+ "n_inside": 209,
+ "n_interface": 384,
+ "n_outside": 85,
+ "selected_inside_frac": 0.65,
+ "selected_interface_frac": 0.35,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.3541666666666667,
+ "step": 2,
+ "n_elem": 678,
+ "target_elements": 2000,
+ "gap": 1322,
+ "cutoff_score": 2.3425872325897217,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5228004455566406,
+ "score_mean": -1.8931499923269257e-08,
+ "score_p50": -0.012925267219543457,
+ "score_p90": 1.3363479375839233,
+ "fraction_gt1": 0.13647642679900746,
+ "n_inside": 268,
+ "n_interface": 453,
+ "n_outside": 85,
+ "selected_inside_frac": 0.375,
+ "selected_interface_frac": 0.625,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666663,
+ "selected_y_range": 0.26041666666666663,
+ "step": 3,
+ "n_elem": 806,
+ "target_elements": 2000,
+ "gap": 1194,
+ "cutoff_score": 1.545823574066162,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.5567243099212646,
+ "score_mean": 3.309932594675047e-08,
+ "score_p50": 0.11545901000499725,
+ "score_p90": 1.3734464645385742,
+ "fraction_gt1": 0.1735357917570499,
+ "n_inside": 306,
+ "n_interface": 531,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.7407407407407407,
+ "selected_outside_frac": 0.25925925925925924,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 922,
+ "target_elements": 2000,
+ "gap": 1078,
+ "cutoff_score": 1.5225231647491455,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0201010704040527,
+ "score_mean": 1.989041464867114e-07,
+ "score_p50": -0.3531358242034912,
+ "score_p90": 1.5627391338348389,
+ "fraction_gt1": 0.16945996275605213,
+ "n_inside": 306,
+ "n_interface": 650,
+ "n_outside": 118,
+ "selected_inside_frac": 0.78125,
+ "selected_interface_frac": 0.21875,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.5833333333333333,
+ "step": 5,
+ "n_elem": 1074,
+ "target_elements": 2000,
+ "gap": 926,
+ "cutoff_score": 1.659091830253601,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0206799507141113,
+ "score_mean": 7.359544440532773e-08,
+ "score_p50": -0.2959197163581848,
+ "score_p90": 1.6316787004470825,
+ "fraction_gt1": 0.15192926045016078,
+ "n_inside": 420,
+ "n_interface": 706,
+ "n_outside": 118,
+ "selected_inside_frac": 0.5945945945945946,
+ "selected_interface_frac": 0.40540540540540543,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.6458333333333333,
+ "step": 6,
+ "n_elem": 1244,
+ "target_elements": 2000,
+ "gap": 756,
+ "cutoff_score": 1.9364373683929443,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4089653491973877,
+ "score_mean": 1.2698021123469516e-07,
+ "score_p50": -0.1654352843761444,
+ "score_p90": 1.4062398672103882,
+ "fraction_gt1": 0.12968099861303745,
+ "n_inside": 541,
+ "n_interface": 773,
+ "n_outside": 128,
+ "selected_inside_frac": 0.6744186046511628,
+ "selected_interface_frac": 0.16279069767441862,
+ "selected_outside_frac": 0.16279069767441862,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.6666666666666667,
+ "step": 7,
+ "n_elem": 1442,
+ "target_elements": 2000,
+ "gap": 558,
+ "cutoff_score": 2.2961840629577637,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.7998287677764893,
+ "score_mean": 1.652576457900068e-07,
+ "score_p50": -0.5324622988700867,
+ "score_p90": 1.250737190246582,
+ "fraction_gt1": 0.12093862815884476,
+ "n_inside": 668,
+ "n_interface": 830,
+ "n_outside": 164,
+ "selected_inside_frac": 0.2857142857142857,
+ "selected_interface_frac": 0.6122448979591837,
+ "selected_outside_frac": 0.10204081632653061,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.875,
+ "step": 8,
+ "n_elem": 1662,
+ "target_elements": 2000,
+ "gap": 338,
+ "cutoff_score": 2.4061760902404785,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 3.0721640586853027,
+ "score_mean": 2.0716893800454272e-07,
+ "score_p50": -0.48573529720306396,
+ "score_p90": 1.250035285949707,
+ "fraction_gt1": 0.1629242819843342,
+ "n_inside": 749,
+ "n_interface": 981,
+ "n_outside": 185,
+ "selected_inside_frac": 0.39285714285714285,
+ "selected_interface_frac": 0.35714285714285715,
+ "selected_outside_frac": 0.25,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.8958333333333333,
+ "step": 9,
+ "n_elem": 1915,
+ "target_elements": 2000,
+ "gap": 85,
+ "cutoff_score": 2.2231221199035645,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 83,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.06198051006929236,
+ "max_err": 0.2287837330246149,
+ "actual_elements": 4148,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.4572044014930725,
+ "score_mean": 0.26564478874206543,
+ "score_p50": 0.23580822348594666,
+ "score_p90": 0.4572044014930725,
+ "fraction_gt1": 0.0,
+ "n_inside": 69,
+ "n_interface": 358,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.37499999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.4572044014930725,
+ "num_tied_at_cutoff": 69,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.4572044014930725,
+ "score_mean": 0.23829776048660278,
+ "score_p50": 0.23580822348594666,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 133,
+ "n_interface": 414,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2708333333333333,
+ "selected_y_range": 0.2708333333333333,
+ "step": 1,
+ "n_elem": 632,
+ "target_elements": 4000,
+ "gap": 3368,
+ "cutoff_score": 0.4572044014930725,
+ "num_tied_at_cutoff": 33,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4572044014930725,
+ "score_mean": 0.22613388299942017,
+ "score_p50": 0.23580822348594666,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 229,
+ "n_interface": 418,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2916666666666667,
+ "selected_y_range": 0.22916666666666663,
+ "step": 2,
+ "n_elem": 732,
+ "target_elements": 4000,
+ "gap": 3268,
+ "cutoff_score": 0.3232923448085785,
+ "num_tied_at_cutoff": 28,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.2107333391904831,
+ "score_p50": 0.22860220074653625,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 322,
+ "n_interface": 431,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.47916666666666674,
+ "selected_y_range": 0.5208333333333333,
+ "step": 3,
+ "n_elem": 838,
+ "target_elements": 4000,
+ "gap": 3162,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 410,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.19200840592384338,
+ "score_p50": 0.22860220074653625,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 571,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 980,
+ "target_elements": 4000,
+ "gap": 3020,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 356,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.17598436772823334,
+ "score_p50": 0.16674159467220306,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 735,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.7708333333333333,
+ "step": 5,
+ "n_elem": 1144,
+ "target_elements": 4000,
+ "gap": 2856,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 292,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.16181360185146332,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 932,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1341,
+ "target_elements": 4000,
+ "gap": 2659,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 220,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.15041689574718475,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.22860220074653625,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 1148,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1557,
+ "target_elements": 4000,
+ "gap": 2443,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 140,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.1409211903810501,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.22860220074653625,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 1338,
+ "n_outside": 135,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1797,
+ "target_elements": 4000,
+ "gap": 2203,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 54,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.22860220074653625,
+ "score_mean": 0.13499371707439423,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.22860220074653625,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 1346,
+ "n_outside": 312,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666674,
+ "selected_y_range": 0.3854166666666667,
+ "step": 9,
+ "n_elem": 1982,
+ "target_elements": 4000,
+ "gap": 2018,
+ "cutoff_score": 0.22860220074653625,
+ "num_tied_at_cutoff": 203,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.22860220074653625,
+ "score_mean": 0.12388596683740616,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.16164617240428925,
+ "fraction_gt1": 0.0,
+ "n_inside": 571,
+ "n_interface": 1477,
+ "n_outside": 312,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2916666666666667,
+ "selected_y_range": 0.2604166666666667,
+ "step": 10,
+ "n_elem": 2360,
+ "target_elements": 4000,
+ "gap": 1640,
+ "cutoff_score": 0.22860220074653625,
+ "num_tied_at_cutoff": 98,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.22860220074653625,
+ "score_mean": 0.11876687407493591,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.16164617240428925,
+ "fraction_gt1": 0.0,
+ "n_inside": 847,
+ "n_interface": 1477,
+ "n_outside": 312,
+ "selected_inside_frac": 0.22784810126582278,
+ "selected_interface_frac": 0.7721518987341772,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333334,
+ "selected_y_range": 0.7708333333333334,
+ "step": 11,
+ "n_elem": 2636,
+ "target_elements": 4000,
+ "gap": 1364,
+ "cutoff_score": 0.16674159467220306,
+ "num_tied_at_cutoff": 122,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16674159467220306,
+ "score_mean": 0.11175286769866943,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.11790411174297333,
+ "fraction_gt1": 0.0,
+ "n_inside": 915,
+ "n_interface": 1750,
+ "n_outside": 312,
+ "selected_inside_frac": 0.3146067415730337,
+ "selected_interface_frac": 0.34831460674157305,
+ "selected_outside_frac": 0.33707865168539325,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 2977,
+ "target_elements": 4000,
+ "gap": 1023,
+ "cutoff_score": 0.16164617240428925,
+ "num_tied_at_cutoff": 123,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16164617240428925,
+ "score_mean": 0.10442272573709488,
+ "score_p50": 0.11430110037326813,
+ "score_p90": 0.11790411174297333,
+ "fraction_gt1": 0.0,
+ "n_inside": 1051,
+ "n_interface": 1924,
+ "n_outside": 421,
+ "selected_inside_frac": 0.8910891089108911,
+ "selected_interface_frac": 0.10891089108910891,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.42708333333333326,
+ "selected_y_range": 0.4270833333333333,
+ "step": 13,
+ "n_elem": 3396,
+ "target_elements": 4000,
+ "gap": 604,
+ "cutoff_score": 0.11790411174297333,
+ "num_tied_at_cutoff": 1292,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11790411174297333,
+ "score_mean": 0.09846790134906769,
+ "score_p50": 0.11430110037326813,
+ "score_p90": 0.11790411174297333,
+ "fraction_gt1": 0.0,
+ "n_inside": 1395,
+ "n_interface": 2000,
+ "n_outside": 421,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.5104166666666667,
+ "step": 14,
+ "n_elem": 3816,
+ "target_elements": 4000,
+ "gap": 184,
+ "cutoff_score": 0.11790411174297333,
+ "num_tied_at_cutoff": 1260,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 83,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.06286807066523677,
+ "max_err": 0.2270919310542608,
+ "actual_elements": 4163,
+ "num_steps": 14,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.988832950592041,
+ "score_mean": 0.10231420397758484,
+ "score_p50": 2.2375148489572894e-07,
+ "score_p90": 0.6000185012817383,
+ "fraction_gt1": 0.0,
+ "n_inside": 69,
+ "n_interface": 358,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.12500000000000006,
+ "selected_y_range": 0.2916666666666667,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9711912274360657,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9865478873252869,
+ "score_mean": 0.07753472030162811,
+ "score_p50": 7.617565643158741e-06,
+ "score_p90": 0.18594060838222504,
+ "fraction_gt1": 0.0,
+ "n_inside": 129,
+ "n_interface": 374,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666663,
+ "selected_y_range": 0.37499999999999994,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 4000,
+ "gap": 3412,
+ "cutoff_score": 0.958835780620575,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9837666749954224,
+ "score_mean": 0.07040291279554367,
+ "score_p50": 0.0002114688541041687,
+ "score_p90": 0.19377905130386353,
+ "fraction_gt1": 0.0,
+ "n_inside": 209,
+ "n_interface": 384,
+ "n_outside": 85,
+ "selected_inside_frac": 0.05,
+ "selected_interface_frac": 0.95,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.21874999999999994,
+ "selected_y_range": 0.4583333333333333,
+ "step": 2,
+ "n_elem": 678,
+ "target_elements": 4000,
+ "gap": 3322,
+ "cutoff_score": 0.7808529734611511,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9851352572441101,
+ "score_mean": 0.17593802511692047,
+ "score_p50": 0.0005042410921305418,
+ "score_p90": 0.824576735496521,
+ "fraction_gt1": 0.0,
+ "n_inside": 221,
+ "n_interface": 482,
+ "n_outside": 85,
+ "selected_inside_frac": 0.4782608695652174,
+ "selected_interface_frac": 0.5217391304347826,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.46874999999999994,
+ "selected_y_range": 0.29166666666666674,
+ "step": 3,
+ "n_elem": 788,
+ "target_elements": 4000,
+ "gap": 3212,
+ "cutoff_score": 0.9602533578872681,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9886387586593628,
+ "score_mean": 0.1920272260904312,
+ "score_p50": 0.00022661250841338187,
+ "score_p90": 0.8787121772766113,
+ "fraction_gt1": 0.0,
+ "n_inside": 286,
+ "n_interface": 542,
+ "n_outside": 88,
+ "selected_inside_frac": 0.4074074074074074,
+ "selected_interface_frac": 0.48148148148148145,
+ "selected_outside_frac": 0.1111111111111111,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.6458333333333333,
+ "step": 4,
+ "n_elem": 916,
+ "target_elements": 4000,
+ "gap": 3084,
+ "cutoff_score": 0.962742030620575,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9777019023895264,
+ "score_mean": 0.17425929009914398,
+ "score_p50": 0.00013593390758614987,
+ "score_p90": 0.8889164924621582,
+ "fraction_gt1": 0.0,
+ "n_inside": 349,
+ "n_interface": 630,
+ "n_outside": 104,
+ "selected_inside_frac": 0.875,
+ "selected_interface_frac": 0.09375,
+ "selected_outside_frac": 0.03125,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.5208333333333333,
+ "step": 5,
+ "n_elem": 1083,
+ "target_elements": 4000,
+ "gap": 2917,
+ "cutoff_score": 0.9630512595176697,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9946540594100952,
+ "score_mean": 0.1486591398715973,
+ "score_p50": 0.00032242201268672943,
+ "score_p90": 0.7933368682861328,
+ "fraction_gt1": 0.0,
+ "n_inside": 508,
+ "n_interface": 659,
+ "n_outside": 111,
+ "selected_inside_frac": 0.47368421052631576,
+ "selected_interface_frac": 0.5263157894736842,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.6875,
+ "step": 6,
+ "n_elem": 1278,
+ "target_elements": 4000,
+ "gap": 2722,
+ "cutoff_score": 0.9565433859825134,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9867746829986572,
+ "score_mean": 0.1288749724626541,
+ "score_p50": 0.0008363041561096907,
+ "score_p90": 0.6740125417709351,
+ "fraction_gt1": 0.0,
+ "n_inside": 598,
+ "n_interface": 768,
+ "n_outside": 121,
+ "selected_inside_frac": 0.3181818181818182,
+ "selected_interface_frac": 0.4318181818181818,
+ "selected_outside_frac": 0.25,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.6979166666666666,
+ "step": 7,
+ "n_elem": 1487,
+ "target_elements": 4000,
+ "gap": 2513,
+ "cutoff_score": 0.9232552647590637,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.990079402923584,
+ "score_mean": 0.1190110519528389,
+ "score_p50": 0.00097808672580868,
+ "score_p90": 0.5749855041503906,
+ "fraction_gt1": 0.0,
+ "n_inside": 680,
+ "n_interface": 886,
+ "n_outside": 165,
+ "selected_inside_frac": 0.3137254901960784,
+ "selected_interface_frac": 0.6862745098039216,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.7708333333333333,
+ "step": 8,
+ "n_elem": 1731,
+ "target_elements": 4000,
+ "gap": 2269,
+ "cutoff_score": 0.8966287970542908,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9888027310371399,
+ "score_mean": 0.13762401044368744,
+ "score_p50": 0.0016003905329853296,
+ "score_p90": 0.6264175176620483,
+ "fraction_gt1": 0.0,
+ "n_inside": 772,
+ "n_interface": 1096,
+ "n_outside": 165,
+ "selected_inside_frac": 0.16666666666666666,
+ "selected_interface_frac": 0.55,
+ "selected_outside_frac": 0.2833333333333333,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.9375,
+ "step": 9,
+ "n_elem": 2033,
+ "target_elements": 4000,
+ "gap": 1967,
+ "cutoff_score": 0.9117987751960754,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9883720278739929,
+ "score_mean": 0.16345414519309998,
+ "score_p50": 0.002061601495370269,
+ "score_p90": 0.779996395111084,
+ "fraction_gt1": 0.0,
+ "n_inside": 836,
+ "n_interface": 1290,
+ "n_outside": 241,
+ "selected_inside_frac": 0.28169014084507044,
+ "selected_interface_frac": 0.676056338028169,
+ "selected_outside_frac": 0.04225352112676056,
+ "selected_x_range": 0.640625,
+ "selected_y_range": 0.8854166666666666,
+ "step": 10,
+ "n_elem": 2367,
+ "target_elements": 4000,
+ "gap": 1633,
+ "cutoff_score": 0.939951479434967,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884302616119385,
+ "score_mean": 0.17156733572483063,
+ "score_p50": 0.0018170650582760572,
+ "score_p90": 0.7874130010604858,
+ "fraction_gt1": 0.0,
+ "n_inside": 958,
+ "n_interface": 1582,
+ "n_outside": 260,
+ "selected_inside_frac": 0.6309523809523809,
+ "selected_interface_frac": 0.30952380952380953,
+ "selected_outside_frac": 0.05952380952380952,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2800,
+ "target_elements": 4000,
+ "gap": 1200,
+ "cutoff_score": 0.9455980062484741,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884505271911621,
+ "score_mean": 0.17462782561779022,
+ "score_p50": 0.0014809545828029513,
+ "score_p90": 0.8038174510002136,
+ "fraction_gt1": 0.0,
+ "n_inside": 1236,
+ "n_interface": 1767,
+ "n_outside": 295,
+ "selected_inside_frac": 0.4489795918367347,
+ "selected_interface_frac": 0.42857142857142855,
+ "selected_outside_frac": 0.12244897959183673,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.96875,
+ "step": 12,
+ "n_elem": 3298,
+ "target_elements": 4000,
+ "gap": 702,
+ "cutoff_score": 0.9396247267723083,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9921310544013977,
+ "score_mean": 0.15963943302631378,
+ "score_p50": 0.0008979042759165168,
+ "score_p90": 0.7592089176177979,
+ "fraction_gt1": 0.0,
+ "n_inside": 1492,
+ "n_interface": 2032,
+ "n_outside": 353,
+ "selected_inside_frac": 0.36585365853658536,
+ "selected_interface_frac": 0.6341463414634146,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.8333333333333333,
+ "step": 13,
+ "n_elem": 3877,
+ "target_elements": 4000,
+ "gap": 123,
+ "cutoff_score": 0.9576586484909058,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 83,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.06103681810660765,
+ "max_err": 0.22894264813432802,
+ "actual_elements": 4134,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.906799077987671,
+ "score_mean": 1.8998980522155762e-07,
+ "score_p50": -0.38659024238586426,
+ "score_p90": 1.6617082357406616,
+ "fraction_gt1": 0.140625,
+ "n_inside": 69,
+ "n_interface": 358,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.12500000000000006,
+ "selected_y_range": 0.2916666666666667,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 2.8741655349731445,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.5705080032348633,
+ "score_mean": -9.082612706379223e-08,
+ "score_p50": -0.2723870277404785,
+ "score_p90": 0.4481663107872009,
+ "fraction_gt1": 0.08673469387755102,
+ "n_inside": 129,
+ "n_interface": 374,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666663,
+ "selected_y_range": 0.37499999999999994,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 4000,
+ "gap": 3412,
+ "cutoff_score": 3.5117502212524414,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 4.282808303833008,
+ "score_mean": 2.5318787066908044e-08,
+ "score_p50": -0.18743430078029633,
+ "score_p90": 0.9516360759735107,
+ "fraction_gt1": 0.08702064896755163,
+ "n_inside": 209,
+ "n_interface": 384,
+ "n_outside": 85,
+ "selected_inside_frac": 0.65,
+ "selected_interface_frac": 0.35,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.3541666666666667,
+ "step": 2,
+ "n_elem": 678,
+ "target_elements": 4000,
+ "gap": 3322,
+ "cutoff_score": 2.3425872325897217,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5228004455566406,
+ "score_mean": -1.8931499923269257e-08,
+ "score_p50": -0.012925267219543457,
+ "score_p90": 1.3363479375839233,
+ "fraction_gt1": 0.13647642679900746,
+ "n_inside": 268,
+ "n_interface": 453,
+ "n_outside": 85,
+ "selected_inside_frac": 0.375,
+ "selected_interface_frac": 0.625,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666663,
+ "selected_y_range": 0.26041666666666663,
+ "step": 3,
+ "n_elem": 806,
+ "target_elements": 4000,
+ "gap": 3194,
+ "cutoff_score": 1.545823574066162,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.5567243099212646,
+ "score_mean": 3.309932594675047e-08,
+ "score_p50": 0.11545901000499725,
+ "score_p90": 1.3734464645385742,
+ "fraction_gt1": 0.1735357917570499,
+ "n_inside": 306,
+ "n_interface": 531,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.7407407407407407,
+ "selected_outside_frac": 0.25925925925925924,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 922,
+ "target_elements": 4000,
+ "gap": 3078,
+ "cutoff_score": 1.5225231647491455,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0201010704040527,
+ "score_mean": 1.989041464867114e-07,
+ "score_p50": -0.3531358242034912,
+ "score_p90": 1.5627391338348389,
+ "fraction_gt1": 0.16945996275605213,
+ "n_inside": 306,
+ "n_interface": 650,
+ "n_outside": 118,
+ "selected_inside_frac": 0.78125,
+ "selected_interface_frac": 0.21875,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.5833333333333333,
+ "step": 5,
+ "n_elem": 1074,
+ "target_elements": 4000,
+ "gap": 2926,
+ "cutoff_score": 1.659091830253601,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0206799507141113,
+ "score_mean": 7.359544440532773e-08,
+ "score_p50": -0.2959197163581848,
+ "score_p90": 1.6316787004470825,
+ "fraction_gt1": 0.15192926045016078,
+ "n_inside": 420,
+ "n_interface": 706,
+ "n_outside": 118,
+ "selected_inside_frac": 0.5945945945945946,
+ "selected_interface_frac": 0.40540540540540543,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.6458333333333333,
+ "step": 6,
+ "n_elem": 1244,
+ "target_elements": 4000,
+ "gap": 2756,
+ "cutoff_score": 1.9364373683929443,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4089653491973877,
+ "score_mean": 1.2698021123469516e-07,
+ "score_p50": -0.1654352843761444,
+ "score_p90": 1.4062398672103882,
+ "fraction_gt1": 0.12968099861303745,
+ "n_inside": 541,
+ "n_interface": 773,
+ "n_outside": 128,
+ "selected_inside_frac": 0.6744186046511628,
+ "selected_interface_frac": 0.16279069767441862,
+ "selected_outside_frac": 0.16279069767441862,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.6666666666666667,
+ "step": 7,
+ "n_elem": 1442,
+ "target_elements": 4000,
+ "gap": 2558,
+ "cutoff_score": 2.2961840629577637,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.7998287677764893,
+ "score_mean": 1.652576457900068e-07,
+ "score_p50": -0.5324622988700867,
+ "score_p90": 1.250737190246582,
+ "fraction_gt1": 0.12093862815884476,
+ "n_inside": 668,
+ "n_interface": 830,
+ "n_outside": 164,
+ "selected_inside_frac": 0.2857142857142857,
+ "selected_interface_frac": 0.6122448979591837,
+ "selected_outside_frac": 0.10204081632653061,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.875,
+ "step": 8,
+ "n_elem": 1662,
+ "target_elements": 4000,
+ "gap": 2338,
+ "cutoff_score": 2.4061760902404785,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 3.0721640586853027,
+ "score_mean": 2.0716893800454272e-07,
+ "score_p50": -0.48573529720306396,
+ "score_p90": 1.250035285949707,
+ "fraction_gt1": 0.1629242819843342,
+ "n_inside": 749,
+ "n_interface": 981,
+ "n_outside": 185,
+ "selected_inside_frac": 0.21052631578947367,
+ "selected_interface_frac": 0.6491228070175439,
+ "selected_outside_frac": 0.14035087719298245,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.9375,
+ "step": 9,
+ "n_elem": 1915,
+ "target_elements": 4000,
+ "gap": 2085,
+ "cutoff_score": 2.1208713054656982,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.8149662017822266,
+ "score_mean": -9.570925385560258e-08,
+ "score_p50": -0.3989048898220062,
+ "score_p90": 1.3673714399337769,
+ "fraction_gt1": 0.14695340501792115,
+ "n_inside": 806,
+ "n_interface": 1202,
+ "n_outside": 224,
+ "selected_inside_frac": 0.3181818181818182,
+ "selected_interface_frac": 0.5909090909090909,
+ "selected_outside_frac": 0.09090909090909091,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.8854166666666667,
+ "step": 10,
+ "n_elem": 2232,
+ "target_elements": 4000,
+ "gap": 1768,
+ "cutoff_score": 1.8724713325500488,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4196910858154297,
+ "score_mean": 2.355660200237253e-08,
+ "score_p50": -0.26925909519195557,
+ "score_p90": 1.2042418718338013,
+ "fraction_gt1": 0.1543805480509456,
+ "n_inside": 914,
+ "n_interface": 1414,
+ "n_outside": 263,
+ "selected_inside_frac": 0.5324675324675324,
+ "selected_interface_frac": 0.4025974025974026,
+ "selected_outside_frac": 0.06493506493506493,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.90625,
+ "step": 11,
+ "n_elem": 2591,
+ "target_elements": 4000,
+ "gap": 1409,
+ "cutoff_score": 1.8407961130142212,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3122382164001465,
+ "score_mean": 2.0550557167098304e-07,
+ "score_p50": -0.1302887499332428,
+ "score_p90": 1.3118535280227661,
+ "fraction_gt1": 0.14814814814814814,
+ "n_inside": 1087,
+ "n_interface": 1592,
+ "n_outside": 291,
+ "selected_inside_frac": 0.5056179775280899,
+ "selected_interface_frac": 0.2696629213483146,
+ "selected_outside_frac": 0.2247191011235955,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 12,
+ "n_elem": 2970,
+ "target_elements": 4000,
+ "gap": 1030,
+ "cutoff_score": 1.7185726165771484,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5048880577087402,
+ "score_mean": 2.883267029574199e-07,
+ "score_p50": 0.038592398166656494,
+ "score_p90": 1.3647809028625488,
+ "fraction_gt1": 0.18452908178328906,
+ "n_inside": 1307,
+ "n_interface": 1710,
+ "n_outside": 370,
+ "selected_inside_frac": 0.12871287128712872,
+ "selected_interface_frac": 0.8118811881188119,
+ "selected_outside_frac": 0.0594059405940594,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.84375,
+ "step": 13,
+ "n_elem": 3387,
+ "target_elements": 4000,
+ "gap": 613,
+ "cutoff_score": 1.5074338912963867,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3310132026672363,
+ "score_mean": 1.5755074400658486e-07,
+ "score_p50": -0.26968634128570557,
+ "score_p90": 1.4826689958572388,
+ "fraction_gt1": 0.16726897263810014,
+ "n_inside": 1365,
+ "n_interface": 2106,
+ "n_outside": 403,
+ "selected_inside_frac": 0.14285714285714285,
+ "selected_interface_frac": 0.6666666666666666,
+ "selected_outside_frac": 0.19047619047619047,
+ "selected_x_range": 0.8333333333333334,
+ "selected_y_range": 0.9791666666666667,
+ "step": 14,
+ "n_elem": 3874,
+ "target_elements": 4000,
+ "gap": 126,
+ "cutoff_score": 1.6821870803833008,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 83,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.061052471580232,
+ "max_err": 0.23255136324154418,
+ "actual_elements": 8390,
+ "num_steps": 21,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.4572044014930725,
+ "score_mean": 0.26564478874206543,
+ "score_p50": 0.23580822348594666,
+ "score_p90": 0.4572044014930725,
+ "fraction_gt1": 0.0,
+ "n_inside": 69,
+ "n_interface": 358,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.375,
+ "selected_y_range": 0.37499999999999994,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.4572044014930725,
+ "num_tied_at_cutoff": 69,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.4572044014930725,
+ "score_mean": 0.23829776048660278,
+ "score_p50": 0.23580822348594666,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 133,
+ "n_interface": 414,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2708333333333333,
+ "selected_y_range": 0.2708333333333333,
+ "step": 1,
+ "n_elem": 632,
+ "target_elements": 8000,
+ "gap": 7368,
+ "cutoff_score": 0.4572044014930725,
+ "num_tied_at_cutoff": 33,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4572044014930725,
+ "score_mean": 0.22613388299942017,
+ "score_p50": 0.23580822348594666,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 229,
+ "n_interface": 418,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2916666666666667,
+ "selected_y_range": 0.22916666666666663,
+ "step": 2,
+ "n_elem": 732,
+ "target_elements": 8000,
+ "gap": 7268,
+ "cutoff_score": 0.3232923448085785,
+ "num_tied_at_cutoff": 28,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.2107333391904831,
+ "score_p50": 0.22860220074653625,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 322,
+ "n_interface": 431,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.47916666666666674,
+ "selected_y_range": 0.5208333333333333,
+ "step": 3,
+ "n_elem": 838,
+ "target_elements": 8000,
+ "gap": 7162,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 410,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.19200840592384338,
+ "score_p50": 0.22860220074653625,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 571,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 980,
+ "target_elements": 8000,
+ "gap": 7020,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 356,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.17598436772823334,
+ "score_p50": 0.16674159467220306,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 735,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.7708333333333333,
+ "step": 5,
+ "n_elem": 1144,
+ "target_elements": 8000,
+ "gap": 6856,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 292,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.16181360185146332,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.23580822348594666,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 932,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 6,
+ "n_elem": 1341,
+ "target_elements": 8000,
+ "gap": 6659,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 220,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.15041689574718475,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.22860220074653625,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 1148,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.9375,
+ "step": 7,
+ "n_elem": 1557,
+ "target_elements": 8000,
+ "gap": 6443,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 140,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.23580822348594666,
+ "score_mean": 0.1409211903810501,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.22860220074653625,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 1338,
+ "n_outside": 135,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 8,
+ "n_elem": 1797,
+ "target_elements": 8000,
+ "gap": 6203,
+ "cutoff_score": 0.23580822348594666,
+ "num_tied_at_cutoff": 54,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.22860220074653625,
+ "score_mean": 0.13499371707439423,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.22860220074653625,
+ "fraction_gt1": 0.0,
+ "n_inside": 324,
+ "n_interface": 1346,
+ "n_outside": 312,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666674,
+ "selected_y_range": 0.3854166666666667,
+ "step": 9,
+ "n_elem": 1982,
+ "target_elements": 8000,
+ "gap": 6018,
+ "cutoff_score": 0.22860220074653625,
+ "num_tied_at_cutoff": 203,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.22860220074653625,
+ "score_mean": 0.12388596683740616,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.16164617240428925,
+ "fraction_gt1": 0.0,
+ "n_inside": 571,
+ "n_interface": 1477,
+ "n_outside": 312,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.2916666666666667,
+ "selected_y_range": 0.2604166666666667,
+ "step": 10,
+ "n_elem": 2360,
+ "target_elements": 8000,
+ "gap": 5640,
+ "cutoff_score": 0.22860220074653625,
+ "num_tied_at_cutoff": 98,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.22860220074653625,
+ "score_mean": 0.11876687407493591,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.16164617240428925,
+ "fraction_gt1": 0.0,
+ "n_inside": 847,
+ "n_interface": 1477,
+ "n_outside": 312,
+ "selected_inside_frac": 0.22784810126582278,
+ "selected_interface_frac": 0.7721518987341772,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7708333333333334,
+ "selected_y_range": 0.7708333333333334,
+ "step": 11,
+ "n_elem": 2636,
+ "target_elements": 8000,
+ "gap": 5364,
+ "cutoff_score": 0.16674159467220306,
+ "num_tied_at_cutoff": 122,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16674159467220306,
+ "score_mean": 0.11175286769866943,
+ "score_p50": 0.11790411174297333,
+ "score_p90": 0.11790411174297333,
+ "fraction_gt1": 0.0,
+ "n_inside": 915,
+ "n_interface": 1750,
+ "n_outside": 312,
+ "selected_inside_frac": 0.3146067415730337,
+ "selected_interface_frac": 0.34831460674157305,
+ "selected_outside_frac": 0.33707865168539325,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 12,
+ "n_elem": 2977,
+ "target_elements": 8000,
+ "gap": 5023,
+ "cutoff_score": 0.16164617240428925,
+ "num_tied_at_cutoff": 123,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.16164617240428925,
+ "score_mean": 0.10442272573709488,
+ "score_p50": 0.11430110037326813,
+ "score_p90": 0.11790411174297333,
+ "fraction_gt1": 0.0,
+ "n_inside": 1051,
+ "n_interface": 1924,
+ "n_outside": 421,
+ "selected_inside_frac": 0.8910891089108911,
+ "selected_interface_frac": 0.10891089108910891,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.42708333333333326,
+ "selected_y_range": 0.4270833333333333,
+ "step": 13,
+ "n_elem": 3396,
+ "target_elements": 8000,
+ "gap": 4604,
+ "cutoff_score": 0.11790411174297333,
+ "num_tied_at_cutoff": 1292,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11790411174297333,
+ "score_mean": 0.09846790134906769,
+ "score_p50": 0.11430110037326813,
+ "score_p90": 0.11790411174297333,
+ "fraction_gt1": 0.0,
+ "n_inside": 1395,
+ "n_interface": 2000,
+ "n_outside": 421,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.5625,
+ "step": 14,
+ "n_elem": 3816,
+ "target_elements": 8000,
+ "gap": 4184,
+ "cutoff_score": 0.11790411174297333,
+ "num_tied_at_cutoff": 1260,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11790411174297333,
+ "score_mean": 0.09144677966833115,
+ "score_p50": 0.08337079733610153,
+ "score_p90": 0.11790411174297333,
+ "fraction_gt1": 0.0,
+ "n_inside": 1395,
+ "n_interface": 2516,
+ "n_outside": 421,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.65625,
+ "selected_y_range": 0.65625,
+ "step": 15,
+ "n_elem": 4332,
+ "target_elements": 8000,
+ "gap": 3668,
+ "cutoff_score": 0.11790411174297333,
+ "num_tied_at_cutoff": 1080,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11790411174297333,
+ "score_mean": 0.08527347445487976,
+ "score_p50": 0.08337079733610153,
+ "score_p90": 0.11790411174297333,
+ "fraction_gt1": 0.0,
+ "n_inside": 1395,
+ "n_interface": 3100,
+ "n_outside": 421,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.7916666666666667,
+ "step": 16,
+ "n_elem": 4916,
+ "target_elements": 8000,
+ "gap": 3084,
+ "cutoff_score": 0.11790411174297333,
+ "num_tied_at_cutoff": 878,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11790411174297333,
+ "score_mean": 0.08015092462301254,
+ "score_p50": 0.08082308620214462,
+ "score_p90": 0.11790411174297333,
+ "fraction_gt1": 0.0,
+ "n_inside": 1395,
+ "n_interface": 3716,
+ "n_outside": 421,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.8541666666666667,
+ "selected_y_range": 0.8541666666666667,
+ "step": 17,
+ "n_elem": 5532,
+ "target_elements": 8000,
+ "gap": 2468,
+ "cutoff_score": 0.11790411174297333,
+ "num_tied_at_cutoff": 674,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11790411174297333,
+ "score_mean": 0.07571643590927124,
+ "score_p50": 0.058952055871486664,
+ "score_p90": 0.11430110037326813,
+ "fraction_gt1": 0.0,
+ "n_inside": 1395,
+ "n_interface": 4386,
+ "n_outside": 421,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.9479166666666667,
+ "step": 18,
+ "n_elem": 6202,
+ "target_elements": 8000,
+ "gap": 1798,
+ "cutoff_score": 0.11790411174297333,
+ "num_tied_at_cutoff": 460,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11790411174297333,
+ "score_mean": 0.07186073809862137,
+ "score_p50": 0.058952055871486664,
+ "score_p90": 0.11430110037326813,
+ "fraction_gt1": 0.0,
+ "n_inside": 1395,
+ "n_interface": 5070,
+ "n_outside": 465,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 19,
+ "n_elem": 6930,
+ "target_elements": 8000,
+ "gap": 1070,
+ "cutoff_score": 0.11790411174297333,
+ "num_tied_at_cutoff": 232,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.11790411174297333,
+ "score_mean": 0.06888992339372635,
+ "score_p50": 0.058952055871486664,
+ "score_p90": 0.08337079733610153,
+ "fraction_gt1": 0.0,
+ "n_inside": 1395,
+ "n_interface": 5077,
+ "n_outside": 1148,
+ "selected_inside_frac": 0.8888888888888888,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.1111111111111111,
+ "selected_x_range": 0.7916666666666667,
+ "selected_y_range": 0.7916666666666667,
+ "step": 20,
+ "n_elem": 7620,
+ "target_elements": 8000,
+ "gap": 380,
+ "cutoff_score": 0.11430110037326813,
+ "num_tied_at_cutoff": 680,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 83,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.062004119842661236,
+ "max_err": 0.233984146245873,
+ "actual_elements": 8591,
+ "num_steps": 18,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.988832950592041,
+ "score_mean": 0.10231420397758484,
+ "score_p50": 2.2375148489572894e-07,
+ "score_p90": 0.6000185012817383,
+ "fraction_gt1": 0.0,
+ "n_inside": 69,
+ "n_interface": 358,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.12500000000000006,
+ "selected_y_range": 0.2916666666666667,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9711912274360657,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9865478873252869,
+ "score_mean": 0.07753472030162811,
+ "score_p50": 7.617565643158741e-06,
+ "score_p90": 0.18594060838222504,
+ "fraction_gt1": 0.0,
+ "n_inside": 129,
+ "n_interface": 374,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666663,
+ "selected_y_range": 0.37499999999999994,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 8000,
+ "gap": 7412,
+ "cutoff_score": 0.958835780620575,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9837666749954224,
+ "score_mean": 0.07040291279554367,
+ "score_p50": 0.0002114688541041687,
+ "score_p90": 0.19377905130386353,
+ "fraction_gt1": 0.0,
+ "n_inside": 209,
+ "n_interface": 384,
+ "n_outside": 85,
+ "selected_inside_frac": 0.05,
+ "selected_interface_frac": 0.95,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.21874999999999994,
+ "selected_y_range": 0.4583333333333333,
+ "step": 2,
+ "n_elem": 678,
+ "target_elements": 8000,
+ "gap": 7322,
+ "cutoff_score": 0.7808529734611511,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9851352572441101,
+ "score_mean": 0.17593802511692047,
+ "score_p50": 0.0005042410921305418,
+ "score_p90": 0.824576735496521,
+ "fraction_gt1": 0.0,
+ "n_inside": 221,
+ "n_interface": 482,
+ "n_outside": 85,
+ "selected_inside_frac": 0.4782608695652174,
+ "selected_interface_frac": 0.5217391304347826,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.46874999999999994,
+ "selected_y_range": 0.29166666666666674,
+ "step": 3,
+ "n_elem": 788,
+ "target_elements": 8000,
+ "gap": 7212,
+ "cutoff_score": 0.9602533578872681,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9886387586593628,
+ "score_mean": 0.1920272260904312,
+ "score_p50": 0.00022661250841338187,
+ "score_p90": 0.8787121772766113,
+ "fraction_gt1": 0.0,
+ "n_inside": 286,
+ "n_interface": 542,
+ "n_outside": 88,
+ "selected_inside_frac": 0.4074074074074074,
+ "selected_interface_frac": 0.48148148148148145,
+ "selected_outside_frac": 0.1111111111111111,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.6458333333333333,
+ "step": 4,
+ "n_elem": 916,
+ "target_elements": 8000,
+ "gap": 7084,
+ "cutoff_score": 0.962742030620575,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9777019023895264,
+ "score_mean": 0.17425929009914398,
+ "score_p50": 0.00013593390758614987,
+ "score_p90": 0.8889164924621582,
+ "fraction_gt1": 0.0,
+ "n_inside": 349,
+ "n_interface": 630,
+ "n_outside": 104,
+ "selected_inside_frac": 0.875,
+ "selected_interface_frac": 0.09375,
+ "selected_outside_frac": 0.03125,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.5208333333333333,
+ "step": 5,
+ "n_elem": 1083,
+ "target_elements": 8000,
+ "gap": 6917,
+ "cutoff_score": 0.9630512595176697,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9946540594100952,
+ "score_mean": 0.1486591398715973,
+ "score_p50": 0.00032242201268672943,
+ "score_p90": 0.7933368682861328,
+ "fraction_gt1": 0.0,
+ "n_inside": 508,
+ "n_interface": 659,
+ "n_outside": 111,
+ "selected_inside_frac": 0.47368421052631576,
+ "selected_interface_frac": 0.5263157894736842,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.6875,
+ "step": 6,
+ "n_elem": 1278,
+ "target_elements": 8000,
+ "gap": 6722,
+ "cutoff_score": 0.9565433859825134,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9867746829986572,
+ "score_mean": 0.1288749724626541,
+ "score_p50": 0.0008363041561096907,
+ "score_p90": 0.6740125417709351,
+ "fraction_gt1": 0.0,
+ "n_inside": 598,
+ "n_interface": 768,
+ "n_outside": 121,
+ "selected_inside_frac": 0.3181818181818182,
+ "selected_interface_frac": 0.4318181818181818,
+ "selected_outside_frac": 0.25,
+ "selected_x_range": 0.8333333333333333,
+ "selected_y_range": 0.6979166666666666,
+ "step": 7,
+ "n_elem": 1487,
+ "target_elements": 8000,
+ "gap": 6513,
+ "cutoff_score": 0.9232552647590637,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.990079402923584,
+ "score_mean": 0.1190110519528389,
+ "score_p50": 0.00097808672580868,
+ "score_p90": 0.5749855041503906,
+ "fraction_gt1": 0.0,
+ "n_inside": 680,
+ "n_interface": 886,
+ "n_outside": 165,
+ "selected_inside_frac": 0.3137254901960784,
+ "selected_interface_frac": 0.6862745098039216,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.78125,
+ "selected_y_range": 0.7708333333333333,
+ "step": 8,
+ "n_elem": 1731,
+ "target_elements": 8000,
+ "gap": 6269,
+ "cutoff_score": 0.8966287970542908,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9888027310371399,
+ "score_mean": 0.13762401044368744,
+ "score_p50": 0.0016003905329853296,
+ "score_p90": 0.6264175176620483,
+ "fraction_gt1": 0.0,
+ "n_inside": 772,
+ "n_interface": 1096,
+ "n_outside": 165,
+ "selected_inside_frac": 0.16666666666666666,
+ "selected_interface_frac": 0.55,
+ "selected_outside_frac": 0.2833333333333333,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.9375,
+ "step": 9,
+ "n_elem": 2033,
+ "target_elements": 8000,
+ "gap": 5967,
+ "cutoff_score": 0.9117987751960754,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9883720278739929,
+ "score_mean": 0.16345414519309998,
+ "score_p50": 0.002061601495370269,
+ "score_p90": 0.779996395111084,
+ "fraction_gt1": 0.0,
+ "n_inside": 836,
+ "n_interface": 1290,
+ "n_outside": 241,
+ "selected_inside_frac": 0.28169014084507044,
+ "selected_interface_frac": 0.676056338028169,
+ "selected_outside_frac": 0.04225352112676056,
+ "selected_x_range": 0.640625,
+ "selected_y_range": 0.8854166666666666,
+ "step": 10,
+ "n_elem": 2367,
+ "target_elements": 8000,
+ "gap": 5633,
+ "cutoff_score": 0.939951479434967,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884302616119385,
+ "score_mean": 0.17156733572483063,
+ "score_p50": 0.0018170650582760572,
+ "score_p90": 0.7874130010604858,
+ "fraction_gt1": 0.0,
+ "n_inside": 958,
+ "n_interface": 1582,
+ "n_outside": 260,
+ "selected_inside_frac": 0.6309523809523809,
+ "selected_interface_frac": 0.30952380952380953,
+ "selected_outside_frac": 0.05952380952380952,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2800,
+ "target_elements": 8000,
+ "gap": 5200,
+ "cutoff_score": 0.9455980062484741,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884505271911621,
+ "score_mean": 0.17462782561779022,
+ "score_p50": 0.0014809545828029513,
+ "score_p90": 0.8038174510002136,
+ "fraction_gt1": 0.0,
+ "n_inside": 1236,
+ "n_interface": 1767,
+ "n_outside": 295,
+ "selected_inside_frac": 0.4489795918367347,
+ "selected_interface_frac": 0.42857142857142855,
+ "selected_outside_frac": 0.12244897959183673,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.96875,
+ "step": 12,
+ "n_elem": 3298,
+ "target_elements": 8000,
+ "gap": 4702,
+ "cutoff_score": 0.9396247267723083,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9921310544013977,
+ "score_mean": 0.15963943302631378,
+ "score_p50": 0.0008979042759165168,
+ "score_p90": 0.7592089176177979,
+ "fraction_gt1": 0.0,
+ "n_inside": 1492,
+ "n_interface": 2032,
+ "n_outside": 353,
+ "selected_inside_frac": 0.47413793103448276,
+ "selected_interface_frac": 0.5258620689655172,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.9375,
+ "step": 13,
+ "n_elem": 3877,
+ "target_elements": 8000,
+ "gap": 4123,
+ "cutoff_score": 0.9313409924507141,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9901665449142456,
+ "score_mean": 0.15330193936824799,
+ "score_p50": 0.0012128495145589113,
+ "score_p90": 0.7365058660507202,
+ "fraction_gt1": 0.0,
+ "n_inside": 1804,
+ "n_interface": 2394,
+ "n_outside": 368,
+ "selected_inside_frac": 0.375,
+ "selected_interface_frac": 0.5808823529411765,
+ "selected_outside_frac": 0.04411764705882353,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.8958333333333334,
+ "step": 14,
+ "n_elem": 4566,
+ "target_elements": 8000,
+ "gap": 3434,
+ "cutoff_score": 0.9242121577262878,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.990018367767334,
+ "score_mean": 0.14818067848682404,
+ "score_p50": 0.0012343486305326223,
+ "score_p90": 0.7176568508148193,
+ "fraction_gt1": 0.0,
+ "n_inside": 2121,
+ "n_interface": 2814,
+ "n_outside": 408,
+ "selected_inside_frac": 0.4125,
+ "selected_interface_frac": 0.375,
+ "selected_outside_frac": 0.2125,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8125,
+ "step": 15,
+ "n_elem": 5343,
+ "target_elements": 8000,
+ "gap": 2657,
+ "cutoff_score": 0.917514979839325,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9916331768035889,
+ "score_mean": 0.14885851740837097,
+ "score_p50": 0.0016502408543601632,
+ "score_p90": 0.724738359451294,
+ "fraction_gt1": 0.0,
+ "n_inside": 2503,
+ "n_interface": 3189,
+ "n_outside": 551,
+ "selected_inside_frac": 0.3850267379679144,
+ "selected_interface_frac": 0.4919786096256685,
+ "selected_outside_frac": 0.12299465240641712,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 16,
+ "n_elem": 6243,
+ "target_elements": 8000,
+ "gap": 1757,
+ "cutoff_score": 0.9175119400024414,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9886345863342285,
+ "score_mean": 0.15093553066253662,
+ "score_p50": 0.001972819212824106,
+ "score_p90": 0.7048932909965515,
+ "fraction_gt1": 0.0,
+ "n_inside": 2906,
+ "n_interface": 3740,
+ "n_outside": 681,
+ "selected_inside_frac": 0.3013698630136986,
+ "selected_interface_frac": 0.5662100456621004,
+ "selected_outside_frac": 0.1324200913242009,
+ "selected_x_range": 0.953125,
+ "selected_y_range": 0.984375,
+ "step": 17,
+ "n_elem": 7327,
+ "target_elements": 8000,
+ "gap": 673,
+ "cutoff_score": 0.9075214266777039,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 83,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.06219583468663914,
+ "max_err": 0.234551324779599,
+ "actual_elements": 8393,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 2.906799077987671,
+ "score_mean": 1.8998980522155762e-07,
+ "score_p50": -0.38659024238586426,
+ "score_p90": 1.6617082357406616,
+ "fraction_gt1": 0.140625,
+ "n_inside": 69,
+ "n_interface": 358,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.12500000000000006,
+ "selected_y_range": 0.2916666666666667,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 2.8741655349731445,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 3.5705080032348633,
+ "score_mean": -9.082612706379223e-08,
+ "score_p50": -0.2723870277404785,
+ "score_p90": 0.4481663107872009,
+ "fraction_gt1": 0.08673469387755102,
+ "n_inside": 129,
+ "n_interface": 374,
+ "n_outside": 85,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.16666666666666663,
+ "selected_y_range": 0.37499999999999994,
+ "step": 1,
+ "n_elem": 588,
+ "target_elements": 8000,
+ "gap": 7412,
+ "cutoff_score": 3.5117502212524414,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 4.282808303833008,
+ "score_mean": 2.5318787066908044e-08,
+ "score_p50": -0.18743430078029633,
+ "score_p90": 0.9516360759735107,
+ "fraction_gt1": 0.08702064896755163,
+ "n_inside": 209,
+ "n_interface": 384,
+ "n_outside": 85,
+ "selected_inside_frac": 0.65,
+ "selected_interface_frac": 0.35,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.3541666666666667,
+ "step": 2,
+ "n_elem": 678,
+ "target_elements": 8000,
+ "gap": 7322,
+ "cutoff_score": 2.3425872325897217,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5228004455566406,
+ "score_mean": -1.8931499923269257e-08,
+ "score_p50": -0.012925267219543457,
+ "score_p90": 1.3363479375839233,
+ "fraction_gt1": 0.13647642679900746,
+ "n_inside": 268,
+ "n_interface": 453,
+ "n_outside": 85,
+ "selected_inside_frac": 0.375,
+ "selected_interface_frac": 0.625,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.38541666666666663,
+ "selected_y_range": 0.26041666666666663,
+ "step": 3,
+ "n_elem": 806,
+ "target_elements": 8000,
+ "gap": 7194,
+ "cutoff_score": 1.545823574066162,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.5567243099212646,
+ "score_mean": 3.309932594675047e-08,
+ "score_p50": 0.11545901000499725,
+ "score_p90": 1.3734464645385742,
+ "fraction_gt1": 0.1735357917570499,
+ "n_inside": 306,
+ "n_interface": 531,
+ "n_outside": 85,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.7407407407407407,
+ "selected_outside_frac": 0.25925925925925924,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.625,
+ "step": 4,
+ "n_elem": 922,
+ "target_elements": 8000,
+ "gap": 7078,
+ "cutoff_score": 1.5225231647491455,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0201010704040527,
+ "score_mean": 1.989041464867114e-07,
+ "score_p50": -0.3531358242034912,
+ "score_p90": 1.5627391338348389,
+ "fraction_gt1": 0.16945996275605213,
+ "n_inside": 306,
+ "n_interface": 650,
+ "n_outside": 118,
+ "selected_inside_frac": 0.78125,
+ "selected_interface_frac": 0.21875,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.59375,
+ "selected_y_range": 0.5833333333333333,
+ "step": 5,
+ "n_elem": 1074,
+ "target_elements": 8000,
+ "gap": 6926,
+ "cutoff_score": 1.659091830253601,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0206799507141113,
+ "score_mean": 7.359544440532773e-08,
+ "score_p50": -0.2959197163581848,
+ "score_p90": 1.6316787004470825,
+ "fraction_gt1": 0.15192926045016078,
+ "n_inside": 420,
+ "n_interface": 706,
+ "n_outside": 118,
+ "selected_inside_frac": 0.5945945945945946,
+ "selected_interface_frac": 0.40540540540540543,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6354166666666667,
+ "selected_y_range": 0.6458333333333333,
+ "step": 6,
+ "n_elem": 1244,
+ "target_elements": 8000,
+ "gap": 6756,
+ "cutoff_score": 1.9364373683929443,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4089653491973877,
+ "score_mean": 1.2698021123469516e-07,
+ "score_p50": -0.1654352843761444,
+ "score_p90": 1.4062398672103882,
+ "fraction_gt1": 0.12968099861303745,
+ "n_inside": 541,
+ "n_interface": 773,
+ "n_outside": 128,
+ "selected_inside_frac": 0.6744186046511628,
+ "selected_interface_frac": 0.16279069767441862,
+ "selected_outside_frac": 0.16279069767441862,
+ "selected_x_range": 0.7291666666666667,
+ "selected_y_range": 0.6666666666666667,
+ "step": 7,
+ "n_elem": 1442,
+ "target_elements": 8000,
+ "gap": 6558,
+ "cutoff_score": 2.2961840629577637,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.7998287677764893,
+ "score_mean": 1.652576457900068e-07,
+ "score_p50": -0.5324622988700867,
+ "score_p90": 1.250737190246582,
+ "fraction_gt1": 0.12093862815884476,
+ "n_inside": 668,
+ "n_interface": 830,
+ "n_outside": 164,
+ "selected_inside_frac": 0.2857142857142857,
+ "selected_interface_frac": 0.6122448979591837,
+ "selected_outside_frac": 0.10204081632653061,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.875,
+ "step": 8,
+ "n_elem": 1662,
+ "target_elements": 8000,
+ "gap": 6338,
+ "cutoff_score": 2.4061760902404785,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 3.0721640586853027,
+ "score_mean": 2.0716893800454272e-07,
+ "score_p50": -0.48573529720306396,
+ "score_p90": 1.250035285949707,
+ "fraction_gt1": 0.1629242819843342,
+ "n_inside": 749,
+ "n_interface": 981,
+ "n_outside": 185,
+ "selected_inside_frac": 0.21052631578947367,
+ "selected_interface_frac": 0.6491228070175439,
+ "selected_outside_frac": 0.14035087719298245,
+ "selected_x_range": 0.8229166666666667,
+ "selected_y_range": 0.9375,
+ "step": 9,
+ "n_elem": 1915,
+ "target_elements": 8000,
+ "gap": 6085,
+ "cutoff_score": 2.1208713054656982,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.8149662017822266,
+ "score_mean": -9.570925385560258e-08,
+ "score_p50": -0.3989048898220062,
+ "score_p90": 1.3673714399337769,
+ "fraction_gt1": 0.14695340501792115,
+ "n_inside": 806,
+ "n_interface": 1202,
+ "n_outside": 224,
+ "selected_inside_frac": 0.3181818181818182,
+ "selected_interface_frac": 0.5909090909090909,
+ "selected_outside_frac": 0.09090909090909091,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.8854166666666667,
+ "step": 10,
+ "n_elem": 2232,
+ "target_elements": 8000,
+ "gap": 5768,
+ "cutoff_score": 1.8724713325500488,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4196910858154297,
+ "score_mean": 2.355660200237253e-08,
+ "score_p50": -0.26925909519195557,
+ "score_p90": 1.2042418718338013,
+ "fraction_gt1": 0.1543805480509456,
+ "n_inside": 914,
+ "n_interface": 1414,
+ "n_outside": 263,
+ "selected_inside_frac": 0.5324675324675324,
+ "selected_interface_frac": 0.4025974025974026,
+ "selected_outside_frac": 0.06493506493506493,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.90625,
+ "step": 11,
+ "n_elem": 2591,
+ "target_elements": 8000,
+ "gap": 5409,
+ "cutoff_score": 1.8407961130142212,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3122382164001465,
+ "score_mean": 2.0550557167098304e-07,
+ "score_p50": -0.1302887499332428,
+ "score_p90": 1.3118535280227661,
+ "fraction_gt1": 0.14814814814814814,
+ "n_inside": 1087,
+ "n_interface": 1592,
+ "n_outside": 291,
+ "selected_inside_frac": 0.5056179775280899,
+ "selected_interface_frac": 0.2696629213483146,
+ "selected_outside_frac": 0.2247191011235955,
+ "selected_x_range": 0.96875,
+ "selected_y_range": 0.96875,
+ "step": 12,
+ "n_elem": 2970,
+ "target_elements": 8000,
+ "gap": 5030,
+ "cutoff_score": 1.7185726165771484,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.5048880577087402,
+ "score_mean": 2.883267029574199e-07,
+ "score_p50": 0.038592398166656494,
+ "score_p90": 1.3647809028625488,
+ "fraction_gt1": 0.18452908178328906,
+ "n_inside": 1307,
+ "n_interface": 1710,
+ "n_outside": 370,
+ "selected_inside_frac": 0.12871287128712872,
+ "selected_interface_frac": 0.8118811881188119,
+ "selected_outside_frac": 0.0594059405940594,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.84375,
+ "step": 13,
+ "n_elem": 3387,
+ "target_elements": 8000,
+ "gap": 4613,
+ "cutoff_score": 1.5074338912963867,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3310132026672363,
+ "score_mean": 1.5755074400658486e-07,
+ "score_p50": -0.26968634128570557,
+ "score_p90": 1.4826689958572388,
+ "fraction_gt1": 0.16726897263810014,
+ "n_inside": 1365,
+ "n_interface": 2106,
+ "n_outside": 403,
+ "selected_inside_frac": 0.06896551724137931,
+ "selected_interface_frac": 0.7758620689655172,
+ "selected_outside_frac": 0.15517241379310345,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.9791666666666667,
+ "step": 14,
+ "n_elem": 3874,
+ "target_elements": 8000,
+ "gap": 4126,
+ "cutoff_score": 1.6252565383911133,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.449272632598877,
+ "score_mean": -5.536068670153327e-08,
+ "score_p50": -0.40130844712257385,
+ "score_p90": 1.5322080850601196,
+ "fraction_gt1": 0.16258503401360544,
+ "n_inside": 1404,
+ "n_interface": 2526,
+ "n_outside": 480,
+ "selected_inside_frac": 0.6742424242424242,
+ "selected_interface_frac": 0.3106060606060606,
+ "selected_outside_frac": 0.015151515151515152,
+ "selected_x_range": 0.9270833333333334,
+ "selected_y_range": 0.7604166666666667,
+ "step": 15,
+ "n_elem": 4410,
+ "target_elements": 8000,
+ "gap": 3590,
+ "cutoff_score": 1.762906789779663,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.4930524826049805,
+ "score_mean": -2.4438501000645374e-08,
+ "score_p50": -0.27532386779785156,
+ "score_p90": 1.470395565032959,
+ "fraction_gt1": 0.14594594594594595,
+ "n_inside": 1742,
+ "n_interface": 2750,
+ "n_outside": 503,
+ "selected_inside_frac": 0.7516778523489933,
+ "selected_interface_frac": 0.2080536912751678,
+ "selected_outside_frac": 0.040268456375838924,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.8958333333333334,
+ "step": 16,
+ "n_elem": 4995,
+ "target_elements": 8000,
+ "gap": 3005,
+ "cutoff_score": 1.9607460498809814,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.8094871044158936,
+ "score_mean": -4.288435206944996e-08,
+ "score_p50": -0.18051958084106445,
+ "score_p90": 1.3874636888504028,
+ "fraction_gt1": 0.12822764798875813,
+ "n_inside": 2209,
+ "n_interface": 2946,
+ "n_outside": 538,
+ "selected_inside_frac": 0.6176470588235294,
+ "selected_interface_frac": 0.2647058823529412,
+ "selected_outside_frac": 0.11764705882352941,
+ "selected_x_range": 0.8958333333333334,
+ "selected_y_range": 0.9791666666666667,
+ "step": 17,
+ "n_elem": 5693,
+ "target_elements": 8000,
+ "gap": 2307,
+ "cutoff_score": 2.1480634212493896,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 3.2690069675445557,
+ "score_mean": 1.3154128453152225e-07,
+ "score_p50": -0.08913999795913696,
+ "score_p90": 1.2735586166381836,
+ "fraction_gt1": 0.13054187192118227,
+ "n_inside": 2676,
+ "n_interface": 3197,
+ "n_outside": 623,
+ "selected_inside_frac": 0.35051546391752575,
+ "selected_interface_frac": 0.5051546391752577,
+ "selected_outside_frac": 0.14432989690721648,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 18,
+ "n_elem": 6496,
+ "target_elements": 8000,
+ "gap": 1504,
+ "cutoff_score": 2.016528606414795,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.620849132537842,
+ "score_mean": -8.251339522757917e-08,
+ "score_p50": -0.4522172808647156,
+ "score_p90": 1.3396968841552734,
+ "fraction_gt1": 0.17223198594024605,
+ "n_inside": 3001,
+ "n_interface": 3649,
+ "n_outside": 747,
+ "selected_inside_frac": 0.10945273631840796,
+ "selected_interface_frac": 0.7263681592039801,
+ "selected_outside_frac": 0.16417910447761194,
+ "selected_x_range": 0.8958333333333334,
+ "selected_y_range": 0.9791666666666667,
+ "step": 19,
+ "n_elem": 7397,
+ "target_elements": 8000,
+ "gap": 603,
+ "cutoff_score": 1.6667630672454834,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 83,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.11832364003925769,
+ "max_err": 0.13662529418230182,
+ "actual_elements": 2020,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.8021454215049744,
+ "score_mean": 0.3538990020751953,
+ "score_p50": 0.34678390622138977,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 8,
+ "n_interface": 155,
+ "n_outside": 349,
+ "selected_inside_frac": 0.5333333333333333,
+ "selected_interface_frac": 0.4666666666666667,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333331,
+ "selected_y_range": 0.16666666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 504,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.4010727107524872,
+ "score_mean": 0.3314695954322815,
+ "score_p50": 0.34678390622138977,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 34,
+ "n_interface": 203,
+ "n_outside": 349,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.13541666666666669,
+ "selected_y_range": 0.125,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 2000,
+ "gap": 1414,
+ "cutoff_score": 0.4010727107524872,
+ "num_tied_at_cutoff": 34,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4010727107524872,
+ "score_mean": 0.2950659990310669,
+ "score_p50": 0.34678390622138977,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 105,
+ "n_interface": 248,
+ "n_outside": 349,
+ "selected_inside_frac": 0.19047619047619047,
+ "selected_interface_frac": 0.8095238095238095,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.31249999999999994,
+ "selected_y_range": 0.33333333333333326,
+ "step": 2,
+ "n_elem": 702,
+ "target_elements": 2000,
+ "gap": 1298,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 478,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.2688415050506592,
+ "score_p50": 0.34678390622138977,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 354,
+ "n_outside": 349,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.45833333333333326,
+ "step": 3,
+ "n_elem": 826,
+ "target_elements": 2000,
+ "gap": 1174,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 434,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.24790175259113312,
+ "score_p50": 0.2005363553762436,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 486,
+ "n_outside": 349,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 958,
+ "target_elements": 2000,
+ "gap": 1042,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 386,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.22967612743377686,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 605,
+ "n_outside": 386,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.030303030303030304,
+ "selected_outside_frac": 0.9696969696969697,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.625,
+ "step": 5,
+ "n_elem": 1114,
+ "target_elements": 2000,
+ "gap": 886,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 326,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.21378523111343384,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 616,
+ "n_outside": 559,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.6875,
+ "step": 6,
+ "n_elem": 1298,
+ "target_elements": 2000,
+ "gap": 702,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 256,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.20102465152740479,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 616,
+ "n_outside": 756,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.7708333333333333,
+ "step": 7,
+ "n_elem": 1495,
+ "target_elements": 2000,
+ "gap": 505,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 184,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.1906011700630188,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.24521325528621674,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 616,
+ "n_outside": 966,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.33333333333333337,
+ "step": 8,
+ "n_elem": 1705,
+ "target_elements": 2000,
+ "gap": 295,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 110,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.18221479654312134,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.24521325528621674,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 616,
+ "n_outside": 1184,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.20833333333333331,
+ "step": 9,
+ "n_elem": 1923,
+ "target_elements": 2000,
+ "gap": 77,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 32,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 90,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.09985296571758746,
+ "max_err": 0.1253001594032189,
+ "actual_elements": 2111,
+ "num_steps": 9,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9935526847839355,
+ "score_mean": 0.07133924216032028,
+ "score_p50": 3.860219521811814e-08,
+ "score_p90": 0.058746784925460815,
+ "fraction_gt1": 0.0,
+ "n_inside": 8,
+ "n_interface": 155,
+ "n_outside": 349,
+ "selected_inside_frac": 0.5333333333333333,
+ "selected_interface_frac": 0.4666666666666667,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18750000000000006,
+ "selected_y_range": 0.14583333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 0.9762341380119324,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9900017976760864,
+ "score_mean": 0.1077551618218422,
+ "score_p50": 3.1467925509787165e-07,
+ "score_p90": 0.5914151072502136,
+ "fraction_gt1": 0.0,
+ "n_inside": 33,
+ "n_interface": 200,
+ "n_outside": 349,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.10416666666666669,
+ "selected_y_range": 0.13541666666666674,
+ "step": 1,
+ "n_elem": 582,
+ "target_elements": 2000,
+ "gap": 1418,
+ "cutoff_score": 0.9598771333694458,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9894866943359375,
+ "score_mean": 0.10842404514551163,
+ "score_p50": 2.630177914397791e-05,
+ "score_p90": 0.5552561283111572,
+ "fraction_gt1": 0.0,
+ "n_inside": 94,
+ "n_interface": 227,
+ "n_outside": 349,
+ "selected_inside_frac": 0.15,
+ "selected_interface_frac": 0.85,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3229166666666667,
+ "selected_y_range": 0.33333333333333326,
+ "step": 2,
+ "n_elem": 670,
+ "target_elements": 2000,
+ "gap": 1330,
+ "cutoff_score": 0.9593972563743591,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9904739260673523,
+ "score_mean": 0.12082226574420929,
+ "score_p50": 0.0001319700968451798,
+ "score_p90": 0.5920992493629456,
+ "fraction_gt1": 0.0,
+ "n_inside": 111,
+ "n_interface": 324,
+ "n_outside": 353,
+ "selected_inside_frac": 0.08695652173913043,
+ "selected_interface_frac": 0.5217391304347826,
+ "selected_outside_frac": 0.391304347826087,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.3125,
+ "step": 3,
+ "n_elem": 788,
+ "target_elements": 2000,
+ "gap": 1212,
+ "cutoff_score": 0.9484294652938843,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884568452835083,
+ "score_mean": 0.14230883121490479,
+ "score_p50": 0.0004431417619343847,
+ "score_p90": 0.6671142578125,
+ "fraction_gt1": 0.0,
+ "n_inside": 120,
+ "n_interface": 410,
+ "n_outside": 391,
+ "selected_inside_frac": 0.48148148148148145,
+ "selected_interface_frac": 0.4074074074074074,
+ "selected_outside_frac": 0.1111111111111111,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.39583333333333326,
+ "step": 4,
+ "n_elem": 921,
+ "target_elements": 2000,
+ "gap": 1079,
+ "cutoff_score": 0.9414879679679871,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9879990816116333,
+ "score_mean": 0.14606161415576935,
+ "score_p50": 0.0006529829115606844,
+ "score_p90": 0.6979970335960388,
+ "fraction_gt1": 0.0,
+ "n_inside": 186,
+ "n_interface": 468,
+ "n_outside": 414,
+ "selected_inside_frac": 0.375,
+ "selected_interface_frac": 0.46875,
+ "selected_outside_frac": 0.15625,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.4375,
+ "step": 5,
+ "n_elem": 1068,
+ "target_elements": 2000,
+ "gap": 932,
+ "cutoff_score": 0.9172530770301819,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9842098951339722,
+ "score_mean": 0.14146995544433594,
+ "score_p50": 0.0018474144162610173,
+ "score_p90": 0.689215898513794,
+ "fraction_gt1": 0.0,
+ "n_inside": 260,
+ "n_interface": 559,
+ "n_outside": 450,
+ "selected_inside_frac": 0.23684210526315788,
+ "selected_interface_frac": 0.6052631578947368,
+ "selected_outside_frac": 0.15789473684210525,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.5416666666666667,
+ "step": 6,
+ "n_elem": 1269,
+ "target_elements": 2000,
+ "gap": 731,
+ "cutoff_score": 0.8997259140014648,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9910827875137329,
+ "score_mean": 0.15282297134399414,
+ "score_p50": 0.003967716358602047,
+ "score_p90": 0.7034679055213928,
+ "fraction_gt1": 0.0,
+ "n_inside": 312,
+ "n_interface": 699,
+ "n_outside": 500,
+ "selected_inside_frac": 0.022222222222222223,
+ "selected_interface_frac": 0.4222222222222222,
+ "selected_outside_frac": 0.5555555555555556,
+ "selected_x_range": 0.8541666666666667,
+ "selected_y_range": 0.6979166666666667,
+ "step": 7,
+ "n_elem": 1511,
+ "target_elements": 2000,
+ "gap": 489,
+ "cutoff_score": 0.9084905385971069,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9765617847442627,
+ "score_mean": 0.1685209572315216,
+ "score_p50": 0.004806197714060545,
+ "score_p90": 0.7409637570381165,
+ "fraction_gt1": 0.0,
+ "n_inside": 325,
+ "n_interface": 809,
+ "n_outside": 653,
+ "selected_inside_frac": 0.11320754716981132,
+ "selected_interface_frac": 0.41509433962264153,
+ "selected_outside_frac": 0.4716981132075472,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.75,
+ "step": 8,
+ "n_elem": 1787,
+ "target_elements": 2000,
+ "gap": 213,
+ "cutoff_score": 0.9149032831192017,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 90,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10341142003699152,
+ "max_err": 0.13253919425653626,
+ "actual_elements": 2041,
+ "num_steps": 10,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 5.920400619506836,
+ "score_mean": -6.230548024177551e-07,
+ "score_p50": -0.2139771282672882,
+ "score_p90": -0.08964541554450989,
+ "fraction_gt1": 0.06640625,
+ "n_inside": 8,
+ "n_interface": 155,
+ "n_outside": 349,
+ "selected_inside_frac": 0.5333333333333333,
+ "selected_interface_frac": 0.4666666666666667,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18750000000000006,
+ "selected_y_range": 0.14583333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 2000,
+ "gap": 1488,
+ "cutoff_score": 1.8521262407302856,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 2.250898838043213,
+ "score_mean": 1.8844080074131853e-08,
+ "score_p50": -0.05480290949344635,
+ "score_p90": 0.40039893984794617,
+ "fraction_gt1": 0.07560137457044673,
+ "n_inside": 33,
+ "n_interface": 200,
+ "n_outside": 349,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.09375000000000006,
+ "selected_y_range": 0.10416666666666674,
+ "step": 1,
+ "n_elem": 582,
+ "target_elements": 2000,
+ "gap": 1418,
+ "cutoff_score": 2.1905593872070312,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2663333415985107,
+ "score_mean": 1.0279124040835086e-07,
+ "score_p50": 0.07972617447376251,
+ "score_p90": 0.7995032668113708,
+ "fraction_gt1": 0.09131736526946108,
+ "n_inside": 97,
+ "n_interface": 222,
+ "n_outside": 349,
+ "selected_inside_frac": 0.35,
+ "selected_interface_frac": 0.65,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3229166666666667,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 668,
+ "target_elements": 2000,
+ "gap": 1332,
+ "cutoff_score": 1.8760499954223633,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0080819129943848,
+ "score_mean": -2.8899222570544225e-08,
+ "score_p50": 0.18650533258914948,
+ "score_p90": 0.701931357383728,
+ "fraction_gt1": 0.05808080808080808,
+ "n_inside": 126,
+ "n_interface": 313,
+ "n_outside": 353,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.34782608695652173,
+ "selected_outside_frac": 0.6521739130434783,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.33333333333333326,
+ "step": 3,
+ "n_elem": 792,
+ "target_elements": 2000,
+ "gap": 1208,
+ "cutoff_score": 1.7328094244003296,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9385044574737549,
+ "score_mean": -1.514102621058555e-07,
+ "score_p50": 0.2962300181388855,
+ "score_p90": 0.7335521578788757,
+ "fraction_gt1": 0.044101433296582136,
+ "n_inside": 126,
+ "n_interface": 365,
+ "n_outside": 416,
+ "selected_inside_frac": 0.3333333333333333,
+ "selected_interface_frac": 0.5925925925925926,
+ "selected_outside_frac": 0.07407407407407407,
+ "selected_x_range": 0.5260416666666666,
+ "selected_y_range": 0.28645833333333326,
+ "step": 4,
+ "n_elem": 907,
+ "target_elements": 2000,
+ "gap": 1093,
+ "cutoff_score": 1.0748859643936157,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0299835205078125,
+ "score_mean": -8.516533256397452e-08,
+ "score_p50": -0.12278962135314941,
+ "score_p90": 0.8493532538414001,
+ "fraction_gt1": 0.08093023255813954,
+ "n_inside": 170,
+ "n_interface": 468,
+ "n_outside": 437,
+ "selected_inside_frac": 0.28125,
+ "selected_interface_frac": 0.3125,
+ "selected_outside_frac": 0.40625,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.5416666666666667,
+ "step": 5,
+ "n_elem": 1075,
+ "target_elements": 2000,
+ "gap": 925,
+ "cutoff_score": 1.20358407497406,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.950622320175171,
+ "score_mean": -7.271861335311769e-08,
+ "score_p50": -0.35285684466362,
+ "score_p90": 1.0283881425857544,
+ "fraction_gt1": 0.10722795869737888,
+ "n_inside": 219,
+ "n_interface": 536,
+ "n_outside": 504,
+ "selected_inside_frac": 0.02702702702702703,
+ "selected_interface_frac": 0.13513513513513514,
+ "selected_outside_frac": 0.8378378378378378,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.71875,
+ "step": 6,
+ "n_elem": 1259,
+ "target_elements": 2000,
+ "gap": 741,
+ "cutoff_score": 1.3004428148269653,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1058292388916016,
+ "score_mean": 8.247994287557958e-08,
+ "score_p50": -0.43165671825408936,
+ "score_p90": 1.0916863679885864,
+ "fraction_gt1": 0.1277027027027027,
+ "n_inside": 227,
+ "n_interface": 586,
+ "n_outside": 667,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.20454545454545456,
+ "selected_outside_frac": 0.7954545454545454,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 7,
+ "n_elem": 1480,
+ "target_elements": 2000,
+ "gap": 520,
+ "cutoff_score": 1.3795335292816162,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3791117668151855,
+ "score_mean": 7.109511557246151e-08,
+ "score_p50": -0.38484105467796326,
+ "score_p90": 1.0905154943466187,
+ "fraction_gt1": 0.168899242865463,
+ "n_inside": 227,
+ "n_interface": 645,
+ "n_outside": 845,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.13725490196078433,
+ "selected_outside_frac": 0.8627450980392157,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9479166666666667,
+ "step": 8,
+ "n_elem": 1717,
+ "target_elements": 2000,
+ "gap": 283,
+ "cutoff_score": 1.4570585489273071,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.380946636199951,
+ "score_mean": -1.0904698655167522e-07,
+ "score_p50": -0.3248918056488037,
+ "score_p90": 1.0566266775131226,
+ "fraction_gt1": 0.12506380806533945,
+ "n_inside": 227,
+ "n_interface": 681,
+ "n_outside": 1051,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.23076923076923078,
+ "selected_outside_frac": 0.7692307692307693,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.9375,
+ "step": 9,
+ "n_elem": 1959,
+ "target_elements": 2000,
+ "gap": 41,
+ "cutoff_score": 1.922045350074768,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 90,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.09387272404139951,
+ "max_err": 0.13588096237378233,
+ "actual_elements": 4148,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.8021454215049744,
+ "score_mean": 0.3538990020751953,
+ "score_p50": 0.34678390622138977,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 8,
+ "n_interface": 155,
+ "n_outside": 349,
+ "selected_inside_frac": 0.5333333333333333,
+ "selected_interface_frac": 0.4666666666666667,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333331,
+ "selected_y_range": 0.16666666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 504,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.4010727107524872,
+ "score_mean": 0.3314695954322815,
+ "score_p50": 0.34678390622138977,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 34,
+ "n_interface": 203,
+ "n_outside": 349,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.13541666666666669,
+ "selected_y_range": 0.125,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 4000,
+ "gap": 3414,
+ "cutoff_score": 0.4010727107524872,
+ "num_tied_at_cutoff": 34,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4010727107524872,
+ "score_mean": 0.2950659990310669,
+ "score_p50": 0.34678390622138977,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 105,
+ "n_interface": 248,
+ "n_outside": 349,
+ "selected_inside_frac": 0.19047619047619047,
+ "selected_interface_frac": 0.8095238095238095,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.31249999999999994,
+ "selected_y_range": 0.33333333333333326,
+ "step": 2,
+ "n_elem": 702,
+ "target_elements": 4000,
+ "gap": 3298,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 478,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.2688415050506592,
+ "score_p50": 0.34678390622138977,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 354,
+ "n_outside": 349,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.45833333333333326,
+ "step": 3,
+ "n_elem": 826,
+ "target_elements": 4000,
+ "gap": 3174,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 434,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.24790175259113312,
+ "score_p50": 0.2005363553762436,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 486,
+ "n_outside": 349,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 958,
+ "target_elements": 4000,
+ "gap": 3042,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 386,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.22967612743377686,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 605,
+ "n_outside": 386,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.030303030303030304,
+ "selected_outside_frac": 0.9696969696969697,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.625,
+ "step": 5,
+ "n_elem": 1114,
+ "target_elements": 4000,
+ "gap": 2886,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 326,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.21378523111343384,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 616,
+ "n_outside": 559,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.6875,
+ "step": 6,
+ "n_elem": 1298,
+ "target_elements": 4000,
+ "gap": 2702,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 256,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.20102465152740479,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 616,
+ "n_outside": 756,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.7708333333333333,
+ "step": 7,
+ "n_elem": 1495,
+ "target_elements": 4000,
+ "gap": 2505,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 184,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.1906011700630188,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.24521325528621674,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 616,
+ "n_outside": 966,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.33333333333333337,
+ "step": 8,
+ "n_elem": 1705,
+ "target_elements": 4000,
+ "gap": 2295,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 110,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.18221479654312134,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.24521325528621674,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 616,
+ "n_outside": 1184,
+ "selected_inside_frac": 0.22807017543859648,
+ "selected_interface_frac": 0.21052631578947367,
+ "selected_outside_frac": 0.5614035087719298,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8854166666666666,
+ "step": 9,
+ "n_elem": 1923,
+ "target_elements": 4000,
+ "gap": 2077,
+ "cutoff_score": 0.24521325528621674,
+ "num_tied_at_cutoff": 157,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.24521325528621674,
+ "score_mean": 0.17274858057498932,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.2005363553762436,
+ "fraction_gt1": 0.0,
+ "n_inside": 181,
+ "n_interface": 686,
+ "n_outside": 1295,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.328125,
+ "selected_outside_frac": 0.671875,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.6458333333333334,
+ "step": 10,
+ "n_elem": 2162,
+ "target_elements": 4000,
+ "gap": 1838,
+ "cutoff_score": 0.24521325528621674,
+ "num_tied_at_cutoff": 128,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.24521325528621674,
+ "score_mean": 0.1611994504928589,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.17339195311069489,
+ "fraction_gt1": 0.0,
+ "n_inside": 181,
+ "n_interface": 798,
+ "n_outside": 1485,
+ "selected_inside_frac": 0.1780821917808219,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.821917808219178,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2464,
+ "target_elements": 4000,
+ "gap": 1536,
+ "cutoff_score": 0.2005363553762436,
+ "num_tied_at_cutoff": 90,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2005363553762436,
+ "score_mean": 0.1485441029071808,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.17339195311069489,
+ "fraction_gt1": 0.0,
+ "n_inside": 241,
+ "n_interface": 874,
+ "n_outside": 1747,
+ "selected_inside_frac": 0.6588235294117647,
+ "selected_interface_frac": 0.3411764705882353,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333331,
+ "selected_y_range": 0.25,
+ "step": 12,
+ "n_elem": 2862,
+ "target_elements": 4000,
+ "gap": 1138,
+ "cutoff_score": 0.17339195311069489,
+ "num_tied_at_cutoff": 1494,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17339195311069489,
+ "score_mean": 0.1380988359451294,
+ "score_p50": 0.12260662764310837,
+ "score_p90": 0.17339195311069489,
+ "fraction_gt1": 0.0,
+ "n_inside": 453,
+ "n_interface": 1054,
+ "n_outside": 1747,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3854166666666667,
+ "selected_y_range": 0.40625,
+ "step": 13,
+ "n_elem": 3254,
+ "target_elements": 4000,
+ "gap": 746,
+ "cutoff_score": 0.17339195311069489,
+ "num_tied_at_cutoff": 1432,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17339195311069489,
+ "score_mean": 0.12912395596504211,
+ "score_p50": 0.12260662764310837,
+ "score_p90": 0.17339195311069489,
+ "fraction_gt1": 0.0,
+ "n_inside": 453,
+ "n_interface": 1466,
+ "n_outside": 1747,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.5104166666666667,
+ "step": 14,
+ "n_elem": 3666,
+ "target_elements": 4000,
+ "gap": 334,
+ "cutoff_score": 0.17339195311069489,
+ "num_tied_at_cutoff": 1286,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 90,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.0925966706438707,
+ "max_err": 0.13629912665533778,
+ "actual_elements": 4191,
+ "num_steps": 13,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9935526847839355,
+ "score_mean": 0.07133924216032028,
+ "score_p50": 3.860219521811814e-08,
+ "score_p90": 0.058746784925460815,
+ "fraction_gt1": 0.0,
+ "n_inside": 8,
+ "n_interface": 155,
+ "n_outside": 349,
+ "selected_inside_frac": 0.5333333333333333,
+ "selected_interface_frac": 0.4666666666666667,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18750000000000006,
+ "selected_y_range": 0.14583333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 0.9762341380119324,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9900017976760864,
+ "score_mean": 0.1077551618218422,
+ "score_p50": 3.1467925509787165e-07,
+ "score_p90": 0.5914151072502136,
+ "fraction_gt1": 0.0,
+ "n_inside": 33,
+ "n_interface": 200,
+ "n_outside": 349,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.10416666666666669,
+ "selected_y_range": 0.13541666666666674,
+ "step": 1,
+ "n_elem": 582,
+ "target_elements": 4000,
+ "gap": 3418,
+ "cutoff_score": 0.9598771333694458,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9894866943359375,
+ "score_mean": 0.10842404514551163,
+ "score_p50": 2.630177914397791e-05,
+ "score_p90": 0.5552561283111572,
+ "fraction_gt1": 0.0,
+ "n_inside": 94,
+ "n_interface": 227,
+ "n_outside": 349,
+ "selected_inside_frac": 0.15,
+ "selected_interface_frac": 0.85,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3229166666666667,
+ "selected_y_range": 0.33333333333333326,
+ "step": 2,
+ "n_elem": 670,
+ "target_elements": 4000,
+ "gap": 3330,
+ "cutoff_score": 0.9593972563743591,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9904739260673523,
+ "score_mean": 0.12082226574420929,
+ "score_p50": 0.0001319700968451798,
+ "score_p90": 0.5920992493629456,
+ "fraction_gt1": 0.0,
+ "n_inside": 111,
+ "n_interface": 324,
+ "n_outside": 353,
+ "selected_inside_frac": 0.08695652173913043,
+ "selected_interface_frac": 0.5217391304347826,
+ "selected_outside_frac": 0.391304347826087,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.3125,
+ "step": 3,
+ "n_elem": 788,
+ "target_elements": 4000,
+ "gap": 3212,
+ "cutoff_score": 0.9484294652938843,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884568452835083,
+ "score_mean": 0.14230883121490479,
+ "score_p50": 0.0004431417619343847,
+ "score_p90": 0.6671142578125,
+ "fraction_gt1": 0.0,
+ "n_inside": 120,
+ "n_interface": 410,
+ "n_outside": 391,
+ "selected_inside_frac": 0.48148148148148145,
+ "selected_interface_frac": 0.4074074074074074,
+ "selected_outside_frac": 0.1111111111111111,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.39583333333333326,
+ "step": 4,
+ "n_elem": 921,
+ "target_elements": 4000,
+ "gap": 3079,
+ "cutoff_score": 0.9414879679679871,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9879990816116333,
+ "score_mean": 0.14606161415576935,
+ "score_p50": 0.0006529829115606844,
+ "score_p90": 0.6979970335960388,
+ "fraction_gt1": 0.0,
+ "n_inside": 186,
+ "n_interface": 468,
+ "n_outside": 414,
+ "selected_inside_frac": 0.375,
+ "selected_interface_frac": 0.46875,
+ "selected_outside_frac": 0.15625,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.4375,
+ "step": 5,
+ "n_elem": 1068,
+ "target_elements": 4000,
+ "gap": 2932,
+ "cutoff_score": 0.9172530770301819,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9842098951339722,
+ "score_mean": 0.14146995544433594,
+ "score_p50": 0.0018474144162610173,
+ "score_p90": 0.689215898513794,
+ "fraction_gt1": 0.0,
+ "n_inside": 260,
+ "n_interface": 559,
+ "n_outside": 450,
+ "selected_inside_frac": 0.23684210526315788,
+ "selected_interface_frac": 0.6052631578947368,
+ "selected_outside_frac": 0.15789473684210525,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.5416666666666667,
+ "step": 6,
+ "n_elem": 1269,
+ "target_elements": 4000,
+ "gap": 2731,
+ "cutoff_score": 0.8997259140014648,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9910827875137329,
+ "score_mean": 0.15282297134399414,
+ "score_p50": 0.003967716358602047,
+ "score_p90": 0.7034679055213928,
+ "fraction_gt1": 0.0,
+ "n_inside": 312,
+ "n_interface": 699,
+ "n_outside": 500,
+ "selected_inside_frac": 0.022222222222222223,
+ "selected_interface_frac": 0.4222222222222222,
+ "selected_outside_frac": 0.5555555555555556,
+ "selected_x_range": 0.8541666666666667,
+ "selected_y_range": 0.6979166666666667,
+ "step": 7,
+ "n_elem": 1511,
+ "target_elements": 4000,
+ "gap": 2489,
+ "cutoff_score": 0.9084905385971069,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9765617847442627,
+ "score_mean": 0.1685209572315216,
+ "score_p50": 0.004806197714060545,
+ "score_p90": 0.7409637570381165,
+ "fraction_gt1": 0.0,
+ "n_inside": 325,
+ "n_interface": 809,
+ "n_outside": 653,
+ "selected_inside_frac": 0.11320754716981132,
+ "selected_interface_frac": 0.41509433962264153,
+ "selected_outside_frac": 0.4716981132075472,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.75,
+ "step": 8,
+ "n_elem": 1787,
+ "target_elements": 4000,
+ "gap": 2213,
+ "cutoff_score": 0.9149032831192017,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9864686727523804,
+ "score_mean": 0.19336843490600586,
+ "score_p50": 0.0029475956689566374,
+ "score_p90": 0.7755799293518066,
+ "fraction_gt1": 0.0,
+ "n_inside": 359,
+ "n_interface": 967,
+ "n_outside": 785,
+ "selected_inside_frac": 0.06349206349206349,
+ "selected_interface_frac": 0.49206349206349204,
+ "selected_outside_frac": 0.4444444444444444,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.84375,
+ "step": 9,
+ "n_elem": 2111,
+ "target_elements": 4000,
+ "gap": 1889,
+ "cutoff_score": 0.9197213053703308,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.983628511428833,
+ "score_mean": 0.19279630482196808,
+ "score_p50": 0.001290706335566938,
+ "score_p90": 0.8291851282119751,
+ "fraction_gt1": 0.0,
+ "n_inside": 388,
+ "n_interface": 1150,
+ "n_outside": 965,
+ "selected_inside_frac": 0.17333333333333334,
+ "selected_interface_frac": 0.36,
+ "selected_outside_frac": 0.4666666666666667,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.96875,
+ "step": 10,
+ "n_elem": 2503,
+ "target_elements": 4000,
+ "gap": 1497,
+ "cutoff_score": 0.9249439239501953,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9872341752052307,
+ "score_mean": 0.16766801476478577,
+ "score_p50": 0.000707110739313066,
+ "score_p90": 0.8115166425704956,
+ "fraction_gt1": 0.0,
+ "n_inside": 478,
+ "n_interface": 1316,
+ "n_outside": 1178,
+ "selected_inside_frac": 0.449438202247191,
+ "selected_interface_frac": 0.2696629213483146,
+ "selected_outside_frac": 0.2808988764044944,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2972,
+ "target_elements": 4000,
+ "gap": 1028,
+ "cutoff_score": 0.9311442971229553,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9913737177848816,
+ "score_mean": 0.14907068014144897,
+ "score_p50": 0.0008637777646072209,
+ "score_p90": 0.7269986271858215,
+ "fraction_gt1": 0.0,
+ "n_inside": 693,
+ "n_interface": 1461,
+ "n_outside": 1353,
+ "selected_inside_frac": 0.2571428571428571,
+ "selected_interface_frac": 0.4857142857142857,
+ "selected_outside_frac": 0.2571428571428571,
+ "selected_x_range": 0.9270833333333334,
+ "selected_y_range": 0.9479166666666667,
+ "step": 12,
+ "n_elem": 3507,
+ "target_elements": 4000,
+ "gap": 493,
+ "cutoff_score": 0.9270665645599365,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 90,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.09181936382576468,
+ "max_err": 0.1389783425482214,
+ "actual_elements": 4176,
+ "num_steps": 15,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 5.920400619506836,
+ "score_mean": -6.230548024177551e-07,
+ "score_p50": -0.2139771282672882,
+ "score_p90": -0.08964541554450989,
+ "fraction_gt1": 0.06640625,
+ "n_inside": 8,
+ "n_interface": 155,
+ "n_outside": 349,
+ "selected_inside_frac": 0.5333333333333333,
+ "selected_interface_frac": 0.4666666666666667,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18750000000000006,
+ "selected_y_range": 0.14583333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 4000,
+ "gap": 3488,
+ "cutoff_score": 1.8521262407302856,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 2.250898838043213,
+ "score_mean": 1.8844080074131853e-08,
+ "score_p50": -0.05480290949344635,
+ "score_p90": 0.40039893984794617,
+ "fraction_gt1": 0.07560137457044673,
+ "n_inside": 33,
+ "n_interface": 200,
+ "n_outside": 349,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.09375000000000006,
+ "selected_y_range": 0.10416666666666674,
+ "step": 1,
+ "n_elem": 582,
+ "target_elements": 4000,
+ "gap": 3418,
+ "cutoff_score": 2.1905593872070312,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2663333415985107,
+ "score_mean": 1.0279124040835086e-07,
+ "score_p50": 0.07972617447376251,
+ "score_p90": 0.7995032668113708,
+ "fraction_gt1": 0.09131736526946108,
+ "n_inside": 97,
+ "n_interface": 222,
+ "n_outside": 349,
+ "selected_inside_frac": 0.35,
+ "selected_interface_frac": 0.65,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3229166666666667,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 668,
+ "target_elements": 4000,
+ "gap": 3332,
+ "cutoff_score": 1.8760499954223633,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0080819129943848,
+ "score_mean": -2.8899222570544225e-08,
+ "score_p50": 0.18650533258914948,
+ "score_p90": 0.701931357383728,
+ "fraction_gt1": 0.05808080808080808,
+ "n_inside": 126,
+ "n_interface": 313,
+ "n_outside": 353,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.34782608695652173,
+ "selected_outside_frac": 0.6521739130434783,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.33333333333333326,
+ "step": 3,
+ "n_elem": 792,
+ "target_elements": 4000,
+ "gap": 3208,
+ "cutoff_score": 1.7328094244003296,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9385044574737549,
+ "score_mean": -1.514102621058555e-07,
+ "score_p50": 0.2962300181388855,
+ "score_p90": 0.7335521578788757,
+ "fraction_gt1": 0.044101433296582136,
+ "n_inside": 126,
+ "n_interface": 365,
+ "n_outside": 416,
+ "selected_inside_frac": 0.3333333333333333,
+ "selected_interface_frac": 0.5925925925925926,
+ "selected_outside_frac": 0.07407407407407407,
+ "selected_x_range": 0.5260416666666666,
+ "selected_y_range": 0.28645833333333326,
+ "step": 4,
+ "n_elem": 907,
+ "target_elements": 4000,
+ "gap": 3093,
+ "cutoff_score": 1.0748859643936157,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0299835205078125,
+ "score_mean": -8.516533256397452e-08,
+ "score_p50": -0.12278962135314941,
+ "score_p90": 0.8493532538414001,
+ "fraction_gt1": 0.08093023255813954,
+ "n_inside": 170,
+ "n_interface": 468,
+ "n_outside": 437,
+ "selected_inside_frac": 0.28125,
+ "selected_interface_frac": 0.3125,
+ "selected_outside_frac": 0.40625,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.5416666666666667,
+ "step": 5,
+ "n_elem": 1075,
+ "target_elements": 4000,
+ "gap": 2925,
+ "cutoff_score": 1.20358407497406,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.950622320175171,
+ "score_mean": -7.271861335311769e-08,
+ "score_p50": -0.35285684466362,
+ "score_p90": 1.0283881425857544,
+ "fraction_gt1": 0.10722795869737888,
+ "n_inside": 219,
+ "n_interface": 536,
+ "n_outside": 504,
+ "selected_inside_frac": 0.02702702702702703,
+ "selected_interface_frac": 0.13513513513513514,
+ "selected_outside_frac": 0.8378378378378378,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.71875,
+ "step": 6,
+ "n_elem": 1259,
+ "target_elements": 4000,
+ "gap": 2741,
+ "cutoff_score": 1.3004428148269653,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1058292388916016,
+ "score_mean": 8.247994287557958e-08,
+ "score_p50": -0.43165671825408936,
+ "score_p90": 1.0916863679885864,
+ "fraction_gt1": 0.1277027027027027,
+ "n_inside": 227,
+ "n_interface": 586,
+ "n_outside": 667,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.20454545454545456,
+ "selected_outside_frac": 0.7954545454545454,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 7,
+ "n_elem": 1480,
+ "target_elements": 4000,
+ "gap": 2520,
+ "cutoff_score": 1.3795335292816162,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3791117668151855,
+ "score_mean": 7.109511557246151e-08,
+ "score_p50": -0.38484105467796326,
+ "score_p90": 1.0905154943466187,
+ "fraction_gt1": 0.168899242865463,
+ "n_inside": 227,
+ "n_interface": 645,
+ "n_outside": 845,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.13725490196078433,
+ "selected_outside_frac": 0.8627450980392157,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9479166666666667,
+ "step": 8,
+ "n_elem": 1717,
+ "target_elements": 4000,
+ "gap": 2283,
+ "cutoff_score": 1.4570585489273071,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.380946636199951,
+ "score_mean": -1.0904698655167522e-07,
+ "score_p50": -0.3248918056488037,
+ "score_p90": 1.0566266775131226,
+ "fraction_gt1": 0.12506380806533945,
+ "n_inside": 227,
+ "n_interface": 681,
+ "n_outside": 1051,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.10344827586206896,
+ "selected_outside_frac": 0.896551724137931,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 1959,
+ "target_elements": 4000,
+ "gap": 2041,
+ "cutoff_score": 1.560400366783142,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1523282527923584,
+ "score_mean": -2.7946500225084492e-08,
+ "score_p50": -0.2399856448173523,
+ "score_p90": 1.032410740852356,
+ "fraction_gt1": 0.10347985347985347,
+ "n_inside": 227,
+ "n_interface": 716,
+ "n_outside": 1241,
+ "selected_inside_frac": 0.5846153846153846,
+ "selected_interface_frac": 0.18461538461538463,
+ "selected_outside_frac": 0.23076923076923078,
+ "selected_x_range": 0.65625,
+ "selected_y_range": 0.96875,
+ "step": 10,
+ "n_elem": 2184,
+ "target_elements": 4000,
+ "gap": 1816,
+ "cutoff_score": 1.4257756471633911,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.010190486907959,
+ "score_mean": -3.624415612080156e-08,
+ "score_p50": -0.06350298225879669,
+ "score_p90": 0.9008982181549072,
+ "fraction_gt1": 0.08709422011084719,
+ "n_inside": 405,
+ "n_interface": 808,
+ "n_outside": 1313,
+ "selected_inside_frac": 0.16,
+ "selected_interface_frac": 0.7333333333333333,
+ "selected_outside_frac": 0.10666666666666667,
+ "selected_x_range": 0.7083333333333334,
+ "selected_y_range": 0.6041666666666667,
+ "step": 11,
+ "n_elem": 2526,
+ "target_elements": 4000,
+ "gap": 1474,
+ "cutoff_score": 1.3586066961288452,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.051413059234619,
+ "score_mean": 2.1170709629814155e-08,
+ "score_p50": 0.058056920766830444,
+ "score_p90": 0.889435887336731,
+ "fraction_gt1": 0.07180020811654526,
+ "n_inside": 453,
+ "n_interface": 1075,
+ "n_outside": 1355,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.5465116279069767,
+ "selected_outside_frac": 0.45348837209302323,
+ "selected_x_range": 0.7708333333333334,
+ "selected_y_range": 0.6666666666666667,
+ "step": 12,
+ "n_elem": 2883,
+ "target_elements": 4000,
+ "gap": 1117,
+ "cutoff_score": 1.4869301319122314,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0035297870635986,
+ "score_mean": -7.418432801387098e-08,
+ "score_p50": 0.18297338485717773,
+ "score_p90": 0.8776243329048157,
+ "fraction_gt1": 0.09480401093892434,
+ "n_inside": 453,
+ "n_interface": 1307,
+ "n_outside": 1531,
+ "selected_inside_frac": 0.3469387755102041,
+ "selected_interface_frac": 0.3673469387755102,
+ "selected_outside_frac": 0.2857142857142857,
+ "selected_x_range": 0.8333333333333334,
+ "selected_y_range": 0.6458333333333334,
+ "step": 13,
+ "n_elem": 3291,
+ "target_elements": 4000,
+ "gap": 709,
+ "cutoff_score": 1.3044931888580322,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1480226516723633,
+ "score_mean": -7.96387737977966e-08,
+ "score_p50": -0.2545506954193115,
+ "score_p90": 0.8856709599494934,
+ "fraction_gt1": 0.07359081419624217,
+ "n_inside": 612,
+ "n_interface": 1533,
+ "n_outside": 1687,
+ "selected_inside_frac": 0.05357142857142857,
+ "selected_interface_frac": 0.39285714285714285,
+ "selected_outside_frac": 0.5535714285714286,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9583333333333334,
+ "step": 14,
+ "n_elem": 3832,
+ "target_elements": 4000,
+ "gap": 168,
+ "cutoff_score": 1.5085391998291016,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 90,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.08933323521541779,
+ "max_err": 0.14210702736269643,
+ "actual_elements": 8151,
+ "num_steps": 21,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.8021454215049744,
+ "score_mean": 0.3538990020751953,
+ "score_p50": 0.34678390622138977,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 8,
+ "n_interface": 155,
+ "n_outside": 349,
+ "selected_inside_frac": 0.5333333333333333,
+ "selected_interface_frac": 0.4666666666666667,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.14583333333333331,
+ "selected_y_range": 0.16666666666666674,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 504,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.4010727107524872,
+ "score_mean": 0.3314695954322815,
+ "score_p50": 0.34678390622138977,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 34,
+ "n_interface": 203,
+ "n_outside": 349,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.13541666666666669,
+ "selected_y_range": 0.125,
+ "step": 1,
+ "n_elem": 586,
+ "target_elements": 8000,
+ "gap": 7414,
+ "cutoff_score": 0.4010727107524872,
+ "num_tied_at_cutoff": 34,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.4010727107524872,
+ "score_mean": 0.2950659990310669,
+ "score_p50": 0.34678390622138977,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 105,
+ "n_interface": 248,
+ "n_outside": 349,
+ "selected_inside_frac": 0.19047619047619047,
+ "selected_interface_frac": 0.8095238095238095,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.31249999999999994,
+ "selected_y_range": 0.33333333333333326,
+ "step": 2,
+ "n_elem": 702,
+ "target_elements": 8000,
+ "gap": 7298,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 478,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.2688415050506592,
+ "score_p50": 0.34678390622138977,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 354,
+ "n_outside": 349,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.45833333333333326,
+ "selected_y_range": 0.45833333333333326,
+ "step": 3,
+ "n_elem": 826,
+ "target_elements": 8000,
+ "gap": 7174,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 434,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.24790175259113312,
+ "score_p50": 0.2005363553762436,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 486,
+ "n_outside": 349,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.6041666666666667,
+ "selected_y_range": 0.5208333333333333,
+ "step": 4,
+ "n_elem": 958,
+ "target_elements": 8000,
+ "gap": 7042,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 386,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.22967612743377686,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 605,
+ "n_outside": 386,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.030303030303030304,
+ "selected_outside_frac": 0.9696969696969697,
+ "selected_x_range": 0.75,
+ "selected_y_range": 0.625,
+ "step": 5,
+ "n_elem": 1114,
+ "target_elements": 8000,
+ "gap": 6886,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 326,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.21378523111343384,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 616,
+ "n_outside": 559,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.6875,
+ "step": 6,
+ "n_elem": 1298,
+ "target_elements": 8000,
+ "gap": 6702,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 256,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.20102465152740479,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.34678390622138977,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 616,
+ "n_outside": 756,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.7708333333333333,
+ "step": 7,
+ "n_elem": 1495,
+ "target_elements": 8000,
+ "gap": 6505,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 184,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.1906011700630188,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.24521325528621674,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 616,
+ "n_outside": 966,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.33333333333333337,
+ "step": 8,
+ "n_elem": 1705,
+ "target_elements": 8000,
+ "gap": 6295,
+ "cutoff_score": 0.34678390622138977,
+ "num_tied_at_cutoff": 110,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.34678390622138977,
+ "score_mean": 0.18221479654312134,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.24521325528621674,
+ "fraction_gt1": 0.0,
+ "n_inside": 123,
+ "n_interface": 616,
+ "n_outside": 1184,
+ "selected_inside_frac": 0.22807017543859648,
+ "selected_interface_frac": 0.21052631578947367,
+ "selected_outside_frac": 0.5614035087719298,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8854166666666666,
+ "step": 9,
+ "n_elem": 1923,
+ "target_elements": 8000,
+ "gap": 6077,
+ "cutoff_score": 0.24521325528621674,
+ "num_tied_at_cutoff": 157,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.24521325528621674,
+ "score_mean": 0.17274858057498932,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.2005363553762436,
+ "fraction_gt1": 0.0,
+ "n_inside": 181,
+ "n_interface": 686,
+ "n_outside": 1295,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.328125,
+ "selected_outside_frac": 0.671875,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.6458333333333334,
+ "step": 10,
+ "n_elem": 2162,
+ "target_elements": 8000,
+ "gap": 5838,
+ "cutoff_score": 0.24521325528621674,
+ "num_tied_at_cutoff": 128,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.24521325528621674,
+ "score_mean": 0.1611994504928589,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.17339195311069489,
+ "fraction_gt1": 0.0,
+ "n_inside": 181,
+ "n_interface": 798,
+ "n_outside": 1485,
+ "selected_inside_frac": 0.1780821917808219,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.821917808219178,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 11,
+ "n_elem": 2464,
+ "target_elements": 8000,
+ "gap": 5536,
+ "cutoff_score": 0.2005363553762436,
+ "num_tied_at_cutoff": 90,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.2005363553762436,
+ "score_mean": 0.1485441029071808,
+ "score_p50": 0.17339195311069489,
+ "score_p90": 0.17339195311069489,
+ "fraction_gt1": 0.0,
+ "n_inside": 241,
+ "n_interface": 874,
+ "n_outside": 1747,
+ "selected_inside_frac": 0.6588235294117647,
+ "selected_interface_frac": 0.3411764705882353,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.23958333333333331,
+ "selected_y_range": 0.25,
+ "step": 12,
+ "n_elem": 2862,
+ "target_elements": 8000,
+ "gap": 5138,
+ "cutoff_score": 0.17339195311069489,
+ "num_tied_at_cutoff": 1494,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17339195311069489,
+ "score_mean": 0.1380988359451294,
+ "score_p50": 0.12260662764310837,
+ "score_p90": 0.17339195311069489,
+ "fraction_gt1": 0.0,
+ "n_inside": 453,
+ "n_interface": 1054,
+ "n_outside": 1747,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3854166666666667,
+ "selected_y_range": 0.40625,
+ "step": 13,
+ "n_elem": 3254,
+ "target_elements": 8000,
+ "gap": 4746,
+ "cutoff_score": 0.17339195311069489,
+ "num_tied_at_cutoff": 1432,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17339195311069489,
+ "score_mean": 0.12912395596504211,
+ "score_p50": 0.12260662764310837,
+ "score_p90": 0.17339195311069489,
+ "fraction_gt1": 0.0,
+ "n_inside": 453,
+ "n_interface": 1466,
+ "n_outside": 1747,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 1.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.5104166666666667,
+ "step": 14,
+ "n_elem": 3666,
+ "target_elements": 8000,
+ "gap": 4334,
+ "cutoff_score": 0.17339195311069489,
+ "num_tied_at_cutoff": 1286,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17339195311069489,
+ "score_mean": 0.12084252387285233,
+ "score_p50": 0.12260662764310837,
+ "score_p90": 0.17339195311069489,
+ "fraction_gt1": 0.0,
+ "n_inside": 453,
+ "n_interface": 1948,
+ "n_outside": 1747,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.5887096774193549,
+ "selected_outside_frac": 0.4112903225806452,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.59375,
+ "step": 15,
+ "n_elem": 4148,
+ "target_elements": 8000,
+ "gap": 3852,
+ "cutoff_score": 0.17339195311069489,
+ "num_tied_at_cutoff": 1124,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17339195311069489,
+ "score_mean": 0.11355355381965637,
+ "score_p50": 0.1002681776881218,
+ "score_p90": 0.17339195311069489,
+ "fraction_gt1": 0.0,
+ "n_inside": 453,
+ "n_interface": 2228,
+ "n_outside": 2007,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.8125,
+ "selected_y_range": 0.6666666666666667,
+ "step": 16,
+ "n_elem": 4688,
+ "target_elements": 8000,
+ "gap": 3312,
+ "cutoff_score": 0.17339195311069489,
+ "num_tied_at_cutoff": 950,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17339195311069489,
+ "score_mean": 0.10731271654367447,
+ "score_p50": 0.08669597655534744,
+ "score_p90": 0.17339195311069489,
+ "fraction_gt1": 0.0,
+ "n_inside": 453,
+ "n_interface": 2228,
+ "n_outside": 2599,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.7291666666666667,
+ "step": 17,
+ "n_elem": 5280,
+ "target_elements": 8000,
+ "gap": 2720,
+ "cutoff_score": 0.17339195311069489,
+ "num_tied_at_cutoff": 750,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17339195311069489,
+ "score_mean": 0.10185249149799347,
+ "score_p50": 0.08669597655534744,
+ "score_p90": 0.14180061221122742,
+ "fraction_gt1": 0.0,
+ "n_inside": 453,
+ "n_interface": 2228,
+ "n_outside": 3255,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8229166666666667,
+ "step": 18,
+ "n_elem": 5936,
+ "target_elements": 8000,
+ "gap": 2064,
+ "cutoff_score": 0.17339195311069489,
+ "num_tied_at_cutoff": 528,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17339195311069489,
+ "score_mean": 0.09727077931165695,
+ "score_p50": 0.08669597655534744,
+ "score_p90": 0.12260662764310837,
+ "fraction_gt1": 0.0,
+ "n_inside": 453,
+ "n_interface": 2228,
+ "n_outside": 3936,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 1.0,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.35416666666666663,
+ "step": 19,
+ "n_elem": 6617,
+ "target_elements": 8000,
+ "gap": 1383,
+ "cutoff_score": 0.17339195311069489,
+ "num_tied_at_cutoff": 316,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.17339195311069489,
+ "score_mean": 0.09343288093805313,
+ "score_p50": 0.08669597655534744,
+ "score_p90": 0.12260662764310837,
+ "fraction_gt1": 0.0,
+ "n_inside": 453,
+ "n_interface": 2228,
+ "n_outside": 4639,
+ "selected_inside_frac": 0.4018264840182648,
+ "selected_interface_frac": 0.1506849315068493,
+ "selected_outside_frac": 0.4474885844748858,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.8177083333333334,
+ "step": 20,
+ "n_elem": 7320,
+ "target_elements": 8000,
+ "gap": 680,
+ "cutoff_score": 0.12260662764310837,
+ "num_tied_at_cutoff": 958,
+ "score_decreased": true
+ }
+ ],
+ "sample_id": 90,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.08822310799461021,
+ "max_err": 0.1405429995085687,
+ "actual_elements": 8194,
+ "num_steps": 17,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 0.9935526847839355,
+ "score_mean": 0.07133924216032028,
+ "score_p50": 3.860219521811814e-08,
+ "score_p90": 0.058746784925460815,
+ "fraction_gt1": 0.0,
+ "n_inside": 8,
+ "n_interface": 155,
+ "n_outside": 349,
+ "selected_inside_frac": 0.5333333333333333,
+ "selected_interface_frac": 0.4666666666666667,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18750000000000006,
+ "selected_y_range": 0.14583333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 0.9762341380119324,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 0.9900017976760864,
+ "score_mean": 0.1077551618218422,
+ "score_p50": 3.1467925509787165e-07,
+ "score_p90": 0.5914151072502136,
+ "fraction_gt1": 0.0,
+ "n_inside": 33,
+ "n_interface": 200,
+ "n_outside": 349,
+ "selected_inside_frac": 0.9411764705882353,
+ "selected_interface_frac": 0.058823529411764705,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.10416666666666669,
+ "selected_y_range": 0.13541666666666674,
+ "step": 1,
+ "n_elem": 582,
+ "target_elements": 8000,
+ "gap": 7418,
+ "cutoff_score": 0.9598771333694458,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9894866943359375,
+ "score_mean": 0.10842404514551163,
+ "score_p50": 2.630177914397791e-05,
+ "score_p90": 0.5552561283111572,
+ "fraction_gt1": 0.0,
+ "n_inside": 94,
+ "n_interface": 227,
+ "n_outside": 349,
+ "selected_inside_frac": 0.15,
+ "selected_interface_frac": 0.85,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3229166666666667,
+ "selected_y_range": 0.33333333333333326,
+ "step": 2,
+ "n_elem": 670,
+ "target_elements": 8000,
+ "gap": 7330,
+ "cutoff_score": 0.9593972563743591,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9904739260673523,
+ "score_mean": 0.12082226574420929,
+ "score_p50": 0.0001319700968451798,
+ "score_p90": 0.5920992493629456,
+ "fraction_gt1": 0.0,
+ "n_inside": 111,
+ "n_interface": 324,
+ "n_outside": 353,
+ "selected_inside_frac": 0.08695652173913043,
+ "selected_interface_frac": 0.5217391304347826,
+ "selected_outside_frac": 0.391304347826087,
+ "selected_x_range": 0.5104166666666667,
+ "selected_y_range": 0.3125,
+ "step": 3,
+ "n_elem": 788,
+ "target_elements": 8000,
+ "gap": 7212,
+ "cutoff_score": 0.9484294652938843,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9884568452835083,
+ "score_mean": 0.14230883121490479,
+ "score_p50": 0.0004431417619343847,
+ "score_p90": 0.6671142578125,
+ "fraction_gt1": 0.0,
+ "n_inside": 120,
+ "n_interface": 410,
+ "n_outside": 391,
+ "selected_inside_frac": 0.48148148148148145,
+ "selected_interface_frac": 0.4074074074074074,
+ "selected_outside_frac": 0.1111111111111111,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.39583333333333326,
+ "step": 4,
+ "n_elem": 921,
+ "target_elements": 8000,
+ "gap": 7079,
+ "cutoff_score": 0.9414879679679871,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9879990816116333,
+ "score_mean": 0.14606161415576935,
+ "score_p50": 0.0006529829115606844,
+ "score_p90": 0.6979970335960388,
+ "fraction_gt1": 0.0,
+ "n_inside": 186,
+ "n_interface": 468,
+ "n_outside": 414,
+ "selected_inside_frac": 0.375,
+ "selected_interface_frac": 0.46875,
+ "selected_outside_frac": 0.15625,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.4375,
+ "step": 5,
+ "n_elem": 1068,
+ "target_elements": 8000,
+ "gap": 6932,
+ "cutoff_score": 0.9172530770301819,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9842098951339722,
+ "score_mean": 0.14146995544433594,
+ "score_p50": 0.0018474144162610173,
+ "score_p90": 0.689215898513794,
+ "fraction_gt1": 0.0,
+ "n_inside": 260,
+ "n_interface": 559,
+ "n_outside": 450,
+ "selected_inside_frac": 0.23684210526315788,
+ "selected_interface_frac": 0.6052631578947368,
+ "selected_outside_frac": 0.15789473684210525,
+ "selected_x_range": 0.6458333333333333,
+ "selected_y_range": 0.5416666666666667,
+ "step": 6,
+ "n_elem": 1269,
+ "target_elements": 8000,
+ "gap": 6731,
+ "cutoff_score": 0.8997259140014648,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9910827875137329,
+ "score_mean": 0.15282297134399414,
+ "score_p50": 0.003967716358602047,
+ "score_p90": 0.7034679055213928,
+ "fraction_gt1": 0.0,
+ "n_inside": 312,
+ "n_interface": 699,
+ "n_outside": 500,
+ "selected_inside_frac": 0.022222222222222223,
+ "selected_interface_frac": 0.4222222222222222,
+ "selected_outside_frac": 0.5555555555555556,
+ "selected_x_range": 0.8541666666666667,
+ "selected_y_range": 0.6979166666666667,
+ "step": 7,
+ "n_elem": 1511,
+ "target_elements": 8000,
+ "gap": 6489,
+ "cutoff_score": 0.9084905385971069,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9765617847442627,
+ "score_mean": 0.1685209572315216,
+ "score_p50": 0.004806197714060545,
+ "score_p90": 0.7409637570381165,
+ "fraction_gt1": 0.0,
+ "n_inside": 325,
+ "n_interface": 809,
+ "n_outside": 653,
+ "selected_inside_frac": 0.11320754716981132,
+ "selected_interface_frac": 0.41509433962264153,
+ "selected_outside_frac": 0.4716981132075472,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.75,
+ "step": 8,
+ "n_elem": 1787,
+ "target_elements": 8000,
+ "gap": 6213,
+ "cutoff_score": 0.9149032831192017,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9864686727523804,
+ "score_mean": 0.19336843490600586,
+ "score_p50": 0.0029475956689566374,
+ "score_p90": 0.7755799293518066,
+ "fraction_gt1": 0.0,
+ "n_inside": 359,
+ "n_interface": 967,
+ "n_outside": 785,
+ "selected_inside_frac": 0.06349206349206349,
+ "selected_interface_frac": 0.49206349206349204,
+ "selected_outside_frac": 0.4444444444444444,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.84375,
+ "step": 9,
+ "n_elem": 2111,
+ "target_elements": 8000,
+ "gap": 5889,
+ "cutoff_score": 0.9197213053703308,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.983628511428833,
+ "score_mean": 0.19279630482196808,
+ "score_p50": 0.001290706335566938,
+ "score_p90": 0.8291851282119751,
+ "fraction_gt1": 0.0,
+ "n_inside": 388,
+ "n_interface": 1150,
+ "n_outside": 965,
+ "selected_inside_frac": 0.17333333333333334,
+ "selected_interface_frac": 0.36,
+ "selected_outside_frac": 0.4666666666666667,
+ "selected_x_range": 0.9375,
+ "selected_y_range": 0.96875,
+ "step": 10,
+ "n_elem": 2503,
+ "target_elements": 8000,
+ "gap": 5497,
+ "cutoff_score": 0.9249439239501953,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9872341752052307,
+ "score_mean": 0.16766801476478577,
+ "score_p50": 0.000707110739313066,
+ "score_p90": 0.8115166425704956,
+ "fraction_gt1": 0.0,
+ "n_inside": 478,
+ "n_interface": 1316,
+ "n_outside": 1178,
+ "selected_inside_frac": 0.449438202247191,
+ "selected_interface_frac": 0.2696629213483146,
+ "selected_outside_frac": 0.2808988764044944,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.96875,
+ "step": 11,
+ "n_elem": 2972,
+ "target_elements": 8000,
+ "gap": 5028,
+ "cutoff_score": 0.9311442971229553,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9913737177848816,
+ "score_mean": 0.14907068014144897,
+ "score_p50": 0.0008637777646072209,
+ "score_p90": 0.7269986271858215,
+ "fraction_gt1": 0.0,
+ "n_inside": 693,
+ "n_interface": 1461,
+ "n_outside": 1353,
+ "selected_inside_frac": 0.2571428571428571,
+ "selected_interface_frac": 0.4857142857142857,
+ "selected_outside_frac": 0.2571428571428571,
+ "selected_x_range": 0.9270833333333334,
+ "selected_y_range": 0.9479166666666667,
+ "step": 12,
+ "n_elem": 3507,
+ "target_elements": 8000,
+ "gap": 4493,
+ "cutoff_score": 0.9270665645599365,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9895786643028259,
+ "score_mean": 0.13517136871814728,
+ "score_p50": 0.0010879832552745938,
+ "score_p90": 0.6438980102539062,
+ "fraction_gt1": 0.0,
+ "n_inside": 860,
+ "n_interface": 1781,
+ "n_outside": 1550,
+ "selected_inside_frac": 0.184,
+ "selected_interface_frac": 0.48,
+ "selected_outside_frac": 0.336,
+ "selected_x_range": 0.9270833333333334,
+ "selected_y_range": 0.9166666666666667,
+ "step": 13,
+ "n_elem": 4191,
+ "target_elements": 8000,
+ "gap": 3809,
+ "cutoff_score": 0.9068530201911926,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9914404153823853,
+ "score_mean": 0.13242480158805847,
+ "score_p50": 0.001597523340024054,
+ "score_p90": 0.6106825470924377,
+ "fraction_gt1": 0.0,
+ "n_inside": 998,
+ "n_interface": 2128,
+ "n_outside": 1798,
+ "selected_inside_frac": 0.12244897959183673,
+ "selected_interface_frac": 0.46938775510204084,
+ "selected_outside_frac": 0.40816326530612246,
+ "selected_x_range": 0.71875,
+ "selected_y_range": 0.9791666666666667,
+ "step": 14,
+ "n_elem": 4924,
+ "target_elements": 8000,
+ "gap": 3076,
+ "cutoff_score": 0.8733092546463013,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 0.9862728714942932,
+ "score_mean": 0.1569889485836029,
+ "score_p50": 0.0029941066168248653,
+ "score_p90": 0.705251932144165,
+ "fraction_gt1": 0.0,
+ "n_inside": 1105,
+ "n_interface": 2548,
+ "n_outside": 2181,
+ "selected_inside_frac": 0.18285714285714286,
+ "selected_interface_frac": 0.41714285714285715,
+ "selected_outside_frac": 0.4,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.984375,
+ "step": 15,
+ "n_elem": 5834,
+ "target_elements": 8000,
+ "gap": 2166,
+ "cutoff_score": 0.8870604634284973,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 0.9888170957565308,
+ "score_mean": 0.17409291863441467,
+ "score_p50": 0.0027239371556788683,
+ "score_p90": 0.7587898969650269,
+ "fraction_gt1": 0.0,
+ "n_inside": 1327,
+ "n_interface": 3014,
+ "n_outside": 2588,
+ "selected_inside_frac": 0.1642512077294686,
+ "selected_interface_frac": 0.4106280193236715,
+ "selected_outside_frac": 0.4251207729468599,
+ "selected_x_range": 0.9479166666666667,
+ "selected_y_range": 0.859375,
+ "step": 16,
+ "n_elem": 6929,
+ "target_elements": 8000,
+ "gap": 1071,
+ "cutoff_score": 0.9224404692649841,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 90,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.0895093266538419,
+ "max_err": 0.13997456583582168,
+ "actual_elements": 8215,
+ "num_steps": 20,
+ "num_solves": 1,
+ "score_stats": [
+ {
+ "score_max": 5.920400619506836,
+ "score_mean": -6.230548024177551e-07,
+ "score_p50": -0.2139771282672882,
+ "score_p90": -0.08964541554450989,
+ "fraction_gt1": 0.06640625,
+ "n_inside": 8,
+ "n_interface": 155,
+ "n_outside": 349,
+ "selected_inside_frac": 0.5333333333333333,
+ "selected_interface_frac": 0.4666666666666667,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.18750000000000006,
+ "selected_y_range": 0.14583333333333326,
+ "step": 0,
+ "n_elem": 512,
+ "target_elements": 8000,
+ "gap": 7488,
+ "cutoff_score": 1.8521262407302856,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": null
+ },
+ {
+ "score_max": 2.250898838043213,
+ "score_mean": 1.8844080074131853e-08,
+ "score_p50": -0.05480290949344635,
+ "score_p90": 0.40039893984794617,
+ "fraction_gt1": 0.07560137457044673,
+ "n_inside": 33,
+ "n_interface": 200,
+ "n_outside": 349,
+ "selected_inside_frac": 1.0,
+ "selected_interface_frac": 0.0,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.09375000000000006,
+ "selected_y_range": 0.10416666666666674,
+ "step": 1,
+ "n_elem": 582,
+ "target_elements": 8000,
+ "gap": 7418,
+ "cutoff_score": 2.1905593872070312,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.2663333415985107,
+ "score_mean": 1.0279124040835086e-07,
+ "score_p50": 0.07972617447376251,
+ "score_p90": 0.7995032668113708,
+ "fraction_gt1": 0.09131736526946108,
+ "n_inside": 97,
+ "n_interface": 222,
+ "n_outside": 349,
+ "selected_inside_frac": 0.35,
+ "selected_interface_frac": 0.65,
+ "selected_outside_frac": 0.0,
+ "selected_x_range": 0.3229166666666667,
+ "selected_y_range": 0.3125,
+ "step": 2,
+ "n_elem": 668,
+ "target_elements": 8000,
+ "gap": 7332,
+ "cutoff_score": 1.8760499954223633,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0080819129943848,
+ "score_mean": -2.8899222570544225e-08,
+ "score_p50": 0.18650533258914948,
+ "score_p90": 0.701931357383728,
+ "fraction_gt1": 0.05808080808080808,
+ "n_inside": 126,
+ "n_interface": 313,
+ "n_outside": 353,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.34782608695652173,
+ "selected_outside_frac": 0.6521739130434783,
+ "selected_x_range": 0.5625,
+ "selected_y_range": 0.33333333333333326,
+ "step": 3,
+ "n_elem": 792,
+ "target_elements": 8000,
+ "gap": 7208,
+ "cutoff_score": 1.7328094244003296,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 1.9385044574737549,
+ "score_mean": -1.514102621058555e-07,
+ "score_p50": 0.2962300181388855,
+ "score_p90": 0.7335521578788757,
+ "fraction_gt1": 0.044101433296582136,
+ "n_inside": 126,
+ "n_interface": 365,
+ "n_outside": 416,
+ "selected_inside_frac": 0.3333333333333333,
+ "selected_interface_frac": 0.5925925925925926,
+ "selected_outside_frac": 0.07407407407407407,
+ "selected_x_range": 0.5260416666666666,
+ "selected_y_range": 0.28645833333333326,
+ "step": 4,
+ "n_elem": 907,
+ "target_elements": 8000,
+ "gap": 7093,
+ "cutoff_score": 1.0748859643936157,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0299835205078125,
+ "score_mean": -8.516533256397452e-08,
+ "score_p50": -0.12278962135314941,
+ "score_p90": 0.8493532538414001,
+ "fraction_gt1": 0.08093023255813954,
+ "n_inside": 170,
+ "n_interface": 468,
+ "n_outside": 437,
+ "selected_inside_frac": 0.28125,
+ "selected_interface_frac": 0.3125,
+ "selected_outside_frac": 0.40625,
+ "selected_x_range": 0.6875,
+ "selected_y_range": 0.5416666666666667,
+ "step": 5,
+ "n_elem": 1075,
+ "target_elements": 8000,
+ "gap": 6925,
+ "cutoff_score": 1.20358407497406,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 1.950622320175171,
+ "score_mean": -7.271861335311769e-08,
+ "score_p50": -0.35285684466362,
+ "score_p90": 1.0283881425857544,
+ "fraction_gt1": 0.10722795869737888,
+ "n_inside": 219,
+ "n_interface": 536,
+ "n_outside": 504,
+ "selected_inside_frac": 0.02702702702702703,
+ "selected_interface_frac": 0.13513513513513514,
+ "selected_outside_frac": 0.8378378378378378,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.71875,
+ "step": 6,
+ "n_elem": 1259,
+ "target_elements": 8000,
+ "gap": 6741,
+ "cutoff_score": 1.3004428148269653,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.1058292388916016,
+ "score_mean": 8.247994287557958e-08,
+ "score_p50": -0.43165671825408936,
+ "score_p90": 1.0916863679885864,
+ "fraction_gt1": 0.1277027027027027,
+ "n_inside": 227,
+ "n_interface": 586,
+ "n_outside": 667,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.20454545454545456,
+ "selected_outside_frac": 0.7954545454545454,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.8333333333333333,
+ "step": 7,
+ "n_elem": 1480,
+ "target_elements": 8000,
+ "gap": 6520,
+ "cutoff_score": 1.3795335292816162,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.3791117668151855,
+ "score_mean": 7.109511557246151e-08,
+ "score_p50": -0.38484105467796326,
+ "score_p90": 1.0905154943466187,
+ "fraction_gt1": 0.168899242865463,
+ "n_inside": 227,
+ "n_interface": 645,
+ "n_outside": 845,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.13725490196078433,
+ "selected_outside_frac": 0.8627450980392157,
+ "selected_x_range": 0.9583333333333333,
+ "selected_y_range": 0.9479166666666667,
+ "step": 8,
+ "n_elem": 1717,
+ "target_elements": 8000,
+ "gap": 6283,
+ "cutoff_score": 1.4570585489273071,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.380946636199951,
+ "score_mean": -1.0904698655167522e-07,
+ "score_p50": -0.3248918056488037,
+ "score_p90": 1.0566266775131226,
+ "fraction_gt1": 0.12506380806533945,
+ "n_inside": 227,
+ "n_interface": 681,
+ "n_outside": 1051,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.10344827586206896,
+ "selected_outside_frac": 0.896551724137931,
+ "selected_x_range": 0.8958333333333333,
+ "selected_y_range": 0.9583333333333333,
+ "step": 9,
+ "n_elem": 1959,
+ "target_elements": 8000,
+ "gap": 6041,
+ "cutoff_score": 1.560400366783142,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1523282527923584,
+ "score_mean": -2.7946500225084492e-08,
+ "score_p50": -0.2399856448173523,
+ "score_p90": 1.032410740852356,
+ "fraction_gt1": 0.10347985347985347,
+ "n_inside": 227,
+ "n_interface": 716,
+ "n_outside": 1241,
+ "selected_inside_frac": 0.5846153846153846,
+ "selected_interface_frac": 0.18461538461538463,
+ "selected_outside_frac": 0.23076923076923078,
+ "selected_x_range": 0.65625,
+ "selected_y_range": 0.96875,
+ "step": 10,
+ "n_elem": 2184,
+ "target_elements": 8000,
+ "gap": 5816,
+ "cutoff_score": 1.4257756471633911,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.010190486907959,
+ "score_mean": -3.624415612080156e-08,
+ "score_p50": -0.06350298225879669,
+ "score_p90": 0.9008982181549072,
+ "fraction_gt1": 0.08709422011084719,
+ "n_inside": 405,
+ "n_interface": 808,
+ "n_outside": 1313,
+ "selected_inside_frac": 0.16,
+ "selected_interface_frac": 0.7333333333333333,
+ "selected_outside_frac": 0.10666666666666667,
+ "selected_x_range": 0.7083333333333334,
+ "selected_y_range": 0.6041666666666667,
+ "step": 11,
+ "n_elem": 2526,
+ "target_elements": 8000,
+ "gap": 5474,
+ "cutoff_score": 1.3586066961288452,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.051413059234619,
+ "score_mean": 2.1170709629814155e-08,
+ "score_p50": 0.058056920766830444,
+ "score_p90": 0.889435887336731,
+ "fraction_gt1": 0.07180020811654526,
+ "n_inside": 453,
+ "n_interface": 1075,
+ "n_outside": 1355,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.5465116279069767,
+ "selected_outside_frac": 0.45348837209302323,
+ "selected_x_range": 0.7708333333333334,
+ "selected_y_range": 0.6666666666666667,
+ "step": 12,
+ "n_elem": 2883,
+ "target_elements": 8000,
+ "gap": 5117,
+ "cutoff_score": 1.4869301319122314,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.0035297870635986,
+ "score_mean": -7.418432801387098e-08,
+ "score_p50": 0.18297338485717773,
+ "score_p90": 0.8776243329048157,
+ "fraction_gt1": 0.09480401093892434,
+ "n_inside": 453,
+ "n_interface": 1307,
+ "n_outside": 1531,
+ "selected_inside_frac": 0.3469387755102041,
+ "selected_interface_frac": 0.3673469387755102,
+ "selected_outside_frac": 0.2857142857142857,
+ "selected_x_range": 0.8333333333333334,
+ "selected_y_range": 0.6458333333333334,
+ "step": 13,
+ "n_elem": 3291,
+ "target_elements": 8000,
+ "gap": 4709,
+ "cutoff_score": 1.3044931888580322,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1480226516723633,
+ "score_mean": -7.96387737977966e-08,
+ "score_p50": -0.2545506954193115,
+ "score_p90": 0.8856709599494934,
+ "fraction_gt1": 0.07359081419624217,
+ "n_inside": 612,
+ "n_interface": 1533,
+ "n_outside": 1687,
+ "selected_inside_frac": 0.13157894736842105,
+ "selected_interface_frac": 0.4473684210526316,
+ "selected_outside_frac": 0.42105263157894735,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 14,
+ "n_elem": 3832,
+ "target_elements": 8000,
+ "gap": 4168,
+ "cutoff_score": 1.3232123851776123,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.1222548484802246,
+ "score_mean": -1.3681945176813315e-07,
+ "score_p50": -0.17871811985969543,
+ "score_p90": 0.8715318441390991,
+ "fraction_gt1": 0.05424792647388478,
+ "n_inside": 691,
+ "n_interface": 1793,
+ "n_outside": 1977,
+ "selected_inside_frac": 0.007518796992481203,
+ "selected_interface_frac": 0.22556390977443608,
+ "selected_outside_frac": 0.7669172932330827,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9791666666666667,
+ "step": 15,
+ "n_elem": 4461,
+ "target_elements": 8000,
+ "gap": 3539,
+ "cutoff_score": 1.2574344873428345,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.014650821685791,
+ "score_mean": -1.6595303975464049e-07,
+ "score_p50": -0.07608546316623688,
+ "score_p90": 0.8700180053710938,
+ "fraction_gt1": 0.05457370363177316,
+ "n_inside": 699,
+ "n_interface": 1973,
+ "n_outside": 2477,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.24675324675324675,
+ "selected_outside_frac": 0.7532467532467533,
+ "selected_x_range": 0.875,
+ "selected_y_range": 0.796875,
+ "step": 16,
+ "n_elem": 5149,
+ "target_elements": 8000,
+ "gap": 2851,
+ "cutoff_score": 1.1085655689239502,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.0849058628082275,
+ "score_mean": 6.195413959630969e-08,
+ "score_p50": 0.0429038405418396,
+ "score_p90": 0.9444164037704468,
+ "fraction_gt1": 0.0793435966841482,
+ "n_inside": 699,
+ "n_interface": 2195,
+ "n_outside": 3017,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.2937853107344633,
+ "selected_outside_frac": 0.7062146892655368,
+ "selected_x_range": 0.9791666666666667,
+ "selected_y_range": 0.9427083333333333,
+ "step": 17,
+ "n_elem": 5911,
+ "target_elements": 8000,
+ "gap": 2089,
+ "cutoff_score": 1.2362918853759766,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ },
+ {
+ "score_max": 2.281561851501465,
+ "score_mean": -7.152208070237975e-08,
+ "score_p50": -0.3602861762046814,
+ "score_p90": 1.0311510562896729,
+ "fraction_gt1": 0.10399882818221766,
+ "n_inside": 699,
+ "n_interface": 2473,
+ "n_outside": 3655,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.17647058823529413,
+ "selected_outside_frac": 0.8235294117647058,
+ "selected_x_range": 0.9166666666666667,
+ "selected_y_range": 0.984375,
+ "step": 18,
+ "n_elem": 6827,
+ "target_elements": 8000,
+ "gap": 1173,
+ "cutoff_score": 1.3678724765777588,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": true
+ },
+ {
+ "score_max": 2.384138345718384,
+ "score_mean": -3.1636727015893484e-08,
+ "score_p50": -0.3773967921733856,
+ "score_p90": 0.9273388385772705,
+ "fraction_gt1": 0.08254503045224829,
+ "n_inside": 699,
+ "n_interface": 2649,
+ "n_outside": 4369,
+ "selected_inside_frac": 0.0,
+ "selected_interface_frac": 0.11702127659574468,
+ "selected_outside_frac": 0.8829787234042553,
+ "selected_x_range": 0.984375,
+ "selected_y_range": 0.9791666666666667,
+ "step": 19,
+ "n_elem": 7717,
+ "target_elements": 8000,
+ "gap": 283,
+ "cutoff_score": 1.6894766092300415,
+ "num_tied_at_cutoff": 1,
+ "score_decreased": false
+ }
+ ],
+ "sample_id": 90,
+ "method": "hybrid",
+ "target_elements": 8000
+ }
+ ],
+ "summary": {
+ "physics_2000": {
+ "method": "physics",
+ "target_elements": 2000,
+ "mean_actual_elements": 2054.15,
+ "mean_aw_rel": 0.19191804819850916,
+ "std_aw_rel": 0.1703197428922942,
+ "mean_max_err": 0.330128751143988,
+ "std_max_err": 0.329522314499476,
+ "mean_num_steps": 9.45,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "physics_4000": {
+ "method": "physics",
+ "target_elements": 4000,
+ "mean_actual_elements": 4117.65,
+ "mean_aw_rel": 0.14036333333290366,
+ "std_aw_rel": 0.07525490707389265,
+ "mean_max_err": 0.2514125838116022,
+ "std_max_err": 0.12525099417371377,
+ "mean_num_steps": 14.75,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "physics_8000": {
+ "method": "physics",
+ "target_elements": 8000,
+ "mean_actual_elements": 8140.1,
+ "mean_aw_rel": 0.1324716279458789,
+ "std_aw_rel": 0.06625795078209694,
+ "mean_max_err": 0.24183097169481163,
+ "std_max_err": 0.11020178440715264,
+ "mean_num_steps": 20.7,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "neural_2000": {
+ "method": "neural",
+ "target_elements": 2000,
+ "mean_actual_elements": 2096.85,
+ "mean_aw_rel": 0.1595796639035016,
+ "std_aw_rel": 0.10205884445265621,
+ "mean_max_err": 0.2740541685787099,
+ "std_max_err": 0.17851915921112207,
+ "mean_num_steps": 8.9,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "neural_4000": {
+ "method": "neural",
+ "target_elements": 4000,
+ "mean_actual_elements": 4132.25,
+ "mean_aw_rel": 0.1371752914089166,
+ "std_aw_rel": 0.06943556350290432,
+ "mean_max_err": 0.2431483757604584,
+ "std_max_err": 0.11094507797411703,
+ "mean_num_steps": 13.45,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "neural_8000": {
+ "method": "neural",
+ "target_elements": 8000,
+ "mean_actual_elements": 8381.55,
+ "mean_aw_rel": 0.12979719827717448,
+ "std_aw_rel": 0.06506190421394932,
+ "mean_max_err": 0.23760622977313733,
+ "std_max_err": 0.11113546594423793,
+ "mean_num_steps": 17.8,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "hybrid_2000": {
+ "method": "hybrid",
+ "target_elements": 2000,
+ "mean_actual_elements": 2057.25,
+ "mean_aw_rel": 0.15784882381264204,
+ "std_aw_rel": 0.09831761490786742,
+ "mean_max_err": 0.26861893700276673,
+ "std_max_err": 0.1671901878424604,
+ "mean_num_steps": 9.75,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "hybrid_4000": {
+ "method": "hybrid",
+ "target_elements": 4000,
+ "mean_actual_elements": 4119.2,
+ "mean_aw_rel": 0.13574410490458858,
+ "std_aw_rel": 0.06835420698887047,
+ "mean_max_err": 0.24301009392230966,
+ "std_max_err": 0.11187557317000768,
+ "mean_num_steps": 14.65,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "hybrid_8000": {
+ "method": "hybrid",
+ "target_elements": 8000,
+ "mean_actual_elements": 8237.85,
+ "mean_aw_rel": 0.12938610463300348,
+ "std_aw_rel": 0.06468980706208198,
+ "mean_max_err": 0.23828953405579018,
+ "std_max_err": 0.11229675580024906,
+ "mean_num_steps": 19.65,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ }
+ },
+ "improvements": {
+ "neural_2000": {
+ "mean_aw_rel_improvement_pct": 9.908971480874387,
+ "mean_max_err_improvement_pct": 6.246981811191338,
+ "mean_actual_elements_physics": 2054.15,
+ "mean_actual_elements_method": 2096.85,
+ "n_paired": 20
+ },
+ "hybrid_2000": {
+ "mean_aw_rel_improvement_pct": 9.828504704301027,
+ "mean_max_err_improvement_pct": 6.930628388013088,
+ "mean_actual_elements_physics": 2054.15,
+ "mean_actual_elements_method": 2057.25,
+ "n_paired": 20
+ },
+ "neural_4000": {
+ "mean_aw_rel_improvement_pct": 1.0938087972636716,
+ "mean_max_err_improvement_pct": 1.3682431867796272,
+ "mean_actual_elements_physics": 4117.65,
+ "mean_actual_elements_method": 4132.25,
+ "n_paired": 20
+ },
+ "hybrid_4000": {
+ "mean_aw_rel_improvement_pct": 1.9007446212899786,
+ "mean_max_err_improvement_pct": 1.540541565017435,
+ "mean_actual_elements_physics": 4117.65,
+ "mean_actual_elements_method": 4119.2,
+ "n_paired": 20
+ },
+ "neural_8000": {
+ "mean_aw_rel_improvement_pct": 1.8158183167966278,
+ "mean_max_err_improvement_pct": 1.511819089716618,
+ "mean_actual_elements_physics": 8140.1,
+ "mean_actual_elements_method": 8381.55,
+ "n_paired": 20
+ },
+ "hybrid_8000": {
+ "mean_aw_rel_improvement_pct": 1.9433789735463147,
+ "mean_max_err_improvement_pct": 1.3436845589790871,
+ "mean_actual_elements_physics": 8140.1,
+ "mean_actual_elements_method": 8237.85,
+ "n_paired": 20
+ }
+ },
+ "config": {
+ "checkpoint": "outlook/ckpt/correction.pt",
+ "data_dir": "outlook/data_correction",
+ "target_elements": [
+ 2000,
+ 4000,
+ 8000
+ ],
+ "mark_fraction": 0.03,
+ "max_steps": 40,
+ "methods": [
+ "physics",
+ "neural",
+ "hybrid"
+ ],
+ "alpha": 0.5,
+ "beta": 0.5,
+ "seed": 42,
+ "n_eval_samples": 20
+ }
+}
\ No newline at end of file
diff --git a/outlook/result/correction/rollout/max_err_vs_elements.png b/outlook/result/correction/rollout/max_err_vs_elements.png
new file mode 100644
index 0000000..c3eb0da
Binary files /dev/null and b/outlook/result/correction/rollout/max_err_vs_elements.png differ
diff --git a/outlook/result/correction/rollout/summary.csv b/outlook/result/correction/rollout/summary.csv
new file mode 100644
index 0000000..b624e6b
--- /dev/null
+++ b/outlook/result/correction/rollout/summary.csv
@@ -0,0 +1,10 @@
+method,target_elements,mean_actual_elements,mean_aw_rel,std_aw_rel,mean_max_err,std_max_err,mean_num_steps,mean_num_solves,n_samples
+hybrid,2000,2057.25,0.15784882381264204,0.09831761490786742,0.26861893700276673,0.1671901878424604,9.75,1.0,20
+hybrid,4000,4119.2,0.13574410490458858,0.06835420698887047,0.24301009392230966,0.11187557317000768,14.65,1.0,20
+hybrid,8000,8237.85,0.12938610463300348,0.06468980706208198,0.23828953405579018,0.11229675580024906,19.65,1.0,20
+neural,2000,2096.85,0.1595796639035016,0.10205884445265621,0.2740541685787099,0.17851915921112207,8.9,1.0,20
+neural,4000,4132.25,0.1371752914089166,0.06943556350290432,0.2431483757604584,0.11094507797411703,13.45,1.0,20
+neural,8000,8381.55,0.12979719827717448,0.06506190421394932,0.23760622977313733,0.11113546594423793,17.8,1.0,20
+physics,2000,2054.15,0.19191804819850916,0.1703197428922942,0.330128751143988,0.329522314499476,9.45,1.0,20
+physics,4000,4117.65,0.14036333333290366,0.07525490707389265,0.2514125838116022,0.12525099417371377,14.75,1.0,20
+physics,8000,8140.1,0.1324716279458789,0.06625795078209694,0.24183097169481163,0.11020178440715264,20.7,1.0,20
diff --git a/outlook/result/correction/rollout_uniform_debug_physics/aw_rel_vs_elements.png b/outlook/result/correction/rollout_uniform_debug_physics/aw_rel_vs_elements.png
new file mode 100644
index 0000000..d2cd165
Binary files /dev/null and b/outlook/result/correction/rollout_uniform_debug_physics/aw_rel_vs_elements.png differ
diff --git a/outlook/result/correction/rollout_uniform_debug_physics/eval_results.json b/outlook/result/correction/rollout_uniform_debug_physics/eval_results.json
new file mode 100644
index 0000000..3216a41
--- /dev/null
+++ b/outlook/result/correction/rollout_uniform_debug_physics/eval_results.json
@@ -0,0 +1,2629 @@
+{
+ "results": [
+ {
+ "aw_rel": 0.08819906884437051,
+ "max_err": 0.11305309421237136,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 0,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.08819906884437051,
+ "max_err": 0.11305309421237136,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 0,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.08819906884437051,
+ "max_err": 0.11305309421237136,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 0,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.07976979637143553,
+ "max_err": 0.1187712169881904,
+ "actual_elements": 4093,
+ "num_steps": 4,
+ "num_solves": 1,
+ "sample_id": 0,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07796983034520291,
+ "max_err": 0.12015594524934267,
+ "actual_elements": 4182,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 0,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07860766070575051,
+ "max_err": 0.12012518677667702,
+ "actual_elements": 4236,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 0,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07968216774351648,
+ "max_err": 0.12015072417576919,
+ "actual_elements": 8002,
+ "num_steps": 8,
+ "num_solves": 1,
+ "sample_id": 0,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07930057190446856,
+ "max_err": 0.12080299499387173,
+ "actual_elements": 8433,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 0,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07941753717141159,
+ "max_err": 0.12046204119983178,
+ "actual_elements": 8372,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 0,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07973218095116737,
+ "max_err": 0.12174853733910981,
+ "actual_elements": 12470,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 0,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.07939216500244976,
+ "max_err": 0.12080375100143492,
+ "actual_elements": 12391,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 0,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.07963029521319769,
+ "max_err": 0.12199425136726116,
+ "actual_elements": 12121,
+ "num_steps": 15,
+ "num_solves": 1,
+ "sample_id": 0,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.09509309593212692,
+ "max_err": 0.20092614511480844,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 4,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.09509309593212692,
+ "max_err": 0.20092614511480844,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 4,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.09509309593212692,
+ "max_err": 0.20092614511480844,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 4,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.07578495179261623,
+ "max_err": 0.20699456515390235,
+ "actual_elements": 4219,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 4,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07911358608921755,
+ "max_err": 0.20638661878991393,
+ "actual_elements": 4074,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 4,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07437761486299993,
+ "max_err": 0.2086153275694666,
+ "actual_elements": 4150,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 4,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07339116266895786,
+ "max_err": 0.20775006142533778,
+ "actual_elements": 8523,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 4,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.0729754680006789,
+ "max_err": 0.21240413370398242,
+ "actual_elements": 8417,
+ "num_steps": 10,
+ "num_solves": 1,
+ "sample_id": 4,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07344888782346815,
+ "max_err": 0.2093746482500355,
+ "actual_elements": 8229,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 4,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07283598647346794,
+ "max_err": 0.21230879219280047,
+ "actual_elements": 12404,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 4,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.07287120415062621,
+ "max_err": 0.2126985367787203,
+ "actual_elements": 12590,
+ "num_steps": 13,
+ "num_solves": 1,
+ "sample_id": 4,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.07282583295504569,
+ "max_err": 0.21323672797859217,
+ "actual_elements": 12462,
+ "num_steps": 15,
+ "num_solves": 1,
+ "sample_id": 4,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.9292501563493942,
+ "max_err": 1.374700245235451,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 10,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.9292501563493942,
+ "max_err": 1.374700245235451,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 10,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.9292501563493942,
+ "max_err": 1.374700245235451,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 10,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.28850857974584126,
+ "max_err": 0.4964693054192398,
+ "actual_elements": 4072,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 10,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.27687228803572367,
+ "max_err": 0.46355030983464035,
+ "actual_elements": 4038,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 10,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.2948246738287439,
+ "max_err": 0.5031958870687901,
+ "actual_elements": 4030,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 10,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.2109990389739073,
+ "max_err": 0.34442509304085894,
+ "actual_elements": 8175,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 10,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.17585800677039726,
+ "max_err": 0.22929890390261431,
+ "actual_elements": 8498,
+ "num_steps": 10,
+ "num_solves": 1,
+ "sample_id": 10,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.18278093692330596,
+ "max_err": 0.25561476606062256,
+ "actual_elements": 8230,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 10,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.1787502441709285,
+ "max_err": 0.25966178741088186,
+ "actual_elements": 12553,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 10,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.1680916258401186,
+ "max_err": 0.21495660178559123,
+ "actual_elements": 12557,
+ "num_steps": 13,
+ "num_solves": 1,
+ "sample_id": 10,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.17295917862327267,
+ "max_err": 0.23512356667992623,
+ "actual_elements": 12332,
+ "num_steps": 14,
+ "num_solves": 1,
+ "sample_id": 10,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.11249770057698069,
+ "max_err": 0.1081139374037538,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 12,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.11249770057698069,
+ "max_err": 0.1081139374037538,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 12,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.11249770057698069,
+ "max_err": 0.1081139374037538,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 12,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10508550267510611,
+ "max_err": 0.11127997091007832,
+ "actual_elements": 4040,
+ "num_steps": 4,
+ "num_solves": 1,
+ "sample_id": 12,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.10515989850093761,
+ "max_err": 0.11070758364576735,
+ "actual_elements": 4117,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 12,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.10521621507188801,
+ "max_err": 0.11264883384542977,
+ "actual_elements": 4120,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 12,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.10469349235691176,
+ "max_err": 0.11001748117735542,
+ "actual_elements": 8146,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 12,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.10432575699214379,
+ "max_err": 0.1105533891237647,
+ "actual_elements": 8455,
+ "num_steps": 10,
+ "num_solves": 1,
+ "sample_id": 12,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.1049127551121604,
+ "max_err": 0.11019565888843377,
+ "actual_elements": 8323,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 12,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.10474398264228307,
+ "max_err": 0.11036097915691107,
+ "actual_elements": 12138,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 12,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.10460702975604488,
+ "max_err": 0.1106381704370751,
+ "actual_elements": 12568,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 12,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.10492805477805185,
+ "max_err": 0.11071832725516717,
+ "actual_elements": 12435,
+ "num_steps": 14,
+ "num_solves": 1,
+ "sample_id": 12,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.15204094422027373,
+ "max_err": 0.35120703854974455,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 18,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.15204094422027373,
+ "max_err": 0.35120703854974455,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 18,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.15204094422027373,
+ "max_err": 0.35120703854974455,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 18,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.14177964774701934,
+ "max_err": 0.36698120238938253,
+ "actual_elements": 4018,
+ "num_steps": 4,
+ "num_solves": 1,
+ "sample_id": 18,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.1451375884668389,
+ "max_err": 0.36571754671875234,
+ "actual_elements": 4231,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 18,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.14373789618338872,
+ "max_err": 0.3644388922031969,
+ "actual_elements": 4200,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 18,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.14112550426708398,
+ "max_err": 0.3714871030333332,
+ "actual_elements": 8368,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 18,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.14085659039173506,
+ "max_err": 0.3709093139467696,
+ "actual_elements": 8265,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 18,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.14045743346230272,
+ "max_err": 0.3711408075719347,
+ "actual_elements": 8228,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 18,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.14029918304861475,
+ "max_err": 0.3719744750058455,
+ "actual_elements": 12044,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 18,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.1404396490459968,
+ "max_err": 0.37216613141254223,
+ "actual_elements": 12480,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 18,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.14074432495116698,
+ "max_err": 0.37074847962395907,
+ "actual_elements": 12342,
+ "num_steps": 14,
+ "num_solves": 1,
+ "sample_id": 18,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.2746283101258728,
+ "max_err": 0.19615335991922167,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 22,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.2746283101258728,
+ "max_err": 0.19615335991922167,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 22,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.2746283101258728,
+ "max_err": 0.19615335991922167,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 22,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.27145364230272534,
+ "max_err": 0.19444303264805207,
+ "actual_elements": 4071,
+ "num_steps": 4,
+ "num_solves": 1,
+ "sample_id": 22,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.271745632616683,
+ "max_err": 0.19613855516628587,
+ "actual_elements": 4037,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 22,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.27510744086543637,
+ "max_err": 0.196305522407818,
+ "actual_elements": 4176,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 22,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.2689891832542676,
+ "max_err": 0.19596241083464294,
+ "actual_elements": 8359,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 22,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.27058661536964035,
+ "max_err": 0.1982413272872645,
+ "actual_elements": 8351,
+ "num_steps": 10,
+ "num_solves": 1,
+ "sample_id": 22,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.27190059693995144,
+ "max_err": 0.19843476093840995,
+ "actual_elements": 8113,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 22,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.26985908733285596,
+ "max_err": 0.19811250444966289,
+ "actual_elements": 12023,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 22,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.2707876896083768,
+ "max_err": 0.19797692029894132,
+ "actual_elements": 12041,
+ "num_steps": 13,
+ "num_solves": 1,
+ "sample_id": 22,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.27028462426944555,
+ "max_err": 0.19863725607302002,
+ "actual_elements": 12265,
+ "num_steps": 14,
+ "num_solves": 1,
+ "sample_id": 22,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.3495033972873709,
+ "max_err": 0.6592129342947499,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 30,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.3495033972873709,
+ "max_err": 0.6592129342947499,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 30,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.3495033972873709,
+ "max_err": 0.6592129342947499,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 30,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.158965393818437,
+ "max_err": 0.25393155332184547,
+ "actual_elements": 4063,
+ "num_steps": 4,
+ "num_solves": 1,
+ "sample_id": 30,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.19669455141559522,
+ "max_err": 0.31252724336283033,
+ "actual_elements": 4012,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 30,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.16549773225913317,
+ "max_err": 0.2523264676583252,
+ "actual_elements": 4090,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 30,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13680715295586204,
+ "max_err": 0.20814741176805174,
+ "actual_elements": 8200,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 30,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.1293390209988015,
+ "max_err": 0.19265346079769,
+ "actual_elements": 8541,
+ "num_steps": 10,
+ "num_solves": 1,
+ "sample_id": 30,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.12822837357002362,
+ "max_err": 0.1996878252490752,
+ "actual_elements": 8293,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 30,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.11437102456612797,
+ "max_err": 0.18148740965623597,
+ "actual_elements": 12511,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 30,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.11982009724524424,
+ "max_err": 0.1865361277446501,
+ "actual_elements": 12152,
+ "num_steps": 13,
+ "num_solves": 1,
+ "sample_id": 30,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.11433233755674835,
+ "max_err": 0.18215856619341972,
+ "actual_elements": 12031,
+ "num_steps": 14,
+ "num_solves": 1,
+ "sample_id": 30,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.13798157575403813,
+ "max_err": 0.20037941006886117,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 31,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.13798157575403813,
+ "max_err": 0.20037941006886117,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 31,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.13798157575403813,
+ "max_err": 0.20037941006886117,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 31,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.13391603920132575,
+ "max_err": 0.2137733904871436,
+ "actual_elements": 4004,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 31,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13113282008979646,
+ "max_err": 0.21537108761597445,
+ "actual_elements": 4125,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 31,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13235921660091132,
+ "max_err": 0.21479474267748788,
+ "actual_elements": 4172,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 31,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13026016330596166,
+ "max_err": 0.2168629107498361,
+ "actual_elements": 8540,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 31,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.1314776535250988,
+ "max_err": 0.2195949468255255,
+ "actual_elements": 8417,
+ "num_steps": 10,
+ "num_solves": 1,
+ "sample_id": 31,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.1298767744205747,
+ "max_err": 0.21980962624482148,
+ "actual_elements": 8110,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 31,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.13146495534884636,
+ "max_err": 0.21855265129672474,
+ "actual_elements": 12148,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 31,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.13083887265407426,
+ "max_err": 0.21880821558744423,
+ "actual_elements": 12084,
+ "num_steps": 13,
+ "num_solves": 1,
+ "sample_id": 31,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.13129551497170203,
+ "max_err": 0.2177804147780963,
+ "actual_elements": 12270,
+ "num_steps": 14,
+ "num_solves": 1,
+ "sample_id": 31,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.21936071950493224,
+ "max_err": 0.4865370980289088,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 33,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.21936071950493224,
+ "max_err": 0.4865370980289088,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 33,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.21936071950493224,
+ "max_err": 0.4865370980289088,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 33,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.14498706888461552,
+ "max_err": 0.5187006521591682,
+ "actual_elements": 4162,
+ "num_steps": 4,
+ "num_solves": 1,
+ "sample_id": 33,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13820454546683178,
+ "max_err": 0.5204611599741908,
+ "actual_elements": 4080,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 33,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.132364950879777,
+ "max_err": 0.5227299436048347,
+ "actual_elements": 4135,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 33,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.1331818025833843,
+ "max_err": 0.5218593367318416,
+ "actual_elements": 8215,
+ "num_steps": 8,
+ "num_solves": 1,
+ "sample_id": 33,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.12789226476646776,
+ "max_err": 0.5389971764428012,
+ "actual_elements": 8553,
+ "num_steps": 10,
+ "num_solves": 1,
+ "sample_id": 33,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.1285480363344593,
+ "max_err": 0.5269401298929647,
+ "actual_elements": 8115,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 33,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.12773723444308052,
+ "max_err": 0.5389360087362829,
+ "actual_elements": 12392,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 33,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.12748803001278528,
+ "max_err": 0.5417909776602003,
+ "actual_elements": 12252,
+ "num_steps": 13,
+ "num_solves": 1,
+ "sample_id": 33,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.12722008916153457,
+ "max_err": 0.5413762118732697,
+ "actual_elements": 12475,
+ "num_steps": 15,
+ "num_solves": 1,
+ "sample_id": 33,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.3412819929347357,
+ "max_err": 0.42251204976496654,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 39,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.3412819929347357,
+ "max_err": 0.42251204976496654,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 39,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.3412819929347357,
+ "max_err": 0.42251204976496654,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 39,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.2913448345283753,
+ "max_err": 0.3468841917249856,
+ "actual_elements": 4276,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 39,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.28984308977607215,
+ "max_err": 0.3483047520385423,
+ "actual_elements": 4298,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 39,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.2910081468501891,
+ "max_err": 0.3502699587704555,
+ "actual_elements": 4048,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 39,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.2868597382928766,
+ "max_err": 0.3414423790700901,
+ "actual_elements": 8696,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 39,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.28934494236736186,
+ "max_err": 0.3457089330503096,
+ "actual_elements": 8246,
+ "num_steps": 10,
+ "num_solves": 1,
+ "sample_id": 39,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.2861197467918758,
+ "max_err": 0.33924422206363347,
+ "actual_elements": 8369,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 39,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.2861036867821901,
+ "max_err": 0.3406220252474785,
+ "actual_elements": 12493,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 39,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.28679784372249917,
+ "max_err": 0.3413706686846658,
+ "actual_elements": 12163,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 39,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.2849748289548196,
+ "max_err": 0.3373243524081432,
+ "actual_elements": 12659,
+ "num_steps": 14,
+ "num_solves": 1,
+ "sample_id": 39,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.14584577241163627,
+ "max_err": 0.241329560376809,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 44,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.14584577241163627,
+ "max_err": 0.241329560376809,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 44,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.14584577241163627,
+ "max_err": 0.241329560376809,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 44,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.08411737383883201,
+ "max_err": 0.1839701163558909,
+ "actual_elements": 4080,
+ "num_steps": 4,
+ "num_solves": 1,
+ "sample_id": 44,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07813574852567791,
+ "max_err": 0.17198820437249873,
+ "actual_elements": 4164,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 44,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.0774087627236208,
+ "max_err": 0.17202666802925115,
+ "actual_elements": 4166,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 44,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07523435404962786,
+ "max_err": 0.17997250023874606,
+ "actual_elements": 8144,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 44,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07375089571037148,
+ "max_err": 0.17735527653577732,
+ "actual_elements": 8441,
+ "num_steps": 10,
+ "num_solves": 1,
+ "sample_id": 44,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07346581215738697,
+ "max_err": 0.18028453478963014,
+ "actual_elements": 8021,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 44,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07180383112297134,
+ "max_err": 0.18261242944714434,
+ "actual_elements": 12176,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 44,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.07283957032595922,
+ "max_err": 0.17768413976166675,
+ "actual_elements": 12023,
+ "num_steps": 13,
+ "num_solves": 1,
+ "sample_id": 44,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.0722552909595849,
+ "max_err": 0.1794081297916198,
+ "actual_elements": 12240,
+ "num_steps": 15,
+ "num_solves": 1,
+ "sample_id": 44,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.10990373686556713,
+ "max_err": 0.21849002761085679,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 45,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10990373686556713,
+ "max_err": 0.21849002761085679,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 45,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10990373686556713,
+ "max_err": 0.21849002761085679,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 45,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10017877581640248,
+ "max_err": 0.24325310019367202,
+ "actual_elements": 4162,
+ "num_steps": 4,
+ "num_solves": 1,
+ "sample_id": 45,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.09957606920891307,
+ "max_err": 0.24492267725262562,
+ "actual_elements": 4264,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 45,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.09977256851550813,
+ "max_err": 0.24227725916685477,
+ "actual_elements": 4058,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 45,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.09956959153591517,
+ "max_err": 0.24740291545624774,
+ "actual_elements": 8335,
+ "num_steps": 8,
+ "num_solves": 1,
+ "sample_id": 45,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.09917808924005207,
+ "max_err": 0.2502882548451254,
+ "actual_elements": 8012,
+ "num_steps": 10,
+ "num_solves": 1,
+ "sample_id": 45,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.0998107228373438,
+ "max_err": 0.24957509557671706,
+ "actual_elements": 8317,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 45,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.09948888869255716,
+ "max_err": 0.2500516657663211,
+ "actual_elements": 12461,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 45,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.0993040252714857,
+ "max_err": 0.2515592703042785,
+ "actual_elements": 12925,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 45,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.09955481843751764,
+ "max_err": 0.25038998115324707,
+ "actual_elements": 12575,
+ "num_steps": 14,
+ "num_solves": 1,
+ "sample_id": 45,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.1604520117156773,
+ "max_err": 0.21291829011321964,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 53,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.1604520117156773,
+ "max_err": 0.21291829011321964,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 53,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.1604520117156773,
+ "max_err": 0.21291829011321964,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 53,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.09823191179528189,
+ "max_err": 0.16596266946815863,
+ "actual_elements": 4012,
+ "num_steps": 4,
+ "num_solves": 1,
+ "sample_id": 53,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.09231212251993148,
+ "max_err": 0.16694486383741047,
+ "actual_elements": 4110,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 53,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.091907264364455,
+ "max_err": 0.17043897047244005,
+ "actual_elements": 4100,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 53,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.09015515230915898,
+ "max_err": 0.169091381563234,
+ "actual_elements": 8051,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 53,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.08805441592699143,
+ "max_err": 0.17036188119700768,
+ "actual_elements": 8410,
+ "num_steps": 10,
+ "num_solves": 1,
+ "sample_id": 53,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.08759880286124881,
+ "max_err": 0.17013363112363,
+ "actual_elements": 8305,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 53,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.08703520579430493,
+ "max_err": 0.1702605196522985,
+ "actual_elements": 12420,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 53,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.08671525017011635,
+ "max_err": 0.1717147701578684,
+ "actual_elements": 12064,
+ "num_steps": 13,
+ "num_solves": 1,
+ "sample_id": 53,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.08732496560479805,
+ "max_err": 0.17077817644653526,
+ "actual_elements": 12055,
+ "num_steps": 15,
+ "num_solves": 1,
+ "sample_id": 53,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.09719075048541641,
+ "max_err": 0.10344991019411118,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 70,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.09719075048541641,
+ "max_err": 0.10344991019411118,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 70,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.09719075048541641,
+ "max_err": 0.10344991019411118,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 70,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.08122965696018995,
+ "max_err": 0.11398852425509723,
+ "actual_elements": 4043,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 70,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.0801343559455434,
+ "max_err": 0.11584076895921278,
+ "actual_elements": 4228,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 70,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.08031166204344167,
+ "max_err": 0.11585692846336867,
+ "actual_elements": 4200,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 70,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.07987072220884421,
+ "max_err": 0.12025030722447266,
+ "actual_elements": 8332,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 70,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07921223272658165,
+ "max_err": 0.12098684380979507,
+ "actual_elements": 8032,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 70,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07942458729925174,
+ "max_err": 0.11954671831275732,
+ "actual_elements": 8316,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 70,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.07937388648215724,
+ "max_err": 0.119991177069103,
+ "actual_elements": 12117,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 70,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.0790112161991091,
+ "max_err": 0.1195326899363307,
+ "actual_elements": 12965,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 70,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.0794183846750521,
+ "max_err": 0.12012050043071121,
+ "actual_elements": 12305,
+ "num_steps": 15,
+ "num_solves": 1,
+ "sample_id": 70,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.14591071406925965,
+ "max_err": 0.1626057308729794,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 73,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.14591071406925965,
+ "max_err": 0.1626057308729794,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 73,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.14591071406925965,
+ "max_err": 0.1626057308729794,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 73,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.13880248987299962,
+ "max_err": 0.16615200937825475,
+ "actual_elements": 4100,
+ "num_steps": 4,
+ "num_solves": 1,
+ "sample_id": 73,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13728666720412439,
+ "max_err": 0.16636184046437708,
+ "actual_elements": 4215,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 73,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13691223457543922,
+ "max_err": 0.16662491183464442,
+ "actual_elements": 4156,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 73,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13784783845043524,
+ "max_err": 0.16821641770997953,
+ "actual_elements": 8214,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 73,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.13665976775107877,
+ "max_err": 0.16851459539394825,
+ "actual_elements": 8223,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 73,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.13712384191223245,
+ "max_err": 0.16868181400212992,
+ "actual_elements": 8344,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 73,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.13762989577174084,
+ "max_err": 0.16964054308307697,
+ "actual_elements": 12150,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 73,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.13710110815419735,
+ "max_err": 0.16990836148598124,
+ "actual_elements": 12596,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 73,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.13727234376093575,
+ "max_err": 0.1690456314135598,
+ "actual_elements": 12179,
+ "num_steps": 14,
+ "num_solves": 1,
+ "sample_id": 73,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.2886780280007323,
+ "max_err": 0.446869711619029,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 76,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.2886780280007323,
+ "max_err": 0.446869711619029,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 76,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.2886780280007323,
+ "max_err": 0.446869711619029,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 76,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.25917432674985375,
+ "max_err": 0.4481979699503712,
+ "actual_elements": 4064,
+ "num_steps": 4,
+ "num_solves": 1,
+ "sample_id": 76,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.2527423420779828,
+ "max_err": 0.4542696399093824,
+ "actual_elements": 4054,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 76,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.2561681834755105,
+ "max_err": 0.4480585238603678,
+ "actual_elements": 4082,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 76,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.2533548477019909,
+ "max_err": 0.4494043651081614,
+ "actual_elements": 8118,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 76,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.24496568701400664,
+ "max_err": 0.4534568719171246,
+ "actual_elements": 8530,
+ "num_steps": 10,
+ "num_solves": 1,
+ "sample_id": 76,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.2485048828093335,
+ "max_err": 0.45389394187931853,
+ "actual_elements": 8307,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 76,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.2494727695645194,
+ "max_err": 0.45386258456784023,
+ "actual_elements": 12491,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 76,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.24552752975582107,
+ "max_err": 0.45571916268822954,
+ "actual_elements": 12127,
+ "num_steps": 13,
+ "num_solves": 1,
+ "sample_id": 76,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.2479110791842817,
+ "max_err": 0.4548293702074314,
+ "actual_elements": 12451,
+ "num_steps": 14,
+ "num_solves": 1,
+ "sample_id": 76,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.22848194261471635,
+ "max_err": 0.5064291726517465,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 77,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.22848194261471635,
+ "max_err": 0.5064291726517465,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 77,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.22848194261471635,
+ "max_err": 0.5064291726517465,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 77,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10602503498599206,
+ "max_err": 0.2968933454749562,
+ "actual_elements": 4083,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 77,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.13256176655803797,
+ "max_err": 0.2982485472564129,
+ "actual_elements": 4028,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 77,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.10816295320103625,
+ "max_err": 0.316808718573182,
+ "actual_elements": 4094,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 77,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.10164377669787729,
+ "max_err": 0.33504497722018506,
+ "actual_elements": 8412,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 77,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.09740875276595021,
+ "max_err": 0.34278054234851674,
+ "actual_elements": 8552,
+ "num_steps": 10,
+ "num_solves": 1,
+ "sample_id": 77,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.098638492303824,
+ "max_err": 0.34339740818603415,
+ "actual_elements": 8115,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 77,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.0976941857871496,
+ "max_err": 0.34575710036916507,
+ "actual_elements": 12175,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 77,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.09652235259261568,
+ "max_err": 0.35100255713077544,
+ "actual_elements": 12454,
+ "num_steps": 13,
+ "num_solves": 1,
+ "sample_id": 77,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.09758447440496064,
+ "max_err": 0.3469287512732999,
+ "actual_elements": 12151,
+ "num_steps": 15,
+ "num_solves": 1,
+ "sample_id": 77,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.09599667262932676,
+ "max_err": 0.16900543590056474,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 80,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.09599667262932676,
+ "max_err": 0.16900543590056474,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 80,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.09599667262932676,
+ "max_err": 0.16900543590056474,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 80,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.09570497285177557,
+ "max_err": 0.17124790210851532,
+ "actual_elements": 4006,
+ "num_steps": 4,
+ "num_solves": 1,
+ "sample_id": 80,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.09576543678356723,
+ "max_err": 0.1707227982101121,
+ "actual_elements": 4244,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 80,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.09561139583045337,
+ "max_err": 0.1715331850347395,
+ "actual_elements": 4158,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 80,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.09569242412600644,
+ "max_err": 0.17290056773922474,
+ "actual_elements": 8003,
+ "num_steps": 8,
+ "num_solves": 1,
+ "sample_id": 80,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.0953220010992383,
+ "max_err": 0.17168034597805037,
+ "actual_elements": 8090,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 80,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.09578384341234665,
+ "max_err": 0.1723825296318768,
+ "actual_elements": 8002,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 80,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.09578395654659043,
+ "max_err": 0.17289779018679252,
+ "actual_elements": 12406,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 80,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.09564886735123128,
+ "max_err": 0.17262726607731455,
+ "actual_elements": 12885,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 80,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.09578492822692708,
+ "max_err": 0.17247979824253348,
+ "actual_elements": 12272,
+ "num_steps": 15,
+ "num_solves": 1,
+ "sample_id": 80,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.07116691701972354,
+ "max_err": 0.2276593473973778,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 83,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.07116691701972354,
+ "max_err": 0.2276593473973778,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 83,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.07116691701972354,
+ "max_err": 0.2276593473973778,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 83,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.06154233502979082,
+ "max_err": 0.2278512692990835,
+ "actual_elements": 4169,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 83,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.06017327906870144,
+ "max_err": 0.2310943758185912,
+ "actual_elements": 4124,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 83,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.0626648965066636,
+ "max_err": 0.22789066882565212,
+ "actual_elements": 4124,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 83,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.06333930098343804,
+ "max_err": 0.23160412931083918,
+ "actual_elements": 8462,
+ "num_steps": 9,
+ "num_solves": 1,
+ "sample_id": 83,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.06348254401312432,
+ "max_err": 0.233087549380804,
+ "actual_elements": 8495,
+ "num_steps": 10,
+ "num_solves": 1,
+ "sample_id": 83,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.0617620511933332,
+ "max_err": 0.2329997469626981,
+ "actual_elements": 8276,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 83,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.06180540771732281,
+ "max_err": 0.23352521948520727,
+ "actual_elements": 12315,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 83,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.06298465856342472,
+ "max_err": 0.23429143479519354,
+ "actual_elements": 12008,
+ "num_steps": 13,
+ "num_solves": 1,
+ "sample_id": 83,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.06203464191772728,
+ "max_err": 0.2335440713174612,
+ "actual_elements": 12134,
+ "num_steps": 14,
+ "num_solves": 1,
+ "sample_id": 83,
+ "method": "hybrid",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.19366697092051335,
+ "max_err": 0.22034426252312522,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 90,
+ "method": "physics",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.19366697092051335,
+ "max_err": 0.22034426252312522,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 90,
+ "method": "neural",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.19366697092051335,
+ "max_err": 0.22034426252312522,
+ "actual_elements": 2048,
+ "num_steps": 0,
+ "num_solves": 1,
+ "sample_id": 90,
+ "method": "hybrid",
+ "target_elements": 2000
+ },
+ {
+ "aw_rel": 0.10256663423434863,
+ "max_err": 0.12609187808021916,
+ "actual_elements": 4160,
+ "num_steps": 4,
+ "num_solves": 1,
+ "sample_id": 90,
+ "method": "physics",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.09177277870900538,
+ "max_err": 0.1358607137728291,
+ "actual_elements": 4128,
+ "num_steps": 5,
+ "num_solves": 1,
+ "sample_id": 90,
+ "method": "neural",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.09194896303808169,
+ "max_err": 0.1430125169936186,
+ "actual_elements": 4164,
+ "num_steps": 6,
+ "num_solves": 1,
+ "sample_id": 90,
+ "method": "hybrid",
+ "target_elements": 4000
+ },
+ {
+ "aw_rel": 0.08944107937654709,
+ "max_err": 0.13979356101949209,
+ "actual_elements": 8054,
+ "num_steps": 8,
+ "num_solves": 1,
+ "sample_id": 90,
+ "method": "physics",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.0889624505968245,
+ "max_err": 0.1413860333277248,
+ "actual_elements": 8438,
+ "num_steps": 10,
+ "num_solves": 1,
+ "sample_id": 90,
+ "method": "neural",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.08933866857796721,
+ "max_err": 0.14456105723183194,
+ "actual_elements": 8033,
+ "num_steps": 12,
+ "num_solves": 1,
+ "sample_id": 90,
+ "method": "hybrid",
+ "target_elements": 8000
+ },
+ {
+ "aw_rel": 0.08798326176696311,
+ "max_err": 0.14161074604496382,
+ "actual_elements": 12458,
+ "num_steps": 11,
+ "num_solves": 1,
+ "sample_id": 90,
+ "method": "physics",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.0876951484532577,
+ "max_err": 0.14336923017514625,
+ "actual_elements": 12255,
+ "num_steps": 13,
+ "num_solves": 1,
+ "sample_id": 90,
+ "method": "neural",
+ "target_elements": 12000
+ },
+ {
+ "aw_rel": 0.08738955942778281,
+ "max_err": 0.1435030655026039,
+ "actual_elements": 12227,
+ "num_steps": 15,
+ "num_solves": 1,
+ "sample_id": 90,
+ "method": "hybrid",
+ "target_elements": 12000
+ }
+ ],
+ "summary": {
+ "physics_2000": {
+ "method": "physics",
+ "target_elements": 2000,
+ "mean_actual_elements": 2048.0,
+ "mean_aw_rel": 0.21185652391313323,
+ "std_aw_rel": 0.18395617430090824,
+ "mean_max_err": 0.33109483809263285,
+ "std_max_err": 0.2817354774685749,
+ "mean_num_steps": 0.0,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "physics_4000": {
+ "method": "physics",
+ "target_elements": 4000,
+ "mean_actual_elements": 4094.85,
+ "mean_aw_rel": 0.1409584484601482,
+ "std_aw_rel": 0.07293868783437857,
+ "mean_max_err": 0.24859189328831036,
+ "std_max_err": 0.12231745778179026,
+ "mean_num_steps": 4.35,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "physics_8000": {
+ "method": "physics",
+ "target_elements": 8000,
+ "mean_actual_elements": 8267.45,
+ "mean_aw_rel": 0.13260692469212856,
+ "std_aw_rel": 0.06643744149374647,
+ "mean_max_err": 0.24258930172988497,
+ "std_max_err": 0.11163782807879898,
+ "mean_num_steps": 8.75,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "physics_12000": {
+ "method": "physics",
+ "target_elements": 12000,
+ "mean_actual_elements": 12317.25,
+ "mean_aw_rel": 0.12869844275029194,
+ "std_aw_rel": 0.06509633176867222,
+ "mean_max_err": 0.23969874730819232,
+ "std_max_err": 0.11252593094133596,
+ "mean_num_steps": 11.45,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "neural_2000": {
+ "method": "neural",
+ "target_elements": 2000,
+ "mean_actual_elements": 2048.0,
+ "mean_aw_rel": 0.21185652391313323,
+ "std_aw_rel": 0.18395617430090824,
+ "mean_max_err": 0.33109483809263285,
+ "std_max_err": 0.2817354774685749,
+ "mean_num_steps": 0.0,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "neural_4000": {
+ "method": "neural",
+ "target_elements": 4000,
+ "mean_actual_elements": 4137.65,
+ "mean_aw_rel": 0.14161671987021923,
+ "std_aw_rel": 0.07257084785742898,
+ "mean_max_err": 0.25077876161248464,
+ "std_max_err": 0.12035301687299525,
+ "mean_num_steps": 5.05,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "neural_8000": {
+ "method": "neural",
+ "target_elements": 8000,
+ "mean_actual_elements": 8369.95,
+ "mean_aw_rel": 0.12944768639655066,
+ "std_aw_rel": 0.06478666362914674,
+ "mean_max_err": 0.2384531387404234,
+ "std_max_err": 0.11238928911620269,
+ "mean_num_steps": 9.75,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "neural_12000": {
+ "method": "neural",
+ "target_elements": 12000,
+ "mean_actual_elements": 12379.0,
+ "mean_aw_rel": 0.12822419669377172,
+ "std_aw_rel": 0.06447691606269008,
+ "mean_max_err": 0.23825774919520254,
+ "std_max_err": 0.11336217205920732,
+ "mean_num_steps": 12.6,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "hybrid_2000": {
+ "method": "hybrid",
+ "target_elements": 2000,
+ "mean_actual_elements": 2048.0,
+ "mean_aw_rel": 0.21185652391313323,
+ "std_aw_rel": 0.18395617430090824,
+ "mean_max_err": 0.33109483809263285,
+ "std_max_err": 0.2817354774685749,
+ "mean_num_steps": 0.0,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "hybrid_4000": {
+ "method": "hybrid",
+ "target_elements": 4000,
+ "mean_actual_elements": 4132.95,
+ "mean_aw_rel": 0.13969852161912139,
+ "std_aw_rel": 0.0745929012861855,
+ "mean_max_err": 0.25099895569183006,
+ "std_max_err": 0.12296168973342524,
+ "mean_num_steps": 6.0,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "hybrid_8000": {
+ "method": "hybrid",
+ "target_elements": 8000,
+ "mean_actual_elements": 8220.9,
+ "mean_aw_rel": 0.12985713919569009,
+ "std_aw_rel": 0.0651216652490543,
+ "mean_max_err": 0.23931804820281935,
+ "std_max_err": 0.11039901378049835,
+ "mean_num_steps": 11.2,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ },
+ "hybrid_12000": {
+ "method": "hybrid",
+ "target_elements": 12000,
+ "mean_actual_elements": 12299.05,
+ "mean_aw_rel": 0.12828627840172763,
+ "std_aw_rel": 0.06463046899262737,
+ "mean_max_err": 0.23850628150049288,
+ "std_max_err": 0.11263966995802911,
+ "mean_num_steps": 14.45,
+ "mean_num_solves": 1.0,
+ "n_samples": 20
+ }
+ },
+ "improvements": {
+ "neural_2000": {
+ "mean_aw_rel_improvement_pct": 0.0,
+ "mean_max_err_improvement_pct": 0.0,
+ "mean_actual_elements_physics": 2048.0,
+ "mean_actual_elements_method": 2048.0,
+ "n_paired": 20
+ },
+ "hybrid_2000": {
+ "mean_aw_rel_improvement_pct": 0.0,
+ "mean_max_err_improvement_pct": 0.0,
+ "mean_actual_elements_physics": 2048.0,
+ "mean_actual_elements_method": 2048.0,
+ "n_paired": 20
+ },
+ "neural_4000": {
+ "mean_aw_rel_improvement_pct": -0.5397030174579461,
+ "mean_max_err_improvement_pct": -1.3009108642557667,
+ "mean_actual_elements_physics": 4094.85,
+ "mean_actual_elements_method": 4137.65,
+ "n_paired": 20
+ },
+ "hybrid_4000": {
+ "mean_aw_rel_improvement_pct": 1.4613975866370779,
+ "mean_max_err_improvement_pct": -1.2189636929315248,
+ "mean_actual_elements_physics": 4094.85,
+ "mean_actual_elements_method": 4132.95,
+ "n_paired": 20
+ },
+ "neural_8000": {
+ "mean_aw_rel_improvement_pct": 1.9916319955704989,
+ "mean_max_err_improvement_pct": 1.2630369033497357,
+ "mean_actual_elements_physics": 8267.45,
+ "mean_actual_elements_method": 8369.95,
+ "n_paired": 20
+ },
+ "hybrid_8000": {
+ "mean_aw_rel_improvement_pct": 1.8259414848603814,
+ "mean_max_err_improvement_pct": 0.8612319128927707,
+ "mean_actual_elements_physics": 8267.45,
+ "mean_actual_elements_method": 8220.9,
+ "n_paired": 20
+ },
+ "neural_12000": {
+ "mean_aw_rel_improvement_pct": 0.14926539934852695,
+ "mean_max_err_improvement_pct": 0.602647016800251,
+ "mean_actual_elements_physics": 12317.25,
+ "mean_actual_elements_method": 12379.0,
+ "n_paired": 20
+ },
+ "hybrid_12000": {
+ "mean_aw_rel_improvement_pct": 0.19549372212797475,
+ "mean_max_err_improvement_pct": 0.4477389385989641,
+ "mean_actual_elements_physics": 12317.25,
+ "mean_actual_elements_method": 12299.05,
+ "n_paired": 20
+ }
+ },
+ "config": {
+ "checkpoint": "outlook/ckpt/correction.pt",
+ "data_dir": "outlook/data_correction",
+ "target_elements": [
+ 2000,
+ 4000,
+ 8000,
+ 12000
+ ],
+ "mark_fraction": 0.03,
+ "max_steps": 40,
+ "methods": [
+ "physics",
+ "neural",
+ "hybrid"
+ ],
+ "alpha": 0.5,
+ "beta": 0.5,
+ "seed": 42,
+ "n_eval_samples": 20
+ }
+}
\ No newline at end of file
diff --git a/outlook/result/correction/rollout_uniform_debug_physics/max_err_vs_elements.png b/outlook/result/correction/rollout_uniform_debug_physics/max_err_vs_elements.png
new file mode 100644
index 0000000..adeda3d
Binary files /dev/null and b/outlook/result/correction/rollout_uniform_debug_physics/max_err_vs_elements.png differ
diff --git a/outlook/result/correction/rollout_uniform_debug_physics/summary.csv b/outlook/result/correction/rollout_uniform_debug_physics/summary.csv
new file mode 100644
index 0000000..7da5c74
--- /dev/null
+++ b/outlook/result/correction/rollout_uniform_debug_physics/summary.csv
@@ -0,0 +1,13 @@
+method,target_elements,mean_actual_elements,mean_aw_rel,std_aw_rel,mean_max_err,std_max_err,mean_num_steps,mean_num_solves,n_samples
+hybrid,2000,2048.0,0.21185652391313323,0.18395617430090824,0.33109483809263285,0.2817354774685749,0.0,1.0,20
+hybrid,4000,4132.95,0.13969852161912139,0.0745929012861855,0.25099895569183006,0.12296168973342524,6.0,1.0,20
+hybrid,8000,8220.9,0.12985713919569009,0.0651216652490543,0.23931804820281935,0.11039901378049835,11.2,1.0,20
+hybrid,12000,12299.05,0.12828627840172763,0.06463046899262737,0.23850628150049288,0.11263966995802911,14.45,1.0,20
+neural,2000,2048.0,0.21185652391313323,0.18395617430090824,0.33109483809263285,0.2817354774685749,0.0,1.0,20
+neural,4000,4137.65,0.14161671987021923,0.07257084785742898,0.25077876161248464,0.12035301687299525,5.05,1.0,20
+neural,8000,8369.95,0.12944768639655066,0.06478666362914674,0.2384531387404234,0.11238928911620269,9.75,1.0,20
+neural,12000,12379.0,0.12822419669377172,0.06447691606269008,0.23825774919520254,0.11336217205920732,12.6,1.0,20
+physics,2000,2048.0,0.21185652391313323,0.18395617430090824,0.33109483809263285,0.2817354774685749,0.0,1.0,20
+physics,4000,4094.85,0.1409584484601482,0.07293868783437857,0.24859189328831036,0.12231745778179026,4.35,1.0,20
+physics,8000,8267.45,0.13260692469212856,0.06643744149374647,0.24258930172988497,0.11163782807879898,8.75,1.0,20
+physics,12000,12317.25,0.12869844275029194,0.06509633176867222,0.23969874730819232,0.11252593094133596,11.45,1.0,20
diff --git a/outlook/result/correction/test/test_results.json b/outlook/result/correction/test/test_results.json
new file mode 100644
index 0000000..1f08a6a
--- /dev/null
+++ b/outlook/result/correction/test/test_results.json
@@ -0,0 +1,3386 @@
+{
+ "n_graphs": 375,
+ "gnn_auc": 0.9411980128188792,
+ "physics_auc": 0.0,
+ "gnn_topk_mean": 0.44042462060983,
+ "physics_topk_mean": 0.13052094141167983,
+ "gnn_beats_physics_count": 372,
+ "gnn_beats_physics_ratio": 0.992,
+ "per_graph": [
+ {
+ "file": "sample0000_step000.npz",
+ "sample_id": 0,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.4666666666666667,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step001.npz",
+ "sample_id": 0,
+ "n_cells": 588,
+ "n_positive": 17,
+ "gnn_topk": 0.7058823529411765,
+ "physics_topk": 0.35294117647058826,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step002.npz",
+ "sample_id": 0,
+ "n_cells": 676,
+ "n_positive": 20,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.35,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step003.npz",
+ "sample_id": 0,
+ "n_cells": 800,
+ "n_positive": 24,
+ "gnn_topk": 0.5833333333333334,
+ "physics_topk": 0.041666666666666664,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step004.npz",
+ "sample_id": 0,
+ "n_cells": 958,
+ "n_positive": 28,
+ "gnn_topk": 0.5357142857142857,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step005.npz",
+ "sample_id": 0,
+ "n_cells": 1114,
+ "n_positive": 33,
+ "gnn_topk": 0.5151515151515151,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step006.npz",
+ "sample_id": 0,
+ "n_cells": 1344,
+ "n_positive": 40,
+ "gnn_topk": 0.575,
+ "physics_topk": 0.025,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step007.npz",
+ "sample_id": 0,
+ "n_cells": 1604,
+ "n_positive": 48,
+ "gnn_topk": 0.625,
+ "physics_topk": 0.10416666666666667,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step008.npz",
+ "sample_id": 0,
+ "n_cells": 1894,
+ "n_positive": 56,
+ "gnn_topk": 0.42857142857142855,
+ "physics_topk": 0.08928571428571429,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step009.npz",
+ "sample_id": 0,
+ "n_cells": 2246,
+ "n_positive": 67,
+ "gnn_topk": 0.4626865671641791,
+ "physics_topk": 0.1791044776119403,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step010.npz",
+ "sample_id": 0,
+ "n_cells": 2651,
+ "n_positive": 79,
+ "gnn_topk": 0.4936708860759494,
+ "physics_topk": 0.24050632911392406,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step011.npz",
+ "sample_id": 0,
+ "n_cells": 3163,
+ "n_positive": 94,
+ "gnn_topk": 0.4148936170212766,
+ "physics_topk": 0.07446808510638298,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step012.npz",
+ "sample_id": 0,
+ "n_cells": 3785,
+ "n_positive": 113,
+ "gnn_topk": 0.5486725663716814,
+ "physics_topk": 0.17699115044247787,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step013.npz",
+ "sample_id": 0,
+ "n_cells": 4529,
+ "n_positive": 135,
+ "gnn_topk": 0.42962962962962964,
+ "physics_topk": 0.14814814814814814,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step014.npz",
+ "sample_id": 0,
+ "n_cells": 5429,
+ "n_positive": 162,
+ "gnn_topk": 0.49382716049382713,
+ "physics_topk": 0.17901234567901234,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step015.npz",
+ "sample_id": 0,
+ "n_cells": 6471,
+ "n_positive": 194,
+ "gnn_topk": 0.5773195876288659,
+ "physics_topk": 0.15463917525773196,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step016.npz",
+ "sample_id": 0,
+ "n_cells": 7693,
+ "n_positive": 230,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.14782608695652175,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step017.npz",
+ "sample_id": 0,
+ "n_cells": 9193,
+ "n_positive": 275,
+ "gnn_topk": 0.4509090909090909,
+ "physics_topk": 0.24363636363636362,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step018.npz",
+ "sample_id": 0,
+ "n_cells": 10955,
+ "n_positive": 328,
+ "gnn_topk": 0.524390243902439,
+ "physics_topk": 0.1676829268292683,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step000.npz",
+ "sample_id": 4,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.2,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step001.npz",
+ "sample_id": 4,
+ "n_cells": 600,
+ "n_positive": 18,
+ "gnn_topk": 0.7222222222222222,
+ "physics_topk": 0.2777777777777778,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step002.npz",
+ "sample_id": 4,
+ "n_cells": 712,
+ "n_positive": 21,
+ "gnn_topk": 0.6190476190476191,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step003.npz",
+ "sample_id": 4,
+ "n_cells": 844,
+ "n_positive": 25,
+ "gnn_topk": 0.8,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step004.npz",
+ "sample_id": 4,
+ "n_cells": 980,
+ "n_positive": 29,
+ "gnn_topk": 0.5862068965517241,
+ "physics_topk": 0.10344827586206896,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step005.npz",
+ "sample_id": 4,
+ "n_cells": 1190,
+ "n_positive": 35,
+ "gnn_topk": 0.5428571428571428,
+ "physics_topk": 0.02857142857142857,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step006.npz",
+ "sample_id": 4,
+ "n_cells": 1388,
+ "n_positive": 41,
+ "gnn_topk": 0.6097560975609756,
+ "physics_topk": 0.07317073170731707,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step007.npz",
+ "sample_id": 4,
+ "n_cells": 1634,
+ "n_positive": 49,
+ "gnn_topk": 0.5306122448979592,
+ "physics_topk": 0.14285714285714285,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step008.npz",
+ "sample_id": 4,
+ "n_cells": 1934,
+ "n_positive": 58,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step009.npz",
+ "sample_id": 4,
+ "n_cells": 2326,
+ "n_positive": 69,
+ "gnn_topk": 0.5507246376811594,
+ "physics_topk": 0.043478260869565216,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step010.npz",
+ "sample_id": 4,
+ "n_cells": 2778,
+ "n_positive": 83,
+ "gnn_topk": 0.6144578313253012,
+ "physics_topk": 0.024096385542168676,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step011.npz",
+ "sample_id": 4,
+ "n_cells": 3309,
+ "n_positive": 99,
+ "gnn_topk": 0.5757575757575758,
+ "physics_topk": 0.050505050505050504,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step012.npz",
+ "sample_id": 4,
+ "n_cells": 3974,
+ "n_positive": 119,
+ "gnn_topk": 0.5378151260504201,
+ "physics_topk": 0.07563025210084033,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step013.npz",
+ "sample_id": 4,
+ "n_cells": 4752,
+ "n_positive": 142,
+ "gnn_topk": 0.5985915492957746,
+ "physics_topk": 0.056338028169014086,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step014.npz",
+ "sample_id": 4,
+ "n_cells": 5645,
+ "n_positive": 169,
+ "gnn_topk": 0.5384615384615384,
+ "physics_topk": 0.1301775147928994,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step015.npz",
+ "sample_id": 4,
+ "n_cells": 6739,
+ "n_positive": 202,
+ "gnn_topk": 0.6386138613861386,
+ "physics_topk": 0.06930693069306931,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step016.npz",
+ "sample_id": 4,
+ "n_cells": 7978,
+ "n_positive": 239,
+ "gnn_topk": 0.5104602510460251,
+ "physics_topk": 0.1087866108786611,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step017.npz",
+ "sample_id": 4,
+ "n_cells": 9505,
+ "n_positive": 285,
+ "gnn_topk": 0.5789473684210527,
+ "physics_topk": 0.056140350877192984,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step018.npz",
+ "sample_id": 4,
+ "n_cells": 11331,
+ "n_positive": 339,
+ "gnn_topk": 0.5781710914454278,
+ "physics_topk": 0.06784660766961652,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step000.npz",
+ "sample_id": 10,
+ "n_cells": 692,
+ "n_positive": 20,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.1,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step001.npz",
+ "sample_id": 10,
+ "n_cells": 824,
+ "n_positive": 24,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step002.npz",
+ "sample_id": 10,
+ "n_cells": 1000,
+ "n_positive": 30,
+ "gnn_topk": 0.43333333333333335,
+ "physics_topk": 0.3,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step003.npz",
+ "sample_id": 10,
+ "n_cells": 1201,
+ "n_positive": 36,
+ "gnn_topk": 0.2777777777777778,
+ "physics_topk": 0.19444444444444445,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step004.npz",
+ "sample_id": 10,
+ "n_cells": 1452,
+ "n_positive": 43,
+ "gnn_topk": 0.13953488372093023,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step005.npz",
+ "sample_id": 10,
+ "n_cells": 1742,
+ "n_positive": 52,
+ "gnn_topk": 0.1346153846153846,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step006.npz",
+ "sample_id": 10,
+ "n_cells": 2064,
+ "n_positive": 61,
+ "gnn_topk": 0.2459016393442623,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step007.npz",
+ "sample_id": 10,
+ "n_cells": 2471,
+ "n_positive": 74,
+ "gnn_topk": 0.20270270270270271,
+ "physics_topk": 0.02702702702702703,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step008.npz",
+ "sample_id": 10,
+ "n_cells": 2973,
+ "n_positive": 89,
+ "gnn_topk": 0.16853932584269662,
+ "physics_topk": 0.11235955056179775,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step009.npz",
+ "sample_id": 10,
+ "n_cells": 3555,
+ "n_positive": 106,
+ "gnn_topk": 0.20754716981132076,
+ "physics_topk": 0.0660377358490566,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step010.npz",
+ "sample_id": 10,
+ "n_cells": 4189,
+ "n_positive": 125,
+ "gnn_topk": 0.2,
+ "physics_topk": 0.048,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step011.npz",
+ "sample_id": 10,
+ "n_cells": 5044,
+ "n_positive": 151,
+ "gnn_topk": 0.2185430463576159,
+ "physics_topk": 0.1390728476821192,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step012.npz",
+ "sample_id": 10,
+ "n_cells": 6053,
+ "n_positive": 181,
+ "gnn_topk": 0.19889502762430938,
+ "physics_topk": 0.022099447513812154,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step013.npz",
+ "sample_id": 10,
+ "n_cells": 7253,
+ "n_positive": 217,
+ "gnn_topk": 0.2350230414746544,
+ "physics_topk": 0.11981566820276497,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step014.npz",
+ "sample_id": 10,
+ "n_cells": 8615,
+ "n_positive": 258,
+ "gnn_topk": 0.16279069767441862,
+ "physics_topk": 0.08527131782945736,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step015.npz",
+ "sample_id": 10,
+ "n_cells": 10310,
+ "n_positive": 309,
+ "gnn_topk": 0.16181229773462782,
+ "physics_topk": 0.05501618122977346,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step000.npz",
+ "sample_id": 12,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.7333333333333333,
+ "physics_topk": 0.5333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step001.npz",
+ "sample_id": 12,
+ "n_cells": 590,
+ "n_positive": 17,
+ "gnn_topk": 0.5294117647058824,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step002.npz",
+ "sample_id": 12,
+ "n_cells": 692,
+ "n_positive": 20,
+ "gnn_topk": 0.65,
+ "physics_topk": 0.15,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step003.npz",
+ "sample_id": 12,
+ "n_cells": 818,
+ "n_positive": 24,
+ "gnn_topk": 0.5416666666666666,
+ "physics_topk": 0.041666666666666664,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step004.npz",
+ "sample_id": 12,
+ "n_cells": 968,
+ "n_positive": 29,
+ "gnn_topk": 0.3793103448275862,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step005.npz",
+ "sample_id": 12,
+ "n_cells": 1138,
+ "n_positive": 34,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step006.npz",
+ "sample_id": 12,
+ "n_cells": 1353,
+ "n_positive": 40,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.025,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step007.npz",
+ "sample_id": 12,
+ "n_cells": 1637,
+ "n_positive": 49,
+ "gnn_topk": 0.46938775510204084,
+ "physics_topk": 0.061224489795918366,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step008.npz",
+ "sample_id": 12,
+ "n_cells": 1929,
+ "n_positive": 57,
+ "gnn_topk": 0.3157894736842105,
+ "physics_topk": 0.03508771929824561,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step009.npz",
+ "sample_id": 12,
+ "n_cells": 2309,
+ "n_positive": 69,
+ "gnn_topk": 0.391304347826087,
+ "physics_topk": 0.2318840579710145,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step010.npz",
+ "sample_id": 12,
+ "n_cells": 2745,
+ "n_positive": 82,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.35365853658536583,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step011.npz",
+ "sample_id": 12,
+ "n_cells": 3253,
+ "n_positive": 97,
+ "gnn_topk": 0.5360824742268041,
+ "physics_topk": 0.1134020618556701,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step012.npz",
+ "sample_id": 12,
+ "n_cells": 3905,
+ "n_positive": 117,
+ "gnn_topk": 0.5897435897435898,
+ "physics_topk": 0.2564102564102564,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step013.npz",
+ "sample_id": 12,
+ "n_cells": 4615,
+ "n_positive": 138,
+ "gnn_topk": 0.5289855072463768,
+ "physics_topk": 0.26811594202898553,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step014.npz",
+ "sample_id": 12,
+ "n_cells": 5508,
+ "n_positive": 165,
+ "gnn_topk": 0.503030303030303,
+ "physics_topk": 0.18787878787878787,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step015.npz",
+ "sample_id": 12,
+ "n_cells": 6581,
+ "n_positive": 197,
+ "gnn_topk": 0.5177664974619289,
+ "physics_topk": 0.04568527918781726,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step016.npz",
+ "sample_id": 12,
+ "n_cells": 7835,
+ "n_positive": 235,
+ "gnn_topk": 0.548936170212766,
+ "physics_topk": 0.19574468085106383,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step017.npz",
+ "sample_id": 12,
+ "n_cells": 9401,
+ "n_positive": 282,
+ "gnn_topk": 0.5141843971631206,
+ "physics_topk": 0.23404255319148937,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step018.npz",
+ "sample_id": 12,
+ "n_cells": 11193,
+ "n_positive": 335,
+ "gnn_topk": 0.5850746268656717,
+ "physics_topk": 0.1880597014925373,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step000.npz",
+ "sample_id": 18,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.26666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step001.npz",
+ "sample_id": 18,
+ "n_cells": 596,
+ "n_positive": 17,
+ "gnn_topk": 0.6470588235294118,
+ "physics_topk": 0.47058823529411764,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step002.npz",
+ "sample_id": 18,
+ "n_cells": 698,
+ "n_positive": 20,
+ "gnn_topk": 0.75,
+ "physics_topk": 0.3,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step003.npz",
+ "sample_id": 18,
+ "n_cells": 814,
+ "n_positive": 24,
+ "gnn_topk": 0.625,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step004.npz",
+ "sample_id": 18,
+ "n_cells": 938,
+ "n_positive": 28,
+ "gnn_topk": 0.4642857142857143,
+ "physics_topk": 0.25,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step005.npz",
+ "sample_id": 18,
+ "n_cells": 1122,
+ "n_positive": 33,
+ "gnn_topk": 0.5454545454545454,
+ "physics_topk": 0.15151515151515152,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step006.npz",
+ "sample_id": 18,
+ "n_cells": 1332,
+ "n_positive": 39,
+ "gnn_topk": 0.46153846153846156,
+ "physics_topk": 0.23076923076923078,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step007.npz",
+ "sample_id": 18,
+ "n_cells": 1578,
+ "n_positive": 47,
+ "gnn_topk": 0.44680851063829785,
+ "physics_topk": 0.2765957446808511,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step008.npz",
+ "sample_id": 18,
+ "n_cells": 1880,
+ "n_positive": 56,
+ "gnn_topk": 0.42857142857142855,
+ "physics_topk": 0.03571428571428571,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step009.npz",
+ "sample_id": 18,
+ "n_cells": 2251,
+ "n_positive": 67,
+ "gnn_topk": 0.1791044776119403,
+ "physics_topk": 0.029850746268656716,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step010.npz",
+ "sample_id": 18,
+ "n_cells": 2670,
+ "n_positive": 80,
+ "gnn_topk": 0.4125,
+ "physics_topk": 0.05,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step011.npz",
+ "sample_id": 18,
+ "n_cells": 3188,
+ "n_positive": 95,
+ "gnn_topk": 0.22105263157894736,
+ "physics_topk": 0.021052631578947368,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step012.npz",
+ "sample_id": 18,
+ "n_cells": 3810,
+ "n_positive": 114,
+ "gnn_topk": 0.30701754385964913,
+ "physics_topk": 0.03508771929824561,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step013.npz",
+ "sample_id": 18,
+ "n_cells": 4534,
+ "n_positive": 136,
+ "gnn_topk": 0.23529411764705882,
+ "physics_topk": 0.07352941176470588,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step014.npz",
+ "sample_id": 18,
+ "n_cells": 5437,
+ "n_positive": 163,
+ "gnn_topk": 0.19631901840490798,
+ "physics_topk": 0.018404907975460124,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step015.npz",
+ "sample_id": 18,
+ "n_cells": 6470,
+ "n_positive": 194,
+ "gnn_topk": 0.14432989690721648,
+ "physics_topk": 0.010309278350515464,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step016.npz",
+ "sample_id": 18,
+ "n_cells": 7772,
+ "n_positive": 233,
+ "gnn_topk": 0.26180257510729615,
+ "physics_topk": 0.09012875536480687,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step017.npz",
+ "sample_id": 18,
+ "n_cells": 9299,
+ "n_positive": 278,
+ "gnn_topk": 0.19784172661870503,
+ "physics_topk": 0.039568345323741004,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step018.npz",
+ "sample_id": 18,
+ "n_cells": 11023,
+ "n_positive": 330,
+ "gnn_topk": 0.24242424242424243,
+ "physics_topk": 0.08787878787878788,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step000.npz",
+ "sample_id": 22,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.8666666666666667,
+ "physics_topk": 0.2,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step001.npz",
+ "sample_id": 22,
+ "n_cells": 588,
+ "n_positive": 17,
+ "gnn_topk": 0.47058823529411764,
+ "physics_topk": 0.47058823529411764,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0022_step002.npz",
+ "sample_id": 22,
+ "n_cells": 700,
+ "n_positive": 21,
+ "gnn_topk": 0.6190476190476191,
+ "physics_topk": 0.19047619047619047,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step003.npz",
+ "sample_id": 22,
+ "n_cells": 818,
+ "n_positive": 24,
+ "gnn_topk": 0.5833333333333334,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step004.npz",
+ "sample_id": 22,
+ "n_cells": 946,
+ "n_positive": 28,
+ "gnn_topk": 0.39285714285714285,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step005.npz",
+ "sample_id": 22,
+ "n_cells": 1161,
+ "n_positive": 34,
+ "gnn_topk": 0.38235294117647056,
+ "physics_topk": 0.17647058823529413,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step006.npz",
+ "sample_id": 22,
+ "n_cells": 1363,
+ "n_positive": 40,
+ "gnn_topk": 0.35,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step007.npz",
+ "sample_id": 22,
+ "n_cells": 1619,
+ "n_positive": 48,
+ "gnn_topk": 0.20833333333333334,
+ "physics_topk": 0.020833333333333332,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step008.npz",
+ "sample_id": 22,
+ "n_cells": 1927,
+ "n_positive": 57,
+ "gnn_topk": 0.17543859649122806,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step009.npz",
+ "sample_id": 22,
+ "n_cells": 2295,
+ "n_positive": 68,
+ "gnn_topk": 0.07352941176470588,
+ "physics_topk": 0.014705882352941176,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step010.npz",
+ "sample_id": 22,
+ "n_cells": 2721,
+ "n_positive": 81,
+ "gnn_topk": 0.2345679012345679,
+ "physics_topk": 0.08641975308641975,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step011.npz",
+ "sample_id": 22,
+ "n_cells": 3240,
+ "n_positive": 97,
+ "gnn_topk": 0.13402061855670103,
+ "physics_topk": 0.020618556701030927,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step012.npz",
+ "sample_id": 22,
+ "n_cells": 3900,
+ "n_positive": 117,
+ "gnn_topk": 0.1794871794871795,
+ "physics_topk": 0.10256410256410256,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step013.npz",
+ "sample_id": 22,
+ "n_cells": 4646,
+ "n_positive": 139,
+ "gnn_topk": 0.15827338129496402,
+ "physics_topk": 0.02158273381294964,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step014.npz",
+ "sample_id": 22,
+ "n_cells": 5542,
+ "n_positive": 166,
+ "gnn_topk": 0.21686746987951808,
+ "physics_topk": 0.13855421686746988,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step015.npz",
+ "sample_id": 22,
+ "n_cells": 6580,
+ "n_positive": 197,
+ "gnn_topk": 0.24873096446700507,
+ "physics_topk": 0.06598984771573604,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step016.npz",
+ "sample_id": 22,
+ "n_cells": 7776,
+ "n_positive": 233,
+ "gnn_topk": 0.2017167381974249,
+ "physics_topk": 0.09871244635193133,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step017.npz",
+ "sample_id": 22,
+ "n_cells": 9300,
+ "n_positive": 279,
+ "gnn_topk": 0.1935483870967742,
+ "physics_topk": 0.12186379928315412,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step018.npz",
+ "sample_id": 22,
+ "n_cells": 11081,
+ "n_positive": 332,
+ "gnn_topk": 0.14457831325301204,
+ "physics_topk": 0.08433734939759036,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step000.npz",
+ "sample_id": 30,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.7333333333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step001.npz",
+ "sample_id": 30,
+ "n_cells": 598,
+ "n_positive": 17,
+ "gnn_topk": 0.5882352941176471,
+ "physics_topk": 0.47058823529411764,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step002.npz",
+ "sample_id": 30,
+ "n_cells": 696,
+ "n_positive": 20,
+ "gnn_topk": 0.2,
+ "physics_topk": 0.15,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step003.npz",
+ "sample_id": 30,
+ "n_cells": 826,
+ "n_positive": 24,
+ "gnn_topk": 0.2916666666666667,
+ "physics_topk": 0.125,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step004.npz",
+ "sample_id": 30,
+ "n_cells": 988,
+ "n_positive": 29,
+ "gnn_topk": 0.13793103448275862,
+ "physics_topk": 0.2413793103448276,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0030_step005.npz",
+ "sample_id": 30,
+ "n_cells": 1170,
+ "n_positive": 35,
+ "gnn_topk": 0.3142857142857143,
+ "physics_topk": 0.22857142857142856,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step006.npz",
+ "sample_id": 30,
+ "n_cells": 1394,
+ "n_positive": 41,
+ "gnn_topk": 0.21951219512195122,
+ "physics_topk": 0.0975609756097561,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step007.npz",
+ "sample_id": 30,
+ "n_cells": 1672,
+ "n_positive": 50,
+ "gnn_topk": 0.28,
+ "physics_topk": 0.02,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step008.npz",
+ "sample_id": 30,
+ "n_cells": 2022,
+ "n_positive": 60,
+ "gnn_topk": 0.16666666666666666,
+ "physics_topk": 0.05,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step009.npz",
+ "sample_id": 30,
+ "n_cells": 2404,
+ "n_positive": 72,
+ "gnn_topk": 0.19444444444444445,
+ "physics_topk": 0.1388888888888889,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step010.npz",
+ "sample_id": 30,
+ "n_cells": 2862,
+ "n_positive": 85,
+ "gnn_topk": 0.23529411764705882,
+ "physics_topk": 0.023529411764705882,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step011.npz",
+ "sample_id": 30,
+ "n_cells": 3422,
+ "n_positive": 102,
+ "gnn_topk": 0.23529411764705882,
+ "physics_topk": 0.058823529411764705,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step012.npz",
+ "sample_id": 30,
+ "n_cells": 4096,
+ "n_positive": 122,
+ "gnn_topk": 0.319672131147541,
+ "physics_topk": 0.16393442622950818,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step013.npz",
+ "sample_id": 30,
+ "n_cells": 4889,
+ "n_positive": 146,
+ "gnn_topk": 0.2465753424657534,
+ "physics_topk": 0.06164383561643835,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step014.npz",
+ "sample_id": 30,
+ "n_cells": 5854,
+ "n_positive": 175,
+ "gnn_topk": 0.24571428571428572,
+ "physics_topk": 0.13142857142857142,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step015.npz",
+ "sample_id": 30,
+ "n_cells": 7058,
+ "n_positive": 211,
+ "gnn_topk": 0.2796208530805687,
+ "physics_topk": 0.11848341232227488,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step016.npz",
+ "sample_id": 30,
+ "n_cells": 8503,
+ "n_positive": 255,
+ "gnn_topk": 0.23921568627450981,
+ "physics_topk": 0.11764705882352941,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step017.npz",
+ "sample_id": 30,
+ "n_cells": 10100,
+ "n_positive": 303,
+ "gnn_topk": 0.25412541254125415,
+ "physics_topk": 0.052805280528052806,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step000.npz",
+ "sample_id": 31,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.5333333333333333,
+ "physics_topk": 0.26666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step001.npz",
+ "sample_id": 31,
+ "n_cells": 602,
+ "n_positive": 18,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.3888888888888889,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step002.npz",
+ "sample_id": 31,
+ "n_cells": 704,
+ "n_positive": 21,
+ "gnn_topk": 0.38095238095238093,
+ "physics_topk": 0.14285714285714285,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step003.npz",
+ "sample_id": 31,
+ "n_cells": 844,
+ "n_positive": 25,
+ "gnn_topk": 0.48,
+ "physics_topk": 0.12,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step004.npz",
+ "sample_id": 31,
+ "n_cells": 1008,
+ "n_positive": 30,
+ "gnn_topk": 0.5333333333333333,
+ "physics_topk": 0.13333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step005.npz",
+ "sample_id": 31,
+ "n_cells": 1215,
+ "n_positive": 36,
+ "gnn_topk": 0.3888888888888889,
+ "physics_topk": 0.027777777777777776,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step006.npz",
+ "sample_id": 31,
+ "n_cells": 1443,
+ "n_positive": 43,
+ "gnn_topk": 0.5581395348837209,
+ "physics_topk": 0.3023255813953488,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step007.npz",
+ "sample_id": 31,
+ "n_cells": 1729,
+ "n_positive": 51,
+ "gnn_topk": 0.5294117647058824,
+ "physics_topk": 0.17647058823529413,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step008.npz",
+ "sample_id": 31,
+ "n_cells": 2052,
+ "n_positive": 61,
+ "gnn_topk": 0.4262295081967213,
+ "physics_topk": 0.13114754098360656,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step009.npz",
+ "sample_id": 31,
+ "n_cells": 2432,
+ "n_positive": 72,
+ "gnn_topk": 0.4305555555555556,
+ "physics_topk": 0.05555555555555555,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step010.npz",
+ "sample_id": 31,
+ "n_cells": 2908,
+ "n_positive": 87,
+ "gnn_topk": 0.39080459770114945,
+ "physics_topk": 0.08045977011494253,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step011.npz",
+ "sample_id": 31,
+ "n_cells": 3492,
+ "n_positive": 104,
+ "gnn_topk": 0.47115384615384615,
+ "physics_topk": 0.16346153846153846,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step012.npz",
+ "sample_id": 31,
+ "n_cells": 4168,
+ "n_positive": 125,
+ "gnn_topk": 0.456,
+ "physics_topk": 0.056,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step013.npz",
+ "sample_id": 31,
+ "n_cells": 4987,
+ "n_positive": 149,
+ "gnn_topk": 0.48322147651006714,
+ "physics_topk": 0.12080536912751678,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step014.npz",
+ "sample_id": 31,
+ "n_cells": 5954,
+ "n_positive": 178,
+ "gnn_topk": 0.5786516853932584,
+ "physics_topk": 0.12359550561797752,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step015.npz",
+ "sample_id": 31,
+ "n_cells": 7053,
+ "n_positive": 211,
+ "gnn_topk": 0.41232227488151657,
+ "physics_topk": 0.10426540284360189,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step016.npz",
+ "sample_id": 31,
+ "n_cells": 8458,
+ "n_positive": 253,
+ "gnn_topk": 0.5177865612648221,
+ "physics_topk": 0.13043478260869565,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step017.npz",
+ "sample_id": 31,
+ "n_cells": 10094,
+ "n_positive": 302,
+ "gnn_topk": 0.45695364238410596,
+ "physics_topk": 0.1291390728476821,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step000.npz",
+ "sample_id": 33,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.5333333333333333,
+ "physics_topk": 0.4666666666666667,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step001.npz",
+ "sample_id": 33,
+ "n_cells": 600,
+ "n_positive": 18,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.3333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step002.npz",
+ "sample_id": 33,
+ "n_cells": 714,
+ "n_positive": 21,
+ "gnn_topk": 0.47619047619047616,
+ "physics_topk": 0.14285714285714285,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step003.npz",
+ "sample_id": 33,
+ "n_cells": 848,
+ "n_positive": 25,
+ "gnn_topk": 0.64,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step004.npz",
+ "sample_id": 33,
+ "n_cells": 978,
+ "n_positive": 29,
+ "gnn_topk": 0.3793103448275862,
+ "physics_topk": 0.20689655172413793,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step005.npz",
+ "sample_id": 33,
+ "n_cells": 1154,
+ "n_positive": 34,
+ "gnn_topk": 0.47058823529411764,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step006.npz",
+ "sample_id": 33,
+ "n_cells": 1356,
+ "n_positive": 40,
+ "gnn_topk": 0.55,
+ "physics_topk": 0.025,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step007.npz",
+ "sample_id": 33,
+ "n_cells": 1602,
+ "n_positive": 48,
+ "gnn_topk": 0.4583333333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step008.npz",
+ "sample_id": 33,
+ "n_cells": 1924,
+ "n_positive": 57,
+ "gnn_topk": 0.43859649122807015,
+ "physics_topk": 0.03508771929824561,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step009.npz",
+ "sample_id": 33,
+ "n_cells": 2307,
+ "n_positive": 69,
+ "gnn_topk": 0.4927536231884058,
+ "physics_topk": 0.014492753623188406,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step010.npz",
+ "sample_id": 33,
+ "n_cells": 2745,
+ "n_positive": 82,
+ "gnn_topk": 0.5365853658536586,
+ "physics_topk": 0.036585365853658534,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step011.npz",
+ "sample_id": 33,
+ "n_cells": 3296,
+ "n_positive": 98,
+ "gnn_topk": 0.4489795918367347,
+ "physics_topk": 0.01020408163265306,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step012.npz",
+ "sample_id": 33,
+ "n_cells": 3905,
+ "n_positive": 117,
+ "gnn_topk": 0.5042735042735043,
+ "physics_topk": 0.03418803418803419,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step013.npz",
+ "sample_id": 33,
+ "n_cells": 4662,
+ "n_positive": 139,
+ "gnn_topk": 0.5107913669064749,
+ "physics_topk": 0.07913669064748201,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step014.npz",
+ "sample_id": 33,
+ "n_cells": 5538,
+ "n_positive": 166,
+ "gnn_topk": 0.45180722891566266,
+ "physics_topk": 0.1686746987951807,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step015.npz",
+ "sample_id": 33,
+ "n_cells": 6590,
+ "n_positive": 197,
+ "gnn_topk": 0.4263959390862944,
+ "physics_topk": 0.10152284263959391,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step016.npz",
+ "sample_id": 33,
+ "n_cells": 7798,
+ "n_positive": 233,
+ "gnn_topk": 0.4334763948497854,
+ "physics_topk": 0.0815450643776824,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step017.npz",
+ "sample_id": 33,
+ "n_cells": 9251,
+ "n_positive": 277,
+ "gnn_topk": 0.4404332129963899,
+ "physics_topk": 0.06859205776173286,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step018.npz",
+ "sample_id": 33,
+ "n_cells": 11002,
+ "n_positive": 330,
+ "gnn_topk": 0.3393939393939394,
+ "physics_topk": 0.07575757575757576,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step000.npz",
+ "sample_id": 39,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.6,
+ "physics_topk": 0.26666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step001.npz",
+ "sample_id": 39,
+ "n_cells": 600,
+ "n_positive": 18,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.3888888888888889,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step002.npz",
+ "sample_id": 39,
+ "n_cells": 698,
+ "n_positive": 20,
+ "gnn_topk": 0.45,
+ "physics_topk": 0.3,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step003.npz",
+ "sample_id": 39,
+ "n_cells": 829,
+ "n_positive": 24,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step004.npz",
+ "sample_id": 39,
+ "n_cells": 985,
+ "n_positive": 29,
+ "gnn_topk": 0.5517241379310345,
+ "physics_topk": 0.27586206896551724,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step005.npz",
+ "sample_id": 39,
+ "n_cells": 1157,
+ "n_positive": 34,
+ "gnn_topk": 0.3235294117647059,
+ "physics_topk": 0.14705882352941177,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step006.npz",
+ "sample_id": 39,
+ "n_cells": 1361,
+ "n_positive": 40,
+ "gnn_topk": 0.45,
+ "physics_topk": 0.175,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step007.npz",
+ "sample_id": 39,
+ "n_cells": 1631,
+ "n_positive": 48,
+ "gnn_topk": 0.3958333333333333,
+ "physics_topk": 0.14583333333333334,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step008.npz",
+ "sample_id": 39,
+ "n_cells": 1925,
+ "n_positive": 57,
+ "gnn_topk": 0.3684210526315789,
+ "physics_topk": 0.15789473684210525,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step009.npz",
+ "sample_id": 39,
+ "n_cells": 2303,
+ "n_positive": 69,
+ "gnn_topk": 0.2898550724637681,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step010.npz",
+ "sample_id": 39,
+ "n_cells": 2687,
+ "n_positive": 80,
+ "gnn_topk": 0.35,
+ "physics_topk": 0.05,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step011.npz",
+ "sample_id": 39,
+ "n_cells": 3213,
+ "n_positive": 96,
+ "gnn_topk": 0.3020833333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step012.npz",
+ "sample_id": 39,
+ "n_cells": 3798,
+ "n_positive": 113,
+ "gnn_topk": 0.3274336283185841,
+ "physics_topk": 0.035398230088495575,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step013.npz",
+ "sample_id": 39,
+ "n_cells": 4509,
+ "n_positive": 135,
+ "gnn_topk": 0.3925925925925926,
+ "physics_topk": 0.044444444444444446,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step014.npz",
+ "sample_id": 39,
+ "n_cells": 5397,
+ "n_positive": 161,
+ "gnn_topk": 0.484472049689441,
+ "physics_topk": 0.006211180124223602,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step015.npz",
+ "sample_id": 39,
+ "n_cells": 6388,
+ "n_positive": 191,
+ "gnn_topk": 0.35602094240837695,
+ "physics_topk": 0.020942408376963352,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step016.npz",
+ "sample_id": 39,
+ "n_cells": 7608,
+ "n_positive": 228,
+ "gnn_topk": 0.34210526315789475,
+ "physics_topk": 0.008771929824561403,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step017.npz",
+ "sample_id": 39,
+ "n_cells": 8994,
+ "n_positive": 269,
+ "gnn_topk": 0.36059479553903345,
+ "physics_topk": 0.07806691449814127,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step018.npz",
+ "sample_id": 39,
+ "n_cells": 10652,
+ "n_positive": 319,
+ "gnn_topk": 0.23824451410658307,
+ "physics_topk": 0.04075235109717868,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step000.npz",
+ "sample_id": 44,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.7333333333333333,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0044_step001.npz",
+ "sample_id": 44,
+ "n_cells": 596,
+ "n_positive": 17,
+ "gnn_topk": 0.7647058823529411,
+ "physics_topk": 0.058823529411764705,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step002.npz",
+ "sample_id": 44,
+ "n_cells": 704,
+ "n_positive": 21,
+ "gnn_topk": 0.5238095238095238,
+ "physics_topk": 0.47619047619047616,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step003.npz",
+ "sample_id": 44,
+ "n_cells": 840,
+ "n_positive": 25,
+ "gnn_topk": 0.8,
+ "physics_topk": 0.08,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step004.npz",
+ "sample_id": 44,
+ "n_cells": 982,
+ "n_positive": 29,
+ "gnn_topk": 0.5862068965517241,
+ "physics_topk": 0.06896551724137931,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step005.npz",
+ "sample_id": 44,
+ "n_cells": 1142,
+ "n_positive": 34,
+ "gnn_topk": 0.4117647058823529,
+ "physics_topk": 0.08823529411764706,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step006.npz",
+ "sample_id": 44,
+ "n_cells": 1386,
+ "n_positive": 41,
+ "gnn_topk": 0.4878048780487805,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step007.npz",
+ "sample_id": 44,
+ "n_cells": 1645,
+ "n_positive": 49,
+ "gnn_topk": 0.5510204081632653,
+ "physics_topk": 0.10204081632653061,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step008.npz",
+ "sample_id": 44,
+ "n_cells": 1952,
+ "n_positive": 58,
+ "gnn_topk": 0.46551724137931033,
+ "physics_topk": 0.05172413793103448,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step009.npz",
+ "sample_id": 44,
+ "n_cells": 2368,
+ "n_positive": 71,
+ "gnn_topk": 0.5492957746478874,
+ "physics_topk": 0.11267605633802817,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step010.npz",
+ "sample_id": 44,
+ "n_cells": 2830,
+ "n_positive": 84,
+ "gnn_topk": 0.5714285714285714,
+ "physics_topk": 0.023809523809523808,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step011.npz",
+ "sample_id": 44,
+ "n_cells": 3341,
+ "n_positive": 100,
+ "gnn_topk": 0.52,
+ "physics_topk": 0.14,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step012.npz",
+ "sample_id": 44,
+ "n_cells": 3995,
+ "n_positive": 119,
+ "gnn_topk": 0.5714285714285714,
+ "physics_topk": 0.10084033613445378,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step013.npz",
+ "sample_id": 44,
+ "n_cells": 4846,
+ "n_positive": 145,
+ "gnn_topk": 0.5103448275862069,
+ "physics_topk": 0.1103448275862069,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step014.npz",
+ "sample_id": 44,
+ "n_cells": 5797,
+ "n_positive": 173,
+ "gnn_topk": 0.42196531791907516,
+ "physics_topk": 0.11560693641618497,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step015.npz",
+ "sample_id": 44,
+ "n_cells": 6852,
+ "n_positive": 205,
+ "gnn_topk": 0.6585365853658537,
+ "physics_topk": 0.13658536585365855,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step016.npz",
+ "sample_id": 44,
+ "n_cells": 8120,
+ "n_positive": 243,
+ "gnn_topk": 0.4897119341563786,
+ "physics_topk": 0.11522633744855967,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step017.npz",
+ "sample_id": 44,
+ "n_cells": 9732,
+ "n_positive": 291,
+ "gnn_topk": 0.4845360824742268,
+ "physics_topk": 0.19931271477663232,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step018.npz",
+ "sample_id": 44,
+ "n_cells": 11666,
+ "n_positive": 349,
+ "gnn_topk": 0.5386819484240688,
+ "physics_topk": 0.12893982808022922,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step000.npz",
+ "sample_id": 45,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.6,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step001.npz",
+ "sample_id": 45,
+ "n_cells": 604,
+ "n_positive": 18,
+ "gnn_topk": 0.8333333333333334,
+ "physics_topk": 0.6666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step002.npz",
+ "sample_id": 45,
+ "n_cells": 696,
+ "n_positive": 20,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.15,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step003.npz",
+ "sample_id": 45,
+ "n_cells": 822,
+ "n_positive": 24,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.20833333333333334,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step004.npz",
+ "sample_id": 45,
+ "n_cells": 969,
+ "n_positive": 29,
+ "gnn_topk": 0.2413793103448276,
+ "physics_topk": 0.20689655172413793,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step005.npz",
+ "sample_id": 45,
+ "n_cells": 1139,
+ "n_positive": 34,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.20588235294117646,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step006.npz",
+ "sample_id": 45,
+ "n_cells": 1345,
+ "n_positive": 40,
+ "gnn_topk": 0.325,
+ "physics_topk": 0.15,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step007.npz",
+ "sample_id": 45,
+ "n_cells": 1615,
+ "n_positive": 48,
+ "gnn_topk": 0.3958333333333333,
+ "physics_topk": 0.14583333333333334,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step008.npz",
+ "sample_id": 45,
+ "n_cells": 1945,
+ "n_positive": 58,
+ "gnn_topk": 0.3275862068965517,
+ "physics_topk": 0.1206896551724138,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step009.npz",
+ "sample_id": 45,
+ "n_cells": 2308,
+ "n_positive": 69,
+ "gnn_topk": 0.3188405797101449,
+ "physics_topk": 0.08695652173913043,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step010.npz",
+ "sample_id": 45,
+ "n_cells": 2738,
+ "n_positive": 82,
+ "gnn_topk": 0.3170731707317073,
+ "physics_topk": 0.08536585365853659,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step011.npz",
+ "sample_id": 45,
+ "n_cells": 3269,
+ "n_positive": 98,
+ "gnn_topk": 0.3979591836734694,
+ "physics_topk": 0.07142857142857142,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step012.npz",
+ "sample_id": 45,
+ "n_cells": 3910,
+ "n_positive": 117,
+ "gnn_topk": 0.28205128205128205,
+ "physics_topk": 0.1111111111111111,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step013.npz",
+ "sample_id": 45,
+ "n_cells": 4625,
+ "n_positive": 138,
+ "gnn_topk": 0.391304347826087,
+ "physics_topk": 0.14492753623188406,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step014.npz",
+ "sample_id": 45,
+ "n_cells": 5526,
+ "n_positive": 165,
+ "gnn_topk": 0.40606060606060607,
+ "physics_topk": 0.15757575757575756,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step015.npz",
+ "sample_id": 45,
+ "n_cells": 6548,
+ "n_positive": 196,
+ "gnn_topk": 0.3826530612244898,
+ "physics_topk": 0.12755102040816327,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step016.npz",
+ "sample_id": 45,
+ "n_cells": 7834,
+ "n_positive": 235,
+ "gnn_topk": 0.34893617021276596,
+ "physics_topk": 0.1574468085106383,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step017.npz",
+ "sample_id": 45,
+ "n_cells": 9344,
+ "n_positive": 280,
+ "gnn_topk": 0.3678571428571429,
+ "physics_topk": 0.08571428571428572,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step018.npz",
+ "sample_id": 45,
+ "n_cells": 11110,
+ "n_positive": 333,
+ "gnn_topk": 0.30930930930930933,
+ "physics_topk": 0.1021021021021021,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step000.npz",
+ "sample_id": 53,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.7333333333333333,
+ "physics_topk": 0.5333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step001.npz",
+ "sample_id": 53,
+ "n_cells": 592,
+ "n_positive": 17,
+ "gnn_topk": 0.5294117647058824,
+ "physics_topk": 0.23529411764705882,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step002.npz",
+ "sample_id": 53,
+ "n_cells": 690,
+ "n_positive": 20,
+ "gnn_topk": 0.55,
+ "physics_topk": 0.25,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step003.npz",
+ "sample_id": 53,
+ "n_cells": 808,
+ "n_positive": 24,
+ "gnn_topk": 0.5833333333333334,
+ "physics_topk": 0.08333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step004.npz",
+ "sample_id": 53,
+ "n_cells": 946,
+ "n_positive": 28,
+ "gnn_topk": 0.32142857142857145,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step005.npz",
+ "sample_id": 53,
+ "n_cells": 1134,
+ "n_positive": 34,
+ "gnn_topk": 0.38235294117647056,
+ "physics_topk": 0.058823529411764705,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step006.npz",
+ "sample_id": 53,
+ "n_cells": 1350,
+ "n_positive": 40,
+ "gnn_topk": 0.375,
+ "physics_topk": 0.05,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step007.npz",
+ "sample_id": 53,
+ "n_cells": 1594,
+ "n_positive": 47,
+ "gnn_topk": 0.3404255319148936,
+ "physics_topk": 0.02127659574468085,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step008.npz",
+ "sample_id": 53,
+ "n_cells": 1900,
+ "n_positive": 57,
+ "gnn_topk": 0.3157894736842105,
+ "physics_topk": 0.07017543859649122,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step009.npz",
+ "sample_id": 53,
+ "n_cells": 2274,
+ "n_positive": 68,
+ "gnn_topk": 0.45588235294117646,
+ "physics_topk": 0.11764705882352941,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step010.npz",
+ "sample_id": 53,
+ "n_cells": 2727,
+ "n_positive": 81,
+ "gnn_topk": 0.48148148148148145,
+ "physics_topk": 0.037037037037037035,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step011.npz",
+ "sample_id": 53,
+ "n_cells": 3228,
+ "n_positive": 96,
+ "gnn_topk": 0.40625,
+ "physics_topk": 0.07291666666666667,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step012.npz",
+ "sample_id": 53,
+ "n_cells": 3850,
+ "n_positive": 115,
+ "gnn_topk": 0.40869565217391307,
+ "physics_topk": 0.1391304347826087,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step013.npz",
+ "sample_id": 53,
+ "n_cells": 4558,
+ "n_positive": 136,
+ "gnn_topk": 0.375,
+ "physics_topk": 0.08088235294117647,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step014.npz",
+ "sample_id": 53,
+ "n_cells": 5393,
+ "n_positive": 161,
+ "gnn_topk": 0.43478260869565216,
+ "physics_topk": 0.11180124223602485,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step015.npz",
+ "sample_id": 53,
+ "n_cells": 6419,
+ "n_positive": 192,
+ "gnn_topk": 0.4635416666666667,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step016.npz",
+ "sample_id": 53,
+ "n_cells": 7685,
+ "n_positive": 230,
+ "gnn_topk": 0.43478260869565216,
+ "physics_topk": 0.07391304347826087,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step017.npz",
+ "sample_id": 53,
+ "n_cells": 9176,
+ "n_positive": 275,
+ "gnn_topk": 0.5054545454545455,
+ "physics_topk": 0.13090909090909092,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step018.npz",
+ "sample_id": 53,
+ "n_cells": 10954,
+ "n_positive": 328,
+ "gnn_topk": 0.42378048780487804,
+ "physics_topk": 0.11890243902439024,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step000.npz",
+ "sample_id": 70,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.7333333333333333,
+ "physics_topk": 0.5333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step001.npz",
+ "sample_id": 70,
+ "n_cells": 596,
+ "n_positive": 17,
+ "gnn_topk": 0.6470588235294118,
+ "physics_topk": 0.5294117647058824,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step002.npz",
+ "sample_id": 70,
+ "n_cells": 682,
+ "n_positive": 20,
+ "gnn_topk": 0.7,
+ "physics_topk": 0.1,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step003.npz",
+ "sample_id": 70,
+ "n_cells": 804,
+ "n_positive": 24,
+ "gnn_topk": 0.75,
+ "physics_topk": 0.041666666666666664,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step004.npz",
+ "sample_id": 70,
+ "n_cells": 946,
+ "n_positive": 28,
+ "gnn_topk": 0.5357142857142857,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step005.npz",
+ "sample_id": 70,
+ "n_cells": 1112,
+ "n_positive": 33,
+ "gnn_topk": 0.5151515151515151,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step006.npz",
+ "sample_id": 70,
+ "n_cells": 1328,
+ "n_positive": 39,
+ "gnn_topk": 0.4358974358974359,
+ "physics_topk": 0.02564102564102564,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step007.npz",
+ "sample_id": 70,
+ "n_cells": 1569,
+ "n_positive": 47,
+ "gnn_topk": 0.5531914893617021,
+ "physics_topk": 0.02127659574468085,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step008.npz",
+ "sample_id": 70,
+ "n_cells": 1852,
+ "n_positive": 55,
+ "gnn_topk": 0.38181818181818183,
+ "physics_topk": 0.03636363636363636,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step009.npz",
+ "sample_id": 70,
+ "n_cells": 2216,
+ "n_positive": 66,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step010.npz",
+ "sample_id": 70,
+ "n_cells": 2617,
+ "n_positive": 78,
+ "gnn_topk": 0.4358974358974359,
+ "physics_topk": 0.3717948717948718,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step011.npz",
+ "sample_id": 70,
+ "n_cells": 3121,
+ "n_positive": 93,
+ "gnn_topk": 0.4731182795698925,
+ "physics_topk": 0.24731182795698925,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step012.npz",
+ "sample_id": 70,
+ "n_cells": 3745,
+ "n_positive": 112,
+ "gnn_topk": 0.4732142857142857,
+ "physics_topk": 0.14285714285714285,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step013.npz",
+ "sample_id": 70,
+ "n_cells": 4489,
+ "n_positive": 134,
+ "gnn_topk": 0.5149253731343284,
+ "physics_topk": 0.208955223880597,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step014.npz",
+ "sample_id": 70,
+ "n_cells": 5368,
+ "n_positive": 161,
+ "gnn_topk": 0.42857142857142855,
+ "physics_topk": 0.14285714285714285,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step015.npz",
+ "sample_id": 70,
+ "n_cells": 6411,
+ "n_positive": 192,
+ "gnn_topk": 0.5104166666666666,
+ "physics_topk": 0.15104166666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step016.npz",
+ "sample_id": 70,
+ "n_cells": 7611,
+ "n_positive": 228,
+ "gnn_topk": 0.47368421052631576,
+ "physics_topk": 0.13157894736842105,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step017.npz",
+ "sample_id": 70,
+ "n_cells": 9121,
+ "n_positive": 273,
+ "gnn_topk": 0.4908424908424908,
+ "physics_topk": 0.17216117216117216,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step018.npz",
+ "sample_id": 70,
+ "n_cells": 10867,
+ "n_positive": 326,
+ "gnn_topk": 0.5398773006134969,
+ "physics_topk": 0.3098159509202454,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step000.npz",
+ "sample_id": 73,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.7333333333333333,
+ "physics_topk": 0.4,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step001.npz",
+ "sample_id": 73,
+ "n_cells": 590,
+ "n_positive": 17,
+ "gnn_topk": 0.7058823529411765,
+ "physics_topk": 0.5882352941176471,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step002.npz",
+ "sample_id": 73,
+ "n_cells": 686,
+ "n_positive": 20,
+ "gnn_topk": 0.6,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step003.npz",
+ "sample_id": 73,
+ "n_cells": 802,
+ "n_positive": 24,
+ "gnn_topk": 0.625,
+ "physics_topk": 0.08333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step004.npz",
+ "sample_id": 73,
+ "n_cells": 938,
+ "n_positive": 28,
+ "gnn_topk": 0.6071428571428571,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step005.npz",
+ "sample_id": 73,
+ "n_cells": 1110,
+ "n_positive": 33,
+ "gnn_topk": 0.42424242424242425,
+ "physics_topk": 0.030303030303030304,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step006.npz",
+ "sample_id": 73,
+ "n_cells": 1333,
+ "n_positive": 39,
+ "gnn_topk": 0.48717948717948717,
+ "physics_topk": 0.05128205128205128,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step007.npz",
+ "sample_id": 73,
+ "n_cells": 1566,
+ "n_positive": 46,
+ "gnn_topk": 0.3695652173913043,
+ "physics_topk": 0.10869565217391304,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step008.npz",
+ "sample_id": 73,
+ "n_cells": 1861,
+ "n_positive": 55,
+ "gnn_topk": 0.36363636363636365,
+ "physics_topk": 0.05454545454545454,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step009.npz",
+ "sample_id": 73,
+ "n_cells": 2203,
+ "n_positive": 66,
+ "gnn_topk": 0.3484848484848485,
+ "physics_topk": 0.21212121212121213,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step010.npz",
+ "sample_id": 73,
+ "n_cells": 2597,
+ "n_positive": 77,
+ "gnn_topk": 0.4155844155844156,
+ "physics_topk": 0.2857142857142857,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step011.npz",
+ "sample_id": 73,
+ "n_cells": 3064,
+ "n_positive": 91,
+ "gnn_topk": 0.4065934065934066,
+ "physics_topk": 0.26373626373626374,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step012.npz",
+ "sample_id": 73,
+ "n_cells": 3626,
+ "n_positive": 108,
+ "gnn_topk": 0.49074074074074076,
+ "physics_topk": 0.1574074074074074,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step013.npz",
+ "sample_id": 73,
+ "n_cells": 4333,
+ "n_positive": 129,
+ "gnn_topk": 0.43410852713178294,
+ "physics_topk": 0.14728682170542637,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step014.npz",
+ "sample_id": 73,
+ "n_cells": 5179,
+ "n_positive": 155,
+ "gnn_topk": 0.3935483870967742,
+ "physics_topk": 0.17419354838709677,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step015.npz",
+ "sample_id": 73,
+ "n_cells": 6198,
+ "n_positive": 185,
+ "gnn_topk": 0.3675675675675676,
+ "physics_topk": 0.13513513513513514,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step016.npz",
+ "sample_id": 73,
+ "n_cells": 7394,
+ "n_positive": 221,
+ "gnn_topk": 0.4660633484162896,
+ "physics_topk": 0.11312217194570136,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step017.npz",
+ "sample_id": 73,
+ "n_cells": 8805,
+ "n_positive": 264,
+ "gnn_topk": 0.32196969696969696,
+ "physics_topk": 0.26136363636363635,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step018.npz",
+ "sample_id": 73,
+ "n_cells": 10450,
+ "n_positive": 313,
+ "gnn_topk": 0.36421725239616615,
+ "physics_topk": 0.22044728434504793,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step000.npz",
+ "sample_id": 76,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.4666666666666667,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step001.npz",
+ "sample_id": 76,
+ "n_cells": 592,
+ "n_positive": 17,
+ "gnn_topk": 0.35294117647058826,
+ "physics_topk": 0.23529411764705882,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step002.npz",
+ "sample_id": 76,
+ "n_cells": 700,
+ "n_positive": 21,
+ "gnn_topk": 0.6190476190476191,
+ "physics_topk": 0.14285714285714285,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step003.npz",
+ "sample_id": 76,
+ "n_cells": 826,
+ "n_positive": 24,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.041666666666666664,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step004.npz",
+ "sample_id": 76,
+ "n_cells": 968,
+ "n_positive": 29,
+ "gnn_topk": 0.41379310344827586,
+ "physics_topk": 0.20689655172413793,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step005.npz",
+ "sample_id": 76,
+ "n_cells": 1151,
+ "n_positive": 34,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.14705882352941177,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step006.npz",
+ "sample_id": 76,
+ "n_cells": 1359,
+ "n_positive": 40,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.1,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step007.npz",
+ "sample_id": 76,
+ "n_cells": 1609,
+ "n_positive": 48,
+ "gnn_topk": 0.4583333333333333,
+ "physics_topk": 0.375,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step008.npz",
+ "sample_id": 76,
+ "n_cells": 1909,
+ "n_positive": 57,
+ "gnn_topk": 0.24561403508771928,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step009.npz",
+ "sample_id": 76,
+ "n_cells": 2277,
+ "n_positive": 68,
+ "gnn_topk": 0.27941176470588236,
+ "physics_topk": 0.08823529411764706,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step010.npz",
+ "sample_id": 76,
+ "n_cells": 2683,
+ "n_positive": 80,
+ "gnn_topk": 0.325,
+ "physics_topk": 0.0875,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step011.npz",
+ "sample_id": 76,
+ "n_cells": 3182,
+ "n_positive": 95,
+ "gnn_topk": 0.3157894736842105,
+ "physics_topk": 0.021052631578947368,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step012.npz",
+ "sample_id": 76,
+ "n_cells": 3780,
+ "n_positive": 113,
+ "gnn_topk": 0.22123893805309736,
+ "physics_topk": 0.11504424778761062,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step013.npz",
+ "sample_id": 76,
+ "n_cells": 4553,
+ "n_positive": 136,
+ "gnn_topk": 0.25,
+ "physics_topk": 0.0661764705882353,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step014.npz",
+ "sample_id": 76,
+ "n_cells": 5430,
+ "n_positive": 162,
+ "gnn_topk": 0.2345679012345679,
+ "physics_topk": 0.06172839506172839,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step015.npz",
+ "sample_id": 76,
+ "n_cells": 6489,
+ "n_positive": 194,
+ "gnn_topk": 0.26804123711340205,
+ "physics_topk": 0.05154639175257732,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step016.npz",
+ "sample_id": 76,
+ "n_cells": 7760,
+ "n_positive": 232,
+ "gnn_topk": 0.34913793103448276,
+ "physics_topk": 0.1336206896551724,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step017.npz",
+ "sample_id": 76,
+ "n_cells": 9272,
+ "n_positive": 278,
+ "gnn_topk": 0.36330935251798563,
+ "physics_topk": 0.06474820143884892,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step018.npz",
+ "sample_id": 76,
+ "n_cells": 11055,
+ "n_positive": 331,
+ "gnn_topk": 0.31419939577039274,
+ "physics_topk": 0.06948640483383686,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step000.npz",
+ "sample_id": 77,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.5333333333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step001.npz",
+ "sample_id": 77,
+ "n_cells": 592,
+ "n_positive": 17,
+ "gnn_topk": 0.35294117647058826,
+ "physics_topk": 0.11764705882352941,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step002.npz",
+ "sample_id": 77,
+ "n_cells": 702,
+ "n_positive": 21,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.09523809523809523,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step003.npz",
+ "sample_id": 77,
+ "n_cells": 842,
+ "n_positive": 25,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.2,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step004.npz",
+ "sample_id": 77,
+ "n_cells": 1006,
+ "n_positive": 30,
+ "gnn_topk": 0.6,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step005.npz",
+ "sample_id": 77,
+ "n_cells": 1184,
+ "n_positive": 35,
+ "gnn_topk": 0.34285714285714286,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step006.npz",
+ "sample_id": 77,
+ "n_cells": 1422,
+ "n_positive": 42,
+ "gnn_topk": 0.35714285714285715,
+ "physics_topk": 0.047619047619047616,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step007.npz",
+ "sample_id": 77,
+ "n_cells": 1690,
+ "n_positive": 50,
+ "gnn_topk": 0.32,
+ "physics_topk": 0.08,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step008.npz",
+ "sample_id": 77,
+ "n_cells": 2006,
+ "n_positive": 60,
+ "gnn_topk": 0.36666666666666664,
+ "physics_topk": 0.03333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step009.npz",
+ "sample_id": 77,
+ "n_cells": 2370,
+ "n_positive": 71,
+ "gnn_topk": 0.29577464788732394,
+ "physics_topk": 0.028169014084507043,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step010.npz",
+ "sample_id": 77,
+ "n_cells": 2833,
+ "n_positive": 84,
+ "gnn_topk": 0.4642857142857143,
+ "physics_topk": 0.023809523809523808,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step011.npz",
+ "sample_id": 77,
+ "n_cells": 3334,
+ "n_positive": 100,
+ "gnn_topk": 0.57,
+ "physics_topk": 0.02,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step012.npz",
+ "sample_id": 77,
+ "n_cells": 3936,
+ "n_positive": 118,
+ "gnn_topk": 0.2288135593220339,
+ "physics_topk": 0.11016949152542373,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step013.npz",
+ "sample_id": 77,
+ "n_cells": 4697,
+ "n_positive": 140,
+ "gnn_topk": 0.37857142857142856,
+ "physics_topk": 0.03571428571428571,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step014.npz",
+ "sample_id": 77,
+ "n_cells": 5658,
+ "n_positive": 169,
+ "gnn_topk": 0.378698224852071,
+ "physics_topk": 0.1242603550295858,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step015.npz",
+ "sample_id": 77,
+ "n_cells": 6731,
+ "n_positive": 201,
+ "gnn_topk": 0.34328358208955223,
+ "physics_topk": 0.15422885572139303,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step016.npz",
+ "sample_id": 77,
+ "n_cells": 8002,
+ "n_positive": 240,
+ "gnn_topk": 0.36666666666666664,
+ "physics_topk": 0.09583333333333334,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step017.npz",
+ "sample_id": 77,
+ "n_cells": 9508,
+ "n_positive": 285,
+ "gnn_topk": 0.45964912280701753,
+ "physics_topk": 0.07719298245614035,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step018.npz",
+ "sample_id": 77,
+ "n_cells": 11269,
+ "n_positive": 338,
+ "gnn_topk": 0.40532544378698226,
+ "physics_topk": 0.09467455621301775,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step000.npz",
+ "sample_id": 80,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.4,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step001.npz",
+ "sample_id": 80,
+ "n_cells": 592,
+ "n_positive": 17,
+ "gnn_topk": 0.7647058823529411,
+ "physics_topk": 0.17647058823529413,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step002.npz",
+ "sample_id": 80,
+ "n_cells": 696,
+ "n_positive": 20,
+ "gnn_topk": 0.6,
+ "physics_topk": 0.2,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step003.npz",
+ "sample_id": 80,
+ "n_cells": 816,
+ "n_positive": 24,
+ "gnn_topk": 0.4166666666666667,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step004.npz",
+ "sample_id": 80,
+ "n_cells": 956,
+ "n_positive": 28,
+ "gnn_topk": 0.5357142857142857,
+ "physics_topk": 0.10714285714285714,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step005.npz",
+ "sample_id": 80,
+ "n_cells": 1140,
+ "n_positive": 34,
+ "gnn_topk": 0.6470588235294118,
+ "physics_topk": 0.14705882352941177,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step006.npz",
+ "sample_id": 80,
+ "n_cells": 1342,
+ "n_positive": 40,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.2,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step007.npz",
+ "sample_id": 80,
+ "n_cells": 1583,
+ "n_positive": 47,
+ "gnn_topk": 0.425531914893617,
+ "physics_topk": 0.14893617021276595,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step008.npz",
+ "sample_id": 80,
+ "n_cells": 1872,
+ "n_positive": 56,
+ "gnn_topk": 0.44642857142857145,
+ "physics_topk": 0.03571428571428571,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step009.npz",
+ "sample_id": 80,
+ "n_cells": 2228,
+ "n_positive": 66,
+ "gnn_topk": 0.42424242424242425,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step010.npz",
+ "sample_id": 80,
+ "n_cells": 2664,
+ "n_positive": 79,
+ "gnn_topk": 0.4050632911392405,
+ "physics_topk": 0.1518987341772152,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step011.npz",
+ "sample_id": 80,
+ "n_cells": 3171,
+ "n_positive": 95,
+ "gnn_topk": 0.4421052631578947,
+ "physics_topk": 0.12631578947368421,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step012.npz",
+ "sample_id": 80,
+ "n_cells": 3776,
+ "n_positive": 113,
+ "gnn_topk": 0.4336283185840708,
+ "physics_topk": 0.23893805309734514,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step013.npz",
+ "sample_id": 80,
+ "n_cells": 4493,
+ "n_positive": 134,
+ "gnn_topk": 0.5149253731343284,
+ "physics_topk": 0.13432835820895522,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step014.npz",
+ "sample_id": 80,
+ "n_cells": 5330,
+ "n_positive": 159,
+ "gnn_topk": 0.39622641509433965,
+ "physics_topk": 0.11949685534591195,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step015.npz",
+ "sample_id": 80,
+ "n_cells": 6343,
+ "n_positive": 190,
+ "gnn_topk": 0.5105263157894737,
+ "physics_topk": 0.15789473684210525,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step016.npz",
+ "sample_id": 80,
+ "n_cells": 7573,
+ "n_positive": 227,
+ "gnn_topk": 0.43612334801762115,
+ "physics_topk": 0.1762114537444934,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step017.npz",
+ "sample_id": 80,
+ "n_cells": 9043,
+ "n_positive": 271,
+ "gnn_topk": 0.4797047970479705,
+ "physics_topk": 0.1033210332103321,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step018.npz",
+ "sample_id": 80,
+ "n_cells": 10761,
+ "n_positive": 322,
+ "gnn_topk": 0.4254658385093168,
+ "physics_topk": 0.15838509316770186,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step000.npz",
+ "sample_id": 83,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.6,
+ "physics_topk": 0.13333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step001.npz",
+ "sample_id": 83,
+ "n_cells": 600,
+ "n_positive": 18,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.2777777777777778,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step002.npz",
+ "sample_id": 83,
+ "n_cells": 692,
+ "n_positive": 20,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.1,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step003.npz",
+ "sample_id": 83,
+ "n_cells": 804,
+ "n_positive": 24,
+ "gnn_topk": 0.5833333333333334,
+ "physics_topk": 0.041666666666666664,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step004.npz",
+ "sample_id": 83,
+ "n_cells": 952,
+ "n_positive": 28,
+ "gnn_topk": 0.32142857142857145,
+ "physics_topk": 0.21428571428571427,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step005.npz",
+ "sample_id": 83,
+ "n_cells": 1132,
+ "n_positive": 33,
+ "gnn_topk": 0.42424242424242425,
+ "physics_topk": 0.09090909090909091,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step006.npz",
+ "sample_id": 83,
+ "n_cells": 1340,
+ "n_positive": 40,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step007.npz",
+ "sample_id": 83,
+ "n_cells": 1570,
+ "n_positive": 47,
+ "gnn_topk": 0.3617021276595745,
+ "physics_topk": 0.1276595744680851,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step008.npz",
+ "sample_id": 83,
+ "n_cells": 1892,
+ "n_positive": 56,
+ "gnn_topk": 0.3392857142857143,
+ "physics_topk": 0.03571428571428571,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step009.npz",
+ "sample_id": 83,
+ "n_cells": 2230,
+ "n_positive": 66,
+ "gnn_topk": 0.4090909090909091,
+ "physics_topk": 0.12121212121212122,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step010.npz",
+ "sample_id": 83,
+ "n_cells": 2630,
+ "n_positive": 78,
+ "gnn_topk": 0.44871794871794873,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step011.npz",
+ "sample_id": 83,
+ "n_cells": 3089,
+ "n_positive": 92,
+ "gnn_topk": 0.32608695652173914,
+ "physics_topk": 0.1956521739130435,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step012.npz",
+ "sample_id": 83,
+ "n_cells": 3684,
+ "n_positive": 110,
+ "gnn_topk": 0.2818181818181818,
+ "physics_topk": 0.05454545454545454,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step013.npz",
+ "sample_id": 83,
+ "n_cells": 4381,
+ "n_positive": 131,
+ "gnn_topk": 0.4198473282442748,
+ "physics_topk": 0.19083969465648856,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step014.npz",
+ "sample_id": 83,
+ "n_cells": 5219,
+ "n_positive": 156,
+ "gnn_topk": 0.32051282051282054,
+ "physics_topk": 0.04487179487179487,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step015.npz",
+ "sample_id": 83,
+ "n_cells": 6186,
+ "n_positive": 185,
+ "gnn_topk": 0.2810810810810811,
+ "physics_topk": 0.12972972972972974,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step016.npz",
+ "sample_id": 83,
+ "n_cells": 7391,
+ "n_positive": 221,
+ "gnn_topk": 0.34841628959276016,
+ "physics_topk": 0.09502262443438914,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step017.npz",
+ "sample_id": 83,
+ "n_cells": 8771,
+ "n_positive": 263,
+ "gnn_topk": 0.34220532319391633,
+ "physics_topk": 0.06844106463878327,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step018.npz",
+ "sample_id": 83,
+ "n_cells": 10435,
+ "n_positive": 313,
+ "gnn_topk": 0.3035143769968051,
+ "physics_topk": 0.07667731629392971,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step000.npz",
+ "sample_id": 90,
+ "n_cells": 512,
+ "n_positive": 15,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.4,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step001.npz",
+ "sample_id": 90,
+ "n_cells": 592,
+ "n_positive": 17,
+ "gnn_topk": 0.6470588235294118,
+ "physics_topk": 0.35294117647058826,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step002.npz",
+ "sample_id": 90,
+ "n_cells": 690,
+ "n_positive": 20,
+ "gnn_topk": 0.75,
+ "physics_topk": 0.2,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step003.npz",
+ "sample_id": 90,
+ "n_cells": 786,
+ "n_positive": 23,
+ "gnn_topk": 0.5217391304347826,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step004.npz",
+ "sample_id": 90,
+ "n_cells": 936,
+ "n_positive": 28,
+ "gnn_topk": 0.4642857142857143,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step005.npz",
+ "sample_id": 90,
+ "n_cells": 1132,
+ "n_positive": 33,
+ "gnn_topk": 0.6060606060606061,
+ "physics_topk": 0.030303030303030304,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step006.npz",
+ "sample_id": 90,
+ "n_cells": 1352,
+ "n_positive": 40,
+ "gnn_topk": 0.625,
+ "physics_topk": 0.075,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step007.npz",
+ "sample_id": 90,
+ "n_cells": 1584,
+ "n_positive": 47,
+ "gnn_topk": 0.2553191489361702,
+ "physics_topk": 0.06382978723404255,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step008.npz",
+ "sample_id": 90,
+ "n_cells": 1875,
+ "n_positive": 56,
+ "gnn_topk": 0.4107142857142857,
+ "physics_topk": 0.05357142857142857,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step009.npz",
+ "sample_id": 90,
+ "n_cells": 2244,
+ "n_positive": 67,
+ "gnn_topk": 0.2537313432835821,
+ "physics_topk": 0.029850746268656716,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step010.npz",
+ "sample_id": 90,
+ "n_cells": 2674,
+ "n_positive": 80,
+ "gnn_topk": 0.5875,
+ "physics_topk": 0.2125,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step011.npz",
+ "sample_id": 90,
+ "n_cells": 3130,
+ "n_positive": 93,
+ "gnn_topk": 0.3655913978494624,
+ "physics_topk": 0.1827956989247312,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step012.npz",
+ "sample_id": 90,
+ "n_cells": 3738,
+ "n_positive": 112,
+ "gnn_topk": 0.4642857142857143,
+ "physics_topk": 0.1875,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step013.npz",
+ "sample_id": 90,
+ "n_cells": 4465,
+ "n_positive": 133,
+ "gnn_topk": 0.47368421052631576,
+ "physics_topk": 0.06766917293233082,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step014.npz",
+ "sample_id": 90,
+ "n_cells": 5313,
+ "n_positive": 159,
+ "gnn_topk": 0.389937106918239,
+ "physics_topk": 0.09433962264150944,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step015.npz",
+ "sample_id": 90,
+ "n_cells": 6315,
+ "n_positive": 189,
+ "gnn_topk": 0.4074074074074074,
+ "physics_topk": 0.10052910052910052,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step016.npz",
+ "sample_id": 90,
+ "n_cells": 7505,
+ "n_positive": 225,
+ "gnn_topk": 0.3422222222222222,
+ "physics_topk": 0.03111111111111111,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step017.npz",
+ "sample_id": 90,
+ "n_cells": 8903,
+ "n_positive": 267,
+ "gnn_topk": 0.3782771535580524,
+ "physics_topk": 0.1348314606741573,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step018.npz",
+ "sample_id": 90,
+ "n_cells": 10649,
+ "n_positive": 319,
+ "gnn_topk": 0.4608150470219436,
+ "physics_topk": 0.219435736677116,
+ "gnn_beats_physics": true
+ }
+ ]
+}
\ No newline at end of file
diff --git a/outlook/result/correction/test_results.json b/outlook/result/correction/test_results.json
new file mode 100644
index 0000000..dde7309
--- /dev/null
+++ b/outlook/result/correction/test_results.json
@@ -0,0 +1,3611 @@
+{
+ "n_graphs": 400,
+ "gnn_auc": 0.9151723632072455,
+ "physics_auc": 0.0,
+ "gnn_topk_mean": 0.34784826963430127,
+ "physics_topk_mean": 0.11983331266150325,
+ "gnn_beats_physics_count": 334,
+ "gnn_beats_physics_ratio": 0.835,
+ "per_graph": [
+ {
+ "file": "sample0000_step000.npz",
+ "sample_id": 0,
+ "n_cells": 66,
+ "n_positive": 1,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0000_step001.npz",
+ "sample_id": 0,
+ "n_cells": 80,
+ "n_positive": 2,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0000_step002.npz",
+ "sample_id": 0,
+ "n_cells": 114,
+ "n_positive": 3,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step003.npz",
+ "sample_id": 0,
+ "n_cells": 146,
+ "n_positive": 4,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.25,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step004.npz",
+ "sample_id": 0,
+ "n_cells": 184,
+ "n_positive": 5,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0000_step005.npz",
+ "sample_id": 0,
+ "n_cells": 226,
+ "n_positive": 6,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step006.npz",
+ "sample_id": 0,
+ "n_cells": 263,
+ "n_positive": 7,
+ "gnn_topk": 0.42857142857142855,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step007.npz",
+ "sample_id": 0,
+ "n_cells": 311,
+ "n_positive": 9,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.2222222222222222,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step008.npz",
+ "sample_id": 0,
+ "n_cells": 396,
+ "n_positive": 11,
+ "gnn_topk": 0.45454545454545453,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step009.npz",
+ "sample_id": 0,
+ "n_cells": 494,
+ "n_positive": 14,
+ "gnn_topk": 0.35714285714285715,
+ "physics_topk": 0.14285714285714285,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step010.npz",
+ "sample_id": 0,
+ "n_cells": 598,
+ "n_positive": 17,
+ "gnn_topk": 0.5882352941176471,
+ "physics_topk": 0.23529411764705882,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step011.npz",
+ "sample_id": 0,
+ "n_cells": 739,
+ "n_positive": 22,
+ "gnn_topk": 0.6363636363636364,
+ "physics_topk": 0.22727272727272727,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step012.npz",
+ "sample_id": 0,
+ "n_cells": 874,
+ "n_positive": 26,
+ "gnn_topk": 0.5384615384615384,
+ "physics_topk": 0.15384615384615385,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step013.npz",
+ "sample_id": 0,
+ "n_cells": 1044,
+ "n_positive": 31,
+ "gnn_topk": 0.3225806451612903,
+ "physics_topk": 0.06451612903225806,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step014.npz",
+ "sample_id": 0,
+ "n_cells": 1271,
+ "n_positive": 38,
+ "gnn_topk": 0.47368421052631576,
+ "physics_topk": 0.15789473684210525,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step015.npz",
+ "sample_id": 0,
+ "n_cells": 1556,
+ "n_positive": 46,
+ "gnn_topk": 0.41304347826086957,
+ "physics_topk": 0.1956521739130435,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step016.npz",
+ "sample_id": 0,
+ "n_cells": 1867,
+ "n_positive": 56,
+ "gnn_topk": 0.39285714285714285,
+ "physics_topk": 0.26785714285714285,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step017.npz",
+ "sample_id": 0,
+ "n_cells": 2227,
+ "n_positive": 66,
+ "gnn_topk": 0.45454545454545453,
+ "physics_topk": 0.13636363636363635,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step018.npz",
+ "sample_id": 0,
+ "n_cells": 2717,
+ "n_positive": 81,
+ "gnn_topk": 0.4567901234567901,
+ "physics_topk": 0.19753086419753085,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0000_step019.npz",
+ "sample_id": 0,
+ "n_cells": 3263,
+ "n_positive": 97,
+ "gnn_topk": 0.4329896907216495,
+ "physics_topk": 0.2268041237113402,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step000.npz",
+ "sample_id": 4,
+ "n_cells": 112,
+ "n_positive": 3,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step001.npz",
+ "sample_id": 4,
+ "n_cells": 142,
+ "n_positive": 4,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0004_step002.npz",
+ "sample_id": 4,
+ "n_cells": 178,
+ "n_positive": 5,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.4,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0004_step003.npz",
+ "sample_id": 4,
+ "n_cells": 212,
+ "n_positive": 6,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step004.npz",
+ "sample_id": 4,
+ "n_cells": 248,
+ "n_positive": 7,
+ "gnn_topk": 0.14285714285714285,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step005.npz",
+ "sample_id": 4,
+ "n_cells": 313,
+ "n_positive": 9,
+ "gnn_topk": 0.4444444444444444,
+ "physics_topk": 0.2222222222222222,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step006.npz",
+ "sample_id": 4,
+ "n_cells": 391,
+ "n_positive": 11,
+ "gnn_topk": 0.7272727272727273,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step007.npz",
+ "sample_id": 4,
+ "n_cells": 468,
+ "n_positive": 14,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step008.npz",
+ "sample_id": 4,
+ "n_cells": 571,
+ "n_positive": 17,
+ "gnn_topk": 0.4117647058823529,
+ "physics_topk": 0.11764705882352941,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step009.npz",
+ "sample_id": 4,
+ "n_cells": 697,
+ "n_positive": 20,
+ "gnn_topk": 0.65,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step010.npz",
+ "sample_id": 4,
+ "n_cells": 841,
+ "n_positive": 25,
+ "gnn_topk": 0.36,
+ "physics_topk": 0.04,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step011.npz",
+ "sample_id": 4,
+ "n_cells": 1028,
+ "n_positive": 30,
+ "gnn_topk": 0.43333333333333335,
+ "physics_topk": 0.13333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step012.npz",
+ "sample_id": 4,
+ "n_cells": 1256,
+ "n_positive": 37,
+ "gnn_topk": 0.5135135135135135,
+ "physics_topk": 0.16216216216216217,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step013.npz",
+ "sample_id": 4,
+ "n_cells": 1495,
+ "n_positive": 44,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.06818181818181818,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step014.npz",
+ "sample_id": 4,
+ "n_cells": 1814,
+ "n_positive": 54,
+ "gnn_topk": 0.46296296296296297,
+ "physics_topk": 0.12962962962962962,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step015.npz",
+ "sample_id": 4,
+ "n_cells": 2184,
+ "n_positive": 65,
+ "gnn_topk": 0.49230769230769234,
+ "physics_topk": 0.06153846153846154,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step016.npz",
+ "sample_id": 4,
+ "n_cells": 2610,
+ "n_positive": 78,
+ "gnn_topk": 0.44871794871794873,
+ "physics_topk": 0.05128205128205128,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step017.npz",
+ "sample_id": 4,
+ "n_cells": 3196,
+ "n_positive": 95,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.07368421052631578,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step018.npz",
+ "sample_id": 4,
+ "n_cells": 3874,
+ "n_positive": 116,
+ "gnn_topk": 0.4827586206896552,
+ "physics_topk": 0.16379310344827586,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0004_step019.npz",
+ "sample_id": 4,
+ "n_cells": 4628,
+ "n_positive": 138,
+ "gnn_topk": 0.5434782608695652,
+ "physics_topk": 0.13043478260869565,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step000.npz",
+ "sample_id": 10,
+ "n_cells": 304,
+ "n_positive": 9,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.1111111111111111,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step001.npz",
+ "sample_id": 10,
+ "n_cells": 358,
+ "n_positive": 10,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.2,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step002.npz",
+ "sample_id": 10,
+ "n_cells": 430,
+ "n_positive": 12,
+ "gnn_topk": 0.5833333333333334,
+ "physics_topk": 0.4166666666666667,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step003.npz",
+ "sample_id": 10,
+ "n_cells": 522,
+ "n_positive": 15,
+ "gnn_topk": 0.26666666666666666,
+ "physics_topk": 0.13333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step004.npz",
+ "sample_id": 10,
+ "n_cells": 628,
+ "n_positive": 18,
+ "gnn_topk": 0.2222222222222222,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step005.npz",
+ "sample_id": 10,
+ "n_cells": 786,
+ "n_positive": 23,
+ "gnn_topk": 0.30434782608695654,
+ "physics_topk": 0.08695652173913043,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step006.npz",
+ "sample_id": 10,
+ "n_cells": 946,
+ "n_positive": 28,
+ "gnn_topk": 0.17857142857142858,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step007.npz",
+ "sample_id": 10,
+ "n_cells": 1196,
+ "n_positive": 35,
+ "gnn_topk": 0.2571428571428571,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step008.npz",
+ "sample_id": 10,
+ "n_cells": 1457,
+ "n_positive": 43,
+ "gnn_topk": 0.2558139534883721,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step009.npz",
+ "sample_id": 10,
+ "n_cells": 1757,
+ "n_positive": 52,
+ "gnn_topk": 0.15384615384615385,
+ "physics_topk": 0.057692307692307696,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step010.npz",
+ "sample_id": 10,
+ "n_cells": 2154,
+ "n_positive": 64,
+ "gnn_topk": 0.21875,
+ "physics_topk": 0.09375,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step011.npz",
+ "sample_id": 10,
+ "n_cells": 2626,
+ "n_positive": 78,
+ "gnn_topk": 0.1282051282051282,
+ "physics_topk": 0.02564102564102564,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step012.npz",
+ "sample_id": 10,
+ "n_cells": 3185,
+ "n_positive": 95,
+ "gnn_topk": 0.2631578947368421,
+ "physics_topk": 0.09473684210526316,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step013.npz",
+ "sample_id": 10,
+ "n_cells": 3818,
+ "n_positive": 114,
+ "gnn_topk": 0.23684210526315788,
+ "physics_topk": 0.07894736842105263,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step014.npz",
+ "sample_id": 10,
+ "n_cells": 4598,
+ "n_positive": 137,
+ "gnn_topk": 0.15328467153284672,
+ "physics_topk": 0.13138686131386862,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step015.npz",
+ "sample_id": 10,
+ "n_cells": 5567,
+ "n_positive": 167,
+ "gnn_topk": 0.18562874251497005,
+ "physics_topk": 0.059880239520958084,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step016.npz",
+ "sample_id": 10,
+ "n_cells": 6728,
+ "n_positive": 201,
+ "gnn_topk": 0.16417910447761194,
+ "physics_topk": 0.11940298507462686,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step017.npz",
+ "sample_id": 10,
+ "n_cells": 8159,
+ "n_positive": 244,
+ "gnn_topk": 0.2459016393442623,
+ "physics_topk": 0.10655737704918032,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step018.npz",
+ "sample_id": 10,
+ "n_cells": 9804,
+ "n_positive": 294,
+ "gnn_topk": 0.22789115646258504,
+ "physics_topk": 0.08843537414965986,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0010_step019.npz",
+ "sample_id": 10,
+ "n_cells": 11840,
+ "n_positive": 355,
+ "gnn_topk": 0.2112676056338028,
+ "physics_topk": 0.07605633802816901,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step000.npz",
+ "sample_id": 12,
+ "n_cells": 66,
+ "n_positive": 1,
+ "gnn_topk": 0.0,
+ "physics_topk": 1.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0012_step001.npz",
+ "sample_id": 12,
+ "n_cells": 76,
+ "n_positive": 2,
+ "gnn_topk": 0.5,
+ "physics_topk": 1.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0012_step002.npz",
+ "sample_id": 12,
+ "n_cells": 88,
+ "n_positive": 2,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0012_step003.npz",
+ "sample_id": 12,
+ "n_cells": 108,
+ "n_positive": 3,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0012_step004.npz",
+ "sample_id": 12,
+ "n_cells": 137,
+ "n_positive": 4,
+ "gnn_topk": 0.75,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step005.npz",
+ "sample_id": 12,
+ "n_cells": 165,
+ "n_positive": 4,
+ "gnn_topk": 0.25,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step006.npz",
+ "sample_id": 12,
+ "n_cells": 198,
+ "n_positive": 5,
+ "gnn_topk": 0.8,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step007.npz",
+ "sample_id": 12,
+ "n_cells": 228,
+ "n_positive": 6,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step008.npz",
+ "sample_id": 12,
+ "n_cells": 280,
+ "n_positive": 8,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.25,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step009.npz",
+ "sample_id": 12,
+ "n_cells": 339,
+ "n_positive": 10,
+ "gnn_topk": 0.6,
+ "physics_topk": 0.1,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step010.npz",
+ "sample_id": 12,
+ "n_cells": 403,
+ "n_positive": 12,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.4166666666666667,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0012_step011.npz",
+ "sample_id": 12,
+ "n_cells": 488,
+ "n_positive": 14,
+ "gnn_topk": 0.5714285714285714,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step012.npz",
+ "sample_id": 12,
+ "n_cells": 577,
+ "n_positive": 17,
+ "gnn_topk": 0.5294117647058824,
+ "physics_topk": 0.23529411764705882,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step013.npz",
+ "sample_id": 12,
+ "n_cells": 693,
+ "n_positive": 20,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.1,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step014.npz",
+ "sample_id": 12,
+ "n_cells": 846,
+ "n_positive": 25,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.12,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step015.npz",
+ "sample_id": 12,
+ "n_cells": 1031,
+ "n_positive": 30,
+ "gnn_topk": 0.36666666666666664,
+ "physics_topk": 0.13333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step016.npz",
+ "sample_id": 12,
+ "n_cells": 1215,
+ "n_positive": 36,
+ "gnn_topk": 0.5833333333333334,
+ "physics_topk": 0.2777777777777778,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step017.npz",
+ "sample_id": 12,
+ "n_cells": 1465,
+ "n_positive": 43,
+ "gnn_topk": 0.4186046511627907,
+ "physics_topk": 0.20930232558139536,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step018.npz",
+ "sample_id": 12,
+ "n_cells": 1767,
+ "n_positive": 53,
+ "gnn_topk": 0.5094339622641509,
+ "physics_topk": 0.39622641509433965,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0012_step019.npz",
+ "sample_id": 12,
+ "n_cells": 2088,
+ "n_positive": 62,
+ "gnn_topk": 0.45161290322580644,
+ "physics_topk": 0.16129032258064516,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step000.npz",
+ "sample_id": 18,
+ "n_cells": 34,
+ "n_positive": 1,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0018_step001.npz",
+ "sample_id": 18,
+ "n_cells": 43,
+ "n_positive": 1,
+ "gnn_topk": 0.0,
+ "physics_topk": 1.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0018_step002.npz",
+ "sample_id": 18,
+ "n_cells": 49,
+ "n_positive": 1,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0018_step003.npz",
+ "sample_id": 18,
+ "n_cells": 61,
+ "n_positive": 1,
+ "gnn_topk": 0.0,
+ "physics_topk": 1.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0018_step004.npz",
+ "sample_id": 18,
+ "n_cells": 67,
+ "n_positive": 2,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.5,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0018_step005.npz",
+ "sample_id": 18,
+ "n_cells": 83,
+ "n_positive": 2,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.5,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0018_step006.npz",
+ "sample_id": 18,
+ "n_cells": 97,
+ "n_positive": 2,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step007.npz",
+ "sample_id": 18,
+ "n_cells": 117,
+ "n_positive": 3,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0018_step008.npz",
+ "sample_id": 18,
+ "n_cells": 153,
+ "n_positive": 4,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step009.npz",
+ "sample_id": 18,
+ "n_cells": 186,
+ "n_positive": 5,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step010.npz",
+ "sample_id": 18,
+ "n_cells": 218,
+ "n_positive": 6,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step011.npz",
+ "sample_id": 18,
+ "n_cells": 264,
+ "n_positive": 7,
+ "gnn_topk": 0.14285714285714285,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step012.npz",
+ "sample_id": 18,
+ "n_cells": 323,
+ "n_positive": 9,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step013.npz",
+ "sample_id": 18,
+ "n_cells": 382,
+ "n_positive": 11,
+ "gnn_topk": 0.2727272727272727,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step014.npz",
+ "sample_id": 18,
+ "n_cells": 481,
+ "n_positive": 14,
+ "gnn_topk": 0.07142857142857142,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step015.npz",
+ "sample_id": 18,
+ "n_cells": 575,
+ "n_positive": 17,
+ "gnn_topk": 0.47058823529411764,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step016.npz",
+ "sample_id": 18,
+ "n_cells": 680,
+ "n_positive": 20,
+ "gnn_topk": 0.3,
+ "physics_topk": 0.05,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step017.npz",
+ "sample_id": 18,
+ "n_cells": 849,
+ "n_positive": 25,
+ "gnn_topk": 0.08,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step018.npz",
+ "sample_id": 18,
+ "n_cells": 1017,
+ "n_positive": 30,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0018_step019.npz",
+ "sample_id": 18,
+ "n_cells": 1228,
+ "n_positive": 36,
+ "gnn_topk": 0.25,
+ "physics_topk": 0.1111111111111111,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step000.npz",
+ "sample_id": 22,
+ "n_cells": 41,
+ "n_positive": 1,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0022_step001.npz",
+ "sample_id": 22,
+ "n_cells": 46,
+ "n_positive": 1,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0022_step002.npz",
+ "sample_id": 22,
+ "n_cells": 58,
+ "n_positive": 1,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0022_step003.npz",
+ "sample_id": 22,
+ "n_cells": 72,
+ "n_positive": 2,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step004.npz",
+ "sample_id": 22,
+ "n_cells": 88,
+ "n_positive": 2,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0022_step005.npz",
+ "sample_id": 22,
+ "n_cells": 104,
+ "n_positive": 3,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0022_step006.npz",
+ "sample_id": 22,
+ "n_cells": 124,
+ "n_positive": 3,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step007.npz",
+ "sample_id": 22,
+ "n_cells": 150,
+ "n_positive": 4,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.25,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step008.npz",
+ "sample_id": 22,
+ "n_cells": 180,
+ "n_positive": 5,
+ "gnn_topk": 0.6,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step009.npz",
+ "sample_id": 22,
+ "n_cells": 217,
+ "n_positive": 6,
+ "gnn_topk": 0.16666666666666666,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step010.npz",
+ "sample_id": 22,
+ "n_cells": 275,
+ "n_positive": 8,
+ "gnn_topk": 0.25,
+ "physics_topk": 0.125,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step011.npz",
+ "sample_id": 22,
+ "n_cells": 326,
+ "n_positive": 9,
+ "gnn_topk": 0.5555555555555556,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step012.npz",
+ "sample_id": 22,
+ "n_cells": 386,
+ "n_positive": 11,
+ "gnn_topk": 0.2727272727272727,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step013.npz",
+ "sample_id": 22,
+ "n_cells": 466,
+ "n_positive": 13,
+ "gnn_topk": 0.23076923076923078,
+ "physics_topk": 0.07692307692307693,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step014.npz",
+ "sample_id": 22,
+ "n_cells": 562,
+ "n_positive": 16,
+ "gnn_topk": 0.1875,
+ "physics_topk": 0.0625,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step015.npz",
+ "sample_id": 22,
+ "n_cells": 688,
+ "n_positive": 20,
+ "gnn_topk": 0.2,
+ "physics_topk": 0.1,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step016.npz",
+ "sample_id": 22,
+ "n_cells": 826,
+ "n_positive": 24,
+ "gnn_topk": 0.16666666666666666,
+ "physics_topk": 0.08333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step017.npz",
+ "sample_id": 22,
+ "n_cells": 1002,
+ "n_positive": 30,
+ "gnn_topk": 0.36666666666666664,
+ "physics_topk": 0.1,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step018.npz",
+ "sample_id": 22,
+ "n_cells": 1224,
+ "n_positive": 36,
+ "gnn_topk": 0.25,
+ "physics_topk": 0.08333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0022_step019.npz",
+ "sample_id": 22,
+ "n_cells": 1498,
+ "n_positive": 44,
+ "gnn_topk": 0.22727272727272727,
+ "physics_topk": 0.06818181818181818,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step000.npz",
+ "sample_id": 30,
+ "n_cells": 251,
+ "n_positive": 7,
+ "gnn_topk": 0.2857142857142857,
+ "physics_topk": 0.2857142857142857,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0030_step001.npz",
+ "sample_id": 30,
+ "n_cells": 303,
+ "n_positive": 9,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0030_step002.npz",
+ "sample_id": 30,
+ "n_cells": 371,
+ "n_positive": 11,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.18181818181818182,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0030_step003.npz",
+ "sample_id": 30,
+ "n_cells": 464,
+ "n_positive": 13,
+ "gnn_topk": 0.23076923076923078,
+ "physics_topk": 0.07692307692307693,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step004.npz",
+ "sample_id": 30,
+ "n_cells": 560,
+ "n_positive": 16,
+ "gnn_topk": 0.125,
+ "physics_topk": 0.0625,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step005.npz",
+ "sample_id": 30,
+ "n_cells": 662,
+ "n_positive": 19,
+ "gnn_topk": 0.05263157894736842,
+ "physics_topk": 0.10526315789473684,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0030_step006.npz",
+ "sample_id": 30,
+ "n_cells": 806,
+ "n_positive": 24,
+ "gnn_topk": 0.2916666666666667,
+ "physics_topk": 0.041666666666666664,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step007.npz",
+ "sample_id": 30,
+ "n_cells": 989,
+ "n_positive": 29,
+ "gnn_topk": 0.2413793103448276,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step008.npz",
+ "sample_id": 30,
+ "n_cells": 1222,
+ "n_positive": 36,
+ "gnn_topk": 0.2222222222222222,
+ "physics_topk": 0.05555555555555555,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step009.npz",
+ "sample_id": 30,
+ "n_cells": 1489,
+ "n_positive": 44,
+ "gnn_topk": 0.20454545454545456,
+ "physics_topk": 0.09090909090909091,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step010.npz",
+ "sample_id": 30,
+ "n_cells": 1802,
+ "n_positive": 54,
+ "gnn_topk": 0.12962962962962962,
+ "physics_topk": 0.07407407407407407,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step011.npz",
+ "sample_id": 30,
+ "n_cells": 2216,
+ "n_positive": 66,
+ "gnn_topk": 0.21212121212121213,
+ "physics_topk": 0.10606060606060606,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step012.npz",
+ "sample_id": 30,
+ "n_cells": 2697,
+ "n_positive": 80,
+ "gnn_topk": 0.2875,
+ "physics_topk": 0.0875,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step013.npz",
+ "sample_id": 30,
+ "n_cells": 3269,
+ "n_positive": 98,
+ "gnn_topk": 0.15306122448979592,
+ "physics_topk": 0.15306122448979592,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0030_step014.npz",
+ "sample_id": 30,
+ "n_cells": 3950,
+ "n_positive": 118,
+ "gnn_topk": 0.211864406779661,
+ "physics_topk": 0.1864406779661017,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step015.npz",
+ "sample_id": 30,
+ "n_cells": 4806,
+ "n_positive": 144,
+ "gnn_topk": 0.2361111111111111,
+ "physics_topk": 0.11805555555555555,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step016.npz",
+ "sample_id": 30,
+ "n_cells": 5847,
+ "n_positive": 175,
+ "gnn_topk": 0.26857142857142857,
+ "physics_topk": 0.10285714285714286,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step017.npz",
+ "sample_id": 30,
+ "n_cells": 7105,
+ "n_positive": 213,
+ "gnn_topk": 0.15023474178403756,
+ "physics_topk": 0.13615023474178403,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step018.npz",
+ "sample_id": 30,
+ "n_cells": 8595,
+ "n_positive": 257,
+ "gnn_topk": 0.29961089494163423,
+ "physics_topk": 0.1517509727626459,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0030_step019.npz",
+ "sample_id": 30,
+ "n_cells": 10365,
+ "n_positive": 310,
+ "gnn_topk": 0.26129032258064516,
+ "physics_topk": 0.13548387096774195,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step000.npz",
+ "sample_id": 31,
+ "n_cells": 62,
+ "n_positive": 1,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0031_step001.npz",
+ "sample_id": 31,
+ "n_cells": 80,
+ "n_positive": 2,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step002.npz",
+ "sample_id": 31,
+ "n_cells": 94,
+ "n_positive": 2,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0031_step003.npz",
+ "sample_id": 31,
+ "n_cells": 126,
+ "n_positive": 3,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step004.npz",
+ "sample_id": 31,
+ "n_cells": 154,
+ "n_positive": 4,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step005.npz",
+ "sample_id": 31,
+ "n_cells": 183,
+ "n_positive": 5,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0031_step006.npz",
+ "sample_id": 31,
+ "n_cells": 221,
+ "n_positive": 6,
+ "gnn_topk": 0.16666666666666666,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step007.npz",
+ "sample_id": 31,
+ "n_cells": 258,
+ "n_positive": 7,
+ "gnn_topk": 0.14285714285714285,
+ "physics_topk": 0.14285714285714285,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0031_step008.npz",
+ "sample_id": 31,
+ "n_cells": 307,
+ "n_positive": 9,
+ "gnn_topk": 0.2222222222222222,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step009.npz",
+ "sample_id": 31,
+ "n_cells": 370,
+ "n_positive": 11,
+ "gnn_topk": 0.36363636363636365,
+ "physics_topk": 0.09090909090909091,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step010.npz",
+ "sample_id": 31,
+ "n_cells": 470,
+ "n_positive": 14,
+ "gnn_topk": 0.07142857142857142,
+ "physics_topk": 0.14285714285714285,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0031_step011.npz",
+ "sample_id": 31,
+ "n_cells": 577,
+ "n_positive": 17,
+ "gnn_topk": 0.29411764705882354,
+ "physics_topk": 0.058823529411764705,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step012.npz",
+ "sample_id": 31,
+ "n_cells": 694,
+ "n_positive": 20,
+ "gnn_topk": 0.2,
+ "physics_topk": 0.05,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step013.npz",
+ "sample_id": 31,
+ "n_cells": 859,
+ "n_positive": 25,
+ "gnn_topk": 0.36,
+ "physics_topk": 0.04,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step014.npz",
+ "sample_id": 31,
+ "n_cells": 1050,
+ "n_positive": 31,
+ "gnn_topk": 0.3548387096774194,
+ "physics_topk": 0.16129032258064516,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step015.npz",
+ "sample_id": 31,
+ "n_cells": 1273,
+ "n_positive": 38,
+ "gnn_topk": 0.2894736842105263,
+ "physics_topk": 0.15789473684210525,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step016.npz",
+ "sample_id": 31,
+ "n_cells": 1536,
+ "n_positive": 46,
+ "gnn_topk": 0.30434782608695654,
+ "physics_topk": 0.021739130434782608,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step017.npz",
+ "sample_id": 31,
+ "n_cells": 1867,
+ "n_positive": 56,
+ "gnn_topk": 0.35714285714285715,
+ "physics_topk": 0.2857142857142857,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step018.npz",
+ "sample_id": 31,
+ "n_cells": 2240,
+ "n_positive": 67,
+ "gnn_topk": 0.31343283582089554,
+ "physics_topk": 0.04477611940298507,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0031_step019.npz",
+ "sample_id": 31,
+ "n_cells": 2713,
+ "n_positive": 81,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.1111111111111111,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step000.npz",
+ "sample_id": 33,
+ "n_cells": 190,
+ "n_positive": 5,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.4,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0033_step001.npz",
+ "sample_id": 33,
+ "n_cells": 216,
+ "n_positive": 6,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step002.npz",
+ "sample_id": 33,
+ "n_cells": 273,
+ "n_positive": 8,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.125,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step003.npz",
+ "sample_id": 33,
+ "n_cells": 335,
+ "n_positive": 10,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step004.npz",
+ "sample_id": 33,
+ "n_cells": 404,
+ "n_positive": 12,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.25,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step005.npz",
+ "sample_id": 33,
+ "n_cells": 486,
+ "n_positive": 14,
+ "gnn_topk": 0.21428571428571427,
+ "physics_topk": 0.21428571428571427,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0033_step006.npz",
+ "sample_id": 33,
+ "n_cells": 582,
+ "n_positive": 17,
+ "gnn_topk": 0.29411764705882354,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step007.npz",
+ "sample_id": 33,
+ "n_cells": 707,
+ "n_positive": 21,
+ "gnn_topk": 0.2857142857142857,
+ "physics_topk": 0.09523809523809523,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step008.npz",
+ "sample_id": 33,
+ "n_cells": 859,
+ "n_positive": 25,
+ "gnn_topk": 0.52,
+ "physics_topk": 0.04,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step009.npz",
+ "sample_id": 33,
+ "n_cells": 1022,
+ "n_positive": 30,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.06666666666666667,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step010.npz",
+ "sample_id": 33,
+ "n_cells": 1234,
+ "n_positive": 37,
+ "gnn_topk": 0.35135135135135137,
+ "physics_topk": 0.02702702702702703,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step011.npz",
+ "sample_id": 33,
+ "n_cells": 1485,
+ "n_positive": 44,
+ "gnn_topk": 0.4090909090909091,
+ "physics_topk": 0.045454545454545456,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step012.npz",
+ "sample_id": 33,
+ "n_cells": 1776,
+ "n_positive": 53,
+ "gnn_topk": 0.37735849056603776,
+ "physics_topk": 0.03773584905660377,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step013.npz",
+ "sample_id": 33,
+ "n_cells": 2193,
+ "n_positive": 65,
+ "gnn_topk": 0.36923076923076925,
+ "physics_topk": 0.13846153846153847,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step014.npz",
+ "sample_id": 33,
+ "n_cells": 2622,
+ "n_positive": 78,
+ "gnn_topk": 0.34615384615384615,
+ "physics_topk": 0.07692307692307693,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step015.npz",
+ "sample_id": 33,
+ "n_cells": 3185,
+ "n_positive": 95,
+ "gnn_topk": 0.3894736842105263,
+ "physics_topk": 0.07368421052631578,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step016.npz",
+ "sample_id": 33,
+ "n_cells": 3816,
+ "n_positive": 114,
+ "gnn_topk": 0.32456140350877194,
+ "physics_topk": 0.07894736842105263,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step017.npz",
+ "sample_id": 33,
+ "n_cells": 4581,
+ "n_positive": 137,
+ "gnn_topk": 0.43795620437956206,
+ "physics_topk": 0.021897810218978103,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step018.npz",
+ "sample_id": 33,
+ "n_cells": 5504,
+ "n_positive": 165,
+ "gnn_topk": 0.3393939393939394,
+ "physics_topk": 0.15757575757575756,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0033_step019.npz",
+ "sample_id": 33,
+ "n_cells": 6594,
+ "n_positive": 197,
+ "gnn_topk": 0.3299492385786802,
+ "physics_topk": 0.12690355329949238,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step000.npz",
+ "sample_id": 39,
+ "n_cells": 90,
+ "n_positive": 2,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.5,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0039_step001.npz",
+ "sample_id": 39,
+ "n_cells": 112,
+ "n_positive": 3,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0039_step002.npz",
+ "sample_id": 39,
+ "n_cells": 144,
+ "n_positive": 4,
+ "gnn_topk": 0.75,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step003.npz",
+ "sample_id": 39,
+ "n_cells": 168,
+ "n_positive": 5,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.2,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step004.npz",
+ "sample_id": 39,
+ "n_cells": 214,
+ "n_positive": 6,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step005.npz",
+ "sample_id": 39,
+ "n_cells": 253,
+ "n_positive": 7,
+ "gnn_topk": 0.14285714285714285,
+ "physics_topk": 0.14285714285714285,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0039_step006.npz",
+ "sample_id": 39,
+ "n_cells": 314,
+ "n_positive": 9,
+ "gnn_topk": 0.4444444444444444,
+ "physics_topk": 0.1111111111111111,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step007.npz",
+ "sample_id": 39,
+ "n_cells": 378,
+ "n_positive": 11,
+ "gnn_topk": 0.45454545454545453,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step008.npz",
+ "sample_id": 39,
+ "n_cells": 464,
+ "n_positive": 13,
+ "gnn_topk": 0.46153846153846156,
+ "physics_topk": 0.07692307692307693,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step009.npz",
+ "sample_id": 39,
+ "n_cells": 561,
+ "n_positive": 16,
+ "gnn_topk": 0.375,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step010.npz",
+ "sample_id": 39,
+ "n_cells": 669,
+ "n_positive": 20,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step011.npz",
+ "sample_id": 39,
+ "n_cells": 804,
+ "n_positive": 24,
+ "gnn_topk": 0.20833333333333334,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step012.npz",
+ "sample_id": 39,
+ "n_cells": 996,
+ "n_positive": 29,
+ "gnn_topk": 0.3103448275862069,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step013.npz",
+ "sample_id": 39,
+ "n_cells": 1208,
+ "n_positive": 36,
+ "gnn_topk": 0.2777777777777778,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step014.npz",
+ "sample_id": 39,
+ "n_cells": 1487,
+ "n_positive": 44,
+ "gnn_topk": 0.3181818181818182,
+ "physics_topk": 0.045454545454545456,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step015.npz",
+ "sample_id": 39,
+ "n_cells": 1770,
+ "n_positive": 53,
+ "gnn_topk": 0.3018867924528302,
+ "physics_topk": 0.09433962264150944,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step016.npz",
+ "sample_id": 39,
+ "n_cells": 2150,
+ "n_positive": 64,
+ "gnn_topk": 0.34375,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step017.npz",
+ "sample_id": 39,
+ "n_cells": 2603,
+ "n_positive": 78,
+ "gnn_topk": 0.24358974358974358,
+ "physics_topk": 0.11538461538461539,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step018.npz",
+ "sample_id": 39,
+ "n_cells": 3126,
+ "n_positive": 93,
+ "gnn_topk": 0.22580645161290322,
+ "physics_topk": 0.021505376344086023,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0039_step019.npz",
+ "sample_id": 39,
+ "n_cells": 3761,
+ "n_positive": 112,
+ "gnn_topk": 0.23214285714285715,
+ "physics_topk": 0.017857142857142856,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step000.npz",
+ "sample_id": 44,
+ "n_cells": 155,
+ "n_positive": 4,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.25,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step001.npz",
+ "sample_id": 44,
+ "n_cells": 195,
+ "n_positive": 5,
+ "gnn_topk": 0.6,
+ "physics_topk": 0.2,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step002.npz",
+ "sample_id": 44,
+ "n_cells": 243,
+ "n_positive": 7,
+ "gnn_topk": 0.42857142857142855,
+ "physics_topk": 0.2857142857142857,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step003.npz",
+ "sample_id": 44,
+ "n_cells": 297,
+ "n_positive": 8,
+ "gnn_topk": 0.375,
+ "physics_topk": 0.25,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step004.npz",
+ "sample_id": 44,
+ "n_cells": 362,
+ "n_positive": 10,
+ "gnn_topk": 0.3,
+ "physics_topk": 0.2,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step005.npz",
+ "sample_id": 44,
+ "n_cells": 429,
+ "n_positive": 12,
+ "gnn_topk": 0.5833333333333334,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step006.npz",
+ "sample_id": 44,
+ "n_cells": 514,
+ "n_positive": 15,
+ "gnn_topk": 0.5333333333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step007.npz",
+ "sample_id": 44,
+ "n_cells": 633,
+ "n_positive": 18,
+ "gnn_topk": 0.4444444444444444,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step008.npz",
+ "sample_id": 44,
+ "n_cells": 769,
+ "n_positive": 23,
+ "gnn_topk": 0.43478260869565216,
+ "physics_topk": 0.08695652173913043,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step009.npz",
+ "sample_id": 44,
+ "n_cells": 948,
+ "n_positive": 28,
+ "gnn_topk": 0.42857142857142855,
+ "physics_topk": 0.14285714285714285,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step010.npz",
+ "sample_id": 44,
+ "n_cells": 1142,
+ "n_positive": 34,
+ "gnn_topk": 0.47058823529411764,
+ "physics_topk": 0.029411764705882353,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step011.npz",
+ "sample_id": 44,
+ "n_cells": 1394,
+ "n_positive": 41,
+ "gnn_topk": 0.5609756097560976,
+ "physics_topk": 0.12195121951219512,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step012.npz",
+ "sample_id": 44,
+ "n_cells": 1688,
+ "n_positive": 50,
+ "gnn_topk": 0.32,
+ "physics_topk": 0.22,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step013.npz",
+ "sample_id": 44,
+ "n_cells": 2053,
+ "n_positive": 61,
+ "gnn_topk": 0.47540983606557374,
+ "physics_topk": 0.13114754098360656,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step014.npz",
+ "sample_id": 44,
+ "n_cells": 2478,
+ "n_positive": 74,
+ "gnn_topk": 0.35135135135135137,
+ "physics_topk": 0.14864864864864866,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step015.npz",
+ "sample_id": 44,
+ "n_cells": 3037,
+ "n_positive": 91,
+ "gnn_topk": 0.46153846153846156,
+ "physics_topk": 0.10989010989010989,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step016.npz",
+ "sample_id": 44,
+ "n_cells": 3717,
+ "n_positive": 111,
+ "gnn_topk": 0.3963963963963964,
+ "physics_topk": 0.17117117117117117,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step017.npz",
+ "sample_id": 44,
+ "n_cells": 4487,
+ "n_positive": 134,
+ "gnn_topk": 0.5149253731343284,
+ "physics_topk": 0.13432835820895522,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step018.npz",
+ "sample_id": 44,
+ "n_cells": 5374,
+ "n_positive": 161,
+ "gnn_topk": 0.4720496894409938,
+ "physics_topk": 0.09316770186335403,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0044_step019.npz",
+ "sample_id": 44,
+ "n_cells": 6497,
+ "n_positive": 194,
+ "gnn_topk": 0.38144329896907214,
+ "physics_topk": 0.17525773195876287,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step000.npz",
+ "sample_id": 45,
+ "n_cells": 78,
+ "n_positive": 2,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0045_step001.npz",
+ "sample_id": 45,
+ "n_cells": 96,
+ "n_positive": 2,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.5,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0045_step002.npz",
+ "sample_id": 45,
+ "n_cells": 112,
+ "n_positive": 3,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step003.npz",
+ "sample_id": 45,
+ "n_cells": 137,
+ "n_positive": 4,
+ "gnn_topk": 0.25,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step004.npz",
+ "sample_id": 45,
+ "n_cells": 155,
+ "n_positive": 4,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step005.npz",
+ "sample_id": 45,
+ "n_cells": 182,
+ "n_positive": 5,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.2,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0045_step006.npz",
+ "sample_id": 45,
+ "n_cells": 228,
+ "n_positive": 6,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0045_step007.npz",
+ "sample_id": 45,
+ "n_cells": 283,
+ "n_positive": 8,
+ "gnn_topk": 0.375,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step008.npz",
+ "sample_id": 45,
+ "n_cells": 351,
+ "n_positive": 10,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step009.npz",
+ "sample_id": 45,
+ "n_cells": 430,
+ "n_positive": 12,
+ "gnn_topk": 0.16666666666666666,
+ "physics_topk": 0.08333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step010.npz",
+ "sample_id": 45,
+ "n_cells": 533,
+ "n_positive": 15,
+ "gnn_topk": 0.26666666666666666,
+ "physics_topk": 0.06666666666666667,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step011.npz",
+ "sample_id": 45,
+ "n_cells": 651,
+ "n_positive": 19,
+ "gnn_topk": 0.21052631578947367,
+ "physics_topk": 0.15789473684210525,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step012.npz",
+ "sample_id": 45,
+ "n_cells": 794,
+ "n_positive": 23,
+ "gnn_topk": 0.21739130434782608,
+ "physics_topk": 0.21739130434782608,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0045_step013.npz",
+ "sample_id": 45,
+ "n_cells": 958,
+ "n_positive": 28,
+ "gnn_topk": 0.2857142857142857,
+ "physics_topk": 0.17857142857142858,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step014.npz",
+ "sample_id": 45,
+ "n_cells": 1143,
+ "n_positive": 34,
+ "gnn_topk": 0.4117647058823529,
+ "physics_topk": 0.11764705882352941,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step015.npz",
+ "sample_id": 45,
+ "n_cells": 1374,
+ "n_positive": 41,
+ "gnn_topk": 0.24390243902439024,
+ "physics_topk": 0.0975609756097561,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step016.npz",
+ "sample_id": 45,
+ "n_cells": 1642,
+ "n_positive": 49,
+ "gnn_topk": 0.12244897959183673,
+ "physics_topk": 0.1836734693877551,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0045_step017.npz",
+ "sample_id": 45,
+ "n_cells": 1995,
+ "n_positive": 59,
+ "gnn_topk": 0.3220338983050847,
+ "physics_topk": 0.15254237288135594,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step018.npz",
+ "sample_id": 45,
+ "n_cells": 2364,
+ "n_positive": 70,
+ "gnn_topk": 0.21428571428571427,
+ "physics_topk": 0.17142857142857143,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0045_step019.npz",
+ "sample_id": 45,
+ "n_cells": 2858,
+ "n_positive": 85,
+ "gnn_topk": 0.29411764705882354,
+ "physics_topk": 0.2235294117647059,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step000.npz",
+ "sample_id": 53,
+ "n_cells": 164,
+ "n_positive": 4,
+ "gnn_topk": 0.25,
+ "physics_topk": 0.5,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0053_step001.npz",
+ "sample_id": 53,
+ "n_cells": 188,
+ "n_positive": 5,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.2,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step002.npz",
+ "sample_id": 53,
+ "n_cells": 248,
+ "n_positive": 7,
+ "gnn_topk": 0.5714285714285714,
+ "physics_topk": 0.2857142857142857,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step003.npz",
+ "sample_id": 53,
+ "n_cells": 304,
+ "n_positive": 9,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step004.npz",
+ "sample_id": 53,
+ "n_cells": 359,
+ "n_positive": 10,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step005.npz",
+ "sample_id": 53,
+ "n_cells": 425,
+ "n_positive": 12,
+ "gnn_topk": 0.16666666666666666,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step006.npz",
+ "sample_id": 53,
+ "n_cells": 511,
+ "n_positive": 15,
+ "gnn_topk": 0.4666666666666667,
+ "physics_topk": 0.06666666666666667,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step007.npz",
+ "sample_id": 53,
+ "n_cells": 609,
+ "n_positive": 18,
+ "gnn_topk": 0.3888888888888889,
+ "physics_topk": 0.1111111111111111,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step008.npz",
+ "sample_id": 53,
+ "n_cells": 750,
+ "n_positive": 22,
+ "gnn_topk": 0.2727272727272727,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step009.npz",
+ "sample_id": 53,
+ "n_cells": 911,
+ "n_positive": 27,
+ "gnn_topk": 0.37037037037037035,
+ "physics_topk": 0.037037037037037035,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step010.npz",
+ "sample_id": 53,
+ "n_cells": 1090,
+ "n_positive": 32,
+ "gnn_topk": 0.34375,
+ "physics_topk": 0.1875,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step011.npz",
+ "sample_id": 53,
+ "n_cells": 1316,
+ "n_positive": 39,
+ "gnn_topk": 0.4358974358974359,
+ "physics_topk": 0.10256410256410256,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step012.npz",
+ "sample_id": 53,
+ "n_cells": 1583,
+ "n_positive": 47,
+ "gnn_topk": 0.3829787234042553,
+ "physics_topk": 0.10638297872340426,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step013.npz",
+ "sample_id": 53,
+ "n_cells": 1936,
+ "n_positive": 58,
+ "gnn_topk": 0.43103448275862066,
+ "physics_topk": 0.22413793103448276,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step014.npz",
+ "sample_id": 53,
+ "n_cells": 2309,
+ "n_positive": 69,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.18840579710144928,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step015.npz",
+ "sample_id": 53,
+ "n_cells": 2787,
+ "n_positive": 83,
+ "gnn_topk": 0.40963855421686746,
+ "physics_topk": 0.024096385542168676,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step016.npz",
+ "sample_id": 53,
+ "n_cells": 3381,
+ "n_positive": 101,
+ "gnn_topk": 0.40594059405940597,
+ "physics_topk": 0.16831683168316833,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step017.npz",
+ "sample_id": 53,
+ "n_cells": 4089,
+ "n_positive": 122,
+ "gnn_topk": 0.4426229508196721,
+ "physics_topk": 0.10655737704918032,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step018.npz",
+ "sample_id": 53,
+ "n_cells": 4952,
+ "n_positive": 148,
+ "gnn_topk": 0.32432432432432434,
+ "physics_topk": 0.16891891891891891,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0053_step019.npz",
+ "sample_id": 53,
+ "n_cells": 5929,
+ "n_positive": 177,
+ "gnn_topk": 0.3559322033898305,
+ "physics_topk": 0.14689265536723164,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step000.npz",
+ "sample_id": 70,
+ "n_cells": 105,
+ "n_positive": 3,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.3333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step001.npz",
+ "sample_id": 70,
+ "n_cells": 141,
+ "n_positive": 4,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step002.npz",
+ "sample_id": 70,
+ "n_cells": 167,
+ "n_positive": 5,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step003.npz",
+ "sample_id": 70,
+ "n_cells": 225,
+ "n_positive": 6,
+ "gnn_topk": 0.16666666666666666,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step004.npz",
+ "sample_id": 70,
+ "n_cells": 280,
+ "n_positive": 8,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.125,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step005.npz",
+ "sample_id": 70,
+ "n_cells": 338,
+ "n_positive": 10,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.1,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step006.npz",
+ "sample_id": 70,
+ "n_cells": 407,
+ "n_positive": 12,
+ "gnn_topk": 0.4166666666666667,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step007.npz",
+ "sample_id": 70,
+ "n_cells": 511,
+ "n_positive": 15,
+ "gnn_topk": 0.5333333333333333,
+ "physics_topk": 0.3333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step008.npz",
+ "sample_id": 70,
+ "n_cells": 625,
+ "n_positive": 18,
+ "gnn_topk": 0.2777777777777778,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step009.npz",
+ "sample_id": 70,
+ "n_cells": 770,
+ "n_positive": 23,
+ "gnn_topk": 0.2608695652173913,
+ "physics_topk": 0.21739130434782608,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step010.npz",
+ "sample_id": 70,
+ "n_cells": 958,
+ "n_positive": 28,
+ "gnn_topk": 0.4642857142857143,
+ "physics_topk": 0.10714285714285714,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step011.npz",
+ "sample_id": 70,
+ "n_cells": 1137,
+ "n_positive": 34,
+ "gnn_topk": 0.47058823529411764,
+ "physics_topk": 0.23529411764705882,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step012.npz",
+ "sample_id": 70,
+ "n_cells": 1383,
+ "n_positive": 41,
+ "gnn_topk": 0.4634146341463415,
+ "physics_topk": 0.24390243902439024,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step013.npz",
+ "sample_id": 70,
+ "n_cells": 1654,
+ "n_positive": 49,
+ "gnn_topk": 0.46938775510204084,
+ "physics_topk": 0.14285714285714285,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step014.npz",
+ "sample_id": 70,
+ "n_cells": 2005,
+ "n_positive": 60,
+ "gnn_topk": 0.45,
+ "physics_topk": 0.18333333333333332,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step015.npz",
+ "sample_id": 70,
+ "n_cells": 2402,
+ "n_positive": 72,
+ "gnn_topk": 0.4305555555555556,
+ "physics_topk": 0.125,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step016.npz",
+ "sample_id": 70,
+ "n_cells": 2950,
+ "n_positive": 88,
+ "gnn_topk": 0.4772727272727273,
+ "physics_topk": 0.22727272727272727,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step017.npz",
+ "sample_id": 70,
+ "n_cells": 3560,
+ "n_positive": 106,
+ "gnn_topk": 0.5283018867924528,
+ "physics_topk": 0.2641509433962264,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step018.npz",
+ "sample_id": 70,
+ "n_cells": 4323,
+ "n_positive": 129,
+ "gnn_topk": 0.4186046511627907,
+ "physics_topk": 0.17829457364341086,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0070_step019.npz",
+ "sample_id": 70,
+ "n_cells": 5186,
+ "n_positive": 155,
+ "gnn_topk": 0.41935483870967744,
+ "physics_topk": 0.16774193548387098,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step000.npz",
+ "sample_id": 73,
+ "n_cells": 80,
+ "n_positive": 2,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0073_step001.npz",
+ "sample_id": 73,
+ "n_cells": 108,
+ "n_positive": 3,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step002.npz",
+ "sample_id": 73,
+ "n_cells": 133,
+ "n_positive": 3,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step003.npz",
+ "sample_id": 73,
+ "n_cells": 159,
+ "n_positive": 4,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step004.npz",
+ "sample_id": 73,
+ "n_cells": 198,
+ "n_positive": 5,
+ "gnn_topk": 0.6,
+ "physics_topk": 0.4,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step005.npz",
+ "sample_id": 73,
+ "n_cells": 229,
+ "n_positive": 6,
+ "gnn_topk": 0.16666666666666666,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step006.npz",
+ "sample_id": 73,
+ "n_cells": 281,
+ "n_positive": 8,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step007.npz",
+ "sample_id": 73,
+ "n_cells": 336,
+ "n_positive": 10,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.3,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step008.npz",
+ "sample_id": 73,
+ "n_cells": 410,
+ "n_positive": 12,
+ "gnn_topk": 0.5833333333333334,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step009.npz",
+ "sample_id": 73,
+ "n_cells": 496,
+ "n_positive": 14,
+ "gnn_topk": 0.2857142857142857,
+ "physics_topk": 0.2857142857142857,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0073_step010.npz",
+ "sample_id": 73,
+ "n_cells": 600,
+ "n_positive": 18,
+ "gnn_topk": 0.2222222222222222,
+ "physics_topk": 0.1111111111111111,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step011.npz",
+ "sample_id": 73,
+ "n_cells": 747,
+ "n_positive": 22,
+ "gnn_topk": 0.45454545454545453,
+ "physics_topk": 0.22727272727272727,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step012.npz",
+ "sample_id": 73,
+ "n_cells": 893,
+ "n_positive": 26,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.15384615384615385,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step013.npz",
+ "sample_id": 73,
+ "n_cells": 1065,
+ "n_positive": 31,
+ "gnn_topk": 0.2903225806451613,
+ "physics_topk": 0.06451612903225806,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step014.npz",
+ "sample_id": 73,
+ "n_cells": 1250,
+ "n_positive": 37,
+ "gnn_topk": 0.32432432432432434,
+ "physics_topk": 0.08108108108108109,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step015.npz",
+ "sample_id": 73,
+ "n_cells": 1498,
+ "n_positive": 44,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.29545454545454547,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step016.npz",
+ "sample_id": 73,
+ "n_cells": 1799,
+ "n_positive": 53,
+ "gnn_topk": 0.41509433962264153,
+ "physics_topk": 0.16981132075471697,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step017.npz",
+ "sample_id": 73,
+ "n_cells": 2162,
+ "n_positive": 64,
+ "gnn_topk": 0.390625,
+ "physics_topk": 0.234375,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step018.npz",
+ "sample_id": 73,
+ "n_cells": 2599,
+ "n_positive": 77,
+ "gnn_topk": 0.4155844155844156,
+ "physics_topk": 0.22077922077922077,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0073_step019.npz",
+ "sample_id": 73,
+ "n_cells": 3091,
+ "n_positive": 92,
+ "gnn_topk": 0.44565217391304346,
+ "physics_topk": 0.2391304347826087,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step000.npz",
+ "sample_id": 76,
+ "n_cells": 34,
+ "n_positive": 1,
+ "gnn_topk": 1.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step001.npz",
+ "sample_id": 76,
+ "n_cells": 43,
+ "n_positive": 1,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0076_step002.npz",
+ "sample_id": 76,
+ "n_cells": 53,
+ "n_positive": 1,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0076_step003.npz",
+ "sample_id": 76,
+ "n_cells": 65,
+ "n_positive": 1,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0076_step004.npz",
+ "sample_id": 76,
+ "n_cells": 71,
+ "n_positive": 2,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.5,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0076_step005.npz",
+ "sample_id": 76,
+ "n_cells": 89,
+ "n_positive": 2,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.5,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0076_step006.npz",
+ "sample_id": 76,
+ "n_cells": 101,
+ "n_positive": 3,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step007.npz",
+ "sample_id": 76,
+ "n_cells": 118,
+ "n_positive": 3,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step008.npz",
+ "sample_id": 76,
+ "n_cells": 140,
+ "n_positive": 4,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step009.npz",
+ "sample_id": 76,
+ "n_cells": 172,
+ "n_positive": 5,
+ "gnn_topk": 0.2,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step010.npz",
+ "sample_id": 76,
+ "n_cells": 206,
+ "n_positive": 6,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step011.npz",
+ "sample_id": 76,
+ "n_cells": 257,
+ "n_positive": 7,
+ "gnn_topk": 0.2857142857142857,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step012.npz",
+ "sample_id": 76,
+ "n_cells": 305,
+ "n_positive": 9,
+ "gnn_topk": 0.1111111111111111,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step013.npz",
+ "sample_id": 76,
+ "n_cells": 393,
+ "n_positive": 11,
+ "gnn_topk": 0.45454545454545453,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step014.npz",
+ "sample_id": 76,
+ "n_cells": 479,
+ "n_positive": 14,
+ "gnn_topk": 0.2857142857142857,
+ "physics_topk": 0.14285714285714285,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step015.npz",
+ "sample_id": 76,
+ "n_cells": 580,
+ "n_positive": 17,
+ "gnn_topk": 0.23529411764705882,
+ "physics_topk": 0.058823529411764705,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step016.npz",
+ "sample_id": 76,
+ "n_cells": 701,
+ "n_positive": 21,
+ "gnn_topk": 0.42857142857142855,
+ "physics_topk": 0.14285714285714285,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step017.npz",
+ "sample_id": 76,
+ "n_cells": 836,
+ "n_positive": 25,
+ "gnn_topk": 0.32,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step018.npz",
+ "sample_id": 76,
+ "n_cells": 1008,
+ "n_positive": 30,
+ "gnn_topk": 0.26666666666666666,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0076_step019.npz",
+ "sample_id": 76,
+ "n_cells": 1254,
+ "n_positive": 37,
+ "gnn_topk": 0.32432432432432434,
+ "physics_topk": 0.1891891891891892,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step000.npz",
+ "sample_id": 77,
+ "n_cells": 191,
+ "n_positive": 5,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step001.npz",
+ "sample_id": 77,
+ "n_cells": 227,
+ "n_positive": 6,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step002.npz",
+ "sample_id": 77,
+ "n_cells": 271,
+ "n_positive": 8,
+ "gnn_topk": 0.375,
+ "physics_topk": 0.125,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step003.npz",
+ "sample_id": 77,
+ "n_cells": 331,
+ "n_positive": 9,
+ "gnn_topk": 0.2222222222222222,
+ "physics_topk": 0.2222222222222222,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0077_step004.npz",
+ "sample_id": 77,
+ "n_cells": 411,
+ "n_positive": 12,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step005.npz",
+ "sample_id": 77,
+ "n_cells": 494,
+ "n_positive": 14,
+ "gnn_topk": 0.07142857142857142,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step006.npz",
+ "sample_id": 77,
+ "n_cells": 600,
+ "n_positive": 18,
+ "gnn_topk": 0.3888888888888889,
+ "physics_topk": 0.1111111111111111,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step007.npz",
+ "sample_id": 77,
+ "n_cells": 724,
+ "n_positive": 21,
+ "gnn_topk": 0.38095238095238093,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step008.npz",
+ "sample_id": 77,
+ "n_cells": 873,
+ "n_positive": 26,
+ "gnn_topk": 0.15384615384615385,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step009.npz",
+ "sample_id": 77,
+ "n_cells": 1085,
+ "n_positive": 32,
+ "gnn_topk": 0.34375,
+ "physics_topk": 0.03125,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step010.npz",
+ "sample_id": 77,
+ "n_cells": 1316,
+ "n_positive": 39,
+ "gnn_topk": 0.3076923076923077,
+ "physics_topk": 0.02564102564102564,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step011.npz",
+ "sample_id": 77,
+ "n_cells": 1601,
+ "n_positive": 48,
+ "gnn_topk": 0.2916666666666667,
+ "physics_topk": 0.08333333333333333,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step012.npz",
+ "sample_id": 77,
+ "n_cells": 1969,
+ "n_positive": 59,
+ "gnn_topk": 0.4067796610169492,
+ "physics_topk": 0.0847457627118644,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step013.npz",
+ "sample_id": 77,
+ "n_cells": 2361,
+ "n_positive": 70,
+ "gnn_topk": 0.35714285714285715,
+ "physics_topk": 0.07142857142857142,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step014.npz",
+ "sample_id": 77,
+ "n_cells": 2862,
+ "n_positive": 85,
+ "gnn_topk": 0.36470588235294116,
+ "physics_topk": 0.12941176470588237,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step015.npz",
+ "sample_id": 77,
+ "n_cells": 3497,
+ "n_positive": 104,
+ "gnn_topk": 0.38461538461538464,
+ "physics_topk": 0.07692307692307693,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step016.npz",
+ "sample_id": 77,
+ "n_cells": 4226,
+ "n_positive": 126,
+ "gnn_topk": 0.3412698412698413,
+ "physics_topk": 0.0873015873015873,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step017.npz",
+ "sample_id": 77,
+ "n_cells": 5101,
+ "n_positive": 153,
+ "gnn_topk": 0.29411764705882354,
+ "physics_topk": 0.11764705882352941,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step018.npz",
+ "sample_id": 77,
+ "n_cells": 6163,
+ "n_positive": 184,
+ "gnn_topk": 0.391304347826087,
+ "physics_topk": 0.11956521739130435,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0077_step019.npz",
+ "sample_id": 77,
+ "n_cells": 7444,
+ "n_positive": 223,
+ "gnn_topk": 0.35874439461883406,
+ "physics_topk": 0.09865470852017937,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step000.npz",
+ "sample_id": 80,
+ "n_cells": 34,
+ "n_positive": 1,
+ "gnn_topk": 1.0,
+ "physics_topk": 1.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0080_step001.npz",
+ "sample_id": 80,
+ "n_cells": 48,
+ "n_positive": 1,
+ "gnn_topk": 0.0,
+ "physics_topk": 1.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0080_step002.npz",
+ "sample_id": 80,
+ "n_cells": 62,
+ "n_positive": 1,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0080_step003.npz",
+ "sample_id": 80,
+ "n_cells": 76,
+ "n_positive": 2,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.5,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0080_step004.npz",
+ "sample_id": 80,
+ "n_cells": 92,
+ "n_positive": 2,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step005.npz",
+ "sample_id": 80,
+ "n_cells": 103,
+ "n_positive": 3,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step006.npz",
+ "sample_id": 80,
+ "n_cells": 130,
+ "n_positive": 3,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step007.npz",
+ "sample_id": 80,
+ "n_cells": 150,
+ "n_positive": 4,
+ "gnn_topk": 0.25,
+ "physics_topk": 0.25,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0080_step008.npz",
+ "sample_id": 80,
+ "n_cells": 179,
+ "n_positive": 5,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step009.npz",
+ "sample_id": 80,
+ "n_cells": 217,
+ "n_positive": 6,
+ "gnn_topk": 0.16666666666666666,
+ "physics_topk": 0.3333333333333333,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0080_step010.npz",
+ "sample_id": 80,
+ "n_cells": 247,
+ "n_positive": 7,
+ "gnn_topk": 0.2857142857142857,
+ "physics_topk": 0.2857142857142857,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0080_step011.npz",
+ "sample_id": 80,
+ "n_cells": 296,
+ "n_positive": 8,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.25,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step012.npz",
+ "sample_id": 80,
+ "n_cells": 345,
+ "n_positive": 10,
+ "gnn_topk": 0.1,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step013.npz",
+ "sample_id": 80,
+ "n_cells": 411,
+ "n_positive": 12,
+ "gnn_topk": 0.4166666666666667,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step014.npz",
+ "sample_id": 80,
+ "n_cells": 497,
+ "n_positive": 14,
+ "gnn_topk": 0.21428571428571427,
+ "physics_topk": 0.14285714285714285,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step015.npz",
+ "sample_id": 80,
+ "n_cells": 594,
+ "n_positive": 17,
+ "gnn_topk": 0.4117647058823529,
+ "physics_topk": 0.17647058823529413,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step016.npz",
+ "sample_id": 80,
+ "n_cells": 738,
+ "n_positive": 22,
+ "gnn_topk": 0.2727272727272727,
+ "physics_topk": 0.2727272727272727,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0080_step017.npz",
+ "sample_id": 80,
+ "n_cells": 894,
+ "n_positive": 26,
+ "gnn_topk": 0.15384615384615385,
+ "physics_topk": 0.19230769230769232,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0080_step018.npz",
+ "sample_id": 80,
+ "n_cells": 1079,
+ "n_positive": 32,
+ "gnn_topk": 0.46875,
+ "physics_topk": 0.09375,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0080_step019.npz",
+ "sample_id": 80,
+ "n_cells": 1289,
+ "n_positive": 38,
+ "gnn_topk": 0.2631578947368421,
+ "physics_topk": 0.2631578947368421,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0083_step000.npz",
+ "sample_id": 83,
+ "n_cells": 88,
+ "n_positive": 2,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step001.npz",
+ "sample_id": 83,
+ "n_cells": 100,
+ "n_positive": 3,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step002.npz",
+ "sample_id": 83,
+ "n_cells": 122,
+ "n_positive": 3,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0083_step003.npz",
+ "sample_id": 83,
+ "n_cells": 149,
+ "n_positive": 4,
+ "gnn_topk": 0.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0083_step004.npz",
+ "sample_id": 83,
+ "n_cells": 183,
+ "n_positive": 5,
+ "gnn_topk": 0.4,
+ "physics_topk": 0.4,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0083_step005.npz",
+ "sample_id": 83,
+ "n_cells": 213,
+ "n_positive": 6,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step006.npz",
+ "sample_id": 83,
+ "n_cells": 264,
+ "n_positive": 7,
+ "gnn_topk": 0.5714285714285714,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step007.npz",
+ "sample_id": 83,
+ "n_cells": 318,
+ "n_positive": 9,
+ "gnn_topk": 0.5555555555555556,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step008.npz",
+ "sample_id": 83,
+ "n_cells": 378,
+ "n_positive": 11,
+ "gnn_topk": 0.18181818181818182,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step009.npz",
+ "sample_id": 83,
+ "n_cells": 486,
+ "n_positive": 14,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.07142857142857142,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step010.npz",
+ "sample_id": 83,
+ "n_cells": 604,
+ "n_positive": 18,
+ "gnn_topk": 0.4444444444444444,
+ "physics_topk": 0.05555555555555555,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step011.npz",
+ "sample_id": 83,
+ "n_cells": 712,
+ "n_positive": 21,
+ "gnn_topk": 0.2857142857142857,
+ "physics_topk": 0.047619047619047616,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step012.npz",
+ "sample_id": 83,
+ "n_cells": 867,
+ "n_positive": 26,
+ "gnn_topk": 0.4230769230769231,
+ "physics_topk": 0.23076923076923078,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step013.npz",
+ "sample_id": 83,
+ "n_cells": 1043,
+ "n_positive": 31,
+ "gnn_topk": 0.45161290322580644,
+ "physics_topk": 0.06451612903225806,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step014.npz",
+ "sample_id": 83,
+ "n_cells": 1270,
+ "n_positive": 38,
+ "gnn_topk": 0.39473684210526316,
+ "physics_topk": 0.05263157894736842,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step015.npz",
+ "sample_id": 83,
+ "n_cells": 1517,
+ "n_positive": 45,
+ "gnn_topk": 0.2222222222222222,
+ "physics_topk": 0.08888888888888889,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step016.npz",
+ "sample_id": 83,
+ "n_cells": 1840,
+ "n_positive": 55,
+ "gnn_topk": 0.18181818181818182,
+ "physics_topk": 0.10909090909090909,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step017.npz",
+ "sample_id": 83,
+ "n_cells": 2252,
+ "n_positive": 67,
+ "gnn_topk": 0.44776119402985076,
+ "physics_topk": 0.1044776119402985,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step018.npz",
+ "sample_id": 83,
+ "n_cells": 2694,
+ "n_positive": 80,
+ "gnn_topk": 0.35,
+ "physics_topk": 0.1,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0083_step019.npz",
+ "sample_id": 83,
+ "n_cells": 3233,
+ "n_positive": 96,
+ "gnn_topk": 0.375,
+ "physics_topk": 0.10416666666666667,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step000.npz",
+ "sample_id": 90,
+ "n_cells": 164,
+ "n_positive": 4,
+ "gnn_topk": 0.75,
+ "physics_topk": 0.25,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step001.npz",
+ "sample_id": 90,
+ "n_cells": 198,
+ "n_positive": 5,
+ "gnn_topk": 0.6,
+ "physics_topk": 0.4,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step002.npz",
+ "sample_id": 90,
+ "n_cells": 230,
+ "n_positive": 6,
+ "gnn_topk": 1.0,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step003.npz",
+ "sample_id": 90,
+ "n_cells": 274,
+ "n_positive": 8,
+ "gnn_topk": 0.125,
+ "physics_topk": 0.25,
+ "gnn_beats_physics": false
+ },
+ {
+ "file": "sample0090_step004.npz",
+ "sample_id": 90,
+ "n_cells": 339,
+ "n_positive": 10,
+ "gnn_topk": 0.2,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step005.npz",
+ "sample_id": 90,
+ "n_cells": 431,
+ "n_positive": 12,
+ "gnn_topk": 0.6666666666666666,
+ "physics_topk": 0.0,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step006.npz",
+ "sample_id": 90,
+ "n_cells": 504,
+ "n_positive": 15,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.06666666666666667,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step007.npz",
+ "sample_id": 90,
+ "n_cells": 628,
+ "n_positive": 18,
+ "gnn_topk": 0.5,
+ "physics_topk": 0.1111111111111111,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step008.npz",
+ "sample_id": 90,
+ "n_cells": 754,
+ "n_positive": 22,
+ "gnn_topk": 0.45454545454545453,
+ "physics_topk": 0.045454545454545456,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step009.npz",
+ "sample_id": 90,
+ "n_cells": 924,
+ "n_positive": 27,
+ "gnn_topk": 0.4444444444444444,
+ "physics_topk": 0.037037037037037035,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step010.npz",
+ "sample_id": 90,
+ "n_cells": 1111,
+ "n_positive": 33,
+ "gnn_topk": 0.3939393939393939,
+ "physics_topk": 0.09090909090909091,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step011.npz",
+ "sample_id": 90,
+ "n_cells": 1370,
+ "n_positive": 41,
+ "gnn_topk": 0.4634146341463415,
+ "physics_topk": 0.0975609756097561,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step012.npz",
+ "sample_id": 90,
+ "n_cells": 1629,
+ "n_positive": 48,
+ "gnn_topk": 0.3333333333333333,
+ "physics_topk": 0.16666666666666666,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step013.npz",
+ "sample_id": 90,
+ "n_cells": 1979,
+ "n_positive": 59,
+ "gnn_topk": 0.4067796610169492,
+ "physics_topk": 0.11864406779661017,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step014.npz",
+ "sample_id": 90,
+ "n_cells": 2391,
+ "n_positive": 71,
+ "gnn_topk": 0.5070422535211268,
+ "physics_topk": 0.07042253521126761,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step015.npz",
+ "sample_id": 90,
+ "n_cells": 2842,
+ "n_positive": 85,
+ "gnn_topk": 0.3176470588235294,
+ "physics_topk": 0.03529411764705882,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step016.npz",
+ "sample_id": 90,
+ "n_cells": 3404,
+ "n_positive": 102,
+ "gnn_topk": 0.38235294117647056,
+ "physics_topk": 0.0784313725490196,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step017.npz",
+ "sample_id": 90,
+ "n_cells": 4091,
+ "n_positive": 122,
+ "gnn_topk": 0.3770491803278688,
+ "physics_topk": 0.1557377049180328,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step018.npz",
+ "sample_id": 90,
+ "n_cells": 4950,
+ "n_positive": 148,
+ "gnn_topk": 0.43243243243243246,
+ "physics_topk": 0.22972972972972974,
+ "gnn_beats_physics": true
+ },
+ {
+ "file": "sample0090_step019.npz",
+ "sample_id": 90,
+ "n_cells": 5889,
+ "n_positive": 176,
+ "gnn_topk": 0.4147727272727273,
+ "physics_topk": 0.07954545454545454,
+ "gnn_beats_physics": true
+ }
+ ]
+}
\ No newline at end of file
diff --git a/outlook/result/correction/vis/sample0000_step000_vis.png b/outlook/result/correction/vis/sample0000_step000_vis.png
new file mode 100644
index 0000000..ce2c3a8
Binary files /dev/null and b/outlook/result/correction/vis/sample0000_step000_vis.png differ
diff --git a/outlook/result/correction/vis/sample0000_step001_vis.png b/outlook/result/correction/vis/sample0000_step001_vis.png
new file mode 100644
index 0000000..15c573e
Binary files /dev/null and b/outlook/result/correction/vis/sample0000_step001_vis.png differ
diff --git a/outlook/result/correction/vis/sample0000_step002_vis.png b/outlook/result/correction/vis/sample0000_step002_vis.png
new file mode 100644
index 0000000..baf5877
Binary files /dev/null and b/outlook/result/correction/vis/sample0000_step002_vis.png differ
diff --git a/outlook/result/correction/vis/sample0000_step003_vis.png b/outlook/result/correction/vis/sample0000_step003_vis.png
new file mode 100644
index 0000000..62e5eb6
Binary files /dev/null and b/outlook/result/correction/vis/sample0000_step003_vis.png differ
diff --git a/outlook/result/correction/vis/sample0000_step004_vis.png b/outlook/result/correction/vis/sample0000_step004_vis.png
new file mode 100644
index 0000000..ea4e5b0
Binary files /dev/null and b/outlook/result/correction/vis/sample0000_step004_vis.png differ
diff --git a/outlook/result/correction/vis/sample0000_step005_vis.png b/outlook/result/correction/vis/sample0000_step005_vis.png
new file mode 100644
index 0000000..5f2fc98
Binary files /dev/null and b/outlook/result/correction/vis/sample0000_step005_vis.png differ
diff --git a/outlook/result/correction/vis/sample0000_step006_vis.png b/outlook/result/correction/vis/sample0000_step006_vis.png
new file mode 100644
index 0000000..f3dddfc
Binary files /dev/null and b/outlook/result/correction/vis/sample0000_step006_vis.png differ
diff --git a/outlook/result/correction/vis/sample0000_step007_vis.png b/outlook/result/correction/vis/sample0000_step007_vis.png
new file mode 100644
index 0000000..2ce6dda
Binary files /dev/null and b/outlook/result/correction/vis/sample0000_step007_vis.png differ
diff --git a/outlook/result/correction/vis/sample0000_step008_vis.png b/outlook/result/correction/vis/sample0000_step008_vis.png
new file mode 100644
index 0000000..403fa01
Binary files /dev/null and b/outlook/result/correction/vis/sample0000_step008_vis.png differ
diff --git a/outlook/result/correction/vis/sample0000_step009_vis.png b/outlook/result/correction/vis/sample0000_step009_vis.png
new file mode 100644
index 0000000..a31a514
Binary files /dev/null and b/outlook/result/correction/vis/sample0000_step009_vis.png differ
diff --git a/outlook/result/correction/viz/amr_overview.png b/outlook/result/correction/viz/amr_overview.png
new file mode 100644
index 0000000..8918337
Binary files /dev/null and b/outlook/result/correction/viz/amr_overview.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step00.png b/outlook/result/correction/viz/amr_steps/step00.png
new file mode 100644
index 0000000..7d937ba
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step00.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step01.png b/outlook/result/correction/viz/amr_steps/step01.png
new file mode 100644
index 0000000..772e705
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step01.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step02.png b/outlook/result/correction/viz/amr_steps/step02.png
new file mode 100644
index 0000000..3c5eca2
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step02.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step03.png b/outlook/result/correction/viz/amr_steps/step03.png
new file mode 100644
index 0000000..93e2d5d
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step03.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step04.png b/outlook/result/correction/viz/amr_steps/step04.png
new file mode 100644
index 0000000..0faada8
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step04.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step05.png b/outlook/result/correction/viz/amr_steps/step05.png
new file mode 100644
index 0000000..a09045d
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step05.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step06.png b/outlook/result/correction/viz/amr_steps/step06.png
new file mode 100644
index 0000000..07450e5
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step06.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step07.png b/outlook/result/correction/viz/amr_steps/step07.png
new file mode 100644
index 0000000..7891aff
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step07.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step08.png b/outlook/result/correction/viz/amr_steps/step08.png
new file mode 100644
index 0000000..14ac3c9
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step08.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step09.png b/outlook/result/correction/viz/amr_steps/step09.png
new file mode 100644
index 0000000..3867bda
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step09.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step10.png b/outlook/result/correction/viz/amr_steps/step10.png
new file mode 100644
index 0000000..d0d2c64
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step10.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step11.png b/outlook/result/correction/viz/amr_steps/step11.png
new file mode 100644
index 0000000..5c39557
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step11.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step12.png b/outlook/result/correction/viz/amr_steps/step12.png
new file mode 100644
index 0000000..ae044a7
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step12.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step13.png b/outlook/result/correction/viz/amr_steps/step13.png
new file mode 100644
index 0000000..10f66b9
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step13.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step14.png b/outlook/result/correction/viz/amr_steps/step14.png
new file mode 100644
index 0000000..6be134b
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step14.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step15.png b/outlook/result/correction/viz/amr_steps/step15.png
new file mode 100644
index 0000000..b64e51a
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step15.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step16.png b/outlook/result/correction/viz/amr_steps/step16.png
new file mode 100644
index 0000000..c5ab1ae
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step16.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step17.png b/outlook/result/correction/viz/amr_steps/step17.png
new file mode 100644
index 0000000..fd40edc
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step17.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step18.png b/outlook/result/correction/viz/amr_steps/step18.png
new file mode 100644
index 0000000..9f34b76
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step18.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step19.png b/outlook/result/correction/viz/amr_steps/step19.png
new file mode 100644
index 0000000..74cddb0
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step19.png differ
diff --git a/outlook/result/correction/viz/amr_steps/step20.png b/outlook/result/correction/viz/amr_steps/step20.png
new file mode 100644
index 0000000..057bf95
Binary files /dev/null and b/outlook/result/correction/viz/amr_steps/step20.png differ
diff --git a/outlook/result/correction/viz/compare_sample0000_step000.png b/outlook/result/correction/viz/compare_sample0000_step000.png
new file mode 100644
index 0000000..6a549c4
Binary files /dev/null and b/outlook/result/correction/viz/compare_sample0000_step000.png differ
diff --git a/outlook/result/correction/viz/compare_sample0000_step010.png b/outlook/result/correction/viz/compare_sample0000_step010.png
new file mode 100644
index 0000000..6341d88
Binary files /dev/null and b/outlook/result/correction/viz/compare_sample0000_step010.png differ
diff --git a/outlook/result/correction/viz/compare_sample0005_step010.png b/outlook/result/correction/viz/compare_sample0005_step010.png
new file mode 100644
index 0000000..e894fc8
Binary files /dev/null and b/outlook/result/correction/viz/compare_sample0005_step010.png differ
diff --git a/outlook/result/correction/viz/field_eta_sample0000_step010.png b/outlook/result/correction/viz/field_eta_sample0000_step010.png
new file mode 100644
index 0000000..10e4475
Binary files /dev/null and b/outlook/result/correction/viz/field_eta_sample0000_step010.png differ
diff --git a/outlook/result/correction/viz/field_eta_sample0005_step010.png b/outlook/result/correction/viz/field_eta_sample0005_step010.png
new file mode 100644
index 0000000..5359025
Binary files /dev/null and b/outlook/result/correction/viz/field_eta_sample0005_step010.png differ
diff --git a/outlook/result/correction/viz/field_gnn_sample0000_step010.png b/outlook/result/correction/viz/field_gnn_sample0000_step010.png
new file mode 100644
index 0000000..d70720c
Binary files /dev/null and b/outlook/result/correction/viz/field_gnn_sample0000_step010.png differ
diff --git a/outlook/result/correction/viz/field_gnn_sample0005_step010.png b/outlook/result/correction/viz/field_gnn_sample0005_step010.png
new file mode 100644
index 0000000..d009689
Binary files /dev/null and b/outlook/result/correction/viz/field_gnn_sample0005_step010.png differ
diff --git a/outlook/result/correction/viz/k10/amr_overview.png b/outlook/result/correction/viz/k10/amr_overview.png
new file mode 100644
index 0000000..d5047ae
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_overview.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step00.png b/outlook/result/correction/viz/k10/amr_steps/step00.png
new file mode 100644
index 0000000..18434bf
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step00.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step01.png b/outlook/result/correction/viz/k10/amr_steps/step01.png
new file mode 100644
index 0000000..0b030df
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step01.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step02.png b/outlook/result/correction/viz/k10/amr_steps/step02.png
new file mode 100644
index 0000000..e141e87
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step02.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step03.png b/outlook/result/correction/viz/k10/amr_steps/step03.png
new file mode 100644
index 0000000..908d0fc
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step03.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step04.png b/outlook/result/correction/viz/k10/amr_steps/step04.png
new file mode 100644
index 0000000..330edb2
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step04.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step05.png b/outlook/result/correction/viz/k10/amr_steps/step05.png
new file mode 100644
index 0000000..c6b2be6
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step05.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step06.png b/outlook/result/correction/viz/k10/amr_steps/step06.png
new file mode 100644
index 0000000..6697ff9
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step06.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step07.png b/outlook/result/correction/viz/k10/amr_steps/step07.png
new file mode 100644
index 0000000..4c8ce44
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step07.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step08.png b/outlook/result/correction/viz/k10/amr_steps/step08.png
new file mode 100644
index 0000000..8841375
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step08.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step09.png b/outlook/result/correction/viz/k10/amr_steps/step09.png
new file mode 100644
index 0000000..7aca392
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step09.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step10.png b/outlook/result/correction/viz/k10/amr_steps/step10.png
new file mode 100644
index 0000000..1f63816
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step10.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step11.png b/outlook/result/correction/viz/k10/amr_steps/step11.png
new file mode 100644
index 0000000..b849149
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step11.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step12.png b/outlook/result/correction/viz/k10/amr_steps/step12.png
new file mode 100644
index 0000000..eb37047
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step12.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step13.png b/outlook/result/correction/viz/k10/amr_steps/step13.png
new file mode 100644
index 0000000..b06c095
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step13.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step14.png b/outlook/result/correction/viz/k10/amr_steps/step14.png
new file mode 100644
index 0000000..82a2b65
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step14.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step15.png b/outlook/result/correction/viz/k10/amr_steps/step15.png
new file mode 100644
index 0000000..efead52
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step15.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step16.png b/outlook/result/correction/viz/k10/amr_steps/step16.png
new file mode 100644
index 0000000..6917fe1
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step16.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step17.png b/outlook/result/correction/viz/k10/amr_steps/step17.png
new file mode 100644
index 0000000..ea0cb3b
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step17.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step18.png b/outlook/result/correction/viz/k10/amr_steps/step18.png
new file mode 100644
index 0000000..be0ba82
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step18.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step19.png b/outlook/result/correction/viz/k10/amr_steps/step19.png
new file mode 100644
index 0000000..accc97d
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step19.png differ
diff --git a/outlook/result/correction/viz/k10/amr_steps/step20.png b/outlook/result/correction/viz/k10/amr_steps/step20.png
new file mode 100644
index 0000000..4e00203
Binary files /dev/null and b/outlook/result/correction/viz/k10/amr_steps/step20.png differ
diff --git a/outlook/result/correction/viz/k10/compare.png b/outlook/result/correction/viz/k10/compare.png
new file mode 100644
index 0000000..e9cd379
Binary files /dev/null and b/outlook/result/correction/viz/k10/compare.png differ
diff --git a/outlook/result/correction/viz/k10/ground_truth.png b/outlook/result/correction/viz/k10/ground_truth.png
new file mode 100644
index 0000000..1e48bf0
Binary files /dev/null and b/outlook/result/correction/viz/k10/ground_truth.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_overview.png b/outlook/result/correction/viz/k10/hybrid/amr_overview.png
new file mode 100644
index 0000000..e43054e
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_overview.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step00.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step00.png
new file mode 100644
index 0000000..ab8b2c7
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step00.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step01.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step01.png
new file mode 100644
index 0000000..0d2104f
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step01.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step02.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step02.png
new file mode 100644
index 0000000..ce81016
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step02.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step03.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step03.png
new file mode 100644
index 0000000..91700a9
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step03.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step04.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step04.png
new file mode 100644
index 0000000..da0665c
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step04.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step05.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step05.png
new file mode 100644
index 0000000..2b9022d
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step05.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step06.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step06.png
new file mode 100644
index 0000000..e02f0e0
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step06.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step07.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step07.png
new file mode 100644
index 0000000..236eba4
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step07.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step08.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step08.png
new file mode 100644
index 0000000..52a250c
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step08.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step09.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step09.png
new file mode 100644
index 0000000..042bd74
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step09.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step10.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step10.png
new file mode 100644
index 0000000..76a3534
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step10.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step11.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step11.png
new file mode 100644
index 0000000..8e89b04
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step11.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step12.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step12.png
new file mode 100644
index 0000000..1e9db4d
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step12.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step13.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step13.png
new file mode 100644
index 0000000..a54a3d0
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step13.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step14.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step14.png
new file mode 100644
index 0000000..e885ace
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step14.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step15.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step15.png
new file mode 100644
index 0000000..62a882e
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step15.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step16.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step16.png
new file mode 100644
index 0000000..be654c1
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step16.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/amr_steps/step17.png b/outlook/result/correction/viz/k10/hybrid/amr_steps/step17.png
new file mode 100644
index 0000000..398aaab
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/amr_steps/step17.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/compare.png b/outlook/result/correction/viz/k10/hybrid/compare.png
new file mode 100644
index 0000000..14e4196
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/compare.png differ
diff --git a/outlook/result/correction/viz/k10/hybrid/ground_truth.png b/outlook/result/correction/viz/k10/hybrid/ground_truth.png
new file mode 100644
index 0000000..96e322c
Binary files /dev/null and b/outlook/result/correction/viz/k10/hybrid/ground_truth.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_overview.png b/outlook/result/correction/viz/k10/neural/amr_overview.png
new file mode 100644
index 0000000..8e8e690
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_overview.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step00.png b/outlook/result/correction/viz/k10/neural/amr_steps/step00.png
new file mode 100644
index 0000000..ab8b2c7
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step00.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step01.png b/outlook/result/correction/viz/k10/neural/amr_steps/step01.png
new file mode 100644
index 0000000..e8736a3
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step01.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step02.png b/outlook/result/correction/viz/k10/neural/amr_steps/step02.png
new file mode 100644
index 0000000..3299a2e
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step02.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step03.png b/outlook/result/correction/viz/k10/neural/amr_steps/step03.png
new file mode 100644
index 0000000..66d7243
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step03.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step04.png b/outlook/result/correction/viz/k10/neural/amr_steps/step04.png
new file mode 100644
index 0000000..cbf87f5
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step04.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step05.png b/outlook/result/correction/viz/k10/neural/amr_steps/step05.png
new file mode 100644
index 0000000..2432800
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step05.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step06.png b/outlook/result/correction/viz/k10/neural/amr_steps/step06.png
new file mode 100644
index 0000000..2874cce
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step06.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step07.png b/outlook/result/correction/viz/k10/neural/amr_steps/step07.png
new file mode 100644
index 0000000..49b6d8a
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step07.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step08.png b/outlook/result/correction/viz/k10/neural/amr_steps/step08.png
new file mode 100644
index 0000000..af736b9
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step08.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step09.png b/outlook/result/correction/viz/k10/neural/amr_steps/step09.png
new file mode 100644
index 0000000..58e6a1e
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step09.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step10.png b/outlook/result/correction/viz/k10/neural/amr_steps/step10.png
new file mode 100644
index 0000000..44d6691
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step10.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step11.png b/outlook/result/correction/viz/k10/neural/amr_steps/step11.png
new file mode 100644
index 0000000..d8bca38
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step11.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step12.png b/outlook/result/correction/viz/k10/neural/amr_steps/step12.png
new file mode 100644
index 0000000..787597b
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step12.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step13.png b/outlook/result/correction/viz/k10/neural/amr_steps/step13.png
new file mode 100644
index 0000000..9ea8218
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step13.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step14.png b/outlook/result/correction/viz/k10/neural/amr_steps/step14.png
new file mode 100644
index 0000000..968cec6
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step14.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step15.png b/outlook/result/correction/viz/k10/neural/amr_steps/step15.png
new file mode 100644
index 0000000..ccaba32
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step15.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step16.png b/outlook/result/correction/viz/k10/neural/amr_steps/step16.png
new file mode 100644
index 0000000..cd5031b
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step16.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step17.png b/outlook/result/correction/viz/k10/neural/amr_steps/step17.png
new file mode 100644
index 0000000..ea0cb3b
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step17.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step18.png b/outlook/result/correction/viz/k10/neural/amr_steps/step18.png
new file mode 100644
index 0000000..be0ba82
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step18.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step19.png b/outlook/result/correction/viz/k10/neural/amr_steps/step19.png
new file mode 100644
index 0000000..accc97d
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step19.png differ
diff --git a/outlook/result/correction/viz/k10/neural/amr_steps/step20.png b/outlook/result/correction/viz/k10/neural/amr_steps/step20.png
new file mode 100644
index 0000000..4e00203
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/amr_steps/step20.png differ
diff --git a/outlook/result/correction/viz/k10/neural/compare.png b/outlook/result/correction/viz/k10/neural/compare.png
new file mode 100644
index 0000000..107983b
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/compare.png differ
diff --git a/outlook/result/correction/viz/k10/neural/ground_truth.png b/outlook/result/correction/viz/k10/neural/ground_truth.png
new file mode 100644
index 0000000..b09ab3a
Binary files /dev/null and b/outlook/result/correction/viz/k10/neural/ground_truth.png differ
diff --git a/outlook/result/correction/viz/k20/amr_overview.png b/outlook/result/correction/viz/k20/amr_overview.png
new file mode 100644
index 0000000..4432f10
Binary files /dev/null and b/outlook/result/correction/viz/k20/amr_overview.png differ
diff --git a/outlook/result/correction/viz/k20/amr_steps/step00.png b/outlook/result/correction/viz/k20/amr_steps/step00.png
new file mode 100644
index 0000000..5b42d02
Binary files /dev/null and b/outlook/result/correction/viz/k20/amr_steps/step00.png differ
diff --git a/outlook/result/correction/viz/k20/amr_steps/step01.png b/outlook/result/correction/viz/k20/amr_steps/step01.png
new file mode 100644
index 0000000..7f83948
Binary files /dev/null and b/outlook/result/correction/viz/k20/amr_steps/step01.png differ
diff --git a/outlook/result/correction/viz/k20/amr_steps/step02.png b/outlook/result/correction/viz/k20/amr_steps/step02.png
new file mode 100644
index 0000000..6676771
Binary files /dev/null and b/outlook/result/correction/viz/k20/amr_steps/step02.png differ
diff --git a/outlook/result/correction/viz/k20/amr_steps/step03.png b/outlook/result/correction/viz/k20/amr_steps/step03.png
new file mode 100644
index 0000000..b6530f7
Binary files /dev/null and b/outlook/result/correction/viz/k20/amr_steps/step03.png differ
diff --git a/outlook/result/correction/viz/k20/amr_steps/step04.png b/outlook/result/correction/viz/k20/amr_steps/step04.png
new file mode 100644
index 0000000..3611447
Binary files /dev/null and b/outlook/result/correction/viz/k20/amr_steps/step04.png differ
diff --git a/outlook/result/correction/viz/k20/amr_steps/step05.png b/outlook/result/correction/viz/k20/amr_steps/step05.png
new file mode 100644
index 0000000..a5c360e
Binary files /dev/null and b/outlook/result/correction/viz/k20/amr_steps/step05.png differ
diff --git a/outlook/result/correction/viz/k20/amr_steps/step06.png b/outlook/result/correction/viz/k20/amr_steps/step06.png
new file mode 100644
index 0000000..c4a1853
Binary files /dev/null and b/outlook/result/correction/viz/k20/amr_steps/step06.png differ
diff --git a/outlook/result/correction/viz/k20/amr_steps/step07.png b/outlook/result/correction/viz/k20/amr_steps/step07.png
new file mode 100644
index 0000000..f1c2584
Binary files /dev/null and b/outlook/result/correction/viz/k20/amr_steps/step07.png differ
diff --git a/outlook/result/correction/viz/k20/amr_steps/step08.png b/outlook/result/correction/viz/k20/amr_steps/step08.png
new file mode 100644
index 0000000..1d4e558
Binary files /dev/null and b/outlook/result/correction/viz/k20/amr_steps/step08.png differ
diff --git a/outlook/result/correction/viz/k20/amr_steps/step09.png b/outlook/result/correction/viz/k20/amr_steps/step09.png
new file mode 100644
index 0000000..9142b32
Binary files /dev/null and b/outlook/result/correction/viz/k20/amr_steps/step09.png differ
diff --git a/outlook/result/correction/viz/k20/compare.png b/outlook/result/correction/viz/k20/compare.png
new file mode 100644
index 0000000..59666e8
Binary files /dev/null and b/outlook/result/correction/viz/k20/compare.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_overview.png b/outlook/result/correction/viz/k20/neural/amr_overview.png
new file mode 100644
index 0000000..eebdc0d
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_overview.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_steps/step00.png b/outlook/result/correction/viz/k20/neural/amr_steps/step00.png
new file mode 100644
index 0000000..4a7a693
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_steps/step00.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_steps/step01.png b/outlook/result/correction/viz/k20/neural/amr_steps/step01.png
new file mode 100644
index 0000000..e1ddd2e
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_steps/step01.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_steps/step02.png b/outlook/result/correction/viz/k20/neural/amr_steps/step02.png
new file mode 100644
index 0000000..5c74b04
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_steps/step02.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_steps/step03.png b/outlook/result/correction/viz/k20/neural/amr_steps/step03.png
new file mode 100644
index 0000000..ea81a90
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_steps/step03.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_steps/step04.png b/outlook/result/correction/viz/k20/neural/amr_steps/step04.png
new file mode 100644
index 0000000..4e7f87e
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_steps/step04.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_steps/step05.png b/outlook/result/correction/viz/k20/neural/amr_steps/step05.png
new file mode 100644
index 0000000..cc46a02
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_steps/step05.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_steps/step06.png b/outlook/result/correction/viz/k20/neural/amr_steps/step06.png
new file mode 100644
index 0000000..b72aa55
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_steps/step06.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_steps/step07.png b/outlook/result/correction/viz/k20/neural/amr_steps/step07.png
new file mode 100644
index 0000000..6ebb721
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_steps/step07.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_steps/step08.png b/outlook/result/correction/viz/k20/neural/amr_steps/step08.png
new file mode 100644
index 0000000..a16c6a4
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_steps/step08.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_steps/step09.png b/outlook/result/correction/viz/k20/neural/amr_steps/step09.png
new file mode 100644
index 0000000..a0ded2e
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_steps/step09.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_steps/step10.png b/outlook/result/correction/viz/k20/neural/amr_steps/step10.png
new file mode 100644
index 0000000..21913d9
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_steps/step10.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_steps/step11.png b/outlook/result/correction/viz/k20/neural/amr_steps/step11.png
new file mode 100644
index 0000000..34cdbf3
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_steps/step11.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_steps/step12.png b/outlook/result/correction/viz/k20/neural/amr_steps/step12.png
new file mode 100644
index 0000000..97c55c4
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_steps/step12.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_steps/step13.png b/outlook/result/correction/viz/k20/neural/amr_steps/step13.png
new file mode 100644
index 0000000..6cf00bd
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_steps/step13.png differ
diff --git a/outlook/result/correction/viz/k20/neural/amr_steps/step14.png b/outlook/result/correction/viz/k20/neural/amr_steps/step14.png
new file mode 100644
index 0000000..84037f2
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/amr_steps/step14.png differ
diff --git a/outlook/result/correction/viz/k20/neural/compare.png b/outlook/result/correction/viz/k20/neural/compare.png
new file mode 100644
index 0000000..ec9e7f2
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/compare.png differ
diff --git a/outlook/result/correction/viz/k20/neural/ground_truth.png b/outlook/result/correction/viz/k20/neural/ground_truth.png
new file mode 100644
index 0000000..2240bf7
Binary files /dev/null and b/outlook/result/correction/viz/k20/neural/ground_truth.png differ
diff --git a/outlook/result/correction/viz/k30/amr_overview.png b/outlook/result/correction/viz/k30/amr_overview.png
new file mode 100644
index 0000000..76d4308
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_overview.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step00.png b/outlook/result/correction/viz/k30/amr_steps/step00.png
new file mode 100644
index 0000000..15527e6
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step00.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step01.png b/outlook/result/correction/viz/k30/amr_steps/step01.png
new file mode 100644
index 0000000..6aa26df
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step01.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step02.png b/outlook/result/correction/viz/k30/amr_steps/step02.png
new file mode 100644
index 0000000..a31d4e8
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step02.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step03.png b/outlook/result/correction/viz/k30/amr_steps/step03.png
new file mode 100644
index 0000000..2276ac6
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step03.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step04.png b/outlook/result/correction/viz/k30/amr_steps/step04.png
new file mode 100644
index 0000000..72c0d59
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step04.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step05.png b/outlook/result/correction/viz/k30/amr_steps/step05.png
new file mode 100644
index 0000000..a7b040e
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step05.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step06.png b/outlook/result/correction/viz/k30/amr_steps/step06.png
new file mode 100644
index 0000000..6fbcf58
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step06.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step07.png b/outlook/result/correction/viz/k30/amr_steps/step07.png
new file mode 100644
index 0000000..a0bfd0b
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step07.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step08.png b/outlook/result/correction/viz/k30/amr_steps/step08.png
new file mode 100644
index 0000000..98b6063
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step08.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step09.png b/outlook/result/correction/viz/k30/amr_steps/step09.png
new file mode 100644
index 0000000..5223539
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step09.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step10.png b/outlook/result/correction/viz/k30/amr_steps/step10.png
new file mode 100644
index 0000000..16d6b63
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step10.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step11.png b/outlook/result/correction/viz/k30/amr_steps/step11.png
new file mode 100644
index 0000000..20905f1
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step11.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step12.png b/outlook/result/correction/viz/k30/amr_steps/step12.png
new file mode 100644
index 0000000..dd4ab89
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step12.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step13.png b/outlook/result/correction/viz/k30/amr_steps/step13.png
new file mode 100644
index 0000000..2a9ce8f
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step13.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step14.png b/outlook/result/correction/viz/k30/amr_steps/step14.png
new file mode 100644
index 0000000..aeddd82
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step14.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step15.png b/outlook/result/correction/viz/k30/amr_steps/step15.png
new file mode 100644
index 0000000..e7583ef
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step15.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step16.png b/outlook/result/correction/viz/k30/amr_steps/step16.png
new file mode 100644
index 0000000..b4553b3
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step16.png differ
diff --git a/outlook/result/correction/viz/k30/amr_steps/step17.png b/outlook/result/correction/viz/k30/amr_steps/step17.png
new file mode 100644
index 0000000..0410528
Binary files /dev/null and b/outlook/result/correction/viz/k30/amr_steps/step17.png differ
diff --git a/outlook/result/correction/viz/k30/baseline.md b/outlook/result/correction/viz/k30/baseline.md
new file mode 100644
index 0000000..b24c5cb
--- /dev/null
+++ b/outlook/result/correction/viz/k30/baseline.md
@@ -0,0 +1,37 @@
+python outlook/src/viz_correction.py --checkpoint outlook/ckpt/correction.pt --data-dir outlook/data_correction --mode amr --k 30 --eps-r 4 --cx 0.5 --cy 0.5 --radius 0.15 --max-elements 5000 --compare --device cuda --output-dir outlook/result/correction/viz --q 2 --method neural
+
+============================================================
+ step elements aw_rel max_err
+ ---- -------- ---------- ----------
+ 0 1028 102.98% 2.9273
+ 1 1174 101.34% 2.2242
+ 2 1376 134.58% 3.2404
+ 3 1638 82.99% 1.3998
+ 4 1916 61.06% 1.0886
+ 5 2260 52.33% 0.9875
+ 6 2676 42.55% 0.6527
+ 7 3174 37.35% 0.5949
+ 8 3754 31.12% 0.4954
+ 9 4428 25.83% 0.4276
+ 10 4998 23.52% 0.3942
+ 11 4998 23.52% 0.3942
+============================================================
+
+
+ [Compare] Physics: 4998 elem aw_rel=34.12%
+ [Compare] Neural : 4998 elem aw_rel=23.52%
+ [Compare] Hybrid : 5000 elem aw_rel=27.94%
+ [Compare] Eta: 4999 elem aw_rel=22.53%
+ [Compare] Reference: 20607 elem
+ [Compare] Plot -> outlook/result/correction/viz/k30/neural/compare.png
+ [GroundTruth] Generating high-fidelity reference (20000 elem)...
+ [GroundTruth] Reference: 20607 elem aw_rel=8.93% max_err=0.1534
+
+python outlook/src/viz_correction.py --checkpoint outlook/ckpt/correction.pt --data-dir outlook/data_correction --mode amr --k 10 --eps-r 4 --cx 0.5 --cy 0.5 --radius 0.15 --max-elements 5000 --compare --device cuda --output-dir outlook/result/correction/viz --q 2 --method hybrid
+
+[Rollout] k=10.00 eps_r=4.00 cx=0.50 cy=0.50 r=0.150
+
+ [Compare] Physics: 5000 elem aw_rel=3.71%
+ [Compare] Hybrid : 4996 elem aw_rel=3.79%
+ [Compare] Neural : 4997 elem aw_rel=3.68%
+ [Compare] Eta: 4994 elem aw_rel=3.78%
diff --git a/outlook/result/correction/viz/k30/compare.png b/outlook/result/correction/viz/k30/compare.png
new file mode 100644
index 0000000..c34b1ac
Binary files /dev/null and b/outlook/result/correction/viz/k30/compare.png differ
diff --git a/outlook/result/correction/viz/k30/ground_truth.png b/outlook/result/correction/viz/k30/ground_truth.png
new file mode 100644
index 0000000..9bd69af
Binary files /dev/null and b/outlook/result/correction/viz/k30/ground_truth.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_overview.png b/outlook/result/correction/viz/k30/hybrid/amr_overview.png
new file mode 100644
index 0000000..7049057
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_overview.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_steps/step00.png b/outlook/result/correction/viz/k30/hybrid/amr_steps/step00.png
new file mode 100644
index 0000000..3c31472
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_steps/step00.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_steps/step01.png b/outlook/result/correction/viz/k30/hybrid/amr_steps/step01.png
new file mode 100644
index 0000000..332b47a
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_steps/step01.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_steps/step02.png b/outlook/result/correction/viz/k30/hybrid/amr_steps/step02.png
new file mode 100644
index 0000000..d93cfe6
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_steps/step02.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_steps/step03.png b/outlook/result/correction/viz/k30/hybrid/amr_steps/step03.png
new file mode 100644
index 0000000..0972961
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_steps/step03.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_steps/step04.png b/outlook/result/correction/viz/k30/hybrid/amr_steps/step04.png
new file mode 100644
index 0000000..c4622e8
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_steps/step04.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_steps/step05.png b/outlook/result/correction/viz/k30/hybrid/amr_steps/step05.png
new file mode 100644
index 0000000..7d5ce4a
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_steps/step05.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_steps/step06.png b/outlook/result/correction/viz/k30/hybrid/amr_steps/step06.png
new file mode 100644
index 0000000..fbf9a49
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_steps/step06.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_steps/step07.png b/outlook/result/correction/viz/k30/hybrid/amr_steps/step07.png
new file mode 100644
index 0000000..cfdc6df
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_steps/step07.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_steps/step08.png b/outlook/result/correction/viz/k30/hybrid/amr_steps/step08.png
new file mode 100644
index 0000000..6549bb4
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_steps/step08.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_steps/step09.png b/outlook/result/correction/viz/k30/hybrid/amr_steps/step09.png
new file mode 100644
index 0000000..1d371f5
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_steps/step09.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_steps/step10.png b/outlook/result/correction/viz/k30/hybrid/amr_steps/step10.png
new file mode 100644
index 0000000..da83bfe
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_steps/step10.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_steps/step11.png b/outlook/result/correction/viz/k30/hybrid/amr_steps/step11.png
new file mode 100644
index 0000000..5967101
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_steps/step11.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_steps/step12.png b/outlook/result/correction/viz/k30/hybrid/amr_steps/step12.png
new file mode 100644
index 0000000..ef25c43
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_steps/step12.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_steps/step13.png b/outlook/result/correction/viz/k30/hybrid/amr_steps/step13.png
new file mode 100644
index 0000000..0b62fdc
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_steps/step13.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/amr_steps/step14.png b/outlook/result/correction/viz/k30/hybrid/amr_steps/step14.png
new file mode 100644
index 0000000..a457e56
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/amr_steps/step14.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/compare.png b/outlook/result/correction/viz/k30/hybrid/compare.png
new file mode 100644
index 0000000..b5509ab
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/compare.png differ
diff --git a/outlook/result/correction/viz/k30/hybrid/ground_truth.png b/outlook/result/correction/viz/k30/hybrid/ground_truth.png
new file mode 100644
index 0000000..cb37128
Binary files /dev/null and b/outlook/result/correction/viz/k30/hybrid/ground_truth.png differ
diff --git a/outlook/result/correction/viz/k30/neural/amr_overview.png b/outlook/result/correction/viz/k30/neural/amr_overview.png
new file mode 100644
index 0000000..e22deb3
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/amr_overview.png differ
diff --git a/outlook/result/correction/viz/k30/neural/amr_steps/step00.png b/outlook/result/correction/viz/k30/neural/amr_steps/step00.png
new file mode 100644
index 0000000..3c31472
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/amr_steps/step00.png differ
diff --git a/outlook/result/correction/viz/k30/neural/amr_steps/step01.png b/outlook/result/correction/viz/k30/neural/amr_steps/step01.png
new file mode 100644
index 0000000..332b47a
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/amr_steps/step01.png differ
diff --git a/outlook/result/correction/viz/k30/neural/amr_steps/step02.png b/outlook/result/correction/viz/k30/neural/amr_steps/step02.png
new file mode 100644
index 0000000..904ee08
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/amr_steps/step02.png differ
diff --git a/outlook/result/correction/viz/k30/neural/amr_steps/step03.png b/outlook/result/correction/viz/k30/neural/amr_steps/step03.png
new file mode 100644
index 0000000..226c129
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/amr_steps/step03.png differ
diff --git a/outlook/result/correction/viz/k30/neural/amr_steps/step04.png b/outlook/result/correction/viz/k30/neural/amr_steps/step04.png
new file mode 100644
index 0000000..2eafa00
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/amr_steps/step04.png differ
diff --git a/outlook/result/correction/viz/k30/neural/amr_steps/step05.png b/outlook/result/correction/viz/k30/neural/amr_steps/step05.png
new file mode 100644
index 0000000..0c5fe4b
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/amr_steps/step05.png differ
diff --git a/outlook/result/correction/viz/k30/neural/amr_steps/step06.png b/outlook/result/correction/viz/k30/neural/amr_steps/step06.png
new file mode 100644
index 0000000..3dab2ae
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/amr_steps/step06.png differ
diff --git a/outlook/result/correction/viz/k30/neural/amr_steps/step07.png b/outlook/result/correction/viz/k30/neural/amr_steps/step07.png
new file mode 100644
index 0000000..8f7ceae
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/amr_steps/step07.png differ
diff --git a/outlook/result/correction/viz/k30/neural/amr_steps/step08.png b/outlook/result/correction/viz/k30/neural/amr_steps/step08.png
new file mode 100644
index 0000000..5ff6966
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/amr_steps/step08.png differ
diff --git a/outlook/result/correction/viz/k30/neural/amr_steps/step09.png b/outlook/result/correction/viz/k30/neural/amr_steps/step09.png
new file mode 100644
index 0000000..dc4457c
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/amr_steps/step09.png differ
diff --git a/outlook/result/correction/viz/k30/neural/amr_steps/step10.png b/outlook/result/correction/viz/k30/neural/amr_steps/step10.png
new file mode 100644
index 0000000..9c70804
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/amr_steps/step10.png differ
diff --git a/outlook/result/correction/viz/k30/neural/amr_steps/step11.png b/outlook/result/correction/viz/k30/neural/amr_steps/step11.png
new file mode 100644
index 0000000..d31e044
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/amr_steps/step11.png differ
diff --git a/outlook/result/correction/viz/k30/neural/amr_steps/step12.png b/outlook/result/correction/viz/k30/neural/amr_steps/step12.png
new file mode 100644
index 0000000..7298d27
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/amr_steps/step12.png differ
diff --git a/outlook/result/correction/viz/k30/neural/compare.png b/outlook/result/correction/viz/k30/neural/compare.png
new file mode 100644
index 0000000..f7799a3
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/compare.png differ
diff --git a/outlook/result/correction/viz/k30/neural/ground_truth.png b/outlook/result/correction/viz/k30/neural/ground_truth.png
new file mode 100644
index 0000000..cb37128
Binary files /dev/null and b/outlook/result/correction/viz/k30/neural/ground_truth.png differ
diff --git a/outlook/result/correction/viz/k30/physics/amr_overview.png b/outlook/result/correction/viz/k30/physics/amr_overview.png
new file mode 100644
index 0000000..9256ba5
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/amr_overview.png differ
diff --git a/outlook/result/correction/viz/k30/physics/amr_steps/step00.png b/outlook/result/correction/viz/k30/physics/amr_steps/step00.png
new file mode 100644
index 0000000..3c31472
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/amr_steps/step00.png differ
diff --git a/outlook/result/correction/viz/k30/physics/amr_steps/step01.png b/outlook/result/correction/viz/k30/physics/amr_steps/step01.png
new file mode 100644
index 0000000..b5b7bbe
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/amr_steps/step01.png differ
diff --git a/outlook/result/correction/viz/k30/physics/amr_steps/step02.png b/outlook/result/correction/viz/k30/physics/amr_steps/step02.png
new file mode 100644
index 0000000..2e688ea
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/amr_steps/step02.png differ
diff --git a/outlook/result/correction/viz/k30/physics/amr_steps/step03.png b/outlook/result/correction/viz/k30/physics/amr_steps/step03.png
new file mode 100644
index 0000000..2785821
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/amr_steps/step03.png differ
diff --git a/outlook/result/correction/viz/k30/physics/amr_steps/step04.png b/outlook/result/correction/viz/k30/physics/amr_steps/step04.png
new file mode 100644
index 0000000..a335fb0
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/amr_steps/step04.png differ
diff --git a/outlook/result/correction/viz/k30/physics/amr_steps/step05.png b/outlook/result/correction/viz/k30/physics/amr_steps/step05.png
new file mode 100644
index 0000000..38af40c
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/amr_steps/step05.png differ
diff --git a/outlook/result/correction/viz/k30/physics/amr_steps/step06.png b/outlook/result/correction/viz/k30/physics/amr_steps/step06.png
new file mode 100644
index 0000000..917c0a3
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/amr_steps/step06.png differ
diff --git a/outlook/result/correction/viz/k30/physics/amr_steps/step07.png b/outlook/result/correction/viz/k30/physics/amr_steps/step07.png
new file mode 100644
index 0000000..df960f6
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/amr_steps/step07.png differ
diff --git a/outlook/result/correction/viz/k30/physics/amr_steps/step08.png b/outlook/result/correction/viz/k30/physics/amr_steps/step08.png
new file mode 100644
index 0000000..d463e2c
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/amr_steps/step08.png differ
diff --git a/outlook/result/correction/viz/k30/physics/amr_steps/step09.png b/outlook/result/correction/viz/k30/physics/amr_steps/step09.png
new file mode 100644
index 0000000..f849586
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/amr_steps/step09.png differ
diff --git a/outlook/result/correction/viz/k30/physics/amr_steps/step10.png b/outlook/result/correction/viz/k30/physics/amr_steps/step10.png
new file mode 100644
index 0000000..2c1dcb1
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/amr_steps/step10.png differ
diff --git a/outlook/result/correction/viz/k30/physics/amr_steps/step11.png b/outlook/result/correction/viz/k30/physics/amr_steps/step11.png
new file mode 100644
index 0000000..65adbee
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/amr_steps/step11.png differ
diff --git a/outlook/result/correction/viz/k30/physics/amr_steps/step12.png b/outlook/result/correction/viz/k30/physics/amr_steps/step12.png
new file mode 100644
index 0000000..42225db
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/amr_steps/step12.png differ
diff --git a/outlook/result/correction/viz/k30/physics/compare.png b/outlook/result/correction/viz/k30/physics/compare.png
new file mode 100644
index 0000000..78963cd
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/compare.png differ
diff --git a/outlook/result/correction/viz/k30/physics/ground_truth.png b/outlook/result/correction/viz/k30/physics/ground_truth.png
new file mode 100644
index 0000000..9bd69af
Binary files /dev/null and b/outlook/result/correction/viz/k30/physics/ground_truth.png differ
diff --git a/outlook/result/correction/viz/k50/hybrid/amr_overview.png b/outlook/result/correction/viz/k50/hybrid/amr_overview.png
new file mode 100644
index 0000000..27acb14
Binary files /dev/null and b/outlook/result/correction/viz/k50/hybrid/amr_overview.png differ
diff --git a/outlook/result/correction/viz/k50/hybrid/amr_steps/step00.png b/outlook/result/correction/viz/k50/hybrid/amr_steps/step00.png
new file mode 100644
index 0000000..f11c8f5
Binary files /dev/null and b/outlook/result/correction/viz/k50/hybrid/amr_steps/step00.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_overview.png b/outlook/result/correction/viz/k50/neural/amr_overview.png
new file mode 100644
index 0000000..56855f6
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_overview.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_steps/step00.png b/outlook/result/correction/viz/k50/neural/amr_steps/step00.png
new file mode 100644
index 0000000..f11c8f5
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_steps/step00.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_steps/step01.png b/outlook/result/correction/viz/k50/neural/amr_steps/step01.png
new file mode 100644
index 0000000..1f93d7f
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_steps/step01.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_steps/step02.png b/outlook/result/correction/viz/k50/neural/amr_steps/step02.png
new file mode 100644
index 0000000..d19145e
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_steps/step02.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_steps/step03.png b/outlook/result/correction/viz/k50/neural/amr_steps/step03.png
new file mode 100644
index 0000000..73b0363
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_steps/step03.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_steps/step04.png b/outlook/result/correction/viz/k50/neural/amr_steps/step04.png
new file mode 100644
index 0000000..cbe8d98
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_steps/step04.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_steps/step05.png b/outlook/result/correction/viz/k50/neural/amr_steps/step05.png
new file mode 100644
index 0000000..43dc9a4
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_steps/step05.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_steps/step06.png b/outlook/result/correction/viz/k50/neural/amr_steps/step06.png
new file mode 100644
index 0000000..4acaec9
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_steps/step06.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_steps/step07.png b/outlook/result/correction/viz/k50/neural/amr_steps/step07.png
new file mode 100644
index 0000000..dadd278
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_steps/step07.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_steps/step08.png b/outlook/result/correction/viz/k50/neural/amr_steps/step08.png
new file mode 100644
index 0000000..7f8fc84
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_steps/step08.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_steps/step09.png b/outlook/result/correction/viz/k50/neural/amr_steps/step09.png
new file mode 100644
index 0000000..83036c1
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_steps/step09.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_steps/step10.png b/outlook/result/correction/viz/k50/neural/amr_steps/step10.png
new file mode 100644
index 0000000..2faacc8
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_steps/step10.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_steps/step11.png b/outlook/result/correction/viz/k50/neural/amr_steps/step11.png
new file mode 100644
index 0000000..4eca5e9
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_steps/step11.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_steps/step12.png b/outlook/result/correction/viz/k50/neural/amr_steps/step12.png
new file mode 100644
index 0000000..22a0d05
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_steps/step12.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_steps/step13.png b/outlook/result/correction/viz/k50/neural/amr_steps/step13.png
new file mode 100644
index 0000000..096c584
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_steps/step13.png differ
diff --git a/outlook/result/correction/viz/k50/neural/amr_steps/step14.png b/outlook/result/correction/viz/k50/neural/amr_steps/step14.png
new file mode 100644
index 0000000..4753a2f
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/amr_steps/step14.png differ
diff --git a/outlook/result/correction/viz/k50/neural/compare.png b/outlook/result/correction/viz/k50/neural/compare.png
new file mode 100644
index 0000000..d98c5d9
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/compare.png differ
diff --git a/outlook/result/correction/viz/k50/neural/ground_truth.png b/outlook/result/correction/viz/k50/neural/ground_truth.png
new file mode 100644
index 0000000..bc67c1b
Binary files /dev/null and b/outlook/result/correction/viz/k50/neural/ground_truth.png differ
diff --git a/outlook/result/correction/viz/marks_sample0005_step010.png b/outlook/result/correction/viz/marks_sample0005_step010.png
new file mode 100644
index 0000000..8ebc898
Binary files /dev/null and b/outlook/result/correction/viz/marks_sample0005_step010.png differ
diff --git a/outlook/result/correction/viz_debug/k30/physics/amr_overview.png b/outlook/result/correction/viz_debug/k30/physics/amr_overview.png
new file mode 100644
index 0000000..4d961b5
Binary files /dev/null and b/outlook/result/correction/viz_debug/k30/physics/amr_overview.png differ
diff --git a/outlook/result/correction/viz_debug/k30/physics/amr_steps/step00.png b/outlook/result/correction/viz_debug/k30/physics/amr_steps/step00.png
new file mode 100644
index 0000000..3bf971e
Binary files /dev/null and b/outlook/result/correction/viz_debug/k30/physics/amr_steps/step00.png differ
diff --git a/outlook/result/correction/viz_debug/k30/physics/amr_steps/step01.png b/outlook/result/correction/viz_debug/k30/physics/amr_steps/step01.png
new file mode 100644
index 0000000..ea368df
Binary files /dev/null and b/outlook/result/correction/viz_debug/k30/physics/amr_steps/step01.png differ
diff --git a/outlook/result/correction/viz_debug/k30/physics/amr_steps/step02.png b/outlook/result/correction/viz_debug/k30/physics/amr_steps/step02.png
new file mode 100644
index 0000000..956cb91
Binary files /dev/null and b/outlook/result/correction/viz_debug/k30/physics/amr_steps/step02.png differ
diff --git a/outlook/result/correction/viz_debug/k30/physics/amr_steps/step03.png b/outlook/result/correction/viz_debug/k30/physics/amr_steps/step03.png
new file mode 100644
index 0000000..2710e45
Binary files /dev/null and b/outlook/result/correction/viz_debug/k30/physics/amr_steps/step03.png differ
diff --git a/outlook/result/correction/viz_debug/k30/physics/compare.png b/outlook/result/correction/viz_debug/k30/physics/compare.png
new file mode 100644
index 0000000..8c3dcce
Binary files /dev/null and b/outlook/result/correction/viz_debug/k30/physics/compare.png differ
diff --git a/outlook/result/correction/viz_debug/k30/physics/ground_truth.png b/outlook/result/correction/viz_debug/k30/physics/ground_truth.png
new file mode 100644
index 0000000..5992bf0
Binary files /dev/null and b/outlook/result/correction/viz_debug/k30/physics/ground_truth.png differ
diff --git a/outlook/result/summary.csv b/outlook/result/summary.csv
new file mode 100644
index 0000000..327dace
--- /dev/null
+++ b/outlook/result/summary.csv
@@ -0,0 +1,5 @@
+method,sample_id,target_elements,actual_elements,overshoot_ratio,aw_rel,max_err,dofs,num_solves,elapsed_s
+gnn,0,1000,1242,1.242,0.35696737792706584,0.5775335106036168,653,1,0.044433214992750436
+geo,0,1000,1128,1.128,0.15732525566661956,0.3140577675741086,591,1,0.026416849985253066
+gnn,0,2000,2056,1.028,0.24153786634881988,0.42854832375305574,1079,1,0.049546629015821964
+geo,0,2000,2055,1.0275,0.1285220119733053,0.2571279917806941,1070,1,0.04477013897849247
diff --git a/outlook/src/__pycache__/amr.cpython-310.pyc b/outlook/src/__pycache__/amr.cpython-310.pyc
new file mode 100644
index 0000000..41d0049
Binary files /dev/null and b/outlook/src/__pycache__/amr.cpython-310.pyc differ
diff --git a/outlook/src/__pycache__/amr.cpython-313.pyc b/outlook/src/__pycache__/amr.cpython-313.pyc
new file mode 100644
index 0000000..98dc6e6
Binary files /dev/null and b/outlook/src/__pycache__/amr.cpython-313.pyc differ
diff --git a/outlook/src/__pycache__/eval_correction.cpython-313.pyc b/outlook/src/__pycache__/eval_correction.cpython-313.pyc
new file mode 100644
index 0000000..cd8a712
Binary files /dev/null and b/outlook/src/__pycache__/eval_correction.cpython-313.pyc differ
diff --git a/outlook/src/__pycache__/feat.cpython-310.pyc b/outlook/src/__pycache__/feat.cpython-310.pyc
new file mode 100644
index 0000000..fb53ecb
Binary files /dev/null and b/outlook/src/__pycache__/feat.cpython-310.pyc differ
diff --git a/outlook/src/__pycache__/feat.cpython-313.pyc b/outlook/src/__pycache__/feat.cpython-313.pyc
new file mode 100644
index 0000000..be26f64
Binary files /dev/null and b/outlook/src/__pycache__/feat.cpython-313.pyc differ
diff --git a/outlook/src/__pycache__/gen.cpython-310.pyc b/outlook/src/__pycache__/gen.cpython-310.pyc
new file mode 100644
index 0000000..e837195
Binary files /dev/null and b/outlook/src/__pycache__/gen.cpython-310.pyc differ
diff --git a/outlook/src/__pycache__/gen.cpython-313.pyc b/outlook/src/__pycache__/gen.cpython-313.pyc
new file mode 100644
index 0000000..66150ee
Binary files /dev/null and b/outlook/src/__pycache__/gen.cpython-313.pyc differ
diff --git a/outlook/src/__pycache__/gnn.cpython-310.pyc b/outlook/src/__pycache__/gnn.cpython-310.pyc
new file mode 100644
index 0000000..0449846
Binary files /dev/null and b/outlook/src/__pycache__/gnn.cpython-310.pyc differ
diff --git a/outlook/src/__pycache__/gnn.cpython-313.pyc b/outlook/src/__pycache__/gnn.cpython-313.pyc
new file mode 100644
index 0000000..2ca0553
Binary files /dev/null and b/outlook/src/__pycache__/gnn.cpython-313.pyc differ
diff --git a/outlook/src/__pycache__/graph.cpython-310.pyc b/outlook/src/__pycache__/graph.cpython-310.pyc
new file mode 100644
index 0000000..ff74d1d
Binary files /dev/null and b/outlook/src/__pycache__/graph.cpython-310.pyc differ
diff --git a/outlook/src/__pycache__/graph.cpython-313.pyc b/outlook/src/__pycache__/graph.cpython-313.pyc
new file mode 100644
index 0000000..d20c949
Binary files /dev/null and b/outlook/src/__pycache__/graph.cpython-313.pyc differ
diff --git a/outlook/src/__pycache__/mesh.cpython-310.pyc b/outlook/src/__pycache__/mesh.cpython-310.pyc
new file mode 100644
index 0000000..6633b09
Binary files /dev/null and b/outlook/src/__pycache__/mesh.cpython-310.pyc differ
diff --git a/outlook/src/__pycache__/mesh.cpython-313.pyc b/outlook/src/__pycache__/mesh.cpython-313.pyc
new file mode 100644
index 0000000..c45f55f
Binary files /dev/null and b/outlook/src/__pycache__/mesh.cpython-313.pyc differ
diff --git a/outlook/src/__pycache__/metrics.cpython-310.pyc b/outlook/src/__pycache__/metrics.cpython-310.pyc
new file mode 100644
index 0000000..49e9958
Binary files /dev/null and b/outlook/src/__pycache__/metrics.cpython-310.pyc differ
diff --git a/outlook/src/__pycache__/metrics.cpython-313.pyc b/outlook/src/__pycache__/metrics.cpython-313.pyc
new file mode 100644
index 0000000..d7a63cb
Binary files /dev/null and b/outlook/src/__pycache__/metrics.cpython-313.pyc differ
diff --git a/outlook/src/__pycache__/problem.cpython-310.pyc b/outlook/src/__pycache__/problem.cpython-310.pyc
new file mode 100644
index 0000000..233fd83
Binary files /dev/null and b/outlook/src/__pycache__/problem.cpython-310.pyc differ
diff --git a/outlook/src/__pycache__/rollout.cpython-310.pyc b/outlook/src/__pycache__/rollout.cpython-310.pyc
new file mode 100644
index 0000000..10f90ac
Binary files /dev/null and b/outlook/src/__pycache__/rollout.cpython-310.pyc differ
diff --git a/outlook/src/__pycache__/rollout.cpython-313.pyc b/outlook/src/__pycache__/rollout.cpython-313.pyc
new file mode 100644
index 0000000..377339d
Binary files /dev/null and b/outlook/src/__pycache__/rollout.cpython-313.pyc differ
diff --git a/outlook/src/__pycache__/train.cpython-310.pyc b/outlook/src/__pycache__/train.cpython-310.pyc
new file mode 100644
index 0000000..d0d48e5
Binary files /dev/null and b/outlook/src/__pycache__/train.cpython-310.pyc differ
diff --git a/outlook/src/__pycache__/train_correction.cpython-310.pyc b/outlook/src/__pycache__/train_correction.cpython-310.pyc
new file mode 100644
index 0000000..1953557
Binary files /dev/null and b/outlook/src/__pycache__/train_correction.cpython-310.pyc differ
diff --git a/outlook/src/__pycache__/train_correction.cpython-313.pyc b/outlook/src/__pycache__/train_correction.cpython-313.pyc
new file mode 100644
index 0000000..f053409
Binary files /dev/null and b/outlook/src/__pycache__/train_correction.cpython-313.pyc differ
diff --git a/outlook/src/__pycache__/viz_correction.cpython-313.pyc b/outlook/src/__pycache__/viz_correction.cpython-313.pyc
new file mode 100644
index 0000000..62298da
Binary files /dev/null and b/outlook/src/__pycache__/viz_correction.cpython-313.pyc differ
diff --git a/outlook/src/amr.py b/outlook/src/amr.py
new file mode 100644
index 0000000..057d691
--- /dev/null
+++ b/outlook/src/amr.py
@@ -0,0 +1,133 @@
+# 残差驱动自适应网格加密(AMR)teacher:无网络,纯 residual 指标驱动。
+"""teacher_amr.py — Full residual adaptive mesh refinement as a teacher.
+
+Runs the complete residual-driven AMR loop (no network) to generate the
+final mesh that serves as the density label source.
+"""
+
+import copy
+import time
+from typing import Any, Dict, Optional
+
+import numpy as np
+from skfem import Basis, ElementTriP1
+
+from environment.helmholtz import (
+ HelmholtzProblem,
+ _compute_eps_r_at_midpoints,
+ _compute_residual_indicator,
+)
+from outlook.src.rollout import _area_eligible
+
+
+def run_residual_teacher(
+ problem: HelmholtzProblem,
+ initial_mesh=None,
+ max_elements: int = 20000,
+ max_steps: int = 20,
+ refinement_fraction: float = 0.25,
+ compute_error: bool = False,
+ params: Optional[Dict[str, float]] = None,
+) -> Dict[str, Any]:
+ """Run full residual-driven adaptive refinement (pure eta, no network).
+
+ Each step: solve FEM -> compute eta -> top-k by log(eta) -> refine -> repeat.
+
+ Parameters
+ ----------
+ problem : HelmholtzProblem
+ initial_mesh : skfem.Mesh, optional
+ If None, uses problem.initial_mesh.
+ max_elements : int
+ Stop when mesh reaches this many elements.
+ max_steps : int
+ Maximum refinement steps.
+ refinement_fraction : float
+ Fraction of current elements to refine per step.
+ compute_error : bool
+ If True, compute Mie error at the end (requires `params`).
+ params : dict, optional
+ Physical parameters for Mie error computation.
+
+ Returns
+ -------
+ dict with keys:
+ initial_mesh, teacher_mesh, elements, dofs, num_solves, history,
+ aw_rel (if compute_error), max_err (if compute_error)
+ """
+ if initial_mesh is None:
+ initial_mesh = copy.deepcopy(problem.initial_mesh)
+ else:
+ initial_mesh = copy.deepcopy(initial_mesh)
+
+ mesh = copy.deepcopy(initial_mesh)
+ history = []
+ solve_count = 0
+ t_start = time.perf_counter()
+
+ for step in range(max_steps):
+ n_elem = mesh.t.shape[1]
+ if n_elem >= max_elements:
+ break
+
+ # 1. FEM solve
+ basis = Basis(mesh, ElementTriP1())
+ u_scat = problem.calculate_solution(basis=basis, cache=False)
+ solve_count += 1
+
+ # 2. Compute residual indicator
+ eps_r_arr = _compute_eps_r_at_midpoints(
+ mesh,
+ cx=problem._cx,
+ cy=problem._cy,
+ radius=problem._radius,
+ eps_r_in=problem._eps_r,
+ )
+ eta = _compute_residual_indicator(mesh, u_scat, k=problem._k, eps_r=eps_r_arr)
+
+ # 3. Refine by eta (shared helper)
+ from outlook.src.rollout import _refine_by_eta
+ refined = _refine_by_eta(mesh, eta, refinement_fraction, max_elements)
+ if refined is None:
+ break
+
+ # Record selected cells (recompute for history)
+ area_eligible = _area_eligible(mesh)
+ log_eta = np.log(np.maximum(eta, 1e-30))
+ n_select = max(1, int(n_elem * refinement_fraction))
+ n_select = min(n_select, len(area_eligible))
+ selected = area_eligible[np.argsort(log_eta[area_eligible])[-n_select:]]
+
+ history.append({
+ "step": step,
+ "n_elements_before": n_elem,
+ "n_selected": len(selected),
+ "selected": selected.copy(),
+ "eta": eta.copy(),
+ })
+
+ mesh = refined
+
+ elapsed = time.perf_counter() - t_start
+
+ result = {
+ "initial_mesh": initial_mesh,
+ "teacher_mesh": mesh,
+ "elements": mesh.t.shape[1],
+ "dofs": mesh.p.shape[1],
+ "num_solves": solve_count,
+ "history": history,
+ "elapsed_time": elapsed,
+ }
+
+ if compute_error and params is not None:
+ from outlook.src.metrics import compute_mie_error
+ # Final solve on teacher mesh
+ basis = Basis(mesh, ElementTriP1())
+ u_final = problem.calculate_solution(basis=basis, cache=False)
+ err = compute_mie_error(mesh, u_final, params)
+ result["aw_rel"] = err["aw_rel"]
+ result["max_err"] = err["max_err"]
+ result["num_solves"] = solve_count + 1
+
+ return result
diff --git a/outlook/src/eval.py b/outlook/src/eval.py
new file mode 100644
index 0000000..357037a
--- /dev/null
+++ b/outlook/src/eval.py
@@ -0,0 +1,430 @@
+#!/usr/bin/env python3
+# 评估 budget-conditioned GNN:在多个 target_elements 下生成 mesh、求解 FEM、计算误差,输出 Pareto 图。
+"""
+run_eval_budgeted.py
+====================
+Evaluate budget-conditioned DensityGNN at multiple target element budgets.
+
+Compares GNN predictions against geometric baseline, producing per-budget
+metrics (aw_rel, max_err, elements, dofs) and Pareto plots.
+
+Usage:
+ python outlook/src/eval.py --checkpoint outlook/ckpt/budgeted.pt --target-elements 4000,8000 --models gnn,geo
+"""
+
+import argparse
+import csv
+import json
+import sys
+import time
+from pathlib import Path
+from typing import Dict, List
+
+import numpy as np
+
+_PROJECT_ROOT = Path(__file__).resolve().parent.parent.parent
+sys.path.insert(0, str(_PROJECT_ROOT))
+
+import torch
+from skfem import Basis, ElementTriP1
+
+from outlook.src.feat import append_budget_feature, build_initial_cell_features
+from outlook.src.graph import build_graph_from_mesh
+from outlook.src.mesh import generate_mesh_from_scores
+from outlook.src.metrics import compute_mie_error
+from outlook.src.problem import create_problem_from_params
+from outlook.src.gnn import DensityGNN
+
+OUTLOOK_DIR = _PROJECT_ROOT / "outlook"
+RESULT_DIR = OUTLOOK_DIR / "result"
+
+
+# ============================================================================
+# Model loading
+# ============================================================================
+
+
+def load_budgeted_gnn(checkpoint_path: str, device: str = "cpu") -> tuple:
+ """Load budget-conditioned GNN from checkpoint.
+
+ Returns (model, normalizer, config).
+ """
+ ckpt = torch.load(checkpoint_path, map_location=device, weights_only=False)
+ config = ckpt["config"]
+ normalizer = ckpt["normalizer"]
+
+ model = DensityGNN(
+ node_dim=config.get("node_dim", 16),
+ edge_dim=config.get("edge_dim", 1),
+ latent_dim=config["latent_dim"],
+ num_mp_steps=config["num_mp_steps"],
+ head_hidden=config["head_hidden"],
+ edge_dropout=0.0, # no dropout at eval
+ )
+ model.load_state_dict(ckpt["model_state_dict"])
+ model.eval()
+ model.to(device)
+ return model, normalizer, config
+
+
+# ============================================================================
+# Prediction helpers
+# ============================================================================
+
+
+def predict_budgeted_gnn(
+ model,
+ normalizer: dict,
+ initial_mesh,
+ params: dict,
+ target_elements: int,
+ device: str = "cpu",
+) -> np.ndarray:
+ """Predict density scores using budget-conditioned GNN.
+
+ Uses target_elements (not actual) as budget_code at inference.
+ """
+ n_init = initial_mesh.t.shape[1]
+
+ # Build 16-dim features: base + budget_code
+ features_base = build_initial_cell_features(initial_mesh, params, budget_ratio=1.0)
+ # Use the first 15 columns (drop the old budget_ratio column)
+ features_15 = features_base[:, :15]
+ features_16 = append_budget_feature(features_15, float(target_elements), n_init)
+
+ # Normalize
+ mean = np.array(normalizer["mean"], dtype=np.float32)
+ scale = np.array(normalizer["scale"], dtype=np.float32)
+ features_norm = (features_16 - mean) / scale
+
+ # Build graph
+ graph = build_graph_from_mesh(initial_mesh, params, budget_ratio=1.0)
+ graph.x = torch.tensor(features_norm, dtype=torch.float32)
+ graph = graph.to(device)
+
+ with torch.no_grad():
+ scores = model(graph).cpu().numpy()
+ return scores
+
+
+def geometric_baseline(initial_mesh, params: dict, **kwargs) -> np.ndarray:
+ """Geometric heuristic: score by proximity to scatterer interface."""
+ midpoints = np.mean(initial_mesh.p[:, initial_mesh.t], axis=1).T
+ cx, cy, radius = params["cx"], params["cy"], params["radius"]
+ dist = np.sqrt((midpoints[:, 0] - cx) ** 2 + (midpoints[:, 1] - cy) ** 2)
+ scores = 1.0 / (1.0 + np.abs(dist - radius))
+ return scores
+
+
+# ============================================================================
+# Single evaluation: generate mesh → solve → compute error
+# ============================================================================
+
+
+def evaluate_one(
+ scores: np.ndarray,
+ initial_mesh,
+ params: dict,
+ target_elements: int,
+ problem,
+) -> dict:
+ """Generate mesh from scores, solve FEM, compute Mie error."""
+ result = generate_mesh_from_scores(initial_mesh, scores, target_elements)
+ mesh = result["final_mesh"]
+ actual_elements = result["actual_elements"]
+
+ # FEM solve
+ basis = Basis(mesh, ElementTriP1())
+ u_fem = problem.calculate_solution(basis=basis, cache=False)
+
+ # Mie error
+ err = compute_mie_error(mesh, u_fem, params)
+
+ return {
+ "actual_elements": actual_elements,
+ "overshoot_ratio": result["overshoot_ratio"],
+ "n_steps": result["n_steps"],
+ "aw_rel": err["aw_rel"],
+ "max_err": err["max_err"],
+ "dofs": err["DoF"],
+ "num_solves": 1,
+ }
+
+
+# ============================================================================
+# Main evaluation loop
+# ============================================================================
+
+
+def run_evaluation(
+ checkpoint_path: str,
+ data_dir: Path,
+ target_elements_list: List[int],
+ models_to_eval: List[str],
+ device: str = "cpu",
+ val_ratio: float = 0.2,
+ seed: int = 42,
+) -> List[dict]:
+ """Run full evaluation across samples, budgets, and methods."""
+ data_dir = Path(data_dir)
+
+ # Load model if needed
+ gnn_model = None
+ normalizer = None
+ if "gnn" in models_to_eval:
+ gnn_model, normalizer, _ = load_budgeted_gnn(checkpoint_path, device)
+ print(f" Loaded GNN from {checkpoint_path}")
+
+ # Load dataset params
+ params_data = np.load(data_dir / "params_list.npz")
+ params_array = params_data["params"]
+ n_samples = len(params_array)
+
+ # Use validation split (same logic as training)
+ rng = np.random.RandomState(seed)
+ indices = np.arange(n_samples)
+ rng.shuffle(indices)
+ n_val = max(1, int(n_samples * val_ratio))
+ test_indices = sorted(indices[:n_val].tolist())
+ print(f" Test samples: {test_indices} (of {n_samples})")
+
+ all_records = []
+
+ for sid in test_indices:
+ d = np.load(data_dir / f"{sid:04d}.npz")
+ params = {
+ "k": float(d["k"]),
+ "eps_r": float(d["eps_r"]),
+ "cx": float(d["cx"]),
+ "cy": float(d["cy"]),
+ "radius": float(d["radius"]),
+ }
+ n_init = int(d["n_init"])
+
+ # Reconstruct problem and initial mesh
+ problem, initial_mesh = create_problem_from_params(params)
+
+ # Teacher reference from dataset (if available)
+ dataset_budgets = d["budgets"]
+ dataset_actual = d["actual_elements"]
+ dataset_aw_rel = d["teacher_aw_rel"]
+ dataset_max_err = d["teacher_max_err"]
+
+ for target in target_elements_list:
+ print(f"\n [{sid:04d}] k={params['k']:.1f} eps={params['eps_r']:.1f} "
+ f"r={params['radius']:.3f} | target={target}")
+
+ for method in models_to_eval:
+ t0 = time.perf_counter()
+
+ if method == "gnn":
+ scores = predict_budgeted_gnn(
+ gnn_model, normalizer, initial_mesh, params, target, device
+ )
+ elif method == "geo":
+ scores = geometric_baseline(initial_mesh, params)
+ else:
+ print(f" Unknown method: {method}, skipping")
+ continue
+
+ result = evaluate_one(scores, initial_mesh, params, target, problem)
+ elapsed = time.perf_counter() - t0
+
+ record = {
+ "method": method,
+ "sample_id": sid,
+ "target_elements": target,
+ "actual_elements": result["actual_elements"],
+ "overshoot_ratio": result["overshoot_ratio"],
+ "aw_rel": result["aw_rel"],
+ "max_err": result["max_err"],
+ "dofs": result["dofs"],
+ "num_solves": result["num_solves"],
+ "elapsed_s": elapsed,
+ }
+ all_records.append(record)
+
+ print(f" {method:5s} → elements={result['actual_elements']:6d} "
+ f"overshoot={result['overshoot_ratio']:.3f} "
+ f"aw_rel={result['aw_rel']:.4f} max_err={result['max_err']:.4f} "
+ f"({elapsed:.1f}s)")
+
+ # Print teacher reference if available
+ for bi, budget in enumerate(dataset_budgets):
+ if int(budget) == target:
+ aw = dataset_aw_rel[bi]
+ me = dataset_max_err[bi]
+ ae = dataset_actual[bi]
+ if not np.isnan(aw):
+ print(f" teacher → elements={ae:6d} "
+ f"aw_rel={aw:.4f} max_err={me:.4f} (from dataset)")
+
+ return all_records
+
+
+# ============================================================================
+# Output: JSON, CSV, Pareto plots
+# ============================================================================
+
+
+def save_results(records: List[dict], out_dir: Path):
+ """Save eval_results.json and summary.csv."""
+ out_dir = Path(out_dir)
+ out_dir.mkdir(parents=True, exist_ok=True)
+
+ # JSON
+ json_path = out_dir / "eval_results.json"
+ with open(json_path, "w") as f:
+ json.dump(records, f, indent=2)
+ print(f" JSON saved: {json_path}")
+
+ # CSV
+ csv_path = out_dir / "summary.csv"
+ if records:
+ fieldnames = list(records[0].keys())
+ with open(csv_path, "w", newline="") as f:
+ writer = csv.DictWriter(f, fieldnames=fieldnames)
+ writer.writeheader()
+ writer.writerows(records)
+ print(f" CSV saved: {csv_path}")
+
+
+def plot_pareto(records: List[dict], out_dir: Path):
+ """Generate Pareto plots: aw_rel vs elements, max_err vs elements, aw_rel vs solves."""
+ import matplotlib
+ matplotlib.use("Agg")
+ import matplotlib.pyplot as plt
+
+ out_dir = Path(out_dir)
+ out_dir.mkdir(parents=True, exist_ok=True)
+
+ methods = sorted(set(r["method"] for r in records))
+ colors = {"gnn": "tab:blue", "geo": "tab:orange", "teacher": "tab:green"}
+
+ # --- aw_rel vs elements ---
+ fig, ax = plt.subplots(figsize=(7, 5))
+ for method in methods:
+ subset = [r for r in records if r["method"] == method]
+ elems = [r["actual_elements"] for r in subset]
+ aw = [r["aw_rel"] for r in subset]
+ ax.scatter(elems, aw, label=method, color=colors.get(method, "gray"), alpha=0.7, s=40)
+ ax.set_xlabel("Elements")
+ ax.set_ylabel("aw_rel")
+ ax.set_title("aw_rel vs Elements")
+ ax.legend()
+ ax.grid(True, alpha=0.3)
+ fig.tight_layout()
+ fig.savefig(out_dir / "aw_rel_vs_elements.png", dpi=100)
+ plt.close(fig)
+ print(f" Plot: {out_dir / 'aw_rel_vs_elements.png'}")
+
+ # --- max_err vs elements ---
+ fig, ax = plt.subplots(figsize=(7, 5))
+ for method in methods:
+ subset = [r for r in records if r["method"] == method]
+ elems = [r["actual_elements"] for r in subset]
+ me = [r["max_err"] for r in subset]
+ ax.scatter(elems, me, label=method, color=colors.get(method, "gray"), alpha=0.7, s=40)
+ ax.set_xlabel("Elements")
+ ax.set_ylabel("max_err")
+ ax.set_title("max_err vs Elements")
+ ax.legend()
+ ax.grid(True, alpha=0.3)
+ fig.tight_layout()
+ fig.savefig(out_dir / "max_err_vs_elements.png", dpi=100)
+ plt.close(fig)
+ print(f" Plot: {out_dir / 'max_err_vs_elements.png'}")
+
+ # --- aw_rel vs solves ---
+ fig, ax = plt.subplots(figsize=(7, 5))
+ for method in methods:
+ subset = [r for r in records if r["method"] == method]
+ solves = [r["num_solves"] for r in subset]
+ aw = [r["aw_rel"] for r in subset]
+ ax.scatter(solves, aw, label=method, color=colors.get(method, "gray"), alpha=0.7, s=40)
+ ax.set_xlabel("Num Solves")
+ ax.set_ylabel("aw_rel")
+ ax.set_title("aw_rel vs Solves")
+ ax.legend()
+ ax.grid(True, alpha=0.3)
+ fig.tight_layout()
+ fig.savefig(out_dir / "aw_rel_vs_solves.png", dpi=100)
+ plt.close(fig)
+ print(f" Plot: {out_dir / 'aw_rel_vs_solves.png'}")
+
+
+# ============================================================================
+# CLI
+# ============================================================================
+
+
+def main():
+ parser = argparse.ArgumentParser(description="Evaluate budget-conditioned models")
+ parser.add_argument("--checkpoint", type=str, required=True,
+ help="Path to budgeted GNN checkpoint")
+ parser.add_argument("--data-dir", type=str,
+ default=str(OUTLOOK_DIR / "data"),
+ help="Path to budget dataset directory")
+ parser.add_argument("--target-elements", type=str, required=True,
+ help="Comma-separated target element counts")
+ parser.add_argument("--models", type=str, default="gnn,geo",
+ help="Comma-separated models to evaluate (gnn,geo)")
+ parser.add_argument("--device", type=str, default="cpu")
+ parser.add_argument("--output-dir", type=str, default=str(RESULT_DIR))
+ parser.add_argument("--val-ratio", type=float, default=0.2)
+ parser.add_argument("--seed", type=int, default=42)
+ args = parser.parse_args()
+
+ device = args.device
+ if device == "cuda" and not torch.cuda.is_available():
+ print("CUDA unavailable, falling back to CPU")
+ device = "cpu"
+
+ target_elements_list = [int(x) for x in args.target_elements.split(",")]
+ models_to_eval = [x.strip() for x in args.models.split(",")]
+ out_dir = Path(args.output_dir)
+
+ print("=" * 60)
+ print("Budgeted Evaluation")
+ print("=" * 60)
+ print(f" Checkpoint: {args.checkpoint}")
+ print(f" Data dir: {args.data_dir}")
+ print(f" Target elements: {target_elements_list}")
+ print(f" Models: {models_to_eval}")
+ print(f" Device: {device}")
+ print(f" Output: {out_dir}")
+ print()
+
+ records = run_evaluation(
+ checkpoint_path=args.checkpoint,
+ data_dir=args.data_dir,
+ target_elements_list=target_elements_list,
+ models_to_eval=models_to_eval,
+ device=device,
+ val_ratio=args.val_ratio,
+ seed=args.seed,
+ )
+
+ print(f"\n{'='*60}")
+ print(f"Saving results to {out_dir}")
+ print(f"{'='*60}")
+ save_results(records, out_dir)
+ plot_pareto(records, out_dir)
+
+ # Print summary table
+ print(f"\n{'='*60}")
+ print("Summary")
+ print(f"{'='*60}")
+ print(f" {'method':8s} {'target':>7s} {'actual':>7s} {'overshoot':>10s} "
+ f"{'aw_rel':>8s} {'max_err':>8s} {'dofs':>6s}")
+ print(f" {'-'*8} {'-'*7} {'-'*7} {'-'*10} {'-'*8} {'-'*8} {'-'*6}")
+ for r in records:
+ print(f" {r['method']:8s} {r['target_elements']:7d} {r['actual_elements']:7d} "
+ f"{r['overshoot_ratio']:10.3f} {r['aw_rel']:8.4f} {r['max_err']:8.4f} "
+ f"{r['dofs']:6d}")
+
+ print("\nDone.")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/outlook/src/eval_correction.py b/outlook/src/eval_correction.py
new file mode 100644
index 0000000..8701534
--- /dev/null
+++ b/outlook/src/eval_correction.py
@@ -0,0 +1,392 @@
+#!/usr/bin/env python3
+"""
+eval_correction.py
+==================
+Rollout evaluation of correction GNN on AMR refinement.
+
+From the initial mesh, drives iterative refinement using one of three scoring
+methods (physics-only, neural-only, hybrid). At every step the mesh geometry
+and physics features are recomputed, but there is **no** teacher_eta, **no**
+residual marking, and **no** intermediate FEM solve. Only the final mesh gets
+a single FEM solve for error evaluation.
+
+Methods
+-------
+physics — score = physics_score
+neural — score = model(features + physics_score)
+hybrid — score = alpha * norm(physics_score) + beta * norm(model_score)
+
+Usage
+-----
+python outlook/src/eval_correction.py \
+ --checkpoint outlook/ckpt/correction.pt \
+ --data-dir outlook/data_correction \
+ --target-elements 1000,2000,4000,8000 \
+ --mark-fraction 0.03 \
+ --max-steps 40 \
+ --methods physics,neural,hybrid \
+ --device cuda \
+ --output-dir outlook/result/correction/rollout
+"""
+
+import argparse
+import csv
+import json
+import sys
+from pathlib import Path
+
+import numpy as np
+
+_PROJECT_ROOT = Path(__file__).resolve().parent.parent.parent
+if str(_PROJECT_ROOT) not in sys.path:
+ sys.path.insert(0, str(_PROJECT_ROOT))
+
+import torch
+
+from outlook.src.rollout import run_rollout_to_budget, load_model
+
+
+# ============================================================================
+# Validation split (must mirror train_correction.py)
+# ============================================================================
+
+
+def get_validation_ids(n_samples: int, val_ratio: float, seed: int) -> set:
+ """Reproduce the train/val split from train_correction.py."""
+ rng = np.random.RandomState(seed)
+ indices = np.arange(n_samples)
+ rng.shuffle(indices)
+ n_val = max(1, int(n_samples * val_ratio))
+ return set(int(indices[i]) for i in range(n_val))
+
+
+# ============================================================================
+# Plotting helpers
+# ============================================================================
+
+
+def _plot_metric_vs_elements(ax, grouped, methods, metric, ylabel, title):
+ """Plot a metric vs actual_elements for each method on *ax*."""
+ COLORS = {"physics": "#2196F3", "neural": "#E91E63", "hybrid": "#4CAF50"}
+
+ for method in methods:
+ if method not in grouped:
+ continue
+ xs = sorted(grouped[method].keys())
+ means = [grouped[method][x][f"mean_{metric}"] for x in xs]
+ stds = [grouped[method][x][f"std_{metric}"] for x in xs]
+ ax.errorbar(xs, means, yerr=stds, label=method, color=COLORS.get(method),
+ marker="o", markersize=4, linewidth=1.5, capsize=3)
+
+ ax.set_xlabel("Actual elements")
+ ax.set_ylabel(ylabel)
+ ax.set_title(title)
+ ax.legend()
+ ax.grid(True, alpha=0.3)
+
+
+# ============================================================================
+# Main
+# ============================================================================
+
+
+def main():
+ parser = argparse.ArgumentParser(description="Rollout evaluation of correction GNN")
+ parser.add_argument("--checkpoint", type=str, required=True)
+ parser.add_argument("--data-dir", type=str, default="outlook/data_correction")
+ parser.add_argument("--target-elements", type=str, default="1000,2000,4000,8000")
+ parser.add_argument("--mark-fraction", type=float, default=0.03)
+ parser.add_argument("--max-steps", type=int, default=40)
+ parser.add_argument("--methods", type=str, default="physics,neural,hybrid")
+ parser.add_argument("--alpha", type=float, default=0.5)
+ parser.add_argument("--beta", type=float, default=0.5)
+ parser.add_argument("--budget-mode", type=str, default="fast",
+ choices=["fast", "strict"],
+ help="Budget enforcement: 'fast' (simple min-cap) or 'strict' (binary search + area safety)")
+ parser.add_argument("--device", type=str, default="cpu")
+ parser.add_argument("--output-dir", type=str, default="outlook/result/correction/rollout")
+ parser.add_argument("--seed", type=int, default=None,
+ help="Random seed (default: use training seed from checkpoint)")
+ args = parser.parse_args()
+
+ device = args.device
+ if device == "cuda" and not torch.cuda.is_available():
+ print("CUDA unavailable, falling back to CPU")
+ device = "cpu"
+
+ targets = [int(t) for t in args.target_elements.split(",")]
+ methods = [m.strip() for m in args.methods.split(",")]
+ output_dir = Path(args.output_dir)
+ output_dir.mkdir(parents=True, exist_ok=True)
+
+ # ── Load model (only if a neural method is requested) ─────────────────
+ need_model = any(m in ("neural", "hybrid") for m in methods)
+ model, normalizer, config = (None, None, None)
+ if need_model:
+ print(f"Loading checkpoint: {args.checkpoint}")
+ model, normalizer, config = load_model(args.checkpoint, device)
+ print(f" Model: latent_dim={config['latent_dim']}, "
+ f"mp_steps={config['num_mp_steps']}")
+
+ # ── Load sample params ────────────────────────────────────────────────
+ data_dir = Path(args.data_dir)
+ params_list_path = data_dir / "params_list.npz"
+ if not params_list_path.exists():
+ print(f"Error: {params_list_path} not found")
+ return
+
+ params_data = np.load(params_list_path)
+ params_array = params_data["params"]
+ n_samples = len(params_array)
+ print(f" Samples: {n_samples}")
+
+ # ── Determine validation split ────────────────────────────────────────
+ seed = args.seed if args.seed is not None else (config.get("seed", 42) if config else 42)
+ val_ratio = 0.2
+ val_ids = get_validation_ids(n_samples, val_ratio, seed)
+ sample_ids = sorted(val_ids)
+ print(f" Validation samples: {len(sample_ids)} (seed={seed}, val_ratio={val_ratio})")
+
+ # ── Run rollouts ──────────────────────────────────────────────────────
+ all_results = []
+
+ for sample_id in sample_ids:
+ row = params_array[sample_id]
+ params = {
+ "k": float(row[0]), "eps_r": float(row[1]),
+ "cx": float(row[2]), "cy": float(row[3]), "radius": float(row[4]),
+ }
+ print(f"\n[Sample {sample_id:04d}] k={params['k']:.2f} "
+ f"eps_r={params['eps_r']:.2f} r={params['radius']:.3f}")
+
+ for target in targets:
+ for method in methods:
+ result = run_rollout_to_budget(
+ method, params, target,
+ model=model, normalizer=normalizer,
+ mark_fraction=args.mark_fraction,
+ max_steps=args.max_steps,
+ device=device, seed=seed,
+ alpha=args.alpha, beta=args.beta,
+ budget_mode=args.budget_mode,
+ )
+ result.update({
+ "sample_id": sample_id, "method": method,
+ "target_elements": target, "params": params,
+ })
+ all_results.append(result)
+
+ aw_pct = f"{result['aw_rel']*100:.2f}%" if not np.isnan(result['aw_rel']) else "nan"
+ score_stats = result.get("score_stats", [])
+ if score_stats:
+ last = score_stats[-1]
+ print(f" {method:8s} target={target:6d} "
+ f"actual={result['actual_elements']:6d} "
+ f"steps={result['num_steps']:2d} aw_rel={aw_pct} "
+ f"score_mean={last['score_mean']:.3f} "
+ f"frac(>1)={last['fraction_gt1']:.3f} "
+ f"gap={last['gap']}")
+ else:
+ print(f" {method:8s} target={target:6d} "
+ f"actual={result['actual_elements']:6d} "
+ f"steps={result['num_steps']:2d} aw_rel={aw_pct}")
+
+ # ── Aggregate ─────────────────────────────────────────────────────────
+ from collections import defaultdict
+ stats = {} # (method, target) → aggregated stats
+ grouped = {} # method → {actual_elements → {mean_aw_rel, ...}}
+
+ for method in methods:
+ for target in targets:
+ rows = [r for r in all_results
+ if r["method"] == method and r["target_elements"] == target]
+ if not rows:
+ continue
+
+ aw_vals = [r["aw_rel"] for r in rows if not np.isnan(r["aw_rel"])]
+ me_vals = [r["max_err"] for r in rows if not np.isnan(r["max_err"])]
+ el_vals = [r["actual_elements"] for r in rows]
+ st_vals = [r["num_steps"] for r in rows]
+ sv_vals = [r["num_solves"] for r in rows]
+
+ stats[(method, target)] = {
+ "method": method, "target_elements": target,
+ "mean_actual_elements": float(np.mean(el_vals)),
+ "mean_aw_rel": float(np.mean(aw_vals)) if aw_vals else float("nan"),
+ "std_aw_rel": float(np.std(aw_vals)) if aw_vals else float("nan"),
+ "mean_max_err": float(np.mean(me_vals)) if me_vals else float("nan"),
+ "std_max_err": float(np.std(me_vals)) if me_vals else float("nan"),
+ "mean_num_steps": float(np.mean(st_vals)),
+ "mean_num_solves": float(np.mean(sv_vals)),
+ "n_samples": len(rows),
+ }
+
+ # Group by actual_elements for plotting (bin into 50-elem buckets)
+ method_rows = [r for r in all_results if r["method"] == method]
+ if not method_rows:
+ continue
+ bins = defaultdict(list)
+ for r in method_rows:
+ bucket = round(r["actual_elements"] / 50) * 50
+ bins[bucket].append(r)
+ grouped[method] = {}
+ for bucket in sorted(bins.keys()):
+ bucket_rows = bins[bucket]
+ aw = [r["aw_rel"] for r in bucket_rows if not np.isnan(r["aw_rel"])]
+ me = [r["max_err"] for r in bucket_rows if not np.isnan(r["max_err"])]
+ grouped[method][bucket] = {
+ "mean_aw_rel": float(np.mean(aw)) if aw else float("nan"),
+ "std_aw_rel": float(np.std(aw)) if aw else float("nan"),
+ "mean_max_err": float(np.mean(me)) if me else float("nan"),
+ "std_max_err": float(np.std(me)) if me else float("nan"),
+ "count": len(bucket_rows),
+ }
+
+ # ── Improvement ratios (per-sample, vs physics-only) ──────────────────
+ improvements = {}
+ for target in targets:
+ phys = {r["sample_id"]: r for r in all_results
+ if r["method"] == "physics" and r["target_elements"] == target}
+ for method in methods:
+ if method == "physics":
+ continue
+ others = {r["sample_id"]: r for r in all_results
+ if r["method"] == method and r["target_elements"] == target}
+ ratios_aw, ratios_me = [], []
+ for sid in phys:
+ if sid not in others:
+ continue
+ pa, oa = phys[sid]["aw_rel"], others[sid]["aw_rel"]
+ if not np.isnan(pa) and not np.isnan(oa) and pa > 1e-12:
+ ratios_aw.append((pa - oa) / pa * 100)
+ pm, om = phys[sid]["max_err"], others[sid]["max_err"]
+ if not np.isnan(pm) and not np.isnan(om) and pm > 1e-12:
+ ratios_me.append((pm - om) / pm * 100)
+ improvements[(method, target)] = {
+ "mean_aw_rel_improvement_pct": float(np.mean(ratios_aw)) if ratios_aw else 0.0,
+ "mean_max_err_improvement_pct": float(np.mean(ratios_me)) if ratios_me else 0.0,
+ "mean_actual_elements_physics": float(np.mean([phys[s]["actual_elements"] for s in phys])),
+ "mean_actual_elements_method": float(np.mean([others[s]["actual_elements"] for s in others])),
+ "n_paired": len(ratios_aw),
+ }
+
+ # ── Save JSON ─────────────────────────────────────────────────────────
+ # Strip non-serializable keys from per-sample results for JSON
+ _SKIP_KEYS = {"params", "mesh", "u_scat", "steps"}
+ json_results = []
+ for r in all_results:
+ entry = {k: v for k, v in r.items() if k not in _SKIP_KEYS}
+ # Convert numpy floats to Python floats
+ for k, v in entry.items():
+ if isinstance(v, (np.floating, np.integer)):
+ entry[k] = float(v)
+ # Convert numpy values inside score_stats
+ if "score_stats" in entry:
+ clean_stats = []
+ for s in entry["score_stats"]:
+ clean_stats.append({
+ sk: float(sv) if isinstance(sv, (np.floating, np.integer)) else sv
+ for sk, sv in s.items()
+ })
+ entry["score_stats"] = clean_stats
+ json_results.append(entry)
+
+ json_out = {
+ "results": json_results,
+ "summary": {f"{m}_{t}": s for (m, t), s in stats.items()},
+ "improvements": {f"{m}_{t}": imp for (m, t), imp in improvements.items()},
+ "config": {
+ "checkpoint": args.checkpoint,
+ "data_dir": args.data_dir,
+ "target_elements": targets,
+ "mark_fraction": args.mark_fraction,
+ "max_steps": args.max_steps,
+ "methods": methods,
+ "alpha": args.alpha,
+ "beta": args.beta,
+ "seed": seed,
+ "n_eval_samples": len(sample_ids),
+ },
+ }
+ json_path = output_dir / "eval_results.json"
+ with open(json_path, "w") as f:
+ json.dump(json_out, f, indent=2, default=str)
+ print(f"\nJSON → {json_path}")
+
+ # ── Save CSV ──────────────────────────────────────────────────────────
+ csv_path = output_dir / "summary.csv"
+ csv_cols = [
+ "method", "target_elements", "mean_actual_elements",
+ "mean_aw_rel", "std_aw_rel", "mean_max_err", "std_max_err",
+ "mean_num_steps", "mean_num_solves", "n_samples",
+ ]
+ with open(csv_path, "w", newline="") as f:
+ writer = csv.DictWriter(f, fieldnames=csv_cols)
+ writer.writeheader()
+ for (method, target) in sorted(stats.keys()):
+ writer.writerow({c: stats[(method, target)].get(c, "") for c in csv_cols})
+ print(f"CSV → {csv_path}")
+
+ # ── Plots ─────────────────────────────────────────────────────────────
+ import matplotlib
+ matplotlib.use("Agg")
+ import matplotlib.pyplot as plt
+
+ suptitle = (f"Rollout Evaluation | mark_fraction={args.mark_fraction} "
+ f"max_steps={args.max_steps}")
+
+ fig, ax = plt.subplots(figsize=(8, 5))
+ _plot_metric_vs_elements(ax, grouped, methods, "aw_rel",
+ "aw_rel", "Area-Weighted Relative Error")
+ fig.suptitle(suptitle, fontsize=12)
+ fig.tight_layout()
+ fig.savefig(output_dir / "aw_rel_vs_elements.png", dpi=150, bbox_inches="tight")
+ plt.close(fig)
+
+ fig, ax = plt.subplots(figsize=(8, 5))
+ _plot_metric_vs_elements(ax, grouped, methods, "max_err",
+ "max_err", "Max Pointwise Error")
+ fig.suptitle(suptitle, fontsize=12)
+ fig.tight_layout()
+ fig.savefig(output_dir / "max_err_vs_elements.png", dpi=150, bbox_inches="tight")
+ plt.close(fig)
+ print(f"Plots → {output_dir / 'aw_rel_vs_elements.png'}")
+ print(f" {output_dir / 'max_err_vs_elements.png'}")
+
+ # ── Print summary ─────────────────────────────────────────────────────
+ print(f"\n{'='*90}")
+ print(f"{'Method':8s} {'Target':>8s} {'Actual':>8s} {'aw_rel':>10s} "
+ f"{'max_err':>10s} {'Steps':>6s} {'Solves':>7s}")
+ print(f"{'-'*90}")
+ for (method, target) in sorted(stats.keys()):
+ s = stats[(method, target)]
+ aw_s = f"{s['mean_aw_rel']*100:.2f}%" if not np.isnan(s["mean_aw_rel"]) else "nan"
+ print(f"{s['method']:8s} {s['target_elements']:8d} "
+ f"{s['mean_actual_elements']:8.0f} {aw_s:>10s} "
+ f"{s['mean_max_err']:10.4f} {s['mean_num_steps']:6.1f} "
+ f"{s['mean_num_solves']:7.1f}")
+
+ print(f"\n{'='*90}")
+ print("Improvement vs physics-only (%)")
+ print(f"{'='*90}")
+ print(f"{'Method':8s} {'Target':>8s} {'aw_rel':>10s} {'max_err':>10s} "
+ f"{'Actual(method)':>15s} {'Actual(physics)':>16s} {'N':>4s}")
+ print(f"{'-'*90}")
+ for (method, target) in sorted(improvements.keys()):
+ imp = improvements[(method, target)]
+ print(f"{method:8s} {target:8d} "
+ f"{imp['mean_aw_rel_improvement_pct']:+9.1f}% "
+ f"{imp['mean_max_err_improvement_pct']:+9.1f}% "
+ f"{imp['mean_actual_elements_method']:15.0f} "
+ f"{imp['mean_actual_elements_physics']:16.0f} "
+ f"{imp['n_paired']:4d}")
+
+ print("\nDone.")
+
+
+# ============================================================================
+# Entry point
+# ============================================================================
+
+if __name__ == "__main__":
+ main()
diff --git a/outlook/src/feat.py b/outlook/src/feat.py
new file mode 100644
index 0000000..b9cfe48
--- /dev/null
+++ b/outlook/src/feat.py
@@ -0,0 +1,108 @@
+# 构建每个初始单元的 15 维特征 + budget_code(第 16 维)。
+"""feature_builder.py — Construct per-cell input features for the density network.
+
+Features are strictly limited to initial geometry and physical parameters.
+NO FEM solution, NO residual estimator, NO teacher information.
+"""
+
+import numpy as np
+
+from environment.fem_util import get_element_midpoints, get_triangle_areas_from_indices
+
+# Feature names for reference
+FEATURE_NAMES_V2 = [
+ "x", # 0 cell center x
+ "y", # 1 cell center y
+ "area", # 2 cell area
+ "dist_center", # 3 distance to cylinder center
+ "signed_dist", # 4 signed distance to interface
+ "inside", # 5 inside dielectric (0/1)
+ "k", # 6 wave number
+ "eps_r", # 7 relative permittivity
+ "radius", # 8 cylinder radius
+ "cx", # 9 cylinder center x
+ "cy", # 10 cylinder center y
+ "k_h", # 11 k * sqrt(area)
+ "k_eps_h", # 12 k * sqrt(eps_r_local) * sqrt(area)
+ "sin_kx", # 13 sin(k*x) incident phase
+ "cos_kx", # 14 cos(k*x) incident phase
+ "budget_ratio", # 15 budget ratio conditioning
+]
+
+
+def build_initial_cell_features(initial_mesh, params, budget_ratio=1.0):
+ """Construct 16-dim per-cell features for the density prediction network.
+
+ Parameters
+ ----------
+ initial_mesh : skfem.Mesh
+ params : dict
+ Must contain: k, eps_r, cx, cy, radius
+ budget_ratio : float
+ Target budget as fraction of teacher mesh size (default 1.0).
+
+ Returns
+ -------
+ features : (N_cells, 16) float32
+ """
+ k = params["k"]
+ eps_r_val = params["eps_r"]
+ cx = params["cx"]
+ cy = params["cy"]
+ radius = params["radius"]
+
+ midpoints = get_element_midpoints(initial_mesh)
+ x, y = midpoints[:, 0], midpoints[:, 1]
+
+ areas = get_triangle_areas_from_indices(
+ positions=initial_mesh.p.T, triangle_indices=initial_mesh.t.T
+ )
+
+ dist_to_center = np.sqrt((x - cx) ** 2 + (y - cy) ** 2)
+ signed_dist = dist_to_center - radius
+ inside = ((x - cx) ** 2 + (y - cy) ** 2 <= radius ** 2).astype(np.float32)
+ eps_r_local = np.where(inside > 0.5, eps_r_val, 1.0)
+
+ sqrt_area = np.sqrt(np.maximum(areas, 1e-15))
+ k_h = k * sqrt_area
+ k_eps_h = k * np.sqrt(eps_r_local) * sqrt_area
+ sin_kx = np.sin(k * x)
+ cos_kx = np.cos(k * x)
+
+ features = np.column_stack([
+ x, y, areas, dist_to_center, signed_dist, inside,
+ np.full_like(x, k), np.full_like(x, eps_r_val),
+ np.full_like(x, radius), np.full_like(x, cx), np.full_like(x, cy),
+ k_h, k_eps_h, sin_kx, cos_kx,
+ np.full_like(x, budget_ratio),
+ ]).astype(np.float32)
+
+ return features
+
+
+def append_budget_feature(
+ features_base: np.ndarray,
+ target_elements: float,
+ n_init: int,
+) -> np.ndarray:
+ """Append budget_code as the 16th feature dimension.
+
+ budget_code = log(target_elements / n_init)
+
+ Parameters
+ ----------
+ features_base : (n_init, 15) float32
+ Base 15-dim features (no budget info).
+ target_elements : int or float
+ Target element budget.
+ n_init : int
+ Number of initial mesh cells.
+
+ Returns
+ -------
+ features : (n_init, 16) float32
+ Features with budget_code appended as last column.
+ """
+ budget_code = np.log(target_elements / n_init)
+ budget_col = np.full((n_init, 1), budget_code, dtype=np.float32)
+ return np.concatenate([features_base, budget_col], axis=1)
diff --git a/outlook/src/gen.py b/outlook/src/gen.py
new file mode 100644
index 0000000..ac56a55
--- /dev/null
+++ b/outlook/src/gen.py
@@ -0,0 +1,712 @@
+#!/usr/bin/env python3
+"""
+gen.py — Step-wise physics-guided refinement correction data generation.
+
+For each PDE sample, runs a residual-driven AMR loop and at every step saves:
+ - cell features (15-dim)
+ - physics_score (h / lambda_eff per cell)
+ - teacher_eta (residual estimator)
+ - teacher_mark (top-fraction by eta)
+ - physics_mark (top-fraction by physics_score)
+ - correction_label = teacher_mark - physics_mark
+
+Output: one .npz per (sample, step), plus a summary.json.
+
+Usage:
+ python outlook/src/gen.py --n-samples 20 --max-elements 12000 --max-steps 20
+"""
+
+import argparse
+import json
+import sys
+import time
+from pathlib import Path
+
+import numpy as np
+
+_PROJECT_ROOT = Path(__file__).resolve().parent.parent.parent
+sys.path.insert(0, str(_PROJECT_ROOT))
+
+from environment.helmholtz import (
+ HelmholtzProblem,
+ _compute_eps_r_at_midpoints,
+ _compute_residual_indicator,
+)
+
+OUTLOOK_DIR = _PROJECT_ROOT / "outlook"
+DEFAULT_DATA_DIR = OUTLOOK_DIR / "data"
+
+
+# ============================================================================
+# Parameter sampling
+# ============================================================================
+
+
+def sample_parameters(n_samples: int, rng: np.random.RandomState) -> list:
+ """Sample Helmholtz scattering parameters uniformly.
+
+ Ranges: k∈[3,15], eps_r∈[2,8], cx/cy∈[0.2,0.8], radius∈[0.05,0.25].
+ """
+ params_list = []
+ for _ in range(n_samples):
+ params_list.append({
+ "k": float(rng.uniform(3.0, 15.0)),
+ "eps_r": float(rng.uniform(2.0, 8.0)),
+ "cx": float(rng.uniform(0.2, 0.8)),
+ "cy": float(rng.uniform(0.2, 0.8)),
+ "radius": float(rng.uniform(0.05, 0.25)),
+ })
+ return params_list
+
+
+# ============================================================================
+# FEM config
+# ============================================================================
+
+
+
+# ============================================================================
+# Mesh quality diagnostics
+# ============================================================================
+
+
+def _compute_triangle_angles(p, t):
+ """Compute min/max angles (degrees) for all triangles.
+
+ Parameters
+ ----------
+ p : (2, n_vertices)
+ t : (3, n_elements)
+
+ Returns
+ -------
+ min_angle, max_angle : (n_elements,) arrays in degrees
+ """
+ v0 = p[:, t[0]] # (2, n_elem)
+ v1 = p[:, t[1]]
+ v2 = p[:, t[2]]
+
+ e0 = v2 - v1 # edge opposite vertex 0
+ e1 = v0 - v2 # edge opposite vertex 1
+ e2 = v1 - v0 # edge opposite vertex 2
+
+ def _angle(a, b):
+ """Angle between vectors a and b (each (2, n))."""
+ cos = (a[0] * b[0] + a[1] * b[1]) / (
+ np.sqrt(a[0]**2 + a[1]**2) * np.sqrt(b[0]**2 + b[1]**2) + 1e-30
+ )
+ return np.degrees(np.arccos(np.clip(cos, -1, 1)))
+
+ # Angle at vertex 0: between edges e1 (toward v0 from v2) and -e2 (toward v0 from v1)
+ # Actually: at vertex 0, the two edges are (v1 - v0) and (v2 - v0) = -e2 and e1
+ a0 = _angle(-e2, e1) # angle at v0
+ a1 = _angle(-e0, e2) # angle at v1
+ a2 = _angle(-e1, e0) # angle at v2
+
+ all_angles = np.stack([a0, a1, a2], axis=0) # (3, n_elem)
+ return all_angles.min(axis=0), all_angles.max(axis=0)
+
+
+def _compute_aspect_ratio(p, t):
+ """Compute aspect ratio = circumradius / (2 * inradius) for each triangle.
+
+ Equivalent to max_edge / (2 * sqrt(3) * inradius) for equilateral.
+ Uses formula: aspect = (a*b*c) / (4*area * (a+b+c)/2) / (2*r_in)
+ Simplified: aspect = (a*b*c) / (8 * area * r_in) where r_in = 2*area/perimeter.
+ """
+ v0 = p[:, t[0]]
+ v1 = p[:, t[1]]
+ v2 = p[:, t[2]]
+
+ # Edge lengths
+ e01 = np.sqrt((v1[0] - v0[0])**2 + (v1[1] - v0[1])**2)
+ e12 = np.sqrt((v2[0] - v1[0])**2 + (v2[1] - v1[1])**2)
+ e20 = np.sqrt((v0[0] - v2[0])**2 + (v0[1] - v2[1])**2)
+
+ # Area via cross product
+ area = 0.5 * np.abs(
+ (v1[0] - v0[0]) * (v2[1] - v0[1]) - (v2[0] - v0[0]) * (v1[1] - v0[1])
+ )
+
+ # Inradius
+ perimeter = e01 + e12 + e20
+ r_in = 2.0 * area / (perimeter + 1e-30)
+
+ # Circumradius
+ r_circ = (e01 * e12 * e20) / (4.0 * area + 1e-30)
+
+ return r_circ / (r_in + 1e-30)
+
+
+def _mesh_quality_report(mesh, label="mesh"):
+ """Print and return mesh quality metrics.
+
+ Returns dict with keys: n_elem, min_area, min_angle, max_aspect_ratio.
+ Raises RuntimeError if degenerate elements are found.
+ """
+ p = mesh.p
+ t = mesh.t
+
+ # Areas
+ v0 = p[:, t[0]]
+ v1 = p[:, t[1]]
+ v2 = p[:, t[2]]
+ areas = 0.5 * np.abs(
+ (v1[0] - v0[0]) * (v2[1] - v0[1]) - (v2[0] - v0[0]) * (v1[1] - v0[1])
+ )
+
+ # Degenerate check
+ bad = np.where(~np.isfinite(areas) | (areas <= 1e-14))[0]
+ if len(bad) > 0:
+ raise RuntimeError(
+ f"[{label}] {len(bad)} degenerate elements (min_area={areas.min():.3e})"
+ )
+
+ # Angles
+ min_angle, max_angle = _compute_triangle_angles(p, t)
+
+ # Aspect ratio
+ aspect = _compute_aspect_ratio(p, t)
+
+ report = {
+ "n_elem": t.shape[1],
+ "min_area": float(areas.min()),
+ "min_angle": float(min_angle.min()),
+ "max_angle": float(max_angle.max()),
+ "max_aspect_ratio": float(aspect.max()),
+ "mean_aspect_ratio": float(aspect.mean()),
+ }
+
+ if label is not None:
+ print(
+ f" [{label}] elems={report['n_elem']:5d} "
+ f"min_area={report['min_area']:.3e} "
+ f"min_angle={report['min_angle']:.1f}° "
+ f"max_aspect={report['max_aspect_ratio']:.2f}"
+ )
+
+ return report
+
+
+# ============================================================================
+# Initial mesh: uniform base + isotropic local refinement
+# ============================================================================
+
+
+def build_physics_safe_initial_mesh(
+ params: dict,
+ q: float = 2.0,
+ max_initial_elements: int = 5000,
+ max_pre_refine_rounds: int = 15,
+ verbose: bool = False,
+):
+ """Create a physics-adapted initial mesh via uniform base + local refinement.
+
+ Uses score = max_edge / h_target as the refinement criterion.
+ Refines all cells with score > 1 (under-resolved) until one of:
+ - No cells have score > 1 (all physics-safe)
+ - max_initial_elements reached
+ - max_pre_refine_rounds exhausted
+
+ This is the *initial mesh generation* phase — distinct from the
+ rollout-to-budget phase which continues refining top-k cells
+ regardless of score values.
+
+ Parameters
+ ----------
+ params : dict with keys k, eps_r, cx, cy, radius
+ q : float
+ Elements per wavelength (default 2).
+ max_initial_elements : int
+ Hard cap on element count during pre-refinement.
+ max_pre_refine_rounds : int
+ Maximum number of pre-refinement iterations.
+ verbose : bool
+ Print quality report after each round.
+
+ Returns
+ -------
+ mesh : MeshTri
+ """
+ from skfem import MeshTri
+
+ k = params["k"]
+ eps_r = params["eps_r"]
+ cx, cy, radius = params["cx"], params["cy"], params["radius"]
+
+ lambda0 = 2.0 * np.pi / k
+ lambda_eff = 2.0 * np.pi / (k * np.sqrt(eps_r))
+
+ h_out = lambda0 / q # target cell size outside scatterer
+ h_in = lambda_eff / q # target cell size inside scatterer
+
+ # ── Step 1: uniform base mesh ──
+ # Choose n so that uniform cell size ≤ min(h_out, h_in)
+ h_min = min(h_out, h_in)
+ n_side = max(16, int(np.ceil(1.0 / h_min)))
+ # Cap at a reasonable starting density
+ n_side = min(n_side, 64)
+
+ mesh = MeshTri.init_tensor(
+ np.linspace(0, 1, n_side + 1),
+ np.linspace(0, 1, n_side + 1),
+ )
+
+ # ── Step 2: iterative local refinement ──
+ # Two-density mesh: h_in inside scatterer, h_out outside. No extra interface band.
+
+ for rnd in range(max_pre_refine_rounds):
+ n_elem = mesh.t.shape[1]
+ if n_elem >= max_initial_elements:
+ break
+
+ p = mesh.p
+ t = mesh.t
+
+ # Per-cell geometry
+ v0 = p[:, t[0]]
+ v1 = p[:, t[1]]
+ v2 = p[:, t[2]]
+
+ # Midpoints
+ mx = (v0[0] + v1[0] + v2[0]) / 3.0
+ my = (v0[1] + v1[1] + v2[1]) / 3.0
+
+ # Max edge length per cell
+ e0 = np.sqrt((v1[0] - v0[0])**2 + (v1[1] - v0[1])**2)
+ e1 = np.sqrt((v2[0] - v1[0])**2 + (v2[1] - v1[1])**2)
+ e2 = np.sqrt((v0[0] - v2[0])**2 + (v0[1] - v2[1])**2)
+ max_edge = np.maximum(np.maximum(e0, e1), e2)
+
+ # Signed distance to scatterer boundary
+ dist = np.sqrt((mx - cx)**2 + (my - cy)**2)
+ inside = dist <= radius
+
+ # Local h_target: two densities only
+ h_target = np.where(inside, h_in, h_out)
+
+ # Mark cells where max_edge exceeds h_target
+ marked = np.where(max_edge > h_target)[0]
+
+ if len(marked) == 0:
+ break
+
+ # Don't overshoot: binary-search for largest batch that stays within budget.
+ # mesh.refined() cascades to neighbors for conformity, so the actual
+ # element count can be 3-6× the marked count — a fixed divisor is unreliable.
+ remaining = max_initial_elements - n_elem
+ if remaining <= 0:
+ break
+
+ # Sort by severity (worst first) with physical tie-breakers
+ ratio = max_edge / (h_target + 1e-30)
+ # Tie-breaker for identical ratio: interface proximity → inside preference
+ signed_dist = dist - radius
+ abs_sd = np.abs(signed_dist[marked])
+ inside_flag = inside[marked].astype(np.float32)
+ tie_key = -abs_sd + inside_flag # higher = closer to interface & inside
+ # Composite: ratio dominates (×1e6), tie_key breaks ties
+ composite = ratio[marked] * 1e6 + tie_key
+ order = np.argsort(composite)[::-1] # descending
+ marked_sorted = marked[order]
+
+ lo, hi = 1, len(marked_sorted)
+ best_n = 0
+ best_mesh = mesh
+ while lo <= hi:
+ mid = (lo + hi) // 2
+ trial = mesh.refined(marked_sorted[:mid])
+ if trial.t.shape[1] <= max_initial_elements:
+ best_n = mid
+ best_mesh = trial
+ lo = mid + 1
+ else:
+ hi = mid - 1
+
+ if best_n == 0:
+ # Even one cell overshoots — skip refinement to stay within budget
+ break
+
+ mesh = best_mesh
+
+ # ── Final validation + one-line summary ──
+ report = _mesh_quality_report(mesh, "initial mesh" if verbose else None)
+
+ if report["min_angle"] < 10.0:
+ import warnings
+ warnings.warn(
+ f"Initial mesh has poor quality: min_angle={report['min_angle']:.1f}°",
+ stacklevel=2,
+ )
+
+ return mesh
+
+
+# Backward-compatible alias
+make_initial_mesh = build_physics_safe_initial_mesh
+
+
+def make_fem_config(params: dict) -> dict:
+ return {
+ "helmholtz": {
+ "wave_number": params["k"],
+ "wave_number_mode": "fixed",
+ "scatterer": {
+ "mode": "fixed",
+ "cx": params["cx"],
+ "cy": params["cy"],
+ "radius": params["radius"],
+ "eps_r": params["eps_r"],
+ },
+ "k_ref": 6.0,
+ "k_exponent": 2.0,
+ },
+ "domain": {
+ "boundary": [0, 0, 1, 1],
+ "initial_num_elements": 50,
+ },
+ }
+
+
+
+# ============================================================================
+# Physics score: h / lambda_eff
+# ============================================================================
+
+
+def compute_physics_score(mesh, params: dict, q: float = 2.0) -> np.ndarray:
+ """Compute per-cell physics score = max_edge / h_target.
+
+ h_target = lambda_eff / q, where lambda_eff depends on eps_r_local.
+ A score > 1 means the cell is under-resolved and needs refinement.
+ The score correctly reflects epsilon contrast: inside the scatterer
+ h_target is sqrt(eps_r) times smaller, so the same cell is more
+ "under-resolved" inside than outside.
+
+ Parameters
+ ----------
+ mesh : skfem.Mesh
+ params : dict with keys k, eps_r, cx, cy, radius
+ q : float
+ Target elements per wavelength (default 2).
+ """
+ k = params["k"]
+ eps_r_val = params["eps_r"]
+ cx = params["cx"]
+ cy = params["cy"]
+ radius = params["radius"]
+
+ p = mesh.p
+ t = mesh.t
+ v0, v1, v2 = p[:, t[0]], p[:, t[1]], p[:, t[2]]
+
+ # Max edge length per cell
+ e0 = np.sqrt((v1[0] - v0[0])**2 + (v1[1] - v0[1])**2)
+ e1 = np.sqrt((v2[0] - v1[0])**2 + (v2[1] - v1[1])**2)
+ e2 = np.sqrt((v0[0] - v2[0])**2 + (v0[1] - v2[1])**2)
+ max_edge = np.maximum(np.maximum(e0, e1), e2)
+
+ # Midpoints
+ mx = (v0[0] + v1[0] + v2[0]) / 3.0
+ my = (v0[1] + v1[1] + v2[1]) / 3.0
+
+ # Local wavelength: lambda_eff depends on whether cell is inside scatterer
+ inside = ((mx - cx)**2 + (my - cy)**2 <= radius**2)
+ lambda_eff = np.where(
+ inside,
+ 2.0 * np.pi / (k * np.sqrt(eps_r_val)),
+ 2.0 * np.pi / k,
+ )
+
+ h_target = lambda_eff / q
+
+ return (max_edge / h_target).astype(np.float32)
+
+
+
+# ============================================================================
+# Top-fraction marking
+# ============================================================================
+
+
+def compute_top_fraction_mark(scores: np.ndarray, fraction: float,
+ signed_dist=None, is_inside=None,
+ domain_center=None) -> np.ndarray:
+ """Return binary (0/1) array marking the top `fraction` of cells by score.
+
+ Uses deterministic top-k selection with physical tie-breaking when
+ many cells share the same score (e.g. on a uniform mesh where
+ physics_score has only 2 unique values).
+ """
+ n = len(scores)
+ n_mark = max(1, int(n * fraction))
+ if n_mark >= n:
+ return np.ones(n, dtype=np.int32)
+ marks = np.zeros(n, dtype=np.int32)
+ if signed_dist is not None and is_inside is not None and domain_center is not None:
+ from outlook.src.rollout import _topk_indices
+ idx, _ = _topk_indices(scores, n_mark, signed_dist, is_inside, domain_center)
+ marks[idx] = 1
+ else:
+ marks[np.argsort(scores)[-n_mark:]] = 1
+ return marks
+
+
+# ============================================================================
+# Main: step-wise correction dataset generation
+# ============================================================================
+
+
+def generate_correction_dataset(
+ n_samples: int = 100,
+ max_elements: int = 20000,
+ max_steps: int = 20,
+ mark_fraction: float = 0.03,
+ seed: int = 42,
+ out_dir=None,
+):
+ """Generate step-wise correction dataset.
+
+ For each sample:
+ 1. Create problem, get initial mesh
+ 2. AMR loop: solve → eta → physics_score → marks → save step .npz → refine
+ 3. Stop when elements >= max_elements or max_steps reached
+ """
+ if out_dir is None:
+ out_dir = DEFAULT_DATA_DIR
+ out_dir = Path(out_dir)
+ out_dir.mkdir(parents=True, exist_ok=True)
+
+ rng = np.random.RandomState(seed)
+ params_list = sample_parameters(n_samples, rng)
+
+ # Save parameter index
+ params_array = np.array(
+ [[p["k"], p["eps_r"], p["cx"], p["cy"], p["radius"]] for p in params_list],
+ dtype=np.float32,
+ )
+ np.savez(out_dir / "params_list.npz", params=params_array)
+
+ # Accumulate per-step stats for summary
+ all_step_stats = []
+ total_files = 0
+
+ for idx, params in enumerate(params_list):
+ t_start = time.perf_counter()
+
+ try:
+ # ---- 1. Create problem ----
+ fem_config = make_fem_config(params)
+ problem = HelmholtzProblem(
+ fem_config=fem_config,
+ random_state=np.random.RandomState(rng.randint(0, 2**31)),
+ )
+ mesh = build_physics_safe_initial_mesh(params)
+ n_steps_done = 0
+
+ print(f"\n [{idx:04d}/{n_samples}] "
+ f"k={params['k']:.2f} eps_r={params['eps_r']:.2f} "
+ f"cx={params['cx']:.2f} cy={params['cy']:.2f} "
+ f"radius={params['radius']:.3f}")
+
+ from skfem import Basis, ElementTriP1
+
+ for step in range(max_steps):
+ n_elem = mesh.t.shape[1]
+ if n_elem >= max_elements:
+ break
+
+ # ---- 2. FEM solve ----
+ basis = Basis(mesh, ElementTriP1())
+ u_scat = problem.calculate_solution(basis=basis, cache=False)
+
+ # ---- 3. Residual indicator (teacher signal) ----
+ eps_r_arr = _compute_eps_r_at_midpoints(
+ mesh,
+ cx=problem._cx, cy=problem._cy,
+ radius=problem._radius, eps_r_in=problem._eps_r,
+ )
+ eta = _compute_residual_indicator(
+ mesh, u_scat, k=problem._k, eps_r=eps_r_arr
+ )
+
+ # ---- 4. Physics score ----
+ physics_score = compute_physics_score(mesh, params)
+
+ # ---- 5. Mie error (before refinement) ----
+ aw_rel = np.nan
+ max_err = np.nan
+ try:
+ from outlook.src.metrics import compute_mie_error
+ err = compute_mie_error(mesh, u_scat, params)
+ aw_rel = err["aw_rel"]
+ max_err = err["max_err"]
+ except Exception:
+ pass
+
+ # ---- 6. Marks (with physical tie-breaking) ----
+ _p = mesh.p
+ _t = mesh.t
+ _mx = (_p[0, _t[0]] + _p[0, _t[1]] + _p[0, _t[2]]) / 3.0
+ _my = (_p[1, _t[0]] + _p[1, _t[1]] + _p[1, _t[2]]) / 3.0
+ _cx, _cy, _r = params["cx"], params["cy"], params["radius"]
+ _dist = np.sqrt((_mx - _cx)**2 + (_my - _cy)**2)
+ _sd = _dist - _r
+ _inside = _dist <= _r
+ _dc = np.array([(_p[0].min() + _p[0].max()) / 2.0,
+ (_p[1].min() + _p[1].max()) / 2.0])
+ teacher_mark = compute_top_fraction_mark(
+ eta, mark_fraction, _sd, _inside, _dc)
+ physics_mark = compute_top_fraction_mark(
+ physics_score, mark_fraction, _sd, _inside, _dc)
+ correction_label = teacher_mark - physics_mark # -1, 0, or +1
+
+ # ---- 7. Features & edge_index ----
+ from outlook.src.feat import build_initial_cell_features
+ from outlook.src.graph import build_edge_index_np
+ features = build_initial_cell_features(mesh, params)[:, :15]
+ edge_index = build_edge_index_np(mesh)
+
+ # ---- 8. Save step .npz ----
+ fname = f"sample{idx:04d}_step{step:03d}.npz"
+ np.savez_compressed(
+ out_dir / fname,
+ features=features, # (n_elem, 15) float32
+ edge_index=edge_index, # (2, n_edges) int64
+ physics_score=physics_score, # (n_elem,) float32
+ teacher_eta=eta.astype(np.float64), # (n_elem,) float64
+ teacher_mark=teacher_mark, # (n_elem,) int32
+ physics_mark=physics_mark, # (n_elem,) int32
+ correction_label=correction_label, # (n_elem,) int32
+ elements=np.int64(n_elem),
+ step=np.int64(step),
+ aw_rel_before=np.float64(aw_rel),
+ max_err_before=np.float64(max_err),
+ k=np.float64(params["k"]),
+ eps_r=np.float64(params["eps_r"]),
+ cx=np.float64(params["cx"]),
+ cy=np.float64(params["cy"]),
+ radius=np.float64(params["radius"]),
+ )
+ total_files += 1
+
+ # Step stats
+ overlap = int(np.sum((teacher_mark == 1) & (physics_mark == 1)))
+ n_teacher = int(np.sum(teacher_mark))
+ n_physics = int(np.sum(physics_mark))
+ n_pos = int(np.sum(correction_label == 1))
+ n_neg = int(np.sum(correction_label == -1))
+
+ all_step_stats.append({
+ "sample": idx,
+ "step": step,
+ "elements": n_elem,
+ "n_teacher": n_teacher,
+ "n_physics": n_physics,
+ "overlap": overlap,
+ "n_pos": n_pos,
+ "n_neg": n_neg,
+ })
+
+ aw_str = f"{aw_rel:.4f}" if not np.isnan(aw_rel) else "N/A"
+ print(f" step {step:2d}: elem={n_elem:6d} "
+ f"teacher_mark={n_teacher:4d} physics_mark={n_physics:4d} "
+ f"overlap={overlap:4d} correction +{n_pos}/-{n_neg} "
+ f"aw_rel={aw_str}")
+
+ # ---- 9. Refine by eta (shared helper) ----
+ from outlook.src.rollout import _refine_by_eta
+ refined = _refine_by_eta(mesh, eta, mark_fraction, max_elements)
+ if refined is None:
+ break
+ mesh = refined
+ n_steps_done += 1
+
+ elapsed = time.perf_counter() - t_start
+ print(f" Done: {n_steps_done} steps, {elapsed:.1f}s")
+
+ except Exception as e:
+ print(f" [{idx:04d}/{n_samples}] FAILED: {type(e).__name__}: {e}")
+ import traceback
+ traceback.print_exc()
+ continue
+
+ # ---- Summary ----
+ print(f"\n{'='*60}")
+ print(f"Done: {total_files} step files saved to {out_dir}")
+
+ if not all_step_stats:
+ return
+
+ elems = [s["elements"] for s in all_step_stats]
+ t_marks = [s["n_teacher"] for s in all_step_stats]
+ p_marks = [s["n_physics"] for s in all_step_stats]
+ overlaps = [s["overlap"] for s in all_step_stats]
+ n_pos = [s["n_pos"] for s in all_step_stats]
+ n_neg = [s["n_neg"] for s in all_step_stats]
+
+ total_cells = sum(elems)
+ summary = {
+ "total_steps": len(all_step_stats),
+ "total_files": total_files,
+ "mean_elements": float(np.mean(elems)),
+ "mean_teacher_mark_ratio": float(np.mean([t / max(e, 1) for t, e in zip(t_marks, elems)])),
+ "mean_physics_mark_ratio": float(np.mean([p / max(e, 1) for p, e in zip(p_marks, elems)])),
+ "mean_overlap_teacher_physics": float(np.mean(overlaps)),
+ "mean_correction_pos_ratio": float(np.mean([p / max(e, 1) for p, e in zip(n_pos, elems)])),
+ "mean_correction_neg_ratio": float(np.mean([n / max(e, 1) for n, e in zip(n_neg, elems)])),
+ }
+
+ summary_path = out_dir / "summary.json"
+ with open(summary_path, "w") as f:
+ json.dump(summary, f, indent=2)
+
+ print(f"\n Summary:")
+ for k, v in summary.items():
+ print(f" {k}: {v}")
+ print(f"\n Saved: {summary_path}")
+
+
+# ============================================================================
+# CLI
+# ============================================================================
+
+
+def main():
+ parser = argparse.ArgumentParser(
+ description="Generate step-wise physics-guided refinement correction dataset"
+ )
+ parser.add_argument("--n-samples", type=int, default=100)
+ parser.add_argument("--max-elements", type=int, default=20000)
+ parser.add_argument("--max-steps", type=int, default=20)
+ parser.add_argument("--mark-fraction", type=float, default=0.03,
+ help="Top fraction for both teacher and physics marks (default: 0.03)")
+ parser.add_argument("--seed", type=int, default=42)
+ parser.add_argument("--output-dir", type=str, default=None)
+ args = parser.parse_args()
+
+ out_dir = Path(args.output_dir) if args.output_dir else DEFAULT_DATA_DIR
+
+ print("=" * 60)
+ print("Step-Wise Correction Dataset Generation")
+ print("=" * 60)
+ print(f" Samples: {args.n_samples}")
+ print(f" Max elements: {args.max_elements}")
+ print(f" Max steps: {args.max_steps}")
+ print(f" Mark fraction: {args.mark_fraction}")
+ print(f" Seed: {args.seed}")
+ print(f" Output: {out_dir}")
+ print()
+
+ generate_correction_dataset(
+ n_samples=args.n_samples,
+ max_elements=args.max_elements,
+ max_steps=args.max_steps,
+ mark_fraction=args.mark_fraction,
+ seed=args.seed,
+ out_dir=out_dir,
+ )
+
+
+if __name__ == "__main__":
+ main()
diff --git a/outlook/src/gnn.py b/outlook/src/gnn.py
new file mode 100644
index 0000000..d29fa0a
--- /dev/null
+++ b/outlook/src/gnn.py
@@ -0,0 +1,244 @@
+# DensityGNN 模型:消息传递 + 全局虚拟节点 + 密度预测头。
+"""density_gnn.py — Supervised GNN for final mesh density prediction.
+
+Reuses the message passing architecture from src/network.py (EdgeModule,
+NodeModule, GlobalVirtualNode) but replaces Actor-Critic heads with a
+simple per-node density regression head.
+
+Input: initial mesh graph (node features, edge_index, edge_attr)
+Output: per-cell density score (continuous, trained on log_rho)
+"""
+
+import copy
+
+import torch
+import torch.nn as nn
+from torch_geometric.data import Data
+from torch_geometric.utils import dropout_edge
+from torch_scatter import scatter_add, scatter_mean
+
+
+# ── Activation helper ──
+
+def _get_activation(name: str) -> nn.Module:
+ name = name.lower()
+ if name == "relu":
+ return nn.ReLU()
+ elif name == "leakyrelu":
+ return nn.LeakyReLU()
+ elif name == "elu":
+ return nn.ELU()
+ elif name in ("swish", "silu"):
+ return nn.SiLU()
+ elif name == "gelu":
+ return nn.GELU()
+ elif name == "tanh":
+ return nn.Tanh()
+ raise ValueError(f"Unknown activation '{name}'")
+
+
+# ── Latent MLP (latent_dim → latent_dim) ──
+
+class LatentMLP(nn.Module):
+ """MLP that operates in latent space (dim in == dim out == latent_dim)."""
+
+ def __init__(self, in_features: int, latent_dim: int, num_layers: int = 2,
+ activation: str = "leakyrelu"):
+ super().__init__()
+ layers = []
+ prev = in_features
+ for _ in range(num_layers):
+ layers.append(nn.Linear(prev, latent_dim))
+ layers.append(_get_activation(activation))
+ prev = latent_dim
+ self.mlp = nn.Sequential(*layers)
+
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
+ return self.mlp(x)
+
+
+# ── Edge update: MLP([src_node | dst_node | edge_attr]) ──
+
+class EdgeModule(nn.Module):
+ def __init__(self, latent_dim: int, num_layers: int = 2,
+ activation: str = "leakyrelu"):
+ super().__init__()
+ self.mlp = LatentMLP(3 * latent_dim, latent_dim, num_layers, activation)
+
+ def forward(self, graph: Data):
+ src, dst = graph.edge_index
+ agg = torch.cat([graph.x[src], graph.x[dst], graph.edge_attr], dim=-1)
+ graph.edge_attr = self.mlp(agg)
+
+
+# ── Node update: MLP([node | scatter_mean(incoming_edges)]) ──
+
+class NodeModule(nn.Module):
+ def __init__(self, latent_dim: int, num_layers: int = 2,
+ activation: str = "leakyrelu"):
+ super().__init__()
+ self.mlp = LatentMLP(2 * latent_dim, latent_dim, num_layers, activation)
+
+ def forward(self, graph: Data):
+ _, dst = graph.edge_index
+ agg_edges = scatter_mean(graph.edge_attr, dst, dim=0,
+ dim_size=graph.x.shape[0])
+ agg = torch.cat([graph.x, agg_edges], dim=-1)
+ graph.x = self.mlp(agg)
+
+
+# ── Single message passing step with residual + LayerNorm ──
+
+class MessagePassingStep(nn.Module):
+ def __init__(self, latent_dim: int, num_layers: int = 2,
+ activation: str = "leakyrelu"):
+ super().__init__()
+ self.edge_module = EdgeModule(latent_dim, num_layers, activation)
+ self.node_module = NodeModule(latent_dim, num_layers, activation)
+ self.node_ln = nn.LayerNorm(latent_dim)
+ self.edge_ln = nn.LayerNorm(latent_dim)
+
+ def forward(self, graph: Data):
+ old_x = graph.x
+ old_edge = graph.edge_attr
+
+ self.edge_module(graph)
+ graph.edge_attr = self.edge_ln(graph.edge_attr + old_edge)
+
+ self.node_module(graph)
+ graph.x = self.node_ln(graph.x + old_x)
+
+
+# ── Global Virtual Node (uniform mean pooling, attention-gated broadcast) ──
+
+class GlobalVirtualNode(nn.Module):
+ """Simplified GVN: uniform mean pooling → attention-gated broadcast.
+
+ No eta weighting (we don't have residual info at inference).
+ """
+
+ def __init__(self, latent_dim: int):
+ super().__init__()
+ self.gate = nn.Sequential(
+ nn.Linear(2 * latent_dim, latent_dim),
+ nn.LeakyReLU(),
+ nn.Linear(latent_dim, latent_dim),
+ )
+ self.value_proj = nn.Linear(latent_dim, latent_dim)
+ self.scale = nn.Parameter(torch.tensor(0.1))
+
+ def forward(self, graph: Data):
+ batch = getattr(graph, 'batch', None)
+ if batch is None:
+ batch = torch.zeros(graph.x.shape[0], dtype=torch.long,
+ device=graph.x.device)
+
+ # Uniform mean pooling
+ h_V = scatter_mean(graph.x, batch, dim=0) # [B, D]
+
+ # Attention-gated broadcast
+ h_V_exp = h_V[batch] # [N, D]
+ gate_in = torch.cat([graph.x, h_V_exp], dim=-1) # [N, 2D]
+ alpha = torch.sigmoid(self.gate(gate_in)) # [N, D]
+ graph.x = graph.x + self.scale * alpha * self.value_proj(h_V_exp)
+
+
+# ── DensityGNN: full model ──
+
+class DensityGNN(nn.Module):
+ """GNN for supervised final mesh density prediction.
+
+ Architecture:
+ Linear(node_features) → Linear(edge_features)
+ → N × MessagePassingStep (edge/node update + LN + residual)
+ → GlobalVirtualNode (attention-gated global broadcast)
+ → MLP density head → per-node scalar score
+
+ Parameters
+ ----------
+ node_dim : int
+ Input node feature dimension (default 16).
+ edge_dim : int
+ Input edge feature dimension (default 1 for phase_distance).
+ latent_dim : int
+ Hidden dimension for all message passing layers.
+ num_mp_steps : int
+ Number of message passing steps.
+ mlp_layers : int
+ Number of layers in each LatentMLP.
+ head_hidden : int
+ Hidden dimension in the density prediction head.
+ activation : str
+ Activation function name.
+ edge_dropout : float
+ Edge dropout probability during training.
+ """
+
+ def __init__(
+ self,
+ node_dim: int = 16,
+ edge_dim: int = 1,
+ latent_dim: int = 64,
+ num_mp_steps: int = 3,
+ mlp_layers: int = 2,
+ head_hidden: int = 64,
+ activation: str = "leakyrelu",
+ edge_dropout: float = 0.1,
+ ):
+ super().__init__()
+ self.edge_dropout = edge_dropout
+
+ # Embeddings
+ self.node_embedding = nn.Linear(node_dim, latent_dim)
+ self.edge_embedding = nn.Linear(edge_dim, latent_dim)
+
+ # Message passing stack
+ self.mp_steps = nn.ModuleList([
+ MessagePassingStep(latent_dim, mlp_layers, activation)
+ for _ in range(num_mp_steps)
+ ])
+
+ # Global virtual node
+ self.gvn = GlobalVirtualNode(latent_dim)
+
+ # Density head: latent → head_hidden → 1
+ self.head = nn.Sequential(
+ nn.Linear(latent_dim, head_hidden),
+ nn.ReLU(),
+ nn.Linear(head_hidden, 1),
+ )
+
+ def forward(self, graph: Data) -> torch.Tensor:
+ """Forward pass.
+
+ Parameters
+ ----------
+ graph : Data
+ PyG Data with x, edge_index, edge_attr.
+
+ Returns
+ -------
+ pred : (num_nodes,) density score per node.
+ """
+ graph = copy.deepcopy(graph)
+
+ # Edge dropout (training only)
+ if self.edge_dropout > 0 and self.training:
+ graph.edge_index, mask = dropout_edge(
+ graph.edge_index, p=self.edge_dropout, training=True
+ )
+ graph.edge_attr = graph.edge_attr[mask]
+
+ # Embed
+ graph.x = self.node_embedding(graph.x)
+ graph.edge_attr = self.edge_embedding(graph.edge_attr)
+
+ # Message passing
+ for step in self.mp_steps:
+ step(graph)
+
+ # Global broadcast
+ self.gvn(graph)
+
+ # Density head
+ return self.head(graph.x).squeeze(-1)
diff --git a/outlook/src/graph.py b/outlook/src/graph.py
new file mode 100644
index 0000000..32d7133
--- /dev/null
+++ b/outlook/src/graph.py
@@ -0,0 +1,108 @@
+# 将初始网格转为 PyG Data(节点特征、边索引、边特征)。
+"""graph_builder.py — Build PyG graph Data from initial mesh for GNN training.
+
+Constructs node features (16-dim), edge_index (bidirectional + self-loops),
+and edge features (phase_distance) from an initial mesh and physical parameters.
+"""
+
+from typing import Dict
+
+import numpy as np
+import torch
+from torch_geometric.data import Data
+
+from environment.fem_util import get_element_midpoints
+from outlook.src.feat import build_initial_cell_features
+
+
+def build_edge_index_np(mesh) -> np.ndarray:
+ """Build bidirectional + self-loop edge_index from mesh face-to-triangle map.
+
+ Returns (2, n_edges) int64 numpy array. This is the numpy-only version
+ used by gen.py and rollout.py (which don't need torch tensors at this
+ point). graph.py's build_graph_from_mesh wraps the result in a torch
+ tensor.
+ """
+ f2t = mesh.f2t
+ neighbor_mask = f2t[1] != -1
+ neighbors = f2t[:, neighbor_mask]
+
+ n_cells = mesh.t.shape[1]
+ src_fwd = neighbors[0]
+ dst_fwd = neighbors[1]
+ src_bwd = neighbors[1]
+ dst_bwd = neighbors[0]
+ self_ids = np.arange(n_cells)
+
+ src_all = np.concatenate([src_fwd, src_bwd, self_ids])
+ dst_all = np.concatenate([dst_fwd, dst_bwd, self_ids])
+ return np.vstack([src_all, dst_all]).astype(np.int64)
+
+
+def build_graph_from_mesh(mesh, params: Dict, budget_ratio: float) -> Data:
+ """Build a PyG Data object from an initial mesh.
+
+ Parameters
+ ----------
+ mesh : skfem.Mesh
+ Initial mesh with p (2, n_vertices), t (3, n_elements), f2t (2, n_faces).
+ params : dict
+ Physical parameters (k, eps_r, cx, cy, radius).
+ budget_ratio : float
+ Budget ratio conditioning feature (appended as 16th feature).
+
+ Returns
+ -------
+ Data
+ PyG Data with:
+ - x: (n_cells, 16) float32 node features
+ - edge_index: (2, n_edges) long
+ - edge_attr: (n_edges, 1) float32 phase distance
+ """
+ k = params["k"]
+ eps_r = params["eps_r"]
+ cx = params["cx"]
+ cy = params["cy"]
+ radius = params["radius"]
+
+ # ── Node features (16-dim) ──
+ node_features = build_initial_cell_features(mesh, params, budget_ratio)
+ x = torch.tensor(node_features, dtype=torch.float32)
+
+ # ── Element neighbors (bidirectional + self-loops) ──
+ edge_index = torch.tensor(build_edge_index_np(mesh), dtype=torch.long)
+
+ # Need neighbor pairs for edge features
+ f2t = mesh.f2t
+ neighbor_mask = f2t[1] != -1
+ neighbors = f2t[:, neighbor_mask] # (2, N_pairs)
+ src_fwd = neighbors[0]
+ dst_fwd = neighbors[1]
+ n_cells = mesh.t.shape[1]
+
+ # ── Edge features: phase_distance ──
+ midpoints = get_element_midpoints(mesh) # (N, 2)
+
+ eps_r_local = np.where(
+ (midpoints[:, 0] - cx) ** 2 + (midpoints[:, 1] - cy) ** 2 <= radius ** 2,
+ eps_r, 1.0
+ )
+
+ n_pairs = neighbors.shape[1]
+ euclidean_dist = np.linalg.norm(
+ midpoints[dst_fwd] - midpoints[src_fwd], axis=1
+ )
+ k_local_src = k * np.sqrt(np.maximum(eps_r_local[src_fwd], 1.0))
+ k_local_dst = k * np.sqrt(np.maximum(eps_r_local[dst_fwd], 1.0))
+ k_edge = np.sqrt(k_local_src * k_local_dst)
+ phase_dist_fwd = euclidean_dist * k_edge / (2.0 * np.pi)
+
+ # Bidirectional: same features for both directions
+ phase_dist = np.concatenate([
+ phase_dist_fwd, # forward edges
+ phase_dist_fwd, # backward edges (same distance)
+ np.zeros(n_cells), # self-loops
+ ])
+ edge_attr = torch.tensor(phase_dist, dtype=torch.float32).unsqueeze(-1)
+
+ return Data(x=x, edge_index=edge_index, edge_attr=edge_attr)
diff --git a/outlook/src/mesh.py b/outlook/src/mesh.py
new file mode 100644
index 0000000..751c531
--- /dev/null
+++ b/outlook/src/mesh.py
@@ -0,0 +1,183 @@
+# 根据 density score 对初始网格做 top-k 加密,直到接近 target_elements。
+"""mesh_generator.py — Convert network density scores into refined meshes.
+
+Provides score-driven refinement: each initial cell gets a priority score,
+and cells are refined (top-k) until the target element budget is reached.
+"""
+
+import copy
+from typing import Tuple
+
+import numpy as np
+
+
+def generate_mesh_from_density_score(
+ initial_mesh,
+ score: np.ndarray,
+ target_elements: int,
+ strategy: str = "topk",
+) -> Tuple:
+ """Refine the initial mesh according to per-cell density scores.
+
+ Uses iterative top-k refinement: at each step, leaf cells inherit the
+ score of their originating initial cell, and the highest-scored leaves
+ are refined until the target element count is reached.
+
+ Parameters
+ ----------
+ initial_mesh : skfem.Mesh
+ score : (N_init,) float
+ Per-initial-cell density/priority score (higher = refine first).
+ target_elements : int
+ Target total element count.
+ strategy : str
+ Refinement strategy. Currently only "topk" is implemented.
+
+ Returns
+ -------
+ final_mesh : skfem.Mesh
+ n_elements : int
+ Actual element count of the final mesh.
+ n_steps : int
+ Number of refinement iterations performed.
+ """
+ mesh = copy.deepcopy(initial_mesh)
+ n_init = initial_mesh.t.shape[1]
+ leaf_to_initial = np.arange(n_init, dtype=np.int64)
+
+ n_steps = 0
+ max_steps = 50
+
+ while mesh.t.shape[1] < target_elements and n_steps < max_steps:
+ n_current = mesh.t.shape[1]
+ remaining = target_elements - n_current
+
+ # Each refinement produces 4 children from 1 parent, net gain = 3
+ max_to_refine = max(1, remaining // 3)
+ if max_to_refine > n_current:
+ max_to_refine = n_current
+
+ # Leaf scores inherit from their originating initial cell
+ leaf_scores = score[leaf_to_initial]
+
+ if max_to_refine >= n_current:
+ selected = np.arange(n_current)
+ else:
+ score_range = leaf_scores.max() - leaf_scores.min()
+ if score_range < 1e-12:
+ # All scores equal -> uniform spacing
+ selected = np.linspace(0, n_current - 1, max_to_refine, dtype=np.int64)
+ else:
+ selected = np.argpartition(leaf_scores, -max_to_refine)[-max_to_refine:]
+
+ if len(selected) == 0:
+ break
+
+ new_mesh = mesh.refined(selected)
+
+ # Propagate leaf_to_initial mapping via element_finder
+ new_midpoints = np.mean(new_mesh.p[:, new_mesh.t], axis=1).T
+ finder = mesh.element_finder()
+ parent_indices = finder(*new_midpoints.T)
+ parent_indices = np.clip(parent_indices, 0, n_current - 1)
+ leaf_to_initial = leaf_to_initial[parent_indices]
+
+ mesh = new_mesh
+ n_steps += 1
+
+ if mesh.t.shape[1] == n_current:
+ break
+
+ return mesh, mesh.t.shape[1], n_steps
+
+
+def generate_mesh_from_scores(
+ initial_mesh,
+ scores: np.ndarray,
+ target_elements: int,
+ max_steps: int = 50,
+) -> dict:
+ """Refine the initial mesh according to per-cell density scores.
+
+ Like generate_mesh_from_density_score but returns detailed info
+ including overshoot ratio and refine history.
+
+ Parameters
+ ----------
+ initial_mesh : skfem.Mesh
+ scores : (N_init,) float
+ Per-initial-cell density/priority score (higher = refine first).
+ target_elements : int
+ Target total element count (absolute, not ratio).
+ max_steps : int
+ Maximum refinement iterations.
+
+ Returns
+ -------
+ dict with keys:
+ final_mesh : skfem.Mesh
+ actual_elements : int
+ overshoot_ratio : float (actual_elements / target_elements)
+ n_steps : int
+ refine_history : list of dict (elements_before, elements_after, n_selected)
+ """
+ mesh = copy.deepcopy(initial_mesh)
+ n_init = initial_mesh.t.shape[1]
+ leaf_to_initial = np.arange(n_init, dtype=np.int64)
+
+ n_steps = 0
+ refine_history = []
+
+ while mesh.t.shape[1] < target_elements and n_steps < max_steps:
+ n_current = mesh.t.shape[1]
+ remaining = target_elements - n_current
+
+ # Each refinement produces 4 children from 1 parent, net gain = 3
+ max_to_refine = max(1, remaining // 3)
+ if max_to_refine > n_current:
+ max_to_refine = n_current
+
+ # Leaf scores inherit from their originating initial cell
+ leaf_scores = scores[leaf_to_initial]
+
+ if max_to_refine >= n_current:
+ selected = np.arange(n_current)
+ else:
+ score_range = leaf_scores.max() - leaf_scores.min()
+ if score_range < 1e-12:
+ selected = np.linspace(0, n_current - 1, max_to_refine, dtype=np.int64)
+ else:
+ selected = np.argpartition(leaf_scores, -max_to_refine)[-max_to_refine:]
+
+ if len(selected) == 0:
+ break
+
+ new_mesh = mesh.refined(selected)
+
+ # Propagate leaf_to_initial mapping via element_finder
+ new_midpoints = np.mean(new_mesh.p[:, new_mesh.t], axis=1).T
+ finder = mesh.element_finder()
+ parent_indices = finder(*new_midpoints.T)
+ parent_indices = np.clip(parent_indices, 0, n_current - 1)
+ leaf_to_initial = leaf_to_initial[parent_indices]
+
+ refine_history.append({
+ "elements_before": n_current,
+ "elements_after": new_mesh.t.shape[1],
+ "n_selected": len(selected),
+ })
+
+ mesh = new_mesh
+ n_steps += 1
+
+ if mesh.t.shape[1] == n_current:
+ break
+
+ actual = mesh.t.shape[1]
+ return {
+ "final_mesh": mesh,
+ "actual_elements": actual,
+ "overshoot_ratio": actual / target_elements if target_elements > 0 else 0.0,
+ "n_steps": n_steps,
+ "refine_history": refine_history,
+ }
diff --git a/outlook/src/metrics.py b/outlook/src/metrics.py
new file mode 100644
index 0000000..0b5285f
--- /dev/null
+++ b/outlook/src/metrics.py
@@ -0,0 +1,138 @@
+# 计算 FEM 解与 Mie 解析解的误差(aw_rel、max_err)。
+"""metrics.py — Unified evaluation metrics for mesh quality assessment.
+
+Provides Mie-analytical error computation and standardized mesh evaluation.
+"""
+
+import numpy as np
+from typing import Dict, Optional
+
+
+def compute_mie_error(mesh, u_fem: np.ndarray, params: Dict[str, float]) -> Dict[str, float]:
+ """Compute FEM vs Mie analytical solution error.
+
+ Uses area-weighted relative error:
+ aw_rel = sqrt( sum(err_tri^2 * area) / sum(ref_tri^2 * area) )
+
+ Parameters
+ ----------
+ mesh : skfem.Mesh
+ u_fem : (n_vertices,) complex128
+ FEM solution at mesh vertices.
+ params : dict
+ Must contain: k, eps_r, cx, cy, radius
+
+ Returns
+ -------
+ dict with keys: aw_rel, max_err, DoF, n_elements, n_vertices
+ """
+ from environment.mie_solution import mie_scattered_field
+
+ k = params["k"]
+ eps_r = params["eps_r"]
+ cx = params["cx"]
+ cy = params["cy"]
+ radius = params["radius"]
+
+ pts = mesh.p.T # (n_vertices, 2)
+ tri = mesh.t.T # (n_elements, 3)
+
+ u_mie = mie_scattered_field(pts, k0=k, eps_r=eps_r, radius=radius, cx=cx, cy=cy)
+
+ u_fem_scalar = np.real(u_fem)
+ u_mie_scalar = np.real(u_mie)
+
+ err_abs = np.abs(u_fem_scalar - u_mie_scalar)
+ ref_abs = np.abs(u_mie_scalar)
+
+ # Triangle areas
+ v1, v2, v3 = pts[tri[:, 0]], pts[tri[:, 1]], pts[tri[:, 2]]
+ tri_areas = 0.5 * np.abs(
+ (v2[:, 0] - v1[:, 0]) * (v3[:, 1] - v1[:, 1])
+ - (v3[:, 0] - v1[:, 0]) * (v2[:, 1] - v1[:, 1])
+ )
+
+ # Area-weighted error
+ err_tri_sq = (
+ err_abs[tri[:, 0]] ** 2
+ + err_abs[tri[:, 1]] ** 2
+ + err_abs[tri[:, 2]] ** 2
+ ) / 3.0
+ ref_tri_sq = (
+ ref_abs[tri[:, 0]] ** 2
+ + ref_abs[tri[:, 1]] ** 2
+ + ref_abs[tri[:, 2]] ** 2
+ ) / 3.0
+
+ ref_total = np.sum(ref_tri_sq * tri_areas)
+
+ aw_rel = (
+ float(np.sqrt(np.sum(err_tri_sq * tri_areas) / ref_total))
+ if ref_total > 1e-12
+ else float("nan")
+ )
+ max_err = float(np.max(err_abs))
+
+ return {
+ "aw_rel": aw_rel,
+ "max_err": max_err,
+ "DoF": mesh.p.shape[1],
+ "n_elements": mesh.t.shape[1],
+ "n_vertices": mesh.p.shape[1],
+ }
+
+
+def evaluate_mesh(
+ problem,
+ mesh,
+ params: Dict[str, float],
+ teacher_stats: Optional[Dict[str, float]] = None,
+ solve_count: int = 1,
+ eta_count: int = 0,
+) -> Dict[str, float]:
+ """Evaluate a mesh by solving FEM and computing Mie error.
+
+ Parameters
+ ----------
+ problem : HelmholtzProblem
+ mesh : skfem.Mesh
+ params : dict
+ Physical parameters for Mie error.
+ teacher_stats : dict, optional
+ Teacher mesh statistics for computing ratios. Expected keys: elements, dofs.
+ solve_count : int
+ Number of FEM solves used to produce this mesh.
+ eta_count : int
+ Number of residual estimator evaluations used.
+
+ Returns
+ -------
+ dict with standardized fields:
+ aw_rel, max_err, elements, dofs,
+ element_ratio_to_teacher, dof_ratio_to_teacher, num_solves
+ """
+ from skfem import Basis, ElementTriP1
+
+ basis = Basis(mesh, ElementTriP1())
+ u = problem.calculate_solution(basis=basis, cache=False)
+
+ err = compute_mie_error(mesh, u, params)
+
+ result = {
+ "aw_rel": err["aw_rel"],
+ "max_err": err["max_err"],
+ "elements": err["n_elements"],
+ "dofs": err["DoF"],
+ "num_solves": solve_count,
+ }
+
+ if teacher_stats is not None:
+ t_elements = teacher_stats.get("elements", 1)
+ t_dofs = teacher_stats.get("dofs", 1)
+ result["element_ratio_to_teacher"] = err["n_elements"] / max(t_elements, 1)
+ result["dof_ratio_to_teacher"] = err["DoF"] / max(t_dofs, 1)
+ else:
+ result["element_ratio_to_teacher"] = 1.0
+ result["dof_ratio_to_teacher"] = 1.0
+
+ return result
diff --git a/outlook/src/problem.py b/outlook/src/problem.py
new file mode 100644
index 0000000..696f982
--- /dev/null
+++ b/outlook/src/problem.py
@@ -0,0 +1,88 @@
+# 从参数字典创建 Helmholtz 散射问题实例和初始网格。
+"""problem_factory.py — Create Helmholtz cylinder scattering problems from parameter dicts.
+
+Wraps the existing environment backends (helmholtz.py, domain.py) to provide a
+clean interface for the one-shot density prediction pipeline.
+"""
+
+import copy
+import sys
+from pathlib import Path
+from typing import Any, Dict, Optional, Tuple
+
+import numpy as np
+
+_PROJECT_ROOT = Path(__file__).resolve().parent.parent.parent
+if str(_PROJECT_ROOT) not in sys.path:
+ sys.path.insert(0, str(_PROJECT_ROOT))
+
+from environment.helmholtz import HelmholtzProblem
+
+
+def create_problem_from_params(
+ params: Dict[str, float],
+ cfg: Optional[Dict[str, Any]] = None,
+ random_state: Optional[np.random.RandomState] = None,
+) -> Tuple[HelmholtzProblem, "Mesh"]:
+ """Create a HelmholtzProblem and return (problem, initial_mesh).
+
+ Parameters
+ ----------
+ params : dict
+ Must contain: k, eps_r (or epsilon_r), radius, center_x (or cx), center_y (or cy).
+ cfg : dict, optional
+ Override default FEM configuration fields. If None, uses sensible defaults
+ matching the existing experiments (k_ref=6.0, k_exponent=2.0, boundary=[0,0,1,1],
+ initial_num_elements=50).
+ random_state : np.random.RandomState, optional
+ RNG for mesh generation. If None, creates a new one.
+
+ Returns
+ -------
+ problem : HelmholtzProblem
+ initial_mesh : skfem.MeshTri1
+ """
+ # Normalize param keys (accept both naming conventions)
+ k = params.get("k", params.get("wave_number", 10.0))
+ eps_r = params.get("eps_r", params.get("epsilon_r", 2.0))
+ cx = params.get("cx", params.get("center_x", 0.5))
+ cy = params.get("cy", params.get("center_y", 0.5))
+ radius = params.get("radius", 0.2)
+
+ if random_state is None:
+ random_state = np.random.RandomState()
+
+ # Build fem_config with defaults
+ default_cfg = {
+ "helmholtz": {
+ "wave_number": float(k),
+ "wave_number_mode": "fixed",
+ "scatterer": {
+ "mode": "fixed",
+ "cx": float(cx),
+ "cy": float(cy),
+ "radius": float(radius),
+ "eps_r": float(eps_r),
+ },
+ "k_ref": 6.0,
+ "k_exponent": 2.0,
+ },
+ "domain": {
+ "boundary": [0, 0, 1, 1],
+ "initial_num_elements": 50,
+ },
+ }
+
+ # Merge user overrides
+ if cfg is not None:
+ for key in cfg:
+ if key in default_cfg and isinstance(default_cfg[key], dict) and isinstance(cfg[key], dict):
+ default_cfg[key].update(cfg[key])
+ else:
+ default_cfg[key] = cfg[key]
+
+ problem = HelmholtzProblem(
+ fem_config=default_cfg,
+ random_state=random_state,
+ )
+ return problem, problem.initial_mesh
diff --git a/outlook/src/rollout.py b/outlook/src/rollout.py
new file mode 100644
index 0000000..314ae86
--- /dev/null
+++ b/outlook/src/rollout.py
@@ -0,0 +1,863 @@
+#!/usr/bin/env python3
+"""
+rollout.py — Unified AMR rollout for correction GNN evaluation.
+
+Single source of truth for the iterative refinement loop used by:
+ - viz_correction.py (viz_amr, compare plots)
+ - eval_correction.py (rollout evaluation)
+
+Two-phase design:
+ 1. build_physics_safe_initial_mesh() (gen.py)
+ Uses score = max_edge / h_target; refines cells with score > 1
+ until all are physics-safe or max_initial_elements reached.
+
+ 2. run_rollout_to_budget() (this file)
+ Budget-aware top-k refinement to target_elements.
+ No score-based stopping — always reaches the target budget.
+
+All callers share the same:
+ - score computation (physics / neural / hybrid / eta)
+ - top-k cell selection
+ - area safety filter
+ - budget-aware binary search truncation
+ - FEM validation (strict mode)
+ - actual_elements recording
+
+Usage:
+ from outlook.src.rollout import run_rollout_to_budget, compute_scores
+
+ result = run_rollout_to_budget(
+ method="physics",
+ params={"k": 10, "eps_r": 4, "cx": 0.5, "cy": 0.5, "radius": 0.15},
+ target_elements=6000,
+ budget_mode="strict",
+ save_steps=True,
+ )
+"""
+
+import copy
+from typing import Optional
+
+import numpy as np
+
+
+# ============================================================================
+# GNN inference (internal)
+# ============================================================================
+
+
+def _predict_gnn(model, normalizer: dict, mesh, params: dict,
+ device: str = "cpu") -> np.ndarray:
+ """Return per-cell GNN sigmoid probabilities (raw, no top-k)."""
+ import torch
+ from torch_geometric.data import Data
+ from outlook.src.train_correction import CorrectionGNN, compute_edge_attr
+ from outlook.src.feat import build_initial_cell_features
+ from outlook.src.graph import build_edge_index_np
+ from outlook.src.gen import compute_physics_score
+
+ features = build_initial_cell_features(mesh, params)[:, :15]
+ physics_score = compute_physics_score(mesh, params)
+ x_np = np.concatenate([features, physics_score[:, None]], axis=1).astype(np.float32)
+
+ mean = np.array(normalizer["mean"], dtype=np.float32)
+ scale = np.array(normalizer["scale"], dtype=np.float32)
+ x_norm = (x_np - mean) / scale
+
+ x = torch.tensor(x_norm, dtype=torch.float32)
+ edge_index = torch.tensor(build_edge_index_np(mesh), dtype=torch.long)
+ edge_attr = compute_edge_attr(x, edge_index)
+ graph = Data(x=x, edge_index=edge_index, edge_attr=edge_attr).to(device)
+
+ with torch.no_grad():
+ logits = model(graph).cpu().numpy().flatten()
+ return 1.0 / (1.0 + np.exp(-logits))
+
+
+# ============================================================================
+# Score computation (unified)
+# ============================================================================
+
+
+def compute_scores(
+ method: str,
+ mesh,
+ params: dict,
+ model=None,
+ normalizer: dict = None,
+ device: str = "cpu",
+ alpha: float = 0.5,
+ beta: float = 0.5,
+ q: float = 2.0,
+) -> np.ndarray:
+ """Return per-cell scores for refinement marking.
+
+ Methods
+ -------
+ physics : max_edge / h_target (h_target = lambda_eff / q)
+ neural : GNN sigmoid probability
+ hybrid : alpha * zscore(physics) + beta * zscore(neural)
+ eta : residual indicator (requires FEM solve)
+ """
+ from outlook.src.gen import compute_physics_score
+
+ if method == "physics":
+ return compute_physics_score(mesh, params, q=q)
+
+ elif method == "neural":
+ return _predict_gnn(model, normalizer, mesh, params, device)
+
+ elif method == "hybrid":
+ physics = compute_physics_score(mesh, params, q=q)
+ neural = _predict_gnn(model, normalizer, mesh, params, device)
+ p_std = float(physics.std())
+ n_std = float(neural.std())
+ p_z = (physics - physics.mean()) / p_std if p_std > 1e-12 else np.zeros_like(physics)
+ n_z = (neural - neural.mean()) / n_std if n_std > 1e-12 else np.zeros_like(neural)
+ return alpha * p_z + beta * n_z
+
+ elif method == "eta":
+ from skfem import Basis, ElementTriP1
+ from environment.helmholtz import (
+ HelmholtzProblem,
+ _compute_eps_r_at_midpoints,
+ _compute_residual_indicator,
+ )
+ from outlook.src.gen import make_fem_config
+
+ fem_config = make_fem_config(params)
+ problem = HelmholtzProblem(
+ fem_config=fem_config,
+ random_state=np.random.RandomState(42),
+ )
+ basis = Basis(mesh, ElementTriP1())
+ u = problem.calculate_solution(basis=basis, cache=False)
+ eps_r_arr = _compute_eps_r_at_midpoints(
+ mesh, cx=params["cx"], cy=params["cy"],
+ radius=params["radius"], eps_r_in=params["eps_r"],
+ )
+ return _compute_residual_indicator(mesh, u, k=params["k"], eps_r=eps_r_arr)
+
+ else:
+ raise ValueError(f"Unknown method: {method!r}")
+
+
+# ============================================================================
+# Model loading
+# ============================================================================
+
+
+def load_model(checkpoint_path: str, device: str = "cpu"):
+ """Load correction GNN + normalizer from checkpoint."""
+ import torch
+ from outlook.src.train_correction import CorrectionGNN
+
+ ckpt = torch.load(checkpoint_path, map_location=device, weights_only=False)
+ config = ckpt["config"]
+ normalizer = ckpt["normalizer"]
+
+ model = CorrectionGNN(
+ node_dim=config["node_dim"],
+ edge_dim=config["edge_dim"],
+ latent_dim=config["latent_dim"],
+ num_mp_steps=config["num_mp_steps"],
+ head_hidden=config["head_hidden"],
+ edge_dropout=0.0,
+ )
+ model.load_state_dict(ckpt["model_state_dict"])
+ model.eval()
+ model.to(device)
+ return model, normalizer, config
+
+
+# ============================================================================
+# Shared AMR refinement: area-safety + reverse-Dorfler + top-k by log(eta)
+# ============================================================================
+
+
+def _area_eligible(mesh) -> np.ndarray:
+ """Return indices of cells with area > 1e-10 (non-degenerate)."""
+ i0, i1, i2 = mesh.t[0], mesh.t[1], mesh.t[2]
+ det_J = (
+ (mesh.p[0, i1] - mesh.p[0, i0]) * (mesh.p[1, i2] - mesh.p[1, i0])
+ - (mesh.p[0, i2] - mesh.p[0, i0]) * (mesh.p[1, i1] - mesh.p[1, i0])
+ )
+ areas = np.abs(det_J) / 2.0
+ return np.where(areas > 1e-10)[0]
+
+
+def _refine_by_eta(mesh, eta, mark_fraction, max_elements):
+ """Shared refinement step: area-safety + reverse-Dorfler + top-k by log(eta).
+
+ Implements the same refinement logic used by gen.py, amr.py, and
+ viz_correction.py. Returns the refined mesh, or None if no eligible
+ cells remain or the budget is already reached.
+
+ Parameters
+ ----------
+ mesh : skfem.Mesh
+ Current mesh.
+ eta : (n_elem,) array
+ Per-cell residual indicator.
+ mark_fraction : float
+ Fraction of elements to refine per step.
+ max_elements : int
+ Hard cap on element count.
+
+ Returns
+ -------
+ mesh or None
+ Refined mesh, or None if refinement is not possible.
+ """
+ n_elem = mesh.t.shape[1]
+ if n_elem >= max_elements:
+ return None
+
+ # 1. Area safety filter
+ area_eligible = _area_eligible(mesh)
+
+ # 2. Reverse Dorfler: remove lowest-error cells
+ eta_sq = eta ** 2
+ total_energy = np.sum(eta_sq)
+ if total_energy > 0 and len(area_eligible) > 1:
+ idx_asc = np.argsort(eta)
+ cumsum_asc = np.cumsum(eta_sq[idx_asc])
+ k_dorfler = int(np.searchsorted(cumsum_asc, 0.01 * total_energy))
+ min_keep = max(1, n_elem // 5)
+ k_cut = min(k_dorfler, n_elem - min_keep)
+ error_eligible = idx_asc[k_cut:]
+ else:
+ error_eligible = np.arange(n_elem)
+
+ eligible = np.intersect1d(area_eligible, error_eligible)
+ if len(eligible) == 0:
+ return None
+
+ # 3. Top-k by log(eta)
+ log_eta = np.log(np.maximum(eta, 1e-30))
+ n_select = min(
+ len(eligible),
+ max(1, int(n_elem * mark_fraction)),
+ (max_elements - n_elem) // 4,
+ )
+ if n_select <= 0:
+ return None
+
+ selected = eligible[np.argsort(log_eta[eligible])[-n_select:]]
+ return mesh.refined(selected)
+
+
+# ============================================================================
+# Budget-aware refinement (strict mode)
+# ============================================================================
+
+
+def _choose_budgeted_refinement(mesh, eligible_indices, scores, target,
+ n_mark=None, validate_solve=False, problem=None,
+ params=None):
+ """Binary search for the largest refinement batch that stays within budget.
+
+ Searches within the top-n_mark cells (by score) of eligible_indices.
+ Uses physical tie-breaking when many cells share the same cutoff score.
+
+ Parameters
+ ----------
+ mesh : current mesh
+ eligible_indices : cell indices eligible for refinement (after area safety)
+ scores : per-cell scores (higher = refine first)
+ target : max element count
+ n_mark : int, optional
+ Max number of cells to consider. Default: len(eligible_indices).
+ validate_solve : if True, check that refined mesh produces valid FEM
+ problem : HelmholtzProblem (required if validate_solve=True)
+ params : dict, optional — physical params for tie-breaking
+
+ Returns
+ -------
+ refined_mesh or None if no valid refinement found
+ """
+ from skfem import Basis, ElementTriP1
+
+ # Sort eligible cells by score descending with physical tie-breaking
+ if params is not None:
+ p = mesh.p
+ t = mesh.t
+ mx = (p[0, t[0]] + p[0, t[1]] + p[0, t[2]]) / 3.0
+ my = (p[1, t[0]] + p[1, t[1]] + p[1, t[2]]) / 3.0
+ cx, cy, radius = params["cx"], params["cy"], params["radius"]
+ dist = np.sqrt((mx - cx)**2 + (my - cy)**2)
+ signed_dist = dist - radius
+ is_inside = dist <= radius
+ domain_center = np.array([
+ (p[0].min() + p[0].max()) / 2.0,
+ (p[1].min() + p[1].max()) / 2.0,
+ ])
+ k = min(n_mark or len(eligible_indices), len(eligible_indices))
+ sorted_eligible, _ = _topk_indices(
+ scores[eligible_indices], k,
+ signed_dist[eligible_indices],
+ is_inside[eligible_indices],
+ domain_center,
+ )
+ sorted_eligible = eligible_indices[sorted_eligible]
+ else:
+ order = np.argsort(scores[eligible_indices])[::-1]
+ sorted_eligible = eligible_indices[order]
+ # Limit to top-n_mark
+ if n_mark is not None and n_mark < len(sorted_eligible):
+ sorted_eligible = sorted_eligible[:n_mark]
+
+ n_cells = mesh.t.shape[1]
+ if n_cells >= target:
+ return None
+
+ lo, hi = 1, len(sorted_eligible)
+ best_n = 0
+ best_mesh = None
+
+ while lo <= hi:
+ mid = (lo + hi) // 2
+ selected = sorted_eligible[:mid]
+ trial = mesh.refined(selected)
+
+ if trial.t.shape[1] > target:
+ hi = mid - 1
+ continue
+
+ if validate_solve and problem is not None:
+ try:
+ b_trial = Basis(trial, ElementTriP1())
+ u_trial = problem.calculate_solution(basis=b_trial, cache=False)
+ if np.any(np.isnan(u_trial)):
+ hi = mid - 1
+ continue
+ except Exception:
+ hi = mid - 1
+ continue
+
+ best_n = mid
+ best_mesh = trial
+ lo = mid + 1
+
+ if best_n == 0:
+ # Even 1 cell overshoots — try single cell
+ trial = mesh.refined(sorted_eligible[:1])
+ if trial.t.shape[1] <= target:
+ if validate_solve and problem is not None:
+ try:
+ b_trial = Basis(trial, ElementTriP1())
+ u_trial = problem.calculate_solution(basis=b_trial, cache=False)
+ if not np.any(np.isnan(u_trial)):
+ return trial
+ except Exception:
+ pass
+ else:
+ return trial
+ return None
+
+ return best_mesh
+
+
+# ============================================================================
+# Score diagnostics
+# ============================================================================
+
+
+def _compute_cell_geometry(mesh, params):
+ """Compute per-cell midpoints, signed_dist, is_inside, and domain_center once.
+
+ Returns a dict with keys: mx, my, signed_dist, is_inside, domain_center.
+ Callers can reuse these instead of recomputing from scratch.
+ """
+ cx, cy, radius = params["cx"], params["cy"], params["radius"]
+ p = mesh.p
+ t = mesh.t
+ mx = (p[0, t[0]] + p[0, t[1]] + p[0, t[2]]) / 3.0
+ my = (p[1, t[0]] + p[1, t[1]] + p[1, t[2]]) / 3.0
+ dist = np.sqrt((mx - cx)**2 + (my - cy)**2)
+ return {
+ "mx": mx, "my": my,
+ "signed_dist": dist - radius,
+ "is_inside": dist <= radius,
+ "domain_center": np.array([(p[0].min() + p[0].max()) / 2.0,
+ (p[1].min() + p[1].max()) / 2.0]),
+ }
+
+
+def _compute_score_diagnostics(scores, mesh, params, selected=None, geom=None):
+ """Compute per-step score diagnostics for logging.
+
+ Parameters
+ ----------
+ scores : (n_cells,) array
+ mesh : current mesh
+ params : dict with k, eps_r, cx, cy, radius
+ selected : array of selected cell indices, or None
+ geom : dict from _compute_cell_geometry, optional (avoids recomputation)
+
+ Returns
+ -------
+ dict with score statistics and cell classification
+ """
+ if geom is None:
+ geom = _compute_cell_geometry(mesh, params)
+ mx, my = geom["mx"], geom["my"]
+ inside = geom["is_inside"]
+ dist = np.sqrt((mx - params["cx"])**2 + (my - params["cy"])**2)
+
+ # Interface band: within one h_target of boundary
+ k = params["k"]
+ eps_r_val = params["eps_r"]
+ lambda_eff_in = 2.0 * np.pi / (k * np.sqrt(eps_r_val))
+ lambda_eff_out = 2.0 * np.pi / k
+ h_target_in = lambda_eff_in / 2.0
+ h_target_out = lambda_eff_out / 2.0
+ margin = np.where(inside, h_target_in, h_target_out)
+ interface = (dist > params["radius"]) & (dist <= params["radius"] + margin)
+ outside = dist > params["radius"] + margin
+
+ diag = {
+ "score_max": float(np.max(scores)),
+ "score_mean": float(np.mean(scores)),
+ "score_p50": float(np.percentile(scores, 50)),
+ "score_p90": float(np.percentile(scores, 90)),
+ "fraction_gt1": float(np.mean(scores > 1.0)),
+ "n_inside": int(np.sum(inside)),
+ "n_interface": int(np.sum(interface)),
+ "n_outside": int(np.sum(outside)),
+ }
+
+ if selected is not None and len(selected) > 0:
+ sel_inside = int(np.sum(inside[selected]))
+ sel_interface = int(np.sum(interface[selected]))
+ sel_outside = int(np.sum(outside[selected]))
+ n_sel = len(selected)
+ diag["selected_inside_frac"] = sel_inside / n_sel
+ diag["selected_interface_frac"] = sel_interface / n_sel
+ diag["selected_outside_frac"] = sel_outside / n_sel
+ sx = mx[selected]
+ sy = my[selected]
+ diag["selected_x_range"] = float(sx.max() - sx.min())
+ diag["selected_y_range"] = float(sy.max() - sy.min())
+ else:
+ diag["selected_inside_frac"] = 0.0
+ diag["selected_interface_frac"] = 0.0
+ diag["selected_outside_frac"] = 0.0
+ diag["selected_x_range"] = 0.0
+ diag["selected_y_range"] = 0.0
+
+ return diag
+
+
+# ============================================================================
+# Deterministic top-k selection with physical tie-breaking
+# ============================================================================
+
+
+def _topk_indices(scores, k, signed_dist, is_inside, domain_center):
+ """Select top-k cell indices by score with deterministic physical tie-breaking.
+
+ When many cells share the same cutoff score (common on uniform/graded
+ meshes), raw argsort selects by array index — spatially arbitrary.
+ This function breaks ties using physical criteria to produce a
+ spatially coherent, deterministic selection.
+
+ Parameters
+ ----------
+ scores : (n_cells,) array — higher = refine first
+ k : int — number of cells to select
+ signed_dist : (n_cells,) array — negative inside scatterer, positive outside
+ is_inside : (n_cells,) bool array — True if cell midpoint is inside scatterer
+ domain_center : (2,) array — [cx, cy] of domain for spatial tie-breaking
+
+ Returns
+ -------
+ topk_idx : (k,) int array — selected cell indices
+ diag : dict with cutoff_score, num_tied_at_cutoff
+ """
+ n = len(scores)
+ k = min(k, n)
+
+ # Partition top-k (O(n), no full sort needed)
+ topk_idx = np.argpartition(scores, -k)[-k:]
+ # Sort top-k by score descending
+ topk_sorted = topk_idx[np.argsort(scores[topk_idx])[::-1]]
+
+ # Check for ties at the cutoff
+ cutoff_score = float(scores[topk_sorted[-1]])
+ num_tied = int(np.sum(scores == cutoff_score))
+
+ diag = {
+ "cutoff_score": cutoff_score,
+ "num_tied_at_cutoff": num_tied,
+ }
+
+ if num_tied <= 1:
+ # No ties — standard sort is deterministic
+ return topk_sorted, diag
+
+ # ── Physical tie-breaking for cells at cutoff score ──
+ tied_mask = (scores == cutoff_score)
+ tied_idx = np.where(tied_mask)[0]
+
+ # Determine which tied cells are in the top-k and which are not
+ # Those already in topk_sorted stay; those not in may replace
+ # some that are. We re-rank ALL tied cells together.
+ in_topk = np.isin(tied_idx, topk_sorted)
+ # Tied cells currently in top-k (to be re-ranked)
+ tied_in_topk = tied_idx[in_topk]
+ # Tied cells NOT in top-k (candidates to replace those dropped)
+ tied_not_in_topk = tied_idx[~in_topk]
+
+ # How many tied cells should be in the final top-k?
+ n_from_above = k - len(tied_in_topk) # cells with score > cutoff already selected
+ # The above count is: total top-k minus tied-in-topk
+ # But we need to count cells in topk_sorted with score > cutoff
+ n_above_cutoff = int(np.sum(scores[topk_sorted] > cutoff_score))
+ n_tied_needed = k - n_above_cutoff
+
+ if n_tied_needed <= 0:
+ return topk_sorted, diag
+
+ # Combine all tied cells and re-rank by physical criteria
+ all_tied = tied_idx
+ sd = signed_dist[all_tied]
+ inside = is_inside[all_tied].astype(np.float32)
+
+ # Physical tie-breaker priority:
+ # 1. Interface proximity: -abs(signed_dist) → boundary cells first
+ # 2. Inside preference: is_inside → scatterer interior preferred
+ # 3. Spatial uniformity: -dist_to_center → spread selection across domain
+ # (prevents clustering in one corner)
+ dc_x = domain_center[0]
+ dc_y = domain_center[1]
+ # Cell midpoints from signed_dist: we approximate dist_to_center
+ # from the domain center. For cells at the same score, we want
+ # spatial spread, so we use a deterministic spatial key instead
+ # of Euclidean distance (which would cluster at center).
+ # Use: quadrant-based spatial key + distance as final tie-breaker.
+ #
+ # Actually, for spatial spread we want cells FARTHER from center
+ # to also be selected (not just closest). Use signed_dist as the
+ # primary physical key, and cell index as absolute last resort
+ # (it's deterministic even if not spatially meaningful).
+ abs_sd = np.abs(sd)
+ tie_key = (
+ -abs_sd * 1000.0 # interface proximity (highest priority)
+ + inside * 100.0 # inside preference
+ )
+ tied_order = np.argsort(tie_key)[::-1] # descending: best first
+ best_tied = all_tied[tied_order[:n_tied_needed]]
+
+ # Build final selection: non-tied top cells + best tied cells
+ non_tied_in_topk = topk_sorted[scores[topk_sorted] > cutoff_score]
+ result = np.concatenate([non_tied_in_topk, best_tied])
+ return result, diag
+
+
+# ============================================================================
+# Unified AMR rollout
+# ============================================================================
+
+
+def run_rollout_to_budget(
+ method: str,
+ params: dict,
+ target_elements: int,
+ q: float = 2.0,
+ mark_fraction: float = 0.03,
+ max_steps: int = 40,
+ checkpoint_path: str = None,
+ model=None,
+ normalizer: dict = None,
+ device: str = "cpu",
+ seed: int = 42,
+ alpha: float = 0.5,
+ beta: float = 0.5,
+ budget_mode: str = "strict",
+ save_steps: bool = False,
+ verbose: bool = False,
+) -> dict:
+ """Run iterative AMR refinement to target_elements (budget-aware).
+
+ This is the *rollout-to-budget* phase — distinct from initial mesh
+ generation (build_physics_safe_initial_mesh). No score-based stopping:
+ always refines top-k cells by score until target_elements reached.
+
+ Parameters
+ ----------
+ method : str
+ Scoring method: "physics", "neural", "hybrid", or "eta".
+ params : dict
+ Physical parameters (k, eps_r, cx, cy, radius).
+ target_elements : int
+ Target element count (hard cap in strict mode).
+ q : float
+ Elements per wavelength for initial mesh.
+ mark_fraction : float
+ Fraction of cells to mark per step.
+ max_steps : int
+ Maximum refinement iterations.
+ checkpoint_path : str, optional
+ Path to correction GNN checkpoint. Required for neural/hybrid.
+ model : loaded model, optional
+ Pre-loaded model (overrides checkpoint_path).
+ normalizer : dict, optional
+ Pre-loaded normalizer (overrides checkpoint_path).
+ device : str
+ Torch device.
+ seed : int
+ Random seed for problem initialization.
+ alpha, beta : float
+ Weights for hybrid method.
+ budget_mode : str
+ "strict": binary search + area safety + FEM validation. Never exceeds target.
+ "fast": simple min-cap, no area safety, no FEM validation.
+ save_steps : bool
+ If True, record per-step mesh/solution/error for visualization.
+ verbose : bool
+ If True, print per-step progress.
+
+ Returns
+ -------
+ dict with keys:
+ mesh, u_scat, aw_rel, max_err, actual_elements,
+ num_steps, num_solves, steps (if save_steps), score_stats
+ """
+ from skfem import Basis, ElementTriP1
+ from environment.helmholtz import HelmholtzProblem
+ from outlook.src.gen import make_fem_config, build_physics_safe_initial_mesh
+ from outlook.src.metrics import compute_mie_error
+
+ # ── Load model if needed ──
+ if method in ("neural", "hybrid") and model is None:
+ if checkpoint_path is None:
+ raise ValueError(f"method={method!r} requires checkpoint_path or pre-loaded model")
+ model, normalizer, _ = load_model(checkpoint_path, device)
+
+ # ── Create problem and initial mesh ──
+ fem_config = make_fem_config(params)
+ problem = HelmholtzProblem(
+ fem_config=fem_config,
+ random_state=np.random.RandomState(seed),
+ )
+ mesh = build_physics_safe_initial_mesh(params, q=q, verbose=False)
+
+ # Auto-reduce q if initial mesh already exceeds budget
+ while mesh.t.shape[1] >= target_elements and q > 1.0:
+ q_old = q
+ q = round(q - 0.5, 1)
+ if verbose:
+ print(f"[Rollout] Initial mesh ({mesh.t.shape[1]} elem) >= target ({target_elements}), "
+ f"reducing q {q_old} -> {q}")
+ mesh = build_physics_safe_initial_mesh(params, q=q, verbose=False)
+
+ if verbose:
+ print(f"[Rollout] method={method} target={target_elements} "
+ f"budget_mode={budget_mode} mark_fraction={mark_fraction}")
+ print(f"[Rollout] k={params['k']:.2f} eps_r={params['eps_r']:.2f} "
+ f"cx={params['cx']:.2f} cy={params['cy']:.2f} r={params['radius']:.3f}")
+
+ # ── Iterative refinement ──
+ num_steps = 0
+ num_solves = 0
+ steps_data = [] if save_steps else None
+ score_stats = []
+ mesh_was_refined = False
+ prev_score_mean = None
+
+ for step in range(max_steps):
+ n_elem = mesh.t.shape[1]
+ if n_elem >= target_elements:
+ break
+
+ # Optional: FEM solve for step recording
+ u_scat = None
+ if save_steps:
+ basis = Basis(mesh, ElementTriP1())
+ u_scat = problem.calculate_solution(basis=basis, cache=False)
+ num_solves += 1
+
+ if not np.any(np.isnan(u_scat)):
+ err = compute_mie_error(mesh, u_scat, params)
+ if verbose:
+ print(f" Step {step:2d}: elem={n_elem:6d} "
+ f"aw_rel={err['aw_rel']*100:.2f}% max_err={err['max_err']:.4f}")
+ steps_data.append({
+ "mesh": copy.deepcopy(mesh),
+ "u_scat": u_scat.copy(),
+ "aw_rel": err["aw_rel"],
+ "max_err": err["max_err"],
+ "n_elem": n_elem,
+ })
+ else:
+ if verbose:
+ print(f" Step {step:2d}: elem={n_elem:6d} SOLVE FAILED (NaN)")
+
+ # Compute scores
+ scores = compute_scores(
+ method, mesh, params,
+ model=model, normalizer=normalizer,
+ device=device, alpha=alpha, beta=beta, q=q,
+ )
+
+ # ── Compute cell geometry once per step ──
+ geom = _compute_cell_geometry(mesh, params)
+
+ # ── Score diagnostics (before refinement) ──
+ diag = _compute_score_diagnostics(scores, mesh, params, geom=geom)
+ diag["step"] = step
+ diag["n_elem"] = n_elem
+ diag["target_elements"] = target_elements
+ diag["gap"] = target_elements - n_elem
+
+ if budget_mode == "strict":
+ # ── Strict: area safety + binary search ──
+ eligible = _area_eligible(mesh)
+ if len(eligible) == 0:
+ if verbose:
+ print(f" No eligible cells, stopping.")
+ score_stats.append(diag)
+ mesh_was_refined = False
+ break
+
+ n_mark = max(1, int(n_elem * mark_fraction))
+ n_mark = min(n_mark, len(eligible))
+
+ # Snapshot: mesh.refined() in the binary search may corrupt
+ # cached facets/t2f of the original mesh object.
+ mesh_snapshot = copy.deepcopy(mesh)
+
+ refined = _choose_budgeted_refinement(
+ mesh_snapshot, eligible, scores, target_elements,
+ n_mark=n_mark,
+ validate_solve=False,
+ problem=problem,
+ params=params,
+ )
+
+ if refined is None:
+ score_stats.append(diag)
+ mesh_was_refined = False
+ break
+
+ if refined.t.shape[1] <= n_elem:
+ score_stats.append(diag)
+ mesh_was_refined = False
+ break
+
+ # Record selected cells for diagnostics
+ sel_idx, tie_diag = _topk_indices(
+ scores[eligible], n_mark,
+ geom["signed_dist"][eligible],
+ geom["is_inside"][eligible],
+ geom["domain_center"],
+ )
+ selected = eligible[sel_idx]
+ diag_sel = _compute_score_diagnostics(scores, mesh, params, selected, geom=geom)
+ diag["selected_inside_frac"] = diag_sel["selected_inside_frac"]
+ diag["selected_interface_frac"] = diag_sel["selected_interface_frac"]
+ diag["selected_outside_frac"] = diag_sel["selected_outside_frac"]
+ diag["selected_x_range"] = diag_sel["selected_x_range"]
+ diag["selected_y_range"] = diag_sel["selected_y_range"]
+ diag["cutoff_score"] = tie_diag["cutoff_score"]
+ diag["num_tied_at_cutoff"] = tie_diag["num_tied_at_cutoff"]
+
+ mesh = refined
+ mesh_was_refined = True
+
+ else:
+ # ── Fast: simple min-cap ──
+ n_mark = max(1, int(n_elem * mark_fraction))
+ n_mark = min(n_mark, max(1, (target_elements - n_elem) // 3))
+
+ if n_mark >= n_elem:
+ selected = np.arange(n_elem)
+ diag["cutoff_score"] = float(np.min(scores))
+ diag["num_tied_at_cutoff"] = int(np.sum(scores == diag["cutoff_score"]))
+ else:
+ sel_idx, tie_diag = _topk_indices(
+ scores, n_mark,
+ geom["signed_dist"],
+ geom["is_inside"],
+ geom["domain_center"],
+ )
+ selected = sel_idx
+ diag["cutoff_score"] = tie_diag["cutoff_score"]
+ diag["num_tied_at_cutoff"] = tie_diag["num_tied_at_cutoff"]
+
+ # Record selected cells for diagnostics
+ diag_sel = _compute_score_diagnostics(scores, mesh, params, selected, geom=geom)
+ diag["selected_inside_frac"] = diag_sel["selected_inside_frac"]
+ diag["selected_interface_frac"] = diag_sel["selected_interface_frac"]
+ diag["selected_outside_frac"] = diag_sel["selected_outside_frac"]
+ diag["selected_x_range"] = diag_sel["selected_x_range"]
+ diag["selected_y_range"] = diag_sel["selected_y_range"]
+
+ new_mesh = mesh.refined(selected)
+ if new_mesh.t.shape[1] <= n_elem:
+ score_stats.append(diag)
+ mesh_was_refined = False
+ break
+
+ mesh = new_mesh
+ mesh_was_refined = True
+
+ # ── Score decrease tracking ──
+ if prev_score_mean is not None:
+ diag["score_decreased"] = diag["score_mean"] < prev_score_mean
+ else:
+ diag["score_decreased"] = None
+ prev_score_mean = diag["score_mean"]
+
+ score_stats.append(diag)
+
+ # score diagnostics recorded in diag; no per-step print (too noisy)
+
+ num_steps += 1
+
+ # ── Final FEM solve (always — callers need u_scat) ──
+ basis = Basis(mesh, ElementTriP1())
+ u_final = problem.calculate_solution(basis=basis, cache=False)
+ num_solves += 1
+
+ aw_rel = float("nan")
+ max_err = float("nan")
+
+ if not np.any(np.isnan(u_final)):
+ err = compute_mie_error(mesh, u_final, params)
+ aw_rel = err["aw_rel"]
+ max_err = err["max_err"]
+
+ if verbose:
+ print(f" Final: elem={mesh.t.shape[1]:6d} "
+ f"aw_rel={aw_rel*100:.2f}% max_err={max_err:.4f}")
+
+ if save_steps:
+ steps_data.append({
+ "mesh": copy.deepcopy(mesh),
+ "u_scat": u_final.copy(),
+ "aw_rel": aw_rel,
+ "max_err": max_err,
+ "n_elem": mesh.t.shape[1],
+ })
+
+ result = {
+ "mesh": mesh,
+ "u_scat": u_final,
+ "aw_rel": aw_rel,
+ "max_err": max_err,
+ "actual_elements": mesh.t.shape[1],
+ "num_steps": num_steps,
+ "num_solves": num_solves,
+ "score_stats": score_stats,
+ }
+
+ if save_steps:
+ result["steps"] = steps_data
+
+ return result
+
+
+# Backward-compatible alias
+run_rollout = run_rollout_to_budget
diff --git a/outlook/src/test_correction.py b/outlook/src/test_correction.py
new file mode 100644
index 0000000..32863ab
--- /dev/null
+++ b/outlook/src/test_correction.py
@@ -0,0 +1,344 @@
+#!/usr/bin/env python3
+"""
+test_correction.py
+==================
+Evaluate trained correction GNN on validation set.
+
+Outputs:
+ - Per-graph metrics (top-k overlap, AUC)
+ - Comparison: GNN vs physics baseline
+ - Visualization: mesh with predicted vs true teacher_mark cells
+
+Usage:
+ python outlook/src/test_correction.py \
+ --checkpoint outlook/ckpt/correction.pt \
+ --data-dir outlook/data_correction \
+ --device cpu \
+ --visualize
+"""
+
+import argparse
+import glob
+import json
+import re
+import sys
+from pathlib import Path
+from typing import Dict, List
+
+import numpy as np
+
+_PROJECT_ROOT = Path(__file__).resolve().parent.parent.parent
+sys.path.insert(0, str(_PROJECT_ROOT))
+
+import torch
+from torch_geometric.data import Data
+from torch_geometric.loader import DataLoader
+from sklearn.metrics import roc_auc_score
+
+from outlook.src.train_correction import CorrectionGNN, compute_edge_attr, load_correction_dataset
+
+
+# ============================================================================
+# Evaluation
+# ============================================================================
+
+
+def evaluate(
+ model: CorrectionGNN,
+ graphs: List[Data],
+ device: str = "cpu",
+) -> Dict:
+ """Evaluate model on a list of graphs.
+
+ Returns per-graph and overall metrics.
+ """
+ model.eval()
+ model.to(device)
+
+ loader = DataLoader(graphs, batch_size=1, shuffle=False)
+
+ results = []
+ all_logits, all_targets, all_physics = [], [], []
+
+ with torch.no_grad():
+ for i, batch in enumerate(loader):
+ batch = batch.to(device)
+ logits = model(batch).cpu().numpy().flatten()
+ targets = batch.y.cpu().numpy().flatten()
+ g = graphs[i]
+
+ # Physics baseline
+ physics = g.physics_score_raw.numpy()
+
+ # Top-k overlap
+ k = int(targets.sum())
+ if k > 0 and k < len(targets):
+ # GNN
+ top_gnn = set(np.argsort(logits)[-k:])
+ top_true = set(np.where(targets > 0.5)[0])
+ gnn_overlap = len(top_gnn & top_true) / k
+
+ # Physics
+ top_phys = set(np.argsort(physics)[-k:])
+ phys_overlap = len(top_phys & top_true) / k
+ else:
+ gnn_overlap = 0.0
+ phys_overlap = 0.0
+
+ results.append({
+ "file": g.file,
+ "sample_id": g.sample_id,
+ "n_cells": len(targets),
+ "n_positive": k,
+ "gnn_topk": gnn_overlap,
+ "physics_topk": phys_overlap,
+ "gnn_beats_physics": gnn_overlap > phys_overlap,
+ })
+
+ all_logits.append(logits)
+ all_targets.append(targets)
+ all_physics.append(physics)
+
+ # Overall metrics
+ all_logits_cat = np.concatenate(all_logits)
+ all_targets_cat = np.concatenate(all_targets)
+ all_physics_cat = np.concatenate(all_physics)
+
+ try:
+ auc_gnn = roc_auc_score(all_targets_cat, all_logits_cat)
+ except ValueError:
+ auc_gnn = 0.0
+
+ try:
+ auc_phys = roc_auc_score(all_physics_cat, all_targets_cat)
+ except ValueError:
+ auc_phys = 0.0
+
+ gnn_topk_mean = np.mean([r["gnn_topk"] for r in results])
+ phys_topk_mean = np.mean([r["physics_topk"] for r in results])
+ n_beat = sum(1 for r in results if r["gnn_beats_physics"])
+
+ summary = {
+ "n_graphs": len(results),
+ "gnn_auc": float(auc_gnn),
+ "physics_auc": float(auc_phys),
+ "gnn_topk_mean": float(gnn_topk_mean),
+ "physics_topk_mean": float(phys_topk_mean),
+ "gnn_beats_physics_count": n_beat,
+ "gnn_beats_physics_ratio": n_beat / max(len(results), 1),
+ "per_graph": results,
+ }
+
+ return summary
+
+
+# ============================================================================
+# Visualization
+# ============================================================================
+
+
+def visualize_predictions(
+ model: CorrectionGNN,
+ graphs: List[Data],
+ data_dir: Path,
+ out_dir: Path,
+ device: str = "cpu",
+ max_plots: int = 10,
+):
+ """Visualize predicted vs true teacher_mark on mesh."""
+ import matplotlib
+ matplotlib.use("Agg")
+ import matplotlib.pyplot as plt
+ from matplotlib.colors import ListedColormap
+
+ out_dir = Path(out_dir)
+ out_dir.mkdir(parents=True, exist_ok=True)
+
+ model.eval()
+ model.to(device)
+
+ cmap = ListedColormap(["#d0d0d0", "#e74c3c"]) # gray=0, red=1
+
+ plotted = 0
+ for i, g in enumerate(graphs):
+ if plotted >= max_plots:
+ break
+
+ with torch.no_grad():
+ g_device = g.to(device)
+ logits = model(g_device).cpu().numpy().flatten()
+
+ targets = g.y.numpy()
+ physics = g.physics_score_raw.numpy()
+ k = int(targets.sum())
+ if k == 0:
+ continue
+
+ # Predicted top-k
+ pred_mark = np.zeros(len(targets), dtype=int)
+ pred_mark[np.argsort(logits)[-k:]] = 1
+
+ # Physics top-k
+ phys_mark = np.zeros(len(targets), dtype=int)
+ phys_mark[np.argsort(physics)[-k:]] = 1
+
+ # Load raw features to get cell positions (midpoints)
+ d = np.load(data_dir / g.file)
+ features = d["features"] # (n_elem, 15)
+ # features columns 0,1 are midpoint x,y
+ mid_x = features[:, 0]
+ mid_y = features[:, 1]
+
+ fig, axes = plt.subplots(2, 2, figsize=(14, 12))
+ fig.suptitle(f"{g.file} (n={len(targets)}, k={k})", fontsize=12)
+
+ # True teacher_mark
+ ax = axes[0, 0]
+ scatter = ax.scatter(mid_x, mid_y, c=targets, cmap=cmap, s=3, vmin=0, vmax=1)
+ ax.set_title(f"True teacher_mark (k={k})")
+ ax.set_aspect("equal")
+
+ # GNN prediction
+ ax = axes[0, 1]
+ ax.scatter(mid_x, mid_y, c=pred_mark, cmap=cmap, s=3, vmin=0, vmax=1)
+ gnn_overlap = len(set(np.argsort(logits)[-k:]) & set(np.where(targets > 0.5)[0])) / k
+ ax.set_title(f"GNN prediction (topk={gnn_overlap:.3f})")
+ ax.set_aspect("equal")
+
+ # Physics baseline
+ ax = axes[1, 0]
+ ax.scatter(mid_x, mid_y, c=phys_mark, cmap=cmap, s=3, vmin=0, vmax=1)
+ phys_overlap = len(set(np.argsort(physics)[-k:]) & set(np.where(targets > 0.5)[0])) / k
+ ax.set_title(f"Physics baseline (topk={phys_overlap:.3f})")
+ ax.set_aspect("equal")
+
+ # Error map: green=correct, red=wrong
+ ax = axes[1, 1]
+ correct = (pred_mark == targets).astype(int)
+ colors = np.where(correct, "#2ecc71", "#e74c3c")
+ # Highlight true positives and false positives
+ tp = (pred_mark == 1) & (targets == 1)
+ fp = (pred_mark == 1) & (targets == 0)
+ fn = (pred_mark == 0) & (targets == 1)
+ tn = (pred_mark == 0) & (targets == 0)
+
+ ax.scatter(mid_x[tn], mid_y[tn], c="#d0d0d0", s=2, label=f"TN ({tn.sum()})")
+ ax.scatter(mid_x[tp], mid_y[tp], c="#2ecc71", s=8, label=f"TP ({tp.sum()})")
+ ax.scatter(mid_x[fp], mid_y[fp], c="#3498db", s=8, label=f"FP ({fp.sum()})")
+ ax.scatter(mid_x[fn], mid_y[fn], c="#e74c3c", s=8, label=f"FN ({fn.sum()})")
+ ax.legend(fontsize=8, loc="upper right")
+ ax.set_title(f"GNN errors (acc={correct.mean():.3f})")
+ ax.set_aspect("equal")
+
+ fig.tight_layout()
+ fname = out_dir / f"{Path(g.file).stem}_vis.png"
+ fig.savefig(fname, dpi=120)
+ plt.close(fig)
+ plotted += 1
+ print(f" Saved: {fname}")
+
+ if plotted == 0:
+ print(" No plots generated (no positive samples in val set).")
+
+
+# ============================================================================
+# Main
+# ============================================================================
+
+
+def main():
+ parser = argparse.ArgumentParser(description="Test correction GNN")
+ parser.add_argument("--checkpoint", type=str, required=True)
+ parser.add_argument("--data-dir", type=str, required=True)
+ parser.add_argument("--device", type=str, default="cpu")
+ parser.add_argument("--seed", type=int, default=42)
+ parser.add_argument("--val-ratio", type=float, default=0.2)
+ parser.add_argument("--visualize", action="store_true", help="Generate mesh visualizations")
+ parser.add_argument("--max-plots", type=int, default=10)
+ parser.add_argument("--output-dir", type=str, default=str(_PROJECT_ROOT / "outlook" / "result" / "correction"))
+ args = parser.parse_args()
+
+ device = args.device
+ if device == "cuda" and not torch.cuda.is_available():
+ print("CUDA unavailable, falling back to CPU")
+ device = "cpu"
+
+ # Load checkpoint
+ print(f"Loading checkpoint: {args.checkpoint}")
+ ckpt = torch.load(args.checkpoint, map_location=device, weights_only=False)
+ config = ckpt["config"]
+
+ model = CorrectionGNN(
+ node_dim=config["node_dim"],
+ edge_dim=config["edge_dim"],
+ latent_dim=config["latent_dim"],
+ num_mp_steps=config["num_mp_steps"],
+ head_hidden=config["head_hidden"],
+ edge_dropout=0.0,
+ )
+ model.load_state_dict(ckpt["model_state_dict"])
+ model.eval()
+
+ print(f" Epochs trained: {config['epochs']}")
+
+ # Load dataset (same split as training)
+ print("\nLoading dataset...")
+ train_graphs, val_graphs, node_dim, normalizer = load_correction_dataset(
+ data_dir=Path(args.data_dir),
+ val_ratio=args.val_ratio,
+ seed=args.seed,
+ )
+
+ # Store raw physics_score
+ data_dir = Path(args.data_dir)
+ for g in val_graphs:
+ d = np.load(data_dir / g.file)
+ g.physics_score_raw = torch.tensor(d["physics_score"], dtype=torch.float32)
+
+ # Evaluate
+ print("\nEvaluating on validation set...")
+ summary = evaluate(model, val_graphs, device=device)
+
+ print(f"\n{'='*60}")
+ print("Results")
+ print(f"{'='*60}")
+ print(f" Val graphs: {summary['n_graphs']}")
+ print(f" GNN AUC: {summary['gnn_auc']:.4f}")
+ print(f" Physics AUC: {summary['physics_auc']:.4f}")
+ print(f" GNN top-k mean: {summary['gnn_topk_mean']:.4f}")
+ print(f" Physics top-k: {summary['physics_topk_mean']:.4f}")
+ print(f" GNN beats physics: {summary['gnn_beats_physics_count']}/{summary['n_graphs']} "
+ f"({summary['gnn_beats_physics_ratio']*100:.1f}%)")
+
+ # Per-graph detail
+ print(f"\n{'='*60}")
+ print("Per-graph detail:")
+ print(f"{'='*60}")
+ print(f" {'file':30s} {'n':>5s} {'k':>4s} {'gnn':>6s} {'phys':>6s} {'beat':>5s}")
+ print(f" {'-'*30} {'-'*5} {'-'*4} {'-'*6} {'-'*6} {'-'*5}")
+ for r in summary["per_graph"]:
+ beat = "✓" if r["gnn_beats_physics"] else ""
+ print(f" {r['file']:30s} {r['n_cells']:5d} {r['n_positive']:4d} "
+ f"{r['gnn_topk']:6.3f} {r['physics_topk']:6.3f} {beat:>5s}")
+
+ # Save results
+ out_dir = Path(args.output_dir)
+ out_dir.mkdir(parents=True, exist_ok=True)
+ result_path = out_dir / "test_results.json"
+ with open(result_path, "w") as f:
+ json.dump(summary, f, indent=2)
+ print(f"\nResults saved: {result_path}")
+
+ # Visualize
+ if args.visualize:
+ print("\nGenerating visualizations...")
+ visualize_predictions(
+ model, val_graphs, data_dir, out_dir / "vis",
+ device=device, max_plots=args.max_plots,
+ )
+
+ print("\nDone.")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/outlook/src/train.py b/outlook/src/train.py
new file mode 100644
index 0000000..a066a9e
--- /dev/null
+++ b/outlook/src/train.py
@@ -0,0 +1,676 @@
+#!/usr/bin/env python3
+# 训练 budget-conditioned DensityGNN:输入 features_base + budget_code,预测每个初始单元的 density score。
+"""
+run_train_density_gnn_budgeted.py
+==================================
+Train a budget-conditioned DensityGNN on the multi-budget teacher dataset.
+
+Each (sample_id, budget_id) pair becomes one training sample:
+ - Node features: features_base (15-dim) + budget_code (1-dim) = 16-dim
+ budget_code = log(actual_elements[budget_id] / n_init)
+ - Target: log1p(density[budget_id])
+
+Usage:
+ python outlook/src/train.py --data-dir outlook/data --epochs 200
+ python outlook/src/train.py --data-dir outlook/data --epochs 2 --batch-size 2
+"""
+
+import argparse
+import json
+import sys
+import time
+from pathlib import Path
+from typing import Dict, List, Tuple
+
+import numpy as np
+
+_PROJECT_ROOT = Path(__file__).resolve().parent.parent.parent
+sys.path.insert(0, str(_PROJECT_ROOT))
+
+import torch
+import torch.nn as nn
+import torch.optim as optim
+from torch_geometric.data import Data
+from torch_geometric.loader import DataLoader
+
+from outlook.src.feat import append_budget_feature
+from outlook.src.graph import build_graph_from_mesh
+from outlook.src.problem import create_problem_from_params
+from outlook.src.gnn import DensityGNN
+
+OUTLOOK_DIR = _PROJECT_ROOT / "outlook"
+CKPT_DIR = OUTLOOK_DIR / "ckpt"
+CKPT_DIR.mkdir(parents=True, exist_ok=True)
+
+
+# ============================================================================
+# Data loading — expand (sample, budget) pairs into individual graphs
+# ============================================================================
+
+
+def load_budget_dataset(
+ data_dir: Path,
+ budgets_filter: List[int] = None,
+ val_ratio: float = 0.2,
+ seed: int = 42,
+ use_invalid_budgets: bool = False,
+) -> Tuple[List[Data], List[Data], Dict]:
+ """Load multi-budget dataset, expanding each (sample, budget_id) into a graph.
+
+ For each sample .npz:
+ 1. Reconstruct mesh from params → edge_index, edge_attr
+ 2. For each budget_id:
+ - budget_code = log(actual_elements[budget_id] / n_init)
+ - features_16 = append_budget_feature(features_base, actual_elements, n_init)
+ - target = log1p(densities[budget_id])
+ - Build PyG Data
+
+ Parameters
+ ----------
+ data_dir : Path
+ budgets_filter : list of int, optional
+ If set, only use these budget values (must match entries in budgets array).
+ val_ratio : float
+ seed : int
+ use_invalid_budgets : bool
+ If False (default), only use (sample, budget) pairs where valid_budgets=True.
+
+ Returns
+ -------
+ train_graphs, val_graphs, normalizer
+ """
+ data_dir = Path(data_dir)
+ params_data = np.load(data_dir / "params_list.npz")
+ params_array = params_data["params"] # (N, 5)
+ n_samples = len(params_array)
+
+ # Split by sample (not by budget pair) to avoid data leakage
+ rng = np.random.RandomState(seed)
+ indices = np.arange(n_samples)
+ rng.shuffle(indices)
+
+ n_val = max(1, int(n_samples * val_ratio))
+ val_set = set(indices[:n_val].tolist())
+ train_set = set(indices[n_val:].tolist())
+
+ # Collect features for normalization (training only)
+ all_train_features = []
+ train_graphs: List[Data] = []
+ val_graphs: List[Data] = []
+
+ # Track valid/invalid pair counts
+ n_valid_pairs = 0
+ n_invalid_pairs = 0
+ budget_valid_counts: Dict[int, int] = {}
+
+ # Cache mesh reconstruction to avoid rebuilding for same sample
+ mesh_cache: Dict[int, Tuple] = {}
+
+ for sid in range(n_samples):
+ npz_path = data_dir / f"{sid:04d}.npz"
+ if not npz_path.exists():
+ continue
+
+ d = np.load(npz_path)
+ features_base = d["features_base"] # (n_init, 15) float32
+ budgets = d["budgets"] # (B,) int64
+ actual_elements = d["actual_elements"] # (B,) int64
+ densities = d["densities"] # (B, n_init) int32
+ n_init = int(d["n_init"])
+
+ # Load valid_budgets if available (new format), else all True
+ if "valid_budgets" in d:
+ valid_budgets = d["valid_budgets"] # (B,) bool
+ else:
+ valid_budgets = np.ones(len(budgets), dtype=bool)
+
+ params = {
+ "k": float(d["k"]),
+ "eps_r": float(d["eps_r"]),
+ "cx": float(d["cx"]),
+ "cy": float(d["cy"]),
+ "radius": float(d["radius"]),
+ }
+
+ # Reconstruct mesh for graph structure (once per sample)
+ if sid not in mesh_cache:
+ _, initial_mesh = create_problem_from_params(params)
+ template_graph = build_graph_from_mesh(initial_mesh, params, budget_ratio=1.0)
+ mesh_cache[sid] = (template_graph.edge_index, template_graph.edge_attr)
+ edge_index, edge_attr = mesh_cache[sid]
+
+ is_train = sid in train_set
+
+ B = len(budgets)
+ for bi in range(B):
+ # Filter by requested budgets if specified
+ if budgets_filter is not None and int(budgets[bi]) not in budgets_filter:
+ continue
+
+ # Filter by valid_budgets unless --use-invalid-budgets
+ if not use_invalid_budgets and not valid_budgets[bi]:
+ n_invalid_pairs += 1
+ continue
+
+ n_valid_pairs += 1
+ budget_valid_counts.setdefault(int(budgets[bi]), 0)
+ budget_valid_counts[int(budgets[bi])] += 1
+
+ # budget_code uses actual_elements, NOT requested budget
+ target_elements = float(actual_elements[bi])
+ features_16 = append_budget_feature(features_base, target_elements, n_init)
+
+ # Target: log1p(density)
+ density = densities[bi].astype(np.float64)
+ target = np.log1p(density).astype(np.float32)
+
+ x = torch.tensor(features_16, dtype=torch.float32)
+ y = torch.tensor(target, dtype=torch.float32)
+
+ graph = Data(
+ x=x,
+ edge_index=edge_index.clone(),
+ edge_attr=edge_attr.clone(),
+ y=y,
+ )
+ graph.sample_id = sid
+ graph.budget_id = bi
+ graph.requested_budget = int(budgets[bi])
+ graph.actual_elements = int(actual_elements[bi])
+ graph.n_cells = n_init
+ graph.params = params
+
+ if is_train:
+ train_graphs.append(graph)
+ all_train_features.append(features_16)
+ else:
+ val_graphs.append(graph)
+
+ # Compute normalization from training set
+ all_train_features = np.concatenate(all_train_features, axis=0)
+ feat_mean = all_train_features.mean(axis=0).astype(np.float32)
+ feat_std = all_train_features.std(axis=0).astype(np.float32)
+ feat_std[feat_std < 1e-8] = 1.0
+
+ normalizer = {
+ "mean": feat_mean.tolist(),
+ "scale": feat_std.tolist(),
+ }
+
+ mean_t = torch.tensor(feat_mean, dtype=torch.float32)
+ scale_t = torch.tensor(feat_std, dtype=torch.float32)
+
+ for g in train_graphs + val_graphs:
+ g.x = (g.x - mean_t) / scale_t
+
+ print(f" Samples: {n_samples} | Train samples: {len(train_set)} Val samples: {len(val_set)}")
+ print(f" Train pairs: {len(train_graphs)} Val pairs: {len(val_graphs)}")
+ print(f" Valid pairs: {n_valid_pairs} Invalid (skipped): {n_invalid_pairs}")
+ if budget_valid_counts:
+ print(f" Per-budget valid counts:")
+ for b in sorted(budget_valid_counts.keys()):
+ print(f" budget={b:6d} valid={budget_valid_counts[b]}")
+
+ return train_graphs, val_graphs, normalizer
+
+
+# ============================================================================
+# Loss functions
+# ============================================================================
+
+
+def compute_mse_loss(
+ pred: torch.Tensor,
+ target: torch.Tensor,
+ weight: torch.Tensor = None,
+) -> torch.Tensor:
+ """MSE loss, optionally weighted."""
+ if weight is not None:
+ return torch.mean(weight * (pred - target) ** 2)
+ return torch.mean((pred - target) ** 2)
+
+
+def compute_density_weight(
+ target: torch.Tensor,
+ lambda_high: float = 1.0,
+) -> torch.Tensor:
+ """Compute density-based weighting: weight = 1 + lambda_high * normalized(log1p(density)).
+
+ Normalization is per-graph (using batch info) or global min/max.
+ """
+ with torch.no_grad():
+ t_min = target.min()
+ t_max = target.max()
+ if t_max - t_min > 1e-8:
+ t_norm = (target - t_min) / (t_max - t_min)
+ else:
+ t_norm = torch.zeros_like(target)
+ weight = 1.0 + lambda_high * t_norm
+ return weight
+
+
+def compute_monotonic_loss(
+ pred: torch.Tensor,
+ batch_idx: torch.Tensor,
+ actual_elements: torch.Tensor,
+) -> torch.Tensor:
+ """Monotonic loss: for same sample, higher budget → higher score.
+
+ L_mono = mean(ReLU(score_low - score_high))
+ """
+ loss = torch.tensor(0.0, device=pred.device)
+ count = 0
+
+ for sid in batch_idx.unique():
+ mask = batch_idx == sid
+ p = pred[mask]
+ elems = actual_elements[mask]
+
+ # Sort by actual_elements
+ order = torch.argsort(elems)
+ p_sorted = p[order]
+
+ if len(p_sorted) >= 2:
+ diff = p_sorted[:-1] - p_sorted[1:] # low - high
+ loss = loss + torch.relu(diff).sum()
+ count += len(diff)
+
+ return loss / max(count, 1)
+
+
+# ============================================================================
+# Training loop
+# ============================================================================
+
+
+def train(
+ train_graphs: List[Data],
+ val_graphs: List[Data],
+ normalizer: Dict,
+ latent_dim: int = 64,
+ num_mp_steps: int = 3,
+ head_hidden: int = 64,
+ edge_dropout: float = 0.1,
+ batch_size: int = 16,
+ epochs: int = 100,
+ lr: float = 1e-3,
+ weight_decay: float = 1e-4,
+ device: str = "cpu",
+ lambda_high: float = 1.0,
+ use_density_weight: bool = True,
+ mono_weight: float = 0.0,
+) -> Tuple[DensityGNN, List[Dict]]:
+ """Train budget-conditioned DensityGNN."""
+ sample_graph = train_graphs[0]
+ node_dim = sample_graph.x.shape[1]
+ edge_dim = sample_graph.edge_attr.shape[1] if sample_graph.edge_attr.dim() > 1 else 1
+
+ model = DensityGNN(
+ node_dim=node_dim,
+ edge_dim=edge_dim,
+ latent_dim=latent_dim,
+ num_mp_steps=num_mp_steps,
+ head_hidden=head_hidden,
+ edge_dropout=edge_dropout,
+ ).to(device)
+
+ use_gpu = device.startswith("cuda")
+ train_loader = DataLoader(train_graphs, batch_size=batch_size, shuffle=True, pin_memory=use_gpu)
+ val_loader = DataLoader(val_graphs, batch_size=batch_size, shuffle=False, pin_memory=use_gpu)
+
+ optimizer = optim.Adam(model.parameters(), lr=lr, weight_decay=weight_decay)
+ scheduler = optim.lr_scheduler.ReduceLROnPlateau(optimizer, mode="min", factor=0.5, patience=10)
+
+ best_val_loss = float("inf")
+ best_state_dict = None
+ log = []
+
+ for epoch in range(epochs):
+ # -- Train --
+ model.train()
+ train_losses = []
+ for batch in train_loader:
+ batch = batch.to(device)
+ optimizer.zero_grad()
+
+ pred = model(batch)
+ target = batch.y
+
+ if use_density_weight:
+ w = compute_density_weight(target, lambda_high)
+ loss = compute_mse_loss(pred, target, w)
+ else:
+ loss = compute_mse_loss(pred, target)
+
+ if mono_weight > 0 and hasattr(batch, 'actual_elements'):
+ # Build per-node actual_elements tensor
+ actual_elems = torch.zeros(pred.shape[0], device=device)
+ batch_np = batch.batch.cpu().numpy()
+ ae = batch.actual_elements # (num_graphs,) tensor
+ for g_idx in range(batch.num_graphs):
+ g_mask = batch_np == g_idx
+ actual_elems[g_mask] = ae[g_idx]
+ mono_loss = compute_monotonic_loss(pred, batch.batch, actual_elems)
+ loss = loss + mono_weight * mono_loss
+
+ loss.backward()
+ optimizer.step()
+ train_losses.append(loss.item())
+
+ # -- Validate --
+ model.eval()
+ val_losses = []
+ all_preds, all_targets = [], []
+ with torch.no_grad():
+ for batch in val_loader:
+ batch = batch.to(device)
+ pred = model(batch)
+ loss = nn.functional.mse_loss(pred, batch.y)
+ val_losses.append(loss.item())
+ all_preds.append(pred.cpu().numpy())
+ all_targets.append(batch.y.cpu().numpy())
+
+ avg_train = np.mean(train_losses)
+ avg_val = np.mean(val_losses)
+ scheduler.step(avg_val)
+
+ all_preds_cat = np.concatenate(all_preds)
+ all_targets_cat = np.concatenate(all_targets)
+ corr = np.corrcoef(all_preds_cat, all_targets_cat)[0, 1] if len(all_preds_cat) > 1 else 0.0
+
+ # Top-20% overlap
+ top20_overlaps = []
+ model.eval()
+ with torch.no_grad():
+ for batch in val_loader:
+ batch = batch.to(device)
+ pred = model(batch).cpu().numpy()
+ target = batch.y.cpu().numpy()
+ batch_idx = batch.batch.cpu().numpy()
+ for g_id in np.unique(batch_idx):
+ mask = batch_idx == g_id
+ p_g = pred[mask]
+ t_g = target[mask]
+ if len(p_g) < 5:
+ continue
+ n_top = max(1, int(len(p_g) * 0.2))
+ top_pred = set(np.argsort(p_g)[-n_top:])
+ top_true = set(np.argsort(t_g)[-n_top:])
+ top20_overlaps.append(len(top_pred & top_true) / n_top)
+ top20_mean = np.mean(top20_overlaps) if top20_overlaps else 0.0
+
+ entry = {
+ "epoch": epoch,
+ "train_loss": avg_train,
+ "val_loss": avg_val,
+ "val_corr": float(corr),
+ "val_top20_overlap": float(top20_mean),
+ "lr": optimizer.param_groups[0]["lr"],
+ }
+ log.append(entry)
+
+ if epoch % 10 == 0 or epoch == epochs - 1:
+ print(
+ f" Epoch {epoch:3d} | train={avg_train:.4f} val={avg_val:.4f} "
+ f"| corr={corr:.4f} top20={top20_mean:.3f} lr={entry['lr']:.2e}"
+ )
+
+ if avg_val < best_val_loss:
+ best_val_loss = avg_val
+ best_state_dict = {k: v.cpu().clone() for k, v in model.state_dict().items()}
+
+ model.load_state_dict(best_state_dict)
+ return model, log
+
+
+# ============================================================================
+# Per-budget evaluation
+# ============================================================================
+
+
+def evaluate_per_budget(
+ model: DensityGNN,
+ val_graphs: List[Data],
+ normalizer: Dict,
+ device: str = "cpu",
+) -> Dict:
+ """Evaluate model grouped by requested budget."""
+ model.eval()
+ model.to(device)
+
+ budget_groups: Dict[int, List[Data]] = {}
+ for g in val_graphs:
+ b = g.requested_budget
+ budget_groups.setdefault(b, []).append(g)
+
+ results = {}
+ all_preds_combined = []
+ all_targets_combined = []
+
+ for budget in sorted(budget_groups.keys()):
+ graphs = budget_groups[budget]
+ loader = DataLoader(graphs, batch_size=64, shuffle=False)
+
+ preds_list, targets_list = [], []
+ top20_overlaps = []
+
+ with torch.no_grad():
+ for batch in loader:
+ batch = batch.to(device)
+ pred = model(batch).cpu().numpy()
+ target = batch.y.cpu().numpy()
+ preds_list.append(pred)
+ targets_list.append(target)
+
+ batch_idx = batch.batch.cpu().numpy()
+ for g_id in np.unique(batch_idx):
+ mask = batch_idx == g_id
+ p_g = pred[mask]
+ t_g = target[mask]
+ if len(p_g) < 5:
+ continue
+ n_top = max(1, int(len(p_g) * 0.2))
+ top_pred = set(np.argsort(p_g)[-n_top:])
+ top_true = set(np.argsort(t_g)[-n_top:])
+ top20_overlaps.append(len(top_pred & top_true) / n_top)
+
+ preds = np.concatenate(preds_list)
+ targets = np.concatenate(targets_list)
+ mse = float(np.mean((preds - targets) ** 2))
+ corr = float(np.corrcoef(preds, targets)[0, 1]) if len(preds) > 1 else 0.0
+ top20 = float(np.mean(top20_overlaps)) if top20_overlaps else 0.0
+
+ results[f"budget_{budget}"] = {
+ "mse": mse,
+ "corr": corr,
+ "top20_overlap": top20,
+ "n_graphs": len(graphs),
+ }
+
+ all_preds_combined.append(preds)
+ all_targets_combined.append(targets)
+
+ all_preds = np.concatenate(all_preds_combined)
+ all_targets = np.concatenate(all_targets_combined)
+ results["overall"] = {
+ "mse": float(np.mean((all_preds - all_targets) ** 2)),
+ "corr": float(np.corrcoef(all_preds, all_targets)[0, 1]) if len(all_preds) > 1 else 0.0,
+ }
+
+ return results
+
+
+# ============================================================================
+# Main
+# ============================================================================
+
+
+def main():
+ parser = argparse.ArgumentParser(description="Train budget-conditioned DensityGNN")
+ parser.add_argument("--data-dir", type=str, required=True, help="Path to budget dataset directory")
+ parser.add_argument("--epochs", type=int, default=100)
+ parser.add_argument("--batch-size", type=int, default=16)
+ parser.add_argument("--lr", type=float, default=1e-3)
+ parser.add_argument("--weight-decay", type=float, default=1e-4)
+ parser.add_argument("--latent-dim", type=int, default=64)
+ parser.add_argument("--num-mp-steps", type=int, default=3)
+ parser.add_argument("--head-hidden", type=int, default=64)
+ parser.add_argument("--edge-dropout", type=float, default=0.1)
+ parser.add_argument("--device", type=str, default="cpu")
+ parser.add_argument("--checkpoint-out", type=str, default=None,
+ help="Checkpoint path (default: ckpt/budgeted.pt)")
+ parser.add_argument("--budgets", type=str, default=None,
+ help="Comma-separated budgets to train on (default: all)")
+ parser.add_argument("--mono-weight", type=float, default=0.0,
+ help="Weight for monotonic loss (default: 0.0 = disabled)")
+ parser.add_argument("--density-weight", type=float, default=1.0,
+ help="Lambda for density-weighted MSE (default: 1.0, 0 to disable)")
+ parser.add_argument("--seed", type=int, default=42)
+ parser.add_argument("--val-ratio", type=float, default=0.2)
+ parser.add_argument("--use-invalid-budgets", action="store_true",
+ help="Include (sample, budget) pairs where match_ratio is outside valid range")
+ args = parser.parse_args()
+
+ device = args.device
+ if device == "cuda" and not torch.cuda.is_available():
+ print("CUDA unavailable, falling back to CPU")
+ device = "cpu"
+
+ torch.manual_seed(args.seed)
+ np.random.seed(args.seed)
+ if torch.cuda.is_available():
+ torch.cuda.manual_seed_all(args.seed)
+
+ ckpt_path = Path(args.checkpoint_out) if args.checkpoint_out else CKPT_DIR / "budgeted.pt"
+
+ budgets_filter = None
+ if args.budgets:
+ budgets_filter = [int(b) for b in args.budgets.split(",")]
+
+ use_density_weight = args.density_weight > 0
+ lambda_high = args.density_weight if use_density_weight else 0.0
+
+ print("=" * 60)
+ print("Budget-Conditioned DensityGNN Training")
+ print("=" * 60)
+ print(f" Data dir: {args.data_dir}")
+ print(f" Device: {device}")
+ print(f" Epochs: {args.epochs}")
+ print(f" Batch size: {args.batch_size}")
+ print(f" LR: {args.lr}")
+ print(f" Latent dim: {args.latent_dim}")
+ print(f" MP steps: {args.num_mp_steps}")
+ print(f" Density weight: {lambda_high} ({'on' if use_density_weight else 'off'})")
+ print(f" Mono weight: {args.mono_weight}")
+ print(f" Budgets filter: {budgets_filter or 'all'}")
+ print(f" Use invalid: {args.use_invalid_budgets}")
+ print(f" Checkpoint: {ckpt_path}")
+ print()
+
+ # Load data
+ print("Loading budget dataset...")
+ t0 = time.perf_counter()
+ data_dir = Path(args.data_dir)
+ train_graphs, val_graphs, normalizer = load_budget_dataset(
+ data_dir=data_dir,
+ budgets_filter=budgets_filter,
+ val_ratio=args.val_ratio,
+ seed=args.seed,
+ use_invalid_budgets=args.use_invalid_budgets,
+ )
+ print(f" Loaded in {time.perf_counter() - t0:.1f}s")
+
+ # Print budget vs actual_elements summary
+ print("\n Budget mapping (train samples):")
+ budget_actual_map: Dict[int, List[int]] = {}
+ for g in train_graphs:
+ budget_actual_map.setdefault(g.requested_budget, []).append(g.actual_elements)
+ for b in sorted(budget_actual_map.keys()):
+ actuals = budget_actual_map[b]
+ print(f" requested={b:6d} actual: mean={np.mean(actuals):.0f} std={np.std(actuals):.0f} range=[{min(actuals)}, {max(actuals)}]")
+
+ # Train
+ print("\nTraining...")
+ t0 = time.perf_counter()
+ model, log = train(
+ train_graphs, val_graphs, normalizer,
+ latent_dim=args.latent_dim,
+ num_mp_steps=args.num_mp_steps,
+ head_hidden=args.head_hidden,
+ edge_dropout=args.edge_dropout,
+ batch_size=args.batch_size,
+ epochs=args.epochs,
+ lr=args.lr,
+ weight_decay=args.weight_decay,
+ device=device,
+ lambda_high=lambda_high,
+ use_density_weight=use_density_weight,
+ mono_weight=args.mono_weight,
+ )
+ elapsed = time.perf_counter() - t0
+ print(f"\nTraining completed in {elapsed:.1f}s")
+
+ # Save checkpoint
+ torch.save({
+ "model_state_dict": model.state_dict(),
+ "normalizer": normalizer,
+ "training_log": log,
+ "config": {
+ "node_dim": 16,
+ "edge_dim": 1,
+ "latent_dim": args.latent_dim,
+ "num_mp_steps": args.num_mp_steps,
+ "head_hidden": args.head_hidden,
+ "edge_dropout": args.edge_dropout,
+ "epochs": args.epochs,
+ "lr": args.lr,
+ "batch_size": args.batch_size,
+ "weight_decay": args.weight_decay,
+ "density_weight": lambda_high,
+ "mono_weight": args.mono_weight,
+ "seed": args.seed,
+ },
+ }, ckpt_path)
+ print(f"\nCheckpoint saved: {ckpt_path}")
+
+ # Evaluate per budget
+ print("\nEvaluating per budget on validation set...")
+ eval_results = evaluate_per_budget(model, val_graphs, normalizer, device=device)
+
+ print(f"\n{'='*60}")
+ print("Per-budget validation results:")
+ print(f"{'='*60}")
+ for key, val in eval_results.items():
+ if key == "overall":
+ continue
+ print(f" {key:15s} | mse={val['mse']:.4f} corr={val['corr']:.4f} "
+ f"top20={val['top20_overlap']:.3f} (n={val['n_graphs']})")
+ print(f" {'overall':15s} | mse={eval_results['overall']['mse']:.4f} "
+ f"corr={eval_results['overall']['corr']:.4f}")
+
+ # Save eval json
+ eval_path = ckpt_path.with_suffix(".json")
+ eval_output = {
+ "config": {
+ "data_dir": str(args.data_dir),
+ "epochs": args.epochs,
+ "batch_size": args.batch_size,
+ "lr": args.lr,
+ "density_weight": lambda_high,
+ "mono_weight": args.mono_weight,
+ "seed": args.seed,
+ },
+ "per_budget": eval_results,
+ "training_log": log,
+ }
+ with open(eval_path, "w") as f:
+ json.dump(eval_output, f, indent=2)
+ print(f"\nEval results saved: {eval_path}")
+
+ print("\n" + "=" * 60)
+ print("Done.")
+ print("=" * 60)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/outlook/src/train_correction.py b/outlook/src/train_correction.py
new file mode 100644
index 0000000..2e9f3df
--- /dev/null
+++ b/outlook/src/train_correction.py
@@ -0,0 +1,563 @@
+#!/usr/bin/env python3
+"""
+train_correction.py
+===================
+Train a GNN for binary classification of teacher_mark.
+
+Input: concat(features, physics_score[:, None]) → node features (F+1)-dim
+Output: per-cell logit
+Loss: BCEWithLogitsLoss with per-graph pos_weight
+
+Data: outlook/data_correction/sample{XXXX}_step{YYY}.npz
+
+Usage:
+ bash train.sh
+"""
+
+import argparse
+import glob
+import json
+import re
+import sys
+import time
+from pathlib import Path
+from typing import Dict, List, Tuple
+
+import numpy as np
+
+_PROJECT_ROOT = Path(__file__).resolve().parent.parent.parent
+sys.path.insert(0, str(_PROJECT_ROOT))
+
+import torch
+import torch.nn as nn
+import torch.optim as optim
+from torch_geometric.data import Data
+from torch_geometric.loader import DataLoader
+from sklearn.metrics import roc_auc_score
+
+from outlook.src.gnn import DensityGNN
+
+
+# ============================================================================
+# GNN wrapper: change output head to single logit for binary classification
+# ============================================================================
+
+
+class CorrectionGNN(nn.Module):
+ """Reuse DensityGNN backbone, replace density head with binary logit head.
+
+ Also adjusts edge_dim to match computed edge features.
+ """
+
+ def __init__(
+ self,
+ node_dim: int = 16,
+ edge_dim: int = 16,
+ latent_dim: int = 64,
+ num_mp_steps: int = 3,
+ mlp_layers: int = 2,
+ head_hidden: int = 64,
+ activation: str = "leakyrelu",
+ edge_dropout: float = 0.1,
+ ):
+ super().__init__()
+ self.backbone = DensityGNN(
+ node_dim=node_dim,
+ edge_dim=edge_dim,
+ latent_dim=latent_dim,
+ num_mp_steps=num_mp_steps,
+ mlp_layers=mlp_layers,
+ head_hidden=head_hidden,
+ activation=activation,
+ edge_dropout=edge_dropout,
+ )
+ # Replace density regression head → binary logit head
+ self.backbone.head = nn.Sequential(
+ nn.Linear(latent_dim, head_hidden),
+ nn.ReLU(),
+ nn.Linear(head_hidden, 1),
+ )
+
+ def forward(self, graph: Data) -> torch.Tensor:
+ return self.backbone(graph)
+
+
+# ============================================================================
+# Edge feature computation
+# ============================================================================
+
+
+def compute_edge_attr(x: torch.Tensor, edge_index: torch.Tensor) -> torch.Tensor:
+ """Compute edge features as absolute difference of connected node features."""
+ src, dst = edge_index
+ return torch.abs(x[src] - x[dst])
+
+
+# ============================================================================
+# Data loading
+# ============================================================================
+
+
+def load_correction_dataset(
+ data_dir: Path,
+ val_ratio: float = 0.2,
+ seed: int = 42,
+) -> Tuple[List[Data], List[Data], int]:
+ """Load correction dataset, split by sample id.
+
+ Returns
+ -------
+ train_graphs, val_graphs, node_dim
+ """
+ data_dir = Path(data_dir)
+ pattern = str(data_dir / "sample*_step*.npz")
+ all_files = sorted(glob.glob(pattern))
+
+ if not all_files:
+ raise FileNotFoundError(f"No .npz files found matching {pattern}")
+
+ # Parse sample ids
+ sample_files: Dict[int, List[str]] = {}
+ for f in all_files:
+ m = re.search(r"sample(\d+)_step", f)
+ if m:
+ sid = int(m.group(1))
+ sample_files.setdefault(sid, []).append(f)
+
+ sample_ids = sorted(sample_files.keys())
+ print(f" Found {len(all_files)} files across {len(sample_ids)} samples")
+
+ # Split by sample id
+ rng = np.random.RandomState(seed)
+ indices = np.arange(len(sample_ids))
+ rng.shuffle(indices)
+ n_val = max(1, int(len(sample_ids) * val_ratio))
+ val_set = set(sample_ids[i] for i in indices[:n_val])
+ train_set = set(sample_ids[i] for i in indices[n_val:])
+
+ print(f" Train samples: {len(train_set)} Val samples: {len(val_set)}")
+
+ train_graphs: List[Data] = []
+ val_graphs: List[Data] = []
+ node_dim = None
+
+ for sid, files in sample_files.items():
+ is_train = sid in train_set
+ for f in files:
+ d = np.load(f)
+ features = d["features"].astype(np.float32) # (n_elem, F)
+ physics_score = d["physics_score"].astype(np.float32) # (n_elem,)
+ teacher_mark = d["teacher_mark"].astype(np.int64) # (n_elem,)
+ edge_index = torch.tensor(d["edge_index"], dtype=torch.long)
+
+ # x = concat(features, physics_score[:, None])
+ x_np = np.concatenate([features, physics_score[:, None]], axis=1)
+ x = torch.tensor(x_np, dtype=torch.float32)
+
+ if node_dim is None:
+ node_dim = x.shape[1]
+
+ edge_attr = compute_edge_attr(x, edge_index)
+
+ graph = Data(
+ x=x,
+ edge_index=edge_index,
+ edge_attr=edge_attr,
+ y=torch.tensor(teacher_mark, dtype=torch.float32),
+ )
+ graph.sample_id = sid
+ graph.file = Path(f).name
+
+ if is_train:
+ train_graphs.append(graph)
+ else:
+ val_graphs.append(graph)
+
+ # Normalize node features using training stats
+ all_train_x = torch.cat([g.x for g in train_graphs], dim=0)
+ feat_mean = all_train_x.mean(dim=0)
+ feat_std = all_train_x.std(dim=0)
+ feat_std[feat_std < 1e-8] = 1.0
+
+ for g in train_graphs + val_graphs:
+ g.x = (g.x - feat_mean) / feat_std
+ g.edge_attr = compute_edge_attr(g.x, g.edge_index)
+
+ normalizer = {"mean": feat_mean.tolist(), "scale": feat_std.tolist()}
+
+ n_train_graphs = len(train_graphs)
+ n_val_graphs = len(val_graphs)
+ n_train_nodes = sum(g.num_nodes for g in train_graphs)
+ n_val_nodes = sum(g.num_nodes for g in val_graphs)
+ n_train_pos = sum(int(g.y.sum()) for g in train_graphs)
+ n_val_pos = sum(int(g.y.sum()) for g in val_graphs)
+
+ print(f" Train: {n_train_graphs} graphs, {n_train_nodes} nodes, {n_train_pos} positive ({n_train_pos/max(n_train_nodes,1)*100:.1f}%)")
+ print(f" Val: {n_val_graphs} graphs, {n_val_nodes} nodes, {n_val_pos} positive ({n_val_pos/max(n_val_nodes,1)*100:.1f}%)")
+
+ return train_graphs, val_graphs, node_dim, normalizer
+
+
+# ============================================================================
+# Loss with per-graph pos_weight
+# ============================================================================
+
+
+def compute_bce_loss_with_pos_weight(
+ logits: torch.Tensor,
+ targets: torch.Tensor,
+ batch_idx: torch.Tensor,
+) -> torch.Tensor:
+ """BCEWithLogitsLoss with per-graph pos_weight = neg / max(pos, 1).
+
+ Fully vectorized via scatter_add — no Python per-graph loop.
+ """
+ n_graphs = int(batch_idx.max()) + 1
+
+ # Count pos/neg per graph via scatter
+ pos_counts = torch.zeros(n_graphs, device=logits.device)
+ pos_counts.scatter_add_(0, batch_idx.long(), targets)
+ total_counts = torch.zeros(n_graphs, device=logits.device)
+ total_counts.scatter_add_(0, batch_idx.long(), torch.ones_like(targets))
+
+ neg_counts = total_counts - pos_counts
+ pw_per_graph = neg_counts / pos_counts.clamp(min=1.0)
+
+ # Map each node to its graph's pos_weight
+ pw_expanded = pw_per_graph[batch_idx.long()]
+
+ # Weighted BCE: weight = pw for positive, 1 for negative
+ weight = pw_expanded * targets + (1.0 - targets)
+ loss = nn.functional.binary_cross_entropy_with_logits(logits, targets, weight=weight)
+
+ return loss
+
+
+# ============================================================================
+# Metrics
+# ============================================================================
+
+
+def compute_topk_overlap(
+ scores: np.ndarray,
+ targets: np.ndarray,
+ batch_idx: np.ndarray,
+) -> List[float]:
+ """Per-graph top-k overlap: k = number of positive targets."""
+ overlaps = []
+ for g_id in np.unique(batch_idx):
+ mask = batch_idx == g_id
+ s = scores[mask]
+ t = targets[mask]
+ k = int(t.sum())
+ if k == 0 or k >= len(s):
+ continue
+ top_pred = set(np.argsort(s)[-k:])
+ top_true = set(np.where(t > 0.5)[0])
+ overlaps.append(len(top_pred & top_true) / k)
+ return overlaps
+
+
+
+# ============================================================================
+# Training loop
+# ============================================================================
+
+
+def train(
+ train_graphs: List[Data],
+ val_graphs: List[Data],
+ node_dim: int,
+ latent_dim: int = 64,
+ num_mp_steps: int = 3,
+ head_hidden: int = 64,
+ edge_dropout: float = 0.1,
+ batch_size: int = 1,
+ epochs: int = 100,
+ lr: float = 1e-3,
+ weight_decay: float = 1e-4,
+ device: str = "cpu",
+ save_best_path: str = None,
+ normalizer: dict = None,
+) -> Tuple[CorrectionGNN, List[Dict]]:
+ """Train correction GNN."""
+ model = CorrectionGNN(
+ node_dim=node_dim,
+ edge_dim=node_dim, # edge_attr = |x[src] - x[dst]|
+ latent_dim=latent_dim,
+ num_mp_steps=num_mp_steps,
+ head_hidden=head_hidden,
+ edge_dropout=edge_dropout,
+ ).to(device)
+
+ use_gpu = device.startswith("cuda")
+ num_workers = min(4, batch_size) if use_gpu else 0
+ train_loader = DataLoader(train_graphs, batch_size=batch_size, shuffle=True,
+ pin_memory=use_gpu, num_workers=num_workers, persistent_workers=num_workers > 0)
+ val_loader = DataLoader(val_graphs, batch_size=batch_size, shuffle=False,
+ pin_memory=use_gpu, num_workers=num_workers, persistent_workers=num_workers > 0)
+
+ optimizer = optim.Adam(model.parameters(), lr=lr, weight_decay=weight_decay)
+ scheduler = optim.lr_scheduler.ReduceLROnPlateau(optimizer, mode="min", factor=0.5, patience=10)
+ scaler = torch.cuda.amp.GradScaler(enabled=use_gpu)
+
+ best_val_loss = float("inf")
+ best_state_dict = None
+ log = []
+
+ # Pre-compute physics baseline (fixed, no need to recompute every epoch)
+ physics_overlaps = []
+ for g in val_graphs:
+ ps = g.physics_score_raw.numpy() if hasattr(g, 'physics_score_raw') else g.x[:, -1].numpy()
+ t = g.y.numpy()
+ k = int(t.sum())
+ if k == 0 or k >= len(ps):
+ continue
+ top_pred = set(np.argsort(ps)[-k:])
+ top_true = set(np.where(t > 0.5)[0])
+ physics_overlaps.append(len(top_pred & top_true) / k)
+ physics_topk = np.mean(physics_overlaps) if physics_overlaps else 0.0
+
+ t_total = time.perf_counter()
+ for epoch in range(epochs):
+ t_epoch = time.perf_counter()
+
+ # -- Train --
+ model.train()
+ train_losses = []
+ for batch in train_loader:
+ batch = batch.to(device)
+ optimizer.zero_grad()
+
+ with torch.cuda.amp.autocast(enabled=use_gpu):
+ logits = model(batch)
+ targets = batch.y
+ loss = compute_bce_loss_with_pos_weight(logits, targets, batch.batch)
+
+ scaler.scale(loss).backward()
+ scaler.step(optimizer)
+ scaler.update()
+ train_losses.append(loss.item())
+
+ # -- Validate --
+ model.eval()
+ val_losses = []
+ all_logits, all_targets = [], []
+ all_physics_scores = []
+ all_batch_idx = []
+ offset = 0
+
+ with torch.no_grad(), torch.cuda.amp.autocast(enabled=use_gpu):
+ for batch in val_loader:
+ batch = batch.to(device)
+ logits = model(batch)
+ targets = batch.y
+
+ # Per-graph BCE loss
+ loss = compute_bce_loss_with_pos_weight(logits, targets, batch.batch)
+ val_losses.append(loss.item())
+
+ all_logits.append(logits.float().cpu().numpy())
+ all_targets.append(targets.cpu().numpy())
+ all_batch_idx.append(batch.batch.cpu().numpy() + offset)
+ offset += batch.num_graphs
+
+ all_logits_cat = np.concatenate(all_logits)
+ all_targets_cat = np.concatenate(all_targets)
+ all_batch_idx_cat = np.concatenate(all_batch_idx)
+
+ avg_train = np.mean(train_losses)
+ avg_val = np.mean(val_losses)
+ scheduler.step(avg_val)
+
+ # AUC
+ try:
+ auc = roc_auc_score(all_targets_cat, all_logits_cat)
+ except ValueError:
+ auc = 0.0
+
+ # Top-k overlap (model)
+ model_overlaps = compute_topk_overlap(all_logits_cat, all_targets_cat, all_batch_idx_cat)
+ model_topk = np.mean(model_overlaps) if model_overlaps else 0.0
+
+ entry = {
+ "epoch": epoch,
+ "train_loss": float(avg_train),
+ "val_loss": float(avg_val),
+ "val_auc": float(auc),
+ "val_topk_overlap": float(model_topk),
+ "physics_topk_overlap": float(physics_topk),
+ "lr": optimizer.param_groups[0]["lr"],
+ }
+ log.append(entry)
+
+ epoch_time = time.perf_counter() - t_epoch
+
+ if epoch % 10 == 0 or epoch == epochs - 1:
+ total_elapsed = time.perf_counter() - t_total
+ print(
+ f" Epoch {epoch:3d} | train={avg_train:.4f} val={avg_val:.4f} "
+ f"| auc={auc:.4f} topk={model_topk:.3f} phys={physics_topk:.3f} "
+ f"lr={entry['lr']:.2e} | {epoch_time:.1f}s | total={total_elapsed:.1f}s",
+ flush=True,
+ )
+
+ if avg_val < best_val_loss:
+ best_val_loss = avg_val
+ best_state_dict = {k: v.cpu().clone() for k, v in model.state_dict().items()}
+ if save_best_path:
+ torch.save({
+ "model_state_dict": best_state_dict,
+ "normalizer": normalizer,
+ "training_log": log,
+ "config": {
+ "node_dim": node_dim,
+ "edge_dim": node_dim,
+ "latent_dim": latent_dim,
+ "num_mp_steps": num_mp_steps,
+ "head_hidden": head_hidden,
+ "edge_dropout": edge_dropout,
+ "epochs": epochs,
+ "lr": lr,
+ "batch_size": batch_size,
+ },
+ "best_epoch": epoch,
+ "best_val_loss": float(best_val_loss),
+ }, save_best_path)
+
+ model.load_state_dict(best_state_dict)
+ return model, log
+
+
+# ============================================================================
+# Main
+# ============================================================================
+
+
+def main():
+ parser = argparse.ArgumentParser(description="Train teacher_mark binary classifier")
+ parser.add_argument("--data-dir", type=str, required=True)
+ parser.add_argument("--epochs", type=int, default=100)
+ parser.add_argument("--batch-size", type=int, default=1)
+ parser.add_argument("--lr", type=float, default=1e-3)
+ parser.add_argument("--weight-decay", type=float, default=1e-4)
+ parser.add_argument("--latent-dim", type=int, default=64)
+ parser.add_argument("--num-mp-steps", type=int, default=3)
+ parser.add_argument("--head-hidden", type=int, default=64)
+ parser.add_argument("--edge-dropout", type=float, default=0.1)
+ parser.add_argument("--device", type=str, default="cpu")
+ parser.add_argument("--checkpoint-out", type=str, default=None)
+ parser.add_argument("--seed", type=int, default=42)
+ parser.add_argument("--val-ratio", type=float, default=0.2)
+ args = parser.parse_args()
+
+ device = args.device
+ if device == "cuda" and not torch.cuda.is_available():
+ print("CUDA unavailable, falling back to CPU")
+ device = "cpu"
+
+ torch.manual_seed(args.seed)
+ np.random.seed(args.seed)
+ if torch.cuda.is_available():
+ torch.cuda.manual_seed_all(args.seed)
+
+ ckpt_dir = _PROJECT_ROOT / "outlook" / "ckpt"
+ ckpt_dir.mkdir(parents=True, exist_ok=True)
+ ckpt_path = Path(args.checkpoint_out) if args.checkpoint_out else ckpt_dir / "correction.pt"
+ log_path = ckpt_dir / "correction_train_log.json"
+
+ print("=" * 60)
+ print("Teacher-Mark Binary Classifier Training")
+ print("=" * 60)
+ print(f" Data dir: {args.data_dir}")
+ print(f" Device: {device}")
+ print(f" Epochs: {args.epochs}")
+ print(f" Batch size: {args.batch_size}")
+ print(f" LR: {args.lr}")
+ print(f" Latent dim: {args.latent_dim}")
+ print(f" MP steps: {args.num_mp_steps}")
+ print(f" Checkpoint: {ckpt_path}")
+ print(f" Log: {log_path}")
+ print()
+
+ # Load data
+ print("Loading dataset...")
+ t0 = time.perf_counter()
+ train_graphs, val_graphs, node_dim, normalizer = load_correction_dataset(
+ data_dir=Path(args.data_dir),
+ val_ratio=args.val_ratio,
+ seed=args.seed,
+ )
+ print(f" Loaded in {time.perf_counter() - t0:.1f}s")
+
+ # Store raw physics_score in graphs for baseline comparison
+ # Reload to get raw physics_score (before normalization)
+ data_dir = Path(args.data_dir)
+ for g in train_graphs + val_graphs:
+ d = np.load(data_dir / g.file)
+ g.physics_score_raw = torch.tensor(d["physics_score"], dtype=torch.float32)
+
+ # Train
+ print("\nTraining...")
+ t0 = time.perf_counter()
+ best_ckpt_path = ckpt_dir / "correction_best.pt"
+ model, log = train(
+ train_graphs, val_graphs, node_dim,
+ latent_dim=args.latent_dim,
+ num_mp_steps=args.num_mp_steps,
+ head_hidden=args.head_hidden,
+ edge_dropout=args.edge_dropout,
+ batch_size=args.batch_size,
+ epochs=args.epochs,
+ lr=args.lr,
+ weight_decay=args.weight_decay,
+ device=device,
+ save_best_path=str(best_ckpt_path),
+ normalizer=normalizer,
+ )
+ elapsed = time.perf_counter() - t0
+ print(f"\nTraining completed in {elapsed:.1f}s")
+
+ # Save checkpoint
+ torch.save({
+ "model_state_dict": model.state_dict(),
+ "normalizer": normalizer,
+ "training_log": log,
+ "config": {
+ "node_dim": node_dim,
+ "edge_dim": node_dim,
+ "latent_dim": args.latent_dim,
+ "num_mp_steps": args.num_mp_steps,
+ "head_hidden": args.head_hidden,
+ "edge_dropout": args.edge_dropout,
+ "epochs": args.epochs,
+ "lr": args.lr,
+ "batch_size": args.batch_size,
+ "seed": args.seed,
+ },
+ }, ckpt_path)
+ print(f"\nCheckpoint saved: {ckpt_path}")
+
+ # Save training log
+ with open(log_path, "w") as f:
+ json.dump(log, f, indent=2)
+ print(f"Training log saved: {log_path}")
+
+ # Final summary
+ if log:
+ best = min(log, key=lambda e: e["val_loss"])
+ print(f"\n{'='*60}")
+ print(f"Best epoch: {best['epoch']}")
+ print(f" val_loss: {best['val_loss']:.4f}")
+ print(f" val_auc: {best['val_auc']:.4f}")
+ print(f" val_topk: {best['val_topk_overlap']:.3f}")
+ print(f" phys_topk: {best['physics_topk_overlap']:.3f}")
+ beat = best['val_topk_overlap'] > best['physics_topk_overlap']
+ print(f" GNN beats physics: {'YES' if beat else 'NO'}")
+ print(f"{'='*60}")
+
+ print("\nDone.")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/outlook/src/viz_correction.py b/outlook/src/viz_correction.py
new file mode 100644
index 0000000..443182b
--- /dev/null
+++ b/outlook/src/viz_correction.py
@@ -0,0 +1,1074 @@
+#!/usr/bin/env python3
+"""
+viz_correction.py
+=================
+Visualize correction GNN predictions with mesh + field plots.
+
+Two modes:
+ amr — Drive full AMR loop with correction GNN, show final mesh + field + aw_rel
+ step — Per-step comparison: GNN vs teacher vs physics marks on mesh
+
+Usage:
+ # End-to-end AMR
+ python outlook/src/viz_correction.py \
+ --checkpoint outlook/ckpt/correction.pt \
+ --data-dir outlook/data_correction \
+ --mode amr --sample-id 0 --max-elements 5000
+
+ # Per-step comparison
+ python outlook/src/viz_correction.py \
+ --checkpoint outlook/ckpt/correction.pt \
+ --data-dir outlook/data_correction \
+ --mode step --sample-id 0 --step 0
+"""
+
+import argparse
+import copy
+import sys
+from pathlib import Path
+
+import numpy as np
+
+_PROJECT_ROOT = Path(__file__).resolve().parent.parent.parent
+if str(_PROJECT_ROOT) not in sys.path:
+ sys.path.insert(0, str(_PROJECT_ROOT))
+
+import torch
+
+from outlook.src.rollout import run_rollout_to_budget, load_model, _refine_by_eta
+from outlook.src.gen import make_fem_config, build_physics_safe_initial_mesh
+from outlook.src.metrics import compute_mie_error
+
+
+def _interp_error(interp_ref, ref_pts, ref_vals, mesh_target, u_target):
+ """Interpolate a reference solution onto a target mesh and compute error.
+
+ Returns (err_abs, u_ref_at_target) where err_abs = |u_fem - u_ref|.
+ Points outside the convex hull fall back to nearest-neighbor.
+ """
+ from scipy.spatial import cKDTree
+ target_pts = mesh_target.p.T
+ u_ref_at_target = interp_ref(target_pts)
+ nan_mask = np.isnan(u_ref_at_target)
+ if nan_mask.any():
+ tree = cKDTree(ref_pts)
+ _, nn_idx = tree.query(target_pts[nan_mask])
+ u_ref_at_target[nan_mask] = ref_vals[nn_idx]
+ return np.abs(np.real(u_target) - u_ref_at_target), u_ref_at_target
+
+
+
+
+# ============================================================================
+# Mesh reconstruction for a given step (replay AMR from gen.py)
+# ============================================================================
+
+
+def reconstruct_mesh_at_step(params: dict, target_step: int, seed: int = 42):
+ """Replay residual-driven AMR to reconstruct the mesh at a given step.
+
+ Returns (mesh, u_scat) at the target step, or None if step is beyond the AMR history.
+ """
+ from environment.helmholtz import (
+ HelmholtzProblem,
+ _compute_eps_r_at_midpoints,
+ _compute_residual_indicator,
+ )
+ from skfem import Basis, ElementTriP1
+
+ fem_config = make_fem_config(params)
+ problem = HelmholtzProblem(
+ fem_config=fem_config,
+ random_state=np.random.RandomState(seed),
+ )
+ mesh = build_physics_safe_initial_mesh(params)
+
+ mark_fraction = 0.03
+ max_elements = 100000 # won't hit this for replay
+
+ for step in range(target_step + 1):
+ n_elem = mesh.t.shape[1]
+
+ # FEM solve
+ basis = Basis(mesh, ElementTriP1())
+ u_scat = problem.calculate_solution(basis=basis, cache=False)
+
+ if step == target_step:
+ return mesh, u_scat, problem
+
+ # Residual indicator
+ eps_r_arr = _compute_eps_r_at_midpoints(
+ mesh, cx=problem._cx, cy=problem._cy,
+ radius=problem._radius, eps_r_in=problem._eps_r,
+ )
+ eta = _compute_residual_indicator(mesh, u_scat, k=problem._k, eps_r=eps_r_arr)
+
+ # Refine by eta (shared helper)
+ refined = _refine_by_eta(mesh, eta, mark_fraction, max_elements)
+ if refined is None:
+ break
+ mesh = refined
+
+ return mesh, u_scat, problem
+
+
+# ============================================================================
+# Mie reference
+# ============================================================================
+
+
+def compute_mie_on_mesh(mesh, params: dict):
+ """Compute Mie scattered field at mesh vertices."""
+ from environment.mie_solution import mie_scattered_field
+ pts = mesh.p.T
+ return mie_scattered_field(
+ pts, k0=params["k"], eps_r=params["eps_r"],
+ radius=params["radius"], cx=params["cx"], cy=params["cy"],
+ )
+
+
+
+# ============================================================================
+# Visualization: mesh + field (similar to src/visualize.py)
+# ============================================================================
+
+
+# ============================================================================
+# Mesh quality helpers (re-exported from gen.py)
+# ============================================================================
+
+from outlook.src.gen import _mesh_quality_report as check_mesh_valid
+
+
+def render_mesh_field(ax, mesh, scalar, title, show_mesh=True, cmap="jet"):
+ """Render FEM field on mesh using tripcolor."""
+ import matplotlib.tri as tri
+
+ pts = mesh.p.T
+ triang = tri.Triangulation(pts[:, 0], pts[:, 1], mesh.t.T)
+ s = np.abs(scalar) if np.iscomplexobj(scalar) else scalar
+ lmin, lmax = s.min(), s.max()
+ if lmax - lmin < 1e-12:
+ lmin, lmax = lmin - 0.5, lmax + 0.5
+
+ tcf = ax.tripcolor(triang, s, shading="gouraud", cmap=cmap, vmin=lmin, vmax=lmax)
+ if show_mesh:
+ n = triang.triangles.shape[0]
+ ax.triplot(triang, lw=(0.5 if n < 500 else 0.3), color="black",
+ alpha=(0.7 if n < 2000 else 0.5))
+ ax.set_xlim(pts[:, 0].min(), pts[:, 0].max())
+ ax.set_ylim(pts[:, 1].min(), pts[:, 1].max())
+ ax.set_aspect("equal")
+ ax.set_title(title, fontsize=9)
+ ax.set_xticks([])
+ ax.set_yticks([])
+ return tcf
+
+
+def render_marks_on_mesh(ax, mesh, marks, title, label_0="Unmarked", label_1="Marked"):
+ """Render binary marks on mesh cells using colored triangulation."""
+ import matplotlib.tri as tri
+ from matplotlib.colors import ListedColormap
+
+ pts = mesh.p.T
+ triang = tri.Triangulation(pts[:, 0], pts[:, 1], mesh.t.T)
+
+ cmap = ListedColormap(["#d0d0d0", "#e74c3c"])
+ tcf = ax.tripcolor(triang, marks, shading="flat", cmap=cmap, vmin=0, vmax=1)
+ ax.set_xlim(pts[:, 0].min(), pts[:, 0].max())
+ ax.set_ylim(pts[:, 1].min(), pts[:, 1].max())
+ ax.set_aspect("equal")
+ ax.set_title(title, fontsize=9)
+ ax.set_xticks([])
+ ax.set_yticks([])
+ return tcf
+
+
+# ============================================================================
+# Compare plot: Physics vs GNN vs Eta on a given mesh
+# ============================================================================
+
+
+def generate_compare_plot(
+ params: dict,
+ method: str = "neural",
+ mark_fraction: float = 0.03,
+ device: str = "cpu",
+ output_dir: Path = Path("outlook/result/correction/viz"),
+ suffix: str = "compare",
+ ref_elements: int = 20000,
+ max_elements: int = 6000,
+ q: float = 2.0,
+ alpha: float = 0.5,
+ beta: float = 0.5,
+ checkpoint_path: str = None,
+ model=None,
+ normalizer: dict = None,
+):
+ """Generate Physics vs Neural/Hybrid vs Eta comparison.
+
+ All three methods use the SAME run_rollout_to_budget() with budget_mode="strict".
+ """
+ import matplotlib
+ matplotlib.use("Agg")
+ import matplotlib.pyplot as plt
+ from skfem import Basis, ElementTriP1
+
+ output_dir = Path(output_dir)
+ output_dir.mkdir(parents=True, exist_ok=True)
+
+ # ── Run all three to the same target using unified rollout ──
+ result_phys = run_rollout_to_budget(
+ "physics", params, max_elements, q=q,
+ mark_fraction=mark_fraction, device=device, budget_mode="strict",
+ )
+ result_gnn = run_rollout_to_budget(
+ method, params, max_elements, q=q,
+ mark_fraction=mark_fraction, device=device, budget_mode="strict",
+ checkpoint_path=checkpoint_path, model=model, normalizer=normalizer,
+ alpha=alpha, beta=beta,
+ )
+ result_eta = run_rollout_to_budget(
+ "eta", params, max_elements, q=q,
+ mark_fraction=mark_fraction, device=device, budget_mode="strict",
+ )
+
+ mesh_phys, u_phys = result_phys["mesh"], result_phys["u_scat"]
+ mesh_gnn, u_gnn = result_gnn["mesh"], result_gnn["u_scat"]
+ mesh_eta, u_eta = result_eta["mesh"], result_eta["u_scat"]
+
+ method_label = method.capitalize()
+ print(f" [Compare] Physics: {result_phys['actual_elements']} elem "
+ f"aw_rel={result_phys['aw_rel']*100:.2f}%")
+ print(f" [Compare] {method_label:7s}: {result_gnn['actual_elements']} elem "
+ f"aw_rel={result_gnn['aw_rel']*100:.2f}%")
+ print(f" [Compare] Eta: {result_eta['actual_elements']} elem "
+ f"aw_rel={result_eta['aw_rel']*100:.2f}%")
+
+ # ── High-density reference ──
+ from outlook.src.amr import run_residual_teacher
+ from environment.helmholtz import HelmholtzProblem
+
+ fem_config = make_fem_config(params)
+ problem = HelmholtzProblem(
+ fem_config=fem_config,
+ random_state=np.random.RandomState(42),
+ )
+
+ print(f" [Compare] Generating high-density reference ({ref_elements} elem)...")
+ ref_result = run_residual_teacher(
+ problem, initial_mesh=None,
+ max_elements=ref_elements, max_steps=30,
+ refinement_fraction=0.25,
+ )
+ mesh_ref = ref_result["teacher_mesh"]
+ basis_ref = Basis(mesh_ref, ElementTriP1())
+ u_ref = problem.calculate_solution(basis=basis_ref, cache=False)
+ print(f" [Compare] Reference: {mesh_ref.t.shape[1]} elem")
+
+ # ── Interpolate reference onto each refined mesh ──
+ from scipy.interpolate import LinearNDInterpolator
+ ref_pts = mesh_ref.p.T
+ ref_vals = np.real(u_ref)
+ interp_ref = LinearNDInterpolator(ref_pts, ref_vals)
+
+ err_abs_phys, _ = _interp_error(interp_ref, ref_pts, ref_vals, mesh_phys, u_phys)
+ err_abs_gnn, _ = _interp_error(interp_ref, ref_pts, ref_vals, mesh_gnn, u_gnn)
+ err_abs_eta, _ = _interp_error(interp_ref, ref_pts, ref_vals, mesh_eta, u_eta)
+
+ # ── Plot: 2x3 ──
+ cx, cy, radius = params["cx"], params["cy"], params["radius"]
+
+ fig, axes = plt.subplots(2, 3, figsize=(20, 13))
+
+ methods_data = [
+ ("Physics", mesh_phys, u_phys, result_phys, err_abs_phys),
+ (method_label, mesh_gnn, u_gnn, result_gnn, err_abs_gnn),
+ ("Eta", mesh_eta, u_eta, result_eta, err_abs_eta),
+ ]
+
+ # Row 1: FEM field |E_scat|
+ for col, (label, mesh_m, u_m, res_m, _) in enumerate(methods_data):
+ s = np.abs(u_m) if np.iscomplexobj(u_m) else u_m
+ tcf = render_mesh_field(
+ axes[0, col], mesh_m, s,
+ f"{label} |E_scat| ({res_m['actual_elements']} elem)\n"
+ f"aw_rel={res_m['aw_rel']*100:.2f}% max_err={res_m['max_err']:.4f}",
+ show_mesh=True,
+ )
+ axes[0, col].add_patch(plt.Circle((cx, cy), radius, fill=False,
+ edgecolor="cyan", linewidth=1.5, linestyle="--"))
+ fig.colorbar(tcf, ax=axes[0, col], fraction=0.046, pad=0.04)
+
+ # Row 2: |u_fem - u_ref| error map (unified color scale)
+ global_err_max = max(err_abs_phys.max(), err_abs_gnn.max(), err_abs_eta.max())
+ if global_err_max < 1e-12:
+ global_err_max = 1.0
+
+ for col, (label, mesh_m, _, _, err_abs_m) in enumerate(methods_data):
+ tcf2 = render_mesh_field(
+ axes[1, col], mesh_m, err_abs_m,
+ f"{label} |u_fem − u_ref|\n"
+ f"mean={err_abs_m.mean():.4f} max={err_abs_m.max():.4f}",
+ show_mesh=True, cmap="hot",
+ )
+ tcf2.set_clim(0, global_err_max)
+ axes[1, col].add_patch(plt.Circle((cx, cy), radius, fill=False,
+ edgecolor="cyan", linewidth=1.5, linestyle="--"))
+ fig.colorbar(tcf2, ax=axes[1, col], fraction=0.046, pad=0.04)
+
+ k_str = f"k={params['k']:.1f}"
+ method_info = method if method != "hybrid" else f"hybrid(a={alpha},b={beta})"
+ fig.suptitle(
+ f"Field & Error Comparison | {k_str} eps_r={params['eps_r']:.1f} | "
+ f"method={method_info} | target={max_elements} elem -> ref={mesh_ref.t.shape[1]} elem",
+ fontsize=13,
+ )
+ fig.tight_layout()
+ out_path = output_dir / f"{suffix}.png"
+ fig.savefig(out_path, dpi=150, bbox_inches="tight")
+ plt.close(fig)
+ print(f" [Compare] Plot -> {out_path}")
+
+ return out_path
+
+
+def save_ground_truth_plot(
+ params: dict, problem, ref_elements: int = 20000,
+ output_dir: Path = Path("outlook/result/correction/viz"),
+):
+ """Generate and save a standalone high-fidelity reference solution plot.
+
+ Runs residual-driven AMR to `ref_elements`, then plots:
+ - Left: |E_scat| on the refined mesh
+ - Right: Mie |E_scat| on a smooth grid for comparison
+ """
+ import matplotlib
+ matplotlib.use("Agg")
+ import matplotlib.pyplot as plt
+ from skfem import Basis, ElementTriP1
+ from outlook.src.amr import run_residual_teacher
+ from environment.mie_solution import mie_grid_solution
+
+ output_dir = Path(output_dir)
+ output_dir.mkdir(parents=True, exist_ok=True)
+
+ print(f" [GroundTruth] Generating high-fidelity reference ({ref_elements} elem)...")
+ ref_result = run_residual_teacher(
+ problem, initial_mesh=None,
+ max_elements=ref_elements, max_steps=30,
+ refinement_fraction=0.25,
+ )
+ mesh_ref = ref_result["teacher_mesh"]
+ basis_ref = Basis(mesh_ref, ElementTriP1())
+ u_ref = problem.calculate_solution(basis=basis_ref, cache=False)
+
+ err = compute_mie_error(mesh_ref, u_ref, params)
+ print(f" [GroundTruth] Reference: {mesh_ref.t.shape[1]} elem "
+ f"aw_rel={err['aw_rel']*100:.2f}% max_err={err['max_err']:.4f}")
+
+ cx, cy, radius = params["cx"], params["cy"], params["radius"]
+ pts = mesh_ref.p.T
+ xlim = (pts[:, 0].min(), pts[:, 0].max())
+ ylim = (pts[:, 1].min(), pts[:, 1].max())
+
+ mie_grid = mie_grid_solution(
+ params["k"], params["eps_r"], params["radius"],
+ cx, cy, x_range=xlim, y_range=ylim, Nx=500, Ny=500,
+ )
+ mie_grid_abs = np.abs(mie_grid["E_scat"])
+
+ fig, axes = plt.subplots(1, 2, figsize=(14, 6))
+
+ # Left: FEM high-fidelity solution
+ s = np.abs(u_ref) if np.iscomplexobj(u_ref) else u_ref
+ tcf = render_mesh_field(
+ axes[0], mesh_ref, s,
+ f"High-fidelity FEM |E_scat| ({mesh_ref.t.shape[1]} elem)\n"
+ f"aw_rel={err['aw_rel']*100:.2f}% max_err={err['max_err']:.4f}",
+ show_mesh=(mesh_ref.t.shape[1] < 3000),
+ )
+ axes[0].add_patch(plt.Circle((cx, cy), radius, fill=False,
+ edgecolor="cyan", linewidth=1.5, linestyle="--"))
+ fig.colorbar(tcf, ax=axes[0], fraction=0.046, pad=0.04)
+
+ # Right: Mie analytical solution
+ mvmin, mvmax = mie_grid_abs.min(), mie_grid_abs.max()
+ if mvmax - mvmin < 1e-12:
+ mvmin, mvmax = mvmin - 0.5, mvmax + 0.5
+ im = axes[1].pcolormesh(
+ mie_grid["X"], mie_grid["Y"], mie_grid_abs,
+ shading="gouraud", cmap="jet", vmin=mvmin, vmax=mvmax,
+ )
+ axes[1].set_title(f"Mie |E_scat| max={mvmax:.4f}", fontsize=9)
+ axes[1].set_aspect("equal")
+ axes[1].set_xticks([])
+ axes[1].set_yticks([])
+ axes[1].add_patch(plt.Circle((cx, cy), radius, fill=False,
+ edgecolor="cyan", linewidth=1.5, linestyle="--"))
+ fig.colorbar(im, ax=axes[1], fraction=0.046, pad=0.04)
+
+ k_str = f"k={params['k']:.0f}"
+ fig.suptitle(
+ f"Ground Truth Reference | {k_str} eps_r={params['eps_r']:.1f} "
+ f"({cx:.2f},{cy:.2f}) r={radius:.3f}",
+ fontsize=13,
+ )
+ fig.tight_layout()
+ out_path = output_dir / "ground_truth.png"
+ fig.savefig(out_path, dpi=200, bbox_inches="tight")
+ plt.close(fig)
+ print(f" [GroundTruth] Plot → {out_path}")
+ return out_path
+
+
+# ============================================================================
+# Mode: End-to-end AMR
+# ============================================================================
+
+
+def viz_amr(
+ params: dict,
+ method: str = "neural",
+ mark_fraction: float = 0.03,
+ max_elements: int = 5000,
+ max_steps: int = 20,
+ device: str = "cpu",
+ output_dir: Path = Path("outlook/result/correction/viz"),
+ compare: bool = False,
+ alpha: float = 0.5,
+ beta: float = 0.5,
+ q: float = 2.0,
+ checkpoint_path: str = None,
+ model=None,
+ normalizer: dict = None,
+):
+ """Run end-to-end AMR and visualize using unified run_rollout_to_budget()."""
+ import matplotlib
+ matplotlib.use("Agg")
+ import matplotlib.pyplot as plt
+
+ output_dir = Path(output_dir)
+ output_dir.mkdir(parents=True, exist_ok=True)
+
+ # ── Run AMR using unified rollout ──
+ result = run_rollout_to_budget(
+ method, params, max_elements,
+ q=q, mark_fraction=mark_fraction, max_steps=max_steps,
+ checkpoint_path=checkpoint_path, model=model, normalizer=normalizer,
+ device=device, alpha=alpha, beta=beta,
+ budget_mode="strict", save_steps=True, verbose=True,
+ )
+
+ steps_data = result.get("steps", [])
+ mesh = result["mesh"]
+
+ # ── Generate plots ──
+ cx, cy, radius = params["cx"], params["cy"], params["radius"]
+
+ # Overview: all steps in a grid
+ n = len(steps_data)
+ ncols = min(n, 4)
+ nrows = (n + ncols - 1) // ncols
+ fig, axes = plt.subplots(nrows, ncols, figsize=(5 * ncols, 4.5 * nrows))
+ if nrows * ncols == 1:
+ axes = np.array([axes])
+ else:
+ axes = np.array(axes).flatten()
+
+ for i, sd in enumerate(steps_data):
+ tcf = render_mesh_field(
+ axes[i], sd["mesh"], sd["u_scat"],
+ f"Step {i}: {sd['n_elem']} elem, aw_rel={sd['aw_rel']*100:.2f}%",
+ show_mesh=True,
+ )
+ fig.colorbar(tcf, ax=axes[i], fraction=0.046, pad=0.04)
+ axes[i].add_patch(plt.Circle((cx, cy), radius, fill=False,
+ edgecolor="cyan", linewidth=1.5, linestyle="--"))
+
+ for j in range(n, len(axes)):
+ axes[j].set_visible(False)
+
+ fig.subplots_adjust(left=0.04, right=0.92, top=0.90, bottom=0.06, wspace=0.15, hspace=0.30)
+ k_str = f"k={params['k']:.1f}"
+ fig.suptitle(
+ f"Correction GNN AMR | {k_str} eps_r={params['eps_r']:.1f} "
+ f"at ({cx:.2f},{cy:.2f}) r={radius:.3f}",
+ fontsize=12,
+ )
+ overview_path = output_dir / "amr_overview.png"
+ fig.savefig(overview_path, dpi=200, bbox_inches="tight")
+ plt.close(fig)
+ print(f"\n[Viz] Overview -> {overview_path}")
+
+ # Per-step PNGs: FEM field, Mie reference, error map
+ per_step_dir = output_dir / "amr_steps"
+ per_step_dir.mkdir(parents=True, exist_ok=True)
+
+ from environment.mie_solution import mie_grid_solution
+
+ xlim = (mesh.p[0].min(), mesh.p[0].max())
+ ylim = (mesh.p[1].min(), mesh.p[1].max())
+ mie_grid = mie_grid_solution(
+ params["k"], params["eps_r"], params["radius"],
+ params["cx"], params["cy"],
+ x_range=xlim, y_range=ylim, Nx=500, Ny=500,
+ )
+ mie_grid_abs = np.abs(mie_grid["E_scat"])
+
+ for i, sd in enumerate(steps_data):
+ pts = sd["mesh"].p.T
+ u_fem = sd["u_scat"]
+ u_mie = compute_mie_on_mesh(sd["mesh"], params)
+ err_abs = np.abs(u_fem - u_mie)
+
+ ncols_fig = 3
+ fig2, axes2 = plt.subplots(1, ncols_fig, figsize=(6 * ncols_fig, 6))
+ axes2 = list(np.atleast_1d(axes2))
+
+ # Panel 1: FEM field
+ s = np.abs(u_fem) if np.iscomplexobj(u_fem) else u_fem
+ tcf1 = render_mesh_field(
+ axes2[0], sd["mesh"], s,
+ f"Step {i}: FEM |E_scat| ({sd['n_elem']} elem) max={s.max():.4f}",
+ show_mesh=True,
+ )
+ axes2[0].add_patch(plt.Circle((cx, cy), radius, fill=False,
+ edgecolor="cyan", linewidth=1.5, linestyle="--"))
+ fig2.colorbar(tcf1, ax=axes2[0], fraction=0.046, pad=0.04)
+
+ # Panel 2: Mie reference (smooth grid)
+ mvmin, mvmax = mie_grid_abs.min(), mie_grid_abs.max()
+ if mvmax - mvmin < 1e-12:
+ mvmin, mvmax = mvmin - 0.5, mvmax + 0.5
+ im2 = axes2[1].pcolormesh(
+ mie_grid["X"], mie_grid["Y"], mie_grid_abs,
+ shading="gouraud", cmap="jet", vmin=mvmin, vmax=mvmax,
+ )
+ axes2[1].set_title(f"Mie |E_scat| max={mvmax:.4f}", fontsize=9)
+ axes2[1].set_aspect("equal")
+ axes2[1].set_xticks([])
+ axes2[1].set_yticks([])
+ axes2[1].add_patch(plt.Circle((cx, cy), radius, fill=False,
+ edgecolor="cyan", linewidth=1.5, linestyle="--"))
+ fig2.colorbar(im2, ax=axes2[1], fraction=0.046, pad=0.04)
+
+ # Panel 3: Error map
+ evmin, evmax = 0.0, float(err_abs.max()) or 1.0
+ if evmax - evmin < 1e-12:
+ evmax = evmin + 1.0
+ tcf3 = render_mesh_field(
+ axes2[2], sd["mesh"], err_abs,
+ f"|FEM - Mie| aw_rel={sd['aw_rel']*100:.2f}% max={err_abs.max():.4f}",
+ show_mesh=True, cmap="hot",
+ )
+ axes2[2].add_patch(plt.Circle((cx, cy), radius, fill=False,
+ edgecolor="cyan", linewidth=1.5, linestyle="--"))
+ fig2.colorbar(tcf3, ax=axes2[2], fraction=0.046, pad=0.04)
+
+ fig2.tight_layout()
+ fig2.savefig(per_step_dir / f"step{i:02d}.png", dpi=150, bbox_inches="tight")
+ plt.close(fig2)
+
+ print(f"[Viz] Per-step PNGs -> {per_step_dir}/ ({len(steps_data)} files)")
+
+ # ── Compare plot (Physics vs GNN vs Eta) ──
+ if compare:
+ print(f"\n[Compare] Generating Physics vs GNN vs Eta comparison...")
+ generate_compare_plot(
+ params, method=method, mark_fraction=mark_fraction,
+ device=device, output_dir=output_dir, suffix="compare",
+ ref_elements=max_elements * 4, max_elements=max_elements,
+ q=q, alpha=alpha, beta=beta,
+ checkpoint_path=checkpoint_path, model=model, normalizer=normalizer,
+ )
+
+ # ── Save standalone ground truth (high-fidelity reference) ──
+ from environment.helmholtz import HelmholtzProblem
+ fem_config = make_fem_config(params)
+ problem = HelmholtzProblem(
+ fem_config=fem_config,
+ random_state=np.random.RandomState(42),
+ )
+ save_ground_truth_plot(
+ params, problem, ref_elements=max_elements * 4,
+ output_dir=output_dir,
+ )
+
+
+# ============================================================================
+# Mode: Per-step comparison
+# ============================================================================
+
+
+def viz_step(
+ model, normalizer, config, data_dir: Path,
+ sample_id: int = 0, step: int = 0,
+ device: str = "cpu",
+ output_dir: Path = Path("outlook/result/correction/viz"),
+):
+ """Per-step comparison: GNN vs teacher vs physics marks on mesh."""
+ import matplotlib
+ matplotlib.use("Agg")
+ import matplotlib.pyplot as plt
+ from matplotlib.colors import ListedColormap
+
+ output_dir = Path(output_dir)
+ output_dir.mkdir(parents=True, exist_ok=True)
+
+ data_dir = Path(data_dir)
+
+ # Load the sample .npz
+ fname = f"sample{sample_id:04d}_step{step:03d}.npz"
+ fpath = data_dir / fname
+ if not fpath.exists():
+ print(f"Error: {fpath} not found")
+ return
+
+ d = np.load(fpath)
+ params = {
+ "k": float(d["k"]),
+ "eps_r": float(d["eps_r"]),
+ "cx": float(d["cx"]),
+ "cy": float(d["cy"]),
+ "radius": float(d["radius"]),
+ }
+ teacher_mark = d["teacher_mark"]
+ physics_mark = d["physics_mark"]
+ physics_score = d["physics_score"]
+ n_elem = int(d["elements"])
+
+ print(f"[Step] sample={sample_id} step={step} elem={n_elem}")
+ print(f" k={params['k']:.2f} eps_r={params['eps_r']:.2f} "
+ f"cx={params['cx']:.2f} cy={params['cy']:.2f} r={params['radius']:.3f}")
+
+ # Reconstruct mesh at this step
+ print(f" Reconstructing mesh at step {step}...")
+ mesh, u_scat, problem = reconstruct_mesh_at_step(params, target_step=step, seed=42)
+ actual_elem = mesh.t.shape[1]
+ print(f" Reconstructed: {actual_elem} elements")
+
+ # GNN predict
+ from outlook.src.rollout import _predict_gnn
+ probs = _predict_gnn(model, normalizer, mesh, params, device)
+ n_cells = len(probs)
+ n_mark = max(1, int(n_cells * 0.03))
+ if n_mark >= n_cells:
+ pred_mark = np.ones(n_cells, dtype=int)
+ else:
+ pred_mark = np.zeros(n_cells, dtype=int)
+ pred_mark[np.argsort(probs)[-n_mark:]] = 1
+
+ # Compute traditional eta-based marks (same number of cells as GNN)
+ from environment.helmholtz import _compute_eps_r_at_midpoints, _compute_residual_indicator
+ from skfem import Basis, ElementTriP1
+
+ eps_r_arr = _compute_eps_r_at_midpoints(
+ mesh, cx=params["cx"], cy=params["cy"],
+ radius=params["radius"], eps_r_in=params["eps_r"],
+ )
+ eta = _compute_residual_indicator(mesh, u_scat, k=params["k"], eps_r=eps_r_arr)
+
+ n_gnn_selected = int(pred_mark.sum())
+ if n_gnn_selected > 0 and n_gnn_selected < len(eta):
+ eta_mark = np.zeros(len(eta), dtype=int)
+ eta_mark[np.argsort(eta)[-n_gnn_selected:]] = 1
+ else:
+ eta_mark = np.ones(len(eta), dtype=int)
+
+ # Compute overlaps
+ gnn_overlap = 0
+ k = int(teacher_mark.sum())
+ if k > 0 and k < len(teacher_mark):
+ top_gnn = set(np.argsort(probs)[-k:])
+ top_true = set(np.where(teacher_mark > 0.5)[0])
+ gnn_overlap = len(top_gnn & top_true) / k
+
+ phys_overlap = 0
+ if k > 0 and k < len(physics_score):
+ top_phys = set(np.argsort(physics_score)[-k:])
+ top_true = set(np.where(teacher_mark > 0.5)[0])
+ phys_overlap = len(top_phys & top_true) / k
+
+ eta_overlap = 0
+ if k > 0 and k < len(eta):
+ top_eta = set(np.argsort(eta)[-k:])
+ top_true = set(np.where(teacher_mark > 0.5)[0])
+ eta_overlap = len(top_eta & top_true) / k
+
+ # Mie error on current mesh
+ err = compute_mie_error(mesh, u_scat, params)
+
+ print(f" teacher_mark sum: {k}")
+ print(f" GNN top-k overlap: {gnn_overlap:.3f}")
+ print(f" Physics top-k overlap: {phys_overlap:.3f}")
+ print(f" Eta top-k overlap: {eta_overlap:.3f}")
+ print(f" aw_rel (current): {err['aw_rel']*100:.2f}% max_err: {err['max_err']:.4f}")
+
+ # ── Refine using GNN marks ──
+ gnn_selected = np.where(pred_mark == 1)[0]
+ mesh_gnn = mesh.refined(gnn_selected) if len(gnn_selected) > 0 else copy.deepcopy(mesh)
+ basis_gnn = Basis(mesh_gnn, ElementTriP1())
+ u_gnn = problem.calculate_solution(basis=basis_gnn, cache=False)
+ err_gnn = compute_mie_error(mesh_gnn, u_gnn, params)
+
+ # ── Refine using eta marks ──
+ eta_selected = np.where(eta_mark == 1)[0]
+ mesh_eta = mesh.refined(eta_selected) if len(eta_selected) > 0 else copy.deepcopy(mesh)
+ basis_eta = Basis(mesh_eta, ElementTriP1())
+ u_eta = problem.calculate_solution(basis=basis_eta, cache=False)
+ err_eta = compute_mie_error(mesh_eta, u_eta, params)
+
+ # ── Refine using physics marks ──
+ physics_selected = np.where(physics_mark == 1)[0]
+ mesh_phys = mesh.refined(physics_selected) if len(physics_selected) > 0 else copy.deepcopy(mesh)
+ basis_phys = Basis(mesh_phys, ElementTriP1())
+ u_phys = problem.calculate_solution(basis=basis_phys, cache=False)
+ err_phys = compute_mie_error(mesh_phys, u_phys, params)
+
+ print(f" Physics refined: {mesh_phys.t.shape[1]} elem aw_rel={err_phys['aw_rel']*100:.2f}%")
+ print(f" GNN refined: {mesh_gnn.t.shape[1]} elem aw_rel={err_gnn['aw_rel']*100:.2f}%")
+ print(f" Eta refined: {mesh_eta.t.shape[1]} elem aw_rel={err_eta['aw_rel']*100:.2f}%")
+
+ # ── High-density reference solution ──
+ from outlook.src.amr import run_residual_teacher
+ print(f" Generating high-density reference mesh (20000 elem)...")
+ ref_result = run_residual_teacher(
+ problem, initial_mesh=None,
+ max_elements=20000, max_steps=30,
+ refinement_fraction=0.25,
+ )
+ mesh_ref = ref_result["teacher_mesh"]
+ basis_ref = Basis(mesh_ref, ElementTriP1())
+ u_ref = problem.calculate_solution(basis=basis_ref, cache=False)
+ print(f" Reference mesh: {mesh_ref.t.shape[1]} elem, {mesh_ref.p.shape[1]} vertices")
+
+ # Interpolate reference solution onto each refined mesh's vertices
+ from scipy.interpolate import LinearNDInterpolator
+ ref_pts = mesh_ref.p.T # (N_ref, 2)
+ ref_vals = np.real(u_ref)
+ interp_ref = LinearNDInterpolator(ref_pts, ref_vals)
+
+ err_abs_phys, u_ref_phys = _interp_error(interp_ref, ref_pts, ref_vals, mesh_phys, u_phys)
+ err_abs_gnn, u_ref_gnn = _interp_error(interp_ref, ref_pts, ref_vals, mesh_gnn, u_gnn)
+ err_abs_eta, u_ref_eta = _interp_error(interp_ref, ref_pts, ref_vals, mesh_eta, u_eta)
+
+ # ── Plot 1: 2x2 mark comparison ──
+ fig, axes = plt.subplots(2, 2, figsize=(14, 12))
+ cmap = ListedColormap(["#d0d0d0", "#e74c3c"])
+
+ pts = mesh.p.T
+
+ # (0,0) True teacher_mark
+ render_marks_on_mesh(axes[0, 0], mesh, teacher_mark,
+ f"True teacher_mark (k={k})")
+
+ # (0,1) GNN prediction
+ render_marks_on_mesh(axes[0, 1], mesh, pred_mark,
+ f"GNN prediction (topk={gnn_overlap:.3f})")
+
+ # (1,0) Physics baseline
+ render_marks_on_mesh(axes[1, 0], mesh, physics_mark,
+ f"Physics baseline (topk={phys_overlap:.3f})")
+
+ # (1,1) Error map
+ correct = (pred_mark == teacher_mark).astype(int)
+ tp = (pred_mark == 1) & (teacher_mark == 1)
+ fp = (pred_mark == 1) & (teacher_mark == 0)
+ fn = (pred_mark == 0) & (teacher_mark == 1)
+ tn = (pred_mark == 0) & (teacher_mark == 0)
+
+ import matplotlib.tri as tri
+ triang = tri.Triangulation(pts[:, 0], pts[:, 1], mesh.t.T)
+ axes[1, 1].triplot(triang, lw=0.3, color="black", alpha=0.3)
+ axes[1, 1].scatter(pts[mesh.t[:, tn].flatten(), 0], pts[mesh.t[:, tn].flatten(), 1],
+ c="#d0d0d0", s=1, label=f"TN ({tn.sum()})")
+ axes[1, 1].scatter(pts[mesh.t[:, tp].flatten(), 0], pts[mesh.t[:, tp].flatten(), 1],
+ c="#2ecc71", s=8, label=f"TP ({tp.sum()})")
+ axes[1, 1].scatter(pts[mesh.t[:, fp].flatten(), 0], pts[mesh.t[:, fp].flatten(), 1],
+ c="#3498db", s=8, label=f"FP ({fp.sum()})")
+ axes[1, 1].scatter(pts[mesh.t[:, fn].flatten(), 0], pts[mesh.t[:, fn].flatten(), 1],
+ c="#e74c3c", s=8, label=f"FN ({fn.sum()})")
+ axes[1, 1].legend(fontsize=8, loc="upper right")
+ axes[1, 1].set_title(f"GNN errors (acc={correct.mean():.3f})", fontsize=9)
+ axes[1, 1].set_aspect("equal")
+ axes[1, 1].set_xticks([])
+ axes[1, 1].set_yticks([])
+
+ cx, cy, radius = params["cx"], params["cy"], params["radius"]
+ for ax in axes.flatten():
+ ax.add_patch(plt.Circle((cx, cy), radius, fill=False,
+ edgecolor="cyan", linewidth=1.5, linestyle="--"))
+
+ fig.suptitle(
+ f"Correction GNN | sample={sample_id} step={step} | "
+ f"k={params['k']:.1f} eps_r={params['eps_r']:.1f} | "
+ f"{n_elem} elem, aw_rel={err['aw_rel']*100:.2f}%",
+ fontsize=12,
+ )
+ fig.tight_layout()
+ marks_path = output_dir / f"marks_sample{sample_id:04d}_step{step:03d}.png"
+ fig.savefig(marks_path, dpi=150, bbox_inches="tight")
+ plt.close(fig)
+ print(f"\n[Viz] Marks comparison → {marks_path}")
+
+ # ── Plot 2: 2x3 Field + Error comparison (vs high-density reference) ──
+ # Row 1: physics / GNN / eta FEM fields
+ # Row 2: corresponding |u_fem - u_ref| errors
+ fig2, axes2 = plt.subplots(2, 3, figsize=(20, 13))
+
+ methods_data = [
+ ("Physics", mesh_phys, u_phys, err_phys, err_abs_phys),
+ ("GNN", mesh_gnn, u_gnn, err_gnn, err_abs_gnn),
+ ("Eta", mesh_eta, u_eta, err_eta, err_abs_eta),
+ ]
+
+ # Row 1: FEM field |E_scat|
+ for col, (label, mesh_m, u_m, err_m, _) in enumerate(methods_data):
+ s = np.abs(u_m) if np.iscomplexobj(u_m) else u_m
+ tcf = render_mesh_field(
+ axes2[0, col], mesh_m, s,
+ f"{label} |E_scat| ({mesh_m.t.shape[1]} elem)\n"
+ f"aw_rel={err_m['aw_rel']*100:.2f}% max_err={err_m['max_err']:.4f}",
+ show_mesh=True,
+ )
+ axes2[0, col].add_patch(plt.Circle((cx, cy), radius, fill=False,
+ edgecolor="cyan", linewidth=1.5, linestyle="--"))
+ fig2.colorbar(tcf, ax=axes2[0, col], fraction=0.046, pad=0.04)
+
+ # Row 2: |u_fem - u_ref| error map
+ # Use a unified color scale across all three error maps
+ global_err_max = max(err_abs_phys.max(), err_abs_gnn.max(), err_abs_eta.max())
+ if global_err_max < 1e-12:
+ global_err_max = 1.0
+
+ for col, (label, mesh_m, _, _, err_abs_m) in enumerate(methods_data):
+ tcf2 = render_mesh_field(
+ axes2[1, col], mesh_m, err_abs_m,
+ f"{label} |u_fem − u_ref|\n"
+ f"mean={err_abs_m.mean():.4f} max={err_abs_m.max():.4f}",
+ show_mesh=True, cmap="hot",
+ )
+ tcf2.set_clim(0, global_err_max)
+ axes2[1, col].add_patch(plt.Circle((cx, cy), radius, fill=False,
+ edgecolor="cyan", linewidth=1.5, linestyle="--"))
+ fig2.colorbar(tcf2, ax=axes2[1, col], fraction=0.046, pad=0.04)
+
+ fig2.suptitle(
+ f"Field & Error Comparison | sample={sample_id} step={step} | "
+ f"k={params['k']:.1f} eps_r={params['eps_r']:.1f} | "
+ f"ref={mesh_ref.t.shape[1]} elem",
+ fontsize=13,
+ )
+ fig2.tight_layout()
+ compare_path = output_dir / f"compare_sample{sample_id:04d}_step{step:03d}.png"
+ fig2.savefig(compare_path, dpi=150, bbox_inches="tight")
+ plt.close(fig2)
+ print(f"[Viz] Field+Error comparison → {compare_path}")
+
+ # ── Plot 3: Correction GNN field solution (3-panel) ──
+ from environment.mie_solution import mie_grid_solution
+
+ xlim = (pts[:, 0].min(), pts[:, 0].max())
+ ylim = (pts[:, 1].min(), pts[:, 1].max())
+ mie_grid = mie_grid_solution(
+ params["k"], params["eps_r"], params["radius"],
+ params["cx"], params["cy"],
+ x_range=xlim, y_range=ylim, Nx=500, Ny=500,
+ )
+ mie_grid_abs = np.abs(mie_grid["E_scat"])
+
+ def _plot_refined_3panel(mesh_ref, u_ref, err_ref, label, fname_suffix):
+ """Helper: 3-panel plot for a refined mesh (FEM field, Mie ref, error)."""
+ pts_r = mesh_ref.p.T
+ u_mie_r = compute_mie_on_mesh(mesh_ref, params)
+ err_abs_r = np.abs(u_ref - u_mie_r)
+ n_elem_r = mesh_ref.t.shape[1]
+
+ fig, axes = plt.subplots(1, 3, figsize=(18, 6))
+ axes = list(axes)
+
+ # Panel 1: FEM field
+ s = np.abs(u_ref) if np.iscomplexobj(u_ref) else u_ref
+ tcf = render_mesh_field(
+ axes[0], mesh_ref, s,
+ f"{label} FEM |E_scat| ({n_elem_r} elem) max={s.max():.4f}",
+ show_mesh=True,
+ )
+ axes[0].add_patch(plt.Circle((cx, cy), radius, fill=False,
+ edgecolor="cyan", linewidth=1.5, linestyle="--"))
+ fig.colorbar(tcf, ax=axes[0], fraction=0.046, pad=0.04)
+
+ # Panel 2: Mie reference
+ mvmin, mvmax = mie_grid_abs.min(), mie_grid_abs.max()
+ im = axes[1].pcolormesh(
+ mie_grid["X"], mie_grid["Y"], mie_grid_abs,
+ shading="gouraud", cmap="jet", vmin=mvmin, vmax=mvmax,
+ )
+ axes[1].set_title(f"Mie |E_scat| max={mvmax:.4f}", fontsize=9)
+ axes[1].set_aspect("equal")
+ axes[1].set_xticks([])
+ axes[1].set_yticks([])
+ axes[1].add_patch(plt.Circle((cx, cy), radius, fill=False,
+ edgecolor="cyan", linewidth=1.5, linestyle="--"))
+ fig.colorbar(im, ax=axes[1], fraction=0.046, pad=0.04)
+
+ # Panel 3: Error
+ evmax = float(err_abs_r.max()) or 1.0
+ tcf3 = render_mesh_field(
+ axes[2], mesh_ref, err_abs_r,
+ f"|FEM − Mie| aw_rel={err_ref['aw_rel']*100:.2f}% max={err_abs_r.max():.4f}",
+ show_mesh=True, cmap="hot",
+ )
+ axes[2].add_patch(plt.Circle((cx, cy), radius, fill=False,
+ edgecolor="cyan", linewidth=1.5, linestyle="--"))
+ fig.colorbar(tcf3, ax=axes[2], fraction=0.046, pad=0.04)
+
+ fig.suptitle(
+ f"{label} | sample={sample_id} step={step} | "
+ f"k={params['k']:.1f} eps_r={params['eps_r']:.1f}",
+ fontsize=12,
+ )
+ fig.tight_layout()
+ out_path = output_dir / f"{fname_suffix}_sample{sample_id:04d}_step{step:03d}.png"
+ fig.savefig(out_path, dpi=150, bbox_inches="tight")
+ plt.close(fig)
+ print(f"[Viz] {label} → {out_path}")
+
+ # Plot 2: Correction GNN refined
+ _plot_refined_3panel(mesh_gnn, u_gnn, err_gnn,
+ "Correction GNN", "field_gnn")
+
+ # Plot 3: Traditional eta refined (same element count)
+ _plot_refined_3panel(mesh_eta, u_eta, err_eta,
+ "Traditional eta", "field_eta")
+
+
+# ============================================================================
+# Load dataset params
+# ============================================================================
+
+
+def load_sample_params(data_dir: Path, sample_id: int) -> dict:
+ """Load physical parameters for a sample from the dataset."""
+ params_data = np.load(data_dir / "params_list.npz")
+ params_array = params_data["params"]
+ row = params_array[sample_id]
+ return {
+ "k": float(row[0]),
+ "eps_r": float(row[1]),
+ "cx": float(row[2]),
+ "cy": float(row[3]),
+ "radius": float(row[4]),
+ }
+
+
+# ============================================================================
+# Main
+# ============================================================================
+
+
+def main():
+ parser = argparse.ArgumentParser(description="Visualize correction GNN")
+ parser.add_argument("--checkpoint", type=str, required=True)
+ parser.add_argument("--data-dir", type=str, default="outlook/data_correction")
+ parser.add_argument("--mode", type=str, required=True, choices=["amr", "step"])
+ parser.add_argument("--sample-id", type=int, default=0)
+ parser.add_argument("--step", type=int, default=0, help="Step index for --mode step")
+ parser.add_argument("--max-elements", type=int, default=5000)
+ parser.add_argument("--max-steps", type=int, default=20)
+ parser.add_argument("--mark-fraction", type=float, default=0.03)
+ parser.add_argument("--device", type=str, default="cpu")
+ parser.add_argument("--output-dir", type=str, default="outlook/result/correction/viz")
+ parser.add_argument("--seed", type=int, default=42)
+ parser.add_argument("--compare", action="store_true",
+ help="Generate Physics vs GNN vs Eta comparison plot (amr mode only)")
+ parser.add_argument("--method", type=str, default="neural",
+ choices=["physics", "neural", "hybrid"],
+ help="Scoring method for cell selection (amr mode only)")
+ parser.add_argument("--alpha", type=float, default=0.5,
+ help="Weight for physics score in hybrid method")
+ parser.add_argument("--beta", type=float, default=0.5,
+ help="Weight for neural score in hybrid method")
+ parser.add_argument("--q", type=float, default=2.0,
+ help="Elements per wavelength for initial mesh (higher = finer)")
+ # Custom physics parameters (override dataset, for --mode amr only)
+ parser.add_argument("--k", type=float, default=None, help="Wave number (overrides dataset)")
+ parser.add_argument("--eps-r", type=float, default=None, help="Relative permittivity (overrides dataset)")
+ parser.add_argument("--cx", type=float, default=None, help="Scatterer center x (overrides dataset)")
+ parser.add_argument("--cy", type=float, default=None, help="Scatterer center y (overrides dataset)")
+ parser.add_argument("--radius", type=float, default=None, help="Scatterer radius (overrides dataset)")
+ args = parser.parse_args()
+
+ device = args.device
+ if device == "cuda" and not torch.cuda.is_available():
+ print("CUDA unavailable, falling back to CPU")
+ device = "cpu"
+
+ # Load model
+ print(f"Loading checkpoint: {args.checkpoint}")
+ model, normalizer, config = load_model(args.checkpoint, device)
+ print(f" Model loaded (latent_dim={config['latent_dim']}, mp_steps={config['num_mp_steps']})")
+
+ data_dir = Path(args.data_dir)
+ output_dir = Path(args.output_dir)
+
+ # Resolve params: custom args override dataset
+ custom_params_provided = args.k is not None
+ if custom_params_provided:
+ if args.mode == "step":
+ print("Warning: --k/--eps-r etc. are ignored in --mode step (uses dataset .npz files)")
+ params = load_sample_params(data_dir, args.sample_id)
+ else:
+ # Require all five for custom params
+ missing = []
+ for name in ["eps_r", "cx", "cy", "radius"]:
+ if getattr(args, name) is None:
+ missing.append(name)
+ if missing:
+ parser.error(f"--k is set but missing: {', '.join('--' + m.replace('_', '-') for m in missing)}")
+ params = {
+ "k": args.k,
+ "eps_r": args.eps_r,
+ "cx": args.cx,
+ "cy": args.cy,
+ "radius": args.radius,
+ }
+ # Auto-append k value and method to output dir to avoid overwriting
+ output_dir = output_dir / f"k{params['k']:.0f}" / args.method
+ print(f" Custom params: k={params['k']:.2f} eps_r={params['eps_r']:.2f} "
+ f"cx={params['cx']:.2f} cy={params['cy']:.2f} r={params['radius']:.3f}")
+ else:
+ params = load_sample_params(data_dir, args.sample_id)
+
+ if args.mode == "amr":
+ viz_amr(
+ params,
+ method=args.method,
+ mark_fraction=args.mark_fraction,
+ max_elements=args.max_elements,
+ max_steps=args.max_steps,
+ device=device,
+ output_dir=output_dir,
+ compare=args.compare,
+ alpha=args.alpha,
+ beta=args.beta,
+ q=args.q,
+ checkpoint_path=args.checkpoint,
+ model=model,
+ normalizer=normalizer,
+ )
+ elif args.mode == "step":
+ viz_step(
+ model, normalizer, config, data_dir,
+ sample_id=args.sample_id,
+ step=args.step,
+ device=device,
+ output_dir=output_dir,
+ )
+
+ print("\nDone.")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/outlook/train.sh b/outlook/train.sh
new file mode 100644
index 0000000..51f69ba
--- /dev/null
+++ b/outlook/train.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+#SBATCH --job-name=correction
+#SBATCH --output=outlook/logs/correction_%j.out
+#SBATCH --error=outlook/logs/correction_%j.err
+#SBATCH --partition=gpu
+#SBATCH --gres=gpu:1
+#SBATCH --cpus-per-task=4
+#SBATCH --mem=16G
+#SBATCH --time=02:00:00
+
+BATCH_SIZE=${1:-1}
+
+cd /public/home/dxw/Codes/afem
+
+mkdir -p outlook/logs
+
+python -u outlook/src/train_correction.py \
+ --data-dir outlook/data_correction \
+ --epochs 100 \
+ --batch-size "$BATCH_SIZE" \
+ --lr 1e-3 \
+ --device cuda \
+ --checkpoint-out outlook/ckpt/correction.pt
diff --git a/result/18wele.txt b/result/18wele.txt
new file mode 100644
index 0000000..e731190
--- /dev/null
+++ b/result/18wele.txt
@@ -0,0 +1,87984 @@
+% Model: mie.mph
+% Version: COMSOL 6.0.0.318
+% Date: Jun 1 2026, 13:41
+% Dimension: 2
+% Nodes: 87975
+% Expressions: 3
+% Description: x 坐标, y 坐标,
+% Length unit: m
+% X Y x (m) @ freq=1.4314E9 y (m) @ freq=1.4314E9 abs(ewfd.relEz) (V/m) @ freq=1.4314E9
+0.002749660881826446 0.0028118898888012354 0.002749660881826446 0.0028118898888012354 0.05967883320883997
+0 0.004184100418410035 0 0.004184100418410035 0.05976177234526129
+0 0 0 0 0.05962883652245275
+0.004184100418367809 0 0.004184100418367809 0 0.059661220843330455
+0.0031460954099439744 0.006281785519692301 0.003146095409943975 0.006281785519692301 0.0601743465196358
+0 0.00836820083682007 0 0.00836820083682007 0.06056724688900942
+0.008368200836778028 0 0.008368200836778028 0 0.060090652107452534
+0.006418108580820448 0.0035935635059038415 0.006418108580820447 0.003593563505903841 0.06004814190877051
+0.003265837280406005 0.010425342350841025 0.003265837280406005 0.010425342350841025 0.061265378729226654
+0 0.012552301255230106 0 0.012552301255230108 0.06190140047224221
+0.010714289881331962 0.003387806519557566 0.010714289881331962 0.003387806519557566 0.06070180145409717
+0.012552301255188247 0 0.012552301255188247 0 0.06090727334366743
+0.0033234666163582008 0.014602608602965056 0.0033234666163582008 0.014602608602965056 0.06282730270553073
+0 0.01673640167364014 0 0.01673640167364014 0.0636701338506573
+0.014734600903902953 0.003411872529377304 0.014734600903902953 0.0034118725293773035 0.06166243042948654
+0.016736401673598467 0 0.016736401673598467 0 0.062042048216417935
+0.0033378024528644534 0.01879957188776182 0.003337802452864454 0.01879957188776182 0.06479042854796545
+0 0.020920502092050177 0 0.020920502092050177 0.06578268705946187
+0.0188745185215621 0.003417334261097869 0.018874518521562102 0.0034173342610978696 0.06293922863817923
+0.020920502092008686 0 0.020920502092008686 0 0.0634549518935948
+0.0033568374154832555 0.02299506841445322 0.0033568374154832555 0.02299506841445322 0.06704791121404319
+0 0.025104602510460212 0 0.025104602510460216 0.06814250540576018
+0.023058309495429082 0.003416759199494216 0.023058309495429082 0.003416759199494216 0.06447946159362423
+0.025104602510418905 0 0.025104602510418905 0 0.06509593549815344
+0.003373447239596896 0.02718551588698201 0.003373447239596896 0.02718551588698201 0.06950644410476192
+0 0.029288702928870248 0 0.029288702928870248 0.0706617385586698
+0.02723103224465594 0.0034057137178244833 0.02723103224465594 0.0034057137178244838 0.06621517321620586
+0.029288702928829125 0 0.029288702928829125 0 0.06691019107651279
+0.0033834474388043673 0.03137487925941195 0.003383447438804367 0.03137487925941195 0.07208262613390938
+0 0.03347280334728028 0 0.03347280334728028 0.07326063722500226
+0.031400984726531835 0.0033967636425030687 0.031400984726531835 0.0033967636425030687 0.06809252093173095
+0.033472803347239344 0 0.033472803347239344 0 0.06884056027508823
+0.0033886046132543357 0.03556229462212385 0.0033886046132543357 0.03556229462212385 0.07470047861166161
+0 0.03765690376569032 0 0.03765690376569032 0.07586873212468961
+0.035574676104812845 0.00339264060599768 0.035574676104812845 0.00339264060599768 0.07005966408822369
+0.03765690376564956 0 0.03765690376564956 0 0.07083348956888383
+0.003390147299130132 0.03974829624912791 0.003390147299130132 0.03974829624912791 0.0772943761828051
+0 0.04184100418410036 0 0.04184100418410036 0.07842498956505423
+0.039752831936594 0.0033910899621004986 0.039752831936594006 0.0033910899621004986 0.0720665239599988
+0.04184100418405978 0 0.04184100418405978 0 0.07284096747827482
+0.003390371983328557 0.043933017422634384 0.003390371983328557 0.043933017422634384 0.07980800871743533
+0 0.0460251046025104 0 0.04602510460251039 0.08087739512017518
+0.04393421232017886 0.003390565311795301 0.04393421232017886 0.003390565311795301 0.07406748974119183
+0.04602510460247 0 0.04602510460247 0 0.07482143625472933
+0.0033903832951688744 0.04811715481171541 0.0033903832951688744 0.04811715481171541 0.08219416508771347
+0 0.05020920502092044 0 0.05020920502092044 0.08318232033095943
+0.04811715481167511 0.0033903832951689417 0.04811715481167511 0.0033903832951689417 0.0760236316206618
+0.05020920502088022 0 0.05020920502088022 0 0.07674066375470084
+0.0033903832951688766 0.052301255230125465 0.003390383295168876 0.052301255230125465 0.08441344798530037
+0 0.05439330543933048 0 0.054393305439330485 0.08530374475541562
+0.05230125523008533 0.0033903832951689417 0.05230125523008533 0.0033903832951689417 0.07790424186915589
+0.05439330543929044 0 0.05439330543929044 0 0.07857232351618579
+0.003390383295168879 0.0564853556485355 0.003390383295168879 0.0564853556485355 0.08643334225750832
+0 0.05857740585774052 0 0.05857740585774052 0.08721248702460453
+0.05648535564849555 0.0033903832951689417 0.05648535564849555 0.0033903832951689417 0.07968642101169743
+0.05857740585770066 0 0.05857740585770066 0 0.08029825389395079
+0.003390383295168881 0.060669456066945536 0.0033903832951688805 0.060669456066945536 0.08822779975713053
+0 0.06276150627615056 0 0.06276150627615056 0.08888552190380601
+0.06066945606690577 0.0033903832951689417 0.06066945606690577 0.0033903832951689417 0.08135606138158619
+0.06276150627611088 0 0.06276150627611088 0 0.08190846999185203
+0.0033903832951688814 0.06485355648535558 0.0033903832951688814 0.06485355648535558 0.08977663670157793
+0 0.0669456066945606 0 0.0669456066945606 0.09030540671001659
+0.06485355648531599 0.0033903832951689417 0.06485355648531599 0.0033903832951689417 0.0829071898350414
+0.0669456066945211 0 0.0669456066945211 0 0.0834009784749475
+0.0033903832951688727 0.06903765690376563 0.0033903832951688727 0.06903765690376563 0.09106501276321834
+0 0.07112970711297063 0 0.07112970711297063 0.09145981410379682
+0.06903765690372621 0.0033903832951689417 0.06903765690372621 0.0033903832951689417 0.0843416991342849
+0.07112970711293132 0 0.07112970711293132 0 0.08478143452063991
+0.0033903832951688692 0.07322175732217567 0.0033903832951688692 0.07322175732217567 0.09208301367171606
+0 0.07531380753138067 0 0.07531380753138067 0.09234116530438008
+0.07322175732213643 0.0033903832951689417 0.07322175732213643 0.0033903832951689417 0.08566892963146354
+0.07531380753134154 0 0.07531380753134154 0 0.08606264804740686
+0.0033903832951688675 0.07740585774058571 0.0033903832951688675 0.07740585774058571 0.09282533066005029
+0 0.07949790794979071 0 0.07949790794979071 0.09294635522664536
+0.07740585774054665 0.0033903832951689417 0.07740585774054665 0.0033903832951689417 0.08690509618562868
+0.07949790794975176 0 0.07949790794975176 0 0.0872639284502273
+0.0033903832951688692 0.08158995815899571 0.0033903832951688692 0.08158995815899571 0.09329102742025318
+0 0.08368200836820075 0 0.08368200836820076 0.09327656027393678
+0.08158995815895687 0.0033903832951689417 0.08158995815895687 0.0033903832951689417 0.08807254445764807
+0.08368200836816198 0 0.08368200836816198 0 0.08841024920888911
+0.0033903832951688744 0.08577405857740575 0.0033903832951688744 0.08577405857740573 0.09348338552356422
+0 0.08786610878661079 0 0.08786610878661079 0.09333712013248611
+0.08577405857736708 0.0033903832951689417 0.08577405857736708 0.0033903832951689417 0.08919881667803313
+0.0878661087865722 0 0.0878661087865722 0 0.08953121388374534
+0.0033903832951688814 0.08995815899581579 0.0033903832951688814 0.08995815899581579 0.09340982006272879
+0 0.09205020920502083 0 0.09205020920502083 0.09313748568636233
+0.0899581589957773 0.0033903832951689417 0.0899581589957773 0.0033903832951689417 0.0903155113909529
+0.09205020920498241 0 0.09205020920498241 0 0.09065981381479538
+0.0033903832951688866 0.09414225941422583 0.0033903832951688866 0.09414225941422583 0.09308185787702827
+0 0.09623430962343087 0 0.09623430962343087 0.09269122547125437
+0.09414225941418752 0.0033903832951689417 0.09414225941418752 0.0033903832951689417 0.09145693496937647
+0.09623430962339263 0 0.09623430962339263 0 0.09183098552524586
+0.003390383295168889 0.09832635983263588 0.003390383295168889 0.09832635983263588 0.0925151706067656
+0 0.1004184100418409 0 0.10041841004184089 0.09201608242490762
+0.09832635983259774 0.0033903832951689417 0.09832635983259774 0.0033903832951689417 0.09265856466610999
+0.10041841004180285 0 0.10041841004180285 0 0.09308000152660079
+0.0033903832951688953 0.10251046025104593 0.0033903832951688953 0.10251046025104593 0.0917296535096781
+0 0.10460251046025094 0 0.10460251046025094 0.09113407058440802
+0.10251046025100796 0.0033903832951689417 0.10251046025100796 0.0033903832951689417 0.09395537188474296
+0.10460251046021307 0 0.10460251046021307 0 0.09444075906773751
+0.0033903832951689 0.10669456066945597 0.0033903832951689 0.10669456066945597 0.09074953793921421
+0 0.10878661087866098 0 0.10878661087866098 0.09007159727632537
+0.10669456066941818 0.0033903832951689417 0.10669456066941818 0.0033903832951689417 0.09538008614411263
+0.10878661087862329 0 0.10878661087862329 0 0.09594406202942896
+0.0033903832951689117 0.11087866108786602 0.0033903832951689117 0.11087866108786602 0.08960352004385115
+0 0.11297071129707102 0 0.11297071129707102 0.08885958962182239
+0.1108786610878284 0.0033903832951689417 0.1108786610878284 0.0033903832951689417 0.09696150837976304
+0.11297071129703351 0 0.11297071129703351 0 0.09761601432560153
+0.003390383295168916 0.11506276150627603 0.003390383295168916 0.11506276150627603 0.0883248799537768
+0 0.11715481171548106 0 0.11715481171548107 0.0875335942109217
+0.11506276150623862 0.0033903832951689417 0.11506276150623862 0.0033903832951689417 0.09872299899437377
+0.11715481171544373 0 0.11715481171544373 0 0.09947665128613563
+0.0033903832951689213 0.11924686192468605 0.0033903832951689213 0.11924686192468605 0.08695155391639521
+0 0.1213389121338911 0 0.1213389121338911 0.08613380518719789
+0.11924686192464884 0.0033903832951689417 0.11924686192464884 0.0033903832951689417 0.10068126465706063
+0.12133891213385395 0 0.12133891213385395 0 0.10153892341760003
+0.12343096234305906 0.0033903832951689417 0.12343096234305906 0.0033903832951689417 0.10284554523013993
+0.12552301255226417 0 0.12552301255226417 0 0.10380811439187143
+0.0033903832951689278 0.1234309623430961 0.0033903832951689278 0.1234309623430961 0.08552610638157358
+0 0.12552301255230114 0 0.12552301255230114 0.08470495900829683
+0.12761506276146928 0.0033903832951689417 0.12761506276146928 0.0033903832951689417 0.10521726099218164
+0.1297071129706744 0 0.1297071129706744 0 0.10628172764167486
+0.003390383295168933 0.12761506276150617 0.0033903832951689334 0.12761506276150617 0.08409553080385758
+0 0.1297071129707112 0 0.1297071129707112 0.08329601554046742
+0.003390383295168935 0.13179916317991622 0.003390383295168935 0.13179916317991622 0.08271078975526008
+0 0.13389121338912124 0 0.13389121338912124 0.0819595291257691
+0.1317991631798795 0.0033903832951689417 0.1317991631798795 0.0033903832951689417 0.10779012864190358
+0.1338912133890846 0 0.1338912133890846 0 0.10894982353824632
+0.0033903832951689378 0.13598326359832627 0.0033903832951689378 0.13598326359832627 0.08142599270082808
+0 0.1380753138075313 0 0.1380753138075313 0.08075060751746073
+0.13598326359828972 0.0033903832951689417 0.13598326359828972 0.0033903832951689417 0.11055070354737721
+0.13807531380749483 0 0.13807531380749483 0 0.11179574294493293
+0.0033903832951689386 0.14016736401673635 0.0033903832951689386 0.14016736401673635 0.08029711307840547
+0 0.14225941422594135 0 0.14225941422594135 0.07972537234276378
+0.14016736401669994 0.0033903832951689417 0.14016736401669994 0.0033903832951689417 0.11347926576559862
+0.14225941422590505 0 0.14225941422590505 0 0.11479712161350407
+0.003390383295168941 0.14435146443514643 0.0033903832951689412 0.14435146443514643 0.0793801775828712
+0 0.1464435146443514 0 0.1464435146443514 0.07893888452177111
+0.14435146443511016 0.0033903832951689417 0.14435146443511016 0.0033903832951689417 0.11655094493174946
+0.14644351464431526 0 0.14644351464431526 0 0.1179270871345409
+0.0033903832951689417 0.14853556485355643 0.0033903832951689417 0.14853556485355643 0.07872893102938262
+0 0.15062761506276146 0 0.15062761506276146 0.07844258959519287
+0.14853556485352037 0.0033903832951689417 0.14853556485352037 0.0033903832951689417 0.1197369752848151
+0.15062761506272548 0 0.15062761506272548 0 0.12115553454322829
+0.0033903832951689417 0.15271966527196648 0.0033903832951689417 0.15271966527196648 0.0783920919127773
+0 0.1548117154811715 0 0.1548117154811715 0.0782814648098814
+0.1527196652719306 0.0033903832951689417 0.1527196652719306 0.0033903832951689417 0.12300598336966416
+0.1548117154811357 0 0.1548117154811357 0 0.12445039324385333
+0.003390383295168941 0.15690376569037656 0.0033903832951689412 0.15690376569037656 0.07841044986866652
+0 0.15899581589958156 0 0.15899581589958156 0.07849118330447594
+0.1569037656903408 0.0033903832951689417 0.1569037656903408 0.0033903832951689417 0.12632523141383503
+0.15899581589954592 0 0.15899581589954592 0 0.1277788204542455
+0.16108786610875103 0.0033903832951689417 0.16108786610875103 0.0033903832951689417 0.1296617629437187
+0.16317991631795614 0 0.16317991631795614 0 0.13110827943164716
+0.0033903832951689386 0.16108786610878664 0.0033903832951689386 0.16108786610878664 0.07881417611410489
+0 0.1631799163179916 0 0.1631799163179916 0.07909570119211828
+0.16527196652716125 0.0033903832951689417 0.16527196652716125 0.0033903832951689417 0.1329834192039764
+0.16736401673636636 0 0.16736401673636636 0 0.13440748065922498
+0.0033903832951689365 0.16527196652719667 0.003390383295168936 0.16527196652719667 0.07962076700887132
+0 0.16736401673640167 0 0.16736401673640167 0.0801056687517417
+0.16945606694557147 0.0033903832951689417 0.16945606694557147 0.0033903832951689417 0.1362597126756195
+0.17154811715477658 0 0.17154811715477658 0 0.1376471792157852
+0.003390383295168936 0.1694560669456067 0.003390383295168936 0.1694560669456067 0.08083397700509427
+0 0.17154811715481172 0 0.17154811715481175 0.08151794385038164
+0.1736401673639817 0.0033903832951689417 0.1736401673639817 0.0033903832951689417 0.1394625565393135
+0.1757322175731868 0 0.1757322175731868 0 0.140800831503131
+0.003390383295168938 0.17364016736401675 0.003390383295168938 0.17364016736401675 0.08244392126868312
+0 0.17573221757322177 0 0.17573221757322177 0.08331627234678755
+0.1778242677823919 0.0033903832951689417 0.1778242677823919 0.0033903832951689417 0.14256685661766158
+0.17991631799159702 0 0.17991631799159702 0 0.1438451200600469
+0.00339038329516894 0.1778242677824268 0.0033903832951689404 0.1778242677824268 0.08442829425034883
+0 0.17991631799163182 0 0.1799163179916318 0.08547296976023776
+0.0033903832951689417 0.18200836820083688 0.0033903832951689417 0.18200836820083688 0.08675444177083835
+0 0.18410041841004188 0 0.18410041841004188 0.08795127159074707
+0.18200836820080213 0.0033903832951689417 0.18200836820080213 0.0033903832951689417 0.14555097610226087
+0.18410041841000724 0 0.18410041841000724 0 0.14676035742041765
+0.0033903832951689417 0.1861924686192469 0.0033903832951689417 0.1861924686192469 0.08938190880527219
+0 0.18828451882845193 0 0.18828451882845196 0.0907079622729416
+0.18619246861921235 0.0033903832951689417 0.18619246861921235 0.0033903832951689417 0.1483970843521072
+0.18828451882841746 0 0.18828451882841746 0 0.14953077996399244
+0.0033903832951689404 0.19037656903765698 0.0033903832951689404 0.19037656903765698 0.09226508327948219
+0 0.19246861924686198 0 0.19246861924686198 0.0936959390911249
+0.19037656903762257 0.0033903832951689417 0.19037656903762257 0.0033903832951689417 0.15109140026711965
+0.19246861924682768 0 0.19246861924682768 0 0.15214474138212247
+0.1945606694560328 0.0033903832951689417 0.1945606694560328 0.0033903832951689417 0.15362433900983327
+0.1966527196652379 0 0.1966527196652379 0 0.15459481343165082
+0.0033903832951689386 0.19456066945606706 0.0033903832951689386 0.19456066945606706 0.09535564024976372
+0 0.19665271966527204 0 0.196652719665272 0.09686647520665875
+0.0033903832951689365 0.1987447698744771 0.003390383295168936 0.1987447698744771 0.09860461102217244
+0 0.2008368200836821 0 0.2008368200836821 0.10017106586641283
+0.198744769874443 0.0033903832951689417 0.198744769874443 0.0033903832951689417 0.15599056875853543
+0.20083682008364812 0 0.20083682008364812 0 0.15687779956201456
+0.003390383295168937 0.2029288702928871 0.003390383295168937 0.2029288702928871 0.10196401409429141
+0 0.20502092050209214 0 0.20502092050209217 0.10356283943044435
+0.20292887029285323 0.0033903832951689417 0.20292887029285325 0.0033903832951689417 0.15818898212479093
+0.20502092050205833 0 0.20502092050205833 0 0.15899466509467375
+0.0033903832951689417 0.2071129707112971 0.0033903832951689417 0.2071129707112971 0.10538806538887056
+0 0.2092050209205022 0 0.2092050209205022 0.10699757672617775
+0.20711297071126344 0.0033903832951689417 0.20711297071126342 0.0033903832951689417 0.1602225851185889
+0.20920502092046855 0 0.20920502092046855 0 0.160950386121237
+0.0033903832951689412 0.2112970711297072 0.0033903832951689412 0.21129707112970716 0.10883402967891431
+0 0.21338912133891225 0 0.21338912133891222 0.11043441081331885
+0.21129707112967366 0.0033903832951689417 0.2112970711296737 0.0033903832951689417 0.16209830526928456
+0.21338912133887877 0 0.21338912133887877 0 0.16275371831222593
+0.21548117154808388 0.0033903832951689417 0.21548117154808386 0.0033903832951689417 0.16382671983499264
+0.217573221757289 0 0.217573221757289 0 0.16441688650169217
+0.0033903832951689417 0.2154811715481173 0.0033903832951689417 0.2154811715481173 0.11226279047047738
+0 0.2175732217573223 0 0.2175732217573223 0.11383628412710761
+0.2196652719664941 0.0033903832951689417 0.21966527196649413 0.0033903832951689417 0.1654217050555403
+0.2217573221756992 0 0.2217573221756992 0 0.16595519632213138
+0.0033903832951689417 0.21966527196652738 0.0033903832951689417 0.21966527196652738 0.11563921253421543
+0 0.22175732217573235 0 0.22175732217573238 0.11717023145210496
+0.22384937238490432 0.0033903832951689417 0.2238493723849043 0.0033903832951689417 0.16690000820364762
+0.22594142259410943 0 0.22594142259410943 0 0.1673865703761512
+0.22803347280331454 0.0033903832951689417 0.22803347280331457 0.0033903832951689417 0.16828074581830188
+0.23012552301251965 0 0.23012552301251965 0 0.16873101347797073
+0.00339038329516894 0.22384937238493743 0.0033903832951689404 0.22384937238493743 0.1189323591059643
+0 0.2259414225941424 0 0.2259414225941424 0.12040754314676627
+0.0033903832951689378 0.2280334728033475 0.0033903832951689378 0.2280334728033475 0.12211561088469926
+0 0.23012552301255246 0 0.23012552301255243 0.12352384834677695
+0.23221757322172476 0.0033903832951689417 0.23221757322172473 0.0033903832951689417 0.16958483397010837
+0.23430962343092987 0 0.23430962343092987 0 0.17001001435207688
+0.0033903832951689365 0.2322175732217575 0.003390383295168936 0.2322175732217575 0.12516671988193906
+0 0.2343096234309625 0 0.2343096234309625 0.12649914493205616
+0.23640167364013498 0.0033903832951689417 0.236401673640135 0.0033903832951689417 0.17083435964435575
+0.2384937238493401 0 0.2384937238493401 0 0.17124589472358523
+0.003390383295168937 0.2364016736401675 0.003390383295168937 0.2364016736401675 0.1280678194343531
+0 0.23849372384937256 0 0.2384937238493726 0.12931779267673515
+0.2405857740585452 0.0033903832951689417 0.24058577405854517 0.0033903832951689417 0.17205190616480204
+0.2426778242677503 0 0.2426778242677503 0 0.17246112074616812
+0.0033903832951689417 0.24058577405857753 0.0033903832951689417 0.24058577405857753 0.13080540260329118
+0 0.24267782426778262 0 0.24267782426778262 0.13196847819061897
+0.0033903832951689417 0.24476987447698761 0.0033903832951689417 0.2447698744769876 0.1333702744954787
+0 0.24686192468619267 0 0.24686192468619264 0.1344441546188381
+0.24476987447695542 0.0033903832951689417 0.24476987447695545 0.0033903832951689417 0.17325984972654215
+0.24686192468616053 0 0.24686192468616053 0 0.1736775958317586
+0.24895397489536564 0.0033903832951689417 0.2489539748953656 0.0033903832951689417 0.17447964813800068
+0.25104602510457075 0 0.25104602510457075 0 0.1749159576954543
+0.0033903832951689417 0.24895397489539772 0.0033903832951689417 0.24895397489539772 0.13575747929079787
+0 0.2510460251046027 0 0.2510460251046027 0.13674195512202256
+0.25313807531377586 0.0033903832951689417 0.2531380753137759 0.0033903832951689417 0.17573114626402006
+0.25523012552298097 0 0.25523012552298097 0 0.17619490525491047
+0.2573221757321861 0.0033903832951689417 0.257322175732186 0.0033903832951689417 0.17703192484211358
+0.2594142259413912 0 0.2594142259413912 0 0.17753058236841823
+0.2615062761505963 0.0033903832951689417 0.26150627615059635 0.0033903832951689417 0.17839671978422653
+0.2635983263598014 0 0.2635983263598014 0 0.17893604479935024
+0.2656903765690065 0.0033903832951689417 0.26569037656900646 0.0033903832951689417 0.17983693740060983
+0.2677824267782116 0 0.2677824267782116 0 0.1804208340001271
+0.0033903832951689417 0.2531380753138078 0.0033903832951689417 0.2531380753138078 0.13796619949499833
+0 0.2552301255230128 0 0.2552301255230128 0.13886307649010382
+0.0033903832951689417 0.25732217573221783 0.0033903832951689417 0.2573221757322179 0.13999962277040615
+0 0.2594142259414228 0 0.2594142259414228 0.14081262752821036
+0.26987447698741673 0.0033903832951689417 0.2698744769874168 0.0033903832951689417 0.18136028706722038
+0.27196652719662184 0 0.27196652719662184 0 0.18199067634879865
+0.0033903832951689386 0.2615062761506279 0.0033903832951689386 0.2615062761506279 0.1418647703705351
+0 0.2635983263598329 0 0.2635983263598329 0.1425994358844814
+0.27405857740582695 0.0033903832951689417 0.2740585774058269 0.0033903832951689417 0.18297054689739334
+0.27615062761503206 0 0.27615062761503206 0 0.18364731970300438
+0.0033903832951689365 0.2656903765690379 0.003390383295168936 0.2656903765690379 0.1435722805590894
+0 0.26778242677824293 0 0.26778242677824293 0.14423580666147096
+0.0033903832951689365 0.26987447698744793 0.003390383295168936 0.26987447698744793 0.14513614037013658
+0 0.271966527196653 0 0.271966527196653 0.14573722644549847
+0.2782426778242372 0.0033903832951689417 0.27824267782423723 0.0033903832951689417 0.18466747048728546
+0.2803347280334423 0 0.2803347280334423 0 0.1853885112093483
+0.0033903832951689395 0.27405857740585793 0.0033903832951689395 0.27405857740585793 0.1465733596802292
+0 0.27615062761506304 0 0.27615062761506304 0.14712200734607944
+0.2824267782426474 0.0033903832951689417 0.28242677824264734 0.0033903832951689417 0.18644683455106878
+0.2845188284518525 0 0.2845188284518525 0 0.18720811206398055
+0.0033903832951689417 0.278242677824268 0.0033903832951689417 0.278242677824268 0.14790358288260688
+0 0.2803347280334731 0 0.2803347280334731 0.1484108673414833
+0.0033903832951689417 0.2824267782426781 0.0033903832951689417 0.2824267782426781 0.14914863556719002
+0 0.28451882845188314 0 0.28451882845188314 0.14962644576049391
+0.2866108786610576 0.0033903832951689417 0.28661087866105767 0.0033903832951689417 0.18830061914006513
+0.2887029288702627 0 0.2887029288702627 0 0.18909633725246047
+0.0033903832951689417 0.2866108786610882 0.0033903832951689417 0.2866108786610882 0.15033200659011992
+0 0.2887029288702932 0 0.2887029288702932 0.15079275614009008
+0.29079497907946783 0.0033903832951689417 0.2907949790794678 0.0033903832951689417 0.1902173050121436
+0.29288702928867294 0 0.29288702928867294 0 0.19104010198505703
+0.29497907949787805 0.0033903832951689417 0.2949790794978781 0.0033903832951689417 0.19218226726663346
+0.29707112970708316 0 0.29707112970708316 0 0.19302345213342142
+0.0033903832951689417 0.29079497907949825 0.0033903832951689417 0.2907949790794983 0.15147826977366186
+0 0.29288702928870325 0 0.29288702928870325 0.15193458294396464
+0.0033903832951689395 0.2949790794979083 0.0033903832951689395 0.2949790794979083 0.15261245411188015
+0 0.2970711297071133 0 0.2970711297071133 0.1530768335356698
+0.29916317991628827 0.0033903832951689417 0.2991631799162882 0.0033903832951689417 0.19417824098795008
+0.3012552301254934 0 0.3012552301254934 0 0.1950280537080331
+0.3033472803346985 0.0033903832951689417 0.30334728033469854 0.0033903832951689417 0.1961858334347941
+0.3054393305439036 0 0.3054393305439036 0 0.1970337162307001
+0.3075313807531087 0.0033903832951689417 0.30753138075310865 0.0033903832951689417 0.19818405807368641
+0.3096234309623138 0 0.3096234309623138 0 0.19901892644402572
+0.3117154811715189 0.0033903832951689417 0.311715481171519 0.0033903832951689417 0.20015086808365676
+0.31380753138072404 0 0.31380753138072404 0 0.20096137169778883
+0.31589958158992915 0.0033903832951689417 0.3158995815899291 0.0033903832951689417 0.2020636703472026
+0.31799163179913426 0 0.31799163179913426 0 0.20283843604475124
+0.0033903832951689378 0.29916317991631836 0.0033903832951689378 0.29916317991631836 0.15375937651745494
+0 0.30125523012552335 0 0.30125523012552335 0.15424386203439433
+0.32008368200833937 0.0033903832951689417 0.3200836820083394 0.0033903832951689417 0.20389980487743145
+0.3221757322175445 0 0.3221757322175445 0 0.20462765608121716
+0.3242677824267496 0.0033903832951689417 0.32426778242674953 0.0033903832951689417 0.20563697866369254
+0.3263598326359547 0 0.3263598326359547 0 0.20630712748516733
+0.003390383295168937 0.30334728033472835 0.003390383295168937 0.30334728033472835 0.1549429564016361
+0 0.3054393305439334 0 0.3054393305439334 0.15545878672840463
+0.3284518828451598 0.0033903832951689417 0.32845188284515986 0.0033903832951689417 0.20725364670601945
+0.3305439330543649 0 0.3305439330543649 0 0.20785585675668553
+0.0033903832951689386 0.30753138075313835 0.0033903832951689386 0.30753138075313835 0.15618553613831557
+0 0.30962343096234346 0 0.30962343096234346 0.15674282692761576
+0.0033903832951689417 0.31171548117154846 0.0033903832951689417 0.3117154811715484 0.15750723502243155
+0 0.3138075313807535 0 0.3138075313807535 0.1581146877910917
+0.0033903832951689417 0.31589958158995857 0.0033903832951689417 0.31589958158995857 0.15892536598989002
+0 0.31799163179916357 0 0.31799163179916357 0.15959002212486303
+0.33263598326357 0.0033903832951689417 0.33263598326356997 0.0033903832951689417 0.20872933632987808
+0.33472803347277513 0 0.33472803347277513 0 0.20925405568733094
+0.0033903832951689417 0.3200836820083686 0.0033903832951689417 0.3200836820083686 0.16045394356111323
+0 0.3221757322175736 0 0.3221757322175736 0.1611809959849727
+0.0033903832951689417 0.3242677824267787 0.0033903832951689417 0.32426778242677873 0.16210330793360828
+0 0.32635983263598367 0 0.32635983263598367 0.162895980064003
+0.33682008368198024 0.0033903832951689417 0.3368200836819803 0.0033903832951689417 0.21004491361490338
+0.33891213389118535 0 0.33891213389118535 0 0.21048337851213406
+0.0033903832951689417 0.3284518828451887 0.0033903832951689417 0.3284518828451887 0.1638798840100523
+0 0.3305439330543937 0 0.3305439330543937 0.16473938163172738
+0.34100418410039046 0.0033903832951689417 0.3410041841003904 0.0033903832951689417 0.21118279291046552
+0.34309623430959557 0 0.34309623430959557 0 0.21152710353939386
+0.0033903832951689417 0.3326359832635987 0.0033903832951689417 0.3326359832635987 0.16578608596547825
+0 0.3347280334728038 0 0.3347280334728038 0.16671162298838463
+0.0033903832951689417 0.3368200836820088 0.0033903832951689417 0.3368200836820088 0.16782036864604824
+0 0.33891213389121383 0 0.33891213389121383 0.1688092630011243
+0.0033903832951689417 0.34100418410041883 0.0033903832951689417 0.34100418410041883 0.16997741776412048
+0 0.3430962343096239 0 0.34309623430962394 0.17102524944984498
+0.0033903832951689417 0.3451882845188289 0.0033903832951689417 0.3451882845188288 0.17224846260476476
+0 0.34728033472803393 0 0.34728033472803393 0.1733492826048034
+0.3451882845188007 0.0033903832951689417 0.34518828451880074 0.0033903832951689417 0.21212709198452262
+0.3472803347280058 0 0.3472803347280058 0 0.2123702623670137
+0.3493723849372109 0.0033903832951689417 0.34937238493721084 0.0033903832951689417 0.21286373643398515
+0.351464435146416 0 0.351464435146416 0 0.2129997206624954
+0.0033903832951689417 0.349372384937239 0.0033903832951689417 0.349372384937239 0.1746216886617378
+0 0.351464435146444 0 0.351464435146444 0.17576826539304072
+0.3535564853556211 0.0033903832951689417 0.3535564853556212 0.0033903832951689417 0.21338051766419
+0.35564853556482623 0 0.35564853556482623 0 0.21340421499740928
+0.35774058577403134 0.0033903832951689417 0.3577405857740313 0.0033903832951689417 0.21366710911245726
+0.35983263598323645 0 0.35983263598323645 0 0.21357435047259385
+0.36192468619244156 0.0033903832951689417 0.3619246861924416 0.0033903832951689417 0.21371504552842815
+0.36401673640164667 0 0.36401673640164667 0 0.21350256392323286
+0.3661087866108518 0.0033903832951689417 0.3661087866108517 0.0033903832951689417 0.2135176701014779
+0.3682008368200569 0 0.3682008368200569 0 0.2131830574153463
+0.0033903832951689417 0.3535564853556491 0.0033903832951689417 0.35355648535564915 0.17708272378799342
+0 0.35564853556485404 0 0.35564853556485404 0.17826681298739597
+0.0033903832951689417 0.3577405857740591 0.0033903832951689417 0.35774058577405915 0.1796151701784605
+0 0.3598326359832641 0 0.35983263598326404 0.18082779458037054
+0.0033903832951689417 0.36192468619246915 0.0033903832951689417 0.36192468619246915 0.18220115553733884
+0 0.36401673640167415 0 0.36401673640167415 0.18343288208296107
+0.370292887029262 0.0033903832951689417 0.37029288702926205 0.0033903832951689417 0.21307005409833948
+0.3723849372384671 0 0.3723849372384671 0 0.21261170658525283
+0.3744769874476722 0.0033903832951689417 0.37447698744767216 0.0033903832951689417 0.21236889348391694
+0.3765690376568773 0 0.3765690376568773 0 0.21178594816665294
+0.0033903832951689417 0.3661087866108792 0.0033903832951689417 0.3661087866108792 0.18482187960086463
+0 0.3682008368200842 0 0.3682008368200842 0.18606308392905344
+0.0033903832951689417 0.3702928870292892 0.0033903832951689417 0.3702928870292892 0.18745813615507048
+0 0.37238493723849425 0 0.37238493723849425 0.1886992464319894
+0.37866108786608244 0.0033903832951689417 0.3786610878660825 0.0033903832951689417 0.2114123867750576
+0.38075313807528754 0 0.38075313807528754 0 0.21070465082084563
+0.38284518828449265 0.0033903832951689417 0.3828451882844926 0.0033903832951689417 0.21020009814097937
+0.38493723849369776 0 0.38493723849369776 0 0.2093679731503686
+0.3870292887029029 0.0033903832951689417 0.38702928870290293 0.0033903832951689417 0.20873280952775994
+0.389121338912108 0 0.389121338912108 0 0.20777721254465323
+0.3912133891213131 0.0033903832951689417 0.39121338912131304 0.0033903832951689417 0.2070123653547836
+0.3933054393305182 0 0.3933054393305182 0 0.20593464828293728
+0.0033903832951689417 0.3744769874476992 0.0033903832951689417 0.3744769874476992 0.1900907951813889
+0 0.3765690376569043 0 0.37656903765690436 0.19132250965289618
+0.0033903832951689417 0.3786610878661092 0.0033903832951689417 0.3786610878661092 0.19270123425531469
+0 0.38075313807531436 0 0.38075313807531436 0.19391470904802333
+0.0033903832951689417 0.3828451882845193 0.0033903832951689417 0.38284518828451924 0.19527171243481603
+0 0.3849372384937244 0 0.3849372384937244 0.19645871796425063
+0.3953974895397233 0.0033903832951689417 0.39539748953972337 0.0033903832951689417 0.20504151311128282
+0.3974895397489284 0 0.3974895397489284 0 0.20384338210615763
+0.39958158995813353 0.0033903832951689417 0.3995815899581335 0.0033903832951689417 0.20282374297125957
+0.40167364016733864 0 0.40167364016733864 0 0.20150717926505793
+0.0033903832951689417 0.3870292887029294 0.0033903832951689417 0.3870292887029294 0.19778568337897906
+0 0.38912133891213446 0 0.38912133891213446 0.19893872919207325
+0.0033903832951689417 0.39121338912133946 0.0033903832951689417 0.39121338912133946 0.20022804724019697
+0 0.3933054393305445 0 0.39330543933054446 0.20134047622442028
+0.0033903832951689417 0.39539748953974957 0.0033903832951689417 0.39539748953974957 0.20258534298198969
+0 0.39748953974895457 0 0.39748953974895457 0.2036513966498196
+0.0033903832951689417 0.3995815899581596 0.0033903832951689417 0.3995815899581596 0.20484588426045522
+0 0.4016736401673646 0 0.4016736401673646 0.20586074131931395
+0.40376569037654375 0.0033903832951689417 0.4037656903765438 0.0033903832951689417 0.20036312934350783
+0.40585774058574886 0 0.40585774058574886 0 0.1989303128540412
+0.40794979079495397 0.0033903832951689417 0.4079497907949539 0.0033903832951689417 0.19766417707737124
+0.4100418410041591 0 0.4100418410041591 0 0.19611741404629102
+0.4121338912133642 0.0033903832951689417 0.41213389121336425 0.0033903832951689417 0.1947316748508836
+0.4142259414225693 0 0.4142259414225693 0 0.1930733306518397
+0.4163179916317744 0.0033903832951689417 0.41631799163177435 0.0033903832951689417 0.19157055807240744
+0.4184100418409795 0 0.4184100418409795 0 0.18980299622299848
+0.42050209205018463 0.0033903832951689417 0.4205020920501847 0.0033903832951689417 0.1881857834261997
+0.42259414225938974 0 0.42259414225938974 0 0.18631131172741408
+0.0033903832951689417 0.4037656903765697 0.0033903832951689417 0.4037656903765697 0.20699984297433724
+0 0.4058577405857747 0 0.4058577405857747 0.20795963367770173
+0.0033903832951689417 0.4079497907949798 0.0033903832951689417 0.4079497907949798 0.2090392851496128
+0 0.4100418410041847 0 0.4100418410041848 0.20994108405103776
+0.0033903832951689417 0.41213389121338984 0.0033903832951689417 0.4121338912133899 0.21095816408561827
+0 0.4142259414225948 0 0.4142259414225948 0.21179996383237407
+0.0033903832951689417 0.4163179916317999 0.0033903832951689417 0.4163179916317999 0.2127522757420763
+0 0.41841004184100483 0 0.41841004184100483 0.21353294448785923
+0.0033903832951689417 0.42050209205020994 0.0033903832951689417 0.42050209205021 0.2144191812626035
+0 0.4225941422594149 0 0.4225941422594149 0.21513840617850696
+0.42468619246859485 0.0033903832951689417 0.4246861924685948 0.0033903832951689417 0.18458221698320879
+0.42677824267779996 0 0.42677824267779996 0 0.1826030415949921
+0.0033903832951689417 0.42468619246861994 0.0033903832951689417 0.42468619246862 0.21595810136472818
+0 0.42677824267782494 0 0.4267782426778249 0.2166163206049524
+0.0033903832951689417 0.42887029288703 0.0033903832951689417 0.42887029288703 0.21736978711736601
+0 0.430962343096235 0 0.430962343096235 0.21796811246451062
+0.0033903832951689417 0.43305439330544004 0.0033903832951689417 0.43305439330544004 0.21865637139914093
+0 0.43514644351464504 0 0.43514644351464504 0.21919650368148305
+0.0033903832951689417 0.43723849372385004 0.0033903832951689417 0.43723849372385004 0.21982120509985667
+0 0.4393305439330551 0 0.4393305439330551 0.22030534434395702
+0.42887029288700507 0.0033903832951689417 0.4288702928870051 0.0033903832951689417 0.18076453757807012
+0.4309623430962102 0 0.4309623430962102 0 0.1786827257186283
+0.0033903832951689417 0.44142259414226004 0.0033903832951689417 0.44142259414226004 0.22086868190051442
+0 0.44351464435146515 0 0.4435146443514652 0.2212994340583617
+0.0033903832951689417 0.44560669456067004 0.0033903832951689417 0.44560669456067004 0.22180405524731797
+0 0.4476987447698752 0 0.4476987447698752 0.2221843372179353
+0.0033903832951689417 0.4497907949790801 0.0033903832951689417 0.4497907949790801 0.22263325092188138
+0 0.45188284518828525 0 0.45188284518828525 0.2229661954718923
+0.4330543933054153 0.0033903832951689417 0.43305439330541523 0.0033903832951689417 0.17673715691969324
+0.4351464435146204 0 0.4351464435146204 0 0.17455460874863052
+0.0033903832951689417 0.45397489539749014 0.0033903832951689417 0.4539748953974901 0.2233626784014833
+0 0.4560669456066953 0 0.4560669456066953 0.22365154047624647
+0.4372384937238255 0.0033903832951689417 0.43723849372382556 0.0033903832951689417 0.17250415765505656
+0.4393305439330306 0 0.4393305439330306 0 0.17022258776655472
+0.4414225941422357 0.0033903832951689417 0.44142259414223567 0.0033903832951689417 0.16806925034412323
+0.44351464435144083 0 0.44351464435144083 0 0.16569017915701853
+0.0033903832951689417 0.45815899581590025 0.0033903832951689417 0.4581589958159002 0.223999043997238
+0 0.46025104602510536 0 0.4602510460251053 0.22424710980248297
+0.44560669456064594 0.0033903832951689417 0.445606694560646 0.0033903832951689417 0.1634357500301072
+0.44769874476985105 0 0.44769874476985105 0 0.16096050521880026
+0.44979079497905616 0.0033903832951689417 0.4497907949790561 0.0033903832951689417 0.15860657280756565
+0.4518828451882613 0 0.4518828451882613 0 0.1560363007743013
+0.4539748953974664 0.0033903832951689417 0.45397489539746644 0.0033903832951689417 0.15358425250739483
+0.4560669456066715 0 0.4560669456066715 0 0.15091993975719484
+0.4581589958158766 0.0033903832951689417 0.45815899581587655 0.0033903832951689417 0.14837097734241153
+0.4602510460250817 0 0.4602510460250817 0 0.1456134814934617
+0.0033903832951689417 0.46234309623431036 0.0033903832951689417 0.4623430962343104 0.22454916855203014
+0 0.4644351464435154 0 0.4644351464435154 0.2247596686743573
+0.0033903832951689417 0.46652719665272047 0.0033903832951689417 0.46652719665272047 0.22501981227201198
+0 0.46861924686192546 0 0.46861924686192546 0.2251958399943966
+0.0033903832951689417 0.4707112970711306 0.0033903832951689417 0.4707112970711305 0.2254175090540735
+0 0.4728033472803355 0 0.4728033472803355 0.22556194490919887
+0.4623430962342868 0.0033903832951689417 0.4623430962342869 0.0033903832951689417 0.14296864610375645
+0.46443514644349193 0 0.46443514644349193 0 0.14011873615781717
+0.46652719665269704 0.0033903832951689417 0.466527196652697 0.0033903832951689417 0.13737894328703407
+0.46861924686190215 0 0.46861924686190215 0 0.13443734871019775
+0.47071129707110726 0.0033903832951689417 0.4707112970711073 0.0033903832951689417 0.1316034323875017
+0.47280334728031237 0 0.47280334728031237 0 0.1285709005319587
+0.0033903832951689417 0.4748953974895406 0.0033903832951689417 0.4748953974895406 0.22574841245630814
+0 0.47698744769874557 0 0.4769874476987456 0.22586385594607836
+0.4748953974895175 0.0033903832951689417 0.4748953974895174 0.0033903832951689417 0.12564366658071646
+0.4769874476987226 0 0.4769874476987226 0 0.12252102804525866
+0.4790794979079277 0.0033903832951689417 0.47907949790792775 0.0033903832951689417 0.11950131617001518
+0.4811715481171328 0 0.4811715481171328 0 0.11628955790338487
+0.0033903832951689417 0.4790794979079507 0.0033903832951689417 0.47907949790795074 0.22601815523913493
+0 0.4811715481171556 0 0.4811715481171556 0.22610686453322523
+0.4832635983263379 0.0033903832951689417 0.48326359832633786 0.0033903832951689417 0.11317831265298815
+0.485355648535543 0 0.485355648535543 0 0.10987865903987894
+0.48744769874474814 0.0033903832951689417 0.4874476987447482 0.0033903832951689417 0.10667701024030463
+0.48953974895395325 0 0.48953974895395325 0 0.10329101323599932
+0.0033903832951689417 0.48326359832636073 0.0033903832951689417 0.48326359832636073 0.22623172418187384
+0 0.4853556485355657 0 0.4853556485355657 0.22629556449201896
+0.0033903832951689417 0.4874476987447708 0.0033903832951689417 0.48744769874477084 0.2263933516540373
+0 0.48953974895397573 0 0.48953974895397573 0.22643375286433043
+0.49163179916315836 0.0033903832951689417 0.4916317991631583 0.0033903832951689417 0.10000036752289844
+0.49372384937236347 0 0.49372384937236347 0 0.09653000842068353
+0.003390383295168938 0.49163179916318084 0.003390383295168938 0.49163179916318084 0.22650642519331973
+0 0.4937238493723858 0 0.4937238493723857 0.22652434921050282
+0.4958158995815686 0.0033903832951689417 0.49581589958156863 0.0033903832951689417 0.09315215543119106
+0.4979079497907737 0 0.4979079497907737 0 0.08959996364668184
+0.0033903832951689278 0.4958158995815909 0.0033903832951689278 0.4958158995815909 0.2265734161141645
+0 0.49790794979079583 0 0.49790794979079583 0.2265693342860421
+0.4999999999999788 0.0033903832951689417 0.49999999999997874 0.0033903832951689417 0.08613720405929949
+0.5020920502091839 0 0.5020920502091839 0 0.08250640360813645
+0.0033903832951689117 0.5000000000000009 0.0033903832951689117 0.5000000000000009 0.22659582794256314
+0 0.5020920502092059 0 0.5020920502092059 0.2265697087774686
+0.0033903832951688896 0.5041841004184109 0.0033903832951688896 0.5041841004184109 0.22657416524487559
+0 0.5062761506276159 0 0.5062761506276159 0.2265254725506083
+0.504184100418389 0.0033903832951689417 0.504184100418389 0.0033903832951689417 0.07896171325086855
+0.5062761506275941 0 0.5062761506275941 0 0.07525641800019495
+0.00339038329516887 0.5083682008368209 0.00339038329516887 0.5083682008368209 0.22650792319110202
+0 0.5104602510460259 0 0.5104602510460259 0.22643562463788522
+0.5083682008367992 0.0033903832951689417 0.5083682008367992 0.0033903832951689417 0.07163367648214784
+0.5104602510460043 0 0.5104602510460043 0 0.06785917679273835
+0.0033903832951688597 0.5125523012552309 0.0033903832951688597 0.5125523012552309 0.22639559796612477
+0 0.5146443514644359 0 0.5146443514644359 0.22629818396475546
+0.5125523012552095 0.0033903832951689417 0.5125523012552095 0.0033903832951689417 0.06416351961525024
+0.5146443514644146 0 0.5146443514644146 0 0.06032675051071104
+0.0033903832951688554 0.5167364016736409 0.0033903832951688554 0.5167364016736409 0.2262347179156772
+0 0.5188284518828459 0 0.5188284518828459 0.22611023058899526
+0.0033903832951688545 0.5209205020920509 0.0033903832951688545 0.5209205020920509 0.22602189508689108
+0 0.5230125523012559 0 0.5230125523012559 0.2258679669998547
+0.5167364016736197 0.0033903832951689417 0.5167364016736197 0.0033903832951689417 0.0565651737054502
+0.5188284518828248 0 0.5188284518828248 0 0.05267556802971787
+0.5209205020920299 0.0033903832951689417 0.5209205020920299 0.0033903832951689417 0.04885808985522406
+0.523012552301235 0 0.523012552301235 0 0.04492931712014292
+0.0033903832951688545 0.5251046025104609 0.0033903832951688545 0.5251046025104609 0.22575289659592965
+0 0.5271966527196659 0 0.5271966527196659 0.2255667987969302
+0.5251046025104401 0.0033903832951689417 0.5251046025104401 0.0033903832951689417 0.04107148978154674
+0.5271966527196452 0 0.5271966527196452 0 0.037125458986133106
+0.0033903832951688545 0.5292887029288709 0.0033903832951688545 0.5292887029288709 0.22542273502736634
+0 0.5313807531380759 0 0.5313807531380759 0.22520143384105232
+0.5292887029288503 0.0033903832951689417 0.5292887029288503 0.0033903832951689417 0.033254576319434535
+0.5313807531380554 0 0.5313807531380554 0 0.029332090604578604
+0.0033903832951688545 0.5334728033472809 0.0033903832951688545 0.5334728033472809 0.22502577684176953
+0 0.5355648535564859 0 0.5355648535564859 0.22476599874184536
+0.0033903832951688545 0.5376569037656909 0.0033903832951688545 0.5376569037656909 0.22455586753986956
+0 0.5397489539748959 0 0.5397489539748959 0.22425417131949646
+0.5334728033472605 0.0033903832951689417 0.5334728033472605 0.0033903832951689417 0.025505287245243025
+0.5355648535564657 0 0.5355648535564657 0 0.02170021595098133
+0.0033903832951688545 0.5418410041841009 0.0033903832951688545 0.5418410041841009 0.22400647210443206
+0 0.5439330543933059 0 0.5439330543933059 0.2236593274524902
+0.5376569037656708 0.0033903832951689417 0.5376569037656708 0.0033903832951689417 0.018069818062598723
+0.5397489539748759 0 0.5397489539748759 0 0.014667581093350096
+0.541841004184081 0.0033903832951689417 0.541841004184081 0.0033903832951689417 0.011777148449103636
+0.5439330543932861 0 0.5439330543932861 0 0.009870165498329912
+0.0033903832951688545 0.5460251046025109 0.0033903832951688545 0.5460251046025109 0.2233708290154439
+0 0.5481171548117159 0 0.5481171548117159 0.22297470049954782
+0.0033903832951688545 0.5502092050209209 0.0033903832951688545 0.5502092050209209 0.2226421159113733
+0 0.5523012552301259 0 0.5523012552301259 0.22219355126365195
+0.5460251046024912 0.0033903832951689417 0.5460251046024912 0.0033903832951689417 0.009535119777539167
+0.5481171548116963 0 0.5481171548116963 0 0.011001274661192871
+0.5502092050209014 0.0033903832951689417 0.5502092050209014 0.0033903832951689417 0.013634783709924514
+0.5523012552301065 0 0.5523012552301065 0 0.016972789323851323
+0.0033903832951688545 0.5543933054393309 0.0033903832951688545 0.5543933054393309 0.22181362474991137
+0 0.5564853556485359 0 0.5564853556485359 0.22130934624949153
+0.5543933054393116 0.0033903832951689417 0.5543933054393116 0.0033903832951689417 0.020619941201397457
+0.5564853556485168 0 0.5564853556485168 0 0.024482836465973535
+0.0033903832951688545 0.5585774058577408 0.0033903832951688545 0.5585774058577408 0.2208789441062234
+0 0.5606694560669458 0 0.5606694560669458 0.2203159417531869
+0.0033903832951688545 0.5627615062761508 0.0033903832951688545 0.5627615062761508 0.21983214603534715
+0 0.5648535564853558 0 0.5648535564853558 0.21920777111444925
+0.5585774058577219 0.0033903832951689417 0.5585774058577219 0.0033903832951689417 0.028441943706910302
+0.560669456066927 0 0.560669456066927 0 0.03247354920591032
+0.0033903832951688545 0.5669456066945608 0.0033903832951688545 0.5669456066945608 0.2186679747173205
+0 0.5690376569037658 0 0.5690376569037658 0.2179800322554073
+0.5627615062761321 0.0033903832951689417 0.5627615062761321 0.0033903832951689417 0.036551588834143924
+0.5648535564853372 0 0.5648535564853372 0 0.040639278239994754
+0.5669456066945423 0.0033903832951689417 0.5669456066945423 0.0033903832951689417 0.04476403878321056
+0.5690376569037474 0 0.5690376569037474 0 0.04885864468288195
+0.5711297071129525 0.0033903832951689417 0.5711297071129525 0.0033903832951689417 0.052993858508332846
+0.5732217573221576 0 0.5732217573221576 0 0.057067412084370085
+0.0033903832951688545 0.5711297071129708 0.0033903832951688545 0.5711297071129708 0.21738203389759844
+0 0.5732217573221758 0 0.5732217573221758 0.21662887242556128
+0.0033903832951688545 0.5753138075313808 0.0033903832951688545 0.5753138075313808 0.215970969929322
+0 0.5774058577405858 0 0.5774058577405858 0.21515156686647954
+0.5753138075313627 0.0033903832951689417 0.5753138075313627 0.0033903832951689417 0.06119019547177307
+0.5774058577405679 0 0.5774058577405679 0 0.06522344019035092
+0.0033903832951688545 0.5794979079497908 0.0033903832951688545 0.5794979079497908 0.21443264701562859
+0 0.5815899581589958 0 0.5815899581589958 0.21354668790047437
+0.579497907949773 0.0033903832951689417 0.579497907949773 0.0033903832951689417 0.06931689646370098
+0.5815899581589781 0 0.5815899581589781 0 0.07329488360174191
+0.0033903832951688545 0.5836820083682008 0.0033903832951688545 0.5836820083682008 0.21276631103694746
+0 0.5857740585774058 0 0.5857740585774058 0.21181426073236956
+0.5836820083681832 0.0033903832951689417 0.5836820083681832 0.0033903832951689417 0.07734530287537707
+0.5857740585773883 0 0.5857740585773883 0 0.0812556593708021
+0.0033903832951688545 0.5878661087866108 0.0033903832951688545 0.5878661087866108 0.21097273812825504
+0 0.5899581589958158 0 0.5899581589958158 0.20995590203146952
+0.5878661087865934 0.0033903832951689417 0.5878661087865934 0.0033903832951689417 0.08525137514803005
+0.5899581589957985 0 0.5899581589957985 0 0.0890835990315324
+0.0033903832951688545 0.5920502092050208 0.0033903832951688545 0.5920502092050208 0.209054363944331
+0 0.5941422594142258 0 0.5941422594142258 0.20797493713311355
+0.5920502092050036 0.0033903832951689417 0.5920502092050036 0.0033903832951689417 0.09301452696849
+0.5941422594142087 0 0.5941422594142087 0 0.09675972582237131
+0.0033903832951688545 0.5962343096234308 0.0033903832951688545 0.5962343096234308 0.2070153893199401
+0 0.5983263598326358 0 0.5983263598326358 0.20587649147078182
+0.5962343096234138 0.0033903832951689417 0.5962343096234138 0.0033903832951689417 0.1006172134512907
+0.598326359832619 0 0.598326359832619 0 0.10426805019854667
+0.0033903832951688545 0.6004184100418408 0.0033903832951688545 0.6004184100418408 0.20486185780424418
+0 0.6025104602510458 0 0.6025104602510458 0.20366755163163852
+0.6004184100418241 0.0033903832951689417 0.6004184100418241 0.0033903832951689417 0.10804487894391158
+0.6025104602510292 0 0.6025104602510292 0 0.11159561883249962
+0.0033903832951688545 0.6046025104602508 0.0033903832951688545 0.6046025104602508 0.20260170033956945
+0 0.6066945606694558 0 0.6066945606694558 0.20135699124028716
+0.0033903832951688545 0.6087866108786608 0.0033903832951688545 0.6087866108786608 0.2002447421889537
+0 0.6108786610878658 0 0.6108786610878658 0.19895555674850654
+0.6046025104602343 0.0033903832951689417 0.6046025104602343 0.0033903832951689417 0.11528608290430213
+0.6066945606694394 0 0.6066945606694394 0 0.11873268838023569
+0.6087866108786445 0.0033903832951689417 0.6087866108786445 0.0033903832951689417 0.12233271047885486
+0.6108786610878496 0 0.6108786610878496 0 0.12567295372572948
+0.0033903832951688545 0.6129707112970708 0.0033903832951688545 0.6129707112970708 0.19780266713287228
+0 0.6150627615062758 0 0.6150627615062758 0.19647580818858876
+0.0033903832951688545 0.6171548117154808 0.0033903832951688545 0.6171548117154808 0.19528893400753944
+0 0.6192468619246858 0 0.6192468619246858 0.19393201009752248
+0.6129707112970547 0.0033903832951689417 0.6129707112970547 0.0033903832951689417 0.12918021337046368
+0.6150627615062598 0 0.6150627615062598 0 0.13241378684449198
+0.6171548117154649 0.0033903832951689417 0.6171548117154649 0.0033903832951689417 0.13582784447760957
+0.61924686192467 0 0.61924686192467 0 0.1389564546873003
+0.0033903832951688545 0.6213389121338908 0.0033903832951688545 0.6213389121338908 0.1927186409177921
+0 0.6234309623430958 0 0.6234309623430958 0.19133996822004704
+0.0033903832951688545 0.6255230125523008 0.0033903832951688545 0.6255230125523008 0.19010833301781194
+0 0.6276150627615058 0 0.6276150627615058 0.18871680834900476
+0.6213389121338752 0.0033903832951689417 0.6213389121338752 0.0033903832951689417 0.1422788580884311
+0.6234309623430803 0 0.6234309623430803 0 0.14530629016843585
+0.6255230125522854 0.0033903832951689417 0.6255230125522854 0.0033903832951689417 0.14854065123048146
+0.6276150627614905 0 0.6276150627614905 0 0.15147279298327365
+0.0033903832951688545 0.6297071129707108 0.0033903832951688545 0.6297071129707108 0.18747575071906178
+0 0.6317991631799158 0 0.6317991631799158 0.18608069487136056
+0.0033903832951688545 0.6338912133891208 0.0033903832951688545 0.6338912133891208 0.18483951666966528
+0 0.6359832635983258 0 0.6359832635983258 0.18345048836727876
+0.6297071129706956 0.0033903832951689417 0.6297071129706956 0.0033903832951689417 0.1546248236079898
+0.6317991631799007 0 0.6317991631799007 0 0.1574696384149308
+0.6338912133891058 0.0033903832951689417 0.6338912133891058 0.0033903832951689417 0.1605471347967173
+0.6359832635983109 0 0.6359832635983109 0 0.16331457362102456
+0.0033903832951688545 0.6380753138075308 0.0033903832951688545 0.6380753138075308 0.18221876195704298
+0 0.6401673640167358 0 0.6401673640167358 0.18084534404747787
+0.0033903832951688545 0.6422594142259408 0.0033903832951688545 0.6422594142259408 0.17963269478719399
+0 0.6443514644351458 0 0.6443514644351458 0.1782842559530228
+0.638075313807516 0.0033903832951689417 0.638075313807516 0.0033903832951689417 0.1663273389173069
+0.6401673640167211 0 0.6401673640167211 0 0.16902918288859162
+0.6422594142259263 0.0033903832951689417 0.6422594142259263 0.0033903832951689417 0.1719888795444914
+0.6443514644351314 0 0.6443514644351314 0 0.1746385065996546
+0.0033903832951688545 0.6464435146443508 0.0033903832951688545 0.6464435146443508 0.17710011839667736
+0 0.6485355648535558 0 0.6485355648535558 0.1757855556426519
+0.0033903832951688545 0.6506276150627608 0.0033903832951688545 0.6506276150627608 0.17463890906402943
+0 0.6527196652719658 0 0.6527196652719658 0.17336637839988686
+0.6464435146443365 0.0033903832951689417 0.6464435146443365 0.0033903832951689417 0.17755843165621824
+0.6485355648535416 0 0.6485355648535416 0 0.1801705036079301
+0.6506276150627467 0.0033903832951689417 0.6506276150627467 0.0033903832951689417 0.1830652833515837
+0.6527196652719518 0 0.6527196652719518 0 0.18565535365214159
+0.0033903832951688545 0.6548117154811708 0.0033903832951688545 0.6548117154811708 0.17226546957955716
+0 0.6569037656903758 0 0.6569037656903758 0.1710421145054143
+0.6548117154811569 0.0033903832951689417 0.6548117154811569 0.0033903832951689417 0.18854055802049016
+0.656903765690362 0 0.656903765690362 0 0.1911246053299426
+0.0033903832951688545 0.6589958158995808 0.0033903832951688545 0.6589958158995808 0.16999417802651443
+0 0.6610878661087858 0 0.6610878661087858 0.16882586738753588
+0.0033903832951688545 0.6631799163179908 0.0033903832951688545 0.6631799163179908 0.16783685569713747
+0 0.6652719665271958 0 0.6652719665271958 0.16672794390646917
+0.6589958158995671 0.0033903832951689417 0.6589958158995671 0.0033903832951689417 0.1940162874828033
+0.6610878661087722 0 0.6610878661087722 0 0.19661018569832342
+0.6631799163179773 0.0033903832951689417 0.6631799163179773 0.0033903832951689417 0.19952435781026032
+0.6652719665271825 0 0.6652719665271825 0 0.2021432990322812
+0.0033903832951688545 0.6673640167364008 0.0033903832951688545 0.6673640167364008 0.16580228078886014
+0 0.6694560669456058 0 0.6694560669456058 0.16475540400983174
+0.0033903832951688545 0.6715481171548108 0.0033903832951688545 0.6715481171548108 0.16389577556480026
+0 0.6736401673640158 0 0.6736401673640158 0.1629116969297872
+0.6673640167363876 0.0033903832951689417 0.6673640167363876 0.0033903832951689417 0.2050953611824093
+0.6694560669455927 0 0.6694560669455928 0 0.20775325356748983
+0.6715481171547978 0.0033903832951689417 0.6715481171547978 0.0033903832951689417 0.21075739794764095
+0.6736401673640029 0 0.6736401673640029 0 0.21346626480678274
+0.0033903832951688545 0.6757322175732208 0.0033903832951688545 0.6757322175732208 0.1621188934002542
+0 0.6778242677824258 0 0.6778242677824258 0.161196408574128
+0.0033903832951688545 0.6799163179916308 0.0033903832951688545 0.6799163179916308 0.16046922830905874
+0 0.6820083682008358 0 0.6820083682008358 0.1596051397029887
+0.675732217573208 0.0033903832951689417 0.675732217573208 0.0033903832951689417 0.2165348816139855
+0.6778242677824131 0 0.677824267782413 0 0.2193042907481951
+0.6799163179916182 0.0033903832951689417 0.6799163179916182 0.0033903832951689417 0.22244740439406605
+0.6820083682008233 0 0.6820083682008233 0 0.22528395696497308
+0.0033903832951688545 0.6841004184100408 0.0033903832951688545 0.6841004184100408 0.1589403632508635
+0 0.6861924686192458 0 0.6861924686192458 0.1581295271826742
+0.0033903832951688545 0.6882845188284508 0.0033903832951688545 0.6882845188284508 0.1575219652736138
+0 0.6903765690376558 0 0.6903765690376558 0.15675741176553842
+0.6841004184100284 0.0033903832951689417 0.6841004184100284 0.0033903832951689417 0.22850872114068468
+0.6861924686192336 0 0.6861924686192337 0 0.23141562709907734
+0.6882845188284387 0.0033903832951689417 0.6882845188284387 0.0033903832951689417 0.23472590461920648
+0.6903765690376438 0 0.6903765690376438 0 0.23770266699023737
+0.0033903832951688545 0.6924686192468608 0.0033903832951688545 0.6924686192468608 0.15620002621845075
+0 0.6945606694560658 0 0.6945606694560658 0.15547314645644206
+0.0033903832951688545 0.6966527196652708 0.0033903832951688545 0.6966527196652708 0.15495723840150422
+0 0.6987447698744758 0 0.6987447698744758 0.15425803071145447
+0.6924686192468489 0.0033903832951689417 0.6924686192468489 0.0033903832951689417 0.24109871542714534
+0.694560669456054 0 0.6945606694560539 0 0.24414093909930557
+0.6966527196652591 0.0033903832951689417 0.6966527196652591 0.0033903832951689417 0.24761921659968444
+0.6987447698744642 0 0.6987447698744642 0 0.2507185495075746
+0.0033903832951688545 0.7008368200836808 0.0033903832951688545 0.7008368200836808 0.15377348650040543
+0 0.7029288702928858 0 0.7029288702928858 0.15309084850233096
+0.0033903832951688545 0.7050209205020908 0.0033903832951688545 0.7050209205020908 0.1526264307292372
+0 0.7071129707112958 0 0.7071129707112958 0.15194848341805334
+0.7008368200836693 0.0033903832951689417 0.7008368200836693 0.0033903832951689417 0.2542716476946163
+0.7029288702928744 0 0.7029288702928745 0 0.25741585438426146
+0.7050209205020795 0.0033903832951689417 0.7050209205020795 0.0033903832951689417 0.2610325578168498
+0.7071129707112846 0 0.7071129707112846 0 0.26420571824871614
+0.0033903832951688545 0.7092050209205008 0.0033903832951688545 0.7092050209205008 0.15149215284309112
+0 0.7112970711297057 0 0.7112970711297057 0.15080658180848844
+0.0033903832951688545 0.7133891213389107 0.0033903832951688545 0.7133891213389107 0.15034583570276652
+0 0.7154811715481157 0 0.7154811715481157 0.1496402354297066
+0.7092050209204898 0.0033903832951689417 0.7092050209204898 0.0033903832951689417 0.2678711833633647
+0.7112970711296949 0 0.7112970711296948 0 0.27105400414208203
+0.7133891213389 0.0033903832951689417 0.7133891213389 0.0033903832951689417 0.2747500455404686
+0.7154811715481051 0 0.7154811715481051 0 0.27792026695175953
+0.0033903832951688545 0.7175732217573207 0.0033903832951688545 0.7175732217573207 0.14916244878254595
+0 0.7196652719665257 0 0.7196652719665257 0.14842465770096708
+0.0033903832951688545 0.7217573221757307 0.0033903832951688545 0.7217573221757307 0.1479174155600753
+0 0.7238493723849357 0 0.7238493723849357 0.14713583188745064
+0.7175732217573102 0.0033903832951689417 0.7175732217573102 0.0033903832951689417 0.28162573560908677
+0.7196652719665153 0 0.7196652719665154 0 0.2847586159577613
+0.7217573221757204 0.0033903832951689417 0.7217573221757204 0.0033903832951689417 0.28844985240865445
+0.7238493723849255 0 0.7238493723849255 0 0.2915187109783731
+0.0033903832951688545 0.7259414225941407 0.0033903832951688545 0.7259414225941407 0.1465872434847648
+0 0.7280334728033457 0 0.7280334728033457 0.14575111456897302
+0.0033903832951688545 0.7301255230125507 0.0033903832951688545 0.7301255230125507 0.14515010247755336
+0 0.7322175732217557 0 0.7322175732217557 0.14424978298949692
+0.7259414225941306 0.0033903832951689417 0.7259414225941306 0.0033903832951689417 0.295170056547243
+0.7280334728033357 0 0.7280334728033356 0 0.2981468576573077
+0.0033903832951688545 0.7343096234309607 0.0033903832951688545 0.7343096234309607 0.1435863430756985
+0 0.7364016736401657 0 0.7364016736401657 0.14261351979235606
+0.7301255230125409 0.0033903832951689417 0.7301255230125409 0.0033903832951689417 0.30173120795860014
+0.732217573221746 0 0.732217573221746 0 0.30458717061676505
+0.7343096234309511 0.0033903832951689417 0.7343096234309511 0.0033903832951689417 0.3080765574315442
+0.7364016736401562 0 0.7364016736401563 0 0.31078277753154904
+0.0033903832951688545 0.7384937238493707 0.0033903832951688545 0.7384937238493707 0.14187894997239445
+0 0.7405857740585757 0 0.7405857740585757 0.1408268328930328
+0.0033903832951688545 0.7426778242677807 0.0033903832951688545 0.7426778242677807 0.14001393055991748
+0 0.7447698744769857 0 0.7447698744769857 0.1388774116528095
+0.7384937238493613 0.0033903832951689417 0.7384937238493613 0.0033903832951689417 0.31414896737399856
+0.7405857740585664 0 0.7405857740585664 0 0.316677041892385
+0.7426778242677715 0.0033903832951689417 0.7426778242677715 0.0033903832951689417 0.31989214179124376
+0.7447698744769766 0 0.7447698744769765 0 0.32221478672940096
+0.0033903832951688545 0.7468619246861907 0.0033903832951688545 0.7468619246861907 0.1379806410668711
+0 0.7489539748953957 0 0.7489539748953957 0.13675642305238306
+0.0033903832951688545 0.7510460251046007 0.0033903832951688545 0.7510460251046007 0.13577205499529332
+0 0.7531380753138057 0 0.7531380753138057 0.13445875326987206
+0.7468619246861817 0.0033903832951689417 0.7468619246861817 0.0033903832951689417 0.3252518497345817
+0.7489539748953868 0 0.7489539748953868 0 0.327343505457091
+0.751046025104592 0.0033903832951689417 0.751046025104592 0.0033903832951689417 0.33017712999649756
+0.7531380753137971 0 0.7531380753137972 0 0.33201454904564537
+0.0033903832951688545 0.7552301255230107 0.0033903832951688545 0.7552301255230107 0.1333849798839913
+0 0.7573221757322157 0 0.7573221757322157 0.13198320102647199
+0.0033903832951688545 0.7594142259414207 0.0033903832951688545 0.7594142259414207 0.130820229039309
+0 0.7615062761506257 0 0.7615062761506257 0.12933262935631706
+0.7552301255230022 0.0033903832951689417 0.7552301255230022 0.0033903832951689417 0.33462146742535404
+0.7573221757322073 0 0.7573221757322073 0 0.33618428081085366
+0.7594142259414124 0.0033903832951689417 0.7594142259414124 0.0033903832951689417 0.3385439328418846
+0.7615062761506175 0 0.7615062761506174 0 0.3398151912121526
+0.0033903832951688545 0.7635983263598307 0.0033903832951688545 0.7635983263598307 0.12808275485122136
+0 0.7656903765690357 0 0.7656903765690357 0.12651408212913423
+0.0033903832951688545 0.7677824267782407 0.0033903832951688545 0.7677824267782407 0.1251817496671914
+0 0.7698744769874457 0 0.7698744769874457 0.1235388706853812
+0.7635983263598226 0.0033903832951689417 0.7635983263598226 0.0033903832951689417 0.341910279149133
+0.7656903765690277 0 0.7656903765690277 0 0.34287696515231386
+0.7677824267782328 0.0033903832951689417 0.7677824267782328 0.0033903832951689417 0.3446939858355693
+0.7698744769874379 0 0.769874476987438 0 0.34534749337296816
+0.0033903832951688545 0.7719665271966507 0.0033903832951688545 0.7719665271966507 0.12213071886858913
+0 0.7740585774058557 0 0.7740585774058557 0.12042263422822519
+0.0033903832951688545 0.7761506276150607 0.0033903832951688545 0.7761506276150607 0.11894752862877112
+0 0.7782426778242657 0 0.7782426778242657 0.11718537494636048
+0.771966527196643 0.0033903832951689417 0.771966527196643 0.0033903832951689417 0.34687724265567765
+0.7740585774058482 0 0.7740585774058482 0 0.34721381759620734
+0.7761506276150533 0.0033903832951689417 0.7761506276150533 0.0033903832951689417 0.3484518607709472
+0.7782426778242584 0 0.7782426778242583 0 0.34847299598816156
+0.0033903832951688545 0.7803347280334707 0.0033903832951688545 0.7803347280334707 0.11565442756248666
+0 0.7824267782426757 0 0.7824267782426757 0.11385146489572047
+0.0033903832951688545 0.7845188284518807 0.0033903832951688545 0.7845188284518807 0.11227803672617083
+0 0.7866108786610857 0 0.7866108786610857 0.11044961602438674
+0.7803347280334635 0.0033903832951689417 0.7803347280334635 0.0033903832951689417 0.3494200959383433
+0.7824267782426686 0 0.7824267782426686 0 0.3491328711872599
+0.7845188284518737 0.0033903832951689417 0.7845188284518737 0.0033903832951689417 0.34979536329828625
+0.7866108786610788 0 0.7866108786610789 0 0.34921271739691145
+0.0033903832951688545 0.7887029288702907 0.0033903832951688545 0.7887029288702907 0.10884929573711448
+0 0.7907949790794957 0 0.7907949790794957 0.10701279691205005
+0.0033903832951688545 0.7928870292887007 0.0033903832951688545 0.7928870292887007 0.1054033436893208
+0 0.7949790794979057 0 0.7949790794979057 0.10357806942779905
+0.7887029288702839 0.0033903832951689417 0.7887029288702839 0.0033903832951689417 0.3496028167910214
+0.790794979079489 0 0.790794979079489 0 0.34874373576175444
+0.7928870292886941 0.0033903832951689417 0.7928870292886941 0.0033903832951689417 0.3488797581278695
+0.7949790794978993 0 0.7949790794978991 0 0.3477693584051515
+0.0033903832951688545 0.7970711297071107 0.0033903832951688545 0.7970711297071107 0.10197930179990887
+0 0.7991631799163157 0 0.7991631799163157 0.10018630556590762
+0.0033903832951688545 0.8012552301255207 0.0033903832951688545 0.8012552301255207 0.0986199106455069
+0 0.8033472803347257 0 0.8033472803347257 0.09688173002817164
+0.7970711297071044 0.0033903832951689417 0.7970711297071044 0.0033903832951689417 0.34767583063298263
+0.7991631799163095 0 0.7991631799163095 0 0.34634531131360985
+0.8012552301255146 0.0033903832951689417 0.8012552301255146 0.0033903832951689417 0.34605294254190944
+0.8033472803347197 0 0.8033472803347198 0 0.34453937534116713
+0.0033903832951688545 0.8054393305439307 0.0033903832951688545 0.8054393305439307 0.09537095995906048
+0 0.8075313807531357 0 0.8075313807531357 0.09371122009453219
+0.0033903832951688545 0.8096234309623407 0.0033903832951688545 0.8096234309623407 0.09228043679463883
+0 0.8117154811715457 0 0.8117154811715457 0.09072328581944829
+0.8054393305439248 0.0033903832951689417 0.8054393305439248 0.0033903832951689417 0.3440848534203022
+0.8075313807531299 0 0.8075313807531299 0 0.3424307742622191
+0.809623430962335 0.0033903832951689417 0.809623430962335 0.0033903832951689417 0.34185634796778225
+0.8117154811715401 0 0.81171548117154 0 0.34010911123330184
+0.0033903832951688545 0.8138075313807507 0.0033903832951688545 0.8138075313807507 0.08939731480743118
+0 0.8158995815899557 0 0.8158995815899557 0.0879666584933451
+0.8138075313807452 0.0033903832951689417 0.8138075313807452 0.0033903832951689417 0.33946191635768797
+0.8158995815899504 0 0.8158995815899504 0 0.33767277356064174
+0.0033903832951688545 0.8179916317991607 0.0033903832951688545 0.8179916317991607 0.08676992278495392
+0 0.8200836820083657 0 0.8200836820083657 0.08548844391027038
+0.0033903832951688545 0.8221757322175707 0.0033903832951688545 0.8221757322175707 0.08444387502211644
+0 0.8242677824267757 0 0.8242677824267757 0.08333185887772544
+0.8179916317991555 0.0033903832951689417 0.8179916317991555 0.0033903832951689417 0.33700386335268645
+0.8200836820083606 0 0.8200836820083607 0 0.3352267347406606
+0.8221757322175657 0.0033903832951689417 0.8221757322175657 0.0033903832951689417 0.3345897846044413
+0.8242677824267708 0 0.8242677824267708 0 0.3328797074155383
+0.0033903832951688545 0.8263598326359807 0.0033903832951688545 0.8263598326359807 0.08245962674170865
+0 0.8284518828451857 0 0.8284518828451857 0.08153366698966516
+0.0033903832951688545 0.8305439330543907 0.0033903832951688545 0.8305439330543907 0.08084983009393899
+0 0.8326359832635957 0 0.8326359832635957 0.08012154959295284
+0.8263598326359759 0.0033903832951689417 0.8263598326359759 0.0033903832951689417 0.33232938284544306
+0.828451882845181 0 0.8284518828451809 0 0.3307406457246623
+0.8305439330543861 0.0033903832951689417 0.8305439330543861 0.0033903832951689417 0.3303306527786372
+0.8326359832635912 0 0.8326359832635912 0 0.32891466262015806
+0.0033903832951688545 0.8347280334728007 0.0033903832951688545 0.8347280334728007 0.07963678642870853
+0 0.8368200836820057 0 0.8368200836820057 0.07911175565989773
+0.0033903832951688545 0.8389121338912107 0.0033903832951688545 0.8389121338912107 0.07883037453576969
+0 0.8410041841004157 0 0.8410041841004157 0.07850742055679126
+0.8347280334727963 0.0033903832951689417 0.8347280334727963 0.0033903832951689417 0.3286955413189112
+0.8368200836820014 0 0.8368200836820016 0 0.32749851412827247
+0.8389121338912066 0.0033903832951689417 0.8389121338912066 0.0033903832951689417 0.32751528311040096
+0.8410041841004117 0 0.8410041841004117 0 0.32657589808269616
+0.0033903832951688545 0.8430962343096207 0.0033903832951688545 0.8430962343096207 0.0784268326026904
+0 0.8451882845188257 0 0.8451882845188257 0.07829788622500039
+0.0033903832951688545 0.8472803347280307 0.0033903832951688545 0.8472803347280307 0.07840865620337072
+0 0.8493723849372357 0 0.8493723849372357 0.07845918835609714
+0.8430962343096168 0.0033903832951689417 0.8430962343096168 0.0033903832951689417 0.32686570567542117
+0.8451882845188219 0 0.8451882845188218 0 0.32621290149689003
+0.847280334728027 0.0033903832951689417 0.847280334728027 0.0033903832951689417 0.32680287282422565
+0.8493723849372321 0 0.8493723849372321 0 0.32645398526216807
+0.0033903832951688545 0.8514644351464407 0.0033903832951688545 0.8514644351464407 0.07874566590479908
+0 0.8535564853556457 0 0.8535564853556457 0.07895564569078117
+0.0033903832951688545 0.8556485355648507 0.0033903832951688545 0.8556485355648507 0.07939706411372088
+0 0.8577405857740557 0 0.8577405857740557 0.07974227325670266
+0.8514644351464372 0.0033903832951689417 0.8514644351464372 0.0033903832951689417 0.3273594652794078
+0.8535564853556423 0 0.8535564853556424 0 0.3273188952719992
+0.8556485355648474 0.0033903832951689417 0.8556485355648474 0.0033903832951689417 0.32854226551190463
+0.8577405857740525 0 0.8577405857740525 0 0.3288008232713158
+0.0033903832951688545 0.8598326359832607 0.0033903832951688545 0.8598326359832607 0.08031412486865758
+0 0.8619246861924656 0 0.8619246861924656 0.08076761833948462
+0.0033903832951688545 0.8640167364016706 0.0033903832951688545 0.8640167364016706 0.08144309647022295
+0 0.8661087866108756 0 0.8661087866108756 0.08197661344260285
+0.8598326359832577 0.0033903832951689417 0.8598326359832577 0.0033903832951689417 0.3303310152048216
+0.8619246861924628 0 0.8619246861924627 0 0.3308660136247299
+0.8640167364016679 0.0033903832951689417 0.8640167364016679 0.0033903832951689417 0.3326787630041533
+0.866108786610873 0 0.866108786610873 0 0.33345484712367224
+0.003390383295168852 0.8682008368200806 0.003390383295168852 0.8682008368200806 0.08272794593539563
+0 0.8702928870292856 0 0.8702928870292856 0.0833131309587542
+0.003390383295168827 0.8723849372384906 0.003390383295168827 0.8723849372384906 0.08411269413049843
+0 0.8744769874476956 0 0.8744769874476956 0.08472205775430534
+0.8682008368200781 0.0033903832951689417 0.8682008368200781 0.0033903832951689417 0.33551364808038847
+0.8702928870292832 0 0.8702928870292833 0 0.33648426535215953
+0.8723849372384883 0.0033903832951689417 0.8723849372384883 0.0033903832951689417 0.3387419089972534
+0.8744769874476934 0 0.8744769874476934 0 0.3398512647404998
+0.003390383295168716 0.876569037656901 0.003390383295168716 0.876569037656901 0.08554322650405165
+0 0.8786610878661056 0 0.8786610878661056 0.08615083474000323
+0.0033903832951681836 0.8807531380753121 0.003390383295168184 0.8807531380753121 0.08696857605890841
+0 0.8828451882845156 0 0.8828451882845156 0.08755049800362298
+0.8765690376568985 0.0033903832951689417 0.8765690376568985 0.0033903832951689417 0.3422517989418094
+0.8786610878661036 0 0.8786610878661035 0 0.34343711248128156
+0.8807531380753088 0.0033903832951689417 0.8807531380753088 0.0033903832951689417 0.34591804328365156
+0.8828451882845139 0 0.8828451882845139 0 0.34711192332651836
+0.00339038329516577 0.8849372384937272 0.00339038329516577 0.8849372384937272 0.0883417456601596
+0 0.8870292887029256 0 0.8870292887029256 0.08887630783713914
+0.0033903832951550864 0.8891213389121599 0.003390383295155086 0.8891213389121599 0.08962016802604612
+0 0.8912133891213356 0 0.8912133891213356 0.09008806774992544
+0.884937238493719 0.0033903832951689417 0.884937238493719 0.0033903832951689417 0.3496064911631503
+0.8870292887029241 0 0.8870292887029242 0 0.3507392766390754
+0.0033903832951086986 0.8933054393306673 0.0033903832951086986 0.8933054393306673 0.09076590503651273
+0 0.8953974895397456 0 0.8953974895397456 0.09115022981587302
+0.8891213389121292 0.0033903832951689417 0.8891213389121292 0.0033903832951689417 0.3531786729868174
+0.8912133891213343 0 0.8912133891213343 0 0.35418062677607925
+0.8933054393305394 0.0033903832951689417 0.8933054393305394 0.0033903832951689417 0.35649605823884895
+0.8953974895397445 0 0.8953974895397444 0 0.3572993451515762
+0.003390383294910639 0.8974895397494921 0.003390383294910639 0.8974895397494921 0.09174567575315891
+0 0.8995815899581556 0 0.8995815899581556 0.09203186668331875
+0.0033903832940813984 0.9016736401696258 0.0033903832940813984 0.9016736401696258 0.09253078437079065
+0 0.9037656903765656 0 0.9037656903765656 0.09270657196960481
+0.8974895397489496 0.0033903832951689417 0.8974895397489496 0.0033903832951689417 0.3594238926793633
+0.8995815899581547 0 0.8995815899581547 0 0.35996431190540806
+0.9016736401673598 0.0033903832951689417 0.9016736401673598 0.0033903832951689417 0.36183456690715365
+0.903765690376565 0 0.9037656903765651 0 0.3620530388943058
+0.003390383290684692 0.9058577405950441 0.003390383290684692 0.9058577405950441 0.0930970010862695
+0 0.9079497907949756 0 0.9079497907949756 0.09315233378749933
+0.003390383277109043 0.9100418410412331 0.003390383277109043 0.9100418410412331 0.0934244334105268
+0 0.9121338912133856 0 0.9121338912133856 0.09335141254461421
+0.9058577405857701 0.0033903832951689417 0.9058577405857701 0.0033903832951689417 0.36361052284014805
+0.9079497907949752 0 0.9079497907949752 0 0.3634543503694591
+0.9100418410041803 0.0033903832951689417 0.9100418410041803 0.0033903832951689417 0.364646740225199
+0.9121338912133854 0 0.9121338912133853 0 0.3640706745916164
+0.0033903832243361263 0.9142259415666366 0.0033903832243361263 0.9142259415666366 0.09349741365091395
+0 0.9163179916317956 0 0.9163179916317956 0.09329024420759517
+0.0033903830255547374 0.9184100423839446 0.003390383025554737 0.9184100423839446 0.09330442000807797
+0 0.9205020920502056 0 0.9205020920502056 0.09295938353489619
+0.9142259414225905 0.0033903832951689417 0.9142259414225905 0.0033903832951689417 0.36485286471392125
+0.9163179916317956 0 0.9163179916317956 0 0.36382001255286206
+0.9184100418410007 0.0033903832951689417 0.9184100418410007 0.0033903832951689417 0.3641550466330594
+0.9205020920502058 0 0.920502092050206 0 0.3626376532941842
+0.003390382303274962 0.9225941442352662 0.003390382303274962 0.9225941442352662 0.09283804337797376
+0 0.9246861924686156 0 0.9246861924686156 0.09235349773505826
+0.0033903797851943273 0.9267782495858657 0.0033903797851943273 0.9267782495858657 0.09209500878915348
+0 0.9288702928870256 0 0.9288702928870256 0.0914714189715259
+0.9225941422594109 0.0033903832951689417 0.9225941422594109 0.0033903832951689417 0.362497559558689
+0.924686192468616 0 0.924686192468616 0 0.360477702852155
+0.9267782426778212 0.0033903832951689417 0.9267782426778212 0.0033903832951689417 0.359844263513661
+0.9288702928870263 0 0.9288702928870262 0 0.3573144883871106
+0.0033903714159569803 0.9309623661658536 0.0033903714159569803 0.9309623661658536 0.0910762585707754
+0 0.9330543933054356 0 0.9330543933054356 0.09031626350904604
+0.003390345097297298 0.9351465166107845 0.003390345097297298 0.9351465166107845 0.08978710269546093
+0 0.9372384937238456 0 0.9372384937238456 0.088895625348493
+0.9309623430962314 0.0033903832951689417 0.9309623430962314 0.0033903832951689417 0.3561799711939086
+0.9330543933054365 0 0.9330543933054365 0 0.35314389207242
+0.9351464435146416 0.0033903832951689417 0.9351464435146416 0.0033903832951689417 0.3515117679954654
+0.9372384937238467 0 0.9372384937238468 0 0.34798466120895183
+0.0033902674722300387 0.9393307620011203 0.0033902674722300387 0.9393307620011203 0.08823743841281471
+0 0.9414225941422556 0 0.9414225941422556 0.08722185229143302
+0.0033900548035479925 0.9435152516635883 0.0033900548035479925 0.9435152516635883 0.08644203596743587
+0 0.9456066945606656 0 0.9456066945606656 0.08531241281926037
+0.9393305439330518 0.0033903832951689417 0.9393305439330518 0.0033903832951689417 0.3458703275045114
+0.9414225941422569 0 0.9414225941422569 0 0.3418797309404989
+0.943514644351462 0.0033903832951689417 0.943514644351462 0.0033903832951689417 0.3393112521985318
+0.9456066945606671 0 0.945606694560667 0 0.33489758124929786
+0.003389519042625919 0.9477003082442842 0.0033895190426259185 0.9477003082442842 0.08442088841003675
+0 0.9497907949790756 0 0.9497907949790756 0.08319036105044784
+0.0033882934013429685 0.9518865147388462 0.0033882934013429685 0.9518865147388462 0.0821996523364754
+0 0.9539748953974856 0 0.9539748953974856 0.08088489432476184
+0.9476987447698723 0.0033903832951689417 0.9476987447698723 0.0033903832951689417 0.3319164509511469
+0.9497907949790774 0 0.9497907949790774 0 0.3271336240784266
+0.9518829737421758 0.0033902991833932865 0.9518829737421758 0.0033902991833932865 0.3237952208193067
+0.9539748953974876 0 0.9539748953974877 0 0.3187115442993542
+0.0033858422379006345 0.9560745561030984 0.0033858422379006345 0.9560745561030984 0.07981033333206726
+0 0.9581589958158956 0 0.9581589958158956 0.07843199971018058
+0.003382526966221129 0.9602637406679015 0.003382526966221129 0.9602637406679015 0.077293082569165
+0 0.9623430962343056 0 0.9623430962343056 0.07587522243039259
+0.9560675386912482 0.0033899837161023866 0.9560675386912482 0.003389983716102386 0.31508557612602944
+0.9581589958158978 0 0.9581589958158978 0 0.30978451140606933
+0.960252891660467 0.0033890350381993515 0.960252891660467 0.0033890350381993515 0.3059548834963472
+0.962343096234308 0 0.9623430962343079 0 0.30053594292841845
+0.0033799411405268584 0.9644533897103263 0.0033799411405268584 0.9644533897103263 0.07469624831270606
+0 0.9665271966527156 0 0.9665271966527156 0.0732665035633685
+0.0033797610198814236 0.9686425483981674 0.0033797610198814236 0.9686425483981674 0.0720773595729506
+0 0.9707112970711256 0 0.9707112970711256 0.07066677228931785
+0.9644391877262546 0.0033867375366412517 0.9644391877262546 0.0033867375366412517 0.29660151827251985
+0.9665271966527182 0 0.9665271966527182 0 0.29117944270157453
+0.9686257717886275 0.0033823687836519556 0.9686257717886274 0.0033823687836519556 0.2872556815345559
+0.9707112970711285 0 0.9707112970711286 0 0.28195771143852066
+0.003385429330650522 0.972830718836993 0.003385429330650522 0.972830718836993 0.06950269191943331
+0 0.9748953974895356 0 0.9748953974895356 0.06814698013896647
+0.9728149574084192 0.0033801483616073113 0.9728149574084192 0.0033801483616073117 0.2781729570010763
+0.9748953974895387 0 0.9748953974895387 0 0.2731403783937503
+0.0033953604289660676 0.9770436606390932 0.0033953604289660676 0.9770436606390932 0.06703433385020346
+0 0.9790794979079456 0 0.9790794979079456 0.06578663346695351
+0.0033999583869080974 0.9813419458264863 0.0033999583869080974 0.9813419458264862 0.0647270170261346
+0 0.9832635983263556 0 0.9832635983263556 0.06367414500278602
+0.9770039554272523 0.0033761565449779104 0.9770039554272522 0.0033761565449779104 0.26963751736600017
+0.9790794979079489 0 0.9790794979079488 0 0.26501513826130263
+0.9811881226952404 0.0033740562079683047 0.9811881226952403 0.0033740562079683047 0.26195551340182344
+0.9832635983263591 0 0.9832635983263591 0 0.2578816752888238
+0.003453845260314147 0.9854333068085772 0.003453845260314147 0.9854333068085772 0.0628329949247365
+0 0.9874476987447656 0 0.9874476987447656 0.061902403911289726
+0.0033836941020729074 0.9893651396743657 0.0033836941020729074 0.9893651396743657 0.06133548093730023
+0 0.9916317991631756 0 0.9916317991631756 0.06055949942016481
+0.9853821873919322 0.003373917650450389 0.9853821873919323 0.003373917650450389 0.2553976406595297
+0.9874476987447693 0 0.9874476987447695 0 0.2520505876877258
+0.9895531549195652 0.0032757450162572074 0.9895531549195652 0.0032757450162572074 0.250283071837559
+0.9916317991631796 0 0.9916317991631796 0 0.247754023689042
+0.0037399151299343236 0.993597882236606 0.0037399151299343236 0.993597882236606 0.0602486515446231
+0 0.9958158995815856 0 0.9958158995815856 0.05978513964984274
+0.0028666867156063973 0.9972842042133898 0.0028666867156063973 0.9972842042133898 0.05967354519828687
+0 1 0 1 0.059627511057406636
+0.9936906889128819 0.0031179438724232623 0.9936906889128819 0.0031179438724232623 0.24676275343328022
+0.9958158995815898 0 0.9958158995815897 0 0.245254898187547
+0.9971531500853319 0.002738183317087264 0.9971531500853319 0.002738183317087264 0.24519213412836302
+1 0 1 0 0.24499729197614306
+0.004184100418410035 1 0.004184100418410035 1 0.059636295233265475
+1 0.004184100418367809 1 0.004184100418367809 0.2454324286714662
+0.006409418029687627 0.9970072392487577 0.006409418029687627 0.9970072392487577 0.05996548441222307
+0.00836820083682007 1 0.00836820083682007 1 0.06009845218782741
+1 0.008368200836778028 1 0.008368200836778028 0.247995800158897
+0.9962591619321878 0.006388872294645249 0.9962591619321878 0.006388872294645249 0.2472165750593533
+0.010384808633668974 0.9966986823765354 0.010384808633668974 0.9966986823765352 0.06062731162587587
+0.012552301255230106 1 0.012552301255230108 1 0.060910778271912325
+0.9965967400395893 0.01071102596011859 0.9965967400395893 0.01071102596011859 0.2509551714881724
+1 0.012552301255188247 1 0.012552301255188247 0.2525429308703003
+0.01455911232788841 0.9966331731552883 0.01455911232788841 0.9966331731552883 0.06161200388648271
+0.01673640167364014 1 0.01673640167364014 1 0.0620453124988748
+0.43803692578595826 0.41713954604780595 0.43803692578595826 0.41713954604780595 0.7574599961067471
+0.4418922811376343 0.41861515492051193 0.4418922811376343 0.41861515492051193 0.7841092615755275
+0.4385786971683002 0.42108597362663197 0.4385786971683003 0.42108597362663197 0.8262821120182456
+0.4415168796886639 0.4146484740112036 0.4415168796886639 0.4146484740112036 0.7174302036910573
+0.4453051410510901 0.4162833803563543 0.44530514105109004 0.4162833803563543 0.7337803246848621
+0.9965767210029176 0.014779539717710571 0.9965767210029176 0.014779539717710571 0.25623617874243004
+1 0.016736401673598467 1 0.016736401673598467 0.2586170628623044
+0.018757739514353878 0.9966160190089837 0.018757739514353878 0.9966160190089838 0.06289928580782629
+0.020920502092050177 1 0.020920502092050177 1 0.0634588645766917
+0.4346632982207644 0.41977033534296876 0.4346632982207644 0.41977033534296876 0.7889470681799916
+0.43537004403882495 0.4236916204309346 0.435370044038825 0.4236916204309346 0.8575699009163301
+0.445098300465848 0.4123041649522494 0.445098300465848 0.4123041649522494 0.6716831307403411
+0.44881145258983235 0.41409462988824847 0.44881145258983235 0.41409462988824847 0.6785494214204615
+0.9965680340229272 0.01890002905173521 0.9965680340229272 0.01890002905173521 0.26291247054710837
+1 0.020920502092008686 1 0.020920502092008686 0.26591910392717627
+0.02296091168370802 0.996616079710138 0.02296091168370802 0.9966160797101381 0.06444191152531019
+0.025104602510460212 1 0.025104602510460216 1 0.06510013081611488
+0.43140470573631456 0.42253689275397277 0.43140470573631456 0.4225368927539728 0.8097119381173657
+0.4322718102153348 0.42642763896345065 0.43227181021533473 0.42642763896345065 0.8759315232230351
+0.44877340218367917 0.4101119526357002 0.44877340218367917 0.4101119526357002 0.6236005988174557
+0.4524052186025394 0.41205264765936434 0.4524052186025394 0.4120526476593643 0.6225004262743359
+0.9965767164645918 0.02306100727741976 0.9965767164645918 0.02306100727741976 0.27069116653298125
+1 0.025104602510418905 1 0.025104602510418905 0.2741296420025726
+0.027165583950964713 0.9966156173541739 0.027165583950964713 0.9966156173541739 0.06618800515936542
+0.029288702928870248 1 0.029288702928870248 1 0.06691315993263008
+0.4282610473658081 0.4254350336899717 0.4282610473658081 0.42543503368997176 0.8180986913474609
+0.42928929467356425 0.42928934908913663 0.42928929467356425 0.4292893490891367 0.8799348407292031
+0.45253149037040186 0.40807386707108967 0.4525314903704018 0.40807386707108967 0.5770990861231907
+0.45608029300387837 0.41016092533104076 0.45608029300387837 0.41016092533104076 0.5703491319096774
+0.9965932767020833 0.027226386477740044 0.9965932767020833 0.027226386477740044 0.2792149572165912
+1 0.029288702928829125 1 0.029288702928829125 0.28292879683804195
+0.03136542274424862 0.9966121784790664 0.03136542274424862 0.9966121784790664 0.06807689098577463
+0.03347280334728028 1 0.03347280334728028 1 0.06884176034062307
+0.42524233093363967 0.4284603293054832 0.42524233093363967 0.4284603293054832 0.8130845001253674
+0.42642758684308735 0.43227186683313557 0.42642758684308735 0.43227186683313557 0.8687061392657677
+0.4563684687767153 0.4061948564860629 0.4563684687767153 0.40619485648606285 0.5363759217875014
+0.45983040368783246 0.4084226909539405 0.45983040368783246 0.4084226909539405 0.5270522787874988
+0.9966039179717546 0.03139524035800944 0.9966039179717546 0.03139524035800944 0.2881711942037184
+1 0.033472803347239344 1 0.033472803347239344 0.29200769430819373
+0.035558555111922484 0.9966104453083138 0.035558555111922484 0.9966104453083137 0.07005195823032896
+0.03765690376569032 1 0.03765690376569032 1 0.07083333693329355
+0.42234990248442683 0.4316080789444256 0.42234990248442683 0.4316080789444256 0.7940747589432321
+0.42369157069472824 0.4353701027622483 0.42369157069472824 0.4353701027622483 0.8418722350702734
+0.4602791955801191 0.40447193661220343 0.4602791955801191 0.40447193661220343 0.5053589664538684
+0.4636491501351993 0.40684091180079796 0.4636491501351993 0.406840911800798 0.4972458819609355
+0.9966080850123977 0.03556989294340919 0.9966080850123976 0.03556989294340918 0.29727553960368475
+1 0.03765690376564956 1 0.03765690376564956 0.30108829607015253
+0.039747025692311824 0.9966101963688466 0.03974702569231182 0.9966101963688466 0.0720629106332929
+0.04184100418410036 1 0.04184100418410036 1 0.07283988527318686
+0.42108592635974984 0.43857875789679 0.4210859263597498 0.4385787578967901 0.799874953140162
+0.4195836921775992 0.43487828923628785 0.4195836921775992 0.43487828923628785 0.7610267697128456
+0.4642617462262883 0.4029103903340366 0.4642617462262883 0.4029103903340366 0.48697769696572907
+0.46752999962687125 0.4054182941802749 0.4675299996268712 0.4054182941802749 0.48381810455376856
+0.9966096167048311 0.03974895397485467 0.996609616704831 0.03974895397485467 0.30626495592324327
+1 0.04184100418405978 1 0.04184100418405978 0.3099263683645337
+0.043932481139028944 0.9966099644794495 0.043932481139028944 0.9966099644794495 0.07406513869461939
+0.0460251046025104 1 0.04602510460251039 1 0.07481957285815548
+0.41861511020360687 0.4418923437675469 0.41861511020360687 0.4418923437675469 0.743602747843575
+0.41695514131717365 0.43826287702225003 0.41695514131717365 0.43826287702225003 0.7146031564631877
+0.4683091968650723 0.40151172625035686 0.4683091968650723 0.40151172625035686 0.4821143823361144
+0.4714663157271642 0.4041572701671217 0.4714663157271642 0.4041572701671217 0.48664230533138153
+0.9966096167048311 0.04393305439326489 0.996609616704831 0.04393305439326489 0.3149119777616231
+1 0.04602510460247 1 0.04602510460247 0.3183100080089173
+0.04811702771854561 0.9966096938080998 0.04811702771854561 0.9966096938080998 0.0760213436330218
+0.05020920502092044 1 0.05020920502092044 1 0.07673803725380515
+0.41628333826582214 0.4453052054754273 0.41628333826582214 0.44530520547542735 0.6744681115398318
+0.4144766539185715 0.441752746875981 0.4144766539185715 0.44175274687598093 0.6561213695984333
+0.4724124715218223 0.4002831427432711 0.4724124715218223 0.4002831427432711 0.489072744550281
+0.47545134522431737 0.4030600002645743 0.47545134522431737 0.4030600002645743 0.5022425021056452
+0.9966096167048311 0.04811715481167511 0.996609616704831 0.04811715481167511 0.32300872431530697
+1 0.05020920502088022 1 0.05020920502088022 0.3260593712879845
+0.05230125523012547 0.9966096167048311 0.05230125523012547 0.996609616704831 0.07790125610152575
+0.05439330543933048 1 0.054393305439330485 1 0.07856890629827104
+0.4140945904959364 0.4488115186986454 0.4140945904959364 0.4488115186986454 0.5948498016341932
+0.41215001369227905 0.44533734495391525 0.41215001369227905 0.44533734495391525 0.5874184985406812
+0.47656353217435293 0.3992311876152488 0.47656353217435293 0.3992311876152488 0.504181002384977
+0.47947835060238936 0.40212833961763217 0.47947835060238936 0.4021283396176322 0.5255023205309115
+0.9966096167048311 0.05230125523008533 0.996609616704831 0.05230125523008533 0.33039042754377884
+1 0.05439330543929044 1 0.05439330543929044 0.3330253051569547
+0.056485355648535504 0.9966096167048311 0.05648535564853551 0.996609616704831 0.079682624730075
+0.05857740585774052 1 0.05857740585774052 1 0.08029399868989866
+0.4099737774662548 0.4490104436707662 0.4099737774662548 0.4490104436707662 0.5110409634160266
+0.4120526110327205 0.45240528628263393 0.4120526110327205 0.45240528628263393 0.507756297304502
+0.48075047960337813 0.39835640453653154 0.4807504796033781 0.39835640453653154 0.5230394270348296
+0.4835404796323472 0.40136387989551287 0.4835404796323472 0.40136387989551287 0.5512452120373823
+0.9966096167048311 0.05648535564849555 0.996609616704831 0.05648535564849555 0.33692248115209594
+1 0.05857740585770066 1 0.05857740585770066 0.33908788076266644
+0.06066945606694554 0.9966096167048311 0.060669456066945536 0.996609616704831 0.08135139962737249
+0.06276150627615056 1 0.06276150627615056 1 0.08190332019441951
+0.40794851110095753 0.45276994874187815 0.4079485111009575 0.4527699487418781 0.43052085976981586
+0.41016089153256424 0.4560803621397409 0.41016089153256424 0.4560803621397409 0.41745499882162135
+0.48497051245898276 0.3976524784932123 0.48497051245898276 0.3976524784932123 0.5414897312738408
+0.48763075370689035 0.40076793992796284 0.4876307537068903 0.40076793992796284 0.5747060750046266
+0.9966096167048311 0.06066945606690577 0.996609616704831 0.06066945606690577 0.34249873019531046
+1 0.06276150627611088 1 0.06276150627611088 0.34415465217994096
+0.0648535564853556 0.9966096167048311 0.06485355648535561 0.996609616704831 0.08290160357528441
+0.0669456066945606 1 0.0669456066945606 1 0.0833948765721783
+0.40607956627849534 0.4566118188001355 0.40607956627849534 0.4566118188001355 0.35126361388840105
+0.4084226600413542 0.459830474161392 0.40842266004135414 0.45983047416139194 0.3306606905078582
+0.4892158977607404 0.3971199211710599 0.4892158977607404 0.3971199211710599 0.5560850394645039
+0.4917421258739378 0.4003415456927106 0.4917421258739378 0.4003415456927106 0.5924819728781204
+0.9966096167048311 0.06485355648531599 0.996609616704831 0.06485355648531599 0.34703969586512745
+1 0.0669456066945211 1 0.0669456066945211 0.3481589224088486
+0.06903765690376563 0.9966096167048311 0.06903765690376563 0.996609616704831 0.0843351321731811
+0.07112970711297063 1 0.07112970711297063 1 0.08477432836922201
+0.40436516865747313 0.46053222015886686 0.40436516865747313 0.46053222015886686 0.281922250174055
+0.40684088382689976 0.46364922182611756 0.40684088382689976 0.4636492218261175 0.2589102127266121
+0.4934789989138229 0.3967633032089451 0.4934789989138229 0.3967633032089451 0.5644720175290553
+0.49586754158415475 0.4000854225478519 0.49586754158415475 0.4000854225478519 0.6024499973596477
+0.9966096167048311 0.06903765690372621 0.996609616704831 0.06903765690372621 0.3504908844561681
+1 0.07112970711293132 1 0.07112970711293132 0.3510581240040885
+0.07322175732217567 0.9966096167048311 0.07322175732217567 0.996609616704831 0.08566133396385682
+0.07531380753138067 1 0.07531380753138067 1 0.08605449583077178
+0.4028092078022711 0.46452154736234985 0.4028092078022711 0.4645215473623498 0.23660648569159418
+0.4054182691929497 0.4675300724124202 0.4054182691929497 0.46753007241242023 0.22107616827978752
+0.49775310919229243 0.3965913022295966 0.49775310919229243 0.3965913022295966 0.5653959300410377
+0.5 0.4 0.5 0.4000000000000001 0.6035265450836823
+0.9966096167048311 0.07322175732213643 0.996609616704831 0.07322175732213643 0.35282123543902705
+1 0.07531380753134154 1 0.07531380753134154 0.35283234503832867
+0.07740585774058571 0.9966096167048311 0.07740585774058571 0.996609616704831 0.0868964364155246
+0.07949790794979071 1 0.07949790794979071 1 0.08725470277230822
+0.40415724749293763 0.47146639188833667 0.40415724749293763 0.47146639188833667 0.23178714550446264
+0.40141833141248506 0.46857367082507334 0.40141833141248506 0.46857367082507334 0.230122421480536
+0.5020297602703778 0.39659829586765666 0.5020297602703777 0.39659829586765666 0.558469290557221
+0.5041324930188438 0.40008542397903496 0.5041324930188438 0.40008542397903496 0.5955770183262494
+0.9966096167048311 0.07740585774054665 0.996609616704831 0.07740585774054665 0.35402171625357154
+1 0.07949790794975176 1 0.07949790794975176 0.35348299504788433
+0.08158995815899572 0.9966096167048312 0.08158995815899572 0.9966096167048312 0.08806280149286577
+0.08368200836820075 1 0.08368200836820076 1 0.08839994047910454
+0.40305997076211375 0.47545146172665775 0.4030599707621138 0.4754514617266577 0.27951884105080504
+0.400200874473374 0.47267897892858723 0.400200874473374 0.47267897892858723 0.2611680473414933
+0.5063072994340814 0.3967696898791193 0.5063072994340815 0.3967696898791193 0.5442470303224245
+0.5082579309782754 0.40034155040360087 0.5082579309782754 0.4003415504036008 0.5796577146185203
+0.9966096167048311 0.08158995815895687 0.996609616704831 0.08158995815895687 0.3541040477051621
+1 0.08368200836816198 1 0.08368200836816198 0.35303158882123836
+0.08577405857740572 0.9966096167048312 0.08577405857740572 0.9966096167048312 0.08918799074484791
+0.08786610878661079 1 0.08786610878661079 1 0.08951983300268
+0.40212831282160716 0.4794784783981594 0.40212831282160716 0.4794784783981594 0.34120904793315
+0.39915394108985186 0.47682874887455 0.39915394108985186 0.47682874887455 0.31244482558433034
+0.5105732573212949 0.39712615901340176 0.5105732573212949 0.3971261590134017 0.5249818089117618
+0.5123692577490285 0.40076794135594035 0.5123692577490285 0.40076794135594035 0.5583642584975856
+0.9966096167048311 0.08577405857736708 0.996609616704831 0.08577405857736708 0.35309953313543524
+1 0.0878661087865722 1 0.0878661087865722 0.3515186185664396
+0.0899581589958158 0.9966096167048311 0.08995815899581582 0.996609616704831 0.09030362432945117
+0.09205020920502083 1 0.09205020920502083 1 0.09064739408253837
+0.4013638679161261 0.4835405514207624 0.40136386791612616 0.4835405514207624 0.4021599718172464
+0.3982785912858577 0.4810156270428388 0.3982785912858577 0.4810156270428388 0.3683207314073283
+0.5148175583468131 0.3976555368668186 0.5148175583468131 0.3976555368668186 0.5039968347404645
+0.5164594485792375 0.40136386791612605 0.5164594485792375 0.40136386791612605 0.5355249093485597
+0.9966096167048311 0.0899581589957773 0.996609616704831 0.0899581589957773 0.35105795986433447
+1 0.09205020920498241 1 0.09205020920498241 0.3490024813498492
+0.09414225941422584 0.9966096167048311 0.09414225941422584 0.996609616704831 0.09144403169592848
+0.09623430962343087 1 0.09623430962343087 1 0.091817583631386
+0.4007679413559404 0.4876307422509712 0.4007679413559404 0.4876307422509712 0.45494255593282146
+0.3975809200991734 0.4852328362213321 0.3975809200991734 0.4852328362213321 0.4197009099503148
+0.5190364119415725 0.3983580364664996 0.5190364119415724 0.3983580364664996 0.4862026257561361
+0.5205215216018405 0.40212831282160716 0.5205215216018405 0.40212831282160716 0.5166277139968705
+0.9966096167048311 0.09414225941418752 0.996609616704831 0.09414225941418752 0.3480465382261663
+1 0.09623430962339263 1 0.09623430962339263 0.34555842526837416
+0.09832635983263593 0.9966096167048312 0.09832635983263593 0.9966096167048312 0.09264471364017283
+0.1004184100418409 1 0.10041841004184089 1 0.09306569745494409
+0.40034155040360087 0.4917420690217245 0.4003415504036008 0.4917420690217245 0.49493530687276016
+0.39706099821128643 0.4894754901568689 0.39706099821128643 0.4894754901568689 0.46147183425403776
+0.5232235335955299 0.3992318417413718 0.5232235335955299 0.3992318417413718 0.4776667602559627
+0.5245485382733422 0.40305997076211375 0.5245485382733422 0.4030599707621138 0.5082493836572262
+0.9966096167048311 0.09832635983259774 0.996609616704831 0.09832635983259774 0.3441488393461361
+1 0.10041841004180285 1 0.10041841004180285 0.34127747268186887
+0.10251046025104593 0.9966096167048312 0.10251046025104593 0.9966096167048312 0.09394066441577874
+0.10460251046025094 1 0.10460251046025094 1 0.09442565477530791
+0.40008542397903496 0.4958675069811561 0.40008542397903496 0.49586750698115606 0.5199024846076982
+0.39671520535478394 0.4937373153613815 0.39671520535478394 0.4937373153613815 0.4905849556101574
+0.5273739079933238 0.400283558819527 0.5273739079933238 0.400283558819527 0.4844258964670302
+0.5285336081116635 0.40415724749293763 0.5285336081116635 0.40415724749293763 0.5165581119810851
+0.9966096167048311 0.10251046025100796 0.996609616704831 0.10251046025100796 0.33946368631889184
+1 0.10460251046021307 1 0.10460251046021307 0.3362652709493738
+0.10669456066945596 0.9966096167048311 0.10669456066945594 0.996609616704831 0.09536463443018421
+0.10878661087866098 1 0.10878661087866098 1 0.09592827884200099
+0.4 0.5 0.4000000000000001 0.5 0.5282969680179889
+0.3965454889403756 0.49800988884259095 0.3965454889403756 0.49800988884259095 0.5052783318991522
+0.531480221112003 0.4015104446078894 0.531480221112003 0.40151044460788937 0.5102881658881989
+0.5324699275875798 0.40541826919294977 0.5324699275875798 0.40541826919294977 0.5450590268239289
+0.9966096167048311 0.10669456066941818 0.996609616704831 0.10669456066941818 0.33410394391589904
+1 0.10878661087862329 1 0.10878661087862329 0.330640810016582
+0.11087866108786602 0.9966096167048311 0.11087866108786602 0.996609616704831 0.09694544227787218
+0.11297071129707102 1 0.11297071129707102 1 0.09759968912057009
+0.40008542254785184 0.5041324584158452 0.40008542254785184 0.5041324584158452 0.5199005275398247
+0.3965541289122319 0.502287507443273 0.3965541289122319 0.502287507443273 0.5047619912850682
+0.5355331245860178 0.4029093152958135 0.5355331245860179 0.4029093152958135 0.5554084906173039
+0.5363507781738823 0.40684088382689976 0.5363507781738823 0.40684088382689976 0.5935496454233198
+0.9966096167048311 0.1108786610878284 0.996609616704831 0.1108786610878284 0.32819513919885696
+1 0.11297071129703351 1 0.11297071129703351 0.3245349321438137
+0.11506276150627603 0.9966096167048311 0.11506276150627603 0.996609616704831 0.09870646166632037
+0.11715481171548106 1 0.11715481171548107 1 0.09945993168399044
+0.4003415456927106 0.5082578741260625 0.4003415456927106 0.5082578741260625 0.49499808790914684
+0.3967402313603868 0.5065637117260142 0.3967402313603868 0.5065637117260141 0.4890350047325361
+0.5395241386569978 0.404479013971464 0.5395241386569979 0.4044790139714641 0.6165881384141764
+0.540169525838608 0.40842266004135414 0.540169525838608 0.40842266004135414 0.6581324906497847
+0.9966096167048311 0.11506276150623862 0.996609616704831 0.11506276150623862 0.3218738301972752
+1 0.11715481171544373 1 0.11715481171544373 0.31808854343042303
+0.11924686192468606 0.9966096167048311 0.11924686192468605 0.996609616704831 0.10066440738420668
+0.1213389121338911 1 0.1213389121338911 1 0.10152196234164429
+0.39710352163900026 0.5108260476669 0.39710352163900026 0.5108260476669 0.4589433669469111
+0.4007679399279629 0.5123692462931096 0.4007679399279629 0.5123692462931096 0.4548901308805402
+0.543437817499676 0.4061859914193103 0.543437817499676 0.4061859914193103 0.6884385212896235
+0.5439196378602591 0.41016089153256424 0.5439196378602591 0.41016089153256424 0.7333151264534291
+0.9966096167048311 0.11924686192464884 0.996609616704831 0.11924686192464884 0.31528562429765455
+1 0.12133891213385395 1 0.12133891213385395 0.3114504227046272
+0.12343096234309611 0.9966096167048311 0.12343096234309613 0.996609616704831 0.10282852181007436
+0.12552301255230114 1 0.12552301255230114 1 0.10379106444674842
+0.4013638798955128 0.5164595203676526 0.4013638798955128 0.5164595203676526 0.40226805999582793
+0.39763505401055316 0.5150694895991248 0.39763505401055316 0.5150694895991248 0.4163214019528299
+0.5472755542435934 0.40804447477725964 0.5472755542435933 0.40804447477725964 0.7658278931988024
+0.5475947137173662 0.4120526110327205 0.5475947137173662 0.4120526110327205 0.8134940164211854
+0.9966096167048311 0.12343096234305906 0.996609616704831 0.12343096234305906 0.3085827364529314
+1 0.12552301255226417 1 0.12552301255226417 0.30477451631905383
+0.1276150627615062 0.9966096167048311 0.12761506276150622 0.996609616704831 0.10520022218814552
+0.1297071129707112 1 0.1297071129707112 1 0.10626473577996125
+0.4021283396176323 0.5205216493976106 0.4021283396176323 0.5205216493976106 0.3411092018937832
+0.39833930673047474 0.5192842014826414 0.39833930673047474 0.5192842014826414 0.36439076000343534
+0.5510272681817832 0.4100446094442762 0.551027268181783 0.4100446094442762 0.843686239449475
+0.5511884813013547 0.4140945904959364 0.5511884813013547 0.4140945904959364 0.8933161029216422
+0.9966096167048311 0.12761506276146928 0.996609616704831 0.12761506276146928 0.30192097668696866
+1 0.1297071129706744 1 0.1297071129706744 0.2982166157125215
+0.13179916317991625 0.9966096167048311 0.13179916317991625 0.996609616704831 0.10777321713600542
+0.13389121338912124 1 0.13389121338912124 1 0.10893302642604186
+0.4030600002645742 0.5245486547756826 0.4030600002645743 0.5245486547756826 0.27944152571484776
+0.39921762682505574 0.5234669011570475 0.39921762682505574 0.5234669011570475 0.30849278581833595
+0.554692221808491 0.41219163707043754 0.554692221808491 0.41219163707043754 0.9178610778502642
+0.5546947945245726 0.41628333826582203 0.5546947945245726 0.41628333826582203 0.9682585703512142
+0.9966096167048311 0.1317991631798795 0.996609616704831 0.1317991631798795 0.2954560762913785
+1 0.1338912133890846 1 0.1338912133890846 0.2919303488463088
+0.13598326359832624 0.9966096167048311 0.13598326359832624 0.996609616704831 0.11053404975721688
+0.1380753138075313 1 0.1380753138075313 1 0.11177926331882515
+0.40415727016712166 0.5285336842728359 0.40415727016712166 0.5285336842728359 0.23182361250185832
+0.4002720039629608 0.52761097274865 0.4002720039629608 0.5276109727486499 0.25813865327799906
+0.5582666935871395 0.4144975808997655 0.5582666935871395 0.4144975808997655 0.9849237116276827
+0.558107656232453 0.41861511020360676 0.558107656232453 0.4186151102036068 1.0344790088352744
+0.9966096167048311 0.13598326359828972 0.996609616704831 0.13598326359828972 0.2893393137092853
+1 0.13807531380749483 1 0.13807531380749483 0.28606248743693546
+0.14016736401673635 0.9966096167048311 0.14016736401673635 0.996609616704831 0.11346298474623538
+0.14225941422594135 1 0.14225941422594135 1 0.1147810657737558
+0.4054182941802749 0.5324700003731287 0.4054182941802749 0.5324700003731287 0.22111442856359842
+0.4014996774528603 0.5317081923992365 0.4014996774528603 0.5317081923992365 0.22927299438825408
+0.5617431495460563 0.4169629464980029 0.5617431495460563 0.4169629464980029 1.0418026717685083
+0.5614212421032101 0.4210859263597498 0.5614212421032101 0.4210859263597498 1.0886725237546877
+0.9966096167048311 0.14016736401669994 0.996609616704831 0.14016736401669994 0.28371249352922806
+1 0.14225941422590505 1 0.14225941422590505 0.28074768529562544
+0.1443514644351464 0.9966096167048311 0.14435146443514643 0.996609616704831 0.11653513443523093
+0.1464435146443514 1 0.1464435146443514 1 0.11791154357663729
+0.4068409118007979 0.5363508498648006 0.4068409118007979 0.5363508498648006 0.25893978185316785
+0.4028954228967781 0.5357508732650739 0.4028954228967781 0.5357508732650739 0.23857496830592648
+0.565114799769166 0.41958098148335593 0.565114799769166 0.41958098148335593 1.085860955995898
+0.5646298972377517 0.4236915706947283 0.5646298972377517 0.42369157069472835 1.1282129063622879
+0.9966096167048311 0.14435146443511016 0.996609616704831 0.14435146443511016 0.2787024664872044
+1 0.14644351464431526 1 0.14644351464431526 0.2761029135380126
+0.1485355648535564 0.9966096167048311 0.14853556485355643 0.996609616704831 0.11972171491879609
+0.15062761506276146 1 0.15062761506276146 1 0.12114057361771076
+0.40842269095394057 0.5401695963121677 0.40842269095394057 0.5401695963121677 0.3306906105521259
+0.4044561981315824 0.5397326646346413 0.4044561981315824 0.5397326646346413 0.2858788098339064
+0.5683766528972135 0.4223413461688233 0.5683766528972135 0.4223413461688233 1.114962595159217
+0.5677281331668644 0.42642758684308724 0.5677281331668644 0.4264275868430872 1.151088318030395
+0.9966096167048311 0.14853556485352037 0.996609616704831 0.14853556485352037 0.27441554083913267
+1 0.15062761506272548 1 0.15062761506272548 0.27222202221063857
+0.1527196652719665 0.9966096167048311 0.15271966527196648 0.996609616704831 0.12299133470446498
+0.1548117154811715 1 0.1548117154811715 1 0.12443606766492454
+0.4101609253310408 0.5439197069961216 0.4101609253310408 0.5439197069961216 0.41746868181964863
+0.4061807272991203 0.543648333616901 0.4061807272991203 0.543648333616901 0.3561693611662822
+0.5715246111992657 0.4252349136064884 0.5715246111992657 0.4252349136064884 1.1275437848547354
+0.5707106509108634 0.42928929467356436 0.5707106509108634 0.4292892946735643 1.1559309757666825
+0.9966096167048311 0.1527196652719306 0.996609616704831 0.1527196652719306 0.2709322916343428
+1 0.1548117154811357 1 0.1548117154811357 0.2691709913914479
+0.15690376569037656 0.9966096167048311 0.15690376569037656 0.996609616704831 0.1263112388392278
+0.15899581589958156 1 0.15899581589958156 1 0.12776516645041472
+0.4120526476593644 0.5475947813974609 0.4120526476593644 0.5475947813974609 0.5077368624271665
+0.40806728029761025 0.5474907873216837 0.40806728029761025 0.5474907873216837 0.4358526859570266
+0.5745537922788997 0.42825491755035555 0.5745537922788997 0.42825491755035555 1.1226642399098778
+0.5735723610365492 0.4322718102153346 0.5735723610365492 0.4322718102153346 1.1420455141394306
+0.9966096167048311 0.1569037656903408 0.996609616704831 0.1569037656903408 0.26830337289565737
+1 0.15899581589954592 1 0.15899581589954592 0.2669844835576763
+0.16108786610878661 0.9966096167048311 0.16108786610878664 0.996609616704831 0.1296484550673995
+0.1631799163179916 1 0.1631799163179916 1 0.13109531833773067
+0.41409462988824847 0.5511885474101675 0.41409462988824847 0.5511885474101675 0.5948935540927469
+0.41011096912998185 0.5512505751757547 0.41011096912998185 0.5512505751757547 0.5164226743661439
+0.5774563352434191 0.4313965901552621 0.5774563352434191 0.43139659015526205 1.100079853556811
+0.5763083795690653 0.43537004403882495 0.5763083795690653 0.435370044038825 1.1094787813598934
+0.9966096167048311 0.16108786610875103 0.996609616704831 0.16108786610875103 0.2665469254313682
+1 0.16317991631795614 1 0.16317991631795614 0.26566422861243005
+0.16527196652719667 0.9966096167048311 0.16527196652719667 0.996609616704831 0.13297081060182628
+0.16736401673640167 1 0.16736401673640167 1 0.13439522077611404
+0.4162833803563543 0.5546948589489098 0.4162833803563543 0.5546948589489098 0.6745515796193485
+0.4123071921487862 0.5549221845914042 0.41230719214878614 0.5549221845914042 0.5925902415796677
+0.5802260570949911 0.43465501082844843 0.5802260570949911 0.43465501082844843 1.0602244069443216
+0.5789140263733681 0.43857869716830034 0.5789140263733681 0.43857869716830034 1.0590132809014277
+0.9966096167048311 0.16527196652716125 0.996609616704831 0.16527196652716125 0.26564802039777025
+1 0.16736401673636636 1 0.16736401673636636 0.2651795548680538
+0.16945606694560666 0.9966096167048311 0.16945606694560666 0.996609616704831 0.13624780583718743
+0.17154811715481172 1 0.17154811715481175 1 0.1376356178010868
+0.4186151549205122 0.558107718862366 0.4186151549205122 0.558107718862366 0.7436090349386296
+0.4146535154819318 0.5585014198689692 0.4146535154819318 0.5585014198689692 0.6608040941492598
+0.5828575323721724 0.43802494448878665 0.5828575323721724 0.43802494448878665 1.0042429444040126
+0.581384845079488 0.44189228113763424 0.581384845079488 0.44189228113763424 0.9923335981247977
+0.9966096167048311 0.16945606694557147 0.996609616704831 0.16945606694557147 0.265560302304003
+1 0.17154811715477658 1 0.17154811715477658 0.265470065595662
+0.17364016736401677 0.9966096167048311 0.17364016736401677 0.996609616704831 0.13945134389020883
+0.17573221757322177 1 0.17573221757322177 1 0.14078995679347023
+0.42108597362663186 0.5614213028316996 0.42108597362663186 0.5614213028316996 0.7999024113335432
+0.417145583871559 0.5619805978196555 0.4171455838715589 0.5619805978196554 0.7185094566499391
+0.5853461693446623 0.44150069638359213 0.5853461693446623 0.44150069638359213 0.934024740582602
+0.5837166196436456 0.4453051410510901 0.5837166196436456 0.44530514105109004 0.9118623130457882
+0.9966096167048311 0.1736401673639817 0.996609616704831 0.1736401673639817 0.26620966109752503
+1 0.1757322175731868 1 0.1757322175731868 0.26645013456905464
+0.17782426778242683 0.9966096167048311 0.17782426778242685 0.996609616704831 0.14255632253674208
+0.17991631799163182 1 0.1799163179916318 1 0.1438349132592038
+0.42369162043093456 0.564629955961175 0.4236916204309346 0.564629955961175 0.8419179557848442
+0.4197765057520799 0.565352276311846 0.4197765057520799 0.565352276311846 0.7638881406826569
+0.587687630250734 0.4450767031610376 0.587687630250734 0.4450767031610376 0.8523188335368533
+0.5859053701117515 0.4488114525898323 0.5859053701117515 0.4488114525898323 0.821437913964762
+0.9966096167048311 0.1778242677823919 0.996609616704831 0.1778242677823919 0.2674994641228899
+1 0.17991631799159702 1 0.17991631799159702 0.26801464623697535
+0.18200836820083688 0.9966096167048311 0.18200836820083688 0.996609616704831 0.14554109888183306
+0.18410041841004188 1 0.18410041841004188 1 0.14675079461408638
+0.42642763896345065 0.5677281897846652 0.42642763896345065 0.5677281897846652 0.86872688835495
+0.42254256669132434 0.5686107855853776 0.42254256669132434 0.5686107855853776 0.7958346811537672
+0.5898792979100475 0.44874800737924114 0.5898792979100475 0.4487480073792412 0.7628806040739632
+0.5879473523406357 0.45240521860253924 0.5879473523406357 0.4524052186025392 0.7260684609896219
+0.9966096167048311 0.18200836820080213 0.996609616704831 0.18200836820080213 0.269316695249815
+1 0.18410041841000724 1 0.18410041841000724 0.2700452967356904
+0.18619246861924693 0.9966096167048311 0.1861924686192469 0.996609616704831 0.14838783807242614
+0.18828451882845193 1 0.18828451882845196 1 0.1495218339412838
+0.42928934908913663 0.5707107053264355 0.4292893490891367 0.5707107053264355 0.8799511106700648
+0.4254426567171821 0.5717512095621058 0.4254426567171821 0.5717512095621058 0.8138535133005377
+0.5919199362222483 0.4525095389227351 0.5919199362222481 0.4525095389227351 0.6707772245317224
+0.5898390746689591 0.45608029300387837 0.5898390746689591 0.45608029300387837 0.6327515865764739
+0.9966096167048311 0.18619246861921235 0.996609616704831 0.18619246861921235 0.27153831514045373
+1 0.18828451882841746 1 0.18828451882841746 0.2724168086244748
+0.19037656903765698 0.9966096167048311 0.19037656903765698 0.996609616704831 0.15108275657243253
+0.19246861924686198 1 0.19246861924686198 1 0.1521363833565932
+0.43227186683313557 0.5735724131569128 0.43227186683313557 0.5735724131569128 0.8759674494764406
+0.4284715704939273 0.5747699542286656 0.4284715704939273 0.5747699542286656 0.817932229118863
+0.5938067636796215 0.456354007474102 0.5938067636796215 0.456354007474102 0.5829754352381323
+0.5915773090460595 0.4598304036878325 0.5915773090460595 0.4598304036878325 0.5510072782966615
+0.9966096167048311 0.19037656903762257 0.996609616704831 0.19037656903762257 0.2740372553088664
+1 0.19246861924682768 1 0.19246861924682768 0.27500255640657395
+0.19456066945606704 0.9966096167048311 0.19456066945606706 0.996609616704831 0.15361626878298515
+0.19665271966527204 1 0.196652719665272 1 0.1545870146617489
+0.4353701027622483 0.5763084293052716 0.4353701027622483 0.5763084293052716 0.8576176475738202
+0.431621570154213 0.5776642619877224 0.431621570154213 0.5776642619877225 0.8085749108102975
+0.5955343625767867 0.46027186089527244 0.5955343625767867 0.46027186089527244 0.5088093128159761
+0.5931590881992022 0.4636491501351993 0.5931590881992022 0.4636491501351993 0.49306988971394206
+0.9966096167048311 0.1945606694560328 0.996609616704831 0.1945606694560328 0.2766876358441402
+1 0.1966527196652379 1 0.1966527196652379 0.2776792916321513
+0.1987447698744771 0.9966096167048311 0.1987447698744771 0.996609616704831 0.15598304369596327
+0.2008368200836821 1 0.2008368200836821 1 0.15687053287359531
+0.43857875789678996 0.5789140736402503 0.43857875789678996 0.5789140736402503 0.8263242269762663
+0.4348885498334434 0.5804260508550937 0.43488854983344344 0.5804260508550937 0.7869506942712579
+0.5970982363729985 0.4642565432633714 0.5970982363729985 0.4642565432633714 0.4591683968924503
+0.594581705819725 0.4675299996268712 0.594581705819725 0.4675299996268712 0.46976525360662363
+0.9966096167048311 0.198744769874443 0.996609616704831 0.198744769874443 0.27936899181862845
+1 0.20083682008364812 1 0.20083682008364812 0.28033084094073424
+0.2029288702928871 0.9966096167048311 0.2029288702928871 0.996609616704831 0.1581819762147529
+0.20502092050209214 1 0.20502092050209217 1 0.15898790630778153
+0.4418923437675471 0.5813848897963934 0.4418923437675471 0.5813848897963934 0.7841358875507957
+0.4382681805414203 0.5830468257200877 0.4382681805414203 0.5830468257200877 0.754803959448591
+0.5984969891987392 0.468299783858452 0.5984969891987392 0.468299783858452 0.44261383861244635
+0.5958427298328783 0.47146631572716413 0.5958427298328783 0.47146631572716413 0.48406314325757
+0.9966096167048311 0.20292887029285323 0.996609616704831 0.20292887029285325 0.28196946088221714
+1 0.20502092050205833 1 0.20502092050205833 0.28285079378049216
+0.2071129707112971 0.9966096167048311 0.2071129707112971 0.996609616704831 0.160216076023756
+0.2092050209205022 1 0.2092050209205022 1 0.1609441153806108
+0.4453052054754274 0.583716661734178 0.4453052054754274 0.583716661734178 0.7337524239585177
+0.4417530178999948 0.5855236143554586 0.4417530178999948 0.5855236143554586 0.7143601291112153
+0.5997268519004788 0.47239581870522923 0.5997268519004787 0.47239581870522923 0.45919626295309296
+0.5969399997354258 0.47545134522431753 0.5969399997354258 0.4754513452243175 0.5274127986832698
+0.9966096167048311 0.20711297071126344 0.996609616704831 0.20711297071126342 0.2843880021665555
+1 0.20920502092046855 1 0.20920502092046855 0.2851442874555683
+0.2112970711297072 0.9966096167048311 0.21129707112970716 0.996609616704831 0.16209227561123374
+0.21338912133891225 1 0.21338912133891222 1 0.1627479213167657
+0.4488115186986454 0.5859054095040636 0.4488115186986454 0.5859054095040636 0.6786035190158343
+0.4453360482911204 0.5878556650018542 0.44533604829112045 0.5878556650018542 0.6684162315937154
+0.600783507989962 0.47653752028418866 0.600783507989962 0.47653752028418866 0.49950298366674145
+0.5978716603823676 0.4794783506023892 0.5978716603823676 0.4794783506023892 0.5861556772740723
+0.9966096167048311 0.21129707112967366 0.996609616704831 0.2112970711296737 0.28653578243824973
+1 0.21338912133887877 1 0.21338912133887877 0.2871290405582543
+0.21548117154811727 0.9966096167048311 0.21548117154811727 0.996609616704831 0.16382115837340142
+0.2175732217573223 1 0.2175732217573223 1 0.1644115556230929
+0.4524052862826339 0.5879473889672795 0.45240528628263393 0.5879473889672795 0.6225248495423492
+0.4490126454557686 0.5900391786921837 0.4490126454557686 0.5900391786921837 0.620353014908265
+0.6016652588282668 0.48071622364233546 0.6016652588282668 0.48071622364233546 0.5507531893650953
+0.5986361201044872 0.4835404796323473 0.5986361201044872 0.4835404796323473 0.6473596915523545
+0.9966096167048311 0.21548117154808388 0.996609616704831 0.21548117154808386 0.28833688940600927
+1 0.217573221757289 1 0.217573221757289 0.2887357943631401
+0.21966527196652735 0.9966096167048311 0.21966527196652733 0.996609616704831 0.16541660774965616
+0.22175732217573235 1 0.22175732217573238 1 0.16595033159768513
+0.456080362139741 0.5898391084674358 0.45608036213974107 0.5898391084674358 0.5703150467669709
+0.4527781802428299 0.5920678061193497 0.4527781802428299 0.5920678061193497 0.5740989433247009
+0.602370634371873 0.48492789517749174 0.602370634371873 0.48492789517749174 0.602267044830267
+0.5992320600720371 0.48763075370689046 0.5992320600720371 0.48763075370689046 0.7024376353559355
+0.9966096167048311 0.2196652719664941 0.996609616704831 0.21966527196649413 0.28972852810181765
+1 0.2217573221756992 1 0.2217573221756992 0.2899083090438899
+0.2238493723849374 0.9966096167048311 0.22384937238493743 0.996609616704831 0.16689537913851085
+0.2259414225941424 1 0.2259414225941424 1 0.16738218035597038
+0.4598304741613918 0.5915773399586457 0.45983047416139183 0.5915773399586457 0.52703925605944
+0.4566247143108395 0.5939376980091183 0.4566247143108395 0.5939376980091183 0.5338876218824833
+0.60290027230189 0.4891685092726816 0.60290027230189 0.4891685092726816 0.6465945365575844
+0.5996584543072895 0.4917421258739375 0.5996584543072895 0.49174212587393756 0.7452618534541537
+0.9966096167048311 0.22384937238490432 0.996609616704831 0.2238493723849043 0.29066083704324946
+1 0.22594142259410943 1 0.22594142259410943 0.29060303873886223
+0.22803347280334746 0.9966096167048311 0.2280334728033475 0.996609616704831 0.16827659797388253
+0.23012552301255246 1 0.23012552301255243 1 0.16872711590324607
+0.46054342288110367 0.5956486716732557 0.46054342288110367 0.5956486716732557 0.5036692542199881
+0.46364922182611756 0.5931591161731001 0.4636492218261175 0.5931591161731001 0.4972517007023618
+0.603258212385953 0.4934300878456464 0.603258212385953 0.4934300878456464 0.6787323271214537
+0.599914577452148 0.4958675415841548 0.599914577452148 0.49586754158415475 0.7722188389778246
+0.9966096167048311 0.22803347280331454 0.996609616704831 0.22803347280331457 0.2910964358204396
+1 0.23012552301251965 1 0.23012552301251965 0.29078858407150077
+0.2322175732217575 0.9966096167048311 0.2322175732217575 0.996609616704831 0.16958118980865852
+0.2343096234309625 1 0.2343096234309625 1 0.17000663663914498
+0.4675300724124203 0.5945817308070502 0.4675300724124203 0.5945817308070502 0.48384233991298214
+0.4645284188388325 0.5971985590518546 0.4645284188388325 0.5971985590518546 0.4862323363044572
+0.6034450933656827 0.4977026904292523 0.6034450933656829 0.4977026904292523 0.6958251152148822
+0.6 0.5 0.6 0.5 0.782202490286859
+0.9966096167048311 0.23221757322172476 0.996609616704831 0.23221757322172473 0.2910097906659032
+1 0.23430962343092987 1 0.23430962343092987 0.29044499702683746
+0.2364016736401675 0.9966096167048311 0.2364016736401675 0.996609616704831 0.1708312514905483
+0.23849372384937256 1 0.2384937238493726 1 0.17124307422917387
+0.47146639188833683 0.5958427525070624 0.47146639188833683 0.5958427525070624 0.486607120404339
+0.4685748800256609 0.5985820466846147 0.4685748800256609 0.5985820466846147 0.4822349455931163
+0.6034555458237839 0.5019780276184729 0.6034555458237839 0.501978027618473 0.696429907698131
+0.5999145760209651 0.5041324930188439 0.5999145760209651 0.5041324930188439 0.7724632710243124
+0.9966096167048311 0.23640167364013498 0.996609616704831 0.236401673640135 0.2903864624580859
+1 0.2384937238493401 1 0.2384937238493401 0.28956299304631544
+0.24058577405857753 0.9966096167048311 0.24058577405857753 0.996609616704831 0.17204937635523557
+0.24267782426778262 1 0.24267782426778262 1 0.1724589047927527
+0.4754514617266577 0.5969400292378861 0.4754514617266577 0.5969400292378861 0.5022092753568873
+0.47267580618622 0.5997961653119989 0.47267580618622 0.5997961653119989 0.4898223650884459
+0.6032856420048751 0.5062506200014535 0.6032856420048751 0.5062506200014535 0.6804760471581695
+0.5996584495963991 0.5082579309782753 0.5996584495963991 0.5082579309782753 0.7453761751986253
+0.9966096167048311 0.2405857740585452 0.996609616704831 0.24058577405854517 0.28922228358417607
+1 0.2426778242677503 1 0.2426778242677503 0.28814310931329123
+0.24476987447698761 0.9966096167048311 0.2447698744769876 0.996609616704831 0.17325795051035286
+0.24686192468619267 1 0.24686192468619264 1 0.1736760414787574
+0.47947847839815944 0.5978716871783928 0.47947847839815944 0.5978716871783928 0.5255360267055315
+0.47682314502360473 0.6008404687081422 0.47682314502360473 0.6008404687081422 0.5052754752200695
+0.6029365625908764 0.5105150167805707 0.6029365625908764 0.5105150167805707 0.649392963384225
+0.5992320586440597 0.5123692577490286 0.5992320586440597 0.5123692577490286 0.7023566163288524
+0.9966096167048311 0.24476987447695542 0.996609616704831 0.24476987447695545 0.28752249615477127
+1 0.24686192468616053 1 0.24686192468616053 0.28619483616327884
+0.24895397489539772 0.9966096167048311 0.24895397489539772 0.996609616704831 0.17447844131875476
+0.2510460251046027 1 0.2510460251046027 1 0.17491513125193092
+0.4835405514207623 0.5986361320838739 0.4835405514207623 0.5986361320838739 0.5512323228462055
+0.4810090779722957 0.6017130756654748 0.4810090779722957 0.6017130756654748 0.5241707999768325
+0.6024101465974047 0.5147639616408676 0.6024101465974047 0.5147639616408676 0.6058574194858077
+0.598636132083874 0.5164594485792376 0.598636132083874 0.5164594485792376 0.6472985811320814
+0.9966096167048311 0.24895397489536564 0.996609616704831 0.2489539748953656 0.28530087370647056
+1 0.25104602510457075 1 0.25104602510457075 0.28373573973805405
+0.2531380753138078 0.9966096167048311 0.2531380753138078 0.996609616704831 0.17573070258442855
+0.2552301255230128 1 0.2552301255230128 1 0.17619488154195376
+0.4876307422509713 0.5992320586440597 0.4876307422509713 0.5992320586440597 0.5746995655669713
+0.4852276479627413 0.6024124325948684 0.4852276479627413 0.6024124325948684 0.5423771440101998
+0.6017091926841877 0.5189871414240375 0.6017091926841877 0.5189871414240375 0.554582575124064
+0.5978716871783928 0.5205215216018405 0.5978716871783928 0.5205215216018405 0.5859402691410153
+0.9966096167048311 0.25313807531377586 0.996609616704831 0.2531380753137759 0.2825788410550159
+1 0.25523012552298097 1 0.25523012552298097 0.28079058771341214
+0.25732217573221783 0.9966096167048311 0.2573221757322179 0.996609616704831 0.177032323126595
+0.2594142259414228 1 0.2594142259414228 1 0.17753144375336483
+0.4917420690217245 0.5996584495963992 0.4917420690217245 0.5996584495963992 0.5925168305974968
+0.4894722325183343 0.6029364531322442 0.4894722325183343 0.6029364531322442 0.556583394309513
+0.6008362291359287 0.5231760376424354 0.6008362291359287 0.5231760376424354 0.5029147702628105
+0.5969400292378861 0.5245485382733422 0.5969400292378861 0.5245485382733422 0.5274332188474276
+0.9966096167048311 0.2573221757321861 0.996609616704831 0.257322175732186 0.2793846016888124
+1 0.2594142259413912 1 0.2594142259413912 0.27739048553021967
+0.2615062761506278 0.9966096167048311 0.2615062761506279 0.996609616704831 0.17839804586863764
+0.2635983263598329 1 0.2635983263598329 1 0.17893788003802058
+0.49586750698115606 0.599914576020965 0.49586750698115606 0.599914576020965 0.6025346471304933
+0.4937348585229558 0.603283512524963 0.4937348585229558 0.603283512524963 0.5644881952861179
+0.5997959055525782 0.5273202202567355 0.5997959055525782 0.5273202202567355 0.46141947191226024
+0.5958427525070623 0.5285336081116634 0.5958427525070623 0.5285336081116634 0.4840454728024957
+0.9966096167048311 0.2615062761505963 0.996609616704831 0.26150627615059635 0.27575227843442024
+1 0.2635983263598014 1 0.2635983263598014 0.2735720275243676
+0.26569037656903793 0.9966096167048311 0.26569037656903793 0.996609616704831 0.17983928289192755
+0.26778242677824293 1 0.26778242677824293 1 0.18042373693554437
+0.5 0.6 0.5 0.6 0.603518690472319
+0.4980074326926521 0.603452212552009 0.4980074326926521 0.6034522125520089 0.564803537012507
+0.5985846814663167 0.5314182628382189 0.5985846814663168 0.531418262838219 0.44276113357963937
+0.5945817308070502 0.5324699275875798 0.5945817308070502 0.5324699275875798 0.4696919267972535
+0.9966096167048311 0.2656903765690065 0.996609616704831 0.26569037656900646 0.27172107061899603
+1 0.2677824267782116 1 0.2677824267782116 0.2693764652834157
+0.26987447698744793 0.9966096167048311 0.26987447698744793 0.996609616704831 0.18136374798686664
+0.271966527196653 1 0.271966527196653 1 0.1819947445238216
+0.5022837609478914 0.603442277976853 0.5022837609478915 0.603442277976853 0.5572789165717557
+0.5041324584158452 0.5999145774521479 0.5041324584158452 0.5999145774521479 0.5955204037195198
+0.5972009696359883 0.5354643639157474 0.5972009696359883 0.5354643639157474 0.4568892330819459
+0.5931591161731001 0.5363507781738823 0.5931591161731001 0.5363507781738823 0.49306595891338983
+0.9966096167048311 0.26987447698741673 0.996609616704831 0.2698744769874168 0.26733442925733636
+1 0.27196652719662184 1 0.27196652719662184 0.26484889416965285
+0.27405857740585793 0.9966096167048311 0.27405857740585793 0.996609616704831 0.18297522226874166
+0.27615062761506304 1 0.27615062761506304 1 0.18365265294865485
+0.5065598498450395 0.6032565260565349 0.5065598498450395 0.6032565260565349 0.542723805491065
+0.5082578741260623 0.5996584543072894 0.5082578741260623 0.5996584543072894 0.5797065828025402
+0.5956478681544153 0.5394514642253954 0.5956478681544154 0.5394514642253955 0.504470395812655
+0.5915773399586458 0.5401695258386079 0.5915773399586458 0.5401695258386079 0.5511288859432537
+0.9966096167048311 0.27405857740582695 0.996609616704831 0.2740585774058269 0.2626392506668966
+1 0.27615062761503206 1 0.27615062761503206 0.2600374580512926
+0.27824267782426804 0.9966096167048311 0.278242677824268 0.996609616704831 0.18467346092968806
+0.2803347280334731 1 0.2803347280334731 1 0.1853952102697349
+0.51082469405032 0.6028967384087741 0.5108246940503199 0.6028967384087741 0.5231922603082354
+0.5123692462931094 0.599232060072037 0.5123692462931094 0.599232060072037 0.558402513128846
+0.593934289465929 0.5433726115898705 0.593934289465929 0.5433726115898705 0.5772477077774844
+0.5898391084674358 0.5439196378602591 0.5898391084674358 0.5439196378602591 0.6328093456528845
+0.9966096167048311 0.2782426778242372 0.996609616704831 0.27824267782423723 0.25768508821511404
+1 0.2803347280334423 1 0.2803347280334423 0.25499257176542783
+0.2824267782426781 0.9966096167048311 0.2824267782426781 0.996609616704831 0.1864542409392506
+0.28451882845188314 1 0.28451882845188314 1 0.18721627731275095
+0.5164595203676526 0.5986361201044871 0.5164595203676526 0.5986361201044871 0.5355442207279594
+0.5150683343662456 0.602363662452816 0.5150683343662456 0.602363662452816 0.5021991109026495
+0.592063071314427 0.5472203453104498 0.5920630713144269 0.5472203453104498 0.6643319305661767
+0.5879473889672795 0.5475947137173659 0.5879473889672795 0.5475947137173659 0.7261427715846013
+0.5900343581688041 0.550985014321498 0.5900343581688041 0.550985014321498 0.7563151350487417
+0.5859054095040637 0.5511884813013544 0.5859054095040637 0.5511884813013544 0.8215142267367673
+0.9966096167048311 0.2824267782426474 0.996609616704831 0.28242677824264734 0.2525233815535785
+1 0.2845188284518525 1 0.2845188284518525 0.24976616065184998
+0.2866108786610882 0.9966096167048311 0.2866108786610882 0.996609616704831 0.18830954137946432
+0.2887029288702932 1 0.2887029288702932 1 0.18910606754553708
+0.5205216493976106 0.5978716603823676 0.5205216493976106 0.5978716603823676 0.5166261851306423
+0.5192835554370799 0.6016563918519965 0.5192835554370799 0.6016563918519965 0.48478166974195286
+0.5878511394260596 0.5546604990598106 0.5878511394260596 0.5546604990598106 0.8461218610933905
+0.5837166617341779 0.5546947945245727 0.5837166617341779 0.5546947945245727 0.9119636721279392
+0.5855185637339947 0.5582438171503921 0.5855185637339947 0.558243817150392 0.9285528118569516
+0.5813848897963932 0.558107656232453 0.5813848897963932 0.558107656232453 0.992366250708811
+0.9966096167048311 0.2866108786610576 0.996609616704831 0.28661087866105767 0.2472067026739295
+1 0.2887029288702627 1 0.2887029288702627 0.24441091664911874
+0.29079497907949825 0.9966096167048311 0.2907949790794983 0.996609616704831 0.19022784096894083
+0.29288702928870325 1 0.29288702928870325 1 0.19105149368144944
+0.5245486547756825 0.5969399997354258 0.5245486547756825 0.5969399997354258 0.5082461160421655
+0.5234664940891506 0.600773580974514 0.5234664940891506 0.600773580974514 0.47704576224254674
+0.5830398984533929 0.5617291237750173 0.5830398984533929 0.5617291237750174 0.999724864347009
+0.5789140736402503 0.56142124210321 0.5789140736402503 0.56142124210321 1.059071252454158
+0.5804184746716335 0.565108080790378 0.5804184746716335 0.565108080790378 1.0568043085637386
+0.5763084293052716 0.5646298972377517 0.5763084293052716 0.5646298972377517 1.1095333692390053
+0.9966096167048311 0.29079497907946783 0.996609616704831 0.2907949790794678 0.2417880184545961
+1 0.29288702928867294 1 0.29288702928867294 0.23897957097192588
+0.29497907949790825 0.9966096167048311 0.2949790794979083 0.996609616704831 0.19219451187739375
+0.2970711297071133 1 0.2970711297071133 1 0.19303659830183917
+0.5276118300408824 0.5997139959179145 0.5276118300408824 0.5997139959179146 0.48487719106485855
+0.5285336842728359 0.5958427298328783 0.5285336842728359 0.5958427298328783 0.5165443879743146
+0.5776601086767036 0.5683752218448278 0.5776601086767036 0.5683752218448278 1.097838166854978
+0.5735724131569128 0.5677281331668647 0.5735724131569128 0.5677281331668647 1.1420984723848893
+0.5747726882302997 0.5715277127889263 0.5747726882302997 0.5715277127889263 1.121620622226393
+0.5707107053264355 0.5707106509108634 0.5707107053264355 0.5707106509108634 1.1559764142316555
+0.9966096167048311 0.29497907949787805 0.996609616704831 0.2949790794978781 0.2363199701072
+1 0.29707112970708316 1 0.29707112970708316 0.23352418434941016
+0.29916317991631836 0.9966096167048311 0.29916317991631836 0.996609616704831 0.19419228555970844
+0.30125523012552335 1 0.30125523012552335 1 0.1950430435234601
+0.5317098701125181 0.5984803484583049 0.5317098701125181 0.5984803484583049 0.51185581178843
+0.5324700003731286 0.594581705819725 0.5324700003731286 0.594581705819725 0.5450632111032386
+0.5717571549580542 0.5745594578243929 0.5717571549580542 0.5745594578243929 1.1277288049914678
+0.5677281897846652 0.5735723610365493 0.5677281897846652 0.5735723610365493 1.1511218358198558
+0.5686158798558133 0.5774621349197048 0.5686158798558133 0.5774621349197048 1.1163952162129005
+0.5646299559611752 0.5763083795690654 0.5646299559611752 0.5763083795690654 1.1282336876666852
+0.9966096167048311 0.29916317991628827 0.996609616704831 0.2991631799162882 0.230854171137835
+1 0.3012552301254934 1 0.3012552301254934 0.22809545725374122
+0.30334728033472835 0.9966096167048311 0.30334728033472835 0.996609616704831 0.19620176513354173
+0.3054393305439334 1 0.3054393305439334 1 0.197050634553343
+0.5653566045686543 0.5802309654550198 0.5653566045686543 0.5802309654550198 1.0884466986011911
+0.5614213028316997 0.5789140263733681 0.5614213028316997 0.5789140263733681 1.0886773406358445
+0.5619843355323486 0.5828631587348183 0.5619843355323485 0.5828631587348183 1.0453011316351626
+0.5581077188623658 0.581384845079488 0.5581077188623658 0.581384845079488 1.0344662161917701
+0.5357514232210144 0.59708070254622 0.5357514232210144 0.59708070254622 0.5578415861375108
+0.5363508498648007 0.5931590881992022 0.5363508498648007 0.5931590881992022 0.5935500875185942
+0.5585035033179472 0.5853534483292426 0.5585035033179472 0.5853534483292426 0.988962838979926
+0.5546948589489099 0.5837166196436457 0.5546948589489099 0.5837166196436457 0.9682688886643396
+0.5549260253131542 0.5876964917075769 0.5549260253131542 0.587696491707577 0.9220577227823522
+0.5511885474101677 0.5859053701117515 0.5511885474101677 0.5859053701117515 0.8932703377898458
+0.5397322752210806 0.5955223187391093 0.5397322752210806 0.5955223187391093 0.6194589210177974
+0.5401695963121673 0.5915773090460594 0.5401695963121673 0.5915773090460594 0.6581298000540114
+0.5436475526660214 0.5938046776568441 0.5436475526660214 0.5938046776568441 0.6917376647312525
+0.5439197069961216 0.5898390746689591 0.5439197069961216 0.5898390746689591 0.7333179570963183
+0.551253598587986 0.5898889386207061 0.551253598587986 0.5898889386207061 0.8476596166278448
+0.5475947813974605 0.5879473523406357 0.5475947813974605 0.5879473523406357 0.8134559739068047
+0.5474904653695939 0.5919258197157174 0.5474904653695939 0.5919258197157174 0.7694381334590491
+0.9966096167048311 0.3033472803346985 0.996609616704831 0.30334728033469854 0.2254405271587774
+1 0.3054393305439036 1 0.3054393305439036 0.2227420645152526
+0.3075313807531384 0.9966096167048311 0.3075313807531384 0.996609616704831 0.19820195958865447
+0.30962343096234346 1 0.30962343096234346 1 0.19903785356394607
+0.9966096167048311 0.3075313807531087 0.996609616704831 0.30753138075310865 0.2201265831242953
+1 0.3096234309623138 1 0.3096234309623138 0.2175100211732017
+0.31171548117154846 0.9966096167048311 0.3117154811715484 0.996609616704831 0.20017081744712936
+0.3138075313807535 1 0.3138075313807535 1 0.20098238322242187
+0.9966096167048311 0.3117154811715189 0.996609616704831 0.311715481171519 0.21495690624612404
+1 0.31380753138072404 1 0.31380753138072404 0.2124420892241036
+0.31589958158995846 0.9966096167048311 0.3158995815899584 0.996609616704831 0.20208574088495498
+0.31799163179916357 1 0.31799163179916357 1 0.20286160290330668
+0.9966096167048311 0.31589958158992915 0.996609616704831 0.3158995815899291 0.20997251578408213
+1 0.31799163179913426 1 0.31799163179913426 0.20757723785232496
+0.32008368200836856 0.9966096167048311 0.32008368200836856 0.996609616704831 0.20392406526299098
+0.3221757322175736 1 0.3221757322175736 1 0.20465304461925524
+0.9966096167048311 0.32008368200833937 0.996609616704831 0.3200836820083394 0.20521037378296256
+1 0.3221757322175445 1 0.3221757322175445 0.20295017237074486
+0.3242677824267787 0.9966096167048311 0.32426778242677873 0.996609616704831 0.20566349304998202
+0.32635983263598367 1 0.32635983263598367 1 0.2063347996238779
+0.9966096167048311 0.3242677824267496 0.996609616704831 0.32426778242674953 0.20070295317728967
+1 0.3263598326359547 1 0.3263598326359547 0.19859094894845244
+0.32845188284518867 0.9966096167048311 0.3284518828451887 0.996609616704831 0.20728247490992893
+0.3305439330543937 1 0.3305439330543937 1 0.20788587019394708
+0.9966096167048311 0.3284518828451598 0.996609616704831 0.32845188284515986 0.19647790094518536
+1 0.3305439330543649 1 0.3305439330543649 0.19452469267430084
+0.3326359832635988 0.9966096167048311 0.3326359832635988 0.996609616704831 0.20876053404833325
+0.3347280334728038 1 0.3347280334728038 1 0.20928646412093074
+0.9966096167048311 0.33263598326357 0.996609616704831 0.33263598326356997 0.1925578135712318
+1 0.33472803347277513 1 0.33472803347277513 0.19077143504923985
+0.3368200836820088 0.9966096167048311 0.3368200836820088 0.996609616704831 0.210078532654519
+0.33891213389121383 1 0.33891213389121383 1 0.21051823186911292
+0.9966096167048311 0.33682008368198024 0.996609616704831 0.3368200836819803 0.18896013948499016
+1 0.33891213389118535 1 0.33891213389118535 0.18734608323703697
+0.3410041841004188 0.9966096167048311 0.3410041841004188 0.996609616704831 0.2112188814164814
+0.3430962343096239 1 0.34309623430962394 1 0.2115644481989893
+0.9966096167048311 0.34100418410039046 0.996609616704831 0.3410041841003904 0.18569721813362697
+1 0.34309623430959557 1 0.34309623430959557 0.18425852726828
+0.3451882845188289 0.9966096167048311 0.3451882845188288 0.996609616704831 0.2121656946581201
+0.34728033472803393 1 0.34728033472803393 1 0.2124101413678852
+0.9966096167048311 0.3451882845188007 0.996609616704831 0.34518828451880074 0.18277645806317142
+1 0.3472803347280058 1 0.3472803347280058 0.18151388324608272
+0.349372384937239 0.9966096167048311 0.349372384937239 0.996609616704831 0.2129048947301094
+0.351464435146444 1 0.351464435146444 1 0.21304217388769722
+0.9966096167048311 0.3493723849372109 0.996609616704831 0.34937238493721084 0.18020064741751615
+1 0.351464435146416 1 0.351464435146416 0.1791128612510303
+0.3535564853556491 0.9966096167048311 0.35355648535564915 0.996609616704831 0.21342426996455108
+0.35564853556485404 1 0.35564853556485404 1 0.21344927933286714
+0.9966096167048311 0.3535564853556211 0.996609616704831 0.3535564853556212 0.17796838063511722
+1 0.35564853556482623 1 0.35564853556482623 0.1770522372526432
+0.3577405857740591 0.9966096167048311 0.35774058577405915 0.996609616704831 0.21371349087044592
+0.3598326359832641 1 0.35983263598326404 1 0.21362205993666136
+0.9966096167048311 0.35774058577403134 0.996609616704831 0.3577405857740313 0.17607457612128663
+1 0.35983263598323645 1 0.35983263598323645 0.17532540022789647
+0.3619246861924691 0.9966096167048311 0.36192468619246915 0.996609616704831 0.21376408938427424
+0.36401673640167415 1 0.36401673640167415 1 0.21355294976627348
+0.9966096167048311 0.36192468619244156 0.996609616704831 0.3619246861924416 0.17451105261888897
+1 0.36401673640164667 1 0.36401673640164667 0.17392294007985218
+0.3661087866108792 0.9966096167048311 0.3661087866108792 0.996609616704831 0.2135694059671567
+0.3682008368200842 1 0.3682008368200842 1 0.2132361481892788
+0.9966096167048311 0.3661087866108518 0.996609616704831 0.3661087866108517 0.17326712796610988
+1 0.3682008368200569 1 0.3682008368200569 0.17283323969300626
+0.3702928870292892 0.9966096167048311 0.3702928870292892 0.996609616704831 0.21312450921255535
+0.37238493723849425 1 0.37238493723849425 1 0.21266752818367354
+0.9966096167048311 0.370292887029262 0.996609616704831 0.37029288702926205 0.17233020351826903
+1 0.3723849372384671 1 0.3723849372384671 0.1720430358704291
+0.37447698744769925 0.9966096167048311 0.37447698744769925 0.996609616704831 0.21242609243803237
+0.3765690376569043 1 0.37656903765690436 1 0.21184452383657096
+0.9966096167048311 0.3744769874476722 0.996609616704831 0.37447698744767216 0.1716863007378294
+1 0.3765690376568773 1 0.3765690376568773 0.17153791870414237
+0.3786610878661093 0.9966096167048311 0.37866108786610925 0.996609616704831 0.21147235151116003
+0.38075313807531436 1 0.38075313807531436 1 0.2107660011473043
+0.9966096167048311 0.37866108786608244 0.996609616704831 0.3786610878660825 0.1713205227817081
+1 0.38075313807528754 1 0.38075313807528754 0.1713027463766624
+0.3828451882845193 0.9966096167048311 0.38284518828451924 0.996609616704831 0.21026284792343705
+0.3849372384937244 1 0.3849372384937244 1 0.20943211601533643
+0.9966096167048311 0.38284518828449265 0.996609616704831 0.3828451882844926 0.17121742238653906
+1 0.38493723849369776 1 0.38493723849369776 0.1713219614147363
+0.3870292887029294 0.9966096167048311 0.3870292887029294 0.996609616704831 0.20879836088967987
+0.38912133891213446 1 0.38912133891213446 1 0.20784416306159373
+0.9966096167048311 0.3870292887029029 0.996609616704831 0.38702928870290293 0.17136126682253086
+1 0.389121338912108 1 0.389121338912108 0.17157980386518842
+0.3912133891213395 0.9966096167048311 0.39121338912133957 0.996609616704831 0.2070807320207868
+0.3933054393305445 1 0.39330543933054446 1 0.20600441870845895
+0.9966096167048311 0.3912133891213131 0.996609616704831 0.39121338912131304 0.17173620002494605
+1 0.3933054393305182 1 0.3933054393305182 0.17206042569298421
+0.3953974895397495 0.9966096167048311 0.39539748953974957 0.996609616704831 0.20511270589799183
+0.39748953974895457 1 0.39748953974895457 1 0.20391598173013473
+0.9966096167048311 0.3953974895397233 0.996609616704831 0.39539748953972337 0.1723263102740975
+1 0.3974895397489284 1 0.3974895397489284 0.17274791810658316
+0.3995815899581596 0.9966096167048311 0.3995815899581596 0.996609616704831 0.20289776966689102
+0.4016736401673646 1 0.4016736401673646 1 0.20158261428062305
+0.9966096167048311 0.39958158995813353 0.996609616704831 0.3995815899581335 0.1731156183157805
+1 0.40167364016733864 1 0.40167364016733864 0.17362626898612696
+0.4037656903765696 0.9966096167048311 0.4037656903765696 0.996609616704831 0.2004399945679928
+0.4058577405857747 1 0.4058577405857747 1 0.1990085862089099
+0.9966096167048311 0.40376569037654375 0.996609616704831 0.4037656903765438 0.17408800523609566
+1 0.40585774058574886 1 0.40585774058574886 0.17467927091187083
+0.4079497907949797 0.9966096167048311 0.40794979079497967 0.996609616704831 0.1977438821245079
+0.4100418410041847 1 0.4100418410041848 1 0.19619852527699236
+0.9966096167048311 0.40794979079495397 0.996609616704831 0.4079497907949539 0.17522710164952346
+1 0.4100418410041591 1 0.4100418410041591 0.1758904015021646
+0.41213389121338984 0.9966096167048311 0.4121338912133899 0.996609616704831 0.19481421751417768
+0.4142259414225948 1 0.4142259414225948 1 0.1931572757026053
+0.9966096167048311 0.4121338912133642 0.996609616704831 0.41213389121336425 0.176516159973481
+1 0.4142259414225693 1 0.4142259414225693 0.17724269710238702
+0.41631799163179983 0.9966096167048311 0.4163179916317999 0.996609616704831 0.19165593245645515
+0.41841004184100483 1 0.41841004184100483 1 0.18988976725129206
+0.9966096167048311 0.4163179916317744 0.996609616704831 0.41631799163177435 0.17793793005246716
+1 0.4184100418409795 1 0.4184100418409795 0.17871863867557022
+0.42050209205020994 0.9966096167048311 0.42050209205021 0.996609616704831 0.18827397974573404
+0.4225941422594149 1 0.4225941422594149 1 0.18640089689836956
+0.9966096167048311 0.42050209205018463 0.996609616704831 0.4205020920501847 0.179474555562567
+1 0.42259414225938974 1 0.42259414225938974 0.18030006545657914
+0.42468619246861994 0.9966096167048311 0.42468619246862 0.996609616704831 0.18467322135222933
+0.42677824267782494 1 0.4267782426778249 1 0.18269542486732956
+0.9966096167048311 0.42468619246859485 0.996609616704831 0.4246861924685948 0.18110750491540542
+1 0.42677824267779996 1 0.42677824267779996 0.1819681279859269
+0.42887029288702994 0.9966096167048311 0.42887029288703 0.996609616704831 0.1808583317917827
+0.430962343096235 1 0.430962343096235 1 0.17877788662492045
+0.9966096167048311 0.42887029288700507 0.996609616704831 0.4288702928870051 0.18281754622681223
+1 0.4309623430962102 1 0.4309623430962102 0.18370328795332838
+0.43305439330544004 0.9966096167048311 0.43305439330544004 0.996609616704831 0.1768337182322797
+0.43514644351464504 1 0.43514644351464504 1 0.1746525221730463
+0.9966096167048311 0.4330543933054153 0.996609616704831 0.43305439330541523 0.184584771714281
+1 0.4351464435146204 1 0.4351464435146204 0.18548536821535536
+0.43723849372385004 0.9966096167048311 0.43723849372385004 0.996609616704831 0.17260345855651185
+0.4393305439330551 1 0.4393305439330551 1 0.17032322372336908
+0.9966096167048311 0.4372384937238255 0.996609616704831 0.43723849372382556 0.18638867296437578
+1 0.4393305439330306 1 0.4393305439330306 0.18729365268865225
+0.4414225941422601 0.9966096167048311 0.4414225941422601 0.996609616704831 0.16817125833949267
+0.44351464435146515 1 0.4435146443514652 1 0.16579350257317896
+0.9966096167048311 0.4414225941422357 0.996609616704831 0.44142259414223567 0.1882082651065954
+1 0.44351464435144083 1 0.44351464435144083 0.18910703275384347
+0.44560669456067015 0.9966096167048311 0.4456066945606701 0.996609616704831 0.16354042742436162
+0.4476987447698752 1 0.4476987447698752 1 0.16106647572360747
+0.9966096167048311 0.44560669456064594 0.996609616704831 0.445606694560646 0.19002225519262336
+1 0.44769874476985105 1 0.44769874476985105 0.1909041944398102
+0.44979079497908014 0.9966096167048311 0.4497907949790801 0.996609616704831 0.15871387649896287
+0.45188284518828525 1 0.45188284518828525 1 0.15614487249868617
+0.9966096167048311 0.44979079497905616 0.996609616704831 0.4497907949790561 0.19180924807123542
+1 0.4518828451882613 1 0.4518828451882613 0.19266383901691475
+0.45397489539749014 0.9966096167048311 0.4539748953974901 0.996609616704831 0.15369413379139907
+0.4560669456066953 1 0.4560669456066953 1 0.15103106114403264
+0.9966096167048311 0.4539748953974664 0.996609616704831 0.45397489539746644 0.19354798175695676
+1 0.4560669456066715 1 0.4560669456066715 0.19436492866911817
+0.45815899581590025 0.9966096167048311 0.4581589958159002 0.996609616704831 0.14848338172689615
+0.46025104602510536 1 0.4602510460251053 1 0.14572709511865162
+0.9966096167048311 0.4581589958158766 0.996609616704831 0.45815899581587655 0.19521758364602215
+1 0.4602510460250817 1 0.4602510460250817 0.19598694855073742
+0.46234309623431036 0.9966096167048311 0.4623430962343104 0.996609616704831 0.14308351313409148
+0.4644351464435154 1 0.4644351464435154 1 0.14023477855920796
+0.9966096167048311 0.4623430962342868 0.996609616704831 0.4623430962342869 0.1967978388312712
+1 0.46443514644349193 1 0.46443514644349193 0.1975101766495322
+0.46652719665272047 0.9966096167048311 0.46652719665272047 0.996609616704831 0.1374962063763949
+0.46861924686192546 1 0.46861924686192546 1 0.1345557502174124
+0.9966096167048311 0.46652719665269704 0.996609616704831 0.466527196652697 0.19826946208633722
+1 0.46861924686190215 1 0.46861924686190215 0.19891595335111792
+0.4707112970711306 0.9966096167048311 0.4707112970711305 0.996609616704831 0.13172301864280614
+0.4728033472803355 1 0.4728033472803355 1 0.12869158508407183
+0.9966096167048311 0.47071129707110726 0.996609616704831 0.4707112970711073 0.19961436570622695
+1 0.47280334728031237 1 0.47280334728031237 0.2001869433131954
+0.4748953974895406 0.9966096167048311 0.4748953974895406 0.996609616704831 0.12576549660708636
+0.47698744769874557 1 0.4769874476987456 1 0.1226439129739409
+0.9966096167048311 0.4748953974895175 0.996609616704831 0.4748953974895174 0.20081591619466868
+1 0.4769874476987226 1 0.4769874476987226 0.20130738310967833
+0.4790794979079506 0.9966096167048311 0.4790794979079506 0.996609616704831 0.11962530382506457
+0.4811715481171556 1 0.4811715481171556 1 0.11641455364453616
+0.9966096167048311 0.4790794979079277 0.996609616704831 0.47907949790792775 0.20185917368547068
+1 0.4811715481171328 1 0.4811715481171328 0.202263309012663
+0.4832635983263607 0.9966096167048311 0.48326359832636073 0.996609616704831 0.11330436470390493
+0.4853556485355657 1 0.4853556485355657 1 0.11000566871336274
+0.9966096167048311 0.4832635983263379 0.996609616704831 0.48326359832633786 0.20273110890424997
+1 0.485355648535543 1 0.485355648535543 0.20304276018421608
+0.4874476987447708 0.9966096167048311 0.48744769874477084 0.996609616704831 0.10680502584681073
+0.48953974895397573 1 0.48953974895397573 1 0.10341993199428591
+0.9966096167048311 0.48744769874474814 0.996609616704831 0.4874476987447482 0.20342079336860744
+1 0.48953974895395325 1 0.48953974895395325 0.20363595341065674
+0.4916317991631808 0.9966096167048311 0.49163179916318084 0.996609616704831 0.10013023741879008
+0.4937238493723858 1 0.4937238493723857 1 0.09666072240053147
+0.9966096167048311 0.49163179916315836 0.996609616704831 0.4916317991631583 0.20391955935898873
+1 0.49372384937236347 1 0.49372384937236347 0.20403542630771834
+0.4958158995815908 0.9966096167048311 0.49581589958159084 0.996609616704831 0.09328376058887244
+0.49790794979079583 1 0.49790794979079583 1 0.08973234823867215
+0.9966096167048311 0.4958158995815686 0.996609616704831 0.49581589958156863 0.20422112695520522
+1 0.4979079497907737 1 0.4979079497907737 0.20423614664843034
+0.5000000000000008 0.9966096167048311 0.5000000000000008 0.996609616704831 0.08627041346030573
+0.5020920502092059 1 0.5020920502092059 1 0.08264032053557374
+0.9966096167048311 0.4999999999999788 0.996609616704831 0.49999999999997874 0.20432169612372134
+1 0.5020920502091839 1 0.5020920502091839 0.20423558612042444
+0.5041841004184109 0.9966096167048311 0.5041841004184109 0.996609616704831 0.07909638007581558
+0.5062761506276159 1 0.5062761506276159 1 0.07539171025922164
+0.9966096167048311 0.504184100418389 0.996609616704831 0.504184100418389 0.20422000246646013
+1 0.5062761506275941 1 0.5062761506275941 0.20403375741705285
+0.5083682008368209 0.9966096167048311 0.5083682008368209 0.996609616704831 0.07176963140685123
+0.5104602510460259 1 0.5104602510460259 1 0.06799565958795904
+0.9966096167048311 0.5083682008367992 0.996609616704831 0.5083682008367992 0.20391733581756952
+1 0.5104602510460043 1 0.5104602510460043 0.2036332141237941
+0.5125523012552309 0.9966096167048311 0.5125523012552309 0.996609616704831 0.06430055854867635
+0.5146443514644359 1 0.5146443514644359 1 0.06046419427059557
+0.9966096167048311 0.5125523012552095 0.996609616704831 0.5125523012552095 0.20341752141890765
+1 0.5146443514644146 1 0.5146443514644146 0.20303901339757888
+0.5167364016736409 0.9966096167048311 0.5167364016736409 0.996609616704831 0.05670303416749516
+0.5188284518828459 1 0.5188284518828459 1 0.052813664616904676
+0.9966096167048311 0.5167364016736197 0.996609616704831 0.5167364016736197 0.20272686393874564
+1 0.5188284518828248 1 0.5188284518828248 0.2022586419730049
+0.5209205020920509 0.9966096167048311 0.5209205020920509 0.996609616704831 0.04899640222089313
+0.5230125523012559 1 0.5230125523012559 1 0.04506760704801594
+0.9966096167048311 0.5209205020920299 0.996609616704831 0.5209205020920299 0.2018540551428609
+1 0.523012552301235 1 0.523012552301235 0.20130190658702873
+0.5251046025104609 0.9966096167048311 0.5251046025104609 0.996609616704831 0.04120966699563108
+0.5271966527196659 1 0.5271966527196659 1 0.037263157142446914
+0.9966096167048311 0.5251046025104401 0.996609616704831 0.5251046025104401 0.20081004660359206
+1 0.5271966527196452 1 0.5271966527196452 0.2001807905123065
+0.5292887029288709 0.9966096167048311 0.5292887029288709 0.996609616704831 0.03339153189342219
+0.5313807531380759 1 0.5313807531380759 1 0.029467605108135304
+0.9966096167048311 0.5292887029288503 0.996609616704831 0.5292887029288503 0.1996078894591845
+1 0.5313807531380554 1 0.5313807531380554 0.19890927854551646
+0.5334728033472809 0.9966096167048311 0.5334728033472809 0.996609616704831 0.025638584053909796
+0.5355648535564859 1 0.5355648535564859 1 0.021829538177467796
+0.9966096167048311 0.5334728033472605 0.996609616704831 0.5334728033472605 0.19826254392738077
+1 0.5355648535564657 1 0.5355648535564657 0.1975031535221521
+0.5376569037656909 0.9966096167048311 0.5376569037656909 0.996609616704831 0.018192466831894284
+0.5397489539748959 1 0.5397489539748959 1 0.014777471893950782
+0.9966096167048311 0.5376569037656708 0.996609616704831 0.5376569037656708 0.19679066204186804
+1 0.5397489539748759 1 0.5397489539748759 0.19597976822708837
+0.5418410041841009 0.9966096167048311 0.5418410041841009 0.996609616704831 0.011862914994387802
+0.5439330543933059 1 0.5439330543933059 1 0.009910450732228215
+0.9966096167048311 0.541841004184081 0.996609616704831 0.541841004184081 0.19521034791666436
+1 0.5439330543932861 1 0.5439330543932861 0.19435779743339832
+0.5460251046025109 0.9966096167048311 0.5460251046025109 0.996609616704831 0.009512388936372919
+0.5481171548117159 1 0.5481171548117159 1 0.010924771439369573
+0.9966096167048311 0.5460251046024912 0.996609616704831 0.5460251046024912 0.19354090073789257
+1 0.5481171548116963 1 0.5481171548116963 0.1926569757086861
+0.5502092050209209 0.9966096167048311 0.5502092050209209 0.996609616704831 0.013527133741859832
+0.5523012552301259 1 0.5523012552301259 1 0.016849288415002404
+0.9966096167048311 0.5502092050209014 0.996609616704831 0.5502092050209014 0.19180254660438686
+1 0.5523012552301065 1 0.5523012552301065 0.19089782753896664
+0.5543933054393309 0.9966096167048311 0.5543933054393309 0.996609616704831 0.020487717621073893
+0.5564853556485359 1 0.5564853556485359 1 0.024345786764972916
+0.9966096167048311 0.5543933054393116 0.996609616704831 0.5543933054393116 0.19001616623835302
+1 0.5564853556485168 1 0.5564853556485168 0.18910139717453114
+0.5585774058577408 0.9966096167048311 0.5585774058577408 0.996609616704831 0.028301714699995973
+0.5606694560669458 1 0.5606694560669458 1 0.03233139926143955
+0.9966096167048311 0.5585774058577219 0.996609616704831 0.5585774058577219 0.18820302639330388
+1 0.560669456066927 1 0.560669456066927 0.18728898631818927
+0.5627615062761508 0.9966096167048311 0.5627615062761508 0.996609616704831 0.0364079601511323
+0.5648535564853558 1 0.5648535564853558 1 0.04049473484371029
+0.9966096167048311 0.5627615062761321 0.996609616704831 0.5627615062761321 0.18638452340539544
+1 0.5648535564853372 1 0.5648535564853372 0.18548190825133207
+0.5669456066945608 0.9966096167048311 0.5669456066945608 0.996609616704831 0.04461869118445241
+0.5690376569037658 1 0.5690376569037658 1 0.048712818593092067
+0.9966096167048311 0.5669456066945423 0.996609616704831 0.5669456066945423 0.1845819476543091
+1 0.5690376569037474 1 0.5690376569037474 0.18370126710988485
+0.5711297071129708 0.9966096167048311 0.5711297071129708 0.996609616704831 0.05284755330534708
+0.5732217573221758 1 0.5732217573221758 1 0.056920852250212074
+0.9966096167048311 0.5711297071129525 0.996609616704831 0.5711297071129525 0.18281627759793506
+1 0.5732217573221576 1 0.5732217573221576 0.18196777065730416
+0.5753138075313808 0.9966096167048311 0.5753138075313808 0.996609616704831 0.06104333791952615
+0.5774058577405858 1 0.5774058577405858 1 0.06507645869642743
+0.9966096167048311 0.5753138075313627 0.996609616704831 0.5753138075313627 0.1811080113990671
+1 0.5774058577405679 1 0.5774058577405679 0.18030158394078719
+0.5794979079497908 0.9966096167048311 0.5794979079497908 0.996609616704831 0.06916973034354922
+0.5815899581589958 1 0.5815899581589958 1 0.07314767778605881
+0.9966096167048311 0.579497907949773 0.996609616704831 0.579497907949773 0.1794770428669157
+1 0.5815899581589781 1 0.5815899581589781 0.17872222957170988
+0.5836820083682008 0.9966096167048311 0.5836820083682008 0.996609616704831 0.07719798904204166
+0.5857740585774058 1 0.5857740585774058 1 0.08110836441995922
+0.9966096167048311 0.5836820083681832 0.996609616704831 0.5836820083681832 0.17794258642269264
+1 0.5857740585773883 1 0.5857740585773883 0.17724853800023635
+0.5878661087866108 0.9966096167048311 0.5878661087866108 0.996609616704831 0.08510402732737944
+0.5899581589958158 1 0.5899581589958158 1 0.08893631325922552
+0.9966096167048311 0.5878661087865934 0.996609616704831 0.5878661087865934 0.1765231530546171
+1 0.5899581589957985 1 0.5899581589957985 0.17589864808091568
+0.5920502092050208 0.9966096167048311 0.5920502092050208 0.996609616704831 0.09286722982272931
+0.5941422594142258 1 0.5941422594142258 1 0.0966125240552249
+0.9966096167048311 0.5920502092050036 0.996609616704831 0.5920502092050036 0.17523657581580884
+1 0.5941422594142087 1 0.5941422594142087 0.17469005455579645
+0.5962343096234308 0.9966096167048311 0.5962343096234308 0.996609616704831 0.10047003260772591
+0.5983263598326358 1 0.5983263598326358 1 0.10412099157783834
+0.9966096167048311 0.5962343096234138 0.996609616704831 0.5962343096234138 0.1741000794881402
+1 0.598326359832619 1 0.598326359832619 0.17363969500862633
+0.6004184100418408 0.9966096167048311 0.6004184100418408 0.996609616704831 0.10789786714354156
+0.6025104602510458 1 0.6025104602510458 1 0.11144875185520337
+0.9966096167048311 0.6004184100418241 0.996609616704831 0.6004184100418241 0.17313038482702248
+1 0.6025104602510292 1 0.6025104602510292 0.17276406465143268
+0.6046025104602508 0.9966096167048311 0.6046025104602508 0.996609616704831 0.11513928420195872
+0.6066945606694558 1 0.6066945606694558 1 0.1185860545376674
+0.9966096167048311 0.6046025104602343 0.996609616704831 0.6046025104602343 0.1723438336426579
+1 0.6066945606694394 1 0.6066945606694394 0.17207934335430494
+0.6087866108786608 0.9966096167048311 0.6087866108786608 0.996609616704831 0.12218616345202461
+0.6108786610878658 1 0.6108786610878658 1 0.12552659043021894
+0.9966096167048311 0.6087866108786445 0.996609616704831 0.6087866108786445 0.17175651725786736
+1 0.6108786610878496 1 0.6108786610878496 0.17160151603766552
+0.6129707112970708 0.9966096167048311 0.6129707112970708 0.996609616704831 0.12903395383288466
+0.6150627615062758 1 0.6150627615062758 1 0.1322677300065904
+0.9966096167048311 0.6129707112970547 0.996609616704831 0.6129707112970547 0.1713843880486781
+1 0.6150627615062598 1 0.6150627615062598 0.17134646535514783
+0.6171548117154808 0.9966096167048311 0.6171548117154808 0.996609616704831 0.1356819079588212
+0.6192468619246858 1 0.6192468619246858 1 0.13881074113229608
+0.9966096167048311 0.6171548117154649 0.996609616704831 0.6171548117154649 0.17124333226426877
+1 0.61924686192467 1 0.61924686192467 0.171330014928742
+0.6213389121338908 0.9966096167048311 0.6213389121338908 0.996609616704831 0.14213328221068386
+0.6234309623430958 1 0.6234309623430958 1 0.1451609599805728
+0.9966096167048311 0.6213389121338752 0.996609616704831 0.6213389121338752 0.17134918253952916
+1 0.6234309623430803 1 0.6234309623430803 0.1715679026127169
+0.6255230125523008 0.9966096167048311 0.6255230125523008 0.996609616704831 0.14839547803562378
+0.6276150627615058 1 0.6276150627615058 1 0.15132789180194062
+0.9966096167048311 0.6255230125522854 0.996609616704831 0.6255230125522854 0.17171765076191384
+1 0.6276150627614905 1 0.6276150627614905 0.17207566658854376
+0.6297071129707108 0.9966096167048311 0.6297071129707108 0.996609616704831 0.1544801018337967
+0.6317991631799158 1 0.6317991631799158 1 0.15732521966167293
+0.9966096167048311 0.6297071129706956 0.996609616704831 0.6297071129706956 0.17236416638045052
+1 0.6317991631799007 1 0.6317991631799007 0.17286843256777518
+0.6338912133891208 0.9966096167048311 0.6338912133891208 0.996609616704831 0.16040292206264783
+0.6359832635983258 1 0.6359832635983258 1 0.16317070060138547
+0.9966096167048311 0.6338912133891058 0.996609616704831 0.6338912133891058 0.17330361177011636
+1 0.6359832635983109 1 0.6359832635983109 0.17396059778911085
+0.6380753138075308 0.9966096167048311 0.6380753138075308 0.996609616704831 0.1661837037486473
+0.6401673640167358 1 0.6401673640167358 1 0.16888593068540306
+0.9966096167048311 0.638075313807516 0.996609616704831 0.638075313807516 0.17454995453099986
+1 0.6401673640167211 1 0.6401673640167211 0.17536541633043376
+0.6422594142259408 0.9966096167048311 0.6422594142259408 0.996609616704831 0.17184590313974943
+0.6443514644351458 1 0.6443514644351458 1 0.17449596365411482
+0.9966096167048311 0.6422594142259263 0.996609616704831 0.6422594142259263 0.1761157859445087
+1 0.6443514644351314 1 0.6443514644351314 0.177094499710145
+0.6464435146443508 0.9966096167048311 0.6464435146443508 0.996609616704831 0.17741620928615665
+0.6485355648535558 1 0.6485355648535558 1 0.18002877287306515
+0.9966096167048311 0.6464435146443365 0.996609616704831 0.6464435146443365 0.17801178428383302
+1 0.6485355648535416 1 0.6485355648535416 0.17915725578057953
+0.6506276150627608 0.9966096167048311 0.6506276150627608 0.996609616704831 0.18292392527137055
+0.6527196652719658 1 0.6527196652719658 1 0.1855145532022228
+0.9966096167048311 0.6506276150627467 0.996609616704831 0.6506276150627467 0.18024613015326374
+1 0.6527196652719518 1 0.6527196652719518 0.18156029636913373
+0.6548117154811708 0.9966096167048311 0.6548117154811708 0.996609616704831 0.18840018978147996
+0.6569037656903758 1 0.6569037656903758 1 0.1909848683214134
+0.9966096167048311 0.6548117154811569 0.996609616704831 0.6548117154811569 0.18282390736283904
+1 0.656903765690362 1 0.656903765690362 0.1843068489364578
+0.6589958158995808 0.9966096167048311 0.6589958158995808 0.996609616704831 0.19387704954946472
+0.6610878661087858 1 0.6610878661087858 1 0.19647165960419324
+0.9966096167048311 0.6589958158995671 0.996609616704831 0.6589958158995671 0.18574652607973996
+1 0.6610878661087722 1 0.6610878661087722 0.1873962089374158
+0.6631799163179908 0.9966096167048311 0.6631799163179908 0.996609616704831 0.19938640442147215
+0.6652719665271958 1 0.6652719665271958 1 0.20200614411254272
+0.9966096167048311 0.6631799163179773 0.996609616704831 0.6631799163179773 0.18901120459400997
+1 0.6652719665271825 1 0.6652719665271825 0.19082326732142904
+0.6673640167364008 0.9966096167048311 0.6673640167364008 0.996609616704831 0.20495885844347475
+0.6694560669456058 1 0.6694560669456058 1 0.2076176405903686
+0.9966096167048311 0.6673640167363876 0.996609616704831 0.6673640167363876 0.1926105420087879
+1 0.6694560669455927 1 0.6694560669455928 0.19457814200699364
+0.6715481171548108 0.9966096167048311 0.6715481171548108 0.996609616704831 0.21062252119610977
+0.6736401673640158 1 0.6736401673640158 1 0.21333237209446623
+0.9966096167048311 0.6715481171547978 0.996609616704831 0.6715481171547978 0.19653220711454625
+1 0.6736401673640029 1 0.6736401673640029 0.19864593406112344
+0.6757322175732208 0.9966096167048311 0.6757322175732208 0.996609616704831 0.21640181216247464
+0.6778242677824258 1 0.6778242677824258 1 0.21917230067892068
+0.9966096167048311 0.675732217573208 0.996609616704831 0.675732217573208 0.20075875970572818
+1 0.6778242677824131 1 0.677824267782413 0.2030066199232469
+0.6799163179916308 0.9966096167048311 0.6799163179916308 0.996609616704831 0.22231632580877445
+0.6820083682008358 1 0.6820083682008358 1 0.22515405211276693
+0.9966096167048311 0.6799163179916182 0.996609616704831 0.6799163179916182 0.2052676109661334
+1 0.6820083682008233 1 0.6820083682008233 0.2076350816574768
+0.6841004184100408 0.9966096167048311 0.6841004184100408 0.996609616704831 0.22837981525696602
+0.6861924686192458 1 0.6861924686192458 1 0.2312879862253768
+0.9966096167048311 0.6841004184100284 0.996609616704831 0.6841004184100284 0.21003112057755605
+1 0.6861924686192336 1 0.6861924686192337 0.21250126906290104
+0.6882845188284508 0.9966096167048311 0.6882845188284508 0.996609616704831 0.23459934751855702
+0.6903765690376558 1 0.6903765690376558 1 0.23757746111270764
+0.9966096167048311 0.6882845188284387 0.996609616704831 0.6882845188284387 0.21501682091326343
+1 0.6903765690376438 1 0.6903765690376438 0.21757048132716175
+0.6924686192468608 0.9966096167048311 0.6924686192468608 0.996609616704831 0.24097467359947153
+0.6945606694560658 1 0.6945606694560658 1 0.24401832785055025
+0.9966096167048311 0.6924686192468489 0.996609616704831 0.6924686192468489 0.22018775365953405
+1 0.694560669456054 1 0.6945606694560539 0.22280375213518855
+0.6966527196652708 0.9966096167048311 0.6966527196652708 0.996609616704831 0.24749784349086615
+0.6987447698744758 1 0.6987447698744758 1 0.25059867796233415
+0.9966096167048311 0.6966527196652591 0.996609616704831 0.6966527196652591 0.22550290160537415
+1 0.6987447698744642 1 0.6987447698744642 0.22815832067989097
+0.7008368200836808 0.9966096167048311 0.7008368200836808 0.996609616704831 0.25415308079628746
+0.7029288702928858 1 0.7029288702928858 1 0.2572988504838227
+0.9966096167048311 0.7008368200836693 0.996609616704831 0.7008368200836693 0.23091769791077657
+1 0.7029288702928744 1 0.7029288702928745 0.23358817148617214
+0.7050209205020908 0.9966096167048311 0.7050209205020908 0.996609616704831 0.26091691640001535
+0.7071129707112958 1 0.7071129707112958 1 0.2640916908934925
+0.9966096167048311 0.7050209205020795 0.996609616704831 0.7050209205020795 0.23638459641734325
+1 0.7071129707112846 1 0.7071129707112846 0.23904462780386124
+0.7092050209205008 0.9966096167048311 0.7092050209205008 0.996609616704831 0.26775856689838906
+0.7112970711297057 1 0.7112970711297057 1 0.2709430419659633
+0.9966096167048311 0.7092050209204898 0.996609616704831 0.7092050209204898 0.2418536889118166
+1 0.7112970711296949 1 0.7112970711296948 0.244476985965752
+0.7133891213389107 0.9966096167048311 0.7133891213389107 0.996609616704831 0.27464053279104644
+0.7154811715481157 1 0.7154811715481157 1 0.2778124377419634
+0.9966096167048311 0.7133891213389 0.996609616704831 0.7133891213389 0.24727335812727413
+1 0.7154811715481051 1 0.7154811715481051 0.24983318102919774
+0.7175732217573207 0.9966096167048311 0.7175732217573207 0.996609616704831 0.2815193843431633
+0.7196652719665257 1 0.7196652719665257 1 0.28465396664631015
+0.9966096167048311 0.7175732217573102 0.996609616704831 0.7175732217573102 0.25259095820704996
+1 0.7196652719665153 1 0.7196652719665154 0.255060476833683
+0.7217573221757307 0.9966096167048311 0.7217573221757307 0.996609616704831 0.2883466996383767
+0.7238493723849357 1 0.7238493723849357 1 0.29141726810804125
+0.9966096167048311 0.7217573221757204 0.996609616704831 0.7217573221757204 0.2577535170400363
+1 0.7238493723849255 1 0.7238493723849255 0.26010617606167863
+0.7259414225941407 0.9966096167048311 0.7259414225941407 0.996609616704831 0.2950701191936873
+0.7280334728033457 1 0.7280334728033457 1 0.2980486282155605
+0.9966096167048311 0.7259414225941306 0.996609616704831 0.7259414225941306 0.26270845711655827
+1 0.7280334728033357 1 0.7280334728033356 0.2649183478596387
+0.7301255230125507 0.9966096167048311 0.7301255230125507 0.996609616704831 0.3016344838338765
+0.7322175732217557 1 0.7322175732217557 1 0.30449214313369594
+0.9966096167048311 0.7301255230125409 0.996609616704831 0.7301255230125409 0.26740433327706464
+1 0.732217573221746 1 0.732217573221746 0.2694465720283305
+0.7343096234309607 0.9966096167048311 0.7343096234309607 0.996609616704831 0.307983026438172
+0.7364016736401657 1 0.7364016736401657 1 0.31069092334901804
+0.9966096167048311 0.7343096234309511 0.996609616704831 0.7343096234309511 0.27179158693489763
+1 0.7364016736401562 1 0.7364016736401563 0.27364269975478517
+0.7384937238493707 0.9966096167048311 0.7384937238493707 0.996609616704831 0.3140585928358708
+0.7405857740585757 1 0.7405857740585757 1 0.31658831652819647
+0.9966096167048311 0.7384937238493613 0.996609616704831 0.7384937238493613 0.27582331709643904
+1 0.7405857740585664 1 0.7405857740585664 0.2774616313879166
+0.7426778242677807 0.9966096167048311 0.7426778242677807 0.996609616704831 0.31980487184885575
+0.7447698744769857 1 0.7447698744769857 1 0.32212913127947673
+0.9966096167048311 0.7426778242677715 0.996609616704831 0.7426778242677715 0.279456068838076
+1 0.7447698744769766 1 0.7447698744769765 0.2808621119138089
+0.7468619246861907 0.9966096167048311 0.7468619246861907 0.996609616704831 0.3251676187568168
+0.7489539748953957 1 0.7489539748953957 1 0.3272608479979134
+0.9966096167048311 0.7468619246861817 0.996609616704831 0.7468619246861817 0.28265063988120703
+1 0.7489539748953868 1 0.7489539748953868 0.28380754460334756
+0.7510460251046007 0.9966096167048311 0.7510460251046007 0.996609616704831 0.33009585998019936
+0.7531380753138057 1 0.7531380753138057 1 0.33193480601719394
+0.9966096167048311 0.751046025104592 0.996609616704831 0.751046025104592 0.2853729055576883
+1 0.7531380753137971 1 0.7531380753137972 0.2862668227875225
+0.7552301255230107 0.9966096167048311 0.7552301255230107 0.996609616704831 0.33454306937093875
+0.7573221757322157 1 0.7573221757322157 1 0.3361073583759502
+0.9966096167048311 0.7552301255230022 0.996609616704831 0.7552301255230022 0.2875946617596346
+1 0.7573221757322073 1 0.7573221757322073 0.28821517881808606
+0.7594142259414207 0.9966096167048311 0.7594142259414207 0.996609616704831 0.33846830810774947
+0.7615062761506257 1 0.7615062761506257 1 0.3397409866011956
+0.9966096167048311 0.7594142259414124 0.996609616704831 0.7594142259414124 0.2892944843433754
+1 0.7615062761506175 1 0.7615062761506174 0.2896350478831994
+0.7635983263598307 0.9966096167048311 0.7635983263598307 0.996609616704831 0.34183732079943935
+0.7656903765690357 1 0.7656903765690357 1 0.342805368012826
+0.9966096167048311 0.7635983263598226 0.996609616704831 0.7635983263598226 0.2904586017599258
+1 0.7656903765690277 1 0.7656903765690277 0.2905169422796549
+0.7677824267782407 0.9966096167048311 0.7677824267782407 0.996609616704831 0.34462358000522425
+0.7698744769874457 1 0.7698744769874457 1 0.34527838715135667
+0.9966096167048311 0.7677824267782328 0.996609616704831 0.7677824267782328 0.2910817751773849
+1 0.7698744769874379 1 0.769874476987438 0.2908603287088486
+0.7719665271966507 0.9966096167048311 0.7719665271966507 0.996609616704831 0.34680926996321926
+0.7740585774058557 1 0.7740585774058557 1 0.34714708098488184
+0.9966096167048311 0.771966527196643 0.996609616704831 0.771966527196643 0.2911681767020271
+1 0.7740585774058482 1 0.7740585774058482 0.290674496763155
+0.7761506276150607 0.9966096167048311 0.7761506276150607 0.996609616704831 0.3483861978147498
+0.7782426778242657 1 0.7782426778242657 1 0.34840850447476246
+0.9966096167048311 0.7761506276150533 0.996609616704831 0.7761506276150533 0.29073225103176875
+1 0.7782426778242584 1 0.7782426778242583 0.28997940047990556
+0.7803347280334707 0.9966096167048311 0.7803347280334707 0.996609616704831 0.3493566169141253
+0.7824267782426757 1 0.7824267782426757 1 0.3490704987441628
+0.9966096167048311 0.7803347280334635 0.996609616704831 0.7803347280334635 0.28979953840232775
+1 0.7824267782426686 1 0.7824267782426686 0.28880644602566635
+0.7845188284518807 0.9966096167048311 0.7845188284518807 0.996609616704831 0.349733941776126
+0.7866108786610857 1 0.7866108786610857 1 0.34915233834801174
+0.9966096167048311 0.7845188284518737 0.996609616704831 0.7845188284518737 0.2884074263307665
+1 0.7866108786610788 1 0.7866108786610789 0.28719918653672594
+0.7887029288702907 0.9966096167048311 0.7887029288702907 0.996609616704831 0.34954332768741864
+0.7907949790794957 1 0.7907949790794957 1 0.3486852268590778
+0.9966096167048311 0.7887029288702839 0.996609616704831 0.7887029288702839 0.28660578373042184
+1 0.790794979079489 1 0.790794979079489 0.28521386925506026
+0.7928870292887007 0.9966096167048311 0.7928870292887007 0.996609616704831 0.34882207990190617
+0.7949790794979057 1 0.7949790794979057 1 0.34771260113895447
+0.9966096167048311 0.7928870292886941 0.996609616704831 0.7928870292886941 0.28445741295021887
+1 0.7949790794978993 1 0.7949790794978991 0.28291976006559155
+0.7970711297071107 0.9966096167048311 0.7970711297071107 0.996609616704831 0.3476198477240268
+0.7991631799163157 1 0.7991631799163157 1 0.3462901944648498
+0.9966096167048311 0.7970711297071044 0.996609616704831 0.7970711297071044 0.2820382331912754
+1 0.7991631799163095 1 0.7991631799163095 0.2803991468448885
+0.8012552301255207 0.9966096167048311 0.8012552301255207 0.996609616704831 0.34599854804790814
+0.8033472803347257 1 0.8033472803347257 1 0.34448579776279825
+0.9966096167048311 0.8012552301255146 0.996609616704831 0.8012552301255146 0.2794370836791548
+1 0.8033472803347197 1 0.8033472803347198 0.27774689762368787
+0.8054393305439307 0.9966096167048311 0.8054393305439307 0.996609616704831 0.3440319519888069
+0.8075313807531357 1 0.8075313807531357 1 0.34237864784413014
+0.9966096167048311 0.8054393305439248 0.996609616704831 0.8054393305439248 0.2767550099208264
+1 0.8075313807531299 1 0.8075313807531299 0.27506942674678564
+0.8096234309623407 0.9966096167048311 0.8096234309623407 0.996609616704831 0.3418048588350863
+0.8117154811715457 1 0.8117154811715457 1 0.3400583639639756
+0.9966096167048311 0.809623430962335 0.996609616704831 0.809623430962335 0.2741038771789927
+1 0.8117154811715401 1 0.81171548117154 0.27248290951368653
+0.8138075313807507 0.9966096167048311 0.8138075313807507 0.996609616704831 0.3394117764246452
+0.8158995815899557 1 0.8158995815899557 1 0.3376233525476249
+0.9966096167048311 0.8138075313807452 0.996609616704831 0.8138075313807452 0.27160415132676136
+1 0.8158995815899504 1 0.8158995815899504 0.2701105943158468
+0.8179916317991607 0.9966096167048311 0.8179916317991607 0.996609616704831 0.33695503013103295
+0.8200836820083657 1 0.8200836820083657 1 0.3351786089953885
+0.9966096167048311 0.8179916317991555 0.996609616704831 0.8179916317991555 0.2693817112190955
+1 0.8200836820083606 1 0.8200836820083607 0.2680791046920156
+0.8221757322175707 0.9966096167048311 0.8221757322175707 0.996609616704831 0.33454223881036654
+0.8242677824267757 1 0.8242677824267757 1 0.33283287015379265
+0.9966096167048311 0.8221757322175657 0.996609616704831 0.8221757322175657 0.2675636225233687
+1 0.8242677824267708 1 0.8242677824267708 0.26651371461604234
+0.8263598326359807 0.9966096167048311 0.8263598326359807 0.996609616704831 0.33228313036793033
+0.8284518828451857 1 0.8284518828451857 1 0.33069511589437434
+0.9966096167048311 0.8263598326359759 0.996609616704831 0.8263598326359759 0.26627292053999124
+1 0.828451882845181 1 0.8284518828451809 0.2655327236627
+0.8305439330543907 0.9966096167048311 0.8305439330543907 0.996609616704831 0.33028572572332665
+0.8326359832635957 1 0.8326359832635957 1 0.32887048535956503
+0.9966096167048311 0.8305439330543861 0.996609616704831 0.8305439330543861 0.26562261696086525
+1 0.8326359832635912 1 0.8326359832635912 0.26524124318430964
+0.8347280334728007 0.9966096167048311 0.8347280334728007 0.996609616704831 0.32865199784095545
+0.8368200836820057 1 0.8368200836820057 1 0.32745575989604514
+0.9966096167048311 0.8347280334727963 0.996609616704831 0.8347280334727963 0.26570934058184115
+1 0.8368200836820014 1 0.8368200836820016 0.2657248962830588
+0.8389121338912107 0.9966096167048311 0.8389121338912107 0.996609616704831 0.3274732058166822
+0.8410041841004157 1 0.8410041841004157 1 0.3265346602984649
+0.9966096167048311 0.8389121338912066 0.996609616704831 0.8389121338912066 0.2666071991280719
+1 0.8410041841004117 1 0.8410041841004117 0.2670440784850693
+0.8430962343096207 0.9966096167048311 0.8430962343096207 0.996609616704831 0.3268251985031187
+0.8451882845188257 1 0.8451882845188257 1 0.32617329268376916
+0.9966096167048311 0.8430962343096168 0.996609616704831 0.8430962343096168 0.268362547999299
+1 0.8451882845188219 1 0.8451882845188218 0.2692294626908542
+0.8472803347280307 0.9966096167048311 0.8472803347280307 0.996609616704831 0.3267640564786769
+0.8493723849372357 1 0.8493723849372357 1 0.3264161318726078
+0.9966096167048311 0.847280334728027 0.996609616704831 0.847280334728027 0.27099031845016314
+1 0.8493723849372321 1 0.8493723849372321 0.2722793226263628
+0.8514644351464407 0.9966096167048311 0.8514644351464407 0.996609616704831 0.32732247151033705
+0.8535564853556457 1 0.8535564853556457 1 0.32728293156747273
+0.9966096167048311 0.8514644351464372 0.996609616704831 0.8514644351464372 0.2744723743289011
+1 0.8535564853556423 1 0.8535564853556424 0.27615900135339294
+0.8556485355648507 0.9966096167048311 0.8556485355648507 0.996609616704831 0.3285072306802633
+0.8577405857740557 1 0.8577405857740557 1 0.32876688476956195
+0.9966096167048311 0.8556485355648474 0.996609616704831 0.8556485355648474 0.2787580677942883
+1 0.8577405857740525 1 0.8577405857740525 0.2808025253559299
+0.8598326359832607 0.9966096167048311 0.8598326359832607 0.996609616704831 0.3302980736982363
+0.8619246861924656 1 0.8619246861924656 1 0.3308342306870427
+0.9966096167048311 0.8598326359832577 0.996609616704831 0.8598326359832577 0.28376683050131263
+1 0.8619246861924628 1 0.8619246861924627 0.28611605112450456
+0.8640167364016706 0.9966096167048311 0.8640167364016706 0.996609616704831 0.33264804106810125
+0.8661087866108756 1 0.8661087866108756 1 0.3334253392128499
+0.9966096167048311 0.8640167364016679 0.996609616704831 0.8640167364016679 0.289392360377553
+1 0.866108786610873 1 0.866108786610873 0.29198261308439993
+0.8682008368200806 0.9966096167048311 0.8682008368200806 0.996609616704831 0.3354852585427956
+0.8702928870292856 1 0.8702928870292856 1 0.3364571363622015
+0.9966096167048311 0.8682008368200781 0.996609616704831 0.8682008368200781 0.29550781148364935
+1 0.8702928870292832 1 0.8702928870292833 0.2982675612558243
+0.8723849372384906 0.9966096167048311 0.8723849372384906 0.996609616704831 0.3387159472029253
+0.8744769874476956 1 0.8744769874476956 1 0.3398265996192615
+0.9966096167048311 0.8723849372384883 0.996609616704831 0.8723849372384883 0.30197138209026164
+1 0.8744769874476934 1 0.8744769874476934 0.3048241256758102
+0.8765690376569006 0.9966096167048311 0.8765690376569006 0.996609616704831 0.3422283400244078
+0.8786610878661056 1 0.8786610878661056 1 0.34341497518364844
+0.9966096167048311 0.8765690376568985 0.996609616704831 0.8765690376568985 0.30863179447964256
+1 0.8786610878661036 1 0.8786610878661035 0.3114986780291029
+0.8807531380753106 0.9966096167048311 0.8807531380753106 0.996609616704831 0.3458971407321311
+0.8828451882845156 1 0.8828451882845156 1 0.3470923559875812
+0.9966096167048311 0.8807531380753088 0.996609616704831 0.8807531380753088 0.3153333160666021
+1 0.8828451882845139 1 0.8828451882845139 0.31813542465409683
+0.8849372384937206 0.9966096167048311 0.8849372384937206 0.996609616704831 0.34958817651798446
+0.8870292887029256 1 0.8870292887029256 1 0.3507222997650834
+0.9966096167048311 0.884937238493719 0.996609616704831 0.884937238493719 0.32192013385190643
+1 0.8870292887029241 1 0.8870292887029242 0.32458041551629485
+0.8891213389121306 0.9966096167048311 0.8891213389121306 0.996609616704831 0.35316295643947776
+0.8912133891213356 1 0.8912133891213356 1 0.3541662402158538
+0.9966096167048311 0.8891213389121292 0.996609616704831 0.8891213389121292 0.32824002868556074
+1 0.8912133891213343 1 0.8912133891213343 0.3306848671337322
+0.8933054393305406 0.9966096167048311 0.8933054393305406 0.996609616704831 0.3564829298973848
+0.8953974895397456 1 0.8953974895397456 1 0.3572875296172155
+0.9966096167048311 0.8933054393305394 0.996609616704831 0.8933054393305394 0.3341473882605875
+1 0.8953974895397445 1 0.8953974895397444 0.3363078682747324
+0.8974895397489506 0.9966096167048311 0.8974895397489506 0.996609616704831 0.35941332428327843
+0.8995815899581556 1 0.8995815899581556 1 0.3599550308358869
+0.9966096167048311 0.8974895397489496 0.996609616704831 0.8974895397489496 0.3395056493820437
+1 0.8995815899581547 1 0.8995815899581547 0.3413185715252911
+0.9016736401673606 0.9966096167048311 0.9016736401673606 0.996609616704831 0.3618265138023445
+0.9037656903765656 1 0.9037656903765656 1 0.3620462404769233
+0.9966096167048311 0.9016736401673598 0.996609616704831 0.9016736401673598 0.34418928000809906
+1 0.903765690376565 1 0.9037656903765651 0.34559798217288434
+0.9058577405857706 0.9966096167048311 0.9058577405857706 0.996609616704831 0.36360492603912253
+0.9079497907949756 1 0.9079497907949756 1 0.36344996953633385
+0.9966096167048311 0.9058577405857701 0.996609616704831 0.9058577405857701 0.34808541095393436
+1 0.9079497907949752 1 0.9079497907949752 0.3490404488519168
+0.9100418410041806 0.9966096167048311 0.9100418410041806 0.996609616704831 0.36464352836703373
+0.9121338912133856 1 0.9121338912133856 1 0.36406863478581064
+0.9966096167048311 0.9100418410041803 0.996609616704831 0.9100418410041803 0.3510952156361821
+1 0.9121338912133854 1 0.9121338912133853 0.351554946335028
+0.9142259414225906 0.9966096167048311 0.9142259414225906 0.996609616704831 0.36485195570139156
+0.9163179916317956 1 0.9163179916317956 1 0.36382022701649114
+0.9966096167048311 0.9142259414225905 0.996609616704831 0.9142259414225905 0.3531351207506425
+1 0.9163179916317956 1 0.9163179916317956 0.35306622524868025
+0.9184100418410006 0.9966096167048311 0.9184100418410006 0.996609616704831 0.36415634867151664
+0.9205020920502056 1 0.9205020920502056 1 0.3626400255838569
+0.9966096167048311 0.9184100418410007 0.996609616704831 0.9184100418410007 0.3541379155859468
+1 0.9205020920502058 1 0.920502092050206 0.3535158894660199
+0.9225941422594106 0.9966096167048311 0.9225941422594106 0.996609616704831 0.36250097127114606
+0.9246861924686156 1 0.9246861924686156 1 0.3604821262569968
+0.9966096167048311 0.9225941422594109 0.996609616704831 0.9225941422594109 0.3540538149636734
+1 0.924686192468616 1 0.924686192468616 0.35286345086981513
+0.9267782426778206 0.9966096167048311 0.9267782426778206 0.996609616704831 0.3598496727811544
+0.9288702928870256 1 0.9288702928870256 1 0.3573208439441817
+0.9966096167048311 0.9267782426778212 0.996609616704831 0.9267782426778212 0.35285152130670494
+1 0.9288702928870263 1 0.9288702928870262 0.3510874033045024
+0.9309623430962306 0.9966096167048311 0.9309623430962306 0.996609616704831 0.35618725240773047
+0.9330543933054356 1 0.9330543933054356 1 0.35315204499410013
+0.9966096167048311 0.9309623430962314 0.996609616704831 0.9309623430962314 0.35051932486259774
+1 0.9330543933054365 1 0.9330543933054365 0.3481863522856419
+0.9351464435146406 0.9966096167048311 0.9351464435146406 0.996609616704831 0.3515207776040438
+0.9372384937238456 1 0.9372384937238456 1 0.347994455721149
+0.9966096167048311 0.9351464435146416 0.996609616704831 0.9351464435146416 0.3470662767418857
+1 0.9372384937238467 1 0.9372384937238468 0.3441802332438102
+0.9393305439330506 0.9966096167048311 0.9393305439330506 0.996609616704831 0.3458808981294488
+0.9414225941422556 1 0.9414225941422556 1 0.3418909831011368
+0.9966096167048311 0.9393305439330518 0.996609616704831 0.9393305439330518 0.3425234658497798
+1 0.9414225941422569 1 0.9414225941422569 0.3391116465575978
+0.9435146443514606 0.9966096167048311 0.9435146443514606 0.996609616704831 0.3393231852892962
+0.9456066945606656 1 0.9456066945606656 1 0.3349100656194189
+0.9966096167048311 0.943514644351462 0.996609616704831 0.943514644351462 0.33694542414794365
+1 0.9456066945606671 1 0.945606694560667 0.3330473304283026
+0.9476987447698706 0.9966096167048311 0.9476987447698706 0.996609616704831 0.3319295068545875
+0.9497907949790756 1 0.9497907949790756 1 0.32714702728520384
+0.9966096167985571 0.9476988560350166 0.9966096167985571 0.9476988560350165 0.33041149177282797
+1 0.9497907949790774 1 0.9497907949790774 0.32607977327824256
+0.951882240270454 0.9966093327317679 0.951882240270454 0.9966093327317679 0.3238107288272815
+0.9539748953974856 1 0.9539748953974856 1 0.31872549494480445
+0.9966096458506751 0.9518831626564598 0.9966096458506751 0.9518831626564598 0.3230278166713246
+1 0.9539748953974876 1 0.9539748953974877 0.3183289348505303
+0.9560649122662301 0.9966086067279263 0.9560649122662301 0.9966086067279264 0.31510616995981616
+0.9581589958158956 1 0.9581589958158956 1 0.3097985057871236
+0.9966096167048311 0.9560669456066927 0.996609616704831 0.9560669456066927 0.3149302824607508
+1 0.9581589958158978 1 0.9581589958158978 0.3099440600724009
+0.9602460624587884 0.9966068913917766 0.9602460624587884 0.9966068913917766 0.3059862431848397
+0.9623430962343056 1 0.9623430962343056 1 0.30054925675037836
+0.9966097661716619 0.9602516408238588 0.9966097661716619 0.9602516408238589 0.30628074115900045
+1 0.962343096234308 1 0.9623430962343079 0.3011053145558333
+0.9644239991430709 0.9966030643503753 0.9644239991430709 0.9966030643503753 0.2966539797702894
+0.9665271966527156 1 0.9665271966527156 1 0.2911912112435725
+0.9966110373000374 0.9644377993662876 0.9966110373000374 0.9644377993662875 0.29727380129266057
+1 0.9665271966527182 1 0.9665271966527182 0.2920249671815154
+0.9685963094448633 0.9965963151537224 0.9685963094448633 0.9965963151537224 0.2873426916102393
+0.9707112970711256 1 0.9707112970711256 1 0.281967239731386
+0.9966150175999339 0.9686250853246205 0.9966150175999339 0.9686250853246205 0.28813854182819826
+1 0.9707112970711285 1 0.9707112970711286 0.28294763907523246
+0.9727618747898736 0.9965856800927217 0.9727618747898736 0.9965856800927216 0.27830880900921967
+0.9748953974895356 1 0.9748953974895356 1 0.27314915358212116
+0.9966229394332594 0.9728115838524812 0.9966229394332594 0.9728115838524812 0.2791401631443589
+1 0.9748953974895387 1 0.9748953974895387 0.27414897309012143
+0.9769294379615507 0.9965746845185578 0.9769294379615507 0.9965746845185578 0.2698128645759332
+0.9790794979079456 1 0.9790794979079456 1 0.26503147028482016
+0.9966321718055084 0.9769982998081375 0.9966321718055084 0.9769982998081375 0.27056928949658815
+1 0.9790794979079489 1 0.9790794979079488 0.2659322458965469
+0.9810930394510115 0.9965749680497312 0.9810930394510115 0.9965749680497312 0.26216104273765545
+0.9832635983263556 1 0.9832635983263556 1 0.2579084628184762
+0.9966414791322431 0.9811859710612242 0.9966414791322432 0.9811859710612242 0.26273999019814337
+1 0.9832635983263591 1 0.9832635983263591 0.2586191950510411
+0.9852431802591516 0.9965909606185684 0.9852431802591516 0.9965909606185684 0.255641254412645
+0.9874476987447656 1 0.9874476987447656 1 0.25206349592543126
+0.9966483902670394 0.9853729872800893 0.9966483902670394 0.9853729872800893 0.25597882609638717
+1 0.9874476987447693 1 0.9874476987447695 0.2525500860008207
+0.9892553011201777 0.996617516755236 0.9892553011201777 0.9966175167552361 0.2506512409963078
+0.9916317991631756 1 0.9916317991631756 1 0.2477667627239503
+0.9967243318937394 0.9895600829818613 0.9967243318937394 0.9895600829818613 0.25060819210576235
+1 0.9916317991631796 1 0.9916317991631796 0.2480169007037686
+0.9935768611175346 0.996406506403557 0.9935768611175346 0.9964065064035569 0.24709664904008347
+0.9958158995815856 1 0.9958158995815856 1 0.24536361988431696
+0.9968503489077082 0.9937155484142736 0.9968503489077082 0.9937155484142736 0.24688264289621278
+1 0.9958158995815898 1 0.9958158995815897 0.2453453653262229
+0.9972486219213657 0.9971875908798842 0.9972486219213657 0.9971875908798842 0.24521295889991995
+1 1 1 1 0.24501209502003218
+0.006442966071111944 0.0083076155110679 0.006442966071111944 0.0083076155110679 0.060954031208626795
+0.009548046244042208 0.006533430533538276 0.009548046244042208 0.006533430533538276 0.06098468319272775
+0.0066824973575268926 0.01243953934772221 0.0066824973575268926 0.01243953934772221 0.06229195961004396
+0.012880692099229691 0.006799685553648936 0.012880692099229691 0.006799685553648936 0.061761691039687754
+0.010510726014337411 0.010300701637142416 0.01051072601433741 0.010300701637142416 0.06220979836952234
+0.0066497558621925745 0.01666275548865548 0.0066497558621925745 0.01666275548865548 0.06408766669560963
+0.016880161474399982 0.006836241438615939 0.016880161474399982 0.006836241438615939 0.0628949356670953
+0.010003054248937271 0.014484214951988261 0.010003054248937271 0.014484214951988261 0.06367875450444888
+0.01489757684747358 0.010331077772547317 0.014897576847473582 0.010331077772547317 0.06330698655911825
+0.013134588573028658 0.01325059942845332 0.013134588573028658 0.01325059942845332 0.06387556449256235
+0.006694284371326653 0.02088088030295174 0.006694284371326653 0.02088088030295174 0.0662344170782327
+0.021031497985829498 0.006856181407904475 0.021031497985829498 0.006856181407904476 0.06432266847556521
+0.010006365824096631 0.018774855159889883 0.01000636582409663 0.018774855159889883 0.06570285165534417
+0.019055170832754886 0.01042327508239653 0.019055170832754886 0.01042327508239653 0.064641168639348
+0.013337213909282171 0.016760435863784798 0.01333721390928217 0.016760435863784798 0.0654915729391027
+0.016924371845112852 0.014376566916803798 0.016924371845112852 0.014376566916803796 0.06548129469027153
+0.0067215979427031 0.02508374454938635 0.0067215979427031 0.02508374454938635 0.068622788009312
+0.025201317557645087 0.006827295943553351 0.025201317557645087 0.006827295943553351 0.06597689540519026
+0.010040570990940564 0.022987327246016865 0.010040570990940564 0.022987327246016865 0.0680038616286196
+0.02322794674571886 0.010290366616654183 0.02322794674571886 0.010290366616654183 0.06617904607503579
+0.01331331556190055 0.020873517105942135 0.013313315561900548 0.020873517105942135 0.06761780315781522
+0.02137259155717151 0.01385143403945179 0.02137259155717151 0.01385143403945179 0.06683096018218898
+0.016626062150897014 0.018816381388708947 0.016626062150897014 0.018816381388708947 0.06751133871799335
+0.020048768197698616 0.017588618508955794 0.020048768197698616 0.017588618508955794 0.06808267993803378
+0.006750945224879017 0.029275532345512726 0.006750945224879017 0.029275532345512726 0.07116535032136607
+0.02934952897819682 0.006798461574504282 0.02934952897819682 0.006798461574504282 0.06779046929591859
+0.010091450460253197 0.027188462983965055 0.010091450460253197 0.027188462983965055 0.07050599894714303
+0.027324328667150004 0.01020027335402624 0.027324328667150007 0.01020027335402624 0.06789457623756619
+0.013404136650790746 0.025134501904482767 0.013404136650790746 0.025134501904482767 0.07009970214888676
+0.025388322488899183 0.013585172287532794 0.025388322488899186 0.013585172287532794 0.06837485013046406
+0.016719627729512725 0.023156165908217147 0.016719627729512725 0.023156165908217147 0.06996199828312012
+0.023807658345286406 0.01695224701348604 0.023807658345286406 0.01695224701348604 0.06928369850030514
+0.02006442951212445 0.021438550974813286 0.02006442951212445 0.021438550974813286 0.07019628126884371
+0.022600907643086525 0.019736901437590038 0.022600907643086525 0.019736901437590038 0.07022934650322203
+0.0067695819068446655 0.03346365712847713 0.0067695819068446655 0.03346365712847713 0.07378393972048268
+0.033506752269107994 0.00678616646184296 0.033506752269107994 0.00678616646184296 0.06972352669054516
+0.010132108427191071 0.03137040224344858 0.010132108427191073 0.03137040224344858 0.07311356500674433
+0.031461851624447305 0.010176050800904536 0.031461851624447305 0.010176050800904536 0.069783681993743
+0.013464765024730844 0.02931133206634322 0.013464765024730844 0.02931133206634322 0.07268648464110011
+0.029432791130754254 0.013549906470597497 0.029432791130754254 0.013549906470597497 0.0701796898170463
+0.0167859130854763 0.027301588718949422 0.016785913085476303 0.02730158871894942 0.07249475429762521
+0.027631614163227736 0.01688907509828314 0.027631614163227736 0.01688907509828314 0.07094162622902565
+0.02011959489212387 0.025378352609026707 0.02011959489212387 0.025378352609026707 0.07254743226748721
+0.025873434357286312 0.020096951018266234 0.025873434357286312 0.020096951018266234 0.07186029368790658
+0.023677810369617115 0.023362816390512364 0.023677810369617112 0.02336281639051236 0.0728090880315161
+0.006777929840810489 0.03765183242087894 0.00677792984081049 0.03765183242087894 0.0764093675798686
+0.03767416162613441 0.006781971703457959 0.03767416162613441 0.006781971703457959 0.0717236649309576
+0.0101568898991686 0.035552175999310216 0.010156889899168601 0.035552175999310216 0.07575937527914543
+0.03560210424298228 0.010170548399543943 0.035602104242982276 0.010170548399543943 0.07176460828246244
+0.013510353751465023 0.033473403270326246 0.013510353751465023 0.033473403270326246 0.07533691561553134
+0.03355560445849248 0.013550948544912296 0.03355560445849248 0.013550948544912294 0.07214291200363132
+0.01683104309668075 0.03144050527754324 0.01683104309668075 0.03144050527754324 0.07513031444472527
+0.0315820211399298 0.016911226744798006 0.0315820211399298 0.016911226744798006 0.07281810468727568
+0.02011862751664172 0.02946433473864564 0.02011862751664172 0.029464334738645636 0.07511753365745756
+0.029705457517210467 0.020238947055018247 0.029705457517210463 0.020238947055018247 0.07373742184644871
+0.023351161139370913 0.027546658923022372 0.023351161139370913 0.027546658923022372 0.07525801301365154
+0.027912245432408646 0.023560521610283346 0.027912245432408642 0.02356052161028335 0.07486769955418943
+0.02622755840626596 0.0262773700572423 0.02622755840626596 0.0262773700572423 0.07574577595243483
+0.006780341099595251 0.04183929434949401 0.006780341099595251 0.04183929434949401 0.07898014053557324
+0.04184609242903664 0.006781026275372729 0.04184609242903664 0.006781026275372728 0.07373973943069122
+0.010167470987968706 0.03974030259642497 0.010167470987968706 0.03974030259642497 0.07838075357176429
+0.03976784889461172 0.010169899056200134 0.03976784889461172 0.010169899056200136 0.07379384766266285
+0.013541377837594416 0.03764532778167878 0.013541377837594416 0.03764532778167878 0.07799408799327791
+0.037698722950480365 0.01355503850651486 0.03769872295048037 0.013555038506514861 0.07417418140711601
+0.016882943970028763 0.035582175684115334 0.016882943970028763 0.035582175684115334 0.077805621174856
+0.03567612105798905 0.016929331183460926 0.035676121057989056 0.01692933118346093 0.07483741755672245
+0.020184129139414392 0.03356105623992069 0.020184129139414392 0.03356105623992069 0.0777881922927311
+0.03370830539223568 0.02029643132464433 0.03370830539223568 0.02029643132464433 0.07573220286381653
+0.02342711313205484 0.03157384858366433 0.02342711313205484 0.03157384858366433 0.07789668922351911
+0.03185061772306564 0.023694091422454804 0.03185061772306564 0.023694091422454804 0.07685741558695558
+0.0265187114963822 0.029583224548123836 0.026518711496382196 0.02958322454812384 0.07802565031078536
+0.029884556582146827 0.02738751985789368 0.02988455658214683 0.027387519857893675 0.07824146130317212
+0.0067807281493482184 0.04602487609903389 0.0067807281493482184 0.04602487609903389 0.08144387711953198
+0.04602694065569627 0.0067807780313129526 0.04602694065569627 0.0067807780313129526 0.075731222032323
+0.010170497379736784 0.04392977819448748 0.010170497379736784 0.04392977819448748 0.08091870839045029
+0.04393782454073172 0.010170776829696032 0.04393782454073172 0.010170776829696032 0.07581457063084085
+0.013556207015101926 0.04183094776861252 0.013556207015101926 0.04183094776861252 0.08059781065880801
+0.041862705660986155 0.013557599100258296 0.041862705660986155 0.013557599100258296 0.07622287524183426
+0.016922116414366178 0.039745141467865515 0.016922116414366178 0.039745141467865515 0.08045988778821872
+0.039799004379461794 0.016940465096408848 0.039799004379461794 0.016940465096408844 0.07689551904660301
+0.020254468366010647 0.03768991100876463 0.020254468366010647 0.03768991100876463 0.0804791864176909
+0.037781545158486904 0.02031244290672949 0.03778154515848691 0.020312442906729487 0.07778748210683271
+0.02354842573277952 0.035666312564806686 0.02354842573277952 0.035666312564806686 0.08062109387576168
+0.03585427449274035 0.023673650519475897 0.03585427449274035 0.023673650519475897 0.07886703016073583
+0.026839973114122187 0.03362323690815951 0.026839973114122184 0.0336232369081595 0.0808385808913446
+0.03403886692165183 0.027007478167413362 0.03403886692165183 0.027007478167413362 0.08008734072476163
+0.030025932769788655 0.03169070856523605 0.030025932769788655 0.03169070856523604 0.08114682944924421
+0.03280473905613252 0.029943497347769323 0.03280473905613252 0.02994349734776932 0.08137095782207672
+0.006780766590337754 0.050209205020920446 0.006780766590337754 0.050209205020920446 0.08375751974441971
+0.05020920502088022 0.006780766590337883 0.05020920502088022 0.006780766590337883 0.07765974631720847
+0.010171121301574519 0.0481165482556675 0.010171121301574519 0.0481165482556675 0.08332375670282417
+0.048119141099199673 0.01017092789939784 0.048119141099199673 0.010170927899397842 0.07779025250713634
+0.0135605738709046 0.046021222924344914 0.0135605738709046 0.046021222924344914 0.08309068886011627
+0.046030416126924274 0.013560562878857584 0.046030416126924274 0.013560562878857584 0.07823842700807197
+0.016942961727295095 0.04392591541827381 0.016942961727295095 0.04392591541827381 0.08303095742471966
+0.043958122328551875 0.016945422663768327 0.043958122328551875 0.01694542266376833 0.07894897547198405
+0.02030306563891227 0.041845235801568646 0.02030306563891227 0.041845235801568646 0.08311553290076751
+0.041889572271428706 0.020327431347729772 0.041889572271428706 0.020327431347729772 0.07985692191372933
+0.023629042250803766 0.039796592930909945 0.023629042250803766 0.039796592930909945 0.08331561301490724
+0.03988477564720638 0.023692185582168037 0.03988477564720638 0.023692185582168037 0.08092667182113576
+0.026942522328216915 0.037768258085207715 0.02694252232821692 0.03776825808520772 0.08360120034832531
+0.03798575479078513 0.027030991590631874 0.037985754790785135 0.027030991590631877 0.08212253773356404
+0.030269836543606935 0.035779588087550294 0.030269836543606935 0.035779588087550294 0.08396939153746762
+0.036133469139131145 0.030327881241767645 0.036133469139131145 0.030327881241767645 0.08335334587574574
+0.033837779826341285 0.033827184641919694 0.033837779826341285 0.033827184641919694 0.08452770225467955
+0.006780766590337761 0.054393305439330485 0.006780766590337761 0.054393305439330485 0.08588560834025559
+0.05439330543929044 0.006780766590337883 0.05439330543929044 0.006780766590337883 0.07949868360744987
+0.010171149885506641 0.052301255230125465 0.010171149885506643 0.052301255230125465 0.08555677583713157
+0.05230125523008533 0.010171149885506825 0.05230125523008533 0.010171149885506825 0.07968496593677153
+0.013561533180675515 0.05020920502092043 0.013561533180675515 0.05020920502092043 0.08542611262429095
+0.05021158813523854 0.01356101045497534 0.05021158813523854 0.013561010454975342 0.08018821634084049
+0.01695032115462716 0.04811367479886374 0.01695032115462716 0.04811367479886374 0.08546380270895006
+0.048124155685846166 0.01694997240956932 0.048124155685846166 0.01694997240956932 0.08094667569469982
+0.02032868939988321 0.04602073981445268 0.02032868939988321 0.04602073981445268 0.08563737538499587
+0.046050695482925515 0.020334101717448743 0.046050695482925515 0.020334101717448743 0.0819022818389576
+0.02368285411573447 0.0439441935838862 0.02368285411573447 0.0439441935838862 0.08591378889719843
+0.04398129173571523 0.023715464139067298 0.04398129173571524 0.0237154641390673 0.08299334140695903
+0.02700198255480397 0.041905960423057775 0.02700198255480397 0.041905960423057775 0.08626663071065999
+0.041982203914051906 0.027075242591640476 0.041982203914051906 0.027075242591640476 0.08418753957791934
+0.03029843871995623 0.03990653855929063 0.030298438719956234 0.03990653855929063 0.0866712054109629
+0.04006414387938504 0.030421021682446717 0.04006414387938504 0.030421021682446713 0.08545136140741695
+0.03355718293178841 0.037976025590806345 0.03355718293178841 0.037976025590806345 0.08711197174383624
+0.03812675925900818 0.03379035122361306 0.03812675925900818 0.03379035122361306 0.08673098966116675
+0.03642200053776901 0.0366130676228653 0.03642200053776901 0.0366130676228653 0.08769348702133235
+0.006780766590337763 0.058577405857740523 0.006780766590337763 0.058577405857740523 0.08779899300913875
+0.05857740585770066 0.006780766590337883 0.05857740585770066 0.006780766590337883 0.08122879350043875
+0.010171149885506643 0.05648535564853551 0.010171149885506643 0.05648535564853551 0.0875860597371735
+0.05648535564849555 0.010171149885506825 0.05648535564849555 0.010171149885506825 0.08147617892973429
+0.013561533180675517 0.054393305439330485 0.013561533180675517 0.054393305439330485 0.0875676468404357
+0.05439330543929044 0.013561533180675767 0.05439330543929044 0.013561533180675767 0.08203968751856927
+0.016951962233656862 0.05230040249885088 0.016951962233656862 0.05230040249885088 0.0877153494545244
+0.05230399654155024 0.016951114825273946 0.05230399654155025 0.016951114825273946 0.08285769477049966
+0.020339462343838956 0.05020511513325073 0.020339462343838956 0.05020511513325073 0.08799440382550329
+0.05021626890114036 0.020339956659564878 0.05021626890114036 0.020339956659564878 0.08386725913302061
+0.02371340175269165 0.04811231531192256 0.02371340175269165 0.04811231531192256 0.08836698954554865
+0.04814372392639429 0.02372259335634347 0.04814372392639429 0.02372259335634347 0.08501162182479866
+0.027059583806740343 0.04604209504171225 0.027059583806740343 0.04604209504171225 0.08880164280534963
+0.046079198367909455 0.02710313883792055 0.04607919836790946 0.027103138837920548 0.0862355476665272
+0.03036933177302728 0.04400995652767067 0.03036933177302728 0.04400995652767067 0.08927006078039607
+0.04409271263776762 0.030472070941546588 0.04409271263776762 0.030472070941546584 0.08751930646007094
+0.03364414303118002 0.04200569603606977 0.03364414303118002 0.04200569603606977 0.08973735460747924
+0.04215595339698103 0.03389572618092236 0.04215595339698103 0.033895726180922355 0.08885468226056982
+0.036836261788735454 0.04001169598203474 0.036836261788735454 0.04001169598203474 0.0901396042064103
+0.04014939145188019 0.037658553294529745 0.040149391451880186 0.03765855329452975 0.09034305155481756
+0.006780766590337766 0.06276150627615057 0.006780766590337766 0.06276150627615057 0.08947457592967122
+0.06276150627611088 0.006780766590337883 0.06276150627611088 0.006780766590337883 0.08283997648104201
+0.01017114988550665 0.06066945606694555 0.01017114988550665 0.06066945606694555 0.08938573033112483
+0.06066945606690577 0.010171149885506825 0.06066945606690577 0.010171149885506825 0.08314866320466151
+0.01356153318067553 0.05857740585774052 0.01356153318067553 0.05857740585774052 0.0894882617562733
+0.05857740585770066 0.013561533180675767 0.05857740585770066 0.013561533180675767 0.08377434075738009
+0.016951916475844406 0.0564853556485355 0.016951916475844406 0.0564853556485355 0.08975363965728894
+0.05648535564849555 0.01695191647584471 0.05648535564849555 0.01695191647584471 0.08465403077966248
+0.02034208575224736 0.0543916551845375 0.02034208575224736 0.0543916551845375 0.0901477160066957
+0.054396325191614116 0.020341091099157653 0.054396325191614116 0.020341091099157656 0.08572497879695291
+0.023727497696475027 0.05229449894489341 0.023727497696475027 0.05229449894489341 0.09063139477436587
+0.05230863623495525 0.023729197739790635 0.05230863623495525 0.023729197739790635 0.08692590142775138
+0.02709630583774586 0.05020238978924363 0.02709630583774586 0.05020238978924363 0.09116632614088599
+0.05023933593023891 0.027109953275608972 0.0502393359302389 0.027109953275608972 0.08820453901327104
+0.03043663359327324 0.04813516282127644 0.030436633593273244 0.04813516282127644 0.09172215054161127
+0.0481864062219961 0.030486160400696006 0.0481864062219961 0.030486160400696006 0.08951274036446838
+0.03376065916195343 0.046080045190766805 0.03376065916195343 0.046080045190766805 0.09226738223452796
+0.04620233610866239 0.0338582079453539 0.04620233610866239 0.0338582079453539 0.09083525297008467
+0.03704063382110093 0.04405284171548185 0.03704063382110093 0.04405284171548185 0.0927711108665228
+0.04433366683093667 0.037209265940283044 0.04433366683093667 0.037209265940283044 0.09215077649487398
+0.04027452735061434 0.04201094848135775 0.04027452735061434 0.04201094848135775 0.09319135089515358
+0.04300352219360973 0.040143856446512485 0.04300352219360973 0.040143856446512485 0.09336095521236881
+0.006780766590337759 0.06694560669456062 0.006780766590337759 0.06694560669456062 0.09089487609615234
+0.0669456066945211 0.006780766590337883 0.0669456066945211 0.006780766590337883 0.08433023246336331
+0.01017114988550665 0.06485355648535561 0.01017114988550665 0.06485355648535561 0.0909355122884512
+0.06485355648531599 0.010171149885506825 0.06485355648531599 0.010171149885506825 0.08469635303375199
+0.013561533180675546 0.06276150627615058 0.013561533180675546 0.06276150627615058 0.09116470096281877
+0.06276150627611088 0.013561533180675767 0.06276150627611088 0.013561533180675767 0.08538101434706742
+0.01695191647584442 0.060669456066945564 0.01695191647584442 0.060669456066945564 0.09155350687200975
+0.06066945606690577 0.01695191647584471 0.06066945606690577 0.01695191647584471 0.08632092136905799
+0.020342259534611558 0.05857712248356504 0.020342259534611554 0.05857712248356504 0.09206807766109236
+0.05857757526037929 0.020342217943765162 0.05857757526037929 0.020342217943765162 0.08745225581907706
+0.02373155205653942 0.056481852973061165 0.02373155205653942 0.056481852973061165 0.09267025103777267
+0.056488539259461075 0.023730839812259524 0.056488539259461075 0.023730839812259524 0.08871367892466199
+0.027113855807879252 0.05438250266709339 0.027113855807879252 0.05438250266709339 0.09331904349253402
+0.0544010532283297 0.02711783551246856 0.0544010532283297 0.027117835512468557 0.09004787726264028
+0.030479052059382627 0.052290812382744654 0.030479052059382627 0.052290812382744654 0.09397862420537183
+0.052338157464014455 0.030498563409363844 0.052338157464014455 0.030498563409363844 0.09141089311941676
+0.03382178186063508 0.05021871898995801 0.03382178186063508 0.05021871898995801 0.0946196889047524
+0.050293495754064686 0.03387567005517 0.050293495754064686 0.03387567005517 0.0927587049174471
+0.03716237553001474 0.04815383218260383 0.03716237553001473 0.04815383218260383 0.09521788938571196
+0.0483197151268632 0.03724022444507974 0.0483197151268632 0.03724022444507974 0.09407228970065101
+0.040523536234776676 0.04610752471344243 0.040523536234776676 0.04610752471344243 0.0957687652593938
+0.04641897414969459 0.040564664896645966 0.04641897414969459 0.04056466489664596 0.09530044975227875
+0.04414875065299817 0.04407591977889151 0.04414875065299817 0.04407591977889152 0.09638836886923853
+0.006780766590337745 0.07112970711297067 0.006780766590337745 0.07112970711297067 0.09204755524145529
+0.07112970711293132 0.006780766590337883 0.07112970711293132 0.006780766590337883 0.08570531682840488
+0.010171149885506632 0.06903765690376568 0.010171149885506632 0.06903765690376568 0.09222053373995455
+0.06903765690372621 0.010171149885506825 0.06903765690372621 0.010171149885506825 0.08612126137536058
+0.013561533180675532 0.06694560669456066 0.013561533180675532 0.06694560669456066 0.0925794218065883
+0.0669456066945211 0.013561533180675767 0.0669456066945211 0.013561533180675767 0.08685778086250406
+0.01695191647584443 0.06485355648535564 0.01695191647584443 0.06485355648535564 0.0930949965001379
+0.06485355648531599 0.01695191647584471 0.06485355648531599 0.01695191647584471 0.0878515133540706
+0.02034227605036431 0.0627614513466682 0.020342276050364313 0.0627614513466682 0.09373320422563093
+0.06276155603470994 0.020342254075675862 0.06276155603470994 0.020342254075675862 0.08903836661998844
+0.023732315911394766 0.06066822074500421 0.023732315911394766 0.06066822074500421 0.09445666058576874
+0.06066964159612285 0.0237325001649639 0.06066964159612285 0.023732500164963897 0.09035646836352261
+0.027119881806558267 0.05857077872610008 0.027119881806558267 0.05857077872610008 0.09522522717937594
+0.05858065005890135 0.02712077230467226 0.05858065005890135 0.027120772304672257 0.09174815919293323
+0.0304989549496784 0.056469834730782875 0.030498954949678404 0.056469834730782875 0.09599906770811244
+0.05649277651143986 0.030508141141151635 0.05649277651143986 0.030508141141151635 0.09316172782621322
+0.033862936961618774 0.05437585472157208 0.033862936961618774 0.05437585472157208 0.0967452527481071
+0.05443994710883254 0.03389147470413264 0.05443994710883254 0.03389147470413264 0.09456366042236386
+0.03721928282109368 0.05228757289628417 0.03721928282109368 0.05228757289628417 0.09743753317947645
+0.052400732654145694 0.03727522339485843 0.052400732654145694 0.03727522339485843 0.09591051067534485
+0.04054750307116633 0.050245014472321554 0.04054750307116633 0.050245014472321554 0.09806177573495262
+0.05039989049213037 0.040657269159732515 0.05039989049213036 0.04065726915973251 0.09718071272685407
+0.04385928179198667 0.04823617465759933 0.04385928179198667 0.04823617465759933 0.09859977414950886
+0.048452926228873545 0.04405993731246465 0.048452926228873545 0.04405993731246465 0.09837977517450648
+0.04680857185832402 0.046999270930461856 0.04680857185832402 0.046999270930461856 0.09927668586208137
+0.0067807665903377315 0.0753138075313807 0.0067807665903377315 0.07531380753138071 0.09292504694715553
+0.07531380753134154 0.006780766590337883 0.07531380753134154 0.006780766590337883 0.08697824460834248
+0.010171149885506613 0.07322175732217572 0.010171149885506615 0.07322175732217572 0.09323090083495333
+0.07322175732213643 0.010171149885506825 0.07322175732213643 0.010171149885506825 0.08743305704952058
+0.013561533180675503 0.07112970711297072 0.013561533180675503 0.07112970711297072 0.09372011176817209
+0.07112970711293132 0.013561533180675767 0.07112970711293132 0.013561533180675767 0.08821077387878327
+0.016951916475844406 0.0690376569037657 0.016951916475844406 0.06903765690376572 0.09436325933644796
+0.06903765690372621 0.01695191647584471 0.06903765690372621 0.01695191647584471 0.08924817791321837
+0.020342293442938458 0.06694559698587599 0.020342293442938458 0.06694559698587599 0.09512612809499353
+0.06694561723392237 0.02034227978791017 0.06694561723392235 0.02034227978791017 0.09048118700761106
+0.02373252313124581 0.06485321567736178 0.02373252313124581 0.06485321567736178 0.09597151584532491
+0.06485360262430138 0.023732593544448042 0.06485360262430138 0.023732593544448042 0.09184776332478001
+0.02712185606158969 0.0627586008030596 0.027121856061589688 0.0627586008030596 0.09686039487063137
+0.06276159521658946 0.027122807957587862 0.06276159521658946 0.027122807957587865 0.09328999414618512
+0.030507173915158864 0.06065918621757965 0.030507173915158864 0.06065918621757965 0.0977529067436364
+0.0606732581059194 0.03051147271274203 0.0606732581059194 0.030511472712742026 0.09475585881433855
+0.03388506327639909 0.05855620201534706 0.03388506327639909 0.05855620201534706 0.09861275345561883
+0.05858721255319547 0.03390065249506754 0.05858721255319547 0.03390065249506754 0.0962001546432416
+0.03724929202509872 0.05645869726824362 0.03724929202509872 0.05645869726824362 0.09940963658836972
+0.05654221466594759 0.03728935427682929 0.05654221466594759 0.037289354276829285 0.09759736055945621
+0.040591433265587694 0.054393080006537475 0.040591433265587694 0.054393080006537475 0.100125919060382
+0.05450432214434008 0.040688562490723425 0.05450432214434008 0.040688562490723425 0.09890866282626008
+0.04389987008186056 0.05235348991956187 0.04389987008186056 0.05235348991956187 0.10073557661506481
+0.05248855885688538 0.044134454734171685 0.05248855885688538 0.044134454734171685 0.10013316305339726
+0.047124794967650256 0.05038577192509954 0.047124794967650256 0.05038577192509954 0.10122503927533155
+0.050452827642659154 0.04792377030860996 0.05045282764265914 0.047923770308609955 0.10139783497247126
+0.006780766590337738 0.07949790794979071 0.006780766590337738 0.07949790794979071 0.09352427866604139
+0.07949790794975176 0.006780766590337883 0.07949790794975176 0.006780766590337883 0.08816863241040544
+0.010171149885506605 0.07740585774058571 0.010171149885506605 0.07740585774058571 0.09396136988458359
+0.07740585774054665 0.010171149885506825 0.07740585774054665 0.010171149885506825 0.08864848724926706
+0.01356153318067547 0.07531380753138073 0.01356153318067547 0.07531380753138073 0.0945793046406696
+0.07531380753134154 0.013561533180675767 0.07531380753134154 0.013561533180675767 0.08945368716181575
+0.016951916475844365 0.07322175732217573 0.016951916475844365 0.07322175732217573 0.09534853374765517
+0.07322175732213643 0.01695191647584471 0.07322175732213643 0.01695191647584471 0.09052132750494433
+0.02034229977101328 0.07112970711297074 0.02034229977101328 0.07112970711297074 0.09623475865982105
+0.07112970850157226 0.02034229388191335 0.07112970850157226 0.02034229388191335 0.09178755451521749
+0.02373264683196286 0.06903759509137493 0.02373264683196286 0.06903759509137493 0.0972008187641628
+0.06903766305365244 0.023732654948366193 0.06903766305365244 0.023732654948366193 0.09319042449538549
+0.027122629015031454 0.06694469457116843 0.027122629015031454 0.06694469457116843 0.0982082522127825
+0.06694561429887005 0.027122995646868406 0.06694561429887004 0.027122995646868406 0.09467198096339198
+0.03051111592515092 0.06484886063197567 0.030511115925150923 0.06484886063197569 0.09921841041454092
+0.06485361218747307 0.030513248367994954 0.06485361218747308 0.030513248367994957 0.09617955781852905
+0.03389533231499108 0.06274870546306337 0.03389533231499108 0.06274870546306337 0.10019412963159767
+0.06276768411776079 0.033902807688407026 0.06276768411776079 0.033902807688407026 0.0976681250444586
+0.037274783190085044 0.06064559950825208 0.037274783190085044 0.06064559950825208 0.10110378324543458
+0.060686137326437156 0.03729362867070358 0.06068613732643715 0.03729362867070358 0.09909811362752831
+0.040647542628282 0.058538509032960456 0.040647542628282 0.05853850903296045 0.101919099464578
+0.058641505085809835 0.040686627230730715 0.058641505085809835 0.040686627230730715 0.1004476979965494
+0.04397338973902803 0.0564887190796027 0.04397338973902803 0.0564887190796027 0.10262498056393381
+0.05660490312703126 0.04408577498173806 0.05660490312703126 0.04408577498173805 0.10168153704813854
+0.04727020557586512 0.05443609018871042 0.04727020557586512 0.05443609018871042 0.10319486009952668
+0.05463888486078006 0.04747248105218027 0.05463888486078006 0.04747248105218027 0.10278997721512632
+0.050458012855206014 0.05236583554565383 0.050458012855206014 0.05236583554565383 0.1035839836378639
+0.05344697962019934 0.0505140572164593 0.05344697962019934 0.05051405721645931 0.10382810778190965
+0.006780766590337745 0.08368200836820074 0.006780766590337745 0.08368200836820074 0.09384647734766145
+0.08368200836816198 0.006780766590337883 0.08368200836816198 0.006780766590337883 0.08930185828594796
+0.01017114988550661 0.08158995815899571 0.01017114988550661 0.08158995815899571 0.09441110877552304
+0.08158995815895687 0.010171149885506825 0.08158995815895687 0.010171149885506825 0.08979062659357656
+0.013561533180675468 0.07949790794979071 0.013561533180675467 0.07949790794979071 0.09515409229598422
+0.07949790794975176 0.013561533180675767 0.07949790794975176 0.013561533180675767 0.09060710947759465
+0.01695191647584434 0.07740585774058571 0.016951916475844344 0.07740585774058571 0.09604580163879119
+0.07740585774054665 0.01695191647584471 0.07740585774054665 0.01695191647584471 0.091688836994281
+0.02034229977101323 0.07531380753138076 0.02034229977101323 0.07531380753138074 0.09705192669758046
+0.07531380753134154 0.02034229977101365 0.07531380753134154 0.02034229977101365 0.09297235179221075
+0.02373268306618213 0.07322175732217577 0.02373268306618213 0.07322175732217577 0.09813534314886209
+0.07322175673727595 0.023732674789438853 0.07322175673727595 0.023732674789438853 0.09439600932786596
+0.02712297847862152 0.07112954324993404 0.02712297847862152 0.07112954324993404 0.09925786037870188
+0.07112970158381247 0.02712304846511228 0.07112970158381247 0.027123048465112275 0.09590202716569786
+0.030512773908469543 0.06903623197197993 0.030512773908469543 0.06903623197197993 0.10038160204595646
+0.06903764916426383 0.03051341779240551 0.06903764916426382 0.030513417792405514 0.09743777830274637
+0.03390084150166123 0.06693995426036771 0.03390084150166123 0.06693995426036771 0.10147006967406515
+0.06694574532812958 0.033903724483323676 0.06694574532812958 0.033903724483323676 0.09895649066887834
+0.03728648369488332 0.06484069645826702 0.03728648369488332 0.06484069645826702 0.10249078643113486
+0.06486178134582353 0.037294150412042947 0.06486178134582353 0.037294150412042947 0.10041994567134337
+0.04066424222562159 0.06274012496320963 0.04066424222562159 0.06274012496320963 0.103413786681394
+0.0627944380477389 0.040686011090951255 0.06279443804773889 0.04068601109095126 0.10179689822859812
+0.04404281245686199 0.06064890887177496 0.044042812456861986 0.060648908871774966 0.10422406098753677
+0.06073631960149447 0.044077122985151124 0.06073631960149447 0.044077122985151124 0.10305560265814055
+0.047386320099254906 0.05856470129362186 0.04738632009925491 0.05856470129362185 0.10488903097390483
+0.05869757784059544 0.047452356556955774 0.058697577840595434 0.04745235655695578 0.1041672738231501
+0.050778486657781674 0.05645843417464783 0.050778486657781674 0.05645843417464783 0.10541957957517666
+0.05683832750983511 0.05081955503031397 0.056838327509835106 0.05081955503031397 0.10516376381889779
+0.054517982964707064 0.05430946187153085 0.054517982964707064 0.05430946187153085 0.1059234011466995
+0.006780766590337761 0.08786610878661077 0.006780766590337761 0.08786610878661077 0.09389705002543042
+0.010171149885506632 0.08577405857740573 0.010171149885506632 0.08577405857740573 0.09458353877727906
+0.0878661087865722 0.006780766590337883 0.0878661087865722 0.006780766590337883 0.09040801982918518
+0.08577405857736708 0.010171149885506825 0.08577405857736708 0.010171149885506825 0.09088793011463649
+0.013561533180675494 0.08368200836820071 0.013561533180675494 0.08368200836820071 0.09544592303303039
+0.08368200836816198 0.013561533180675767 0.08368200836816198 0.013561533180675767 0.0916976695839442
+0.01695191647584435 0.0815899581589957 0.01695191647584435 0.08158995815899571 0.09645453738796927
+0.08158995815895687 0.01695191647584471 0.08158995815895687 0.01695191647584471 0.09277527875334944
+0.02034229977101321 0.0794979079497907 0.02034229977101321 0.07949790794979071 0.09757512002324688
+0.07949790782753319 0.020342299671360115 0.07949790782753319 0.020342299671360115 0.09405781717521132
+0.02373268306618207 0.07740585774058573 0.023732683066182068 0.07740585774058573 0.09877062904817029
+0.0774058572194281 0.02373268263225184 0.0774058572194281 0.02373268263225184 0.09548411422422819
+0.027123066361350968 0.0753138075313808 0.027123066361350968 0.0753138075313808 0.10000301992386222
+0.07531380441341658 0.027123060351709583 0.07531380441341658 0.027123060351709583 0.09699676011534297
+0.030513332966841278 0.07322152386049093 0.030513332966841278 0.07322152386049093 0.10123477821235123
+0.07322175160862121 0.03051343790198106 0.07322175160862121 0.03051343790198106 0.0985433919329846
+0.03390311836788656 0.07112810196017003 0.03390311836788656 0.07112810196017004 0.10243015677171617
+0.07112978388581345 0.0339038188635349 0.07112978388581347 0.03390381886353489 0.10007738402976503
+0.03729121060368681 0.06903167860162288 0.03729121060368681 0.06903167860162286 0.10355595168257413
+0.06904112079892498 0.037294370631439276 0.06904112079892498 0.037294370631439276 0.10155891028615728
+0.04067648865509369 0.06693275737078312 0.04067648865509369 0.06693275737078312 0.10458358769992525
+0.06696145728964688 0.040686202116046115 0.06696145728964688 0.040686202116046115 0.10295517820193019
+0.0440504961290124 0.06483286170008194 0.0440504961290124 0.06483286170008194 0.10548672019601947
+0.064892930195696 0.0440804074516107 0.06489293019569599 0.0440804074516107 0.10423804052733655
+0.047413292364556166 0.0627345568032589 0.047413292364556166 0.0627345568032589 0.10624843163574817
+0.06283286970061483 0.04747641761439801 0.06283286970061484 0.04747641761439802 0.10538218134701437
+0.05078150166631739 0.060634938860468765 0.05078150166631739 0.06063493886046877 0.10686288644958385
+0.060816699937049565 0.05088577020377969 0.06081669993704957 0.05088577020377969 0.10638320841757609
+0.0541258668568701 0.05847878140868834 0.0541258668568701 0.05847878140868834 0.10729451257333604
+0.058849960400942855 0.05432692102639175 0.05884996040094286 0.05432692102639175 0.10724463834937903
+0.057128246852114414 0.05720264869856094 0.057128246852114414 0.05720264869856094 0.1077489186436289
+0.006780766590337771 0.09205020920502081 0.006780766590337771 0.09205020920502081 0.0936855314761031
+0.010171149885506655 0.08995815899581577 0.010171149885506657 0.08995815899581577 0.09448624845956577
+0.013561533180675526 0.08786610878661073 0.013561533180675526 0.08786610878661073 0.0954604777977927
+0.09205020920498241 0.006780766590337883 0.09205020920498241 0.006780766590337883 0.09152067970694176
+0.0899581589957773 0.010171149885506825 0.0899581589957773 0.010171149885506825 0.09197307252265917
+0.0878661087865722 0.013561533180675767 0.0878661087865722 0.013561533180675767 0.09275696901136644
+0.016951916475844382 0.08577405857740568 0.01695191647584438 0.08577405857740568 0.0965785418500536
+0.08577405857736708 0.01695191647584471 0.08577405857736708 0.01695191647584471 0.09381094872315715
+0.020342299771013237 0.08368200836820067 0.020342299771013237 0.08368200836820067 0.0978062719859183
+0.08368200830167083 0.020342299719129 0.08368200830167083 0.020342299719129 0.09507266310113106
+0.02373268306618209 0.08158995815899565 0.02373268306618209 0.08158995815899565 0.09910677026973037
+0.08158995778867852 0.02373268277240284 0.08158995778867852 0.02373268277240284 0.09648153439591085
+0.027123066361350937 0.07949790794979068 0.027123066361350933 0.07949790794979068 0.10044213541423154
+0.07949790687685314 0.027123065519543504 0.07949790687685314 0.027123065519543504 0.09798070756660847
+0.030513449656519784 0.0774058577405858 0.030513449656519784 0.0774058577405858 0.10177504747610168
+0.07740585487367108 0.030513447395610866 0.07740585487367108 0.030513447395610866 0.09951829282604689
+0.03390374286727273 0.07531359232332403 0.03390374286727273 0.07531359232332403 0.10307008398939689
+0.07531382197295472 0.03390382803382452 0.07531382197295472 0.03390382803382452 0.10104802017750499
+0.03729355531275383 0.07321997030840992 0.03729355531275383 0.07321997030840992 0.10429465168682828
+0.07322305047538567 0.03729433280528982 0.07322305047538567 0.03729433280528982 0.10252975377440976
+0.04068122926354236 0.0711226805745455 0.04068122926354236 0.0711226805745455 0.10541939702480364
+0.07113652691579941 0.040685764439538065 0.07113652691579941 0.040685764439538065 0.1039297742035793
+0.04406352449110667 0.06902196988707578 0.04406352449110667 0.06902196988707578 0.10641944846439451
+0.06905816009345682 0.04408019707238669 0.06905816009345682 0.04408019707238669 0.10522048560479834
+0.04743153202740664 0.06691863590320385 0.04743153202740664 0.06691863590320385 0.10727371315609668
+0.06699031493845448 0.04748149806402466 0.06699031493845448 0.04748149806402466 0.10637937618973857
+0.05078310506147743 0.06480584016044194 0.05078310506147743 0.06480584016044194 0.1079685035585768
+0.06493502990135362 0.05090110902574111 0.06493502990135362 0.05090110902574111 0.1073906175965625
+0.05408473268691506 0.06264854965492986 0.054084732686915056 0.06264854965492984 0.1084779037166692
+0.06287806184573821 0.054390157408152784 0.0628780618457382 0.054390157408152784 0.10825177739040838
+0.05738147158348384 0.06067451276870683 0.05738147158348384 0.06067451276870683 0.10887233760025496
+0.06078467134090082 0.0581931141479964 0.06078467134090082 0.05819311414799639 0.10901778110937733
+0.006780766590337778 0.09623430962343084 0.006780766590337778 0.09623430962343084 0.09322559138866295
+0.010171149885506667 0.09414225941422581 0.010171149885506667 0.09414225941422581 0.09413097205923297
+0.01356153318067555 0.09205020920502077 0.01356153318067555 0.09205020920502077 0.09520761612324756
+0.09623430962339263 0.006780766590337883 0.09623430962339263 0.006780766590337883 0.09267540566750504
+0.01695191647584442 0.08995815899581573 0.01695191647584442 0.08995815899581573 0.09642585167296545
+0.09414225941418752 0.010171149885506825 0.09414225941418752 0.010171149885506825 0.09308156953712453
+0.09205020920498241 0.013561533180675767 0.09205020920498241 0.013561533180675767 0.09382028896232462
+0.0899581589957773 0.01695191647584471 0.0899581589957773 0.01695191647584471 0.0948306631047471
+0.020342299771013293 0.08786610878661068 0.020342299771013293 0.08786610878661068 0.0977516359641915
+0.08786610876186655 0.02034229975237485 0.08786610876186655 0.02034229975237485 0.09605095830939542
+0.023732683066182148 0.08577405857740562 0.023732683066182148 0.08577405857740562 0.09914826105514639
+0.08577405841621222 0.023732682941200702 0.08577405841621222 0.023732682941200702 0.09742126232553565
+0.02712306636135098 0.08368200836820061 0.02712306636135098 0.08368200836820061 0.10057802634929928
+0.08368200785979012 0.027123065963381977 0.08368200785979012 0.027123065963381977 0.09888539707060305
+0.030513449656519784 0.08158995815899561 0.030513449656519784 0.08158995815899561 0.10200377856411345
+0.08158995706047119 0.030513448790155783 0.08158995706047119 0.030513448790155783 0.10039212796860685
+0.0339038329516886 0.07949790794979071 0.03390383295168859 0.07949790794979071 0.10339025765950104
+0.07949790659932993 0.03390383187449361 0.07949790659932993 0.03390383187449361 0.10189578526798974
+0.03729417516248791 0.07740563287167337 0.037294175162487904 0.07740563287167336 0.10470519192781468
+0.07740621727263484 0.03729425829591209 0.07740621727263484 0.03729425829591209 0.10335652171436475
+0.04068389945025284 0.07531131979308629 0.04068389945025284 0.07531131979308629 0.10591986381970574
+0.07531629240519087 0.04068515160323713 0.07531629240519087 0.04068515160323713 0.1047404604610792
+0.04407106153767013 0.07321251256188685 0.04407106153767013 0.07321251256188686 0.10700953225376118
+0.07323102241265796 0.04407804040127344 0.07323102241265796 0.04407804040127344 0.10601969715285224
+0.04745045371270664 0.07111066590951047 0.04745045371270664 0.07111066590951047 0.10795393873314042
+0.07115331607459702 0.047475588830994196 0.07115331607459702 0.047475588830994196 0.10717140356365733
+0.05081641356879046 0.06900484347451956 0.05081641356879046 0.06900484347451956 0.10873880382557967
+0.06908466678525195 0.050881639293416214 0.06908466678525195 0.050881639293416214 0.10817697403097727
+0.05416623166096443 0.06689154911089512 0.05416623166096444 0.06689154911089512 0.10935645421729144
+0.06701784149437337 0.054295837492928614 0.06701784149437338 0.05429583749292861 0.10901893913296097
+0.05748447453952952 0.06480280059042906 0.05748447453952952 0.06480280059042907 0.10981047333209677
+0.06509483777993733 0.05773743234570323 0.06509483777993731 0.05773743234570323 0.10971152081040288
+0.06068083722457318 0.06272118211163635 0.06068083722457318 0.06272118211163635 0.11008714795708062
+0.06373053654546455 0.06085019437587262 0.06373053654546455 0.06085019437587262 0.11019801267963743
+0.006780766590337789 0.10041841004184089 0.006780766590337789 0.10041841004184089 0.09253509285375151
+0.010171149885506678 0.09832635983263584 0.010171149885506678 0.09832635983263584 0.09353362463253523
+0.013561533180675565 0.09623430962343082 0.013561533180675567 0.09623430962343082 0.09470138432777077
+0.016951916475844448 0.09414225941422578 0.016951916475844448 0.09414225941422578 0.09600871632659025
+0.10041841004180285 0.006780766590337883 0.10041841004180285 0.006780766590337883 0.09390813817550686
+0.09832635983259774 0.010171149885506825 0.09832635983259774 0.010171149885506825 0.09425019956278918
+0.020342299771013334 0.09205020920502073 0.020342299771013334 0.09205020920502073 0.0974217264273227
+0.09623430962339263 0.013561533180675767 0.09623430962339263 0.013561533180675767 0.09492507574648255
+0.09414225941418752 0.01695191647584471 0.09414225941418752 0.01695191647584471 0.0958723172748276
+0.09205020919728972 0.02034229976536855 0.09205020919728972 0.02034229976536855 0.09703077349578167
+0.023732683066182206 0.08995815899581566 0.023732683066182206 0.08995815899581566 0.09890393013893904
+0.08995815893856464 0.023732683022673607 0.08995815893856464 0.023732683022673607 0.09834121327844071
+0.027123066361351065 0.08786610878661061 0.027123066361351065 0.08786610878661061 0.10041787024307582
+0.08786610858846743 0.02712306620771591 0.08786610858846743 0.02712306620771591 0.09974820584916842
+0.03051344965651988 0.08577405857740554 0.03051344965651988 0.08577405857740554 0.10192661012890732
+0.08577405815704338 0.030513449326615736 0.08577405815704338 0.030513449326615736 0.1012012997750903
+0.03390383295168866 0.08368200836820051 0.03390383295168866 0.08368200836820051 0.10339504485464511
+0.08368200786444847 0.03390383255289518 0.08368200786444847 0.03390383255289519 0.10265561426440802
+0.037294216246857394 0.08158995815899557 0.037294216246857394 0.08158995815899557 0.10479100257950298
+0.08158995815895687 0.03729421624685836 0.08158995815895687 0.03729421624685836 0.10407198456539413
+0.040684587011739 0.07949750819780997 0.040684587011739 0.07949750819780997 0.10608612299095223
+0.07949860799232955 0.04068477282791059 0.07949860799232955 0.04068477282791059 0.10541698497070597
+0.044074048009018256 0.07740190457724049 0.044074048009018256 0.07740190457724049 0.1072561832237
+0.07740939967719589 0.04407631004681614 0.07740939967719589 0.04407631004681614 0.10666272398686226
+0.04746111534313776 0.07530292993817012 0.04746111534313776 0.07530292993817012 0.1082818088245292
+0.07532444580688528 0.04747025733013253 0.07532444580688528 0.04747025733013253 0.10778621397859085
+0.050839781851499406 0.07320173703183099 0.050839781851499406 0.07320173703183099 0.10914804442314545
+0.07324759682063127 0.05086939493106593 0.07324759682063127 0.050869394931065924 0.1087691074887247
+0.05421312013608768 0.07109592775334238 0.05421312013608768 0.07109592775334238 0.10984833211821972
+0.07118219131906416 0.054274880947113836 0.07118219131906416 0.054274880947113836 0.10959563954029002
+0.057592676333664335 0.06898671588943615 0.057592676333664335 0.06898671588943615 0.11038306895046458
+0.06913565368815736 0.05768410428272528 0.06913565368815734 0.05768410428272528 0.11025162628974507
+0.06101011356236432 0.06686636402630888 0.06101011356236432 0.06686636402630887 0.11075767394737555
+0.06718724595478846 0.06107120846081585 0.06718724595478846 0.06107120846081585 0.11072411501972113
+0.06480295653360324 0.06462889025072326 0.06480295653360324 0.06462889025072326 0.11102584673550862
+0.0067807665903377974 0.10460251046025093 0.0067807665903377974 0.10460251046025093 0.09163619188611265
+0.010171149885506691 0.10251046025104589 0.010171149885506691 0.10251046025104589 0.0927143850539275
+0.013561533180675578 0.10041841004184086 0.013561533180675578 0.10041841004184086 0.0939600780053629
+0.01695191647584446 0.09832635983263584 0.01695191647584446 0.09832635983263584 0.09534363563618235
+0.020342299771013348 0.09623430962343081 0.020342299771013348 0.09623430962343081 0.09683132656038279
+0.10460251046021307 0.006780766590337883 0.10460251046021307 0.006780766590337883 0.09525345040068219
+0.10251046025100796 0.010171149885506825 0.10251046025100796 0.010171149885506825 0.09551527407924877
+0.10041841004180285 0.013561533180675767 0.10041841004180285 0.013561533180675767 0.09610923659970454
+0.02373268306618224 0.09414225941422576 0.02373268306618224 0.09414225941422576 0.09838691282888314
+0.09832635983259774 0.01695191647584471 0.09832635983259774 0.01695191647584471 0.09697522271944631
+0.09623430962123795 0.020342299769469243 0.09623430962123795 0.020342299769469243 0.09805257537052901
+0.0941422593961976 0.023732683052750714 0.0941422593961976 0.023732683052750714 0.09928269784421762
+0.02712306636135113 0.09205020920502067 0.027123066361351134 0.09205020920502067 0.09997321110054429
+0.09205020913639346 0.027123066308803095 0.09205020913639346 0.027123066308803095 0.10061091386957656
+0.03051344965651999 0.08995815899581559 0.030513449656519986 0.08995815899581559 0.10155353786785838
+0.08995815884288595 0.03051344953747116 0.08995815884288595 0.03051344953747116 0.101987623135548
+0.0339038329516888 0.08786610878661048 0.0339038329516888 0.08786610878661048 0.10309298457103978
+0.08786610859904787 0.03390383280421411 0.08786610859904787 0.03390383280421411 0.103368865633768
+0.03729421624685755 0.0857740585774054 0.03729421624685755 0.0857740585774054 0.10455949686415154
+0.08577405857736708 0.03729421624685836 0.08577405857736708 0.03729421624685836 0.10471643670089216
+0.040684599542026245 0.08368200836820033 0.040684599542026245 0.08368200836820033 0.10592475189590965
+0.08368200836816198 0.0406845995420273 0.08368200836816198 0.0406845995420273 0.10599769083779949
+0.04407461280289036 0.08158873589474376 0.04407461280289036 0.08158873589474376 0.10716479323025306
+0.08159099606575698 0.04407539302933181 0.08159099606575698 0.04407539302933181 0.1071854416240293
+0.04746368143937605 0.0794923366872319 0.04746368143937605 0.0794923366872319 0.10826058388688124
+0.07950185328081859 0.04746722160926067 0.07950185328081859 0.04746722160926067 0.10825710120712635
+0.0508493045080801 0.0773939052830038 0.0508493045080801 0.07739390528300381 0.10919772618219338
+0.07741772265055495 0.05086190128643713 0.07741772265055495 0.05086190128643713 0.1091946328076155
+0.05423142866179186 0.07529548816983993 0.05423142866179186 0.07529548816983993 0.10996832237801486
+0.07534071405842205 0.0542600397522959 0.07534071405842203 0.054260039752295895 0.10998273592370188
+0.05762586586901028 0.07319139469483911 0.057625865869010286 0.07319139469483911 0.11057270304108328
+0.07327449950157132 0.05766151072393283 0.07327449950157132 0.05766151072393283 0.11060892753980682
+0.0610562522340298 0.07107225916080234 0.061056252234029794 0.07107225916080234 0.11101564483893778
+0.07122513281432297 0.06106525709100783 0.07122513281432297 0.06106525709100783 0.11106412542585664
+0.06448082199523031 0.06900141968114325 0.06448082199523031 0.06900141968114325 0.11130239454794448
+0.0691343583672453 0.06446137241886288 0.0691343583672453 0.06446137241886286 0.1113496774639695
+0.06756312327254829 0.06744498173595945 0.06756312327254829 0.06744498173595945 0.11141333603022267
+0.006780766590337813 0.10878661087866098 0.006780766590337813 0.108786610878661 0.09055546356938225
+0.010171149885506709 0.10669456066945593 0.010171149885506709 0.10669456066945593 0.09169781486554773
+0.013561533180675595 0.10460251046025093 0.013561533180675595 0.10460251046025093 0.09300634870045615
+0.016951916475844476 0.10251046025104589 0.016951916475844476 0.10251046025104589 0.09445144917663177
+0.10878661087862329 0.006780766590337883 0.10878661087862329 0.006780766590337883 0.0967427969735435
+0.02034229977101335 0.10041841004184085 0.020342299771013348 0.10041841004184084 0.09599955500687646
+0.02373268306618224 0.09832635983263582 0.02373268306618224 0.09832635983263582 0.09761468945986372
+0.10669456066941818 0.010171149885506825 0.10669456066941818 0.010171149885506825 0.09691083872855182
+0.10460251046021307 0.013561533180675767 0.10460251046021307 0.013561533180675767 0.09740931162909823
+0.10251046025100796 0.01695191647584471 0.10251046025100796 0.01695191647584471 0.09817827010537401
+0.02712306636135114 0.09623430962343077 0.02712306636135114 0.09623430962343077 0.09925996374173873
+0.10041841004124115 0.020342299770619177 0.10041841004124115 0.020342299770619177 0.09915740267297345
+0.09832635982739386 0.02373268306236384 0.09832635982739386 0.02373268306236384 0.10028863376849184
+0.09623430960158696 0.027123066344866345 0.09623430960158696 0.02712306634486634 0.10151797803385713
+0.03051344965652003 0.09414225941422572 0.03051344965652003 0.09414225941422572 0.10089897255420366
+0.09414225936187078 0.030513449616183574 0.09414225936187078 0.030513449616183574 0.10279668328585322
+0.03390383295168891 0.0920502092050206 0.03390383295168891 0.0920502092050206 0.10249703176567859
+0.09205020913711764 0.03390383289871675 0.09205020913711764 0.03390383289871674 0.10408177445047632
+0.03729421624685773 0.08995815899581545 0.03729421624685773 0.08995815899581545 0.10402223456633884
+0.0899581589957773 0.03729421624685836 0.0899581589957773 0.03729421624685836 0.10533614020885367
+0.04068459954202654 0.0878661087866102 0.04068459954202653 0.0878661087866102 0.10544632207991857
+0.0878661087865722 0.0406845995420273 0.0878661087865722 0.0406845995420273 0.10652830151399138
+0.044074715850663665 0.08577365677062125 0.044074715850663665 0.08577365677062125 0.10674534604403096
+0.08577405857736708 0.04407498283719624 0.08577405857736708 0.04407498283719624 0.10763198217922108
+0.04746376521785228 0.08367893991775677 0.04746376521785228 0.08367893991775677 0.10790029451517395
+0.08368316712165863 0.047465916993141205 0.08368316712165863 0.047465916993141205 0.10862584508857269
+0.050851479525621024 0.08158208997837892 0.050851479525621024 0.08158208997837892 0.10889733083976856
+0.08159399881150448 0.05085781836529258 0.08159399881150448 0.05085781836529258 0.10949235675112302
+0.05423468085381918 0.07948595341559736 0.05423468085381918 0.07948595341559737 0.10972741795883693
+0.07950803540863627 0.054251115459679665 0.07950803540863627 0.054251115459679665 0.11021734649982683
+0.05761794723051941 0.07738839593084088 0.057617947230519405 0.07738839593084089 0.11038919826300835
+0.07741953124630442 0.05764352028625743 0.07741953124630442 0.05764352028625743 0.1107889303726751
+0.06101428424278362 0.07526459664476672 0.06101428424278362 0.07526459664476672 0.11088807416278197
+0.07534377388315702 0.061041261984196654 0.07534377388315704 0.06104126198419666 0.11119977174057626
+0.06446093821061206 0.07310387615000646 0.06446093821061206 0.07310387615000646 0.11123120050036055
+0.07329316861219168 0.06447998192237314 0.07329316861219169 0.06447998192237314 0.11144627400468597
+0.06817898281423321 0.07094345437118274 0.0681789828142332 0.07094345437118275 0.11143465268084551
+0.0712258122355379 0.06819031784378543 0.07122581223553791 0.06819031784378543 0.11152592389544577
+0.07107956996081127 0.07104749229609703 0.07107956996081127 0.07104749229609703 0.11131422637497346
+0.006780766590337825 0.11297071129707102 0.006780766590337825 0.11297071129707102 0.08932403363524744
+0.010171149885506728 0.110878661087866 0.010171149885506728 0.110878661087866 0.09051299556177274
+0.01356153318067562 0.10878661087866097 0.01356153318067562 0.10878661087866097 0.09186734043896154
+0.016951916475844504 0.10669456066945593 0.016951916475844504 0.10669456066945593 0.09335746567686166
+0.02034229977101338 0.10460251046025089 0.020342299771013376 0.10460251046025089 0.09494998177905413
+0.11297071129703351 0.006780766590337883 0.11297071129703351 0.006780766590337883 0.09840287221432041
+0.1108786610878284 0.010171149885506825 0.1108786610878284 0.010171149885506825 0.09846691749405818
+0.023732683066182248 0.10251046025104583 0.023732683066182248 0.10251046025104583 0.09660918144346219
+0.02712306636135113 0.10041841004184082 0.027123066361351134 0.10041841004184082 0.09829848376699447
+0.10878661087862329 0.013561533180675767 0.10878661087862329 0.013561533180675767 0.09885862249898852
+0.10669456066941818 0.01695191647584471 0.10669456066941818 0.01695191647584471 0.0995180041441595
+0.10460251046007411 0.020342299770917813 0.10460251046007411 0.020342299770917813 0.10038489202943822
+0.030513449656520007 0.09832635983263581 0.030513449656520007 0.09832635983263581 0.09998177842618929
+0.10251046024959308 0.02373268306516102 0.10251046024959308 0.02373268306516102 0.10140155042473674
+0.10041841003531453 0.02712306635651256 0.10041841003531453 0.02712306635651256 0.10251454500695055
+0.09832635981571759 0.03051344964364681 0.09832635981571759 0.03051344964364681 0.10367588813400601
+0.03390383295168891 0.09623430962343076 0.03390383295168891 0.09623430962343076 0.10162462393071559
+0.09623430959985936 0.033903832933475785 0.09623430959985936 0.033903832933475785 0.10484357319461113
+0.037294216246857796 0.09414225941422566 0.037294216246857796 0.09414225941422566 0.10319527868597077
+0.09414225941418752 0.03729421624685836 0.09414225941418752 0.03729421624685836 0.1059816393218538
+0.04068459322147152 0.09205019949504784 0.04068459322147152 0.09205019949504784 0.10466556118499996
+0.09205020920498241 0.0406845995420273 0.09205020920498241 0.0406845995420273 0.10705990657091824
+0.0440748606397962 0.0899579712696772 0.0440748606397962 0.0899579712696772 0.10601154911763999
+0.0899581589957773 0.04407498283719624 0.0899581589957773 0.04407498283719624 0.10805350353718883
+0.04746434499707655 0.08786456876059161 0.04746434499707655 0.08786456876059161 0.10721416911537963
+0.0878661087865722 0.04746536613236518 0.0878661087865722 0.04746536613236518 0.10894228448583178
+0.05085222360561017 0.08576852430486208 0.05085222360561017 0.08576852430486208 0.10825969793447597
+0.08577405857736708 0.050855749427534125 0.08577405857736708 0.050855749427534125 0.10971020428751092
+0.05423798685033669 0.08366993378791293 0.0542379868503367 0.08366993378791293 0.10913972025069225
+0.08368508291305282 0.05424743538969554 0.08368508291305282 0.05424743538969554 0.11034500481262181
+0.05761693996355879 0.08157193217222218 0.05761693996355879 0.08157193217222218 0.10985075525399925
+0.08159886304831326 0.057637306850955417 0.08159886304831326 0.057637306850955417 0.11083603998323623
+0.060994990678337475 0.07944962197628257 0.060994990678337475 0.07944962197628257 0.11040063061129402
+0.07952830941823608 0.061025211541317737 0.07952830941823608 0.061025211541317737 0.11117639061259411
+0.06436516753481897 0.07729416016650742 0.06436516753481897 0.07729416016650742 0.11079807853736705
+0.07752005067190855 0.06441546051843806 0.07752005067190855 0.06441546051843806 0.11135810604061407
+0.06767842459726137 0.0750584904307396 0.06767842459726137 0.0750584904307396 0.11106316076119653
+0.07558058412778118 0.06782964311177415 0.07558058412778118 0.06782964311177415 0.11137605700041871
+0.07098157363978219 0.07356719794090749 0.07098157363978219 0.07356719794090749 0.11110146185443427
+0.0738327819796023 0.07118104013331195 0.0738327819796023 0.07118104013331195 0.11121196955551703
+0.006780766590337835 0.11715481171548103 0.006780766590337835 0.11715481171548103 0.08797768421236775
+0.01017114988550674 0.11506276150627602 0.01017114988550674 0.11506276150627602 0.08919365843577161
+0.013561533180675635 0.11297071129707102 0.013561533180675633 0.11297071129707102 0.09057483482414509
+0.016951916475844524 0.11087866108786598 0.016951916475844524 0.110878661087866 0.0920916149855303
+0.020342299771013414 0.10878661087866093 0.020342299771013414 0.10878661087866093 0.09371077904157582
+0.02373268306618229 0.10669456066945589 0.02373268306618229 0.10669456066945589 0.09539689306487377
+0.11715481171544373 0.006780766590337883 0.11715481171544373 0.006780766590337883 0.10025420759456095
+0.11506276150623862 0.010171149885506825 0.11506276150623862 0.010171149885506825 0.10020793126191514
+0.11297071129703351 0.013561533180675767 0.11297071129703351 0.013561533180675767 0.1004855261565233
+0.027123066361351155 0.10460251046025083 0.027123066361351155 0.10460251046025083 0.09711369280771648
+0.030513449656519996 0.10251046025104582 0.03051344965652 0.10251046025104582 0.09882537472158136
+0.11087866108782839 0.01695191647584471 0.11087866108782839 0.01695191647584471 0.10102673088173987
+0.10878661087859025 0.02034229977099124 0.10878661087859025 0.02034229977099124 0.101771261999699
+0.10669456066905159 0.023732683065921908 0.10669456066905159 0.023732683065921908 0.1026614776750387
+0.033903832951688875 0.10041841004184082 0.03390383295168887 0.10041841004184082 0.10049775254265804
+0.10460251045838281 0.027123066360004753 0.1046025104583828 0.027123066360004753 0.10364427740277478
+0.10251046024584198 0.03051344965262524 0.10251046024584198 0.03051344965262524 0.1046722678151951
+0.10041841003401691 0.0339038329457191 0.1004184100340169 0.0339038329457191 0.10570430246830327
+0.03729421624685775 0.09832635983263585 0.03729421624685775 0.09832635983263584 0.10209926043368422
+0.09832635983259774 0.03729421624685836 0.09832635983259774 0.03729421624685836 0.10670553584316254
+0.04068459954202665 0.09623430962343077 0.04068459954202664 0.09623430962343077 0.10360179979093205
+0.09623430962339263 0.0406845995420273 0.09623430962339263 0.0406845995420273 0.1076471321491612
+0.044074945967290564 0.09414220277271847 0.044074945967290564 0.09414220277271847 0.10498144187907836
+0.09414225941418752 0.04407498283719624 0.09414225941418752 0.04407498283719624 0.10850575246096088
+0.047464959627031504 0.09204958470992707 0.047464959627031504 0.09204958470992707 0.10621903732381845
+0.09205020920498241 0.04746536613236518 0.09205020920498241 0.04746536613236518 0.10926291997544736
+0.05085385119401142 0.08995535368472828 0.05085385119401142 0.08995535368472828 0.10730073150479887
+0.0899581589957773 0.050855749427534125 0.0899581589957773 0.050855749427534125 0.10990434003569104
+0.05424040558659605 0.0878589905396822 0.05424040558659605 0.0878589905396822 0.10821804747040593
+0.0878661087865722 0.054246132722703067 0.0878661087865722 0.054246132722703067 0.11041923585948483
+0.05762202823172508 0.08575972620850549 0.05762202823172508 0.08575972620850549 0.10896832970961058
+0.08577405857736708 0.05763651601787201 0.08577405857736708 0.05763651601787201 0.11079976967574727
+0.06099618563734893 0.08365082116598778 0.06099618563734893 0.08365082116598778 0.10955645946367731
+0.08370591511494342 0.06102020144609128 0.08370591511494342 0.06102020144609128 0.111038584548124
+0.06435947130701307 0.08152137400981888 0.06435947130701307 0.08152137400981886 0.1099940061938763
+0.081653952200737 0.06439838941497834 0.081653952200737 0.06439838941497834 0.11113261423866035
+0.06768289617290624 0.07936700178743028 0.06768289617290624 0.07936700178743028 0.11029693666678404
+0.07973555470194844 0.06772513188231201 0.07973555470194844 0.06772513188231201 0.11107230630324803
+0.07099323222272468 0.07744902881265202 0.07099323222272468 0.07744902881265202 0.11043102723844304
+0.07798675336463186 0.07095459745328331 0.07798675336463186 0.07095459745328331 0.11085291979478855
+0.0741621764320558 0.07555835758311097 0.0741621764320558 0.07555835758311097 0.11047859948837101
+0.07692715722688542 0.07388877084272155 0.07692715722688542 0.07388877084272155 0.11044186014004012
+0.006780766590337848 0.12133891213389109 0.006780766590337848 0.12133891213389107 0.08655688867223142
+0.010171149885506756 0.11924686192468605 0.010171149885506756 0.11924686192468605 0.08777826900405312
+0.013561533180675656 0.11715481171548103 0.013561533180675656 0.11715481171548103 0.08916537297346888
+0.016951916475844545 0.11506276150627602 0.016951916475844545 0.11506276150627602 0.09068859633807465
+0.020342299771013435 0.11297071129707098 0.02034229977101343 0.112970711297071 0.09231488522344916
+0.023732683066182324 0.11087866108786597 0.023732683066182324 0.11087866108786597 0.09400908150811192
+0.02712306636135121 0.10878661087866089 0.02712306636135121 0.10878661087866089 0.09573524497904838
+0.12133891213385395 0.006780766590337883 0.12133891213385395 0.006780766590337883 0.10231012652886427
+0.11924686192464884 0.010171149885506825 0.11924686192464884 0.010171149885506825 0.10215142200089807
+0.11715481171544373 0.013561533180675767 0.11715481171544373 0.013561533180675767 0.10231191360733183
+0.11506276150623862 0.01695191647584471 0.11506276150623862 0.01695191647584471 0.10273080110896814
+0.030513449656520062 0.10669456066945583 0.030513449656520062 0.10669456066945583 0.09745788941444856
+0.0339038329516889 0.10460251046025082 0.03390383295168891 0.10460251046025082 0.09914309514012702
+0.11297071129702586 0.02034229977100857 0.11297071129702586 0.02034229977100857 0.10334739702775216
+0.11087866108773703 0.023732683066118542 0.11087866108773703 0.023732683066118542 0.10410385287304234
+0.10878661087812924 0.027123066360992733 0.10878661087812924 0.027123066360992733 0.10494711323052937
+0.037294216246857706 0.10251046025104582 0.0372942162468577 0.10251046025104582 0.10075948145331011
+0.10669456066790904 0.030513449655395566 0.10669456066790904 0.030513449655395566 0.10583012252637349
+0.10460251045775276 0.033903832949821126 0.10460251045775278 0.033903832949821126 0.10671238869787246
+0.10251046025100796 0.03729421624685836 0.10251046025100796 0.03729421624685836 0.10756004217665295
+0.040684599542026564 0.10041841004184086 0.04068459954202657 0.10041841004184086 0.1022790368128917
+0.10041841004180285 0.0406845995420273 0.10041841004180285 0.0406845995420273 0.1083455306144182
+0.04407498283719538 0.09832635983263589 0.04407498283719538 0.09832635983263589 0.10367781293563501
+0.09832635983259774 0.04407498283719624 0.09832635983259774 0.04407498283719624 0.10904707392788633
+0.04746527518659877 0.09623416990771318 0.04746527518659877 0.09623416990771318 0.10493652290914905
+0.09623430962339263 0.04746536613236518 0.09623430962339263 0.04746536613236518 0.10964798142713704
+0.05085507548743873 0.09414123444993072 0.05085507548743873 0.09414123444993072 0.10604109611384217
+0.09414225941418752 0.050855749427534125 0.09414225941418752 0.050855749427534125 0.11013591018697445
+0.054243578468227 0.09204676725762317 0.054243578468227006 0.09204676725762317 0.10698298597223403
+0.09205020920498241 0.054246132722703067 0.09205020920498241 0.054246132722703067 0.11050212548239226
+0.05762842616382172 0.089949754828484 0.05762842616382171 0.089949754828484 0.10775945435396962
+0.0899581589957773 0.05763651601787201 0.0899581589957773 0.05763651601787201 0.11074081302956264
+0.061006574322379055 0.08784675414124703 0.061006574322379055 0.08784675414124703 0.10837464066283668
+0.0878661087865722 0.06102689931304095 0.0878661087865722 0.06102689931304095 0.11084848886034147
+0.06437577227255485 0.08573606897110547 0.06437577227255485 0.08573606897110547 0.10883801280625334
+0.08581882438987831 0.06439691204424673 0.08581882438987831 0.06439691204424673 0.11082047008877073
+0.06774213250639256 0.08362771543805984 0.06774213250639256 0.08362771543805984 0.10915996837878834
+0.08381998154927735 0.06774094967969747 0.08381998154927735 0.06774094967969747 0.11065550819762608
+0.07108727260908183 0.08157165254084398 0.07108727260908183 0.08157165254084398 0.10934867557291528
+0.08194623926073939 0.07101654719102364 0.08194623926073939 0.07101654719102364 0.11035100745843214
+0.07436452689706612 0.07957216445709317 0.07436452689706612 0.07957216445709316 0.10943193795297411
+0.08010616461853606 0.07417865479675995 0.08010616461853605 0.07417865479675995 0.10993139802868147
+0.07798297008429987 0.07757295332548052 0.07798297008429987 0.07757295332548052 0.10941494681457231
+0.12552301255226417 0.006780766590337883 0.12552301255226417 0.006780766590337883 0.10457614171724529
+0.006780766590337861 0.12552301255230117 0.006780766590337862 0.12552301255230117 0.08510671320666931
+0.010171149885506768 0.12343096234309613 0.010171149885506768 0.12343096234309613 0.08631001205065171
+0.013561533180675675 0.12133891213389104 0.013561533180675675 0.12133891213389104 0.08768030814500664
+0.01695191647584457 0.11924686192468603 0.01695191647584457 0.11924686192468603 0.08918798390153963
+0.020342299771013452 0.11715481171548102 0.020342299771013452 0.11715481171548102 0.09080014985144486
+0.023732683066182342 0.11506276150627599 0.023732683066182342 0.11506276150627599 0.09248192822258877
+0.02712306636135124 0.11297071129707097 0.02712306636135124 0.11297071129707097 0.09419771276312422
+0.030513449656520125 0.11087866108786588 0.030513449656520125 0.11087866108786588 0.09591234819308558
+0.12343096234305906 0.010171149885506825 0.12343096234305906 0.010171149885506825 0.10430719118050628
+0.12133891213385395 0.013561533180675767 0.12133891213385395 0.013561533180675767 0.10435208303624088
+0.11924686192464884 0.01695191647584471 0.11924686192464884 0.01695191647584471 0.10464921595022876
+0.11715481171544202 0.020342299771012526 0.11715481171544202 0.020342299771012526 0.10513718898278836
+0.033903832951688986 0.10878661087866086 0.03390383295168898 0.10878661087866086 0.09759219625345393
+0.0372942162468578 0.10669456066945582 0.0372942162468578 0.10669456066945582 0.09920607438775776
+0.11506276150621657 0.023732683066167336 0.11506276150621657 0.023732683066167336 0.10575760906031996
+0.11297071129690502 0.027123066361259374 0.11297071129690502 0.027123066361259374 0.1064571198678506
+0.11087866108740509 0.030513449656208513 0.11087866108740509 0.030513449656208513 0.10718867050081649
+0.04068459954202659 0.1046025104602508 0.040684599542026585 0.1046025104602508 0.10072606610550021
+0.10878661087787833 0.0339038329511293 0.10878661087787833 0.0339038329511293 0.10791212341879487
+0.10669456066941818 0.03729421624685836 0.10669456066941818 0.03729421624685836 0.10859433745117782
+0.10460251046021307 0.0406845995420273 0.10460251046021307 0.0406845995420273 0.10920886540023989
+0.0440749828371953 0.1025104602510458 0.0440749828371953 0.1025104602510458 0.10212820922378042
+0.10251046025100796 0.04407498283719624 0.10251046025100796 0.04407498283719624 0.10973539121123833
+0.04746536613236411 0.10041841004184099 0.04746536613236411 0.100418410041841 0.10339307049032702
+0.10041841004180285 0.04746536613236518 0.10041841004180285 0.04746536613236518 0.11015900971728589
+0.050855618978620946 0.09832615942931523 0.050855618978620946 0.09832615942931523 0.10450628411457218
+0.09832635983259774 0.050855749427534125 0.09832635983259774 0.050855749427534125 0.11046942958668317
+0.05424534340355732 0.0962331446696596 0.05424534340355732 0.0962331446696596 0.10545901794820223
+0.09623430962339263 0.054246132722703067 0.09623430962339263 0.054246132722703067 0.11066016062475852
+0.057633297796654576 0.09413839483793747 0.05763329779665458 0.09413839483793747 0.10624831738381603
+0.09414225941418752 0.05763651601787201 0.09414225941418752 0.05763651601787201 0.11072773077535937
+0.061016369500667106 0.09203957815507424 0.06101636950066711 0.09203957815507424 0.10687788476508377
+0.09205020920498241 0.06102689931304095 0.09205020920498241 0.06102689931304095 0.11067096409968569
+0.06439110777352847 0.0899353306240674 0.06439110777352847 0.0899353306240674 0.1073573671210989
+0.0899581589957773 0.06441728260820989 0.0899581589957773 0.06441728260820989 0.11049033421088118
+0.06775389369423179 0.08783183975510583 0.06775389369423179 0.08783183975510583 0.1076997302595447
+0.08793273643874407 0.06777105193651285 0.08793273643874407 0.06777105193651285 0.11018517055277154
+0.07108723782863328 0.08575023509538886 0.07108723782863328 0.08575023509538886 0.10792033487390584
+0.08596508696783715 0.07108992732855025 0.08596508696783715 0.07108992732855025 0.1097576630137143
+0.07437140365673639 0.08368807300094033 0.07437140365673639 0.08368807300094033 0.10804895430617324
+0.08406389436220545 0.07441002200553891 0.08406389436220545 0.07441002200553891 0.10920069083212947
+0.07759010637749802 0.08159292147953112 0.07759010637749802 0.08159292147953112 0.10813573785154772
+0.08217580082947017 0.07770465646976887 0.08217580082947017 0.07770465646976887 0.10854620015318063
+0.08054950200007421 0.08053581103505614 0.08054950200007421 0.08053581103505614 0.10784766365540603
+0.1297071129706744 0.006780766590337883 0.1297071129706744 0.006780766590337883 0.10704983171025238
+0.12761506276146928 0.010171149885506825 0.12761506276146928 0.010171149885506825 0.10667691827214763
+0.006780766590337866 0.12970711297071122 0.006780766590337867 0.12970711297071122 0.08367650370230177
+0.010171149885506787 0.1276150627615062 0.010171149885506785 0.12761506276150622 0.08483660431863148
+0.013561533180675699 0.1255230125523011 0.013561533180675699 0.1255230125523011 0.08616572463600047
+0.016951916475844597 0.12343096234309608 0.016951916475844597 0.12343096234309607 0.08763423353437229
+0.020342299771013483 0.12133891213389104 0.020342299771013483 0.12133891213389104 0.08920941099007505
+0.023732683066182366 0.11924686192468602 0.023732683066182366 0.11924686192468602 0.09085667092320411
+0.027123066361351256 0.11715481171548099 0.027123066361351256 0.11715481171548099 0.09254075841588227
+0.030513449656520128 0.11506276150627597 0.03051344965652013 0.11506276150627597 0.09422687100801354
+0.0067807665903378694 0.13389121338912124 0.0067807665903378694 0.13389121338912124 0.08231925986461636
+0.03390383295168901 0.11297071129707092 0.03390383295168901 0.11297071129707092 0.09588167566545831
+0.12552301255226417 0.013561533180675767 0.12552301255226417 0.013561533180675767 0.10661208230807188
+0.12343096234305906 0.01695191647584471 0.12343096234305906 0.01695191647584471 0.1067926776100374
+0.12133891213385355 0.02034229977101341 0.12133891213385355 0.02034229977101341 0.10715628443703162
+0.11924686192464364 0.023732683066179056 0.11924686192464364 0.023732683066179056 0.10764361316982478
+0.037294216246857886 0.11087866108786588 0.037294216246857886 0.11087866108786588 0.09747421038156939
+0.040684599542026724 0.10878661087866077 0.040684599542026724 0.10878661087866077 0.09897667095848511
+0.11715481171541135 0.02712306636132859 0.11715481171541135 0.02712306636132859 0.10820062576984435
+0.11506276150612404 0.030513449656436962 0.11506276150612404 0.030513449656436962 0.10877988582658159
+0.11297071129681652 0.03390383295152787 0.11297071129681653 0.03390383295152787 0.1093412311702839
+0.044074982837195485 0.10669456066945575 0.044074982837195485 0.10669456066945575 0.10036508962187972
+0.11087866108782839 0.037294216246858344 0.11087866108782839 0.03729421624685835 0.10985190140797042
+0.10878661087862329 0.0406845995420273 0.10878661087862329 0.0406845995420273 0.11028625836364293
+0.10669456066941818 0.04407498283719624 0.10669456066941818 0.04407498283719624 0.11062522411759497
+0.04746536613236416 0.10460251046025078 0.04746536613236416 0.10460251046025078 0.10161991384047332
+0.10460251046021307 0.04746536613236518 0.10460251046021307 0.04746536613236518 0.11085554021524067
+0.05085574942753266 0.10251046025104593 0.05085574942753266 0.10251046025104593 0.10272649236430141
+0.10251046025100796 0.050855749427534125 0.10251046025100796 0.050855749427534125 0.11096892969796206
+0.05424599176547781 0.10041819349136905 0.05424599176547782 0.10041819349136905 0.10367557431114315
+0.10041841004180285 0.054246132722703067 0.10041841004180285 0.054246132722703067 0.11096122428853201
+0.05763564431923351 0.09832508912044674 0.05763564431923351 0.09832508912044674 0.10446374938818452
+0.09832635983259774 0.05763651601787201 0.09832635983259774 0.05763651601787201 0.11083150300015109
+0.0610228697917606 0.09622953527151856 0.0610228697917606 0.09622953527151856 0.105094104202499
+0.09623430962339263 0.06102689931304095 0.09623430962339263 0.06102689931304095 0.11058127349408335
+0.06440438460618961 0.09412949127673632 0.0644043846061896 0.09412949127673632 0.10557640102209055
+0.09414225941418752 0.06441728260820989 0.09414225941418752 0.06441728260820989 0.11021370486903682
+0.0677739700908545 0.09202749037205134 0.0677739700908545 0.09202749037205134 0.10592523897593793
+0.09205020920498241 0.06780766590337883 0.09205020920498241 0.06780766590337883 0.10973284925681238
+0.07112140999279219 0.08993357256394353 0.07112140999279219 0.08993357256394353 0.10615895569050716
+0.09002892333722312 0.07115320349103078 0.09002892333722312 0.07115320349103078 0.10914478686074643
+0.0744265124608485 0.08785684785230354 0.07442651246084851 0.08785684785230354 0.10630433603666524
+0.08806779538252364 0.07452166712358807 0.08806779538252364 0.07452166712358808 0.10843407769494222
+0.07765377775432933 0.08581215882122221 0.07765377775432934 0.08581215882122221 0.10639417936950522
+0.08617188558274257 0.07789925165607096 0.08617188558274257 0.07789925165607096 0.10759978111096598
+0.08067859774837333 0.08388687020744919 0.08067859774837333 0.08388687020744919 0.10645253939070386
+0.0841803883289629 0.08163124599970673 0.0841803883289629 0.08163124599970673 0.10654454821834523
+0.1338912133890846 0.006780766590337883 0.1338912133890846 0.006780766590337883 0.10972117939489534
+0.1317991631798795 0.010171149885506825 0.1317991631798795 0.010171149885506825 0.10925427065460057
+0.1297071129706744 0.013561533180675767 0.1297071129706744 0.013561533180675767 0.10908956372236554
+0.010171149885506797 0.13179916317991622 0.010171149885506797 0.13179916317991622 0.08340984264601949
+0.013561533180675711 0.12970711297071122 0.013561533180675711 0.12970711297071122 0.08467213808883099
+0.01695191647584463 0.12761506276150617 0.01695191647584463 0.12761506276150617 0.08607651411759597
+0.020342299771013525 0.1255230125523011 0.020342299771013525 0.1255230125523011 0.08759043726284498
+0.023732683066182408 0.12343096234309603 0.023732683066182408 0.12343096234309603 0.0891796368365484
+0.027123066361351287 0.12133891213389097 0.027123066361351287 0.12133891213389099 0.09080923987693636
+0.030513449656520128 0.11924686192468596 0.03051344965652013 0.11924686192468596 0.09244483301439183
+0.03390383295168897 0.11715481171548095 0.03390383295168897 0.11715481171548094 0.09405342772836829
+0.006780766590337873 0.13807531380753132 0.006780766590337872 0.13807531380753132 0.08109059217812888
+0.010171149885506799 0.13598326359832624 0.010171149885506799 0.13598326359832624 0.08208478188285494
+0.03729421624685788 0.11506276150627594 0.03729421624685788 0.11506276150627594 0.09560432121828999
+0.12761506276146928 0.01695191647584471 0.12761506276146928 0.01695191647584471 0.10916316179760009
+0.12552301255226406 0.020342299771013598 0.12552301255226406 0.020342299771013598 0.1094113486639734
+0.12343096234305788 0.02373268306618179 0.12343096234305788 0.02373268306618179 0.1097735987684705
+0.12133891213384601 0.02712306636134598 0.121338912133846 0.02712306636134598 0.11019480494032476
+0.04068459954202676 0.11297071129707091 0.04068459954202675 0.11297071129707091 0.0970698553094486
+0.04407498283719564 0.11087866108786582 0.04407498283719564 0.11087866108786582 0.09842608087505837
+0.11924686192461877 0.030513449656498808 0.11924686192461877 0.030513449656498808 0.11062672615788414
+0.11715481171538267 0.033903832951644425 0.11715481171538267 0.033903832951644425 0.1110287431101893
+0.11506276150623862 0.03729421624685836 0.11506276150623862 0.03729421624685836 0.11136804997609552
+0.04746536613236443 0.1087866108786607 0.04746536613236443 0.1087866108786607 0.09965333626945756
+0.11297071129703351 0.0406845995420273 0.11297071129703351 0.0406845995420273 0.11161941833362814
+0.1108786610878284 0.04407498283719624 0.1108786610878284 0.04407498283719624 0.11176465707931617
+0.10878661087862329 0.04746536613236518 0.10878661087862329 0.04746536613236518 0.11179187185628038
+0.05085574942753304 0.1066945606694557 0.050855749427533035 0.1066945606694557 0.10073674646143303
+0.10669456066941818 0.050855749427534125 0.10669456066941818 0.050855749427534125 0.11169460601574087
+0.05424613272270149 0.10460251046025082 0.05424613272270149 0.10460251046025082 0.1016666460416455
+0.10460251046021307 0.054246132722703067 0.10460251046021307 0.054246132722703067 0.11147092625963574
+0.057636367318262244 0.10251022236911372 0.05763636731826225 0.10251022236911371 0.10243906132324633
+0.10251046025100796 0.05763651601787201 0.10251046025100796 0.05763651601787201 0.11112250097064265
+0.061025902434145934 0.10041684656994475 0.06102590243414594 0.10041684656994475 0.10305623578004848
+0.10041841004180285 0.06102689931304095 0.10041841004180285 0.06102689931304095 0.1106537072881648
+0.0644126115823263 0.09832057702243284 0.0644126115823263 0.09832057702243284 0.10352730291009356
+0.09832635983259774 0.06441728260820989 0.09832635983259774 0.06441728260820989 0.11007079273888375
+0.06779247546015159 0.09622074884759735 0.06779247546015159 0.09622074884759735 0.10386761122500876
+0.09623430962339263 0.06780766590337883 0.09623430962339263 0.06780766590337883 0.10938110920896106
+0.07115533694138967 0.09412308880489657 0.07115533694138966 0.09412308880489657 0.10409715526061279
+0.09414225941418752 0.07119804919854777 0.09414225941418752 0.07119804919854777 0.10859246329740048
+0.07449567356678441 0.09203408697699256 0.07449567356678442 0.09203408697699256 0.10424005670839674
+0.09214312840228407 0.07455478928518275 0.09214312840228407 0.07455478928518276 0.10771023109447646
+0.07780392958875838 0.08995479881613455 0.07780392958875838 0.08995479881613455 0.10432936736053265
+0.0901967569777169 0.07790208659780935 0.0901967569777169 0.07790208659780935 0.10673363897113898
+0.08105211669376133 0.0878934415709745 0.08105211669376133 0.0878934415709745 0.10440235527626017
+0.0883466786429347 0.08122582953233017 0.0883466786429347 0.08122582953233017 0.10566286413833524
+0.08427190239924032 0.08594020596185913 0.08427190239924032 0.08594020596185913 0.10444595705853561
+0.08705066639458935 0.0842318331824736 0.08705066639458935 0.0842318331824736 0.10448415462048337
+0.13807531380749483 0.006780766590337883 0.13807531380749483 0.006780766590337883 0.11257330727325755
+0.13598326359828972 0.010171149885506825 0.13598326359828972 0.010171149885506825 0.11202546184989272
+0.1338912133890846 0.013561533180675767 0.1338912133890846 0.013561533180675767 0.11177413495499024
+0.1317991631798795 0.01695191647584471 0.1317991631798795 0.01695191647584471 0.1117540276659686
+0.013561533180675718 0.13389121338912122 0.013561533180675716 0.13389121338912122 0.08325387402391193
+0.016951916475844635 0.13179916317991622 0.016951916475844635 0.13179916317991622 0.08456826553263791
+0.02034229977101355 0.1297071129707112 0.02034229977101355 0.12970711297071122 0.08599564372473024
+0.02373268306618245 0.1276150627615061 0.02373268306618245 0.1276150627615061 0.08750209489036598
+0.027123066361351346 0.125523012552301 0.027123066361351342 0.125523012552301 0.08905317795389893
+0.03051344965652021 0.12343096234309597 0.030513449656520208 0.12343096234309599 0.0906149259192865
+0.03390383295168905 0.12133891213389093 0.03390383295168905 0.12133891213389093 0.09215475673463235
+0.03729421624685788 0.1192468619246859 0.03729421624685788 0.1192468619246859 0.0936422894526653
+0.006780766590337877 0.14225941422594138 0.006780766590337877 0.14225941422594138 0.08004717263924889
+0.010171149885506806 0.14016736401673632 0.010171149885506806 0.14016736401673632 0.08091843917704696
+0.013561533180675725 0.13807531380753124 0.013561533180675725 0.13807531380753124 0.08196801337110893
+0.04068459954202672 0.11715481171548092 0.04068459954202672 0.11715481171548092 0.09505007041659723
+0.12970711297067436 0.02034229977101364 0.12970711297067436 0.02034229977101364 0.11189989850149738
+0.12761506276146903 0.023732683066182415 0.12761506276146903 0.023732683066182415 0.11214968514206546
+0.12552301255226225 0.027123066361350225 0.12552301255226225 0.027123066361350225 0.11244684727981125
+0.12343096234305136 0.030513449656515007 0.12343096234305136 0.030513449656515007 0.1127419240380122
+0.044074982837195624 0.11506276150627592 0.044074982837195624 0.11506276150627592 0.09635421820669766
+0.04746536613236449 0.11297071129707088 0.04746536613236449 0.11297071129707088 0.09753499634599395
+0.1213389121338373 0.03390383295167727 0.1213389121338373 0.03390383295167727 0.11299338701891194
+0.11924686192464884 0.03729421624685836 0.11924686192464884 0.03729421624685836 0.11316791313887152
+0.11715481171544373 0.0406845995420273 0.11715481171544373 0.0406845995420273 0.11324021083361498
+0.05085574942753333 0.11087866108786582 0.05085574942753333 0.11087866108786582 0.0985773204342879
+0.11506276150623862 0.04407498283719624 0.11506276150623862 0.04407498283719624 0.11319252241290002
+0.11297071129703351 0.04746536613236518 0.11297071129703351 0.04746536613236518 0.1130139055824924
+0.1108786610878284 0.050855749427534125 0.1108786610878284 0.050855749427534125 0.11269937592568942
+0.05424613272270201 0.10878661087866065 0.05424613272270201 0.10878661087866064 0.09947120237501851
+0.10878661087862329 0.054246132722703067 0.10878661087862329 0.054246132722703067 0.11224897344292177
+0.057636516017870364 0.10669456066945567 0.057636516017870364 0.10669456066945567 0.10021212921725285
+0.10669456066941818 0.05763651601787201 0.10669456066941818 0.05763651601787201 0.11166680158308862
+0.06102675290920734 0.10460223052005647 0.06102675290920734 0.10460223052005647 0.10080155273322673
+0.10460251046021307 0.06102689931304095 0.10460251046021307 0.06102689931304095 0.11096007660864816
+0.0644162559069705 0.10250860617882081 0.06441625590697052 0.10250860617882081 0.10124747299628507
+0.10251046025100796 0.06441728260820989 0.10251046025100796 0.06441728260820989 0.11013821831824523
+0.06780278008155263 0.1004123905543222 0.06780278008155262 0.1004123905543222 0.10156473145211535
+0.10041841004180285 0.06780766590337883 0.10041841004180285 0.06780766590337883 0.10921201183212496
+0.07118080177144637 0.0983139019906164 0.07118080177144637 0.0983139019906164 0.10177453492447318
+0.09832635983259774 0.07119804919854777 0.09832635983259774 0.07119804919854777 0.10819288709518492
+0.07455016002033146 0.09621727754761256 0.07455016002033145 0.09621727754761256 0.10190041269264845
+0.09623430962339263 0.07458843249371672 0.09623430962339263 0.07458843249371672 0.10709245332192201
+0.07789649427239906 0.09413158876846592 0.07789649427239907 0.09413158876846593 0.10197246643739076
+0.09424895448487308 0.07793518028402252 0.09424895448487308 0.07793518028402252 0.10592238571778605
+0.08124044381160095 0.09205562712558339 0.08124044381160095 0.09205562712558339 0.10201918988277688
+0.09232820795002508 0.08127568966775242 0.09232820795002507 0.08127568966775243 0.10467339908304829
+0.08454870899442535 0.09005225043436706 0.08454870899442535 0.09005225043436706 0.10205478378881645
+0.09045832265769478 0.08456785206225376 0.09045832265769478 0.08456785206225376 0.10336629869937754
+0.08812093623532968 0.08794559437618366 0.08812093623532968 0.08794559437618366 0.10214101255912854
+0.14225941422590505 0.006780766590337883 0.14225941422590505 0.006780766590337883 0.11558351177463953
+0.14016736401669994 0.010171149885506825 0.14016736401669994 0.010171149885506825 0.11497017205676792
+0.13807531380749483 0.013561533180675767 0.13807531380749483 0.013561533180675767 0.11464813730685973
+0.13598326359828972 0.01695191647584471 0.13598326359828972 0.01695191647584471 0.11455061970737561
+0.1338912133890846 0.02034229977101365 0.1338912133890846 0.02034229977101365 0.11461068850233165
+0.01695191647584464 0.13598326359832624 0.01695191647584464 0.13598326359832624 0.08316636965003132
+0.020342299771013556 0.13389121338912122 0.020342299771013556 0.13389121338912122 0.08448146985118421
+0.02373268306618247 0.13179916317991622 0.02373268306618247 0.13179916317991622 0.08587982029122988
+0.027123066361351377 0.1297071129707111 0.027123066361351377 0.1297071129707111 0.0873274857553218
+0.030513449656520267 0.12761506276150605 0.030513449656520263 0.12761506276150605 0.08879102977725715
+0.03390383295168913 0.12552301255230094 0.03390383295168913 0.12552301255230094 0.09023836832050068
+0.03729421624685798 0.12343096234309588 0.03729421624685798 0.12343096234309588 0.09163953683606262
+0.0406845995420268 0.12133891213389081 0.0406845995420268 0.12133891213389081 0.09296737823234115
+0.006780766590337882 0.1464435146443514 0.0067807665903378824 0.14644351464435143 0.07924464015881073
+0.010171149885506816 0.1443514644351464 0.010171149885506816 0.14435146443514643 0.07996795226611321
+0.01356153318067574 0.14225941422594132 0.01356153318067574 0.14225941422594132 0.08087280821951172
+0.016951916475844656 0.14016736401673627 0.016951916475844656 0.14016736401673627 0.08192982124140036
+0.04407498283719561 0.11924686192468581 0.04407498283719561 0.11924686192468581 0.09419816223775936
+0.13179916317987944 0.023732683066182553 0.1317991631798794 0.023732683066182553 0.1147645038466547
+0.12970711297067392 0.027123066361351228 0.12970711297067392 0.027123066361351228 0.11495377879799118
+0.12761506276146736 0.030513449656519125 0.12761506276146736 0.030513449656519125 0.11512745349659186
+0.12552301255225976 0.033903832951686225 0.12552301255225976 0.033903832951686225 0.11524265558253348
+0.04746536613236439 0.11715481171548092 0.0474653661323644 0.11715481171548092 0.0953121461142946
+0.05085574942753329 0.11506276150627599 0.05085574942753329 0.11506276150627599 0.09629408380567657
+0.12343096234305906 0.03729421624685835 0.12343096234305906 0.03729421624685835 0.11526506656999447
+0.12133891213385395 0.0406845995420273 0.12133891213385395 0.0406845995420273 0.11516882537650001
+0.11924686192464884 0.04407498283719624 0.11924686192464884 0.04407498283719624 0.1149360906779399
+0.054246132722702144 0.11297071129707104 0.054246132722702144 0.11297071129707104 0.09713368621532346
+0.11715481171544373 0.04746536613236518 0.11715481171544373 0.04746536613236518 0.11455636455798736
+0.11506276150623862 0.050855749427534125 0.11506276150623862 0.050855749427534125 0.11402565876096808
+0.11297071129703351 0.054246132722703067 0.11297071129703351 0.054246132722703067 0.11334556601473102
+0.05763651601787095 0.11087866108786588 0.05763651601787095 0.11087866108786588 0.09782602987522622
+0.1108786610878284 0.05763651601787201 0.1108786610878284 0.05763651601787201 0.11252228412999592
+0.061026899313039305 0.10878661087866061 0.061026899313039305 0.10878661087866061 0.09837190486821194
+0.10878661087862329 0.06102689931304095 0.10878661087862329 0.06102689931304095 0.11156563015922692
+0.06441717632352166 0.10669425984764315 0.06441717632352166 0.10669425984764315 0.09877829949545842
+0.10669456066941818 0.06441728260820989 0.10669456066941818 0.06441728260820989 0.11048807538375328
+0.06780679011496224 0.10460065030921196 0.06780679011496225 0.10460065030921196 0.09905893823145616
+0.10460251046021307 0.06780766590337883 0.10460251046021307 0.06780766590337883 0.10930382886065339
+0.07119312720087252 0.1025049263305358 0.07119312720087252 0.1025049263305358 0.0992344955464214
+0.10251046025100796 0.07119804919854777 0.10251046025100796 0.07119804919854777 0.10802799729796331
+0.07457044351895017 0.1004084289538552 0.07457044351895016 0.1004084289538552 0.09933177742108207
+0.10041841004180285 0.07458843249371672 0.10041841004180285 0.07458843249371672 0.10667584429247166
+0.07793552092097557 0.09832049425535776 0.07793552092097557 0.09832049425535776 0.0993771545915713
+0.09832635983259774 0.07797881578888566 0.09832635983259774 0.07797881578888566 0.10526207881576911
+0.0812775999008032 0.09625656096049988 0.0812775999008032 0.09625656096049988 0.09940060504619576
+0.09635303398753885 0.08133311696904237 0.09635303398753885 0.08133311696904237 0.10379811602453
+0.08459977868502534 0.0942352609159477 0.08459977868502534 0.0942352609159477 0.099426790803385
+0.09438599081884207 0.08469538722174869 0.09438599081884207 0.08469538722174869 0.10228373334803074
+0.08788889806660717 0.09231907939465289 0.08788889806660717 0.09231907939465289 0.09945806585673404
+0.09247050985958949 0.08804419574427684 0.09247050985958949 0.08804419574427684 0.10074141130547233
+0.09088754548020248 0.09095573329385281 0.09088754548020248 0.09095573329385281 0.09930619416113261
+0.14644351464431526 0.006780766590337883 0.14644351464431526 0.006780766590337883 0.1187244853832415
+0.14435146443511016 0.010171149885506825 0.14435146443511016 0.010171149885506825 0.11806272055404775
+0.14225941422590505 0.013561533180675767 0.14225941422590505 0.013561533180675767 0.11768774599940346
+0.14016736401669994 0.01695191647584471 0.14016736401669994 0.01695191647584471 0.11753126711585123
+0.13807531380749483 0.02034229977101365 0.13807531380749483 0.02034229977101365 0.11752457351061803
+0.1359832635982897 0.02373268306618258 0.1359832635982897 0.02373268306618258 0.1176018814724125
+0.02034229977101357 0.13807531380753124 0.02034229977101357 0.13807531380753124 0.0831072973894207
+0.023732683066182477 0.13598326359832624 0.023732683066182477 0.13598326359832624 0.08437224611031523
+0.027123066361351384 0.13389121338912122 0.027123066361351384 0.13389121338912122 0.08569133676415362
+0.03051344965652029 0.13179916317991616 0.03051344965652029 0.13179916317991616 0.08703177718092579
+0.03390383295168919 0.12970711297071108 0.03390383295168919 0.12970711297071105 0.08836210715608082
+0.03729421624685808 0.12761506276150597 0.03729421624685808 0.127615062761506 0.08965291145480025
+0.040684599542026946 0.12552301255230083 0.040684599542026946 0.12552301255230083 0.09087746323243455
+0.04407498283719576 0.1234309623430957 0.04407498283719576 0.1234309623430957 0.09201231066069128
+0.006780766590337883 0.15062761506276143 0.006780766590337883 0.15062761506276143 0.07873501430475656
+0.010171149885506823 0.14853556485355643 0.010171149885506823 0.14853556485355643 0.07928819138616726
+0.01356153318067576 0.1464435146443514 0.013561533180675761 0.14644351464435143 0.08002552202630776
+0.01695191647584468 0.14435146443514635 0.01695191647584468 0.14435146443514635 0.0809178169528222
+0.020342299771013594 0.14225941422594132 0.020342299771013594 0.14225941422594132 0.08193379934323088
+0.047465366132364524 0.12133891213389066 0.047465366132364524 0.12133891213389066 0.09303781819585273
+0.13389121338908447 0.027123066361351464 0.13389121338908447 0.027123066361351467 0.11770291481211383
+0.13179916317987903 0.030513449656520152 0.13179916317987903 0.030513449656520152 0.11777469839139933
+0.12970711297067322 0.033903832951688605 0.12970711297067325 0.033903832951688605 0.117772631106547
+0.1276150627614693 0.03729421624685836 0.1276150627614693 0.03729421624685836 0.11766095347994064
+0.05085574942753326 0.11924686192468571 0.05085574942753326 0.11924686192468571 0.0939386704556777
+0.05424613272270195 0.11715481171548106 0.05424613272270195 0.11715481171548105 0.09470434188288669
+0.12552301255226417 0.0406845995420273 0.12552301255226417 0.0406845995420273 0.11741273871101122
+0.12343096234305906 0.04407498283719624 0.12343096234305906 0.04407498283719624 0.11700952792018908
+0.12133891213385395 0.04746536613236518 0.12133891213385395 0.04746536613236518 0.11644071173002868
+0.05763651601787088 0.11506276150627626 0.05763651601787088 0.11506276150627626 0.09532952968917167
+0.11924686192464884 0.050855749427534125 0.11924686192464884 0.050855749427534125 0.11570273917491926
+0.11715481171544373 0.054246132722703067 0.11715481171544373 0.054246132722703067 0.11479821573567413
+0.11506276150623862 0.05763651601787201 0.11506276150623862 0.05763651601787201 0.11373493705836867
+0.0610268993130397 0.11297071129707127 0.06102689931303971 0.11297071129707127 0.09581454110080322
+0.11297071129703351 0.06102689931304095 0.11297071129703351 0.06102689931304095 0.11252489407631976
+0.06441728260820838 0.11087866108786588 0.06441728260820838 0.11087866108786588 0.09616561862298302
+0.1108786610878284 0.06441728260820989 0.1108786610878284 0.06441728260820989 0.11118327842771185
+0.06780761126818952 0.10878633250415222 0.06780761126818952 0.10878633250415222 0.09639538175612615
+0.10878661087862329 0.06780766590337883 0.10878661087862329 0.06780766590337883 0.1097275134656991
+0.07119730596210631 0.1066928711185764 0.07119730596210631 0.1066928711185764 0.09652335140634466
+0.10669456066941818 0.07119804919854777 0.10669456066941818 0.07119804919854777 0.10817633442256792
+0.07458361496396164 0.10459753703950798 0.07458361496396164 0.10459753703950798 0.09657621784687347
+0.10460251046021307 0.07458843249371672 0.10460251046021307 0.07458843249371672 0.10654893719595358
+0.0779615195616631 0.10250467781521594 0.0779615195616631 0.10250467781521592 0.09658435853941934
+0.10251046025100796 0.07797881578888566 0.10251046025100796 0.07797881578888566 0.1048641934380683
+0.08132114213317922 0.10042825094874647 0.08132114213317922 0.10042825094874645 0.09657872681806441
+0.10041841004180285 0.0813691990840546 0.10041841004180285 0.0813691990840546 0.103139866508022
+0.08466107861998566 0.09837532466304551 0.08466107861998566 0.09837532466304551 0.09659467423415774
+0.0984406342580672 0.08474771535473223 0.0984406342580672 0.08474771535473223 0.10137915160710377
+0.08797568394311081 0.09635420304272632 0.08797568394311082 0.09635420304272634 0.09667036178161877
+0.09648795428010704 0.0881704011090211 0.09648795428010704 0.0881704011090211 0.09956134848412934
+0.09119969193261283 0.09437168099237137 0.09119969193261283 0.09437168099237137 0.09686249332479602
+0.09443841702105471 0.09189932008605609 0.09443841702105471 0.09189932008605607 0.09755904712760007
+0.15062761506272548 0.006780766590337883 0.15062761506272548 0.006780766590337883 0.1219656196903602
+0.14853556485352037 0.010171149885506825 0.14853556485352037 0.010171149885506825 0.12127337507027214
+0.14644351464431526 0.013561533180675767 0.14644351464431526 0.013561533180675767 0.12086427200332357
+0.14435146443511016 0.01695191647584471 0.14435146443511016 0.01695191647584471 0.12066855815436155
+0.14225941422590505 0.02034229977101365 0.14225941422590505 0.02034229977101365 0.12061572842613122
+0.14016736401669994 0.02373268306618259 0.14016736401669994 0.02373268306618259 0.12063796948018544
+0.13807531380749477 0.027123066361351523 0.1380753138074948 0.027123066361351523 0.12067285572182164
+0.023732683066182505 0.14016736401673624 0.023732683066182505 0.14016736401673624 0.08304107499991144
+0.027123066361351394 0.1380753138075312 0.027123066361351394 0.1380753138075312 0.08420703437213102
+0.030513449656520298 0.13598326359832622 0.030513449656520298 0.13598326359832622 0.0853996691120714
+0.0339038329516892 0.13389121338912122 0.0339038329516892 0.13389121338912122 0.08658830216903707
+0.037294216246858115 0.13179916317991613 0.037294216246858115 0.13179916317991613 0.08774424112148049
+0.04068459954202704 0.129707112970711 0.04068459954202704 0.129707112970711 0.088841369671453
+0.044074982837195936 0.12761506276150583 0.044074982837195936 0.12761506276150583 0.08985669305488699
+0.04746536613236477 0.12552301255230058 0.04746536613236477 0.12552301255230058 0.09077085088578575
+0.006780766590337883 0.1548117154811715 0.006780766590337883 0.15481171548117148 0.07856380050289813
+0.010171149885506823 0.15271966527196648 0.010171149885506823 0.15271966527196648 0.07892894009950059
+0.013561533180675765 0.15062761506276146 0.013561533180675765 0.15062761506276146 0.07947974558901943
+0.016951916475844698 0.14853556485355643 0.016951916475844698 0.14853556485355643 0.08018725621102979
+0.020342299771013622 0.14644351464435137 0.020342299771013622 0.14644351464435137 0.08102066498583022
+0.023732683066182546 0.14435146443514632 0.023732683066182546 0.14435146443514632 0.08194825647411152
+0.05085574942753351 0.12343096234309546 0.05085574942753351 0.12343096234309546 0.09156860681080858
+0.13598326359828958 0.030513449656520406 0.13598326359828958 0.03051344965652041 0.12066526105781504
+0.1338912133890843 0.033903832951689215 0.1338912133890843 0.033903832951689215 0.12056854562280743
+0.1317991631798795 0.03729421624685836 0.1317991631798795 0.03729421624685836 0.12034512788306707
+0.1297071129706744 0.0406845995420273 0.1297071129706744 0.0406845995420273 0.11996656862587489
+0.05424613272270217 0.12133891213389048 0.05424613272270217 0.12133891213389048 0.0922393190882841
+0.057636516017870766 0.11924686192468574 0.057636516017870766 0.11924686192468574 0.09277739020390435
+0.12761506276146928 0.04407498283719624 0.12761506276146928 0.04407498283719624 0.11941328682514495
+0.12552301255226417 0.04746536613236518 0.12552301255226417 0.04746536613236518 0.1186740095543866
+0.12343096234305906 0.050855749427534125 0.12343096234305906 0.050855749427534125 0.11774503705681773
+0.061026899313039285 0.1171548117154814 0.061026899313039285 0.11715481171548138 0.09318268693969135
+0.12133891213385395 0.054246132722703067 0.12133891213385395 0.054246132722703067 0.11662938451216572
+0.11924686192464884 0.05763651601787201 0.11924686192464884 0.05763651601787201 0.11533584616609831
+0.11715481171544373 0.06102689931304095 0.11715481171544373 0.06102689931304095 0.1138780159248927
+0.06441728260820838 0.11506276150627658 0.06441728260820838 0.11506276150627658 0.09346091476819195
+0.11506276150623862 0.06441728260820989 0.11506276150623862 0.06441728260820989 0.11227329102608752
+0.06780766590337743 0.11297071129707144 0.06780766590337743 0.11297071129707144 0.09362392191818149
+0.11297071129703351 0.06780766590337883 0.11297071129703351 0.06780766590337883 0.11054188134509556
+0.07119800114771385 0.11087841409830033 0.07119800114771385 0.11087841409830033 0.09369008841357067
+0.1108786610878284 0.07119804919854777 0.1108786610878284 0.07119804919854777 0.10870584546131572
+0.0745876537413246 0.10878504472341399 0.0745876537413246 0.10878504472341399 0.09368486803992014
+0.10878661087862329 0.07458843249371672 0.10878661087862329 0.07458843249371672 0.1067881748226689
+0.0779745928270217 0.10669065710632138 0.0779745928270217 0.10669065710632138 0.0936400727842512
+0.10669456066941818 0.07797881578888566 0.10669456066941818 0.07797881578888566 0.10481194948986972
+0.08135101756333925 0.10460279569601434 0.08135101756333925 0.10460279569601434 0.09359043747826433
+0.10460251046021307 0.0813691990840546 0.10460251046021307 0.0813691990840546 0.10279960788438815
+0.08472159588674827 0.10252214658337162 0.08472159588674827 0.10252214658337162 0.09357468392504768
+0.10251046025100796 0.08475958237922354 0.10251046025100796 0.08475958237922354 0.10077251065279369
+0.08806362155645667 0.10045962721866158 0.08806362155645665 0.10045962721866157 0.0936387594878344
+0.10054010731456813 0.08814138294788557 0.10054010731456813 0.08814138294788555 0.09873569499334435
+0.09137896550438751 0.09839777891327349 0.09137896550438751 0.09839777891327349 0.09383853228730042
+0.09868539052154586 0.09148959987094256 0.09868539052154586 0.09148959987094256 0.09670581360703502
+0.09462864158031428 0.0963039712236666 0.09462864158031427 0.09630397122366662 0.09425905259143329
+0.09745025148705949 0.0944976191346077 0.09745025148705949 0.0944976191346077 0.09473985501341564
+0.1548117154811357 0.006780766590337883 0.1548117154811357 0.006780766590337883 0.1252742994769691
+0.1527196652719306 0.010171149885506825 0.1527196652719306 0.010171149885506825 0.12456969501868938
+0.15062761506272548 0.013561533180675767 0.15062761506272548 0.013561533180675767 0.12414554939329168
+0.14853556485352037 0.01695191647584471 0.14853556485352037 0.01695191647584471 0.12393076182906877
+0.14644351464431526 0.02034229977101365 0.14644351464431526 0.02034229977101365 0.12385308825296602
+0.14435146443511016 0.02373268306618259 0.14435146443511016 0.02373268306618259 0.1238426791321875
+0.14225941422590505 0.027123066361351533 0.14225941422590505 0.027123066361351533 0.12383488444570732
+0.1401673640166999 0.030513449656520465 0.1401673640166999 0.030513449656520465 0.12377227984612409
+0.027123066361351447 0.14225941422594124 0.027123066361351447 0.14225941422594124 0.08293825867188688
+0.03051344965652034 0.14016736401673624 0.03051344965652034 0.14016736401673624 0.08395959811664457
+0.033903832951689215 0.1380753138075312 0.033903832951689215 0.1380753138075312 0.08498256353074875
+0.0372942162468581 0.13598326359832622 0.0372942162468581 0.13598326359832622 0.08597939337722692
+0.04068459954202703 0.13389121338912116 0.04068459954202703 0.13389121338912116 0.08692480698956452
+0.044074982837195985 0.1317991631799161 0.044074982837195985 0.1317991631799161 0.0877964987612253
+0.047465366132364926 0.12970711297071089 0.047465366132364926 0.12970711297071089 0.08857561172334934
+0.05085574942753384 0.1276150627615056 0.05085574942753384 0.1276150627615056 0.08924720193678481
+0.006780766590337881 0.1589958158995816 0.006780766590337881 0.1589958158995816 0.07876710679960576
+0.01017114988550682 0.15690376569037656 0.01017114988550682 0.15690376569037656 0.07893190271331674
+0.01356153318067576 0.15481171548117154 0.013561533180675761 0.15481171548117154 0.07928237754511812
+0.016951916475844705 0.15271966527196648 0.016951916475844705 0.15271966527196648 0.07978977220702482
+0.02034229977101364 0.15062761506276146 0.02034229977101364 0.15062761506276146 0.0804237509375923
+0.023732683066182574 0.1485355648535564 0.023732683066182574 0.14853556485355643 0.08115331763223109
+0.02712306636135149 0.14644351464435132 0.027123066361351488 0.14644351464435132 0.08194762468925613
+0.054246132722702615 0.12552301255230033 0.054246132722702615 0.12552301255230033 0.08980069928507789
+0.13807531380749474 0.03390383295168937 0.13807531380749474 0.03390383295168937 0.12360596530751045
+0.13598326359828974 0.03729421624685835 0.13598326359828974 0.03729421624685835 0.12329624164869935
+0.1338912133890846 0.0406845995420273 0.1338912133890846 0.0406845995420273 0.1228127889746533
+0.1317991631798795 0.04407498283719624 0.1317991631798795 0.04407498283719624 0.12213446636540608
+0.05763651601787121 0.1234309623430951 0.05763651601787121 0.1234309623430951 0.09023036383881237
+0.06102689931303965 0.12133891213389024 0.06102689931303965 0.12133891213389024 0.09053572995365845
+0.1297071129706744 0.04746536613236518 0.1297071129706744 0.04746536613236518 0.12124883530447973
+0.12761506276146928 0.050855749427534125 0.12761506276146928 0.050855749427534125 0.12015148855482276
+0.12552301255226417 0.054246132722703067 0.12552301255226417 0.054246132722703067 0.11884524637481193
+0.06441728260820805 0.1192468619246857 0.06441728260820805 0.1192468619246857 0.09072202239101208
+0.12343096234305906 0.05763651601787201 0.12343096234305906 0.05763651601787201 0.11733926550003186
+0.12133891213385395 0.06102689931304095 0.12133891213385395 0.06102689931304095 0.11564809395734012
+0.11924686192464884 0.06441728260820989 0.11924686192464884 0.06441728260820989 0.11379069641124474
+0.06780766590337695 0.11715481171548132 0.06780766590337695 0.11715481171548132 0.09080051962272118
+0.11715481171544373 0.06780766590337883 0.11715481171544373 0.06780766590337883 0.11178946987302697
+0.07119804919854615 0.11506276150627698 0.07119804919854615 0.11506276150627696 0.09078882871751019
+0.11506276150623862 0.07119804919854777 0.11506276150623862 0.07119804919854777 0.10966926763267149
+0.07458835053260345 0.11297048246722126 0.07458835053260345 0.11297048246722126 0.09071122429234352
+0.11297071129703351 0.07458843249371672 0.11297071129703351 0.07458843249371672 0.10745644971714792
+0.07797800204201802 0.11087745936374745 0.077978002042018 0.11087745936374745 0.09059886701999008
+0.1108786610878284 0.07797881578888566 0.1108786610878284 0.07797881578888566 0.10517798132329338
+0.08136439707324518 0.10878517995596611 0.08136439707324518 0.10878517995596611 0.09048852864901417
+0.10878661087862329 0.0813691990840546 0.10878661087862329 0.0813691990840546 0.10286061040151502
+0.08473891704930443 0.10669820454411873 0.08473891704930443 0.10669820454411873 0.09042269549086294
+0.10669456066941818 0.08475958237922354 0.10669456066941818 0.08475958237922354 0.10053018662517486
+0.08810926946222211 0.1046131820110872 0.0881092694622221 0.1046131820110872 0.09044529040535554
+0.10460251046021307 0.08814996567439248 0.10460251046021307 0.08814996567439248 0.09821125480178271
+0.09147277111076366 0.10252716800607503 0.09147277111076367 0.10252716800607505 0.09060732499857277
+0.10268008354924285 0.09150135537395299 0.10268008354924285 0.09150135537395299 0.09592818420929895
+0.09484716932495313 0.10041574356371706 0.09484716932495313 0.10041574356371706 0.09096857086715893
+0.10083628922913461 0.09482369502161532 0.10083628922913461 0.09482369502161532 0.09367558597591823
+0.09856503405382394 0.09827475861311855 0.09856503405382393 0.09827475861311853 0.09151244188623664
+0.15899581589954592 0.006780766590337883 0.15899581589954592 0.006780766590337883 0.12861712117443103
+0.1569037656903408 0.010171149885506825 0.1569037656903408 0.010171149885506825 0.12791782723463516
+0.1548117154811357 0.013561533180675767 0.1548117154811357 0.013561533180675767 0.12749731084512558
+0.1527196652719306 0.01695191647584471 0.1527196652719306 0.01695191647584471 0.12728328257076674
+0.15062761506272548 0.02034229977101365 0.15062761506272548 0.02034229977101365 0.12720187704530864
+0.14853556485352037 0.02373268306618259 0.14853556485352037 0.02373268306618259 0.12718127399111723
+0.14644351464431526 0.027123066361351533 0.14644351464431526 0.027123066361351533 0.1271546043943217
+0.14435146443511016 0.030513449656520475 0.14435146443511016 0.030513449656520475 0.1270620854680735
+0.14225941422590502 0.03390383295168941 0.14225941422590502 0.03390383295168941 0.12685242744651418
+0.16317991631795614 0.006780766590337883 0.16317991631795614 0.006780766590337883 0.13196099286482166
+0.030513449656520395 0.14435146443514627 0.030513449656520395 0.14435146443514627 0.08277666930205889
+0.03390383295168929 0.14225941422594124 0.0339038329516893 0.14225941422594124 0.08361188886979674
+0.03729421624685815 0.1401673640167362 0.03729421624685814 0.1401673640167362 0.08442667703647545
+0.040684599542027015 0.13807531380753119 0.040684599542027015 0.1380753138075312 0.08519684549592309
+0.044074982837195936 0.13598326359832622 0.044074982837195936 0.13598326359832622 0.08590105565019988
+0.047465366132364885 0.13389121338912113 0.047465366132364885 0.13389121338912113 0.0865212401402199
+0.05085574942753388 0.13179916317991602 0.05085574942753388 0.13179916317991602 0.08704302853340945
+0.05424613272270289 0.12970711297071078 0.05424613272270289 0.12970711297071078 0.08745618492384849
+0.006780766590337873 0.16317991631799164 0.006780766590337872 0.16317991631799164 0.07936918598574944
+0.01017114988550681 0.16108786610878664 0.01017114988550681 0.16108786610878664 0.07932792280279947
+0.01356153318067575 0.15899581589958162 0.013561533180675751 0.15899581589958164 0.07947060546193328
+0.01695191647584469 0.1569037656903766 0.01695191647584469 0.1569037656903766 0.07976856621619473
+0.020342299771013633 0.15481171548117154 0.020342299771013633 0.15481171548117154 0.0801918597594285
+0.023732683066182574 0.15271966527196648 0.023732683066182574 0.15271966527196648 0.08071017334791249
+0.027123066361351516 0.15062761506276143 0.027123066361351516 0.15062761506276143 0.08129360399678053
+0.030513449656520437 0.14853556485355637 0.030513449656520437 0.14853556485355637 0.08191330254635519
+0.057636516017871786 0.12761506276150536 0.057636516017871786 0.12761506276150536 0.08775505824956059
+0.14016736401669996 0.03729421624685836 0.14016736401669996 0.03729421624685836 0.12648361220714
+0.13807531380749483 0.0406845995420273 0.13807531380749483 0.0406845995420273 0.12592316502646939
+0.13598326359828972 0.04407498283719624 0.13598326359828972 0.04407498283719624 0.12514803804101707
+0.1338912133890846 0.04746536613236518 0.1338912133890846 0.04746536613236518 0.124144208342431
+0.06102689931304047 0.12552301255229983 0.06102689931304047 0.12552301255229983 0.08793903871213742
+0.0644172826082088 0.12343096234309453 0.0644172826082088 0.12343096234309452 0.08801300543978567
+0.1317991631798795 0.050855749427534125 0.1317991631798795 0.050855749427534125 0.12290607335074909
+0.1297071129706744 0.054246132722703067 0.1297071129706744 0.054246132722703067 0.1214357062586822
+0.12761506276146928 0.05763651601787201 0.12761506276146928 0.05763651601787201 0.11974201745722891
+0.06780766590337704 0.12133891213388963 0.06780766590337704 0.12133891213388963 0.08798774093949045
+0.12552301255226417 0.06102689931304095 0.12552301255226417 0.06102689931304095 0.11783985481663044
+0.12343096234305906 0.06441728260820989 0.12343096234305906 0.06441728260820989 0.11574906647825446
+0.12133891213385395 0.06780766590337883 0.12133891213385395 0.06780766590337883 0.11349354398871982
+0.07119804919854548 0.11924686192468543 0.07119804919854548 0.11924686192468543 0.08788027640911598
+0.11924686192464884 0.07119804919854777 0.11924686192464884 0.07119804919854777 0.11110026065142069
+0.07458843249371379 0.11715481171548253 0.07458843249371379 0.11715481171548255 0.08771411829110111
+0.11715481171544373 0.07458843249371672 0.11715481171544373 0.07458843249371672 0.10859831939206498
+0.07797866104708147 0.11506261756007403 0.07797866104708147 0.11506261756007403 0.08751947660993531
+0.11506276150623862 0.07797881578888566 0.11506276150623862 0.07797881578888566 0.1060180258055178
+0.0813677499069124 0.11297049817777283 0.08136774990691241 0.11297049817777283 0.08733303962379592
+0.11297071129703351 0.0813691990840546 0.11297071129703351 0.0813691990840546 0.10339000466365382
+0.08475096901605393 0.11087891575342897 0.08475096901605393 0.11087891575342897 0.08719880964404057
+0.1108786610878284 0.08475958237922354 0.1108786610878284 0.08475958237922354 0.10074437776243249
+0.08812317232987506 0.10878631782352761 0.08812317232987506 0.10878631782352761 0.08716676568541572
+0.10878661087862329 0.08814996567439248 0.10878661087862329 0.08814996567439248 0.09810998784686402
+0.09148843783762328 0.10668817137050333 0.09148843783762328 0.10668817137050333 0.08728689012341521
+0.10669456066941818 0.09154034896956142 0.10669456066941818 0.09154034896956142 0.09551341282343616
+0.09484912120065928 0.10457223813904462 0.09484912120065926 0.10457223813904461 0.08761740495180576
+0.10478472279723688 0.09490540078748891 0.1047847227972369 0.0949054007874889 0.09298083300237248
+0.09819096780766817 0.10241317398496563 0.09819096780766817 0.10241317398496563 0.08823229539479367
+0.10288221260797092 0.09832194906925976 0.10288221260797092 0.09832194906925974 0.09047795968115042
+0.10118300771997527 0.10117937865985312 0.10118300771997527 0.10117937865985312 0.08842588694296649
+0.16108786610875103 0.010171149885506825 0.16108786610875103 0.010171149885506825 0.1312836979697478
+0.15899581589954592 0.013561533180675767 0.15899581589954592 0.013561533180675767 0.13088447946041282
+0.1569037656903408 0.01695191647584471 0.1569037656903408 0.01695191647584471 0.13069005833524228
+0.1548117154811357 0.02034229977101365 0.1548117154811357 0.02034229977101365 0.13062511633450657
+0.1527196652719306 0.02373268306618259 0.1527196652719306 0.02373268306618259 0.13061598912247915
+0.15062761506272548 0.027123066361351533 0.15062761506272548 0.027123066361351533 0.1305936648666571
+0.14853556485352037 0.030513449656520475 0.14853556485352037 0.030513449656520475 0.1304960213255313
+0.14644351464431526 0.03390383295168942 0.14644351464431526 0.03390383295168942 0.13026933589328363
+0.14435146443511018 0.03729421624685836 0.14435146443511018 0.03729421624685836 0.129869162774364
+0.16736401673636636 0.006780766590337883 0.16736401673636636 0.006780766590337883 0.13527409355059208
+0.16527196652716125 0.010171149885506825 0.16527196652716125 0.010171149885506825 0.1346340683397118
+0.033903832951689354 0.14644351464435132 0.033903832951689354 0.14644351464435132 0.08254200225051168
+0.03729421624685824 0.1443514644351462 0.03729421624685824 0.1443514644351462 0.08315445971365908
+0.0406845995420271 0.14225941422594116 0.0406845995420271 0.14225941422594116 0.08372783938853058
+0.04407498283719596 0.14016736401673613 0.04407498283719596 0.14016736401673613 0.08424207118795744
+0.04746536613236484 0.13807531380753113 0.04746536613236484 0.13807531380753113 0.08468020590484515
+0.050855749427533764 0.13598326359832616 0.05085574942753377 0.13598326359832616 0.08502878657300506
+0.05424613272270277 0.1338912133891212 0.05424613272270277 0.13389121338912122 0.08527824660494186
+0.057636516017871835 0.1317991631799161 0.057636516017871835 0.1317991631799161 0.08542333793764657
+0.00678076659033787 0.16736401673640167 0.00678076659033787 0.16736401673640167 0.08038081359060543
+0.010171149885506799 0.16527196652719667 0.010171149885506799 0.16527196652719667 0.08013485096638029
+0.013561533180675732 0.16317991631799164 0.013561533180675734 0.16317991631799164 0.08006932603637583
+0.016951916475844674 0.16108786610878664 0.016951916475844677 0.16108786610878664 0.08015545844942923
+0.020342299771013615 0.15899581589958164 0.02034229977101362 0.15899581589958164 0.08036351161946496
+0.023732683066182557 0.1569037656903766 0.02373268306618256 0.1569037656903766 0.08066371641035423
+0.027123066361351506 0.15481171548117156 0.027123066361351506 0.15481171548117156 0.08102703347875172
+0.030513449656520447 0.1527196652719665 0.030513449656520447 0.15271966527196648 0.08142575741133433
+0.03390383295168938 0.15062761506276143 0.03390383295168938 0.15062761506276143 0.08183398535333876
+0.061026899313040915 0.1297071129707107 0.061026899313040915 0.1297071129707107 0.0854635844623176
+0.14225941422590505 0.0406845995420273 0.14225941422590505 0.0406845995420273 0.12926069546024546
+0.14016736401669994 0.04407498283719624 0.14016736401669994 0.04407498283719624 0.1284187320541799
+0.13807531380749483 0.04746536613236518 0.13807531380749483 0.04746536613236518 0.12732734671814586
+0.13598326359828972 0.050855749427534125 0.13598326359828972 0.050855749427534125 0.12597935093367
+0.06441728260820985 0.12761506276150494 0.06441728260820985 0.12761506276150494 0.08540374730666421
+0.06780766590337833 0.125523012552299 0.06780766590337833 0.125523012552299 0.08525427844929116
+0.1338912133890846 0.054246132722703067 0.1338912133890846 0.054246132722703067 0.12437560859809428
+0.1317991631798795 0.05763651601787201 0.1317991631798795 0.05763651601787201 0.12252425190060479
+0.1297071129706744 0.06102689931304095 0.1297071129706744 0.06102689931304095 0.12043983142379784
+0.07119804919854646 0.12343096234309338 0.07119804919854646 0.12343096234309338 0.08503172700469253
+0.12761506276146928 0.06441728260820989 0.12761506276146928 0.06441728260820989 0.11814242403417942
+0.12552301255226417 0.06780766590337883 0.12552301255226417 0.06780766590337883 0.11565671547132605
+0.12343096234305906 0.07119804919854777 0.12343096234305906 0.07119804919854777 0.11301107061901587
+0.07458843249371432 0.12133891213388863 0.07458843249371432 0.12133891213388863 0.08475904793485216
+0.12133891213385395 0.07458843249371672 0.12133891213385395 0.07458843249371672 0.11023660277310865
+0.07797879707661311 0.11924687220278031 0.07797879707661311 0.11924687220278031 0.08446574818724306
+0.11924686192464884 0.07797881578888566 0.11924686192464884 0.07797881578888566 0.1073662533729904
+0.0813686618995549 0.11715488928673795 0.0813686618995549 0.11715488928673796 0.08418799417658208
+0.11715481171544373 0.0813691990840546 0.11715481171544373 0.0813691990840546 0.10443389494692372
+0.084755713047791 0.11506313870858657 0.084755713047791 0.11506313870858657 0.0839687613849206
+0.11506276150623862 0.08475958237922354 0.11506276150623862 0.08475958237922354 0.10147347022466198
+0.08813447781690131 0.11296870930699948 0.08813447781690131 0.1129687093069995 0.08385981005612692
+0.11297071129703351 0.08814996567439248 0.11297071129703351 0.08814996567439248 0.09851817159436817
+0.09150206452289135 0.11086741690090092 0.09150206452289135 0.11086741690090092 0.08391549930812442
+0.1108786610878284 0.09154034896956142 0.1108786610878284 0.09154034896956142 0.09559963003028217
+0.0948577110115858 0.10875111191205532 0.0948577110115858 0.10875111191205532 0.08419294987425562
+0.10885700981601959 0.09494444895423113 0.10885700981601958 0.09494444895423114 0.09273568791062904
+0.09818325914804357 0.1065790298952448 0.09818325914804359 0.1065790298952448 0.08477939461312282
+0.1069169352577068 0.09841393966579094 0.1069169352577068 0.09841393966579094 0.08989522523099396
+0.1014557740726361 0.10464266392520678 0.1014557740726361 0.10464266392520678 0.08547259091379479
+0.10484500097572313 0.10216841459434173 0.10484500097572313 0.10216841459434176 0.08693656198326495
+0.16317991631795614 0.013561533180675767 0.16317991631795614 0.013561533180675767 0.13427233126931945
+0.16108786610875103 0.01695191647584471 0.16108786610875103 0.01695191647584471 0.1341148409823882
+0.15899581589954592 0.02034229977101365 0.15899581589954592 0.02034229977101365 0.13408503348954112
+0.1569037656903408 0.02373268306618259 0.1569037656903408 0.02373268306618259 0.1341075759829555
+0.1548117154811357 0.027123066361351533 0.1548117154811357 0.027123066361351533 0.13411144839579928
+0.1527196652719306 0.030513449656520475 0.1527196652719306 0.030513449656520475 0.1340322753122241
+0.15062761506272548 0.03390383295168942 0.15062761506272548 0.03390383295168942 0.13381393379005393
+0.14853556485352037 0.03729421624685836 0.14853556485352037 0.03729421624685836 0.13340952499868183
+0.14644351464431526 0.0406845995420273 0.14644351464431526 0.0406845995420273 0.13278182424652174
+0.17154811715477658 0.006780766590337883 0.17154811715477658 0.006780766590337883 0.13852668494206452
+0.16945606694557147 0.010171149885506825 0.16945606694557147 0.010171149885506825 0.137937439274782
+0.16736401673636636 0.013561533180675767 0.16736401673636636 0.013561533180675767 0.1376275052706242
+0.03729421624685833 0.14853556485355635 0.03729421624685833 0.14853556485355635 0.08222798393496335
+0.04068459954202721 0.14644351464435126 0.04068459954202721 0.14644351464435126 0.08258649197893257
+0.04407498283719608 0.14435146443514613 0.04407498283719608 0.14435146443514613 0.08289099462531556
+0.04746536613236493 0.14225941422594102 0.04746536613236493 0.14225941422594102 0.08312599914742112
+0.05085574942753374 0.140167364016736 0.05085574942753374 0.140167364016736 0.08327933549593218
+0.0542461327227026 0.13807531380753107 0.0542461327227026 0.13807531380753105 0.0833424965796019
+0.057636516017871536 0.13598326359832624 0.05763651601787154 0.13598326359832624 0.08331102497802563
+0.06102689931304061 0.13389121338912138 0.06102689931304061 0.13389121338912138 0.08318494418666454
+0.006780766590337872 0.1715481171548117 0.006780766590337872 0.1715481171548117 0.08179878730139961
+0.010171149885506797 0.16945606694560666 0.010171149885506797 0.16945606694560666 0.08135643509375777
+0.01356153318067572 0.16736401673640167 0.01356153318067572 0.16736401673640167 0.08108944182700974
+0.01695191647584465 0.16527196652719667 0.01695191647584465 0.16527196652719667 0.08096862926863119
+0.020342299771013584 0.16317991631799167 0.020342299771013584 0.16317991631799167 0.0809641897260228
+0.023732683066182526 0.16108786610878664 0.023732683066182526 0.16108786610878664 0.08104664629595303
+0.027123066361351464 0.15899581589958164 0.027123066361351467 0.15899581589958164 0.08118762207535903
+0.030513449656520416 0.15690376569037665 0.030513449656520416 0.15690376569037665 0.08136042288055577
+0.033903832951689354 0.1548117154811716 0.033903832951689354 0.1548117154811716 0.08154045970403612
+0.03729421624685831 0.15271966527196654 0.03729421624685831 0.15271966527196654 0.08170554969687671
+0.06441728260820985 0.1317991631799163 0.06441728260820985 0.13179916317991627 0.08296922320823606
+0.14435146443511016 0.04407498283719624 0.14435146443511016 0.04407498283719624 0.13190332552639927
+0.14225941422590505 0.04746536613236518 0.14225941422590505 0.04746536613236518 0.13075598393673357
+0.14016736401669994 0.050855749427534125 0.14016736401669994 0.050855749427534125 0.12933074061619657
+0.13807531380749483 0.054246132722703067 0.13807531380749483 0.054246132722703067 0.1276268955195923
+0.06780766590337914 0.1297071129707106 0.06780766590337915 0.1297071129707106 0.08267425262770263
+0.07119804919854812 0.12761506276150428 0.07119804919854812 0.12761506276150428 0.08231629741832186
+0.13598326359828972 0.05763651601787201 0.13598326359828972 0.05763651601787201 0.12565137628773512
+0.1338912133890846 0.06102689931304095 0.1338912133890846 0.06102689931304095 0.12341793771967922
+0.1317991631798795 0.06441728260820989 0.1317991631798795 0.06441728260820989 0.12094631604335626
+0.07458843249371648 0.12552301255229756 0.07458843249371648 0.12552301255229756 0.08191787597539006
+0.1297071129706744 0.06780766590337883 0.1297071129706744 0.06780766590337883 0.11826135493796995
+0.12761506276146928 0.07119804919854777 0.12761506276146928 0.07119804919854777 0.11539211558787847
+0.12552301255226417 0.07458843249371672 0.12552301255226417 0.07458843249371672 0.11237098047702689
+0.077978815788884 0.12343096234309135 0.077978815788884 0.12343096234309135 0.08150799633143907
+0.12343096234305906 0.07797881578888566 0.12343096234305906 0.07797881578888566 0.10923275980318027
+0.08136908301031087 0.12133895625197004 0.08136908301031087 0.12133895625197004 0.08112218851768226
+0.12133891213385395 0.0813691990840546 0.12133891213385395 0.0813691990840546 0.10601381004561887
+0.08475796400170225 0.11924698294977472 0.08475796400170225 0.11924698294977472 0.08080276653044206
+0.11924686192464884 0.08475958237922354 0.11924686192464884 0.08475958237922354 0.10275117617252215
+0.08814211354356231 0.11715385765030906 0.08814211354356231 0.11715385765030906 0.08059919421731755
+0.11715481171544373 0.08814996567439248 0.11715481171544373 0.08814996567439248 0.0994817722518314
+0.09151714100736193 0.1150554111053297 0.09151714100736193 0.1150554111053297 0.08056721038995997
+0.11506276150623862 0.09154034896956142 0.11506276150623862 0.09154034896956142 0.09624162115580782
+0.09488044988246029 0.11294902726016927 0.09488044988246029 0.11294902726016927 0.08076139541651496
+0.1130192577293269 0.09494727912219182 0.1130192577293269 0.09494727912219182 0.09305830852793046
+0.09823012703747828 0.11083874531083777 0.09823012703747828 0.11083874531083777 0.08122823017956816
+0.1109922166929137 0.0983634000395389 0.1109922166929137 0.0983634000395389 0.08995794073590857
+0.10156162566118734 0.10878278957297632 0.10156162566118733 0.10878278957297631 0.08196777637123333
+0.10914044865637657 0.1017800245498852 0.10914044865637655 0.1017800245498852 0.08697536856747891
+0.10477078312321908 0.10673319684385918 0.10477078312321908 0.10673319684385918 0.08307054019061878
+0.10780742372394589 0.10486989347584459 0.10780742372394589 0.10486989347584459 0.08433247247815855
+0.16527196652716125 0.01695191647584471 0.16527196652716125 0.01695191647584471 0.13752232417045548
+0.16317991631795614 0.02034229977101365 0.16317991631795614 0.02034229977101365 0.13754432071607425
+0.16108786610875103 0.02373268306618259 0.16108786610875103 0.02373268306618259 0.1376167057808383
+0.15899581589954592 0.027123066361351533 0.15899581589954592 0.027123066361351533 0.1376666310912689
+0.1569037656903408 0.030513449656520475 0.1569037656903408 0.030513449656520475 0.1376276082726873
+0.1548117154811357 0.03390383295168942 0.1548117154811357 0.03390383295168942 0.1374412086797838
+0.1527196652719306 0.03729421624685836 0.1527196652719306 0.03729421624685836 0.13705812522739277
+0.15062761506272548 0.0406845995420273 0.15062761506272548 0.0406845995420273 0.1364387067146814
+0.14853556485352037 0.04407498283719624 0.14853556485352037 0.04407498283719624 0.135553078900817
+0.1757322175731868 0.006780766590337883 0.1757322175731868 0.006780766590337883 0.14169177925545917
+0.1736401673639817 0.010171149885506825 0.1736401673639817 0.010171149885506825 0.14116480530964085
+0.17154811715477658 0.013561533180675767 0.17154811715477658 0.013561533180675767 0.14091885473537416
+0.16945606694557147 0.01695191647584471 0.16945606694557147 0.01695191647584471 0.14087910501173748
+0.04068459954202726 0.15062761506276143 0.04068459954202725 0.15062761506276143 0.08183613897511695
+0.04407498283719619 0.14853556485355632 0.04407498283719619 0.14853556485355632 0.08191548902769563
+0.04746536613236509 0.1464435146443511 0.04746536613236509 0.1464435146443511 0.08192986308021956
+0.050855749427533924 0.14435146443514593 0.050855749427533924 0.14435146443514593 0.08186874119610127
+0.0542461327227027 0.14225941422594085 0.0542461327227027 0.14225941422594082 0.08172508435592087
+0.057636516017871446 0.14016736401673585 0.057636516017871446 0.14016736401673582 0.08149565883900911
+0.06102689931304022 0.1380753138075311 0.06102689931304022 0.1380753138075311 0.08118142300146684
+0.06441728260820916 0.13598326359832658 0.06441728260820916 0.13598326359832658 0.08078796862099892
+0.006780766590337877 0.17573221757322174 0.006780766590337877 0.17573221757322174 0.08360661526841946
+0.010171149885506806 0.1736401673640167 0.010171149885506806 0.1736401673640167 0.0829824230761288
+0.013561533180675723 0.1715481171548117 0.013561533180675723 0.1715481171548117 0.08252733954942537
+0.01695191647584464 0.16945606694560666 0.01695191647584464 0.16945606694560666 0.08221145496625787
+0.020342299771013553 0.16736401673640167 0.020342299771013553 0.16736401673640167 0.08200453941465513
+0.023732683066182477 0.16527196652719667 0.023732683066182477 0.16527196652719667 0.08187706300293286
+0.027123066361351412 0.16317991631799167 0.027123066361351412 0.16317991631799167 0.08180099622654093
+0.030513449656520353 0.1610878661087867 0.030513449656520353 0.1610878661087867 0.08175039445246236
+0.033903832951689285 0.1589958158995817 0.033903832951689285 0.1589958158995817 0.08170179444395115
+0.03729421624685825 0.1569037656903767 0.03729421624685825 0.1569037656903767 0.0816344651500066
+0.04068459954202721 0.15481171548117165 0.04068459954202721 0.15481171548117165 0.08153056072196317
+0.06780766590337843 0.13389121338912194 0.06780766590337843 0.13389121338912194 0.08032599763221392
+0.14644351464431526 0.04746536613236518 0.14644351464431526 0.04746536613236518 0.13438095540762077
+0.14435146443511016 0.050855749427534125 0.14435146443511016 0.050855749427534125 0.13291122378225653
+0.14225941422590505 0.054246132722703067 0.14225941422590505 0.054246132722703067 0.13114137323388173
+0.14016736401669994 0.05763651601787201 0.14016736401669994 0.05763651601787201 0.12907681363052534
+0.07119804919854804 0.1317991631799168 0.07119804919854804 0.1317991631799168 0.07981180137145234
+0.0745884324937177 0.12970711297071058 0.0745884324937177 0.12970711297071058 0.07926769250554987
+0.13807531380749483 0.06102689931304095 0.13807531380749483 0.06102689931304095 0.1267301215179777
+0.13598326359828972 0.06441728260820989 0.13598326359828972 0.06441728260820989 0.12412023837585817
+0.1338912133890846 0.06780766590337883 0.1338912133890846 0.06780766590337883 0.12127163872571996
+0.07797881578888691 0.12761506276150306 0.0779788157888869 0.12761506276150306 0.07872231928187683
+0.1317991631798795 0.07119804919854777 0.1317991631798795 0.07119804919854777 0.11821348054872823
+0.1297071129706744 0.07458843249371672 0.1297071129706744 0.07458843249371672 0.11497874726548307
+0.12761506276146928 0.07797881578888566 0.12761506276146928 0.07797881578888566 0.11160338889197598
+0.08136919908405484 0.12552301255229487 0.08136919908405484 0.12552301255229484 0.07821076854197134
+0.12552301255226417 0.0813691990840546 0.12552301255226417 0.0813691990840546 0.10812546969889118
+0.08475921887487918 0.12343097535383503 0.08475921887487918 0.12343097535383503 0.07777451738963985
+0.12343096234305906 0.08475958237922354 0.12343096234305906 0.08475958237922354 0.10458433091033294
+0.08814671036826133 0.12133837272256298 0.08814671036826133 0.12133837272256298 0.07746186112581621
+0.12133891213385395 0.08814996567439248 0.12133891213385395 0.08814996567439248 0.10101978102155358
+0.09152842734806423 0.11924284287017832 0.09152842734806423 0.11924284287017832 0.07732685620990355
+0.11924686192464884 0.09154034896956142 0.11924686192464884 0.09154034896956142 0.09747133964353784
+0.09490118324239498 0.11714095651317469 0.09490118324239498 0.11714095651317469 0.07742582705923623
+0.11718538823330298 0.0949435919595777 0.11718538823330298 0.0949435919595777 0.09397562783514081
+0.09826833970407613 0.11503691963054118 0.09826833970407613 0.11503691963054118 0.07780534213684633
+0.1151454321468749 0.09835395102851038 0.1151454321468749 0.0983539510285104 0.09056534869398897
+0.10162564933819837 0.11293197989832258 0.10162564933819838 0.11293197989832258 0.07851277728857949
+0.113145567148221 0.10176580688193375 0.113145567148221 0.10176580688193375 0.08727685655328239
+0.10502709831242647 0.11080761634154096 0.10502709831242647 0.11080761634154097 0.07959239310120132
+0.11123145624147383 0.1051638499135336 0.11123145624147383 0.1051638499135336 0.08414266416650697
+0.10883341106270665 0.10866840679619895 0.10883341106270664 0.10866840679619895 0.08111500095918221
+0.16736401673636636 0.02034229977101365 0.16736401673636636 0.02034229977101365 0.1409672210936804
+0.16527196652716125 0.02373268306618259 0.16527196652716125 0.02373268306618259 0.14110519492018092
+0.16317991631795614 0.027123066361351533 0.16317991631795614 0.027123066361351533 0.1412185632209988
+0.16108786610875103 0.030513449656520475 0.16108786610875103 0.030513449656520475 0.1412389057372875
+0.15899581589954592 0.03390383295168942 0.15899581589954592 0.03390383295168942 0.14110563109262617
+0.1569037656903408 0.03729421624685836 0.1569037656903408 0.03729421624685836 0.14076712448257653
+0.1548117154811357 0.0406845995420273 0.1548117154811357 0.0406845995420273 0.14018136313347143
+0.1527196652719306 0.04407498283719624 0.1527196652719306 0.04407498283719624 0.13931611145443276
+0.15062761506272548 0.04746536613236518 0.15062761506272548 0.04746536613236518 0.1381487982673891
+0.17991631799159702 0.006780766590337883 0.17991631799159702 0.006780766590337883 0.1447456722074619
+0.1778242677823919 0.010171149885506825 0.1778242677823919 0.010171149885506825 0.1442902646256895
+0.1757322175731868 0.013561533180675767 0.1757322175731868 0.013561533180675767 0.14411814451518346
+0.1736401673639817 0.01695191647584471 0.1736401673639817 0.01695191647584471 0.14415448033954267
+0.17154811715477658 0.02034229977101365 0.17154811715477658 0.02034229977101365 0.14432043698354827
+0.044074982837196186 0.1527196652719666 0.044074982837196186 0.1527196652719666 0.08137522298303983
+0.04746536613236516 0.15062761506276148 0.04746536613236516 0.15062761506276148 0.08115667557371771
+0.0508557494275341 0.1485355648535562 0.050855749427534104 0.1485355648535562 0.0808663445491269
+0.054246132722702935 0.14644351464435099 0.054246132722702935 0.14644351464435099 0.08049903155437958
+0.05763651601787168 0.1443514644351457 0.05763651601787168 0.1443514644351457 0.08005315649393076
+0.06102689931304032 0.1422594142259406 0.06102689931304032 0.1422594142259406 0.07953107695124673
+0.0644172826082089 0.14016736401673574 0.0644172826082089 0.14016736401673577 0.07893948115632808
+0.06780766590337757 0.13807531380753132 0.06780766590337757 0.13807531380753132 0.0782898393099003
+0.006780766590337882 0.17991631799163182 0.0067807665903378824 0.17991631799163185 0.08577622462780544
+0.010171149885506818 0.17782426778242677 0.010171149885506818 0.17782426778242677 0.08498982272988041
+0.006780766590337883 0.18410041841004188 0.006780766590337883 0.18410041841004188 0.08827035050009291
+0.01356153318067574 0.17573221757322174 0.01356153318067574 0.17573221757322174 0.08436562157781197
+0.016951916475844656 0.1736401673640167 0.016951916475844656 0.1736401673640167 0.08387264182857812
+0.02034229977101357 0.17154811715481166 0.02034229977101357 0.17154811715481166 0.0834798523471137
+0.023732683066182477 0.16945606694560666 0.023732683066182477 0.16945606694560666 0.08315727090234554
+0.027123066361351367 0.16736401673640167 0.027123066361351367 0.16736401673640167 0.08287681907324679
+0.030513449656520284 0.16527196652719672 0.030513449656520284 0.1652719665271967 0.08261293306722926
+0.0339038329516892 0.16317991631799175 0.0339038329516892 0.16317991631799175 0.08234295831740207
+0.03729421624685813 0.16108786610878678 0.03729421624685813 0.16108786610878678 0.08204737180153275
+0.0406845995420271 0.1589958158995818 0.0406845995420271 0.1589958158995818 0.08170988313106008
+0.044074982837196075 0.1569037656903768 0.044074982837196075 0.1569037656903768 0.0813174657528861
+0.07119804919854661 0.13598326359832727 0.07119804919854661 0.13598326359832727 0.07759888355221227
+0.14853556485352037 0.050855749427534125 0.14853556485352037 0.050855749427534125 0.13666616181678184
+0.14644351464431526 0.054246132722703067 0.14644351464431526 0.054246132722703067 0.13486373002337435
+0.14435146443511016 0.05763651601787201 0.14435146443511016 0.05763651601787201 0.13274518676248692
+0.14225941422590505 0.06102689931304095 0.14225941422590505 0.06102689931304095 0.13032166114913288
+0.07458843249371627 0.13389121338912313 0.07458843249371627 0.13389121338912313 0.07688906876231054
+0.07797881578888656 0.13179916317991794 0.07797881578888656 0.13179916317991794 0.07618894405195087
+0.14016736401669994 0.06441728260820989 0.14016736401669994 0.06441728260820989 0.1276109661595798
+0.13807531380749483 0.06780766590337883 0.13807531380749483 0.06780766590337883 0.124636805123718
+0.13598326359828972 0.07119804919854777 0.13598326359828972 0.07119804919854777 0.12142795919166467
+0.08136919908405701 0.12970711297071072 0.08136919908405703 0.12970711297071072 0.0755333388688947
+0.1338912133890846 0.07458843249371672 0.1338912133890846 0.07458843249371672 0.11801746530019895
+0.1317991631798795 0.07797881578888566 0.1317991631798795 0.07797881578888566 0.11444179200063999
+0.1297071129706744 0.0813691990840546 0.1297071129706744 0.0813691990840546 0.11074001942687618
+0.0847595760541196 0.12761505305231133 0.0847595760541196 0.12761505305231133 0.07496324988444487
+0.12761506276146928 0.08475958237922354 0.12761506276146928 0.08475958237922354 0.10695302949007605
+0.08814920074580816 0.1255227601742122 0.08814920074580816 0.12552276017421218 0.0745257648575649
+0.12552301255226417 0.08814996567439248 0.12552301255226417 0.08814996567439248 0.10312271321030363
+0.09153542830482973 0.12342888290996894 0.09153542830482973 0.12342888290996894 0.07427396014987507
+0.12343096234305906 0.09154034896956142 0.12343096234305906 0.09154034896956142 0.09929120478914634
+0.09491572347891358 0.1213301895905513 0.09491572347891358 0.1213301895905513 0.07426423825733658
+0.12135478439927216 0.09493891101821711 0.12135478439927216 0.09493891101821711 0.0955002400659633
+0.09828627687157694 0.11922542206012321 0.09828627687157694 0.11922542206012321 0.07455115487988494
+0.11929838848830587 0.0983479676471032 0.11929838848830587 0.0983479676471032 0.09178612106241768
+0.10164486964235443 0.11711856356165944 0.10164486964235443 0.11711856356165944 0.07517968231200049
+0.11726915381447718 0.10177424764835591 0.11726915381447718 0.1017742476483559 0.08817990579167229
+0.1049950598990667 0.11499825698489648 0.1049950598990667 0.11499825698489648 0.0761981618169998
+0.11524658151234402 0.10521479088481579 0.11524658151234402 0.10521479088481579 0.0847125976324833
+0.10833018052488741 0.11281842250224611 0.10833018052488741 0.11281842250224612 0.07767546751249971
+0.11322128593009732 0.10868896840094851 0.11322128593009732 0.10868896840094851 0.08141665504229693
+0.11144765989671801 0.11159900934891628 0.11144765989671801 0.11159900934891628 0.07876353112627336
+0.16945606694557147 0.02373268306618259 0.16945606694557147 0.02373268306618259 0.14453704020926428
+0.16736401673636636 0.027123066361351533 0.16736401673636636 0.027123066361351533 0.14472844730896636
+0.16527196652716125 0.030513449656520475 0.16527196652716125 0.030513449656520475 0.14482451631711646
+0.16317991631795614 0.03390383295168942 0.16317991631795614 0.03390383295168942 0.14476267176586544
+0.16108786610875103 0.03729421624685836 0.16108786610875103 0.03729421624685836 0.14448913381641162
+0.15899581589954592 0.0406845995420273 0.15899581589954592 0.0406845995420273 0.1439596117588298
+0.1569037656903408 0.04407498283719624 0.1569037656903408 0.04407498283719624 0.14313957102895633
+0.1548117154811357 0.04746536613236518 0.1548117154811357 0.04746536613236518 0.14200417502919468
+0.1527196652719306 0.050855749427534125 0.1527196652719306 0.050855749427534125 0.1405379874767951
+0.18410041841000724 0.006780766590337883 0.18410041841000724 0.006780766590337883 0.14766835264936864
+0.18200836820080213 0.010171149885506825 0.18200836820080213 0.010171149885506825 0.14729149665773708
+0.17991631799159702 0.013561533180675767 0.17991631799159702 0.013561533180675767 0.14720060509850275
+0.1778242677823919 0.01695191647584471 0.1778242677823919 0.01695191647584471 0.14732108711678468
+0.1757322175731868 0.02034229977101365 0.1757322175731868 0.02034229977101365 0.14757386820109988
+0.1736401673639817 0.02373268306618259 0.1736401673639817 0.02373268306618259 0.1478792678013314
+0.04746536613236509 0.1548117154811718 0.04746536613236509 0.1548117154811718 0.08086036536799823
+0.05085574942753409 0.15271966527196668 0.05085574942753409 0.15271966527196668 0.08033212576863746
+0.05424613272270306 0.15062761506276143 0.05424613272270306 0.15062761506276143 0.0797296639922614
+0.057636516017871946 0.14853556485355615 0.057636516017871946 0.14853556485355615 0.07905341763792263
+0.0610268993130407 0.14644351464435076 0.06102689931304071 0.14644351464435076 0.07830757750235769
+0.06441728260820931 0.14435146443514535 0.06441728260820932 0.14435146443514535 0.07750040802162987
+0.0678076659033777 0.14225941422594018 0.06780766590337771 0.14225941422594016 0.07664464560680716
+0.071198049198546 0.14016736401673555 0.071198049198546 0.14016736401673555 0.07575794978637039
+0.006780766590337883 0.18828451882845193 0.006780766590337883 0.1882845188284519 0.09104520706179409
+0.010171149885506825 0.18200836820083685 0.010171149885506825 0.18200836820083685 0.08734504488002966
+0.013561533180675758 0.17991631799163185 0.013561533180675758 0.17991631799163185 0.0865749094273336
+0.010171149885506823 0.1861924686192469 0.010171149885506823 0.1861924686192469 0.09000653513629121
+0.016951916475844684 0.17782426778242677 0.016951916475844684 0.17782426778242677 0.08592759409303997
+0.020342299771013594 0.17573221757322174 0.020342299771013594 0.17573221757322174 0.08537090633637018
+0.023732683066182505 0.17364016736401666 0.023732683066182505 0.17364016736401666 0.08487400758450964
+0.027123066361351394 0.17154811715481166 0.027123066361351394 0.17154811715481166 0.08440834201441566
+0.03051344965652028 0.16945606694560666 0.03051344965652028 0.16945606694560666 0.08394829597907923
+0.03390383295168913 0.16736401673640175 0.03390383295168913 0.16736401673640175 0.08347161457263601
+0.03729421624685803 0.16527196652719678 0.03729421624685803 0.16527196652719678 0.08295961953175611
+0.04068459954202695 0.1631799163179918 0.04068459954202696 0.1631799163179918 0.082397281053584
+0.04407498283719591 0.16108786610878695 0.04407498283719591 0.16108786610878692 0.08177319742510179
+0.04746536613236491 0.158995815899582 0.04746536613236491 0.158995815899582 0.08107953297579261
+0.07458843249371447 0.13807531380753182 0.07458843249371448 0.13807531380753182 0.0748633629411728
+0.15062761506272548 0.054246132722703067 0.15062761506272548 0.054246132722703067 0.13873450341383295
+0.14853556485352037 0.05763651601787201 0.14853556485352037 0.05763651601787201 0.1365955606362945
+0.14644351464431526 0.06102689931304095 0.14644351464431526 0.06102689931304095 0.134130669591128
+0.14435146443511016 0.06441728260820989 0.14435146443511016 0.06441728260820989 0.1313562891002629
+0.07797881578888365 0.13598326359832877 0.07797881578888365 0.13598326359832877 0.07398971047950904
+0.08136919908405403 0.13389121338912555 0.08136919908405403 0.13389121338912555 0.073171844858008
+0.14225941422590505 0.06780766590337883 0.14225941422590505 0.06780766590337883 0.12829506736920973
+0.14016736401669994 0.07119804919854777 0.14016736401669994 0.07119804919854777 0.12497506215720067
+0.13807531380749483 0.07458843249371672 0.13807531380749483 0.07458843249371672 0.1214289502151528
+0.08475958237922566 0.13179916317992035 0.08475958237922566 0.13179916317992035 0.07245060681127465
+0.13598326359828972 0.07797881578888566 0.13598326359828972 0.07797881578888566 0.11769323367407773
+0.1338912133890846 0.0813691990840546 0.1338912133890846 0.0813691990840546 0.11380744959456189
+0.1317991631798795 0.08475958237922354 0.1317991631798795 0.08475958237922354 0.10981338799152264
+0.0881499287779406 0.1297070563337717 0.0881499287779406 0.1297070563337717 0.0718724019259414
+0.1297071129706744 0.08814996567439248 0.1297071129706744 0.08814996567439248 0.10575432280910414
+0.09153911603494967 0.12761422705606804 0.09153911603494967 0.12761422705606804 0.0714889559976868
+0.12761506276146928 0.09154034896956142 0.12761506276146928 0.09154034896956142 0.10167425877976478
+0.0949246342056439 0.12551813967834607 0.0949246342056439 0.12551813967834605 0.07135626448333708
+0.12552975520253354 0.09493469713958301 0.12552975520253354 0.09493469713958301 0.09761779060176268
+0.0983036759695387 0.12341601675398811 0.0983036759695387 0.12341601675398813 0.07153013195474361
+0.12345968363489067 0.09833834347024306 0.12345968363489067 0.09833834347024306 0.09362658206769149
+0.10166710132712738 0.12131210691750566 0.10166710132712738 0.12131210691750564 0.07205868340100224
+0.12141558526008388 0.10176142837297612 0.12141558526008388 0.10176142837297612 0.08973571336971893
+0.10500911585626573 0.11920855743009824 0.10500911585626573 0.11920855743009824 0.0729797425838032
+0.11939504496267066 0.10521963956359469 0.11939504496267066 0.10521963956359469 0.08596651576293357
+0.10832942233709437 0.11710582799906738 0.10832942233709437 0.11710582799906737 0.07431816772200774
+0.11736290589497389 0.10876671821850163 0.11736290589497389 0.10876671821850163 0.08230076676163241
+0.11164725862366193 0.11509753298941111 0.11164725862366191 0.1150975329894111 0.07601974366143747
+0.11520616334223681 0.11272171605577681 0.1152061633422368 0.11272171605577683 0.07852725804116938
+0.17154811715477658 0.027123066361351533 0.17154811715477658 0.027123066361351533 0.14816031252274922
+0.16945606694557147 0.030513449656520475 0.16945606694557147 0.030513449656520475 0.14834536796561396
+0.16736401673636636 0.03390383295168942 0.16736401673636636 0.03390383295168942 0.14837007800604687
+0.16527196652716125 0.03729421624685836 0.16527196652716125 0.03729421624685836 0.14817867080184646
+0.16317991631795614 0.0406845995420273 0.16317991631795614 0.0406845995420273 0.14772472719941257
+0.16108786610875103 0.04407498283719624 0.16108786610875103 0.04407498283719624 0.14697151751367266
+0.15899581589954592 0.04746536613236518 0.15899581589954592 0.04746536613236518 0.14589200648851552
+0.1569037656903408 0.050855749427534125 0.1569037656903408 0.050855749427534125 0.1444686118496226
+0.1548117154811357 0.054246132722703067 0.1548117154811357 0.054246132722703067 0.1426927849732709
+0.18828451882841746 0.006780766590337883 0.18828451882841746 0.006780766590337883 0.1504438002347653
+0.18619246861921235 0.010171149885506825 0.18619246861921235 0.010171149885506825 0.1501501195131365
+0.18410041841000724 0.013561533180675767 0.18410041841000724 0.013561533180675767 0.15014535640913892
+0.18200836820080213 0.01695191647584471 0.18200836820080213 0.01695191647584471 0.1503554005105334
+0.17991631799159702 0.02034229977101365 0.17991631799159702 0.02034229977101365 0.15070119363475468
+0.1778242677823919 0.02373268306618259 0.1778242677823919 0.02373268306618259 0.15110260911158105
+0.1757322175731868 0.027123066361351533 0.1757322175731868 0.027123066361351533 0.15148179725982588
+0.05085574942753393 0.15690376569037703 0.050855749427533924 0.15690376569037703 0.08031195871390286
+0.054246132722702955 0.15481171548117198 0.054246132722702955 0.15481171548117198 0.079469632367614
+0.057636516017871946 0.1527196652719668 0.057636516017871946 0.1527196652719668 0.07855524606356562
+0.06102689931304089 0.15062761506276148 0.06102689931304089 0.15062761506276148 0.07757516061617666
+0.06441728260820974 0.14853556485355598 0.06441728260820974 0.14853556485355598 0.07653963498253467
+0.06780766590337838 0.14644351464435032 0.06780766590337838 0.14644351464435032 0.07546314706684863
+0.07119804919854668 0.14435146443514466 0.07119804919854668 0.14435146443514466 0.07436478661260186
+0.07458843249371457 0.1422594142259395 0.07458843249371457 0.1422594142259395 0.0732686811085231
+0.006780766590337879 0.192468619246862 0.006780766590337879 0.192468619246862 0.09405309009264175
+0.01017114988550682 0.19037656903765698 0.01017114988550682 0.19037656903765698 0.09292749903673027
+0.013561533180675765 0.18410041841004188 0.013561533180675765 0.18410041841004188 0.08911635592049322
+0.016951916475844698 0.18200836820083688 0.016951916475844698 0.18200836820083688 0.08834071394743072
+0.013561533180675761 0.18828451882845193 0.013561533180675761 0.1882845188284519 0.09194444237197923
+0.020342299771013626 0.1799163179916318 0.020342299771013626 0.1799163179916318 0.08764595138501406
+0.023732683066182546 0.17782426778242674 0.023732683066182546 0.17782426778242674 0.08700000949952137
+0.027123066361351447 0.17573221757322166 0.027123066361351447 0.17573221757322166 0.08637344491558469
+0.030513449656520322 0.17364016736401666 0.03051344965652032 0.17364016736401666 0.0857401550286499
+0.03390383295168919 0.17154811715481164 0.03390383295168919 0.17154811715481164 0.0850778369173656
+0.037294216246858 0.1694560669456067 0.037294216246858 0.1694560669456067 0.08436822324035059
+0.04068459954202686 0.16736401673640178 0.04068459954202686 0.16736401673640178 0.08359714806548035
+0.044074982837195735 0.1652719665271969 0.044074982837195735 0.1652719665271969 0.08275449773369502
+0.047465366132364684 0.16317991631799203 0.047465366132364684 0.16317991631799203 0.08183409919816252
+0.05085574942753366 0.1610878661087872 0.05085574942753366 0.1610878661087872 0.08083359282713781
+0.0779788157888823 0.1401673640167354 0.07797881578888231 0.14016736401673538 0.07220439039960679
+0.1527196652719306 0.05763651601787201 0.1527196652719306 0.05763651601787201 0.14056446617208265
+0.15062761506272548 0.06102689931304095 0.15062761506272548 0.06102689931304095 0.138091453517865
+0.14853556485352037 0.06441728260820989 0.14853556485352037 0.06441728260820989 0.13528871342846552
+0.14644351464431526 0.06780766590337883 0.14644351464431526 0.06780766590337883 0.1321776532744359
+0.08136919908405037 0.13807531380753293 0.08136919908405037 0.13807531380753293 0.07120717506683717
+0.08475958237921984 0.13598326359833188 0.08475958237921984 0.13598326359833188 0.07031801024114591
+0.14435146443511016 0.07119804919854777 0.14435146443511016 0.07119804919854777 0.12878537058185235
+0.14225941422590505 0.07458843249371672 0.14225941422590505 0.07458843249371672 0.12514388952589547
+0.14016736401669994 0.07797881578888566 0.14016736401669994 0.07797881578888566 0.12128939286717177
+0.08814996567439165 0.13389121338913046 0.08814996567439165 0.13389121338913046 0.06958318770982563
+0.13807531380749483 0.0813691990840546 0.13807531380749483 0.0813691990840546 0.11726145588816096
+0.13598326359828972 0.08475958237922354 0.13598326359828972 0.08475958237922354 0.11310228789254982
+0.1338912133890846 0.08814996567439248 0.1338912133890846 0.08814996567439248 0.10885598597743684
+0.09154024843223896 0.13179899254059013 0.09154024843223896 0.13179899254059013 0.06905346880410544
+0.1317991631798795 0.09154034896956142 0.1317991631798795 0.09154034896956142 0.10456780363101424
+0.09492922950353017 0.1297051541916773 0.09492922950353017 0.1297051541916773 0.06878339455336589
+0.12970926569667832 0.09493206544101239 0.12970926569667832 0.09493206544101239 0.10028386896688603
+0.09831459874620123 0.12760641423214739 0.09831459874620123 0.12760641423214739 0.0688289131229909
+0.12762908174469137 0.09832940559706665 0.12762908174469137 0.09832940559706665 0.09605050790939208
+0.10168932102467608 0.12550431607805354 0.10168932102467608 0.12550431607805354 0.06924033979624601
+0.12557063877198402 0.10173957377855651 0.12557063877198402 0.10173957377855651 0.09191167280331046
+0.10503998454524956 0.12340725711962497 0.10503998454524956 0.12340725711962497 0.07005424150087747
+0.12354249202026603 0.10517090136633422 0.12354249202026603 0.10517090136633422 0.08790470604377464
+0.10836057846655618 0.12131492513341575 0.10836057846655618 0.12131492513341575 0.07129586358140594
+0.12155429042633169 0.10864042943692807 0.12155429042633169 0.10864042943692807 0.08405797048256791
+0.11163382685778911 0.11919784943539236 0.11163382685778911 0.11919784943539236 0.07299304410264142
+0.11967521701888408 0.1121987760885631 0.11967521701888408 0.1121987760885631 0.08039735544021792
+0.11493676115311507 0.11714305340711956 0.11493676115311509 0.11714305340711957 0.07509033205937811
+0.11839222159575791 0.11595021108550857 0.11839222159575791 0.11595021108550858 0.07705208709118883
+0.1736401673639817 0.030513449656520475 0.1736401673639817 0.030513449656520475 0.1517658713728942
+0.17154811715477658 0.03390383295168942 0.17154811715477658 0.03390383295168942 0.15188891396553147
+0.16945606694557147 0.03729421624685836 0.16945606694557147 0.03729421624685836 0.15179335487808754
+0.16736401673636636 0.0406845995420273 0.16736401673636636 0.0406845995420273 0.1514308113004619
+0.16527196652716125 0.04407498283719624 0.16527196652716125 0.04407498283719624 0.15076249215708068
+0.16317991631795614 0.04746536613236518 0.16317991631795614 0.04746536613236518 0.14975926483618682
+0.16108786610875103 0.050855749427534125 0.16108786610875103 0.050855749427534125 0.14840146905872828
+0.15899581589954592 0.054246132722703067 0.15899581589954592 0.054246132722703067 0.14667854654158174
+0.1569037656903408 0.05763651601787201 0.1569037656903408 0.05763651601787201 0.1445885394817348
+0.19246861924682768 0.006780766590337883 0.19246861924682768 0.006780766590337883 0.15306018111266725
+0.19037656903762257 0.010171149885506825 0.19037656903762257 0.010171149885506825 0.15285193852869686
+0.18828451882841746 0.013561533180675767 0.18828451882841746 0.013561533180675767 0.15293571410263276
+0.18619246861921235 0.01695191647584471 0.18619246861921235 0.01695191647584471 0.15323810387827705
+0.18410041841000724 0.02034229977101365 0.18410041841000724 0.02034229977101365 0.15368031204218122
+0.18200836820080213 0.02373268306618259 0.18200836820080213 0.02373268306618259 0.15418202082043198
+0.17991631799159702 0.027123066361351533 0.17991631799159702 0.027123066361351533 0.15466475816018443
+0.1778242677823919 0.030513449656520475 0.1778242677823919 0.030513449656520475 0.15505462935267403
+0.1966527196652379 0.006780766590337883 0.1966527196652379 0.006780766590337883 0.15550994959974226
+0.05424613272270268 0.15899581589958228 0.05424613272270268 0.1589958158995823 0.07975432974383585
+0.057636516017871696 0.15690376569037734 0.057636516017871696 0.15690376569037734 0.07860132603729884
+0.061026899313040735 0.15481171548117226 0.061026899313040735 0.15481171548117226 0.07738329765765405
+0.0644172826082098 0.15271966527196706 0.0644172826082098 0.1527196652719671 0.07611279005532333
+0.06780766590337871 0.1506276150627616 0.06780766590337871 0.1506276150627616 0.07480640476327564
+0.07119804919854743 0.14853556485355576 0.07119804919854743 0.14853556485355576 0.07348510992945582
+0.07458843249371572 0.14644351464434965 0.07458843249371572 0.14644351464434965 0.07217460185465215
+0.07797881578888345 0.14435146443514354 0.07797881578888345 0.14435146443514354 0.07090565862729992
+0.006780766590337873 0.19665271966527206 0.006780766590337872 0.19665271966527206 0.09724467108719605
+0.01017114988550681 0.19456066945606706 0.01017114988550681 0.19456066945606706 0.09605841437788513
+0.013561533180675746 0.192468619246862 0.013561533180675744 0.192468619246862 0.09500969099779404
+0.0169519164758447 0.1861924686192469 0.016951916475844705 0.1861924686192469 0.09106820430267094
+0.020342299771013643 0.18410041841004188 0.020342299771013646 0.18410041841004188 0.09026343562903029
+0.01695191647584469 0.19037656903765698 0.01695191647584469 0.19037656903765698 0.09406094932253993
+0.023732683066182574 0.18200836820083688 0.023732683066182574 0.18200836820083688 0.08949656401630257
+0.02712306636135149 0.17991631799163177 0.027123066361351488 0.17991631799163177 0.08873690556016044
+0.030513449656520395 0.1778242677824267 0.030513449656520395 0.1778242677824267 0.08795746781258883
+0.03390383295168928 0.17573221757322163 0.03390383295168928 0.17573221757322163 0.08713546612241273
+0.037294216246858115 0.17364016736401663 0.037294216246858115 0.17364016736401663 0.08625259557472241
+0.04068459954202692 0.17154811715481164 0.04068459954202692 0.17154811715481164 0.08529511118057648
+0.04407498283719565 0.1694560669456067 0.04407498283719565 0.1694560669456067 0.08425377174861853
+0.047465366132364524 0.1673640167364018 0.047465366132364524 0.1673640167364018 0.08312370070065268
+0.05085574942753335 0.1652719665271971 0.05085574942753335 0.1652719665271971 0.081904212123107
+0.054246132722702324 0.16317991631799234 0.054246132722702324 0.16317991631799234 0.08059864398976306
+0.00678076659033787 0.2008368200836821 0.00678076659033787 0.2008368200836821 0.10057086578643105
+0.08136919908405037 0.14225941422593838 0.08136919908405037 0.14225941422593838 0.06971439473614531
+0.1548117154811357 0.06102689931304095 0.1548117154811357 0.06102689931304095 0.14213749746370866
+0.1527196652719306 0.06441728260820989 0.1527196652719306 0.06441728260820989 0.13933882171366288
+0.15062761506272548 0.06780766590337883 0.15062761506272548 0.06780766590337883 0.13621256759319358
+0.14853556485352037 0.07119804919854777 0.14853556485352037 0.07119804919854777 0.1327847204566095
+0.084759582379217 0.14016736401673527 0.084759582379217 0.14016736401673527 0.06864228940604063
+0.08814996567438434 0.13807531380753538 0.08814996567438434 0.13807531380753538 0.06773582847731026
+0.14644351464431526 0.07458843249371672 0.14644351464431526 0.07458843249371672 0.12908645601768787
+0.14435146443511016 0.07797881578888566 0.14435146443511016 0.07797881578888566 0.12515339374053183
+0.14225941422590505 0.0813691990840546 0.14225941422590505 0.0813691990840546 0.12102485010955581
+0.09154034896955442 0.13598326359833865 0.09154034896955442 0.13598326359833865 0.06704558418328231
+0.14016736401669994 0.08475958237922354 0.14016736401669994 0.08475958237922354 0.11674309765663037
+0.13807531380749483 0.08814996567439248 0.13807531380749483 0.08814996567439248 0.11235263514998495
+0.13598326359828972 0.09154034896956142 0.13598326359828972 0.09154034896956142 0.10789947453970171
+0.09493059658024068 0.13389081047417964 0.09493059658024068 0.13389081047417964 0.06662480875091449
+0.1338912133890846 0.09493073226473037 0.1338912133890846 0.09493073226473037 0.10343045377305034
+0.09831973841316127 0.13179608601705944 0.09831973841316127 0.13179608601705947 0.06652775870699228
+0.1318050187183381 0.09832422309553157 0.13180501871833813 0.09832422309553157 0.09899444195380264
+0.10170389656600472 0.12969572039283228 0.10170389656600472 0.12969572039283228 0.06680679343884662
+0.12973204989041845 0.10172361808913932 0.12973204989041845 0.10172361808913932 0.09464009516334397
+0.10507050774038022 0.12759918380445015 0.10507050774038022 0.12759918380445015 0.06749976398337858
+0.12768138116750258 0.10513126137355795 0.12768138116750258 0.10513126137355795 0.09041531234393317
+0.1084104809324473 0.12551640953212423 0.1084104809324473 0.1255164095321242 0.06862714316004233
+0.12565924225628955 0.10854298804128801 0.12565924225628955 0.10854298804128802 0.08636837637234107
+0.11172803728065424 0.12345875465053034 0.11172803728065424 0.12345875465053034 0.07019187493517422
+0.12369409456816742 0.11194500173592742 0.12369409456816742 0.1119450017359274 0.08256377585620989
+0.11504548480520614 0.12149175147282602 0.11504548480520614 0.12149175147282602 0.07215779624979879
+0.12214200673420887 0.11530961802835027 0.12214200673420887 0.11530961802835027 0.07923218902786854
+0.11839198518385008 0.11987076385754963 0.11839198518385008 0.11987076385754962 0.07437671197095404
+0.12096407064446335 0.1181279270983463 0.12096407064446335 0.1181279270983463 0.07665045706062029
+0.1757322175731868 0.03390383295168942 0.1757322175731868 0.03390383295168942 0.15528438352322085
+0.1736401673639817 0.03729421624685836 0.1736401673639817 0.03729421624685836 0.15529485882798574
+0.17154811715477658 0.0406845995420273 0.17154811715477658 0.0406845995420273 0.15503589056846276
+0.16945606694557147 0.04407498283719624 0.16945606694557147 0.04407498283719624 0.15446678083004592
+0.16736401673636636 0.04746536613236518 0.16736401673636636 0.04746536613236518 0.15355642549885207
+0.16527196652716125 0.050855749427534125 0.16527196652716125 0.050855749427534125 0.1522831825640173
+0.16317991631795614 0.054246132722703067 0.16317991631795614 0.054246132722703067 0.15063455026282455
+0.16108786610875103 0.05763651601787201 0.16108786610875103 0.05763651601787201 0.14860670843046006
+0.15899581589954592 0.06102689931304095 0.15899581589954592 0.06102689931304095 0.146203963175061
+0.20083682008364812 0.006780766590337883 0.20083682008364812 0.006780766590337883 0.1577898616082809
+0.1945606694560328 0.010171149885506825 0.1945606694560328 0.010171149885506825 0.15538709537951956
+0.19246861924682768 0.013561533180675767 0.19246861924682768 0.013561533180675767 0.1555593894394488
+0.19037656903762257 0.01695191647584471 0.19037656903762257 0.01695191647584471 0.15595434362086572
+0.18828451882841746 0.02034229977101365 0.18828451882841746 0.02034229977101365 0.15649365706157412
+0.18619246861921235 0.02373268306618259 0.18619246861921235 0.02373268306618259 0.15709706626742434
+0.18410041841000724 0.027123066361351533 0.18410041841000724 0.027123066361351533 0.1576857252525351
+0.18200836820080213 0.030513449656520475 0.18200836820080213 0.030513449656520475 0.1581849743827863
+0.17991631799159702 0.03390383295168942 0.17991631799159702 0.03390383295168942 0.15852646029697434
+0.198744769874443 0.010171149885506825 0.198744769874443 0.010171149885506825 0.15775012487750847
+0.05763651601787129 0.1610878661087876 0.05763651601787129 0.1610878661087876 0.07921423342439192
+0.06102689931304032 0.15899581589958275 0.06102689931304032 0.15899581589958275 0.07776206113160224
+0.0644172826082094 0.1569037656903779 0.0644172826082094 0.1569037656903779 0.07625708321394074
+0.0678076659033785 0.15481171548117287 0.0678076659033785 0.15481171548117287 0.0747182575632981
+0.07119804919854744 0.15271966527196756 0.07119804919854744 0.15271966527196756 0.07316875753289098
+0.07458843249371626 0.1506276150627618 0.07458843249371626 0.1506276150627618 0.07163624608973286
+0.07797881578888471 0.14853556485355543 0.07797881578888471 0.14853556485355543 0.07015315767095275
+0.08136919908405238 0.1464435146443485 0.08136919908405238 0.1464435146443485 0.06875690203662611
+0.0101711498855068 0.1987447698744771 0.010171149885506799 0.1987447698744771 0.09934915084975503
+0.01356153318067573 0.19665271966527206 0.01356153318067573 0.19665271966527206 0.09826104281688325
+0.01695191647584467 0.19456066945606706 0.01695191647584467 0.19456066945606706 0.09726714890904425
+0.02034229977101364 0.18828451882845196 0.02034229977101364 0.18828451882845196 0.09317500610206438
+0.023732683066182578 0.1861924686192469 0.023732683066182578 0.1861924686192469 0.09231656519333621
+0.02034229977101362 0.19246861924686207 0.02034229977101362 0.19246861924686207 0.09632838660427218
+0.027123066361351523 0.18410041841004188 0.027123066361351523 0.18410041841004188 0.0914534275177376
+0.030513449656520447 0.1820083682008368 0.030513449656520447 0.1820083682008368 0.09055737815908953
+0.033903832951689375 0.17991631799163169 0.03390383295168937 0.17991631799163169 0.08960476984911404
+0.037294216246858226 0.17782426778242666 0.037294216246858226 0.17782426778242666 0.0885768437460917
+0.04068459954202707 0.17573221757322158 0.04068459954202707 0.17573221757322158 0.08745983958413729
+0.044074982837195846 0.17364016736401652 0.044074982837195846 0.17364016736401652 0.08624495052755081
+0.04746536613236457 0.17154811715481155 0.04746536613236457 0.17154811715481155 0.08492817618461006
+0.05085574942753331 0.1694560669456067 0.05085574942753331 0.1694560669456067 0.08351012250516587
+0.054246132722702074 0.167364016736402 0.054246132722702074 0.167364016736402 0.08199579123020474
+0.05763651601787081 0.16527196652719742 0.05763651601787081 0.16527196652719742 0.08039439492690893
+0.006780766590337874 0.20502092050209209 0.006780766590337874 0.20502092050209209 0.10398425955177748
+0.010171149885506799 0.2029288702928871 0.010171149885506799 0.2029288702928871 0.10275063428054144
+0.08475958237921898 0.14435146443514157 0.08475958237921898 0.14435146443514157 0.06748986657514018
+0.1569037656903408 0.06441728260820989 0.1569037656903408 0.06441728260820989 0.14343812434819292
+0.1548117154811357 0.06780766590337883 0.1548117154811357 0.06780766590337883 0.14032783719367417
+0.1527196652719306 0.07119804919854777 0.1527196652719306 0.07119804919854777 0.13689788369234865
+0.15062761506272548 0.07458843249371672 0.15062761506272548 0.07458843249371672 0.13317846503406752
+0.088149965674384 0.1422594142259365 0.088149965674384 0.1422594142259365 0.06639905772402384
+0.09154034896954859 0.14016736401673532 0.09154034896954859 0.14016736401673532 0.06553520273371917
+0.14853556485352037 0.07797881578888566 0.14853556485352037 0.07797881578888566 0.12920447390983392
+0.14644351464431526 0.0813691990840546 0.14644351464431526 0.0813691990840546 0.12501476355965455
+0.14435146443511016 0.08475958237922354 0.14435146443511016 0.08475958237922354 0.12065141945295009
+0.0949307322647076 0.13807531380753693 0.0949307322647076 0.13807531380753693 0.06495115172627565
+0.14225941422590505 0.08814996567439248 0.14225941422590505 0.08814996567439248 0.11615903893949864
+0.14016736401669994 0.09154034896956142 0.14016736401669994 0.09154034896956142 0.11158402415750472
+0.13807531380749483 0.09493073226473037 0.13807531380749483 0.09493073226473037 0.1069738939485259
+0.09832101731448806 0.13598288501685174 0.09832101731448806 0.13598288501685174 0.06469968061816217
+0.13598498218392943 0.0983219298983256 0.13598498218392943 0.0983219298983256 0.10237743459985206
+0.10170997897934742 0.1338862051231499 0.10170997897934742 0.1338862051231499 0.06483184087648024
+0.13390158256734083 0.10171568519049923 0.13390158256734083 0.10171568519049923 0.09784507280228362
+0.10508996780397124 0.1317876545837293 0.10508996780397124 0.1317876545837293 0.06538941175557855
+0.13183089674814671 0.10511194308999006 0.13183089674814671 0.10511194308999006 0.09342767194261371
+0.10844836390063801 0.12969919744875882 0.10844836390063801 0.12969919744875882 0.06639517940926358
+0.12977123151375602 0.10850435328882697 0.12977123151375602 0.10850435328882697 0.0891731628136087
+0.11178798384812384 0.12763029239848137 0.11178798384812384 0.12763029239848137 0.06785536496997317
+0.12773773524120172 0.11187626932190288 0.12773773524120172 0.11187626932190288 0.08514547327063239
+0.11512155004839147 0.12560566116911961 0.11512155004839149 0.12560566116911961 0.06975878743238868
+0.1259516569861298 0.11522620294316521 0.12595165698612984 0.11522620294316521 0.08152083541703858
+0.11845834835542403 0.1236759728177682 0.11845834835542403 0.1236759728177682 0.07206893702291661
+0.12422183858309209 0.11844146185376918 0.12422183858309209 0.11844146185376918 0.07824915391792654
+0.12207184963020208 0.12174396028945877 0.1220718496302021 0.12174396028945877 0.07497308992005682
+0.1778242677823919 0.03729421624685836 0.1778242677823919 0.03729421624685836 0.15864964298301779
+0.1757322175731868 0.0406845995420273 0.1757322175731868 0.0406845995420273 0.158502768189955
+0.1736401673639817 0.04407498283719624 0.1736401673639817 0.04407498283719624 0.15804339969166323
+0.17154811715477658 0.04746536613236518 0.17154811715477658 0.04746536613236518 0.15723860486282729
+0.16945606694557147 0.050855749427534125 0.16945606694557147 0.050855749427534125 0.15606487634866847
+0.16736401673636636 0.054246132722703067 0.16736401673636636 0.054246132722703067 0.15450785808999504
+0.16527196652716125 0.05763651601787201 0.16527196652716125 0.05763651601787201 0.15256192923893133
+0.16317991631795614 0.06102689931304095 0.16317991631795614 0.06102689931304095 0.15022968646988508
+0.16108786610875103 0.06441728260820989 0.16108786610875103 0.06441728260820989 0.14752135458319812
+0.20502092050205833 0.006780766590337883 0.20502092050205833 0.006780766590337883 0.15990090361941947
+0.20292887029285323 0.010171149885506825 0.20292887029285325 0.010171149885506825 0.15993992437325985
+0.1966527196652379 0.013561533180675767 0.1966527196652379 0.013561533180675767 0.15800859148009405
+0.1945606694560328 0.01695191647584471 0.1945606694560328 0.01695191647584471 0.15849387952995952
+0.19246861924682768 0.02034229977101365 0.19246861924682768 0.02034229977101365 0.15912839925121905
+0.19037656903762257 0.02373268306618259 0.19037656903762257 0.02373268306618259 0.15983217356029833
+0.18828451882841746 0.027123066361351533 0.18828451882841746 0.027123066361351533 0.16052622141070994
+0.18619246861921235 0.030513449656520475 0.18619246861921235 0.030513449656520475 0.161135355669817
+0.18410041841000724 0.03390383295168942 0.18410041841000724 0.03390383295168942 0.1615903496733672
+0.18200836820080213 0.03729421624685836 0.18200836820080213 0.03729421624685836 0.16182950082359593
+0.20083682008364812 0.013561533180675767 0.20083682008364812 0.013561533180675767 0.16028003789042367
+0.06102689931303975 0.16317991631799283 0.06102689931303975 0.1631799163179928 0.07871922649854063
+0.0644172826082087 0.1610878661087883 0.06441728260820868 0.1610878661087883 0.07698760390376978
+0.06780766590337785 0.15899581589958364 0.06780766590337785 0.15899581589958364 0.07522090066592246
+0.07119804919854687 0.15690376569037892 0.07119804919854687 0.15690376569037892 0.07344465919298364
+0.07458843249371591 0.15481171548117392 0.07458843249371593 0.15481171548117392 0.07168876527803436
+0.07797881578888473 0.15271966527196854 0.07797881578888473 0.15271966527196854 0.0699876368010457
+0.08136919908405334 0.1506276150627623 0.08136919908405334 0.15062761506276232 0.06838034691074525
+0.08475958237922117 0.148535564853555 0.08475958237922117 0.148535564853555 0.0669105636368411
+0.013561533180675723 0.2008368200836821 0.013561533180675723 0.2008368200836821 0.10164778254284439
+0.01695191647584465 0.1987447698744771 0.01695191647584465 0.1987447698744771 0.10063452225074888
+0.020342299771013584 0.1966527196652721 0.020342299771013584 0.1966527196652721 0.09966987195901146
+0.023732683066182567 0.19037656903765698 0.023732683066182567 0.19037656903765698 0.09540760767515578
+0.02712306636135151 0.18828451882845199 0.02712306636135151 0.18828451882845199 0.09447090623698594
+0.023732683066182526 0.19456066945606706 0.023732683066182526 0.19456066945606706 0.09871477524158645
+0.03051344965652045 0.18619246861924696 0.03051344965652045 0.18619246861924696 0.09348859245902329
+0.033903832951689396 0.18410041841004188 0.033903832951689396 0.18410041841004188 0.09243584853536536
+0.037294216246858324 0.1820083682008368 0.037294216246858324 0.1820083682008368 0.09129310638922959
+0.0406845995420272 0.17991631799163166 0.040684599542027196 0.17991631799163166 0.09004619853633601
+0.04407498283719605 0.17782426778242652 0.04407498283719605 0.17782426778242652 0.08868633720383777
+0.047465366132364815 0.17573221757322136 0.047465366132364815 0.17573221757322136 0.08720997509365058
+0.05085574942753352 0.17364016736401633 0.05085574942753352 0.17364016736401633 0.08561859651339378
+0.05424613272270213 0.17154811715481144 0.05424613272270213 0.17154811715481144 0.0839184816137233
+0.057636516017870565 0.16945606694560666 0.057636516017870565 0.16945606694560666 0.08212048000319451
+0.061026899313039285 0.16736401673640222 0.061026899313039285 0.16736401673640222 0.08023982318852717
+0.006780766590337879 0.20920502092050217 0.006780766590337879 0.20920502092050217 0.10744013484697146
+0.010171149885506806 0.20711297071129708 0.010171149885506806 0.20711297071129708 0.10621607613001179
+0.013561533180675725 0.20502092050209209 0.013561533180675725 0.20502092050209209 0.10512099691802891
+0.08814996567438745 0.1464435146443467 0.08814996567438745 0.1464435146443467 0.0656261507435975
+0.15899581589954592 0.06780766590337883 0.15899581589954592 0.06780766590337883 0.14445414715823054
+0.1569037656903408 0.07119804919854777 0.1569037656903408 0.07119804919854777 0.14105159304410064
+0.1548117154811357 0.07458843249371672 0.1548117154811357 0.07458843249371672 0.13734284026524204
+0.1527196652719306 0.07797881578888566 0.1527196652719306 0.07797881578888566 0.13336194604871454
+0.09154034896955192 0.14435146443513827 0.09154034896955192 0.14435146443513827 0.06457825314781261
+0.09493073226471348 0.1422594142259333 0.09493073226471348 0.14225941422593327 0.0638197073436354
+0.15062761506272548 0.0813691990840546 0.15062761506272548 0.0813691990840546 0.12914715978793678
+0.14853556485352037 0.08475958237922354 0.14853556485352037 0.08475958237922354 0.12474020455534678
+0.14644351464431526 0.08814996567439248 0.14644351464431526 0.08814996567439248 0.12018556206024773
+0.0983210907395576 0.14016730901293273 0.0983210907395576 0.14016730901293273 0.06340271573593613
+0.14435146443511016 0.09154034896956142 0.14435146443511016 0.09154034896956142 0.11552976561491622
+0.14225941422590505 0.09493073226473037 0.14225941422590505 0.09493073226473037 0.11082070581446253
+0.14016736401669994 0.09832111555989931 0.14016736401669994 0.09832111555989931 0.10610695538096326
+0.10171127399928052 0.13807425740197624 0.10171127399928052 0.13807425740197624 0.0633760600621087
+0.1380784507798263 0.10171262881153527 0.1380784507798263 0.10171262881153527 0.10143899645329753
+0.10509836563765158 0.13597663304544186 0.10509836563765158 0.13597663304544186 0.06378241664095684
+0.13599626982480817 0.1051049366410813 0.13599626982480817 0.1051049366410813 0.09686791164171622
+0.10847203872491788 0.13388075228687282 0.10847203872491788 0.13388075228687282 0.06464902171123986
+0.13391686756994214 0.10849492907758948 0.13391686756994214 0.1084949290775895 0.09243888991079897
+0.11183158369657346 0.13179212239131005 0.11183158369657346 0.13179212239131008 0.06598739841495636
+0.1318448129593851 0.11187844535289254 0.1318448129593851 0.11187844535289253 0.08820278796748128
+0.11515601910657954 0.12973425905149935 0.11515601910657954 0.12973425905149935 0.06777879657628298
+0.1298925237696497 0.11524181342201766 0.1298925237696497 0.11524181342201766 0.0842931543573819
+0.11844616198107831 0.12770336554764966 0.11844616198107831 0.12770336554764963 0.07000167315869697
+0.12802808632681772 0.11856213178162867 0.12802808632681772 0.11856213178162867 0.08072367669774959
+0.12167271563352855 0.12564055549865172 0.12167271563352855 0.12564055549865172 0.07262957090804927
+0.1262588653299471 0.12189863474285288 0.1262588653299471 0.12189863474285288 0.07749928371063912
+0.12453512368110942 0.12455240615727363 0.12453512368110942 0.12455240615727363 0.07489933381761468
+0.17991631799159702 0.0406845995420273 0.17991631799159702 0.0406845995420273 0.16179966325739456
+0.1778242677823919 0.04407498283719624 0.1778242677823919 0.04407498283719624 0.1614568398026948
+0.1757322175731868 0.04746536613236518 0.1757322175731868 0.04746536613236518 0.16076642406520028
+0.1736401673639817 0.050855749427534125 0.1736401673639817 0.050855749427534125 0.1597031740966348
+0.17154811715477658 0.054246132722703067 0.17154811715477658 0.054246132722703067 0.15825098544042152
+0.16945606694557147 0.05763651601787201 0.16945606694557147 0.05763651601787201 0.1564025171287504
+0.16736401673636636 0.06102689931304095 0.16736401673636636 0.06102689931304095 0.15415871141193385
+0.16527196652716125 0.06441728260820989 0.16527196652716125 0.06441728260820989 0.15152823745433172
+0.16317991631795614 0.06780766590337883 0.16317991631795614 0.06780766590337883 0.14852688104356096
+0.20920502092046855 0.006780766590337883 0.20920502092046855 0.006780766590337883 0.16184813940837495
+0.20711297071126344 0.010171149885506825 0.20711297071126342 0.010171149885506825 0.1619596387738578
+0.20502092050205833 0.013561533180675767 0.20502092050205833 0.013561533180675767 0.1623748784120487
+0.198744769874443 0.01695191647584471 0.198744769874443 0.01695191647584471 0.16085113857942743
+0.1966527196652379 0.02034229977101365 0.1966527196652379 0.02034229977101365 0.16157654509450914
+0.1945606694560328 0.02373268306618259 0.1945606694560328 0.02373268306618259 0.16237678269359515
+0.19246861924682768 0.027123066361351533 0.19246861924682768 0.027123066361351533 0.1631729611861694
+0.19037656903762257 0.030513449656520475 0.19037656903762257 0.030513449656520475 0.16388959403479755
+0.18828451882841746 0.03390383295168942 0.18828451882841746 0.03390383295168942 0.1644568048843322
+0.18619246861921235 0.03729421624685836 0.18619246861921235 0.03729421624685836 0.16481194227294085
+0.18410041841000724 0.0406845995420273 0.18410041841000724 0.0406845995420273 0.1649006683246321
+0.20292887029285323 0.01695191647584471 0.20292887029285325 0.01695191647584471 0.16302517752923426
+0.06441728260820788 0.16527196652719797 0.06441728260820788 0.16527196652719797 0.0782959976397466
+0.06780766590337685 0.16317991631799375 0.06780766590337685 0.16317991631799375 0.07631269082288149
+0.07119804919854579 0.16108786610878956 0.07119804919854579 0.16108786610878956 0.07431780985084863
+0.07458843249371491 0.15899581589958525 0.07458843249371493 0.15899581589958525 0.07234355473840831
+0.07797881578888387 0.1569037656903807 0.07797881578888387 0.1569037656903807 0.0704265039134457
+0.08136919908405275 0.1548117154811758 0.08136919908405275 0.1548117154811758 0.06860763780078906
+0.08475958237922115 0.15271966527197037 0.08475958237922115 0.15271966527197037 0.06693218857929191
+0.08814996567438871 0.1506276150627637 0.08814996567438871 0.1506276150627637 0.06544916719854212
+0.01695191647584464 0.2029288702928871 0.01695191647584464 0.2029288702928871 0.10411202171077906
+0.020342299771013553 0.2008368200836821 0.020342299771013553 0.2008368200836821 0.10314632270914963
+0.023732683066182477 0.1987447698744771 0.023732683066182477 0.1987447698744771 0.10218293838751437
+0.027123066361351474 0.19246861924686207 0.027123066361351474 0.19246861924686207 0.0977335043005053
+0.03051344965652042 0.19037656903765707 0.03051344965652042 0.19037656903765707 0.09669472016911017
+0.027123066361351412 0.1966527196652721 0.027123066361351412 0.1966527196652721 0.10118426869290535
+0.03390383295168937 0.18828451882845199 0.03390383295168937 0.18828451882845199 0.09557220339838023
+0.037294216246858344 0.186192468619247 0.03729421624685835 0.186192468619247 0.09434529322033669
+0.04068459954202727 0.18410041841004188 0.04068459954202727 0.18410041841004188 0.09299908593399737
+0.044074982837196186 0.18200836820083674 0.044074982837196186 0.18200836820083674 0.09152444734625396
+0.04746536613236507 0.17991631799163152 0.04746536613236507 0.17991631799163152 0.08991789252956917
+0.05085574942753387 0.17782426778242633 0.05085574942753387 0.17782426778242633 0.08818138147039978
+0.05424613272270253 0.17573221757322108 0.05424613272270253 0.17573221757322108 0.08632207312527101
+0.05763651601787106 0.17364016736401602 0.05763651601787106 0.17364016736401602 0.08435207390023963
+0.06102689931303936 0.1715481171548113 0.06102689931303936 0.1715481171548113 0.08228820982041628
+0.06441728260820744 0.16945606694560666 0.06441728260820744 0.16945606694560666 0.08015184424145207
+0.006780766590337883 0.21338912133891227 0.006780766590337883 0.21338912133891227 0.11089717485384067
+0.010171149885506818 0.2112970711297072 0.010171149885506818 0.21129707112970716 0.10970183417529288
+0.013561533180675744 0.2092050209205021 0.013561533180675744 0.2092050209205021 0.10863461797353298
+0.016951916475844663 0.20711297071129708 0.016951916475844663 0.20711297071129708 0.10765108597481544
+0.09154034896955554 0.14853556485355474 0.09154034896955554 0.1485355648535547 0.06421039679253425
+0.16108786610875103 0.07119804919854777 0.16108786610875103 0.07119804919854777 0.14517689628508235
+0.15899581589954592 0.07458843249371672 0.15899581589954592 0.07458843249371672 0.14150633090741552
+0.1569037656903408 0.07797881578888566 0.1569037656903408 0.07797881578888566 0.13754833378316053
+0.1548117154811357 0.0813691990840546 0.1548117154811357 0.0813691990840546 0.13334045122032612
+0.09493073226471949 0.1464435146443439 0.09493073226471949 0.1464435146443439 0.0632688978895487
+0.09832110923138858 0.14435145472639277 0.09832110923138858 0.14435145472639277 0.06267655350442142
+0.1527196652719306 0.08475958237922354 0.1527196652719306 0.08475958237922354 0.12892391720629612
+0.15062761506272548 0.08814996567439248 0.15062761506272548 0.08814996567439248 0.1243429418728164
+0.14853556485352037 0.09154034896956142 0.14853556485352037 0.09154034896956142 0.11964400183979197
+0.10171133548426471 0.1422591100617455 0.10171133548426471 0.1422591100617455 0.06248117691131331
+0.14644351464431526 0.09493073226473037 0.14644351464431526 0.09493073226473037 0.11487513567426973
+0.14435146443511016 0.09832111555989931 0.14435146443511016 0.09832111555989931 0.11008524721542014
+0.14225941422590505 0.10171149885506825 0.14225941422590505 0.10171149885506825 0.10532341675357211
+0.10510081228088276 0.1401647066305713 0.10510081228088276 0.14016470663057132 0.06272338961460495
+0.14017185627382617 0.10510268556576602 0.14017185627382614 0.105102685565766 0.100641746143092
+0.10848450916900983 0.13806707203681215 0.10848450916900983 0.13806707203681215 0.06343250496839804
+0.13808822524339273 0.10849313202473125 0.13808822524339273 0.10849313202473125 0.09608800113455584
+0.11185451699104894 0.1359709384978797 0.11185451699104894 0.1359709384978797 0.06462056145167648
+0.13600534094378475 0.11188150197013341 0.13600534094378472 0.1118815019701334 0.09170538041579755
+0.11521907367412894 0.13386849715344862 0.11521907367412894 0.13386849715344862 0.06629150644806701
+0.13394321267952664 0.11526589590539654 0.1339432126795266 0.11526589590539653 0.08755427513292297
+0.11851284022028803 0.1318181072344775 0.11851284022028803 0.1318181072344775 0.06838225896734605
+0.13199600718661356 0.11863343250151501 0.13199600718661356 0.11863343250151502 0.08375606644510548
+0.1217530985702454 0.12974718401490512 0.1217530985702454 0.12974718401490512 0.07088088190378143
+0.1301388470169475 0.12202015555389097 0.13013884701694753 0.12202015555389097 0.08029424566210769
+0.12472965909255478 0.12783752012337601 0.12472965909255478 0.12783752012337601 0.073518079685703
+0.12816431655068664 0.12569231764593203 0.12816431655068664 0.12569231764593203 0.07692097991672521
+0.18200836820080213 0.04407498283719624 0.18200836820080213 0.04407498283719624 0.16467760718286292
+0.17991631799159702 0.04746536613236518 0.17991631799159702 0.04746536613236518 0.16410664122347962
+0.1778242677823919 0.050855749427534125 0.1778242677823919 0.050855749427534125 0.1631609349954819
+0.1757322175731868 0.054246132722703067 0.1757322175731868 0.054246132722703067 0.16182275407719712
+0.1736401673639817 0.05763651601787201 0.1736401673639817 0.05763651601787201 0.1600831323496941
+0.17154811715477658 0.06102689931304095 0.17154811715477658 0.06102689931304095 0.15794142866059147
+0.16945606694557147 0.06441728260820989 0.16945606694557147 0.06441728260820989 0.1554048033835365
+0.16736401673636636 0.06780766590337883 0.16736401673636636 0.06780766590337883 0.1524876371536754
+0.16527196652716125 0.07119804919854777 0.16527196652716125 0.07119804919854777 0.14921090788030814
+0.21338912133887877 0.006780766590337883 0.21338912133887877 0.006780766590337883 0.16364047569711992
+0.21129707112967366 0.010171149885506825 0.2112970711296737 0.010171149885506825 0.1638164627891658
+0.20920502092046855 0.013561533180675767 0.20920502092046855 0.013561533180675767 0.16429853326530877
+0.20711297071126344 0.01695191647584471 0.20711297071126342 0.01695191647584471 0.165019557510361
+0.20083682008364812 0.02034229977101365 0.20083682008364812 0.02034229977101365 0.1638349399641763
+0.198744769874443 0.02373268306618259 0.198744769874443 0.02373268306618259 0.16472539065403533
+0.1966527196652379 0.027123066361351533 0.1966527196652379 0.027123066361351533 0.16561794038896596
+0.1945606694560328 0.030513449656520475 0.1945606694560328 0.030513449656520475 0.16643701885921738
+0.19246861924682768 0.03390383295168942 0.19246861924682768 0.03390383295168942 0.16711231477555358
+0.19037656903762257 0.03729421624685836 0.19037656903762257 0.03729421624685836 0.1675804363464701
+0.18828451882841746 0.0406845995420273 0.18828451882841746 0.0406845995420273 0.16778605165948526
+0.18619246861921235 0.04407498283719624 0.18619246861921235 0.04407498283719624 0.1676825901513925
+0.20502092050205833 0.02034229977101365 0.20502092050205833 0.02034229977101365 0.16590517939619842
+0.217573221757289 0.006780766590337883 0.217573221757289 0.006780766590337883 0.1652903475410289
+0.06780766590337602 0.1673640167364027 0.06780766590337602 0.1673640167364027 0.07796875392959797
+0.0711980491985444 0.16527196652719903 0.0711980491985444 0.16527196652719903 0.07576906430133573
+0.07458843249371334 0.16317991631799542 0.07458843249371334 0.16317991631799542 0.07358722784423789
+0.07797881578888217 0.16108786610879178 0.07797881578888217 0.16108786610879178 0.0714620065350216
+0.08136919908405124 0.15899581589958792 0.08136919908405126 0.15899581589958792 0.06943638855334962
+0.08475958237921986 0.15690376569038383 0.08475958237921986 0.1569037656903838 0.0675573332841161
+0.08814996567438789 0.15481171548117942 0.08814996567438789 0.15481171548117942 0.06587520290805243
+0.09154034896955528 0.15271966527197411 0.09154034896955528 0.15271966527197411 0.06444271790282007
+0.020342299771013567 0.20502092050209209 0.020342299771013567 0.20502092050209209 0.10670665668467565
+0.02373268306618247 0.2029288702928871 0.02373268306618247 0.2029288702928871 0.10575851318155131
+0.02712306636135137 0.20083682008368212 0.02712306636135137 0.20083682008368212 0.10476718495476556
+0.030513449656520353 0.19456066945606712 0.030513449656520353 0.19456066945606712 0.10011721989548263
+0.033903832951689306 0.1924686192468621 0.033903832951689306 0.1924686192468621 0.09895401017399708
+0.030513449656520288 0.19874476987447715 0.030513449656520284 0.19874476987447712 0.1036977744201041
+0.037294216246858254 0.1903765690376571 0.037294216246858254 0.1903765690376571 0.09767267235828993
+0.04068459954202724 0.18828451882845207 0.04068459954202724 0.18828451882845207 0.09625730383633481
+0.04407498283719621 0.186192468619247 0.04407498283719621 0.186192468619247 0.0946981181737197
+0.04746536613236516 0.18410041841004185 0.04746536613236516 0.18410041841004185 0.09299135157882608
+0.05085574942753409 0.18200836820083663 0.05085574942753409 0.18200836820083663 0.09113907262065159
+0.05424613272270293 0.17991631799163132 0.054246132722702935 0.17991631799163132 0.08914893741527426
+0.05763651601787163 0.177824267782426 0.05763651601787163 0.177824267782426 0.08703392584957875
+0.06102689931304007 0.1757322175732207 0.06102689931304007 0.1757322175732207 0.08481208757179433
+0.06441728260820827 0.17364016736401564 0.06441728260820827 0.17364016736401564 0.08250631908837004
+0.06780766590337613 0.17154811715481108 0.06780766590337613 0.17154811715481108 0.08014418447626637
+0.006780766590337883 0.21757322175732235 0.006780766590337883 0.21757322175732233 0.11431792186975447
+0.010171149885506825 0.2154811715481173 0.010171149885506825 0.2154811715481173 0.11316798539046209
+0.01356153318067576 0.21338912133891222 0.013561533180675761 0.21338912133891222 0.11214613140087136
+0.016951916475844687 0.2112970711297072 0.016951916475844684 0.21129707112970716 0.11120650732593983
+0.0203422997710136 0.2092050209205021 0.020342299771013598 0.2092050209205021 0.11030290088199741
+0.09493073226472122 0.15062761506276665 0.09493073226472122 0.15062761506276665 0.0633132903418988
+0.16317991631795614 0.07458843249371672 0.16317991631795614 0.07458843249371672 0.14560153765045583
+0.16108786610875103 0.07797881578888566 0.16108786610875103 0.07797881578888566 0.14169171795756208
+0.15899581589954592 0.0813691990840546 0.15899581589954592 0.0813691990840546 0.137518219468715
+0.1569037656903408 0.08475958237922354 0.1569037656903408 0.08475958237922354 0.13312169099296176
+0.09832111555988643 0.1485355648535551 0.09832111555988643 0.1485355648535551 0.06253866957193328
+0.10171146193884602 0.1464434580100217 0.10171146193884602 0.1464434580100217 0.06216599315961504
+0.1548117154811357 0.08814996567439248 0.1548117154811357 0.08814996567439248 0.12854595121077636
+0.1527196652719306 0.09154034896956142 0.1527196652719306 0.09154034896956142 0.12383727591203454
+0.15062761506272548 0.09493073226473037 0.15062761506272548 0.09493073226473037 0.11904368285870988
+0.10510140928088431 0.1443507130388215 0.10510140928088431 0.1443507130388215 0.062234541584992926
+0.14853556485352037 0.09832111555989931 0.14853556485352037 0.09832111555989931 0.1142142158480272
+0.14644351464431526 0.10171149885506825 0.14644351464431526 0.10171149885506825 0.10939822902435888
+0.1443525770472921 0.10510203241777227 0.1443525770472921 0.10510203241777227 0.10464562090691941
+0.10848965045799114 0.1422554966712312 0.10848965045799112 0.1422554966712312 0.06277259943373913
+0.14226471369203111 0.10849251115726238 0.14226471369203111 0.10849251115726237 0.10000619584236874
+0.11187079161368903 0.14015820892260536 0.11187079161368903 0.14015820892260536 0.06379364344420257
+0.14017963187279806 0.11188240965915032 0.14017963187279806 0.11188240965915032 0.0955258598074028
+0.11523804570384381 0.13806126457068457 0.11523804570384381 0.13806126457068457 0.06529381940037103
+0.1381018225412196 0.11527097009892584 0.1381018225412196 0.11527097009892584 0.09125233030275472
+0.11858719224720986 0.13597080420934993 0.11858719224720986 0.13597080420934993 0.06725270615266384
+0.1360570434814442 0.11865587999500418 0.1360570434814442 0.11865587999500417 0.08724955307088644
+0.12189675129905247 0.1338975574576876 0.12189675129905249 0.1338975574576876 0.06962522424451469
+0.13413251471219378 0.12200718428999742 0.13413251471219378 0.12200718428999742 0.08364364693037064
+0.12521742487924825 0.13180564063260702 0.12521742487924825 0.13180564063260702 0.07241509528022806
+0.13225329199542626 0.12532723236142002 0.13225329199542626 0.12532723236142004 0.08038762144113581
+0.12831353516092214 0.12993972801900264 0.12831353516092214 0.12993972801900264 0.07533572412845597
+0.13109108845574075 0.12827133937073576 0.13109108845574075 0.12827133937073576 0.07815299367971262
+0.18410041841000724 0.04746536613236518 0.18410041841000724 0.04746536613236518 0.16723259025491802
+0.18200836820080213 0.050855749427534125 0.18200836820080213 0.050855749427534125 0.16640777152718556
+0.17991631799159702 0.054246132722703067 0.17991631799159702 0.054246132722703067 0.16518889772295933
+0.1778242677823919 0.05763651601787201 0.1778242677823919 0.05763651601787201 0.16356548415433167
+0.1757322175731868 0.06102689931304095 0.1757322175731868 0.06102689931304095 0.16153539043905948
+0.1736401673639817 0.06441728260820989 0.1736401673639817 0.06441728260820989 0.15910432936885519
+0.17154811715477658 0.06780766590337883 0.17154811715477658 0.06780766590337883 0.1562853143776913
+0.16945606694557147 0.07119804919854777 0.16945606694557147 0.07119804919854777 0.1530980618113326
+0.16736401673636636 0.07458843249371672 0.16736401673636636 0.07458843249371672 0.14956835957108883
+0.21548117154808388 0.010171149885506825 0.21548117154808386 0.010171149885506825 0.16552136124822125
+0.21338912133887877 0.013561533180675767 0.21338912133887877 0.013561533180675767 0.16606044756147384
+0.21129707112967366 0.01695191647584471 0.2112970711296737 0.01695191647584471 0.16684213212332785
+0.20920502092046855 0.02034229977101365 0.20920502092046855 0.02034229977101365 0.16779343090920265
+0.20292887029285323 0.02373268306618259 0.20292887029285325 0.02373268306618259 0.16687750036760088
+0.20083682008364812 0.027123066361351533 0.20083682008364812 0.027123066361351533 0.16785842414890426
+0.198744769874443 0.030513449656520475 0.198744769874443 0.030513449656520475 0.16877249713112252
+0.1966527196652379 0.03390383295168942 0.1966527196652379 0.03390383295168942 0.16954917611463508
+0.1945606694560328 0.03729421624685836 0.1945606694560328 0.03729421624685836 0.17012452939336867
+0.19246861924682768 0.0406845995420273 0.19246861924682768 0.0406845995420273 0.17044242449140815
+0.19037656903762257 0.04407498283719624 0.19037656903762257 0.04407498283719624 0.17045527908795569
+0.18828451882841746 0.04746536613236518 0.18828451882841746 0.04746536613236518 0.1701244571577674
+0.20711297071126344 0.02373268306618259 0.20711297071126342 0.02373268306618259 0.1688374767079451
+0.2217573221756992 0.006780766590337883 0.2217573221756992 0.006780766590337883 0.1668133246400438
+0.2196652719664941 0.010171149885506825 0.21966527196649413 0.010171149885506825 0.16708870828724187
+0.07119804919854367 0.16945606694560683 0.07119804919854367 0.16945606694560686 0.0777577806070015
+0.0745884324937119 0.16736401673640364 0.0745884324937119 0.16736401673640364 0.07538363172310664
+0.07797881578887979 0.16527196652720094 0.07797881578887979 0.16527196652720091 0.07306257606878276
+0.08136919908404866 0.16317991631799825 0.08136919908404866 0.16317991631799825 0.07083957822150155
+0.08475958237921721 0.16108786610879558 0.08475958237921721 0.16108786610879558 0.06876336630326546
+0.08814996567438599 0.15899581589959252 0.08814996567438599 0.15899581589959252 0.06688575961955155
+0.09154034896955332 0.15690376569038958 0.09154034896955332 0.15690376569038958 0.06526053322325405
+0.09493073226471986 0.15481171548118614 0.09493073226471986 0.15481171548118614 0.06394168365356216
+0.023732683066182505 0.20711297071129708 0.023732683066182505 0.20711297071129708 0.1093907254656903
+0.027123066361351394 0.20502092050209209 0.027123066361351394 0.20502092050209209 0.10842868294445025
+0.03051344965652028 0.20292887029288711 0.03051344965652028 0.20292887029288711 0.10738006804470908
+0.03390383295168922 0.19665271966527215 0.03390383295168922 0.19665271966527212 0.10252083625970214
+0.037294216246858164 0.19456066945606718 0.037294216246858164 0.19456066945606718 0.10121294429331039
+0.03390383295168916 0.20083682008368214 0.03390383295168916 0.20083682008368212 0.10621371939572823
+0.040684599542027126 0.1924686192468622 0.040684599542027126 0.1924686192468622 0.09975699503945958
+0.0440749828371961 0.1903765690376572 0.0440749828371961 0.1903765690376572 0.09814230216892976
+0.04746536613236511 0.1882845188284522 0.04746536613236511 0.1882845188284522 0.09636453484096574
+0.05085574942753409 0.18619246861924707 0.05085574942753409 0.18619246861924707 0.09442554817593558
+0.05424613272270307 0.18410041841004185 0.05424613272270307 0.18410041841004185 0.09233314779116474
+0.057636516017872 0.18200836820083652 0.057636516017872 0.18200836820083652 0.0901008234939822
+0.06102689931304075 0.17991631799163108 0.06102689931304075 0.17991631799163108 0.0877474802170561
+0.06441728260820924 0.17782426778242552 0.06441728260820924 0.17782426778242552 0.08529718679558135
+0.06780766590337729 0.17573221757322 0.06780766590337729 0.17573221757322 0.0827789543961688
+0.07119804919854496 0.17364016736401486 0.07119804919854496 0.17364016736401486 0.08022654504473516
+0.0067807665903378824 0.22175732217573244 0.0067807665903378824 0.22175732217573244 0.1176690601932688
+0.010171149885506825 0.21966527196652738 0.010171149885506825 0.21966527196652738 0.11657868811428888
+0.013561533180675767 0.21757322175732233 0.013561533180675767 0.21757322175732233 0.11561703365996019
+0.016951916475844705 0.2154811715481173 0.016951916475844705 0.2154811715481173 0.11473700156998994
+0.020342299771013646 0.21338912133891222 0.020342299771013646 0.21338912133891222 0.11389089442082147
+0.02373268306618255 0.2112970711297072 0.02373268306618255 0.21129707112970716 0.11303246944167879
+0.09832111555988554 0.15271966527198166 0.09832111555988554 0.15271966527198166 0.06298104046569243
+0.16527196652716125 0.07797881578888566 0.16527196652716125 0.07797881578888566 0.14572741036255454
+0.16317991631795614 0.0813691990840546 0.16317991631795614 0.0813691990840546 0.1416111553849295
+0.16108786610875103 0.08475958237922354 0.16108786610875103 0.08475958237922354 0.13725958256568827
+0.15899581589954592 0.08814996567439248 0.15899581589954592 0.08814996567439248 0.1327160221630206
+0.10171149885504883 0.15062761506277286 0.10171149885504883 0.15062761506277286 0.062425325394037605
+0.1051017910902524 0.14853542515557105 0.1051017910902524 0.14853542515557105 0.06231294907102037
+0.1569037656903408 0.09154034896956142 0.1569037656903408 0.09154034896956142 0.12802643157765095
+0.1548117154811357 0.09493073226473037 0.1548117154811357 0.09493073226473037 0.12323867045721426
+0.1527196652719306 0.09832111555989931 0.1527196652719306 0.09832111555989931 0.11840176662415569
+0.10849146352270783 0.14644239641049359 0.10849146352270785 0.14644239641049359 0.06267099293727073
+0.15062761506272548 0.10171149885506825 0.15062761506272548 0.10171149885506825 0.11356517304484477
+0.1485355648535204 0.10510188215023719 0.1485355648535204 0.10510188215023719 0.10877801600117236
+0.14644512087438755 0.10849231935707038 0.14644512087438755 0.10849231935707038 0.10408986551195133
+0.11187897195961156 0.1443469768714231 0.11187897195961156 0.1443469768714231 0.06351285626269045
+0.14435684510069693 0.11188254608314112 0.14435684510069693 0.11188254608314112 0.09954763479922492
+0.11525830128254178 0.14225020439573446 0.11525830128254178 0.14225020439573446 0.06483547114537519
+0.1422736134732113 0.11527176488592171 0.1422736134732113 0.11527176488592171 0.09519811777451716
+0.1186205568834648 0.14015514009494215 0.1186205568834648 0.14015514009494215 0.06661803362855306
+0.14020181271516946 0.11865808420439752 0.14020181271516943 0.11865808420439751 0.09108828123660272
+0.12195579874326838 0.13807653412109097 0.12195579874326838 0.13807653412109097 0.06882227147307589
+0.13817315756290327 0.1220299197858554 0.13817315756290327 0.12202991978585541 0.08728872049059298
+0.12526524142808745 0.13602525422181796 0.12526524142808745 0.13602525422181796 0.07140588353253079
+0.13624750515657696 0.12535661342582452 0.136247505156577 0.12535661342582452 0.08389295063435236
+0.12858046250759567 0.1340129938120335 0.12858046250759567 0.1340129938120335 0.07434340152711716
+0.13439763473437666 0.12861916847361385 0.1343976347343767 0.12861916847361385 0.08088222082428874
+0.13209825947970671 0.1320185565293313 0.1320982594797067 0.13201855652933128 0.07778616106043638
+0.18619246861921235 0.050855749427534125 0.18619246861921235 0.050855749427534125 0.16942038688045824
+0.18410041841000724 0.054246132722703067 0.18410041841000724 0.054246132722703067 0.16832246596680034
+0.18200836820080213 0.05763651601787201 0.18200836820080213 0.05763651601787201 0.16681880751742317
+0.17991631799159702 0.06102689931304095 0.17991631799159702 0.06102689931304095 0.16490586760138246
+0.1778242677823919 0.06441728260820989 0.1778242677823919 0.06441728260820989 0.16258798548541564
+0.1757322175731868 0.06780766590337883 0.1757322175731868 0.06780766590337883 0.15987685917871286
+0.1736401673639817 0.07119804919854777 0.1736401673639817 0.07119804919854777 0.15679097258601163
+0.17154811715477658 0.07458843249371672 0.17154811715477658 0.07458843249371672 0.1533549857956906
+0.16945606694557147 0.07797881578888566 0.16945606694557147 0.07797881578888566 0.14959909652534428
+0.217573221757289 0.013561533180675767 0.217573221757289 0.013561533180675767 0.16767376232155315
+0.21548117154808388 0.01695191647584471 0.21548117154808386 0.01695191647584471 0.16850474964195253
+0.21338912133887877 0.02034229977101365 0.21338912133887877 0.02034229977101365 0.16951016717196063
+0.21129707112967366 0.02373268306618259 0.2112970711296737 0.02373268306618259 0.17061431082063463
+0.20502092050205833 0.027123066361351533 0.20502092050205833 0.027123066361351533 0.16989683798188107
+0.20292887029285323 0.030513449656520475 0.20292887029285325 0.030513449656520475 0.17089636079317072
+0.20083682008364812 0.03390383295168942 0.20083682008364812 0.03390383295168942 0.17176545874951046
+0.198744769874443 0.03729421624685836 0.198744769874443 0.03729421624685836 0.1724398498530841
+0.1966527196652379 0.0406845995420273 0.1966527196652379 0.0406845995420273 0.17286278737844252
+0.1945606694560328 0.04407498283719624 0.1945606694560328 0.04407498283719624 0.17298585662998167
+0.19246861924682768 0.04746536613236518 0.19246861924682768 0.04746536613236518 0.1727694164717142
+0.19037656903762257 0.050855749427534125 0.19037656903762257 0.050855749427534125 0.1721827603524109
+0.20920502092046855 0.027123066361351533 0.20920502092046855 0.027123066361351533 0.17174056383990297
+0.22594142259410943 0.006780766590337883 0.22594142259410943 0.006780766590337883 0.16822764097173626
+0.23012552301251965 0.006780766590337883 0.23012552301251965 0.006780766590337883 0.1695536522087363
+0.22384937238490432 0.010171149885506825 0.2238493723849043 0.010171149885506825 0.16853584698584134
+0.2217573221756992 0.013561533180675767 0.2217573221756992 0.013561533180675767 0.16915490302791336
+0.07458843249371203 0.17154811715481066 0.07458843249371204 0.17154811715481066 0.0776782951947922
+0.07797881578887833 0.16945606694560705 0.07797881578887833 0.16945606694560708 0.0751769180911291
+0.08136919908404609 0.16736401673640533 0.08136919908404609 0.16736401673640533 0.07276922107597807
+0.08475958237921316 0.1652719665272043 0.08475958237921316 0.1652719665272043 0.07050564148059796
+0.08814996567438184 0.1631799163180033 0.08814996567438184 0.1631799163180033 0.0684394734443126
+0.09154034896954971 0.1610878661088023 0.09154034896954971 0.1610878661088023 0.06662564119954205
+0.09493073226471754 0.1589958158996008 0.09493073226471754 0.1589958158996008 0.06511889347820955
+0.09832111555988245 0.15690376569039996 0.09832111555988245 0.15690376569039996 0.0639713735764902
+0.027123066361351447 0.2092050209205021 0.027123066361351447 0.2092050209205021 0.11211867597442439
+0.03051344965652034 0.20711297071129708 0.03051344965652034 0.20711297071129708 0.1111110333102343
+0.033903832951689215 0.2050209205020921 0.033903832951689215 0.2050209205020921 0.10997665071461303
+0.03729421624685806 0.1987447698744772 0.03729421624685806 0.1987447698744772 0.10490465003831916
+0.04068459954202699 0.19665271966527223 0.04068459954202699 0.19665271966527223 0.10343440554730667
+0.03729421624685804 0.20292887029288711 0.03729421624685803 0.20292887029288711 0.10868892034443746
+0.044074982837195936 0.19456066945606734 0.044074982837195936 0.19456066945606734 0.10179120351471092
+0.047465366132364926 0.19246861924686243 0.047465366132364926 0.19246861924686243 0.09996990718985493
+0.05085574942753394 0.19037656903765743 0.05085574942753394 0.19037656903765743 0.09797188137663383
+0.054246132722702976 0.18828451882845235 0.054246132722702976 0.18828451882845235 0.09580477225918893
+0.057636516017872 0.18619246861924718 0.057636516017872 0.18619246861924718 0.09348224581999763
+0.061026899313040985 0.18410041841004185 0.061026899313040985 0.18410041841004185 0.09102371231982852
+0.06441728260820984 0.18200836820083635 0.06441728260820984 0.18200836820083635 0.08845405668496777
+0.06780766590337843 0.17991631799163063 0.06780766590337843 0.17991631799163063 0.0858033858297365
+0.07119804919854657 0.17782426778242474 0.07119804919854657 0.17782426778242474 0.08310679274211942
+0.074588432493714 0.17573221757321886 0.074588432493714 0.17573221757321886 0.08040412210748336
+0.00678076659033788 0.22594142259414246 0.006780766590337881 0.2259414225941425 0.1209215787517549
+0.01017114988550682 0.22384937238493746 0.01017114988550682 0.2238493723849375 0.11990239751533728
+0.013561533180675763 0.2217573221757324 0.013561533180675765 0.22175732217573244 0.11901311102801153
+0.01695191647584471 0.21966527196652738 0.01695191647584471 0.21966527196652738 0.11820556313302166
+0.020342299771013646 0.21757322175732238 0.020342299771013646 0.21757322175732238 0.11743073405473013
+0.023732683066182588 0.2154811715481173 0.023732683066182588 0.2154811715481173 0.11664086002333036
+0.027123066361351502 0.21338912133891222 0.027123066361351502 0.21338912133891222 0.11579123862181119
+0.006780766590337874 0.2301255230125525 0.006780766590337874 0.2301255230125525 0.12405085369080382
+0.10171149885504617 0.15481171548119926 0.10171149885504617 0.15481171548119924 0.06322967394707385
+0.16736401673636636 0.0813691990840546 0.16736401673636636 0.0813691990840546 0.14555837817829265
+0.16527196652716125 0.08475958237922354 0.16527196652716125 0.08475958237922354 0.14127209805603735
+0.16317991631795614 0.08814996567439248 0.16317991631795614 0.08814996567439248 0.13678301781659952
+0.16108786610875103 0.09154034896956142 0.16108786610875103 0.09154034896956142 0.13213667713471436
+0.1051018821502107 0.15271966527199352 0.1051018821502107 0.15271966527199352 0.06293169244155539
+0.10849214280155363 0.1506274269109925 0.10849214280155363 0.1506274269109925 0.06310373904095595
+0.15899581589954592 0.09493073226473037 0.15899581589954592 0.09493073226473037 0.12738066065730178
+0.1569037656903408 0.09832111555989931 0.1569037656903408 0.09832111555989931 0.1225638478013273
+0.1548117154811357 0.10171149885506825 0.1548117154811357 0.10171149885506825 0.11773564487188283
+0.11188172140526058 0.14853434714710265 0.11188172140526058 0.14853434714710265 0.06375842681615228
+0.15271966527193062 0.10510188215023719 0.15271966527193062 0.10510188215023719 0.11294519970779372
+0.1506276150627255 0.10849226544540613 0.1506276150627255 0.10849226544540613 0.10824060116143526
+0.14853728718514073 0.1118826040514402 0.14853728718514073 0.1118826040514402 0.10366980055243537
+0.11526911987053995 0.1464388148412489 0.11526911987053996 0.1464388148412489 0.06489368435754635
+0.14644961719973093 0.11527232400960313 0.14644961719973093 0.11527232400960315 0.09927760954189215
+0.1186462311440345 0.14434100815565695 0.1186462311440345 0.14434100815565695 0.06649024953550609
+0.14436545338935972 0.11866073249330719 0.14436545338935972 0.1186607324933072 0.09510518323033247
+0.12200211954980866 0.14225031224237303 0.12200211954980866 0.14225031224237303 0.0685127011487114
+0.1423012661720791 0.12204150439295021 0.14230126617207908 0.12204150439295021 0.09120685036390141
+0.12532331145267292 0.1401906388585558 0.12532331145267292 0.1401906388585558 0.0709098671130713
+0.1402766421269411 0.1254043523245293 0.1402766421269411 0.1254043523245293 0.08763441659668081
+0.12860779293205452 0.1381775964777323 0.12860779293205452 0.1381775964777323 0.07362862971903826
+0.13835630688685782 0.12872857795736342 0.13835630688685782 0.12872857795736345 0.08447673523286144
+0.13183274721473123 0.13624809334981813 0.13183274721473123 0.13624809334981813 0.07658977461878706
+0.136443563739022 0.1320105459263708 0.136443563739022 0.13201054592637076 0.08166281574704898
+0.134746827699268 0.13488835066448984 0.134746827699268 0.13488835066448984 0.07939151148786992
+0.18828451882841746 0.054246132722703067 0.18828451882841746 0.054246132722703067 0.1712040615947998
+0.18619246861921235 0.05763651601787201 0.18619246861921235 0.05763651601787201 0.16982015579342288
+0.18410041841000724 0.06102689931304095 0.18410041841000724 0.06102689931304095 0.16802620156877987
+0.18200836820080213 0.06441728260820989 0.18200836820080213 0.06441728260820989 0.1658252507986653
+0.17991631799159702 0.06780766590337883 0.17991631799159702 0.06780766590337883 0.1632277511780317
+0.1778242677823919 0.07119804919854777 0.1778242677823919 0.07119804919854777 0.16025099750069496
+0.1757322175731868 0.07458843249371672 0.1757322175731868 0.07458843249371672 0.1569185431565774
+0.1736401673639817 0.07797881578888566 0.1736401673639817 0.07797881578888566 0.15325957967510695
+0.17154811715477658 0.0813691990840546 0.17154811715477658 0.0813691990840546 0.14930828940576338
+0.2196652719664941 0.01695191647584471 0.21966527196649413 0.01695191647584471 0.17002286977586809
+0.217573221757289 0.02034229977101365 0.217573221757289 0.02034229977101365 0.17106981068889526
+0.21548117154808388 0.02373268306618259 0.21548117154808386 0.02373268306618259 0.17222129285506674
+0.21338912133887877 0.027123066361351533 0.21338912133887877 0.027123066361351533 0.17340164138647504
+0.20711297071126344 0.030513449656520475 0.20711297071126342 0.030513449656520475 0.1728142354062111
+0.20502092050205833 0.03390383295168942 0.20502092050205833 0.03390383295168942 0.1737648680247905
+0.20292887029285323 0.03729421624685836 0.20292887029285325 0.03729421624685836 0.17452800574583363
+0.20083682008364812 0.0406845995420273 0.20083682008364812 0.0406845995420273 0.17504646421135026
+0.198744769874443 0.04407498283719624 0.198744769874443 0.04407498283719624 0.17527116969460402
+0.1966527196652379 0.04746536613236518 0.1966527196652379 0.04746536613236518 0.17516164284853744
+0.1945606694560328 0.050855749427534125 0.1945606694560328 0.050855749427534125 0.17468620000651602
+0.19246861924682768 0.054246132722703067 0.19246861924682768 0.054246132722703067 0.17382193588480924
+0.21129707112967366 0.030513449656520475 0.2112970711296737 0.030513449656520475 0.17453677077696061
+0.22803347280331454 0.010171149885506825 0.22803347280331457 0.010171149885506825 0.16988257267761542
+0.23430962343092987 0.006780766590337883 0.23430962343092987 0.006780766590337883 0.17081322828276554
+0.23221757322172476 0.010171149885506825 0.23221757322172473 0.010171149885506825 0.17115054569905305
+0.22594142259410943 0.013561533180675767 0.22594142259410943 0.013561533180675767 0.1705230878505455
+0.22384937238490432 0.01695191647584471 0.2238493723849043 0.01695191647584471 0.17141509620414655
+0.07797881578888068 0.1736401673640137 0.07797881578888068 0.1736401673640137 0.07773970191995279
+0.0813691990840462 0.1715481171548102 0.0813691990840462 0.1715481171548102 0.07516197929576092
+0.08475958237921044 0.16945606694560766 0.08475958237921044 0.16945606694560766 0.07272296810004199
+0.08814996567437727 0.16736401673640844 0.08814996567437727 0.16736401673640844 0.070477386931151
+0.09154034896954273 0.16527196652721043 0.09154034896954273 0.16527196652721043 0.06848135121184383
+0.09493073226471094 0.16317991631801232 0.09493073226471094 0.16317991631801232 0.06679050308124529
+0.09832111555987728 0.16108786610881426 0.09832111555987728 0.16108786610881423 0.06545754125890647
+0.10171149885504344 0.1589958158996158 0.10171149885504342 0.15899581589961584 0.06452926342648974
+0.030513449656520402 0.21129707112970716 0.030513449656520402 0.21129707112970716 0.11484167512559056
+0.033903832951689285 0.20920502092050208 0.033903832951689285 0.20920502092050208 0.11375756824787416
+0.037294216246858136 0.20711297071129706 0.037294216246858136 0.20711297071129706 0.11251066366917585
+0.04068459954202687 0.2008368200836822 0.04068459954202686 0.20083682008368217 0.10722792999862286
+0.044074982837195756 0.19874476987447737 0.04407498283719575 0.19874476987447734 0.10558064884275987
+0.04068459954202694 0.20502092050209209 0.04068459954202694 0.20502092050209209 0.11107952086419508
+0.047465366132364704 0.19665271966527245 0.047465366132364704 0.19665271966527245 0.10374093862019103
+0.05085574942753366 0.19456066945606762 0.05085574942753366 0.19456066945606762 0.10170943826898861
+0.054246132722702685 0.19246861924686268 0.054246132722702685 0.19246861924686268 0.09949336338704694
+0.05763651601787174 0.19037656903765776 0.05763651601787174 0.19037656903765776 0.09710625484650322
+0.06102689931304082 0.18828451882845268 0.06102689931304082 0.18828451882845268 0.09456770350460121
+0.06441728260820985 0.18619246861924746 0.06441728260820985 0.18619246861924746 0.09190307020685216
+0.06780766590337879 0.18410041841004202 0.06780766590337879 0.18410041841004202 0.08914321143086325
+0.07119804919854754 0.18200836820083618 0.07119804919854754 0.18200836820083618 0.08632420986658541
+0.07458843249371584 0.17991631799163 0.07458843249371584 0.17991631799163 0.08348709460219698
+0.0779788157888834 0.17782426778242344 0.0779788157888834 0.17782426778242344 0.08067751607735496
+0.010171149885506813 0.2280334728033475 0.010171149885506813 0.2280334728033475 0.12311198269198555
+0.013561533180675751 0.2259414225941425 0.013561533180675751 0.2259414225941425 0.12230459801487524
+0.016951916475844694 0.22384937238493746 0.016951916475844694 0.2238493723849375 0.12157967277469821
+0.020342299771013636 0.22175732217573244 0.020342299771013636 0.22175732217573244 0.12088704050443956
+0.02373268306618258 0.2196652719665274 0.02373268306618258 0.21966527196652744 0.12017756861906113
+0.02712306636135152 0.2175732217573223 0.027123066361351523 0.2175732217573223 0.11940502445956704
+0.03051344965652046 0.21548117154811722 0.030513449656520465 0.21548117154811722 0.11852758475595608
+0.0067807665903378694 0.2343096234309625 0.0067807665903378694 0.2343096234309625 0.1270366779549371
+0.010171149885506799 0.2322175732217575 0.010171149885506799 0.2322175732217575 0.12618477909107131
+0.10510188215020415 0.15690376569041894 0.10510188215020415 0.15690376569041894 0.06404343687300838
+0.16945606694557147 0.08475958237922354 0.16945606694557147 0.08475958237922354 0.1451031743455623
+0.16736401673636636 0.08814996567439248 0.16736401673636636 0.08814996567439248 0.14068636250295652
+0.16527196652716125 0.09154034896956142 0.16527196652716125 0.09154034896956142 0.13610289191019367
+0.16317991631795614 0.09493073226473037 0.16317991631795614 0.09493073226473037 0.13139997143571044
+0.10849226544536696 0.1548117154812166 0.10849226544536696 0.1548117154812166 0.06402600123235995
+0.11188254480457643 0.1527195047208396 0.11188254480457642 0.1527195047208396 0.06448910793613873
+0.16108786610875103 0.09832111555989931 0.16108786610875103 0.09832111555989931 0.12662621698873444
+0.15899581589954592 0.10171149885506825 0.15899581589954592 0.10171149885506825 0.12183086176889617
+0.15690376569034084 0.10510188215023719 0.15690376569034084 0.10510188215023719 0.11706294028253318
+0.11527213225358822 0.15062626123780168 0.11527213225358822 0.15062626123780168 0.0654302843902521
+0.15481171548113573 0.10849226544540613 0.15481171548113573 0.10849226544540613 0.11237044854125113
+0.15271966527193062 0.11188264874057507 0.15271966527193062 0.11188264874057507 0.10779948832066287
+0.15062956214344217 0.11527276321004169 0.15062956214344217 0.11527276321004169 0.10339547669272477
+0.11865903734103682 0.148529366499837 0.11865903734103682 0.14852936649983703 0.06683264185857359
+0.14854111809554374 0.11866213030157301 0.14854111809554374 0.11866213030157301 0.09919811973812293
+0.12203470400782505 0.1464294913607791 0.12203470400782505 0.1464294913607791 0.06866403114436002
+0.14645792450534767 0.12204898273490289 0.14645792450534767 0.1220489827349029 0.09524689352469821
+0.12538193783226204 0.14434738816626863 0.12538193783226204 0.14434738816626866 0.07087575511505112
+0.14440161304681154 0.12542537374077584 0.14440161304681154 0.1254253737407758 0.09159535447893231
+0.12868856115261837 0.14230195631314968 0.12868856115261837 0.14230195631314968 0.07341040211794951
+0.14239593177011994 0.12878891431680212 0.14239593177011997 0.12878891431680214 0.08828768744856662
+0.13194841685853378 0.14029430856248382 0.13194841685853378 0.14029430856248382 0.076208942566651
+0.14043994990367784 0.13218326548023232 0.14043994990367784 0.13218326548023232 0.08532354508593898
+0.1351326384754243 0.13829818643276567 0.1351326384754243 0.13829818643276567 0.07919335441018933
+0.13843540951059544 0.13593930396522394 0.13843540951059544 0.13593930396522394 0.08258275801589256
+0.19037656903762257 0.05763651601787201 0.19037656903762257 0.05763651601787201 0.17255454023706177
+0.18828451882841746 0.06102689931304095 0.18828451882841746 0.06102689931304095 0.17087798976159785
+0.18619246861921235 0.06441728260820989 0.18619246861921235 0.06441728260820989 0.1687941465794346
+0.18410041841000724 0.06780766590337883 0.18410041841000724 0.06780766590337883 0.16631228633795106
+0.18200836820080213 0.07119804919854777 0.18200836820080213 0.07119804919854777 0.1634485724582452
+0.17991631799159702 0.07458843249371672 0.17991631799159702 0.07458843249371672 0.16022548801610148
+0.1778242677823919 0.07797881578888566 0.1778242677823919 0.07797881578888566 0.15667123292873428
+0.1757322175731868 0.0813691990840546 0.1757322175731868 0.0813691990840546 0.1528190912139351
+0.1736401673639817 0.08475958237922354 0.1736401673639817 0.08475958237922354 0.14870677084060158
+0.2217573221756992 0.02034229977101365 0.2217573221756992 0.02034229977101365 0.1724902904474304
+0.2196652719664941 0.02373268306618259 0.21966527196649413 0.02373268306618259 0.17367559295092705
+0.217573221757289 0.027123066361351533 0.217573221757289 0.027123066361351533 0.17489637393461607
+0.21548117154808388 0.030513449656520475 0.21548117154808386 0.030513449656520475 0.17607927278632104
+0.20920502092046855 0.03390383295168942 0.20920502092046855 0.03390383295168942 0.1755565058049953
+0.20711297071126344 0.03729421624685836 0.20711297071126342 0.03729421624685836 0.17639637728467472
+0.20502092050205833 0.0406845995420273 0.20502092050205833 0.0406845995420273 0.17699892767335781
+0.20292887029285323 0.04407498283719624 0.20292887029285325 0.04407498283719624 0.17731458903177558
+0.20083682008364812 0.04746536613236518 0.20083682008364812 0.04746536613236518 0.17730220586267442
+0.198744769874443 0.050855749427534125 0.198744769874443 0.050855749427534125 0.17692927376822487
+0.1966527196652379 0.054246132722703067 0.1966527196652379 0.054246132722703067 0.17617195683955286
+0.1945606694560328 0.05763651601787201 0.1945606694560328 0.05763651601787201 0.1750149360307337
+0.21338912133887877 0.03390383295168942 0.21338912133887877 0.03390383295168942 0.17715452937709317
+0.2384937238493401 0.006780766590337883 0.2384937238493401 0.006780766590337883 0.1720290920790554
+0.23012552301251965 0.013561533180675767 0.23012552301251965 0.013561533180675767 0.17179975983791498
+0.23640167364013498 0.010171149885506825 0.236401673640135 0.010171149885506825 0.17236264270528226
+0.23430962343092987 0.013561533180675767 0.23430962343092987 0.013561533180675767 0.17300795042798509
+0.22803347280331454 0.01695191647584471 0.22803347280331457 0.01695191647584471 0.1727026278202515
+0.22594142259410943 0.02034229977101365 0.22594142259410943 0.02034229977101365 0.17379251224470862
+0.08136919908404962 0.175732217573217 0.08136919908404962 0.175732217573217 0.07794531602688526
+0.08475958237921448 0.17364016736401178 0.08475958237921448 0.17364016736401178 0.07534390378529499
+0.08814996567437731 0.17154811715480944 0.08814996567437731 0.17154811715480944 0.07292932317949584
+0.09154034896953771 0.16945606694560897 0.09154034896953771 0.16945606694560897 0.07075888085621997
+0.09493073226470274 0.1673640167364144 0.09493073226470274 0.1673640167364144 0.06888922664985829
+0.09832111555986517 0.16527196652722181 0.09832111555986517 0.1652719665272218 0.06737385223295621
+0.10171149885503246 0.16317991631802872 0.10171149885503246 0.16317991631802872 0.06626011919559482
+0.10510188215019613 0.16108786610883608 0.10510188215019613 0.16108786610883608 0.06558612510195651
+0.03390383295168937 0.2133891213389122 0.03390383295168937 0.21338912133891216 0.11750898338469869
+0.037294216246858254 0.21129707112970705 0.037294216246858254 0.21129707112970705 0.11631932325271337
+0.04068459954202708 0.20920502092050197 0.04068459954202708 0.209205020920502 0.11493559615926509
+0.0440749828371957 0.20292887029288714 0.04407498283719569 0.20292887029288711 0.10944974557892918
+0.047465366132364545 0.2008368200836823 0.047465366132364545 0.2008368200836823 0.10761404006672272
+0.044074982837195874 0.20711297071129697 0.044074982837195874 0.207112970711297 0.11334196200155867
+0.05085574942753337 0.19874476987447753 0.05085574942753337 0.19874476987447753 0.10557211876832227
+0.054246132722702324 0.19665271966527276 0.054246132722702324 0.19665271966527276 0.1033305306589931
+0.057636516017871293 0.19456066945606806 0.057636516017871293 0.19456066945606806 0.10090242226793576
+0.06102689931304037 0.1924686192468632 0.061026899313040374 0.1924686192468632 0.09830726791153482
+0.06441728260820946 0.19037656903765834 0.06441728260820946 0.19037656903765834 0.09557058584747381
+0.06780766590337853 0.18828451882845332 0.06780766590337851 0.18828451882845332 0.09272365021837993
+0.0711980491985475 0.186192468619248 0.0711980491985475 0.186192468619248 0.08980319778270555
+0.07458843249371637 0.18410041841004232 0.07458843249371637 0.18410041841004232 0.08685111425452585
+0.07797881578888492 0.18200836820083607 0.07797881578888492 0.18200836820083607 0.08391406638461889
+0.08136919908405267 0.1799163179916291 0.08136919908405267 0.1799163179916291 0.08104302221771366
+0.013561533180675732 0.2301255230125525 0.013561533180675734 0.2301255230125525 0.1254662565253443
+0.01695191647584467 0.2280334728033475 0.01695191647584467 0.2280334728033475 0.12483140812847637
+0.02034229977101362 0.2259414225941425 0.02034229977101362 0.2259414225941425 0.12422910585038317
+0.02373268306618256 0.2238493723849375 0.02373268306618256 0.2238493723849375 0.12360901381801671
+0.027123066361351502 0.22175732217573244 0.027123066361351502 0.22175732217573244 0.12292350757747784
+0.03051344965652046 0.21966527196652738 0.030513449656520465 0.21966527196652738 0.12212924095102208
+0.033903832951689396 0.2175732217573223 0.033903832951689396 0.2175732217573223 0.12118835172674418
+0.006780766590337872 0.2384937238493725 0.006780766590337872 0.2384937238493725 0.12986325435853988
+0.010171149885506797 0.2364016736401675 0.010171149885506797 0.2364016736401675 0.12910259779387376
+0.013561533180675718 0.2343096234309625 0.013561533180675716 0.2343096234309625 0.1284774032655148
+0.10849226544536007 0.15899581589964154 0.10849226544536007 0.15899581589964154 0.065377902428151
+0.17154811715477658 0.08814996567439248 0.17154811715477658 0.08814996567439248 0.14437571691262838
+0.16945606694557147 0.09154034896956142 0.16945606694557147 0.09154034896956142 0.13987039751733157
+0.16736401673636636 0.09493073226473037 0.16736401673636636 0.09493073226473037 0.13523756051918687
+0.16527196652716125 0.09832111555989931 0.16527196652716125 0.09832111555989931 0.13052545900258658
+0.11188264874051511 0.15690376569044678 0.11188264874051511 0.1569037656904468 0.06564752147293695
+0.11527294673151589 0.15481156352412373 0.11527294673151589 0.15481156352412373 0.06639247156483206
+0.16317991631795614 0.10171149885506825 0.16317991631795614 0.10171149885506825 0.12578304321808378
+0.16108786610875106 0.10510188215023719 0.16108786610875106 0.10510188215023719 0.12105911817965041
+0.15899581589954595 0.10849226544540613 0.15899581589954595 0.10849226544540613 0.11640146906074715
+0.11866246222333506 0.1527175875728649 0.11866246222333506 0.1527175875728649 0.06759601170051623
+0.15690376569034084 0.11188264874057507 0.15690376569034084 0.11188264874057507 0.11185596183786273
+0.15481171548113573 0.11527303203574402 0.15481171548113573 0.11527303203574402 0.1074656340039226
+0.15272140496954612 0.11866297604448652 0.15272140496954612 0.11866297604448652 0.1032717441332656
+0.12204891915949007 0.15061806511799747 0.12204891915949005 0.15061806511799747 0.06922878017126279
+0.15063314179483978 0.12205182555236183 0.15063314179483978 0.12205182555236183 0.09930960834367351
+0.1254222360044482 0.14851871869767805 0.1254222360044482 0.14851871869767805 0.07124876663514411
+0.14855182709292458 0.12543746902783226 0.14855182709292458 0.12543746902783226 0.0956140562978024
+0.1287620121793994 0.14644274623893186 0.1287620121793994 0.14644274623893186 0.07359862321571915
+0.14650761350740046 0.12880817008631693 0.14650761350740046 0.12880817008631693 0.09224092524390419
+0.1320798987459516 0.14438451347954084 0.1320798987459516 0.14438451347954084 0.0762371335261805
+0.1445059033010503 0.1321619991697488 0.1445059033010503 0.1321619991697488 0.08921053096246191
+0.13534886263042262 0.14235550532189625 0.13534886263042264 0.14235550532189625 0.07909516908835033
+0.14250572466293915 0.1354694114200179 0.14250572466293912 0.1354694114200179 0.08649749836598615
+0.13857476044335038 0.14029908316869583 0.13857476044335038 0.14029908316869585 0.08214333933099653
+0.14134848158643065 0.1384410319353881 0.14134848158643065 0.1384410319353881 0.0848841742095488
+0.19246861924682768 0.06102689931304095 0.19246861924682768 0.06102689931304095 0.17345112988176847
+0.19037656903762257 0.06441728260820989 0.19037656903762257 0.06441728260820989 0.1714813191278299
+0.18828451882841746 0.06780766590337883 0.18828451882841746 0.06780766590337883 0.16911369848489174
+0.18619246861921235 0.07119804919854777 0.18619246861921235 0.07119804919854777 0.16636337229260587
+0.18410041841000724 0.07458843249371672 0.18410041841000724 0.07458843249371672 0.16325180554365692
+0.18200836820080213 0.07797881578888566 0.18200836820080213 0.07797881578888566 0.1598062378608602
+0.17991631799159702 0.0813691990840546 0.17991631799159702 0.0813691990840546 0.15605906491695676
+0.1778242677823919 0.08475958237922354 0.1778242677823919 0.08475958237922354 0.15204718938470976
+0.1757322175731868 0.08814996567439248 0.1757322175731868 0.08814996567439248 0.14781134158012568
+0.22384937238490432 0.02373268306618259 0.2238493723849043 0.02373268306618259 0.17499775110767857
+0.2217573221756992 0.027123066361351533 0.2217573221756992 0.027123066361351533 0.17624483873204555
+0.2196652719664941 0.030513449656520475 0.21966527196649413 0.030513449656520475 0.17746123532070768
+0.217573221757289 0.03390383295168942 0.217573221757289 0.03390383295168942 0.17857770653637364
+0.21129707112967366 0.03729421624685836 0.2112970711296737 0.03729421624685836 0.17805780418819162
+0.20920502092046855 0.0406845995420273 0.20920502092046855 0.0406845995420273 0.17873151635312226
+0.20711297071126344 0.04407498283719624 0.20711297071126342 0.04407498283719624 0.17912575748554835
+0.20502092050205833 0.04746536613236518 0.20502092050205833 0.04746536613236518 0.17919885063677676
+0.20292887029285323 0.050855749427534125 0.20292887029285325 0.050855749427534125 0.17891762341861908
+0.20083682008364812 0.054246132722703067 0.20083682008364812 0.054246132722703067 0.1782574572724709
+0.198744769874443 0.05763651601787201 0.198744769874443 0.05763651601787201 0.17720216485361237
+0.1966527196652379 0.06102689931304095 0.1966527196652379 0.06102689931304095 0.17574373698552315
+0.21548117154808388 0.03729421624685836 0.21548117154808386 0.03729421624685836 0.17953016561076207
+0.2426778242677503 0.006780766590337883 0.2426778242677503 0.006780766590337883 0.17322411935796936
+0.2405857740585452 0.010171149885506825 0.24058577405854517 0.010171149885506825 0.17354225970349402
+0.23221757322172476 0.01695191647584471 0.23221757322172473 0.01695191647584471 0.17390863435192083
+0.2384937238493401 0.013561533180675767 0.2384937238493401 0.013561533180675767 0.17417158550822817
+0.23640167364013498 0.01695191647584471 0.236401673640135 0.01695191647584471 0.175057565684371
+0.23012552301251965 0.02034229977101365 0.23012552301251965 0.02034229977101365 0.1749997467468474
+0.22803347280331454 0.02373268306618259 0.22803347280331457 0.02373268306618259 0.1762110784655709
+0.08475958237921911 0.17782426778242152 0.08475958237921911 0.17782426778242152 0.07829257468686218
+0.08814996567438312 0.17573221757321392 0.08814996567438312 0.17573221757321392 0.07571995810120626
+0.09154034896954467 0.17364016736400864 0.09154034896954467 0.17364016736400864 0.07338363438406283
+0.09493073226470249 0.17154811715480867 0.09493073226470249 0.17154811715480867 0.07134134429649136
+0.09832111555985583 0.169456066945612 0.09832111555985583 0.169456066945612 0.06964759003901211
+0.10171149885501751 0.16736401673642587 0.10171149885501751 0.16736401673642587 0.06835065334209968
+0.10510188215017435 0.1652719665272431 0.10510188215017435 0.1652719665272431 0.06748944386128453
+0.1084922654453403 0.16317991631805892 0.1084922654453403 0.16317991631805892 0.06709065855129635
+0.037294216246858324 0.21548117154811722 0.037294216246858324 0.21548117154811722 0.12006932925158932
+0.04068459954202721 0.21338912133891205 0.04068459954202721 0.21338912133891205 0.11874758588078645
+0.04407498283719607 0.21129707112970694 0.04407498283719607 0.21129707112970694 0.11720578245295211
+0.04746536613236459 0.20502092050209206 0.04746536613236459 0.20502092050209206 0.1115298388872668
+0.05085574942753326 0.20292887029288711 0.05085574942753326 0.20292887029288711 0.10949785152977869
+0.04746536613236484 0.20920502092050186 0.04746536613236484 0.20920502092050186 0.11543395865311125
+0.054246132722702047 0.20083682008368242 0.054246132722702047 0.20083682008368245 0.10725167892224287
+0.05763651601787079 0.19874476987447792 0.05763651601787079 0.19874476987447795 0.10480383505586667
+0.06102689931303975 0.1966527196652733 0.06102689931303975 0.1966527196652733 0.10217340893571196
+0.06441728260820873 0.19456066945606879 0.06441728260820873 0.19456066945606879 0.09938578228927186
+0.06780766590337785 0.19246861924686412 0.06780766590337785 0.19246861924686412 0.09647233459379835
+0.07119804919854689 0.1903765690376594 0.07119804919854689 0.1903765690376594 0.09347013441816897
+0.07458843249371594 0.1882845188284544 0.07458843249371594 0.1882845188284544 0.09042160240135283
+0.07797881578888478 0.18619246861924907 0.07797881578888478 0.18619246861924907 0.08737411334572397
+0.08136919908405332 0.18410041841004313 0.08136919908405332 0.18410041841004313 0.08437948241523031
+0.08475958237922149 0.18200836820083613 0.08475958237922149 0.18200836820083613 0.08149325458112695
+0.01695191647584464 0.2322175732217575 0.01695191647584464 0.2322175732217575 0.12793749154179224
+0.020342299771013574 0.2301255230125525 0.02034229977101357 0.2301255230125525 0.12743096458997424
+0.02373268306618252 0.22803347280334751 0.02373268306618252 0.22803347280334751 0.1269064589926697
+0.027123066361351467 0.22594142259414252 0.027123066361351467 0.22594142259414252 0.12631511068846904
+0.03051344965652043 0.2238493723849375 0.03051344965652043 0.2238493723849375 0.12561217323315946
+0.03390383295168938 0.22175732217573244 0.03390383295168938 0.22175732217573244 0.12475827704304465
+0.037294216246858324 0.21966527196652738 0.037294216246858324 0.21966527196652738 0.12372034972726033
+0.006780766590337877 0.2426778242677825 0.006780766590337877 0.2426778242677825 0.13251916073119488
+0.010171149885506806 0.2405857740585775 0.010171149885506806 0.2405857740585775 0.13185170388175302
+0.006780766590337882 0.2468619246861926 0.0067807665903378824 0.24686192468619259 0.13499729001658026
+0.013561533180675725 0.2384937238493725 0.013561533180675725 0.2384937238493725 0.1313219019208033
+0.01695191647584464 0.2364016736401675 0.01695191647584464 0.2364016736401675 0.13087929686728442
+0.11188264874049962 0.161087866108874 0.11188264874049962 0.16108786610887396 0.0671668189787852
+0.1736401673639817 0.09154034896956142 0.1736401673639817 0.09154034896956142 0.14339536842815112
+0.17154811715477658 0.09493073226473037 0.17154811715477658 0.09493073226473037 0.13884548825040557
+0.16945606694557147 0.09832111555989931 0.16945606694557147 0.09832111555989931 0.1342095082855762
+0.16736401673636636 0.10171149885506825 0.16736401673636636 0.10171149885506825 0.12953600208860114
+0.11527303203565743 0.1589958158996852 0.11527303203565743 0.15899581589968517 0.06771565604445283
+0.11866330129466973 0.15690347682521513 0.11866330129466973 0.15690347682521513 0.06872086521049327
+0.16527196652716125 0.10510188215023719 0.16527196652716125 0.10510188215023719 0.12487344545672752
+0.16317991631795617 0.10849226544540613 0.16317991631795617 0.10849226544540613 0.12026931288202947
+0.16108786610875106 0.11188264874057507 0.16108786610875106 0.11188264874057507 0.11576914237996692
+0.12205249992246148 0.15480820961377886 0.12205249992246148 0.15480820961377886 0.07015336884438449
+0.15899581589954595 0.11527303203574402 0.15899581589954595 0.11527303203574402 0.11141558548591048
+0.1569037656903408 0.11866341533091296 0.1569037656903408 0.11866341533091296 0.10724747230266889
+0.15481343953101712 0.12205315132876719 0.15481343953101712 0.12205315132876719 0.10330089605892841
+0.12543851844488346 0.15270645255676796 0.12543851844488343 0.15270645255676796 0.07197476241411793
+0.15272541439103401 0.12544164442990038 0.15272541439103401 0.12544164442990038 0.09960524748518783
+0.12880656189645037 0.1506098350298173 0.12880656189645037 0.1506098350298173 0.07413391506600327
+0.15064587101868052 0.12882600287006035 0.15064587101868052 0.12882600287006032 0.0961897102509377
+0.13216392014582717 0.14852031762783804 0.13216392014582715 0.14852031762783804 0.0765905025017249
+0.14861653951199114 0.13218798319483252 0.14861653951199114 0.13218798319483252 0.0931144188762184
+0.13549294089786323 0.14645722958930438 0.13549294089786323 0.14645722958930438 0.0792843776572405
+0.14659509733161866 0.1355278370319797 0.14659509733161866 0.1355278370319797 0.09034305370702568
+0.13884020766094668 0.14442293535319084 0.1388402076609467 0.14442293535319084 0.0822110308064523
+0.14467720398542144 0.13876726629261896 0.14467720398542142 0.13876726629261896 0.08796215050082189
+0.14250140978469678 0.14232181788699927 0.1425014097846968 0.14232181788699927 0.08562592222484743
+0.1945606694560328 0.06441728260820989 0.1945606694560328 0.06441728260820989 0.17388199097790988
+0.19246861924682768 0.06780766590337883 0.19246861924682768 0.06780766590337883 0.17162414387873082
+0.19037656903762257 0.07119804919854777 0.19037656903762257 0.07119804919854777 0.16898432755481665
+0.18828451882841746 0.07458843249371672 0.18828451882841746 0.07458843249371672 0.16598305722509366
+0.18619246861921235 0.07797881578888566 0.18619246861921235 0.07797881578888566 0.1626466609565065
+0.18410041841000724 0.0813691990840546 0.18410041841000724 0.0813691990840546 0.15900667441055838
+0.18200836820080213 0.08475958237922354 0.18200836820080213 0.08475958237922354 0.15509920256771767
+0.17991631799159702 0.08814996567439248 0.17991631799159702 0.08814996567439248 0.1509642480926894
+0.1778242677823919 0.09154034896956142 0.1778242677823919 0.09154034896956142 0.14664500435744057
+0.22594142259410943 0.027123066361351533 0.22594142259410943 0.027123066361351533 0.17747030269190708
+0.22384937238490432 0.030513449656520475 0.2238493723849043 0.030513449656520475 0.17870577208311852
+0.2217573221756992 0.03390383295168942 0.2217573221756992 0.03390383295168942 0.17984886543841763
+0.2196652719664941 0.03729421624685836 0.21966527196649413 0.03729421624685836 0.18083585023104667
+0.21338912133887877 0.0406845995420273 0.21338912133887877 0.0406845995420273 0.18026104128487055
+0.21129707112967366 0.04407498283719624 0.2112970711296737 0.04407498283719624 0.18072022487672515
+0.20920502092046855 0.04746536613236518 0.20920502092046855 0.04746536613236518 0.18086566266095516
+0.20711297071126344 0.050855749427534125 0.20711297071126342 0.050855749427534125 0.18066366070699336
+0.20502092050205833 0.054246132722703067 0.20502092050205833 0.054246132722703067 0.18008896324427082
+0.20292887029285323 0.05763651601787201 0.20292887029285325 0.05763651601787201 0.1791246562700388
+0.20083682008364812 0.06102689931304095 0.20083682008364812 0.06102689931304095 0.1777619379855924
+0.198744769874443 0.06441728260820989 0.198744769874443 0.06441728260820989 0.17599978816101466
+0.217573221757289 0.0406845995420273 0.217573221757289 0.0406845995420273 0.18160927859486664
+0.24686192468616053 0.006780766590337883 0.24686192468616053 0.006780766590337883 0.1744206192418658
+0.24476987447695542 0.010171149885506825 0.24476987447695545 0.010171149885506825 0.1747125843332089
+0.2426778242677503 0.013561533180675767 0.2426778242677503 0.013561533180675767 0.17531474969602892
+0.23430962343092987 0.02034229977101365 0.23430962343092987 0.02034229977101365 0.1761369427293883
+0.2405857740585452 0.01695191647584471 0.24058577405854517 0.01695191647584471 0.17617440864789694
+0.2384937238493401 0.02034229977101365 0.2384937238493401 0.02034229977101365 0.177229977294037
+0.23221757322172476 0.02373268306618259 0.23221757322172473 0.02373268306618259 0.17734097559007958
+0.23012552301251965 0.027123066361351533 0.23012552301251965 0.027123066361351533 0.17859854733404515
+0.25104602510457075 0.006780766590337883 0.25104602510457075 0.006780766590337883 0.17563961848649903
+0.08814996567438817 0.179916317991628 0.08814996567438817 0.179916317991628 0.0787736920269757
+0.09154034896955261 0.17782426778241853 0.09154034896955261 0.17782426778241853 0.07628034151316261
+0.09493073226471255 0.17573221757320914 0.09493073226471255 0.17573221757320914 0.07407207957201246
+0.098321115559868 0.1736401673640038 0.098321115559868 0.1736401673640038 0.07220459852218175
+0.10171149885501636 0.17154811715480844 0.10171149885501636 0.17154811715480844 0.07072742508425157
+0.1051018821501568 0.16945606694561874 0.1051018821501568 0.16945606694561874 0.06968074617461627
+0.10849226544531233 0.16736401673644788 0.10849226544531233 0.16736401673644788 0.06909250234239085
+0.11188264874045906 0.16527196652728304 0.11188264874045906 0.16527196652728304 0.06897630936153186
+0.040684599542027265 0.2175732217573223 0.040684599542027265 0.2175732217573223 0.12247223733134825
+0.04407498283719619 0.21548117154811716 0.04407498283719619 0.21548117154811716 0.12099507525289753
+0.04746536613236508 0.21338912133891194 0.04746536613236508 0.21338912133891194 0.11927745882766148
+0.050855749427533535 0.20711297071129678 0.050855749427533535 0.20711297071129678 0.11342951523943733
+0.05424613272270212 0.2050209205020919 0.05424613272270212 0.2050209205020919 0.11119708887883743
+0.050855749427533875 0.21129707112970678 0.05085574942753388 0.21129707112970678 0.11731546006035136
+0.05763651601787062 0.20292887029288714 0.05763651601787062 0.20292887029288711 0.10874835315828717
+0.061026899313039285 0.20083682008368267 0.061026899313039285 0.20083682008368267 0.10610177184172694
+0.06441728260820787 0.1987447698744786 0.06441728260820788 0.19874476987447862 0.10328232262473604
+0.06780766590337686 0.19665271966527428 0.06780766590337685 0.19665271966527428 0.10032120100427465
+0.0711980491985458 0.19456066945607 0.07119804919854579 0.19456066945607 0.0972555035571487
+0.07458843249371493 0.19246861924686565 0.07458843249371493 0.19246861924686565 0.09412787680920555
+0.0779788157888839 0.19037656903766112 0.0779788157888839 0.19037656903766112 0.0909861009170412
+0.08136919908405266 0.1882845188284564 0.08136919908405266 0.1882845188284564 0.08788255609137953
+0.08475958237922109 0.18619246861925118 0.08475958237922109 0.18619246861925118 0.08487349515625044
+0.08814996567438892 0.18410041841004487 0.08814996567438892 0.18410041841004487 0.08201802209541255
+0.020342299771013563 0.2343096234309625 0.020342299771013563 0.2343096234309625 0.1304714160733221
+0.02373268306618247 0.2322175732217575 0.02373268306618247 0.2322175732217575 0.13004605167193758
+0.027123066361351422 0.2301255230125525 0.027123066361351422 0.2301255230125525 0.1295532630330979
+0.030513449656520364 0.22803347280334751 0.030513449656520364 0.22803347280334751 0.128947040273508
+0.03390383295168932 0.22594142259414252 0.03390383295168931 0.22594142259414252 0.12818661245122706
+0.037294216246858275 0.22384937238493752 0.037294216246858275 0.22384937238493752 0.12723741740293815
+0.04068459954202724 0.2217573221757325 0.04068459954202724 0.2217573221757325 0.12607177069270448
+0.006780766590337883 0.2510460251046027 0.006780766590337883 0.2510460251046027 0.13729476422108564
+0.010171149885506818 0.24476987447698753 0.010171149885506818 0.24476987447698753 0.1344227692547965
+0.013561533180675746 0.2426778242677825 0.013561533180675744 0.2426778242677825 0.13398812845753896
+0.010171149885506823 0.24895397489539764 0.010171149885506823 0.24895397489539764 0.13681080044024554
+0.016951916475844653 0.2405857740585775 0.016951916475844653 0.2405857740585775 0.13364282711566203
+0.02034229977101356 0.2384937238493725 0.020342299771013563 0.2384937238493725 0.13333401447465565
+0.11527303203562249 0.163179916318113 0.11527303203562249 0.163179916318113 0.06933069622354066
+0.1757322175731868 0.09493073226473037 0.1757322175731868 0.09493073226473037 0.14218710994008232
+0.1736401673639817 0.09832111555989931 0.1736401673639817 0.09832111555989931 0.13763786082486892
+0.17154811715477655 0.10171149885506825 0.17154811715477655 0.10171149885506825 0.13304537684994078
+0.16945606694557144 0.10510188215023719 0.16945606694557144 0.10510188215023719 0.12845772065011132
+0.11866341533081438 0.16108786610895118 0.11866341533081438 0.16108786610895118 0.07013988501602159
+0.12205340539101826 0.1589949733499301 0.12205340539101826 0.1589949733499301 0.07137543663975969
+0.16736401673636636 0.10849226544540613 0.16736401673636636 0.10849226544540613 0.1239219710170758
+0.16527196652716128 0.11188264874057507 0.16527196652716128 0.11188264874057507 0.11948325888295601
+0.16317991631795617 0.11527303203574402 0.16317991631795617 0.11527303203574402 0.11518378351375642
+0.1254418591292289 0.15689822169843107 0.1254418591292289 0.15689822169843107 0.07299882159662387
+0.16108786610875106 0.11866341533091296 0.16108786610875106 0.11866341533091296 0.11106183903780677
+0.15899581589954595 0.1220537986260819 0.15899581589954595 0.1220537986260819 0.10715089606700894
+0.15690557373393765 0.1254433575345326 0.15690557373393765 0.1254433575345326 0.10348082430608774
+0.12882548545290043 0.1547952450429486 0.12882548545290043 0.1547952450429486 0.0749647170112505
+0.15481587329779398 0.12883249998311813 0.15481587329779398 0.1288324999831181 0.10007179941987691
+0.1321901076548747 0.15269789571655001 0.1321901076548747 0.15269789571655001 0.07721917853292933
+0.15274327249991854 0.13221539412718253 0.1527432724999185 0.13221539412718253 0.09695535165539206
+0.13554011733400073 0.1506166247122762 0.13554011733400073 0.1506166247122762 0.07971952437715302
+0.1507155205558726 0.13558390911342103 0.1507155205558726 0.13558390911342103 0.09416654396565582
+0.13887089491482907 0.14857632521079722 0.13887089491482907 0.14857632521079722 0.08241973917754321
+0.14871124985816622 0.13894969107453006 0.14871124985816622 0.13894969107453006 0.09168153177348659
+0.1421796880743813 0.1466183032109438 0.1421796880743813 0.1466183032109438 0.08527420744724633
+0.1468096636738968 0.14235622086969757 0.1468096636738968 0.14235622086969757 0.08958240352170217
+0.14513325863482676 0.14524187639973749 0.14513325863482676 0.14524187639973749 0.08791032697587767
+0.1966527196652379 0.06780766590337883 0.1966527196652379 0.06780766590337883 0.17384456033605925
+0.1945606694560328 0.07119804919854777 0.1945606694560328 0.07119804919854777 0.17130951402796643
+0.19246861924682768 0.07458843249371672 0.19246861924682768 0.07458843249371672 0.16841429873157565
+0.19037656903762257 0.07797881578888566 0.19037656903762257 0.07797881578888566 0.16518439724106662
+0.18828451882841746 0.0813691990840546 0.18828451882841746 0.0813691990840546 0.16165053244896913
+0.18619246861921235 0.08475958237922354 0.18619246861921235 0.08475958237922354 0.1578480390696673
+0.18410041841000724 0.08814996567439248 0.18410041841000724 0.08814996567439248 0.1538161995380126
+0.18200836820080213 0.09154034896956142 0.18200836820080213 0.09154034896956142 0.14959754158335728
+0.17991631799159702 0.09493073226473037 0.17991631799159702 0.09493073226473037 0.1452370937201393
+0.22803347280331454 0.030513449656520475 0.22803347280331457 0.030513449656520475 0.17983895026414723
+0.22594142259410943 0.03390383295168942 0.22594142259410943 0.03390383295168942 0.18099423947244686
+0.22384937238490432 0.03729421624685836 0.2238493723849043 0.03729421624685836 0.18200111511215566
+0.2217573221756992 0.0406845995420273 0.2217573221756992 0.0406845995420273 0.18280234533690795
+0.21548117154808388 0.04407498283719624 0.21548117154808386 0.04407498283719624 0.18211896553810403
+0.21338912133887877 0.04746536613236518 0.21338912133887877 0.04746536613236518 0.18232261243927628
+0.21129707112967366 0.050855749427534125 0.2112970711296737 0.050855749427534125 0.1821861411089097
+0.20920502092046855 0.054246132722703067 0.20920502092046855 0.054246132722703067 0.18168379860453523
+0.20711297071126344 0.05763651601787201 0.20711297071126342 0.05763651601787201 0.18079808430280256
+0.20502092050205833 0.06102689931304095 0.20502092050205833 0.06102689931304095 0.17951954099741008
+0.20292887029285323 0.06441728260820989 0.20292887029285325 0.06441728260820989 0.17784644249014
+0.20083682008364812 0.06780766590337883 0.20083682008364812 0.06780766590337883 0.17578440198746226
+0.2196652719664941 0.04407498283719624 0.21966527196649413 0.04407498283719624 0.18334777419731663
+0.24895397489536564 0.010171149885506825 0.2489539748953656 0.010171149885506825 0.1758958592155471
+0.24686192468616053 0.013561533180675767 0.24686192468616053 0.013561533180675767 0.1764609291362673
+0.24476987447695542 0.01695191647584471 0.24476987447695545 0.01695191647584471 0.17728390990652534
+0.23640167364013498 0.02373268306618259 0.236401673640135 0.02373268306618259 0.17841417753292585
+0.2426778242677503 0.02034229977101365 0.2426778242677503 0.02034229977101365 0.17830485989648662
+0.2405857740585452 0.02373268306618259 0.24058577405854517 0.02373268306618259 0.17945794055580366
+0.23430962343092987 0.027123066361351533 0.23430962343092987 0.027123066361351533 0.17965711063624337
+0.23221757322172476 0.030513449656520475 0.23221757322172473 0.030513449656520475 0.18088903165668888
+0.25523012552298097 0.006780766590337883 0.25523012552298097 0.006780766590337883 0.17690017570576486
+0.2594142259413912 0.006780766590337883 0.2594142259413912 0.006780766590337883 0.17821875315749788
+0.2635983263598014 0.006780766590337883 0.2635983263598014 0.006780766590337883 0.17960867314460163
+0.2677824267782116 0.006780766590337883 0.2677824267782116 0.006780766590337883 0.18107968326690105
+0.25313807531377586 0.010171149885506825 0.2531380753137759 0.010171149885506825 0.17711266184400767
+0.09154034896955628 0.18200836820083696 0.09154034896955628 0.18200836820083696 0.07937666317074805
+0.09493073226472099 0.17991631799162688 0.09493073226472099 0.17991631799162688 0.07700942967348134
+0.09832111555988161 0.17782426778241436 0.09832111555988161 0.17782426778241436 0.07497332916975573
+0.10171149885503368 0.17573221757320215 0.10171149885503368 0.17573221757320215 0.07331940038657271
+0.10510188215017789 0.17364016736399693 0.10510188215017789 0.17364016736399693 0.07208952025597487
+0.10849226544530911 0.17154811715480991 0.10849226544530911 0.17154811715480991 0.07131341698790815
+0.11188264874042542 0.16945606694563312 0.11188264874042542 0.16945606694563312 0.07100643859781687
+0.1152730320355705 0.16736401673648907 0.1152730320355705 0.16736401673648907 0.07116858463016568
+0.04407498283719621 0.21966527196652738 0.04407498283719621 0.21966527196652738 0.12466928081617738
+0.04746536613236516 0.21757322175732227 0.04746536613236516 0.21757322175732227 0.12301705963009789
+0.0508557494275341 0.21548117154811705 0.050855749427534104 0.21548117154811705 0.12110977387152534
+0.05424613272270254 0.20920502092050153 0.05424613272270253 0.20920502092050156 0.11511253095654696
+0.05763651601787104 0.20711297071129653 0.05763651601787103 0.20711297071129656 0.11267932684884917
+0.054246132722702935 0.21338912133891175 0.054246132722702935 0.21338912133891172 0.11894957788575067
+0.06102689931303937 0.20502092050209175 0.061026899313039375 0.20502092050209172 0.11003347568920203
+0.06441728260820753 0.20292887029288717 0.06441728260820755 0.20292887029288717 0.1071993115623615
+0.06780766590337604 0.20083682008368323 0.06780766590337604 0.20083682008368323 0.10420758223575298
+0.0711980491985444 0.1987447698744795 0.0711980491985444 0.1987447698744795 0.10109513060414844
+0.07458843249371334 0.19665271966527578 0.07458843249371334 0.19665271966527578 0.09790453739240773
+0.07797881578888219 0.1945606694560722 0.0779788157888822 0.1945606694560722 0.09468369643925954
+0.08136919908405126 0.1924686192468683 0.08136919908405126 0.1924686192468683 0.09148527378552727
+0.08475958237921971 0.19037656903766434 0.08475958237921971 0.19037656903766434 0.08836597849484368
+0.08814996567438783 0.18828451882845998 0.08814996567438783 0.18828451882845998 0.08538555029748084
+0.0915403489695553 0.18619246861925523 0.0915403489695553 0.18619246861925523 0.08260535498337845
+0.023732683066182474 0.2364016736401675 0.023732683066182477 0.2364016736401675 0.13300882589592922
+0.02712306636135138 0.2343096234309625 0.027123066361351377 0.2343096234309625 0.13261641528370458
+0.030513449656520312 0.2322175732217575 0.030513449656520312 0.2322175732217575 0.1321096576215526
+0.03390383295168924 0.2301255230125525 0.03390383295168924 0.2301255230125525 0.13144650137028127
+0.037294216246858185 0.2280334728033476 0.037294216246858185 0.2280334728033476 0.1305909843713248
+0.04068459954202715 0.22594142259414263 0.04068459954202714 0.2259414225941426 0.12951394816310066
+0.044074982837196124 0.22384937238493754 0.044074982837196124 0.22384937238493754 0.12819349603757788
+0.006780766590337883 0.2552301255230128 0.006780766590337883 0.2552301255230128 0.1394128184136452
+0.010171149885506825 0.2531380753138078 0.010171149885506825 0.2531380753138078 0.13901503860514283
+0.01356153318067576 0.24686192468619259 0.013561533180675761 0.24686192468619259 0.1364689120461615
+0.016951916475844694 0.2447698744769876 0.016951916475844694 0.2447698744769876 0.13621866781854852
+0.013561533180675767 0.2510460251046027 0.013561533180675767 0.2510460251046027 0.13876145003558524
+0.020342299771013594 0.2426778242677825 0.020342299771013594 0.2426778242677825 0.13600703396594127
+0.0237326830661825 0.2405857740585775 0.023732683066182505 0.2405857740585775 0.13578067859415324
+0.0067807665903378824 0.2594142259414228 0.0067807665903378824 0.2594142259414229 0.1413566492442588
+0.11866340900264612 0.1652719568186614 0.11866340900264612 0.1652719568186614 0.07178506940272959
+0.1778242677823919 0.09832111555989931 0.1778242677823919 0.09832111555989931 0.14078159430569434
+0.17573221757318677 0.10171149885506825 0.17573221757318677 0.10171149885506825 0.13627865022327115
+0.17364016736398166 0.10510188215023719 0.17364016736398166 0.10510188215023719 0.13177584313639204
+0.17154811715477658 0.10849226544540613 0.17154811715477658 0.10849226544540613 0.12731978523201207
+0.12205367012797184 0.16317972320524657 0.12205367012797184 0.16317972320524657 0.07282823413173546
+0.12544303192911868 0.16108584250855565 0.12544303192911868 0.16108584250855565 0.07425985296043279
+0.16945606694557147 0.11188264874057507 0.16945606694557147 0.11188264874057507 0.1229551330422242
+0.16736401673636636 0.11527303203574402 0.16736401673636636 0.11527303203574402 0.11872357773294602
+0.16527196652716128 0.11866341533091296 0.16527196652716128 0.11866341533091296 0.11466284305784151
+0.12883008699204485 0.15898706180689506 0.12883008699204487 0.15898706180689506 0.07603466512446881
+0.16317991631795617 0.1220537986260819 0.16317991631795617 0.1220537986260819 0.11080573677799403
+0.16108786610875106 0.12544418192125084 0.16108786610875106 0.12544418192125084 0.10717931451495366
+0.15899741966442502 0.12883392258123488 0.15899741966442502 0.1288339225812349 0.10380591055804735
+0.13221019131646927 0.15688233943471216 0.13221019131646927 0.15688233943471216 0.07810297017659588
+0.15690742241936012 0.13222398232049926 0.1569074224193601 0.13222398232049926 0.10069790250296173
+0.1355801798888655 0.15477784137718859 0.1355801798888655 0.15477784137718856 0.08041786812818026
+0.15485685943614932 0.13560921264133888 0.15485685943614932 0.13560921264133888 0.09789783255646019
+0.13891590726181355 0.15271580921588543 0.13891590726181355 0.15271580921588543 0.08291974190470457
+0.15281810685630443 0.13900627116267592 0.1528181068563044 0.13900627116267592 0.09537833045662435
+0.1422252201112644 0.1506832479107236 0.1422252201112644 0.1506832479107236 0.08556799177323321
+0.15085310331307855 0.14246631588121086 0.15085310331307855 0.14246631588121086 0.09318662164994447
+0.14546009568474674 0.14868615263073948 0.14546009568474674 0.14868615263073948 0.08827571244155132
+0.1487966979338345 0.1462505342522165 0.14879669793383446 0.14625053425221649 0.09118977745307487
+0.198744769874443 0.07119804919854777 0.198744769874443 0.07119804919854777 0.17334591882216088
+0.1966527196652379 0.07458843249371672 0.1966527196652379 0.07458843249371672 0.17054987552300796
+0.1945606694560328 0.07797881578888566 0.1945606694560328 0.07797881578888566 0.16742099286079937
+0.19246861924682768 0.0813691990840546 0.19246861924682768 0.0813691990840546 0.16398924697766648
+0.19037656903762257 0.08475958237922354 0.19037656903762257 0.08475958237922354 0.160289249855094
+0.18828451882841746 0.08814996567439248 0.18828451882841746 0.08814996567439248 0.15635959205292707
+0.18619246861921235 0.09154034896956142 0.18619246861921235 0.09154034896956142 0.15224214480380563
+0.18410041841000724 0.09493073226473037 0.18410041841000724 0.09493073226473037 0.14798131723428465
+0.18200836820080213 0.09832111555989931 0.18200836820080213 0.09832111555989931 0.14362326389965696
+0.23012552301251965 0.03390383295168942 0.23012552301251965 0.03390383295168942 0.18204271059843258
+0.22803347280331454 0.03729421624685836 0.22803347280331457 0.03729421624685836 0.18305533463132814
+0.22594142259410943 0.0406845995420273 0.22594142259410943 0.0406845995420273 0.18386995769535386
+0.22384937238490432 0.04407498283719624 0.2238493723849043 0.04407498283719624 0.1844365373249819
+0.217573221757289 0.04746536613236518 0.217573221757289 0.04746536613236518 0.1835949744489661
+0.21548117154808388 0.050855749427534125 0.21548117154808386 0.050855749427534125 0.18350960872119634
+0.21338912133887877 0.054246132722703067 0.21338912133887877 0.054246132722703067 0.18306555839049968
+0.21129707112967366 0.05763651601787201 0.2112970711296737 0.05763651601787201 0.18224487149901894
+0.20920502092046855 0.06102689931304095 0.20920502092046855 0.06102689931304095 0.18103757172911786
+0.20711297071126344 0.06441728260820989 0.20711297071126342 0.06441728260820989 0.17944136133691682
+0.20502092050205833 0.06780766590337883 0.20502092050205833 0.06780766590337883 0.1774612428374375
+0.20292887029285323 0.07119804919854777 0.20292887029285325 0.07119804919854777 0.175109077389882
+0.2217573221756992 0.04746536613236518 0.2217573221756992 0.04746536613236518 0.18471261556492968
+0.25104602510457075 0.013561533180675767 0.25104602510457075 0.013561533180675767 0.17763225739189234
+0.24895397489536564 0.01695191647584471 0.2489539748953656 0.01695191647584471 0.17840978841500912
+0.24686192468616053 0.02034229977101365 0.24686192468616053 0.02034229977101365 0.1793869123188214
+0.2384937238493401 0.027123066361351533 0.2384937238493401 0.027123066361351533 0.18067445858515538
+0.24476987447695542 0.02373268306618259 0.24476987447695545 0.02373268306618259 0.18049919107834833
+0.2426778242677503 0.027123066361351533 0.2426778242677503 0.027123066361351533 0.18167910516855548
+0.23640167364013498 0.030513449656520475 0.236401673640135 0.030513449656520475 0.18188563176492975
+0.23430962343092987 0.03390383295168942 0.23430962343092987 0.03390383295168942 0.1830249593287623
+0.27196652719662184 0.006780766590337883 0.27196652719662184 0.006780766590337883 0.18263764970030483
+0.2573221757321861 0.010171149885506825 0.257322175732186 0.010171149885506825 0.1783812288843654
+0.2615062761505963 0.010171149885506825 0.26150627615059635 0.010171149885506825 0.1797168533193225
+0.2656903765690065 0.010171149885506825 0.26569037656900646 0.010171149885506825 0.1811313812001338
+0.26987447698741673 0.010171149885506825 0.2698744769874168 0.010171149885506825 0.182632830706713
+0.25523012552298097 0.013561533180675767 0.25523012552298097 0.013561533180675767 0.17884879230707276
+0.09493073226472155 0.1841004184100488 0.09493073226472155 0.1841004184100488 0.08008648698762368
+0.09832111555988692 0.18200836820083985 0.09832111555988692 0.18200836820083985 0.07788732822382234
+0.10171149885504731 0.1799163179916273 0.10171149885504731 0.1799163179916273 0.07606061872255505
+0.10510188215020118 0.17782426778240967 0.10510188215020118 0.17782426778240967 0.07465025692979498
+0.10849226544533985 0.17573221757319166 0.10849226544533985 0.17573221757319166 0.07368823077777563
+0.11188264874046312 0.17364016736398655 0.11188264874046312 0.17364016736398655 0.07319221144783002
+0.11527303203556384 0.171548117154812 0.11527303203556384 0.171548117154812 0.07316433317246389
+0.11866341533063483 0.16945606694565982 0.11866341533063483 0.16945606694565982 0.07359148880060097
+0.04746536613236511 0.2217573221757326 0.04746536613236511 0.2217573221757326 0.126615242616411
+0.0508557494275341 0.2196652719665275 0.050855749427534104 0.2196652719665275 0.12477240009056166
+0.05424613272270307 0.2175732217573223 0.05424613272270307 0.2175732217573223 0.12266574084803468
+0.05763651601787161 0.21129707112970644 0.05763651601787161 0.21129707112970644 0.11654596079099011
+0.06102689931304003 0.20920502092050117 0.06102689931304003 0.20920502092050117 0.11391553401738218
+0.057636516017871973 0.215481171548117 0.057636516017871973 0.215481171548117 0.12030346954734096
+0.06441728260820824 0.20711297071129606 0.06441728260820824 0.20711297071129606 0.11108177759394687
+0.06780766590337613 0.2050209205020915 0.06780766590337613 0.2050209205020915 0.10807475536339799
+0.07119804919854361 0.20292887029288725 0.07119804919854361 0.20292887029288728 0.10493079976269164
+0.07458843249371189 0.2008368200836841 0.07458843249371189 0.2008368200836841 0.10169215496968755
+0.07797881578887977 0.1987447698744814 0.07797881578887977 0.1987447698744814 0.09840655212277029
+0.08136919908404867 0.19665271966527867 0.08136919908404867 0.19665271966527867 0.09512667141506768
+0.08475958237921725 0.19456066945607606 0.08475958237921725 0.19456066945607606 0.09190942377313534
+0.08814996567438599 0.19246861924687297 0.08814996567438599 0.19246861924687297 0.08881496261473282
+0.0915403489695533 0.19037656903766997 0.0915403489695533 0.19037656903766997 0.08590532097817723
+0.0949307322647198 0.18828451882846667 0.0949307322647198 0.18828451882846667 0.08324257364595582
+0.027123066361351394 0.2384937238493725 0.027123066361351394 0.2384937238493725 0.1354880265222547
+0.030513449656520298 0.2364016736401675 0.030513449656520298 0.2364016736401675 0.135080994660657
+0.0339038329516892 0.23430962343096254 0.0339038329516892 0.23430962343096254 0.13451638379998762
+0.0372942162468581 0.2322175732217576 0.0372942162468581 0.2322175732217576 0.13375693699981459
+0.040684599542027 0.23012552301255268 0.040684599542027 0.2301255230125527 0.13277209673382398
+0.04407498283719596 0.2280334728033477 0.04407498283719596 0.2280334728033477 0.1315385041148094
+0.04746536613236493 0.22594142259414277 0.04746536613236493 0.22594142259414277 0.1300402866332981
+0.010171149885506825 0.25732217573221783 0.010171149885506825 0.2573221757322179 0.14103882678488475
+0.013561533180675767 0.2552301255230128 0.013561533180675767 0.2552301255230128 0.14086719265930073
+0.01695191647584471 0.2489539748953977 0.01695191647584471 0.2489539748953977 0.13860191599327565
+0.020342299771013633 0.24686192468619259 0.020342299771013633 0.24686192468619259 0.1384834107473244
+0.01695191647584471 0.25313807531380783 0.01695191647584471 0.2531380753138079 0.14079208121105216
+0.02373268306618254 0.2447698744769876 0.02373268306618254 0.2447698744769876 0.138352323765749
+0.027123066361351447 0.24267782426778253 0.027123066361351447 0.24267782426778253 0.138156529624877
+0.006780766590337874 0.2635983263598329 0.006780766590337874 0.2635983263598329 0.14313522146300806
+0.010171149885506811 0.2615062761506279 0.010171149885506811 0.2615062761506279 0.14288943798058562
+0.12205376171211736 0.16736396010254015 0.12205376171211736 0.16736396010254015 0.0744470901712753
+0.179916317991597 0.10171149885506825 0.179916317991597 0.10171149885506825 0.13921503831013027
+0.17782426778239188 0.10510188215023719 0.17782426778239188 0.10510188215023719 0.1348036901872829
+0.1757322175731868 0.10849226544540613 0.1757322175731868 0.10849226544540613 0.13043530842503312
+0.1736401673639817 0.11188264874057507 0.1736401673639817 0.11188264874057507 0.12615401873804513
+0.12544373206107776 0.16527128171030703 0.12544373206107776 0.16527128171030703 0.07569370409453048
+0.12883233643153852 0.16317597336066278 0.1288323364315385 0.16317597336066278 0.07728602269033802
+0.17154811715477658 0.11527303203574402 0.17154811715477658 0.11527303203574402 0.12200095514787725
+0.16945606694557147 0.11866341533091296 0.16945606694557147 0.11866341533091296 0.11801323763487727
+0.16736401673636636 0.1220537986260819 0.16736401673636636 0.1220537986260819 0.11422300338297404
+0.1322176505676431 0.16107461352701216 0.1322176505676431 0.16107461352701216 0.07917443300487259
+0.16527196652716128 0.12544418192125084 0.16527196652716128 0.12544418192125084 0.11065655357491067
+0.16317991631795617 0.12883456521641978 0.16317991631795617 0.12883456521641978 0.10733368694798918
+0.16109013111775305 0.13222489043816174 0.16109013111775305 0.13222489043816174 0.10426924756225879
+0.13559667640395537 0.1589671872536543 0.13559667640395537 0.1589671872536543 0.0813094234678528
+0.15901139447177573 0.13561556300630995 0.15901139447177573 0.13561556300630995 0.10147630300311407
+0.13897576398381928 0.1568497447801656 0.13897576398381928 0.15684974478016558 0.08365083974177455
+0.15696633278290822 0.13901148819288395 0.15696633278290825 0.13901148819288392 0.09897337935508103
+0.1422967426081261 0.15480723333473181 0.1422967426081261 0.15480723333473181 0.08612062344096062
+0.15493754154043665 0.14241820701165409 0.15493754154043662 0.14241820701165409 0.0967409694575498
+0.14560217272810055 0.15275748879375117 0.14560217272810053 0.15275748879375117 0.0887013569133878
+0.1530563741496424 0.14581730734020773 0.15305637414964243 0.14581730734020773 0.0948826134899589
+0.14884050234468887 0.15076950629797115 0.14884050234468885 0.15076950629797115 0.09132990638934312
+0.15179854783168606 0.14888733239085133 0.15179854783168606 0.14888733239085133 0.0937424181984411
+0.20083682008364812 0.07458843249371672 0.20083682008364812 0.07458843249371672 0.17240309222801767
+0.198744769874443 0.07797881578888566 0.198744769874443 0.07797881578888566 0.169367344950636
+0.1966527196652379 0.0813691990840546 0.1966527196652379 0.0813691990840546 0.16603114882143424
+0.1945606694560328 0.08475958237922354 0.1945606694560328 0.08475958237922354 0.16242846023720445
+0.19246861924682768 0.08814996567439248 0.19246861924682768 0.08814996567439248 0.15859722707834614
+0.19037656903762257 0.09154034896956142 0.19037656903762257 0.09154034896956142 0.15457869471561178
+0.18828451882841743 0.09493073226473037 0.18828451882841743 0.09493073226473037 0.15041666508448667
+0.18619246861921232 0.09832111555989931 0.18619246861921232 0.09832111555989931 0.14615670366256442
+0.1841004184100072 0.10171149885506825 0.1841004184100072 0.10171149885506825 0.14184528975501284
+0.23221757322172476 0.03729421624685836 0.23221757322172473 0.03729421624685836 0.1840301451792192
+0.23012552301251965 0.0406845995420273 0.23012552301251965 0.0406845995420273 0.18484457469144275
+0.22803347280331454 0.04407498283719624 0.22803347280331457 0.04407498283719624 0.18541838047007742
+0.22594142259410943 0.04746536613236518 0.22594142259410943 0.04746536613236518 0.18570915084794437
+0.2196652719664941 0.050855749427534125 0.21966527196649413 0.050855749427534125 0.18466370561667209
+0.217573221757289 0.054246132722703067 0.217573221757289 0.054246132722703067 0.18426344275206316
+0.21548117154808388 0.05763651601787201 0.21548117154808386 0.05763651601787201 0.183493550720901
+0.21338912133887877 0.06102689931304095 0.21338912133887877 0.06102689931304095 0.1823436659677706
+0.21129707112967366 0.06441728260820989 0.2112970711296737 0.06441728260820989 0.18081105306884718
+0.20920502092046855 0.06780766590337883 0.20920502092046855 0.06780766590337883 0.17890023674136568
+0.20711297071126344 0.07119804919854777 0.20711297071126342 0.07119804919854777 0.17662256888894826
+0.20502092050205833 0.07458843249371672 0.20502092050205833 0.07458843249371672 0.17399574343972302
+0.22384937238490432 0.050855749427534125 0.2238493723849043 0.050855749427534125 0.18568234096773825
+0.25313807531377586 0.01695191647584471 0.2531380753137759 0.01695191647584471 0.1795739650696718
+0.25104602510457075 0.02034229977101365 0.25104602510457075 0.02034229977101365 0.18049995166970126
+0.24895397489536564 0.02373268306618259 0.2489539748953656 0.02373268306618259 0.18156366307913177
+0.2405857740585452 0.030513449656520475 0.24058577405854517 0.030513449656520475 0.1828588135771756
+0.24686192468616053 0.027123066361351533 0.24686192468616053 0.027123066361351533 0.1826987058484509
+0.24476987447695542 0.030513449656520475 0.24476987447695545 0.030513449656520475 0.1838381394993901
+0.2384937238493401 0.03390383295168942 0.2384937238493401 0.03390383295168942 0.18397253570305272
+0.23640167364013498 0.03729421624685836 0.236401673640135 0.03729421624685836 0.18495849741962536
+0.27615062761503206 0.006780766590337883 0.27615062761503206 0.006780766590337883 0.18428439074416716
+0.27405857740582695 0.010171149885506825 0.2740585774058269 0.010171149885506825 0.18422514996512873
+0.2594142259413912 0.013561533180675767 0.2594142259413912 0.013561533180675767 0.18012785340602153
+0.2635983263598014 0.013561533180675767 0.2635983263598014 0.013561533180675767 0.18148344890910065
+0.2677824267782116 0.013561533180675767 0.2677824267782116 0.013561533180675767 0.18292581848361886
+0.27196652719662184 0.013561533180675767 0.27196652719662184 0.013561533180675767 0.18446111241350024
+0.2573221757321861 0.01695191647584471 0.257322175732186 0.01695191647584471 0.18079583996478354
+0.09832111555988254 0.18619246861926464 0.09832111555988254 0.18619246861926464 0.08088646488554439
+0.10171149885504727 0.18410041841005773 0.10171149885504727 0.18410041841005773 0.07889153629364166
+0.1051018821502094 0.18200836820084798 0.1051018821502094 0.18200836820084798 0.07730393887426279
+0.1084922654453634 0.17991631799163077 0.1084922654453634 0.17991631799163077 0.07615829238500439
+0.11188264874050469 0.1778242677824038 0.11188264874050469 0.1778242677824038 0.07547509910771506
+0.11527303203562085 0.17573221757316856 0.11527303203562085 0.17573221757316856 0.0752592441989391
+0.11866341533070808 0.1736401673639597 0.11866341533070808 0.1736401673639597 0.07549996360809631
+0.12205379862575128 0.1715481171548079 0.12205379862575128 0.1715481171548079 0.07617235516845387
+0.05085574942753395 0.22384937238493785 0.05085574942753395 0.22384937238493788 0.12826917872360907
+0.05424613272270296 0.22175732217573282 0.05424613272270296 0.22175732217573282 0.12622451442600888
+0.057636516017871973 0.21966527196652763 0.057636516017871973 0.2196652719665276 0.12391312501520944
+0.06102689931304067 0.21338912133891152 0.06102689931304067 0.21338912133891155 0.11770103058145016
+0.06441728260820917 0.21129707112970594 0.06441728260820917 0.21129707112970594 0.11488086950897715
+0.06102689931304089 0.2175732217573223 0.06102689931304089 0.2175732217573223 0.12134916756944603
+0.06780766590337726 0.20920502092050045 0.06780766590337726 0.20920502092050045 0.11187215911987357
+0.07119804919854494 0.20711297071129534 0.07119804919854494 0.20711297071129534 0.10871049170856621
+0.074588432493712 0.20502092050209111 0.074588432493712 0.20502092050209111 0.1054375279723543
+0.0779788157888783 0.20292887029288753 0.07797881578887832 0.20292887029288753 0.10210057881896241
+0.08136919908404609 0.20083682008368584 0.08136919908404609 0.20083682008368584 0.09875207865536434
+0.08475958237921317 0.19874476987448475 0.08475958237921317 0.19874476987448475 0.09544888783205269
+0.08814996567438188 0.19665271966528372 0.08814996567438188 0.19665271966528372 0.09225134032289405
+0.09154034896954977 0.19456066945608266 0.09154034896954977 0.19456066945608266 0.0892219365155112
+0.0949307322647176 0.1924686192468811 0.0949307322647176 0.1924686192468811 0.08642358120338117
+0.09832111555988232 0.19037656903767997 0.09832111555988232 0.19037656903767997 0.08391729926533974
+0.03051344965652034 0.2405857740585775 0.03051344965652034 0.2405857740585775 0.1378471501847982
+0.033903832951689215 0.2384937238493725 0.033903832951689215 0.2384937238493725 0.13737998097717288
+0.03729421624685807 0.2364016736401675 0.037294216246858074 0.2364016736401675 0.1367165884226004
+0.04068459954202691 0.23430962343096262 0.04068459954202691 0.2343096234309626 0.13582510711505538
+0.044074982837195784 0.23221757322175768 0.04407498283719579 0.2322175732217577 0.13468077832179462
+0.04746536613236471 0.23012552301255276 0.04746536613236471 0.23012552301255276 0.13326627464235521
+0.050855749427533674 0.228033472803348 0.050855749427533674 0.228033472803348 0.1315718542052696
+0.013561533180675756 0.2594142259414228 0.013561533180675754 0.2594142259414229 0.14279169137764688
+0.016951916475844698 0.2573221757322179 0.016951916475844698 0.2573221757322179 0.14279295301924652
+0.02034229977101365 0.2510460251046027 0.02034229977101365 0.2510460251046027 0.14076065944149493
+0.023732683066182578 0.24895397489539772 0.023732683066182578 0.24895397489539772 0.14071922319794714
+0.020342299771013643 0.25523012552301283 0.020342299771013646 0.2552301255230129 0.1428407585620913
+0.02712306636135149 0.24686192468619264 0.027123066361351488 0.24686192468619264 0.14061527528624643
+0.030513449656520402 0.24476987447698753 0.030513449656520402 0.24476987447698753 0.14039930864455544
+0.0067807665903378694 0.2677824267782429 0.0067807665903378694 0.2677824267782429 0.1447610255777436
+0.006780766590337874 0.27196652719665293 0.006780766590337874 0.27196652719665293 0.14624978006909495
+0.010171149885506799 0.2656903765690379 0.010171149885506799 0.2656903765690379 0.14457785710387439
+0.013561533180675737 0.2635983263598329 0.013561533180675737 0.2635983263598329 0.1445444037367569
+0.12544409086713468 0.16945592724844283 0.12544409086713468 0.16945592724844283 0.07724004585098149
+0.18200836820080213 0.10510188215023719 0.18200836820080213 0.10510188215023719 0.13752890771195736
+0.17991631799159702 0.10849226544540613 0.17991631799159702 0.10849226544540613 0.13325308116697085
+0.1778242677823919 0.11188264874057507 0.1778242677823919 0.11188264874057507 0.12906135967010254
+0.1757322175731868 0.11527303203574402 0.1757322175731868 0.11527303203574402 0.12499427752525101
+0.1288337850628138 0.16736258539153762 0.12883378506281382 0.16736258539153762 0.07865823038321253
+0.13222163003114779 0.16526544306160432 0.1322216300311478 0.16526544306160432 0.08037692743073
+0.1736401673639817 0.11866341533091296 0.1736401673639817 0.11866341533091296 0.12108831801978466
+0.17154811715477658 0.1220537986260819 0.17154811715477658 0.1220537986260819 0.11737493147026047
+0.16945606694557147 0.12544418192125084 0.16945606694557147 0.12544418192125084 0.11387967048364596
+0.13560554410184086 0.1631627624900174 0.13560554410184086 0.1631627624900174 0.08234509422438051
+0.16736401673636636 0.12883456521641978 0.16736401673636636 0.12883456521641978 0.11062151787024242
+0.16527372330537346 0.132225101081949 0.16527372330537346 0.132225101081949 0.1076137689808148
+0.16319001447845669 0.13561668076666253 0.16319001447845669 0.13561668076666253 0.10486499481763477
+0.1389845932482466 0.1610568391339098 0.1389845932482466 0.1610568391339098 0.08451539910704237
+0.16112371746540002 0.139011761097374 0.16112371746540002 0.139011761097374 0.1023820878702935
+0.14236558475028646 0.15895894405223301 0.14236558475028646 0.15895894405223301 0.08685177358065967
+0.1590755625549318 0.14241073349822098 0.1590755625549318 0.14241073349822098 0.10015935876554362
+0.14569422979404037 0.15688253256357443 0.14569422979404037 0.15688253256357443 0.08927091797119045
+0.15705912484036505 0.14580396261705653 0.15705912484036502 0.14580396261705653 0.09819512000120402
+0.14908686912824767 0.15479559542183965 0.14908686912824767 0.15479559542183965 0.09182872532126858
+0.15518545607549264 0.14917717369462155 0.15518545607549264 0.14917717369462155 0.09655273494331691
+0.15285970788783995 0.15266413145680238 0.15285970788783995 0.15266413145680238 0.0947779899298654
+0.20292887029285323 0.07797881578888566 0.20292887029285325 0.07797881578888566 0.17104326707262527
+0.20083682008364812 0.0813691990840546 0.20083682008364812 0.0813691990840546 0.16779389012113613
+0.198744769874443 0.08475958237922354 0.198744769874443 0.08475958237922354 0.16428099881826627
+0.1966527196652379 0.08814996567439248 0.1966527196652379 0.08814996567439248 0.1605419674844837
+0.1945606694560328 0.09154034896956142 0.1945606694560328 0.09154034896956142 0.1566174672325613
+0.19246861924682768 0.09493073226473037 0.19246861924682768 0.09493073226473037 0.15255072635541841
+0.19037656903762257 0.09832111555989931 0.19037656903762257 0.09832111555989931 0.14838673699655106
+0.18828451882841743 0.10171149885506825 0.18828451882841743 0.10171149885506825 0.14417140334725717
+0.18619246861921232 0.10510188215023719 0.18619246861921232 0.10510188215023719 0.13995062897678312
+0.23430962343092987 0.0406845995420273 0.23430962343092987 0.0406845995420273 0.18576043641071205
+0.23221757322172476 0.04407498283719624 0.23221757322172473 0.04407498283719624 0.18632869764294216
+0.23012552301251965 0.04746536613236518 0.23012552301251965 0.04746536613236518 0.18662096965457617
+0.22803347280331454 0.050855749427534125 0.22803347280331457 0.050855749427534125 0.1866027196962069
+0.2217573221756992 0.054246132722703067 0.2217573221756992 0.054246132722703067 0.18531144420379297
+0.2196652719664941 0.05763651601787201 0.21966527196649413 0.05763651601787201 0.1845779750818848
+0.217573221757289 0.06102689931304095 0.217573221757289 0.06102689931304095 0.1834713063762156
+0.21548117154808388 0.06441728260820989 0.21548117154808386 0.06441728260820989 0.18198839437331737
+0.21338912133887877 0.06780766590337883 0.21338912133887877 0.06780766590337883 0.18013341829599175
+0.21129707112967366 0.07119804919854777 0.2112970711296737 0.07119804919854777 0.17791735295243075
+0.20920502092046855 0.07458843249371672 0.20920502092046855 0.07458843249371672 0.17535748787217556
+0.20711297071126344 0.07797881578888566 0.20711297071126342 0.07797881578888566 0.17247690140222305
+0.22594142259410943 0.054246132722703067 0.22594142259410943 0.054246132722703067 0.18624738471439672
+0.25523012552298097 0.02034229977101365 0.25523012552298097 0.02034229977101365 0.18166550736207318
+0.25313807531377586 0.02373268306618259 0.2531380753137759 0.02373268306618259 0.18267505509055404
+0.25104602510457075 0.027123066361351533 0.25104602510457075 0.027123066361351533 0.18375915546165136
+0.2426778242677503 0.03390383295168942 0.2426778242677503 0.03390383295168942 0.18491687284520075
+0.24895397489536564 0.030513449656520475 0.2489539748953656 0.030513449656520475 0.18485171177915183
+0.24686192468616053 0.03390383295168942 0.24686192468616053 0.03390383295168942 0.1858882723603195
+0.2405857740585452 0.03729421624685836 0.24058577405854517 0.03729421624685836 0.18587363542334748
+0.2384937238493401 0.0406845995420273 0.2384937238493401 0.0406845995420273 0.18665251343054942
+0.2803347280334423 0.006780766590337883 0.2803347280334423 0.006780766590337883 0.18601765473383589
+0.2782426778242372 0.010171149885506825 0.27824267782423723 0.010171149885506825 0.18590812217033684
+0.27615062761503206 0.013561533180675767 0.27615062761503206 0.013561533180675767 0.18609122036184297
+0.2615062761505963 0.01695191647584471 0.26150627615059635 0.01695191647584471 0.18209164841864633
+0.2656903765690065 0.01695191647584471 0.26569037656900646 0.01695191647584471 0.18347392516550567
+0.26987447698741673 0.01695191647584471 0.2698744769874168 0.01695191647584471 0.18495110164069942
+0.27405857740582695 0.01695191647584471 0.2740585774058269 0.01695191647584471 0.18652725433200598
+0.2594142259413912 0.02034229977101365 0.2594142259413912 0.02034229977101365 0.18290210503954327
+0.10171149885504711 0.18828451882847774 0.10171149885504711 0.18828451882847774 0.08175944235748357
+0.10510188215020459 0.1861924686192802 0.10510188215020459 0.1861924686192802 0.07999853561953178
+0.10849226544536056 0.18410041841007674 0.10849226544536057 0.18410041841007674 0.07867208534510022
+0.11188264874051745 0.18200836820086583 0.11188264874051745 0.18200836820086583 0.07780382274603705
+0.11527303203566112 0.17991631799163357 0.11527303203566112 0.17991631799163357 0.07740191580581839
+0.11866341533078711 0.1778242677823788 0.1186634153307871 0.1778242677823788 0.07745857518505862
+0.12205379862586026 0.1757322175731171 0.12205379862586026 0.1757322175731171 0.0779512113661505
+0.12544418192087395 0.17364016736390972 0.12544418192087395 0.17364016736390972 0.07884495584247386
+0.054246132722702685 0.22594142259414315 0.054246132722702685 0.22594142259414315 0.12959538315212363
+0.05763651601787174 0.22384937238493818 0.05763651601787174 0.22384937238493818 0.12734225906696264
+0.061026899313040756 0.2217573221757331 0.06102689931304075 0.2217573221757331 0.12482526136128101
+0.0644172826082097 0.21548117154811677 0.06441728260820968 0.21548117154811677 0.11855390331486738
+0.06780766590337832 0.21338912133891105 0.06780766590337832 0.21338912133891105 0.11555543698048687
+0.06441728260820971 0.21966527196652788 0.06441728260820971 0.21966527196652788 0.12206434773709347
+0.07119804919854651 0.21129707112970517 0.07119804919854651 0.21129707112970517 0.11238841976980889
+0.07458843249371398 0.2092050209204993 0.07458843249371398 0.20920502092049933 0.10909370809017942
+0.07797881578888065 0.20711297071129417 0.07797881578888065 0.20711297071129417 0.10571795700395382
+0.0813691990840462 0.20502092050209061 0.0813691990840462 0.20502092050209061 0.10231311083924455
+0.0847595823792104 0.20292887029288809 0.0847595823792104 0.20292887029288806 0.09893573369864683
+0.08814996567437729 0.2008368200836889 0.08814996567437729 0.2008368200836889 0.09564610168785115
+0.09154034896954277 0.19874476987449088 0.09154034896954277 0.19874476987449088 0.0925069616429723
+0.09493073226471103 0.19665271966529277 0.09493073226471103 0.19665271966529277 0.08958185754972509
+0.0983211155598774 0.1945606694560946 0.0983211155598774 0.1945606694560946 0.08693295001259012
+0.1017114988550431 0.1924686192468956 0.10171149885504312 0.1924686192468956 0.08461832203189824
+0.033903832951689306 0.2426778242677825 0.033903832951689306 0.2426778242677825 0.14002626264525453
+0.03729421624685814 0.24058577405857742 0.03729421624685814 0.24058577405857742 0.13945665547850164
+0.040684599542026974 0.23849372384937248 0.040684599542026974 0.23849372384937248 0.13865741879065377
+0.04407498283719572 0.23640167364016748 0.04407498283719572 0.23640167364016748 0.13760247339852708
+0.0474653661323645 0.2343096234309627 0.04746536613236451 0.2343096234309627 0.13627308940148417
+0.05085574942753338 0.23221757322175787 0.05085574942753338 0.23221757322175787 0.1346580730373463
+0.054246132722702324 0.23012552301255318 0.054246132722702324 0.23012552301255318 0.13275381845149156
+0.016951916475844677 0.2615062761506279 0.016951916475844677 0.2615062761506279 0.1446124275667309
+0.020342299771013612 0.2594142259414229 0.020342299771013612 0.2594142259414229 0.1447299979481764
+0.02373268306618258 0.25313807531380783 0.02373268306618258 0.2531380753138079 0.14288148902763773
+0.02712306636135152 0.2510460251046028 0.027123066361351523 0.2510460251046028 0.14286245074514273
+0.02373268306618256 0.2573221757322179 0.02373268306618256 0.2573221757322179 0.1448437511668771
+0.030513449656520454 0.2489539748953977 0.03051344965652045 0.2489539748953977 0.1427336740719135
+0.03390383295168937 0.2468619246861926 0.03390383295168937 0.24686192468619259 0.14244939512022345
+0.006780766590337883 0.276150627615063 0.006780766590337883 0.276150627615063 0.14762007253426515
+0.010171149885506797 0.26987447698744793 0.010171149885506797 0.26987447698744793 0.1461185096995924
+0.01017114988550681 0.27405857740585793 0.01017114988550681 0.27405857740585793 0.14752893097722183
+0.013561533180675725 0.26778242677824293 0.013561533180675725 0.26778242677824293 0.14613844724676325
+0.016951916475844653 0.26569037656903793 0.016951916475844653 0.26569037656903793 0.14626228556581722
+0.1288344393487209 0.17154783755028968 0.12883443934872088 0.17154783755028968 0.08009589429403596
+0.18410041841000724 0.10849226544540613 0.18410041841000724 0.10849226544540613 0.13576934556678363
+0.18200836820080213 0.11188264874057507 0.18200836820080213 0.11188264874057507 0.13167049282797547
+0.17991631799159702 0.11527303203574402 0.17991631799159702 0.11527303203574402 0.1276939699949217
+0.1778242677823919 0.11866341533091296 0.1778242677823919 0.11866341533091296 0.1238755927234889
+0.13222393961225457 0.16945349618398764 0.13222393961225457 0.16945349618398764 0.08165416137285841
+0.1356110573223296 0.16735491500238453 0.1356110573223296 0.16735491500238453 0.08346749572604546
+0.1757322175731868 0.1220537986260819 0.1757322175731868 0.1220537986260819 0.12024610425781766
+0.1736401673639817 0.12544418192125084 0.1736401673639817 0.12544418192125084 0.11683030410723085
+0.17154811715477658 0.12883456521641978 0.17154811715477658 0.12883456521641978 0.11364636807316301
+0.13899308416799297 0.1652525821693949 0.13899308416799297 0.1652525821693949 0.08548480916534834
+0.169456682178336 0.13222502273164716 0.169456682178336 0.13222502273164716 0.11070583193308094
+0.16736888540168562 0.1356163885188658 0.16736888540168562 0.1356163885188658 0.10801468187290743
+0.16529077435335465 0.13901062397409755 0.16529077435335468 0.13901062397409755 0.10557448608757132
+0.14236820579447954 0.16314836423994636 0.14236820579447954 0.16314836423994636 0.08765921624553696
+0.16322800509327512 0.14241036011606403 0.1632280050932751 0.14241036011606403 0.10338110980425581
+0.1457307412478674 0.1610441273465575 0.14573074124786742 0.1610441273465575 0.08994472057155974
+0.16118272186989704 0.14581732668058062 0.16118272186989704 0.14581732668058064 0.1014232122714117
+0.14908214529677805 0.15893262660204296 0.14908214529677807 0.15893262660204296 0.09230743645288077
+0.15914517398902336 0.14923253927379407 0.15914517398902336 0.14923253927379407 0.09967795854455169
+0.15244743260654958 0.1568050620840329 0.15244743260654958 0.1568050620840329 0.09473827830595988
+0.15719471571193688 0.15265778377791808 0.15719471571193688 0.15265778377791808 0.09819924465768265
+0.15546443151627784 0.155556466530382 0.15546443151627784 0.155556466530382 0.09696724581422576
+0.20502092050205833 0.0813691990840546 0.20502092050205833 0.0813691990840546 0.1693038942944272
+0.20292887029285323 0.08475958237922354 0.20292887029285325 0.08475958237922354 0.16587138405958934
+0.20083682008364812 0.08814996567439248 0.20083682008364812 0.08814996567439248 0.16221625868924236
+0.198744769874443 0.09154034896956142 0.198744769874443 0.09154034896956142 0.1583786862358435
+0.1966527196652379 0.09493073226473037 0.1966527196652379 0.09493073226473037 0.15440137529316855
+0.1945606694560328 0.09832111555989931 0.1945606694560328 0.09832111555989931 0.15032878086390922
+0.19246861924682768 0.10171149885506825 0.19246861924682768 0.10171149885506825 0.1462062508182758
+0.19037656903762257 0.10510188215023719 0.19037656903762257 0.10510188215023719 0.14207911064127787
+0.18828451882841743 0.10849226544540613 0.18828451882841743 0.10849226544540613 0.13799168900711603
+0.23640167364013498 0.04407498283719624 0.236401673640135 0.04407498283719624 0.18720407645101325
+0.23430962343092987 0.04746536613236518 0.23430962343092987 0.04746536613236518 0.18748614249254783
+0.23221757322172476 0.050855749427534125 0.23221757322172473 0.050855749427534125 0.18746423752714605
+0.23012552301251965 0.054246132722703067 0.23012552301251965 0.054246132722703067 0.1871118057534753
+0.22384937238490432 0.05763651601787201 0.2238493723849043 0.05763651601787201 0.18553636930092296
+0.2217573221756992 0.06102689931304095 0.2217573221756992 0.06102689931304095 0.18445889370162885
+0.2196652719664941 0.06441728260820989 0.21966527196649413 0.06441728260820989 0.18301172651879838
+0.217573221757289 0.06780766590337883 0.217573221757289 0.06780766590337883 0.18119882881668667
+0.21548117154808388 0.07119804919854777 0.21548117154808386 0.07119804919854777 0.1790309293820428
+0.21338912133887877 0.07458843249371672 0.21338912133887877 0.07458843249371672 0.17652504499782848
+0.21129707112967366 0.07797881578888566 0.2112970711296737 0.07797881578888566 0.17370395467943478
+0.20920502092046855 0.0813691990840546 0.20920502092046855 0.0813691990840546 0.17059563275051134
+0.22803347280331454 0.05763651601787201 0.22803347280331457 0.05763651601787201 0.1864102216850679
+0.2573221757321861 0.02373268306618259 0.257322175732186 0.02373268306618259 0.18385424124280084
+0.25523012552298097 0.027123066361351533 0.25523012552298097 0.027123066361351533 0.18488372611039838
+0.25313807531377586 0.030513449656520475 0.2531380753137759 0.030513449656520475 0.185925237656508
+0.24476987447695542 0.03729421624685836 0.24476987447695545 0.03729421624685836 0.1868080303820274
+0.25104602510457075 0.03390383295168942 0.25104602510457075 0.03390383295168942 0.18691489799190283
+0.24895397489536564 0.03729421624685836 0.2489539748953656 0.03729421624685836 0.1877923049641503
+0.2426778242677503 0.0406845995420273 0.2426778242677503 0.0406845995420273 0.18755539310836175
+0.2405857740585452 0.04407498283719624 0.24058577405854517 0.04407498283719624 0.18808114210805674
+0.2845188284518525 0.006780766590337883 0.2845188284518525 0.006780766590337883 0.18783123793486392
+0.2824267782426474 0.010171149885506825 0.28242677824264734 0.010171149885506825 0.18767741783270478
+0.2803347280334423 0.013561533180675767 0.2803347280334423 0.013561533180675767 0.18781375405055034
+0.2782426778242372 0.01695191647584471 0.27824267782423723 0.01695191647584471 0.1882020133499962
+0.2635983263598014 0.02034229977101365 0.2635983263598014 0.02034229977101365 0.1842246499490027
+0.2677824267782116 0.02034229977101365 0.2677824267782116 0.02034229977101365 0.18564393890581768
+0.27196652719662184 0.02034229977101365 0.27196652719662184 0.02034229977101365 0.1871663237815069
+0.27615062761503206 0.02034229977101365 0.27615062761503206 0.02034229977101365 0.18879354082872093
+0.2615062761505963 0.02373268306618259 0.26150627615059635 0.02373268306618259 0.18511857172643428
+0.10510188215020196 0.1903765690376982 0.10510188215020196 0.1903765690376982 0.0826888851561442
+0.1084922654453574 0.1882845188285012 0.1084922654453574 0.1882845188285012 0.08118516247745196
+0.11188264874050728 0.18619246861931182 0.11188264874050728 0.18619246861931182 0.08013438508030048
+0.11527303203565041 0.18410041841011016 0.11527303203565041 0.18410041841011016 0.07954842368010406
+0.11866341533080842 0.18200836820088062 0.11866341533080842 0.18200836820088062 0.07942301654226498
+0.12205379862593867 0.17991631799162042 0.12205379862593867 0.17991631799162042 0.07973852880767311
+0.1254441819210246 0.17782426778233296 0.1254441819210246 0.17782426778233296 0.0804621502815958
+0.12883456471812693 0.1757321982569332 0.12883456471812693 0.1757321982569332 0.08155112485077536
+0.057636516017871293 0.22803347280334849 0.057636516017871293 0.22803347280334849 0.13056425679567504
+0.06102689931304036 0.22594142259414365 0.06102689931304036 0.22594142259414365 0.1281007286980309
+0.06441728260820936 0.22384937238493877 0.06441728260820935 0.22384937238493877 0.12538179952468406
+0.06780766590337865 0.21757322175732244 0.06780766590337865 0.21757322175732244 0.11908640857511275
+0.07119804919854743 0.2154811715481166 0.07119804919854743 0.2154811715481166 0.11592498293461435
+0.0678076659033784 0.22175732217573377 0.0678076659033784 0.22175732217573377 0.12243302990594139
+0.07458843249371579 0.21338912133891044 0.07458843249371579 0.21338912133891044 0.11261993006849287
+0.07797881578888337 0.2112970711297039 0.07797881578888337 0.2112970711297039 0.10921703811897387
+0.08136919908404959 0.2092050209204974 0.08136919908404959 0.2092050209204974 0.10576753630027048
+0.08475958237921445 0.20711297071129217 0.08475958237921445 0.20711297071129217 0.10232745838183584
+0.08814996567437731 0.20502092050208987 0.08814996567437731 0.20502092050208987 0.09895678513516003
+0.09154034896953771 0.2029288702928894 0.09154034896953771 0.2029288702928894 0.09571827577456642
+0.09493073226470278 0.20083682008369486 0.09493073226470278 0.20083682008369488 0.09267589151385729
+0.09832111555986527 0.19874476987450237 0.09832111555986527 0.19874476987450237 0.08989273096053087
+0.10171149885503256 0.19665271966530914 0.10171149885503254 0.19665271966530914 0.08742845254049668
+0.10510188215019572 0.1945606694561158 0.10510188215019571 0.1945606694561158 0.08533626468457249
+0.03729421624685826 0.24476987447698748 0.037294216246858254 0.24476987447698748 0.14196921971319787
+0.04068459954202711 0.2426778242677824 0.04068459954202711 0.24267782426778242 0.14125899255696875
+0.0440749828371959 0.24058577405857737 0.0440749828371959 0.24058577405857737 0.140291407990327
+0.04746536613236463 0.23849372384937242 0.04746536613236463 0.23849372384937242 0.1390464038961269
+0.05085574942753326 0.2364016736401675 0.05085574942753326 0.2364016736401675 0.1375113800004937
+0.05424613272270207 0.23430962343096282 0.05424613272270207 0.23430962343096282 0.1356812780924764
+0.057636516017870815 0.2322175732217583 0.05763651601787081 0.23221757322175832 0.13355855630926164
+0.020342299771013577 0.26359832635983294 0.020342299771013577 0.26359832635983294 0.14643877998910512
+0.023732683066182512 0.26150627615062794 0.023732683066182512 0.26150627615062794 0.1466149811708207
+0.027123066361351516 0.2552301255230129 0.027123066361351516 0.2552301255230129 0.1449009664604516
+0.030513449656520468 0.25313807531380783 0.03051344965652047 0.2531380753138079 0.1448513752777191
+0.027123066361351467 0.2594142259414229 0.027123066361351467 0.2594142259414229 0.14673830213949327
+0.033903832951689396 0.2510460251046028 0.033903832951689396 0.2510460251046028 0.14464866422626543
+0.037294216246858324 0.2489539748953977 0.037294216246858324 0.2489539748953977 0.14425166715356122
+0.006780766590337883 0.28033472803347304 0.006780766590337883 0.280334728033473 0.14889293584318716
+0.01017114988550682 0.278242677824268 0.01017114988550682 0.278242677824268 0.1488293700088613
+0.013561533180675723 0.27196652719665293 0.013561533180675723 0.27196652719665293 0.14759029503942356
+0.013561533180675744 0.2761506276150629 0.013561533180675744 0.2761506276150629 0.14891940702048093
+0.016951916475844642 0.26987447698744793 0.016951916475844642 0.26987447698744793 0.14775791364408894
+0.02034229977101355 0.26778242677824293 0.02034229977101355 0.26778242677824293 0.1479813660462209
+0.006780766590337883 0.28451882845188314 0.006780766590337883 0.28451882845188314 0.15009135795324813
+0.13222480722603716 0.17363949422657574 0.13222480722603716 0.17363949422657574 0.08295618806431987
+0.18619246861921232 0.11188264874057507 0.18619246861921232 0.11188264874057507 0.1339862944054855
+0.18410041841000724 0.11527303203574402 0.18410041841000724 0.11527303203574402 0.13010216378058423
+0.18200836820080213 0.11866341533091296 0.18200836820080213 0.11866341533091296 0.12637441753788092
+0.17991631799159702 0.1220537986260819 0.17991631799159702 0.1220537986260819 0.1228330700255774
+0.13561410837837187 0.17154407103113298 0.13561410837837187 0.17154407103113298 0.08462464761033019
+0.13900030958807388 0.1694450949826886 0.13900030958807388 0.1694450949826886 0.08650380554788671
+0.1778242677823919 0.12544418192125084 0.1778242677823919 0.12544418192125084 0.11950215829684512
+0.17573221757318677 0.12883456521641978 0.17573221757318677 0.12883456521641978 0.11639906113787561
+0.17364016736398166 0.13222494851158872 0.17364016736398166 0.13222494851158872 0.11353408064985367
+0.14237969766650774 0.16734241712721087 0.14237969766650774 0.16734241712721087 0.08854278496256768
+0.1715499701913017 0.13561588060039476 0.1715499701913017 0.13561588060039476 0.11091139648966848
+0.16946441240643384 0.13900859783947692 0.16946441240643384 0.13900859783947692 0.10852905352659813
+0.16738884221927589 0.14240612279956796 0.16738884221927589 0.14240612279956796 0.10638078495676016
+0.145748821437411 0.1652345639862843 0.145748821437411 0.1652345639862843 0.09069522991082163
+0.16532666888435874 0.14581290760824633 0.16532666888435874 0.14581290760824636 0.10445440984326519
+0.14910317631925926 0.16311631176744654 0.14910317631925926 0.16311631176744654 0.09291968281103073
+0.16327322855835316 0.14923799709197222 0.16327322855835316 0.1492379970919722 0.10272849973294103
+0.15243042268470386 0.16095213042880685 0.15243042268470386 0.16095213042880685 0.09517160128183749
+0.16121403118367297 0.15272748441030382 0.16121403118367297 0.15272748441030382 0.10117372783280175
+0.15569139365446166 0.15909926143569197 0.1556913936544617 0.15909926143569197 0.09742768994137142
+0.15914672995548712 0.15652978174328347 0.15914672995548715 0.1565297817432835 0.09980012055503959
+0.20711297071126344 0.08475958237922354 0.20711297071126342 0.08475958237922354 0.1672326422555931
+0.20502092050205833 0.08814996567439248 0.20502092050205833 0.08814996567439248 0.1636514874264742
+0.20292887029285323 0.09154034896956142 0.20292887029285325 0.09154034896956142 0.15989192173301978
+0.20083682008364812 0.09493073226473037 0.20083682008364812 0.09493073226473037 0.15599620656526805
+0.198744769874443 0.09832111555989931 0.198744769874443 0.09832111555989931 0.15200831505489318
+0.1966527196652379 0.10171149885506825 0.1966527196652379 0.10171149885506825 0.1479730763332929
+0.19456066945603276 0.10510188215023719 0.19456066945603276 0.10510188215023719 0.14393525814221267
+0.19246861924682765 0.10849226544540613 0.19246861924682765 0.10849226544540613 0.13993859071036083
+0.19037656903762257 0.11188264874057507 0.19037656903762257 0.11188264874057507 0.13602474264147443
+0.2384937238493401 0.04746536613236518 0.2384937238493401 0.04746536613236518 0.18834322872166864
+0.23640167364013498 0.050855749427534125 0.236401673640135 0.050855749427534125 0.18830725907351012
+0.23430962343092987 0.054246132722703067 0.23430962343092987 0.054246132722703067 0.18794672403890497
+0.23221757322172476 0.05763651601787201 0.23221757322172473 0.05763651601787201 0.18724302524594358
+0.22594142259410943 0.06102689931304095 0.22594142259410943 0.06102689931304095 0.18534864761002748
+0.22384937238490432 0.06441728260820989 0.2238493723849043 0.06441728260820989 0.18392377175393612
+0.2217573221756992 0.06780766590337883 0.2217573221756992 0.06780766590337883 0.1821394546389069
+0.2196652719664941 0.07119804919854777 0.21966527196649413 0.07119804919854777 0.18000630415476293
+0.217573221757289 0.07458843249371672 0.217573221757289 0.07458843249371672 0.1775411938836229
+0.21548117154808388 0.07797881578888566 0.21548117154808386 0.07797881578888566 0.1747667341979919
+0.21338912133887877 0.0813691990840546 0.21338912133887877 0.0813691990840546 0.17171070145837106
+0.21129707112967366 0.08475958237922354 0.2112970711296737 0.08475958237922354 0.1684054271406785
+0.23012552301251965 0.06102689931304095 0.23012552301251965 0.06102689931304095 0.18618534112720983
+0.2594142259413912 0.027123066361351533 0.2594142259413912 0.027123066361351533 0.18609228299158967
+0.2573221757321861 0.030513449656520475 0.257322175732186 0.030513449656520475 0.18708115940378697
+0.25523012552298097 0.03390383295168942 0.25523012552298097 0.03390383295168942 0.18802181947133634
+0.24686192468616053 0.0406845995420273 0.24686192468616053 0.0406845995420273 0.18850213784876968
+0.25313807531377586 0.03729421624685836 0.2531380753137759 0.03729421624685836 0.18885419149246407
+0.25104602510457075 0.0406845995420273 0.25104602510457075 0.0406845995420273 0.1895231591769194
+0.24476987447695542 0.04407498283719624 0.24476987447695545 0.04407498283719624 0.1889953538741834
+0.2426778242677503 0.04746536613236518 0.2426778242677503 0.04746536613236518 0.18923001646228957
+0.2887029288702627 0.006780766590337883 0.2887029288702627 0.006780766590337883 0.18971523014105204
+0.2866108786610576 0.010171149885506825 0.28661087866105767 0.010171149885506825 0.18952478536870257
+0.2845188284518525 0.013561533180675767 0.2845188284518525 0.013561533180675767 0.1896221789591628
+0.2824267782426474 0.01695191647584471 0.28242677824264734 0.01695191647584471 0.18997063062669825
+0.2803347280334423 0.02034229977101365 0.2803347280334423 0.02034229977101365 0.19052271002345836
+0.2656903765690065 0.02373268306618259 0.26569037656900646 0.02373268306618259 0.18648129596721133
+0.26987447698741673 0.02373268306618259 0.2698744769874168 0.02373268306618259 0.1879511365275881
+0.27405857740582695 0.02373268306618259 0.2740585774058269 0.02373268306618259 0.1895320335419017
+0.2782426778242372 0.02373268306618259 0.27824267782423723 0.02373268306618259 0.19122306912848755
+0.2635983263598014 0.027123066361351533 0.2635983263598014 0.027123066361351533 0.1874006154709855
+0.10849226544535617 0.19246861924692202 0.10849226544535617 0.19246861924692202 0.08365971508811382
+0.11188264874050312 0.19037656903773162 0.11188264874050312 0.19037656903773162 0.08242967203201372
+0.11527303203564676 0.1882845188285387 0.11527303203564676 0.1882845188285387 0.0816619991257478
+0.11866341533078217 0.186192468619357 0.11866341533078217 0.186192468619357 0.08135640748402972
+0.12205379862591698 0.18410041841014105 0.12205379862591696 0.18410041841014105 0.08149679023210922
+0.12544418192106385 0.18200836820090327 0.12544418192106385 0.18200836820090327 0.08205304200083553
+0.12883456521615036 0.17991631799160657 0.12883456521615036 0.17991631799160657 0.082984048696899
+0.13222494657908065 0.17782415350382422 0.13222494657908065 0.17782415350382422 0.08424128278449189
+0.06102689931303976 0.23012552301255373 0.06102689931303976 0.23012552301255376 0.13115308354803512
+0.06441728260820871 0.2280334728033492 0.06441728260820871 0.2280334728033492 0.12848197371929146
+0.06780766590337779 0.22594142259414454 0.06780766590337779 0.22594142259414454 0.125569372932796
+0.07119804919854739 0.2196652719665285 0.07119804919854739 0.2196652719665285 0.11928670629984088
+0.07458843249371631 0.21757322175732274 0.07458843249371631 0.21757322175732274 0.11598152724308027
+0.07119804919854683 0.22384937238493985 0.07119804919854683 0.22384937238493982 0.12244620544944392
+0.07797881578888488 0.2154811715481165 0.07797881578888488 0.2154811715481165 0.11256222960808678
+0.08136919908405264 0.21338912133890953 0.08136919908405264 0.2133891213389095 0.10907912496253337
+0.0847595823792191 0.2112970711297019 0.0847595823792191 0.2112970711297019 0.1055874988444163
+0.0881499656743831 0.20920502092049434 0.0881499656743831 0.20920502092049434 0.1021468064787875
+0.09154034896954467 0.20711297071128906 0.09154034896954467 0.20711297071128906 0.09881958052860057
+0.09493073226470249 0.20502092050208912 0.09493073226470249 0.20502092050208912 0.09566995681673328
+0.09832111555985584 0.2029288702928925 0.09832111555985584 0.2029288702928925 0.09276173385366204
+0.10171149885501761 0.2008368200837064 0.10171149885501761 0.20083682008370643 0.09015592591069015
+0.10510188215017441 0.1987447698745236 0.1051018821501744 0.1987447698745236 0.08790785975844957
+0.1084922654453398 0.1966527196653389 0.10849226544533978 0.1966527196653389 0.086064002209248
+0.04068459954202723 0.24686192468619253 0.04068459954202724 0.24686192468619253 0.14362526606444617
+0.044074982837196096 0.24476987447698736 0.044074982837196096 0.24476987447698736 0.1427410346647191
+0.04746536613236487 0.24267782426778228 0.04746536613236487 0.24267782426778228 0.1415776642778073
+0.05085574942753354 0.2405857740585772 0.05085574942753355 0.2405857740585772 0.140121212165254
+0.05424613272270213 0.23849372384937229 0.05424613272270213 0.23849372384937229 0.13836520909776748
+0.05763651601787059 0.2364016736401675 0.057636516017870586 0.2364016736401675 0.13631065802303868
+0.061026899313039305 0.2343096234309631 0.061026899313039305 0.2343096234309631 0.13396594989690536
+0.023732683066182477 0.26569037656903793 0.023732683066182477 0.26569037656903793 0.14820826336627435
+0.0271230663613514 0.26359832635983294 0.027123066361351398 0.26359832635983294 0.14838630240814968
+0.030513449656520423 0.2573221757322179 0.030513449656520423 0.2573221757322179 0.14675833362412585
+0.03390383295168937 0.2552301255230129 0.03390383295168937 0.2552301255230129 0.14662836439018553
+0.030513449656520364 0.26150627615062794 0.030513449656520364 0.26150627615062794 0.1484650831950445
+0.03729421624685833 0.2531380753138079 0.03729421624685833 0.2531380753138079 0.1463065982267189
+0.04068459954202727 0.2510460251046028 0.04068459954202727 0.2510460251046028 0.14575708392536393
+0.010171149885506825 0.2824267782426781 0.010171149885506825 0.2824267782426781 0.15004232610769544
+0.01356153318067576 0.28033472803347304 0.013561533180675761 0.280334728033473 0.15014779199088732
+0.01695191647584466 0.27405857740585793 0.016951916475844656 0.27405857740585793 0.14911796173283767
+0.01695191647584469 0.278242677824268 0.01695191647584469 0.278242677824268 0.1503639305076718
+0.02034229977101357 0.27196652719665293 0.02034229977101357 0.27196652719665293 0.14937555971644753
+0.02373268306618247 0.26987447698744793 0.02373268306618247 0.26987447698744793 0.1496405039469582
+0.006780766590337883 0.2887029288702932 0.006780766590337883 0.2887029288702932 0.15123972749488676
+0.010171149885506825 0.2866108786610882 0.010171149885506825 0.2866108786610882 0.15119201747341135
+0.13561516268209187 0.17573105927376073 0.13561516268209187 0.17573105927376073 0.08577226056000892
+0.18828451882841743 0.11527303203574402 0.18828451882841743 0.11527303203574402 0.1322322703615317
+0.18619246861921232 0.11866341533091296 0.18619246861921232 0.11866341533091296 0.12859557596830137
+0.18410041841000724 0.1220537986260819 0.18410041841000724 0.1220537986260819 0.12514392273487876
+0.18200836820080213 0.12544418192125084 0.18200836820080213 0.12544418192125084 0.12190057060086747
+0.1390042345916125 0.17363495122344316 0.1390042345916125 0.17363495122344316 0.08752335714745668
+0.14238948232860774 0.17153612584382957 0.14238948232860774 0.17153612584382957 0.08944266324870813
+0.179916317991597 0.12883456521641978 0.179916317991597 0.12883456521641978 0.11888210238803702
+0.17782426778239188 0.13222494851158872 0.17782426778239188 0.13222494851158872 0.1160980114773346
+0.1757327207087517 0.13561551135002345 0.1757327207087517 0.13561551135002345 0.11355085231064867
+0.14576716021167116 0.16943228625444443 0.14576716021167116 0.16943228625444443 0.09148111935372366
+0.17364291137927293 0.13900678742058756 0.17364291137927293 0.13900678742058756 0.11123672568020405
+0.17155885314226424 0.14240116027278002 0.17155885314226424 0.14240116027278002 0.10914708336978908
+0.16948445215491345 0.14580178803143193 0.16948445215491345 0.14580178803143193 0.10726877522168056
+0.14913560312570898 0.16732334666765966 0.14913560312570898 0.16732334666765966 0.09359754485805984
+0.16741920296561993 0.1492111039891446 0.16741920296561993 0.1492111039891446 0.105582642072605
+0.15248951270148306 0.16521120559775054 0.15248951270148306 0.16521120559775057 0.09575469633935856
+0.16535689345350796 0.15262892514160845 0.16535689345350793 0.15262892514160845 0.10406386015480505
+0.1558115403704795 0.16313878726438713 0.1558115403704795 0.16313878726438713 0.09791997977589383
+0.16341441953363742 0.1560623355856383 0.16341441953363742 0.1560623355856383 0.10276884299651502
+0.1590154126837135 0.16104111733399604 0.15901541268371353 0.16104111733399604 0.1000074046022049
+0.1620370239241598 0.15916750249771436 0.1620370239241598 0.15916750249771436 0.10192541083193729
+0.20920502092046855 0.08814996567439248 0.20920502092046855 0.08814996567439248 0.164887145846585
+0.20711297071126344 0.09154034896956142 0.20711297071126342 0.09154034896956142 0.16119529889693804
+0.2050209205020583 0.09493073226473037 0.2050209205020583 0.09493073226473037 0.15737178869889912
+0.2029288702928532 0.09832111555989931 0.2029288702928532 0.09832111555989931 0.15346017856250782
+0.20083682008364812 0.10171149885506825 0.20083682008364812 0.10171149885506825 0.1495048335083916
+0.198744769874443 0.10510188215023719 0.198744769874443 0.10510188215023719 0.14555000034947374
+0.19665271966523787 0.10849226544540613 0.19665271966523787 0.10849226544540613 0.1416388304707061
+0.19456066945603276 0.11188264874057509 0.19456066945603276 0.11188264874057509 0.13781235668005018
+0.19246861924682768 0.11527303203574402 0.19246861924682768 0.11527303203574402 0.13410844632556684
+0.2405857740585452 0.050855749427534125 0.24058577405854517 0.050855749427534125 0.18917180748402765
+0.2384937238493401 0.054246132722703067 0.2384937238493401 0.054246132722703067 0.1887942780717893
+0.23640167364013498 0.05763651601787201 0.236401673640135 0.05763651601787201 0.18807888901187841
+0.23430962343092987 0.06102689931304095 0.23430962343092987 0.06102689931304095 0.18701488519699117
+0.22803347280331454 0.06441728260820989 0.22803347280331457 0.06441728260820989 0.184770369087965
+0.22594142259410943 0.06780766590337883 0.22594142259410943 0.06780766590337883 0.18300197211954114
+0.22384937238490432 0.07119804919854777 0.2238493723849043 0.07119804919854777 0.18089075120337883
+0.2217573221756992 0.07458843249371672 0.2217573221756992 0.07458843249371672 0.17845355880660982
+0.2196652719664941 0.07797881578888566 0.21966527196649413 0.07797881578888566 0.17571296364724132
+0.217573221757289 0.0813691990840546 0.217573221757289 0.0813691990840546 0.1726966726017096
+0.21548117154808388 0.08475958237922354 0.21548117154808386 0.08475958237922354 0.1694369120273772
+0.21338912133887877 0.08814996567439248 0.21338912133887877 0.08814996567439248 0.16596976781061132
+0.23221757322172476 0.06441728260820989 0.23221757322172473 0.06441728260820989 0.18559904095636218
+0.2615062761505963 0.030513449656520475 0.26150627615059635 0.030513449656520475 0.18833789036144324
+0.2594142259413912 0.03390383295168942 0.2594142259413912 0.03390383295168942 0.18923015116532113
+0.2573221757321861 0.03729421624685836 0.257322175732186 0.03729421624685836 0.19001757164547975
+0.24895397489536564 0.04407498283719624 0.2489539748953656 0.04407498283719624 0.18997979773362392
+0.25523012552298097 0.0406845995420273 0.25523012552298097 0.0406845995420273 0.19064515791233025
+0.25313807531377586 0.04407498283719624 0.2531380753137759 0.04407498283719624 0.1910640275873061
+0.24686192468616053 0.04746536613236518 0.24686192468616053 0.04746536613236518 0.19018223777358476
+0.24476987447695542 0.050855749427534125 0.24476987447695545 0.050855749427534125 0.19009620720672007
+0.29288702928867294 0.006780766590337883 0.29288702928867294 0.006780766590337883 0.1916563692015483
+0.29079497907946783 0.010171149885506825 0.2907949790794678 0.010171149885506825 0.19143836371611522
+0.2887029288702627 0.013561533180675767 0.2887029288702627 0.013561533180675767 0.19150608157666912
+0.2866108786610576 0.01695191647584471 0.28661087866105767 0.01695191647584471 0.19182419758725863
+0.2845188284518525 0.02034229977101365 0.2845188284518525 0.02034229977101365 0.19234649809917426
+0.2824267782426474 0.02373268306618259 0.28242677824264734 0.02373268306618259 0.19301856986196164
+0.2677824267782116 0.027123066361351533 0.2677824267782116 0.027123066361351533 0.18881991658046052
+0.27196652719662184 0.027123066361351533 0.27196652719662184 0.027123066361351533 0.1903564365468768
+0.27615062761503206 0.027123066361351533 0.27615062761503206 0.027123066361351533 0.19201132556748648
+0.2803347280334423 0.027123066361351533 0.2803347280334423 0.027123066361351533 0.1937806689548989
+0.2656903765690065 0.030513449656520475 0.26569037656900646 0.030513449656520475 0.18970919532309152
+0.29707112970708316 0.006780766590337883 0.29707112970708316 0.006780766590337883 0.19363848116961213
+0.11188264874049604 0.19456066945615422 0.11188264874049604 0.19456066945615422 0.08465886452075098
+0.11527303203564691 0.19246861924696793 0.11527303203564691 0.19246861924696793 0.08371245548038254
+0.11866341533077164 0.19037656903778713 0.11866341533077164 0.19037656903778713 0.08322877681799491
+0.12205379862589327 0.18828451882859287 0.12205379862589327 0.18828451882859287 0.08319572393008422
+0.12544418192101028 0.18619246861942398 0.12544418192101028 0.18619246861942398 0.08358648692619104
+0.12883456521610143 0.1841004184102161 0.1288345652161014 0.1841004184102161 0.08436222978675267
+0.13222494851122682 0.18200836820111785 0.13222494851122682 0.18200836820111785 0.08547557800990167
+0.13561533013319174 0.17991620720223858 0.13561533013319174 0.17991620720223858 0.08687432279411532
+0.06441728260820792 0.23221757322175884 0.06441728260820791 0.23221757322175884 0.13134671667537723
+0.06780766590337688 0.23012552301255462 0.06780766590337688 0.23012552301255465 0.1284756351548955
+0.07119804919854579 0.22803347280335043 0.07119804919854579 0.22803347280335043 0.12538218850718594
+0.07458843249371588 0.22175732217573477 0.07458843249371588 0.22175732217573477 0.11914987573714096
+0.07797881578888476 0.21966527196652952 0.07797881578888476 0.21966527196652952 0.1157239135000847
+0.0745884324937149 0.22594142259414607 0.0745884324937149 0.22594142259414607 0.12210238444653564
+0.08136919908405332 0.21757322175732355 0.08136919908405332 0.21757322175732355 0.11221753542211876
+0.08475958237922147 0.21548117154811655 0.08475958237922147 0.21548117154811655 0.10868508128228048
+0.08814996567438817 0.21338912133890842 0.08814996567438817 0.21338912133890844 0.10518526376772473
+0.09154034896955261 0.21129707112969898 0.09154034896955261 0.211297071129699 0.1017801533670581
+0.09493073226471255 0.20920502092048962 0.09493073226471255 0.20920502092048962 0.09853380793722227
+0.098321115559868 0.20711297071128423 0.098321115559868 0.20711297071128423 0.0955104607063198
+0.10171149885501636 0.20502092050208895 0.10171149885501636 0.20502092050208895 0.0927722139372123
+0.10510188215015681 0.2029288702928993 0.10510188215015681 0.2029288702928993 0.09037626128820488
+0.10849226544531239 0.20083682008372858 0.10849226544531239 0.20083682008372858 0.08837178427460414
+0.11188264874045861 0.19874476987456338 0.11188264874045861 0.19874476987456338 0.08679682060490783
+0.04407498283719622 0.24895397489539758 0.04407498283719622 0.24895397489539758 0.1449503893775721
+0.04746536613236509 0.2468619246861924 0.04746536613236509 0.24686192468619242 0.14386405761692836
+0.05085574942753388 0.2447698744769872 0.05085574942753388 0.2447698744769872 0.14248288357960845
+0.05424613272270254 0.24267782426778195 0.05424613272270253 0.24267782426778198 0.1407990477036898
+0.05763651601787107 0.24058577405857692 0.05763651601787107 0.24058577405857692 0.1388121378922614
+0.06102689931303942 0.23849372384937215 0.061026899313039416 0.23849372384937215 0.13652908589940052
+0.0644172826082075 0.23640167364016754 0.0644172826082075 0.23640167364016754 0.13396403840456192
+0.027123066361351377 0.26778242677824293 0.027123066361351377 0.26778242677824293 0.14986091195079013
+0.030513449656520305 0.26569037656903793 0.030513449656520305 0.26569037656903793 0.14998653237567672
+0.033903832951689306 0.25941422594142294 0.033903832951689306 0.25941422594142294 0.1483976433174994
+0.037294216246858254 0.25732217573221794 0.037294216246858254 0.25732217573221794 0.14814169691758317
+0.033903832951689215 0.263598326359833 0.033903832951689215 0.263598326359833 0.14997029050727886
+0.04068459954202723 0.25523012552301294 0.04068459954202724 0.25523012552301294 0.14766059122810596
+0.04407498283719621 0.25313807531380783 0.04407498283719621 0.2531380753138079 0.14692400905555805
+0.013561533180675767 0.28451882845188314 0.013561533180675767 0.28451882845188314 0.15129949888697938
+0.016951916475844705 0.2824267782426781 0.016951916475844705 0.2824267782426781 0.1515196851727809
+0.02034229977101361 0.2761506276150629 0.02034229977101361 0.2761506276150629 0.15064231956741367
+0.020342299771013636 0.28033472803347304 0.020342299771013636 0.280334728033473 0.1518052958457022
+0.023732683066182505 0.27405857740585793 0.023732683066182505 0.27405857740585793 0.1509320693461851
+0.027123066361351405 0.27196652719665293 0.027123066361351405 0.27196652719665293 0.15118184017607503
+0.006780766590337881 0.29288702928870325 0.006780766590337881 0.2928870292887033 0.15236322157574408
+0.006780766590337874 0.2970711297071133 0.006780766590337874 0.2970711297071133 0.15348714728579135
+0.010171149885506822 0.29079497907949825 0.010171149885506823 0.2907949790794983 0.15230378620378013
+0.013561533180675767 0.2887029288702932 0.013561533180675767 0.2887029288702932 0.15240003895733997
+0.1390055843708141 0.17782247774085427 0.1390055843708141 0.17782247774085427 0.08850454313069472
+0.19037656903762257 0.11866341533091296 0.19037656903762257 0.11866341533091296 0.13056076600560715
+0.18828451882841743 0.1220537986260819 0.18828451882841743 0.1220537986260819 0.12719780718937604
+0.18619246861921232 0.12544418192125084 0.18619246861921232 0.12544418192125084 0.12404203445980488
+0.1841004184100072 0.12883456521641978 0.1841004184100072 0.12883456521641978 0.1211092256448545
+0.1423944414545984 0.1757267371493417 0.14239444145459837 0.1757267371493417 0.09031346025830718
+0.14577946974101208 0.17362794270481255 0.14577946974101208 0.17362794270481255 0.0922510229892576
+0.18200836820080213 0.13222494851158872 0.18200836820080213 0.13222494851158872 0.11840807245927154
+0.17991631799159702 0.13561533180675767 0.17991631799159702 0.13561533180675767 0.11594009937032314
+0.1778242677823919 0.1390057151019266 0.1778242677823919 0.1390057151019266 0.11369993270500388
+0.1491593605998617 0.17152394573973717 0.1491593605998617 0.17152394573973717 0.09427315156094417
+0.17573602882024153 0.142398067324266 0.17573602882024153 0.142398067324266 0.11167773258187186
+0.17365263244311513 0.14579345874003374 0.17365263244311513 0.14579345874003377 0.10985759294343421
+0.1715765100205552 0.14919331498542268 0.1715765100205552 0.14919331498542268 0.1082205311142892
+0.15254208447158052 0.16942082780257123 0.15254208447158055 0.16942082780257126 0.09634981653987569
+0.16950978882218426 0.15259680415079657 0.16950978882218426 0.15259680415079657 0.10674493632050087
+0.1559142478309148 0.16731489488496673 0.1559142478309148 0.16731489488496673 0.09844071303737688
+0.1674915876436135 0.15600728511080475 0.1674915876436135 0.15600728511080475 0.10542969586906513
+0.15933131455204888 0.16519996856205957 0.15933131455204888 0.16519996856205957 0.10055759353170336
+0.1655135941151953 0.15939161461643042 0.1655135941151953 0.15939161461643045 0.10423661727817067
+0.163121188585562 0.16295027669946832 0.163121188585562 0.16295027669946835 0.10290730618621301
+0.21129707112967366 0.09154034896956142 0.2112970711296737 0.09154034896956142 0.16233448114458005
+0.20920502092046855 0.09493073226473037 0.20920502092046855 0.09493073226473037 0.15857269551915068
+0.20711297071126344 0.09832111555989931 0.20711297071126342 0.09832111555989931 0.15472764992696555
+0.20502092050205836 0.10171149885506825 0.20502092050205836 0.10171149885506825 0.15084331424235617
+0.20292887029285325 0.10510188215023719 0.20292887029285325 0.10510188215023719 0.14696346559674092
+0.20083682008364812 0.10849226544540613 0.20083682008364812 0.10849226544540613 0.1431307098513561
+0.198744769874443 0.11188264874057507 0.198744769874443 0.11188264874057507 0.1393854603107643
+0.1966527196652379 0.11527303203574403 0.1966527196652379 0.11527303203574403 0.1357648966171432
+0.19456066945603276 0.11866341533091297 0.19456066945603276 0.11866341533091297 0.13230193966701964
+0.2426778242677503 0.054246132722703067 0.2426778242677503 0.054246132722703067 0.1896953047145111
+0.2405857740585452 0.05763651601787201 0.24058577405854517 0.05763651601787201 0.1889610557070228
+0.2384937238493401 0.06102689931304095 0.2384937238493401 0.06102689931304095 0.18788279567838925
+0.23640167364013498 0.06441728260820989 0.236401673640135 0.06441728260820989 0.18645741852257403
+0.23012552301251965 0.06780766590337883 0.23012552301251965 0.06780766590337883 0.18383530546203367
+0.22803347280331454 0.07119804919854777 0.22803347280331457 0.07119804919854777 0.18173437043483728
+0.22594142259410943 0.07458843249371672 0.22594142259410943 0.07458843249371672 0.17931317627264368
+0.22384937238490432 0.07797881578888566 0.2238493723849043 0.07797881578888566 0.17659436751190571
+0.2217573221756992 0.0813691990840546 0.2217573221756992 0.0813691990840546 0.17360570413052026
+0.2196652719664941 0.08475958237922354 0.21966527196649413 0.08475958237922354 0.17037943151000315
+0.217573221757289 0.08814996567439248 0.217573221757289 0.08814996567439248 0.16695160884444418
+0.21548117154808388 0.09154034896956142 0.21548117154808386 0.09154034896956142 0.16336139344136977
+0.23430962343092987 0.06780766590337883 0.23430962343092987 0.06780766590337883 0.18468901988979655
+0.2635983263598014 0.03390383295168942 0.2635983263598014 0.03390383295168942 0.19055632897466246
+0.2615062761505963 0.03729421624685836 0.26150627615059635 0.03729421624685836 0.1913016460588831
+0.2594142259413912 0.0406845995420273 0.2594142259413912 0.0406845995420273 0.1918901834466755
+0.25104602510457075 0.04746536613236518 0.25104602510457075 0.04746536613236518 0.19123231265382204
+0.2573221757321861 0.04407498283719624 0.257322175732186 0.04407498283719624 0.1922730121699507
+0.25523012552298097 0.04746536613236518 0.25523012552298097 0.04746536613236518 0.19240818272648444
+0.24895397489536564 0.050855749427534125 0.2489539748953656 0.050855749427534125 0.1911157339001207
+0.24686192468616053 0.054246132722703067 0.24686192468616053 0.054246132722703067 0.19068789945649234
+0.29497907949787805 0.010171149885506825 0.2949790794978781 0.010171149885506825 0.19340309490609384
+0.29288702928867294 0.013561533180675767 0.29288702928867294 0.013561533180675767 0.1934515517250062
+0.29079497907946783 0.01695191647584471 0.2907949790794678 0.01695191647584471 0.1937499938133237
+0.2887029288702627 0.02034229977101365 0.2887029288702627 0.02034229977101365 0.1942534292803878
+0.2866108786610576 0.02373268306618259 0.28661087866105767 0.02373268306618259 0.1949083743713539
+0.2845188284518525 0.027123066361351533 0.2845188284518525 0.027123066361351533 0.1956557054258965
+0.26987447698741673 0.030513449656520475 0.2698744769874168 0.030513449656520475 0.1912037469480438
+0.27405857740582695 0.030513449656520475 0.2740585774058269 0.030513449656520475 0.19282487969386783
+0.2782426778242372 0.030513449656520475 0.27824267782423723 0.030513449656520475 0.19457055010374033
+0.2824267782426474 0.030513449656520475 0.28242677824264734 0.030513449656520475 0.1964334986597344
+0.2677824267782116 0.03390383295168942 0.2677824267782116 0.03390383295168942 0.19201156343719641
+0.3012552301254934 0.006780766590337883 0.3012552301254934 0.006780766590337883 0.1956429804481787
+0.29916317991628827 0.010171149885506825 0.2991631799162882 0.010171149885506825 0.19540121099824612
+0.3054393305439036 0.006780766590337883 0.3054393305439036 0.006780766590337883 0.1976494041393101
+0.3096234309623138 0.006780766590337883 0.3096234309623138 0.006780766590337883 0.1996359564641663
+0.31380753138072404 0.006780766590337883 0.31380753138072404 0.006780766590337883 0.20158004212639005
+0.31799163179913426 0.006780766590337883 0.31799163179913426 0.006780766590337883 0.20345877130935783
+0.11527303203561996 0.19665271966539286 0.11527303203561996 0.19665271966539286 0.08567553919125266
+0.11866341533076376 0.19456066945622064 0.11866341533076376 0.19456066945622064 0.08501641195859415
+0.12205379862590038 0.1924686192470425 0.12205379862590038 0.1924686192470425 0.08481168943880103
+0.12544418192099172 0.19037656903786382 0.12544418192099172 0.19037656903786382 0.08503835981423079
+0.12883456521606432 0.18828451882867345 0.12883456521606432 0.18828451882867345 0.08566046551609234
+0.13222494851110403 0.1861924686195701 0.13222494851110403 0.1861924686195701 0.08663237931709639
+0.1356153318061327 0.1841004184104488 0.1356153318061327 0.1841004184104488 0.08790249932753659
+0.1390057151012598 0.18200836820181743 0.1390057151012598 0.18200836820181743 0.0894168414575441
+0.06780766590337611 0.23430962343096354 0.06780766590337611 0.23430962343096354 0.1311381770292466
+0.07119804919854444 0.23221757322175987 0.07119804919854444 0.23221757322175987 0.12807949509542105
+0.0745884324937134 0.2301255230125562 0.0745884324937134 0.2301255230125562 0.1248225315562382
+0.07797881578888387 0.22384937238494154 0.07797881578888387 0.22384937238494154 0.11867841930699603
+0.08136919908405266 0.22175732217573677 0.08136919908405266 0.22175732217573677 0.11515826521733814
+0.07797881578888223 0.22803347280335254 0.07797881578888223 0.22803347280335254 0.12140805361630376
+0.0847595823792211 0.2196652719665316 0.0847595823792211 0.2196652719665316 0.11159514265601343
+0.08814996567438892 0.21757322175732532 0.08814996567438892 0.21757322175732532 0.10804682336090186
+0.0915403489695563 0.2154811715481173 0.0915403489695563 0.2154811715481173 0.10457469088888295
+0.094930732264721 0.21338912133890728 0.094930732264721 0.21338912133890728 0.10124247279599775
+0.09832111555988161 0.21129707112969479 0.09832111555988161 0.21129707112969479 0.09811455786003369
+0.10171149885503368 0.20920502092048257 0.10171149885503368 0.20920502092048257 0.09525383607275727
+0.10510188215017789 0.2071129707112774 0.10510188215017789 0.2071129707112774 0.0927190613604335
+0.10849226544530911 0.2050209205020905 0.10849226544530911 0.2050209205020905 0.09056184429327617
+0.11188264874042538 0.20292887029291384 0.11188264874042538 0.20292887029291382 0.08882352482389134
+0.1152730320355702 0.20083682008376977 0.1152730320355702 0.20083682008376977 0.08753231750096513
+0.04746536613236518 0.25104602510460267 0.04746536613236518 0.25104602510460267 0.1459084530465701
+0.050855749427534104 0.24895397489539747 0.050855749427534104 0.24895397489539747 0.14459754920387527
+0.054246132722702955 0.24686192468619225 0.054246132722702955 0.24686192468619225 0.14298220501636258
+0.05763651601787165 0.24476987447698687 0.057636516017871654 0.24476987447698687 0.14106065339158916
+0.06102689931304015 0.2426778242677816 0.06102689931304015 0.2426778242677816 0.13883840843342068
+0.06441728260820839 0.24058577405857637 0.06441728260820839 0.24058577405857637 0.13632815358484573
+0.06780766590337632 0.23849372384937176 0.06780766590337632 0.23849372384937176 0.13354957692484873
+0.030513449656520298 0.26987447698744793 0.030513449656520298 0.26987447698744793 0.15134165570676358
+0.03390383295168917 0.267782426778243 0.03390383295168917 0.267782426778243 0.15136445734689577
+0.03729421624685815 0.261506276150628 0.03729421624685814 0.261506276150628 0.14976954673339074
+0.04068459954202712 0.25941422594142305 0.040684599542027126 0.259414225941423 0.14934707740598482
+0.03729421624685804 0.26569037656903804 0.03729421624685803 0.265690376569038 0.15120738016078192
+0.0440749828371961 0.257322175732218 0.0440749828371961 0.257322175732218 0.1486718036923732
+0.04746536613236511 0.255230125523013 0.04746536613236511 0.255230125523013 0.14771930221483776
+0.01695191647584471 0.2866108786610882 0.01695191647584471 0.2866108786610882 0.15261089518090598
+0.020342299771013646 0.28451882845188314 0.020342299771013646 0.28451882845188314 0.15289028857189038
+0.02373268306618255 0.278242677824268 0.02373268306618255 0.278242677824268 0.15210634666169096
+0.023732683066182578 0.2824267782426781 0.023732683066182578 0.2824267782426781 0.15318922141038846
+0.02712306636135145 0.2761506276150629 0.02712306636135145 0.2761506276150629 0.1523721465173926
+0.030513449656520347 0.27405857740585793 0.030513449656520347 0.27405857740585793 0.15255310551827403
+0.006780766590337871 0.30125523012552335 0.00678076659033787 0.30125523012552335 0.15463625377723492
+0.01017114988550681 0.2949790794979083 0.01017114988550681 0.2949790794979083 0.15340344863263544
+0.0101711498855068 0.29916317991631836 0.010171149885506799 0.29916317991631836 0.15451660540811538
+0.013561533180675753 0.29288702928870325 0.013561533180675753 0.2928870292887033 0.15347574533449015
+0.016951916475844698 0.29079497907949825 0.016951916475844698 0.2907949790794983 0.1536644038550723
+0.14239603280919258 0.179914474861213 0.14239603280919258 0.179914474861213 0.09112175870774865
+0.19246861924682768 0.1220537986260819 0.19246861924682768 0.1220537986260819 0.1290242918766293
+0.19037656903762257 0.12544418192125084 0.19037656903762257 0.12544418192125084 0.12595360372535203
+0.18828451882841743 0.12883456521641978 0.18828451882841743 0.12883456521641978 0.12310483407549085
+0.18619246861921232 0.13222494851158872 0.18619246861921232 0.13222494851158872 0.12048587012297367
+0.14578488170296805 0.17781925638965346 0.14578488170296808 0.17781925638965346 0.09296638154230961
+0.14917054202042476 0.1757196082503202 0.14917054202042476 0.1757196082503202 0.09490385356126291
+0.18410041841000724 0.13561533180675767 0.18410041841000724 0.13561533180675767 0.11809746071886285
+0.18200836820080213 0.1390057151019266 0.18200836820080213 0.1390057151019266 0.11593349299954948
+0.1799172630658986 0.14239661967102044 0.1799172630658986 0.14239661967102044 0.11398201038122936
+0.15255678607348794 0.17361742474676395 0.15255678607348797 0.17361742474676392 0.09689790100970931
+0.1778283621687721 0.1457888088486608 0.1778283621687721 0.14578880884866077 0.1122260742876862
+0.17574389241001298 0.14918341305636976 0.17574389241001298 0.14918341305636976 0.11064529817728708
+0.1736696116550496 0.15258175608133592 0.1736696116550496 0.15258175608133592 0.10921873761318675
+0.15594721357925598 0.17151095803043115 0.15594721357925598 0.17151095803043115 0.09891748997041715
+0.17161084167875476 0.1559838091169876 0.17161084167875476 0.1559838091169876 0.1079241354110022
+0.159363855331579 0.16940746488212244 0.159363855331579 0.16940746488212244 0.10095297605908073
+0.16955696231669137 0.15938515918456597 0.16955696231669137 0.15938515918456597 0.10673065434179459
+0.16280180670738034 0.16733229061138558 0.16280180670738034 0.16733229061138558 0.10298647176783522
+0.16746038268750774 0.16277712862039073 0.16746038268750774 0.16277712862039073 0.10559698854697123
+0.16588244831605004 0.16576390420413062 0.16588244831605004 0.16576390420413062 0.10475225569746091
+0.21338912133887877 0.09493073226473037 0.21338912133887877 0.09493073226473037 0.15965027684450084
+0.21129707112967366 0.09832111555989931 0.2112970711296737 0.09832111555989931 0.15586126828533017
+0.20920502092046855 0.10171149885506825 0.20920502092046855 0.10171149885506825 0.15203802202561947
+0.20711297071126347 0.10510188215023719 0.20711297071126347 0.10510188215023719 0.14822390815533504
+0.20502092050205836 0.10849226544540613 0.20502092050205836 0.10849226544540613 0.1444610318216052
+0.20292887029285325 0.11188264874057507 0.20292887029285325 0.11188264874057507 0.14078921398029012
+0.20083682008364812 0.11527303203574402 0.20083682008364812 0.11527303203574402 0.13724495748974452
+0.198744769874443 0.11866341533091297 0.198744769874443 0.11866341533091297 0.13386043496748432
+0.1966527196652379 0.12205379862608191 0.1966527196652379 0.12205379862608191 0.13066254771403066
+0.24476987447695542 0.05763651601787201 0.24476987447695545 0.05763651601787201 0.1899303781349836
+0.2426778242677503 0.06102689931304095 0.2426778242677503 0.06102689931304095 0.18883259286378148
+0.2405857740585452 0.06441728260820989 0.24058577405854517 0.06441728260820989 0.18739157249097319
+0.2384937238493401 0.06780766590337883 0.2384937238493401 0.06780766590337883 0.18561159290915577
+0.23221757322172476 0.07119804919854777 0.23221757322172473 0.07119804919854777 0.18258845871402227
+0.23012552301251965 0.07458843249371672 0.23012552301251965 0.07458843249371672 0.18017285389949197
+0.22803347280331454 0.07797881578888566 0.22803347280331457 0.07797881578888566 0.177465027869155
+0.22594142259410943 0.0813691990840546 0.22594142259410943 0.0813691990840546 0.17449290419332783
+0.22384937238490432 0.08475958237922354 0.2238493723849043 0.08475958237922354 0.1712888627550508
+0.22175732217569924 0.08814996567439248 0.22175732217569924 0.08814996567439248 0.16788905282987523
+0.21966527196649413 0.09154034896956142 0.21966527196649413 0.09154034896956142 0.16433266210244155
+0.217573221757289 0.09493073226473037 0.217573221757289 0.09493073226473037 0.16066113815840835
+0.23640167364013498 0.07119804919854777 0.236401673640135 0.07119804919854777 0.1835037315448269
+0.2656903765690065 0.03729421624685836 0.26569037656900646 0.03729421624685836 0.19272027817278323
+0.2635983263598014 0.0406845995420273 0.2635983263598014 0.0406845995420273 0.1932748628756921
+0.2615062761505963 0.04407498283719624 0.26150627615059635 0.04407498283719624 0.19362624473050574
+0.25313807531377586 0.050855749427534125 0.2531380753137759 0.050855749427534125 0.1922613353282491
+0.2594142259413912 0.04746536613236518 0.2594142259413912 0.04746536613236518 0.19373229768170983
+0.2573221757321861 0.050855749427534125 0.257322175732186 0.050855749427534125 0.19355849192835825
+0.25104602510457075 0.054246132722703067 0.25104602510457075 0.054246132722703067 0.191806026371329
+0.24895397489536564 0.05763651601787201 0.2489539748953656 0.05763651601787201 0.19102382152412598
+0.29707112970708316 0.013561533180675767 0.29707112970708316 0.013561533180675767 0.19544165463432558
+0.29497907949787805 0.01695191647584471 0.2949790794978781 0.01695191647584471 0.1957319419582144
+0.29288702928867294 0.02034229977101365 0.29288702928867294 0.02034229977101365 0.19622831993789822
+0.29079497907946783 0.02373268306618259 0.2907949790794678 0.02373268306618259 0.1968782437170928
+0.2887029288702627 0.027123066361351533 0.2887029288702627 0.027123066361351533 0.197623208181936
+0.2866108786610576 0.030513449656520475 0.28661087866105767 0.030513449656520475 0.1984015955085783
+0.27196652719662184 0.03390383295168942 0.27196652719662184 0.03390383295168942 0.1936014972869187
+0.27615062761503206 0.03390383295168942 0.27615062761503206 0.03390383295168942 0.19532608271177157
+0.2803347280334423 0.03390383295168942 0.2803347280334423 0.03390383295168942 0.1971796787555646
+0.2845188284518525 0.03390383295168942 0.2845188284518525 0.03390383295168942 0.19915135459381347
+0.26987447698741673 0.03729421624685836 0.2698744769874168 0.03729421624685836 0.19428154777006948
+0.3033472803346985 0.010171149885506825 0.30334728033469854 0.010171149885506825 0.1974127685691589
+0.3012552301254934 0.013561533180675767 0.3012552301254934 0.013561533180675767 0.19745696505452578
+0.3075313807531087 0.010171149885506825 0.30753138075310865 0.010171149885506825 0.19941620482094494
+0.3117154811715189 0.010171149885506825 0.311715481171519 0.010171149885506825 0.20138889190711848
+0.31589958158992915 0.010171149885506825 0.3158995815899291 0.010171149885506825 0.20330766971178416
+0.3221757322175445 0.006780766590337883 0.3221757322175445 0.006780766590337883 0.20524942312528102
+0.3263598326359547 0.006780766590337883 0.3263598326359547 0.006780766590337883 0.20692985836361952
+0.32008368200833937 0.010171149885506825 0.3200836820083394 0.010171149885506825 0.2051493415133143
+0.11866341533069778 0.19874476987463094 0.11866341533069778 0.19874476987463094 0.08670120376696916
+0.12205379862585221 0.19665271966548767 0.12205379862585221 0.19665271966548767 0.08632700708431303
+0.12544418192097556 0.19456066945633485 0.12544418192097553 0.19456066945633485 0.08639090373149062
+0.12883456521607908 0.19246861924716838 0.12883456521607908 0.19246861924716838 0.0868603384859238
+0.13222494851107883 0.19037656903801145 0.13222494851107883 0.19037656903801145 0.08769202896235172
+0.13561533180602336 0.18828451882883993 0.13561533180602336 0.18828451882883993 0.08883555831478117
+0.13900571510062648 0.18619246861978248 0.1390057151006265 0.18619246861978248 0.09023702496126244
+0.14239623384762898 0.18410004648805056 0.14239623384762898 0.18410004648805056 0.09184233858953748
+0.07119804919854371 0.23640167364016754 0.07119804919854371 0.23640167364016754 0.13052916230690956
+0.07458843249371204 0.2343096234309644 0.07458843249371204 0.23430962343096437 0.12729993814679252
+0.07797881578887993 0.23221757322176173 0.07797881578887993 0.23221757322176173 0.12390117743466456
+0.08136919908405131 0.2259414225941487 0.08136919908405131 0.2259414225941487 0.11788266844316846
+0.08475958237921978 0.22384937238494476 0.08475958237921978 0.22384937238494476 0.11429833060378192
+0.08136919908404884 0.23012552301255904 0.08136919908404884 0.23012552301255904 0.12037803233225051
+0.08814996567438788 0.2217573221757404 0.08814996567438788 0.22175732217574043 0.11071169562357373
+0.09154034896955533 0.21966527196653562 0.09154034896955533 0.2196652719665356 0.10718325288086396
+0.09493073226472161 0.2175732217573292 0.09493073226472161 0.2175732217573292 0.1037761567439055
+0.09832111555988693 0.2154811715481203 0.09832111555988693 0.21548117154812027 0.10055467057507529
+0.10171149885504731 0.21338912133890772 0.10171149885504731 0.21338912133890772 0.09758215473270744
+0.1051018821502012 0.2112970711296901 0.1051018821502012 0.21129707112969012 0.0949185796357207
+0.10849226544533985 0.20920502092047213 0.10849226544533985 0.20920502092047213 0.09261763740560004
+0.1118826487404631 0.2071129707112671 0.1118826487404631 0.2071129707112671 0.09072365662090005
+0.11527303203556376 0.20502092050209267 0.11527303203556376 0.20502092050209267 0.08926866726788892
+0.11866341533063461 0.20292887029294074 0.11866341533063461 0.20292887029294074 0.08827006494528024
+0.0508557494275341 0.25313807531380794 0.050855749427534104 0.25313807531380794 0.146472133600305
+0.054246132722703094 0.2510460251046028 0.05424613272270309 0.2510460251046028 0.14492002352848257
+0.057636516017872015 0.24895397489539747 0.057636516017872015 0.24895397489539747 0.14305992712301632
+0.06102689931304084 0.24686192468619192 0.06102689931304084 0.24686192468619192 0.14089600270922142
+0.06441728260820943 0.24476987447698625 0.06441728260820943 0.24476987447698625 0.13843951570383295
+0.06780766590337761 0.24267782426778062 0.06780766590337761 0.24267782426778065 0.13570868793198512
+0.07119804919854535 0.2405857740585755 0.07119804919854535 0.2405857740585755 0.1327285018833514
+0.033903832951689215 0.27196652719665293 0.033903832951689215 0.27196652719665293 0.15260229675295853
+0.03729421624685803 0.26987447698744793 0.03729421624685803 0.26987447698744793 0.15247674811428305
+0.040684599542026974 0.2635983263598331 0.040684599542026974 0.2635983263598331 0.15083275616261035
+0.044074982837195936 0.2615062761506281 0.044074982837195936 0.2615062761506281 0.15020886775198683
+0.040684599542026904 0.26778242677824304 0.040684599542026904 0.267782426778243 0.15213846656245536
+0.04746536613236493 0.2594142259414232 0.04746536613236493 0.2594142259414232 0.14931048300664593
+0.05085574942753394 0.2573221757322183 0.05085574942753394 0.25732217573221833 0.1481192075820266
+0.020342299771013643 0.28870292887029325 0.020342299771013646 0.2887029288702933 0.15392462849870978
+0.02373268306618259 0.2866108786610882 0.02373268306618259 0.2866108786610882 0.15420847159824724
+0.0271230663613515 0.28033472803347304 0.027123066361351502 0.280334728033473 0.1534577395516293
+0.027123066361351523 0.2845188284518832 0.027123066361351523 0.2845188284518832 0.15446678642989095
+0.030513449656520416 0.2782426778242679 0.030513449656520416 0.2782426778242679 0.1536467344773318
+0.0339038329516893 0.2761506276150629 0.0339038329516893 0.2761506276150629 0.1537095114963767
+0.006780766590337874 0.30543933054393335 0.006780766590337874 0.30543933054393335 0.1558340370156567
+0.0101711498855068 0.30334728033472835 0.010171149885506799 0.30334728033472835 0.15566793132367884
+0.013561533180675732 0.2970711297071133 0.013561533180675734 0.2970711297071133 0.15455308190442116
+0.013561533180675723 0.30125523012552335 0.013561533180675723 0.30125523012552335 0.1556579192640539
+0.016951916475844674 0.2949790794979083 0.016951916475844677 0.2949790794979083 0.1547075372438533
+0.020342299771013615 0.2928870292887033 0.02034229977101362 0.2928870292887033 0.1549364876249538
+0.14578645742102211 0.1820068561978194 0.14578645742102211 0.1820068561978194 0.0935995400834606
+0.19456066945603276 0.12544418192125087 0.19456066945603276 0.12544418192125087 0.1276721157065914
+0.19246861924682765 0.1288345652164198 0.19246861924682765 0.1288345652164198 0.12490326412956008
+0.19037656903762257 0.13222494851158872 0.19037656903762257 0.13222494851158872 0.12236306919474575
+0.18828451882841743 0.13561533180675767 0.18828451882841743 0.13561533180675767 0.120051513255697
+0.14917491284252887 0.1799111380756002 0.14917491284252885 0.1799111380756002 0.09546017271411412
+0.1525623064963838 0.17781194513448745 0.1525623064963838 0.17781194513448748 0.09738310953829532
+0.18619246861921232 0.1390057151019266 0.18619246861921232 0.1390057151019266 0.11796177673438334
+0.18410041841000724 0.14239609839709555 0.18410041841000724 0.14239609839709555 0.11608086678407785
+0.18200836820080213 0.1457864816922645 0.18200836820080213 0.1457864816922645 0.11439052192980752
+0.1559532708545434 0.17571092661909848 0.15595327085454344 0.17571092661909848 0.09933635830518571
+0.1799198224718617 0.14917882325074894 0.1799198224718617 0.14917882325074894 0.11286995610942542
+0.17783736695447927 0.15257293947606249 0.17783736695447927 0.15257293947606246 0.11149571978008925
+0.17576270499429805 0.15596870973640395 0.17576270499429805 0.15596870973640395 0.1102422422556268
+0.15934767670020736 0.17358543743764146 0.15934767670020736 0.17358543743764146 0.10128915379203164
+0.17368048200952954 0.1593651999125187 0.17368048200952954 0.1593651999125187 0.10907458560527016
+0.16277987672076108 0.17143255897422024 0.16277987672076108 0.17143255897422024 0.10323941633932264
+0.17161973740864958 0.1628002433029353 0.17161973740864958 0.1628002433029353 0.10798568704964749
+0.16649493537475402 0.16925367172779401 0.16649493537475402 0.169253671727794 0.10532066804409476
+0.1695426055569549 0.1665070035232475 0.1695426055569549 0.16650700352324746 0.10695443591368273
+0.16939588009183262 0.16935102824354678 0.16939588009183262 0.16935102824354678 0.1069038595308678
+0.21548117154808388 0.09832111555989931 0.21548117154808386 0.09832111555989931 0.15691735864761533
+0.21338912133887877 0.10171149885506825 0.21338912133887877 0.10171149885506825 0.1531447474948908
+0.21129707112967366 0.10510188215023719 0.2112970711296737 0.10510188215023719 0.14938633768862572
+0.20920502092046855 0.10849226544540613 0.20920502092046855 0.10849226544540613 0.14568378672502813
+0.20711297071126347 0.11188264874057507 0.20711297071126347 0.11188264874057507 0.1420763589581158
+0.20502092050205836 0.11527303203574402 0.20502092050205836 0.11527303203574402 0.1385998997210471
+0.20292887029285325 0.11866341533091296 0.20292887029285325 0.11866341533091296 0.13528583831094432
+0.20083682008364812 0.1220537986260819 0.20083682008364812 0.1220537986260819 0.13216026910990827
+0.198744769874443 0.12544418192125084 0.198744769874443 0.12544418192125084 0.1292431697874672
+0.24686192468616053 0.06102689931304095 0.24686192468616053 0.06102689931304095 0.18990420102373903
+0.24476987447695542 0.06441728260820989 0.24476987447695545 0.06441728260820989 0.18844431611335824
+0.2426778242677503 0.06780766590337883 0.2426778242677503 0.06780766590337883 0.1866486284097062
+0.2405857740585452 0.07119804919854777 0.24058577405854517 0.07119804919854777 0.18452845714274146
+0.23430962343092987 0.07458843249371672 0.23430962343092987 0.07458843249371672 0.18108535308907706
+0.23221757322172476 0.07797881578888566 0.23221757322172473 0.07797881578888566 0.17837953900418843
+0.23012552301251965 0.0813691990840546 0.23012552301251965 0.0813691990840546 0.17541446879309688
+0.22803347280331454 0.08475958237922354 0.22803347280331457 0.08475958237922354 0.17222275720612615
+0.22594142259410943 0.08814996567439248 0.22594142259410943 0.08814996567439248 0.1688407484568575
+0.22384937238490435 0.09154034896956142 0.22384937238490435 0.09154034896956142 0.16530776617844012
+0.22175732217569918 0.09493073226473037 0.22175732217569918 0.09493073226473037 0.16166531642982615
+0.21966527196649407 0.09832111555989931 0.21966527196649407 0.09832111555989931 0.15795624083077883
+0.2384937238493401 0.07458843249371672 0.2384937238493401 0.07458843249371672 0.18210145303462846
+0.2677824267782116 0.0406845995420273 0.2677824267782116 0.0406845995420273 0.1948098429833827
+0.2656903765690065 0.04407498283719624 0.26569037656900646 0.04407498283719624 0.1951370662868056
+0.2635983263598014 0.04746536613236518 0.2635983263598014 0.04746536613236518 0.1952208132319828
+0.25523012552298097 0.054246132722703067 0.25523012552298097 0.054246132722703067 0.19307825150448055
+0.2615062761505963 0.050855749427534125 0.26150627615059635 0.050855749427534125 0.19502628374710398
+0.2594142259413912 0.054246132722703067 0.2594142259413912 0.054246132722703067 0.1945266741476643
+0.25313807531377586 0.05763651601787201 0.2531380753137759 0.05763651601787201 0.19227306989743112
+0.25104602510457075 0.06102689931304095 0.25104602510457075 0.06102689931304095 0.1911324294895492
+0.29916317991628827 0.01695191647584471 0.2991631799162882 0.01695191647584471 0.19775114045288944
+0.29707112970708316 0.02034229977101365 0.29707112970708316 0.02034229977101365 0.1982528081835214
+0.29497907949787805 0.02373268306618259 0.2949790794978781 0.02373268306618259 0.19891038534642017
+0.29288702928867294 0.027123066361351533 0.29288702928867294 0.027123066361351533 0.19966599975690588
+0.29079497907946783 0.030513449656520475 0.2907949790794678 0.030513449656520475 0.20045834170871335
+0.2887029288702627 0.03390383295168942 0.2887029288702627 0.03390383295168942 0.2012253716145178
+0.27405857740582695 0.03729421624685836 0.2740585774058269 0.03729421624685836 0.19598753655496337
+0.2782426778242372 0.03729421624685836 0.27824267782423723 0.03729421624685836 0.19783435230478683
+0.2824267782426474 0.03729421624685836 0.28242677824264734 0.03729421624685836 0.1998123816094307
+0.2866108786610576 0.03729421624685836 0.28661087866105767 0.03729421624685836 0.20190674613778667
+0.27196652719662184 0.0406845995420273 0.27196652719662184 0.0406845995420273 0.19649947521156827
+0.3054393305439036 0.013561533180675767 0.3054393305439036 0.013561533180675767 0.1994761356469759
+0.3033472803346985 0.01695191647584471 0.30334728033469854 0.01695191647584471 0.19978644443073987
+0.3096234309623138 0.013561533180675767 0.3096234309623138 0.013561533180675767 0.20147647384311698
+0.3305439330543649 0.006780766590337883 0.3305439330543649 0.006780766590337883 0.20847887603002888
+0.31380753138072404 0.013561533180675767 0.31380753138072404 0.013561533180675767 0.20343450473901284
+0.31799163179913426 0.013561533180675767 0.31799163179913426 0.013561533180675767 0.20532650181966194
+0.3242677824267496 0.010171149885506825 0.32426778242674953 0.010171149885506825 0.20689112123716438
+0.3284518828451598 0.010171149885506825 0.32845188284515986 0.010171149885506825 0.20851102499347843
+0.3221757322175445 0.013561533180675767 0.3221757322175445 0.013561533180675767 0.20712897182197507
+0.12205379862576055 0.20083682008384152 0.12205379862576056 0.20083682008384152 0.08772932367091668
+0.1254441819208518 0.1987447698747594 0.1254441819208518 0.1987447698747594 0.08763206915165568
+0.1288345652159932 0.1966527196656612 0.1288345652159932 0.1966527196656612 0.08794957094042187
+0.13222494851106634 0.1945606694565415 0.13222494851106634 0.1945606694565415 0.0886414248267745
+0.13561533180608676 0.1924686192474004 0.13561533180608676 0.1924686192474004 0.0896589797607782
+0.13900571510113907 0.19037656903806013 0.13900571510113904 0.19037656903806013 0.09094898538598993
+0.14239609839526515 0.18828451882933428 0.14239609839526515 0.18828451882933428 0.09245699886056523
+0.14578660343202063 0.1861921969295628 0.14578660343202063 0.1861921969295628 0.0941302833024613
+0.07458843249371243 0.23849372384937131 0.07458843249371243 0.23849372384937131 0.1295304629761933
+0.07797881578887862 0.23640167364016776 0.07797881578887862 0.23640167364016776 0.1261523152771957
+0.08136919908404654 0.23430962343096604 0.08136919908404654 0.23430962343096604 0.12263769673339943
+0.08475958237921742 0.22803347280335637 0.08475958237921742 0.22803347280335637 0.11678107403127229
+0.08814996567438614 0.2259414225941533 0.08814996567438614 0.2259414225941533 0.11316569340316306
+0.08475958237921355 0.23221757322176498 0.08475958237921355 0.23221757322176498 0.11903570830490527
+0.09154034896955345 0.22384937238495026 0.09154034896955345 0.22384937238495026 0.10959130146483821
+0.09493073226471993 0.22175732217574703 0.09493073226471993 0.22175732217574703 0.10612025388320663
+0.09832111555988236 0.21966527196654514 0.09832111555988236 0.21966527196654514 0.10281641663810075
+0.10171149885504725 0.2175732217573382 0.10171149885504725 0.2175732217573382 0.09974330002063302
+0.10510188215020944 0.2154811715481284 0.10510188215020944 0.2154811715481284 0.096961727249976
+0.10849226544536343 0.2133891213389111 0.10849226544536343 0.2133891213389111 0.09452708232712538
+0.1118826487405047 0.2112970711296842 0.1118826487405047 0.2112970711296842 0.09248629972577803
+0.11527303203562082 0.20920502092044901 0.11527303203562082 0.20920502092044901 0.09087489688759796
+0.11866341533070796 0.20711297071124032 0.11866341533070797 0.20711297071124032 0.08971446544036345
+0.12205379862575098 0.20502092050208867 0.12205379862575098 0.20502092050208867 0.08901107012057285
+0.05424613272270298 0.25523012552301333 0.054246132722702976 0.25523012552301333 0.14662368701896725
+0.057636516017872015 0.25313807531380816 0.057636516017872015 0.25313807531380816 0.14481968996117775
+0.06102689931304107 0.2510460251046028 0.06102689931304107 0.2510460251046028 0.1427100982915086
+0.06441728260821007 0.24895397489539714 0.06441728260821007 0.24895397489539714 0.14030482519537057
+0.06780766590337889 0.24686192468619128 0.06780766590337889 0.24686192468619125 0.1376206769303464
+0.07119804919854722 0.24476987447698526 0.07119804919854722 0.24476987447698526 0.13468116858064683
+0.07458843249371483 0.2426778242677793 0.07458843249371483 0.2426778242677793 0.13151629801632594
+0.03729421624685815 0.2740585774058579 0.03729421624685814 0.2740585774058579 0.15360309657882956
+0.04068459954202694 0.27196652719665293 0.04068459954202694 0.27196652719665293 0.15328928062668337
+0.04407498283719574 0.26569037656903816 0.04407498283719574 0.26569037656903816 0.15155521468066782
+0.047465366132364684 0.2635983263598333 0.047465366132364684 0.2635983263598333 0.1507010691182047
+0.04407498283719573 0.269874476987448 0.044074982837195735 0.269874476987448 0.152735418089722
+0.05085574942753366 0.2615062761506285 0.05085574942753366 0.26150627615062844 0.14955679427794408
+0.054246132722702685 0.2594142259414236 0.054246132722702685 0.2594142259414236 0.14811006425833026
+0.02373268306618255 0.2907949790794983 0.02373268306618255 0.2907949790794983 0.15519308208716598
+0.027123066361351502 0.2887029288702933 0.027123066361351502 0.2887029288702933 0.15542903382104759
+0.030513449656520447 0.2824267782426781 0.030513449656520447 0.2824267782426781 0.15465102305784265
+0.030513449656520454 0.28661087866108825 0.03051344965652045 0.2866108786610883 0.1555964102886828
+0.03390383295168936 0.280334728033473 0.03390383295168936 0.280334728033473 0.15471480274880542
+0.03729421624685828 0.27824267782426787 0.03729421624685828 0.27824267782426787 0.15461523954374676
+0.00678076659033788 0.3096234309623434 0.006780766590337881 0.3096234309623434 0.1571020636778078
+0.006780766590337883 0.3138075313807535 0.006780766590337883 0.3138075313807535 0.15845934346683307
+0.010171149885506813 0.30753138075313835 0.010171149885506813 0.30753138075313835 0.1568804700270134
+0.013561533180675737 0.30543933054393335 0.013561533180675737 0.30543933054393335 0.15681480131482342
+0.016951916475844642 0.29916317991631836 0.016951916475844642 0.29916317991631836 0.155767367628904
+0.016951916475844635 0.30334728033472835 0.016951916475844635 0.30334728033472835 0.15686995341540144
+0.020342299771013577 0.29707112970711336 0.020342299771013577 0.29707112970711336 0.15595413215414147
+0.02373268306618251 0.29497907949790836 0.02373268306618251 0.29497907949790836 0.1561724894535361
+0.006780766590337883 0.3179916317991636 0.006780766590337883 0.3179916317991636 0.1599217796544892
+0.14917620211080992 0.18409868256855955 0.14917620211080992 0.18409868256855955 0.09591920253868892
+0.19665271966523787 0.12883456521641978 0.19665271966523787 0.12883456521641978 0.1265478197644534
+0.19456066945603276 0.13222494851158872 0.19456066945603276 0.13222494851158872 0.12408047821617206
+0.19246861924682765 0.13561533180675767 0.19246861924682765 0.13561533180675767 0.121840367324231
+0.19037656903762257 0.1390057151019266 0.19037656903762257 0.1390057151019266 0.11981998375690361
+0.1525625722363731 0.18200056263135952 0.15256257223637307 0.18200056263135952 0.09777850006968436
+0.15594487239448315 0.1798946357289921 0.15594487239448315 0.1798946357289921 0.09967029304300391
+0.18828451882841743 0.14239609839709555 0.18828451882841743 0.14239609839709555 0.11800573230779361
+0.18619246861921232 0.1457864816922645 0.18619246861921232 0.1457864816922645 0.11637884295019607
+0.18410041841000724 0.14917686498743343 0.18410041841000724 0.14917686498743343 0.11491651604624066
+0.15932221872896865 0.17777506745038787 0.15932221872896865 0.17777506745038787 0.10156329024944018
+0.1820127307048761 0.15256887558300544 0.1820127307048761 0.15256887558300544 0.11359515176917152
+0.1799292776414375 0.15596078352581028 0.1799292776414375 0.1559607835258103 0.11238808826461401
+0.1778520383042866 0.1593488079081048 0.1778520383042866 0.1593488079081048 0.11126891575881599
+0.1626850418842016 0.17562331517024155 0.1626850418842016 0.17562331517024155 0.10342776210163525
+0.17584373409102835 0.16273822338634994 0.17584373409102835 0.16273822338634994 0.11024420012294013
+0.16598594432644406 0.17339317401613644 0.16598594432644406 0.17339317401613644 0.10521882159137454
+0.17389679355940424 0.1661483997466859 0.17389679355940424 0.1661483997466859 0.10929128313556337
+0.16930399682354746 0.1718922501090847 0.16930399682354746 0.1718922501090847 0.10698674059804801
+0.17215702233599606 0.1695040789752622 0.17215702233599606 0.1695040789752622 0.10845614461461972
+0.21757322175728902 0.10171149885506825 0.21757322175728902 0.10171149885506825 0.15422381823966338
+0.2154811715480839 0.10510188215023719 0.2154811715480839 0.10510188215023719 0.1505108167146788
+0.21338912133887877 0.10849226544540613 0.21338912133887877 0.10849226544540613 0.1468585031905831
+0.21129707112967364 0.11188264874057507 0.21129707112967364 0.11188264874057507 0.14330562651532452
+0.20920502092046855 0.11527303203574402 0.20920502092046855 0.11527303203574402 0.1398873999482175
+0.20711297071126347 0.11866341533091296 0.20711297071126347 0.11866341533091296 0.13663452099422288
+0.20502092050205836 0.1220537986260819 0.20502092050205836 0.1220537986260819 0.1335722778176758
+0.20292887029285325 0.12544418192125084 0.20292887029285325 0.12544418192125084 0.13071979999907302
+0.20083682008364812 0.12883456521641978 0.20083682008364812 0.12883456521641978 0.12808951427861007
+0.24895397489536564 0.06441728260820989 0.2489539748953656 0.06441728260820989 0.18965356433816363
+0.24686192468616053 0.06780766590337883 0.24686192468616053 0.06780766590337883 0.18784109886633857
+0.24476987447695542 0.07119804919854777 0.24476987447695545 0.07119804919854777 0.185706588269363
+0.2426778242677503 0.07458843249371672 0.2426778242677503 0.07458843249371672 0.18326798027657445
+0.23640167364013498 0.07797881578888566 0.236401673640135 0.07797881578888566 0.17939101220413134
+0.23430962343092987 0.0813691990840546 0.23430962343092987 0.0813691990840546 0.17642563889197585
+0.23221757322172476 0.08475958237922354 0.23221757322172473 0.08475958237922354 0.1732382619630712
+0.23012552301251965 0.08814996567439248 0.23012552301251965 0.08814996567439248 0.16986550704299883
+0.22803347280331454 0.09154034896956142 0.22803347280331457 0.09154034896956142 0.16634692385270908
+0.2259414225941094 0.09493073226473037 0.2259414225941094 0.09493073226473037 0.16272416698143422
+0.2238493723849043 0.09832111555989931 0.2238493723849043 0.09832111555989931 0.15904012825660027
+0.22175732217569924 0.10171149885506825 0.22175732217569924 0.10171149885506825 0.15533802039412056
+0.2405857740585452 0.07797881578888566 0.24058577405854517 0.07797881578888566 0.18054901250681873
+0.26987447698741673 0.04407498283719624 0.2698744769874168 0.04407498283719624 0.19681224099995834
+0.2677824267782116 0.04746536613236518 0.2677824267782116 0.04746536613236518 0.19688304809073684
+0.2656903765690065 0.050855749427534125 0.26569037656900646 0.050855749427534125 0.19667672066069333
+0.2573221757321861 0.05763651601787201 0.257322175732186 0.05763651601787201 0.19370331832926138
+0.2635983263598014 0.054246132722703067 0.2635983263598014 0.054246132722703067 0.19616612263089783
+0.2615062761505963 0.05763651601787201 0.26150627615059635 0.05763651601787201 0.19533232758274363
+0.25523012552298097 0.06102689931304095 0.25523012552298097 0.06102689931304095 0.1925456240025725
+0.25313807531377586 0.06441728260820989 0.2531380753137759 0.06441728260820989 0.1910508439737338
+0.3012552301254934 0.02034229977101365 0.3012552301254934 0.02034229977101365 0.2003059470665525
+0.29916317991628827 0.02373268306618259 0.2991631799162882 0.02373268306618259 0.20098405763174984
+0.29707112970708316 0.027123066361351533 0.29707112970708316 0.027123066361351533 0.20176356616034877
+0.29497907949787805 0.030513449656520475 0.2949790794978781 0.030513449656520475 0.20258349031994963
+0.29288702928867294 0.03390383295168942 0.29288702928867294 0.03390383295168942 0.20338180778936857
+0.29079497907946783 0.03729421624685836 0.2907949790794678 0.03729421624685836 0.2040979255655673
+0.27615062761503206 0.0406845995420273 0.27615062761503206 0.0406845995420273 0.1983417571259987
+0.2803347280334423 0.0406845995420273 0.2803347280334423 0.0406845995420273 0.20032852562791534
+0.2845188284518525 0.0406845995420273 0.2845188284518525 0.0406845995420273 0.202445879703284
+0.2887029288702627 0.0406845995420273 0.2887029288702627 0.0406845995420273 0.20467479610102846
+0.27405857740582695 0.04407498283719624 0.2740585774058269 0.04407498283719624 0.19865180506315808
+0.3075313807531087 0.01695191647584471 0.30753138075310865 0.01695191647584471 0.20181506651981643
+0.3054393305439036 0.02034229977101365 0.3054393305439036 0.02034229977101365 0.20236483037384714
+0.3117154811715189 0.01695191647584471 0.311715481171519 0.01695191647584471 0.20381317218044412
+0.33472803347277513 0.006780766590337883 0.33472803347277513 0.006780766590337883 0.209876511258023
+0.33263598326357 0.010171149885506825 0.33263598326356997 0.010171149885506825 0.20998820307263885
+0.31589958158992915 0.01695191647584471 0.3158995815899291 0.01695191647584471 0.20575644846846355
+0.32008368200833937 0.01695191647584471 0.3200836820083394 0.01695191647584471 0.20762062985115362
+0.3263598326359547 0.013561533180675767 0.3263598326359547 0.013561533180675767 0.20881908440828148
+0.3305439330543649 0.013561533180675767 0.3305439330543649 0.013561533180675767 0.2103750412277313
+0.3242677824267496 0.01695191647584471 0.32426778242674953 0.01695191647584471 0.20938196946096135
+0.12544418192073387 0.20292887029298765 0.1254441819207339 0.20292887029298765 0.0887549107174746
+0.12883456521582012 0.20083682008398243 0.12883456521582012 0.20083682008398243 0.08892138479645155
+0.13222494851083952 0.19874476987500309 0.13222494851083952 0.19874476987500309 0.0894734111241577
+0.1356153318059465 0.19665271966598696 0.1356153318059465 0.19665271966598696 0.09036463392065476
+0.13900571510091034 0.19456066945692396 0.13900571510091034 0.19456066945692396 0.09154300711383447
+0.14239609839566292 0.19246861924784428 0.14239609839566292 0.19246861924784428 0.09295427838944671
+0.14578650311390623 0.19037653375035948 0.14578650311390626 0.19037653375035948 0.09454502727041163
+0.1491765498519817 0.18828401364346423 0.1491765498519817 0.18828401364346423 0.0962647839473656
+0.0779788157888816 0.24058577405857406 0.0779788157888816 0.24058577405857404 0.1281622751985366
+0.08136919908404722 0.2384937238493706 0.08136919908404722 0.2384937238493706 0.1246611953217986
+0.08475958237921122 0.23640167364016815 0.08475958237921122 0.23640167364016815 0.12106063355719378
+0.08814996567438227 0.23012552301256395 0.08814996567438227 0.23012552301256398 0.1154003573224784
+0.09154034896955016 0.2280334728033628 0.09154034896955016 0.2280334728033628 0.11178981970389316
+0.08814996567437827 0.23430962343096884 0.08814996567437827 0.2343096234309688 0.11741312614617362
+0.09493073226471795 0.22594142259416125 0.09493073226471795 0.22594142259416125 0.10826545076863296
+0.09832111555988261 0.22384937238496008 0.09832111555988261 0.22384937238496008 0.10489046528105674
+0.10171149885504707 0.22175732217575816 0.10171149885504706 0.2217573221757582 0.10172821224310165
+0.10510188215020476 0.21966527196656052 0.10510188215020476 0.21966527196656052 0.09883999978327367
+0.10849226544536067 0.21757322175735708 0.10849226544536066 0.21757322175735708 0.09628249084682726
+0.11188264874051752 0.21548117154814614 0.11188264874051752 0.21548117154814614 0.09410479486988288
+0.1152730320356612 0.21338912133891394 0.1152730320356612 0.21338912133891394 0.09234551152824262
+0.11866341533078713 0.21129707112965915 0.11866341533078713 0.21129707112965915 0.09103010438224664
+0.12205379862586017 0.20920502092039747 0.12205379862586017 0.20920502092039747 0.09016904108091628
+0.12544418192087367 0.20711297071119014 0.12544418192087367 0.20711297071119014 0.08975708319375321
+0.05763651601787175 0.25732217573221866 0.05763651601787175 0.25732217573221866 0.14635556321664112
+0.06102689931304087 0.25523012552301366 0.06102689931304086 0.25523012552301366 0.14429499015998418
+0.06441728260821004 0.25313807531380833 0.06441728260821004 0.25313807531380833 0.14193698942050284
+0.06780766590337925 0.2510460251046027 0.06780766590337926 0.2510460251046027 0.13929702306355665
+0.07119804919854834 0.2489539748953967 0.07119804919854834 0.2489539748953967 0.1363971962260679
+0.07458843249371704 0.24686192468619036 0.07458843249371704 0.24686192468619036 0.1332660406571222
+0.07797881578888495 0.24476987447698362 0.07797881578888495 0.2447698744769836 0.12993825512821736
+0.040684599542027106 0.27615062761506287 0.040684599542027106 0.27615062761506287 0.15431400413951588
+0.04407498283719589 0.2740585774058579 0.04407498283719589 0.2740585774058579 0.15377814398877054
+0.047465366132364566 0.26778242677824315 0.047465366132364566 0.26778242677824315 0.1519150073636469
+0.050855749427533375 0.2656903765690384 0.05085574942753337 0.2656903765690384 0.15080808491589337
+0.04746536613236463 0.27196652719665293 0.04746536613236463 0.27196652719665293 0.15298068485430452
+0.054246132722702324 0.26359832635983366 0.054246132722702324 0.26359832635983366 0.14940146535779433
+0.057636516017871293 0.261506276150629 0.057636516017871293 0.261506276150629 0.1476888573082754
+0.02712306636135145 0.29288702928870336 0.02712306636135145 0.29288702928870336 0.15637504770286262
+0.03051344965652039 0.2907949790794983 0.03051344965652039 0.2907949790794983 0.1565145320950758
+0.033903832951689396 0.2845188284518832 0.033903832951689396 0.2845188284518832 0.1556492143134484
+0.03390383295168937 0.2887029288702933 0.03390383295168937 0.2887029288702933 0.15654537368716429
+0.037294216246858344 0.2824267782426781 0.03729421624685835 0.2824267782426781 0.15554472076606388
+0.04068459954202724 0.280334728033473 0.04068459954202724 0.280334728033473 0.15524456026996328
+0.010171149885506823 0.3117154811715484 0.010171149885506823 0.3117154811715484 0.15817496260373717
+0.010171149885506825 0.3158995815899585 0.010171149885506825 0.3158995815899585 0.15956924090019228
+0.013561533180675767 0.3096234309623434 0.013561533180675767 0.3096234309623434 0.1580462309225935
+0.016951916475844663 0.30753138075313835 0.016951916475844663 0.30753138075313835 0.15803958295587528
+0.02034229977101355 0.30125523012552335 0.02034229977101355 0.30125523012552335 0.15700513755582238
+0.020342299771013553 0.30543933054393335 0.020342299771013553 0.30543933054393335 0.1581155920643114
+0.023732683066182463 0.29916317991631836 0.023732683066182463 0.29916317991631836 0.15717577465592478
+0.027123066361351374 0.29707112970711336 0.02712306636135137 0.29707112970711336 0.15733538670193545
+0.006780766590337883 0.3221757322175737 0.006780766590337883 0.32217573221757373 0.1615017254915763
+0.010171149885506825 0.3200836820083686 0.010171149885506825 0.3200836820083686 0.16107771569613608
+0.006780766590337883 0.3263598326359837 0.006780766590337883 0.3263598326359837 0.16320766916361704
+0.15256402081779666 0.1861889336733136 0.15256402081779666 0.1861889336733136 0.09806684208261408
+0.198744769874443 0.13222494851158872 0.198744769874443 0.13222494851158872 0.1256868607369113
+0.19665271966523787 0.13561533180675767 0.19665271966523787 0.13561533180675767 0.12351031041194917
+0.19456066945603276 0.1390057151019266 0.19456066945603276 0.1390057151019266 0.12155170246019663
+0.19246861924682765 0.14239609839709555 0.19246861924682765 0.14239609839709555 0.11979689068857759
+0.15594550246879452 0.18408706418704648 0.15594550246879454 0.18408706418704648 0.09990981092597055
+0.15931809992389417 0.18197453457786117 0.15931809992389415 0.18197453457786117 0.10175944622251763
+0.19037656903762257 0.1457864816922645 0.19037656903762257 0.1457864816922645 0.11822666032668454
+0.18828451882841743 0.14917686498743343 0.18828451882841743 0.14917686498743343 0.1168178529815991
+0.18619246861921232 0.15256724828260237 0.18619246861921232 0.15256724828260237 0.1155446230638865
+0.16267593968850885 0.17984885336158074 0.16267593968850888 0.17984885336158074 0.10358689058187774
+0.18410364514897223 0.1559583817859406 0.18410364514897223 0.1559583817859406 0.1143811664959034
+0.1820104064806778 0.15934773687351378 0.1820104064806778 0.15934773687351378 0.11329689833758648
+0.17997584619292759 0.16272256248948933 0.17997584619292759 0.16272256248948933 0.1122945568876499
+0.16599586933503913 0.17770092829826228 0.16599586933503915 0.17770092829826226 0.10536015643661854
+0.17805209239188477 0.1660507744337071 0.17805209239188477 0.1660507744337071 0.11137606128922196
+0.16931300476279906 0.17578214503250897 0.16931300476279906 0.17578214503250897 0.10709397258011956
+0.1763083825222113 0.16927918316759846 0.1763083825222113 0.16927918316759846 0.11054759177014208
+0.1724848579570929 0.17388315158809958 0.1724848579570929 0.1738831515880996 0.10870023501169966
+0.1752499723556878 0.17223186016691966 0.1752499723556878 0.17223186016691966 0.1100295600821106
+0.21966527196649413 0.10510188215023719 0.21966527196649413 0.10510188215023719 0.15166041513808157
+0.217573221757289 0.10849226544540613 0.217573221757289 0.10849226544540613 0.14804824494307403
+0.21548117154808388 0.11188264874057507 0.21548117154808386 0.11188264874057507 0.14453978548857285
+0.21338912133887877 0.11527303203574402 0.21338912133887877 0.11527303203574402 0.14116964656435596
+0.21129707112967364 0.11866341533091296 0.21129707112967364 0.11866341533091296 0.13796781010060213
+0.20920502092046855 0.1220537986260819 0.20920502092046855 0.1220537986260819 0.13495876455903244
+0.20711297071126347 0.12544418192125084 0.20711297071126347 0.12544418192125084 0.13216079214070567
+0.20502092050205836 0.12883456521641978 0.20502092050205836 0.12883456521641978 0.12958546667074747
+0.20292887029285325 0.13222494851158872 0.20292887029285325 0.13222494851158872 0.1272374134467897
+0.25104602510457075 0.06780766590337883 0.25104602510457075 0.06780766590337883 0.18922371575414332
+0.24895397489536564 0.07119804919854777 0.2489539748953656 0.07119804919854777 0.18707599611482148
+0.24686192468616053 0.07458843249371672 0.24686192468616053 0.07458843249371672 0.18462591106271228
+0.24476987447695542 0.07797881578888566 0.24476987447695545 0.07797881578888566 0.18189753631339942
+0.2384937238493401 0.0813691990840546 0.2384937238493401 0.0813691990840546 0.17757855504346368
+0.23640167364013498 0.08475958237922354 0.236401673640135 0.08475958237922354 0.1743899040134594
+0.23430962343092987 0.08814996567439248 0.23430962343092987 0.08814996567439248 0.17102002889091053
+0.23221757322172473 0.09154034896956142 0.23221757322172473 0.09154034896956142 0.16750877403487974
+0.23012552301251962 0.09493073226473037 0.23012552301251962 0.09493073226473037 0.1638980137849654
+0.2280334728033145 0.09832111555989931 0.2280334728033145 0.09832111555989931 0.16023076054786436
+0.22594142259410943 0.10171149885506825 0.22594142259410943 0.10171149885506825 0.1565502270605262
+0.22384937238490435 0.10510188215023719 0.22384937238490435 0.10510188215023719 0.15289884776833487
+0.2426778242677503 0.0813691990840546 0.2426778242677503 0.0813691990840546 0.17892011872229627
+0.27196652719662184 0.04746536613236518 0.27196652719662184 0.04746536613236518 0.19872123014540935
+0.26987447698741673 0.050855749427534125 0.2698744769874168 0.050855749427534125 0.19851437567905503
+0.2677824267782116 0.054246132722703067 0.2677824267782116 0.054246132722703067 0.1980036648388794
+0.2594142259413912 0.06102689931304095 0.2594142259413912 0.06102689931304095 0.19416457465108497
+0.2656903765690065 0.05763651601787201 0.26569037656900646 0.05763651601787201 0.1971698024129347
+0.2635983263598014 0.06102689931304095 0.2635983263598014 0.06102689931304095 0.1960017532913507
+0.2573221757321861 0.06441728260820989 0.257322175732186 0.06441728260820989 0.1926600507772714
+0.25523012552298097 0.06780766590337883 0.25523012552298097 0.06780766590337883 0.1908235332320363
+0.3033472803346985 0.02373268306618259 0.30334728033469854 0.02373268306618259 0.20307622127035616
+0.3012552301254934 0.027123066361351533 0.3012552301254934 0.027123066361351533 0.2038927338402594
+0.29916317991628827 0.030513449656520475 0.2991631799162882 0.030513449656520475 0.20475374813568822
+0.29707112970708316 0.03390383295168942 0.29707112970708316 0.03390383295168942 0.20559728251728762
+0.29497907949787805 0.03729421624685836 0.2949790794978781 0.03729421624685836 0.20636250292511119
+0.29288702928867294 0.0406845995420273 0.29288702928867294 0.0406845995420273 0.20699189158082668
+0.2782426778242372 0.04407498283719624 0.27824267782423723 0.04407498283719624 0.20064919061253458
+0.2824267782426474 0.04407498283719624 0.28242677824264734 0.04407498283719624 0.2027916062657613
+0.2866108786610576 0.04407498283719624 0.28661087866105767 0.04407498283719624 0.20506063867442428
+0.29079497907946783 0.04407498283719624 0.2907949790794678 0.04407498283719624 0.20743302702889863
+0.27615062761503206 0.04746536613236518 0.27615062761503206 0.04746536613236518 0.20073054067151555
+0.3096234309623138 0.02034229977101365 0.3096234309623138 0.02034229977101365 0.20440522259218705
+0.3075313807531087 0.02373268306618259 0.30753138075310865 0.02373268306618259 0.20516220576228514
+0.31380753138072404 0.02034229977101365 0.31380753138072404 0.02034229977101365 0.20640216870191883
+0.33891213389118535 0.006780766590337883 0.33891213389118535 0.006780766590337883 0.21110427464944334
+0.33682008368198024 0.010171149885506825 0.3368200836819803 0.010171149885506825 0.211303211423317
+0.33472803347277513 0.013561533180675767 0.33472803347277513 0.013561533180675767 0.2117763822202958
+0.31799163179913426 0.02034229977101365 0.31799163179913426 0.02034229977101365 0.20833056442903541
+0.3221757322175445 0.02034229977101365 0.3221757322175445 0.02034229977101365 0.21016567275557466
+0.3284518828451598 0.01695191647584471 0.32845188284515986 0.01695191647584471 0.2110176485499888
+0.33263598326357 0.01695191647584471 0.33263598326356997 0.01695191647584471 0.21250612066545352
+0.3263598326359547 0.02034229977101365 0.3263598326359547 0.02034229977101365 0.21188357738443053
+0.12883456521580014 0.20502092050209372 0.12883456521580014 0.20502092050209372 0.08977392996341392
+0.1322249485106141 0.2029288702930918 0.1322249485106141 0.2029288702930918 0.09018616087977266
+0.135615331805617 0.20083682008427076 0.135615331805617 0.20083682008427076 0.09095017026408504
+0.13900571510049553 0.19874476987547982 0.13900571510049553 0.19874476987547982 0.0920156301437597
+0.14239609839548725 0.1966527196666429 0.14239609839548725 0.1966527196666429 0.0933289962457635
+0.1457864816900983 0.19456066945771097 0.1457864816900983 0.19456066945771097 0.09483666645832785
+0.14917670396045746 0.1924684184238442 0.14917670396045746 0.1924684184238442 0.09648745361292711
+0.15256529633303392 0.1903747485695372 0.15256529633303392 0.1903747485695372 0.09823383764709204
+0.08136919908405153 0.24267782426777693 0.08136919908405153 0.24267782426777693 0.12645439338934386
+0.08475958237921659 0.2405857740585716 0.08475958237921659 0.2405857740585716 0.12286048047806941
+0.08814996567437951 0.2384937238493692 0.08814996567437951 0.2384937238493692 0.1192075261745376
+0.09154034896954372 0.23221757322177053 0.09154034896954372 0.23221757322177053 0.11377548780680179
+0.09493073226471194 0.2301255230125724 0.09493073226471194 0.2301255230125724 0.110207900750385
+0.09154034896953937 0.23640167364016895 0.09154034896953937 0.23640167364016892 0.11555089055513311
+0.09832111555987821 0.2280334728033742 0.09832111555987821 0.2280334728033742 0.10677270018891606
+0.10171149885504387 0.22594142259417538 0.10171149885504387 0.22594142259417538 0.10353278210862304
+0.10510188215020255 0.22384937238497815 0.10510188215020255 0.22384937238497815 0.10054958117010675
+0.10849226544535767 0.2217573221757814 0.10849226544535769 0.2217573221757814 0.09788062037406688
+0.11188264874050763 0.21966527196659189 0.11188264874050761 0.21966527196659189 0.09557672532759971
+0.11527303203565059 0.21757322175739038 0.11527303203565058 0.21757322175739038 0.09367911717157139
+0.11866341533080864 0.2154811715481609 0.11866341533080864 0.2154811715481609 0.09221672148180225
+0.12205379862593879 0.21338912133890073 0.12205379862593879 0.21338912133890073 0.09120410807124152
+0.12544418192102458 0.21129707112961307 0.12544418192102458 0.21129707112961307 0.09064045778329848
+0.1288345652160056 0.2092050209203139 0.1288345652160056 0.20920502092031387 0.09050981259991135
+0.0610268993130404 0.2594142259414241 0.0610268993130404 0.2594142259414241 0.1456708810712254
+0.06441728260820954 0.25732217573221927 0.06441728260820954 0.25732217573221927 0.1433550096440617
+0.06780766590337887 0.2552301255230141 0.06780766590337887 0.2552301255230141 0.14075544977118762
+0.07119804919854826 0.25313807531380866 0.07119804919854826 0.25313807531380866 0.1378929747213562
+0.07458843249371765 0.2510460251046028 0.07458843249371765 0.2510460251046028 0.13479471502831528
+0.07797881578888688 0.24895397489539614 0.07797881578888688 0.24895397489539614 0.1314939072378616
+0.08136919908405545 0.24686192468618876 0.08136919908405545 0.24686192468618876 0.12802959329165522
+0.04407498283719608 0.27824267782426787 0.04407498283719608 0.27824267782426787 0.15471556076010018
+0.04746536613236488 0.27615062761506276 0.04746536613236488 0.27615062761506276 0.15393036987436368
+0.05085574942753328 0.26987447698744804 0.050855749427533285 0.269874476987448 0.15190104432998475
+0.05424613272270207 0.2677824267782433 0.05424613272270207 0.2677824267782433 0.15052528875491292
+0.05085574942753356 0.2740585774058577 0.05085574942753356 0.2740585774058577 0.15286788722586728
+0.05763651601787084 0.26569037656903877 0.05763651601787084 0.26569037656903877 0.14884626305956894
+0.061026899313039805 0.26359832635983416 0.061026899313039805 0.2635983263598342 0.1468636196043495
+0.030513449656520322 0.29497907949790836 0.03051344965652032 0.29497907949790836 0.15743737904097513
+0.033903832951689285 0.29288702928870336 0.033903832951689285 0.29288702928870336 0.15743663859767207
+0.03729421624685833 0.2866108786610883 0.03729421624685833 0.2866108786610883 0.156425062214811
+0.037294216246858254 0.29079497907949836 0.037294216246858254 0.29079497907949836 0.157290904421029
+0.04068459954202728 0.2845188284518832 0.04068459954202728 0.2845188284518832 0.15611525046440614
+0.04407498283719623 0.28242677824267803 0.044074982837196235 0.282426778242678 0.15558261786512773
+0.013561533180675767 0.31380753138075346 0.013561533180675767 0.3138075313807534 0.15937200624983497
+0.013561533180675767 0.31799163179916357 0.013561533180675767 0.31799163179916357 0.160808640070816
+0.01695191647584469 0.3117154811715484 0.01695191647584469 0.3117154811715484 0.15929805431443453
+0.020342299771013594 0.30962343096234335 0.020342299771013594 0.30962343096234335 0.1593093206492089
+0.023732683066182453 0.30334728033472835 0.023732683066182453 0.30334728033472835 0.15823082827192006
+0.023732683066182484 0.30753138075313835 0.023732683066182484 0.30753138075313835 0.15936351995566175
+0.02712306636135135 0.30125523012552335 0.02712306636135135 0.30125523012552335 0.158339731788394
+0.030513449656520236 0.29916317991631847 0.030513449656520236 0.2991631799163184 0.15839639393015179
+0.006780766590337883 0.3305439330543937 0.006780766590337883 0.3305439330543937 0.16504406255946868
+0.010171149885506825 0.3242677824267787 0.010171149885506825 0.32426778242677873 0.16271098615726487
+0.013561533180675767 0.3221757322175737 0.013561533180675767 0.32217573221757373 0.1623688920938149
+0.010171149885506825 0.3284518828451887 0.010171149885506825 0.3284518828451887 0.16447559051499572
+0.1559490934515714 0.18827735008525281 0.1559490934515714 0.18827735008525281 0.10003306626656816
+0.20083682008364812 0.13561533180675767 0.20083682008364812 0.13561533180675767 0.12511436696301234
+0.198744769874443 0.1390057151019266 0.198744769874443 0.1390057151019266 0.12320753938689931
+0.19665271966523787 0.14239609839709555 0.19665271966523787 0.14239609839709555 0.12150228518860196
+0.19456066945603276 0.1457864816922645 0.19456066945603276 0.1457864816922645 0.11997902010464555
+0.15932450317719363 0.18617237071335047 0.15932450317719363 0.18617237071335047 0.10184867234773243
+0.16268936850450363 0.18406213422546794 0.16268936850450363 0.18406213422546794 0.10365185328271213
+0.19246861924682765 0.14917686498743343 0.19246861924682765 0.14917686498743343 0.11861433078616705
+0.19037656903762257 0.15256724828260237 0.19037656903762257 0.15256724828260237 0.11738219874892224
+0.18828451882841743 0.15595763157777132 0.18828451882841743 0.15595763157777132 0.1162552594180974
+0.166045039754446 0.1819571404472636 0.16604503975444598 0.1819571404472636 0.10542215452458951
+0.18619281179988573 0.1593479814274916 0.1861928117998857 0.1593479814274916 0.11520618827872207
+0.18410338972732837 0.16273712326859868 0.18410338972732834 0.16273712326859868 0.11420923717949437
+0.18211833852609127 0.1660747644257427 0.18211833852609127 0.16607476442574273 0.11328526592695883
+0.16939472957468063 0.1799023924907391 0.16939472957468063 0.1799023924907391 0.10714744142555699
+0.18025875618918133 0.1693421666533882 0.18025875618918133 0.1693421666533882 0.11242182278271236
+0.17271014660773717 0.17793345511723685 0.17271014660773717 0.17793345511723688 0.10880044217253997
+0.17842319641277984 0.17251424779029112 0.17842319641277984 0.17251424779029112 0.11155567058950633
+0.1763300535054164 0.17600310045662906 0.1763300535054164 0.1760031004566291 0.11056585946618282
+0.22175732217569924 0.10849226544540613 0.22175732217569924 0.10849226544540613 0.1493172702629992
+0.21966527196649413 0.11188264874057507 0.21966527196649413 0.11188264874057507 0.1458433359656971
+0.217573221757289 0.11527303203574402 0.217573221757289 0.11527303203574402 0.14251107922884712
+0.21548117154808388 0.11866341533091296 0.21548117154808386 0.11866341533091296 0.1393497846363538
+0.21338912133887877 0.1220537986260819 0.21338912133887877 0.1220537986260819 0.1363831516816648
+0.21129707112967364 0.12544418192125084 0.21129707112967364 0.12544418192125084 0.13362862183520455
+0.20920502092046855 0.12883456521641978 0.20920502092046855 0.12883456521641978 0.1310969228323113
+0.20711297071126347 0.13222494851158872 0.20711297071126347 0.13222494851158872 0.12879187698966008
+0.20502092050205836 0.13561533180675767 0.20502092050205836 0.13561533180675767 0.12671050404425246
+0.25313807531377586 0.07119804919854777 0.2531380753137759 0.07119804919854777 0.1886669197674696
+0.25104602510457075 0.07458843249371672 0.25104602510457075 0.07458843249371672 0.18620866766548372
+0.24895397489536564 0.07797881578888566 0.2489539748953656 0.07797881578888566 0.18347315756475038
+0.24686192468616053 0.0813691990840546 0.24686192468616053 0.0813691990840546 0.1804899933576445
+0.2405857740585452 0.08475958237922354 0.24058577405854517 0.08475958237922354 0.17572734531947135
+0.2384937238493401 0.08814996567439248 0.2384937238493401 0.08814996567439248 0.1723565635955724
+0.23640167364013495 0.09154034896956142 0.23640167364013495 0.09154034896956142 0.1688479545958287
+0.23430962343092987 0.09493073226473037 0.23430962343092987 0.09493073226473037 0.16524365937265587
+0.23221757322172476 0.09832111555989931 0.23221757322172473 0.09832111555989931 0.16158685969122324
+0.23012552301251965 0.10171149885506825 0.23012552301251965 0.10171149885506825 0.15792081590168786
+0.22803347280331454 0.10510188215023719 0.22803347280331457 0.10510188215023719 0.15428786889911875
+0.22594142259410943 0.10849226544540613 0.22594142259410943 0.10849226544540613 0.15072841926645666
+0.24476987447695542 0.08475958237922354 0.24476987447695545 0.08475958237922354 0.177293245682999
+0.27405857740582695 0.050855749427534125 0.2740585774058269 0.050855749427534125 0.20053633863226297
+0.27196652719662184 0.054246132722703067 0.27196652719662184 0.054246132722703067 0.20003846031887004
+0.26987447698741673 0.05763651601787201 0.2698744769874168 0.05763651601787201 0.19921713106201544
+0.2615062761505963 0.06441728260820989 0.26150627615059635 0.06441728260820989 0.1944965383415599
+0.2677824267782116 0.06102689931304095 0.2677824267782116 0.06102689931304095 0.19806092966660493
+0.2656903765690065 0.06441728260820989 0.26569037656900646 0.06441728260820989 0.19656660061054776
+0.2594142259413912 0.06780766590337883 0.2594142259413912 0.06780766590337883 0.1926588821096774
+0.2573221757321861 0.07119804919854777 0.257322175732186 0.07119804919854777 0.19050074037575995
+0.3054393305439036 0.027123066361351533 0.3054393305439036 0.027123066361351533 0.20602837413500405
+0.3033472803346985 0.030513449656520475 0.30334728033469854 0.030513449656520475 0.20694351900376337
+0.3012552301254934 0.03390383295168942 0.3012552301254934 0.03390383295168942 0.20784573902957207
+0.29916317991628827 0.03729421624685836 0.2991631799162882 0.03729421624685836 0.20867398553322444
+0.29707112970708316 0.0406845995420273 0.29707112970708316 0.0406845995420273 0.20937028094797985
+0.29497907949787805 0.04407498283719624 0.2949790794978781 0.04407498283719624 0.20988155587461543
+0.2803347280334423 0.04746536613236518 0.2803347280334423 0.04746536613236518 0.2028994430756916
+0.2845188284518525 0.04746536613236518 0.2845188284518525 0.04746536613236518 0.2052102624189198
+0.2887029288702627 0.04746536613236518 0.2887029288702627 0.04746536613236518 0.2076399665024483
+0.29288702928867294 0.04746536613236518 0.29288702928867294 0.04746536613236518 0.21016109019540466
+0.2782426778242372 0.050855749427534125 0.27824267782423723 0.050855749427534125 0.20273248277351122
+0.3117154811715189 0.02373268306618259 0.311715481171519 0.02373268306618259 0.20721636311099026
+0.3096234309623138 0.027123066361351533 0.3096234309623138 0.027123066361351533 0.20814410351308243
+0.31589958158992915 0.02373268306618259 0.3158995815899291 0.02373268306618259 0.2092126860266255
+0.34309623430959557 0.006780766590337883 0.34309623430959557 0.006780766590337883 0.21214533496901414
+0.34100418410039046 0.010171149885506825 0.3410041841003904 0.010171149885506825 0.21243822384384678
+0.33891213389118535 0.013561533180675767 0.33891213389118535 0.013561533180675767 0.21300422960927626
+0.33682008368198024 0.01695191647584471 0.3368200836819803 0.01695191647584471 0.21382739009691112
+0.32008368200833937 0.02373268306618259 0.3200836820083394 0.02373268306618259 0.2111253735127179
+0.3242677824267496 0.02373268306618259 0.32426778242674953 0.02373268306618259 0.21292933217797438
+0.3305439330543649 0.02034229977101365 0.3305439330543649 0.02034229977101365 0.21346156815102554
+0.33472803347277513 0.02034229977101365 0.33472803347277513 0.02034229977101365 0.21487845690530236
+0.3284518828451598 0.02373268306618259 0.32845188284515986 0.02373268306618259 0.21460060651410337
+0.13222494851087377 0.2071129707111158 0.13222494851087377 0.2071129707111158 0.09078263134898636
+0.13561533180555846 0.20502092050215917 0.13561533180555843 0.20502092050215917 0.0914184201204762
+0.13900571510005447 0.20292887029334175 0.13900571510005447 0.20292887029334175 0.09236902213835217
+0.14239609839464668 0.20083682008508924 0.14239609839464665 0.2008368200850892 0.09358209104751843
+0.14578648168941893 0.198744769876577 0.14578648168941896 0.198744769876577 0.09500433241725931
+0.14917681141171027 0.19665265848943572 0.14917681141171027 0.19665265848943572 0.09658420328816429
+0.152566296924804 0.19455972607639338 0.15256629692480403 0.19455972607639338 0.09827363932166601
+0.15595259940453493 0.19246436890334065 0.15595259940453496 0.19246436890334065 0.10002911522046769
+0.08475958237922256 0.24476987447698076 0.08475958237922256 0.24476987447698076 0.12444625408163691
+0.08814996567438722 0.24267782426777285 0.08814996567438722 0.24267782426777282 0.12079334963033046
+0.09154034896954895 0.24058577405856693 0.09154034896954895 0.24058577405856693 0.11712472546989348
+0.0949307322647049 0.2343096234309738 0.0949307322647049 0.2343096234309738 0.1119494424083838
+0.09832111555986721 0.2322175732217808 0.09832111555986721 0.2322175732217808 0.1084644401303775
+0.0949307322647071 0.2384937238493665 0.0949307322647071 0.2384937238493665 0.11349783125262199
+0.1017114988550344 0.2301255230125879 0.1017114988550344 0.2301255230125879 0.10515806264812992
+0.10510188215019739 0.22803347280339462 0.1051018821501974 0.22803347280339462 0.10209153372584569
+0.10849226544535769 0.2259414225942011 0.10849226544535769 0.2259414225942011 0.09932282674028418
+0.11188264874050431 0.22384937238501093 0.11188264874050431 0.22384937238501093 0.0969040156752765
+0.11527303203564726 0.22175732217581876 0.11527303203564725 0.22175732217581876 0.09487844837331239
+0.11866341533078285 0.2196652719666369 0.11866341533078285 0.2196652719666369 0.09327803869243256
+0.12205379862591738 0.2175732217574213 0.12205379862591738 0.2175732217574213 0.0921210640757127
+0.12544418192106424 0.2154811715481834 0.12544418192106424 0.2154811715481834 0.09141086474636771
+0.12883456521614925 0.21338912133889587 0.12883456521614925 0.21338912133889587 0.09113573790131545
+0.13222494851115127 0.2112970711295552 0.13222494851115127 0.2112970711295552 0.09127011592093802
+0.0644172826082088 0.26150627615062966 0.0644172826082088 0.26150627615062966 0.14458376780850787
+0.06780766590337804 0.259414225941425 0.06780766590337804 0.259414225941425 0.14201976175239328
+0.07119804919854739 0.2573221757322202 0.07119804919854739 0.2573221757322202 0.1391911380892038
+0.07458843249371698 0.255230125523015 0.07458843249371698 0.255230125523015 0.136123711403812
+0.07797881578888663 0.25313807531380944 0.07797881578888664 0.25313807531380944 0.13284932830702087
+0.0813691990840564 0.2510460251046029 0.08136919908405639 0.2510460251046029 0.12940557464205524
+0.08475958237922591 0.24895397489539525 0.08475958237922591 0.24895397489539525 0.12583542177060006
+0.04746536613236511 0.28033472803347287 0.04746536613236511 0.28033472803347287 0.1547995139482969
+0.05085574942753391 0.27824267782426765 0.05085574942753391 0.27824267782426765 0.153744409212456
+0.054246132722702144 0.27196652719665276 0.054246132722702144 0.27196652719665276 0.1515135371846836
+0.05763651601787065 0.26987447698744804 0.057636516017870655 0.269874476987448 0.14985941141455358
+0.05424613272270256 0.2761506276150624 0.05424613272270256 0.2761506276150624 0.15240218320779364
+0.06102689931303935 0.26778242677824354 0.06102689931303935 0.26778242677824354 0.14790430728699197
+0.06441728260820792 0.2656903765690394 0.06441728260820791 0.2656903765690393 0.14565368427501332
+0.033903832951689195 0.2970711297071134 0.033903832951689195 0.2970711297071134 0.15835616672439537
+0.03729421624685815 0.2949790794979084 0.03729421624685814 0.2949790794979084 0.15817705329500373
+0.04068459954202724 0.28870292887029336 0.04068459954202724 0.28870292887029336 0.15696189418536613
+0.04068459954202714 0.2928870292887035 0.04068459954202714 0.2928870292887035 0.157820858527179
+0.04407498283719622 0.2866108786610883 0.04407498283719622 0.2866108786610883 0.15641619101203041
+0.047465366132365204 0.28451882845188314 0.047465366132365204 0.28451882845188314 0.15562590882711255
+0.016951916475844705 0.3158995815899585 0.016951916475844705 0.3158995815899585 0.16066402517965786
+0.01695191647584471 0.3200836820083686 0.01695191647584471 0.3200836820083686 0.16215246635316627
+0.020342299771013636 0.31380753138075346 0.020342299771013636 0.3138075313807534 0.16060716521932303
+0.023732683066182536 0.3117154811715484 0.023732683066182536 0.3117154811715484 0.16059690903768623
+0.02712306636135136 0.30543933054393335 0.027123066361351363 0.30543933054393335 0.1594160031470411
+0.027123066361351422 0.30962343096234335 0.027123066361351422 0.30962343096234335 0.16058950185933749
+0.030513449656520242 0.3033472803347284 0.030513449656520242 0.3033472803347284 0.15942153877704088
+0.03390383295168911 0.30125523012552347 0.03390383295168911 0.3012552301255234 0.1593359362948972
+0.006780766590337883 0.3347280334728038 0.006780766590337883 0.3347280334728038 0.16701130003709744
+0.010171149885506825 0.3326359832635987 0.010171149885506825 0.3326359832635987 0.16637390923067508
+0.013561533180675767 0.3263598326359837 0.013561533180675767 0.3263598326359837 0.16406143892173355
+0.01695191647584471 0.3242677824267787 0.01695191647584471 0.32426778242677873 0.1637742481105343
+0.013561533180675767 0.3305439330543937 0.013561533180675767 0.3305439330543937 0.16589069816814925
+0.006780766590337883 0.3389121338912138 0.006780766590337883 0.3389121338912138 0.16910584368138723
+0.006780766590337883 0.3430962343096238 0.006780766590337883 0.3430962343096238 0.17132048241861678
+0.006780766590337883 0.34728033472803393 0.006780766590337883 0.34728033472803393 0.17364470481918126
+0.15933266181979913 0.19036455641025482 0.15933266181979913 0.19036455641025482 0.10181299691970884
+0.20292887029285325 0.1390057151019266 0.20292887029285325 0.1390057151019266 0.12484342586388932
+0.20083682008364812 0.14239609839709555 0.20083682008364812 0.14239609839709555 0.12317555374854504
+0.198744769874443 0.1457864816922645 0.198744769874443 0.1457864816922645 0.12168701347376056
+0.19665271966523787 0.14917686498743343 0.19665271966523787 0.14917686498743343 0.12035424328614237
+0.1627041097424879 0.18825976173699036 0.16270410974248792 0.18825976173699036 0.10359475057658805
+0.16606613179432916 0.18615811556559814 0.16606613179432916 0.18615811556559814 0.10535133260176144
+0.19456066945603276 0.15256724828260237 0.19456066945603276 0.15256724828260237 0.11915118904612669
+0.19246861924682765 0.15595763157777132 0.19246861924682765 0.15595763157777132 0.11805052004991355
+0.19037656903762257 0.15934801487294026 0.19037656903762257 0.15934801487294026 0.11702480121542946
+0.16941480454731203 0.18407504558835117 0.16941480454731203 0.18407504558835117 0.10706428724644283
+0.18828451882841749 0.1627383981681092 0.18828451882841749 0.1627383981681092 0.11604761608859841
+0.1862208656943609 0.16611334522723248 0.1862208656943609 0.1661133452272325 0.11510562085418885
+0.18425668355343863 0.16942965798511414 0.18425668355343863 0.16942965798511414 0.11420846220639269
+0.17272634709209203 0.18205811822393056 0.17272634709209203 0.18205811822393056 0.10871055742544959
+0.18239384372868225 0.17270437211787565 0.18239384372868225 0.17270437211787562 0.11333925702611582
+0.1759663029011035 0.1801962957710168 0.1759663029011035 0.1801962957710168 0.11026815452353854
+0.1805455176839818 0.17624051087979564 0.18054551768398183 0.17624051087979564 0.11245764497837331
+0.17893038061953193 0.17902218188304347 0.17893038061953193 0.17902218188304347 0.11161021714432998
+0.22384937238490435 0.11188264874057507 0.22384937238490435 0.11188264874057507 0.1472799049172764
+0.22175732217569924 0.11527303203574402 0.22175732217569924 0.11527303203574402 0.14397580822135392
+0.21966527196649413 0.11866341533091296 0.21966527196649413 0.11866341533091296 0.14084473348058066
+0.217573221757289 0.1220537986260819 0.217573221757289 0.1220537986260819 0.13790960386321058
+0.21548117154808388 0.12544418192125084 0.21548117154808386 0.12544418192125084 0.1351870312133859
+0.21338912133887877 0.12883456521641978 0.21338912133887877 0.12883456521641978 0.13268691029707416
+0.21129707112967364 0.13222494851158872 0.21129707112967364 0.13222494851158872 0.13041227953065174
+0.20920502092046855 0.13561533180675767 0.20920502092046855 0.13561533180675767 0.12835947300005823
+0.20711297071126347 0.1390057151019266 0.20711297071126347 0.1390057151019266 0.12651856538473186
+0.25523012552298097 0.07458843249371672 0.25523012552298097 0.07458843249371672 0.18804072956377282
+0.25313807531377586 0.07797881578888566 0.2531380753137759 0.07797881578888566 0.18530347465868283
+0.25104602510457075 0.0813691990840546 0.25104602510457075 0.0813691990840546 0.18231888773682647
+0.24895397489536564 0.08475958237922354 0.2489539748953656 0.08475958237922354 0.17912138552764012
+0.2426778242677503 0.08814996567439248 0.2426778242677503 0.08814996567439248 0.17392064364137985
+0.2405857740585452 0.09154034896956142 0.24058577405854517 0.09154034896956142 0.17041271742723826
+0.2384937238493401 0.09493073226473037 0.2384937238493401 0.09493073226473037 0.16681189378744776
+0.236401673640135 0.09832111555989931 0.236401673640135 0.09832111555989931 0.16316154683598863
+0.2343096234309299 0.10171149885506825 0.2343096234309299 0.10171149885506825 0.15950500907746276
+0.2322175732217248 0.10510188215023719 0.2322175732217248 0.10510188215023719 0.1558845517767052
+0.23012552301251965 0.10849226544540613 0.23012552301251965 0.10849226544540613 0.15234035015382566
+0.2280334728033145 0.11188264874057507 0.2280334728033145 0.11188264874057507 0.14890945705454126
+0.24686192468616053 0.08814996567439248 0.24686192468616053 0.08814996567439248 0.17574905165606447
+0.27615062761503206 0.054246132722703067 0.27615062761503206 0.054246132722703067 0.20226195380218126
+0.27405857740582695 0.05763651601787201 0.2740585774058269 0.05763651601787201 0.20146749435180303
+0.27196652719662184 0.06102689931304095 0.27196652719662184 0.06102689931304095 0.20033718453320762
+0.2635983263598014 0.06780766590337883 0.2635983263598014 0.06780766590337883 0.1947387093405172
+0.26987447698741673 0.06441728260820989 0.2698744769874168 0.06441728260820989 0.1988673775499237
+0.2677824267782116 0.06780766590337883 0.2677824267782116 0.06780766590337883 0.19706236505160188
+0.2615062761505963 0.07119804919854777 0.26150627615059635 0.07119804919854777 0.19258916927907246
+0.2594142259413912 0.07458843249371672 0.2594142259413912 0.07458843249371672 0.1901366632156312
+0.3075313807531087 0.030513449656520475 0.30753138075310865 0.030513449656520475 0.20912565286830828
+0.3054393305439036 0.03390383295168942 0.3054393305439036 0.03390383295168942 0.21009924401299898
+0.3033472803346985 0.03729421624685836 0.30334728033469854 0.03729421624685836 0.2110036563894748
+0.3012552301254934 0.0406845995420273 0.3012552301254934 0.0406845995420273 0.21178048074963954
+0.29916317991628827 0.04407498283719624 0.2991631799162882 0.04407498283719624 0.21237601088790312
+0.29707112970708316 0.04746536613236518 0.29707112970708316 0.04746536613236518 0.21274274227735804
+0.2824267782426474 0.050855749427534125 0.28242677824264734 0.050855749427534125 0.2050860134171393
+0.2866108786610576 0.050855749427534125 0.28661087866105767 0.050855749427534125 0.20757424891873658
+0.29079497907946783 0.050855749427534125 0.2907949790794678 0.050855749427534125 0.21016957228655767
+0.29497907949787805 0.050855749427534125 0.2949790794978781 0.050855749427534125 0.21284048724602575
+0.2803347280334423 0.054246132722703067 0.2803347280334423 0.054246132722703067 0.20465838325266164
+0.31380753138072404 0.027123066361351533 0.31380753138072404 0.027123066361351533 0.21021295316063457
+0.3117154811715189 0.030513449656520475 0.311715481171519 0.030513449656520475 0.21127216997941858
+0.31799163179913426 0.027123066361351533 0.31799163179913426 0.027123066361351533 0.21220798751015355
+0.3472803347280058 0.006780766590337883 0.3472803347280058 0.006780766590337883 0.21298464844422735
+0.3451882845188007 0.010171149885506825 0.34518828451880074 0.010171149885506825 0.2133771877242203
+0.34309623430959557 0.013561533180675767 0.34309623430959557 0.013561533180675767 0.2140414719574998
+0.34100418410039046 0.01695191647584471 0.3410041841003904 0.01695191647584471 0.21496322644675417
+0.33891213389118535 0.02034229977101365 0.33891213389118535 0.02034229977101365 0.21611482511501648
+0.3221757322175445 0.027123066361351533 0.3221757322175445 0.027123066361351533 0.21410285737468238
+0.3263598326359547 0.027123066361351533 0.3263598326359547 0.027123066361351533 0.21587227892110347
+0.33263598326357 0.02373268306618259 0.33263598326356997 0.02373268306618259 0.21611673547967128
+0.33682008368198024 0.02373268306618259 0.3368200836819803 0.02373268306618259 0.21745703594658214
+0.3305439330543649 0.027123066361351533 0.3305439330543649 0.027123066361351533 0.21749243445750463
+0.351464435146416 0.006780766590337883 0.351464435146416 0.006780766590337883 0.21360903879142926
+0.1356153318059132 0.20920502092025808 0.1356153318059132 0.20920502092025808 0.09177687217209325
+0.13900571510044754 0.20711297071110982 0.13900571510044754 0.20711297071110982 0.09261039551309075
+0.142396098394693 0.20502092050237078 0.142396098394693 0.20502092050237078 0.09371997944781431
+0.14578648168861158 0.20292887029388182 0.1457864816886116 0.20292887029388182 0.0950530982200205
+0.14917685794927174 0.20083681081439597 0.14917685794927174 0.20083681081439594 0.09655825222049812
+0.15256694605606252 0.1987444294284908 0.15256694605606255 0.1987444294284908 0.09818709177527367
+0.15595529509754627 0.19665044621692615 0.15595529509754627 0.19665044621692615 0.09989563476233426
+0.15933989121244072 0.19455364438894562 0.15933989121244072 0.19455364438894562 0.10164560567589266
+0.0881499656743941 0.24686192468618626 0.0881499656743941 0.24686192468618626 0.122186787689632
+0.09154034896955983 0.24476987447697596 0.09154034896955983 0.24476987447697596 0.1185119767881977
+0.09493073226472082 0.24267782426776519 0.09493073226472082 0.24267782426776519 0.11486694927714132
+0.09832111555985928 0.2364016736401704 0.09832111555985928 0.2364016736401704 0.10997268621535906
+0.10171149885502191 0.23430962343098347 0.10171149885502191 0.23430962343098347 0.10661052197104381
+0.09832111555987673 0.24058577405855885 0.09832111555987673 0.24058577405855885 0.11131036001128226
+0.10510188215017834 0.23221757322179995 0.10510188215017834 0.23221757322179995 0.10347204396402522
+0.10849226544534357 0.23012552301261602 0.10849226544534356 0.23012552301261602 0.10061528816927286
+0.1118826487404994 0.22803347280343134 0.1118826487404994 0.22803347280343136 0.09809311686049137
+0.11527303203564977 0.22594142259424585 0.11527303203564977 0.22594142259424585 0.09595049618722264
+0.11866341533077379 0.22384937238506597 0.11866341533077378 0.22384937238506594 0.0942218132221317
+0.12205379862589423 0.22175732217587274 0.12205379862589423 0.22175732217587277 0.09292858653729481
+0.12544418192101153 0.2196652719667037 0.1254441819210115 0.21966527196670374 0.09207795611932311
+0.12883456521610212 0.21757322175749613 0.12883456521610212 0.21757322175749613 0.09166226868462087
+0.1322249485112129 0.215481171548259 0.1322249485112129 0.215481171548259 0.09165990156222321
+0.13561533180614951 0.2133891213390121 0.13561533180614951 0.21338912133901208 0.09203723792730777
+0.06780766590337693 0.26359832635983504 0.06780766590337693 0.2635983263598351 0.14311955599048087
+0.07119804919854604 0.2615062761506309 0.07119804919854604 0.2615062761506309 0.14032033084531872
+0.07458843249371551 0.2594142259414265 0.07458843249371551 0.2594142259414265 0.13728060931922925
+0.07797881578888513 0.2573221757322218 0.07797881578888512 0.2573221757322219 0.13403094025820897
+0.08136919908405514 0.25523012552301666 0.08136919908405514 0.25523012552301666 0.13060753214573603
+0.0847595823792253 0.2531380753138107 0.0847595823792253 0.25313807531381066 0.12705190748331074
+0.08814996567439554 0.25104602510460333 0.08814996567439554 0.25104602510460333 0.12341047898610609
+0.05085574942753413 0.2824267782426779 0.05085574942753413 0.2824267782426779 0.15456916221689013
+0.05424613272270299 0.2803347280334726 0.05424613272270299 0.28033472803347254 0.15323036974624646
+0.057636516017871085 0.2740585774058573 0.057636516017871085 0.2740585774058573 0.1507642787986756
+0.06102689931303947 0.27196652719665254 0.06102689931303947 0.27196652719665254 0.14882874880965893
+0.057636516017871696 0.2782426778242672 0.057636516017871696 0.2782426778242672 0.15160041940664037
+0.06441728260820752 0.26987447698744793 0.06441728260820752 0.26987447698744793 0.1466002174862678
+0.0678076659033761 0.267782426778244 0.0678076659033761 0.267782426778244 0.14408977493266104
+0.037294216246858046 0.2991631799163184 0.037294216246858046 0.2991631799163184 0.15911745875665353
+0.04068459954202699 0.2970711297071135 0.04068459954202699 0.2970711297071135 0.1587280001746698
+0.04407498283719613 0.29079497907949853 0.04407498283719613 0.29079497907949853 0.15725410092632755
+0.044074982837195964 0.29497907949790864 0.044074982837195964 0.29497907949790864 0.15813402478328975
+0.047465366132365135 0.2887029288702935 0.047465366132365135 0.2887029288702934 0.1564487013250939
+0.05085574942753415 0.2866108786610884 0.050855749427534146 0.2866108786610884 0.15538247273049624
+0.020342299771013646 0.31799163179916357 0.020342299771013646 0.31799163179916357 0.16202635765464837
+0.02034229977101365 0.3221757322175737 0.02034229977101365 0.32217573221757373 0.16358001957291826
+0.023732683066182574 0.3158995815899585 0.023732683066182574 0.3158995815899585 0.16195053573805437
+0.027123066361351485 0.3138075313807534 0.02712306636135148 0.3138075313807534 0.16188211838621427
+0.030513449656520284 0.30753138075313835 0.030513449656520284 0.30753138075313835 0.16054036899188898
+0.030513449656520388 0.31171548117154835 0.030513449656520388 0.31171548117154835 0.16177715885874241
+0.03390383295168915 0.3054393305439334 0.033903832951689146 0.3054393305439334 0.160405755055995
+0.03729421624685798 0.3033472803347284 0.03729421624685798 0.3033472803347284 0.16014416173022897
+0.010171149885506825 0.3368200836820088 0.010171149885506825 0.3368200836820088 0.16840422198988428
+0.013561533180675767 0.3347280334728038 0.013561533180675767 0.3347280334728038 0.16785681327306015
+0.01695191647584471 0.3284518828451887 0.01695191647584471 0.3284518828451887 0.16553588139423403
+0.02034229977101365 0.3263598326359837 0.02034229977101365 0.3263598326359837 0.16527681639813507
+0.01695191647584471 0.3326359832635987 0.01695191647584471 0.3326359832635987 0.16743942595016412
+0.010171149885506825 0.34100418410041883 0.010171149885506825 0.34100418410041883 0.17056090994214948
+0.010171149885506825 0.3451882845188289 0.010171149885506825 0.3451882845188288 0.1728347858371099
+0.006780766590337883 0.35146443514644404 0.006780766590337883 0.35146443514644404 0.17606516021016008
+0.010171149885506825 0.349372384937239 0.010171149885506825 0.349372384937239 0.17521352805309298
+0.16271934792168183 0.1924528200407305 0.16271934792168183 0.1924528200407305 0.10340558121364725
+0.20502092050205836 0.14239609839709555 0.20502092050205836 0.14239609839709555 0.12487408570535485
+0.20292887029285325 0.1457864816922645 0.20292887029285325 0.1457864816922645 0.12340595199547265
+0.20083682008364812 0.14917686498743343 0.20083682008364812 0.14917686498743343 0.12209056118789731
+0.198744769874443 0.15256724828260237 0.198744769874443 0.15256724828260237 0.1209019594266522
+0.16608904004319694 0.19035056129417618 0.16608904004319694 0.19035056129417618 0.10514928423320703
+0.16945442817402848 0.18824405010133963 0.16945442817402848 0.18824405010133963 0.10686227476957334
+0.19665271966523787 0.15595763157777132 0.19665271966523787 0.15595763157777132 0.11981301817601674
+0.19456066945603276 0.15934801487294026 0.19456066945603276 0.15934801487294026 0.11879654866038018
+0.19246861924682768 0.1627383981681092 0.19246861924682768 0.1627383981681092 0.11782629215838276
+0.17277750329645689 0.18619984480539334 0.17277750329645689 0.18619984480539334 0.10851127258008435
+0.1903765690376226 0.16612878146327814 0.1903765690376226 0.16612878146327814 0.11687765581348937
+0.18832659538733432 0.16949525783747466 0.18832659538733432 0.16949525783747466 0.11594566515598037
+0.18635169174781757 0.17283882305150794 0.1863516917478176 0.1728388230515079 0.11502650268637958
+0.1760497474230164 0.18425376265632606 0.1760497474230164 0.18425376265632606 0.11008637347396767
+0.1844952033557513 0.17627370963013508 0.1844952033557513 0.17627370963013508 0.11412371613674192
+0.17925681010479522 0.1823726080439317 0.17925681010479522 0.1823726080439317 0.11158310902113577
+0.1825192886800687 0.18002586961747838 0.18251928868006867 0.18002586961747838 0.1131132398061119
+0.22594142259410943 0.11527303203574402 0.22594142259410943 0.11527303203574402 0.14562481802446367
+0.22384937238490435 0.11866341533091296 0.22384937238490435 0.11866341533091296 0.1425143697835739
+0.22175732217569924 0.1220537986260819 0.22175732217569924 0.1220537986260819 0.13960027106975995
+0.21966527196649413 0.12544418192125084 0.21966527196649413 0.12544418192125084 0.13689831750772175
+0.217573221757289 0.12883456521641978 0.217573221757289 0.12883456521641978 0.13441758856655708
+0.21548117154808388 0.13222494851158872 0.21548117154808386 0.13222494851158872 0.1321603636551504
+0.21338912133887877 0.13561533180675767 0.21338912133887877 0.13561533180675767 0.13012232628894407
+0.21129707112967364 0.1390057151019266 0.21129707112967364 0.1390057151019266 0.12829305210271522
+0.20920502092046855 0.14239609839709555 0.20920502092046855 0.14239609839709555 0.12665675181409594
+0.2573221757321861 0.07797881578888566 0.257322175732186 0.07797881578888566 0.18740597646266297
+0.25523012552298097 0.0813691990840546 0.25523012552298097 0.0813691990840546 0.18442725467879076
+0.25313807531377586 0.08475958237922354 0.2531380753137759 0.08475958237922354 0.18123519567614402
+0.25104602510457075 0.08814996567439248 0.25104602510457075 0.08814996567439248 0.17786818192116394
+0.24476987447695542 0.09154034896956142 0.24476987447695545 0.09154034896956142 0.17224274747734025
+0.2426778242677503 0.09493073226473037 0.2426778242677503 0.09493073226473037 0.16864517489218503
+0.24058577405854523 0.09832111555989931 0.24058577405854523 0.09832111555989931 0.16499989546530694
+0.23849372384934012 0.10171149885506825 0.23849372384934012 0.10171149885506825 0.16135031282733595
+0.236401673640135 0.10510188215023719 0.236401673640135 0.10510188215023719 0.15773862991679757
+0.23430962343092987 0.10849226544540613 0.23430962343092987 0.10849226544540613 0.1542047991187929
+0.23221757322172476 0.11188264874057507 0.23221757322172473 0.11188264874057507 0.15078549143630512
+0.23012552301251965 0.11527303203574402 0.23012552301251965 0.11527303203574402 0.1475131196503667
+0.24895397489536564 0.09154034896956142 0.2489539748953656 0.09154034896956142 0.17436735892912422
+0.2782426778242372 0.05763651601787201 0.27824267782423723 0.05763651601787201 0.20390632272378914
+0.27615062761503206 0.06102689931304095 0.27615062761503206 0.06102689931304095 0.2028173047203555
+0.27405857740582695 0.06441728260820989 0.2740585774058269 0.06441728260820989 0.20138717688937777
+0.2656903765690065 0.07119804919854777 0.26569037656900646 0.07119804919854777 0.1949339057843791
+0.27196652719662184 0.06780766590337883 0.27196652719662184 0.06780766590337883 0.19961983947743403
+0.26987447698741673 0.07119804919854777 0.2698744769874168 0.07119804919854777 0.19752677787880377
+0.2635983263598014 0.07458843249371672 0.2635983263598014 0.07458843249371672 0.19250064081824536
+0.2615062761505963 0.07797881578888566 0.26150627615059635 0.07797881578888566 0.18978741341887906
+0.3096234309623138 0.03390383295168942 0.3096234309623138 0.03390383295168942 0.2123287693772997
+0.3075313807531087 0.03729421624685836 0.30753138075310865 0.03729421624685836 0.21332141603685909
+0.3054393305439036 0.0406845995420273 0.3054393305439036 0.0406845995420273 0.2141913132770005
+0.3033472803346985 0.04407498283719624 0.30334728033469854 0.04407498283719624 0.21488414650629792
+0.3012552301254934 0.04746536613236518 0.3012552301254934 0.04746536613236518 0.21535163755907652
+0.29916317991628827 0.050855749427534125 0.2991631799162882 0.050855749427534125 0.21555271503827436
+0.2845188284518525 0.054246132722703067 0.2845188284518525 0.054246132722703067 0.20720555309416763
+0.2887029288702627 0.054246132722703067 0.2887029288702627 0.054246132722703067 0.20987580792898955
+0.29288702928867294 0.054246132722703067 0.29288702928867294 0.054246132722703067 0.21263713512622506
+0.29707112970708316 0.054246132722703067 0.29707112970708316 0.054246132722703067 0.21545432577096643
+0.2824267782426474 0.05763651601787201 0.28242677824264734 0.05763651601787201 0.20651205318435847
+0.31589958158992915 0.030513449656520475 0.3158995815899291 0.030513449656520475 0.21335493617652093
+0.31380753138072404 0.03390383295168942 0.31380753138072404 0.03390383295168942 0.21450492795582757
+0.32008368200833937 0.030513449656520475 0.3200836820083394 0.030513449656520475 0.2153462718735273
+0.3493723849372109 0.010171149885506825 0.34937238493721084 0.010171149885506825 0.21410592726506958
+0.3472803347280058 0.013561533180675767 0.3472803347280058 0.013561533180675767 0.21487289200510398
+0.3451882845188007 0.01695191647584471 0.34518828451880074 0.01695191647584471 0.215897318811498
+0.34309623430959557 0.02034229977101365 0.34309623430959557 0.02034229977101365 0.217153206415982
+0.34100418410039046 0.02373268306618259 0.3410041841003904 0.02373268306618259 0.2186028159306114
+0.3242677824267496 0.030513449656520475 0.32426778242674953 0.030513449656520475 0.21721948368351243
+0.3284518828451598 0.030513449656520475 0.32845188284515986 0.030513449656520475 0.2189493130844796
+0.33472803347277513 0.027123066361351533 0.33472803347277513 0.027123066361351533 0.21894129478455873
+0.33891213389118535 0.027123066361351533 0.33891213389118535 0.027123066361351533 0.22019886567377575
+0.33263598326357 0.030513449656520475 0.33263598326356997 0.030513449656520475 0.2205123009376916
+0.35564853556482623 0.006780766590337883 0.35564853556482623 0.006780766590337883 0.21400723259646562
+0.35983263598323645 0.006780766590337883 0.35983263598323645 0.006780766590337883 0.21416985491306859
+0.36401673640164667 0.006780766590337883 0.36401673640164667 0.006780766590337883 0.21408938998235003
+0.3682008368200569 0.006780766590337883 0.3682008368200569 0.006780766590337883 0.21376011188597607
+0.3535564853556211 0.010171149885506825 0.3535564853556212 0.010171149885506825 0.2146121987692333
+0.13900571510085005 0.21129707112965623 0.13900571510085005 0.21129707112965623 0.09275149489887292
+0.1423960983952359 0.20920502092029292 0.1423960983952359 0.20920502092029292 0.09375398313040667
+0.14578648168924155 0.2071129707113187 0.14578648168924155 0.2071129707113187 0.09499336980457086
+0.1491768649826555 0.20502092050306198 0.1491768649826555 0.20502092050306198 0.09641860560370152
+0.15256720724532566 0.2029288162094719 0.15256720724532566 0.20292881620947192 0.09798129310743685
+0.1559569103990529 0.2008360006359161 0.1559569103990529 0.20083600063591608 0.0996372537809491
+0.15934469654573366 0.19874137933851063 0.15934469654573366 0.19874137933851063 0.1013476914047932
+0.16273022104836055 0.19664452118053888 0.16273022104836055 0.19664452118053888 0.10308058211420247
+0.09154034896956552 0.24895397489539392 0.09154034896956552 0.24895397489539392 0.11973401526056997
+0.09493073226473318 0.24686192468618198 0.09493073226473318 0.24686192468618198 0.11607695168583963
+0.09832111555989637 0.24476987447696755 0.09832111555989637 0.24476987447696755 0.11249649127443771
+0.10171149885502574 0.23849372384936265 0.10171149885502574 0.23849372384936265 0.10790230092878818
+0.1051018821501638 0.23640167364017428 0.1051018821501638 0.23640167364017425 0.10470268843408885
+0.10171149885505078 0.24267782426775242 0.10171149885505078 0.2426778242677524 0.10905143404322516
+0.10849226544532098 0.23430962343100184 0.10849226544532098 0.23430962343100184 0.10176926530918906
+0.11188264874046638 0.23221757322183556 0.11188264874046638 0.2322175732218356 0.09915524388874604
+0.11527303203562722 0.2301255230126669 0.11527303203562722 0.2301255230126669 0.09690670498242215
+0.11866341533076936 0.2280334728034967 0.11866341533076936 0.2280334728034967 0.09505997424844258
+0.12205379862590525 0.22594142259431974 0.12205379862590525 0.22594142259431974 0.09363929596381665
+0.12544418192099538 0.2238493723851421 0.12544418192099538 0.2238493723851421 0.09265517167253963
+0.12883456521606598 0.221757322175953 0.12883456521606598 0.221757322175953 0.09210368957416702
+0.13222494851110625 0.21966527196684926 0.13222494851110625 0.21966527196684926 0.09196702860602957
+0.13561533180606503 0.2175732217577088 0.13561533180606503 0.2175732217577088 0.09221511096237317
+0.13900571510086607 0.21548117154862398 0.1390057151008661 0.21548117154862398 0.09280816519418335
+0.07119804919854447 0.2656903765690403 0.07119804919854446 0.2656903765690403 0.14131481814691335
+0.07458843249371358 0.26359832635983665 0.0745884324937136 0.26359832635983665 0.13829884744343504
+0.0779788157888828 0.261506276150633 0.07797881578888279 0.261506276150633 0.1350712217344934
+0.08136919908405264 0.25941422594142904 0.08136919908405264 0.2594142259414291 0.1316668700239015
+0.08475958237922267 0.25732217573222466 0.08475958237922267 0.25732217573222466 0.1281259491875765
+0.08814996567439326 0.2552301255230195 0.08814996567439326 0.25523012552301955 0.12449342939250574
+0.09154034896956413 0.2531380753138132 0.09154034896956413 0.2531380753138132 0.12081857832040044
+0.05424613272270315 0.2845188284518831 0.05424613272270316 0.2845188284518831 0.1540394393728637
+0.057636516017872085 0.2824267782426777 0.057636516017872085 0.2824267782426777 0.15241001330864357
+0.061026899313040193 0.27615062761506187 0.061026899313040193 0.27615062761506187 0.1496767224956048
+0.06441728260820842 0.2740585774058568 0.06441728260820843 0.2740585774058568 0.1474631787101002
+0.0610268993130409 0.2803347280334722 0.0610268993130409 0.2803347280334722 0.15049105497728413
+0.06780766590337631 0.2719665271966522 0.0678076659033763 0.2719665271966522 0.14497007113275803
+0.0711980491985437 0.269874476987448 0.07119804919854368 0.269874476987448 0.14221390537546855
+0.04068459954202689 0.30125523012552347 0.04068459954202689 0.3012552301255234 0.1597175546684173
+0.04407498283719577 0.29916317991631863 0.04407498283719577 0.29916317991631863 0.15909233301424597
+0.04746536613236498 0.29288702928870375 0.04746536613236498 0.29288702928870375 0.15730728115199868
+0.047465366132364746 0.2970711297071138 0.047465366132364746 0.2970711297071138 0.15824007152834804
+0.05085574942753399 0.2907949790794987 0.05085574942753399 0.29079497907949875 0.15622531364534917
+0.05424613272270306 0.28870292887029364 0.05424613272270306 0.28870292887029364 0.15487179830660106
+0.02373268306618259 0.3200836820083686 0.02373268306618259 0.3200836820083686 0.16343983140189652
+0.02373268306618259 0.3242677824267787 0.02373268306618259 0.32426778242677873 0.16507568106350765
+0.02712306636135152 0.31799163179916357 0.027123066361351523 0.31799163179916357 0.16331165058954678
+0.030513449656520437 0.3158995815899585 0.030513449656520437 0.3158995815899585 0.1631521251188214
+0.03390383295168923 0.30962343096234335 0.03390383295168923 0.30962343096234335 0.161592303279367
+0.03390383295168934 0.31380753138075335 0.03390383295168934 0.31380753138075335 0.16291826134418474
+0.03729421624685807 0.30753138075313835 0.037294216246858074 0.30753138075313835 0.16128625616083822
+0.040684599542026904 0.30543933054393335 0.040684599542026904 0.30543933054393335 0.1608210199768385
+0.013561533180675767 0.3389121338912138 0.013561533180675767 0.3389121338912138 0.16995579493295246
+0.01695191647584471 0.3368200836820088 0.01695191647584471 0.3368200836820088 0.1694825663167786
+0.02034229977101365 0.3305439330543937 0.02034229977101365 0.3305439330543937 0.16712078378892917
+0.02373268306618259 0.3284518828451887 0.02373268306618259 0.3284518828451887 0.16686416271777163
+0.02034229977101365 0.3347280334728038 0.02034229977101365 0.3347280334728038 0.16911133286616678
+0.013561533180675767 0.3430962343096238 0.013561533180675767 0.3430962343096238 0.17217980508245942
+0.006780766590337883 0.3556485355648541 0.006780766590337883 0.35564853556485415 0.1785661801459384
+0.013561533180675767 0.34728033472803393 0.013561533180675767 0.34728033472803393 0.17451756119912698
+0.010171149885506825 0.3535564853556491 0.010171149885506825 0.35355648535564915 0.17768219051414277
+0.013561533180675767 0.35146443514644404 0.013561533180675767 0.35146443514644404 0.17695483314703406
+0.006780766590337883 0.35983263598326415 0.006780766590337883 0.35983263598326415 0.181130332250405
+0.006780766590337883 0.3640167364016742 0.006780766590337883 0.3640167364016742 0.18373898052544432
+0.166107854275824 0.19454419523420707 0.166107854275824 0.19454419523420707 0.10480811668235845
+0.20711297071126347 0.1457864816922645 0.20711297071126347 0.1457864816922645 0.1251932182553501
+0.20502092050205836 0.14917686498743343 0.20502092050205836 0.14917686498743343 0.12387891102340619
+0.20292887029285325 0.15256724828260237 0.20292887029285325 0.15256724828260237 0.12268810541405988
+0.20083682008364812 0.15595763157777132 0.20083682008364812 0.15595763157777132 0.12159403434004733
+0.16947673093239488 0.192445145857583 0.16947673093239488 0.192445145857583 0.10651098508141887
+0.17283962493084004 0.19034801043576507 0.17283962493084004 0.19034801043576507 0.10817809082296952
+0.198744769874443 0.15934801487294026 0.198744769874443 0.15934801487294026 0.12056996109772321
+0.1966527196652379 0.1627383981681092 0.1966527196652379 0.1627383981681092 0.11959013361003035
+0.19456066945603276 0.16612878146327814 0.19456066945603276 0.16612878146327814 0.1186305829386489
+0.17614777402789242 0.18833088793050679 0.17614777402789242 0.18833088793050679 0.10977495762048854
+0.19246861924682768 0.16951916475844708 0.19246861924682768 0.16951916475844708 0.11766977584790204
+0.19043998540675539 0.17288573089784728 0.19043998540675536 0.17288573089784728 0.1167160248527956
+0.1885114177483317 0.17624893719087853 0.1885114177483317 0.17624893719087853 0.11577077022998127
+0.17941821353354015 0.1863774540458202 0.17941821353354015 0.1863774540458202 0.11131201512803753
+0.18664946054562584 0.17958374492327442 0.18664946054562584 0.17958374492327442 0.1148087626131959
+0.18265692747151055 0.1843600842899051 0.18265692747151055 0.1843600842899051 0.11281496645304091
+0.18540639044789473 0.18254668447093753 0.18540639044789473 0.18254668447093753 0.11403480056225175
+0.2280334728033145 0.11866341533091296 0.2280334728033145 0.11866341533091296 0.14441495858326783
+0.22594142259410943 0.1220537986260819 0.22594142259410943 0.1220537986260819 0.14151241118881466
+0.22384937238490435 0.12544418192125084 0.22384937238490435 0.12544418192125084 0.13882047018769164
+0.22175732217569924 0.12883456521641978 0.22175732217569924 0.12883456521641978 0.1363474196108382
+0.21966527196649413 0.13222494851158872 0.21966527196649413 0.13222494851158872 0.13409480813299177
+0.217573221757289 0.13561533180675767 0.217573221757289 0.13561533180675767 0.1320577071666523
+0.21548117154808388 0.1390057151019266 0.21548117154808386 0.1390057151019266 0.13022524366225333
+0.21338912133887877 0.14239609839709555 0.21338912133887877 0.14239609839709555 0.12858137399689876
+0.21129707112967364 0.1457864816922645 0.21129707112967364 0.1457864816922645 0.12710584521325655
+0.2594142259413912 0.0813691990840546 0.2594142259413912 0.0813691990840546 0.18682450724096647
+0.2573221757321861 0.08475958237922354 0.257322175732186 0.08475958237922354 0.18364681306466488
+0.25523012552298097 0.08814996567439248 0.25523012552298097 0.08814996567439248 0.1802929318775136
+0.25313807531377586 0.09154034896956142 0.2531380753137759 0.09154034896956142 0.17680422085369393
+0.24686192468616053 0.09493073226473037 0.24686192468616053 0.09493073226473037 0.17077566452505397
+0.24476987447695542 0.09832111555989931 0.24476987447695545 0.09832111555989931 0.16713681522499765
+0.2426778242677503 0.10171149885506825 0.2426778242677503 0.10171149885506825 0.16349425900438894
+0.24058577405854523 0.10510188215023719 0.24058577405854523 0.10510188215023719 0.15989010859245578
+0.2384937238493401 0.10849226544540613 0.2384937238493401 0.10849226544540613 0.1563640760682368
+0.236401673640135 0.11188264874057507 0.236401673640135 0.11188264874057507 0.15295243747205045
+0.23430962343092987 0.11527303203574402 0.23430962343092987 0.11527303203574402 0.14968706443378732
+0.23221757322172476 0.11866341533091296 0.23221757322172473 0.11866341533091296 0.1465945669822247
+0.25104602510457075 0.09493073226473037 0.25104602510457075 0.09493073226473037 0.17322378887979853
+0.2803347280334423 0.06102689931304095 0.2803347280334423 0.06102689931304095 0.2054805144836431
+0.2782426778242372 0.06441728260820989 0.27824267782423723 0.06441728260820989 0.2041061699234554
+0.27615062761503206 0.06780766590337883 0.27615062761503206 0.06780766590337883 0.20239241274744088
+0.2677824267782116 0.07458843249371672 0.2677824267782116 0.07458843249371672 0.1951264737124162
+0.27405857740582695 0.07119804919854777 0.2740585774058269 0.07119804919854777 0.2003503352173027
+0.27196652719662184 0.07458843249371672 0.27196652719662184 0.07458843249371672 0.19799813765115395
+0.2656903765690065 0.07797881578888566 0.26569037656900646 0.07797881578888566 0.19244371313880618
+0.2635983263598014 0.0813691990840546 0.2635983263598014 0.0813691990840546 0.1895088068498448
+0.3117154811715189 0.03729421624685836 0.311715481171519 0.03729421624685836 0.21559658210152674
+0.3096234309623138 0.0406845995420273 0.3096234309623138 0.0406845995420273 0.21657077304204161
+0.3075313807531087 0.04407498283719624 0.30753138075310865 0.04407498283719624 0.2173726220424355
+0.3054393305439036 0.04746536613236518 0.3054393305439036 0.04746536613236518 0.21795310487076316
+0.3033472803346985 0.050855749427534125 0.30334728033469854 0.050855749427534125 0.2182702760003146
+0.3012552301254934 0.054246132722703067 0.3012552301254934 0.054246132722703067 0.21829013098535135
+0.2866108786610576 0.05763651601787201 0.28661087866105767 0.05763651601787201 0.20925711903363345
+0.29079497907946783 0.05763651601787201 0.2907949790794678 0.05763651601787201 0.2121090954205576
+0.29497907949787805 0.05763651601787201 0.2949790794978781 0.05763651601787201 0.21503192317223194
+0.29916317991628827 0.05763651601787201 0.2991631799162882 0.05763651601787201 0.21798714039386755
+0.2845188284518525 0.06102689931304095 0.2845188284518525 0.06102689931304095 0.2082994742784248
+0.31799163179913426 0.03390383295168942 0.31799163179913426 0.03390383295168942 0.21659864233761353
+0.31589958158992915 0.03729421624685836 0.3158995815899291 0.03729421624685836 0.21779862185247292
+0.3221757322175445 0.03390383295168942 0.3221757322175445 0.03390383295168942 0.21858173315058352
+0.351464435146416 0.013561533180675767 0.351464435146416 0.013561533180675767 0.21548524286326345
+0.3493723849372109 0.01695191647584471 0.34937238493721084 0.01695191647584471 0.21661537413468102
+0.3472803347280058 0.02034229977101365 0.3472803347280058 0.02034229977101365 0.21797820865919237
+0.3451882845188007 0.02373268306618259 0.34518828451880074 0.02373268306618259 0.21953752214148123
+0.34309623430959557 0.027123066361351533 0.34309623430959557 0.027123066361351533 0.2212473629831763
+0.3263598326359547 0.03390383295168942 0.3263598326359547 0.03390383295168942 0.2204274193879123
+0.3305439330543649 0.03390383295168942 0.3305439330543649 0.03390383295168942 0.22211072849817506
+0.33682008368198024 0.030513449656520475 0.3368200836819803 0.030513449656520475 0.22188706999561816
+0.34100418410039046 0.030513449656520475 0.3410041841003904 0.030513449656520475 0.22305452986703855
+0.33472803347277513 0.03390383295168942 0.33472803347277513 0.03390383295168942 0.22360881786973974
+0.3723849372384671 0.006780766590337883 0.3723849372384671 0.006780766590337883 0.21317798977301305
+0.35774058577403134 0.010171149885506825 0.3577405857740313 0.010171149885506825 0.21488570294815282
+0.36192468619244156 0.010171149885506825 0.3619246861924416 0.010171149885506825 0.21491805929701482
+0.3661087866108518 0.010171149885506825 0.3661087866108517 0.010171149885506825 0.21470274754254318
+0.370292887029262 0.010171149885506825 0.37029288702926205 0.010171149885506825 0.21423502101347244
+0.35564853556482623 0.013561533180675767 0.35564853556482623 0.013561533180675767 0.21586727761407132
+0.3765690376568773 0.006780766590337883 0.3765690376568773 0.006780766590337883 0.212340572082081
+0.14239609839554399 0.21338912133944646 0.14239609839554399 0.21338912133944646 0.09369981902765878
+0.14578648168981317 0.21129707113000076 0.14578648168981315 0.21129707113000076 0.09484030473476672
+0.14917686498356922 0.20920502092062007 0.14917686498356922 0.20920502092062007 0.0961794223078113
+0.15256724827654253 0.2071129707114667 0.15256724827654253 0.2071129707114667 0.09766902562635808
+0.15595753035948387 0.20502078709310625 0.15595753035948387 0.20502078709310625 0.0992648923025079
+0.15934704165451066 0.2029277373559202 0.15934704165451066 0.2029277373559202 0.10092790805548778
+0.16273520516895182 0.20083334269057107 0.16273520516895182 0.20083334269057107 0.10262511162380898
+0.16612175036909366 0.1987371674798053 0.16612175036909368 0.1987371674798053 0.10433014425022312
+0.09493073226473518 0.2510460251046044 0.09493073226473518 0.25104602510460433 0.11715430427918243
+0.09832111555990614 0.24895397489539192 0.09832111555990614 0.24895397489539192 0.11355630790150184
+0.10171149885507284 0.24686192468617504 0.10171149885507284 0.24686192468617504 0.11008198560653228
+0.10510188215019577 0.24058577405854523 0.10510188215019577 0.24058577405854523 0.10580067778062281
+0.10849226544532804 0.23849372384935671 0.10849226544532804 0.23849372384935671 0.10280135575652176
+0.10510188215023149 0.2447698744769535 0.10510188215023149 0.2447698744769535 0.10678903045980882
+0.11188264874043939 0.2364016736401829 0.11188264874043939 0.2364016736401829 0.10010662538547445
+0.11527303203558659 0.2343096234310371 0.11527303203558659 0.2343096234310371 0.09776319909710524
+0.11866341533071044 0.23221757322190154 0.11866341533071044 0.23221757322190154 0.0958088070633731
+0.12205379862586418 0.2301255230127602 0.12205379862586418 0.2301255230127602 0.09426987788784469
+0.12544418192098508 0.22803347280360933 0.12544418192098508 0.22803347280360933 0.09315978103552915
+0.12883456521608774 0.2259414225944439 0.12883456521608774 0.2259414225944439 0.09247795581058967
+0.1322249485110856 0.22384937238528813 0.1322249485110856 0.22384937238528813 0.09221013851406878
+0.13561533180602647 0.2217573221761188 0.13561533180602647 0.2217573221761188 0.09232971226191754
+0.13900571510066345 0.21966527196711025 0.13900571510066342 0.21966527196711025 0.09279999906761814
+0.14239609839531225 0.21757322175841784 0.14239609839531228 0.21757322175841784 0.09357715844477443
+0.07458843249371207 0.2677824267782448 0.07458843249371207 0.26778242677824476 0.13921720245117053
+0.07797881578888007 0.26569037656904215 0.07797881578888007 0.26569037656904215 0.1360082498247028
+0.08136919908404933 0.26359832635983954 0.08136919908404933 0.26359832635983954 0.13262080928024952
+0.08475958237921866 0.2615062761506368 0.08475958237921866 0.2615062761506368 0.12909377342105946
+0.08814996567438908 0.2594142259414335 0.08814996567438908 0.25941422594143354 0.12547075452803177
+0.09154034896955952 0.25732217573222965 0.09154034896955952 0.25732217573222965 0.12179958011663876
+0.09493073226473098 0.25523012552302443 0.09493073226473098 0.25523012552302443 0.11813165931516777
+0.05763651601787211 0.2866108786610885 0.05763651601787211 0.2866108786610884 0.15323673115894218
+0.061026899313041144 0.28451882845188303 0.06102689931304115 0.284518828451883 0.1513164954079116
+0.06441728260820948 0.27824267782426665 0.06441728260820946 0.27824267782426665 0.14828584086039706
+0.06780766590337763 0.27615062761506115 0.06780766590337763 0.27615062761506115 0.14580395745573302
+0.06441728260821014 0.2824267782426774 0.06441728260821013 0.2824267782426774 0.14911383106253373
+0.07119804919854535 0.274058577405856 0.07119804919854535 0.274058577405856 0.14306113648066424
+0.07458843249371243 0.27196652719665176 0.07458843249371243 0.27196652719665176 0.14007904164130472
+0.04407498283719572 0.3033472803347284 0.04407498283719572 0.3033472803347284 0.16016289811245163
+0.04746536613236458 0.30125523012552363 0.04746536613236458 0.30125523012552363 0.15928326806845003
+0.05085574942753373 0.2949790794979089 0.05085574942753373 0.29497907949790886 0.15713805587980942
+0.05085574942753343 0.29916317991631886 0.05085574942753344 0.29916317991631886 0.15815914333758407
+0.05424613272270278 0.292887029288704 0.05424613272270278 0.292887029288704 0.1557696370841308
+0.05763651601787185 0.2907949790794991 0.05763651601787185 0.2907949790794991 0.15412443265484943
+0.027123066361351533 0.3221757322175737 0.027123066361351533 0.32217573221757373 0.16489127041619214
+0.027123066361351533 0.3263598326359837 0.027123066361351533 0.3263598326359837 0.16662917029677538
+0.030513449656520465 0.3200836820083686 0.030513449656520465 0.3200836820083686 0.1646807936098745
+0.03390383295168939 0.3179916317991635 0.03390383295168939 0.3179916317991635 0.1644015725956953
+0.0372942162468582 0.3117154811715483 0.0372942162468582 0.3117154811715483 0.16256891988280875
+0.037294216246858296 0.3158995815899584 0.037294216246858296 0.3158995815899584 0.16401257060660665
+0.040684599542027015 0.3096234309623433 0.040684599542027015 0.3096234309623433 0.16206609094953392
+0.044074982837195825 0.3075313807531382 0.044074982837195825 0.3075313807531382 0.16137593411585646
+0.01695191647584471 0.34100418410041883 0.01695191647584471 0.34100418410041883 0.1716588454224622
+0.02034229977101365 0.3389121338912138 0.02034229977101365 0.3389121338912138 0.1712434284122886
+0.02373268306618259 0.3326359832635987 0.02373268306618259 0.3326359832635987 0.16880647583577302
+0.027123066361351533 0.3305439330543937 0.027123066361351533 0.3305439330543937 0.1685284084773471
+0.02373268306618259 0.3368200836820088 0.02373268306618259 0.3368200836820088 0.17089905837530003
+0.01695191647584471 0.3451882845188289 0.01695191647584471 0.3451882845188288 0.17395803581210278
+0.010171149885506825 0.35774058577405915 0.010171149885506825 0.35774058577405915 0.1802237592448371
+0.01695191647584471 0.349372384937239 0.01695191647584471 0.349372384937239 0.17636662127658043
+0.013561533180675767 0.3556485355648541 0.013561533180675767 0.35564853556485415 0.17947500215570866
+0.01695191647584471 0.3535564853556491 0.01695191647584471 0.35355648535564915 0.17886835748898733
+0.010171149885506825 0.3619246861924692 0.010171149885506825 0.3619246861924692 0.18281972752069
+0.006780766590337883 0.3682008368200842 0.006780766590337883 0.3682008368200842 0.1863728298041657
+0.010171149885506825 0.3661087866108792 0.010171149885506825 0.3661087866108792 0.18545066466564045
+0.006780766590337883 0.3723849372384942 0.006780766590337883 0.3723849372384942 0.18901243645016294
+0.16949857543120161 0.1966394127209902 0.16949857543120161 0.1966394127209902 0.10601990371814031
+0.20920502092046855 0.14917686498743343 0.20920502092046855 0.14917686498743343 0.12577527652882206
+0.20711297071126347 0.15256724828260237 0.20711297071126347 0.15256724828260237 0.12456428929556386
+0.20502092050205836 0.15595763157777132 0.20502092050205836 0.15595763157777132 0.12344661739025929
+0.20292887029285325 0.15934801487294026 0.20292887029285325 0.15934801487294026 0.12239614066175646
+0.17286534130061126 0.1945453033852597 0.17286534130061126 0.1945453033852597 0.10768033089400918
+0.17621836921753137 0.19247018363764729 0.1762183692175314 0.19247018363764726 0.10930040461507447
+0.20083682008364812 0.1627383981681092 0.20083682008364812 0.1627383981681092 0.12138779905602522
+0.198744769874443 0.16612878146327814 0.198744769874443 0.16612878146327814 0.12039836295555024
+0.1966527196652379 0.16951916475844708 0.1966527196652379 0.16951916475844708 0.11940706244590875
+0.17953482415841432 0.19045886047610938 0.1795348241584143 0.19045886047610938 0.11086382374897262
+0.19456066945603276 0.17290954805361602 0.19456066945603276 0.17290954805361602 0.1183961385404424
+0.1925385830756585 0.17627614694501773 0.1925385830756585 0.17627614694501773 0.11738068228805194
+0.19063444081032566 0.17962716074734766 0.19063444081032566 0.17962716074734766 0.11636572235818475
+0.18285624760682884 0.18850096346709178 0.18285624760682884 0.18850096346709178 0.11239194892816746
+0.18876564175924923 0.18294817135066807 0.18876564175924923 0.18294817135066807 0.11530284602558181
+0.18643039381186532 0.18648121537178375 0.1864303938118653 0.18648121537178378 0.11401888130787886
+0.23012552301251965 0.1220537986260819 0.23012552301251965 0.1220537986260819 0.1436955958720532
+0.2280334728033145 0.12544418192125084 0.2280334728033145 0.12544418192125084 0.1410043520280421
+0.22594142259410943 0.12883456521641978 0.22594142259410943 0.12883456521641978 0.13852834360624253
+0.22384937238490435 0.13222494851158872 0.22384937238490435 0.13222494851158872 0.13626841730042896
+0.22175732217569924 0.13561533180675767 0.22175732217569924 0.13561533180675767 0.13421907092670662
+0.21966527196649413 0.1390057151019266 0.21966527196649413 0.1390057151019266 0.13236903154088717
+0.217573221757289 0.14239609839709555 0.217573221757289 0.14239609839709555 0.1307020609538835
+0.21548117154808388 0.1457864816922645 0.21548117154808386 0.1457864816922645 0.1291979322505362
+0.21338912133887877 0.14917686498743343 0.21338912133887877 0.14917686498743343 0.12783350971755048
+0.2615062761505963 0.08475958237922354 0.26150627615059635 0.08475958237922354 0.1863567328617697
+0.2594142259413912 0.08814996567439248 0.2594142259413912 0.08814996567439248 0.18302621103673444
+0.2573221757321861 0.09154034896956142 0.257322175732186 0.09154034896956142 0.17955871729098896
+0.25523012552298097 0.09493073226473037 0.25523012552298097 0.09493073226473037 0.17599744589085078
+0.2489539748953656 0.09832111555989931 0.2489539748953656 0.09832111555989931 0.1695954499264243
+0.24686192468616053 0.10171149885506825 0.24686192468616053 0.10171149885506825 0.1659626459435263
+0.2447698744769554 0.10510188215023719 0.2447698744769554 0.10510188215023719 0.16236735611592154
+0.2426778242677503 0.10849226544540613 0.2426778242677503 0.10849226544540613 0.15884901605496274
+0.24058577405854523 0.11188264874057507 0.24058577405854523 0.11188264874057507 0.15544347824173643
+0.2384937238493401 0.11527303203574402 0.2384937238493401 0.11527303203574402 0.15218205271767601
+0.236401673640135 0.11866341533091296 0.236401673640135 0.11866341533091296 0.14909067311308813
+0.23430962343092987 0.1220537986260819 0.23430962343092987 0.1220537986260819 0.146189235791387
+0.2531380753137758 0.09832111555989931 0.2531380753137758 0.09832111555989931 0.17238623026882782
+0.2824267782426474 0.06441728260820989 0.28242677824264734 0.06441728260820989 0.2069973915653918
+0.2803347280334423 0.06780766590337883 0.2803347280334423 0.06780766590337883 0.20535364774920165
+0.2782426778242372 0.07119804919854777 0.27824267782423723 0.07119804919854777 0.203378825726891
+0.26987447698741673 0.07797881578888566 0.2698744769874168 0.07797881578888566 0.19536042710812818
+0.27615062761503206 0.07458843249371672 0.27615062761503206 0.07458843249371672 0.20109072360538902
+0.27405857740582695 0.07797881578888566 0.2740585774058269 0.07797881578888566 0.19851364582282063
+0.2677824267782116 0.0813691990840546 0.2677824267782116 0.0813691990840546 0.19246742088923782
+0.2656903765690065 0.08475958237922354 0.26569037656900646 0.08475958237922354 0.1893540668978633
+0.31380753138072404 0.0406845995420273 0.31380753138072404 0.0406845995420273 0.2188868267531794
+0.3117154811715189 0.04407498283719624 0.311715481171519 0.04407498283719624 0.21980787250076775
+0.3096234309623138 0.04746536613236518 0.3096234309623138 0.04746536613236518 0.22051203181741827
+0.3075313807531087 0.050855749427534125 0.30753138075310865 0.050855749427534125 0.22095651097079608
+0.3054393305439036 0.054246132722703067 0.3054393305439036 0.054246132722703067 0.22110636225748256
+0.3033472803346985 0.05763651601787201 0.30334728033469854 0.05763651601787201 0.2209350635055515
+0.2887029288702627 0.06102689931304095 0.2887029288702627 0.06102689931304095 0.21124146487482576
+0.29288702928867294 0.06102689931304095 0.29288702928867294 0.06102689931304095 0.21426967203440625
+0.29707112970708316 0.06102689931304095 0.29707112970708316 0.06102689931304095 0.21734449327954017
+0.3012552301254934 0.06102689931304095 0.3012552301254934 0.06102689931304095 0.22042480088851515
+0.2866108786610576 0.06441728260820989 0.28661087866105767 0.06441728260820989 0.2100279577899178
+0.32008368200833937 0.03729421624685836 0.3200836820083394 0.03729421624685836 0.21989780112720894
+0.31799163179913426 0.0406845995420273 0.31799163179913426 0.0406845995420273 0.22110812677279537
+0.3242677824267496 0.03729421624685836 0.32426778242674953 0.03729421624685836 0.2218657401410471
+0.3535564853556211 0.01695191647584471 0.3535564853556212 0.01695191647584471 0.2171051649175401
+0.351464435146416 0.02034229977101365 0.351464435146416 0.02034229977101365 0.21857658080289188
+0.3493723849372109 0.02373268306618259 0.34937238493721084 0.02373268306618259 0.2202468273855491
+0.3472803347280058 0.027123066361351533 0.3472803347280058 0.027123066361351533 0.22207132214803058
+0.3451882845188007 0.030513449656520475 0.34518828451880074 0.030513449656520475 0.22399801039719866
+0.3284518828451598 0.03729421624685836 0.32845188284515986 0.03729421624685836 0.22367587263618158
+0.33263598326357 0.03729421624685836 0.33263598326356997 0.03729421624685836 0.2253038093994628
+0.33891213389118535 0.03390383295168942 0.33891213389118535 0.03390383295168942 0.22490121210786948
+0.34309623430959557 0.03390383295168942 0.34309623430959557 0.03390383295168942 0.22596996229429164
+0.33682008368198024 0.03729421624685836 0.3368200836819803 0.03729421624685836 0.2267276104439734
+0.3744769874476722 0.010171149885506825 0.37447698744767216 0.010171149885506825 0.21351179656921074
+0.35983263598323645 0.013561533180675767 0.35983263598323645 0.013561533180675767 0.21600973756052302
+0.36401673640164667 0.013561533180675767 0.36401673640164667 0.013561533180675767 0.21590530436662156
+0.3682008368200569 0.013561533180675767 0.3682008368200569 0.013561533180675767 0.2155485211939668
+0.3723849372384671 0.013561533180675767 0.3723849372384671 0.013561533180675767 0.21493568772948599
+0.35774058577403134 0.01695191647584471 0.3577405857740313 0.01695191647584471 0.21735653176178057
+0.38075313807528754 0.006780766590337883 0.38075313807528754 0.006780766590337883 0.21124685394133494
+0.38493723849369776 0.006780766590337883 0.38493723849369776 0.006780766590337883 0.20989713168509858
+0.389121338912108 0.006780766590337883 0.389121338912108 0.006780766590337883 0.20829284818726168
+0.3933054393305182 0.006780766590337883 0.3933054393305182 0.006780766590337883 0.20643643248250618
+0.37866108786608244 0.010171149885506825 0.3786610878660825 0.010171149885506825 0.21253152547766294
+0.1457864816896308 0.21548117154967436 0.1457864816896308 0.21548117154967436 0.09461329583368032
+0.14917686498388658 0.21338912134038926 0.14917686498388658 0.21338912134038926 0.09585942101906701
+0.15256724827752763 0.21129707113061957 0.15256724827752763 0.2112970711306196 0.09726799930303742
+0.1559576315700347 0.20920502092073678 0.1559576315700347 0.20920502092073678 0.0987949613259904
+0.15934787854808646 0.20711279102944227 0.15934787854808644 0.20711279102944227 0.1004011140589574
+0.1627375546609485 0.2050199127941685 0.1627375546609485 0.2050199127941685 0.10205304415306439
+0.16612638334092703 0.20292614031613546 0.16612638334092703 0.20292614031613546 0.10372371594539022
+0.1695125228018893 0.20083053396669573 0.1695125228018893 0.20083053396669573 0.10539201468248215
+0.0983211155599031 0.2531380753138177 0.0983211155599031 0.2531380753138177 0.11452117450124004
+0.10171149885507541 0.25104602510460655 0.1017114988550754 0.25104602510460655 0.11102404619617688
+0.10510188215024824 0.24895397489538937 0.10510188215024825 0.24895397489538937 0.10769662047355659
+0.10849226544537456 0.24267782426772977 0.10849226544537456 0.24267782426772974 0.10373369436350106
+0.11188264874049923 0.24058577405852113 0.11188264874049923 0.24058577405852113 0.10096871667784359
+0.10849226544541561 0.24686192468616297 0.10849226544541561 0.24686192468616297 0.10459404313932454
+0.11527303203559953 0.23849372384934756 0.11527303203559953 0.23849372384934756 0.09854099206046651
+0.11866341533066038 0.23640167364020145 0.11866341533066038 0.23640167364020145 0.09648913946378301
+0.12205379862578836 0.23430962343110406 0.12205379862578836 0.2343096234311041 0.09484122627968326
+0.12544418192087325 0.23221757322202607 0.12544418192087325 0.2322175732220261 0.09361296462384737
+0.12883456521601463 0.2301255230129292 0.12883456521601463 0.23012552301292918 0.09280669494666599
+0.13222494851108393 0.22803347280381173 0.13222494851108393 0.22803347280381173 0.09241138425310264
+0.13561533180610383 0.22594142259467065 0.13561533180610383 0.22594142259467062 0.09240370298885447
+0.13900571510114731 0.22384937238533606 0.13900571510114731 0.22384937238533606 0.09275005181005426
+0.14239609839534864 0.22175732217672026 0.14239609839534864 0.22175732217672026 0.09340924904009255
+0.14578648168922623 0.2196652719682921 0.14578648168922623 0.2196652719682921 0.09433550983486401
+0.07797881578887862 0.2698744769874482 0.07797881578887862 0.2698744769874482 0.13688501234515685
+0.08136919908404662 0.26778242677824643 0.08136919908404662 0.26778242677824643 0.13351176417795418
+0.08475958237921387 0.26569037656904554 0.08475958237921387 0.26569037656904554 0.12999703953846173
+0.08814996567438331 0.2635983263598445 0.08814996567438331 0.2635983263598445 0.12638319430295417
+0.09154034896955278 0.2615062761506434 0.09154034896955278 0.2615062761506434 0.1227166977460329
+0.09493073226472398 0.2594142259414412 0.09493073226472398 0.2594142259414412 0.11904751358275655
+0.09832111555989496 0.257322175732238 0.09832111555989496 0.257322175732238 0.11542832109864531
+0.06102689931304098 0.288702928870294 0.06102689931304097 0.288702928870294 0.1521984010010237
+0.06441728260821013 0.28661087866108864 0.06441728260821013 0.28661087866108864 0.14999381294572814
+0.06780766590337889 0.2803347280334717 0.06780766590337889 0.28033472803347165 0.1466377267315482
+0.07119804919854722 0.27824267782426565 0.07119804919854722 0.27824267782426565 0.1439032491655483
+0.06780766590337929 0.2845188284518831 0.06780766590337929 0.2845188284518831 0.14751914066623348
+0.07458843249371482 0.27615062761505976 0.07458843249371482 0.27615062761505976 0.14093132163624802
+0.07797881578888159 0.27405857740585454 0.07797881578888159 0.27405857740585454 0.1377484574195161
+0.04746536613236458 0.3054393305439333 0.04746536613236458 0.3054393305439333 0.16046958597825065
+0.05085574942753326 0.3033472803347284 0.05085574942753326 0.3033472803347284 0.15932375180414013
+0.0542461327227024 0.2970711297071141 0.0542461327227024 0.2970711297071141 0.1567735486997264
+0.0542461327227021 0.30125523012552374 0.0542461327227021 0.30125523012552374 0.15792110449733776
+0.057636516017871404 0.2949790794979094 0.057636516017871404 0.2949790794979094 0.15511573598121872
+0.061026899313040534 0.2928870292887045 0.06102689931304053 0.2928870292887045 0.15318126680195107
+0.030513449656520475 0.3242677824267787 0.030513449656520475 0.32426778242677873 0.1663735469974175
+0.030513449656520475 0.3284518828451887 0.030513449656520475 0.3284518828451887 0.16823538008005845
+0.03390383295168942 0.3221757322175737 0.03390383295168942 0.32217573221757373 0.16605488674659485
+0.03729421624685835 0.3200836820083686 0.03729421624685835 0.3200836820083686 0.1656321996854755
+0.04068459954202717 0.3138075313807533 0.04068459954202717 0.3138075313807533 0.16347570619213334
+0.040684599542027265 0.3179916317991635 0.040684599542027265 0.3179916317991635 0.16506726747836117
+0.044074982837196 0.3117154811715482 0.044074982837196 0.3117154811715482 0.1627569331650682
+0.047465366132364774 0.3096234309623431 0.047465366132364774 0.3096234309623431 0.16182708628516881
+0.02034229977101365 0.3430962343096238 0.02034229977101365 0.3430962343096238 0.17350792286604214
+0.02373268306618259 0.34100418410041883 0.02373268306618259 0.34100418410041883 0.17313387854882553
+0.027123066361351533 0.3347280334728038 0.027123066361351533 0.3347280334728038 0.17058695832940154
+0.030513449656520475 0.3326359832635987 0.030513449656520475 0.3326359832635987 0.17026587426880282
+0.027123066361351533 0.3389121338912138 0.027123066361351533 0.3389121338912138 0.17279795205861717
+0.02034229977101365 0.34728033472803393 0.02034229977101365 0.34728033472803393 0.17589201985980496
+0.013561533180675767 0.35983263598326415 0.013561533180675767 0.35983263598326415 0.182059651709457
+0.02034229977101365 0.35146443514644404 0.02034229977101365 0.35146443514644404 0.1783798351322506
+0.01695191647584471 0.35774058577405915 0.01695191647584471 0.35774058577405915 0.18144487921967942
+0.02034229977101365 0.3556485355648541 0.02034229977101365 0.35564853556485415 0.18095302020198925
+0.013561533180675767 0.3640167364016742 0.013561533180675767 0.3640167364016742 0.18468916259986032
+0.010171149885506825 0.3702928870292892 0.010171149885506825 0.3702928870292892 0.18809675783663707
+0.013561533180675767 0.3682008368200842 0.013561533180675767 0.3682008368200842 0.18734328846842987
+0.006780766590337883 0.3765690376569042 0.006780766590337883 0.3765690376569042 0.19163867206610385
+0.010171149885506825 0.3744769874476992 0.010171149885506825 0.3744769874476992 0.19073831094487195
+0.006780766590337883 0.38075313807531425 0.006780766590337883 0.38075313807531425 0.19423313140964302
+0.006780766590337883 0.38493723849372435 0.006780766590337883 0.38493723849372435 0.19677847961468584
+0.1728889724948616 0.1987354757946963 0.1728889724948616 0.1987354757946963 0.1070408286369785
+0.21129707112967364 0.15256724828260237 0.21129707112967364 0.15256724828260237 0.1265838618331068
+0.20920502092046855 0.15595763157777132 0.20920502092046855 0.15595763157777132 0.1254233422768765
+0.20711297071126347 0.15934801487294026 0.20711297071126347 0.15934801487294026 0.12432658544274368
+0.20502092050205836 0.1627383981681092 0.20502092050205836 0.1627383981681092 0.12326937809450879
+0.1762518809634831 0.19665089391057902 0.1762518809634831 0.19665089391057902 0.10865904908357012
+0.17959032441775036 0.19460436839352016 0.17959032441775036 0.19460436839352016 0.1102353605497476
+0.20292887029285325 0.16612878146327814 0.20292887029285325 0.16612878146327814 0.1222293851570468
+0.20083682008364812 0.16951916475844708 0.20083682008364812 0.16951916475844708 0.12118672363856144
+0.198744769874443 0.17290954805361602 0.198744769874443 0.17290954805361602 0.12012439153849652
+0.18290015686878894 0.19261980926854694 0.18290015686878894 0.19261980926854694 0.11176744949969859
+0.1966527196652379 0.176299931348785 0.1966527196652379 0.176299931348785 0.11902854523719919
+0.1946487352597804 0.1796693123841149 0.1946487352597804 0.1796693123841149 0.11792476828894179
+0.19269280647330841 0.1830366516901325 0.19269280647330841 0.1830366516901325 0.11678772221689555
+0.18618347491020146 0.19072679530317369 0.18618347491020146 0.19072679530317369 0.11325765639680517
+0.19076824403953413 0.18642603304612543 0.19076824403953416 0.1864260330461254 0.11561497253463317
+0.18914789137079388 0.18932673960456803 0.18914789137079388 0.18932673960456803 0.11452093462849337
+0.23221757322172476 0.12544418192125084 0.23221757322172473 0.12544418192125084 0.14349115741937202
+0.23012552301251965 0.12883456521641978 0.23012552301251965 0.12883456521641978 0.1410031874928037
+0.2280334728033145 0.13222494851158872 0.2280334728033145 0.13222494851158872 0.13872549720067207
+0.22594142259410943 0.13561533180675767 0.22594142259410943 0.13561533180675767 0.13665204587274846
+0.22384937238490435 0.1390057151019266 0.22384937238490435 0.1390057151019266 0.13477120383992527
+0.22175732217569924 0.14239609839709555 0.22175732217569924 0.14239609839709555 0.133066589372094
+0.21966527196649413 0.1457864816922645 0.21966527196649413 0.1457864816922645 0.13151806091938315
+0.217573221757289 0.14917686498743343 0.217573221757289 0.14917686498743343 0.13010279669861236
+0.21548117154808388 0.15256724828260237 0.21548117154808386 0.15256724828260237 0.12879639271581778
+0.2635983263598014 0.08814996567439248 0.2635983263598014 0.08814996567439248 0.18605909093369496
+0.2615062761505963 0.09154034896956142 0.26150627615059635 0.09154034896956142 0.18262398032896668
+0.2594142259413912 0.09493073226473037 0.2594142259413912 0.09493073226473037 0.179091914136998
+0.257322175732186 0.09832111555989931 0.257322175732186 0.09832111555989931 0.17550665249642108
+0.2510460251045707 0.10171149885506825 0.2510460251045707 0.10171149885506825 0.16876843653410653
+0.2489539748953656 0.10510188215023719 0.2489539748953656 0.10510188215023719 0.16518584927373328
+0.24686192468616053 0.10849226544540613 0.24686192468616053 0.10849226544540613 0.16167757603846147
+0.2447698744769554 0.11188264874057507 0.2447698744769554 0.11188264874057507 0.15827900438417905
+0.2426778242677503 0.11527303203574402 0.2426778242677503 0.11527303203574402 0.1550208523436131
+0.24058577405854523 0.11866341533091296 0.24058577405854523 0.11866341533091296 0.15192835817384595
+0.2384937238493401 0.1220537986260819 0.2384937238493401 0.1220537986260819 0.14902065641049608
+0.236401673640135 0.12544418192125084 0.236401673640135 0.12544418192125084 0.1463103831037923
+0.2552301255229809 0.10171149885506825 0.2552301255229809 0.10171149885506825 0.1719114018844005
+0.2845188284518525 0.06780766590337883 0.2845188284518525 0.06780766590337883 0.208470634879903
+0.2824267782426474 0.07119804919854777 0.28242677824264734 0.07119804919854777 0.20657946091183196
+0.2803347280334423 0.07458843249371672 0.2803347280334423 0.07458843249371672 0.20437171619458197
+0.27196652719662184 0.0813691990840546 0.27196652719662184 0.0813691990840546 0.1956775921125691
+0.2782426778242372 0.07797881578888566 0.27824267782423723 0.07797881578888566 0.2018712823144513
+0.27615062761503206 0.0813691990840546 0.27615062761503206 0.0813691990840546 0.19910781870598024
+0.26987447698741673 0.08475958237922354 0.2698744769874168 0.08475958237922354 0.1926173572685251
+0.2677824267782116 0.08814996567439248 0.2677824267782116 0.08814996567439248 0.18937155295372773
+0.31589958158992915 0.04407498283719624 0.3158995815899291 0.04407498283719624 0.22215689029497776
+0.31380753138072404 0.04746536613236518 0.31380753138072404 0.04746536613236518 0.22299371826062833
+0.3117154811715189 0.050855749427534125 0.311715481171519 0.050855749427534125 0.22357500975925718
+0.3096234309623138 0.054246132722703067 0.3096234309623138 0.054246132722703067 0.22386489778550892
+0.3075313807531087 0.05763651601787201 0.30753138075310865 0.05763651601787201 0.2238358739610258
+0.3054393305439036 0.06102689931304095 0.3054393305439036 0.06102689931304095 0.22346911105102327
+0.29079497907946783 0.06441728260820989 0.2907949790794678 0.06441728260820989 0.2131604083522758
+0.29497907949787805 0.06441728260820989 0.2949790794978781 0.06441728260820989 0.216354087938174
+0.29916317991628827 0.06441728260820989 0.2991631799162882 0.06441728260820989 0.2195664917891497
+0.3033472803346985 0.06441728260820989 0.30334728033469854 0.06441728260820989 0.22275451886892297
+0.2887029288702627 0.06780766590337883 0.2887029288702627 0.06780766590337883 0.21170538922893226
+0.3221757322175445 0.0406845995420273 0.3221757322175445 0.0406845995420273 0.22320462620612105
+0.32008368200833937 0.04407498283719624 0.3200836820083394 0.04407498283719624 0.22438790332438632
+0.3263598326359547 0.0406845995420273 0.3263598326359547 0.0406845995420273 0.22514809061760135
+0.35564853556482623 0.02034229977101365 0.35564853556482623 0.02034229977101365 0.2189372303945004
+0.3535564853556211 0.02373268306618259 0.3535564853556212 0.02373268306618259 0.22071866387589514
+0.351464435146416 0.027123066361351533 0.351464435146416 0.027123066361351533 0.2226576484491851
+0.3493723849372109 0.030513449656520475 0.34937238493721084 0.030513449656520475 0.22470333024942235
+0.3472803347280058 0.03390383295168942 0.3472803347280058 0.03390383295168942 0.22679973443385285
+0.3305439330543649 0.0406845995420273 0.3305439330543649 0.0406845995420273 0.2269125066926259
+0.33472803347277513 0.0406845995420273 0.33472803347277513 0.0406845995420273 0.22847439199367328
+0.34100418410039046 0.03729421624685836 0.3410041841003904 0.03729421624685836 0.22792797228347475
+0.3451882845188007 0.03729421624685836 0.34518828451880074 0.03729421624685836 0.22888833795520339
+0.33891213389118535 0.0406845995420273 0.33891213389118535 0.0406845995420273 0.22981301248263822
+0.3765690376568773 0.013561533180675767 0.3765690376568773 0.013561533180675767 0.2140647337464661
+0.36192468619244156 0.01695191647584471 0.3619246861924416 0.01695191647584471 0.21736134626716055
+0.3661087866108518 0.01695191647584471 0.3661087866108517 0.01695191647584471 0.2171134396950233
+0.370292887029262 0.01695191647584471 0.37029288702926205 0.01695191647584471 0.21660850259899914
+0.3744769874476722 0.01695191647584471 0.37447698744767216 0.01695191647584471 0.21584396036091405
+0.35983263598323645 0.02034229977101365 0.35983263598323645 0.02034229977101365 0.21905119749521365
+0.3974895397489284 0.006780766590337883 0.3974895397489284 0.006780766590337883 0.20433113692834293
+0.38284518828449265 0.010171149885506825 0.3828451882844926 0.010171149885506825 0.21129404937901983
+0.3870292887029029 0.010171149885506825 0.38702928870290293 0.010171149885506825 0.20980044522105298
+0.3912133891213131 0.010171149885506825 0.39121338912131304 0.010171149885506825 0.2080528628097986
+0.3953974895397233 0.010171149885506825 0.39539748953972337 0.010171149885506825 0.20605435839002603
+0.38075313807528754 0.013561533180675767 0.38075313807528754 0.013561533180675767 0.21293507557309369
+0.40167364016733864 0.006780766590337883 0.4016736401673386 0.006780766590337883 0.20198087495284686
+0.14917686498317956 0.21757322175978513 0.14917686498317953 0.21757322175978513 0.09548136157587456
+0.1525672482771076 0.21548117155116495 0.15256724827710763 0.21548117155116495 0.09680022393570918
+0.15595763157063872 0.2133891213420589 0.15595763157063872 0.2133891213420589 0.09824849592837957
+0.15934801486265196 0.21129707113203103 0.15934801486265196 0.21129707113203103 0.09978709900455345
+0.16273829170148438 0.20920488060099407 0.16273829170148438 0.20920488060099407 0.10138249198770964
+0.16612828416299316 0.2071123475126545 0.16612828416299316 0.20711234751265453 0.10300727180278992
+0.16951763830121316 0.20501898147807074 0.16951763830121316 0.20501898147807074 0.10464037834736704
+0.17290348639290584 0.20292400668123856 0.17290348639290584 0.20292400668123856 0.10626622666470244
+0.1017114988550677 0.2552301255230329 0.1017114988550677 0.2552301255230329 0.11191352925680433
+0.10510188215024163 0.253138075313826 0.10510188215024163 0.253138075313826 0.10855803728091225
+0.10849226544541994 0.2510460251046112 0.10849226544541994 0.2510460251046112 0.10541570781085752
+0.11188264874056603 0.24476987447692822 0.11188264874056601 0.24476987447692822 0.10176832011366332
+0.11527303203568652 0.2426778242676896 0.11527303203568652 0.2426778242676896 0.09926612266232088
+0.11188264874059688 0.24895397489538515 0.11188264874059688 0.24895397489538515 0.10253754906863165
+0.11866341533077233 0.240585774058479 0.11866341533077233 0.240585774058479 0.09712647613609593
+0.12205379862581207 0.238493723849334 0.12205379862581207 0.238493723849334 0.09537855678198347
+0.12544418192077736 0.2364016736402406 0.12544418192077736 0.2364016736402406 0.0940398856476285
+0.12883456521587017 0.23430962343123407 0.1288345652158702 0.23430962343123407 0.09311521886991612
+0.13222494851087938 0.23221757322225925 0.13222494851087938 0.23221757322225925 0.09259636688500529
+0.1356153318059897 0.23012552301324007 0.1356153318059897 0.23012552301324005 0.0924630350434457
+0.13900571510094734 0.22803347280417977 0.13900571510094736 0.22803347280417977 0.09268460081002088
+0.1423960983957062 0.22594142259509373 0.1423960983957062 0.22594142259509373 0.0932225835288434
+0.14578648168985103 0.22384937238630123 0.14578648168985106 0.22384937238630123 0.0940334702030648
+0.149176864983433 0.22175732217743604 0.149176864983433 0.22175732217743604 0.09507155426024962
+0.0813691990840472 0.271966527196651 0.0813691990840472 0.271966527196651 0.13438644930728252
+0.08475958237921127 0.2698744769874486 0.08475958237921127 0.2698744769874486 0.13088200998981814
+0.08814996567437845 0.26778242677824937 0.08814996567437845 0.26778242677824937 0.12727635113676647
+0.09154034896954426 0.26569037656905165 0.09154034896954426 0.26569037656905165 0.12361468104992342
+0.094930732264714 0.2635983263598535 0.094930732264714 0.2635983263598534 0.1199455922330648
+0.09832111555988361 0.26150627615065464 0.09832111555988361 0.26150627615065464 0.11632030216932517
+0.101711498855056 0.2594142259414542 0.101711498855056 0.2594142259414542 0.11279170508099899
+0.06441728260820968 0.29079497907949964 0.06441728260820968 0.29079497907949964 0.15097198651359267
+0.06780766590337896 0.28870292887029453 0.06780766590337896 0.28870292887029453 0.1484959101616844
+0.07119804919854836 0.2824267782426771 0.07119804919854834 0.2824267782426771 0.14478888028441103
+0.07458843249371702 0.28033472803347076 0.07458843249371704 0.28033472803347076 0.14182331994572414
+0.07119804919854832 0.2866108786610891 0.07119804919854832 0.2866108786610891 0.14576703735227511
+0.07797881578888492 0.278242677824264 0.07797881578888492 0.278242677824264 0.13864826051394363
+0.08136919908405146 0.2761506276150573 0.08136919908405148 0.2761506276150573 0.13529469085179976
+0.05085574942753349 0.3075313807531381 0.05085574942753349 0.3075313807531381 0.16066250615622257
+0.0542461327227021 0.3054393305439332 0.0542461327227021 0.3054393305439332 0.15924546507598206
+0.0576365160178709 0.29916317991631924 0.0576365160178709 0.29916317991631924 0.15625051728414674
+0.057636516017870607 0.3033472803347285 0.05763651601787061 0.3033472803347285 0.1575644194477316
+0.061026899313039895 0.29707112970711474 0.061026899313039895 0.29707112970711474 0.15430715655437566
+0.06441728260820895 0.29497907949791025 0.06441728260820895 0.2949790794979102 0.15209245934061935
+0.03390383295168942 0.3263598326359837 0.03390383295168942 0.3263598326359837 0.16788521812858725
+0.03390383295168942 0.3305439330543937 0.03390383295168942 0.3305439330543937 0.16989383773497332
+0.03729421624685836 0.3242677824267787 0.03729421624685836 0.32426778242677873 0.16743692631122561
+0.0406845995420273 0.3221757322175737 0.0406845995420273 0.32217573221757373 0.16685208313996178
+0.04407498283719616 0.3158995815899583 0.04407498283719616 0.3158995815899583 0.1643257666471266
+0.04407498283719624 0.32008368200836856 0.04407498283719624 0.32008368200836856 0.16609601151525388
+0.04746536613236502 0.3138075313807531 0.04746536613236502 0.3138075313807531 0.16337815581265666
+0.05085574942753379 0.31171548117154796 0.05085574942753379 0.31171548117154796 0.16220033746469278
+0.02373268306618259 0.3451882845188289 0.02373268306618259 0.3451882845188288 0.17549887657126775
+0.027123066361351533 0.3430962343096238 0.027123066361351533 0.3430962343096238 0.17515009610374174
+0.030513449656520475 0.3368200836820088 0.030513449656520475 0.3368200836820088 0.17245938661555152
+0.03390383295168942 0.3347280334728038 0.03390383295168942 0.3347280334728038 0.1720764002509714
+0.030513449656520475 0.34100418410041883 0.030513449656520475 0.34100418410041883 0.1748054334408243
+0.02373268306618259 0.349372384937239 0.02373268306618259 0.349372384937239 0.17797852374380677
+0.01695191647584471 0.3619246861924692 0.01695191647584471 0.3619246861924692 0.18407632341403748
+0.02373268306618259 0.3535564853556491 0.02373268306618259 0.35355648535564915 0.18055446213817972
+0.02034229977101365 0.35983263598326415 0.02034229977101365 0.35983263598326415 0.18359141495769582
+0.02373268306618259 0.35774058577405915 0.02373268306618259 0.35774058577405915 0.18320618776971262
+0.01695191647584471 0.3661087866108792 0.01695191647584471 0.3661087866108792 0.18674194117766427
+0.006780766590337883 0.38912133891213446 0.006780766590337883 0.38912133891213446 0.19925873702441363
+0.013561533180675767 0.3723849372384942 0.013561533180675767 0.3723849372384942 0.1900016930919626
+0.01695191647584471 0.3702928870292892 0.01695191647584471 0.3702928870292892 0.18942067671177723
+0.010171149885506825 0.37866108786610925 0.010171149885506825 0.37866108786610925 0.19335618963341528
+0.013561533180675767 0.3765690376569042 0.013561533180675767 0.3765690376569042 0.1926444357783389
+0.010171149885506825 0.38284518828451936 0.010171149885506825 0.38284518828451936 0.19593220556285965
+0.010171149885506825 0.38702928870292946 0.010171149885506825 0.38702928870292946 0.19844943691785263
+0.006780766590337883 0.39330543933054457 0.006780766590337883 0.39330543933054457 0.20165950242296837
+0.006780766590337883 0.3974895397489546 0.006780766590337883 0.3974895397489546 0.2039681172526465
+0.006780766590337883 0.4016736401673647 0.006780766590337883 0.4016736401673647 0.20617377461831052
+0.17627863902571173 0.20083149718109483 0.17627863902571173 0.20083149718109486 0.10787297517946566
+0.21338912133887877 0.15595763157777132 0.21338912133887877 0.15595763157777132 0.12757391691255807
+0.21129707112967364 0.15934801487294026 0.21129707112967364 0.15934801487294026 0.12641086929217568
+0.20920502092046855 0.1627383981681092 0.20920502092046855 0.1627383981681092 0.12528401301533257
+0.20711297071126347 0.16612878146327814 0.20711297071126347 0.16612878146327814 0.12417205697043217
+0.179637293447115 0.1987559912336683 0.179637293447115 0.1987559912336683 0.10945278879701419
+0.18296629781213655 0.1967192779386294 0.18296629781213655 0.1967192779386294 0.11099862468982248
+0.20502092050205836 0.16951916475844708 0.20502092050205836 0.16951916475844708 0.1230561839099615
+0.20292887029285325 0.17290954805361602 0.20292887029285325 0.17290954805361602 0.12192042644906538
+0.20083682008364812 0.17629993134878497 0.20083682008364812 0.17629993134878497 0.12075188316376641
+0.1862645020940506 0.19471511278617432 0.18626450209405057 0.19471511278617434 0.11251805698947002
+0.19874476987444303 0.1796903146439539 0.19874476987444303 0.1796903146439539 0.1195406782657872
+0.19675446569345875 0.18307586487258867 0.19675446569345875 0.18307586487258867 0.11831958483896941
+0.1947885009296231 0.1865121047488788 0.1947885009296231 0.1865121047488788 0.1170439801521203
+0.18950032582974496 0.19271620984786686 0.18950032582974496 0.19271620984786686 0.11401054703326419
+0.19275712732742278 0.19022933397811378 0.1927571273274228 0.19022933397811378 0.11564624302490192
+0.23430962343092987 0.12883456521641978 0.23430962343092987 0.12883456521641978 0.1438035427549118
+0.23221757322172473 0.13222494851158872 0.23221757322172473 0.13222494851158872 0.1414996532026548
+0.23012552301251965 0.13561533180675767 0.23012552301251965 0.13561533180675767 0.13939216418624592
+0.2280334728033145 0.1390057151019266 0.2280334728033145 0.1390057151019266 0.1374691233726595
+0.22594142259410943 0.14239609839709555 0.22594142259410943 0.14239609839709555 0.13571404372602233
+0.22384937238490435 0.1457864816922645 0.22384937238490435 0.1457864816922645 0.13410691140657482
+0.22175732217569924 0.14917686498743343 0.22175732217569924 0.14917686498743343 0.1326252660605137
+0.21966527196649413 0.15256724828260237 0.21966527196649413 0.15256724828260237 0.131245286009139
+0.217573221757289 0.15595763157777132 0.217573221757289 0.15595763157777132 0.1299428185319572
+0.2656903765690065 0.09154034896956142 0.26569037656900646 0.09154034896956142 0.18598156244412964
+0.2635983263598014 0.09493073226473037 0.2635983263598014 0.09493073226473037 0.18249044036208117
+0.26150627615059624 0.09832111555989931 0.26150627615059624 0.09832111555989931 0.17894177224010355
+0.25941422594139113 0.10171149885506825 0.25941422594139113 0.10171149885506825 0.17537851316712058
+0.2531380753137758 0.10510188215023719 0.2531380753137758 0.10510188215023719 0.1683476786231204
+0.2510460251045707 0.10849226544540613 0.2510460251045707 0.10849226544540613 0.16485419980577617
+0.2489539748953656 0.11188264874057507 0.2489539748953656 0.11188264874057507 0.16146583795782218
+0.24686192468616053 0.11527303203574402 0.24686192468616053 0.11527303203574402 0.15821268201567873
+0.2447698744769554 0.11866341533091296 0.2447698744769554 0.11866341533091296 0.1551192510183511
+0.2426778242677503 0.1220537986260819 0.2426778242677503 0.1220537986260819 0.1522039066069706
+0.24058577405854523 0.12544418192125084 0.24058577405854523 0.12544418192125084 0.14947850466446141
+0.23849372384934006 0.12883456521641978 0.23849372384934006 0.12883456521641978 0.14694831463717117
+0.257322175732186 0.10510188215023719 0.257322175732186 0.10510188215023719 0.17184183060471256
+0.2866108786610576 0.07119804919854777 0.28661087866105767 0.07119804919854777 0.20991386315251473
+0.2845188284518525 0.07458843249371672 0.2845188284518525 0.07458843249371672 0.2078024859966465
+0.2824267782426474 0.07797881578888566 0.28242677824264734 0.07797881578888566 0.20539460362173712
+0.27405857740582695 0.08475958237922354 0.2740585774058269 0.08475958237922354 0.19611584392982848
+0.2803347280334423 0.0813691990840546 0.2803347280334423 0.0813691990840546 0.20271941834239407
+0.2782426778242372 0.08475958237922354 0.27824267782423723 0.08475958237922354 0.19981105403840982
+0.27196652719662184 0.08814996567439248 0.27196652719662184 0.08814996567439248 0.1929337340798204
+0.26987447698741673 0.09154034896956142 0.2698744769874168 0.09154034896956142 0.18960265071120694
+0.31799163179913426 0.04746536613236518 0.31799163179913426 0.04746536613236518 0.22536462094189744
+0.31589958158992915 0.050855749427534125 0.3158995815899291 0.050855749427534125 0.2260904256706839
+0.31380753138072404 0.054246132722703067 0.31380753138072404 0.054246132722703067 0.2265285699986435
+0.3117154811715189 0.05763651601787201 0.311715481171519 0.05763651601787201 0.2266505815491646
+0.3096234309623138 0.06102689931304095 0.3096234309623138 0.06102689931304095 0.22643662537162976
+0.3075313807531087 0.06441728260820989 0.30753138075310865 0.06441728260820989 0.22587559357674283
+0.29288702928867294 0.06780766590337883 0.29288702928867294 0.06780766590337883 0.2150163046118061
+0.29707112970708316 0.06780766590337883 0.29707112970708316 0.06780766590337883 0.21835958187537188
+0.3012552301254934 0.06780766590337883 0.3012552301254934 0.06780766590337883 0.22169056711058713
+0.3054393305439036 0.06780766590337883 0.3054393305439036 0.06780766590337883 0.22496495511811207
+0.29079497907946783 0.07119804919854777 0.2907949790794678 0.07119804919854777 0.21333959039282388
+0.3242677824267496 0.04407498283719624 0.32426778242674953 0.04407498283719624 0.22647094272753995
+0.3221757322175445 0.04746536613236518 0.3221757322175445 0.04746536613236518 0.22759298064754097
+0.3284518828451598 0.04407498283719624 0.32845188284515986 0.04407498283719624 0.22837829979560476
+0.35774058577403134 0.02373268306618259 0.3577405857740313 0.02373268306618259 0.2209432086801875
+0.35564853556482623 0.027123066361351533 0.35564853556482623 0.027123066361351533 0.2229956147139223
+0.3535564853556211 0.030513449656520475 0.3535564853556212 0.030513449656520475 0.22515880781396683
+0.351464435146416 0.03390383295168942 0.351464435146416 0.03390383295168942 0.22737783473042625
+0.3493723849372109 0.03729421624685836 0.34937238493721084 0.03729421624685836 0.22959493799445393
+0.33263598326357 0.04407498283719624 0.33263598326356997 0.04407498283719624 0.23008487599740887
+0.33682008368198024 0.04407498283719624 0.3368200836819803 0.04407498283719624 0.23156843303002586
+0.34309623430959557 0.0406845995420273 0.34309623430959557 0.0406845995420273 0.23091051594677933
+0.3472803347280058 0.0406845995420273 0.3472803347280058 0.0406845995420273 0.23175199013747064
+0.34100418410039046 0.04407498283719624 0.3410041841003904 0.04407498283719624 0.23280975154408293
+0.37866108786608244 0.01695191647584471 0.3786610878660825 0.01695191647584471 0.21481882928463022
+0.36401673640164667 0.02034229977101365 0.36401673640164667 0.02034229977101365 0.21891159081277198
+0.3682008368200569 0.02034229977101365 0.3682008368200569 0.02034229977101365 0.21851349159868153
+0.3723849372384671 0.02034229977101365 0.3723849372384671 0.02034229977101365 0.21785383058934318
+0.3765690376568773 0.02034229977101365 0.3765690376568773 0.02034229977101365 0.21693124296401486
+0.36192468619244156 0.02373268306618259 0.3619246861924416 0.02373268306618259 0.22091282747610255
+0.39958158995813353 0.010171149885506825 0.3995815899581335 0.010171149885506825 0.203808727452365
+0.38493723849369776 0.013561533180675767 0.38493723849369776 0.013561533180675767 0.21154745957529716
+0.389121338912108 0.013561533180675767 0.389121338912108 0.013561533180675767 0.20990379650285676
+0.3933054393305182 0.013561533180675767 0.3933054393305182 0.013561533180675767 0.20800699030352474
+0.3974895397489284 0.013561533180675767 0.3974895397489284 0.013561533180675767 0.20586076477988477
+0.38284518828449265 0.01695191647584471 0.3828451882844926 0.01695191647584471 0.21353355761315881
+0.40585774058574886 0.006780766590337883 0.40585774058574886 0.006780766590337883 0.1993900622324282
+0.4100418410041591 0.006780766590337883 0.41004184100415914 0.006780766590337883 0.19656346394770388
+0.4142259414225693 0.006780766590337883 0.4142259414225693 0.006780766590337883 0.19350605056982115
+0.40376569037654375 0.010171149885506825 0.4037656903765438 0.010171149885506825 0.201320339756308
+0.4184100418409795 0.006780766590337883 0.41841004184097946 0.006780766590337883 0.1902228644306755
+0.42259414225938974 0.006780766590337883 0.42259414225938974 0.006780766590337883 0.1867188991247162
+0.15256724827645618 0.21966527196999572 0.15256724827645618 0.21966527196999572 0.09629150952375026
+0.1559576315694043 0.2175732217622536 0.15595763156940426 0.2175732217622536 0.09765052381100824
+0.15934801486136554 0.21548117155503657 0.15934801486136554 0.21548117155503657 0.09910991980646515
+0.16273839815320365 0.21338912134592414 0.16273839815320365 0.21338912134592417 0.10063627145366978
+0.16612873786929555 0.21129701369229667 0.16612873786929552 0.21129701369229667 0.10220207495041056
+0.16951897167856278 0.20920469894413948 0.16951897167856278 0.20920469894413948 0.10378606617771986
+0.17290852752990726 0.20711156855326474 0.17290852752990726 0.20711156855326474 0.10537313818671436
+0.17629354856148596 0.20501682682077815 0.17629354856148596 0.20501682682077815 0.10695322327664432
+0.10510188215022727 0.2573221757322523 0.10510188215022727 0.2573221757322523 0.10941319284022986
+0.10849226544540386 0.2552301255230482 0.10849226544540387 0.2552301255230482 0.10623721412139285
+0.11188264874058412 0.25313807531384214 0.11188264874058414 0.25313807531384214 0.10331356739528826
+0.11527303203576249 0.24686192468614276 0.11527303203576249 0.24686192468614276 0.0999696543367845
+0.11866341533089653 0.24476987447688517 0.11866341533089653 0.24476987447688517 0.0977510183628396
+0.1152730320357689 0.2510460251046201 0.1152730320357689 0.2510460251046201 0.10068746893700962
+0.12205379862597458 0.2426778242676193 0.12205379862597458 0.2426778242676193 0.09591142904694729
+0.12544418192098664 0.2405857740584064 0.12544418192098664 0.2405857740584064 0.09446969572659425
+0.12883456521591116 0.23849372384931625 0.12883456521591116 0.23849372384931625 0.0934324932679262
+0.13222494851069536 0.23640167364032283 0.13222494851069536 0.23640167364032286 0.09279405128472952
+0.13561533180572075 0.23430962343148376 0.13561533180572075 0.2343096234314838 0.09253679901195634
+0.13900571510058127 0.23221757322269954 0.13900571510058127 0.2322175732226995 0.09263291642358638
+0.14239609839562478 0.23012552301381636 0.14239609839562475 0.23012552301381636 0.09304658917956399
+0.14578648169020866 0.22803347280487385 0.14578648169020866 0.22803347280487385 0.09373666551656852
+0.14917686498438257 0.22594142259597383 0.14917686498438257 0.22594142259597386 0.09465939086276622
+0.15256724827729784 0.2238493723874303 0.15256724827729784 0.22384937238743027 0.09577094372890511
+0.0847595823792165 0.274058577405852 0.0847595823792165 0.274058577405852 0.131798413876388
+0.08814996567437948 0.2719665271966497 0.08814996567437948 0.27196652719664977 0.12819961302613558
+0.09154034896953937 0.26987447698744954 0.09154034896953937 0.26987447698744954 0.12454234146491973
+0.0949307322647052 0.267782426778255 0.0949307322647052 0.267782426778255 0.12087390863112656
+0.09832111555986865 0.26569037656906186 0.09832111555986865 0.26569037656906186 0.11724413156028786
+0.10171149885503873 0.2635983263598688 0.10171149885503873 0.26359832635986885 0.11370441359918636
+0.1051018821502081 0.2615062761506744 0.1051018821502081 0.2615062761506744 0.11030661363223394
+0.06780766590337817 0.2928870292887054 0.06780766590337817 0.2928870292887054 0.14961401677410227
+0.07119804919854753 0.29079497907950064 0.07119804919854754 0.29079497907950064 0.1468853810353952
+0.07458843249371767 0.2845188284518832 0.07458843249371767 0.2845188284518832 0.14280510859982673
+0.07797881578888687 0.28242677824267653 0.07797881578888687 0.28242677824267653 0.13963531112261016
+0.07458843249371704 0.2887029288702954 0.07458843249371704 0.2887029288702954 0.1439258091034805
+0.08136919908405534 0.28033472803346915 0.08136919908405534 0.28033472803346915 0.13628793705764944
+0.08475958237922247 0.2782426778242611 0.08475958237922247 0.2782426778242611 0.1327979915576658
+0.05424613272270248 0.3096234309623428 0.05424613272270248 0.30962343096234285 0.1607741141759604
+0.057636516017871 0.3075313807531378 0.057636516017871 0.30753138075313785 0.15908746390494052
+0.06102689931303935 0.3012552301255242 0.06102689931303935 0.3012552301255242 0.1556141149949988
+0.06102689931303936 0.30543933054393313 0.06102689931303936 0.30543933054393313 0.15713466031141274
+0.06441728260820805 0.29916317991632 0.06441728260820805 0.2991631799163201 0.15339556947552976
+0.06780766590337702 0.2970711297071158 0.06780766590337702 0.2970711297071158 0.15091595469766808
+0.03729421624685836 0.3284518828451887 0.03729421624685836 0.3284518828451887 0.16942979921481335
+0.03729421624685836 0.3326359832635987 0.03729421624685836 0.3326359832635987 0.17160785381321497
+0.0406845995420273 0.3263598326359837 0.0406845995420273 0.3263598326359837 0.1688350714235424
+0.04407498283719624 0.3242677824267787 0.04407498283719624 0.32426778242677873 0.16807454742590042
+0.047465366132365155 0.3179916317991634 0.047465366132365155 0.3179916317991634 0.16513871088477547
+0.04746536613236519 0.3221757322175736 0.04746536613236519 0.3221757322175736 0.16711768072764463
+0.05085574942753405 0.3158995815899581 0.05085574942753405 0.3158995815899581 0.16395555948453644
+0.05424613272270287 0.3138075313807529 0.054246132722702865 0.3138075313807529 0.1625278045135153
+0.027123066361351533 0.34728033472803393 0.027123066361351533 0.34728033472803393 0.17762822548343937
+0.030513449656520475 0.3451882845188289 0.030513449656520475 0.3451882845188288 0.17728923618997497
+0.03390383295168942 0.3389121338912138 0.03390383295168942 0.3389121338912138 0.17442328966482099
+0.03729421624685836 0.3368200836820088 0.03729421624685836 0.3368200836820088 0.1739624128134815
+0.03390383295168942 0.3430962343096238 0.03390383295168942 0.3430962343096238 0.1769201520281691
+0.027123066361351533 0.35146443514644404 0.027123066361351533 0.35146443514644404 0.1802139583599327
+0.02034229977101365 0.3640167364016742 0.02034229977101365 0.3640167364016742 0.18627369864637755
+0.027123066361351533 0.3556485355648541 0.027123066361351533 0.35564853556485415 0.18288641033265166
+0.02373268306618259 0.3619246861924692 0.02373268306618259 0.3619246861924692 0.18591174289240764
+0.027123066361351533 0.35983263598326415 0.027123066361351533 0.35983263598326415 0.18562292996521912
+0.02034229977101365 0.3682008368200842 0.02034229977101365 0.3682008368200842 0.1889780137536907
+0.010171149885506825 0.39121338912133957 0.010171149885506825 0.39121338912133957 0.20089248494917974
+0.01695191647584471 0.3744769874476992 0.01695191647584471 0.3744769874476992 0.19209169670671258
+0.02034229977101365 0.3723849372384942 0.02034229977101365 0.3723849372384942 0.19168254308378196
+0.013561533180675767 0.38075313807531425 0.013561533180675767 0.38075313807531425 0.19525239604210753
+0.01695191647584471 0.37866108786610925 0.01695191647584471 0.37866108786610925 0.1947348590122464
+0.013561533180675767 0.38493723849372435 0.013561533180675767 0.38493723849372435 0.19780763289627035
+0.013561533180675767 0.38912133891213446 0.013561533180675767 0.38912133891213446 0.20029367747617108
+0.006780766590337883 0.4058577405857748 0.006780766590337883 0.4058577405857748 0.20826757762539497
+0.006780766590337883 0.41004184100418484 0.006780766590337883 0.4100418410041849 0.2102425519867259
+0.010171149885506825 0.3953974895397496 0.010171149885506825 0.3953974895397496 0.20324766852527656
+0.010171149885506825 0.3995815899581597 0.010171149885506825 0.3995815899581597 0.205503160167027
+0.010171149885506825 0.4037656903765698 0.010171149885506825 0.4037656903765698 0.20764906799615004
+0.006780766590337883 0.4142259414225949 0.006780766590337883 0.4142259414225949 0.21209361796822726
+0.006780766590337883 0.41841004184100494 0.006780766590337883 0.418410041841005 0.21381752670812018
+0.006780766590337883 0.422594142259415 0.006780766590337883 0.422594142259415 0.21541276580281263
+0.1796683375686845 0.20292531846504977 0.1796683375686845 0.20292531846504977 0.10852016745721589
+0.21548117154808388 0.15934801487294026 0.21548117154808386 0.15934801487294026 0.12869430810246785
+0.21338912133887877 0.1627383981681092 0.21338912133887877 0.1627383981681092 0.12747759053116614
+0.21129707112967364 0.16612878146327814 0.21129707112967364 0.16612878146327814 0.1262725360893532
+0.20920502092046855 0.16951916475844708 0.20920502092046855 0.16951916475844708 0.1250615379743373
+0.1830330264239287 0.2008442875237058 0.1830330264239287 0.20084428752370578 0.11007409437904168
+0.1863505903765602 0.19880202085236384 0.1863505903765602 0.19880202085236384 0.1116030766176682
+0.20711297071126347 0.17290954805361602 0.20711297071126347 0.17290954805361602 0.12382985280715829
+0.20502092050205836 0.17629993134878497 0.20502092050205836 0.17629993134878497 0.1225658075347525
+0.20292887029285325 0.1796903146439539 0.20292887029285325 0.1796903146439539 0.12126090208675279
+0.18964429710601052 0.19675411181647295 0.18964429710601052 0.19675411181647295 0.11313487912679132
+0.20083682008364812 0.18308069793912282 0.20083682008364812 0.18308069793912282 0.11990994761635758
+0.19887143079098993 0.1864671739867552 0.19887143079098993 0.1864671739867552 0.11855891780657025
+0.19693058099858396 0.18984267193393023 0.19693058099858396 0.18984267193393023 0.11716785369534878
+0.19288696887839119 0.19463264297747607 0.19288696887839119 0.19463264297747607 0.11469741363683496
+0.19574822096664496 0.19284188606856328 0.19574822096664496 0.19284188606856328 0.11603585938306635
+0.23640167364013495 0.13222494851158872 0.23640167364013495 0.13222494851158872 0.1446122178663293
+0.23430962343092984 0.13561533180675767 0.23430962343092984 0.13561533180675767 0.1424631755129184
+0.23221757322172473 0.1390057151019266 0.23221757322172473 0.1390057151019266 0.14048893530345774
+0.23012552301251965 0.14239609839709555 0.23012552301251965 0.14239609839709555 0.13867292767257025
+0.2280334728033145 0.1457864816922645 0.2280334728033145 0.1457864816922645 0.13699528883636994
+0.22594142259410943 0.14917686498743343 0.22594142259410943 0.14917686498743343 0.13543394267993183
+0.22384937238490435 0.15256724828260237 0.22384937238490435 0.15256724828260237 0.1339656753690908
+0.22175732217569924 0.15595763157777132 0.22175732217569924 0.15595763157777132 0.13256714516929227
+0.21966527196649413 0.15934801487294026 0.21966527196649413 0.15934801487294026 0.13121578296735928
+0.2677824267782116 0.09493073226473037 0.2677824267782116 0.09493073226473037 0.18616541220201868
+0.26569037656900646 0.09832111555989931 0.26569037656900646 0.09832111555989931 0.18266532559907822
+0.26359832635980135 0.10171149885506825 0.26359832635980135 0.10171149885506825 0.17914500069826814
+0.26150627615059624 0.10510188215023719 0.26150627615059624 0.10510188215023719 0.17564517407798796
+0.2552301255229809 0.10849226544540613 0.2552301255229809 0.10849226544540613 0.16836998320859298
+0.2531380753137758 0.11188264874057507 0.2531380753137758 0.11188264874057507 0.16499727425059718
+0.2510460251045707 0.11527303203574402 0.2510460251045707 0.11527303203574402 0.16175312371848324
+0.2489539748953656 0.11866341533091296 0.2489539748953656 0.11866341533091296 0.15866130581690888
+0.24686192468616053 0.1220537986260819 0.24686192468616053 0.1220537986260819 0.15573939685487756
+0.2447698744769554 0.12544418192125084 0.2447698744769554 0.12544418192125084 0.15299847124924426
+0.24267782426775028 0.12883456521641978 0.24267782426775028 0.12883456521641978 0.15044307031883766
+0.24058577405854517 0.13222494851158872 0.24058577405854517 0.13222494851158872 0.14807145057370227
+0.25941422594139113 0.10849226544540613 0.25941422594139113 0.10849226544540613 0.17220357743884765
+0.2887029288702627 0.07458843249371672 0.2887029288702627 0.07458843249371672 0.21133988189879505
+0.2866108786610576 0.07797881578888566 0.28661087866105767 0.07797881578888566 0.2090398870289976
+0.2845188284518525 0.0813691990840546 0.2845188284518525 0.0813691990840546 0.2064682437166452
+0.27615062761503206 0.08814996567439248 0.27615062761503206 0.08814996567439248 0.19670753351225934
+0.2824267782426474 0.08475958237922354 0.28242677824264734 0.08475958237922354 0.20365857134387325
+0.2803347280334423 0.08814996567439248 0.2803347280334423 0.08814996567439248 0.2006484295917156
+0.27405857740582695 0.09154034896956142 0.2740585774058269 0.09154034896956142 0.19344968198627643
+0.27196652719662184 0.09493073226473037 0.27196652719662184 0.09493073226473037 0.19007997249759256
+0.32008368200833937 0.050855749427534125 0.3200836820083394 0.050855749427534125 0.2284691653048976
+0.31799163179913426 0.054246132722703067 0.31799163179913426 0.054246132722703067 0.2290619210104676
+0.31589958158992915 0.05763651601787201 0.3158995815899291 0.05763651601787201 0.22934184826564105
+0.31380753138072404 0.06102689931304095 0.31380753138072404 0.06102689931304095 0.22928812561913745
+0.3117154811715189 0.06441728260820989 0.311715481171519 0.06441728260820989 0.2288886334790761
+0.3096234309623138 0.06780766590337883 0.3096234309623138 0.06780766590337883 0.22813983182283473
+0.29497907949787805 0.07119804919854777 0.2949790794978781 0.07119804919854777 0.2168116465079369
+0.29916317991628827 0.07119804919854777 0.2991631799162882 0.07119804919854777 0.2202839050081041
+0.3033472803346985 0.07119804919854777 0.30334728033469854 0.07119804919854777 0.22371039528024825
+0.3075313807531087 0.07119804919854777 0.30753138075310865 0.07119804919854777 0.2270464209323921
+0.29288702928867294 0.07458843249371672 0.29288702928867294 0.07458843249371672 0.21493782219752397
+0.3263598326359547 0.04746536613236518 0.3263598326359547 0.04746536613236518 0.2296493304233799
+0.3242677824267496 0.050855749427534125 0.32426778242674953 0.050855749427534125 0.23067995101078156
+0.3305439330543649 0.04746536613236518 0.3305439330543649 0.04746536613236518 0.2315068885343293
+0.35983263598323645 0.027123066361351533 0.35983263598323645 0.027123066361351533 0.22307681307310648
+0.35774058577403134 0.030513449656520475 0.3577405857740313 0.030513449656520475 0.22535522157104163
+0.35564853556482623 0.03390383295168942 0.35564853556482623 0.03390383295168942 0.22769417937075428
+0.3535564853556211 0.03729421624685836 0.3535564853556212 0.03729421624685836 0.23003677063951877
+0.351464435146416 0.0406845995420273 0.351464435146416 0.0406845995420273 0.23232545454805978
+0.33472803347277513 0.04746536613236518 0.33472803347277513 0.04746536613236518 0.23314184332054436
+0.33891213389118535 0.04746536613236518 0.33891213389118535 0.04746536613236518 0.23453353913973055
+0.3451882845188007 0.04407498283719624 0.34518828451880074 0.04407498283719624 0.23379270800302163
+0.3493723849372109 0.04407498283719624 0.34937238493721084 0.04407498283719624 0.2345042792981463
+0.34309623430959557 0.04746536613236518 0.34309623430959557 0.04746536613236518 0.23566457354923617
+0.38075313807528754 0.02034229977101365 0.38075313807528754 0.02034229977101365 0.21574590598110868
+0.3661087866108518 0.02373268306618259 0.3661087866108517 0.02373268306618259 0.22062198257436402
+0.370292887029262 0.02373268306618259 0.37029288702926205 0.02373268306618259 0.2200671108757111
+0.3744769874476722 0.02373268306618259 0.37447698744767216 0.02373268306618259 0.21924647709618036
+0.37866108786608244 0.02373268306618259 0.3786610878660825 0.02373268306618259 0.21816000725526832
+0.36401673640164667 0.027123066361351533 0.36401673640164667 0.027123066361351533 0.22289506718676302
+0.40167364016733864 0.013561533180675767 0.4016736401673386 0.013561533180675767 0.20346949124619948
+0.3870292887029029 0.01695191647584471 0.38702928870290293 0.01695191647584471 0.21198985555664898
+0.3912133891213131 0.01695191647584471 0.39121338912131304 0.01695191647584471 0.2101905181564563
+0.3953974895397233 0.01695191647584471 0.39539748953972337 0.01695191647584471 0.20813924456491487
+0.39958158995813353 0.01695191647584471 0.3995815899581335 0.01695191647584471 0.20584045709040852
+0.38493723849369776 0.02034229977101365 0.38493723849369776 0.02034229977101365 0.21429936365280008
+0.40794979079495397 0.010171149885506825 0.4079497907949539 0.010171149885506825 0.19859397935737777
+0.4121338912133642 0.010171149885506825 0.41213389121336425 0.010171149885506825 0.19563469222874416
+0.4163179916317744 0.010171149885506825 0.41631799163177435 0.010171149885506825 0.19244764386850552
+0.40585774058574886 0.013561533180675767 0.40585774058574886 0.013561533180675767 0.20083802013445393
+0.42050209205018463 0.010171149885506825 0.4205020920501847 0.010171149885506825 0.18903798907976863
+0.42677824267779996 0.006780766590337883 0.4267782426778 0.006780766590337883 0.18299899357428742
+0.42468619246859485 0.010171149885506825 0.4246861924685948 0.010171149885506825 0.18541075589791758
+0.15595763156934167 0.2217573221791243 0.15595763156934164 0.22175732217912428 0.09702958562764431
+0.15934801485956532 0.21966527197338795 0.15934801485956532 0.21966527197338795 0.09839733493355501
+0.16273839814997088 0.21757322176743013 0.16273839814997085 0.21757322176743013 0.0998411551009555
+0.16612878143867885 0.21548117156235633 0.16612878143867885 0.21548117156235633 0.10133370055364853
+0.16951916473277062 0.2133891213565929 0.16951916473277062 0.2133891213565929 0.1028536909652749
+0.17290950670280184 0.21129694331167312 0.17290950670280184 0.21129694331167312 0.10438599897971841
+0.17629873990941672 0.20920365464048263 0.17629873990941672 0.20920365464048266 0.10592136432295331
+0.17968239305843856 0.2071086157669303 0.17968239305843856 0.20710861576693027 0.10745519067722376
+0.1084922654453821 0.25941422594147673 0.10849226544538211 0.25941422594147673 0.10710167876037531
+0.1118826487405568 0.2573221757322767 0.1118826487405568 0.2573221757322767 0.10413803687853919
+0.11527303203573823 0.25523012552307384 0.11527303203573823 0.25523012552307384 0.10145978582571079
+0.11866341533095133 0.24895397489538063 0.11866341533095133 0.24895397489538063 0.09839750026794515
+0.12205379862611405 0.24686192468611082 0.12205379862611405 0.24686192468611082 0.09647361056877958
+0.11866341533092437 0.25313807531387134 0.11866341533092438 0.2531380753138714 0.09910477168488337
+0.12544418192121595 0.24476987447681595 0.12544418192121595 0.24476987447681595 0.09493540893095777
+0.12883456521621336 0.24267782426749784 0.12883456521621336 0.24267782426749784 0.09379100316262518
+0.13222494851108715 0.24058577405827933 0.13222494851108715 0.24058577405827933 0.09303660476373961
+0.13561533180579347 0.23849372384929454 0.13561533180579347 0.23849372384929454 0.09265701955431181
+0.13900571510023235 0.2364016736404929 0.13900571510023238 0.2364016736404929 0.09262700132031225
+0.14239609839512674 0.2343096234319667 0.1423960983951267 0.23430962343196668 0.09291330261102404
+0.14578648168969713 0.23221757322353595 0.14578648168969713 0.23221757322353595 0.09347715552609571
+0.1491768649845031 0.23012552301489272 0.1491768649845031 0.23012552301489272 0.09427688151887127
+0.15256724827844112 0.2280334728061476 0.15256724827844112 0.22803347280614758 0.0952703616301147
+0.15595763157148615 0.22594142259747382 0.15595763157148615 0.22594142259747382 0.09641717442744281
+0.0881499656743871 0.2761506276150533 0.0881499656743871 0.2761506276150533 0.12920474210480656
+0.091540348969549 0.27405857740584777 0.091540348969549 0.27405857740584777 0.1255511936719518
+0.09493073226470695 0.27196652719664777 0.09493073226470695 0.27196652719664777 0.12188346743079369
+0.09832111555985935 0.26987447698745165 0.09832111555985935 0.26987447698745165 0.11825005441766799
+0.10171149885502272 0.26778242677826436 0.10171149885502272 0.2677824267782643 0.1147009115584497
+0.10510188215018124 0.2656903765690809 0.10510188215018124 0.26569037656908095 0.11128636830037918
+0.10849226544535195 0.2635983263598967 0.10849226544535195 0.2635983263598967 0.10805582124843956
+0.07119804919854625 0.29497907949791163 0.07119804919854623 0.29497907949791163 0.14818839597129596
+0.0745884324937156 0.2928870292887071 0.0745884324937156 0.2928870292887071 0.14523170300844032
+0.07797881578888667 0.28661087866108986 0.07797881578888667 0.28661087866108986 0.14075995209153083
+0.08136919908405628 0.2845188284518832 0.08136919908405628 0.2845188284518832 0.13741749411334267
+0.07797881578888524 0.29079497907950236 0.07797881578888523 0.29079497907950236 0.1420700418704011
+0.08475958237922575 0.28242677824267554 0.08475958237922575 0.28242677824267554 0.1339327393663988
+0.08814996567439388 0.28033472803346665 0.08814996567439388 0.28033472803346665 0.13034414038825504
+0.05763651601787157 0.31171548117154757 0.05763651601787157 0.3117154811715475 0.16084286372918208
+0.06102689931304001 0.3096234309623423 0.06102689931304001 0.3096234309623423 0.15889446392724296
+0.0644172826082075 0.3033472803347288 0.0644172826082075 0.3033472803347288 0.15491626290900073
+0.06441728260820821 0.3075313807531374 0.06441728260820821 0.3075313807531374 0.1566826411578923
+0.0678076659033761 0.3012552301255249 0.0678076659033761 0.3012552301255249 0.15243899926879642
+0.07119804919854482 0.29916317991632124 0.07119804919854482 0.29916317991632124 0.1497155579879719
+0.0406845995420273 0.3305439330543937 0.0406845995420273 0.3305439330543937 0.17101473946374215
+0.0406845995420273 0.3347280334728038 0.0406845995420273 0.3347280334728038 0.17338343125800468
+0.04407498283719624 0.3284518828451887 0.04407498283719624 0.3284518828451887 0.17026144903263155
+0.04746536613236518 0.3263598326359837 0.04746536613236518 0.3263598326359837 0.16931680457494092
+0.050855749427534146 0.3200836820083685 0.050855749427534146 0.3200836820083685 0.16593923140609748
+0.050855749427534125 0.3242677824267787 0.050855749427534125 0.32426778242677873 0.16815485148846354
+0.05424613272270309 0.31799163179916323 0.05424613272270309 0.3179916317991633 0.16451979380989604
+0.05763651601787199 0.3158995815899579 0.05763651601787199 0.3158995815899579 0.16284612794861208
+0.030513449656520475 0.349372384937239 0.030513449656520475 0.349372384937239 0.17989238898804363
+0.03390383295168942 0.34728033472803393 0.03390383295168942 0.34728033472803393 0.17954857331506188
+0.03729421624685836 0.34100418410041883 0.03729421624685836 0.34100418410041883 0.17647960045040298
+0.0406845995420273 0.3389121338912138 0.0406845995420273 0.3389121338912138 0.17592781719650255
+0.03729421624685836 0.3451882845188289 0.03729421624685836 0.3451882845188288 0.17914102715302674
+0.030513449656520475 0.3535564853556491 0.030513449656520475 0.35355648535564915 0.1825936039653839
+0.02373268306618259 0.3661087866108792 0.02373268306618259 0.3661087866108792 0.1886483880001302
+0.030513449656520475 0.35774058577405915 0.030513449656520475 0.35774058577405915 0.1853694914580533
+0.027123066361351533 0.3640167364016742 0.027123066361351533 0.3640167364016742 0.1883998218423235
+0.030513449656520475 0.3619246861924692 0.030513449656520475 0.3619246861924692 0.188195336703983
+0.02373268306618259 0.3702928870292892 0.02373268306618259 0.3702928870292892 0.19139323026979516
+0.013561533180675767 0.39330543933054457 0.013561533180675767 0.39330543933054457 0.2026957602817423
+0.02034229977101365 0.3765690376569042 0.02034229977101365 0.3765690376569042 0.1943660262060474
+0.02373268306618259 0.3744769874476992 0.02373268306618259 0.3744769874476992 0.19412379163064675
+0.01695191647584471 0.38284518828451936 0.01695191647584471 0.38284518828451936 0.19733111413461232
+0.02034229977101365 0.38075313807531425 0.02034229977101365 0.38075313807531425 0.19700820679480643
+0.01695191647584471 0.38702928870292946 0.01695191647584471 0.38702928870292946 0.19986283703075292
+0.01695191647584471 0.39121338912133957 0.01695191647584471 0.39121338912133957 0.20231408971068313
+0.010171149885506825 0.4079497907949799 0.010171149885506825 0.4079497907949799 0.20967746856327954
+0.010171149885506825 0.4121338912133899 0.010171149885506825 0.4121338912133899 0.21158239575092883
+0.013561533180675767 0.3974895397489546 0.013561533180675767 0.3974895397489546 0.20500097615225651
+0.013561533180675767 0.4016736401673647 0.013561533180675767 0.4016736401673647 0.20719839128805387
+0.013561533180675767 0.4058577405857748 0.013561533180675767 0.4058577405857748 0.2092790973383157
+0.010171149885506825 0.41631799163179994 0.010171149885506825 0.4163179916318 0.2133597909653072
+0.010171149885506825 0.42050209205020994 0.010171149885506825 0.42050209205021 0.21500741971544415
+0.006780766590337883 0.426778242677825 0.006780766590337883 0.426778242677825 0.21687943885178543
+0.010171149885506825 0.42468619246862 0.010171149885506825 0.42468619246862 0.21652475948442373
+0.006780766590337883 0.43096234309623505 0.006780766590337883 0.43096234309623505 0.21821912342484026
+0.006780766590337883 0.43514644351464504 0.006780766590337883 0.43514644351464504 0.2194347116776603
+0.006780766590337883 0.43933054393305504 0.006780766590337883 0.43933054393305504 0.22053023760655985
+0.1830578488486783 0.20501532576658565 0.1830578488486783 0.20501532576658565 0.10898763007334733
+0.217573221757289 0.1627383981681092 0.217573221757289 0.1627383981681092 0.12989055398651786
+0.21548117154808388 0.16612878146327814 0.21548117154808386 0.16612878146327814 0.1285725659196231
+0.21338912133887877 0.16951916475844708 0.21338912133887877 0.16951916475844708 0.12724552154758262
+0.21129707112967364 0.17290954805361602 0.21129707112967364 0.17290954805361602 0.12589602407242953
+0.1864062305015685 0.20293788492615958 0.1864062305015685 0.20293788492615958 0.11051489640795521
+0.1897541206401776 0.20085991840095108 0.1897541206401776 0.2008599184009511 0.11205870176976995
+0.20920502092046855 0.17629993134878497 0.20920502092046855 0.17629993134878497 0.12451375145250783
+0.20711297071126347 0.1796903146439539 0.20711297071126347 0.1796903146439539 0.12309152662028298
+0.20502092050205836 0.18308069793912285 0.20502092050205836 0.18308069793912285 0.12162534356841452
+0.1931092748171386 0.1987987660340055 0.1931092748171386 0.1987987660340055 0.1136289142611766
+0.20292887029285334 0.1864710812342918 0.20292887029285334 0.1864710812342918 0.12011452219233763
+0.20098934674777236 0.1898206231917187 0.20098934674777236 0.1898206231917187 0.11862422660659312
+0.19913332106511208 0.1931744793736535 0.19913332106511208 0.1931744793736535 0.11710585700770838
+0.1967918523885266 0.19666915487482683 0.1967918523885266 0.19666915487482686 0.11539106413199153
+0.23849372384934006 0.13561533180675767 0.23849372384934006 0.13561533180675767 0.1458760974013571
+0.23640167364013495 0.1390057151019266 0.23640167364013495 0.1390057151019266 0.1438444693630606
+0.23430962343092984 0.14239609839709555 0.23430962343092984 0.14239609839709555 0.14195992090152576
+0.23221757322172473 0.1457864816922645 0.23221757322172473 0.1457864816922645 0.14020273974470462
+0.23012552301251965 0.14917686498743343 0.23012552301251965 0.14917686498743343 0.13855123111805343
+0.2280334728033145 0.15256724828260237 0.2280334728033145 0.15256724828260237 0.1369827840619837
+0.22594142259410943 0.15595763157777132 0.22594142259410943 0.15595763157777132 0.13547486440982479
+0.22384937238490435 0.15934801487294026 0.22384937238490435 0.15934801487294026 0.13400589220057268
+0.22175732217569924 0.1627383981681092 0.22175732217569924 0.1627383981681092 0.1325559761208002
+0.2698744769874167 0.09832111555989931 0.2698744769874167 0.09832111555989931 0.18664133241621414
+0.26778242677821157 0.10171149885506825 0.26778242677821157 0.10171149885506825 0.1831759352551342
+0.26569037656900646 0.10510188215023719 0.26569037656900646 0.10510188215023719 0.17972400799212052
+0.26359832635980135 0.10849226544540613 0.26359832635980135 0.10849226544540613 0.17632269058807884
+0.257322175732186 0.11188264874057507 0.257322175732186 0.11188264874057507 0.16885389091882474
+0.2552301255229809 0.11527303203574402 0.2552301255229809 0.11527303203574402 0.1656248267201925
+0.2531380753137758 0.11866341533091296 0.2531380753137758 0.11866341533091296 0.16253938987829433
+0.2510460251045707 0.1220537986260819 0.2510460251045707 0.1220537986260819 0.15961435990262185
+0.2489539748953656 0.12544418192125084 0.2489539748953656 0.12544418192125084 0.15686002841111601
+0.24686192468616044 0.12883456521641978 0.24686192468616044 0.12883456521641978 0.15428021374236947
+0.2447698744769554 0.13222494851158872 0.2447698744769554 0.13222494851158872 0.15187255499397787
+0.24267782426775028 0.13561533180675767 0.24267782426775028 0.13561533180675767 0.14962906722204747
+0.26150627615059624 0.11188264874057507 0.26150627615059624 0.11188264874057507 0.17300499021576607
+0.29079497907946783 0.07797881578888566 0.2907949790794678 0.07797881578888566 0.2127600898054032
+0.2887029288702627 0.0813691990840546 0.2887029288702627 0.0813691990840546 0.21030642801534036
+0.2866108786610576 0.08475958237922354 0.28661087866105767 0.08475958237922354 0.20760985360743475
+0.2782426778242372 0.09154034896956142 0.27824267782423723 0.09154034896956142 0.1974782001025918
+0.2845188284518525 0.08814996567439248 0.2845188284518525 0.08814996567439248 0.20470736445040802
+0.2824267782426474 0.09154034896956142 0.28242677824264734 0.09154034896956142 0.20163880204006837
+0.27615062761503206 0.09493073226473037 0.27615062761503206 0.09493073226473037 0.19418990852550244
+0.2740585774058269 0.09832111555989931 0.2740585774058269 0.09832111555989931 0.1908260082782666
+0.3221757322175445 0.054246132722703067 0.3221757322175445 0.054246132722703067 0.23143182208817917
+0.32008368200833937 0.05763651601787201 0.3200836820083394 0.05763651601787201 0.23187466736044385
+0.31799163179913426 0.06102689931304095 0.31799163179913426 0.06102689931304095 0.23198671465547638
+0.31589958158992915 0.06441728260820989 0.3158995815899291 0.06441728260820989 0.23175485411637667
+0.31380753138072404 0.06780766590337883 0.31380753138072404 0.06780766590337883 0.23117454460340145
+0.3117154811715189 0.07119804919854777 0.311715481171519 0.07119804919854777 0.2302494968959384
+0.29707112970708316 0.07458843249371672 0.29707112970708316 0.07458843249371672 0.21854880359215478
+0.3012552301254934 0.07458843249371672 0.3012552301254934 0.07458843249371672 0.22212527065303225
+0.3054393305439036 0.07458843249371672 0.3054393305439036 0.07458843249371672 0.22562081084050864
+0.3096234309623138 0.07458843249371672 0.3096234309623138 0.07458843249371672 0.22899115919423083
+0.29497907949787805 0.07797881578888566 0.2949790794978781 0.07797881578888566 0.21650644258349674
+0.3284518828451598 0.050855749427534125 0.32845188284515986 0.050855749427534125 0.23269425936593066
+0.3263598326359547 0.054246132722703067 0.3263598326359547 0.054246132722703067 0.23360796010816884
+0.33263598326357 0.050855749427534125 0.33263598326356997 0.050855749427534125 0.2344866430631998
+0.36192468619244156 0.030513449656520475 0.3619246861924416 0.030513449656520475 0.22528572681973227
+0.35983263598323645 0.03390383295168942 0.35983263598323645 0.03390383295168942 0.22774121627417254
+0.35774058577403134 0.03729421624685836 0.3577405857740313 0.03729421624685836 0.23020552931687965
+0.35564853556482623 0.0406845995420273 0.35564853556482623 0.0406845995420273 0.23262179451773282
+0.3535564853556211 0.04407498283719624 0.3535564853556212 0.04407498283719624 0.23493448448791354
+0.33682008368198024 0.050855749427534125 0.3368200836819803 0.050855749427534125 0.236034945961951
+0.34100418410039046 0.050855749427534125 0.3410041841003904 0.050855749427534125 0.2373204221965395
+0.3472803347280058 0.04746536613236518 0.3472803347280058 0.04746536613236518 0.2365208160932322
+0.351464435146416 0.04746536613236518 0.351464435146416 0.04746536613236518 0.2370913587891841
+0.3451882845188007 0.050855749427534125 0.34518828451880074 0.050855749427534125 0.23832777049898432
+0.38284518828449265 0.02373268306618259 0.3828451882844926 0.02373268306618259 0.21680910709218207
+0.3682008368200569 0.027123066361351533 0.3682008368200569 0.027123066361351533 0.22244631103589496
+0.3723849372384671 0.027123066361351533 0.3723849372384671 0.027123066361351533 0.22172844001641287
+0.3765690376568773 0.027123066361351533 0.3765690376568773 0.027123066361351533 0.22074113969816597
+0.38075313807528754 0.027123066361351533 0.38075313807528754 0.027123066361351533 0.21948569725060504
+0.3661087866108518 0.030513449656520475 0.3661087866108517 0.030513449656520475 0.22494573534551401
+0.40376569037654375 0.01695191647584471 0.4037656903765438 0.01695191647584471 0.20329912313981832
+0.389121338912108 0.02034229977101365 0.389121338912108 0.02034229977101365 0.21259434253384213
+0.3933054393305182 0.02034229977101365 0.3933054393305182 0.02034229977101365 0.2106345624363061
+0.3974895397489284 0.02034229977101365 0.3974895397489284 0.02034229977101365 0.2084245456367995
+0.40167364016733864 0.02034229977101365 0.4016736401673386 0.02034229977101365 0.20596942791350878
+0.3870292887029029 0.02373268306618259 0.38702928870290293 0.02373268306618259 0.21519646976608406
+0.4100418410041591 0.013561533180675767 0.41004184100415914 0.013561533180675767 0.19797151929632048
+0.4142259414225693 0.013561533180675767 0.4142259414225693 0.013561533180675767 0.19487532154656798
+0.4184100418409795 0.013561533180675767 0.41841004184097946 0.013561533180675767 0.19155478378920066
+0.40794979079495397 0.01695191647584471 0.4079497907949539 0.01695191647584471 0.2005205829813388
+0.42259414225938974 0.013561533180675767 0.42259414225938974 0.013561533180675767 0.18801515985623155
+0.4309623430962102 0.006780766590337883 0.4309623430962102 0.006780766590337883 0.17906774236214676
+0.42887029288700507 0.010171149885506825 0.4288702928870051 0.010171149885506825 0.18157074541499282
+0.42677824267779996 0.013561533180675767 0.4267782426778 0.013561533180675767 0.18426148896680475
+0.006780766590337883 0.44351464435146504 0.006780766590337883 0.44351464435146504 0.22151069470529308
+0.006780766590337883 0.4476987447698751 0.006780766590337883 0.4476987447698751 0.22238184756668664
+0.006780766590337883 0.45188284518828514 0.006780766590337883 0.4518828451882851 0.22315004075822345
+0.15934801486250008 0.2238493723896375 0.15934801486250008 0.2238493723896375 0.09768029816981154
+0.1627383981510414 0.22175732218198174 0.1627383981510414 0.22175732218198174 0.0990273519836803
+0.16612878143205123 0.2196652719795757 0.16612878143205123 0.21966527197957572 0.10043140550412298
+0.16951916472054826 0.2175732217776628 0.16951916472054826 0.21757322177766278 0.10187141585558245
+0.17290954800544958 0.21548117157470104 0.17290954800544958 0.21548117157470106 0.1033323586678042
+0.17629986915772092 0.21338897512213215 0.17629986915772092 0.21338897512213215 0.10480513614247199
+0.17968808949890425 0.21129499539489072 0.17968808949890425 0.2112949953948907 0.10628615371463672
+0.18306975213492693 0.20919793150038532 0.18306975213492693 0.20919793150038532 0.10777644304950605
+0.11188264874052044 0.26150627615070926 0.11188264874052044 0.26150627615070926 0.10505621536356692
+0.11527303203569873 0.25941422594151475 0.11527303203569873 0.2594142259415148 0.10233034597276235
+0.11866341533087497 0.2573221757323185 0.11866341533087497 0.2573221757323185 0.09991506511411051
+0.12205379862612104 0.2510460251046403 0.12205379862612102 0.2510460251046403 0.09710271222486054
+0.12544418192130785 0.2489539748953913 0.12544418192130788 0.2489539748953913 0.09547357576570072
+0.12205379862606247 0.25523012552312013 0.12205379862606247 0.25523012552312013 0.0978395316388111
+0.1288345652164627 0.24686192468606602 0.12883456521646267 0.24686192468606602 0.0942264486793458
+0.13222494851151126 0.24476987447669643 0.13222494851151126 0.24476987447669643 0.09335909680967708
+0.13561533180635946 0.2426778242672842 0.13561533180635946 0.2426778242672842 0.09285834176634623
+0.1390057151009709 0.24058577405805634 0.1390057151009709 0.24058577405805634 0.09270124816763924
+0.14239609839525932 0.2384937238492744 0.14239609839525932 0.2384937238492744 0.09285698670351734
+0.14578648168903538 0.23640167364084239 0.14578648168903538 0.23640167364084239 0.09328913892675188
+0.14917686498367624 0.2343096234329037 0.14917686498367624 0.2343096234329037 0.09395816859551108
+0.15256724827763765 0.23221757322514383 0.15256724827763765 0.23221757322514383 0.0948238040279235
+0.15595763157198977 0.2301255230169674 0.15595763157198975 0.2301255230169674 0.09584713895151374
+0.15934801486462052 0.22803347280854547 0.1593480148646205 0.2280334728085455 0.0969923395090989
+0.09154034896955963 0.27824267782425643 0.09154034896955963 0.27824267782425643 0.12669375431813787
+0.0949307322647208 0.2761506276150462 0.0949307322647208 0.2761506276150462 0.12302660782886048
+0.09832111555987665 0.27405857740583983 0.09832111555987665 0.2740585774058398 0.11938994599972434
+0.10171149885502574 0.27196652719664355 0.10171149885502574 0.27196652719664355 0.11583233724968912
+0.1051018821501639 0.26987447698745487 0.1051018821501639 0.26987447698745487 0.11240260779708074
+0.10849226544532255 0.26778242677828284 0.10849226544532255 0.26778242677828284 0.10914858790117492
+0.1118826487404719 0.2656903765691166 0.1118826487404719 0.2656903765691166 0.10611567145140989
+0.07458843249371364 0.29707112970711774 0.07458843249371362 0.29707112970711774 0.14676430713206165
+0.07797881578888304 0.29497907949791397 0.07797881578888304 0.29497907949791397 0.1436089485459132
+0.08136919908405507 0.2887029288702971 0.08136919908405506 0.2887029288702971 0.1387325528586871
+0.08475958237922517 0.2866108786610911 0.08475958237922517 0.2866108786610911 0.1352529142298815
+0.08136919908405263 0.2928870292887099 0.08136919908405262 0.29288702928870997 0.14027811387583658
+0.08814996567439526 0.2845188284518836 0.08814996567439526 0.2845188284518836 0.1316688462674477
+0.0915403489695652 0.2824267782426743 0.0915403489695652 0.2824267782426743 0.1280215446778266
+0.061026899313040776 0.3138075313807524 0.061026899313040776 0.3138075313807524 0.16091131941530265
+0.06441728260820927 0.31171548117154696 0.06441728260820927 0.31171548117154696 0.1587147926092284
+0.06780766590337613 0.3054393305439331 0.06780766590337613 0.3054393305439331 0.154213625238483
+0.06780766590337733 0.3096234309623415 0.06780766590337733 0.3096234309623415 0.15626220009035305
+0.07119804919854417 0.3033472803347292 0.07119804919854417 0.3033472803347292 0.15149962781962487
+0.07458843249371178 0.3012552301255264 0.07458843249371178 0.3012552301255264 0.148558549387474
+0.04407498283719624 0.3326359832635987 0.04407498283719624 0.3326359832635987 0.17265017322190992
+0.04407498283719624 0.3368200836820088 0.04407498283719624 0.3368200836820088 0.17522801708685323
+0.04746536613236518 0.3305439330543937 0.04746536613236518 0.3305439330543937 0.17173074973919503
+0.050855749427534125 0.3284518828451887 0.050855749427534125 0.3284518828451887 0.17059839742043892
+0.054246132722703115 0.3221757322175736 0.054246132722703115 0.3221757322175736 0.16675542713559066
+0.05424613272270309 0.3263598326359837 0.05424613272270309 0.3263598326359837 0.16923209111041118
+0.05763651601787209 0.32008368200836845 0.0576365160178721 0.3200836820083684 0.1651045254998699
+0.06102689931304111 0.31799163179916295 0.06102689931304111 0.31799163179916295 0.163194481927154
+0.03390383295168942 0.35146443514644404 0.03390383295168942 0.35146443514644404 0.18228685499677574
+0.03729421624685836 0.349372384937239 0.03729421624685836 0.349372384937239 0.1819245938505665
+0.0406845995420273 0.3430962343096238 0.0406845995420273 0.3430962343096238 0.17862958124971992
+0.04407498283719624 0.34100418410041883 0.04407498283719624 0.34100418410041883 0.17797680260766893
+0.0406845995420273 0.34728033472803393 0.0406845995420273 0.34728033472803393 0.18146625173658715
+0.03390383295168942 0.3556485355648541 0.03390383295168942 0.35564853556485415 0.1851108397892176
+0.027123066361351533 0.3682008368200842 0.027123066361351533 0.3682008368200842 0.19119302992229267
+0.03390383295168942 0.35983263598326415 0.03390383295168942 0.35983263598326415 0.18799474412686992
+0.030513449656520475 0.3661087866108792 0.030513449656520475 0.3661087866108792 0.19104584140875588
+0.03390383295168942 0.3640167364016742 0.03390383295168942 0.3640167364016742 0.1909119609046246
+0.027123066361351533 0.3723849372384942 0.027123066361351533 0.3723849372384942 0.1939787610246327
+0.01695191647584471 0.3953974895397496 0.01695191647584471 0.3953974895397496 0.20467081736327766
+0.02373268306618259 0.37866108786610925 0.02373268306618259 0.37866108786610925 0.19681850569764078
+0.027123066361351533 0.3765690376569042 0.027123066361351533 0.3765690376569042 0.1967340351127271
+0.02034229977101365 0.38493723849372435 0.02034229977101365 0.38493723849372435 0.19959020692032706
+0.02373268306618259 0.38284518828451936 0.02373268306618259 0.38284518828451936 0.1994571380288229
+0.02034229977101365 0.38912133891213446 0.02034229977101365 0.38912133891213446 0.2020948279260362
+0.02034229977101365 0.39330543933054457 0.02034229977101365 0.39330543933054457 0.2045067801624245
+0.013561533180675767 0.4100418410041849 0.013561533180675767 0.4100418410041849 0.21123621791036698
+0.013561533180675767 0.41422594142259495 0.013561533180675767 0.414225941422595 0.21306487293537638
+0.01695191647584471 0.3995815899581597 0.01695191647584471 0.3995815899581597 0.2069209822013531
+0.01695191647584471 0.4037656903765698 0.01695191647584471 0.4037656903765698 0.20905464011975414
+0.01695191647584471 0.4079497907949799 0.01695191647584471 0.4079497907949799 0.21106396571825656
+0.013561533180675767 0.41841004184100494 0.013561533180675767 0.418410041841005 0.21476210623730416
+0.013561533180675767 0.422594142259415 0.013561533180675767 0.422594142259415 0.21632678146410192
+0.010171149885506825 0.42887029288703005 0.010171149885506825 0.42887029288703005 0.21791286356468395
+0.013561533180675767 0.42677824267782505 0.013561533180675767 0.42677824267782505 0.21775945130029606
+0.010171149885506825 0.43305439330544004 0.010171149885506825 0.43305439330544004 0.2191742052823171
+0.010171149885506825 0.43723849372385004 0.010171149885506825 0.43723849372385004 0.2203125067886129
+0.010171149885506825 0.44142259414226004 0.010171149885506825 0.44142259414226004 0.22133255635775462
+0.18644083523432875 0.20710118539761346 0.18644083523432875 0.20710118539761346 0.10928008869918172
+0.21966527196649413 0.16612878146327814 0.21966527196649413 0.16612878146327814 0.13110749190212537
+0.217573221757289 0.16951916475844708 0.217573221757289 0.16951916475844708 0.12964550394624727
+0.21548117154808388 0.17290954805361602 0.21548117154808386 0.17290954805361602 0.12815803899962397
+0.21338912133887877 0.17629993134878497 0.21338912133887877 0.17629993134878497 0.12663622723297074
+0.18979920927808605 0.20500587856795538 0.18979920927808605 0.20500587856795538 0.11080659837807137
+0.1931392958344509 0.20291791164236547 0.1931392958344509 0.20291791164236547 0.11236492519856979
+0.21129707112967364 0.1796903146439539 0.21129707112967364 0.1796903146439539 0.125074329511125
+0.20920502092046855 0.18308069793912285 0.20920502092046855 0.18308069793912285 0.12346966755952198
+0.20711297071126347 0.1864710812342918 0.20711297071126347 0.1864710812342918 0.12182244654159169
+0.19642068509511343 0.20097578880838385 0.19642068509511343 0.20097578880838385 0.11391188827261893
+0.20502092050205833 0.18986146452946068 0.20502092050205833 0.1898614645294607 0.1201352992593565
+0.2030901863990182 0.19325214288865974 0.2030901863990182 0.19325214288865974 0.1184735426037712
+0.20120219888968413 0.19664996446460226 0.20120219888968413 0.19664996446460226 0.11680140013829603
+0.19943942242913723 0.1995881490516179 0.19943942242913723 0.1995881490516179 0.11523482742419917
+0.24058577405854517 0.1390057151019266 0.24058577405854517 0.1390057151019266 0.14753691957852413
+0.23849372384934006 0.14239609839709555 0.23849372384934006 0.14239609839709555 0.14557938194982456
+0.23640167364013495 0.1457864816922645 0.23640167364013495 0.1457864816922645 0.1437368755303692
+0.23430962343092984 0.14917686498743343 0.23430962343092984 0.14917686498743343 0.1419880598709056
+0.23221757322172473 0.15256724828260237 0.23221757322172473 0.15256724828260237 0.14031089306787117
+0.23012552301251965 0.15595763157777132 0.23012552301251965 0.15595763157777132 0.13868361151749709
+0.2280334728033145 0.15934801487294026 0.2280334728033145 0.15934801487294026 0.13708558895150982
+0.22594142259410943 0.1627383981681092 0.22594142259410943 0.1627383981681092 0.135498049049817
+0.22384937238490435 0.16612878146327814 0.22384937238490435 0.16612878146327814 0.13390461984707425
+0.2719665271966218 0.10171149885506825 0.2719665271966218 0.10171149885506825 0.1874281525069573
+0.2698744769874167 0.10510188215023719 0.2698744769874167 0.10510188215023719 0.18403598680425712
+0.26778242677821157 0.10849226544540613 0.26778242677821157 0.10849226544540613 0.18068600149702707
+0.26569037656900646 0.11188264874057507 0.26569037656900646 0.11188264874057507 0.17741048762509584
+0.25941422594139113 0.11527303203574402 0.25941422594139113 0.11527303203574402 0.16979887655250847
+0.257322175732186 0.11866341533091296 0.257322175732186 0.11866341533091296 0.16672656486942786
+0.2552301255229809 0.1220537986260819 0.2552301255229809 0.1220537986260819 0.16380402928634855
+0.2531380753137758 0.12544418192125084 0.2531380753137758 0.12544418192125084 0.16104077875188264
+0.2510460251045707 0.12883456521641978 0.2510460251045707 0.12883456521641978 0.15843991327659301
+0.2489539748953656 0.13222494851158872 0.2489539748953656 0.13222494851158872 0.15599845902259402
+0.24686192468616044 0.13561533180675767 0.24686192468616044 0.13561533180675767 0.15370796035492626
+0.2447698744769554 0.1390057151019266 0.2447698744769554 0.1390057151019266 0.15155528777081198
+0.26359832635980135 0.11527303203574402 0.26359832635980135 0.11527303203574402 0.17423664375162004
+0.29288702928867294 0.0813691990840546 0.29288702928867294 0.0813691990840546 0.2141840610114054
+0.29079497907946783 0.08475958237922354 0.2907949790794678 0.08475958237922354 0.2116139889165318
+0.2887029288702627 0.08814996567439248 0.2887029288702627 0.08814996567439248 0.20883257716034628
+0.2803347280334423 0.09493073226473037 0.2803347280334423 0.09493073226473037 0.19844565291136793
+0.2866108786610576 0.09154034896956142 0.28661087866105767 0.09154034896956142 0.20587904356892475
+0.2845188284518525 0.09493073226473037 0.2845188284518525 0.09493073226473037 0.2027942564234078
+0.2782426778242371 0.09832111555989931 0.2782426778242371 0.09832111555989931 0.1951698122798082
+0.276150627615032 0.10171149885506825 0.276150627615032 0.10171149885506825 0.19185233857398434
+0.3242677824267496 0.05763651601787201 0.32426778242674953 0.05763651601787201 0.23421690004824244
+0.3221757322175445 0.06102689931304095 0.3221757322175445 0.06102689931304095 0.23449840545764242
+0.32008368200833937 0.06441728260820989 0.3200836820083394 0.06441728260820989 0.2344384121286507
+0.31799163179913426 0.06780766590337883 0.31799163179913426 0.06780766590337883 0.23403140100885364
+0.31589958158992915 0.07119804919854777 0.3158995815899291 0.07119804919854777 0.23328010487968456
+0.31380753138072404 0.07458843249371672 0.31380753138072404 0.07458843249371672 0.23219501129749667
+0.29916317991628827 0.07797881578888566 0.2991631799162882 0.07797881578888566 0.22022990187558364
+0.3033472803346985 0.07797881578888566 0.30334728033469854 0.07797881578888566 0.22388242196167865
+0.3075313807531087 0.07797881578888566 0.30753138075310865 0.07797881578888566 0.2274180275070785
+0.3117154811715189 0.07797881578888566 0.311715481171519 0.07797881578888566 0.23079368441013723
+0.29707112970708316 0.0813691990840546 0.29707112970708316 0.0813691990840546 0.21805072376495446
+0.3305439330543649 0.054246132722703067 0.3305439330543649 0.054246132722703067 0.2355631985978727
+0.3284518828451598 0.05763651601787201 0.32845188284515986 0.05763651601787201 0.23633967768551442
+0.33472803347277513 0.054246132722703067 0.33472803347277513 0.054246132722703067 0.23727382371687158
+0.36401673640164667 0.03390383295168942 0.36401673640164667 0.03390383295168942 0.2275138058976989
+0.36192468619244156 0.03729421624685836 0.3619246861924416 0.03729421624685836 0.23009548505339208
+0.35983263598323645 0.0406845995420273 0.35983263598323645 0.0406845995420273 0.23263464590447583
+0.35774058577403134 0.04407498283719624 0.3577405857740313 0.04407498283719624 0.23507627253879224
+0.35564853556482623 0.04746536613236518 0.35564853556482623 0.04746536613236518 0.2373684078620001
+0.33891213389118535 0.054246132722703067 0.33891213389118535 0.054246132722703067 0.23871968685344933
+0.34309623430959557 0.054246132722703067 0.34309623430959557 0.054246132722703067 0.23988425583354536
+0.3493723849372109 0.050855749427534125 0.34937238493721084 0.050855749427534125 0.23904509459967713
+0.3535564853556211 0.050855749427534125 0.3535564853556212 0.050855749427534125 0.23946379996134573
+0.3472803347280058 0.054246132722703067 0.3472803347280058 0.054246132722703067 0.24075458641912165
+0.38493723849369776 0.027123066361351533 0.38493723849369776 0.027123066361351533 0.2179648001985013
+0.370292887029262 0.030513449656520475 0.37029288702926205 0.030513449656520475 0.22433276420200396
+0.3744769874476722 0.030513449656520475 0.37447698744767216 0.030513449656520475 0.2234462593715525
+0.37866108786608244 0.030513449656520475 0.3786610878660825 0.030513449656520475 0.2222873996711983
+0.38284518828449265 0.030513449656520475 0.3828451882844926 0.030513449656520475 0.22085888589989147
+0.3682008368200569 0.03390383295168942 0.3682008368200569 0.03390383295168942 0.22700906774816085
+0.40585774058574886 0.02034229977101365 0.40585774058574886 0.02034229977101365 0.2032747745328324
+0.3912133891213131 0.02373268306618259 0.39121338912131304 0.02373268306618259 0.21332587691051383
+0.3953974895397233 0.02373268306618259 0.39539748953972337 0.02373268306618259 0.21120199684945673
+0.39958158995813353 0.02373268306618259 0.3995815899581335 0.02373268306618259 0.20883018353968483
+0.40376569037654375 0.02373268306618259 0.4037656903765438 0.02373268306618259 0.20621627957633118
+0.389121338912108 0.027123066361351533 0.389121338912108 0.027123066361351533 0.21618232686099062
+0.4121338912133642 0.01695191647584471 0.41213389121336425 0.01695191647584471 0.19751038604542895
+0.4163179916317744 0.01695191647584471 0.41631799163177435 0.01695191647584471 0.19427413827553597
+0.42050209205018463 0.01695191647584471 0.4205020920501847 0.01695191647584471 0.1908173628285784
+0.4100418410041591 0.02034229977101365 0.41004184100415914 0.02034229977101365 0.20034640409443608
+0.42468619246859485 0.01695191647584471 0.4246861924685948 0.01695191647584471 0.1871453762037447
+0.4351464435146204 0.006780766590337883 0.43514644351462034 0.006780766590337883 0.17492942369229134
+0.4330543933054153 0.010171149885506825 0.43305439330541523 0.010171149885506825 0.1775224490125623
+0.4309623430962102 0.013561533180675767 0.4309623430962102 0.013561533180675767 0.18029850147840773
+0.42887029288700507 0.01695191647584471 0.4288702928870051 0.01695191647584471 0.183263181643297
+0.006780766590337883 0.45606694560669525 0.006780766590337883 0.4560669456066952 0.22382200809107325
+0.010171149885506825 0.44560669456067004 0.010171149885506825 0.44560669456067004 0.22224001789966333
+0.010171149885506825 0.44979079497908003 0.010171149885506825 0.44979079497908003 0.2230412361755779
+0.010171149885506825 0.45397489539749014 0.010171149885506825 0.4539748953974901 0.22374304098858902
+0.16273839815557736 0.2259414226003006 0.16273839815557736 0.22594142260030062 0.09822791929023378
+0.16612878144142232 0.2238493723936181 0.16612878144142232 0.2238493723936181 0.09952759897220143
+0.16951916472290962 0.22175732218810554 0.16951916472290962 0.22175732218810554 0.10087079897059974
+0.17290954798999109 0.21966527199202496 0.1729095479899911 0.21966527199202493 0.10224282566878706
+0.17629993127542917 0.2175732217978026 0.17629993127542917 0.2175732217978026 0.10363481121821348
+0.17968998909809944 0.2154805639280134 0.17968998909809944 0.21548056392801343 0.10504354343577282
+0.18307647685017084 0.21338470932036782 0.18307647685017084 0.21338470932036782 0.10647097334397694
+0.1864551517200739 0.21128403979530627 0.1864551517200739 0.21128403979530627 0.10792334975329486
+0.11527303203564347 0.2635983263599471 0.11527303203564347 0.2635983263599471 0.10334522228538222
+0.11866341533081014 0.26150627615077066 0.11866341533081014 0.26150627615077066 0.1008729039215197
+0.12205379862599303 0.2594142259415814 0.12205379862599304 0.2594142259415814 0.09872705812203052
+0.12544418192125442 0.25313807531392635 0.12544418192125442 0.25313807531392635 0.09612369290167132
+0.1288345652164501 0.2510460251046858 0.1288345652164501 0.2510460251046858 0.09477720777186477
+0.1254441819211691 0.2573221757323917 0.1254441819211691 0.25732217573239163 0.09692729983942004
+0.13222494851166453 0.24895397489541363 0.13222494851166453 0.24895397489541363 0.0937989989369687
+0.1356153318068134 0.24686192468601398 0.1356153318068134 0.24686192468601398 0.09317755113775165
+0.13900571510176293 0.2447698744764983 0.13900571510176293 0.2447698744764983 0.0928919630865852
+0.1423960983963278 0.2426778242669024 0.1423960983963278 0.2426778242669024 0.0929136427565309
+0.1457864816904366 0.24058577405766032 0.1457864816904366 0.24058577405766032 0.09320844218947505
+0.1491768649839212 0.23849372384927303 0.14917686498392116 0.23849372384927303 0.09373898332409414
+0.15256724827642024 0.23640167364155606 0.15256724827642024 0.2364016736415561 0.09446693605684912
+0.15595763157038453 0.23430962343488848 0.15595763157038453 0.23430962343488848 0.09535506104899477
+0.15934801486317043 0.23221757322840242 0.15934801486317043 0.23221757322840242 0.09636890044266237
+0.1627383981566606 0.230125523021 0.1627383981566606 0.230125523021 0.09747806842467223
+0.0949307322647328 0.2803347280334625 0.0949307322647328 0.2803347280334625 0.12435502685693635
+0.09832111555989605 0.2782426778242484 0.09832111555989605 0.2782426778242484 0.12071537006457857
+0.10171149885505047 0.2761506276150333 0.10171149885505047 0.27615062761503323 0.11714981827502434
+0.1051018821501956 0.2740585774058261 0.1051018821501956 0.2740585774058261 0.1137057364089815
+0.10849226544532777 0.27196652719663766 0.10849226544532777 0.27196652719663766 0.11042939928041984
+0.11188264874043956 0.26987447698746364 0.11188264874043956 0.26987447698746364 0.10736462040616689
+0.1152730320355893 0.26778242677831826 0.11527303203558929 0.26778242677831826 0.10455125427615895
+0.07797881578888048 0.2991631799163236 0.07797881578888048 0.29916317991632363 0.14541361638906977
+0.08136919908404919 0.2970711297071212 0.08136919908404917 0.2970711297071212 0.14209295527044577
+0.08475958237922267 0.2907949790795053 0.08475958237922267 0.2907949790795053 0.13680490336621567
+0.08814996567439302 0.2887029288702998 0.08814996567439302 0.2887029288702998 0.13322636352055142
+0.08475958237921893 0.2949790794979182 0.08475958237921893 0.2949790794979182 0.1386291056790823
+0.09154034896956387 0.28661087866109386 0.09154034896956387 0.28661087866109386 0.12958289469625706
+0.09493073226473459 0.28451882845188453 0.09493073226473459 0.28451882845188453 0.12591757500788378
+0.06441728260821002 0.31589958158995746 0.06441728260821002 0.31589958158995746 0.16102400250950388
+0.06780766590337871 0.31380753138075174 0.06780766590337871 0.31380753138075174 0.1585980611338448
+0.07119804919854504 0.3075313807531368 0.07119804919854504 0.3075313807531368 0.15356520782255678
+0.0711980491985469 0.3117154811715459 0.0711980491985469 0.3117154811715459 0.1559276844060905
+0.07458843249371204 0.3054393305439325 0.07458843249371204 0.3054393305439325 0.15064119234307952
+0.07797881578887927 0.3033472803347302 0.07797881578887927 0.3033472803347302 0.14751286183557874
+0.04746536613236518 0.3347280334728038 0.04746536613236518 0.3347280334728038 0.17434753064073358
+0.04746536613236518 0.3389121338912138 0.04746536613236518 0.3389121338912138 0.17714918528543167
+0.050855749427534125 0.3326359832635987 0.050855749427534125 0.3326359832635987 0.1732586986248306
+0.054246132722703067 0.3305439330543937 0.054246132722703067 0.3305439330543937 0.17193953148439836
+0.05763651601787206 0.32426778242677873 0.05763651601787206 0.32426778242677873 0.16761694514412676
+0.05763651601787201 0.3284518828451887 0.05763651601787201 0.3284518828451887 0.1703741502998534
+0.06102689931304107 0.32217573221757356 0.06102689931304107 0.32217573221757356 0.16574442627407496
+0.06441728260821016 0.3200836820083683 0.06441728260821016 0.3200836820083683 0.16361240248436057
+0.03729421624685836 0.3535564853556491 0.03729421624685836 0.35355648535564915 0.1848053635100302
+0.0406845995420273 0.35146443514644404 0.0406845995420273 0.35146443514644404 0.18441211822404033
+0.04407498283719624 0.3451882845188289 0.04407498283719624 0.3451882845188288 0.1808737308713199
+0.04746536613236518 0.3430962343096238 0.04746536613236518 0.3430962343096238 0.18011264921459166
+0.04407498283719624 0.349372384937239 0.04407498283719624 0.349372384937239 0.18389234321189396
+0.03729421624685836 0.35774058577405915 0.03729421624685836 0.35774058577405915 0.1877564510051286
+0.030513449656520475 0.3702928870292892 0.030513449656520475 0.3702928870292892 0.19389580628679123
+0.03729421624685836 0.3619246861924692 0.03729421624685836 0.3619246861924692 0.19074988957186065
+0.03390383295168942 0.3682008368200842 0.03390383295168942 0.3682008368200842 0.19383580444729906
+0.03729421624685836 0.3661087866108792 0.03729421624685836 0.3661087866108792 0.19375744123211006
+0.030513449656520475 0.3744769874476992 0.030513449656520475 0.3744769874476992 0.19672073834639714
+0.02034229977101365 0.3974895397489546 0.02034229977101365 0.3974895397489546 0.20681284564963945
+0.027123066361351533 0.38075313807531425 0.027123066361351533 0.38075313807531425 0.19943715502775836
+0.030513449656520475 0.37866108786610925 0.030513449656520475 0.37866108786610925 0.19949737354796837
+0.02373268306618259 0.38702928870292946 0.02373268306618259 0.38702928870292946 0.20202112835247968
+0.027123066361351533 0.38493723849372435 0.027123066361351533 0.38493723849372435 0.2020680932060475
+0.02373268306618259 0.39121338912133957 0.02373268306618259 0.39121338912133957 0.2044938565376535
+0.02373268306618259 0.3953974895397496 0.02373268306618259 0.3953974895397496 0.20686083624910126
+0.01695191647584471 0.4121338912133899 0.01695191647584471 0.4121338912133899 0.21294323138769813
+0.01695191647584471 0.41631799163179994 0.01695191647584471 0.4163179916318 0.21468874609842392
+0.02034229977101365 0.4016736401673647 0.02034229977101365 0.4016736401673647 0.20900197885890134
+0.02034229977101365 0.4058577405857748 0.02034229977101365 0.4058577405857748 0.2110653513981522
+0.02034229977101365 0.4100418410041849 0.02034229977101365 0.4100418410041849 0.2129963466078222
+0.01695191647584471 0.42050209205020994 0.01695191647584471 0.42050209205021 0.21629875934592266
+0.01695191647584471 0.42468619246862 0.01695191647584471 0.42468619246862 0.21777333545766278
+0.013561533180675767 0.43096234309623505 0.013561533180675767 0.43096234309623505 0.2190622046196327
+0.01695191647584471 0.42887029288703005 0.01695191647584471 0.42887029288703005 0.21911420318663796
+0.013561533180675767 0.43514644351464504 0.013561533180675767 0.43514644351464504 0.22023849597429243
+0.013561533180675767 0.43933054393305504 0.013561533180675767 0.43933054393305504 0.22129296156299347
+0.013561533180675767 0.44351464435146504 0.013561533180675767 0.44351464435146504 0.2222312255776255
+0.1898209928829697 0.2091804477551543 0.1898209928829697 0.2091804477551543 0.1094093641388401
+0.22175732217569924 0.16951916475844708 0.22175732217569924 0.16951916475844708 0.1322917300521029
+0.21966527196649413 0.17290954805361602 0.21966527196649413 0.17290954805361602 0.13064885655876637
+0.217573221757289 0.17629993134878497 0.217573221757289 0.17629993134878497 0.1289686386121229
+0.21548117154808388 0.1796903146439539 0.21548117154808386 0.1796903146439539 0.12724687705858106
+0.19318247475596906 0.20706082192940878 0.19318247475596906 0.20706082192940878 0.11094916279164625
+0.19648485063463472 0.20504323103983416 0.19648485063463472 0.20504323103983416 0.11250107776803508
+0.21338912133887877 0.18308069793912285 0.21338912133887877 0.18308069793912285 0.12548243474400092
+0.21129707112967364 0.1864710812342918 0.21129707112967364 0.1864710812342918 0.12367703454677238
+0.20920502092046855 0.1898614645294607 0.20920502092046855 0.1898614645294607 0.12183485894879335
+0.1997352409359464 0.2030511050645336 0.1997352409359464 0.2030511050645336 0.11410210586457836
+0.20715393502064336 0.1932710839083695 0.20715393502064336 0.19327108390836953 0.11997170295790109
+0.20515639386523757 0.19673736211741097 0.20515639386523757 0.19673736211741097 0.11808208611004307
+0.20304713483641568 0.20059473204574296 0.20304713483641562 0.2005947320457429 0.11601123917996768
+0.24267782426775028 0.14239609839709555 0.24267782426775028 0.14239609839709555 0.1495236055473498
+0.24058577405854517 0.1457864816922645 0.24058577405854517 0.1457864816922645 0.14759343406031222
+0.23849372384934006 0.14917686498743343 0.23849372384934006 0.14917686498743343 0.1457437399183978
+0.23640167364013495 0.15256724828260237 0.23640167364013495 0.15256724828260237 0.14395299192798247
+0.23430962343092984 0.15595763157777132 0.23430962343092984 0.15595763157777132 0.1422001309941114
+0.23221757322172473 0.15934801487294026 0.23221757322172473 0.15934801487294026 0.1404654153182587
+0.23012552301251965 0.1627383981681092 0.23012552301251965 0.1627383981681092 0.13873111653401807
+0.2280334728033145 0.16612878146327814 0.2280334728033145 0.16612878146327814 0.13698205592311116
+0.22594142259410943 0.16951916475844708 0.22594142259410943 0.16951916475844708 0.13520598133775405
+0.2740585774058269 0.10510188215023719 0.2740585774058269 0.10510188215023719 0.18853223358816085
+0.2719665271966218 0.10849226544540613 0.2719665271966218 0.10849226544540613 0.185245288978058
+0.2698744769874167 0.11188264874057507 0.2698744769874167 0.11188264874057507 0.18202304460211174
+0.26778242677821157 0.11527303203574402 0.26778242677821157 0.11527303203574402 0.17889190642914976
+0.26150627615059624 0.11866341533091296 0.26150627615059624 0.11866341533091296 0.1711858800654398
+0.25941422594139113 0.1220537986260819 0.25941422594139113 0.1220537986260819 0.1682733607208601
+0.257322175732186 0.12544418192125084 0.257322175732186 0.12544418192125084 0.16550781450857951
+0.2552301255229809 0.12883456521641978 0.2552301255229809 0.12883456521641978 0.1628916282018358
+0.2531380753137758 0.13222494851158872 0.2531380753137758 0.13222494851158872 0.16042121776701124
+0.2510460251045707 0.13561533180675767 0.2510460251045707 0.13561533180675767 0.15808765244415868
+0.2489539748953656 0.1390057151019266 0.2489539748953656 0.1390057151019266 0.15587748829657896
+0.24686192468616044 0.14239609839709555 0.24686192468616044 0.14239609839709555 0.1537737538152746
+0.26569037656900646 0.11866341533091296 0.26569037656900646 0.11866341533091296 0.17587247006467843
+0.29497907949787805 0.08475958237922354 0.2949790794978781 0.08475958237922354 0.21561931096585304
+0.29288702928867294 0.08814996567439248 0.29288702928867294 0.08814996567439248 0.2129712971977207
+0.29079497907946783 0.09154034896956142 0.2907949790794678 0.09154034896956142 0.21014520766293598
+0.28242677824264734 0.09832111555989931 0.28242677824264734 0.09832111555989931 0.1996194805701503
+0.2887029288702627 0.09493073226473037 0.2887029288702627 0.09493073226473037 0.20718122722788593
+0.28661087866105756 0.09832111555989931 0.28661087866105756 0.09832111555989931 0.20411993145279952
+0.2803347280334422 0.10171149885506825 0.2803347280334422 0.10171149885506825 0.19639511685165145
+0.2782426778242371 0.10510188215023719 0.2782426778242371 0.10510188215023719 0.19315947157459756
+0.3263598326359547 0.06102689931304095 0.3263598326359547 0.06102689931304095 0.2367925662230463
+0.3242677824267496 0.06441728260820989 0.32426778242674953 0.06441728260820989 0.2369068948561989
+0.3221757322175445 0.06780766590337883 0.3221757322175445 0.06780766590337883 0.23667620416130486
+0.32008368200833937 0.07119804919854777 0.3200836820083394 0.07119804919854777 0.23610227559020183
+0.31799163179913426 0.07458843249371672 0.31799163179913426 0.07458843249371672 0.23519465301593326
+0.31589958158992915 0.07797881578888566 0.3158995815899291 0.07797881578888566 0.23396997742740275
+0.3012552301254934 0.0813691990840546 0.3012552301254934 0.0813691990840546 0.22185683697899275
+0.3054393305439036 0.0813691990840546 0.3054393305439036 0.0813691990840546 0.225554801381602
+0.3096234309623138 0.0813691990840546 0.3096234309623138 0.0813691990840546 0.22909992641120436
+0.31380753138072404 0.0813691990840546 0.31380753138072404 0.0813691990840546 0.23245115575535988
+0.29916317991628827 0.08475958237922354 0.2991631799162882 0.08475958237922354 0.21957482284314397
+0.33263598326357 0.05763651601787201 0.33263598326356997 0.05763651601787201 0.23821768038877741
+0.3305439330543649 0.06102689931304095 0.3305439330543649 0.06102689931304095 0.23884223317928763
+0.33682008368198024 0.05763651601787201 0.3368200836819803 0.05763651601787201 0.2398293045986404
+0.3661087866108518 0.03729421624685836 0.3661087866108517 0.03729421624685836 0.22970333097729226
+0.36401673640164667 0.0406845995420273 0.36401673640164667 0.0406845995420273 0.23236023803120434
+0.36192468619244156 0.04407498283719624 0.3619246861924416 0.04407498283719624 0.23492536434417008
+0.35983263598323645 0.04746536613236518 0.35983263598323645 0.04746536613236518 0.23734712560308344
+0.35774058577403134 0.050855749427534125 0.3577405857740313 0.050855749427534125 0.23957843635083273
+0.34100418410039046 0.05763651601787201 0.3410041841003904 0.05763651601787201 0.24115673247491223
+0.3451882845188007 0.05763651601787201 0.34518828451880074 0.05763651601787201 0.24218591565579292
+0.351464435146416 0.054246132722703067 0.351464435146416 0.054246132722703067 0.24132122509262108
+0.35564853556482623 0.054246132722703067 0.35564853556482623 0.054246132722703067 0.24157805328415075
+0.3493723849372109 0.05763651601787201 0.34937238493721084 0.05763651601787201 0.24290648515251465
+0.3870292887029029 0.030513449656520475 0.38702928870290293 0.030513449656520475 0.21916471988549224
+0.3723849372384671 0.03390383295168942 0.3723849372384671 0.03390383295168942 0.22622619879824643
+0.3765690376568773 0.03390383295168942 0.3765690376568773 0.03390383295168942 0.22516626956380978
+0.38075313807528754 0.03390383295168942 0.38075313807528754 0.03390383295168942 0.2238320031927663
+0.38493723849369776 0.03390383295168942 0.38493723849369776 0.03390383295168942 0.22222754254845425
+0.370292887029262 0.03729421624685836 0.37029288702926205 0.03729421624685836 0.2290279955652084
+0.40794979079495397 0.02373268306618259 0.4079497907949539 0.02373268306618259 0.20336642638064492
+0.3933054393305182 0.027123066361351533 0.3933054393305182 0.027123066361351533 0.214143132544757
+0.3974895397489284 0.027123066361351533 0.3974895397489284 0.027123066361351533 0.2118528353040333
+0.40167364016733864 0.027123066361351533 0.4016736401673386 0.027123066361351533 0.20931760484110526
+0.40585774058574886 0.027123066361351533 0.40585774058574886 0.027123066361351533 0.20654395789495103
+0.3912133891213131 0.030513449656520475 0.39121338912131304 0.030513449656520475 0.21720997778582687
+0.4142259414225693 0.02034229977101365 0.4142259414225693 0.02034229977101365 0.19719022293400276
+0.4184100418409795 0.02034229977101365 0.41841004184097946 0.02034229977101365 0.1938120725695773
+0.42259414225938974 0.02034229977101365 0.42259414225938974 0.02034229977101365 0.19021759245532174
+0.4121338912133642 0.02373268306618259 0.41213389121336425 0.02373268306618259 0.20028688447466678
+0.4393305439330306 0.006780766590337883 0.4393305439330306 0.006780766590337883 0.17058794608302155
+0.44351464435144083 0.006780766590337883 0.4435146443514409 0.006780766590337883 0.16604681462525595
+0.42677824267779996 0.02034229977101365 0.4267782426778 0.02034229977101365 0.18641210007134187
+0.4372384937238255 0.010171149885506825 0.43723849372382556 0.010171149885506825 0.17326998426061738
+0.4351464435146204 0.013561533180675767 0.43514644351462034 0.013561533180675767 0.17613054335012615
+0.4330543933054153 0.01695191647584471 0.43305439330541523 0.01695191647584471 0.17917538139797998
+0.4309623430962102 0.02034229977101365 0.4309623430962102 0.02034229977101365 0.18240049012649795
+0.006780766590337883 0.46025104602510536 0.006780766590337883 0.4602510460251054 0.2244046851937739
+0.010171149885506825 0.45815899581590025 0.010171149885506825 0.4581589958159002 0.22435255340906438
+0.013561533180675767 0.44769874476987503 0.013561533180675767 0.44769874476987503 0.22305970059652117
+0.013561533180675767 0.45188284518828514 0.013561533180675767 0.4518828451882851 0.223785385469618
+0.013561533180675767 0.45606694560669525 0.013561533180675767 0.4560669456066952 0.2244156639232471
+0.1661287814467579 0.2280334728130776 0.1661287814467579 0.2280334728130776 0.09865714681224212
+0.16951916473309184 0.22594142260550779 0.16951916473309184 0.22594142260550779 0.0998862238628112
+0.17290954800941585 0.22384937240129618 0.17290954800941585 0.22384937240129618 0.10115112915142986
+0.17629993127702373 0.22175732219931718 0.17629993127702373 0.22175732219931718 0.10244341888976218
+0.17969029893915792 0.21966520596558473 0.17969029893915792 0.21966520596558473 0.10376017342259568
+0.18307975078010316 0.21757143611197535 0.18307975078010316 0.21757143611197535 0.10510390026567
+0.18646421532766208 0.21547284525714236 0.18646421532766208 0.21547284525714236 0.10648181267371935
+0.18983990530148198 0.21336926497388273 0.18983990530148198 0.21336926497388273 0.10790428241064766
+0.11866341533072106 0.265690376569183 0.11866341533072107 0.265690376569183 0.10202364360337417
+0.12205379862589417 0.2635983263600387 0.12205379862589417 0.2635983263600387 0.09980912507045826
+0.12544418192105491 0.26150627615088 0.12544418192105491 0.26150627615088 0.09792674290427959
+0.1288345652163421 0.2552301255232126 0.1288345652163421 0.2552301255232126 0.09548351553731503
+0.1322249485115475 0.2531380753140351 0.1322249485115475 0.2531380753140351 0.09439543393718407
+0.12883456521624218 0.25941422594171853 0.12883456521624218 0.25941422594171853 0.09638633572422434
+0.1356153318067608 0.2510460251049038 0.1356153318067608 0.2510460251049038 0.09365287736957349
+0.1390057151020245 0.24895397489550017 0.1390057151020245 0.24895397489550017 0.0932367074193514
+0.1423960983971649 0.24686192468593104 0.1423960983971649 0.24686192468593102 0.09312037383872572
+0.14578648169192768 0.24476987447615373 0.14578648169192768 0.24476987447615373 0.09327188964280629
+0.14917686498595015 0.242677824266217 0.14917686498595015 0.242677824266217 0.09365601010893786
+0.15256724827885465 0.24058577405715678 0.15256724827885468 0.24058577405715678 0.09423639589975046
+0.15595763157054174 0.23849372384968723 0.15595763157054174 0.23849372384968723 0.09497758161307203
+0.1593480148606459 0.23640167364346795 0.1593480148606459 0.23640167364346795 0.09584663229760593
+0.16273839815340194 0.23430962343901882 0.16273839815340194 0.23430962343901882 0.09681443294136728
+0.1661287814440224 0.2322175732348091 0.1661287814440224 0.2322175732348091 0.09785660647264127
+0.09832111555990546 0.28242677824267237 0.09832111555990546 0.28242677824267237 0.12227538327170008
+0.10171149885507204 0.28033472803345577 0.10171149885507204 0.28033472803345577 0.11870230233093426
+0.10510188215023074 0.27824267782423434 0.10510188215023074 0.27824267782423434 0.11524428665847945
+0.10849226544537312 0.27615062761501125 0.10849226544537312 0.27615062761501125 0.11194608670805546
+0.11188264874049801 0.27405857740580286 0.11188264874049801 0.27405857740580286 0.10884993903282235
+0.11527303203559842 0.2719665271966293 0.11527303203559842 0.27196652719662934 0.10599415665698748
+0.11866341533066044 0.2698744769874824 0.11866341533066045 0.2698744769874824 0.10341168722862513
+0.08136919908404583 0.30125523012552907 0.08136919908404583 0.30125523012552907 0.14420780885523363
+0.08475958237921444 0.29916317991632774 0.08475958237921444 0.29916317991632774 0.1407579981645879
+0.08814996567438894 0.2928870292887145 0.08814996567438894 0.2928870292887145 0.1350584704798581
+0.09154034896955947 0.2907949790795102 0.09154034896955947 0.2907949790795102 0.13142069574680793
+0.08814996567438309 0.2970711297071269 0.08814996567438309 0.2970711297071269 0.13719918890687868
+0.09493073226473044 0.28870292887030463 0.09493073226473044 0.28870292887030463 0.12775796990345364
+0.09832111555990232 0.28661087866109775 0.09832111555990232 0.28661087866109775 0.12411422837794094
+0.06780766590337924 0.3179916317991628 0.06780766590337924 0.31799163179916284 0.16122505081672298
+0.0711980491985482 0.3158995815899569 0.0711980491985482 0.31589958158995696 0.15859264482444102
+0.07458843249371447 0.30962343096234046 0.07458843249371448 0.30962343096234046 0.15302964112493875
+0.07458843249371672 0.3138075313807506 0.07458843249371672 0.3138075313807506 0.15573123894815868
+0.077978815788881 0.30753138075313585 0.077978815788881 0.30753138075313585 0.14992604907705012
+0.08136919908404636 0.30543933054393224 0.08136919908404637 0.30543933054393224 0.14664390788057105
+0.050855749427534125 0.3368200836820088 0.050855749427534125 0.3368200836820088 0.17611809826936564
+0.050855749427534125 0.34100418410041883 0.050855749427534125 0.34100418410041883 0.17915334256646367
+0.054246132722703067 0.3347280334728038 0.054246132722703067 0.3347280334728038 0.17486049397009332
+0.05763651601787201 0.3326359832635987 0.05763651601787201 0.3326359832635987 0.17335939167804534
+0.06102689931304095 0.3263598326359838 0.06102689931304095 0.3263598326359838 0.1685530311711755
+0.06102689931304093 0.3305439330543938 0.06102689931304093 0.3305439330543938 0.17160415650923688
+0.06441728260821 0.32426778242677873 0.06441728260821 0.32426778242677873 0.16647307676164855
+0.06780766590337912 0.3221757322175736 0.06780766590337912 0.3221757322175736 0.16413753813549545
+0.0406845995420273 0.3556485355648541 0.0406845995420273 0.35564853556485415 0.18743917982810485
+0.04407498283719624 0.3535564853556491 0.04407498283719624 0.35355648535564915 0.1870035283582903
+0.04746536613236518 0.34728033472803393 0.04746536613236518 0.34728033472803393 0.18321075906865694
+0.050855749427534125 0.3451882845188289 0.050855749427534125 0.3451882845188288 0.18233662425864416
+0.04746536613236518 0.35146443514644404 0.04746536613236518 0.35146443514644404 0.1864133183440125
+0.0406845995420273 0.35983263598326415 0.0406845995420273 0.35983263598326415 0.1905180774260327
+0.03390383295168942 0.3723849372384942 0.03390383295168942 0.3723849372384942 0.19674017824769674
+0.0406845995420273 0.3640167364016742 0.0406845995420273 0.3640167364016742 0.19361897213492732
+0.03729421624685836 0.3702928870292892 0.03729421624685836 0.3702928870292892 0.1967513281435618
+0.0406845995420273 0.3682008368200842 0.0406845995420273 0.3682008368200842 0.1967123430622111
+0.03390383295168942 0.3765690376569042 0.03390383295168942 0.3765690376569042 0.19960015383670374
+0.02373268306618259 0.3995815899581597 0.02373268306618259 0.3995815899581597 0.20910984159583992
+0.030513449656520475 0.38284518828451936 0.030513449656520475 0.38284518828451936 0.20220411111894898
+0.03390383295168942 0.38075313807531425 0.03390383295168942 0.38075313807531425 0.20239245567619604
+0.027123066361351533 0.38912133891213446 0.027123066361351533 0.38912133891213446 0.20460879659906048
+0.030513449656520475 0.38702928870292946 0.030513449656520475 0.38702928870292946 0.20482136012865745
+0.027123066361351533 0.39330543933054457 0.027123066361351533 0.39330543933054457 0.20704341359829617
+0.027123066361351533 0.3974895397489546 0.027123066361351533 0.3974895397489546 0.2093584484173047
+0.02034229977101365 0.41422594142259495 0.02034229977101365 0.414225941422595 0.21479051004255642
+0.02034229977101365 0.41841004184100494 0.02034229977101365 0.418410041841005 0.21644546163100986
+0.02373268306618259 0.4037656903765698 0.02373268306618259 0.4037656903765698 0.21123097283135905
+0.02373268306618259 0.4079497907949799 0.02373268306618259 0.4079497907949799 0.21321666746448362
+0.02373268306618259 0.4121338912133899 0.02373268306618259 0.4121338912133899 0.2150616631388944
+0.02034229977101365 0.422594142259415 0.02034229977101365 0.422594142259415 0.2179607750389306
+0.02034229977101365 0.42677824267782505 0.02034229977101365 0.42677824267782505 0.21933782945857652
+0.01695191647584471 0.43305439330544004 0.01695191647584471 0.43305439330544004 0.22032458523497092
+0.02034229977101365 0.43096234309623505 0.02034229977101365 0.43096234309623505 0.22057963874000666
+0.01695191647584471 0.43723849372385004 0.01695191647584471 0.43723849372385004 0.22140901207793287
+0.01695191647584471 0.44142259414226004 0.01695191647584471 0.44142259414226004 0.22237312420011743
+0.01695191647584471 0.44560669456067004 0.01695191647584471 0.44560669456067004 0.22322346661152137
+0.19320651429794136 0.21126155878721667 0.19320651429794136 0.21126155878721667 0.10938487836888706
+0.22384937238490435 0.17290954805361602 0.22384937238490435 0.17290954805361602 0.13339379430070752
+0.22175732217569924 0.17629993134878497 0.22175732217569924 0.17629993134878497 0.1315396428744893
+0.21966527196649413 0.1796903146439539 0.21966527196649413 0.1796903146439539 0.12964089958664224
+0.217573221757289 0.18308069793912285 0.217573221757289 0.18308069793912285 0.12769804553819245
+0.1965561763122209 0.20915193592591722 0.1965561763122209 0.20915193592591722 0.1109369833099202
+0.19987597014506342 0.20710427576736032 0.19987597014506342 0.20710427576736032 0.11254977996475142
+0.21548117154808388 0.1864710812342918 0.21548117154808386 0.1864710812342918 0.12571448296268214
+0.21338912133887877 0.18986146452946073 0.21338912133887877 0.18986146452946073 0.12369630386187457
+0.21131508299071924 0.19325790086787328 0.21131508299071924 0.19325790086787328 0.12165774007728923
+0.203149280833607 0.20501337009958975 0.20314928083360703 0.20501337009958975 0.1142842268845281
+0.20925077264928782 0.19665457411650625 0.20925077264928782 0.19665457411650625 0.11960624693116063
+0.2072319594779911 0.2000174987497922 0.20723195947799108 0.20001749874979222 0.11758018240880143
+0.20602942373218208 0.20310809594594603 0.20602942373218208 0.20310809594594606 0.1158856847743287
+0.2447698744769554 0.1457864816922645 0.2447698744769554 0.1457864816922645 0.15175702237339242
+0.24267782426775028 0.14917686498743343 0.24267782426775028 0.14917686498743343 0.14980650542436946
+0.24058577405854517 0.15256724828260237 0.24058577405854517 0.15256724828260237 0.14790110577916438
+0.23849372384934006 0.15595763157777132 0.23849372384934006 0.15595763157777132 0.14602038058369263
+0.23640167364013495 0.15934801487294026 0.23640167364013495 0.15934801487294026 0.1441453767454928
+0.23430962343092984 0.1627383981681092 0.23430962343092984 0.1627383981681092 0.14225931550161583
+0.23221757322172473 0.16612878146327814 0.23221757322172473 0.16612878146327814 0.14034811589713955
+0.23012552301251965 0.16951916475844708 0.23012552301251965 0.16951916475844708 0.13840075802127771
+0.2280334728033145 0.17290954805361602 0.2280334728033145 0.17290954805361602 0.13640949537155164
+0.276150627615032 0.10849226544540613 0.276150627615032 0.10849226544540613 0.18994759844537354
+0.2740585774058269 0.11188264874057507 0.2740585774058269 0.11188264874057507 0.18679025964837903
+0.2719665271966218 0.11527303203574402 0.2719665271966218 0.11527303203574402 0.18371305419665937
+0.2698744769874167 0.11866341533091296 0.2698744769874167 0.11866341533091296 0.18073575910523243
+0.26359832635980135 0.1220537986260819 0.26359832635980135 0.1220537986260819 0.17297908939991194
+0.26150627615059624 0.12544418192125084 0.26150627615059624 0.12544418192125084 0.1702197181472773
+0.25941422594139113 0.12883456521641978 0.25941422594139113 0.12883456521641978 0.1675960357187041
+0.257322175732186 0.13222494851158872 0.257322175732186 0.13222494851158872 0.16510384964942637
+0.2552301255229809 0.13561533180675767 0.2552301255229809 0.13561533180675767 0.16273374697080492
+0.2531380753137758 0.1390057151019266 0.2531380753137758 0.1390057151019266 0.1604719493032469
+0.2510460251045707 0.14239609839709555 0.2510460251045707 0.14239609839709555 0.15830131340379405
+0.2489539748953656 0.1457864816922645 0.2489539748953656 0.1457864816922645 0.15620241207017374
+0.26778242677821157 0.1220537986260819 0.26778242677821157 0.1220537986260819 0.17787192147444883
+0.29707112970708316 0.08814996567439248 0.29707112970708316 0.08814996567439248 0.21707124195108832
+0.29497907949787805 0.09154034896956142 0.2949790794978781 0.09154034896956142 0.21438387332914033
+0.29288702928867294 0.09493073226473037 0.29288702928867294 0.09493073226473037 0.21155216793739062
+0.28451882845185245 0.10171149885506825 0.28451882845185245 0.10171149885506825 0.20100101306430931
+0.2907949790794678 0.09832111555989931 0.2907949790794678 0.09832111555989931 0.20861596685582287
+0.28870292887026267 0.10171149885506825 0.28870292887026267 0.10171149885506825 0.2056142166960325
+0.28242677824264734 0.10510188215023719 0.28242677824264734 0.10510188215023719 0.1978620424000643
+0.2803347280334422 0.10849226544540613 0.2803347280334422 0.10849226544540613 0.19473730577446566
+0.3284518828451598 0.06441728260820989 0.32845188284515986 0.06441728260820989 0.23913166870727345
+0.3263598326359547 0.06780766590337883 0.3263598326359547 0.06780766590337883 0.23907863782931707
+0.3242677824267496 0.07119804919854777 0.32426778242674953 0.07119804919854777 0.23868401141544995
+0.3221757322175445 0.07458843249371672 0.3221757322175445 0.07458843249371672 0.23795642143443627
+0.32008368200833937 0.07797881578888566 0.3200836820083394 0.07797881578888566 0.23691160973535555
+0.31799163179913426 0.0813691990840546 0.31799163179913426 0.0813691990840546 0.23557160563628934
+0.3033472803346985 0.08475958237922354 0.30334728033469854 0.08475958237922354 0.22343140448288598
+0.3075313807531087 0.08475958237922354 0.30753138075310865 0.08475958237922354 0.22714279871451937
+0.3117154811715189 0.08475958237922354 0.311715481171519 0.08475958237922354 0.23066638440317797
+0.31589958158992915 0.08475958237922354 0.3158995815899291 0.08475958237922354 0.2339637532953007
+0.3012552301254934 0.08814996567439248 0.3012552301254934 0.08814996567439248 0.22108189000965692
+0.33472803347277513 0.06102689931304095 0.33472803347277513 0.06102689931304095 0.2406243044761561
+0.33263598326357 0.06441728260820989 0.33263598326356997 0.06441728260820989 0.24108810058728106
+0.33891213389118535 0.06102689931304095 0.33891213389118535 0.06102689931304095 0.24211962898120507
+0.3682008368200569 0.0406845995420273 0.3682008368200569 0.0406845995420273 0.23179720204790613
+0.3661087866108518 0.04407498283719624 0.3661087866108517 0.04407498283719624 0.2344800566726347
+0.36401673640164667 0.04746536613236518 0.36401673640164667 0.04746536613236518 0.23702543053449796
+0.36192468619244156 0.050855749427534125 0.3619246861924416 0.050855749427534125 0.23938649497581935
+0.35983263598323645 0.054246132722703067 0.35983263598323645 0.054246132722703067 0.2415220823310973
+0.34309623430959557 0.06102689931304095 0.34309623430959557 0.06102689931304095 0.24331300340961978
+0.3472803347280058 0.06102689931304095 0.3472803347280058 0.06102689931304095 0.244193090365779
+0.3535564853556211 0.05763651601787201 0.3535564853556212 0.05763651601787201 0.24331159821080584
+0.35774058577403134 0.05763651601787201 0.3577405857740313 0.05763651601787201 0.24339773200458056
+0.351464435146416 0.06102689931304095 0.351464435146416 0.06102689931304095 0.24475226882284298
+0.389121338912108 0.03390383295168942 0.389121338912108 0.03390383295168942 0.22035820994246783
+0.3744769874476722 0.03729421624685836 0.37447698744767216 0.03729421624685836 0.2280704308060704
+0.37866108786608244 0.03729421624685836 0.3786610878660825 0.03729421624685836 0.22683338100536501
+0.38284518828449265 0.03729421624685836 0.3828451882844926 0.03729421624685836 0.22532113755277774
+0.3870292887029029 0.03729421624685836 0.38702928870290293 0.03729421624685836 0.22353928462299352
+0.3723849372384671 0.0406845995420273 0.3723849372384671 0.0406845995420273 0.2309463513139325
+0.4100418410041591 0.027123066361351533 0.41004184100415914 0.027123066361351533 0.20353856324594966
+0.3953974895397233 0.030513449656520475 0.39539748953972337 0.030513449656520475 0.21500058172330563
+0.39958158995813353 0.030513449656520475 0.3995815899581335 0.030513449656520475 0.2125430735814208
+0.40376569037654375 0.030513449656520475 0.4037656903765438 0.030513449656520475 0.20984439455679318
+0.40794979079495397 0.030513449656520475 0.4079497907949539 0.030513449656520475 0.2069116738348523
+0.3933054393305182 0.03390383295168942 0.3933054393305182 0.03390383295168942 0.218230263879469
+0.4163179916317744 0.02373268306618259 0.41631799163177435 0.02373268306618259 0.1969838665312951
+0.42050209205018463 0.02373268306618259 0.4205020920501847 0.02373268306618259 0.19346338566427757
+0.42468619246859485 0.02373268306618259 0.4246861924685948 0.02373268306618259 0.18973112118600466
+0.4142259414225693 0.027123066361351533 0.4142259414225693 0.027123066361351533 0.2003080592446134
+0.44769874476985105 0.006780766590337883 0.44769874476985105 0.006780766590337883 0.16130911735727582
+0.4414225941422357 0.010171149885506825 0.44142259414223567 0.010171149885506825 0.16881705047091175
+0.44560669456064594 0.010171149885506825 0.445606694560646 0.010171149885506825 0.1641669046105292
+0.42887029288700507 0.02373268306618259 0.4288702928870051 0.02373268306618259 0.1857923038072616
+0.4393305439330306 0.013561533180675767 0.4393305439330306 0.013561533180675767 0.17176152046946846
+0.4372384937238255 0.01695191647584471 0.43723849372382556 0.01695191647584471 0.1748861091806605
+0.4351464435146204 0.02034229977101365 0.43514644351462034 0.02034229977101365 0.17818715438026186
+0.4330543933054153 0.02373268306618259 0.43305439330541523 0.02373268306618259 0.1816516219790536
+0.4518828451882613 0.006780766590337883 0.4518828451882612 0.006780766590337883 0.15637753201935808
+0.4560669456066715 0.006780766590337883 0.4560669456066715 0.006780766590337883 0.151254353166006
+0.4602510460250817 0.006780766590337883 0.46025104602508177 0.006780766590337883 0.1459415393412763
+0.006780766590337883 0.46443514644351547 0.006780766590337883 0.46443514644351547 0.22490502809246501
+0.006780766590337883 0.4686192468619256 0.006780766590337883 0.4686192468619255 0.2253298402875382
+0.010171149885506825 0.46234309623431036 0.010171149885506825 0.4623430962343104 0.22487699688291896
+0.013561533180675767 0.46025104602510536 0.013561533180675767 0.4602510460251054 0.22495810689677662
+0.01695191647584471 0.44979079497908003 0.01695191647584471 0.44979079497908003 0.2239672792794194
+0.01695191647584471 0.45397489539749014 0.01695191647584471 0.4539748953974901 0.22461228688834836
+0.01695191647584471 0.45815899581590025 0.01695191647584471 0.4581589958159002 0.2251664911212148
+0.006780766590337883 0.47280334728033563 0.006780766590337883 0.47280334728033563 0.2256856106007886
+0.1695191647359032 0.23012552302869896 0.1695191647359032 0.23012552302869896 0.09895408891732961
+0.1729095480208417 0.22803347282154626 0.1729095480208417 0.22803347282154626 0.10009340660064232
+0.17629993129812108 0.2259414226152211 0.17629993129812108 0.22594142261522113 0.10126670375697054
+0.1796903145552955 0.22384937241573244 0.1796903145552955 0.22384937241573244 0.10247156435051864
+0.18308061129223438 0.22175694864576923 0.18308061129223438 0.2217569486457692 0.10371075907977105
+0.1864692528726972 0.21966146919050145 0.1864692528726972 0.21966146919050145 0.10499223969390341
+0.1898521253164651 0.21756096239226597 0.1898521253164651 0.217560962392266 0.1063274856695305
+0.19323180023849465 0.2154574903535522 0.19323180023849465 0.2154574903535522 0.10773088066285451
+0.12205379862579369 0.2677824267783859 0.12205379862579369 0.2677824267783859 0.10112874223427702
+0.12544418192089177 0.2656903765693067 0.12544418192089177 0.26569037656930666 0.09916363024570861
+0.12883456521606015 0.2635983263603308 0.12883456521606015 0.2635983263603308 0.09752593956660022
+0.1322249485113903 0.25732217573252375 0.1322249485113903 0.25732217573252375 0.09518814627607795
+0.13561533180655033 0.2552301255233668 0.1356153318065503 0.2552301255233668 0.0943230511155761
+0.13222494851121133 0.2615062761511036 0.13222494851121133 0.2615062761511036 0.09621620076719097
+0.13900571510177984 0.2531380753142566 0.13900571510177984 0.2531380753142565 0.09377342550327895
+0.14239609839701634 0.2510460251052178 0.1423960983970163 0.2510460251052178 0.09351456696822226
+0.14578648169237965 0.24895397489567536 0.14578648169237965 0.24895397489567536 0.09351652355812702
+0.14917686498750596 0.24686192468582138 0.14917686498750596 0.24686192468582138 0.09374612929619487
+0.1525672482813494 0.24476987447556206 0.1525672482813494 0.24476987447556206 0.09416904703871189
+0.15595763157386322 0.24267782426551288 0.15595763157386322 0.24267782426551285 0.09475165145379234
+0.1593480148644483 0.2405857740569344 0.1593480148644483 0.2405857740569344 0.09546263720912336
+0.16273839815308327 0.23849372385110212 0.16273839815308325 0.23849372385110215 0.09627429323320173
+0.16612878143877166 0.2364016736474923 0.16612878143877166 0.2364016736474923 0.09716343085503448
+0.16951916472948605 0.23430962344714168 0.16951916472948605 0.23430962344714165 0.09811198585144822
+0.10171149885507415 0.28451882845188664 0.10171149885507415 0.28451882845188664 0.12053424958599568
+0.10510188215024684 0.2824267782426698 0.10510188215024684 0.2824267782426699 0.11706263121223186
+0.10849226544541167 0.2803347280334448 0.10849226544541167 0.2803347280334448 0.11374264430956373
+0.1118826487405623 0.2782426778242109 0.1118826487405623 0.2782426778242109 0.11061497814691872
+0.11527303203568211 0.2761506276149733 0.11527303203568211 0.2761506276149733 0.10771641149598425
+0.11866341533076906 0.2740585774057624 0.11866341533076906 0.2740585774057624 0.10507847464765514
+0.12205379862581049 0.2719665271966166 0.12205379862581049 0.27196652719661657 0.10272619646688763
+0.08475958237921231 0.30334728033473196 0.08475958237921231 0.30334728033473196 0.1432145625717345
+0.08814996567437766 0.3012552301255326 0.08814996567437766 0.3012552301255326 0.13967309876711634
+0.09154034896955325 0.29497907949792523 0.09154034896955325 0.29497907949792523 0.13357028637892188
+0.09493073226472365 0.29288702928872257 0.09493073226472365 0.2928870292887225 0.12991261535382204
+0.09154034896954544 0.299163179916335 0.09154034896954544 0.299163179916335 0.13605766677627204
+0.09832111555989469 0.2907949790795186 0.09832111555989469 0.2907949790795186 0.1262691048862898
+0.10171149885506642 0.28870292887031296 0.10171149885506643 0.28870292887031296 0.12268337475827056
+0.07119804919854836 0.3200836820083683 0.07119804919854834 0.3200836820083683 0.1615558078592725
+0.07458843249371762 0.3179916317991625 0.07458843249371762 0.3179916317991625 0.15874310226380287
+0.07797881578888448 0.3117154811715443 0.07797881578888448 0.3117154811715443 0.15266226338753308
+0.07797881578888663 0.31589958158995607 0.07797881578888664 0.31589958158995607 0.15572004725206112
+0.08136919908405088 0.3096234309623385 0.08136919908405088 0.3096234309623385 0.14941203919964388
+0.08475958237921544 0.3075313807531342 0.08475958237921544 0.3075313807531342 0.14601121958921695
+0.054246132722703067 0.3389121338912138 0.054246132722703067 0.3389121338912138 0.17797162392300778
+0.054246132722703067 0.3430962343096238 0.054246132722703067 0.3430962343096238 0.1812445465886865
+0.05763651601787201 0.3368200836820088 0.05763651601787201 0.3368200836820088 0.1765493118719977
+0.06102689931304095 0.3347280334728038 0.06102689931304095 0.3347280334728038 0.1748745469812445
+0.06441728260820989 0.3284518828451888 0.06441728260820989 0.3284518828451888 0.16959059693867096
+0.06441728260820988 0.3326359832635988 0.06441728260820988 0.3326359832635988 0.1729419184844809
+0.06780766590337889 0.32635983263598384 0.06780766590337889 0.32635983263598384 0.16732090396536728
+0.071198049198548 0.32426778242677895 0.071198049198548 0.32426778242677895 0.16480345317661604
+0.04407498283719624 0.35774058577405915 0.04407498283719624 0.35774058577405915 0.19017652189396886
+0.04746536613236518 0.3556485355648541 0.04746536613236518 0.35564853556485415 0.1896881649933608
+0.050855749427534125 0.349372384937239 0.050855749427534125 0.349372384937239 0.18563670607719654
+0.054246132722703067 0.34728033472803393 0.054246132722703067 0.34728033472803393 0.18464704667740486
+0.050855749427534125 0.3535564853556491 0.050855749427534125 0.35355648535564915 0.18902005673979425
+0.04407498283719624 0.3619246861924692 0.04407498283719624 0.3619246861924692 0.19337985490184326
+0.03729421624685836 0.3744769874476992 0.03729421624685836 0.3744769874476992 0.19970487072063114
+0.04407498283719624 0.3661087866108792 0.04407498283719624 0.3661087866108792 0.19658222046549115
+0.0406845995420273 0.3723849372384942 0.0406845995420273 0.3723849372384942 0.19976968738947434
+0.04407498283719624 0.3702928870292892 0.04407498283719624 0.3702928870292892 0.1997532380327686
+0.03729421624685836 0.37866108786610925 0.03729421624685836 0.37866108786610925 0.20259302587228947
+0.027123066361351533 0.4016736401673647 0.027123066361351533 0.4016736401673647 0.21154284930305742
+0.03390383295168942 0.38493723849372435 0.03390383295168942 0.38493723849372435 0.2050958519964516
+0.03729421624685836 0.38284518828451936 0.03729421624685836 0.38284518828451936 0.2053928245293067
+0.030513449656520475 0.39121338912133957 0.030513449656520475 0.39121338912133957 0.207331801978206
+0.03390383295168942 0.38912133891213446 0.03390383295168942 0.38912133891213446 0.2076914550786498
+0.030513449656520475 0.3953974895397496 0.030513449656520475 0.3953974895397496 0.20972057442709566
+0.030513449656520475 0.3995815899581597 0.030513449656520475 0.3995815899581597 0.21197538388716322
+0.02373268306618259 0.41631799163179994 0.02373268306618259 0.4163179916318 0.21676291845178267
+0.02373268306618259 0.42050209205020994 0.02373268306618259 0.42050209205021 0.21831949759292793
+0.027123066361351533 0.4058577405857748 0.027123066361351533 0.4058577405857748 0.21358803733653495
+0.027123066361351533 0.4100418410041849 0.027123066361351533 0.4100418410041849 0.21548788260935983
+0.027123066361351533 0.41422594142259495 0.027123066361351533 0.414225941422595 0.21723863436648597
+0.02373268306618259 0.42468619246862 0.02373268306618259 0.42468619246862 0.21973242435288967
+0.02373268306618259 0.42887029288703005 0.02373268306618259 0.42887029288703005 0.22100451070978222
+0.02034229977101365 0.43514644351464504 0.02034229977101365 0.43514644351464504 0.22169066248340538
+0.02373268306618259 0.43305439330544004 0.02373268306618259 0.43305439330544004 0.22214016487895968
+0.02034229977101365 0.43933054393305504 0.02034229977101365 0.43933054393305504 0.2226766034334551
+0.02034229977101365 0.44351464435146504 0.02034229977101365 0.44351464435146504 0.22354419525784283
+0.02034229977101365 0.4476987447698751 0.02034229977101365 0.4476987447698751 0.2243009845496273
+0.1965999437317319 0.21335053165310558 0.19659994373173187 0.2133505316531056 0.10921763091134427
+0.22594142259410943 0.17629993134878497 0.22594142259410943 0.17629993134878497 0.13436993163747493
+0.22384937238490435 0.1796903146439539 0.22384937238490435 0.1796903146439539 0.1322809808884742
+0.22175732217569924 0.18308069793912285 0.22175732217569924 0.18308069793912285 0.13014473253135525
+0.21966527196649413 0.1864710812342918 0.21966527196649413 0.1864710812342918 0.12796624595935635
+0.19995987744170496 0.21125072887386534 0.19995987744170496 0.21125072887386534 0.11080128656791906
+0.20337483033799986 0.20913000099420742 0.20337483033799986 0.20913000099420742 0.11252760716481003
+0.21757322175728902 0.18986146452946073 0.21757322175728902 0.18986146452946073 0.12575331431474981
+0.21548903624239335 0.19325451540418806 0.21548903624239335 0.19325451540418806 0.12351896235941949
+0.21340377226477386 0.19664458560330927 0.2134037722647739 0.19664458560330925 0.12127286683596279
+0.20714517031532956 0.2069400514418199 0.20714517031532956 0.20694005144181987 0.1145577587593677
+0.2113767963661977 0.20002241042765997 0.2113767963661977 0.20002241042765997 0.11905440114234485
+0.20944977778132012 0.20336054290935435 0.2094497777813201 0.20336054290935435 0.11688985563276062
+0.24686192468616044 0.14917686498743343 0.24686192468616044 0.14917686498743343 0.15415463014933414
+0.2447698744769554 0.15256724828260237 0.2447698744769554 0.15256724828260237 0.15213721626521484
+0.24267782426775028 0.15595763157777132 0.24267782426775028 0.15595763157777132 0.15013024125213478
+0.24058577405854517 0.15934801487294026 0.24058577405854517 0.15934801487294026 0.14811542721798113
+0.23849372384934006 0.1627383981681092 0.23849372384934006 0.1627383981681092 0.14607682474561942
+0.23640167364013495 0.16612878146327814 0.23640167364013495 0.16612878146327814 0.14400132840383797
+0.23430962343092984 0.16951916475844708 0.23430962343092984 0.16951916475844708 0.14187903143488456
+0.23221757322172473 0.17290954805361602 0.23221757322172473 0.17290954805361602 0.13970342870657962
+0.23012552301251965 0.17629993134878497 0.23012552301251965 0.17629993134878497 0.13747148270490947
+0.2782426778242371 0.11188264874057507 0.2782426778242371 0.11188264874057507 0.19165676943644658
+0.276150627615032 0.11527303203574402 0.276150627615032 0.11527303203574402 0.18864521752485278
+0.2740585774058269 0.11866341533091296 0.2740585774058269 0.11866341533091296 0.18572160901925303
+0.2719665271966218 0.1220537986260819 0.2719665271966218 0.1220537986260819 0.1828986904178623
+0.26569037656900646 0.12544418192125084 0.26569037656900646 0.12544418192125084 0.17512872708308944
+0.26359832635980135 0.12883456521641978 0.26359832635980135 0.12883456521641978 0.17250715436332673
+0.26150627615059624 0.13222494851158872 0.26150627615059624 0.13222494851158872 0.17000240338002762
+0.25941422594139113 0.13561533180675767 0.25941422594139113 0.13561533180675767 0.1676045700646107
+0.257322175732186 0.1390057151019266 0.257322175732186 0.1390057151019266 0.16529951906674348
+0.2552301255229809 0.14239609839709555 0.2552301255229809 0.14239609839709555 0.16306989643641975
+0.2531380753137758 0.1457864816922645 0.2531380753137758 0.1457864816922645 0.1608962173441242
+0.2510460251045707 0.14917686498743343 0.2510460251045707 0.14917686498743343 0.1587579645024985
+0.2698744769874167 0.12544418192125084 0.2698744769874167 0.12544418192125084 0.18018288776398717
+0.29916317991628827 0.09154034896956142 0.2991631799162882 0.09154034896956142 0.21854325294879653
+0.29707112970708316 0.09493073226473037 0.29707112970708316 0.09493073226473037 0.21585417469206683
+0.294979079497878 0.09832111555989931 0.294979079497878 0.09832111555989931 0.2130537303429829
+0.28661087866105756 0.10510188215023719 0.28661087866105756 0.10510188215023719 0.20258372241992292
+0.2928870292886729 0.10171149885506825 0.2928870292886729 0.10171149885506825 0.21018009467440854
+0.2907949790794678 0.10510188215023719 0.2907949790794678 0.10510188215023719 0.20726928842888137
+0.28451882845185245 0.10849226544540613 0.28451882845185245 0.10849226544540613 0.1995579828694771
+0.28242677824264734 0.11188264874057507 0.28242677824264734 0.11188264874057507 0.1965661575316995
+0.3305439330543649 0.06780766590337883 0.3305439330543649 0.06780766590337883 0.24121251642539177
+0.3284518828451598 0.07119804919854777 0.32845188284515986 0.07119804919854777 0.24099756582268617
+0.3263598326359547 0.07458843249371672 0.3263598326359547 0.07458843249371672 0.24045101427502105
+0.3242677824267496 0.07797881578888566 0.32426778242674953 0.07797881578888566 0.23958774276965575
+0.3221757322175445 0.0813691990840546 0.3221757322175445 0.0813691990840546 0.23842893525868883
+0.32008368200833937 0.08475958237922354 0.3200836820083394 0.08475958237922354 0.23700111106186947
+0.3054393305439036 0.08814996567439248 0.3054393305439036 0.08814996567439248 0.2249555236735826
+0.3096234309623138 0.08814996567439248 0.3096234309623138 0.08814996567439248 0.2286480490603615
+0.31380753138072404 0.08814996567439248 0.31380753138072404 0.08814996567439248 0.2321196111058532
+0.31799163179913426 0.08814996567439248 0.31799163179913426 0.08814996567439248 0.23533502501429002
+0.3033472803346985 0.09154034896956142 0.30334728033469854 0.09154034896956142 0.22257428993887593
+0.33682008368198024 0.06441728260820989 0.3368200836819803 0.06441728260820989 0.24275566719356445
+0.33472803347277513 0.06780766590337883 0.33472803347277513 0.06780766590337883 0.24305591575863317
+0.34100418410039046 0.06441728260820989 0.3410041841003904 0.06441728260820989 0.24411796654398235
+0.370292887029262 0.04407498283719624 0.37029288702926205 0.04407498283719624 0.2337409950996894
+0.3682008368200569 0.04746536613236518 0.3682008368200569 0.04746536613236518 0.23640376339604527
+0.3661087866108518 0.050855749427534125 0.3661087866108517 0.050855749427534125 0.2388881681790713
+0.36401673640164667 0.054246132722703067 0.36401673640164667 0.054246132722703067 0.24115320764584355
+0.36192468619244156 0.05763651601787201 0.3619246861924416 0.05763651601787201 0.2431644331261408
+0.3451882845188007 0.06441728260820989 0.34518828451880074 0.06441728260820989 0.24516264515151684
+0.3493723849372109 0.06441728260820989 0.34937238493721084 0.06441728260820989 0.24588125308340622
+0.35564853556482623 0.06102689931304095 0.35564853556482623 0.06102689931304095 0.24498642749175606
+0.35983263598323645 0.06102689931304095 0.35983263598323645 0.06102689931304095 0.24489471053512402
+0.3535564853556211 0.06441728260820989 0.3535564853556212 0.06441728260820989 0.2462690379492191
+0.3912133891213131 0.03729421624685836 0.39121338912131304 0.03729421624685836 0.2214944404683219
+0.3765690376568773 0.0406845995420273 0.3765690376568773 0.0406845995420273 0.22981043991232883
+0.38075313807528754 0.0406845995420273 0.38075313807528754 0.0406845995420273 0.22839390497178783
+0.38493723849369776 0.0406845995420273 0.38493723849369776 0.0406845995420273 0.22670259809141965
+0.389121338912108 0.0406845995420273 0.389121338912108 0.0406845995420273 0.22474351083314262
+0.3744769874476722 0.04407498283719624 0.37447698744767216 0.04407498283719624 0.23271092243530125
+0.4121338912133642 0.030513449656520475 0.41213389121336425 0.030513449656520475 0.20375202953314256
+0.3974895397489284 0.03390383295168942 0.3974895397489284 0.03390383295168942 0.21585065691257968
+0.40167364016733864 0.03390383295168942 0.4016736401673386 0.03390383295168942 0.21322679846458617
+0.40585774058574886 0.03390383295168942 0.40585774058574886 0.03390383295168942 0.21036632623873738
+0.4100418410041591 0.03390383295168942 0.41004184100415914 0.03390383295168942 0.20727688961476612
+0.3953974895397233 0.03729421624685836 0.39539748953972337 0.03729421624685836 0.21919399868501555
+0.4184100418409795 0.027123066361351533 0.41841004184097946 0.027123066361351533 0.19685888654564965
+0.42259414225938974 0.027123066361351533 0.42259414225938974 0.027123066361351533 0.1931971384894863
+0.42677824267779996 0.027123066361351533 0.4267782426778 0.027123066361351533 0.1893284313165803
+0.4163179916317744 0.030513449656520475 0.41631799163177435 0.030513449656520475 0.20037238482638808
+0.44979079497905616 0.010171149885506825 0.4497907949790561 0.010171149885506825 0.1593223579890648
+0.44351464435144083 0.013561533180675767 0.4435146443514409 0.013561533180675767 0.16719486370996095
+0.44769874476985105 0.013561533180675767 0.44769874476985105 0.013561533180675767 0.16243351528908223
+0.4309623430962102 0.027123066361351533 0.4309623430962102 0.027123066361351533 0.1852577961213101
+0.4414225941422357 0.01695191647584471 0.44142259414223567 0.01695191647584471 0.1703989838447406
+0.4393305439330306 0.02034229977101365 0.4393305439330306 0.02034229977101365 0.17377592329864336
+0.4372384937238255 0.02373268306618259 0.43723849372382556 0.02373268306618259 0.1773131507803036
+0.4351464435146204 0.027123066361351533 0.43514644351462034 0.027123066361351533 0.1809895941492906
+0.4539748953974664 0.010171149885506825 0.45397489539746644 0.010171149885506825 0.15428579383693483
+0.4581589958158766 0.010171149885506825 0.45815899581587655 0.010171149885506825 0.14905920560249972
+0.46443514644349193 0.006780766590337883 0.46443514644349193 0.006780766590337883 0.14044077978064962
+0.4623430962342868 0.010171149885506825 0.4623430962342869 0.010171149885506825 0.1436442555256305
+0.46861924686190215 0.006780766590337883 0.4686192468619021 0.006780766590337883 0.13475357991513912
+0.47280334728031237 0.006780766590337883 0.47280334728031237 0.006780766590337883 0.12888136485576543
+0.010171149885506825 0.46652719665272047 0.010171149885506825 0.46652719665272047 0.22532351585677815
+0.010171149885506825 0.4707112970711306 0.010171149885506825 0.4707112970711305 0.22569900433680287
+0.013561533180675767 0.46443514644351547 0.013561533180675767 0.46443514644351547 0.2254202814069868
+0.01695191647584471 0.46234309623431036 0.01695191647584471 0.4623430962343104 0.22563796843588466
+0.02034229977101365 0.45188284518828514 0.02034229977101365 0.4518828451882851 0.22495511066302312
+0.02034229977101365 0.45606694560669525 0.02034229977101365 0.4560669456066952 0.22551508676925416
+0.02034229977101365 0.46025104602510536 0.02034229977101365 0.4602510460251054 0.22598958529893706
+0.006780766590337883 0.4769874476987457 0.006780766590337883 0.47698744769874574 0.22597836384733982
+0.010171149885506825 0.4748953974895406 0.010171149885506825 0.4748953974895406 0.2260099465766138
+0.17290954801595623 0.23221757324716752 0.17290954801595623 0.2322175732471675 0.09910733157127016
+0.17629993130457713 0.23012552304332964 0.17629993130457713 0.23012552304332964 0.10014234540970278
+0.17969031457919235 0.22803347283744538 0.17969031457919235 0.22803347283744538 0.10121526805608479
+0.18308069727893886 0.22594140334608456 0.18308069727893886 0.22594140334608456 0.10232939332108916
+0.1864708464267448 0.22384831617461734 0.1864708464267448 0.22384831617461734 0.10349289373420277
+0.1898586419241265 0.2217513767832464 0.1898586419241265 0.2217513767832464 0.10471849276637178
+0.19324044109311875 0.21965004193774948 0.19324044109311875 0.21965004193774948 0.10602132259614538
+0.1966154996274816 0.21754625252391427 0.1966154996274816 0.21754625252391427 0.10741784815286852
+0.1254441819207777 0.2698744769875215 0.1254441819207777 0.2698744769875215 0.10067705474297055
+0.12883456521587947 0.26778242677851544 0.12883456521587947 0.26778242677851544 0.09894025673627126
+0.13222494851091146 0.2656903765695601 0.13222494851091146 0.2656903765695601 0.09751646221358717
+0.13561533180639787 0.259414225941945 0.13561533180639787 0.259414225941945 0.09522611366873233
+0.13900571510149107 0.25732217573274374 0.13900571510149107 0.25732217573274374 0.0945393525653974
+0.13561533180608323 0.2635983263607497 0.13561533180608323 0.2635983263607497 0.09639802066337888
+0.14239609839662082 0.25523012552363605 0.14239609839662082 0.25523012552363605 0.09413288372086585
+0.145786481691882 0.25313807531465715 0.145786481691882 0.2531380753146571 0.09397866074367144
+0.14917686498714078 0.2510460251058494 0.14917686498714078 0.25104602510584945 0.09404552313829799
+0.1525672482819804 0.24895397489563864 0.1525672482819804 0.24895397489563864 0.09430111812209431
+0.15595763157614947 0.2468619246858846 0.15595763157614947 0.2468619246858846 0.09471369138978557
+0.15934801486826553 0.24476987447581708 0.15934801486826553 0.24476987447581708 0.09525363684194087
+0.16273839815849803 0.24267782426524573 0.16273839815849803 0.24267782426524573 0.09589474439253205
+0.16612878144528587 0.24058577405708925 0.16612878144528587 0.24058577405708928 0.09661512777147935
+0.16951916472832018 0.2384937238541032 0.16951916472832018 0.2384937238541032 0.0973978448639944
+0.17290954800556177 0.23640167365544004 0.17290954800556177 0.23640167365544004 0.09823124050340504
+0.10510188215023993 0.28661087866110585 0.10510188215023993 0.28661087866110585 0.11919871741634795
+0.10849226544541361 0.2845188284518911 0.10849226544541361 0.2845188284518911 0.11585697774476257
+0.11188264874058969 0.2824267782426672 0.11188264874058969 0.2824267782426672 0.11269734734441665
+0.11527303203575133 0.28033472803342785 0.11527303203575133 0.28033472803342785 0.10975511024363206
+0.1186634153308872 0.27824267782417117 0.1186634153308872 0.27824267782417117 0.10706040150844261
+0.12205379862596871 0.2761506276149048 0.1220537986259687 0.2761506276149048 0.10463706503173577
+0.12544418192098375 0.2740585774056908 0.12544418192098375 0.2740585774056908 0.10250171549723901
+0.08814996567437743 0.30543933054393124 0.08814996567437743 0.3054393305439312 0.14249415985976885
+0.09154034896954145 0.3033472803347349 0.09154034896954145 0.30334728033473496 0.13889821552196358
+0.09493073226471356 0.29707112970713734 0.09493073226471356 0.29707112970713734 0.13240872936918982
+0.09832111555988436 0.29497907949793783 0.09832111555988436 0.29497907949793783 0.1287682266128162
+0.09493073226470385 0.3012552301255404 0.09493073226470385 0.3012552301255404 0.13526296598000911
+0.1017114988550551 0.29288702928873633 0.10171149885505511 0.2928870292887363 0.12517865210733045
+0.10510188215022638 0.29079497907953306 0.10510188215022638 0.29079497907953306 0.12168203908502882
+0.07458843249371724 0.3221757322175739 0.07458843249371726 0.32217573221757384 0.16205248819091453
+0.07797881578888674 0.32008368200836845 0.07797881578888675 0.3200836820083684 0.15908770068338407
+0.08136919908405493 0.313807531380749 0.08136919908405493 0.31380753138074896 0.1525121784149014
+0.08136919908405633 0.31799163179916234 0.08136919908405633 0.3179916317991624 0.15593371880979467
+0.0847595823792218 0.3117154811715416 0.0847595823792218 0.31171548117154163 0.14914936272366133
+0.08814996567438622 0.3096234309623352 0.08814996567438622 0.3096234309623352 0.14566514593047855
+0.05763651601787201 0.34100418410041883 0.05763651601787201 0.34100418410041883 0.1799150585850338
+0.05763651601787201 0.3451882845188289 0.05763651601787201 0.3451882845188288 0.18342351805485604
+0.06102689931304095 0.3389121338912138 0.06102689931304095 0.3389121338912138 0.17833497393584466
+0.06441728260820989 0.3368200836820088 0.06441728260820989 0.3368200836820088 0.17649754634445045
+0.06780766590337879 0.3305439330543938 0.06780766590337879 0.3305439330543938 0.1707524241098383
+0.06780766590337882 0.3347280334728038 0.06780766590337882 0.3347280334728038 0.1744024533209696
+0.07119804919854773 0.3284518828451889 0.07119804919854773 0.32845188284518884 0.1683132845528361
+0.07458843249371676 0.32635983263598406 0.07458843249371676 0.32635983263598406 0.16563763162931608
+0.04746536613236518 0.35983263598326415 0.04746536613236518 0.35983263598326415 0.1930021918021113
+0.050855749427534125 0.35774058577405915 0.050855749427534125 0.35774058577405915 0.19245194402725788
+0.054246132722703067 0.35146443514644404 0.054246132722703067 0.35146443514644404 0.18814427234638353
+0.05763651601787201 0.349372384937239 0.05763651601787201 0.349372384937239 0.18703858590894618
+0.054246132722703067 0.3556485355648541 0.054246132722703067 0.35564853556485415 0.19169990130254247
+0.04746536613236518 0.3640167364016742 0.04746536613236518 0.3640167364016742 0.19632228349147732
+0.0406845995420273 0.3765690376569042 0.0406845995420273 0.3765690376569042 0.20276411443267658
+0.04746536613236518 0.3682008368200842 0.04746536613236518 0.3682008368200842 0.1996161472229606
+0.04407498283719624 0.3744769874476992 0.04407498283719624 0.3744769874476992 0.20286410542020958
+0.04746536613236518 0.3723849372384942 0.04746536613236518 0.3723849372384942 0.20285302425556662
+0.0406845995420273 0.38075313807531425 0.0406845995420273 0.38075313807531425 0.20567083203286166
+0.030513449656520475 0.4037656903765698 0.030513449656520475 0.4037656903765698 0.21408655319488465
+0.03729421624685836 0.38702928870292946 0.03729421624685836 0.38702928870292946 0.20808371180015853
+0.0406845995420273 0.38493723849372435 0.0406845995420273 0.38493723849372435 0.20846752844996289
+0.03390383295168942 0.39330543933054457 0.03390383295168942 0.39330543933054457 0.21016293680210693
+0.03729421624685836 0.39121338912133957 0.03729421624685836 0.39121338912133957 0.21064779580460033
+0.03390383295168942 0.3974895397489546 0.03390383295168942 0.3974895397489546 0.2124966665926619
+0.03390383295168942 0.4016736401673647 0.03390383295168942 0.4016736401673647 0.2146817794871072
+0.027123066361351533 0.41841004184100494 0.027123066361351533 0.418410041841005 0.2188388113859532
+0.027123066361351533 0.422594142259415 0.027123066361351533 0.422594142259415 0.22028905849571265
+0.030513449656520475 0.4079497907949799 0.030513449656520475 0.4079497907949799 0.21604701212585828
+0.030513449656520475 0.4121338912133899 0.030513449656520475 0.4121338912133899 0.21785223770250675
+0.030513449656520475 0.41631799163179994 0.030513449656520475 0.4163179916318 0.21950015098847822
+0.027123066361351533 0.42677824267782505 0.027123066361351533 0.42677824267782505 0.22159197474923978
+0.027123066361351533 0.43096234309623505 0.027123066361351533 0.43096234309623505 0.22275191842148903
+0.02373268306618259 0.43723849372385004 0.02373268306618259 0.43723849372385004 0.22314518340810272
+0.027123066361351533 0.43514644351464504 0.027123066361351533 0.43514644351464504 0.22377479365637168
+0.02373268306618259 0.44142259414226004 0.02373268306618259 0.44142259414226004 0.2240265316234387
+0.02373268306618259 0.44560669456067004 0.02373268306618259 0.44560669456067004 0.22479211647834643
+0.02373268306618259 0.44979079497908003 0.02373268306618259 0.44979079497908003 0.22545055561828056
+0.1999769957963882 0.2154430927271578 0.1999769957963882 0.2154430927271578 0.10892420697832496
+0.2280334728033145 0.1796903146439539 0.2280334728033145 0.1796903146439539 0.13518357076239498
+0.22594142259410943 0.18308069793912285 0.22594142259410943 0.18308069793912285 0.1328433333759105
+0.22384937238490435 0.1864710812342918 0.22384937238490435 0.1864710812342918 0.130457444219113
+0.22175732217569924 0.18986146452946073 0.22175732217569924 0.18986146452946073 0.12803532338476087
+0.20333979935612068 0.21333409567405182 0.20333979935612065 0.21333409567405184 0.11056558691618935
+0.20670806964789712 0.21119702834648313 0.20670806964789712 0.21119702834648316 0.11237439549025029
+0.2196703685257351 0.19325413225877863 0.2196703685257351 0.19325413225877863 0.1255905736483469
+0.21758441604863782 0.19664804347597073 0.2175844160486378 0.19664804347597073 0.1231346498148997
+0.20978356482035965 0.20990915045040937 0.20978356482035965 0.20990915045040937 0.11381638064686336
+0.21552685448456776 0.2000526074650234 0.21552685448456774 0.20005260746502343 0.12069014161472245
+0.21151829819136478 0.20695045606824916 0.21151829819136478 0.20695045606824916 0.11588713003348682
+0.2135079401570574 0.20345808368497895 0.2135079401570574 0.20345808368497895 0.11827992523742435
+0.2489539748953656 0.15256724828260237 0.2489539748953656 0.15256724828260237 0.15663463912611375
+0.24686192468616044 0.15595763157777132 0.24686192468616044 0.15595763157777132 0.1545067166417912
+0.2447698744769554 0.15934801487294026 0.2447698744769554 0.15934801487294026 0.15235647206946645
+0.24267782426775028 0.1627383981681092 0.24267782426775028 0.1627383981681092 0.150168653214788
+0.24058577405854517 0.16612878146327814 0.24058577405854517 0.16612878146327814 0.14793099208346475
+0.23849372384934006 0.16951916475844708 0.23849372384934006 0.16951916475844708 0.14563455527585598
+0.23640167364013495 0.17290954805361602 0.23640167364013495 0.17290954805361602 0.14327394208281138
+0.23430962343092984 0.17629993134878497 0.23430962343092984 0.17629993134878497 0.1408473445225351
+0.23221757322172473 0.1796903146439539 0.23221757322172473 0.1796903146439539 0.1383564868362888
+0.2803347280334422 0.11527303203574402 0.2803347280334422 0.11527303203574402 0.1936322131290422
+0.2782426778242371 0.11866341533091296 0.2782426778242371 0.11866341533091296 0.19077429446999983
+0.276150627615032 0.1220537986260819 0.276150627615032 0.1220537986260819 0.18800435502675472
+0.2740585774058269 0.12544418192125084 0.2740585774058269 0.12544418192125084 0.18532806907880187
+0.26778242677821157 0.12883456521641978 0.26778242677821157 0.12883456521641978 0.17757448460691924
+0.26569037656900646 0.13222494851158872 0.26569037656900646 0.13222494851158872 0.1750680733114245
+0.26359832635980135 0.13561533180675767 0.26359832635980135 0.13561533180675767 0.1726532482019225
+0.26150627615059624 0.1390057151019266 0.26150627615059624 0.1390057151019266 0.1703154928424467
+0.25941422594139113 0.14239609839709555 0.25941422594139113 0.14239609839709555 0.1680372023957939
+0.257322175732186 0.1457864816922645 0.257322175732186 0.1457864816922645 0.16579877671004192
+0.2552301255229809 0.14917686498743343 0.2552301255229809 0.14917686498743343 0.16357972072878735
+0.2531380753137758 0.15256724828260237 0.2531380753137758 0.15256724828260237 0.1613596952076972
+0.2719665271966218 0.12883456521641978 0.2719665271966218 0.12883456521641978 0.18274503000454786
+0.3012552301254934 0.09493073226473037 0.3012552301254934 0.09493073226473037 0.22003698828369703
+0.2991631799162882 0.09832111555989931 0.2991631799162882 0.09832111555989931 0.21738190968309598
+0.2970711297070831 0.10171149885506825 0.2970711297070831 0.10171149885506825 0.21464644310420058
+0.28870292887026267 0.10849226544540613 0.28870292887026267 0.10849226544540613 0.20435401148663487
+0.294979079497878 0.10510188215023719 0.294979079497878 0.10510188215023719 0.211865816092605
+0.2928870292886729 0.10849226544540613 0.2928870292886729 0.10849226544540613 0.2090719257983151
+0.28661087866105756 0.11188264874057507 0.28661087866105756 0.11188264874057507 0.20146261217347708
+0.28451882845185245 0.11527303203574402 0.28451882845185245 0.11527303203574402 0.19861824143243703
+0.33263598326357 0.07119804919854777 0.33263598326356997 0.07119804919854777 0.24301959636945306
+0.3305439330543649 0.07458843249371672 0.3305439330543649 0.07458843249371672 0.24265366579738612
+0.3284518828451598 0.07797881578888566 0.32845188284515986 0.07797881578888566 0.24197219547441753
+0.3263598326359547 0.0813691990840546 0.3263598326359547 0.0813691990840546 0.24099556970058464
+0.3242677824267496 0.08475958237922354 0.32426778242674953 0.08475958237922354 0.23974952397261748
+0.3221757322175445 0.08814996567439248 0.3221757322175445 0.08814996567439248 0.2382640467311901
+0.3075313807531087 0.09154034896956142 0.30753138075310865 0.09154034896956142 0.2264315248914883
+0.3117154811715189 0.09154034896956142 0.311715481171519 0.09154034896956142 0.23007374811902395
+0.31589958158992915 0.09154034896956142 0.3158995815899291 0.09154034896956142 0.23346446118258576
+0.32008368200833937 0.09154034896956142 0.3200836820083394 0.09154034896956142 0.23657217108641412
+0.3054393305439036 0.09493073226473037 0.3054393305439036 0.09493073226473037 0.22405390514211462
+0.33891213389118535 0.06780766590337883 0.33891213389118535 0.06780766590337883 0.2445911998852037
+0.33682008368198024 0.07119804919854777 0.3368200836819803 0.07119804919854777 0.2447312076774049
+0.34309623430959557 0.06780766590337883 0.34309623430959557 0.06780766590337883 0.2458049583290183
+0.3723849372384671 0.04746536613236518 0.3723849372384671 0.04746536613236518 0.23548482587708028
+0.370292887029262 0.050855749427534125 0.37029288702926205 0.050855749427534125 0.23808607902741263
+0.3682008368200569 0.054246132722703067 0.3682008368200569 0.054246132722703067 0.2404739298472263
+0.3661087866108518 0.05763651601787201 0.3661087866108517 0.05763651601787201 0.2426140310471636
+0.36401673640164667 0.06102689931304095 0.36401673640164667 0.06102689931304095 0.24447922421615623
+0.3472803347280058 0.06780766590337883 0.3472803347280058 0.06780766590337883 0.24668786663680556
+0.351464435146416 0.06780766590337883 0.351464435146416 0.06780766590337883 0.24723448190825506
+0.35774058577403134 0.06441728260820989 0.3577405857740313 0.06441728260820989 0.24632468776381058
+0.36192468619244156 0.06441728260820989 0.3619246861924416 0.06441728260820989 0.24605003168547893
+0.35564853556482623 0.06780766590337883 0.35564853556482623 0.06780766590337883 0.24744298373333604
+0.3933054393305182 0.0406845995420273 0.3933054393305182 0.0406845995420273 0.22252449895688178
+0.37866108786608244 0.04407498283719624 0.3786610878660825 0.04407498283719624 0.23139440868439717
+0.38284518828449265 0.04407498283719624 0.3828451882844926 0.04407498283719624 0.22979756816824246
+0.3870292887029029 0.04407498283719624 0.38702928870290293 0.04407498283719624 0.22792776908442766
+0.3912133891213131 0.04407498283719624 0.39121338912131304 0.04407498283719624 0.22579334048108504
+0.3765690376568773 0.04746536613236518 0.3765690376568773 0.04746536613236518 0.23427329849748232
+0.4142259414225693 0.03390383295168942 0.4142259414225693 0.03390383295168942 0.2039659481925806
+0.39958158995813353 0.03729421624685836 0.3995815899581335 0.03729421624685836 0.2166458735832811
+0.40376569037654375 0.03729421624685836 0.4037656903765438 0.03729421624685836 0.21385825355413388
+0.40794979079495397 0.03729421624685836 0.4079497907949539 0.03729421624685836 0.21083936609447743
+0.4121338912133642 0.03729421624685836 0.41213389121336425 0.03729421624685836 0.20759725791559405
+0.3974895397489284 0.0406845995420273 0.3974895397489284 0.0406845995420273 0.22005400981398585
+0.42050209205018463 0.030513449656520475 0.4205020920501847 0.030513449656520475 0.19677930192507942
+0.42468619246859485 0.030513449656520475 0.4246861924685948 0.030513449656520475 0.1929788363185088
+0.42887029288700507 0.030513449656520475 0.4288702928870051 0.030513449656520475 0.18897641340902396
+0.4184100418409795 0.03390383295168942 0.41841004184097946 0.03390383295168942 0.200440588400159
+0.4518828451882613 0.013561533180675767 0.4518828451882612 0.013561533180675767 0.15747993669008717
+0.44560669456064594 0.01695191647584471 0.445606694560646 0.01695191647584471 0.16571708502025292
+0.44979079497905616 0.01695191647584471 0.4497907949790561 0.01695191647584471 0.1608429511240458
+0.4330543933054153 0.030513449656520475 0.43305439330541523 0.030513449656520475 0.18477672935329145
+0.44351464435144083 0.02034229977101365 0.4435146443514409 0.02034229977101365 0.1691700304485665
+0.4414225941422357 0.02373268306618259 0.44142259414223567 0.02373268306618259 0.17278030443635792
+0.4393305439330306 0.027123066361351533 0.4393305439330306 0.027123066361351533 0.17652745671348838
+0.4372384937238255 0.030513449656520475 0.43723849372382556 0.030513449656520475 0.18038367758679555
+0.4560669456066715 0.013561533180675767 0.4560669456066715 0.013561533180675767 0.1523361381046142
+0.4602510460250817 0.013561533180675767 0.46025104602508177 0.013561533180675767 0.14700372905707246
+0.46652719665269704 0.010171149885506825 0.466527196652697 0.010171149885506825 0.13804235281483454
+0.46443514644349193 0.013561533180675767 0.46443514644349193 0.013561533180675767 0.14148398960295505
+0.47071129707110726 0.010171149885506825 0.4707112970711073 0.010171149885506825 0.13225475059290018
+0.4769874476987226 0.006780766590337883 0.47698744769872264 0.006780766590337883 0.12282560008460262
+0.4748953974895175 0.010171149885506825 0.4748953974895174 0.010171149885506825 0.12628266072565253
+0.4811715481171328 0.006780766590337883 0.4811715481171328 0.006780766590337883 0.11658792886193949
+0.013561533180675767 0.4686192468619256 0.013561533180675767 0.4686192468619255 0.22580956851684084
+0.013561533180675767 0.47280334728033563 0.013561533180675767 0.47280334728033563 0.22613299276205204
+0.01695191647584471 0.46652719665272047 0.01695191647584471 0.46652719665272047 0.22603467609081643
+0.02034229977101365 0.46443514644351547 0.02034229977101365 0.46443514644351547 0.22638723071622638
+0.02373268306618259 0.45397489539749014 0.02373268306618259 0.4539748953974901 0.22601094624987497
+0.02373268306618259 0.45815899581590025 0.02373268306618259 0.4581589958159002 0.22648263718154302
+0.02373268306618259 0.46234309623431036 0.02373268306618259 0.4623430962343104 0.22687500718296796
+0.006780766590337883 0.48117154811715573 0.006780766590337883 0.48117154811715573 0.22621352616304755
+0.010171149885506825 0.4790794979079507 0.010171149885506825 0.47907949790795074 0.22626227186440442
+0.013561533180675767 0.4769874476987457 0.013561533180675767 0.47698744769874574 0.22639706516121408
+0.17629993129225396 0.23430962346292936 0.17629993129225396 0.23430962346292936 0.09910904791274117
+0.17969031457050258 0.23221757327104 0.17969031457050258 0.23221757327104 0.10003028366045752
+0.18308069785278122 0.23012552306926495 0.18308069785278122 0.23012552306926495 0.10099896572764279
+0.18647107882562572 0.22803335878000952 0.18647107882562572 0.22803335878000955 0.10202371304674772
+0.1898609930749472 0.2259394801649435 0.1898609930749472 0.2259394801649435 0.1031176484294787
+0.19324790257360472 0.22384179523422745 0.19324790257360472 0.22384179523422745 0.10429738990070803
+0.19662776633094317 0.22174041700690297 0.19662776633094317 0.22174041700690297 0.10558096443442776
+0.1999939110761854 0.219639240140593 0.1999939110761854 0.21963924014059302 0.1069852152071293
+0.12883456521591044 0.2719665271965993 0.12883456521591044 0.27196652719659925 0.10066311462836029
+0.1322249485106968 0.2698744769876028 0.1322249485106968 0.26987447698760286 0.09912195717122653
+0.135615331805738 0.26778242677876857 0.135615331805738 0.26778242677876857 0.09787112583931636
+0.13900571510119883 0.2615062761514812 0.13900571510119883 0.2615062761514812 0.09556973312747868
+0.14239609839637504 0.25941422594226726 0.14239609839637504 0.2594142259422672 0.09501008028585008
+0.13900571510064474 0.2656903765700189 0.13900571510064474 0.2656903765700189 0.0968964213795157
+0.14578648169135547 0.25732217573310184 0.14578648169135547 0.25732217573310184 0.09469279883129435
+0.14917686498639185 0.25523012552412583 0.14917686498639185 0.25523012552412583 0.09458865189576114
+0.1525672482806348 0.25313807531488375 0.1525672482806348 0.25313807531488375 0.09466723265751209
+0.15595763157537132 0.25104602510613433 0.15595763157537132 0.25104602510613433 0.09489866038123713
+0.15934801486867803 0.2489539748977032 0.15934801486867803 0.2489539748977032 0.09525506541841222
+0.1627383981618108 0.24686192468812737 0.1627383981618108 0.24686192468812737 0.09571180242944421
+0.1661287814516099 0.2447698744772315 0.1661287814516099 0.2447698744772315 0.0962483695270634
+0.1695191647379978 0.2426778242650064 0.1695191647379978 0.24267782426500642 0.09684903956574015
+0.17629993128956722 0.23849372386006149 0.17629993128956722 0.23849372386006149 0.09820561965375442
+0.17290954801752798 0.24058577405746495 0.17290954801752798 0.24058577405746498 0.09750322686113881
+0.10849226544540058 0.2887029288703255 0.10849226544540058 0.2887029288703255 0.1183188631949994
+0.11188264874057512 0.28661087866112067 0.11188264874057512 0.2866108786611207 0.11512688204344275
+0.1152730320357508 0.2845188284519012 0.1152730320357508 0.2845188284519012 0.11213994946309942
+0.11866341533093384 0.2824267782426661 0.11866341533093384 0.2824267782426661 0.10938686332374348
+0.1220537986261007 0.28033472803339843 0.1220537986261007 0.2803347280333984 0.10689032583895118
+0.12544418192120707 0.27824267782410417 0.12544418192120707 0.2782426778241041 0.10466610940023187
+0.12883456521620815 0.27615062761478676 0.12883456521620815 0.27615062761478676 0.1027225229501069
+0.09154034896954714 0.30753138075313136 0.09154034896954714 0.3075313807531313 0.14209602728974333
+0.09493073226470342 0.3054393305439301 0.0949307322647034 0.3054393305439301 0.13848066167598716
+0.09832111555987057 0.2991631799163483 0.09832111555987057 0.2991631799163483 0.13162936057697516
+0.10171149885503734 0.2970711297071556 0.10171149885503734 0.2970711297071556 0.1280387852814455
+0.09832111555986335 0.30334728033474095 0.09832111555986335 0.30334728033474095 0.13485898909386232
+0.10510188215020906 0.2949790794979597 0.10510188215020906 0.2949790794979597 0.12453205274743513
+0.10849226544537986 0.29288702928876015 0.10849226544537986 0.29288702928876015 0.12114832660721554
+0.07797881578888592 0.32426778242677945 0.07797881578888592 0.32426778242677945 0.16274408613028687
+0.0813691990840555 0.3221757322175747 0.0813691990840555 0.3221757322175747 0.15965623826304334
+0.08475958237922555 0.3158995815899549 0.08475958237922555 0.31589958158995485 0.15261951262869602
+0.08475958237922553 0.3200836820083693 0.08475958237922553 0.3200836820083693 0.1564020406216122
+0.08814996567439352 0.3138075313807461 0.08814996567439352 0.3138075313807461 0.1491777223263494
+0.09154034896955886 0.31171548117153686 0.09154034896955886 0.31171548117153686 0.1456439129494873
+0.06102689931304095 0.3430962343096238 0.06102689931304095 0.3430962343096238 0.1819515197074237
+0.06102689931304095 0.34728033472803393 0.06102689931304095 0.34728033472803393 0.18568691350651997
+0.06441728260820989 0.34100418410041883 0.06441728260820989 0.34100418410041883 0.18022286656060474
+0.06780766590337883 0.3389121338912138 0.06780766590337883 0.3389121338912138 0.17823579993010963
+0.07119804919854772 0.3326359832635988 0.07119804919854772 0.3326359832635988 0.17205562657478915
+0.07119804919854776 0.3368200836820088 0.07119804919854776 0.3368200836820088 0.17599483734326452
+0.0745884324937166 0.33054393305439383 0.0745884324937166 0.33054393305439383 0.16946894856205233
+0.07797881578888546 0.3284518828451891 0.07797881578888545 0.32845188284518917 0.1666598320162638
+0.050855749427534125 0.3619246861924692 0.050855749427534125 0.3619246861924692 0.19589744378530402
+0.054246132722703067 0.35983263598326415 0.054246132722703067 0.35983263598326415 0.1952772223927571
+0.05763651601787201 0.3535564853556491 0.05763651601787201 0.35355648535564915 0.1907224059301289
+0.06102689931304095 0.35146443514644404 0.06102689931304095 0.35146443514644404 0.18950184175049756
+0.05763651601787201 0.35774058577405915 0.05763651601787201 0.35774058577405915 0.1944365242666116
+0.050855749427534125 0.3661087866108792 0.050855749427534125 0.3661087866108792 0.19932233792026224
+0.04407498283719624 0.37866108786610925 0.04407498283719624 0.37866108786610925 0.20588813592466923
+0.050855749427534125 0.3702928870292892 0.050855749427534125 0.3702928870292892 0.20269388695339471
+0.04746536613236518 0.3765690376569042 0.04746536613236518 0.3765690376569042 0.20600427926661266
+0.050855749427534125 0.3744769874476992 0.050855749427534125 0.3744769874476992 0.2059814726245486
+0.04407498283719624 0.38284518828451936 0.04407498283719624 0.38284518828451936 0.20880118354454336
+0.03390383295168942 0.4058577405857748 0.03390383295168942 0.4058577405857748 0.21671018210416435
+0.0406845995420273 0.38912133891213446 0.0406845995420273 0.38912133891213446 0.21113465607174522
+0.04407498283719624 0.38702928870292946 0.04407498283719624 0.38702928870292946 0.21158196292137257
+0.03729421624685836 0.3953974895397496 0.03729421624685836 0.3953974895397496 0.21307001277711016
+0.0406845995420273 0.39330543933054457 0.0406845995420273 0.39330543933054457 0.21365562503808325
+0.03729421624685836 0.3995815899581597 0.03729421624685836 0.3995815899581597 0.21533821671381945
+0.03729421624685836 0.4037656903765698 0.03729421624685836 0.4037656903765698 0.21744320193083613
+0.030513449656520475 0.42050209205020994 0.030513449656520475 0.42050209205021 0.22099097664479292
+0.030513449656520475 0.42468619246862 0.030513449656520475 0.42468619246862 0.2223270710971144
+0.03390383295168942 0.4100418410041849 0.03390383295168942 0.4100418410041849 0.21857650407592846
+0.03390383295168942 0.41422594142259495 0.03390383295168942 0.414225941422595 0.22027800208783943
+0.03390383295168942 0.41841004184100494 0.03390383295168942 0.418410041841005 0.2218144231994457
+0.030513449656520475 0.42887029288703005 0.030513449656520475 0.42887029288703005 0.22351272476132503
+0.030513449656520475 0.43305439330544004 0.030513449656520475 0.43305439330544004 0.22455394341017335
+0.027123066361351533 0.43933054393305504 0.027123066361351533 0.43933054393305504 0.22466782329893856
+0.030513449656520475 0.43723849372385004 0.030513449656520475 0.43723849372385004 0.22545821344053674
+0.027123066361351533 0.44351464435146504 0.027123066361351533 0.44351464435146504 0.22543931217680954
+0.027123066361351533 0.44769874476987503 0.027123066361351533 0.44769874476987503 0.2260984048501635
+0.027123066361351533 0.45188284518828514 0.027123066361351533 0.4518828451882851 0.22665484162068475
+0.20334190650183492 0.21754011340753232 0.20334190650183492 0.21754011340753232 0.10852772714356358
+0.23012552301251965 0.18308069793912285 0.23012552301251965 0.18308069793912285 0.1358064632840137
+0.2280334728033145 0.1864710812342918 0.2280334728033145 0.1864710812342918 0.13320549260301218
+0.22594142259410943 0.18986146452946073 0.22594142259410943 0.18986146452946073 0.13056460543721668
+0.22385265876938457 0.1932532931693701 0.22385265876938457 0.1932532931693701 0.1278985985300942
+0.20667389410712708 0.21544456744780435 0.20667389410712708 0.21544456744780435 0.11022473447961335
+0.2100108917077839 0.21342527504237907 0.2100108917077839 0.21342527504237907 0.11205871813911879
+0.22176724827293454 0.1966468137970383 0.2217672482729345 0.1966468137970383 0.1252220985301963
+0.21970605720338265 0.20005546921279949 0.21970605720338265 0.2000554692127995 0.1225547518075492
+0.213535394239423 0.21103294135311576 0.21353539423942297 0.21103294135311576 0.11438698380987763
+0.2176691941182786 0.20348842434890277 0.2176691941182786 0.20348842434890277 0.11990488461348094
+0.2156816148222811 0.2070584496786748 0.2156816148222811 0.2070584496786748 0.11724041822819997
+0.2510460251045707 0.15595763157777132 0.2510460251045707 0.15595763157777132 0.15911947104226146
+0.2489539748953656 0.15934801487294026 0.2489539748953656 0.15934801487294026 0.1568417529679221
+0.24686192468616044 0.1627383981681092 0.24686192468616044 0.1627383981681092 0.1545118512604082
+0.2447698744769554 0.16612878146327814 0.2447698744769554 0.16612878146327814 0.15211819196612178
+0.24267782426775028 0.16951916475844708 0.24267782426775028 0.16951916475844708 0.14965266623009077
+0.24058577405854517 0.17290954805361602 0.24058577405854517 0.17290954805361602 0.14711082703551262
+0.23849372384934006 0.17629993134878497 0.23849372384934006 0.17629993134878497 0.14449194707976168
+0.23640167364013495 0.1796903146439539 0.23640167364013495 0.1796903146439539 0.14179895478978424
+0.23430962343092984 0.18308069793912285 0.23430962343092984 0.18308069793912285 0.1390382669126862
+0.28242677824264734 0.11866341533091296 0.28242677824264734 0.11866341533091296 0.19583823575563497
+0.2803347280334422 0.1220537986260819 0.2803347280334422 0.1220537986260819 0.19313376319164563
+0.2782426778242371 0.12544418192125084 0.2782426778242371 0.12544418192125084 0.19050975268237666
+0.276150627615032 0.12883456521641978 0.276150627615032 0.12883456521641978 0.18796510956695422
+0.2698744769874167 0.13222494851158872 0.2698744769874167 0.13222494851158872 0.18024922025627152
+0.26778242677821157 0.13561533180675767 0.26778242677821157 0.13561533180675767 0.17782972006603262
+0.26569037656900646 0.1390057151019266 0.26569037656900646 0.1390057151019266 0.175471606392658
+0.26359832635980135 0.14239609839709555 0.26359832635980135 0.14239609839709555 0.17315698296437435
+0.26150627615059624 0.1457864816922645 0.26150627615059624 0.1457864816922645 0.17086607758059583
+0.25941422594139113 0.14917686498743343 0.25941422594139113 0.14917686498743343 0.16857834418009301
+0.257322175732186 0.15256724828260237 0.257322175732186 0.15256724828260237 0.1662735137108081
+0.2552301255229809 0.15595763157777132 0.2552301255229809 0.15595763157777132 0.16393254806741434
+0.2740585774058269 0.13222494851158872 0.2740585774058269 0.13222494851158872 0.18549320119261237
+0.3033472803346985 0.09832111555989931 0.30334728033469854 0.09832111555989931 0.22155269130138652
+0.3012552301254934 0.10171149885506825 0.3012552301254934 0.10171149885506825 0.21896448367582622
+0.2991631799162882 0.10510188215023719 0.2991631799162882 0.10510188215023719 0.21632371675926895
+0.2907949790794678 0.11188264874057507 0.2907949790794678 0.11188264874057507 0.206292310393533
+0.2970711297070831 0.10849226544540613 0.2970711297070831 0.10849226544540613 0.213661488090874
+0.294979079497878 0.11188264874057507 0.294979079497878 0.11188264874057507 0.2110045312010371
+0.28870292887026267 0.11527303203574402 0.28870292887026267 0.11527303203574402 0.20354930972573257
+0.28661087866105756 0.11866341533091296 0.28661087866105756 0.11866341533091296 0.20085945861909957
+0.33472803347277513 0.07458843249371672 0.33472803347277513 0.07458843249371672 0.2445442065661165
+0.33263598326357 0.07797881578888566 0.33263598326356997 0.07797881578888566 0.24404352139910765
+0.3305439330543649 0.0813691990840546 0.3305439330543649 0.0813691990840546 0.24324879474844316
+0.3284518828451598 0.08475958237922354 0.32845188284515986 0.08475958237922354 0.242185031764264
+0.3263598326359547 0.08814996567439248 0.3263598326359547 0.08814996567439248 0.2408815040483919
+0.3242677824267496 0.09154034896956142 0.32426778242674953 0.09154034896956142 0.239370539762046
+0.3096234309623138 0.09493073226473037 0.3096234309623138 0.09493073226473037 0.22786246665365276
+0.31380753138072404 0.09493073226473037 0.31380753138072404 0.09493073226473037 0.23142495034620228
+0.31799163179913426 0.09493073226473037 0.31799163179913426 0.09493073226473037 0.2347086876775306
+0.3221757322175445 0.09493073226473037 0.3221757322175445 0.09493073226473037 0.23768623201576686
+0.3075313807531087 0.09832111555989931 0.30753138075310865 0.09832111555989931 0.2255224854997506
+0.34100418410039046 0.07119804919854777 0.3410041841003904 0.07119804919854777 0.24611789952252214
+0.33891213389118535 0.07458843249371672 0.33891213389118535 0.07458843249371672 0.24610702313432167
+0.3451882845188007 0.07119804919854777 0.34518828451880074 0.07119804919854777 0.2471694337403774
+0.3744769874476722 0.050855749427534125 0.37447698744767216 0.050855749427534125 0.2369849875698494
+0.3723849372384671 0.054246132722703067 0.3723849372384671 0.054246132722703067 0.23948905000000797
+0.370292887029262 0.05763651601787201 0.37029288702926205 0.05763651601787201 0.24175132306168587
+0.3682008368200569 0.06102689931304095 0.3682008368200569 0.06102689931304095 0.24374471235520592
+0.3661087866108518 0.06441728260820989 0.3661087866108517 0.06441728260820989 0.24544970685482217
+0.3493723849372109 0.07119804919854777 0.34937238493721084 0.07119804919854777 0.24787963218232975
+0.3535564853556211 0.07119804919854777 0.3535564853556212 0.07119804919854777 0.2482461166325132
+0.35983263598323645 0.06780766590337883 0.35983263598323645 0.06780766590337883 0.24731486993816723
+0.36401673640164667 0.06780766590337883 0.36401673640164667 0.06780766590337883 0.246854615706698
+0.35774058577403134 0.07119804919854777 0.3577405857740313 0.07119804919854777 0.24827000047541495
+0.3953974895397233 0.04407498283719624 0.39539748953972337 0.04407498283719624 0.22340328135416462
+0.38075313807528754 0.04746536613236518 0.38075313807528754 0.04746536613236518 0.23277554360257288
+0.38493723849369776 0.04746536613236518 0.38493723849369776 0.04746536613236518 0.2309992990663878
+0.389121338912108 0.04746536613236518 0.389121338912108 0.04746536613236518 0.22895336798367483
+0.3933054393305182 0.04746536613236518 0.3933054393305182 0.04746536613236518 0.22664730935837982
+0.37866108786608244 0.050855749427534125 0.3786610878660825 0.050855749427534125 0.23559148006766104
+0.4163179916317744 0.03729421624685836 0.41631799163177435 0.03729421624685836 0.20413959331075718
+0.40167364016733864 0.0406845995420273 0.4016736401673386 0.0406845995420273 0.2173408170728506
+0.40585774058574886 0.0406845995420273 0.40585774058574886 0.0406845995420273 0.21439376671620528
+0.4100418410041591 0.0406845995420273 0.41004184100415914 0.0406845995420273 0.21122153801096263
+0.4142259414225693 0.0406845995420273 0.4142259414225693 0.0406845995420273 0.20783242289883255
+0.39958158995813353 0.04407498283719624 0.3995815899581335 0.04407498283719624 0.2207669763317773
+0.42259414225938974 0.03390383295168942 0.42259414225938974 0.03390383295168942 0.19670736081666226
+0.42677824267779996 0.03390383295168942 0.4267782426778 0.03390383295168942 0.19277214057097333
+0.4309623430962102 0.03390383295168942 0.4309623430962102 0.03390383295168942 0.18864001285554302
+0.42050209205018463 0.03729421624685836 0.4205020920501847 0.03729421624685836 0.20047347368709048
+0.4539748953974664 0.01695191647584471 0.45397489539746644 0.01695191647584471 0.15577859983738643
+0.44769874476985105 0.02034229977101365 0.44769874476985105 0.02034229977101365 0.16437210020745152
+0.4518828451882613 0.02034229977101365 0.4518828451882612 0.02034229977101365 0.15938415902521233
+0.4351464435146204 0.03390383295168942 0.43514644351462034 0.03390383295168942 0.18431518524317772
+0.44560669456064594 0.02373268306618259 0.445606694560646 0.02373268306618259 0.16805581321353166
+0.44351464435144083 0.027123066361351533 0.4435146443514409 0.027123066361351533 0.17187425065147868
+0.4414225941422357 0.030513449656520475 0.44142259414223567 0.030513449656520475 0.17580030213993714
+0.4393305439330306 0.03390383295168942 0.4393305439330306 0.03390383295168942 0.17980092810999657
+0.4581589958158766 0.01695191647584471 0.45815899581587655 0.01695191647584471 0.1505255708241288
+0.4623430962342868 0.01695191647584471 0.4623430962342869 0.01695191647584471 0.1450849901588862
+0.46861924686190215 0.013561533180675767 0.4686192468619021 0.013561533180675767 0.1357779612747808
+0.46652719665269704 0.01695191647584471 0.466527196652697 0.01695191647584471 0.13945765566661916
+0.47280334728031237 0.013561533180675767 0.47280334728031237 0.013561533180675767 0.1298865568156582
+0.4790794979079277 0.010171149885506825 0.47907949790792775 0.010171149885506825 0.12012738577815969
+0.4769874476987226 0.013561533180675767 0.47698744769872264 0.013561533180675767 0.12381068774392491
+0.485355648535543 0.006780766590337883 0.48535564853554297 0.006780766590337883 0.1101703265294236
+0.4832635983263379 0.010171149885506825 0.48326359832633786 0.010171149885506825 0.11379046776522438
+0.48953974895395325 0.006780766590337883 0.48953974895395325 0.006780766590337883 0.10357527321522163
+0.01695191647584471 0.4707112970711306 0.01695191647584471 0.4707112970711305 0.2263642689485362
+0.01695191647584471 0.4748953974895406 0.01695191647584471 0.4748953974895406 0.22663392935615612
+0.02034229977101365 0.4686192468619256 0.02034229977101365 0.4686192468619255 0.22671640234499765
+0.02373268306618259 0.46652719665272047 0.02373268306618259 0.46652719665272047 0.22719725258784376
+0.027123066361351533 0.45606694560669525 0.027123066361351533 0.4560669456066952 0.22711871637022554
+0.027123066361351533 0.46025104602510536 0.027123066361351533 0.4602510460251054 0.22750023958334467
+0.027123066361351533 0.46443514644351547 0.027123066361351533 0.46443514644351547 0.22780950968931327
+0.006780766590337883 0.4853556485355658 0.006780766590337883 0.48535564853556584 0.22639580659150257
+0.010171149885506825 0.48326359832636073 0.010171149885506825 0.48326359832636073 0.22646122515053355
+0.013561533180675767 0.48117154811715573 0.013561533180675767 0.48117154811715573 0.2266076417035782
+0.01695191647584471 0.4790794979079507 0.01695191647584471 0.47907949790795074 0.22685021216769277
+0.006780766590337882 0.4895397489539758 0.0067807665903378824 0.48953974895397584 0.22652909630606846
+0.1796903145502422 0.2364016736711263 0.1796903145502422 0.2364016736711263 0.09895610846365523
+0.18308069782892544 0.234309623493803 0.18308069782892544 0.234309623493803 0.099759536326598
+0.18647108109560762 0.2322175733096793 0.18647108109560762 0.23221757330967926 0.10062529159454141
+0.18986145788668718 0.2301252191663925 0.18986145788668718 0.2301252191663925 0.10156686256452606
+0.19325104746032815 0.22803078347249897 0.19325104746032815 0.22803078347249897 0.10260162335771429
+0.19663692686728473 0.22593277327261674 0.19663692686728473 0.22593277327261677 0.10374938516735281
+0.20001165130746945 0.22383303441567146 0.20001165130746945 0.22383303441567146 0.10502940118703806
+0.20336473965652924 0.22173752491125562 0.20336473965652924 0.22173752491125562 0.10645789866446075
+0.13222494851108527 0.2740585774055659 0.13222494851108527 0.2740585774055659 0.10106025912312229
+0.1356153318057939 0.27196652719657816 0.1356153318057939 0.27196652719657816 0.0996726698628324
+0.1390057151002351 0.26987447698777106 0.1390057151002351 0.26987447698777106 0.09854647219597713
+0.14239609839582137 0.2635983263610993 0.14239609839582137 0.2635983263610993 0.09617771486667102
+0.14578648169085676 0.26150627615207234 0.14578648169085676 0.26150627615207234 0.09569041801193401
+0.14239609839516085 0.2677824267792548 0.14239609839516085 0.2677824267792548 0.09766283532654972
+0.1491768649859865 0.2594142259428868 0.1491768649859865 0.2594142259428868 0.09540713533455035
+0.15256724828059928 0.257322175733443 0.15256724828059928 0.257322175733443 0.09529935500101316
+0.15595763157437445 0.255230125524411 0.15595763157437445 0.255230125524411 0.09533905101819139
+0.1593480148669789 0.2531380753166136 0.1593480148669789 0.25313807531661364 0.09550010068592801
+0.16273839815970645 0.2510460251100812 0.16273839815970645 0.2510460251100812 0.09575945808971532
+0.16612878145123192 0.24895397490292673 0.16612878145123192 0.24895397490292673 0.0960980585284969
+0.17969031457284554 0.24058577405846984 0.17969031457284554 0.24058577405846984 0.0980317571783881
+0.1695191647434361 0.2468619246926976 0.1695191647434361 0.2468619246926976 0.09650145490531035
+0.1729095480289885 0.2447698744798867 0.1729095480289885 0.2447698744798867 0.09696020345268763
+0.17629993130772922 0.24267782426456141 0.17629993130772922 0.24267782426456144 0.09747002356242114
+0.11188264874055089 0.2907949790795577 0.11188264874055089 0.2907949790795577 0.1179240030025527
+0.11527303203572509 0.288702928870348 0.1152730320357251 0.288702928870348 0.11489158804335879
+0.11866341533090263 0.2866108786611491 0.11866341533090263 0.28661087866114915 0.11207862735816088
+0.12205379862609995 0.2845188284519255 0.12205379862609995 0.2845188284519255 0.1095067599195403
+0.12544418192128948 0.2824267782426801 0.12544418192128948 0.2824267782426801 0.1071909783940544
+0.12883456521644746 0.2803347280333672 0.12883456521644746 0.2803347280333672 0.10513917760495713
+0.13222494851150107 0.2782426778239931 0.13222494851150104 0.2782426778239931 0.10335205787853448
+0.09493073226471961 0.30962343096232925 0.09493073226471961 0.3096234309623292 0.14205575828339315
+0.09832111555987388 0.3075313807531265 0.09832111555987388 0.3075313807531265 0.13845215689493814
+0.10171149885501896 0.3012552301255541 0.10171149885501896 0.30125523012555405 0.13127129354287936
+0.10510188215018419 0.29916317991637226 0.10510188215018419 0.29916317991637226 0.1277571978338188
+0.10171149885501769 0.3054393305439265 0.10171149885501769 0.3054393305439265 0.1348722856676686
+0.10849226544534886 0.29707112970718874 0.10849226544534886 0.2970711297071888 0.12435460874026794
+0.11188264874052184 0.29497907949799845 0.11188264874052183 0.29497907949799845 0.12109863788907173
+0.08136919908405447 0.3263598326359847 0.08136919908405447 0.3263598326359847 0.16365069641424837
+0.08475958237922387 0.3242677824267805 0.08475958237922387 0.3242677824267805 0.16046835265876977
+0.08814996567439577 0.3179916317991624 0.08814996567439577 0.3179916317991624 0.15301312115792043
+0.08814996567439397 0.3221757322175762 0.08814996567439397 0.3221757322175762 0.1571433050855288
+0.09154034896956546 0.3158995815899532 0.09154034896956546 0.3158995815899532 0.14952402189867778
+0.09493073226473288 0.3138075313807414 0.09493073226473288 0.3138075313807414 0.14597136848306483
+0.06441728260820989 0.3451882845188289 0.06441728260820989 0.3451882845188288 0.1840795446042396
+0.06441728260820989 0.349372384937239 0.06441728260820989 0.349372384937239 0.18802690539271052
+0.06780766590337883 0.3430962343096238 0.06780766590337883 0.3430962343096238 0.18221318324652033
+0.07119804919854777 0.34100418410041883 0.07119804919854777 0.34100418410041883 0.18009082074792795
+0.07458843249371666 0.3347280334728038 0.07458843249371666 0.3347280334728038 0.17351048124055882
+0.0745884324937167 0.3389121338912138 0.0745884324937167 0.3389121338912138 0.17772146030165506
+0.07797881578888549 0.3326359832635987 0.07797881578888549 0.3326359832635987 0.1707988041637756
+0.08136919908405427 0.33054393305439395 0.08136919908405427 0.33054393305439395 0.1678809254321598
+0.054246132722703067 0.3640167364016742 0.054246132722703067 0.3640167364016742 0.19884010187864545
+0.05763651601787201 0.3619246861924692 0.05763651601787201 0.3619246861924692 0.19814292416085433
+0.06102689931304095 0.3556485355648541 0.06102689931304095 0.35564853556485415 0.19335617421405307
+0.06441728260820989 0.3535564853556491 0.06441728260820989 0.35355648535564915 0.1920232299377479
+0.06102689931304095 0.35983263598326415 0.06102689931304095 0.35983263598326415 0.1972100667245991
+0.054246132722703067 0.3682008368200842 0.054246132722703067 0.3682008368200842 0.20235381762115548
+0.04746536613236518 0.38075313807531425 0.04746536613236518 0.38075313807531425 0.20904387016680967
+0.054246132722703067 0.3723849372384942 0.054246132722703067 0.3723849372384942 0.2057857555866153
+0.050855749427534125 0.37866108786610925 0.050855749427534125 0.37866108786610925 0.20915711320547228
+0.054246132722703067 0.3765690376569042 0.054246132722703067 0.3765690376569042 0.20910597116880528
+0.04746536613236518 0.38493723849372435 0.04746536613236518 0.38493723849372435 0.21194870535649432
+0.03729421624685836 0.4079497907949799 0.03729421624685836 0.4079497907949799 0.21937866663267605
+0.04407498283719624 0.39121338912133957 0.04407498283719624 0.39121338912133957 0.21421227266350792
+0.04746536613236518 0.38912133891213446 0.04746536613236518 0.38912133891213446 0.214698897699773
+0.0406845995420273 0.3974895397489546 0.0406845995420273 0.3974895397489546 0.21601691566898937
+0.04407498283719624 0.3953974895397496 0.04407498283719624 0.3953974895397496 0.21667713161113736
+0.0406845995420273 0.4016736401673647 0.0406845995420273 0.4016736401673647 0.2182081186925818
+0.0406845995420273 0.4058577405857748 0.0406845995420273 0.4058577405857748 0.22022191195759636
+0.03390383295168942 0.422594142259415 0.03390383295168942 0.422594142259415 0.22318783363620295
+0.03390383295168942 0.42677824267782505 0.03390383295168942 0.42677824267782505 0.22440241879075784
+0.03729421624685836 0.4121338912133899 0.03729421624685836 0.4121338912133899 0.22114112512472547
+0.03729421624685836 0.41631799163179994 0.03729421624685836 0.4163179916318 0.22272977576002792
+0.03729421624685836 0.42050209205020994 0.03729421624685836 0.42050209205021 0.22414633116296354
+0.03390383295168942 0.43096234309623505 0.03390383295168942 0.43096234309623505 0.22546425976774423
+0.03390383295168942 0.43514644351464504 0.03390383295168942 0.43514644351464504 0.22638109145326216
+0.030513449656520475 0.44142259414226004 0.030513449656520475 0.44142259414226004 0.226234255515509
+0.03390383295168942 0.43933054393305504 0.03390383295168942 0.43933054393305504 0.22716204678519422
+0.030513449656520475 0.44560669456067004 0.030513449656520475 0.44560669456067004 0.22689177080116027
+0.030513449656520475 0.44979079497908003 0.030513449656520475 0.44979079497908003 0.22744118378599862
+0.030513449656520475 0.45397489539749014 0.030513449656520475 0.4539748953974901 0.22789338545339263
+0.20668739746954867 0.21964714039897157 0.20668739746954867 0.21964714039897157 0.1080512016920268
+0.23221757322172473 0.1864710812342918 0.23221757322172473 0.1864710812342918 0.1362195358038982
+0.23012552301251965 0.18986146452946073 0.23012552301251965 0.18986146452946073 0.13335532631043504
+0.228034759105859 0.19325239079016812 0.228034759105859 0.19325239079016812 0.13046134388504224
+0.2259497221345024 0.1966459572132607 0.2259497221345024 0.1966459572132607 0.12755606810785114
+0.20995529995957696 0.21752375181740796 0.20995529995957699 0.217523751817408 0.10983870075549983
+0.21325971880995886 0.21546766302605908 0.2132597188099589 0.21546766302605905 0.11179696709924876
+0.2238820557985032 0.2000476698662433 0.2238820557985032 0.2000476698662433 0.12466060623583076
+0.22184469422283973 0.20346639404650047 0.22184469422283973 0.20346639404650047 0.12179276976380704
+0.21671657970723918 0.2142699064929367 0.2167165797072392 0.21426990649293673 0.11351111192978904
+0.21800032506656483 0.2104922300841162 0.21800032506656483 0.2104922300841162 0.11618000452513531
+0.21986173160696912 0.20692970249353457 0.21986173160696912 0.20692970249353457 0.11896391350531023
+0.2531380753137758 0.15934801487294026 0.2531380753137758 0.15934801487294026 0.16153846356147386
+0.2510460251045707 0.1627383981681092 0.2510460251045707 0.1627383981681092 0.15907700291852958
+0.2489539748953656 0.16612878146327814 0.2489539748953656 0.16612878146327814 0.15653714636225227
+0.24686192468616044 0.16951916475844708 0.24686192468616044 0.16951916475844708 0.15391146210711068
+0.2447698744769554 0.17290954805361602 0.2447698744769554 0.17290954805361602 0.15119630414385218
+0.24267782426775028 0.17629993134878497 0.24267782426775028 0.17629993134878497 0.14839187053426886
+0.24058577405854517 0.1796903146439539 0.24058577405854517 0.1796903146439539 0.14550213874537457
+0.23849372384934006 0.18308069793912285 0.23849372384934006 0.18308069793912285 0.14253469618933126
+0.23640167364013495 0.1864710812342918 0.23640167364013495 0.1864710812342918 0.13950048448744193
+0.28451882845185245 0.1220537986260819 0.28451882845185245 0.1220537986260819 0.19823314611653609
+0.28242677824264734 0.12544418192125084 0.28242677824264734 0.12544418192125084 0.19567455952397037
+0.2803347280334422 0.12883456521641978 0.2803347280334422 0.12883456521641978 0.19318191458213196
+0.2782426778242371 0.13222494851158872 0.2782426778242371 0.13222494851158872 0.1907479543468125
+0.2719665271966218 0.13561533180675767 0.2719665271966218 0.13561533180675767 0.1830825785041914
+0.2698744769874167 0.1390057151019266 0.2698744769874167 0.1390057151019266 0.1807178845328762
+0.26778242677821157 0.14239609839709555 0.26778242677821157 0.14239609839709555 0.17838089066483895
+0.26569037656900646 0.1457864816922645 0.26569037656900646 0.1457864816922645 0.17605159739159162
+0.26359832635980135 0.14917686498743343 0.26359832635980135 0.14917686498743343 0.17370933790470292
+0.26150627615059624 0.15256724828260237 0.26150627615059624 0.15256724828260237 0.17133382951514717
+0.25941422594139113 0.15595763157777132 0.25941422594139113 0.15595763157777132 0.16890612799497207
+0.257322175732186 0.15934801487294026 0.257322175732186 0.15934801487294026 0.16640945188484738
+0.276150627615032 0.13561533180675767 0.276150627615032 0.13561533180675767 0.18836068167609363
+0.3054393305439036 0.10171149885506825 0.3054393305439036 0.10171149885506825 0.22308962388359088
+0.3033472803346985 0.10510188215023719 0.30334728033469854 0.10510188215023719 0.22059753181372035
+0.3012552301254934 0.10849226544540613 0.3012552301254934 0.10849226544540613 0.2180765165095195
+0.2928870292886729 0.11527303203574403 0.2928870292886729 0.11527303203574403 0.20837438162722513
+0.2991631799162882 0.11188264874057507 0.2991631799162882 0.11188264874057507 0.2155525161597939
+0.29707112970708316 0.11527303203574402 0.29707112970708316 0.11527303203574402 0.2130462701797422
+0.2907949790794678 0.11866341533091296 0.2907949790794678 0.11866341533091296 0.20578677900850936
+0.28870292887026267 0.1220537986260819 0.28870292887026267 0.1220537986260819 0.20325133766569195
+0.33682008368198024 0.07797881578888566 0.3368200836819803 0.07797881578888566 0.2457849805971176
+0.33472803347277513 0.0813691990840546 0.33472803347277513 0.0813691990840546 0.24517074153428994
+0.33263598326357 0.08475958237922354 0.33263598326356997 0.08475958237922354 0.2442886454537203
+0.3305439330543649 0.08814996567439248 0.3305439330543649 0.08814996567439248 0.24316730796359928
+0.3284518828451598 0.09154034896956142 0.32845188284515986 0.09154034896956142 0.24183840930210423
+0.3263598326359547 0.09493073226473037 0.3263598326359547 0.09493073226473037 0.24033539806280738
+0.3117154811715189 0.09832111555989931 0.311715481171519 0.09832111555989931 0.22925244683843118
+0.31589958158992915 0.09832111555989931 0.3158995815899291 0.09832111555989931 0.23270881538882168
+0.32008368200833937 0.09832111555989931 0.3200836820083394 0.09832111555989931 0.23586310334315916
+0.3242677824267496 0.09832111555989931 0.32426778242674953 0.09832111555989931 0.23869214896334845
+0.3096234309623138 0.10171149885506825 0.3096234309623138 0.10171149885506825 0.22698200616748423
+0.34309623430959557 0.07458843249371672 0.34309623430959557 0.07458843249371672 0.24733093208029744
+0.34100418410039046 0.07797881578888566 0.3410041841003904 0.07797881578888566 0.24718442149745393
+0.3472803347280058 0.07458843249371672 0.3472803347280058 0.07458843249371672 0.2482089812220514
+0.3765690376568773 0.054246132722703067 0.3765690376568773 0.054246132722703067 0.23820534560162912
+0.3744769874476722 0.05763651601787201 0.37447698744767216 0.05763651601787201 0.24058323768271325
+0.3723849372384671 0.06102689931304095 0.3723849372384671 0.06102689931304095 0.24269820789142701
+0.370292887029262 0.06441728260820989 0.37029288702926205 0.06441728260820989 0.24453079894893734
+0.3682008368200569 0.06780766590337883 0.3682008368200569 0.06780766590337883 0.24606930399891805
+0.351464435146416 0.07458843249371672 0.351464435146416 0.07458843249371672 0.2487381893844913
+0.35564853556482623 0.07458843249371672 0.35564853556482623 0.07458843249371672 0.2489192348810352
+0.36192468619244156 0.07119804919854777 0.3619246861924416 0.07119804919854777 0.2479555410088964
+0.3661087866108518 0.07119804919854777 0.3661087866108517 0.07119804919854777 0.247309760616056
+0.35983263598323645 0.07458843249371672 0.35983263598323645 0.07458843249371672 0.2487561019147957
+0.3974895397489284 0.04746536613236518 0.3974895397489284 0.04746536613236518 0.22409113454966703
+0.38284518828449265 0.050855749427534125 0.3828451882844926 0.050855749427534125 0.2339136471085099
+0.3870292887029029 0.050855749427534125 0.38702928870290293 0.050855749427534125 0.2319607561914975
+0.3912133891213131 0.050855749427534125 0.39121338912131304 0.050855749427534125 0.22974292409316868
+0.3953974895397233 0.050855749427534125 0.39539748953972337 0.050855749427534125 0.2272707940776926
+0.38075313807528754 0.054246132722703067 0.38075313807528754 0.054246132722703067 0.23663123354442658
+0.4184100418409795 0.0406845995420273 0.41841004184097946 0.0406845995420273 0.2042341269800815
+0.40376569037654375 0.04407498283719624 0.4037656903765438 0.04407498283719624 0.21789392217352713
+0.40794979079495397 0.04407498283719624 0.4079497907949539 0.04407498283719624 0.21479346907283423
+0.4121338912133642 0.04407498283719624 0.41213389121336425 0.04407498283719624 0.21147458049492837
+0.4163179916317744 0.04407498283719624 0.41631799163177435 0.04407498283719624 0.20794561500222256
+0.40167364016733864 0.04746536613236518 0.4016736401673386 0.04746536613236518 0.22129501400040594
+0.42468619246859485 0.03729421624685836 0.4246861924685948 0.03729421624685836 0.19660528086849716
+0.42887029288700507 0.03729421624685836 0.4288702928870051 0.03729421624685836 0.19254054644554452
+0.4330543933054153 0.03729421624685836 0.43305439330541523 0.03729421624685836 0.18828384908160675
+0.42259414225938974 0.0406845995420273 0.42259414225938974 0.0406845995420273 0.20043359495636623
+0.4560669456066715 0.02034229977101365 0.4560669456066715 0.02034229977101365 0.1542076701323565
+0.44979079497905616 0.02373268306618259 0.4497907949790561 0.02373268306618259 0.1631417250784246
+0.4539748953974664 0.02373268306618259 0.45397489539746644 0.02373268306618259 0.1580394321441978
+0.4372384937238255 0.03729421624685836 0.43723849372382556 0.03729421624685836 0.18383874128173675
+0.44769874476985105 0.027123066361351533 0.44769874476985105 0.027123066361351533 0.16703206987181998
+0.44560669456064594 0.030513449656520475 0.445606694560646 0.030513449656520475 0.17102877846056172
+0.44351464435144083 0.03390383295168942 0.4435146443514409 0.03390383295168942 0.17509954405345363
+0.4414225941422357 0.03729421624685836 0.44142259414223567 0.03729421624685836 0.17920770669364414
+0.4602510460250817 0.02034229977101365 0.46025104602508177 0.02034229977101365 0.14884359125187
+0.46443514644349193 0.02034229977101365 0.46443514644349193 0.02034229977101365 0.14329245456016315
+0.47071129707110726 0.01695191647584471 0.4707112970711073 0.01695191647584471 0.13364414217019668
+0.46861924686190215 0.02034229977101365 0.4686192468619021 0.02034229977101365 0.1375544678760294
+0.4748953974895175 0.01695191647584471 0.4748953974895174 0.01695191647584471 0.12764492554153653
+0.4811715481171328 0.013561533180675767 0.4811715481171328 0.013561533180675767 0.11755140901690551
+0.4790794979079277 0.01695191647584471 0.47907949790792775 0.01695191647584471 0.12146052451795848
+0.48744769874474814 0.010171149885506825 0.4874476987447482 0.010171149885506825 0.10727385427299142
+0.485355648535543 0.013561533180675767 0.48535564853554297 0.013561533180675767 0.11111008064880519
+0.49372384937236347 0.006780766590337883 0.4937238493723635 0.006780766590337883 0.09680594892755771
+0.49163179916315836 0.010171149885506825 0.4916317991631583 0.010171149885506825 0.10058008427853705
+0.006780766590337867 0.49372384937238584 0.006780766590337867 0.49372384937238584 0.22661638661260133
+0.02034229977101365 0.4728033472803357 0.02034229977101365 0.47280334728033574 0.2269850497371004
+0.02034229977101365 0.4769874476987457 0.02034229977101365 0.47698744769874574 0.22720052283660505
+0.02373268306618259 0.4707112970711306 0.02373268306618259 0.4707112970711305 0.2274581868355466
+0.027123066361351533 0.4686192468619256 0.027123066361351533 0.4686192468619255 0.22805629563496796
+0.030513449656520475 0.45815899581590025 0.030513449656520475 0.4581589958159002 0.2282594803657674
+0.030513449656520475 0.46234309623431036 0.030513449656520475 0.4623430962343104 0.22855054100781855
+0.030513449656520475 0.46652719665272047 0.030513449656520475 0.46652719665272047 0.22877737251932143
+0.010171149885506825 0.4874476987447708 0.010171149885506825 0.48744769874477084 0.22661125502554955
+0.013561533180675767 0.4853556485355658 0.013561533180675767 0.48535564853556584 0.22676979897367458
+0.01695191647584471 0.48326359832636073 0.01695191647584471 0.48326359832636073 0.22701890673428118
+0.02034229977101365 0.48117154811715573 0.02034229977101365 0.48117154811715573 0.2273694189522837
+0.010171149885506813 0.49163179916318084 0.010171149885506813 0.49163179916318084 0.2267159203257664
+0.18308069782322897 0.23849372387218593 0.18308069782322897 0.2384937238721859 0.098651149967379
+0.18647108105144583 0.23640167370240464 0.18647108105144583 0.23640167370240464 0.0993384718191093
+0.18986146432376408 0.23430962356175952 0.18986146432376408 0.23430962356175952 0.1001079902840372
+0.19325183263145437 0.23221706349194216 0.19325183263145437 0.23221706349194218 0.10097749343894373
+0.19664110115383482 0.23012231481294007 0.19664110115383482 0.23012231481294007 0.10196782624668409
+0.20002469306475268 0.22802429571421676 0.20002469306475268 0.22802429571421676 0.10310108466945746
+0.20339200235374277 0.22592884710849645 0.20339200235374277 0.22592884710849645 0.10439550780393995
+0.20673198175211996 0.22384838869641552 0.20673198175211996 0.22384838869641552 0.10586274811662179
+0.13561533180635407 0.2761506276145769 0.13561533180635407 0.2761506276145769 0.10182342074145466
+0.1390057151009699 0.27405857740534534 0.1390057151009699 0.2740585774053454 0.10054085446531502
+0.1423960983952612 0.27196652719655884 0.1423960983952612 0.27196652719655884 0.09948676380610837
+0.14578648168982591 0.26569037657082545 0.14578648168982591 0.26569037657082545 0.09699875637186363
+0.14917686498496047 0.2635983263621736 0.1491768649849605 0.2635983263621737 0.09652860440915866
+0.14578648168903985 0.26987447698811673 0.14578648168903985 0.26987447698811673 0.0986396610295313
+0.15256724827982068 0.2615062761532636 0.15256724827982068 0.2615062761532636 0.09622570565812538
+0.15595763157437179 0.2594142259434828 0.15595763157437179 0.2594142259434828 0.09606385525567772
+0.15934801486697645 0.25732217573444377 0.15934801486697645 0.25732217573444377 0.09601866718388831
+0.16273839815794053 0.2552301255275836 0.16273839815794053 0.25523012552758356 0.09606870554513937
+0.16612878144664772 0.25313807532245863 0.1661287814466477 0.25313807532245863 0.09619637038385008
+0.16951916473853168 0.2510460251179244 0.16951916473853168 0.25104602511792434 0.0963885348942118
+0.18308069785782288 0.2426778242643505 0.18308069785782288 0.2426778242643505 0.09771275406651204
+0.17969031459428267 0.24476987448530454 0.17969031459428267 0.24476987448530454 0.0972947759308125
+0.17290954802738068 0.24895397491253338 0.17290954802738068 0.24895397491253338 0.09663694621136877
+0.1762999313174465 0.24686192470135845 0.1762999313174465 0.24686192470135845 0.09693840944829114
+0.1152730320356916 0.2928870292888015 0.1152730320356916 0.2928870292888015 0.11802053738624925
+0.11866341533085943 0.2907949790796004 0.11866341533085943 0.29079497907960045 0.11514670362509553
+0.12205379862603995 0.2887029288704024 0.12205379862603995 0.2887029288704024 0.11249781515757251
+0.12544418192122525 0.2866108786612101 0.12544418192122528 0.2866108786612101 0.11008817720241425
+0.12883456521642284 0.2845188284520379 0.12883456521642286 0.2845188284520379 0.10792534258593518
+0.13222494851163968 0.2824267782427207 0.13222494851163968 0.2824267782427207 0.10601006422357624
+0.1356153318067924 0.2803347280333162 0.1356153318067924 0.2803347280333162 0.10433660780803854
+0.09832111555989542 0.3117154811715286 0.09832111555989542 0.3117154811715286 0.14239297633860568
+0.10171149885504945 0.3096234309623189 0.10171149885504945 0.3096234309623189 0.1388269018379981
+0.10510188215017052 0.3033472803347518 0.10510188215017054 0.30334728033475183 0.1313546008424752
+0.10849226544531511 0.30125523012558036 0.10849226544531511 0.30125523012558036 0.12793580392141565
+0.10510188215018995 0.3075313807531175 0.10510188215018994 0.3075313807531175 0.1353104513964312
+0.11188264874047733 0.29916317991641667 0.11188264874047733 0.29916317991641667 0.12464979967419483
+0.11527303203563734 0.29707112970724875 0.11527303203563734 0.29707112970724875 0.12152668512850624
+0.08475958237922304 0.3284518828451895 0.08475958237922304 0.3284518828451895 0.16478239189945043
+0.08814996567439204 0.32635983263598567 0.08814996567439204 0.3263598326359856 0.16153247348086663
+0.09154034896956494 0.32008368200837095 0.09154034896956494 0.32008368200837095 0.15370897850003715
+0.0915403489695617 0.3242677824267825 0.0915403489695617 0.3242677824267825 0.15816338301045618
+0.09493073226473651 0.31799163179916295 0.09493073226473651 0.31799163179916295 0.15020087760247522
+0.09832111555990715 0.31589958158995063 0.09832111555990715 0.31589958158995063 0.14665568716189423
+0.06780766590337883 0.34728033472803393 0.06780766590337883 0.34728033472803393 0.18629268055199136
+0.06780766590337883 0.35146443514644404 0.06780766590337883 0.35146443514644404 0.1904310919880157
+0.07119804919854777 0.3451882845188289 0.07119804919854777 0.3451882845188288 0.18430053685366585
+0.07458843249371672 0.3430962343096238 0.07458843249371672 0.3430962343096238 0.18205787403449655
+0.0779788157888856 0.3368200836820087 0.0779788157888856 0.3368200836820087 0.17511971184386424
+0.07797881578888566 0.34100418410041883 0.07797881578888566 0.34100418410041883 0.17957773044482025
+0.08136919908405445 0.3347280334728036 0.08136919908405445 0.3347280334728036 0.17230527318537156
+0.08475958237922317 0.3326359832635986 0.08475958237922317 0.3326359832635986 0.16930231126588013
+0.05763651601787201 0.3661087866108792 0.05763651601787201 0.3661087866108792 0.2018049219424113
+0.06102689931304095 0.3640167364016742 0.06102689931304095 0.3640167364016742 0.20102491854407042
+0.06441728260820989 0.35774058577405915 0.06441728260820989 0.35774058577405915 0.19602692480797293
+0.06780766590337883 0.3556485355648541 0.06780766590337883 0.35564853556485415 0.1945851748265539
+0.06441728260820989 0.3619246861924692 0.06441728260820989 0.3619246861924692 0.1999975398431388
+0.05763651601787201 0.3702928870292892 0.05763651601787201 0.3702928870292892 0.20538791756646582
+0.050855749427534125 0.38284518828451936 0.050855749427534125 0.38284518828451936 0.21219585884405157
+0.05763651601787201 0.3744769874476992 0.05763651601787201 0.3744769874476992 0.20886000203525004
+0.054246132722703067 0.38075313807531425 0.054246132722703067 0.38075313807531425 0.21228762306136814
+0.05763651601787201 0.37866108786610925 0.05763651601787201 0.37866108786610925 0.21219242988794348
+0.050855749427534125 0.38702928870292946 0.050855749427534125 0.38702928870292946 0.2150760768837847
+0.0406845995420273 0.4100418410041849 0.0406845995420273 0.4100418410041849 0.2220539817800915
+0.04746536613236518 0.39330543933054457 0.04746536613236518 0.39330543933054457 0.21727792550137112
+0.050855749427534125 0.39121338912133957 0.050855749427534125 0.39121338912133957 0.21777963822018973
+0.04407498283719624 0.3995815899581597 0.04407498283719624 0.3995815899581597 0.21896483771682496
+0.04746536613236518 0.3974895397489546 0.04746536613236518 0.3974895397489546 0.2196727108850983
+0.04407498283719624 0.4037656903765698 0.04407498283719624 0.4037656903765698 0.2210669588510432
+0.04407498283719624 0.4079497907949799 0.04407498283719624 0.4079497907949799 0.22297826422539282
+0.03729421624685836 0.42468619246862 0.03729421624685836 0.42468619246862 0.2253948167632767
+0.03729421624685836 0.42887029288703005 0.03729421624685836 0.42887029288703005 0.2264813432233901
+0.0406845995420273 0.41422594142259495 0.0406845995420273 0.414225941422595 0.22370289645177213
+0.0406845995420273 0.41841004184100494 0.0406845995420273 0.418410041841005 0.22516993881462163
+0.0406845995420273 0.422594142259415 0.0406845995420273 0.422594142259415 0.2264589042325841
+0.03729421624685836 0.43305439330544004 0.03729421624685836 0.43305439330544004 0.22741385795492783
+0.03729421624685836 0.43723849372385004 0.03729421624685836 0.43723849372385004 0.22820188059246863
+0.03390383295168942 0.44351464435146504 0.03390383295168942 0.44351464435146504 0.22781739163528195
+0.03729421624685836 0.44142259414226004 0.03729421624685836 0.44142259414226004 0.2288562270143737
+0.03390383295168942 0.4476987447698751 0.03390383295168942 0.4476987447698751 0.22835825447855054
+0.03390383295168942 0.45188284518828514 0.03390383295168942 0.4518828451882851 0.22879635481012742
+0.03390383295168942 0.45606694560669525 0.03390383295168942 0.4560669456066952 0.22914373406443492
+0.21004682897443852 0.22179343889088773 0.21004682897443852 0.22179343889088773 0.10751233329401022
+0.23430962343092984 0.18986146452946073 0.23430962343092984 0.18986146452946073 0.13641347560719244
+0.23221757322172473 0.19325184782462967 0.23221757322172473 0.19325184782462967 0.13329029937154122
+0.23012927844766637 0.19664375046739058 0.23012927844766637 0.19664375046739058 0.13015149965588005
+0.2280528172612516 0.2000392401785853 0.22805281726125157 0.2000392401785853 0.12702072439801795
+0.21336355453301234 0.21982620620049717 0.21336355453301234 0.21982620620049717 0.1093295254084835
+0.21671327422865827 0.21819514363482262 0.2167132742286583 0.21819514363482262 0.11120024112238298
+0.2259971219417041 0.20344000894806993 0.2259971219417041 0.20344000894806993 0.12392173693971258
+0.2239685157723598 0.2068422187689694 0.2239685157723598 0.20684221876896938 0.1208793755322189
+0.21935382219883176 0.21658771815864428 0.21935382219883176 0.21658771815864428 0.11297227299603421
+0.22048014096460175 0.21365336127178192 0.22048014096460175 0.21365336127178192 0.11522102059011019
+0.22200984666122262 0.21023176279219669 0.22200984666122262 0.2102317627921967 0.11793930415948127
+0.2552301255229809 0.1627383981681092 0.2552301255229809 0.1627383981681092 0.16382985602628544
+0.2531380753137758 0.16612878146327814 0.2531380753137758 0.16612878146327814 0.1611567448384532
+0.2510460251045707 0.16951916475844708 0.2510460251045707 0.16951916475844708 0.15838322537639582
+0.2489539748953656 0.17290954805361602 0.2489539748953656 0.17290954805361602 0.15550630761247264
+0.24686192468616044 0.17629993134878497 0.24686192468616044 0.17629993134878497 0.15252696465000407
+0.2447698744769554 0.1796903146439539 0.2447698744769554 0.1796903146439539 0.14945006891517723
+0.24267782426775028 0.18308069793912285 0.24267782426775028 0.18308069793912285 0.1462842221202411
+0.24058577405854517 0.1864710812342918 0.24058577405854517 0.1864710812342918 0.14304149735556962
+0.23849372384934006 0.18986146452946073 0.23849372384934006 0.18986146452946073 0.13973711154009985
+0.28661087866105756 0.12544418192125087 0.28661087866105756 0.12544418192125087 0.20077150331923085
+0.28451882845185245 0.1288345652164198 0.28451882845185245 0.1288345652164198 0.1983447959604138
+0.28242677824264734 0.13222494851158875 0.28242677824264734 0.13222494851158875 0.19596332028864363
+0.2803347280334422 0.1356153318067577 0.2803347280334422 0.1356153318067577 0.19361450778838815
+0.2740585774058269 0.1390057151019266 0.2740585774058269 0.1390057151019266 0.18600427579429893
+0.2719665271966218 0.14239609839709555 0.2719665271966218 0.14239609839709555 0.18366013389785474
+0.2698744769874167 0.1457864816922645 0.2698744769874167 0.1457864816922645 0.1813079750230805
+0.26778242677821157 0.14917686498743343 0.26778242677821157 0.14917686498743343 0.17892694531225958
+0.26569037656900646 0.15256724828260237 0.26569037656900646 0.15256724828260237 0.17649667048552206
+0.26359832635980135 0.15595763157777132 0.26359832635980135 0.15595763157777132 0.1739982113208742
+0.26150627615059624 0.15934801487294026 0.26150627615059624 0.15934801487294026 0.17141488965029714
+0.25941422594139113 0.1627383981681092 0.25941422594139113 0.1627383981681092 0.16873296430686843
+0.2782426778242371 0.1390057151019266 0.2782426778242371 0.1390057151019266 0.1912820405481991
+0.3075313807531087 0.10510188215023719 0.30753138075310865 0.10510188215023719 0.22464651023114748
+0.3054393305439036 0.10849226544540613 0.3054393305439036 0.10849226544540613 0.22227549082738543
+0.3033472803346985 0.11188264874057507 0.30334728033469854 0.11188264874057507 0.21989410338575732
+0.294979079497878 0.11866341533091297 0.294979079497878 0.11866341533091297 0.21057272866888163
+0.3012552301254934 0.11527303203574402 0.3012552301254934 0.11527303203574402 0.21752230034670547
+0.29916317991628827 0.11866341533091296 0.2991631799162882 0.11866341533091296 0.215174246697769
+0.29288702928867294 0.12205379862608191 0.29288702928867294 0.12205379862608191 0.20814073273354602
+0.2907949790794678 0.12544418192125087 0.2907949790794678 0.12544418192125087 0.20575298228611127
+0.33891213389118535 0.0813691990840546 0.33891213389118535 0.0813691990840546 0.24674827687066633
+0.33682008368198024 0.08475958237922354 0.3368200836819803 0.08475958237922354 0.2460462466978269
+0.33472803347277513 0.08814996567439248 0.33472803347277513 0.08814996567439248 0.24510636157437535
+0.33263598326357 0.09154034896956142 0.33263598326356997 0.09154034896956142 0.2439597208658046
+0.3305439330543649 0.09493073226473037 0.3305439330543649 0.09493073226473037 0.2426391912400565
+0.3284518828451598 0.09832111555989931 0.32845188284515986 0.09832111555989931 0.2411780569331057
+0.31380753138072404 0.10171149885506825 0.31380753138072404 0.10171149885506825 0.23060687255197013
+0.31799163179913426 0.10171149885506825 0.31799163179913426 0.10171149885506825 0.23393477007652583
+0.3221757322175445 0.10171149885506825 0.3221757322175445 0.10171149885506825 0.23694161966022761
+0.3263598326359547 0.10171149885506825 0.3263598326359547 0.10171149885506825 0.23960866795041727
+0.3117154811715189 0.10510188215023719 0.311715481171519 0.10510188215023719 0.22843499662795833
+0.3451882845188007 0.07797881578888566 0.34518828451880074 0.07797881578888566 0.24823408615146295
+0.34309623430959557 0.0813691990840546 0.34309623430959557 0.0813691990840546 0.24797281324433482
+0.3493723849372109 0.07797881578888566 0.34937238493721084 0.07797881578888566 0.24893035067663846
+0.37866108786608244 0.05763651601787201 0.3786610878660825 0.05763651601787201 0.2391184830330513
+0.3765690376568773 0.06102689931304095 0.3765690376568773 0.06102689931304095 0.2413486673968949
+0.3744769874476722 0.06441728260820989 0.37447698744767216 0.06441728260820989 0.24330246359762245
+0.3723849372384671 0.06780766590337883 0.3723849372384671 0.06780766590337883 0.244968234702464
+0.370292887029262 0.07119804919854777 0.37029288702926205 0.07119804919854777 0.24634204451228328
+0.3535564853556211 0.07797881578888566 0.3535564853556212 0.07797881578888566 0.2492734114107731
+0.35774058577403134 0.07797881578888566 0.3577405857740313 0.07797881578888566 0.24926692627140914
+0.36401673640164667 0.07458843249371672 0.36401673640164667 0.07458843249371672 0.2482556933896393
+0.3682008368200569 0.07458843249371672 0.3682008368200569 0.07458843249371672 0.24742741811458488
+0.36192468619244156 0.07797881578888566 0.3619246861924416 0.07797881578888566 0.24891762006958437
+0.39958158995813353 0.050855749427534125 0.3995815899581335 0.050855749427534125 0.22455522278018095
+0.38493723849369776 0.054246132722703067 0.38493723849369776 0.054246132722703067 0.23477642594642747
+0.389121338912108 0.054246132722703067 0.389121338912108 0.054246132722703067 0.23265158446445436
+0.3933054393305182 0.054246132722703067 0.3933054393305182 0.054246132722703067 0.23026797845867056
+0.3974895397489284 0.054246132722703067 0.3974895397489284 0.054246132722703067 0.2276371521474907
+0.38284518828449265 0.05763651601787201 0.3828451882844926 0.05763651601787201 0.23736718642748378
+0.42050209205018463 0.04407498283719624 0.4205020920501847 0.04407498283719624 0.20421413320359783
+0.40585774058574886 0.04746536613236518 0.40585774058574886 0.04746536613236518 0.21826899853308943
+0.4100418410041591 0.04746536613236518 0.41004184100415914 0.04746536613236518 0.2150227592410565
+0.4142259414225693 0.04746536613236518 0.4142259414225693 0.04746536613236518 0.2115653497170075
+0.4184100418409795 0.04746536613236518 0.41841004184097946 0.04746536613236518 0.20790499403641463
+0.40376569037654375 0.050855749427534125 0.4037656903765438 0.050855749427534125 0.2216069813536826
+0.42677824267779996 0.0406845995420273 0.4267782426778 0.0406845995420273 0.19643686305577937
+0.4309623430962102 0.0406845995420273 0.4309623430962102 0.0406845995420273 0.19224894058062644
+0.4351464435146204 0.0406845995420273 0.43514644351462034 0.0406845995420273 0.1878737222951001
+0.42468619246859485 0.04407498283719624 0.4246861924685948 0.04407498283719624 0.2002867326082849
+0.4581589958158766 0.02373268306618259 0.45815899581587655 0.02373268306618259 0.1527497215593615
+0.4518828451882613 0.027123066361351533 0.4518828451882612 0.027123066361351533 0.16200225314769445
+0.4560669456066715 0.027123066361351533 0.4560669456066715 0.027123066361351533 0.15678542791951722
+0.4393305439330306 0.0406845995420273 0.4393305439330306 0.0406845995420273 0.18331393290791084
+0.44979079497905616 0.030513449656520475 0.4497907949790561 0.030513449656520475 0.16607042204382438
+0.44769874476985105 0.03390383295168942 0.44769874476985105 0.03390383295168942 0.17021236675499593
+0.44560669456064594 0.03729421624685836 0.445606694560646 0.03729421624685836 0.17439214854369986
+0.44351464435144083 0.0406845995420273 0.4435146443514409 0.0406845995420273 0.17857110440917404
+0.4623430962342868 0.02373268306618259 0.4623430962342869 0.02373268306618259 0.14727285014169564
+0.46652719665269704 0.02373268306618259 0.466527196652697 0.02373268306618259 0.14160864173958063
+0.47280334728031237 0.02034229977101365 0.47280334728031237 0.02034229977101365 0.13162963586851104
+0.47071129707110726 0.02373268306618259 0.4707112970711073 0.02373268306618259 0.13575660604134357
+0.4769874476987226 0.02034229977101365 0.47698744769872264 0.02034229977101365 0.12551790001282934
+0.4832635983263379 0.01695191647584471 0.48326359832633786 0.01695191647584471 0.11509165958130678
+0.4811715481171328 0.02034229977101365 0.4811715481171328 0.02034229977101365 0.11921929616374007
+0.48953974895395325 0.013561533180675767 0.48953974895395325 0.013561533180675767 0.10448854733651312
+0.48744769874474814 0.01695191647584471 0.4874476987447482 0.01695191647584471 0.10853942897993207
+0.4979079497907737 0.006780766590337883 0.4979079497907737 0.006780766590337883 0.08986645962365296
+0.4958158995815686 0.010171149885506825 0.49581589958156863 0.010171149885506825 0.0937124992522144
+0.49372384937236347 0.013561533180675767 0.4937238493723635 0.013561533180675767 0.09768933941898106
+0.006780766590337841 0.4979079497907959 0.006780766590337841 0.4979079497907959 0.22665970664843357
+0.010171149885506787 0.4958158995815909 0.010171149885506785 0.4958158995815909 0.2267778164101478
+0.02373268306618259 0.4748953974895407 0.02373268306618259 0.47489539748954074 0.2276660544118068
+0.02373268306618259 0.47907949790795074 0.02373268306618259 0.47907949790795074 0.2278283614056075
+0.027123066361351533 0.4728033472803357 0.027123066361351533 0.47280334728033574 0.22824983336766982
+0.030513449656520475 0.4707112970711306 0.030513449656520475 0.4707112970711305 0.22895029072290693
+0.03390383295168942 0.46025104602510536 0.03390383295168942 0.4602510460251054 0.22941249258916555
+0.03390383295168942 0.46443514644351547 0.03390383295168942 0.46443514644351547 0.22961453601998638
+0.03390383295168942 0.4686192468619256 0.03390383295168942 0.4686192468619255 0.22976133418681502
+0.01356153318067576 0.48953974895397584 0.013561533180675761 0.48953974895397584 0.226887728334932
+0.01695191647584471 0.4874476987447708 0.01695191647584471 0.48744769874477084 0.22714491744653267
+0.02034229977101365 0.4853556485355658 0.02034229977101365 0.48535564853556584 0.2274974483041938
+0.02373268306618259 0.4832635983263608 0.02373268306618259 0.48326359832636084 0.22795172465002247
+0.013561533180675734 0.4937238493723859 0.013561533180675734 0.4937238493723859 0.22696464985637796
+0.186471081094576 0.24058577406141898 0.186471081094576 0.24058577406141898 0.0982035572337087
+0.18986146430250864 0.238493723897102 0.18986146430250864 0.23849372389710197 0.09878239956395059
+0.1932518474672189 0.23640167376492038 0.1932518474672189 0.23640167376492038 0.09946784902304708
+0.196642211986129 0.23430889802185542 0.196642211986129 0.23430889802185542 0.10028132236705302
+0.20003072206026082 0.23221336152856029 0.20003072206026082 0.23221336152856029 0.10124650284275503
+0.20341078673197302 0.23011594926305853 0.20341078673197302 0.23011594926305853 0.1023861241034806
+0.20677021293923895 0.2280293542370263 0.20677021293923895 0.22802935423702628 0.1037146058589803
+0.2101036475456077 0.22597062941284596 0.2101036475456077 0.22597062941284599 0.1052394470222066
+0.13900571510174914 0.27824267782380213 0.13900571510174917 0.27824267782380213 0.10289341860461441
+0.14239609839632114 0.27615062761420345 0.14239609839632114 0.27615062761420345 0.10166409940468997
+0.14578648169031933 0.2740585774050664 0.14578648169031935 0.2740585774050664 0.10062862509305369
+0.14917686498363478 0.26778242678026615 0.14917686498363478 0.26778242678026615 0.09797561162585776
+0.15256724827781365 0.26569037657251526 0.15256724827781365 0.2656903765725152 0.0974697218069115
+0.1491768649836208 0.2719665271967306 0.1491768649836208 0.2719665271967306 0.09976469911516452
+0.15595763157288747 0.2635983263642711 0.15595763157288747 0.2635983263642711 0.09709756501536894
+0.15934801486669745 0.26150627615525424 0.15934801486669745 0.26150627615525424 0.09683646649915245
+0.16273839815915903 0.2594142259455985 0.16273839815915903 0.2594142259455985 0.0966665920532709
+0.16612878144870202 0.25732217573775884 0.16612878144870202 0.25732217573775884 0.09657181324853294
+0.16951916473538287 0.2552301255335722 0.16951916473538287 0.2552301255335722 0.09654034265283791
+0.17290954801802916 0.2531380753323443 0.17290954801802916 0.2531380753323443 0.09656514677825534
+0.18647108113505698 0.24476987449715404 0.18647108113505698 0.24476987449715404 0.09725912727316761
+0.18308069787555473 0.24686192471889423 0.18308069787555473 0.24686192471889426 0.09698118243840549
+0.17969031459007215 0.248953974931131 0.17969031459007215 0.248953974931131 0.09678025862629226
+0.17629993130720187 0.25104602513236624 0.17629993130720187 0.25104602513236624 0.09664415178189227
+0.11866341533081158 0.2949790794980671 0.11866341533081158 0.2949790794980671 0.11859182018894025
+0.12205379862597703 0.29288702928887367 0.12205379862597703 0.29288702928887367 0.11586503990350881
+0.12544418192115367 0.2907949790796771 0.12544418192115367 0.2907949790796771 0.113360072325926
+0.12883456521630746 0.28870292887048854 0.12883456521630746 0.28870292887048854 0.11108422153596798
+0.1322249485115111 0.28661087866132645 0.1322249485115111 0.28661087866132645 0.10903836100917581
+0.1356153318067156 0.2845188284522 0.1356153318067156 0.2845188284522 0.10721725866113417
+0.13900571510198476 0.2824267782428085 0.13900571510198476 0.2824267782428085 0.10561022460285674
+0.10171149885507365 0.31380753138073364 0.10171149885507365 0.31380753138073364 0.14311032393187764
+0.10510188215023109 0.3117154811715143 0.10510188215023109 0.3117154811715143 0.13960095574326134
+0.1084922654453125 0.30543933054392247 0.1084922654453125 0.30543933054392247 0.13187916828749524
+0.11188264874045195 0.30334728033477365 0.11188264874045195 0.30334728033477365 0.1285658257074478
+0.1084922654453722 0.30962343096230055 0.1084922654453722 0.30962343096230055 0.13616200944426368
+0.11527303203557533 0.30125523012563016 0.11527303203557533 0.30125523012563016 0.12539946446377773
+0.11866341533073149 0.29916317991649904 0.1186634153307315 0.29916317991649904 0.12240452307665863
+0.08814996567439175 0.33054393305439395 0.08814996567439175 0.33054393305439395 0.16613875572293144
+0.09154034896956025 0.32845188284519 0.09154034896956025 0.32845188284519006 0.16284551606338796
+0.0949307322647327 0.3221757322175794 0.0949307322647327 0.3221757322175794 0.15470942989104738
+0.0949307322647291 0.3263598326359874 0.0949307322647291 0.3263598326359874 0.15945563380863567
+0.09832111555990548 0.32008368200837456 0.09832111555990548 0.32008368200837456 0.15120611817185106
+0.10171149885507957 0.31799163179916495 0.10171149885507957 0.31799163179916495 0.14768920232748248
+0.07119804919854777 0.349372384937239 0.07119804919854777 0.349372384937239 0.1885794318998237
+0.07119804919854777 0.3535564853556491 0.07119804919854777 0.35355648535564915 0.19288273461671912
+0.07458843249371672 0.34728033472803393 0.07458843249371672 0.34728033472803393 0.18647395944981315
+0.07797881578888566 0.3451882845188289 0.07797881578888566 0.3451882845188288 0.18412604861492057
+0.08136919908405459 0.3389121338912137 0.08136919908405459 0.3389121338912137 0.17687827283263435
+0.0813691990840546 0.3430962343096238 0.0813691990840546 0.3430962343096238 0.18155224006277212
+0.08475958237922344 0.33682008368200855 0.08475958237922344 0.33682008368200855 0.17398218245664918
+0.08814996567439222 0.33472803347280333 0.08814996567439222 0.33472803347280333 0.17091595112508998
+0.06102689931304095 0.3682008368200842 0.06102689931304095 0.3682008368200842 0.2047641765486882
+0.06441728260820989 0.3661087866108792 0.06441728260820989 0.3661087866108792 0.20389662503424186
+0.06780766590337883 0.35983263598326415 0.06780766590337883 0.35983263598326415 0.19871271978625948
+0.07119804919854777 0.35774058577405915 0.07119804919854777 0.35774058577405915 0.1971665887082583
+0.06780766590337883 0.3640167364016742 0.06780766590337883 0.3640167364016742 0.20277345909879738
+0.06102689931304095 0.3723849372384942 0.06102689931304095 0.3723849372384942 0.208393988399083
+0.054246132722703067 0.38493723849372435 0.054246132722703067 0.38493723849372435 0.2153072903423174
+0.06102689931304095 0.3765690376569042 0.06102689931304095 0.3765690376569042 0.21188371337431364
+0.05763651601787201 0.38284518828451936 0.05763651601787201 0.38284518828451936 0.21535996818394976
+0.06102689931304095 0.38075313807531425 0.06102689931304095 0.38075313807531425 0.2152063030974514
+0.054246132722703067 0.38912133891213446 0.054246132722703067 0.38912133891213446 0.21814518465560132
+0.04407498283719624 0.4121338912133899 0.04407498283719624 0.4121338912133899 0.2246966044146149
+0.050855749427534125 0.3953974895397496 0.050855749427534125 0.3953974895397496 0.22029201585985267
+0.054246132722703067 0.39330543933054457 0.054246132722703067 0.39330543933054457 0.2207852694575276
+0.04746536613236518 0.4016736401673647 0.04746536613236518 0.4016736401673647 0.22187362554351606
+0.050855749427534125 0.3995815899581597 0.050855749427534125 0.3995815899581597 0.22260230634139686
+0.04746536613236518 0.4058577405857748 0.04746536613236518 0.4058577405857748 0.22387443311777475
+0.04746536613236518 0.4100418410041849 0.04746536613236518 0.4100418410041849 0.22567217665509406
+0.0406845995420273 0.42677824267782505 0.0406845995420273 0.42677824267782505 0.2275758697887036
+0.0406845995420273 0.43096234309623505 0.0406845995420273 0.43096234309623505 0.22852894011072536
+0.04407498283719624 0.41631799163179994 0.04407498283719624 0.4163179916318 0.22622274725182365
+0.04407498283719624 0.42050209205020994 0.04407498283719624 0.42050209205021 0.22756017622574262
+0.04407498283719624 0.42468619246862 0.04407498283719624 0.42468619246862 0.22871485744961131
+0.0406845995420273 0.43514644351464504 0.0406845995420273 0.43514644351464504 0.22932797487440035
+0.0406845995420273 0.43933054393305504 0.0406845995420273 0.43933054393305504 0.229984302740557
+0.03729421624685836 0.44560669456067004 0.03729421624685836 0.44560669456067004 0.22938872626053933
+0.0406845995420273 0.44351464435146504 0.0406845995420273 0.44351464435146504 0.23051042623598164
+0.03729421624685836 0.44979079497908003 0.03729421624685836 0.44979079497908003 0.22981193448327683
+0.03729421624685836 0.45397489539749014 0.03729421624685836 0.4539748953974901 0.23013884986920655
+0.03729421624685836 0.45815899581590025 0.03729421624685836 0.4581589958159002 0.23038263227752506
+0.21343430217121195 0.22394895647067353 0.21343430217121195 0.22394895647067356 0.10697338210498027
+0.23640167364013495 0.19325184782462967 0.23640167364013495 0.19325184782462967 0.1363890464163575
+0.23431077371330086 0.19664265556323765 0.23431077371330086 0.19664265556323765 0.13301824731203402
+0.23222699307064376 0.2000350074318132 0.23222699307064376 0.2000350074318132 0.12965004686605888
+0.23015512241916605 0.20342888853184302 0.23015512241916605 0.20342888853184302 0.12630982312749497
+0.21677190305422922 0.22202828336313227 0.21677190305422922 0.22202828336313227 0.10889464241902162
+0.2203328293214546 0.22003186974357483 0.2203328293214546 0.22003186974357483 0.1111955263687975
+0.22809338163727744 0.20681917157180008 0.22809338163727744 0.2068191715718001 0.12302253936785863
+0.22607582640990384 0.2101897320805536 0.22607582640990384 0.2101897320805536 0.1198376176194164
+0.2225262867722049 0.21678830965010526 0.2225262867722049 0.2167883096501053 0.11402397871236868
+0.22427471020342568 0.21355053870256677 0.22427471020342568 0.21355053870256677 0.11684284976714965
+0.257322175732186 0.16612878146327814 0.257322175732186 0.16612878146327814 0.16594214744525868
+0.2552301255229809 0.16951916475844708 0.2552301255229809 0.16951916475844708 0.1630359609593183
+0.2531380753137758 0.17290954805361602 0.2531380753137758 0.17290954805361602 0.16001193998997032
+0.2510460251045707 0.17629993134878497 0.2510460251045707 0.17629993134878497 0.15687169573093326
+0.2489539748953656 0.1796903146439539 0.2489539748953656 0.1796903146439539 0.1536208530950699
+0.24686192468616044 0.18308069793912285 0.24686192468616044 0.18308069793912285 0.15026888061909674
+0.2447698744769554 0.1864710812342918 0.2447698744769554 0.1864710812342918 0.1468288306296788
+0.24267782426775028 0.18986146452946073 0.24267782426775028 0.18986146452946073 0.1433170075530714
+0.24058577405854517 0.19325184782462967 0.24058577405854517 0.19325184782462967 0.13975258165032514
+0.28870292887026267 0.1288345652164198 0.28870292887026267 0.1288345652164198 0.20340629019916404
+0.2866108786610575 0.13222494851158875 0.2866108786610575 0.13222494851158875 0.20109210320713408
+0.28451882845185245 0.1356153318067577 0.28451882845185245 0.1356153318067577 0.19879725290314074
+0.2824267782426473 0.13900571510192664 0.2824267782426473 0.13900571510192664 0.19650488660207568
+0.276150627615032 0.14239609839709555 0.276150627615032 0.14239609839709555 0.1889468978823888
+0.2740585774058269 0.1457864816922645 0.2740585774058269 0.1457864816922645 0.1865884634390079
+0.2719665271966218 0.14917686498743343 0.2719665271966218 0.14917686498743343 0.1841856326029704
+0.2698744769874167 0.15256724828260237 0.2698744769874167 0.15256724828260237 0.18171786670570625
+0.26778242677821157 0.15595763157777132 0.26778242677821157 0.15595763157777132 0.17916615042600118
+0.26569037656900646 0.15934801487294026 0.26569037656900646 0.15934801487294026 0.1765138202504328
+0.26359832635980135 0.1627383981681092 0.26359832635980135 0.1627383981681092 0.17374724352832246
+0.26150627615059624 0.16612878146327814 0.26150627615059624 0.16612878146327814 0.17085633839904377
+0.28033472803344217 0.14239609839709555 0.2803347280334422 0.14239609839709555 0.19419551919743114
+0.3096234309623138 0.10849226544540613 0.3096234309623138 0.10849226544540613 0.2262219640904404
+0.3075313807531087 0.11188264874057507 0.30753138075310865 0.11188264874057507 0.2239921631692177
+0.3054393305439036 0.11527303203574402 0.3054393305439036 0.11527303203574402 0.22176476923302382
+0.29707112970708316 0.1220537986260819 0.29707112970708316 0.1220537986260819 0.21285800872958385
+0.3033472803346985 0.11866341533091296 0.30334728033469854 0.11866341533091296 0.21955316525085353
+0.3012552301254934 0.1220537986260819 0.3012552301254934 0.1220537986260819 0.21736463793440963
+0.294979079497878 0.12544418192125087 0.294979079497878 0.12544418192125087 0.210575531738046
+0.29288702928867294 0.1288345652164198 0.29288702928867294 0.1288345652164198 0.20832290455643906
+0.34100418410039046 0.08475958237922354 0.3410041841003904 0.08475958237922354 0.24744840319493047
+0.33891213389118535 0.08814996567439248 0.33891213389118535 0.08814996567439248 0.2466883815051419
+0.33682008368198024 0.09154034896956142 0.3368200836819803 0.09154034896956142 0.2457233427206292
+0.33472803347277513 0.09493073226473037 0.33472803347277513 0.09493073226473037 0.2445856429240856
+0.33263598326357 0.09832111555989931 0.33263598326356997 0.09832111555989931 0.24330804137721437
+0.3305439330543649 0.10171149885506825 0.3305439330543649 0.10171149885506825 0.24192233874609723
+0.31589958158992915 0.10510188215023719 0.3158995815899291 0.10510188215023719 0.2319326558063132
+0.32008368200833937 0.10510188215023719 0.3200836820083394 0.10510188215023719 0.2351145570124568
+0.3242677824267496 0.10510188215023719 0.32426778242674953 0.10510188215023719 0.23796113788129417
+0.3284518828451598 0.10510188215023719 0.32845188284515986 0.10510188215023719 0.24045806493500357
+0.31380753138072404 0.10849226544540613 0.31380753138072404 0.10849226544540613 0.22988480671047665
+0.3472803347280058 0.0813691990840546 0.3472803347280058 0.0813691990840546 0.24884005071527018
+0.3451882845188007 0.08475958237922354 0.34518828451880074 0.08475958237922354 0.24849011277147073
+0.351464435146416 0.0813691990840546 0.351464435146416 0.0813691990840546 0.24934966156117558
+0.38075313807528754 0.06102689931304095 0.38075313807528754 0.06102689931304095 0.23970659504069217
+0.37866108786608244 0.06441728260820989 0.3786610878660825 0.06441728260820989 0.24177553545464406
+0.3765690376568773 0.06780766590337883 0.3765690376568773 0.06780766590337883 0.24356251960044153
+0.3744769874476722 0.07119804919854777 0.37447698744767216 0.07119804919854777 0.24506372243340016
+0.3723849372384671 0.07458843249371672 0.3723849372384671 0.07458843249371672 0.246282760043
+0.35564853556482623 0.0813691990840546 0.35564853556482623 0.0813691990840546 0.24950492742860161
+0.35983263598323645 0.0813691990840546 0.35983263598323645 0.0813691990840546 0.2493123379777695
+0.3661087866108518 0.07797881578888566 0.3661087866108517 0.07797881578888566 0.24823486201442477
+0.370292887029262 0.07797881578888566 0.37029288702926205 0.07797881578888566 0.24723022331723365
+0.36401673640164667 0.0813691990840546 0.36401673640164667 0.0813691990840546 0.24878115949506094
+0.40167364016733864 0.054246132722703067 0.4016736401673386 0.054246132722703067 0.2247706056568297
+0.3870292887029029 0.05763651601787201 0.38702928870290293 0.05763651601787201 0.23534053106388897
+0.3912133891213131 0.05763651601787201 0.39121338912131304 0.05763651601787201 0.23305039550111353
+0.3953974895397233 0.05763651601787201 0.39539748953972337 0.05763651601787201 0.2305090013779378
+0.39958158995813353 0.05763651601787201 0.3995815899581335 0.05763651601787201 0.22772857459827686
+0.38493723849369776 0.06102689931304095 0.38493723849369776 0.06102689931304095 0.23778366222359956
+0.42259414225938974 0.04746536613236518 0.42259414225938974 0.04746536613236518 0.20404890354323993
+0.40794979079495397 0.050855749427534125 0.4079497907949539 0.050855749427534125 0.2184364752126264
+0.4121338912133642 0.050855749427534125 0.41213389121336425 0.050855749427534125 0.21505348641506114
+0.4163179916317744 0.050855749427534125 0.41631799163177435 0.050855749427534125 0.21146694239195382
+0.42050209205018463 0.050855749427534125 0.4205020920501847 0.050855749427534125 0.20768471434587843
+0.40585774058574886 0.054246132722703067 0.40585774058574886 0.054246132722703067 0.22167949461054845
+0.42887029288700507 0.04407498283719624 0.4288702928870051 0.04407498283719624 0.19616891276453288
+0.4330543933054153 0.04407498283719624 0.43305439330541523 0.04407498283719624 0.19186497261706356
+0.4372384937238255 0.04407498283719624 0.43723849372382556 0.04407498283719624 0.18737794152757473
+0.42677824267779996 0.04746536613236518 0.4267782426778 0.04746536613236518 0.200003125064991
+0.4602510460250817 0.027123066361351533 0.46025104602508177 0.027123066361351533 0.1513815794773923
+0.4539748953974664 0.030513449656520475 0.45397489539746644 0.030513449656520475 0.16092572474411956
+0.4581589958158766 0.030513449656520475 0.45815899581587655 0.030513449656520475 0.15559441821664485
+0.4414225941422357 0.04407498283719624 0.44142259414223567 0.04407498283719624 0.1827095448748819
+0.4518828451882613 0.03390383295168942 0.4518828451882612 0.03390383295168942 0.16513978928043294
+0.44979079497905616 0.03729421624685836 0.4497907949790561 0.03729421624685836 0.16939240932289712
+0.44769874476985105 0.0406845995420273 0.44769874476985105 0.0406845995420273 0.1736455864996622
+0.44560669456064594 0.04407498283719624 0.445606694560646 0.04407498283719624 0.1778602045946347
+0.46443514644349193 0.027123066361351533 0.46443514644349193 0.027123066361351533 0.1457901445254791
+0.46861924686190215 0.027123066361351533 0.4686192468619021 0.027123066361351533 0.14001012780536792
+0.4748953974895175 0.02373268306618259 0.4748953974895174 0.02373268306618259 0.1297160773875985
+0.47280334728031237 0.027123066361351533 0.47280334728031237 0.027123066361351533 0.13404024020437647
+0.4790794979079277 0.02373268306618259 0.47907949790792775 0.02373268306618259 0.12348637212835091
+0.485355648535543 0.02034229977101365 0.48535564853554297 0.02034229977101365 0.11273412908361156
+0.4832635983263379 0.02373268306618259 0.48326359832633786 0.02373268306618259 0.11706696329614451
+0.49163179916315836 0.01695191647584471 0.4916317991631583 0.01695191647584471 0.10180550352159633
+0.48953974895395325 0.02034229977101365 0.48953974895395325 0.02034229977101365 0.10606316427890916
+0.5020920502091839 0.006780766590337883 0.5020920502091838 0.006780766590337883 0.08276211152659795
+0.4999999999999788 0.010171149885506825 0.49999999999997874 0.010171149885506825 0.0866754912184461
+0.4979079497907737 0.013561533180675767 0.4979079497907737 0.013561533180675767 0.09071590273475279
+0.4958158995815686 0.01695191647584471 0.49581589958156863 0.01695191647584471 0.09489234468189629
+0.006780766590337801 0.5020920502092059 0.006780766590337801 0.5020920502092059 0.22666008146347252
+0.010171149885506737 0.5000000000000009 0.010171149885506737 0.5000000000000009 0.22679852191913263
+0.013561533180675685 0.4979079497907959 0.013561533180675685 0.4979079497907959 0.2270027469283263
+0.006780766590337759 0.5062761506276159 0.006780766590337759 0.5062761506276159 0.22661751094015817
+0.027123066361351533 0.47698744769874574 0.027123066361351533 0.47698744769874574 0.22839863866652624
+0.027123066361351533 0.4811715481171558 0.027123066361351533 0.48117154811715585 0.22851033850993233
+0.030513449656520475 0.4748953974895407 0.030513449656520475 0.47489539748954074 0.22907891611635986
+0.03390383295168942 0.4728033472803357 0.03390383295168942 0.47280334728033574 0.22986369545557392
+0.03729421624685836 0.46234309623431036 0.03729421624685836 0.4623430962343104 0.23055633114540705
+0.03729421624685836 0.46652719665272047 0.03729421624685836 0.46652719665272047 0.23067262500856325
+0.03729421624685836 0.4707112970711306 0.03729421624685836 0.4707112970711305 0.23074357576972435
+0.016951916475844694 0.49163179916318084 0.016951916475844694 0.49163179916318084 0.22723216416945377
+0.020342299771013636 0.48953974895397584 0.020342299771013636 0.48953974895397584 0.22758931966035625
+0.023732683066182585 0.4874476987447708 0.023732683066182588 0.48744769874477084 0.22804174115958784
+0.027123066361351533 0.48535564853556584 0.027123066361351533 0.48535564853556584 0.2285915229091324
+0.016951916475844635 0.4958158995815909 0.016951916475844635 0.4958158995815909 0.2272835036656717
+0.18986146436879178 0.242677824265634 0.18986146436879178 0.242677824265634 0.09763030437002113
+0.1932518475499493 0.24058577406922113 0.1932518475499493 0.24058577406922113 0.09811430077556989
+0.19664223063544217 0.2384937237536015 0.19664223063544217 0.23849372375360153 0.09873330814528143
+0.20003238110341434 0.23640027527535035 0.20003238110341434 0.23640027527535032 0.09951175493262289
+0.2034194485099113 0.23430309254828405 0.2034194485099113 0.23430309254828405 0.10047530299312456
+0.2067955821467284 0.23220763708842107 0.2067955821467284 0.23220763708842104 0.10164504586141464
+0.21347484479643078 0.22808492709297276 0.21347484479643078 0.22808492709297276 0.10464262946098603
+0.21014687994341688 0.23013273571816806 0.21014687994341688 0.23013273571816803 0.10303043831601023
+0.14239609839713036 0.2803347280332507 0.14239609839713038 0.2803347280332507 0.1042020411228377
+0.14578648169162087 0.2782426778234948 0.14578648169162087 0.2782426778234948 0.10297410760105195
+0.14917686498529326 0.2761506276137935 0.14917686498529326 0.2761506276137935 0.10190571591665398
+0.15256724827615795 0.26987447698904776 0.15256724827615795 0.26987447698904776 0.09904915148344519
+0.15595763157017728 0.2677824267823692 0.15595763157017728 0.2677824267823692 0.09845928615496158
+0.15256724827808885 0.27405857740487866 0.15256724827808885 0.27405857740487866 0.10097536691601972
+0.1593480148634927 0.2656903765758231 0.1593480148634927 0.2656903765758231 0.0979741038812094
+0.1627383981579295 0.263598326368317 0.16273839815792954 0.263598326368317 0.09757534972152694
+0.18986146440139065 0.24686192475507285 0.18986146440139065 0.24686192475507288 0.0966895689244694
+0.16612878144956889 0.2615062761598331 0.16612878144956889 0.2615062761598331 0.09724835722514093
+0.16951916473912446 0.25941422594994945 0.16951916473912446 0.25941422594994945 0.09698268015391037
+0.1729095480230709 0.25732217574329963 0.1729095480230709 0.2573221757432997 0.09677251564782695
+0.1762999313013042 0.2552301255439292 0.1762999313013042 0.25523012554392915 0.09661692970724046
+0.18647108112501867 0.24895397496846325 0.18647108112501867 0.24895397496846325 0.0965409796064043
+0.18308069785445671 0.25104602516056523 0.18308069785445671 0.25104602516056523 0.09649017141799444
+0.17969031457129714 0.25313807535052113 0.17969031457129714 0.2531380753505212 0.09651989775124216
+0.12205379862588184 0.2970711297073584 0.12205379862588184 0.29707112970735844 0.11960011489207832
+0.12544418192105658 0.2949790794981898 0.12544418192105658 0.29497907949818986 0.11699950853295814
+0.12883456521622091 0.2928870292889966 0.12883456521622091 0.2928870292889966 0.11460986247886391
+0.13222494851136068 0.2907949790797974 0.13222494851136068 0.2907949790797974 0.11243225068057032
+0.13561533180649715 0.2887029288706396 0.13561533180649718 0.2887029288706396 0.11046199458382279
+0.13900571510172025 0.28661087866154283 0.13900571510172025 0.28661087866154283 0.10868929048693597
+0.14239609839693604 0.28451882845253473 0.14239609839693604 0.2845188284525348 0.10710009411156872
+0.10510188215025208 0.3158995815899472 0.10510188215025208 0.3158995815899472 0.14419371820154556
+0.10849226544541708 0.3138075313807202 0.10849226544541708 0.3138075313807202 0.14075301219744138
+0.1118826487404882 0.3075313807531028 0.11188264874048821 0.3075313807531028 0.1328251970131706
+0.11527303203557036 0.30543933054391714 0.11527303203557036 0.30543933054391714 0.12961859738892567
+0.11188264874056499 0.311715481171489 0.11188264874056499 0.311715481171489 0.1373977984138254
+0.11866341533068409 0.3033472803348165 0.11866341533068407 0.3033472803348165 0.12656583895231546
+0.12205379862576705 0.30125523012572497 0.12205379862576705 0.30125523012572497 0.12368543229323403
+0.09154034896956072 0.3326359832635983 0.09154034896956072 0.3326359832635983 0.1677091000318929
+0.09493073226472885 0.3305439330543938 0.09493073226472885 0.3305439330543938 0.16439333446762694
+0.0983211155598992 0.3242677824267864 0.0983211155598992 0.3242677824267864 0.15600338224720647
+0.09832111555989674 0.32845188284519083 0.09832111555989674 0.32845188284519083 0.16100164876868575
+0.1017114988550718 0.32217573221758566 0.1017114988550718 0.3221757322175857 0.15252332899619517
+0.10510188215024796 0.32008368200838216 0.10510188215024796 0.32008368200838216 0.14904938045127014
+0.07458843249371672 0.35146443514644404 0.07458843249371672 0.35146443514644404 0.19092355703870603
+0.07458843249371672 0.3556485355648541 0.07458843249371672 0.35564853556485415 0.19536129625821172
+0.07797881578888566 0.349372384937239 0.07797881578888566 0.349372384937239 0.1887172769927675
+0.0813691990840546 0.34728033472803393 0.0813691990840546 0.34728033472803393 0.1862787304485869
+0.08475958237922354 0.3410041841004188 0.08475958237922354 0.3410041841004188 0.1787736363230393
+0.08475958237922354 0.3451882845188289 0.08475958237922354 0.3451882845188288 0.18362736263380683
+0.08814996567439247 0.33891213389121355 0.08814996567439247 0.33891213389121355 0.17581520452682964
+0.09154034896956136 0.33682008368200816 0.09154034896956136 0.33682008368200816 0.1727050010163128
+0.06441728260820989 0.3702928870292892 0.06441728260820989 0.3702928870292892 0.20768842863384032
+0.06780766590337883 0.3682008368200842 0.06780766590337883 0.3682008368200842 0.20672980828177948
+0.07119804919854777 0.3619246861924692 0.07119804919854777 0.3619246861924692 0.20138900999999124
+0.07458843249371672 0.35983263598326415 0.07458843249371672 0.35983263598326415 0.1997435990584083
+0.07119804919854777 0.3661087866108792 0.07119804919854777 0.3661087866108792 0.20551067012364657
+0.06441728260820989 0.3744769874476992 0.06441728260820989 0.3744769874476992 0.21134044569166363
+0.05763651601787201 0.38702928870292946 0.05763651601787201 0.38702928870292946 0.2183411347271024
+0.06441728260820989 0.37866108786610925 0.06441728260820989 0.37866108786610925 0.2148238300772979
+0.06102689931304095 0.38493723849372435 0.06102689931304095 0.38493723849372435 0.21833856579307123
+0.06441728260820989 0.38284518828451936 0.06441728260820989 0.38284518828451936 0.21811368454184854
+0.05763651601787201 0.39121338912133957 0.05763651601787201 0.39121338912133957 0.22111833832723002
+0.04746536613236518 0.41422594142259495 0.04746536613236518 0.414225941422595 0.22726701879246294
+0.054246132722703067 0.3974895397489546 0.054246132722703067 0.3974895397489546 0.22321529769899626
+0.05763651601787201 0.3953974895397496 0.05763651601787201 0.3953974895397496 0.22367793319414755
+0.050855749427534125 0.4037656903765698 0.050855749427534125 0.4037656903765698 0.22470318386098273
+0.054246132722703067 0.4016736401673647 0.054246132722703067 0.4016736401673647 0.22542677837947075
+0.050855749427534125 0.4079497907949799 0.050855749427534125 0.4079497907949799 0.22659079602339458
+0.050855749427534125 0.4121338912133899 0.050855749427534125 0.4121338912133899 0.22826460924122013
+0.04407498283719624 0.42887029288703005 0.04407498283719624 0.42887029288703005 0.22969498080425124
+0.04407498283719624 0.43305439330544004 0.04407498283719624 0.43305439330544004 0.23051068047589104
+0.04746536613236518 0.41841004184100494 0.04746536613236518 0.418410041841005 0.22866204159189382
+0.04746536613236518 0.422594142259415 0.04746536613236518 0.422594142259415 0.22986301233287956
+0.04746536613236518 0.42677824267782505 0.04746536613236518 0.42677824267782505 0.23087812105660252
+0.04407498283719624 0.43723849372385004 0.04407498283719624 0.43723849372385004 0.23117373979967115
+0.04407498283719624 0.44142259414226004 0.04407498283719624 0.44142259414226004 0.231697285066607
+0.0406845995420273 0.44769874476987503 0.0406845995420273 0.44769874476987503 0.23091972187553214
+0.04407498283719624 0.44560669456067004 0.04407498283719624 0.44560669456067004 0.23209547273928746
+0.0406845995420273 0.45188284518828514 0.0406845995420273 0.4518828451882851 0.23122613963090596
+0.0406845995420273 0.45606694560669525 0.0406845995420273 0.4560669456066952 0.2314439056689148
+0.0406845995420273 0.46025104602510536 0.0406845995420273 0.4602510460251054 0.23158723209970275
+0.21677666237304982 0.22608093579462932 0.21677666237304982 0.22608093579462932 0.10648105357201619
+0.23849402156865607 0.19664233189328986 0.23849402156865604 0.19664233189328986 0.13615734801923662
+0.23640544693941454 0.20003336637001623 0.23640544693941454 0.20003336637001623 0.1325566756955372
+0.23432362640886914 0.20342515174340178 0.23432362640886914 0.20342515174340178 0.12897737222774916
+0.23224898695786345 0.2068168685700901 0.23224898695786345 0.2068168685700901 0.12544515635976405
+0.21998532825811282 0.22419951225878723 0.21998532825811282 0.22419951225878723 0.10847652597321751
+0.22288370781970485 0.222888788085012 0.22288370781970485 0.22288878808501203 0.11022472294424253
+0.22459780710635313 0.22013309327261604 0.2245978071063531 0.22013309327261602 0.11270052177314681
+0.23018311820541498 0.21020681699354468 0.230183118205415 0.21020681699354468 0.12198775915576988
+0.22822110490936806 0.21356130049707944 0.22822110490936806 0.21356130049707947 0.1187003527868971
+0.2264067159804628 0.21688392495344036 0.2264067159804628 0.21688392495344036 0.1156091238983986
+0.25941422594139113 0.16951916475844708 0.25941422594139113 0.16951916475844708 0.16783493398067584
+0.257322175732186 0.17290954805361602 0.257322175732186 0.17290954805361602 0.16468097736163143
+0.2552301255229809 0.17629993134878497 0.2552301255229809 0.17629993134878497 0.16139659910977647
+0.2531380753137758 0.1796903146439539 0.2531380753137758 0.1796903146439539 0.15798805239166916
+0.2510460251045707 0.18308069793912285 0.2510460251045707 0.18308069793912285 0.15446554267436638
+0.2489539748953656 0.1864710812342918 0.2489539748953656 0.1864710812342918 0.150842965699695
+0.24686192468616044 0.18986146452946073 0.24686192468616044 0.18986146452946073 0.14713757131082097
+0.2447698744769554 0.19325184782462967 0.2447698744769554 0.19325184782462967 0.14336957010748996
+0.24267782426775028 0.19664223111979862 0.24267782426775028 0.19664223111979862 0.1395616993030029
+0.2907949790794678 0.13222494851158875 0.2907949790794678 0.13222494851158875 0.2060908903978087
+0.28870292887026267 0.1356153318067577 0.28870292887026267 0.1356153318067577 0.20386568668506308
+0.2866108786610575 0.13900571510192664 0.2866108786610575 0.13900571510192664 0.20162986330369934
+0.28451882845185233 0.14239609839709558 0.28451882845185233 0.14239609839709558 0.1993634204106325
+0.27824267782423706 0.1457864816922645 0.27824267782423706 0.1457864816922645 0.19184814407746661
+0.27615062761503195 0.14917686498743343 0.2761506276150319 0.14917686498743343 0.18944134346719185
+0.2740585774058269 0.15256724828260237 0.2740585774058269 0.15256724828260237 0.18695434528608532
+0.2719665271966218 0.15595763157777132 0.2719665271966218 0.15595763157777132 0.18436798337276425
+0.2698744769874167 0.15934801487294026 0.2698744769874167 0.15934801487294026 0.18166552921267334
+0.26778242677821157 0.1627383981681092 0.26778242677821157 0.1627383981681092 0.1788333747393984
+0.26569037656900646 0.16612878146327814 0.26569037656900646 0.16612878146327814 0.17586155630595848
+0.26359832635980135 0.16951916475844708 0.26359832635980135 0.16951916475844708 0.17274411886482702
+0.2824267782426472 0.1457864816922645 0.2824267782426472 0.1457864816922645 0.19704490414397702
+0.3117154811715189 0.11188264874057507 0.311715481171519 0.11188264874057507 0.22781486222657477
+0.3096234309623138 0.11527303203574402 0.3096234309623138 0.11527303203574402 0.22574123130952684
+0.3075313807531087 0.11866341533091296 0.30753138075310865 0.11866341533091296 0.22367651677665365
+0.2991631799162883 0.12544418192125084 0.2991631799162883 0.12544418192125084 0.21520036454041155
+0.3054393305439036 0.1220537986260819 0.3054393305439036 0.1220537986260819 0.22162721801909854
+0.30334728033469854 0.12544418192125084 0.30334728033469854 0.12544418192125084 0.21959372643272088
+0.2970711297070832 0.1288345652164198 0.2970711297070832 0.1288345652164198 0.21305568733664024
+0.294979079497878 0.13222494851158875 0.294979079497878 0.13222494851158875 0.21092065437157012
+0.34309623430959557 0.08814996567439248 0.34309623430959557 0.08814996567439248 0.24790764487430714
+0.34100418410039046 0.09154034896956142 0.3410041841003904 0.09154034896956142 0.24712282075436628
+0.33891213389118535 0.09493073226473037 0.33891213389118535 0.09493073226473037 0.24616756515341898
+0.33682008368198024 0.09832111555989931 0.3368200836819803 0.09832111555989931 0.24507418541429224
+0.33472803347277513 0.10171149885506825 0.33472803347277513 0.10171149885506825 0.24387399806583585
+0.33263598326357 0.10510188215023719 0.33263598326356997 0.10510188215023719 0.24259600486908697
+0.31799163179913426 0.10849226544540613 0.31799163179913426 0.10849226544540613 0.2332383067129491
+0.3221757322175445 0.10849226544540613 0.3221757322175445 0.10849226544540613 0.23626214646879773
+0.3263598326359547 0.10849226544540613 0.3263598326359547 0.10849226544540613 0.23894127300740084
+0.3305439330543649 0.10849226544540613 0.3305439330543649 0.10849226544540613 0.24126567627209797
+0.31589958158992915 0.11188264874057507 0.3158995815899291 0.11188264874057507 0.231335780676909
+0.3493723849372109 0.08475958237922354 0.34937238493721084 0.08475958237922354 0.24917048729234378
+0.3472803347280058 0.08814996567439248 0.3472803347280058 0.08814996567439248 0.24876267320684578
+0.3535564853556211 0.08475958237922354 0.3535564853556212 0.08475958237922354 0.2494923863955826
+0.38284518828449265 0.06441728260820989 0.3828451882844926 0.06441728260820989 0.2399621314463893
+0.38075313807528754 0.06780766590337883 0.38075313807528754 0.06780766590337883 0.24186466997785236
+0.37866108786608244 0.07119804919854777 0.3786610878660825 0.07119804919854777 0.24348764138567094
+0.3765690376568773 0.07458843249371672 0.3765690376568773 0.07458843249371672 0.24483483696409855
+0.3744769874476722 0.07797881578888566 0.37447698744767216 0.07797881578888566 0.24591702260761902
+0.35774058577403134 0.08475958237922354 0.3577405857740313 0.08475958237922354 0.24946201025374748
+0.36192468619244156 0.08475958237922354 0.3619246861924416 0.08475958237922354 0.24908846005617777
+0.3682008368200569 0.0813691990840546 0.3682008368200569 0.0813691990840546 0.2479229816397435
+0.3723849372384671 0.0813691990840546 0.3723849372384671 0.0813691990840546 0.24675125033070563
+0.3661087866108518 0.08475958237922354 0.3661087866108517 0.08475958237922354 0.24838327462638707
+0.40376569037654375 0.05763651601787201 0.4037656903765438 0.05763651601787201 0.22472102495290294
+0.389121338912108 0.06102689931304095 0.389121338912108 0.06102689931304095 0.23559232887229212
+0.3933054393305182 0.06102689931304095 0.3933054393305182 0.06102689931304095 0.23314547216836248
+0.3974895397489284 0.06102689931304095 0.3974895397489284 0.06102689931304095 0.23045602826681044
+0.40167364016733864 0.06102689931304095 0.4016736401673386 0.06102689931304095 0.22753665230800943
+0.3870292887029029 0.06441728260820989 0.38702928870290293 0.06441728260820989 0.23787525450038685
+0.42468619246859485 0.050855749427534125 0.4246861924685948 0.050855749427534125 0.20371344819883488
+0.4100418410041591 0.054246132722703067 0.41004184100415914 0.054246132722703067 0.21837435261448399
+0.4142259414225693 0.054246132722703067 0.4142259414225693 0.054246132722703067 0.21486484064215228
+0.4184100418409795 0.054246132722703067 0.41841004184097946 0.054246132722703067 0.2111595269269313
+0.42259414225938974 0.054246132722703067 0.42259414225938974 0.054246132722703067 0.20726570049802676
+0.40794979079495397 0.05763651601787201 0.4079497907949539 0.05763651601787201 0.2214976488500918
+0.4309623430962102 0.04746536613236518 0.4309623430962102 0.04746536613236518 0.19577242271246062
+0.4351464435146204 0.04746536613236518 0.43514644351462034 0.04746536613236518 0.19136019489908554
+0.4393305439330306 0.04746536613236518 0.4393305439330306 0.04746536613236518 0.18676842765210447
+0.42887029288700507 0.050855749427534125 0.4288702928870051 0.050855749427534125 0.1995584304686802
+0.4623430962342868 0.030513449656520475 0.4623430962342869 0.030513449656520475 0.15007556352281395
+0.4560669456066715 0.03390383295168942 0.4560669456066715 0.03390383295168942 0.15988132134823632
+0.4602510460250817 0.03390383295168942 0.46025104602508177 0.03390383295168942 0.15443567464070138
+0.44351464435144083 0.04746536613236518 0.4435146443514409 0.04746536613236518 0.18199768469272293
+0.4539748953974664 0.03729421624685836 0.45397489539746644 0.03729421624685836 0.16420782133900924
+0.4518828451882613 0.0406845995420273 0.4518828451882612 0.0406845995420273 0.1685365898151846
+0.44979079497905616 0.04407498283719624 0.4497907949790561 0.04407498283719624 0.17282907444509252
+0.44769874476985105 0.04746536613236518 0.44769874476985105 0.04746536613236518 0.17704713414881004
+0.46652719665269704 0.030513449656520475 0.466527196652697 0.030513449656520475 0.14436766555322433
+0.47071129707110726 0.030513449656520475 0.4707112970711073 0.030513449656520475 0.13846881059907676
+0.4769874476987226 0.027123066361351533 0.47698744769872264 0.027123066361351533 0.12787905664021149
+0.4748953974895175 0.030513449656520475 0.4748953974895174 0.030513449656520475 0.13237682517156715
+0.4811715481171328 0.027123066361351533 0.4811715481171328 0.027123066361351533 0.12152519206142527
+0.48744769874474814 0.02373268306618259 0.4874476987447482 0.02373268306618259 0.11045767199217804
+0.485355648535543 0.027123066361351533 0.48535564853554297 0.027123066361351533 0.11497749424094127
+0.49372384937236347 0.02034229977101365 0.4937238493723635 0.02034229977101365 0.09920783947088462
+0.49163179916315836 0.02373268306618259 0.4916317991631583 0.02373268306618259 0.10365887617961377
+0.5062761506275941 0.006780766590337883 0.5062761506275941 0.006780766590337883 0.0754997679414932
+0.504184100418389 0.010171149885506825 0.504184100418389 0.010171149885506825 0.0794748111381637
+0.5020920502091839 0.013561533180675767 0.5020920502091838 0.013561533180675767 0.08357287296550804
+0.4999999999999788 0.01695191647584471 0.49999999999997874 0.01695191647584471 0.0878034560544347
+0.4979079497907737 0.02034229977101365 0.4979079497907737 0.02034229977101365 0.09217050174281648
+0.006780766590337728 0.5104602510460259 0.006780766590337728 0.5104602510460259 0.22653096978052756
+0.010171149885506674 0.5041841004184109 0.010171149885506674 0.5041841004184109 0.22677856659359466
+0.013561533180675614 0.5020920502092059 0.013561533180675614 0.5020920502092059 0.22700312227535124
+0.01695191647584456 0.5000000000000009 0.01695191647584456 0.5000000000000009 0.22730067285809039
+0.010171149885506617 0.5083682008368209 0.010171149885506617 0.5083682008368209 0.2267174205004894
+0.030513449656520475 0.47907949790795074 0.030513449656520475 0.47907949790795074 0.22917198625178273
+0.030513449656520475 0.4832635983263608 0.030513449656520475 0.48326359832636084 0.22923718866550555
+0.03390383295168942 0.4769874476987458 0.03390383295168942 0.47698744769874585 0.22993155916877908
+0.03729421624685836 0.4748953974895407 0.03729421624685836 0.47489539748954074 0.23078040061720537
+0.0406845995420273 0.46443514644351547 0.0406845995420273 0.46443514644351547 0.231670037285719
+0.0406845995420273 0.4686192468619256 0.0406845995420273 0.4686192468619255 0.23170568005992828
+0.0406845995420273 0.4728033472803357 0.0406845995420273 0.47280334728033574 0.23170671098287898
+0.020342299771013605 0.49372384937238584 0.020342299771013605 0.49372384937238584 0.22764864732746534
+0.023732683066182553 0.49163179916318084 0.023732683066182553 0.49163179916318084 0.2281028793174232
+0.02712306636135151 0.4895397489539759 0.02712306636135151 0.4895397489539759 0.22864761887213012
+0.030513449656520465 0.48744769874477084 0.030513449656520465 0.48744769874477084 0.22928101625384842
+0.020342299771013525 0.4979079497907959 0.020342299771013525 0.4979079497907959 0.22767788050647328
+0.1932518476268096 0.24476987452299434 0.1932518476268096 0.24476987452299434 0.09695658805286987
+0.19664223024226438 0.2426778049544497 0.19664223024226438 0.2426778049544497 0.09736532853587125
+0.20003259275001783 0.24058542364337268 0.2000325927500178 0.24058542364337268 0.09794090905375487
+0.20342218332581863 0.2384904389358393 0.20342218332581866 0.2384904389358393 0.09870998848130569
+0.20680802002906928 0.2363916229419806 0.20680802002906926 0.2363916229419806 0.09969864217100823
+0.21018148868075848 0.23429818975603203 0.21018148868075848 0.23429818975603203 0.10092536846883933
+0.2168354374585637 0.23020049861531575 0.2168354374585637 0.23020049861531575 0.10411072593491359
+0.21352376935491346 0.23223452254999769 0.21352376935491346 0.23223452254999769 0.10239313213051153
+0.14578648169193517 0.28242677824281065 0.14578648169193517 0.28242677824281065 0.10567720145005473
+0.14917686498642077 0.28033472803325626 0.14917686498642077 0.28033472803325626 0.10440145034107572
+0.15256724828003307 0.2782426778235812 0.15256724828003307 0.2782426778235812 0.10325296280740259
+0.15595763156975168 0.27196652719737585 0.1559576315697517 0.27196652719737585 0.10016204516844741
+0.1593480148600277 0.26987447699099965 0.1593480148600277 0.2698744769909997 0.09944638455717313
+0.1559576315723408 0.27615062761360526 0.1559576315723408 0.27615062761360526 0.1022123536244156
+0.16273839815312666 0.2677824267864951 0.16273839815312666 0.26778242678649505 0.09881167694868677
+0.16612878144450285 0.2656903765823077 0.16612878144450285 0.2656903765823077 0.09824469599847775
+0.19325184760402334 0.2489539750438147 0.19325184760402334 0.2489539750438147 0.09603144469061593
+0.18986146435818374 0.25104602521670993 0.18986146435818374 0.25104602521670993 0.09599458254756243
+0.1695191647379095 0.26359832637634745 0.1695191647379095 0.26359832637634745 0.09773632488659179
+0.17290954802594727 0.26150627616829175 0.17290954802594727 0.26150627616829175 0.09728198860547232
+0.17629993130975705 0.2594142259572899 0.17629993130975705 0.25941422595728986 0.09688189798195344
+0.17969031458225238 0.2573221757528651 0.17969031458225238 0.25732217575286503 0.09654111455450154
+0.1864710810872058 0.253138075385883 0.1864710810872058 0.253138075385883 0.09608116330121412
+0.18308069784314118 0.2552301255632748 0.18308069784314118 0.2552301255632748 0.09626944405538122
+0.1254441819209117 0.2991631799166528 0.1254441819209117 0.2991631799166528 0.1209903029213375
+0.12883456521604228 0.29707112970755956 0.12883456521604228 0.2970711297075596 0.1184875672818015
+0.1322249485112188 0.29497907949840807 0.1322249485112188 0.294979079498408 0.11617858217401823
+0.13561533180635563 0.29288702928921057 0.13561533180635563 0.29288702928921057 0.11405927825116673
+0.13900571510144674 0.2907949790800144 0.13900571510144674 0.2907949790800144 0.1121207651134153
+0.14239609839652204 0.2887029288709159 0.14239609839652204 0.2887029288709159 0.11035017220217598
+0.145786481691205 0.2866108786616836 0.145786481691205 0.2866108786616836 0.10873167018398944
+0.10849226544542674 0.31799163179916984 0.10849226544542674 0.31799163179916984 0.14561383220323917
+0.111882648740603 0.31589958158994236 0.11188264874060301 0.31589958158994236 0.1422464551491175
+0.11527303203568212 0.30962343096226846 0.11527303203568211 0.30962343096226846 0.13415528019398934
+0.1186634153307517 0.30753138075307784 0.11866341533075171 0.3075313807530779 0.13104837822907908
+0.11527303203576535 0.31380753138069756 0.11527303203576535 0.31380753138069756 0.13897365252825947
+0.12205379862575709 0.3054393305439105 0.12205379862575709 0.3054393305439105 0.12809511035784257
+0.12544418192082232 0.3033472803349009 0.12544418192082232 0.3033472803349009 0.1253081669426708
+0.09493073226472994 0.3347280334728027 0.09493073226472994 0.3347280334728027 0.16947333240571413
+0.09832111555989796 0.3326359832635974 0.09832111555989796 0.3326359832635974 0.16615186893332365
+0.10171149885506518 0.32635983263599055 0.10171149885506518 0.3263598326359905 0.1575673983051967
+0.1017114988550652 0.33054393305439306 0.10171149885506518 0.33054393305439306 0.16277272820897884
+0.10510188215023586 0.3242677824267935 0.10510188215023586 0.3242677824267935 0.15412335884139317
+0.10849226544541128 0.3221757322175979 0.10849226544541128 0.3221757322175978 0.15070079799406774
+0.07797881578888566 0.3535564853556491 0.07797881578888566 0.35355648535564915 0.19330468279420418
+0.07797881578888566 0.35774058577405915 0.07797881578888566 0.35774058577405915 0.1978432364219835
+0.0813691990840546 0.35146443514644404 0.0813691990840546 0.35146443514644404 0.19100981850195056
+0.08475958237922354 0.349372384937239 0.08475958237922354 0.349372384937239 0.18849442826183246
+0.0881499656743925 0.34309623430962377 0.0881499656743925 0.34309623430962377 0.18078654143347386
+0.08814996567439248 0.34728033472803393 0.08814996567439248 0.34728033472803393 0.18578021934842937
+0.09154034896956147 0.3410041841004186 0.09154034896956147 0.3410041841004186 0.1777827915761299
+0.09493073226473046 0.33891213389121333 0.09493073226473046 0.33891213389121333 0.17464496549619676
+0.06780766590337883 0.3723849372384942 0.06780766590337883 0.3723849372384942 0.2105474513633729
+0.07119804919854777 0.3702928870292892 0.07119804919854777 0.3702928870292892 0.20949551705362165
+0.07458843249371672 0.3640167364016742 0.07458843249371672 0.3640167364016742 0.2040295032585238
+0.07797881578888566 0.3619246861924692 0.07797881578888566 0.3619246861924692 0.20229047185986215
+0.07458843249371672 0.3682008368200842 0.07458843249371672 0.3682008368200842 0.20818131666684422
+0.06780766590337883 0.3765690376569042 0.06780766590337883 0.3765690376569042 0.2141957834749478
+0.06102689931304095 0.38912133891213446 0.06102689931304095 0.38912133891213446 0.22126132771740367
+0.06780766590337883 0.38075313807531425 0.06780766590337883 0.38075313807531425 0.217648226280053
+0.06441728260820989 0.38702928870292946 0.06441728260820989 0.38702928870292946 0.2211892433064906
+0.06780766590337883 0.38493723849372435 0.06780766590337883 0.38493723849372435 0.22088243156270718
+0.06102689931304095 0.39330543933054457 0.06102689931304095 0.39330543933054457 0.22395950458144362
+0.050855749427534125 0.41631799163179994 0.050855749427534125 0.4163179916318 0.2297272109990838
+0.05763651601787201 0.3995815899581597 0.05763651601787201 0.3995815899581597 0.22601019849352602
+0.06102689931304095 0.3974895397489546 0.06102689931304095 0.3974895397489546 0.2264220945791581
+0.054246132722703067 0.4058577405857748 0.054246132722703067 0.4058577405857748 0.22741488136734775
+0.05763651601787201 0.4037656903765698 0.05763651601787201 0.4037656903765698 0.22810925292411746
+0.054246132722703067 0.4100418410041849 0.054246132722703067 0.4100418410041849 0.22917828887672084
+0.054246132722703067 0.41422594142259495 0.054246132722703067 0.414225941422595 0.23071900109928703
+0.04746536613236518 0.43096234309623505 0.04746536613236518 0.43096234309623505 0.2317176952454064
+0.04746536613236518 0.43514644351464504 0.04746536613236518 0.43514644351464504 0.23239389669448082
+0.050855749427534125 0.42050209205020994 0.050855749427534125 0.42050209205021 0.23098407551726705
+0.050855749427534125 0.42468619246862 0.050855749427534125 0.42468619246862 0.23204329879345198
+0.050855749427534125 0.42887029288703005 0.050855749427534125 0.42887029288703005 0.23291530856174217
+0.04746536613236518 0.43933054393305504 0.04746536613236518 0.43933054393305504 0.2329204053722613
+0.04746536613236518 0.44351464435146504 0.04746536613236518 0.44351464435146504 0.23331209485332685
+0.04407498283719624 0.44979079497908003 0.04407498283719624 0.44979079497908003 0.23238317433496977
+0.04746536613236518 0.4476987447698751 0.04746536613236518 0.4476987447698751 0.23358470372561335
+0.04407498283719624 0.45397489539749014 0.04407498283719624 0.4539748953974901 0.23257566306114677
+0.04407498283719624 0.45815899581590025 0.04407498283719624 0.4581589958159002 0.2326883061173863
+0.04407498283719624 0.46234309623431036 0.04407498283719624 0.4623430962343104 0.23273626639972952
+0.2200923019972324 0.22823901391203105 0.22009230199723237 0.22823901391203102 0.10604844132931325
+0.24058691480869906 0.20003280739039486 0.24058691480869906 0.20003280739039483 0.1357395421649685
+0.238499347170965 0.20342363534464644 0.23849934717096496 0.20342363534464644 0.13193085046054712
+0.23641631760653056 0.20681432717156867 0.23641631760653056 0.20681432717156864 0.12816358071171094
+0.2343432772330111 0.21020298591359454 0.2343432772330111 0.21020298591359454 0.12446971352866286
+0.22327691269556518 0.22631666057896418 0.22327691269556518 0.22631666057896418 0.10820835052812779
+0.22651879409810866 0.22400933378428847 0.22651879409810863 0.2240093337842885 0.11093153431334171
+0.22848861963304232 0.22032149277267687 0.22848861963304232 0.22032149277267687 0.11425059957383209
+0.23228253186839753 0.21358626995245006 0.2322825318683975 0.21358626995245003 0.12087857728204225
+0.23033847353652337 0.21694755479589656 0.2303384735365234 0.21694755479589656 0.11748135631360594
+0.26150627615059624 0.17290954805361602 0.26150627615059624 0.17290954805361602 0.1694793264450848
+0.25941422594139113 0.17629993134878497 0.25941422594139113 0.17629993134878497 0.1660697301540142
+0.257322175732186 0.1796903146439539 0.257322175732186 0.1796903146439539 0.16252210833644976
+0.2552301255229809 0.18308069793912285 0.2552301255229809 0.18308069793912285 0.15884729547911433
+0.2531380753137758 0.1864710812342918 0.2531380753137758 0.1864710812342918 0.15505991725814802
+0.2510460251045707 0.18986146452946073 0.2510460251045707 0.18986146452946073 0.15117804908648902
+0.2489539748953656 0.19325184782462967 0.2489539748953656 0.19325184782462967 0.14722281487862157
+0.24686192468616044 0.19664223111979862 0.24686192468616044 0.19664223111979862 0.14321794173047134
+0.2447698744769554 0.20003261441496756 0.2447698744769554 0.20003261441496756 0.1391892848512943
+0.29288702928867294 0.13561533180675772 0.29288702928867294 0.1356153318067577 0.20878078857185353
+0.2907949790794678 0.13900571510192666 0.2907949790794678 0.13900571510192664 0.20661803422675964
+0.2887029288702626 0.14239609839709563 0.28870292887026267 0.14239609839709563 0.20441182191123766
+0.28661087866105744 0.14578648169226457 0.28661087866105744 0.14578648169226457 0.20214019035254993
+0.2803347280334421 0.14917686498743343 0.2803347280334421 0.14917686498743343 0.19465252103382083
+0.27824267782423706 0.15256724828260235 0.27824267782423706 0.15256724828260235 0.1921651986580795
+0.27615062761503195 0.1559576315777713 0.2761506276150319 0.1559576315777713 0.18956354975339015
+0.2740585774058269 0.15934801487294023 0.2740585774058269 0.15934801487294023 0.18683070810351377
+0.2719665271966218 0.16273839816810917 0.2719665271966218 0.16273839816810917 0.18395301575944492
+0.2698744769874167 0.1661287814632781 0.2698744769874167 0.1661287814632781 0.18092055147963274
+0.2677824267782116 0.16951916475844708 0.2677824267782116 0.16951916475844708 0.17772749907058305
+0.26569037656900646 0.17290954805361602 0.26569037656900646 0.17290954805361602 0.1743723612640027
+0.2845188284518523 0.1491768649874335 0.2845188284518523 0.14917686498743346 0.1997809063440611
+0.31380753138072404 0.11527303203574402 0.31380753138072404 0.11527303203574402 0.22942463302146462
+0.3117154811715189 0.11866341533091296 0.311715481171519 0.11866341533091296 0.22751668733956334
+0.3096234309623138 0.1220537986260819 0.3096234309623138 0.1220537986260819 0.2256176453561687
+0.30125523012549343 0.12883456521641978 0.30125523012549343 0.12883456521641978 0.21757060978030787
+0.30753138075310876 0.12544418192125084 0.30753138075310876 0.12544418192125084 0.22372709080058198
+0.30543933054390365 0.12883456521641978 0.30543933054390365 0.12883456521641978 0.22183878397795206
+0.2991631799162883 0.13222494851158875 0.2991631799162883 0.13222494851158875 0.21554716332340876
+0.29707112970708316 0.1356153318067577 0.29707112970708316 0.1356153318067577 0.21350818907787253
+0.3451882845188007 0.09154034896956142 0.34518828451880074 0.09154034896956142 0.24815606309462782
+0.34309623430959557 0.09493073226473037 0.34309623430959557 0.09493073226473037 0.24738223663884717
+0.34100418410039046 0.09832111555989931 0.3410041841003904 0.09832111555989931 0.24647312923390438
+0.33891213389118535 0.10171149885506825 0.33891213389118535 0.10171149885506825 0.24545964497390535
+0.33682008368198024 0.10510188215023719 0.3368200836819803 0.10510188215023719 0.24437031883007895
+0.33472803347277513 0.10849226544540613 0.33472803347277513 0.10849226544540613 0.24323008758566675
+0.32008368200833937 0.11188264874057507 0.3200836820083394 0.11188264874057507 0.2345339023634776
+0.3242677824267496 0.11188264874057507 0.32426778242674953 0.11188264874057507 0.23739349580302993
+0.3284518828451598 0.11188264874057507 0.32845188284515986 0.11188264874057507 0.23990390022308952
+0.33263598326357 0.11188264874057507 0.33263598326356997 0.11188264874057507 0.2420592289972252
+0.31799163179913426 0.11527303203574402 0.31799163179913426 0.11527303203574402 0.23279331762859848
+0.351464435146416 0.08814996567439248 0.351464435146416 0.08814996567439248 0.24925586350311546
+0.3493723849372109 0.09154034896956142 0.34937238493721084 0.09154034896956142 0.24882496922577316
+0.35564853556482623 0.08814996567439248 0.35564853556482623 0.08814996567439248 0.2493930758569051
+0.38493723849369776 0.06780766590337883 0.38493723849369776 0.06780766590337883 0.23988818348568278
+0.38284518828449265 0.07119804919854777 0.3828451882844926 0.07119804919854777 0.24162773639709093
+0.38075313807528754 0.07458843249371672 0.38075313807528754 0.07458843249371672 0.24309795591120587
+0.37866108786608244 0.07797881578888566 0.3786610878660825 0.07797881578888566 0.24430986675678054
+0.3765690376568773 0.0813691990840546 0.3765690376568773 0.0813691990840546 0.24528079470531758
+0.35983263598323645 0.08814996567439248 0.35983263598323645 0.08814996567439248 0.24918318651850332
+0.36401673640164667 0.08814996567439248 0.36401673640164667 0.08814996567439248 0.24863761505369128
+0.370292887029262 0.08475958237922354 0.37029288702926205 0.08475958237922354 0.2473599514715444
+0.3744769874476722 0.08475958237922354 0.37447698744767216 0.08475958237922354 0.24603346053994593
+0.3682008368200569 0.08814996567439248 0.3682008368200569 0.08814996567439248 0.24776983418429507
+0.40585774058574886 0.06102689931304095 0.40585774058574886 0.06102689931304095 0.22439940172670367
+0.3912133891213131 0.06441728260820989 0.39121338912131304 0.06441728260820989 0.23552840385630533
+0.3953974895397233 0.06441728260820989 0.39539748953972337 0.06441728260820989 0.23293519785321956
+0.39958158995813353 0.06441728260820989 0.3995815899581335 0.06441728260820989 0.230109014842961
+0.40376569037654375 0.06441728260820989 0.4037656903765438 0.06441728260820989 0.2270626575775089
+0.389121338912108 0.06780766590337883 0.389121338912108 0.06780766590337883 0.2376471367001254
+0.42677824267779996 0.054246132722703067 0.4267782426778 0.054246132722703067 0.2031892209650282
+0.4121338912133642 0.05763651601787201 0.41213389121336425 0.05763651601787201 0.21806885947254365
+0.4163179916317744 0.05763651601787201 0.41631799163177435 0.05763651601787201 0.21444394825542698
+0.42050209205018463 0.05763651601787201 0.4205020920501847 0.05763651601787201 0.21063088108481565
+0.42468619246859485 0.05763651601787201 0.4246861924685948 0.05763651601787201 0.20663613204666412
+0.4100418410041591 0.06102689931304095 0.41004184100415914 0.06102689931304095 0.22105544749523257
+0.4330543933054153 0.050855749427534125 0.43305439330541523 0.050855749427534125 0.19522349089892935
+0.4372384937238255 0.050855749427534125 0.43723849372382556 0.050855749427534125 0.1907109430650169
+0.4414225941422357 0.050855749427534125 0.44142259414223567 0.050855749427534125 0.18602156354318847
+0.4309623430962102 0.054246132722703067 0.4309623430962102 0.054246132722703067 0.19893440656244252
+0.46443514644349193 0.03390383295168942 0.46443514644349193 0.03390383295168942 0.14880087480253126
+0.4581589958158766 0.03729421624685836 0.45815899581587655 0.03729421624685836 0.1588367872554822
+0.4623430962342868 0.03729421624685836 0.4623430962342869 0.03729421624685836 0.15327688926144176
+0.44560669456064594 0.050855749427534125 0.445606694560646 0.050855749427534125 0.18115460957139443
+0.4560669456066715 0.0406845995420273 0.4560669456066715 0.0406845995420273 0.16324226111338117
+0.4539748953974664 0.04407498283719624 0.45397489539746644 0.04407498283719624 0.16761410921006412
+0.4518828451882613 0.04746536613236518 0.4518828451882612 0.04746536613236518 0.17191461114752704
+0.44979079497905616 0.050855749427534125 0.4497907949790561 0.050855749427534125 0.17610787447306156
+0.46861924686190215 0.03390383295168942 0.4686192468619021 0.03390383295168942 0.1429743983875176
+0.47280334728031237 0.03390383295168942 0.47280334728031237 0.03390383295168942 0.13695333270413146
+0.4790794979079277 0.030513449656520475 0.47907949790792775 0.030513449656520475 0.12608945407766067
+0.4769874476987226 0.03390383295168942 0.47698744769872264 0.03390383295168942 0.13073455631233688
+0.4832635983263379 0.030513449656520475 0.48326359832633786 0.030513449656520475 0.11960455588588055
+0.48953974895395325 0.027123066361351533 0.48953974895395325 0.027123066361351533 0.10823525285456691
+0.48744769874474814 0.030513449656520475 0.4874476987447482 0.030513449656520475 0.11292031438474127
+0.4958158995815686 0.02373268306618259 0.49581589958156863 0.02373268306618259 0.09667174006775713
+0.49372384937236347 0.027123066361351533 0.4937238493723635 0.027123066361351533 0.10129842597185847
+0.5104602510460043 0.006780766590337883 0.5104602510460045 0.006780766590337883 0.06808835765961731
+0.5083682008367992 0.010171149885506825 0.5083682008367992 0.010171149885506825 0.07211798435272153
+0.5062761506275941 0.013561533180675767 0.5062761506275941 0.013561533180675767 0.07626642575550201
+0.504184100418389 0.01695191647584471 0.504184100418389 0.01695191647584471 0.08054368871234881
+0.5020920502091839 0.02034229977101365 0.5020920502091838 0.02034229977101365 0.08495468347170176
+0.4999999999999788 0.02373268306618259 0.49999999999997874 0.02373268306618259 0.08949847198578886
+0.006780766590337714 0.5146443514644359 0.006780766590337714 0.5146443514644359 0.22639842856052583
+0.010171149885506579 0.5125523012552309 0.010171149885506577 0.5125523012552309 0.22661350478071965
+0.013561533180675522 0.5062761506276159 0.013561533180675522 0.5062761506276159 0.22696577583809077
+0.01695191647584446 0.5041841004184109 0.01695191647584446 0.5041841004184109 0.22728425453909898
+0.020342299771013435 0.502092050209206 0.02034229977101343 0.502092050209206 0.22767825577064235
+0.01356153318067545 0.5104602510460259 0.01356153318067545 0.5104602510460259 0.22688960475948208
+0.03390383295168942 0.4811715481171558 0.03390383295168942 0.48117154811715585 0.22997380859355787
+0.03390383295168941 0.48535564853556584 0.03390383295168941 0.48535564853556584 0.22999810651706487
+0.03729421624685836 0.4790794979079508 0.03729421624685836 0.47907949790795085 0.23079326424825578
+0.04068459954202729 0.4769874476987458 0.04068459954202729 0.47698744769874585 0.23168464353048077
+0.04407498283719624 0.46652719665272047 0.04407498283719624 0.46652719665272047 0.23273421715370465
+0.04407498283719624 0.4707112970711306 0.04407498283719624 0.4707112970711305 0.2326960729144103
+0.04407498283719624 0.4748953974895407 0.04407498283719624 0.47489539748954074 0.2326347398441442
+0.023732683066182498 0.4958158995815909 0.023732683066182498 0.4958158995815909 0.22813839300307667
+0.027123066361351464 0.4937238493723859 0.027123066361351467 0.4937238493723859 0.22868278789135835
+0.030513449656520447 0.4916317991631809 0.030513449656520447 0.4916317991631809 0.22930864671211929
+0.0339038329516894 0.4895397489539759 0.03390383295168941 0.4895397489539759 0.230010755347861
+0.023732683066182397 0.500000000000001 0.023732683066182397 0.500000000000001 0.2281502595881473
+0.1966422308635606 0.24686192482139868 0.1966422308635606 0.24686192482139865 0.09621616561309033
+0.20003261323764562 0.24476981009915533 0.20003261323764562 0.24476981009915533 0.09657494527966341
+0.22020455927985796 0.2323171372419601 0.22020455927985796 0.2323171372419601 0.1036990932005646
+0.20342286626178585 0.24267684988039875 0.20342286626178585 0.24267684988039875 0.09713495842686344
+0.20681215776975445 0.24057987831466485 0.20681215776975445 0.24057987831466485 0.09792407613032907
+0.21019856481749546 0.23847920037595072 0.21019856481749546 0.23847920037595075 0.09896750367177047
+0.21356512196737754 0.23639654281379574 0.21356512196737754 0.23639654281379574 0.10027462630611883
+0.216901531398367 0.2343374781276012 0.21690153139836701 0.23433747812760117 0.10185339185521204
+0.14917686498600102 0.28451882845269016 0.14917686498600102 0.2845188284526902 0.10724760498241066
+0.1525672482801209 0.28242677824390405 0.1525672482801209 0.28242677824390405 0.10587967268693792
+0.15595763157372883 0.28033472803447185 0.1559576315737288 0.28033472803447185 0.10461006797355167
+0.15934801486324807 0.27405857740484757 0.15934801486324804 0.27405857740484757 0.10126184344045906
+0.16273839815195199 0.2719665271987677 0.16273839815195199 0.2719665271987677 0.10038623158189848
+0.1593480148664379 0.27824267782424295 0.1593480148664379 0.278242677824243 0.10342254947875584
+0.1661287814379184 0.26987447699486783 0.1661287814379184 0.26987447699486783 0.09957370088531327
+0.16951916472908427 0.267782426794586 0.16951916472908427 0.267782426794586 0.09881644169072674
+0.19664223077434947 0.2510460253294398 0.19664223077434947 0.2510460253294398 0.09532094159488642
+0.19325184752797311 0.25313807545536166 0.19325184752797311 0.25313807545536166 0.09537141183634242
+0.18986146433631804 0.25523012560047303 0.18986146433631804 0.25523012560047303 0.09557533054685576
+0.172909548016836 0.26569037659490025 0.172909548016836 0.2656903765949003 0.09811109281736481
+0.1762999313084351 0.26359832639151454 0.1762999313084351 0.26359832639151454 0.0974590034385454
+0.1796903145892408 0.2615062761838515 0.1796903145892408 0.2615062761838515 0.09686632164313112
+0.18308069786128175 0.2594142259703914 0.18308069786128175 0.2594142259703914 0.09634391420647959
+0.18647108111053864 0.2573221757703678 0.18647108111053864 0.2573221757703678 0.09590711923652895
+0.12883456521582848 0.30125523012590644 0.12883456521582848 0.30125523012590644 0.1226947189640981
+0.13222494851095107 0.2991631799169416 0.13222494851095104 0.2991631799169416 0.1202564834212304
+0.13561533180604274 0.2970711297079303 0.1356153318060427 0.2970711297079303 0.11799005310651767
+0.13900571510121193 0.2949790794988019 0.13900571510121193 0.2949790794988019 0.11588747746376131
+0.14239609839629222 0.29288702928958915 0.14239609839629222 0.29288702928958915 0.11393706104346162
+0.14578648169120068 0.2907949790802306 0.14578648169120068 0.2907949790802306 0.11212432925616624
+0.1491768649855147 0.2887029288711073 0.14917686498551472 0.2887029288711073 0.11043310028758535
+0.11188264874059363 0.3200836820083974 0.11188264874059363 0.3200836820083974 0.14732858828727002
+0.11527303203578139 0.31799163179918105 0.11527303203578139 0.31799163179918105 0.1440323957081139
+0.11866341533089557 0.31171548117144454 0.11866341533089557 0.3117154811714445 0.13581772735150657
+0.12205379862596745 0.30962343096221157 0.12205379862596745 0.3096234309622115 0.13279630134623366
+0.11866341533096486 0.3158995815899364 0.11866341533096487 0.3158995815899364 0.14083398072557743
+0.1254441819209488 0.3075313807530357 0.12544418192094883 0.3075313807530357 0.12992192434112373
+0.12883456521580805 0.3054393305439045 0.12883456521580805 0.3054393305439045 0.12720190608000545
+0.0983211155598993 0.3368200836820076 0.0983211155598993 0.3368200836820076 0.17140336795587222
+0.10171149885506763 0.33472803347280133 0.10171149885506763 0.33472803347280133 0.16808885357740352
+0.1051018821502318 0.3284518828451917 0.10510188215023182 0.3284518828451917 0.15936755063504204
+0.10510188215023479 0.3326359832635952 0.10510188215023479 0.3326359832635952 0.16473191925147213
+0.10849226544539914 0.32635983263599594 0.10849226544539914 0.32635983263599594 0.15596659159547777
+0.11188264874057052 0.3242677824268068 0.11188264874057052 0.3242677824268068 0.15259785949572338
+0.0813691990840546 0.3556485355648541 0.0813691990840546 0.35564853556485415 0.19569918349577883
+0.0813691990840546 0.35983263598326415 0.0813691990840546 0.35983263598326415 0.2003030037775484
+0.08475958237922354 0.3535564853556491 0.08475958237922354 0.35355648535564915 0.1933273978131479
+0.08814996567439248 0.35146443514644404 0.08814996567439248 0.35146443514644404 0.19074787832890083
+0.09154034896956142 0.3451882845188288 0.09154034896956142 0.3451882845188288 0.18289212865590118
+0.09154034896956142 0.349372384937239 0.09154034896956142 0.349372384937239 0.1879839287942501
+0.09493073226473044 0.34309623430962377 0.09493073226473044 0.34309623430962377 0.1798575064638752
+0.09832111555989952 0.3410041841004186 0.09832111555989952 0.3410041841004186 0.1767052548626652
+0.07119804919854777 0.3744769874476992 0.07119804919854777 0.3744769874476992 0.213311247272879
+0.07458843249371672 0.3723849372384942 0.07458843249371672 0.3723849372384942 0.21216511757196774
+0.07797881578888566 0.3661087866108792 0.07797881578888566 0.3661087866108792 0.20660717231824413
+0.0813691990840546 0.3640167364016742 0.0813691990840546 0.3640167364016742 0.20478067158594906
+0.07797881578888566 0.3702928870292892 0.07797881578888566 0.3702928870292892 0.21075789757668775
+0.07119804919854777 0.37866108786610925 0.07119804919854777 0.37866108786610925 0.21692964594112044
+0.06441728260820989 0.39121338912133957 0.06441728260820989 0.39121338912133957 0.2240339607115163
+0.07119804919854777 0.38284518828451936 0.07119804919854777 0.38284518828451936 0.22032681119431816
+0.06780766590337883 0.38912133891213446 0.06780766590337883 0.38912133891213446 0.22388038719551662
+0.07119804919854777 0.38702928870292946 0.07119804919854777 0.38702928870292946 0.22348327744082863
+0.06441728260820989 0.3953974895397496 0.06441728260820989 0.3953974895397496 0.2266355180975421
+0.054246132722703067 0.41841004184100494 0.054246132722703067 0.418410041841005 0.23204210274373827
+0.06102689931304095 0.4016736401673647 0.06102689931304095 0.4016736401673647 0.22864210332609738
+0.06441728260820989 0.3995815899581597 0.06441728260820989 0.3995815899581597 0.2289857596397936
+0.05763651601787201 0.4079497907949799 0.05763651601787201 0.4079497907949799 0.22997291305963038
+0.06102689931304095 0.4058577405857748 0.06102689931304095 0.4058577405857748 0.2306164097817807
+0.05763651601787201 0.4121338912133899 0.05763651601787201 0.4121338912133899 0.23160250321952522
+0.05763651601787201 0.41631799163179994 0.05763651601787201 0.4163179916318 0.23300262382350098
+0.050855749427534125 0.43305439330544004 0.050855749427534125 0.43305439330544004 0.23361255436590267
+0.050855749427534125 0.43723849372385004 0.050855749427534125 0.43723849372385004 0.23414918267733412
+0.054246132722703067 0.422594142259415 0.054246132722703067 0.422594142259415 0.23315549663600668
+0.054246132722703067 0.42677824267782505 0.054246132722703067 0.42677824267782505 0.23406961006807495
+0.054246132722703067 0.43096234309623505 0.054246132722703067 0.43096234309623505 0.23479707922833357
+0.050855749427534125 0.44142259414226004 0.050855749427534125 0.44142259414226004 0.23454070177633193
+0.050855749427534125 0.44560669456067004 0.050855749427534125 0.44560669456067004 0.2348036409380954
+0.04746536613236518 0.45188284518828514 0.04746536613236518 0.4518828451882851 0.23375450720783872
+0.050855749427534125 0.44979079497908003 0.050855749427534125 0.44979079497908003 0.23495520830589509
+0.04746536613236518 0.45606694560669525 0.04746536613236518 0.4560669456066952 0.23383799305094935
+0.04746536613236518 0.46025104602510536 0.04746536613236518 0.4602510460251054 0.2338515456294674
+0.04746536613236518 0.46443514644351547 0.04746536613236518 0.46443514644351547 0.23381114194750216
+0.22346204086152557 0.23034642494600718 0.22346204086152557 0.23034642494600718 0.10580111949246467
+0.24267956594891701 0.20342314834617492 0.24267956594891701 0.2034231483461749 0.13516561959184947
+0.24059138236150976 0.20681353039946634 0.24059138236150976 0.20681353039946634 0.1311757711047716
+0.23850911909007036 0.2102028534933512 0.23850911909007036 0.2102028534933512 0.1272518993697547
+0.23643196531632232 0.21358949094748364 0.2364319653163223 0.2135894909474836 0.12342316353127179
+0.22668581514055874 0.2283515476165711 0.22668581514055877 0.2283515476165711 0.10820808512752157
+0.22946269595975977 0.22658182567030408 0.2294626959597598 0.2265818256703041 0.11050362017294224
+0.2305873190725795 0.22364111391732266 0.23058731907257954 0.22364111391732266 0.1130258719393037
+0.2324826080042264 0.22031393591249726 0.2324826080042264 0.22031393591249726 0.11629372388800252
+0.23440548786276835 0.216964374320322 0.23440548786276835 0.216964374320322 0.11975061685487433
+0.26359832635980135 0.17629993134878497 0.26359832635980135 0.17629993134878497 0.17085802987275175
+0.26150627615059624 0.1796903146439539 0.26150627615059624 0.1796903146439539 0.1671917263993428
+0.25941422594139113 0.18308069793912285 0.25941422594139113 0.18308069793912285 0.16338482930236442
+0.257322175732186 0.1864710812342918 0.257322175732186 0.1864710812342918 0.15945260505555917
+0.2552301255229809 0.18986146452946073 0.2552301255229809 0.18986146452946073 0.15541386022439221
+0.2531380753137758 0.19325184782462967 0.2531380753137758 0.19325184782462967 0.15129053123812256
+0.2510460251045707 0.19664223111979862 0.2510460251045707 0.19664223111979862 0.1471072275046876
+0.2489539748953656 0.20003261441496756 0.2489539748953656 0.20003261441496756 0.14289074211069883
+0.24686192468616044 0.2034229977101365 0.24686192468616044 0.2034229977101365 0.13866954249278332
+0.294979079497878 0.1390057151019267 0.294979079497878 0.1390057151019267 0.21143495180663177
+0.29288702928867294 0.14239609839709563 0.29288702928867294 0.14239609839709563 0.209306252609323
+0.2907949790794677 0.1457864816922646 0.2907949790794677 0.1457864816922646 0.2070995586415714
+0.28870292887026255 0.14917686498743354 0.28870292887026255 0.14917686498743354 0.20479213023717754
+0.2824267782426472 0.1525672482826024 0.2824267782426472 0.1525672482826024 0.1973125305827856
+0.28033472803344206 0.15595763157777134 0.28033472803344206 0.15595763157777134 0.1947153869002681
+0.278242677824237 0.15934801487294026 0.278242677824237 0.15934801487294026 0.19197240332609014
+0.2761506276150319 0.16273839816810914 0.2761506276150319 0.16273839816810917 0.18906980448185814
+0.2740585774058269 0.16612878146327809 0.2740585774058269 0.1661287814632781 0.18599764497064372
+0.2719665271966219 0.16951916475844706 0.2719665271966219 0.16951916475844706 0.1827501820842772
+0.26987447698741684 0.17290954805361602 0.26987447698741684 0.17290954805361602 0.1793260930193581
+0.2677824267782117 0.176299931348785 0.2677824267782117 0.176299931348785 0.17572854686236192
+0.2866108786610574 0.15256724828260249 0.28661087866105733 0.15256724828260249 0.20236209352438164
+0.31589958158992915 0.11866341533091296 0.3158995815899291 0.11866341533091296 0.23105143704620154
+0.31380753138072404 0.1220537986260819 0.31380753138072404 0.1220537986260819 0.2293131522489281
+0.3117154811715189 0.12544418192125084 0.311715481171519 0.12544418192125084 0.22757721408392165
+0.30334728033469854 0.13222494851158872 0.30334728033469854 0.13222494851158872 0.21994122408583713
+0.3096234309623138 0.12883456521641978 0.3096234309623138 0.12883456521641978 0.22583653800369
+0.30753138075310876 0.13222494851158872 0.30753138075310876 0.13222494851158872 0.2240787787195255
+0.30125523012549343 0.1356153318067577 0.30125523012549343 0.1356153318067577 0.2180184399125639
+0.2991631799162883 0.13900571510192664 0.2991631799162883 0.13900571510192664 0.21605095698937715
+0.3472803347280058 0.09493073226473037 0.3472803347280058 0.09493073226473037 0.24823103061432608
+0.3451882845188007 0.09832111555989931 0.34518828451880074 0.09832111555989931 0.24750569735052677
+0.34309623430959557 0.10171149885506825 0.34309623430959557 0.10171149885506825 0.24667953890270908
+0.34100418410039046 0.10510188215023719 0.3410041841003904 0.10510188215023719 0.2457806904819799
+0.33891213389118535 0.10849226544540613 0.33891213389118535 0.10849226544540613 0.24483360916022676
+0.33682008368198024 0.11188264874057507 0.3368200836819803 0.11188264874057507 0.2438580013350242
+0.3221757322175445 0.11527303203574402 0.3221757322175445 0.11527303203574402 0.23583091770810324
+0.3263598326359547 0.11527303203574402 0.3263598326359547 0.11527303203574402 0.23852614985781165
+0.3305439330543649 0.11527303203574402 0.3305439330543649 0.11527303203574402 0.2408725239402645
+0.33472803347277513 0.11527303203574402 0.33472803347277513 0.11527303203574402 0.24286797773900845
+0.32008368200833937 0.11866341533091296 0.3200836820083394 0.11866341533091296 0.2342638051248109
+0.3535564853556211 0.09154034896956142 0.3535564853556212 0.09154034896956142 0.24913501316085118
+0.351464435146416 0.09493073226473037 0.351464435146416 0.09493073226473037 0.24871899422419666
+0.35774058577403134 0.09154034896956142 0.3577405857740313 0.09154034896956142 0.24909478974645918
+0.3870292887029029 0.07119804919854777 0.38702928870290293 0.07119804919854777 0.23949860605150844
+0.38493723849369776 0.07458843249371672 0.38493723849369776 0.07458843249371672 0.2410871724235151
+0.38284518828449265 0.07797881578888566 0.3828451882844926 0.07797881578888566 0.2424241946128123
+0.38075313807528754 0.0813691990840546 0.38075313807528754 0.0813691990840546 0.24352735603804485
+0.37866108786608244 0.08475958237922354 0.3786610878660825 0.08475958237922354 0.24441975897279952
+0.36192468619244156 0.09154034896956142 0.3619246861924416 0.09154034896956142 0.24871553297624674
+0.3661087866108518 0.09154034896956142 0.3661087866108517 0.09154034896956142 0.24801061518439074
+0.3723849372384671 0.08814996567439248 0.3723849372384671 0.08814996567439248 0.24659487093689939
+0.3765690376568773 0.08814996567439248 0.3765690376568773 0.08814996567439248 0.2451288078013961
+0.370292887029262 0.09154034896956142 0.37029288702926205 0.09154034896956142 0.24699503610298254
+0.40794979079495397 0.06441728260820989 0.4079497907949539 0.06441728260820989 0.2238080460402694
+0.3933054393305182 0.06780766590337883 0.3933054393305182 0.06780766590337883 0.23515578962149555
+0.3974895397489284 0.06780766590337883 0.3974895397489284 0.06780766590337883 0.23242820812315826
+0.40167364016733864 0.06780766590337883 0.4016736401673386 0.06780766590337883 0.22947791005913357
+0.40585774058574886 0.06780766590337883 0.40585774058574886 0.06780766590337883 0.22631754034894766
+0.3912133891213131 0.07119804919854777 0.39121338912131304 0.07119804919854777 0.23711509941504127
+0.42887029288700507 0.05763651601787201 0.4288702928870051 0.05763651601787201 0.20246455691906864
+0.4142259414225693 0.06102689931304095 0.4142259414225693 0.06102689931304095 0.21751481749438395
+0.4184100418409795 0.06102689931304095 0.41841004184097946 0.06102689931304095 0.21378617567787497
+0.42259414225938974 0.06102689931304095 0.42259414225938974 0.06102689931304095 0.20987664008556697
+0.42677824267779996 0.06102689931304095 0.4267782426778 0.06102689931304095 0.2057916420727314
+0.4121338912133642 0.06441728260820989 0.41213389121336425 0.06441728260820989 0.22035594322366894
+0.4351464435146204 0.054246132722703067 0.43514644351462034 0.054246132722703067 0.19450396182030952
+0.4393305439330306 0.054246132722703067 0.4393305439330306 0.054246132722703067 0.1898989455435565
+0.44351464435144083 0.054246132722703067 0.4435146443514409 0.054246132722703067 0.18511877907897747
+0.4330543933054153 0.05763651601787201 0.43305439330541523 0.05763651601787201 0.198119307905831
+0.46652719665269704 0.03729421624685836 0.466527196652697 0.03729421624685836 0.1475250250801898
+0.4602510460250817 0.0406845995420273 0.46025104602508177 0.0406845995420273 0.1577597890710856
+0.46443514644349193 0.0406845995420273 0.46443514644349193 0.0406845995420273 0.15208553885634066
+0.44769874476985105 0.054246132722703067 0.44769874476985105 0.054246132722703067 0.18016129414531398
+0.4581589958158766 0.04407498283719624 0.45815899581587655 0.04407498283719624 0.16221216648985973
+0.4560669456066715 0.04746536613236518 0.4560669456066715 0.04746536613236518 0.1665967149349191
+0.4539748953974664 0.050855749427534125 0.45397489539746644 0.050855749427534125 0.17087777947437324
+0.4518828451882613 0.054246132722703067 0.4518828451882612 0.054246132722703067 0.17502281882115725
+0.47071129707110726 0.03729421624685836 0.4707112970711073 0.03729421624685836 0.14157756864925422
+0.4748953974895175 0.03729421624685836 0.4748953974895174 0.03729421624685836 0.13543055302303542
+0.4811715481171328 0.03390383295168942 0.4811715481171328 0.03390383295168942 0.1243149378915721
+0.4790794979079277 0.03729421624685836 0.47907949790792775 0.03729421624685836 0.12907987289971568
+0.485355648535543 0.03390383295168942 0.48535564853554297 0.03390383295168942 0.11769155142108699
+0.49163179916315836 0.030513449656520475 0.4916317991631583 0.030513449656520475 0.1060354656769119
+0.48953974895395325 0.03390383295168942 0.48953974895395325 0.03390383295168942 0.11086190623958447
+0.4979079497907737 0.027123066361351533 0.4979079497907737 0.027123066361351533 0.09416788820948252
+0.4958158995815686 0.030513449656520475 0.49581589958156863 0.030513449656520475 0.0989495425943455
+0.5146443514644146 0.006780766590337883 0.5146443514644146 0.006780766590337883 0.060539680024373134
+0.5125523012552095 0.010171149885506825 0.5125523012552095 0.010171149885506825 0.06461492921060048
+0.5104602510460043 0.013561533180675767 0.5104602510460045 0.013561533180675767 0.06880476613407033
+0.5083682008367992 0.01695191647584471 0.5083682008367992 0.01695191647584471 0.0731196421650742
+0.5062761506275941 0.02034229977101365 0.5062761506275941 0.02034229977101365 0.07756544400965641
+0.504184100418389 0.02373268306618259 0.504184100418389 0.02373268306618259 0.08214262774494584
+0.5020920502091839 0.027123066361351533 0.5020920502091838 0.027123066361351533 0.0868457107659741
+0.00678076659033771 0.5188284518828459 0.00678076659033771 0.5188284518828459 0.22621689562358774
+0.010171149885506565 0.5167364016736409 0.010171149885506563 0.5167364016736409 0.226464223803964
+0.013561533180675423 0.5146443514644359 0.013561533180675421 0.5146443514644359 0.22677242547556717
+0.01695191647584434 0.5083682008368209 0.016951916475844344 0.5083682008368209 0.227233665890234
+0.02034229977101326 0.506276150627616 0.02034229977101326 0.506276150627616 0.22764977317074522
+0.02373268306618224 0.504184100418411 0.02373268306618224 0.504184100418411 0.22813914246204928
+0.01695191647584428 0.5125523012552309 0.01695191647584428 0.5125523012552309 0.22714716993361508
+0.006780766590337709 0.5230125523012559 0.006780766590337709 0.5230125523012559 0.22598247935703838
+0.03729421624685835 0.48326359832636084 0.03729421624685835 0.48326359832636084 0.23079109378724158
+0.037294216246858344 0.48744769874477084 0.03729421624685835 0.48744769874477084 0.2307814185074233
+0.04068459954202728 0.48117154811715585 0.04068459954202728 0.48117154811715585 0.23164974784661987
+0.04407498283719622 0.4790794979079508 0.04407498283719622 0.47907949790795085 0.23256188832807867
+0.04746536613236518 0.4686192468619256 0.04746536613236518 0.4686192468619255 0.23373206308470976
+0.04746536613236518 0.4728033472803357 0.04746536613236518 0.47280334728033574 0.23362862438628576
+0.04746536613236517 0.4769874476987458 0.047465366132365176 0.47698744769874585 0.2335139274564174
+0.027123066361351384 0.49790794979079606 0.027123066361351384 0.49790794979079606 0.22869984807354152
+0.030513449656520367 0.49581589958159106 0.030513449656520367 0.49581589958159106 0.22932384736917802
+0.03390383295168938 0.49372384937238606 0.03390383295168938 0.49372384937238606 0.2300165832891692
+0.03729421624685834 0.49163179916318095 0.03729421624685834 0.49163179916318095 0.23077023616843959
+0.027123066361351235 0.5020920502092061 0.02712306636135123 0.502092050209206 0.2287002217524556
+0.20003261398590555 0.24895397518485265 0.20003261398590552 0.24895397518485265 0.09545129747230235
+0.20342299699654423 0.2468618723900027 0.20342299699654423 0.2468618723900027 0.09579061778303222
+0.22358557732931592 0.2344360389234179 0.22358557732931592 0.2344360389234179 0.10346437686148117
+0.22028957978750285 0.236439058265286 0.22028957978750285 0.236439058265286 0.10147127109933252
+0.20681321191951021 0.2447677960168011 0.20681321191951021 0.2447677960168011 0.09636725509590936
+0.21020210329742953 0.24267062559285643 0.21020210329742953 0.24267062559285643 0.09720799650311324
+0.2135876870759034 0.2405727241274989 0.2135876870759034 0.2405727241274989 0.0983351650803058
+0.21694660401796598 0.2384986538842329 0.21694660401796598 0.2384986538842329 0.09975159399306176
+0.15256724827906146 0.2866108786625731 0.15256724827906146 0.2866108786625731 0.10884659849225953
+0.1559576315724059 0.28451882845456666 0.1559576315724059 0.2845188284545666 0.10734854812806559
+0.1593480148663357 0.2824267782463997 0.15934801486633574 0.2824267782463998 0.10592419537899382
+0.16273839815650173 0.27615062761339915 0.16273839815650173 0.27615062761339915 0.10230337993032469
+0.16612878144376952 0.274058577404864 0.16612878144376952 0.274058577404864 0.10124211378268368
+0.1627383981587583 0.2803347280370681 0.16273839815875826 0.2803347280370681 0.10456121890497898
+0.16951916472665463 0.27196652720156606 0.16951916472665463 0.27196652720156606 0.10023221816382884
+0.17290954800419087 0.2698744770025337 0.17290954800419087 0.2698744770025337 0.09927152257497406
+0.20003261381819548 0.2531380755928039 0.2000326138181955 0.2531380755928039 0.09460275381280926
+0.19664223073125875 0.255230125675953 0.19664223073125875 0.255230125675953 0.09470981256050019
+0.19325184757675276 0.2573221758050928 0.19325184757675276 0.2573221758050928 0.09500397095511881
+0.1898614643745656 0.25941422599444114 0.1898614643745656 0.25941422599444114 0.09545661808538643
+0.17629993129155855 0.2677824268104129 0.17629993129155855 0.2677824268104129 0.0983624983662147
+0.17969031457225682 0.2656903766192596 0.17969031457225682 0.2656903766192596 0.09751237073980089
+0.18308069786019568 0.2635983264204796 0.18308069786019568 0.2635983264204796 0.09673306479032213
+0.186471081126399 0.26150627621313793 0.186471081126399 0.26150627621313793 0.0960409841846876
+0.13222494851078145 0.3033472803350672 0.13222494851078145 0.3033472803350672 0.12463839065205741
+0.13561533180564087 0.3012552301262555 0.13561533180564087 0.3012552301262555 0.12222867791139747
+0.13900571510072177 0.29916317991748653 0.13900571510072177 0.29916317991748653 0.11996577828913364
+0.14239609839572637 0.29707112970861643 0.1423960983957264 0.29707112970861643 0.11783916978548402
+0.14578648169087602 0.29497907949951474 0.14578648169087602 0.2949790794995147 0.1158357113332412
+0.14917686498555932 0.292887029289982 0.14917686498555935 0.29288702928998195 0.11394065725031399
+0.15256724827936669 0.2907949790810857 0.1525672482793667 0.2907949790810857 0.11213871424605448
+0.11527303203575094 0.3221757322176213 0.11527303203575094 0.3221757322176213 0.14928633220854415
+0.11866341533094467 0.32008368200842796 0.11866341533094467 0.3200836820084279 0.14605328657758332
+0.12205379862612259 0.3138075313806588 0.12205379862612258 0.3138075313806588 0.13775064933877199
+0.12544418192121956 0.31171548117136544 0.12544418192121956 0.31171548117136544 0.13479488886478555
+0.12205379862614939 0.3179916317992056 0.12205379862614939 0.3179916317992056 0.14291577542956466
+0.12883456521620554 0.3096234309621102 0.12883456521620554 0.3096234309621102 0.13197421622356564
+0.13222494851101865 0.3075313807529646 0.13222494851101865 0.30753138075296466 0.1292912554398837
+0.10171149885506862 0.3389121338912129 0.10171149885506862 0.3389121338912129 0.17346494081558775
+0.10510188215023746 0.3368200836820063 0.10510188215023746 0.3368200836820063 0.17016590630494663
+0.1084922654454002 0.33054393305439117 0.10849226544540018 0.33054393305439117 0.16136181667031754
+0.10849226544540534 0.33472803347279867 0.10849226544540534 0.33472803347279867 0.16683640080489448
+0.11188264874056404 0.32845188284519267 0.11188264874056404 0.3284518828451927 0.15800571353089032
+0.11527303203572886 0.32635983263600504 0.11527303203572888 0.32635983263600504 0.1546879346378731
+0.08475958237922354 0.35774058577405915 0.08475958237922354 0.35774058577405915 0.19808125837973442
+0.08475958237922354 0.3619246861924692 0.08475958237922354 0.3619246861924692 0.20271416091815755
+0.08814996567439248 0.3556485355648541 0.08814996567439248 0.35564853556485415 0.1956434923752239
+0.09154034896956142 0.3535564853556491 0.09154034896956142 0.35355648535564915 0.1930113420983466
+0.09493073226473037 0.34728033472803393 0.09493073226473037 0.34728033472803393 0.18506135718423758
+0.09493073226473037 0.35146443514644404 0.09493073226473037 0.35146443514644404 0.1902090410297499
+0.09832111555989936 0.34518828451882894 0.09832111555989936 0.34518828451882894 0.18200763014967802
+0.10171149885506843 0.34309623430962394 0.10171149885506843 0.34309623430962394 0.17885100311499766
+0.07458843249371672 0.3765690376569042 0.07458843249371672 0.3765690376569042 0.21595111885161292
+0.07797881578888566 0.3744769874476992 0.07797881578888566 0.3744769874476992 0.21471137108933872
+0.0813691990840546 0.3682008368200842 0.0813691990840546 0.3682008368200842 0.20909534557612872
+0.08475958237922354 0.3661087866108792 0.08475958237922354 0.3661087866108792 0.20718799613299596
+0.0813691990840546 0.3723849372384942 0.0813691990840546 0.3723849372384942 0.21321435986116763
+0.07458843249371672 0.38075313807531425 0.07458843249371672 0.38075313807531425 0.21951391258637568
+0.06780766590337883 0.39330543933054457 0.06780766590337883 0.39330543933054457 0.22662843818229159
+0.07458843249371672 0.38493723849372435 0.07458843249371672 0.38493723849372435 0.2228326106294514
+0.07119804919854777 0.39121338912133957 0.07119804919854777 0.39121338912133957 0.22638405082130056
+0.07458843249371672 0.38912133891213446 0.07458843249371672 0.38912133891213446 0.22589089470738397
+0.06780766590337883 0.3974895397489546 0.06780766590337883 0.3974895397489546 0.22911723386962143
+0.05763651601787201 0.42050209205020994 0.05763651601787201 0.42050209205021 0.23418088454490907
+0.06441728260820989 0.4037656903765698 0.06441728260820989 0.4037656903765698 0.2310805665057237
+0.06780766590337883 0.4016736401673647 0.06780766590337883 0.4016736401673647 0.23134161095095299
+0.06102689931304095 0.4100418410041849 0.06102689931304095 0.4100418410041849 0.2323455811616386
+0.06441728260820989 0.4079497907949799 0.06441728260820989 0.4079497907949799 0.23291967755061058
+0.06102689931304095 0.41422594142259495 0.06102689931304095 0.414225941422595 0.23383364397382958
+0.06102689931304095 0.41841004184100494 0.06102689931304095 0.418410041841005 0.23508781764047781
+0.054246132722703067 0.43514644351464504 0.054246132722703067 0.43514644351464504 0.23535241677737948
+0.054246132722703067 0.43933054393305504 0.054246132722703067 0.43933054393305504 0.2357516674248137
+0.05763651601787201 0.42468619246862 0.05763651601787201 0.42468619246862 0.23514760809089186
+0.05763651601787201 0.42887029288703005 0.05763651601787201 0.42887029288703005 0.23591551007498354
+0.05763651601787201 0.43305439330544004 0.05763651601787201 0.43305439330544004 0.2364993601816268
+0.054246132722703067 0.44351464435146504 0.054246132722703067 0.44351464435146504 0.2360120561924006
+0.054246132722703067 0.44769874476987503 0.054246132722703067 0.44769874476987503 0.23615163389739366
+0.050855749427534125 0.45397489539749014 0.050855749427534125 0.4539748953974901 0.23501295167886996
+0.054246132722703067 0.45188284518828514 0.054246132722703067 0.4518828451882851 0.23618892424098573
+0.050855749427534125 0.45815899581590025 0.050855749427534125 0.4581589958159002 0.23499442628021536
+0.050855749427534125 0.46234309623431036 0.050855749427534125 0.4623430962343104 0.2349168733949221
+0.050855749427534125 0.46652719665272047 0.050855749427534125 0.46652719665272047 0.2347969135692162
+0.2269134617188534 0.23244116678107676 0.22691346171885343 0.23244116678107676 0.10577874505673736
+0.24477167199543626 0.20681337791891263 0.24477167199543626 0.2068133779189126 0.13447471325505034
+0.2426836916350549 0.21020326921578972 0.2426836916350549 0.21020326921578972 0.13033697264811542
+0.24060244006453843 0.21359113683717693 0.24060244006453843 0.21359113683717693 0.12629070778122634
+0.23852853092391663 0.21697593259797535 0.23852853092391665 0.21697593259797535 0.12236622885988675
+0.23048098550953988 0.2304138739387861 0.23048098550953983 0.23041387393878615 0.10856329161147407
+0.2327123928991006 0.22692979558197024 0.2327123928991006 0.22692979558197024 0.11189287822780725
+0.2345955693997153 0.22366776534088692 0.2345955693997153 0.22366776534088692 0.11515040018966295
+0.23652048297663353 0.220338892545309 0.2365204829766335 0.220338892545309 0.1186409996877248
+0.2656903765690065 0.179690314643954 0.26569037656900646 0.179690314643954 0.17196514504862967
+0.26359832635980135 0.18308069793912288 0.26359832635980135 0.18308069793912288 0.16804774609515616
+0.26150627615059613 0.18647108123429182 0.26150627615059613 0.18647108123429182 0.16399219145816527
+0.259414225941391 0.18986146452946076 0.259414225941391 0.18986146452946076 0.15981794963943294
+0.25732217573218596 0.19325184782462967 0.25732217573218596 0.19325184782462967 0.15554769532920845
+0.2552301255229809 0.1966422311197986 0.2552301255229809 0.1966422311197986 0.15120683949713784
+0.2531380753137758 0.20003261441496753 0.2531380753137758 0.20003261441496753 0.1468230249846623
+0.25104602510457075 0.20342299771013647 0.25104602510457075 0.20342299771013647 0.14242560049735462
+0.2489539748953656 0.20681338100530544 0.2489539748953656 0.20681338100530544 0.13804508440064414
+0.2970711297070832 0.14239609839709563 0.2970711297070832 0.14239609839709563 0.21401688173450092
+0.2949790794978781 0.1457864816922646 0.2949790794978781 0.1457864816922646 0.21189304100689052
+0.29288702928867294 0.14917686498743357 0.29288702928867294 0.14917686498743357 0.20965611837609233
+0.29079497907946766 0.15256724828260257 0.29079497907946766 0.15256724828260257 0.20728373530003527
+0.2845188284518522 0.15595763157777143 0.2845188284518522 0.15595763157777143 0.1997894161750764
+0.282426778242647 0.15934801487294029 0.282426778242647 0.15934801487294029 0.19705675478484755
+0.28033472803344184 0.16273839816810917 0.28033472803344184 0.16273839816810917 0.19415015329711516
+0.27824267782423684 0.16612878146327806 0.27824267782423684 0.16612878146327806 0.19105958190806482
+0.2761506276150319 0.16951916475844697 0.2761506276150319 0.16951916475844697 0.1877793144268227
+0.274058577405827 0.1729095480536159 0.274058577405827 0.1729095480536159 0.1843081488520217
+0.271966527196622 0.17629993134878494 0.271966527196622 0.17629993134878494 0.18064948095467662
+0.2698744769874169 0.17969031464395394 0.2698744769874169 0.17969031464395394 0.17681124409775648
+0.28870292887026244 0.15595763157777154 0.28870292887026244 0.15595763157777154 0.20475543493713158
+0.31799163179913426 0.1220537986260819 0.31799163179913426 0.1220537986260819 0.23269622572589385
+0.31589958158992915 0.12544418192125084 0.3158995815899291 0.12544418192125084 0.23112606955145584
+0.31380753138072404 0.12883456521641978 0.31380753138072404 0.12883456521641978 0.2295453660746761
+0.30543933054390365 0.13561533180675767 0.30543933054390365 0.13561533180675767 0.22228713396276636
+0.3117154811715189 0.13222494851158872 0.311715481171519 0.13222494851158872 0.22794087261947585
+0.3096234309623138 0.13561533180675767 0.3096234309623138 0.13561533180675767 0.2262948930856059
+0.30334728033469854 0.1390057151019266 0.30334728033469854 0.1390057151019266 0.2204413247652756
+0.30125523012549343 0.14239609839709558 0.30125523012549343 0.14239609839709558 0.2185186923298091
+0.3493723849372109 0.09832111555989931 0.34937238493721084 0.09832111555989931 0.24817647484221525
+0.3472803347280058 0.10171149885506825 0.3472803347280058 0.10171149885506825 0.24753777336713492
+0.3451882845188007 0.10510188215023719 0.34518828451880074 0.10510188215023719 0.24683069782345954
+0.34309623430959557 0.10849226544540613 0.34309623430959557 0.10849226544540613 0.24607928466288567
+0.34100418410039046 0.11188264874057507 0.3410041841003904 0.11188264874057507 0.24530271227561065
+0.33891213389118535 0.11527303203574402 0.33891213389118535 0.11527303203574402 0.24451444710813616
+0.3242677824267496 0.11866341533091296 0.32426778242674953 0.11866341533091296 0.23714191426058304
+0.3284518828451598 0.11866341533091296 0.32845188284515986 0.11866341533091296 0.2396786865550258
+0.33263598326357 0.11866341533091296 0.33263598326356997 0.11866341533091296 0.2418714819965613
+0.33682008368198024 0.11866341533091296 0.3368200836819803 0.11866341533091296 0.24372166955719174
+0.3221757322175445 0.1220537986260819 0.3221757322175445 0.1220537986260819 0.23575442256636484
+0.35564853556482623 0.09493073226473037 0.35564853556482623 0.09493073226473037 0.2488543886868065
+0.3535564853556211 0.09832111555989931 0.3535564853556212 0.09832111555989931 0.24849334195665618
+0.35983263598323645 0.09493073226473037 0.35983263598323645 0.09493073226473037 0.24864819932284263
+0.389121338912108 0.07458843249371672 0.389121338912108 0.07458843249371672 0.23881786065264524
+0.3870292887029029 0.07797881578888566 0.38702928870290293 0.07797881578888566 0.24027583104102265
+0.38493723849369776 0.0813691990840546 0.38493723849369776 0.0813691990840546 0.2415071264360313
+0.38284518828449265 0.08475958237922354 0.3828451882844926 0.08475958237922354 0.24253531511648638
+0.38075313807528754 0.08814996567439248 0.38075313807528754 0.08814996567439248 0.24338829264067122
+0.36401673640164667 0.09493073226473037 0.36401673640164667 0.09493073226473037 0.24811362460185402
+0.3682008368200569 0.09493073226473037 0.3682008368200569 0.09493073226473037 0.24726555355428878
+0.3744769874476722 0.09154034896956142 0.37447698744767216 0.09154034896956142 0.24568491091709668
+0.37866108786608244 0.09154034896956142 0.3786610878660825 0.09154034896956142 0.24409696656070176
+0.3723849372384671 0.09493073226473037 0.3723849372384671 0.09493073226473037 0.24612004113101058
+0.4100418410041591 0.06780766590337883 0.41004184100415914 0.06780766590337883 0.22295857986491385
+0.3953974895397233 0.07119804919854777 0.39539748953972337 0.07119804919854777 0.2344919207435665
+0.39958158995813353 0.07119804919854777 0.3995815899581335 0.07119804919854777 0.23164325806086747
+0.40376569037654375 0.07119804919854777 0.4037656903765438 0.07119804919854777 0.2285824412951186
+0.40794979079495397 0.07119804919854777 0.4079497907949539 0.07119804919854777 0.22532163513976652
+0.3933054393305182 0.07458843249371672 0.3933054393305182 0.07458843249371672 0.2363053011029332
+0.4309623430962102 0.06102689931304095 0.4309623430962102 0.06102689931304095 0.20153482837140171
+0.4163179916317744 0.06441728260820989 0.41631799163177435 0.06441728260820989 0.2167157177921124
+0.42050209205018463 0.06441728260820989 0.4205020920501847 0.06441728260820989 0.21289514691059389
+0.42468619246859485 0.06441728260820989 0.4246861924685948 0.06441728260820989 0.20890026177350676
+0.42887029288700507 0.06441728260820989 0.4288702928870051 0.06441728260820989 0.2047352375517559
+0.4142259414225693 0.06780766590337883 0.4142259414225693 0.06780766590337883 0.2194110923429988
+0.4372384937238255 0.05763651601787201 0.43723849372382556 0.05763651601787201 0.19360179037363337
+0.4414225941422357 0.05763651601787201 0.44142259414223567 0.05763651601787201 0.18891166159927608
+0.44560669456064594 0.05763651601787201 0.445606694560646 0.05763651601787201 0.18404687078138948
+0.4351464435146204 0.06102689931304095 0.43514644351462034 0.06102689931304095 0.19710800680462645
+0.46861924686190215 0.0406845995420273 0.4686192468619021 0.0406845995420273 0.1462152132112178
+0.4623430962342868 0.04407498283719624 0.4623430962342869 0.04407498283719624 0.15661913920458084
+0.46652719665269704 0.04407498283719624 0.466527196652697 0.04407498283719624 0.15083011646110775
+0.44979079497905616 0.05763651601787201 0.4497907949790561 0.05763651601787201 0.1790037388480952
+0.4602510460250817 0.04746536613236518 0.46025104602508177 0.04746536613236518 0.16108893860409632
+0.4581589958158766 0.050855749427534125 0.45815899581587655 0.050855749427534125 0.16545949994410944
+0.4560669456066715 0.054246132722703067 0.4560669456066715 0.054246132722703067 0.16969829964954278
+0.4539748953974664 0.05763651601787201 0.45397489539746644 0.05763651601787201 0.17377707592296246
+0.47280334728031237 0.0406845995420273 0.47280334728031237 0.0406845995420273 0.1401440374343326
+0.4769874476987226 0.0406845995420273 0.47698744769872264 0.0406845995420273 0.1338669654159269
+0.4832635983263379 0.03729421624685836 0.48326359832633786 0.03729421624685836 0.12252150421796905
+0.4811715481171328 0.0406845995420273 0.4811715481171328 0.0406845995420273 0.12737890379608932
+0.48744769874474814 0.03729421624685836 0.4874476987447482 0.03729421624685836 0.11575173860617442
+0.49372384937236347 0.03390383295168942 0.4937238493723635 0.03390383295168942 0.10382419185889759
+0.49163179916315836 0.03729421624685836 0.4916317991631583 0.03729421624685836 0.10876743127575439
+0.4999999999999788 0.030513449656520475 0.49999999999997874 0.030513449656520475 0.09166314201951926
+0.4979079497907737 0.03390383295168942 0.4979079497907737 0.03390383295168942 0.09657753993551711
+0.5188284518828248 0.006780766590337883 0.5188284518828247 0.006780766590337883 0.05286983037837375
+0.5167364016736197 0.010171149885506825 0.5167364016736197 0.010171149885506825 0.05697898663611158
+0.5146443514644146 0.013561533180675767 0.5146443514644146 0.013561533180675767 0.06119889112357323
+0.5125523012552095 0.01695191647584471 0.5125523012552095 0.01695191647584471 0.06554024724170092
+0.5104602510460043 0.02034229977101365 0.5104602510460045 0.02034229977101365 0.07000983257302322
+0.5083682008367992 0.02373268306618259 0.5083682008367992 0.02373268306618259 0.07460949474960189
+0.5062761506275941 0.027123066361351533 0.5062761506275941 0.027123066361351533 0.07933549529435728
+0.504184100418389 0.030513449656520475 0.504184100418389 0.030513449656520475 0.08417822825043779
+0.523012552301235 0.006780766590337883 0.523012552301235 0.006780766590337883 0.045102030151098475
+0.010171149885506561 0.5209205020920509 0.010171149885506561 0.5209205020920509 0.22626601838419794
+0.013561533180675414 0.5188284518828459 0.013561533180675414 0.5188284518828459 0.22661101767555228
+0.016951916475844268 0.5167364016736409 0.016951916475844268 0.5167364016736409 0.2270219097941247
+0.020342299771013178 0.5104602510460259 0.020342299771013178 0.5104602510460259 0.22759119621967352
+0.023732683066182092 0.508368200836821 0.023732683066182092 0.508368200836821 0.2281043784853863
+0.027123066361351034 0.5062761506276161 0.027123066361351034 0.506276150627616 0.22868390914586798
+0.02034229977101312 0.5146443514644359 0.02034229977101312 0.5146443514644359 0.2275000757566065
+0.006780766590337709 0.5271966527196659 0.006780766590337709 0.5271966527196659 0.22569047016576424
+0.01017114988550656 0.5251046025104609 0.01017114988550656 0.5251046025104609 0.22601443947801345
+0.040684599542027265 0.48535564853556584 0.040684599542027265 0.48535564853556584 0.23161086941703316
+0.04068459954202728 0.4895397489539759 0.04068459954202728 0.4895397489539759 0.23157527472406805
+0.04407498283719619 0.48326359832636084 0.04407498283719619 0.48326359832636084 0.23248775041609296
+0.04746536613236512 0.48117154811715585 0.04746536613236512 0.48117154811715585 0.23339963674607936
+0.050855749427534125 0.4707112970711306 0.050855749427534125 0.4707112970711305 0.23465025784313678
+0.05085574942753411 0.4748953974895407 0.05085574942753412 0.47489539748954074 0.2344914402419385
+0.050855749427534076 0.4790794979079508 0.050855749427534076 0.47907949790795085 0.2343335744814559
+0.03051344965652023 0.5000000000000011 0.03051344965652023 0.500000000000001 0.22932890645918794
+0.03390383295168924 0.4979079497907963 0.03390383295168924 0.4979079497907963 0.23001885784786538
+0.03729421624685826 0.4958158995815911 0.037294216246858254 0.49581589958159106 0.230761907471404
+0.04068459954202725 0.4937238493723861 0.04068459954202725 0.49372384937238606 0.23154852562766867
+0.030513449656520027 0.5041841004184112 0.030513449656520027 0.5041841004184112 0.22932459157732107
+0.20342299682807252 0.25104602579787627 0.20342299682807252 0.2510460257978763 0.09471216882151412
+0.20681333038281294 0.24895375450031554 0.20681333038281294 0.24895375450031554 0.09506706155278793
+0.22695504193315733 0.23656305126508692 0.22695504193315733 0.23656305126508692 0.10345661600964086
+0.22365453095483612 0.23855926623214452 0.22365453095483612 0.23855926623214452 0.10128782695363202
+0.2203238645136079 0.24060359892604188 0.2203238645136079 0.24060359892604186 0.09941656634172431
+0.21020306343135142 0.2468594450155938 0.21020306343135142 0.2468594450155938 0.09569532994367326
+0.21358997761951706 0.24476432542267842 0.21358997761951706 0.24476432542267842 0.09662090250545481
+0.21697062536189857 0.24267306350497353 0.21697062536189857 0.24267306350497356 0.09786112065937404
+0.15595763157212034 0.288702928872002 0.1559576315721203 0.288702928872002 0.11041508525243678
+0.15934801486431285 0.28661087866579654 0.15934801486431285 0.28661087866579654 0.1087564520045059
+0.16273839815588337 0.2845188284600493 0.1627383981558834 0.2845188284600493 0.10715185879315188
+0.1661287814495178 0.2782426778256281 0.1661287814495178 0.2782426778256281 0.10325050213975313
+0.16951916473508555 0.2761506276130614 0.16951916473508555 0.2761506276130614 0.10198675209944173
+0.16612878144887458 0.28242677825161583 0.16612878144887458 0.28242677825161583 0.10559347115623925
+0.17290954801514546 0.2740585774050776 0.17290954801514546 0.2740585774050776 0.10076895810505504
+0.17629993128658109 0.2719665272073299 0.17629993128658109 0.2719665272073299 0.09960068889341646
+0.20342299687187523 0.2552301258501057 0.20342299687187523 0.2552301258501057 0.09392917489121083
+0.2000326138964907 0.2573221760071581 0.2000326138964907 0.25732217600715807 0.09405645144501201
+0.19664223080748944 0.25941422605354403 0.19664223080748944 0.259414226053544 0.09440724457536288
+0.1932518476110744 0.26150627627822237 0.1932518476110744 0.26150627627822237 0.09495088795267864
+0.18986146437493265 0.2635983264764126 0.18986146437493265 0.2635983264764126 0.095657504336794
+0.17969031454762344 0.26987447701788453 0.17969031454762344 0.26987447701788453 0.09849022813971055
+0.18308069782757475 0.2677824268414915 0.18308069782757475 0.2677824268414915 0.09745054709218946
+0.18647108109441457 0.26569037666669054 0.18647108109441457 0.26569037666669054 0.09649910994657811
+0.13561533180559862 0.3054393305439053 0.13561533180559862 0.3054393305439053 0.1267440467863655
+0.13900571510039744 0.30334728033539576 0.13900571510039741 0.30334728033539576 0.12432657404840271
+0.14239609839495396 0.30125523012692124 0.14239609839495396 0.3012552301269213 0.1220294809229814
+0.1457864816899632 0.2991631799185152 0.1457864816899632 0.2991631799185152 0.11984093477963842
+0.14917686498480887 0.29707112970989813 0.14917686498480887 0.2970711297098982 0.1177475876305224
+0.15256724827944784 0.2949790795006902 0.15256724827944781 0.2949790795006902 0.11573558112440487
+0.1559576315729523 0.29288702929163196 0.1559576315729523 0.29288702929163196 0.11379154456481133
+0.11866341533090087 0.32426778242683124 0.11866341533090087 0.32426778242683124 0.1514293154591534
+0.1220537986260899 0.322175732217666 0.1220537986260899 0.322175732217666 0.14824669987754333
+0.1254441819213469 0.3158995815899299 0.1254441819213469 0.3158995815899299 0.13988628324892435
+0.1288345652164963 0.3138075313805918 0.1288345652164963 0.31380753138059175 0.13697258482351804
+0.12544418192130471 0.32008368200848797 0.12544418192130471 0.32008368200848797 0.1451526103084234
+0.13222494851153047 0.31171548117122366 0.13222494851153047 0.31171548117122366 0.13417782088184282
+0.13561533180635257 0.30962343096192896 0.13561533180635257 0.30962343096192896 0.13150079178738872
+0.1051018821502377 0.34100418410041855 0.1051018821502377 0.34100418410041855 0.17561964878660985
+0.10849226544540715 0.3389121338912122 0.10849226544540715 0.3389121338912122 0.1723408091963561
+0.11188264874057087 0.33263598326359073 0.11188264874057087 0.33263598326359073 0.1635027640185135
+0.11188264874057623 0.33682008368200395 0.11188264874057623 0.33682008368200395 0.16903999857811455
+0.11527303203573275 0.33054393305438623 0.11527303203573273 0.33054393305438623 0.16018868884184442
+0.11866341533089099 0.3284518828451925 0.11866341533089099 0.3284518828451925 0.1569145952219155
+0.08814996567439248 0.35983263598326415 0.08814996567439248 0.35983263598326415 0.20042413456110084
+0.08814996567439248 0.3640167364016742 0.08814996567439248 0.3640167364016742 0.20505057433851295
+0.09154034896956142 0.35774058577405915 0.09154034896956142 0.35774058577405915 0.1979305381755927
+0.09493073226473037 0.3556485355648541 0.09493073226473037 0.35564853556485415 0.19525600658044742
+0.0983211155598993 0.349372384937239 0.0983211155598993 0.349372384937239 0.18726259222067973
+0.09832111555989931 0.3535564853556491 0.09832111555989931 0.35355648535564915 0.19242505585086367
+0.10171149885506825 0.347280334728034 0.10171149885506825 0.347280334728034 0.18419891673517333
+0.10510188215023726 0.34518828451882916 0.10510188215023726 0.34518828451882916 0.18104500106768381
+0.07797881578888566 0.37866108786610925 0.07797881578888566 0.37866108786610925 0.2184407444307996
+0.0813691990840546 0.3765690376569042 0.0813691990840546 0.3765690376569042 0.2171095077476278
+0.08475958237922354 0.3702928870292892 0.08475958237922354 0.3702928870292892 0.2114688243092028
+0.08814996567439248 0.3682008368200842 0.08814996567439248 0.3682008368200842 0.209487726965045
+0.08475958237922354 0.3744769874476992 0.08475958237922354 0.3744769874476992 0.21552717775971916
+0.07797881578888566 0.38284518828451936 0.07797881578888566 0.38284518828451936 0.22192375504300443
+0.07119804919854777 0.3953974895397496 0.07119804919854777 0.3953974895397496 0.22901856824623712
+0.07797881578888566 0.38702928870292946 0.07797881578888566 0.38702928870292946 0.22514279118731229
+0.07458843249371672 0.39330543933054457 0.07458843249371672 0.39330543933054457 0.22867698771916392
+0.07797881578888566 0.39121338912133957 0.07797881578888566 0.39121338912133957 0.2280848759455835
+0.07119804919854777 0.3995815899581597 0.07119804919854777 0.3995815899581597 0.231380589834096
+0.06102689931304095 0.422594142259415 0.06102689931304095 0.422594142259415 0.2361182166596261
+0.06780766590337883 0.4058577405857748 0.06780766590337883 0.4058577405857748 0.23330042064493314
+0.07119804919854777 0.4037656903765698 0.07119804919854777 0.4037656903765698 0.23346803324802448
+0.06441728260820989 0.4121338912133899 0.06441728260820989 0.4121338912133899 0.2345064638377186
+0.06780766590337883 0.4100418410041849 0.06780766590337883 0.4100418410041849 0.23499630744860114
+0.06441728260820989 0.41631799163179994 0.06441728260820989 0.4163179916318 0.23584766356321696
+0.06441728260820989 0.42050209205020994 0.06441728260820989 0.42050209205021 0.23695308345431246
+0.05763651601787201 0.43723849372385004 0.05763651601787201 0.43723849372385004 0.23691562962257603
+0.05763651601787201 0.44142259414226004 0.05763651601787201 0.44142259414226004 0.23718212972619868
+0.06102689931304095 0.42677824267782505 0.06102689931304095 0.42677824267782505 0.23693752690187653
+0.06102689931304095 0.43096234309623505 0.06102689931304095 0.43096234309623505 0.237560661379806
+0.06102689931304095 0.43514644351464504 0.06102689931304095 0.43514644351464504 0.23800440064525527
+0.05763651601787201 0.44560669456067004 0.05763651601787201 0.44560669456067004 0.23731764635960043
+0.05763651601787201 0.44979079497908003 0.05763651601787201 0.44979079497908003 0.23734157474166492
+0.054246132722703067 0.45606694560669525 0.054246132722703067 0.4560669456066952 0.23614257672825234
+0.05763651601787201 0.45397489539749014 0.05763651601787201 0.4539748953974901 0.23727355904811417
+0.054246132722703067 0.46025104602510536 0.054246132722703067 0.4602510460251054 0.23603102946866053
+0.054246132722703067 0.46443514644351547 0.054246132722703067 0.46443514644351547 0.23587218570435955
+0.054246132722703067 0.4686192468619256 0.054246132722703067 0.4686192468619255 0.23568310768415687
+0.23022360259843846 0.2346788955893626 0.23022360259843846 0.2346788955893626 0.10587267221529502
+0.24686381618682407 0.21020355776622598 0.2468638161868241 0.21020355776622598 0.13371435550471353
+0.24477636297547112 0.21359286128197738 0.24477636297547112 0.21359286128197738 0.12946557040156084
+0.23315200259784474 0.23331604366249337 0.23315200259784472 0.2333160436624934 0.10808435175240534
+0.24269716232756114 0.21697922934427452 0.24269716232756114 0.21697922934427452 0.12533483753935556
+0.2406278483690269 0.2203611592652538 0.24062784836902693 0.22036115926525382 0.12135309147671237
+0.23477186023531021 0.23038967720871223 0.2347718602353102 0.2303896772087122 0.1108053904652012
+0.23667871340810986 0.22706270860395478 0.23667871340810986 0.22706270860395475 0.11407438765217419
+0.23863554539999077 0.2237181250390036 0.2386355453999908 0.2237181250390036 0.11760565059571004
+0.26778242677821174 0.18308069793912296 0.2677824267782118 0.18308069793912296 0.17280573064876567
+0.2656903765690065 0.18647108123429193 0.26569037656900646 0.18647108123429193 0.16864931147513304
+0.2635983263598011 0.18986146452946082 0.2635983263598011 0.18986146452946082 0.16436207046579832
+0.26150627615059596 0.19325184782462976 0.26150627615059596 0.19325184782462976 0.15996737100395528
+0.2594142259413909 0.19664223111979862 0.2594142259413909 0.19664223111979862 0.15549137081890493
+0.2573221757321859 0.20003261441496753 0.2573221757321859 0.20003261441496753 0.1509625004981621
+0.2552301255229809 0.2034229977101364 0.2552301255229809 0.20342299771013642 0.14641091912839274
+0.2531380753137759 0.20681338100530533 0.2531380753137759 0.20681338100530536 0.14186795857709064
+0.2510460251045708 0.21020376430047438 0.2510460251045708 0.21020376430047438 0.13736556506745967
+0.29916317991628844 0.1457864816922646 0.29916317991628844 0.1457864816922646 0.2164953496410347
+0.2970711297070833 0.14917686498743357 0.2970711297070833 0.14917686498743357 0.21434732901839001
+0.2949790794978781 0.15256724828260257 0.2949790794978781 0.15256724828260257 0.21205167379317544
+0.2928870292886729 0.1559576315777716 0.2928870292886729 0.15595763157777157 0.20958743184985915
+0.2866108786610571 0.15934801487294045 0.2866108786610571 0.15934801487294045 0.20205353710173046
+0.28451882845185195 0.16273839816810934 0.2845188284518519 0.16273839816810934 0.19916384367444964
+0.2824267782426468 0.16612878146327817 0.2824267782426468 0.16612878146327817 0.19607618368069277
+0.28033472803344167 0.16951916475844697 0.28033472803344167 0.16951916475844697 0.19278479568173448
+0.2782426778242368 0.1729095480536158 0.2782426778242368 0.1729095480536158 0.18928855183307894
+0.27615062761503195 0.17629993134878466 0.2761506276150319 0.17629993134878466 0.18559103295241408
+0.2740585774058271 0.17969031464395369 0.2740585774058271 0.17969031464395369 0.1817004673669456
+0.2719665271966223 0.18308069793912282 0.2719665271966223 0.18308069793912282 0.17762954843544032
+0.2907949790794676 0.15934801487294062 0.29079497907946766 0.15934801487294062 0.20693651951465544
+0.32008368200833937 0.12544418192125084 0.3200836820083394 0.12544418192125084 0.23436067417828407
+0.31799163179913426 0.12883456521641978 0.31799163179913426 0.12883456521641978 0.23295176856026503
+0.31589958158992915 0.13222494851158872 0.3158995815899291 0.13222494851158872 0.2315135090707954
+0.30753138075310876 0.1390057151019266 0.30753138075310876 0.1390057151019266 0.22458627359228064
+0.31380753138072404 0.13561533180675767 0.31380753138072404 0.13561533180675767 0.23002723878316225
+0.3117154811715189 0.1390057151019266 0.311715481171519 0.1390057151019266 0.2284708539449729
+0.30543933054390365 0.14239609839709555 0.30543933054390365 0.14239609839709555 0.22279151448303172
+0.3033472803346986 0.14578648169226452 0.3033472803346986 0.14578648169226452 0.22088593641571827
+0.351464435146416 0.10171149885506825 0.351464435146416 0.10171149885506825 0.2480418055777335
+0.3493723849372109 0.10510188215023719 0.34937238493721084 0.10510188215023719 0.2475273383707337
+0.3472803347280058 0.10849226544540613 0.3472803347280058 0.10849226544540613 0.24697362054694325
+0.3451882845188007 0.11188264874057507 0.34518828451880074 0.11188264874057507 0.24639935078034417
+0.34309623430959557 0.11527303203574402 0.34309623430959557 0.11527303203574402 0.24581738149213325
+0.34100418410039046 0.11866341533091296 0.3410041841003904 0.11866341533091296 0.24523414087451353
+0.3263598326359547 0.1220537986260819 0.3263598326359547 0.1220537986260819 0.23848009296008973
+0.3305439330543649 0.1220537986260819 0.3305439330543649 0.1220537986260819 0.24087002371398117
+0.33472803347277513 0.1220537986260819 0.33472803347277513 0.1220537986260819 0.24292501116366474
+0.33891213389118535 0.1220537986260819 0.33891213389118535 0.1220537986260819 0.24464937383757093
+0.3242677824267496 0.12544418192125084 0.32426778242674953 0.12544418192125084 0.23727282108144268
+0.35774058577403134 0.09832111555989931 0.3577405857740313 0.09832111555989931 0.2484669763732236
+0.35564853556482623 0.10171149885506825 0.35564853556482623 0.10171149885506825 0.24820195142991971
+0.36192468619244156 0.09832111555989931 0.3619246861924416 0.09832111555989931 0.2481103325526898
+0.3912133891213131 0.07797881578888566 0.39121338912131304 0.07797881578888566 0.2378805584839543
+0.389121338912108 0.0813691990840546 0.389121338912108 0.0813691990840546 0.23923630498142276
+0.3870292887029029 0.08475958237922354 0.38702928870290293 0.08475958237922354 0.24039664995267315
+0.38493723849369776 0.08814996567439248 0.38493723849369776 0.08814996567439248 0.24139006603123245
+0.38284518828449265 0.09154034896956142 0.3828451882844926 0.09154034896956142 0.24224805549155962
+0.3661087866108518 0.09832111555989931 0.3661087866108517 0.09832111555989931 0.24743810789042567
+0.370292887029262 0.09832111555989931 0.37029288702926205 0.09832111555989931 0.24646620571805045
+0.3765690376568773 0.09493073226473037 0.3765690376568773 0.09493073226473037 0.24469379128150526
+0.38075313807528754 0.09493073226473037 0.38075313807528754 0.09493073226473037 0.24300365758285736
+0.3744769874476722 0.09832111555989931 0.37447698744767216 0.09832111555989931 0.24521120547732425
+0.4121338912133642 0.07119804919854777 0.41213389121336425 0.07119804919854777 0.22187157115525077
+0.3974895397489284 0.07458843249371672 0.3974895397489284 0.07458843249371672 0.23356429250070732
+0.40167364016733864 0.07458843249371672 0.4016736401673386 0.07458843249371672 0.230608793874846
+0.40585774058574886 0.07458843249371672 0.40585774058574886 0.07458843249371672 0.22745160237911213
+0.4100418410041591 0.07458843249371672 0.41004184100415914 0.07458843249371672 0.22410407168656546
+0.3953974895397233 0.07797881578888566 0.39539748953972337 0.07797881578888566 0.2352537129715986
+0.4330543933054153 0.06441728260820989 0.43305439330541523 0.06441728260820989 0.20040232861257626
+0.4184100418409795 0.06780766590337883 0.41841004184097946 0.06780766590337883 0.2156835128249339
+0.42259414225938974 0.06780766590337883 0.42259414225938974 0.06780766590337883 0.21178248032672994
+0.42677824267779996 0.06780766590337883 0.4267782426778 0.06780766590337883 0.20771271653690634
+0.4309623430962102 0.06780766590337883 0.4309623430962102 0.06780766590337883 0.2034769514047221
+0.4163179916317744 0.07119804919854777 0.41631799163177435 0.07119804919854777 0.21824132285220907
+0.4393305439330306 0.06102689931304095 0.4393305439330306 0.06102689931304095 0.19251113565989475
+0.44351464435144083 0.06102689931304095 0.4435146443514409 0.06102689931304095 0.18774235592211352
+0.44769874476985105 0.06102689931304095 0.44769874476985105 0.06102689931304095 0.18279806479838365
+0.4372384937238255 0.06441728260820989 0.43723849372382556 0.06441728260820989 0.19590184898477966
+0.47071129707110726 0.04407498283719624 0.4707112970711073 0.04407498283719624 0.14483957003699832
+0.46443514644349193 0.04746536613236518 0.46443514644349193 0.04746536613236518 0.15538582900262657
+0.46861924686190215 0.04746536613236518 0.4686192468619021 0.04746536613236518 0.1494811739524294
+0.4518828451882613 0.06102689931304095 0.4518828451882612 0.06102689931304095 0.17767302826426243
+0.4623430962342868 0.050855749427534125 0.4623430962342869 0.050855749427534125 0.1598471235419283
+0.4602510460250817 0.054246132722703067 0.46025104602508177 0.054246132722703067 0.16418145724778913
+0.4581589958158766 0.05763651601787201 0.45815899581587655 0.05763651601787201 0.16836033371836412
+0.4560669456066715 0.06102689931304095 0.4560669456066715 0.06102689931304095 0.17236052974838392
+0.4748953974895175 0.04407498283719624 0.4748953974895174 0.04407498283719624 0.1386415634351497
+0.4790794979079277 0.04407498283719624 0.47907949790792775 0.04407498283719624 0.13222998029263963
+0.485355648535543 0.0406845995420273 0.48535564853554297 0.0406845995420273 0.1206749514543032
+0.4832635983263379 0.04407498283719624 0.48326359832633786 0.04407498283719624 0.1255987689290915
+0.48953974895395325 0.0406845995420273 0.48953974895395325 0.0406845995420273 0.11375065200989988
+0.4958158995815686 0.03729421624685836 0.49581589958156863 0.03729421624685836 0.10156626256952965
+0.49372384937236347 0.0406845995420273 0.4937238493723635 0.0406845995420273 0.10660225802901359
+0.5020920502091839 0.03390383295168942 0.5020920502091838 0.03390383295168942 0.08912231065780606
+0.4999999999999788 0.03729421624685836 0.49999999999997874 0.03729421624685836 0.09414701648310973
+0.5271966527196452 0.006780766590337883 0.5271966527196453 0.006780766590337883 0.037272977411229126
+0.5209205020920299 0.010171149885506825 0.5209205020920299 0.010171149885506825 0.04922884268389955
+0.5188284518828248 0.013561533180675767 0.5188284518828247 0.013561533180675767 0.05346392497397381
+0.5167364016736197 0.01695191647584471 0.5167364016736197 0.01695191647584471 0.05781771830009374
+0.5146443514644146 0.02034229977101365 0.5146443514644146 0.02034229977101365 0.06229759008538066
+0.5125523012552095 0.02373268306618259 0.5125523012552095 0.02373268306618259 0.06690663081014375
+0.5104602510460043 0.027123066361351533 0.5104602510460045 0.027123066361351533 0.07164280775606124
+0.5083682008367992 0.030513449656520475 0.5083682008367992 0.030513449656520475 0.07649850073602958
+0.5062761506275941 0.03390383295168942 0.5062761506275941 0.03390383295168942 0.08146042037015262
+0.5251046025104401 0.010171149885506825 0.5251046025104401 0.010171149885506825 0.041392573066505095
+0.006780766590337709 0.5313807531380759 0.006780766590337709 0.5313807531380759 0.22533544122790303
+0.013561533180675408 0.5230125523012559 0.013561533180675408 0.5230125523012559 0.22640118965986974
+0.016951916475844264 0.5209205020920509 0.016951916475844264 0.5209205020920509 0.22685396540872896
+0.02034229977101312 0.5188284518828459 0.02034229977101312 0.5188284518828459 0.2273727974387941
+0.023732683066181995 0.5125523012552309 0.023732683066181995 0.5125523012552309 0.22804399050352478
+0.02712306636135086 0.5104602510460261 0.027123066361350864 0.510460251046026 0.22864948833759277
+0.03051344965651982 0.5083682008368212 0.03051344965651982 0.5083682008368212 0.22931013576860523
+0.023732683066181964 0.5167364016736409 0.023732683066181964 0.5167364016736409 0.22795472478811127
+0.01017114988550656 0.5292887029288709 0.01017114988550656 0.5292887029288709 0.2257042415554236
+0.013561533180675408 0.5271966527196659 0.013561533180675408 0.5271966527196659 0.226137864388261
+0.04407498283719619 0.4874476987447709 0.04407498283719619 0.4874476987447709 0.23242094440465486
+0.044074982837196214 0.4916317991631811 0.044074982837196214 0.49163179916318106 0.23236832853799205
+0.047465366132365065 0.4853556485355659 0.047465366132365065 0.4853556485355659 0.2332957832343082
+0.050855749427533965 0.48326359832636084 0.050855749427533965 0.48326359832636084 0.23418813754872506
+0.054246132722703067 0.4728033472803357 0.054246132722703067 0.47280334728033574 0.23547973124389274
+0.054246132722703004 0.4769874476987458 0.054246132722703004 0.47698744769874585 0.23527660417059834
+0.0542461327227029 0.48117154811715585 0.0542461327227029 0.48117154811715585 0.23508665112168828
+0.03390383295168904 0.5020920502092063 0.033903832951689035 0.5020920502092063 0.23001922763354546
+0.03729421624685809 0.5000000000000013 0.03729421624685809 0.5000000000000013 0.23075907981190355
+0.04068459954202714 0.4979079497907965 0.04068459954202714 0.4979079497907965 0.23153438388831968
+0.04407498283719618 0.4958158995815915 0.04407498283719618 0.4958158995815915 0.23233488547481337
+0.033903832951688785 0.5062761506276164 0.033903832951688785 0.5062761506276164 0.23001769308698175
+0.20681317764142373 0.25313812356032 0.20681317764142373 0.25313812356032 0.09405564119277561
+0.21020257878105153 0.2510456911524367 0.21020257878105153 0.25104569115243663 0.09446441558891815
+0.23030890900131665 0.23865784510902224 0.23030890900131665 0.23865784510902224 0.10374212845963778
+0.22701886321213124 0.24066552031345542 0.22701886321213124 0.24066552031345542 0.10137995464542503
+0.22369263474467005 0.24270772855702602 0.22369263474467002 0.24270772855702602 0.09932852795012542
+0.22034670480849408 0.24477327274857266 0.22034670480849408 0.24477327274857266 0.09760916795826557
+0.2135903229041766 0.24895231263171633 0.2135903229041766 0.24895231263171633 0.09518098657421493
+0.21697390939228375 0.24685982157290498 0.21697390939228375 0.24685982157290498 0.09622539148613694
+0.1593480148646375 0.2907949790830731 0.15934801486463754 0.2907949790830731 0.11190354135997828
+0.16273839815460975 0.28870292887458426 0.16273839815460975 0.2887029288745842 0.11006192835358987
+0.1661287814446725 0.2866108786714193 0.1661287814446725 0.28661087867141927 0.10826010233793472
+0.16951916473894538 0.2803347280419675 0.16951916473894538 0.2803347280419675 0.10407719343799317
+0.17290954802581116 0.27824267782845774 0.17290954802581116 0.27824267782845774 0.1026031368925593
+0.1695191647328642 0.28451882846895565 0.1695191647328642 0.28451882846895565 0.10649511704851655
+0.20681303703974577 0.2573222196853033 0.20681303703974577 0.2573222196853033 0.09335849541468554
+0.1762999313024823 0.2761506276127957 0.1762999313024823 0.2761506276127957 0.10117593461818285
+0.17969031456838305 0.2740585774060779 0.17969031456838305 0.2740585774060779 0.09980490088073658
+0.20342299726494537 0.25941422621675686 0.20342299726494537 0.25941422621675686 0.0934650694583584
+0.20003261386079854 0.2615062768403876 0.20003261386079854 0.2615062768403876 0.09383326445371533
+0.1966422307942096 0.26359832664159555 0.1966422307942096 0.26359832664159555 0.09443151202885901
+0.1932518475514753 0.26569037679571694 0.1932518475514753 0.265690376795717 0.09522781107470825
+0.1898614643115786 0.26778242690327814 0.1898614643115786 0.2677824269032781 0.09619098946109278
+0.18308069781739053 0.27196652721930076 0.18308069781739053 0.27196652721930076 0.0985040309285119
+0.1864710810462065 0.26987447704867057 0.1864710810462065 0.26987447704867057 0.09729183410431701
+0.1390057151008436 0.3075313807528452 0.1390057151008436 0.3075313807528452 0.1289364561370263
+0.14239609839488818 0.30543933054392974 0.14239609839488818 0.30543933054392974 0.12647660742899117
+0.1457864816893362 0.30334728033603936 0.1457864816893362 0.30334728033603936 0.1241106906568361
+0.14917686498334032 0.3012552301282161 0.1491768649833403 0.3012552301282161 0.12182671319629436
+0.15256724827821064 0.2991631799204795 0.15256724827821064 0.2991631799204795 0.11961220148310873
+0.15595763157226453 0.29707112971230115 0.15595763157226453 0.29707112971230115 0.11745515661305116
+0.1593480148660528 0.2949790795034554 0.1593480148660528 0.2949790795034554 0.11534496738490917
+0.12205379862605005 0.3263598326360199 0.12205379862605005 0.3263598326360199 0.15369714431476256
+0.12544418192122198 0.32426778242687554 0.12544418192122198 0.32426778242687554 0.15054891861911487
+0.12883456521654155 0.3179916317992567 0.12883456521654155 0.31799163179925666 0.14215511169793185
+0.13222494851176614 0.3158995815899253 0.13222494851176614 0.3158995815899253 0.1392578813426114
+0.12883456521642597 0.3221757322177506 0.12883456521642597 0.3221757322177506 0.14747828734599297
+0.1356153318069002 0.3138075313804754 0.1356153318069002 0.3138075313804754 0.1364604846975301
+0.13900571510181478 0.3117154811709683 0.13900571510181478 0.3117154811709683 0.13375884458894974
+0.10849226544540658 0.3430962343096242 0.10849226544540658 0.3430962343096242 0.1778270684655763
+0.11188264874057635 0.3410041841004188 0.11188264874057637 0.3410041841004188 0.17456980081252174
+0.11527303203574342 0.33472803347279306 0.11527303203574342 0.33472803347279306 0.16574028585281395
+0.11527303203574661 0.33891213389121116 0.11527303203574661 0.33891213389121116 0.17129563875143175
+0.11866341533090606 0.33263598326358096 0.11866341533090606 0.33263598326358096 0.162461685709927
+0.1220537986260609 0.3305439330543746 0.1220537986260609 0.33054393305437463 0.159220685680905
+0.09154034896956142 0.3619246861924692 0.09154034896956142 0.3619246861924692 0.20270132285864326
+0.09154034896956142 0.3661087866108792 0.09154034896956142 0.3661087866108792 0.20728760601461158
+0.09493073226473037 0.35983263598326415 0.09493073226473037 0.35983263598326415 0.2001612617511719
+0.0983211155598993 0.35774058577405915 0.0983211155598993 0.35774058577405915 0.1974534017271775
+0.1017114988550682 0.35146443514644404 0.10171149885506821 0.35146443514644404 0.1894632512570584
+0.1017114988550682 0.35564853556485404 0.10171149885506821 0.35564853556485404 0.19460193261466796
+0.10510188215023711 0.34937238493723904 0.1051018821502371 0.34937238493723904 0.18639637409924467
+0.10849226544540604 0.34728033472803427 0.10849226544540604 0.34728033472803427 0.1832496121252654
+0.0813691990840546 0.38075313807531425 0.0813691990840546 0.38075313807531425 0.22075721654166267
+0.08475958237922354 0.37866108786610925 0.08475958237922354 0.37866108786610925 0.21933825257032444
+0.08814996567439248 0.3723849372384942 0.08814996567439248 0.3723849372384942 0.21370497407489755
+0.09154034896956142 0.3702928870292892 0.09154034896956142 0.3702928870292892 0.21165773966116105
+0.08814996567439248 0.3765690376569042 0.08814996567439248 0.3765690376569042 0.21767637225530834
+0.0813691990840546 0.38493723849372435 0.0813691990840546 0.38493723849372435 0.22413862756708067
+0.07458843249371672 0.3974895397489546 0.07458843249371672 0.3974895397489546 0.23118355619210626
+0.0813691990840546 0.38912133891213446 0.0813691990840546 0.38912133891213446 0.22723959332866653
+0.07797881578888566 0.3953974895397496 0.07797881578888566 0.3953974895397496 0.23074158029159594
+0.0813691990840546 0.39330543933054457 0.0813691990840546 0.39330543933054457 0.23005060182503553
+0.07458843249371672 0.4016736401673647 0.07458843249371672 0.4016736401673647 0.23340755244975633
+0.06441728260820989 0.42468619246862 0.06441728260820989 0.42468619246862 0.23783527235507237
+0.07119804919854777 0.4079497907949799 0.07119804919854777 0.4079497907949799 0.23528275740054075
+0.07458843249371672 0.4058577405857748 0.07458843249371672 0.4058577405857748 0.23535000397705072
+0.06780766590337883 0.41422594142259495 0.06780766590337883 0.414225941422595 0.2364354461356278
+0.07119804919854777 0.4121338912133899 0.07119804919854777 0.4121338912133899 0.2368303022483944
+0.06780766590337883 0.41841004184100494 0.06780766590337883 0.418410041841005 0.2376272431578774
+0.06780766590337883 0.422594142259415 0.06780766590337883 0.422594142259415 0.23858400827262186
+0.06102689931304095 0.43933054393305504 0.06102689931304095 0.43933054393305504 0.2382870228289187
+0.06102689931304095 0.44351464435146504 0.06102689931304095 0.44351464435146504 0.23842792821184397
+0.06441728260820989 0.42887029288703005 0.06441728260820989 0.42887029288703005 0.23850917247838824
+0.06441728260820989 0.43305439330544004 0.06441728260820989 0.43305439330544004 0.23899175364587721
+0.06441728260820989 0.43723849372385004 0.06441728260820989 0.43723849372385004 0.2393016357248484
+0.06102689931304095 0.44769874476987503 0.06102689931304095 0.44769874476987503 0.23844726308751105
+0.06102689931304095 0.4518828451882851 0.06102689931304095 0.4518828451882851 0.238365547518916
+0.05763651601787201 0.45815899581590025 0.05763651601787201 0.4581589958159002 0.23713314102721259
+0.06102689931304095 0.4560669456066952 0.06102689931304095 0.4560669456066952 0.2382033114051775
+0.05763651601787201 0.4623430962343104 0.05763651601787201 0.4623430962343104 0.23693942163046353
+0.05763651601787201 0.4665271966527206 0.05763651601787201 0.4665271966527205 0.23671073941403456
+0.05763651601787201 0.4707112970711307 0.05763651601787201 0.47071129707113074 0.23646436918463234
+0.23352497784769244 0.23671481617350154 0.23352497784769244 0.23671481617350154 0.10635355690858839
+0.24895637322226696 0.2135935977567681 0.24895637322226696 0.2135935977567681 0.13293823066988317
+0.24687025399796955 0.21698220132266544 0.24687025399796955 0.21698220132266544 0.12861862604106888
+0.23680493169392974 0.23430571411583276 0.23680493169392977 0.23430571411583273 0.10960003851152164
+0.2447969834566981 0.2203668478029858 0.2447969834566981 0.2203668478029858 0.1244459579734062
+0.24274261350523332 0.22374644978319827 0.24274261350523332 0.22374644978319827 0.12045221778261049
+0.23878522199062394 0.23054461882661528 0.23878522199062394 0.23054461882661528 0.11312364227028611
+0.24074367652443407 0.22712280768460502 0.24074367652443404 0.22712280768460502 0.11668593176713822
+0.26987447698741723 0.18647108123429193 0.26987447698741723 0.18647108123429193 0.17339514678114856
+0.2677824267782118 0.18986146452946104 0.2677824267782118 0.18986146452946104 0.16901793379566976
+0.26569037656900635 0.19325184782463004 0.26569037656900635 0.19325184782463004 0.16452193324800637
+0.26359832635980096 0.19664223111979895 0.26359832635980096 0.19664223111979895 0.15993401799000914
+0.2615062761505957 0.20003261441496767 0.2615062761505957 0.20003261441496764 0.1552833683559518
+0.2594142259413907 0.20342299771013642 0.2594142259413907 0.20342299771013642 0.1506009072016833
+0.25732217576492517 0.20681337158790014 0.25732217576492517 0.20681337158790014 0.14591873196521718
+0.25523014289270335 0.21020369560129207 0.25523014289270335 0.21020369560129207 0.1412695720386263
+0.2531389714282673 0.21359368767277567 0.2531389714282673 0.21359368767277567 0.13668711484446164
+0.30125523012549354 0.14917686498743352 0.30125523012549354 0.14917686498743352 0.21884484149361352
+0.29916317991628844 0.1525672482826025 0.29916317991628844 0.1525672482826025 0.2166446175037188
+0.2970711297070833 0.1559576315777715 0.2970711297070833 0.1559576315777715 0.2142637429488232
+0.29497907949787816 0.15934801487294056 0.29497907949787816 0.15934801487294056 0.21168366130254715
+0.28870292887026233 0.1627383981681096 0.28870292887026233 0.16273839816810962 0.20408443499478346
+0.28661087866105694 0.16612878146327847 0.2866108786610569 0.16612878146327847 0.20102081037268693
+0.2845188284518515 0.1695191647584472 0.28451882845185145 0.1695191647584472 0.19773979949354106
+0.2824267782426464 0.17290954805361594 0.2824267782426464 0.17290954805361594 0.1942403057205503
+0.28033472803344145 0.17629993134878463 0.28033472803344145 0.17629993134878463 0.19052605848025553
+0.27824267782423673 0.17969031464395338 0.2782426778242368 0.17969031464395338 0.1866055509399135
+0.27615062761503223 0.18308069793912232 0.27615062761503223 0.18308069793912232 0.182491853285787
+0.2740585774058277 0.18647108123429146 0.2740585774058277 0.18647108123429146 0.17820231717372106
+0.29288702928867294 0.16273839816810967 0.29288702928867294 0.16273839816810967 0.20888950358728922
+0.3221757322175445 0.12883456521641978 0.3221757322175445 0.12883456521641978 0.23604699437396706
+0.32008368200833937 0.13222494851158872 0.3200836820083394 0.13222494851158872 0.23478740289963815
+0.31799163179913426 0.13561533180675767 0.31799163179913426 0.13561533180675767 0.23347435855737
+0.3096234309623138 0.14239609839709555 0.3096234309623138 0.14239609839709555 0.22681993371818687
+0.31589958158992915 0.1390057151019266 0.3158995815899291 0.1390057151019266 0.2320847289843431
+0.31380753138072404 0.14239609839709555 0.31380753138072404 0.14239609839709555 0.23059308778377804
+0.30753138075310865 0.14578648169226446 0.30753138075310865 0.14578648169226446 0.22504892333015933
+0.30543933054390365 0.1491768649874334 0.30543933054390365 0.1491768649874334 0.22313231120489094
+0.3535564853556211 0.10510188215023719 0.3535564853556212 0.10510188215023719 0.24788051736129355
+0.351464435146416 0.10849226544540613 0.351464435146416 0.10849226544540613 0.24752606797298973
+0.3493723849372109 0.11188264874057507 0.34937238493721084 0.11188264874057507 0.24715687591170202
+0.3472803347280058 0.11527303203574402 0.3472803347280058 0.11527303203574402 0.24678521496201086
+0.3451882845188007 0.11866341533091296 0.34518828451880074 0.11866341533091296 0.24641677682339905
+0.34309623430959557 0.1220537986260819 0.34309623430959557 0.1220537986260819 0.2460504153387502
+0.3284518828451598 0.12544418192125084 0.32845188284515986 0.12544418192125084 0.2398587284711877
+0.33263598326357 0.12544418192125084 0.33263598326356997 0.12544418192125084 0.24211861533528722
+0.33682008368198024 0.12544418192125084 0.3368200836819803 0.12544418192125084 0.24405621400411937
+0.34100418410039046 0.12544418192125084 0.3410041841003904 0.12544418192125084 0.24567823022823035
+0.3263598326359547 0.12883456521641978 0.3263598326359547 0.12883456521641978 0.23882669677843596
+0.35983263598323645 0.10171149885506825 0.35983263598323645 0.10171149885506825 0.24803085557475676
+0.35774058577403134 0.10510188215023719 0.3577405857740313 0.10510188215023719 0.24790250895368135
+0.36401673640164667 0.10171149885506825 0.36401673640164667 0.10171149885506825 0.24754294665968346
+0.3933054393305182 0.0813691990840546 0.3933054393305182 0.0813691990840546 0.23673067872049877
+0.3912133891213131 0.08475958237922354 0.39121338912131304 0.08475958237922354 0.23801990385447325
+0.389121338912108 0.08814996567439248 0.389121338912108 0.08814996567439248 0.23915051449285626
+0.3870292887029029 0.09154034896956142 0.38702928870290293 0.09154034896956142 0.2401546959966175
+0.38493723849369776 0.09493073226473037 0.38493723849369776 0.09493073226473037 0.24106617110796158
+0.3682008368200569 0.10171149885506825 0.3682008368200569 0.10171149885506825 0.24675388825998681
+0.3723849372384671 0.10171149885506825 0.3723849372384671 0.10171149885506825 0.24568003639917424
+0.37866108786608244 0.09832111555989931 0.3786610878660825 0.09832111555989931 0.243689850525995
+0.38284518828449265 0.09832111555989931 0.3828451882844926 0.09832111555989931 0.24191856394260217
+0.3765690376568773 0.10171149885506825 0.3765690376568773 0.10171149885506825 0.2443379147758387
+0.4142259414225693 0.07458843249371672 0.4142259414225693 0.07458843249371672 0.22057587494015693
+0.39958158995813353 0.07797881578888566 0.3995815899581335 0.07797881578888566 0.2324098110898725
+0.40376569037654375 0.07797881578888566 0.4037656903765438 0.07797881578888566 0.22936221383199615
+0.40794979079495397 0.07797881578888566 0.4079497907949539 0.07797881578888566 0.22612283250187645
+0.4121338912133642 0.07797881578888566 0.41213389121336425 0.07797881578888566 0.22270188091370247
+0.3974895397489284 0.0813691990840546 0.3974895397489284 0.0813691990840546 0.23400523547026805
+0.4351464435146204 0.06780766590337883 0.43514644351462034 0.06780766590337883 0.19907589551929228
+0.42050209205018463 0.07119804919854777 0.4205020920501847 0.07119804919854777 0.21443812660754255
+0.42468619246859485 0.07119804919854777 0.4246861924685948 0.07119804919854777 0.21046725028566762
+0.42887029288700507 0.07119804919854777 0.4288702928870051 0.07119804919854777 0.20633191040205692
+0.4330543933054153 0.07119804919854777 0.43305439330541523 0.07119804919854777 0.20203323761621841
+0.4184100418409795 0.07458843249371672 0.41841004184097946 0.07458843249371672 0.21687481526663185
+0.4414225941422357 0.06441728260820989 0.44142259414223567 0.06441728260820989 0.19123219717535542
+0.44560669456064594 0.06441728260820989 0.445606694560646 0.06441728260820989 0.18638992362528015
+0.44979079497905616 0.06441728260820989 0.4497907949790561 0.06441728260820989 0.1813698383548132
+0.4393305439330306 0.06780766590337883 0.4393305439330306 0.06780766590337883 0.19450825824355691
+0.47280334728031237 0.04746536613236518 0.47280334728031237 0.04746536613236518 0.14336821357130122
+0.46652719665269704 0.050855749427534125 0.466527196652697 0.050855749427534125 0.15403383729441153
+0.47071129707110726 0.050855749427534125 0.4707112970711073 0.050855749427534125 0.14801214024465878
+0.4539748953974664 0.06441728260820989 0.45397489539746644 0.06441728260820989 0.17616515571827576
+0.46443514644349193 0.054246132722703067 0.46443514644349193 0.054246132722703067 0.1584649723241449
+0.4623430962342868 0.05763651601787201 0.4623430962342869 0.05763651601787201 0.16274578962589906
+0.4602510460250817 0.06102689931304095 0.46025104602508177 0.06102689931304095 0.1668525515676421
+0.4581589958158766 0.06441728260820989 0.45815899581587655 0.06441728260820989 0.17076767268483306
+0.4769874476987226 0.04746536613236518 0.47698744769872264 0.04746536613236518 0.1370398722557754
+0.4811715481171328 0.04746536613236518 0.4811715481171328 0.04746536613236518 0.1304890077982549
+0.48744769874474814 0.04407498283719624 0.4874476987447482 0.04407498283719624 0.11874220006563237
+0.485355648535543 0.04746536613236518 0.48535564853554297 0.04746536613236518 0.1237086742104171
+0.49163179916315836 0.04407498283719624 0.4916317991631583 0.04407498283719624 0.11165513536403703
+0.4979079497907737 0.0406845995420273 0.4979079497907737 0.0406845995420273 0.09922700760757132
+0.4958158995815686 0.04407498283719624 0.49581589958156863 0.04407498283719624 0.10433330567557882
+0.504184100418389 0.03729421624685836 0.504184100418389 0.03729421624685836 0.08650988550044979
+0.5020920502091839 0.0406845995420273 0.5020920502091838 0.0406845995420273 0.09162341778401857
+0.5313807531380554 0.006780766590337883 0.5313807531380554 0.006780766590337883 0.02944928694688485
+0.5292887029288503 0.010171149885506825 0.5292887029288503 0.010171149885506825 0.03351735422745238
+0.523012552301235 0.013561533180675767 0.523012552301235 0.013561533180675767 0.04562175393090773
+0.5209205020920299 0.01695191647584471 0.5209205020920299 0.01695191647584471 0.04996931097929702
+0.5188284518828248 0.02034229977101365 0.5188284518828247 0.02034229977101365 0.05444235465092937
+0.5167364016736197 0.02373268306618259 0.5167364016736197 0.02373268306618259 0.05904471943287488
+0.5146443514644146 0.027123066361351533 0.5146443514644146 0.027123066361351533 0.06377581142109533
+0.5125523012552095 0.030513449656520475 0.5125523012552095 0.030513449656520475 0.06862988677473948
+0.5104602510460043 0.03390383295168942 0.5104602510460045 0.03390383295168942 0.07359574700339433
+0.5083682008367992 0.03729421624685836 0.5083682008367992 0.03729421624685836 0.07865682321014282
+0.5271966527196452 0.013561533180675767 0.5271966527196453 0.013561533180675767 0.03770692680171417
+0.006780766590337709 0.5355648535564859 0.006780766590337709 0.5355648535564859 0.2249113668872562
+0.01017114988550656 0.5334728033472809 0.01017114988550656 0.5334728033472809 0.22532949459973953
+0.016951916475844264 0.5251046025104609 0.016951916475844264 0.5251046025104609 0.22663843207613396
+0.02034229977101312 0.5230125523012559 0.02034229977101312 0.5230125523012559 0.22720465235659634
+0.023732683066181964 0.5209205020920509 0.023732683066181964 0.5209205020920509 0.22783211300941494
+0.027123066361350815 0.514644351464436 0.027123066361350815 0.514644351464436 0.22859414158484712
+0.030513449656519673 0.512552301255231 0.030513449656519673 0.512552301255231 0.22928325139995134
+0.03390383295168854 0.5104602510460263 0.033903832951688535 0.5104602510460263 0.23001260645864433
+0.02712306636135081 0.5188284518828459 0.02712306636135081 0.5188284518828459 0.22851370767035564
+0.013561533180675408 0.5313807531380759 0.013561533180675408 0.5313807531380759 0.2258151852723115
+0.016951916475844264 0.5292887029288709 0.016951916475844264 0.5292887029288709 0.2263695199959901
+0.006780766590337709 0.5397489539748959 0.006780766590337709 0.5397489539748959 0.2244117573073642
+0.04746536613236511 0.4895397489539761 0.04746536613236511 0.48953974895397606 0.2332105973886626
+0.04746536613236516 0.4937238493723864 0.04746536613236516 0.4937238493723864 0.23315037325768087
+0.050855749427533986 0.48744769874477095 0.05085574942753399 0.48744769874477095 0.2340647825044053
+0.054246132722702754 0.48535564853556595 0.054246132722702754 0.48535564853556595 0.23492096754589542
+0.05763651601787198 0.47489539748954074 0.05763651601787199 0.47489539748954074 0.23621624405210326
+0.05763651601787182 0.47907949790795085 0.05763651601787182 0.47907949790795085 0.23598070371646526
+0.0576365160178717 0.48326359832636095 0.057636516017871696 0.48326359832636095 0.23577027146729046
+0.03729421624685781 0.5041841004184117 0.03729421624685781 0.5041841004184117 0.23076264118055903
+0.04068459954202688 0.5020920502092068 0.04068459954202688 0.5020920502092068 0.23153474690534784
+0.04407498283719597 0.5000000000000019 0.04407498283719597 0.5000000000000019 0.23232363881815665
+0.04746536613236508 0.497907949790797 0.04746536613236508 0.49790794979079694 0.23311936519847024
+0.037294216246857484 0.5083682008368215 0.03729421624685748 0.5083682008368217 0.23077170472367484
+0.23370229845637314 0.24068189605266238 0.2337022984563731 0.2406818960526624 0.10440699124900209
+0.21020163845135467 0.25523041730224566 0.21020163845135467 0.25523041730224566 0.0935432024920959
+0.21358808791704784 0.25313845180474803 0.21358808791704784 0.2531384518047481 0.09404551532766409
+0.23040223439184565 0.24273261594171242 0.23040223439184568 0.24273261594171244 0.1018152565780903
+0.22707420040458473 0.24479282866454924 0.22707420040458473 0.24479282866454924 0.0995554764271225
+0.22371349572893573 0.2468700728263152 0.22371349572893573 0.2468700728263152 0.097637352546551
+0.2203498260029444 0.24895522676766793 0.2203498260029444 0.24895522676766793 0.09608271258438811
+0.21697161022323663 0.25104668899313554 0.21697161022323663 0.25104668899313554 0.09488687321755035
+0.16273839815744057 0.29288702929463334 0.1627383981574406 0.29288702929463334 0.11327324706213883
+0.16612878144560125 0.2907949790867188 0.16612878144560125 0.2907949790867188 0.1112345687338507
+0.16951916473046325 0.28870292887873755 0.16951916473046325 0.28870292887873755 0.1092270821552032
+0.17290954802395406 0.28242677826149704 0.17290954802395406 0.28242677826149704 0.10476816093053314
+0.17629993130924082 0.2803347280518818 0.17629993130924082 0.2803347280518818 0.10308489003247599
+0.17290954801549915 0.28661087868173835 0.17290954801549915 0.28661087868173835 0.10725300117709702
+0.2102007907482867 0.259414672870079 0.2102007907482867 0.259414672870079 0.09295251592241062
+0.20681293144890345 0.2615062903615379 0.20681293144890348 0.2615062903615379 0.09299452524638684
+0.17969031458840182 0.27824267783472745 0.17969031458840182 0.2782426778347275 0.10145561143611283
+0.18308069784760653 0.276150627613271 0.18308069784760653 0.276150627613271 0.09989531102887682
+0.2034229791989958 0.26359832697860286 0.2034229791989958 0.26359832697860286 0.09333651204617467
+0.20003261324964092 0.2656903786957848 0.20003261324964092 0.26569037869578477 0.09394748948977012
+0.19664223056694397 0.26778242724049756 0.19664223056694397 0.26778242724049756 0.09479449572751554
+0.1932518474862244 0.2698744772078322 0.1932518474862244 0.26987447720783214 0.0958441540451841
+0.18986146429074224 0.27196652724656 0.18986146429074224 0.27196652724656006 0.09706397633309687
+0.18647108108566904 0.2740585774092122 0.18647108108566904 0.2740585774092122 0.09842351574338946
+0.14239609839632314 0.3096234309616032 0.14239609839632314 0.3096234309616032 0.13114587905337124
+0.14578648169017341 0.3075313807526379 0.14578648169017341 0.3075313807526379 0.12861227293187857
+0.14917686498319163 0.3054393305440117 0.14917686498319163 0.3054393305440117 0.12614734158746518
+0.15256724827699852 0.3033472803373191 0.15256724827699852 0.3033472803373191 0.12373994234644865
+0.15595763156993736 0.301255230130737 0.15595763156993736 0.301255230130737 0.12137939044634581
+0.15934801486418237 0.2991631799242482 0.15934801486418237 0.2991631799242482 0.11905634079520498
+0.1627383981569976 0.2970711297170288 0.16273839815699762 0.2970711297170288 0.11676360349218447
+0.12544418192120757 0.3284518828451885 0.12544418192120757 0.3284518828451885 0.15602993279991587
+0.12883456521635428 0.3263598326360438 0.12883456521635428 0.3263598326360438 0.1528980972966343
+0.13222494851167985 0.320083682008605 0.13222494851167985 0.320083682008605 0.14448946737884064
+0.1356153318069773 0.3179916317993616 0.1356153318069773 0.3179916317993616 0.14158277944132822
+0.13222494851152386 0.32426778242695603 0.13222494851152386 0.32426778242695603 0.14982992247567964
+0.13900571510225385 0.31589958158992915 0.13900571510225387 0.3158995815899291 0.13875508758945057
+0.1423960983973593 0.31380753138027134 0.1423960983973593 0.31380753138027134 0.13600039919529314
+0.1118826487405752 0.34518828451882966 0.1118826487405752 0.34518828451882966 0.18004679956141498
+0.11527303203574496 0.3430962343096251 0.11527303203574495 0.3430962343096251 0.1768097334331085
+0.1186634153309164 0.3368200836819995 0.1186634153309164 0.3368200836819995 0.1680241875490184
+0.11866341533091584 0.3410041841004195 0.11866341533091584 0.3410041841004195 0.17355759236702706
+0.12205379862608272 0.33472803347278185 0.12205379862608272 0.33472803347278185 0.16477175437179722
+0.12544418192123988 0.3326359832635606 0.12544418192123988 0.3326359832635606 0.16155103883320535
+0.09493073226473037 0.3640167364016742 0.09493073226473037 0.3640167364016742 0.20488785878333868
+0.09493073226473037 0.3682008368200842 0.09493073226473037 0.3682008368200842 0.2094032493547893
+0.0983211155598993 0.36192468619246915 0.0983211155598993 0.36192468619246915 0.2023099774625158
+0.1017114988550682 0.3598326359832641 0.10171149885506821 0.35983263598326415 0.1995767590280089
+0.10510188215023711 0.3535564853556491 0.1051018821502371 0.35355648535564915 0.19163141010935522
+0.10510188215023711 0.3577405857740591 0.1051018821502371 0.35774058577405915 0.196711512414625
+0.10849226544540597 0.35146443514644404 0.10849226544540595 0.35146443514644404 0.18856596522879257
+0.11188264874057484 0.34937238493723927 0.11188264874057484 0.34937238493723927 0.1854285619037741
+0.08475958237922354 0.38284518828451936 0.08475958237922354 0.38284518828451936 0.22288200391635207
+0.08814996567439248 0.38075313807531425 0.08814996567439248 0.38075313807531425 0.2213807639222727
+0.09154034896956142 0.3744769874476992 0.09154034896956142 0.3744769874476992 0.215784743292164
+0.09493073226473037 0.3723849372384942 0.09493073226473037 0.3723849372384942 0.21367952660288925
+0.09154034896956142 0.37866108786610925 0.09154034896956142 0.37866108786610925 0.21964643060469877
+0.08475958237922354 0.38702928870292946 0.08475958237922354 0.38702928870292946 0.2261431568790302
+0.07797881578888566 0.3995815899581597 0.07797881578888566 0.3995815899581597 0.2331088737786783
+0.08475958237922354 0.39121338912133957 0.08475958237922354 0.39121338912133957 0.22911114266305874
+0.0813691990840546 0.3974895397489546 0.0813691990840546 0.3974895397489546 0.23256663647514528
+0.08475958237922354 0.3953974895397496 0.08475958237922354 0.3953974895397496 0.23177996852139773
+0.07797881578888566 0.4037656903765698 0.07797881578888566 0.4037656903765698 0.235186920285354
+0.06780766590337883 0.42677824267782505 0.06780766590337883 0.42677824267782505 0.2393206020124181
+0.07458843249371672 0.4100418410041849 0.07458843249371672 0.4100418410041849 0.23701575671197636
+0.07797881578888566 0.4079497907949799 0.07797881578888566 0.4079497907949799 0.23697982550395827
+0.07119804919854777 0.41631799163179994 0.07119804919854777 0.4163179916318 0.23811959089662207
+0.07458843249371672 0.41422594142259495 0.07458843249371672 0.414225941422595 0.23841317850754964
+0.07119804919854777 0.42050209205020994 0.07119804919854777 0.42050209205021 0.23916259992320907
+0.07119804919854777 0.42468619246862 0.07119804919854777 0.42468619246862 0.2399740036727774
+0.06441728260820989 0.44142259414226004 0.06441728260820989 0.44142259414226004 0.23945870437179528
+0.06441728260820989 0.44560669456067004 0.06441728260820989 0.44560669456067004 0.23948372507909552
+0.06780766590337883 0.43096234309623505 0.06780766590337883 0.43096234309623505 0.23985406449595725
+0.06780766590337883 0.43514644351464504 0.06780766590337883 0.43514644351464504 0.24020323100554244
+0.06780766590337883 0.43933054393305504 0.06780766590337883 0.43933054393305504 0.2403883396941168
+0.06441728260820989 0.4497907949790801 0.06441728260820989 0.4497907949790801 0.23939796037482633
+0.06441728260820989 0.45397489539749014 0.06441728260820989 0.4539748953974901 0.23922279482949863
+0.06102689931304095 0.4602510460251053 0.06102689931304095 0.4602510460251053 0.23798074303925995
+0.06441728260820989 0.45815899581590025 0.06441728260820989 0.4581589958159002 0.23897937226868463
+0.06102689931304095 0.46443514644351547 0.06102689931304095 0.46443514644351547 0.2377173540599549
+0.06102689931304095 0.46861924686192563 0.06102689931304095 0.46861924686192563 0.23743166437961816
+0.06102689931304091 0.4728033472803358 0.0610268993130409 0.47280334728033585 0.2371409103110005
+0.23695584184921545 0.23865424476082642 0.23695584184921545 0.23865424476082642 0.10730410350877516
+0.2510509499211337 0.2169826475967407 0.2510509499211337 0.2169826475967407 0.13220597899148198
+0.2397623324549073 0.2368774922303827 0.23976233245490733 0.23687749223038274 0.11001786907971645
+0.24896852558463486 0.2203701036185707 0.24896852558463486 0.2203701036185707 0.12785913855903663
+0.24085200564569298 0.23387001895465281 0.240852005645693 0.2338700189546528 0.11249589900685718
+0.2469036687056776 0.22375497728781502 0.2469036687056776 0.22375497728781504 0.1236857385593247
+0.24485793404912015 0.22713867584652156 0.24485793404912015 0.22713867584652156 0.11971168888646999
+0.24286909003675886 0.23051741584581173 0.24286909003675886 0.23051741584581173 0.11599153150589174
+0.2719665271966229 0.18986146452946076 0.2719665271966229 0.18986146452946076 0.17375818733565393
+0.2698744769874176 0.1932518478246301 0.2698744769874177 0.1932518478246301 0.169184136559458
+0.26778242677821196 0.19664223111979937 0.2677824267782119 0.19664223111979937 0.16450774097100093
+0.2656903765690061 0.20003261441496833 0.2656903765690061 0.20003261441496836 0.15975891376300397
+0.2635983266485917 0.20342298526455402 0.2635983266485917 0.20342298526455402 0.1549693266798509
+0.26150627782105124 0.20681324077304128 0.26150627782105124 0.20681324077304128 0.1501718772130175
+0.25941430978035046 0.21020312101959346 0.25941430978035046 0.21020312101959346 0.14540021786630586
+0.25732297519256375 0.21359219482268757 0.2573229751925638 0.21359219482268757 0.14068853157467995
+0.25523401476044 0.216979846122916 0.25523401476044 0.216979846122916 0.1360715427513988
+0.30334728033469865 0.15256724828260237 0.30334728033469865 0.15256724828260237 0.22104574792009782
+0.3012552301254936 0.1559576315777714 0.3012552301254936 0.1559576315777714 0.21876706456130027
+0.2991631799162885 0.1593480148729404 0.29916317991628855 0.1593480148729404 0.2162771588279531
+0.29707112970708344 0.16273839816810948 0.29707112970708344 0.16273839816810945 0.21356072790288058
+0.29079497907946755 0.1661287814632787 0.29079497907946755 0.1661287814632787 0.20587064809549369
+0.28870292887026194 0.16951916475844764 0.2887029288702619 0.16951916475844764 0.20262111431775032
+0.2866108786610564 0.17290954805361639 0.2866108786610564 0.17290954805361639 0.1991397946973346
+0.28451882845185095 0.1762999313487851 0.28451882845185095 0.1762999313487851 0.19543053273139463
+0.2824267782426458 0.17969031464395366 0.2824267782426458 0.17969031464395366 0.1915020593593966
+0.28033472803344117 0.18308069793912216 0.28033472803344117 0.18308069793912216 0.1873678017466505
+0.2782426778242369 0.1864710812342908 0.2782426778242369 0.1864710812342908 0.18304557969599056
+0.2761506276150328 0.18986146452945976 0.2761506276150328 0.18986146452945976 0.17855720518465737
+0.2949790794978783 0.16612878146327859 0.2949790794978783 0.16612878146327859 0.21060683676010486
+0.3242677824267496 0.13222494851158872 0.32426778242674953 0.13222494851158872 0.23775764435748936
+0.3221757322175445 0.13561533180675767 0.3221757322175445 0.13561533180675767 0.2366307792333547
+0.32008368200833937 0.1390057151019266 0.3200836820083394 0.1390057151019266 0.23542185883381314
+0.31171548117151887 0.1457864816922645 0.31171548117151887 0.1457864816922645 0.22897291744390738
+0.31799163179913426 0.14239609839709555 0.31799163179913426 0.14239609839709555 0.23410436357075012
+0.3158995815899291 0.1457864816922645 0.3158995815899291 0.1457864816922645 0.23265072232551406
+0.30962343096231376 0.1491768649874334 0.30962343096231376 0.1491768649874334 0.22719780498815303
+0.3075313807531087 0.15256724828260235 0.30753138075310865 0.15256724828260235 0.22524257787933388
+0.35564853556482623 0.10849226544540613 0.35564853556482623 0.10849226544540613 0.2477484755607112
+0.3535564853556211 0.11188264874057507 0.3535564853556212 0.11188264874057507 0.24758666160128737
+0.351464435146416 0.11527303203574402 0.351464435146416 0.11527303203574402 0.24742880352996668
+0.3493723849372109 0.11866341533091296 0.34937238493721084 0.11866341533091296 0.24727987799685658
+0.3472803347280058 0.1220537986260819 0.3472803347280058 0.1220537986260819 0.24713784871988068
+0.3451882845188007 0.12544418192125084 0.34518828451880074 0.12544418192125084 0.24699376229905382
+0.3305439330543649 0.12883456521641978 0.3305439330543649 0.12883456521641978 0.24129051290401207
+0.33472803347277513 0.12883456521641978 0.33472803347277513 0.12883456521641978 0.24344157724559576
+0.33891213389118535 0.12883456521641978 0.33891213389118535 0.12883456521641978 0.24528597994456433
+0.34309623430959557 0.12883456521641978 0.34309623430959557 0.12883456521641978 0.2468321816413244
+0.3284518828451598 0.13222494851158872 0.32845188284515986 0.13222494851158872 0.24042328365300517
+0.36192468619244156 0.10510188215023719 0.3619246861924416 0.10510188215023719 0.2476074008869624
+0.35983263598323645 0.10849226544540613 0.35983263598323645 0.10849226544540613 0.24765452381176864
+0.3661087866108518 0.10510188215023719 0.3661087866108517 0.10510188215023719 0.24701053360686423
+0.3953974895397233 0.08475958237922354 0.39539748953972337 0.08475958237922354 0.23542043614391697
+0.3933054393305182 0.08814996567439248 0.3933054393305182 0.08814996567439248 0.23668525763330803
+0.3912133891213131 0.09154034896956142 0.39121338912131304 0.09154034896956142 0.2378326476534723
+0.389121338912108 0.09493073226473037 0.389121338912108 0.09493073226473037 0.2388971048073394
+0.3870292887029029 0.09832111555989931 0.38702928870290293 0.09832111555989931 0.2399130023007716
+0.370292887029262 0.10510188215023719 0.37029288702926205 0.10510188215023719 0.24612794534912083
+0.3744769874476722 0.10510188215023719 0.37447698744767216 0.10510188215023719 0.24497583498077938
+0.38075313807528754 0.10171149885506825 0.38075313807528754 0.10171149885506825 0.24274371878009113
+0.38493723849369776 0.10171149885506825 0.38493723849369776 0.10171149885506825 0.24091285900927037
+0.37866108786608244 0.10510188215023719 0.3786610878660825 0.10510188215023719 0.24357005443016647
+0.4163179916317744 0.07797881578888566 0.41631799163177435 0.07797881578888566 0.21910767705565662
+0.40167364016733864 0.0813691990840546 0.4016736401673386 0.0813691990840546 0.2310738147974665
+0.40585774058574886 0.0813691990840546 0.40585774058574886 0.0813691990840546 0.22794880270970178
+0.4100418410041591 0.0813691990840546 0.41004184100415914 0.0813691990840546 0.22464087458676343
+0.4142259414225693 0.0813691990840546 0.4142259414225693 0.0813691990840546 0.22115878969259986
+0.39958158995813353 0.08475958237922354 0.3995815899581335 0.08475958237922354 0.23261246427821883
+0.4372384937238255 0.07119804919854777 0.43723849372382556 0.07119804919854777 0.19757028932254572
+0.42259414225938974 0.07458843249371672 0.42259414225938974 0.07458843249371672 0.2130066857813164
+0.42677824267779996 0.07458843249371672 0.4267782426778 0.07458843249371672 0.2089751798691956
+0.4309623430962102 0.07458843249371672 0.4309623430962102 0.07458843249371672 0.20478185137205027
+0.4351464435146204 0.07458843249371672 0.43514644351462034 0.07458843249371672 0.20042612319670575
+0.42050209205018463 0.07797881578888566 0.4205020920501847 0.07797881578888566 0.21534649619115429
+0.44351464435144083 0.06780766590337883 0.4435146443514409 0.06780766590337883 0.18977080969221427
+0.44769874476985105 0.06780766590337883 0.44769874476985105 0.06780766590337883 0.18485848386661174
+0.4518828451882613 0.06780766590337883 0.4518828451882612 0.06780766590337883 0.17976451961247575
+0.4414225941422357 0.07119804919854777 0.44142259414223567 0.07119804919854777 0.1929401071665475
+0.4748953974895175 0.050855749427534125 0.4748953974895174 0.050855749427534125 0.14177407805615014
+0.46861924686190215 0.054246132722703067 0.4686192468619021 0.054246132722703067 0.15254069861337896
+0.47280334728031237 0.054246132722703067 0.47280334728031237 0.054246132722703067 0.14639989896243819
+0.4560669456066715 0.06780766590337883 0.4560669456066715 0.06780766590337883 0.17448063556916757
+0.46652719665269704 0.05763651601787201 0.466527196652697 0.05763651601787201 0.15692475888052526
+0.46443514644349193 0.06102689931304095 0.46443514644349193 0.06102689931304095 0.16113998534006646
+0.4623430962342868 0.06441728260820989 0.4623430962342869 0.06441728260820989 0.1651679766954995
+0.4602510460250817 0.06780766590337883 0.46025104602508177 0.06780766590337883 0.16899723494170837
+0.4790794979079277 0.050855749427534125 0.47907949790792775 0.050855749427534125 0.135311495812004
+0.4832635983263379 0.050855749427534125 0.48326359832633786 0.050855749427534125 0.12861630526058876
+0.48953974895395325 0.04746536613236518 0.48953974895395325 0.04746536613236518 0.11669239518593112
+0.48744769874474814 0.050855749427534125 0.4874476987447482 0.050855749427534125 0.12168076295923584
+0.49372384937236347 0.04746536613236518 0.4937238493723635 0.04746536613236518 0.10943444590389129
+0.4999999999999788 0.04407498283719624 0.49999999999997874 0.04407498283719624 0.09677360025404193
+0.4979079497907737 0.04746536613236518 0.4979079497907737 0.04746536613236518 0.10193014234153812
+0.5062761506275941 0.0406845995420273 0.5062761506275941 0.0406845995420273 0.08379160668301457
+0.504184100418389 0.04407498283719624 0.504184100418389 0.04407498283719624 0.08897437274833729
+0.5355648535564657 0.006780766590337883 0.5355648535564655 0.006780766590337883 0.021778532409640842
+0.5334728033472605 0.010171149885506825 0.5334728033472605 0.010171149885506825 0.02569686314695216
+0.5313807531380554 0.013561533180675767 0.5313807531380554 0.013561533180675767 0.029781954109872322
+0.5251046025104401 0.01695191647584471 0.5251046025104401 0.01695191647584471 0.04202100154908029
+0.523012552301235 0.02034229977101365 0.523012552301235 0.02034229977101365 0.04646401610993977
+0.5209205020920299 0.02373268306618259 0.5209205020920299 0.02373268306618259 0.05103912042436209
+0.5188284518828248 0.027123066361351533 0.5188284518828247 0.027123066361351533 0.0557463237493937
+0.5167364016736197 0.030513449656520475 0.5167364016736197 0.030513449656520475 0.06058129328360622
+0.5146443514644146 0.03390383295168942 0.5146443514644146 0.03390383295168942 0.06553469331506619
+0.5125523012552095 0.03729421624685836 0.5125523012552095 0.03729421624685836 0.0705919919890194
+0.5104602510460043 0.0406845995420273 0.5104602510460045 0.0406845995420273 0.07573367168233462
+0.5292887029288503 0.01695191647584471 0.5292887029288503 0.01695191647584471 0.034016323461897646
+0.01017114988550656 0.5376569037656909 0.01017114988550656 0.5376569037656909 0.2248837134597718
+0.013561533180675408 0.5355648535564859 0.013561533180675408 0.5355648535564859 0.22542664052872227
+0.02034229977101312 0.5271966527196659 0.02034229977101312 0.5271966527196659 0.22698993001453108
+0.02373268306618197 0.5251046025104609 0.02373268306618197 0.5251046025104609 0.22767055807748873
+0.027123066361350822 0.5230125523012559 0.027123066361350822 0.5230125523012559 0.22840275973831267
+0.030513449656519642 0.5167364016736409 0.030513449656519642 0.5167364016736409 0.22924017166575303
+0.033903832951688466 0.514644351464436 0.033903832951688466 0.514644351464436 0.23000070103753814
+0.037294216246857276 0.5125523012552312 0.037294216246857276 0.5125523012552312 0.2307836241354577
+0.030513449656519663 0.5209205020920509 0.030513449656519667 0.5209205020920509 0.22917571927831526
+0.016951916475844264 0.5334728033472809 0.016951916475844264 0.5334728033472809 0.22604067370226608
+0.02034229977101312 0.5313807531380759 0.02034229977101312 0.5313807531380759 0.22672203266785543
+0.006780766590337709 0.5439330543933059 0.006780766590337709 0.5439330543933059 0.22382980778352604
+0.01017114988550656 0.5418410041841009 0.01017114988550656 0.5418410041841009 0.22436000304479742
+0.05085574942753409 0.4916317991631813 0.05085574942753409 0.4916317991631813 0.2339711825208293
+0.05085574942753413 0.49581589958159195 0.05085574942753413 0.49581589958159195 0.23391290782204296
+0.054246132722702976 0.4895397489539762 0.054246132722702976 0.4895397489539762 0.23478864471457736
+0.05763651601787173 0.48744769874477106 0.05763651601787173 0.48744769874477106 0.2355954620168105
+0.06102689931304078 0.47698744769874585 0.06102689931304078 0.47698744769874585 0.23686077873220968
+0.06102689931304062 0.48117154811715596 0.06102689931304062 0.48117154811715596 0.2366051697313484
+0.061026899313040436 0.4853556485355661 0.06102689931304044 0.48535564853556606 0.23638598977580413
+0.0406845995420265 0.5062761506276169 0.0406845995420265 0.5062761506276169 0.23154961539185362
+0.0440749828371956 0.5041841004184121 0.0440749828371956 0.5041841004184121 0.2323356026446218
+0.047465366132364746 0.5020920502092073 0.047465366132364746 0.5020920502092073 0.2331197183791576
+0.05085574942753394 0.5000000000000026 0.05085574942753394 0.5000000000000026 0.23389333683314964
+0.040684599542026134 0.5104602510460265 0.040684599542026134 0.5104602510460267 0.2315770933487684
+0.23711826766284552 0.2427176189054011 0.23711826766284552 0.24271761890540108 0.10543418329991462
+0.23375747686252968 0.24478900858069316 0.23375747686252968 0.24478900858069316 0.10259891964712735
+0.213584760689515 0.257323172694536 0.213584760689515 0.257323172694536 0.09323774211058052
+0.21696524154073735 0.25523232607595653 0.21696524154073735 0.25523232607595653 0.09387226876425146
+0.23042388741351283 0.24686709420822456 0.23042388741351286 0.24686709420822453 0.10012341153015648
+0.22706422158782721 0.24895262667598161 0.22706422158782721 0.24895262667598161 0.09799831820972084
+0.2237106326412787 0.2510462679675069 0.2237106326412787 0.2510462679675069 0.09624832092847148
+0.2203413389887645 0.25314071334236565 0.2203413389887645 0.2531407133423657 0.09487253409375025
+0.16612878144920742 0.2949790795084159 0.16612878144920742 0.2949790795084159 0.1144968686191342
+0.16951916473674358 0.2928870292997982 0.16951916473674358 0.2928870292997982 0.11225532290702973
+0.17290954801778155 0.29079497909299584 0.17290954801778155 0.29079497909299584 0.11004214645283243
+0.17629993129662275 0.2845188284863641 0.17629993129662272 0.2845188284863642 0.10531895450555483
+0.1796903145838007 0.2824267782814018 0.1796903145838007 0.2824267782814018 0.10343619346061987
+0.17629993129204338 0.2887029288861758 0.17629993129204338 0.2887029288861758 0.10786488097874429
+0.21358156500579858 0.2615073208170516 0.21358156500579858 0.2615073208170516 0.09277291243482254
+0.21020024411570656 0.2635988357476455 0.21020024411570656 0.2635988357476455 0.09270594448071368
+0.20681283575808976 0.2656904726658831 0.20681283575808976 0.2656904726658831 0.09297553595860092
+0.18308069785954761 0.28033472807240617 0.18308069785954761 0.28033472807240617 0.10162064844153097
+0.18647108112288846 0.27824267784848167 0.18647108112288846 0.27824267784848167 0.09989282182349161
+0.20342295531604512 0.2677824543966047 0.20342295531604512 0.2677824543966047 0.09355333086868377
+0.20003261108274437 0.26987448361224453 0.20003261108274437 0.2698744836122446 0.09440688476953442
+0.19664223062886377 0.2719665278170593 0.19664223062886377 0.2719665278170593 0.09550179098420132
+0.19325184752890537 0.27405857772297565 0.19325184752890537 0.27405857772297565 0.09680326714484881
+0.1898614643484913 0.2761506276263915 0.1898614643484913 0.2761506276263915 0.09827750044079687
+0.14578648169204514 0.31171548117050546 0.14578648169204514 0.31171548117050546 0.1333105935054257
+0.14917686498594326 0.3096234309610129 0.14917686498594326 0.3096234309610129 0.13067624068577374
+0.15256724827858384 0.3075313807523004 0.15256724827858384 0.3075313807523004 0.12808747058044181
+0.15595763156962425 0.3054393305442534 0.15595763156962425 0.3054393305442534 0.12553485121508579
+0.1593480148621901 0.30334728033985975 0.1593480148621901 0.30334728033985975 0.12301024083263035
+0.16273839815278499 0.30125523013562155 0.16273839815278499 0.30125523013562155 0.12050758298347518
+0.16612878144612786 0.2991631799315181 0.16612878144612786 0.29916317993151814 0.11802362085449912
+0.12883456521638112 0.33054393305434837 0.12883456521638112 0.3305439330543484 0.15837099279348407
+0.13222494851150465 0.32845188284517446 0.13222494851150465 0.3284518828451745 0.15523685766443107
+0.1356153318067538 0.32217573221791035 0.1356153318067538 0.32217573221791035 0.14682646010737663
+0.13900571510207996 0.3200836820088319 0.13900571510207996 0.3200836820088319 0.14388548022192882
+0.13561533180662513 0.32635983263608104 0.13561533180662513 0.32635983263608104 0.15215037843497825
+0.14239609839749226 0.31799163179957274 0.14239609839749226 0.31799163179957274 0.1410020342977025
+0.14578648169286826 0.31589958158995673 0.14578648169286826 0.31589958158995673 0.13816914259096014
+0.11527303203574378 0.3472803347280347 0.11527303203574378 0.3472803347280347 0.1822403284746357
+0.11866341533091312 0.3451882845188308 0.11866341533091314 0.3451882845188308 0.17901998812991696
+0.12205379862608802 0.33891213389121 0.12205379862608802 0.33891213389121 0.17030648206314372
+0.12205379862608379 0.3430962343096274 0.12205379862608379 0.3430962343096274 0.17578341120091015
+0.12544418192125975 0.3368200836819917 0.12544418192125975 0.3368200836819917 0.16706912784420522
+0.12883456521642508 0.3347280334727601 0.12883456521642508 0.3347280334727601 0.1638547290805713
+0.0983211155598993 0.3661087866108792 0.0983211155598993 0.3661087866108792 0.20696146918494115
+0.0983211155598993 0.3702928870292892 0.0983211155598993 0.3702928870292892 0.21137916023563094
+0.1017114988550682 0.36401673640167415 0.10171149885506821 0.36401673640167415 0.20435378859582112
+0.10510188215023712 0.36192468619246915 0.10510188215023712 0.36192468619246915 0.20160224857168632
+0.108492265445406 0.3556485355648541 0.10849226544540601 0.35564853556485415 0.1937372870803401
+0.10849226544540601 0.3598326359832641 0.10849226544540601 0.35983263598326415 0.1987287895152707
+0.11188264874057485 0.3535564853556491 0.11188264874057485 0.35355648535564915 0.19067614783338646
+0.1152730320357437 0.3514644351464442 0.1152730320357437 0.3514644351464442 0.18754852086862053
+0.08814996567439248 0.38493723849372435 0.08814996567439248 0.38493723849372435 0.22480180231667182
+0.09154034896956142 0.38284518828451936 0.09154034896956142 0.38284518828451936 0.22322544923729817
+0.09493073226473037 0.3765690376569042 0.09493073226473037 0.3765690376569042 0.21769356802497733
+0.0983211155598993 0.3744769874476992 0.0983211155598993 0.3744769874476992 0.21553909058597862
+0.09493073226473037 0.38075313807531425 0.09493073226473037 0.38075313807531425 0.22142709054980392
+0.08814996567439248 0.38912133891213446 0.08814996567439248 0.38912133891213446 0.22792790033077817
+0.0813691990840546 0.4016736401673647 0.0813691990840546 0.4016736401673647 0.23478697899236448
+0.08814996567439248 0.39330543933054457 0.08814996567439248 0.39330543933054457 0.2307521112345867
+0.08475958237922354 0.3995815899581597 0.08475958237922354 0.3995815899581597 0.2341480285453923
+0.08814996567439248 0.3974895397489546 0.08814996567439248 0.3974895397489546 0.23327194821493877
+0.0813691990840546 0.4058577405857748 0.0813691990840546 0.4058577405857748 0.23671496179042392
+0.07119804919854777 0.42887029288703005 0.07119804919854777 0.42887029288703005 0.24057079819979157
+0.07797881578888566 0.4121338912133899 0.07797881578888566 0.4121338912133899 0.2384953423985073
+0.0813691990840546 0.4100418410041849 0.0813691990840546 0.4100418410041849 0.23835767608218658
+0.07458843249371672 0.41841004184100494 0.07458843249371672 0.418410041841005 0.2395538287390824
+0.07797881578888566 0.41631799163179994 0.07797881578888566 0.4163179916318 0.23974454063809422
+0.07458843249371672 0.422594142259415 0.07458843249371672 0.422594142259415 0.24045209992288327
+0.07458843249371672 0.42677824267782505 0.07458843249371672 0.42677824267782505 0.24112483720872224
+0.06780766590337883 0.44351464435146504 0.06780766590337883 0.44351464435146504 0.24043063670089512
+0.06780766590337883 0.44769874476987503 0.06780766590337883 0.44769874476987503 0.24035198382406106
+0.07119804919854777 0.43305439330544004 0.07119804919854777 0.43305439330544004 0.24097191052285707
+0.07119804919854777 0.43723849372385004 0.07119804919854777 0.43723849372385004 0.24119779884005868
+0.07119804919854777 0.44142259414226004 0.07119804919854777 0.44142259414226004 0.24127004931420445
+0.06780766590337883 0.4518828451882851 0.06780766590337883 0.4518828451882851 0.24017447370218906
+0.06780766590337883 0.4560669456066952 0.06780766590337883 0.4560669456066952 0.23992005718036613
+0.06441728260820989 0.46234309623431047 0.06441728260820989 0.46234309623431047 0.23868824927378027
+0.06780766590337883 0.4602510460251053 0.06780766590337883 0.4602510460251053 0.23961018717734936
+0.06441728260820989 0.46652719665272063 0.06441728260820989 0.46652719665272063 0.23836906867773178
+0.06441728260820986 0.47071129707113074 0.06441728260820988 0.47071129707113074 0.23804025633797035
+0.06441728260820977 0.47489539748954085 0.06441728260820977 0.47489539748954085 0.23771874401008983
+0.24082118434551525 0.24062873120535624 0.24082118434551525 0.24062873120535627 0.1088793304142358
+0.24040261439710636 0.24473581455951943 0.24040261439710633 0.2447358145595194 0.10677623546138747
+0.2531494452835587 0.22036676353077478 0.2531494452835587 0.2203667635307748 0.13158175449134077
+0.243031986233624 0.23715263157024563 0.24303198623362396 0.23715263157024566 0.1122242788779838
+0.25107187972486283 0.2237553657269542 0.25107187972486283 0.2237553657269542 0.12724846839949974
+0.2449930114425166 0.23389690188338477 0.2449930114425166 0.23389690188338477 0.11555933594374047
+0.24901752315359718 0.22714413863272845 0.24901752315359718 0.22714413863272845 0.1231142709691515
+0.24698269056816544 0.23053147187909104 0.24698269056816544 0.23053147187909104 0.11919974039397997
+0.27405857740582856 0.19325184782462912 0.27405857740582856 0.19325184782462912 0.17392800024635668
+0.2719665271966239 0.1966422311197988 0.2719665271966239 0.1966422311197988 0.16918624859700107
+0.26987447698741834 0.20003261441496856 0.26987447698741834 0.20003261441496853 0.16436259890000615
+0.2677824284628281 0.20342292511090385 0.2677824284628281 0.20342292511090385 0.15948950541073506
+0.2656903900635274 0.20681276695600828 0.2656903900635274 0.20681276695600828 0.1546008170495753
+0.26359851847858357 0.21020141131625023 0.26359851847858357 0.21020141131625023 0.14973129500611757
+0.2615071368864791 0.21358808982741814 0.26150713688647903 0.21358808982741814 0.1449157031607372
+0.25941714489185297 0.21697227913151404 0.25941714489185297 0.21697227913151404 0.14018833914800288
+0.25733056384748293 0.2203558578240323 0.25733056384748293 0.2203558578240323 0.13558130472268914
+0.30543933054390365 0.15595763157777126 0.30543933054390365 0.1559576315777713 0.22308433757526683
+0.30334728033469865 0.1593480148729402 0.30334728033469865 0.15934801487294023 0.22070335900032387
+0.30125523012549366 0.16273839816810917 0.30125523012549366 0.16273839816810917 0.2180838348769543
+0.2991631799162887 0.16612878146327822 0.29916317991628866 0.16612878146327822 0.21521445349837795
+0.2928870292886729 0.16951916475844772 0.2928870292886729 0.16951916475844772 0.20740931874463883
+0.2907949790794672 0.17290954805361683 0.2907949790794672 0.17290954805361683 0.20396701171906217
+0.28870292887026144 0.17629993134878577 0.28870292887026144 0.17629993134878577 0.20028383789588955
+0.2866108786610556 0.1796903146439545 0.28661087866105556 0.1796903146439545 0.19636873887869666
+0.28451882845185 0.18308069793912288 0.28451882845185 0.18308069793912288 0.1922354796761476
+0.282426778242645 0.18647108123429104 0.282426778242645 0.18647108123429104 0.18790233673651327
+0.28033472803344067 0.18986146452945926 0.28033472803344067 0.18986146452945926 0.18339168544544668
+0.2782426778242371 0.19325184782462776 0.2782426778242371 0.19325184782462776 0.17872950188908818
+0.29707112970708366 0.1695191647584474 0.29707112970708366 0.1695191647584474 0.21208880661329563
+0.3263598326359547 0.13561533180675767 0.3263598326359547 0.13561533180675767 0.23949495781559724
+0.3242677824267496 0.1390057151019266 0.32426778242674953 0.1390057151019266 0.23848009921781652
+0.3221757322175445 0.14239609839709555 0.3221757322175445 0.14239609839709555 0.23735100515441862
+0.313807531380724 0.14917686498743343 0.313807531380724 0.14917686498743343 0.23103352920657572
+0.32008368200833937 0.1457864816922645 0.3200836820083394 0.1457864816922645 0.236078957298237
+0.31799163179913426 0.14917686498743343 0.31799163179913426 0.14917686498743343 0.234635462198143
+0.31171548117151887 0.15256724828260235 0.31171548117151887 0.15256724828260235 0.22922669867954007
+0.30962343096231376 0.15595763157777123 0.30962343096231376 0.15595763157777123 0.2272065162367369
+0.35774058577403134 0.11188264874057507 0.3577405857740313 0.11188264874057507 0.24770192122405302
+0.35564853556482623 0.11527303203574402 0.35564853556482623 0.11527303203574402 0.24776084033492193
+0.3535564853556211 0.11866341533091296 0.3535564853556212 0.11866341533091296 0.2478355710605004
+0.351464435146416 0.1220537986260819 0.351464435146416 0.1220537986260819 0.24792319468295634
+0.3493723849372109 0.12544418192125084 0.34937238493721084 0.12544418192125084 0.24801369190426012
+0.3472803347280058 0.12883456521641978 0.3472803347280058 0.12883456521641978 0.24809039794068274
+0.33263598326357 0.13222494851158872 0.33263598326356997 0.13222494851158872 0.24278684653501736
+0.33682008368198024 0.13222494851158872 0.3368200836819803 0.13222494851158872 0.24485379191981596
+0.34100418410039046 0.13222494851158872 0.3410041841003904 0.13222494851158872 0.24663192360316719
+0.3451882845188007 0.13222494851158872 0.34518828451880074 0.13222494851158872 0.24813076943840665
+0.3305439330543649 0.13561533180675767 0.3305439330543649 0.13561533180675767 0.24206880044587264
+0.36401673640164667 0.10849226544540613 0.36401673640164667 0.10849226544540613 0.24725915270421914
+0.36192468619244156 0.11188264874057507 0.3619246861924416 0.11188264874057507 0.24751712397662237
+0.3682008368200569 0.10849226544540613 0.3682008368200569 0.10849226544540613 0.24657799455475016
+0.3974895397489284 0.08814996567439248 0.3974895397489284 0.08814996567439248 0.23400877655552102
+0.3953974895397233 0.09154034896956142 0.39539748953972337 0.09154034896956142 0.23529652986599922
+0.3933054393305182 0.09493073226473037 0.3933054393305182 0.09493073226473037 0.23651108294532316
+0.3912133891213131 0.09832111555989931 0.39121338912131304 0.09832111555989931 0.23768765662691002
+0.389121338912108 0.10171149885506825 0.389121338912108 0.10171149885506825 0.23885955421604385
+0.3723849372384671 0.10849226544540613 0.3723849372384671 0.10849226544540613 0.245626824651647
+0.3765690376568773 0.10849226544540613 0.3765690376568773 0.10849226544540613 0.2444210422605849
+0.38284518828449265 0.10510188215023719 0.3828451882844926 0.10510188215023719 0.2419256421905824
+0.3870292887029029 0.10510188215023719 0.38702928870290293 0.10510188215023719 0.24005640858888247
+0.38075313807528754 0.10849226544540613 0.38075313807528754 0.10849226544540613 0.24297519429089598
+0.4184100418409795 0.0813691990840546 0.41841004184097946 0.0813691990840546 0.2175092392839122
+0.40376569037654375 0.08475958237922354 0.4037656903765438 0.08475958237922354 0.22960874861390526
+0.40794979079495397 0.08475958237922354 0.4079497907949539 0.08475958237922354 0.22642032759166583
+0.4121338912133642 0.08475958237922354 0.41213389121336425 0.08475958237922354 0.22305630687440647
+0.4163179916317744 0.08475958237922354 0.41631799163177435 0.08475958237922354 0.2195237045011402
+0.40167364016733864 0.08814996567439248 0.4016736401673386 0.08814996567439248 0.23113408993030812
+0.4393305439330306 0.07458843249371672 0.4393305439330306 0.07458843249371672 0.19590534184045957
+0.42468619246859485 0.07797881578888566 0.4246861924685948 0.07797881578888566 0.2114224761055273
+0.42887029288700507 0.07797881578888566 0.4288702928870051 0.07797881578888566 0.20733757392755534
+0.4330543933054153 0.07797881578888566 0.43305439330541523 0.07797881578888566 0.20309157272789413
+0.4372384937238255 0.07797881578888566 0.43723849372382556 0.07797881578888566 0.198682134984739
+0.42259414225938974 0.0813691990840546 0.42259414225938974 0.0813691990840546 0.2136967489249557
+0.44560669456064594 0.07119804919854777 0.445606694560646 0.07119804919854777 0.18813781649347747
+0.44979079497905616 0.07119804919854777 0.4497907949790561 0.07119804919854777 0.1831567640709315
+0.4539748953974664 0.07119804919854777 0.45397489539746644 0.07119804919854777 0.17798868993964148
+0.44351464435144083 0.07458843249371672 0.4435146443514409 0.07458843249371672 0.19121487445640137
+0.4769874476987226 0.054246132722703067 0.47698744769872264 0.054246132722703067 0.14003350063364162
+0.47071129707110726 0.05763651601787201 0.4707112970711073 0.05763651601787201 0.15088783089561073
+0.4748953974895175 0.05763651601787201 0.4748953974895174 0.05763651601787201 0.1446251257028206
+0.4581589958158766 0.07119804919854777 0.45815899581587655 0.07119804919854777 0.17262392894670672
+0.46861924686190215 0.06102689931304095 0.4686192468619021 0.06102689931304095 0.1552128673409399
+0.46652719665269704 0.06441728260820989 0.466527196652697 0.06441728260820989 0.15935567891841917
+0.46443514644349193 0.06780766590337883 0.46443514644349193 0.06780766590337883 0.16330363574689888
+0.4623430962342868 0.07119804919854777 0.4623430962342869 0.07119804919854777 0.167051637397907
+0.4811715481171328 0.054246132722703067 0.4811715481171328 0.054246132722703067 0.13343236585697762
+0.485355648535543 0.054246132722703067 0.48535564853554297 0.054246132722703067 0.1265875737732268
+0.49163179916315836 0.050855749427534125 0.4916317991631583 0.050855749427534125 0.11449775623969739
+0.48953974895395325 0.054246132722703067 0.48953974895395325 0.054246132722703067 0.11949071020437985
+0.4958158995815686 0.050855749427534125 0.49581589958156863 0.050855749427534125 0.1070610948239822
+0.5020920502091839 0.04746536613236518 0.5020920502091838 0.04746536613236518 0.09417614004081452
+0.4999999999999788 0.050855749427534125 0.49999999999997874 0.050855749427534125 0.0993658075949076
+0.5083682008367992 0.04407498283719624 0.5083682008367992 0.04407498283719624 0.08093577895326322
+0.5062761506275941 0.04746536613236518 0.5062761506275941 0.04746536613236518 0.08617074969692401
+0.5397489539748759 0.006780766590337883 0.5397489539748759 0.006780766590337883 0.014689372075677056
+0.5439330543932861 0.006780766590337883 0.5439330543932862 0.006780766590337883 0.009804477500276703
+0.5376569037656708 0.010171149885506825 0.5376569037656708 0.010171149885506825 0.018166731957834286
+0.5355648535564657 0.013561533180675767 0.5355648535564655 0.013561533180675767 0.021985111742455158
+0.5334728033472605 0.01695191647584471 0.5334728033472605 0.01695191647584471 0.02604143973077495
+0.5271966527196452 0.02034229977101365 0.5271966527196453 0.02034229977101365 0.038393975680711796
+0.5251046025104401 0.02373268306618259 0.5251046025104401 0.02373268306618259 0.042913091283543
+0.523012552301235 0.027123066361351533 0.523012552301235 0.027123066361351533 0.04757184922657204
+0.5209205020920299 0.030513449656520475 0.5209205020920299 0.030513449656520475 0.05236593446050495
+0.5188284518828248 0.03390383295168942 0.5188284518828247 0.03390383295168942 0.05728709132963899
+0.5167364016736197 0.03729421624685836 0.5167364016736197 0.03729421624685836 0.06232241211886865
+0.5146443514644146 0.0406845995420273 0.5146443514644146 0.0406845995420273 0.06745418484997794
+0.5125523012552095 0.04407498283719624 0.5125523012552095 0.04407498283719624 0.07266018083119861
+0.5313807531380554 0.02034229977101365 0.5313807531380554 0.02034229977101365 0.03028883836759123
+0.006780766590337709 0.5481171548117159 0.006780766590337709 0.5481171548117159 0.22315856088247402
+0.013561533180675408 0.5397489539748959 0.013561533180675408 0.5397489539748959 0.22496520467155676
+0.016951916475844264 0.5376569037656909 0.016951916475844264 0.5376569037656909 0.22564471005076778
+0.02373268306618197 0.5292887029288709 0.02373268306618197 0.5292887029288709 0.22746344292547646
+0.027123066361350822 0.5271966527196659 0.027123066361350822 0.5271966527196659 0.22825470777390047
+0.03051344965651967 0.5251046025104609 0.03051344965651967 0.5251046025104609 0.22908340159678434
+0.03390383295168848 0.5188284518828459 0.03390383295168848 0.5188284518828459 0.22997714931019073
+0.03729421624685729 0.516736401673641 0.0372942162468573 0.516736401673641 0.23079403971092294
+0.040684599542026086 0.5146443514644361 0.040684599542026086 0.514644351464436 0.23161342033838953
+0.03390383295168851 0.5230125523012559 0.03390383295168851 0.5230125523012559 0.22993564941098263
+0.02034229977101312 0.5355648535564859 0.02034229977101312 0.5355648535564859 0.22639360975114467
+0.02373268306618197 0.5334728033472809 0.02373268306618197 0.5334728033472809 0.22720326104450184
+0.01017114988550656 0.5460251046025109 0.01017114988550656 0.5460251046025109 0.22375121762142222
+0.013561533180675408 0.5439330543933059 0.013561533180675408 0.5439330543933059 0.22442349548468513
+0.006780766590337709 0.5523012552301259 0.006780766590337709 0.5523012552301259 0.2223910793558673
+0.05424613272270314 0.4937238493723866 0.05424613272270314 0.4937238493723866 0.23469662762513518
+0.0542461327227031 0.4979079497907975 0.0542461327227031 0.4979079497907975 0.23464960718669783
+0.057636516017872036 0.49163179916318134 0.05763651601787203 0.49163179916318134 0.23546462193280607
+0.06102689931304076 0.4895397489539762 0.06102689931304076 0.4895397489539762 0.23621297706912156
+0.06441728260820956 0.47907949790795096 0.06441728260820956 0.47907949790795096 0.23741972067243242
+0.06441728260820931 0.4832635983263611 0.06441728260820932 0.48326359832636107 0.23715641418556488
+0.06441728260820938 0.48744769874477106 0.06441728260820938 0.48744769874477106 0.2369399047335546
+0.044074982837195166 0.508368200836822 0.044074982837195166 0.5083682008368219 0.23236976459867523
+0.04746536613236423 0.5062761506276173 0.04746536613236423 0.5062761506276173 0.23315143382206172
+0.0508557494275334 0.5041841004184129 0.0508557494275334 0.5041841004184128 0.23391360247868478
+0.05424613272270268 0.5020920502092082 0.05424613272270268 0.5020920502092082 0.23464994774501544
+0.044074982837194916 0.5125523012552314 0.044074982837194916 0.5125523012552314 0.23242310274150488
+0.24336088038499137 0.24353677190404016 0.24336088038499137 0.24353677190404016 0.10943718183384774
+0.23706685054326768 0.24682256064071786 0.23706685054326768 0.24682256064071786 0.1037523520329552
+0.233718871100541 0.24890691643069104 0.233718871100541 0.24890691643069104 0.10105698941275705
+0.21695685978541213 0.2594161618474358 0.21695685978541213 0.2594161618474358 0.09319909492474586
+0.22032688373431206 0.2573242168691588 0.22032688373431206 0.2573242168691588 0.09400104913795665
+0.23038482639490723 0.25100967210081715 0.23038482639490723 0.2510096721008171 0.09872620550225109
+0.2270426487753594 0.2531195480777026 0.2270426487753594 0.2531195480777026 0.09676589060858513
+0.22369044998659882 0.25522662400437063 0.22369044998659882 0.25522662400437063 0.09518921571143862
+0.24039033188453665 0.24886372127201262 0.24039033188453665 0.24886372127201262 0.1053124469140471
+0.24358870491241535 0.24688127126348564 0.24358870491241538 0.2468812712634856 0.10835619406311454
+0.1695191647366129 0.2970711297259134 0.1695191647366129 0.2970711297259134 0.1155585132880254
+0.17290954802576644 0.2949790795174805 0.17290954802576644 0.2949790795174805 0.11311633999732558
+0.1762999313054786 0.2928870293091186 0.1762999313054786 0.2928870293091186 0.11070548645195953
+0.1796903145668268 0.286610878701893 0.1796903145668268 0.286610878701893 0.1057356617663072
+0.18308069783357572 0.2845188285211486 0.18308069783357572 0.2845188285211486 0.10367130324484454
+0.1796903145720238 0.2907949791045727 0.1796903145720238 0.2907949791045727 0.10833889933241181
+0.21694916572110237 0.2635984471455206 0.21694916572110237 0.2635984471455206 0.0928761724950418
+0.2135796205636161 0.2656912994861802 0.2135796205636161 0.2656912994861802 0.09265863607632964
+0.21019986324214882 0.26778317693021375 0.21019986324214882 0.26778317693021375 0.09280984612082067
+0.2068126678839499 0.2698748784828137 0.2068126678839499 0.2698748784828137 0.09330649832298167
+0.1864710811086839 0.28242677832106916 0.1864710811086839 0.28242677832106916 0.1016932241242992
+0.18986146437119575 0.2803347281518119 0.18986146437119575 0.2803347281518119 0.09982719241127756
+0.2034229245679352 0.2719666403255223 0.20342292456793523 0.2719666403255223 0.09411886083888554
+0.20003260366429035 0.2740585988042286 0.20003260366429035 0.2740585988042286 0.09521303255228518
+0.1966422306537808 0.27615062933807233 0.1966422306537808 0.2761506293380723 0.0965531034689124
+0.19325184757068573 0.27824267897173477 0.19325184757068573 0.27824267897173477 0.09810286618012143
+0.1491768649879193 0.31380753137991135 0.1491768649879193 0.31380753137991135 0.13537857067166728
+0.15256724828216392 0.31171548116966113 0.15256724828216392 0.31171548116966113 0.1326216576132039
+0.1559576315748936 0.30962343095994554 0.1559576315748936 0.30962343095994554 0.12989015875604526
+0.15934801486519648 0.30753138075174963 0.15934801486519648 0.30753138075174963 0.1271770690862224
+0.1627383981524103 0.3054393305448612 0.1627383981524103 0.3054393305448612 0.12447739824217628
+0.1661287814424336 0.3033472803448737 0.1661287814424336 0.3033472803448736 0.12178887400372233
+0.16951916472876785 0.3012552301451909 0.16951916472876785 0.3012552301451909 0.1191125567282492
+0.13222494851157252 0.3326359832635186 0.13222494851157252 0.3326359832635186 0.1606689830648509
+0.13561533180668756 0.33054393305429147 0.13561533180668753 0.33054393305429147 0.15751427756852723
+0.13900571510178622 0.3242677824271013 0.13900571510178625 0.32426778242710125 0.1491101841158797
+0.14239609839706122 0.32217573221821133 0.14239609839706122 0.32217573221821133 0.14611231528759586
+0.13900571510176477 0.3284518828451358 0.13900571510176477 0.3284518828451359 0.15439004258172218
+0.14578648169252137 0.32008368200927034 0.14578648169252137 0.32008368200927034 0.14315087189964584
+0.14917686498815116 0.3179916317999943 0.14917686498815116 0.3179916317999943 0.14021874919692776
+0.11866341533091244 0.3493723849372395 0.11866341533091244 0.3493723849372395 0.18437263503312443
+0.12205379862608123 0.3472803347280357 0.12205379862608123 0.3472803347280357 0.18116408013219656
+0.12544418192125703 0.34100418410042216 0.12544418192125703 0.34100418410042216 0.17254330849825283
+0.1254441819212508 0.3451882845188336 0.1254441819212508 0.3451882845188336 0.17793550042581188
+0.12883456521643347 0.3389121338912091 0.12883456521643347 0.3389121338912091 0.16930907952307872
+0.13222494851161 0.33682008368197786 0.13222494851161 0.33682008368197786 0.16608682261533356
+0.1017114988550682 0.3682008368200842 0.10171149885506821 0.3682008368200842 0.20890361466589732
+0.1017114988550682 0.3723849372384942 0.10171149885506821 0.3723849372384942 0.21320154211729703
+0.10510188215023712 0.36610878661087914 0.10510188215023712 0.36610878661087914 0.2062736424207687
+0.10849226544540598 0.36401673640167415 0.10849226544540598 0.36401673640167415 0.20351004559793215
+0.11188264874057488 0.3577405857740591 0.11188264874057487 0.35774058577405915 0.19575454323033917
+0.1118826487405749 0.3619246861924691 0.1118826487405749 0.36192468619246915 0.20063298514665381
+0.1152730320357438 0.35564853556485415 0.1152730320357438 0.35564853556485415 0.19269919321407417
+0.11866341533091264 0.35355648535564904 0.11866341533091264 0.35355648535564904 0.18958042637938743
+0.09154034896956142 0.38702928870292946 0.09154034896956142 0.38702928870292946 0.22650924294780303
+0.09493073226473037 0.38493723849372435 0.09493073226473037 0.38493723849372435 0.22486662683831174
+0.0983211155598993 0.37866108786610925 0.0983211155598993 0.37866108786610925 0.2194221278487574
+0.1017114988550682 0.3765690376569042 0.10171149885506821 0.3765690376569042 0.21722767491392983
+0.09832111555989931 0.38284518828451936 0.09832111555989931 0.38284518828451936 0.2230139584874152
+0.09154034896956142 0.39121338912133957 0.09154034896956142 0.39121338912133957 0.22948994398559688
+0.08475958237922354 0.4037656903765698 0.08475958237922354 0.4037656903765698 0.23621786174405202
+0.09154034896956142 0.3953974895397496 0.09154034896956142 0.3953974895397496 0.23216420225710824
+0.08814996567439248 0.4016736401673647 0.08814996567439248 0.4016736401673647 0.23548914892911035
+0.09154034896956142 0.3995815899581597 0.09154034896956142 0.3995815899581597 0.23453295720247588
+0.08475958237922354 0.4079497907949799 0.08475958237922354 0.4079497907949799 0.23799586345616205
+0.07458843249371672 0.43096234309623505 0.07458843249371672 0.43096234309623505 0.24159094165791437
+0.0813691990840546 0.41422594142259495 0.0813691990840546 0.414225941422595 0.23972564167044433
+0.08475958237922354 0.4121338912133899 0.08475958237922354 0.4121338912133899 0.23949195604388843
+0.07797881578888566 0.42050209205020994 0.07797881578888566 0.42050209205021 0.24074144596895872
+0.0813691990840546 0.41841004184100494 0.0813691990840546 0.418410041841005 0.24083244446323207
+0.07797881578888566 0.42468619246862 0.07797881578888566 0.42468619246862 0.24150265556184894
+0.07797881578888566 0.42887029288703005 0.07797881578888566 0.42887029288703005 0.24204693550424242
+0.07119804919854777 0.44560669456067004 0.07119804919854777 0.44560669456067004 0.241210974935038
+0.07119804919854777 0.4497907949790801 0.07119804919854777 0.4497907949790801 0.24104322177803447
+0.07458843249371672 0.43514644351464504 0.07458843249371672 0.43514644351464504 0.24187096327419008
+0.07458843249371672 0.43933054393305504 0.07458843249371672 0.43933054393305504 0.2419866897725597
+0.07458843249371672 0.44351464435146504 0.07458843249371672 0.44351464435146504 0.2419607370143184
+0.07119804919854777 0.4539748953974902 0.07119804919854777 0.4539748953974902 0.2407893876889061
+0.07119804919854777 0.4581589958159003 0.07119804919854777 0.4581589958159003 0.24047165802090373
+0.06780766590337883 0.46443514644351547 0.06780766590337883 0.46443514644351547 0.23926548292969227
+0.07119804919854777 0.46234309623431047 0.07119804919854777 0.46234309623431047 0.24011146254013163
+0.0678076659033788 0.4686192468619257 0.06780766590337882 0.46861924686192574 0.2389054179793639
+0.06780766590337874 0.47280334728033585 0.06780766590337874 0.47280334728033585 0.2385480347128732
+0.0678076659033785 0.47698744769874596 0.0678076659033785 0.47698744769874596 0.2382096876791336
+0.24511636743591683 0.2407265445070785 0.24511636743591683 0.2407265445070785 0.11210341010806622
+0.2552479382255922 0.22374782010163896 0.25524793822559216 0.22374782010163896 0.1311184232272328
+0.2471495205861286 0.23736495539791325 0.24714952058612863 0.23736495539791322 0.11541159299015184
+0.25317956462594987 0.22713802568230831 0.25317956462594987 0.22713802568230831 0.12684280935368045
+0.24909142502236983 0.23394359595903239 0.24909142502236983 0.23394359595903239 0.11893088468699338
+0.2511229615805762 0.23053996498078222 0.2511229615805762 0.23053996498078222 0.12276853645353313
+0.276150627615034 0.19664223111979692 0.276150627615034 0.19664223111979692 0.17394479206518862
+0.27405857740583045 0.20003261441496678 0.27405857740583045 0.20003261441496675 0.1690689616243587
+0.2719665314327257 0.2034228037691925 0.2719665314327257 0.2034228037691925 0.16413531046370045
+0.26987453975185643 0.2068119434649033 0.26987453975185643 0.2068119434649033 0.15917879940102406
+0.26778280360172374 0.21019872689063893 0.26778280360172374 0.21019872689063893 0.15423532835228249
+0.26569124221041207 0.21358217976228663 0.26569124221041207 0.21358217976228663 0.14933987676914093
+0.2594253645989677 0.22371974464051733 0.2594253645989677 0.22371974464051733 0.13526966353684755
+0.26359990346856726 0.2169615446410018 0.26359990346856726 0.2169615446410018 0.14452638224940248
+0.2615104237031112 0.2203382783120795 0.2615104237031112 0.2203382783120795 0.13982723714977707
+0.3075313807531087 0.15934801487294006 0.30753138075310865 0.15934801487294006 0.22495255276466927
+0.3054393305439037 0.1627383981681089 0.30543933054390365 0.1627383981681089 0.22244842150687646
+0.30334728033469877 0.1661287814632778 0.30334728033469877 0.1661287814632778 0.21968236616521256
+0.30125523012549377 0.16951916475844683 0.30125523012549377 0.16951916475844683 0.21664767673605032
+0.2949790794978784 0.17290954805361658 0.2949790794978784 0.17290954805361658 0.20870563044830623
+0.2928870292886729 0.17629993134878594 0.2928870292886729 0.17629993134878594 0.20506888759009811
+0.2907949790794669 0.17969031464395513 0.2907949790794669 0.17969031464395513 0.20118770075885326
+0.2887029288702606 0.18308069793912404 0.28870292887026056 0.18308069793912404 0.19707615178715532
+0.2866108786610543 0.18647108123429254 0.2866108786610542 0.18647108123429254 0.1927529606351361
+0.2845188284518484 0.18986146452946048 0.28451882845184834 0.18986146452946048 0.18824106014086772
+0.28242677824264345 0.1932518478246281 0.28242677824264345 0.1932518478246281 0.18356708220613857
+0.28033472803344 0.1966422311197957 0.28033472803344 0.1966422311197957 0.17876076902374918
+0.2991631799162889 0.1729095480536159 0.2991631799162889 0.1729095480536159 0.2133429359430434
+0.3284518828451598 0.1390057151019266 0.32845188284515986 0.1390057151019266 0.2412607252281167
+0.3263598326359547 0.14239609839709555 0.3263598326359547 0.14239609839709555 0.24033364395692072
+0.3242677824267496 0.1457864816922645 0.32426778242674953 0.1457864816922645 0.23925759574996763
+0.3158995815899291 0.15256724828260237 0.3158995815899291 0.15256724828260237 0.23299342794640968
+0.3221757322175445 0.14917686498743343 0.3221757322175445 0.14917686498743343 0.238002902657084
+0.32008368200833937 0.15256724828260237 0.3200836820083394 0.15256724828260237 0.23654137019275098
+0.313807531380724 0.1559576315777713 0.313807531380724 0.1559576315777713 0.23112823389911688
+0.3117154811715188 0.15934801487294017 0.3117154811715188 0.15934801487294017 0.22901866148446917
+0.35983263598323645 0.11527303203574402 0.35983263598323645 0.11527303203574402 0.24779526119432682
+0.35774058577403134 0.11866341533091296 0.3577405857740313 0.11866341533091296 0.24809720396950688
+0.35564853556482623 0.1220537986260819 0.35564853556482623 0.1220537986260819 0.24841916707755593
+0.3535564853556211 0.12544418192125084 0.3535564853556212 0.12544418192125084 0.2487500606635202
+0.351464435146416 0.12883456521641978 0.351464435146416 0.12883456521641978 0.24907196788976527
+0.3493723849372109 0.13222494851158872 0.34937238493721084 0.13222494851158872 0.24936094281161855
+0.33472803347277513 0.13561533180675767 0.33472803347277513 0.13561533180675767 0.24435712065648582
+0.33891213389118535 0.13561533180675767 0.33891213389118535 0.13561533180675767 0.24636704921442074
+0.34309623430959557 0.13561533180675767 0.34309623430959557 0.13561533180675767 0.24810740926319505
+0.3472803347280058 0.13561533180675767 0.3472803347280058 0.13561533180675767 0.24958807199756602
+0.33263598326357 0.1390057151019266 0.33263598326356997 0.1390057151019266 0.2437678916285639
+0.3661087866108518 0.11188264874057507 0.3661087866108517 0.11188264874057507 0.24704741576960484
+0.36401673640164667 0.11527303203574402 0.36401673640164667 0.11527303203574402 0.2475466538475307
+0.370292887029262 0.11188264874057507 0.37029288702926205 0.11188264874057507 0.2463080578505891
+0.39958158995813353 0.09154034896956142 0.3995815899581335 0.09154034896956142 0.2325594903803143
+0.3974895397489284 0.09493073226473037 0.3974895397489284 0.09493073226473037 0.2339212430510567
+0.3953974895397233 0.09832111555989931 0.39539748953972337 0.09832111555989931 0.2352555086063853
+0.3933054393305182 0.10171149885506825 0.3933054393305182 0.10171149885506825 0.2365964824050144
+0.3912133891213131 0.10510188215023719 0.39121338912131304 0.10510188215023719 0.23797458222534965
+0.3744769874476722 0.11188264874057507 0.37447698744767216 0.11188264874057507 0.24531389654582791
+0.37866108786608244 0.11188264874057507 0.3786610878660825 0.11188264874057507 0.24407887722737118
+0.38493723849369776 0.10849226544540613 0.38493723849369776 0.10849226544540613 0.2413025531005957
+0.389121338912108 0.10849226544540613 0.389121338912108 0.10849226544540613 0.23941475856623698
+0.38284518828449265 0.11188264874057507 0.3828451882844926 0.11188264874057507 0.2426156147884124
+0.42050209205018463 0.08475958237922354 0.4205020920501847 0.08475958237922354 0.21582735255413052
+0.40585774058574886 0.08814996567439248 0.40585774058574886 0.08814996567439248 0.22807248293017882
+0.4100418410041591 0.08814996567439248 0.41004184100415914 0.08814996567439248 0.22483329277562838
+0.4142259414225693 0.08814996567439248 0.4142259414225693 0.08814996567439248 0.22142375301545478
+0.4184100418409795 0.08814996567439248 0.41841004184097946 0.08814996567439248 0.2178488969209387
+0.40376569037654375 0.09154034896956142 0.4037656903765438 0.09154034896956142 0.22963292937267984
+0.4414225941422357 0.07797881578888566 0.44142259414223567 0.07797881578888566 0.19410489906947384
+0.42677824267779996 0.0813691990840546 0.4267782426778 0.0813691990840546 0.2097236341979822
+0.4309623430962102 0.0813691990840546 0.4309623430962102 0.0813691990840546 0.20559000764011257
+0.4351464435146204 0.0813691990840546 0.43514644351462034 0.0813691990840546 0.20129383351591432
+0.4393305439330306 0.0813691990840546 0.4393305439330306 0.0813691990840546 0.19683102601905153
+0.42468619246859485 0.08475958237922354 0.4246861924685948 0.08475958237922354 0.2119698542552753
+0.44769874476985105 0.07458843249371672 0.44769874476985105 0.07458843249371672 0.18634824439355183
+0.4518828451882613 0.07458843249371672 0.4518828451882612 0.07458843249371672 0.1812973006704248
+0.4560669456066715 0.07458843249371672 0.4560669456066715 0.07458843249371672 0.1760524165850366
+0.44560669456064594 0.07797881578888566 0.445606694560646 0.07797881578888566 0.18935361418804342
+0.4790794979079277 0.05763651601787201 0.47907949790792775 0.05763651601787201 0.13812656638385026
+0.47280334728031237 0.06102689931304095 0.47280334728031237 0.06102689931304095 0.14906063462670474
+0.4769874476987226 0.06102689931304095 0.47698744769872264 0.06102689931304095 0.14267239772278376
+0.4602510460250817 0.07458843249371672 0.46025104602508177 0.07458843249371672 0.17060271262137847
+0.47071129707110726 0.06441728260820989 0.4707112970711073 0.06441728260820989 0.15331966862631782
+0.46861924686190215 0.06780766590337883 0.4686192468619021 0.06780766590337883 0.15738832214934517
+0.46652719665269704 0.07119804919854777 0.466527196652697 0.07119804919854777 0.16126004031180718
+0.46443514644349193 0.07458843249371672 0.46443514644349193 0.07458843249371672 0.16493629895796832
+0.4832635983263379 0.05763651601787201 0.48326359832633786 0.05763651601787201 0.1313821634526171
+0.48744769874474814 0.05763651601787201 0.4874476987447482 0.05763651601787201 0.12438230734798528
+0.49372384937236347 0.054246132722703067 0.4937238493723635 0.054246132722703067 0.11213416224982597
+0.49163179916315836 0.05763651601787201 0.4916317991631583 0.05763651601787201 0.11711806556228134
+0.4979079497907737 0.054246132722703067 0.4979079497907737 0.054246132722703067 0.10451141571287915
+0.504184100418389 0.050855749427534125 0.504184100418389 0.050855749427534125 0.09140844720146447
+0.5020920502091839 0.054246132722703067 0.5020920502091838 0.054246132722703067 0.09661735519431593
+0.5104602510460043 0.04746536613236518 0.5104602510460045 0.04746536613236518 0.07791428812206024
+0.5083682008367992 0.050855749427534125 0.5083682008367992 0.050855749427534125 0.08318741150840468
+0.5481171548116963 0.006780766590337883 0.5481171548116963 0.006780766590337883 0.010897089943726195
+0.541841004184081 0.010171149885506825 0.541841004184081 0.010171149885506825 0.011730354931117801
+0.5460251046024912 0.010171149885506825 0.5460251046024912 0.010171149885506825 0.009334380832078408
+0.5397489539748759 0.013561533180675767 0.5397489539748759 0.013561533180675767 0.014721362725637092
+0.5376569037656708 0.01695191647584471 0.5376569037656708 0.01695191647584471 0.018313836003490142
+0.5355648535564657 0.02034229977101365 0.5355648535564655 0.02034229977101365 0.022273734558916288
+0.5292887029288503 0.02373268306618259 0.5292887029288503 0.02373268306618259 0.03470553296430748
+0.5271966527196452 0.027123066361351533 0.5271966527196453 0.027123066361351533 0.039280103533388455
+0.5251046025104401 0.030513449656520475 0.5251046025104401 0.030513449656520475 0.04400405855809326
+0.523012552301235 0.03390383295168942 0.523012552301235 0.03390383295168942 0.048867902899245065
+0.5209205020920299 0.03729421624685836 0.5209205020920299 0.03729421624685836 0.05385906650357653
+0.5188284518828248 0.0406845995420273 0.5188284518828247 0.0406845995420273 0.05896094816103819
+0.5167364016736197 0.04407498283719624 0.5167364016736197 0.04407498283719624 0.06415269619275228
+0.5146443514644146 0.04746536613236518 0.5146443514644146 0.04746536613236518 0.0694095078609178
+0.5334728033472605 0.02373268306618259 0.5334728033472605 0.02373268306618259 0.0264931811686334
+0.5523012552301065 0.006780766590337883 0.5523012552301064 0.006780766590337883 0.016907065362899057
+0.01017114988550656 0.5502092050209209 0.01017114988550656 0.5502092050209209 0.22305013224268455
+0.016951916475844264 0.5418410041841009 0.016951916475844264 0.5418410041841009 0.22517397317697282
+0.02034229977101312 0.5397489539748959 0.02034229977101312 0.5397489539748959 0.2259967108832938
+0.027123066361350822 0.5313807531380759 0.027123066361350822 0.5313807531380759 0.22806192460836053
+0.030513449656519673 0.5292887029288709 0.030513449656519673 0.5292887029288709 0.22895553115342726
+0.03390383295168853 0.5271966527196659 0.03390383295168853 0.5271966527196659 0.2298685389099964
+0.03729421624685734 0.5209205020920509 0.03729421624685734 0.5209205020920509 0.2307969545475533
+0.04068459954202614 0.518828451882846 0.04068459954202614 0.518828451882846 0.23165303569560766
+0.04407498283719491 0.516736401673641 0.04407498283719491 0.516736401673641 0.23249063596578703
+0.037294216246857366 0.5251046025104609 0.037294216246857366 0.5251046025104609 0.2307848400466436
+0.02373268306618197 0.5376569037656909 0.02373268306618197 0.5376569037656909 0.22688176731735352
+0.027123066361350822 0.5355648535564859 0.027123066361350822 0.5355648535564859 0.2278158940566544
+0.013561533180675408 0.5481171548117159 0.013561533180675408 0.5481171548117159 0.22379394458078153
+0.016951916475844264 0.5460251046025109 0.016951916475844264 0.5460251046025109 0.22462050459853292
+0.006780766590337709 0.5564853556485359 0.006780766590337709 0.5564853556485359 0.22152062755396038
+0.01017114988550656 0.5543933054393309 0.01017114988550656 0.5543933054393309 0.22224962411441077
+0.05763651601787222 0.49581589958159217 0.05763651601787222 0.49581589958159217 0.235383804089812
+0.05763651601787201 0.5000000000000032 0.05763651601787201 0.5000000000000032 0.23535667722167433
+0.06102689931304117 0.4937238493723867 0.06102689931304117 0.4937238493723867 0.236093560402192
+0.06441728260820988 0.4916317991631813 0.06441728260820988 0.4916317991631813 0.2367789711052047
+0.0678076659033782 0.48117154811715623 0.06780766590337818 0.4811715481171563 0.23790481734174249
+0.0678076659033777 0.48535564853556634 0.06780766590337771 0.48535564853556634 0.23764575539196306
+0.06780766590337826 0.48953974895397595 0.06780766590337826 0.48953974895397595 0.23744256229202157
+0.047465366132363726 0.510460251046027 0.04746536613236373 0.5104602510460269 0.23321236837254108
+0.050855749427532765 0.5083682008368224 0.05085574942753277 0.5083682008368225 0.23397257419632592
+0.05424613272270192 0.5062761506276182 0.05424613272270192 0.5062761506276182 0.23469765065054435
+0.0576365160178712 0.5041841004184139 0.05763651601787121 0.5041841004184139 0.2353844713365321
+0.04746536613236366 0.5146443514644363 0.04746536613236366 0.5146443514644363 0.23329826959401337
+0.24685821569096889 0.24460452843176075 0.24685821569096889 0.24460452843176078 0.11190613600979858
+0.23700411360449916 0.2509215624103675 0.23700411360449916 0.2509215624103675 0.10238382796273737
+0.23365028259425466 0.2530281190612493 0.23365028259425466 0.2530281190612493 0.0998275126058738
+0.22031049956060209 0.2615046277160305 0.22031049956060209 0.2615046277160305 0.0934789520888773
+0.22366362936667983 0.2594048353117742 0.22366362936667983 0.2594048353117742 0.09447666474438253
+0.23032930454334852 0.2551604442408453 0.23032930454334852 0.2551604442408453 0.09765793724191578
+0.22700535248385798 0.25729091709157786 0.22700535248385798 0.25729091709157786 0.09587188816388809
+0.24648331295328874 0.24819139620557967 0.2464833129532887 0.24819139620557967 0.11031565620993886
+0.2402356304033398 0.25288330606887577 0.2402356304033398 0.25288330606887577 0.10407467949821243
+0.2440440774465914 0.2509378126891096 0.24404407744659146 0.2509378126891096 0.10754161949035089
+0.17290954802039205 0.2991631799455154 0.17290954802039205 0.2991631799455154 0.11645335180355665
+0.1762999313062128 0.2970711297427578 0.1762999313062128 0.2970711297427578 0.1138204097718943
+0.1796903145891495 0.29497907953437763 0.1796903145891495 0.29497907953437763 0.11122740413669831
+0.18308069782475214 0.2887029289002323 0.18308069782475214 0.2887029289002323 0.1060342013243134
+0.18647108105371435 0.28661087873608015 0.18647108105371435 0.28661087873608015 0.10381364954907661
+0.18308069785287476 0.2928870293307577 0.18308069785287476 0.2928870293307577 0.10869267468236975
+0.2202970774492662 0.26568184960543667 0.22029707744926616 0.26568184960543667 0.09330805204460796
+0.2169446256869847 0.26777989166709154 0.2169446256869847 0.26777989166709154 0.09290451839430226
+0.21357891287028377 0.26987540849561187 0.21357891287028377 0.26987540849561187 0.09289538460452827
+0.2101994305775642 0.27196812641677237 0.2101994305775642 0.27196812641677237 0.09326402698665247
+0.2068124018808408 0.2740595285869325 0.2068124018808408 0.2740595285869325 0.09398615320430237
+0.18986146432109194 0.28451882868148665 0.18986146432109194 0.28451882868148665 0.10170391577444875
+0.1932518474392997 0.28242678228199786 0.1932518474392997 0.28242678228199786 0.09973566232902271
+0.20342285587095546 0.2761508869109732 0.20342285587095546 0.2761508869109732 0.09503056803464277
+0.20003257850370826 0.2782427413171577 0.20003257850370826 0.2782427413171577 0.09636197205527723
+0.19664223027685587 0.28033473367405115 0.19664223027685587 0.28033473367405115 0.09794287515845874
+0.15256724828371718 0.3158995815900424 0.15256724828371718 0.31589958159004233 0.1373084270885109
+0.15595763157866332 0.31380753137927164 0.1559576315786633 0.31380753137927164 0.13441277846791103
+0.1593480148720588 0.3117154811681146 0.15934801487205877 0.3117154811681146 0.13152586458248497
+0.16273839816252963 0.30962343095800515 0.16273839816252963 0.3096234309580051 0.12864368985765254
+0.16612878144822527 0.3075313807508348 0.16612878144822527 0.3075313807508348 0.12576489373900254
+0.16951916472803832 0.30543933054627015 0.16951916472803832 0.30543933054627015 0.12289136219022835
+0.17290954801331457 0.303347280354842 0.17290954801331457 0.303347280354842 0.12002874561707773
+0.1356153318067751 0.33472803347271785 0.1356153318067751 0.33472803347271785 0.16287950636610546
+0.13900571510190515 0.3326359832634338 0.13900571510190515 0.3326359832634338 0.15968729356864775
+0.14239609839683073 0.3263598326361363 0.14239609839683073 0.3263598326361363 0.15129324347913442
+0.14578648169196862 0.32426778242736315 0.14578648169196862 0.32426778242736315 0.14821899092033994
+0.1423960983969699 0.33054393305417107 0.1423960983969699 0.33054393305417107 0.1565080013733943
+0.14917686498732133 0.3221757322187776 0.14917686498732133 0.32217573221877766 0.1451612378691417
+0.15256724828303087 0.3200836820101148 0.1525672482830309 0.3200836820101148 0.14211353160829562
+0.1220537986260813 0.35146443514644404 0.1220537986260813 0.35146443514644404 0.1864134970582201
+0.12544418192124962 0.3493723849372398 0.12544418192124962 0.3493723849372398 0.18321092054672217
+0.12883456521642325 0.3430962343096329 0.12883456521642325 0.3430962343096329 0.1746964363505842
+0.12883456521641792 0.3472803347280377 0.12883456521641792 0.3472803347280377 0.17998230855621877
+0.1322249485116014 0.34100418410042926 0.1322249485116014 0.34100418410042926 0.17145332113629738
+0.13561533180678714 0.3389121338912105 0.13561533180678717 0.3389121338912105 0.16820963178036855
+0.10510188215023712 0.3702928870292892 0.10510188215023712 0.3702928870292892 0.21070036756478047
+0.10510188215023712 0.3744769874476992 0.10510188215023712 0.3744769874476992 0.21486185203995412
+0.10849226544540602 0.3682008368200842 0.10849226544540602 0.3682008368200842 0.20805520058606497
+0.1118826487405749 0.36610878661087914 0.1118826487405749 0.36610878661087914 0.20528519047240265
+0.1152730320357438 0.3598326359832642 0.1152730320357438 0.3598326359832642 0.19766135544770844
+0.1152730320357438 0.3640167364016742 0.1152730320357438 0.3640167364016742 0.20240839132817467
+0.11866341533091274 0.35774058577405915 0.11866341533091274 0.35774058577405915 0.19461224651225284
+0.12205379862608162 0.355648535564854 0.12205379862608164 0.355648535564854 0.19150051380635572
+0.09493073226473037 0.38912133891213446 0.09493073226473037 0.38912133891213446 0.22800343017811844
+0.0983211155598993 0.38702928870292946 0.0983211155598993 0.38702928870292946 0.22630500612624807
+0.1017114988550682 0.38075313807531425 0.10171149885506821 0.38075313807531425 0.2209669230015577
+0.10510188215023712 0.37866108786610925 0.10510188215023712 0.37866108786610925 0.2187423016489957
+0.10171149885506821 0.38493723849372435 0.10171149885506821 0.38493723849372435 0.22440893492451694
+0.09493073226473037 0.39330543933054457 0.09493073226473037 0.39330543933054457 0.2308333141899903
+0.08814996567439248 0.4058577405857748 0.08814996567439248 0.4058577405857748 0.237409390944774
+0.09493073226473037 0.3974895397489546 0.09493073226473037 0.3974895397489546 0.23335643292052774
+0.09154034896956142 0.4037656903765698 0.09154034896956142 0.4037656903765698 0.23660115802807277
+0.09493073226473037 0.4016736401673647 0.09493073226473037 0.4016736401673647 0.2355770066837465
+0.08814996567439248 0.4100418410041849 0.08814996567439248 0.4100418410041849 0.23904196391723911
+0.07797881578888566 0.43305439330544004 0.07797881578888566 0.43305439330544004 0.24239480674588212
+0.08475958237922354 0.41631799163179994 0.08475958237922354 0.4163179916318 0.24071922493584497
+0.08814996567439248 0.41422594142259495 0.08814996567439248 0.414225941422595 0.24039940456844036
+0.0813691990840546 0.422594142259415 0.0813691990840546 0.422594142259415 0.24169434790940417
+0.08475958237922354 0.42050209205020994 0.08475958237922354 0.42050209205021 0.24169352635196215
+0.0813691990840546 0.42677824267782505 0.0813691990840546 0.42677824267782505 0.24232988478112658
+0.0813691990840546 0.43096234309623505 0.0813691990840546 0.43096234309623505 0.2427594359690349
+0.07458843249371672 0.44769874476987503 0.07458843249371672 0.44769874476987503 0.24181614687255704
+0.07458843249371672 0.45188284518828514 0.07458843249371672 0.4518828451882851 0.2415759979983936
+0.07797881578888566 0.43723849372385004 0.07797881578888566 0.43723849372385004 0.24256812590117108
+0.07797881578888566 0.44142259414226004 0.07797881578888566 0.44142259414226004 0.24258966731807827
+0.07797881578888566 0.44560669456067004 0.07797881578888566 0.44560669456067004 0.24248271270091812
+0.07458843249371672 0.45606694560669525 0.07458843249371672 0.4560669456066952 0.24126303451991696
+0.07458843249371672 0.46025104602510547 0.07458843249371672 0.46025104602510547 0.24089931712196885
+0.07119804919854775 0.46652719665272063 0.07119804919854776 0.46652719665272063 0.23972915700525507
+0.07458843249371669 0.46443514644351563 0.0745884324937167 0.46443514644351563 0.24050590023775323
+0.07119804919854769 0.47071129707113085 0.07119804919854768 0.47071129707113085 0.2393437322463908
+0.07119804919854744 0.47489539748954096 0.07119804919854744 0.47489539748954096 0.23897255284808436
+0.07119804919854704 0.4790794979079511 0.07119804919854704 0.47907949790795107 0.23863112682544677
+0.24946557490150872 0.24111641167356845 0.2494655749015087 0.24111641167356845 0.11564419312749817
+0.2502926239274198 0.24460664588255482 0.2502926239274198 0.24460664588255482 0.11495510573484849
+0.25735003103078413 0.22712040818296736 0.25735003103078413 0.2271204081829674 0.1308767605967238
+0.25119906605835085 0.23735376538410935 0.2511990660583509 0.23735376538410935 0.11895941359158764
+0.2552751842569195 0.23051739947341576 0.2552751842569195 0.23051739947341576 0.12667704081755474
+0.25322841498887444 0.23395586969103088 0.25322841498887444 0.23395586969103088 0.12269921444469611
+0.2528901093996057 0.24011657469447845 0.2528901093996057 0.24011657469447845 0.11922323436359168
+0.2782426778242389 0.2000326144149636 0.2782426778242389 0.2000326144149636 0.1738543168529376
+0.2761506336632425 0.20342268393281981 0.2761506336632425 0.20342268393281984 0.16888191046722956
+0.2740587753389501 0.20681119681524204 0.2740587753389501 0.20681119681524204 0.16387966822661948
+0.261515254450895 0.22706496982918398 0.261515254450895 0.22706496982918398 0.13518610928423327
+0.271967422438051 0.2101963439627982 0.271967422438051 0.2101963439627982 0.15888461701308557
+0.26987606372276396 0.213576991069668 0.26987606372276396 0.21357699106966796 0.15393187056256305
+0.26778355369536627 0.2169515128649632 0.26778355369536627 0.2169515128649632 0.14905500508741518
+0.2636009162029365 0.22368581551363062 0.2636009162029365 0.22368581551363062 0.13965757579604046
+0.26569101448662724 0.220319374526634 0.2656910144866273 0.220319374526634 0.14428738600118043
+0.30962343096231365 0.162738398168109 0.30962343096231365 0.162738398168109 0.22664766496298158
+0.3075313807531086 0.16612878146327772 0.3075313807531086 0.16612878146327772 0.22400297068749522
+0.30543933054390354 0.16951916475844653 0.30543933054390354 0.16951916475844653 0.22107750147093644
+0.30334728033469877 0.17290954805361516 0.30334728033469877 0.17290954805361516 0.2178696289055009
+0.297071129707084 0.1762999313487852 0.297071129707084 0.1762999313487852 0.2097721036601099
+0.2949790794978786 0.17969031464395466 0.2949790794978786 0.17969031464395466 0.20594444979995985
+0.2928870292886728 0.1830806979391242 0.2928870292886728 0.1830806979391242 0.20187434826050651
+0.2907949790794663 0.1864710812342936 0.29079497907946633 0.1864710812342936 0.19758094623909003
+0.2887029288702591 0.18986146452946254 0.2887029288702591 0.18986146452946254 0.1930877246026852
+0.2866108786610518 0.19325184782463065 0.2866108786610518 0.19325184782463065 0.18842196622654503
+0.28451882845184523 0.19664223111979776 0.28451882845184523 0.19664223111979776 0.18361414981522783
+0.28242678674617516 0.20003259500030537 0.28242678674617516 0.20003259500030537 0.17869730887233606
+0.30125523012549393 0.17629993134878416 0.301255230125494 0.17629993134878416 0.21438326089082851
+0.3305439330543649 0.14239609839709555 0.3305439330543649 0.14239609839709555 0.24305576267804677
+0.3284518828451598 0.1457864816922645 0.32845188284515986 0.1457864816922645 0.24218943441643767
+0.3263598326359547 0.14917686498743343 0.3263598326359547 0.14917686498743343 0.24113794614889184
+0.31799163179913426 0.15595763157777132 0.31799163179913426 0.15595763157777132 0.2348473780634517
+0.3242677824267496 0.15256724828260237 0.32426778242674953 0.15256724828260237 0.23987190259741506
+0.3221757322175445 0.15595763157777132 0.3221757322175445 0.15595763157777132 0.23836458760394064
+0.3158995815899291 0.15934801487294023 0.3158995815899291 0.15934801487294023 0.23289882898541278
+0.31380753138072387 0.16273839816810912 0.31380753138072387 0.16273839816810912 0.23067793442675974
+0.36192468619244156 0.11866341533091296 0.3619246861924416 0.11866341533091296 0.24807874398400923
+0.35983263598323645 0.1220537986260819 0.35983263598323645 0.1220537986260819 0.24863906023255353
+0.35774058577403134 0.12544418192125084 0.3577405857740313 0.12544418192125084 0.24921544745956517
+0.35564853556482623 0.12883456521641978 0.35564853556482623 0.12883456521641978 0.24978872213737244
+0.3535564853556211 0.13222494851158872 0.3535564853556212 0.13222494851158872 0.2503335026039062
+0.351464435146416 0.13561533180675767 0.351464435146416 0.13561533180675767 0.2508193095429189
+0.33682008368198024 0.1390057151019266 0.3368200836819803 0.1390057151019266 0.24600804224997022
+0.34100418410039046 0.1390057151019266 0.3410041841003904 0.1390057151019266 0.24798928249187682
+0.3451882845188007 0.1390057151019266 0.34518828451880074 0.1390057151019266 0.2497207305393437
+0.3493723849372109 0.1390057151019266 0.34937238493721084 0.1390057151019266 0.25121186440340243
+0.33472803347277513 0.14239609839709555 0.33472803347277513 0.14239609839709555 0.24552310580440895
+0.3682008368200569 0.11527303203574402 0.3682008368200569 0.11527303203574402 0.2470296848245521
+0.3661087866108518 0.11866341533091296 0.3661087866108517 0.11866341533091296 0.24779419312818288
+0.3723849372384671 0.11527303203574402 0.3723849372384671 0.11527303203574402 0.24625855811832295
+0.40167364016733864 0.09493073226473037 0.4016736401673386 0.09493073226473037 0.23113895641850632
+0.39958158995813353 0.09832111555989931 0.3995815899581335 0.09832111555989931 0.23262774856186905
+0.3974895397489284 0.10171149885506825 0.3974895397489284 0.10171149885506825 0.23413449713490467
+0.3953974895397233 0.10510188215023719 0.39539748953972337 0.10510188215023719 0.23569052521294961
+0.3933054393305182 0.10849226544540613 0.3933054393305182 0.10849226544540613 0.23732153264508835
+0.3765690376568773 0.11527303203574402 0.3765690376568773 0.11527303203574402 0.2452465195909073
+0.38075313807528754 0.11527303203574402 0.38075313807528754 0.11527303203574402 0.24400542020531604
+0.3870292887029029 0.11188264874057507 0.38702928870290293 0.11188264874057507 0.24093503148994247
+0.3912133891213131 0.11188264874057507 0.39121338912131304 0.11188264874057507 0.23904607102255956
+0.38493723849369776 0.11527303203574402 0.38493723849369776 0.11527303203574402 0.24254534968710081
+0.42259414225938974 0.08814996567439248 0.42259414225938974 0.08814996567439248 0.21411151861148683
+0.40794979079495397 0.09154034896956142 0.4079497907949539 0.09154034896956142 0.2265262831131115
+0.4121338912133642 0.09154034896956142 0.41213389121336425 0.09154034896956142 0.2232468694051918
+0.4163179916317744 0.09154034896956142 0.41631799163177435 0.09154034896956142 0.2197997950679805
+0.42050209205018463 0.09154034896956142 0.4205020920501847 0.09154034896956142 0.21618792376452847
+0.40585774058574886 0.09493073226473037 0.40585774058574886 0.09493073226473037 0.2281736114498422
+0.44351464435144083 0.0813691990840546 0.4435146443514409 0.0813691990840546 0.19219558574021509
+0.42887029288700507 0.08475958237922354 0.4288702928870051 0.08475958237922354 0.20795159389784298
+0.4330543933054153 0.08475958237922354 0.43305439330541523 0.08475958237922354 0.2037707956695554
+0.4372384937238255 0.08475958237922354 0.43723849372382556 0.08475958237922354 0.19942362631243493
+0.4414225941422357 0.08475958237922354 0.44142259414223567 0.08475958237922354 0.1949043357568652
+0.42677824267779996 0.08814996567439248 0.4267782426778 0.08814996567439248 0.21021218884806434
+0.44979079497905616 0.07797881578888566 0.4497907949790561 0.07797881578888566 0.18442030874690893
+0.4539748953974664 0.07797881578888566 0.45397489539746644 0.07797881578888566 0.17929548690538336
+0.4581589958158766 0.07797881578888566 0.45815899581587655 0.07797881578888566 0.17396834811798711
+0.44769874476985105 0.0813691990840546 0.44769874476985105 0.0813691990840546 0.18737976877631002
+0.4811715481171328 0.06102689931304095 0.4811715481171328 0.06102689931304095 0.13603722574566834
+0.4748953974895175 0.06441728260820989 0.4748953974895174 0.06441728260820989 0.14704838443660764
+0.4790794979079277 0.06441728260820989 0.47907949790792775 0.06441728260820989 0.14053009826618593
+0.4623430962342868 0.07797881578888566 0.4623430962342869 0.07797881578888566 0.16842702473116652
+0.47280334728031237 0.06780766590337883 0.47280334728031237 0.06780766590337883 0.15123921258967532
+0.47071129707110726 0.07119804919854777 0.4707112970711073 0.07119804919854777 0.15523669493863768
+0.46861924686190215 0.07458843249371672 0.4686192468619021 0.07458843249371672 0.15904053318089897
+0.46652719665269704 0.07797881578888566 0.466527196652697 0.07797881578888566 0.16265883313327992
+0.485355648535543 0.06102689931304095 0.48535564853554297 0.06102689931304095 0.12914443999943923
+0.48953974895395325 0.06102689931304095 0.48953974895395325 0.06102689931304095 0.12198391235568395
+0.4958158995815686 0.05763651601787201 0.49581589958156863 0.05763651601787201 0.10958148154204088
+0.49372384937236347 0.06102689931304095 0.4937238493723635 0.06102689931304095 0.11454636512063142
+0.4999999999999788 0.05763651601787201 0.49999999999997874 0.05763651601787201 0.10176587354013304
+0.5062761506275941 0.054246132722703067 0.5062761506275941 0.054246132722703067 0.08844857019890096
+0.504184100418389 0.05763651601787201 0.504184100418389 0.05763651601787201 0.09366613348685915
+0.5125523012552095 0.050855749427534125 0.5125523012552095 0.050855749427534125 0.074703304373837
+0.5104602510460043 0.054246132722703067 0.5104602510460045 0.054246132722703067 0.08000367778364302
+0.5502092050209014 0.010171149885506825 0.5502092050209014 0.010171149885506825 0.013475132019192157
+0.5439330543932861 0.013561533180675767 0.5439330543932862 0.013561533180675767 0.009587545583646257
+0.5481171548116963 0.013561533180675767 0.5481171548116963 0.013561533180675767 0.010616723841828673
+0.541841004184081 0.01695191647584471 0.541841004184081 0.01695191647584471 0.011596059646127118
+0.5397489539748759 0.02034229977101365 0.5397489539748759 0.02034229977101365 0.014721041378861002
+0.5376569037656708 0.02373268306618259 0.5376569037656708 0.02373268306618259 0.01847102159944158
+0.5313807531380554 0.027123066361351533 0.5313807531380554 0.027123066361351533 0.030920864211417726
+0.5292887029288503 0.030513449656520475 0.5292887029288503 0.030513449656520475 0.03552951152280103
+0.5271966527196452 0.03390383295168942 0.5271966527196453 0.03390383295168942 0.0403009793298346
+0.5251046025104401 0.03729421624685836 0.5251046025104401 0.03729421624685836 0.045219128756048214
+0.523012552301235 0.0406845995420273 0.523012552301235 0.0406845995420273 0.050266366186648016
+0.5209205020920299 0.04407498283719624 0.5209205020920299 0.04407498283719624 0.055422086449212184
+0.5188284518828248 0.04746536613236518 0.5188284518828247 0.04746536613236518 0.060662208206096024
+0.5167364016736197 0.050855749427534125 0.5167364016736197 0.050855749427534125 0.06595938928597823
+0.5355648535564657 0.027123066361351533 0.5355648535564655 0.027123066361351533 0.02260414797756175
+0.5564853556485168 0.006780766590337883 0.5564853556485168 0.006780766590337883 0.02446158667308601
+0.5543933054393116 0.010171149885506825 0.5543933054393116 0.010171149885506825 0.020558736810797004
+0.013561533180675408 0.5523012552301259 0.013561533180675408 0.5523012552301259 0.2230689794215636
+0.02034229977101312 0.5439330543933059 0.02034229977101312 0.5439330543933059 0.22552295568353128
+0.02373268306618197 0.5418410041841009 0.02373268306618197 0.5418410041841009 0.22649014743883097
+0.030513449656519673 0.5334728033472809 0.030513449656519673 0.5334728033472809 0.22878337024540232
+0.033903832951688535 0.5313807531380759 0.033903832951688535 0.5313807531380759 0.2297669346750443
+0.03729421624685738 0.5292887029288709 0.03729421624685738 0.5292887029288709 0.23074876953462
+0.04068459954202622 0.5230125523012559 0.04068459954202622 0.5230125523012559 0.23168867395624435
+0.04407498283719501 0.5209205020920509 0.04407498283719501 0.5209205020920509 0.23256550741150386
+0.047465366132363775 0.518828451882846 0.047465366132363775 0.518828451882846 0.23340284520517549
+0.040684599542026224 0.5271966527196659 0.040684599542026224 0.5271966527196659 0.23171149042977382
+0.027123066361350822 0.5397489539748959 0.027123066361350822 0.5397489539748959 0.22750737952385516
+0.030513449656519673 0.5376569037656909 0.030513449656519673 0.5376569037656909 0.22855729797512628
+0.016951916475844264 0.5502092050209209 0.016951916475844264 0.5502092050209209 0.22397622639814596
+0.02034229977101312 0.5481171548117159 0.02034229977101312 0.5481171548117159 0.2249637183866692
+0.006780766590337709 0.5606694560669458 0.006780766590337709 0.5606694560669458 0.22054085885002658
+0.006780766590337709 0.5648535564853558 0.006780766590337709 0.5648535564853558 0.21944600637407743
+0.01017114988550656 0.5585774058577408 0.01017114988550656 0.5585774058577408 0.22134286148250984
+0.013561533180675408 0.5564853556485359 0.013561533180675408 0.5564853556485359 0.22224121444633785
+0.06102689931304129 0.49790794979079794 0.06102689931304129 0.49790794979079794 0.2360327524826904
+0.0610268993130407 0.5020920502092091 0.06102689931304071 0.5020920502092091 0.2360330784398624
+0.06441728260821039 0.4958158995815923 0.06441728260821039 0.4958158995815923 0.23667997054684428
+0.06780766590337918 0.4937238493723866 0.06780766590337918 0.4937238493723866 0.23730289735845425
+0.07119804919854648 0.48326359832636134 0.07119804919854648 0.48326359832636134 0.23833290701708884
+0.07119804919854605 0.4874476987447708 0.07119804919854605 0.48744769874477084 0.23808912434871096
+0.07119804919854748 0.49163179916318095 0.07119804919854748 0.49163179916318095 0.23790865268559494
+0.05085574942753231 0.5125523012552317 0.0508557494275323 0.5125523012552317 0.23406687585546262
+0.05424613272270126 0.5104602510460273 0.05424613272270127 0.5104602510460273 0.2347903542216945
+0.05763651601787012 0.5083682008368235 0.05763651601787012 0.5083682008368235 0.23546595944552992
+0.061026899313039486 0.5062761506276192 0.061026899313039486 0.5062761506276193 0.23609453994815674
+0.050855749427532466 0.5167364016736412 0.050855749427532466 0.5167364016736412 0.2341909393922621
+0.2494228476088977 0.2474721796542954 0.24942284760889774 0.24747217965429538 0.11320508597716213
+0.23684611874617598 0.25499034537522774 0.23684611874617598 0.25499034537522774 0.10129201181913981
+0.23355929004842033 0.2571601068477562 0.23355929004842033 0.2571601068477562 0.09892478670598438
+0.22363832926070418 0.26357932525888034 0.22363832926070418 0.26357932525888034 0.0941149635774453
+0.22696526908870826 0.2614631053691679 0.22696526908870826 0.2614631053691679 0.0953256542330042
+0.230272417055869 0.25932449582339134 0.230272417055869 0.25932449582339134 0.09693276442968303
+0.24832291552221186 0.25118817362827334 0.2483229155222118 0.25118817362827334 0.111185586160384
+0.2399028435663922 0.25685137620691734 0.23990284356639216 0.25685137620691734 0.1030555222433057
+0.24289973956122668 0.25494990453201616 0.24289973956122668 0.2549499045320162 0.10567067642009957
+0.24603979252036692 0.2538664078495908 0.24603979252036692 0.2538664078495908 0.10848854581681995
+0.17629993129124152 0.3012552301638727 0.17629993129124152 0.3012552301638727 0.11718687233551427
+0.1796903145795631 0.2991631799725222 0.1796903145795631 0.29916317997252223 0.11438004700304884
+0.18308069785677053 0.29707112979321154 0.18308069785677053 0.29707112979321154 0.11162722107667984
+0.18647108108692875 0.2907949791446284 0.18647108108692875 0.29079497914462843 0.10623921945001073
+0.18986146429713538 0.2887029293142235 0.18986146429713538 0.28870292931422353 0.10389451243954691
+0.18647108111462818 0.294979079637875 0.18647108111462818 0.294979079637875 0.10895201777029506
+0.22362052920189399 0.2677487876435777 0.22362052920189399 0.2677487876435776 0.09409876902280813
+0.220289884048015 0.269856767392952 0.220289884048015 0.269856767392952 0.09348253664463729
+0.21694351330689873 0.27196129857844686 0.21694351330689873 0.2719612985784469 0.09327853781886954
+0.21357860457530875 0.27406014155228725 0.21357860457530875 0.27406014155228725 0.09347762056764018
+0.21019885927409332 0.27615383935860727 0.21019885927409332 0.2761538393586073 0.09406267355872655
+0.2068119613297743 0.2782443479192109 0.2068119613297743 0.2782443479192109 0.09500788375473529
+0.19325184699663409 0.28661089144607815 0.19325184699663409 0.28661089144607815 0.10169012208473034
+0.1966422280158264 0.2845188451880662 0.1966422280158264 0.2845188451880662 0.09966106514525576
+0.20342269498028362 0.2803352355009107 0.20342269498028362 0.2803352355009107 0.09628091300019893
+0.20003250240373646 0.28242693428059384 0.20003250240373646 0.28242693428059384 0.09784501550040108
+0.15595763157907294 0.3179916318008294 0.15595763157907294 0.3179916318008294 0.13906978858714433
+0.15934801487500191 0.31589958159026044 0.15934801487500191 0.3158995815902604 0.13602506207894993
+0.16273839816974417 0.3138075313781274 0.16273839816974414 0.3138075313781274 0.13297627636718998
+0.16612878146149637 0.31171548116526565 0.16612878146149637 0.31171548116526565 0.12992290576667445
+0.16951916474756304 0.30962343095445305 0.16951916474756304 0.30962343095445305 0.12686758137929166
+0.17290954802440994 0.3075313807494021 0.17290954802440994 0.3075313807494022 0.12381661225989134
+0.17629993128986268 0.3054393305494887 0.17629993128986268 0.3054393305494887 0.12078040988444265
+0.1390057151019751 0.3368200836819544 0.1390057151019751 0.3368200836819544 0.16496618637943497
+0.1423960983971425 0.3347280334726374 0.1423960983971425 0.3347280334726374 0.16172157276825957
+0.1457864816919555 0.32845188284504107 0.1457864816919555 0.32845188284504107 0.1533376748931279
+0.14917686498690932 0.32635983263621354 0.14917686498690932 0.32635983263621354 0.15017124688363737
+0.14578648169224218 0.33263598326326427 0.14578648169224218 0.3326359832632643 0.15847268744420595
+0.1525672482819905 0.3242677824278342 0.1525672482819905 0.3242677824278342 0.1470032536674861
+0.15595763157747727 0.32217573221984297 0.1559576315774773 0.322175732219843 0.1438285772382347
+0.12544418192125031 0.35355648535564876 0.12544418192125031 0.35355648535564876 0.1883384721872707
+0.12883456521641853 0.3514644351464437 0.12883456521641853 0.3514644351464437 0.18513572573644407
+0.13222494851158792 0.3451882845188396 0.13222494851158792 0.3451882845188396 0.17673435292560313
+0.13222494851158592 0.34937238493724027 0.13222494851158592 0.34937238493724027 0.18189913958094536
+0.1356153318067636 0.3430962343096453 0.13561533180676363 0.3430962343096453 0.17347095720829053
+0.13900571510195178 0.34100418410044697 0.13900571510195178 0.34100418410044697 0.17019350879372366
+0.10849226544540602 0.37238493723849425 0.10849226544540602 0.37238493723849425 0.2123430942377562
+0.10849226544540602 0.3765690376569043 0.10849226544540602 0.37656903765690425 0.21635730127201933
+0.11188264874057491 0.3702928870292892 0.1118826487405749 0.3702928870292892 0.20968949631475597
+0.1152730320357438 0.3682008368200842 0.1152730320357438 0.3682008368200842 0.2069182172135345
+0.1186634153309127 0.3619246861924692 0.1186634153309127 0.3619246861924692 0.19944123511118442
+0.11866341533091268 0.3661087866108792 0.1186634153309127 0.3661087866108792 0.20404496456320856
+0.12205379862608164 0.3598326359832642 0.12205379862608164 0.3598326359832642 0.19639810778863656
+0.12544418192125056 0.35774058577405904 0.1254441819212506 0.35774058577405904 0.19329104440698666
+0.0983211155598993 0.39121338912133957 0.0983211155598993 0.39121338912133957 0.22929028273675509
+0.1017114988550682 0.38912133891213446 0.10171149885506821 0.38912133891213446 0.2275479614377587
+0.10510188215023712 0.3828451882845193 0.10510188215023712 0.38284518828451924 0.2223306477496774
+0.10849226544540602 0.38075313807531436 0.10849226544540602 0.38075313807531436 0.2200860951446726
+0.10510188215023712 0.3870292887029294 0.10510188215023712 0.3870292887029294 0.2256204242248334
+0.0983211155598993 0.3953974895397496 0.0983211155598993 0.3953974895397496 0.23196917787411417
+0.09154034896956142 0.4079497907949799 0.09154034896956142 0.4079497907949799 0.23837743799858932
+0.0983211155598993 0.3995815899581596 0.0983211155598993 0.3995815899581596 0.2343451909917215
+0.09493073226473037 0.4058577405857748 0.09493073226473037 0.4058577405857748 0.23750299915786247
+0.0983211155598993 0.4037656903765697 0.0983211155598993 0.4037656903765697 0.23642561209317245
+0.09154034896956142 0.4121338912133899 0.09154034896956142 0.4121338912133899 0.23987374880689646
+0.0813691990840546 0.43514644351464504 0.0813691990840546 0.43514644351464504 0.2430048031465202
+0.08814996567439248 0.41841004184100494 0.08814996567439248 0.418410041841005 0.24149710090748933
+0.09154034896956142 0.41631799163179994 0.09154034896956142 0.4163179916318 0.2411049615344554
+0.08475958237922354 0.42468619246862 0.08475958237922354 0.42468619246862 0.2424330733848751
+0.08814996567439248 0.422594142259415 0.08814996567439248 0.422594142259415 0.24235287259854688
+0.08475958237922354 0.42887029288703005 0.08475958237922354 0.42887029288703005 0.24295800746780952
+0.08475958237922354 0.43305439330544004 0.08475958237922354 0.43305439330544004 0.24328996256358212
+0.07797881578888566 0.4497907949790801 0.07797881578888566 0.4497907949790801 0.242270654292251
+0.07797881578888566 0.4539748953974902 0.07797881578888566 0.4539748953974902 0.24197661715650667
+0.0813691990840546 0.43933054393305504 0.0813691990840546 0.43933054393305504 0.24308878224876637
+0.0813691990840546 0.44351464435146504 0.0813691990840546 0.44351464435146504 0.24303474465162814
+0.0813691990840546 0.44769874476987503 0.0813691990840546 0.44769874476987503 0.2428662326846109
+0.07797881578888566 0.4581589958159003 0.07797881578888566 0.4581589958159003 0.24162310545790702
+0.07797881578888564 0.46234309623431047 0.07797881578888564 0.46234309623431047 0.24123167679773186
+0.07458843249371663 0.46861924686192585 0.07458843249371662 0.46861924686192585 0.24010253826009165
+0.07797881578888559 0.4665271966527207 0.07797881578888559 0.46652719665272074 0.2408226476994529
+0.07458843249371655 0.4728033472803359 0.07458843249371655 0.4728033472803359 0.2397074227925471
+0.074588432493716 0.4769874476987462 0.074588432493716 0.4769874476987462 0.2393369520622568
+0.07458843249371526 0.4811715481171565 0.07458843249371526 0.4811715481171565 0.23900553276846684
+0.252790060332461 0.24305698832232775 0.25279006033246093 0.24305698832232772 0.11795193626157376
+0.2526368441470269 0.2464078605478848 0.25263684414702686 0.2464078605478848 0.1165820781816146
+0.25943948764194746 0.23047111204599793 0.25943948764194746 0.23047111204599793 0.1308959991733958
+0.255369412967121 0.23762520860662084 0.25536941296712096 0.23762520860662084 0.12287740354079227
+0.257330645673385 0.233879016257408 0.257330645673385 0.233879016257408 0.12676381962168892
+0.26358992076100035 0.2303832241093191 0.26358992076100035 0.2303832241093191 0.13536170294890007
+0.25562643273858693 0.24143049948576578 0.25562643273858693 0.2414304994857658 0.12141703274739192
+0.2579965463034285 0.23976784970124476 0.2579965463034285 0.23976784970124476 0.12452551995839185
+0.28033480932141874 0.2034225798408789 0.2803348093214187 0.2034225798408789 0.17370657585531835
+0.27824311276255137 0.20681102088241052 0.27824311276255137 0.20681102088241052 0.16867883083215662
+0.2761523515631497 0.21019584377445252 0.2761523515631497 0.21019584377445252 0.1636522679544575
+0.2656858064697339 0.2270095144826717 0.2656858064697339 0.22700951448267173 0.13972192150403248
+0.27406223545992936 0.21357506888871694 0.27406223545992936 0.21357506888871694 0.15866336526472202
+0.27196988411415385 0.21694614716395402 0.27196988411415385 0.21694614716395402 0.15374472461756608
+0.2698746860828881 0.2203061341407239 0.26987468608288806 0.2203061341407239 0.1489295230824483
+0.26777994067235994 0.22365601131982826 0.26777994067235994 0.22365601131982826 0.14424946206688927
+0.31171548117151865 0.1661287814632779 0.31171548117151865 0.1661287814632779 0.22817182584389717
+0.3096234309623135 0.16951916475844656 0.30962343096231354 0.16951916475844656 0.22537298807465692
+0.3075313807531083 0.17290954805361514 0.3075313807531083 0.17290954805361514 0.2222795178321146
+0.3054393305439032 0.17629993134878366 0.3054393305439032 0.17629993134878366 0.21889521469220877
+0.2991631799162892 0.17969031464395335 0.2991631799162892 0.17969031464395335 0.21062777440707128
+0.29707112970708444 0.18308069793912285 0.29707112970708444 0.18308069793912285 0.2066178051831071
+0.2949790794978791 0.18647108123429268 0.2949790794978791 0.18647108123429268 0.2023729072100787
+0.29288702928867283 0.18986146452946273 0.2928870292886728 0.18986146452946273 0.19791709727049137
+0.29079497907946517 0.19325184782463253 0.2907949790794651 0.19325184782463253 0.19327830133392732
+0.28870292887025584 0.19664223111980175 0.28870292887025584 0.19664223111980175 0.18848772294208482
+0.28661085378054185 0.20003247653877232 0.28661085378054185 0.2000324765387723 0.1835792454884115
+0.28451891743813623 0.2034221117611459 0.28451891743813623 0.2034221117611459 0.17858909983813556
+0.30334728033469854 0.179690314643952 0.30334728033469854 0.179690314643952 0.21522951460978698
+0.33263598326357 0.1457864816922645 0.33263598326356997 0.1457864816922645 0.2448795067109104
+0.3305439330543649 0.14917686498743343 0.3305439330543649 0.14917686498743343 0.24404490310557572
+0.3284518828451598 0.15256724828260237 0.32845188284515986 0.15256724828260237 0.24298859964324884
+0.3200836820083393 0.15934801487294026 0.3200836820083393 0.15934801487294026 0.23659293256080174
+0.3263598326359547 0.15595763157777132 0.3263598326359547 0.15595763157777132 0.24168268614530405
+0.32426778242674953 0.15934801487294026 0.32426778242674953 0.15934801487294026 0.2401030272828535
+0.31799163179913414 0.16273839816810917 0.3179916317991341 0.16273839816810917 0.23453831837583608
+0.315899581589929 0.16612878146327806 0.315899581589929 0.16612878146327806 0.23218719955897438
+0.36401673640164667 0.1220537986260819 0.36401673640164667 0.1220537986260819 0.24859615346304734
+0.36192468619244156 0.12544418192125084 0.3619246861924416 0.12544418192125084 0.24942236257863923
+0.35983263598323645 0.12883456521641978 0.35983263598323645 0.12883456521641978 0.25025236742795
+0.35774058577403134 0.13222494851158872 0.3577405857740313 0.13222494851158872 0.25105932889129096
+0.35564853556482623 0.13561533180675767 0.35564853556482623 0.13561533180675767 0.2518111628378619
+0.3535564853556211 0.1390057151019266 0.3535564853556212 0.1390057151019266 0.25247188307561763
+0.33891213389118535 0.14239609839709555 0.33891213389118535 0.14239609839709555 0.24774305100722485
+0.34309623430959557 0.14239609839709555 0.34309623430959557 0.14239609839709555 0.2497239573754182
+0.3472803347280058 0.14239609839709555 0.3472803347280058 0.14239609839709555 0.2514745079795086
+0.351464435146416 0.14239609839709555 0.351464435146416 0.14239609839709555 0.25300306548690515
+0.33682008368198024 0.1457864816922645 0.3368200836819803 0.1457864816922645 0.24733445468802132
+0.370292887029262 0.11866341533091296 0.37029288702926205 0.11866341533091296 0.24725703605457686
+0.3682008368200569 0.1220537986260819 0.3682008368200569 0.1220537986260819 0.24830314847963633
+0.3744769874476722 0.11866341533091296 0.37447698744767216 0.11866341533091296 0.2464797350598675
+0.40376569037654375 0.09832111555989931 0.4037656903765438 0.09832111555989931 0.22981355982898136
+0.40167364016733864 0.10171149885506825 0.4016736401673386 0.10171149885506825 0.2314824140211744
+0.39958158995813353 0.10510188215023719 0.3995815899581335 0.10510188215023719 0.2332125226148635
+0.3974895397489284 0.10849226544540613 0.3974895397489284 0.10849226544540613 0.2350304722592839
+0.3953974895397233 0.11188264874057507 0.39539748953972337 0.11188264874057507 0.23695549506070154
+0.37866108786608244 0.11866341533091296 0.3786610878660825 0.11866341533091296 0.24547328614346373
+0.38284518828449265 0.11866341533091296 0.3828451882844926 0.11866341533091296 0.24424684844467107
+0.389121338912108 0.11527303203574402 0.389121338912108 0.11527303203574402 0.24087435008021532
+0.3933054393305182 0.11527303203574402 0.3933054393305182 0.11527303203574402 0.23899821592788414
+0.3870292887029029 0.11866341533091296 0.38702928870290293 0.11866341533091296 0.24280745713502974
+0.42468619246859485 0.09154034896956142 0.4246861924685948 0.09154034896956142 0.21241190060966073
+0.4100418410041591 0.09493073226473037 0.41004184100415914 0.09493073226473037 0.22503246214815406
+0.4142259414225693 0.09493073226473037 0.4142259414225693 0.09493073226473037 0.22172054192365345
+0.4184100418409795 0.09493073226473037 0.41841004184097946 0.09493073226473037 0.2182406407009476
+0.42259414225938974 0.09493073226473037 0.42259414225938974 0.09493073226473037 0.21459334123575954
+0.40794979079495397 0.09832111555989931 0.4079497907949539 0.09832111555989931 0.22681997197139767
+0.44560669456064594 0.08475958237922354 0.445606694560646 0.08475958237922354 0.19020542940163365
+0.4309623430962102 0.08814996567439248 0.4309623430962102 0.08814996567439248 0.2061493209324865
+0.4351464435146204 0.08814996567439248 0.43514644351462034 0.08814996567439248 0.20191928092776154
+0.4393305439330306 0.08814996567439248 0.4393305439330306 0.08814996567439248 0.19751653554016524
+0.44351464435144083 0.08814996567439248 0.4435146443514409 0.08814996567439248 0.19293383052361493
+0.42887029288700507 0.09154034896956142 0.4288702928870051 0.09154034896956142 0.2084702283244255
+0.4518828451882613 0.0813691990840546 0.4518828451882612 0.0813691990840546 0.18237428269824174
+0.4560669456066715 0.0813691990840546 0.4560669456066715 0.0813691990840546 0.1771685037280465
+0.4602510460250817 0.0813691990840546 0.46025104602508177 0.0813691990840546 0.17175070986477048
+0.44979079497905616 0.08475958237922354 0.4497907949790561 0.08475958237922354 0.1853178656006462
+0.4832635983263379 0.06441728260820989 0.48326359832633786 0.06441728260820989 0.1337532080391022
+0.4769874476987226 0.06780766590337883 0.47698744769872264 0.06780766590337883 0.14484394058717312
+0.4811715481171328 0.06780766590337883 0.4811715481171328 0.06780766590337883 0.13819014434138285
+0.46443514644349193 0.0813691990840546 0.46443514644349193 0.0813691990840546 0.1661083252886937
+0.4748953974895175 0.07119804919854777 0.4748953974895174 0.07119804919854777 0.14896876648421767
+0.47280334728031237 0.07458843249371672 0.47280334728031237 0.07458843249371672 0.15290228920597101
+0.47071129707110726 0.07797881578888566 0.4707112970711073 0.07797881578888566 0.15665053450956348
+0.46861924686190215 0.0813691990840546 0.4686192468619021 0.0813691990840546 0.160228172100357
+0.48744769874474814 0.06441728260820989 0.4874476987447482 0.06441728260820989 0.12670653542979596
+0.49163179916315836 0.06441728260820989 0.4916317991631583 0.06441728260820989 0.1193796252224897
+0.4979079497907737 0.06102689931304095 0.4979079497907737 0.06102689931304095 0.10682366969056635
+0.4958158995815686 0.06441728260820989 0.49581589958156863 0.06441728260820989 0.11176304323594467
+0.5020920502091839 0.06102689931304095 0.5020920502091838 0.06102689931304095 0.0988091422773324
+0.5083682008367992 0.05763651601787201 0.5083682008367992 0.05763651601787201 0.08527902963408635
+0.5062761506275941 0.06102689931304095 0.5062761506275941 0.06102689931304095 0.09049783676709987
+0.5146443514644146 0.054246132722703067 0.5146443514644146 0.054246132722703067 0.07128368815088058
+0.5125523012552095 0.05763651601787201 0.5125523012552095 0.05763651601787201 0.07660352452638286
+0.5523012552301065 0.013561533180675767 0.5523012552301064 0.013561533180675767 0.016782575623533854
+0.5460251046024912 0.01695191647584471 0.5460251046024912 0.01695191647584471 0.008944188143634438
+0.5502092050209014 0.01695191647584471 0.5502092050209014 0.01695191647584471 0.013245766519864465
+0.5439330543932861 0.02034229977101365 0.5439330543932862 0.02034229977101365 0.00920529055350285
+0.541841004184081 0.02373268306618259 0.541841004184081 0.02373268306618259 0.01135290180630791
+0.5397489539748759 0.027123066361351533 0.5397489539748759 0.027123066361351533 0.014664846797865344
+0.5334728033472605 0.030513449656520475 0.5334728033472605 0.030513449656520475 0.027008782973575483
+0.5313807531380554 0.03390383295168942 0.5313807531380554 0.03390383295168942 0.031628977206790004
+0.5292887029288503 0.03729421624685836 0.5292887029288503 0.03729421624685836 0.03643132053210693
+0.5271966527196452 0.0406845995420273 0.5271966527196453 0.0406845995420273 0.04139044212401319
+0.5251046025104401 0.04407498283719624 0.5251046025104401 0.04407498283719624 0.04648249432587157
+0.523012552301235 0.04746536613236518 0.523012552301235 0.04746536613236518 0.051682289127189175
+0.5209205020920299 0.050855749427534125 0.5209205020920299 0.050855749427534125 0.056962268079545686
+0.5188284518828248 0.054246132722703067 0.5188284518828247 0.054246132722703067 0.062292477936595515
+0.5376569037656708 0.030513449656520475 0.5376569037656708 0.030513449656520475 0.018612194010796338
+0.560669456066927 0.006780766590337883 0.5606694560669271 0.006780766590337883 0.03249432976629907
+0.5585774058577219 0.010171149885506825 0.5585774058577219 0.010171149885506825 0.028473663289641227
+0.5564853556485168 0.013561533180675767 0.5564853556485168 0.013561533180675767 0.02449434513580329
+0.006780766590337709 0.5690376569037658 0.006780766590337709 0.5690376569037658 0.2182310741451091
+0.016951916475844264 0.5543933054393309 0.016951916475844264 0.5543933054393309 0.22323313518807342
+0.02373268306618197 0.5460251046025109 0.02373268306618197 0.5460251046025109 0.22601920395551664
+0.027123066361350822 0.5439330543933059 0.027123066361350822 0.5439330543933059 0.22712661115105845
+0.033903832951688535 0.5355648535564859 0.033903832951688535 0.5355648535564859 0.22962089724248244
+0.03729421624685738 0.5334728033472809 0.03729421624685738 0.5334728033472809 0.23067857850300824
+0.040684599542026224 0.5313807531380759 0.040684599542026224 0.5313807531380759 0.23171121550134388
+0.0440749828371951 0.5251046025104609 0.0440749828371951 0.5251046025104609 0.23263909994734197
+0.04746536613236393 0.5230125523012559 0.04746536613236393 0.5230125523012559 0.23351786629450696
+0.05085574942753266 0.5209205020920509 0.05085574942753266 0.5209205020920509 0.23433709359604463
+0.0440749828371951 0.5292887029288709 0.0440749828371951 0.5292887029288709 0.2327011824208479
+0.030513449656519673 0.5418410041841009 0.030513449656519673 0.5418410041841009 0.22826699784463875
+0.033903832951688535 0.5397489539748959 0.033903832951688535 0.5397489539748959 0.2294196178387737
+0.02034229977101312 0.5523012552301259 0.02034229977101312 0.5523012552301259 0.2243103250041489
+0.02373268306618197 0.5502092050209209 0.02373268306618197 0.5502092050209209 0.225459556708237
+0.01017114988550656 0.5627615062761508 0.01017114988550656 0.5627615062761508 0.22032349740761062
+0.01017114988550656 0.5669456066945608 0.01017114988550656 0.5669456066945608 0.21918586557954042
+0.013561533180675408 0.5606694560669458 0.013561533180675408 0.5606694560669458 0.2213036487326551
+0.016951916475844264 0.5585774058577408 0.016951916475844264 0.5585774058577408 0.22238350432798445
+0.06441728260821025 0.5000000000000041 0.06441728260821024 0.5000000000000041 0.23664675266027665
+0.06441728260820909 0.5041841004184152 0.0644172826082091 0.5041841004184152 0.23668060762770882
+0.06780766590337967 0.4979079497907985 0.06780766590337967 0.4979079497907985 0.23723192144614016
+0.07119804919854872 0.49581589958159245 0.07119804919854872 0.4958158995815925 0.23779790471702297
+0.07458843249371437 0.4853556485355666 0.07458843249371437 0.4853556485355666 0.23872541390629695
+0.07458843249371526 0.4895397489539756 0.07458843249371526 0.4895397489539756 0.2385065515411118
+0.07458843249371715 0.49372384937238617 0.07458843249371715 0.49372384937238617 0.23835650315840876
+0.05424613272270112 0.5146443514644363 0.05424613272270112 0.5146443514644363 0.2349233701039126
+0.05763651601786973 0.5125523012552321 0.05763651601786973 0.5125523012552321 0.23559747575521642
+0.06102689931303847 0.510460251046028 0.06102689931303847 0.510460251046028 0.23621461518500766
+0.06441728260820756 0.5083682008368243 0.06441728260820756 0.5083682008368243 0.2367802489087538
+0.05424613272270135 0.5188284518828458 0.05424613272270135 0.5188284518828458 0.235089755673953
+0.25210123767363024 0.24980485439320643 0.25210123767363024 0.24980485439320646 0.1150825279568637
+0.23672455226014974 0.25909760165620005 0.23672455226014974 0.25909760165620005 0.10055067927645579
+0.23348872705805832 0.2613323006717226 0.23348872705805832 0.2613323006717226 0.09836567801818663
+0.22693606384340023 0.2656332494822726 0.22693606384340023 0.2656332494822726 0.09512712363062369
+0.23022723530917588 0.2635017686920433 0.23022723530917588 0.2635017686920433 0.09655456913080167
+0.25182675911738905 0.2534195619730423 0.25182675911738905 0.25341956197304233 0.11401512264593018
+0.24901304151477782 0.2551979367560584 0.2490130415147778 0.2551979367560584 0.11095254462844235
+0.23987739177214565 0.2609565263025703 0.23987739177214565 0.2609565263025703 0.10253729958391422
+0.24296128050068075 0.25887886671477045 0.24296128050068075 0.2588788667147704 0.10512910845266187
+0.24591918855702677 0.2570582116424968 0.24591918855702674 0.2570582116424968 0.10786052132575193
+0.2269196646486552 0.2697951698503975 0.22691966464865523 0.2697951698503975 0.09526198650452998
+0.17969031456582427 0.30334728037458847 0.17969031456582427 0.30334728037458847 0.11777380492567835
+0.1830806978333415 0.3012552302733014 0.1830806978333415 0.3012552302733014 0.1148162429344204
+0.18647108106923418 0.2991631802904868 0.18647108106923418 0.2991631802904868 0.11193184088456458
+0.18986146429399117 0.29288703074366157 0.18986146429399117 0.29288703074366157 0.10638258841930258
+0.19325184584536323 0.2907950147784767 0.19325184584536323 0.29079501477847675 0.10395128345942219
+0.18986146411615126 0.29707113495295895 0.18986146411615126 0.29707113495295895 0.10914928336924311
+0.2236113903604167 0.27191345521190147 0.2236113903604167 0.2719134552119015 0.09441487152124589
+0.220288121098957 0.27403075101130986 0.22028812109895704 0.27403075101130986 0.09399078428960904
+0.21694389730427024 0.276142899145481 0.21694389730427024 0.276142899145481 0.09398743394134858
+0.21357774607263305 0.2782459080063145 0.21357774607263305 0.2782459080063145 0.09439512425675935
+0.2101980635527149 0.28033998694155254 0.2101980635527149 0.28033998694155254 0.09519530340534586
+0.2068110913056389 0.2824292464940055 0.2068110913056389 0.2824292464940055 0.09636077370075596
+0.19664221613030133 0.28870297477430784 0.19664221613030133 0.2887029747743078 0.10169400803070096
+0.2000323062898349 0.2866111630589547 0.2000323062898349 0.2866111630589547 0.09964963781127163
+0.20342233235079443 0.28451970574575003 0.20342233235079443 0.28451970574575003 0.09785832195485833
+0.1593480148736513 0.32008368201173926 0.15934801487365127 0.32008368201173926 0.14064318524258734
+0.16273839817047597 0.3179916318024743 0.16273839817047597 0.3179916318024743 0.13744484379887625
+0.16612878146709784 0.3158995815907664 0.16612878146709784 0.3158995815907664 0.13423378220931326
+0.16951916476144013 0.3138075313760661 0.16951916476144013 0.31380753137606604 0.1310132928116352
+0.17290954804999625 0.311715481159989 0.17290954804999625 0.311715481159989 0.127790252733938
+0.1762999313275384 0.3096234309479486 0.1762999313275384 0.3096234309479486 0.12457555644342637
+0.17969031458702914 0.30753138074714936 0.17969031458702914 0.30753138074714936 0.12138444805855621
+0.14239609839715733 0.33891213389121955 0.1423960983971573 0.33891213389121955 0.16690127766159388
+0.14578648169237102 0.3368200836819164 0.14578648169237104 0.3368200836819164 0.16359192228673206
+0.14917686498721117 0.3305439330539204 0.14917686498721117 0.3305439330539204 0.1552153594017459
+0.15256724828201612 0.32845188284482263 0.15256724828201615 0.32845188284482263 0.15194503109687327
+0.14917686498754892 0.334728033472486 0.14917686498754892 0.334728033472486 0.16026207909862142
+0.15595763157674183 0.32635983263630935 0.15595763157674183 0.32635983263630935 0.14865746837636465
+0.1593480148716923 0.3242677824286817 0.15934801487169234 0.3242677824286817 0.14534947264808426
+0.12883456521641942 0.3556485355648537 0.12883456521641942 0.3556485355648537 0.1901295543458027
+0.13222494851158784 0.35355648535564793 0.13222494851158784 0.35355648535564793 0.18692058260816544
+0.13561533180675295 0.3472803347280415 0.13561533180675298 0.3472803347280415 0.17863295345714356
+0.13561533180675503 0.3514644351464425 0.13561533180675503 0.3514644351464425 0.18366860701556417
+0.13900571510192297 0.3451882845188519 0.13900571510192297 0.3451882845188519 0.17533903026282727
+0.14239609839710476 0.34309623430967284 0.14239609839710476 0.34309623430967284 0.1720172267082636
+0.1118826487405749 0.3744769874476992 0.1118826487405749 0.3744769874476992 0.21382891819394992
+0.1118826487405749 0.37866108786610925 0.1118826487405749 0.37866108786610925 0.2176911305483544
+0.1152730320357438 0.37238493723849425 0.1152730320357438 0.37238493723849425 0.21117335849380928
+0.11866341533091268 0.3702928870292892 0.1186634153309127 0.3702928870292892 0.20840553500811684
+0.12205379862608161 0.3640167364016742 0.12205379862608161 0.3640167364016742 0.20108357801882412
+0.12205379862608158 0.3682008368200842 0.12205379862608158 0.3682008368200842 0.20553865900978693
+0.12544418192125048 0.36192468619246915 0.12544418192125048 0.36192468619246915 0.1980457265625787
+0.12883456521641945 0.35983263598326415 0.12883456521641945 0.35983263598326415 0.19494073056279596
+0.1017114988550682 0.3933054393305445 0.10171149885506821 0.39330543933054457 0.2303826548357968
+0.10510188215023712 0.39121338912133946 0.10510188215023712 0.39121338912133946 0.22860957785645578
+0.10849226544540602 0.3849372384937244 0.10849226544540602 0.3849372384937244 0.22352233927347934
+0.11188264874057491 0.38284518828451936 0.1118826487405749 0.38284518828451936 0.22126837305620697
+0.10849226544540602 0.38912133891213446 0.10849226544540602 0.38912133891213446 0.22666330939594317
+0.1017114988550682 0.39748953974895457 0.10171149885506821 0.39748953974895457 0.23291580864230552
+0.09493073226473037 0.4100418410041849 0.09493073226473037 0.4100418410041849 0.23914575166418076
+0.1017114988550682 0.4016736401673646 0.10171149885506821 0.4016736401673646 0.2351540426250991
+0.0983211155598993 0.4079497907949798 0.0983211155598993 0.4079497907949798 0.23822115651124864
+0.10171149885506821 0.4058577405857747 0.10171149885506821 0.4058577405857747 0.2371074387429747
+0.09493073226473037 0.41422594142259495 0.09493073226473037 0.414225941422595 0.24051958117522457
+0.08475958237922354 0.43723849372385004 0.08475958237922354 0.43723849372385004 0.24345162960186648
+0.09154034896956142 0.42050209205020994 0.09154034896956142 0.42050209205021 0.24208844131493557
+0.09493073226473037 0.4184100418410049 0.09493073226473037 0.4184100418410049 0.24164134934164253
+0.08814996567439248 0.42677824267782505 0.08814996567439248 0.42677824267782505 0.2429865348678729
+0.09154034896956142 0.42468619246862 0.09154034896956142 0.42468619246862 0.24284360344364284
+0.08814996567439248 0.43096234309623505 0.08814996567439248 0.43096234309623505 0.24341945377780697
+0.08814996567439248 0.43514644351464504 0.08814996567439248 0.43514644351464504 0.24367410101113832
+0.0813691990840546 0.4518828451882851 0.0813691990840546 0.4518828451882851 0.24260657564164578
+0.0813691990840546 0.4560669456066952 0.0813691990840546 0.4560669456066952 0.24227853174891237
+0.08475958237922354 0.44142259414226004 0.08475958237922354 0.44142259414226004 0.24346632871460425
+0.08475958237922354 0.44560669456067004 0.08475958237922354 0.44560669456067004 0.24335759662142945
+0.08475958237922354 0.4497907949790801 0.08475958237922354 0.4497907949790801 0.2431487960584597
+0.08136919908405459 0.46025104602510547 0.08136919908405459 0.46025104602510547 0.24190396061585262
+0.08136919908405453 0.46443514644351563 0.08136919908405453 0.46443514644351563 0.24150352956153318
+0.07797881578888549 0.4707112970711309 0.07797881578888549 0.4707112970711309 0.24041483225229499
+0.08136919908405442 0.4686192468619259 0.08136919908405442 0.4686192468619259 0.24109645592532483
+0.077978815788885 0.4748953974895412 0.077978815788885 0.4748953974895412 0.24002531480886424
+0.07797881578888423 0.4790794979079516 0.07797881578888423 0.4790794979079516 0.2396692565576208
+0.07797881578888308 0.48326359832636184 0.07797881578888309 0.48326359832636184 0.23935973483848816
+0.2557687906040923 0.24487563754138209 0.25576879060409224 0.24487563754138209 0.1202523042297461
+0.2555385949240304 0.24848418077280895 0.25553859492403047 0.24848418077280895 0.11890036038970818
+0.261474452320074 0.23382497343849737 0.261474452320074 0.23382497343849737 0.1311610895847393
+0.2593241821483071 0.23687339541496227 0.25932418214830705 0.23687339541496225 0.1272837683569372
+0.2677924600687988 0.230291019959996 0.2677924600687988 0.23029101995999604 0.14009108038327986
+0.26571499268995286 0.23368412871572009 0.26571499268995286 0.23368412871572009 0.13587870113496117
+0.2605683032309528 0.2398119522807376 0.2605683032309528 0.2398119522807376 0.12723201858590136
+0.25916884881759583 0.2428881697545347 0.25916884881759583 0.24288816975453467 0.12457063915209102
+0.2824274794687424 0.2068107199215539 0.2824274794687424 0.2068107199215539 0.17355467135464966
+0.28033712369388514 0.21019724285233232 0.28033712369388514 0.21019724285233235 0.16851403744142648
+0.2782494395430449 0.21357779278476183 0.2782494395430449 0.21357779278476183 0.16350768931677254
+0.26986315274623146 0.22696056455803537 0.26986315274623146 0.2269605645580354 0.1444536928533966
+0.2761600582633545 0.21694798362480464 0.2761600582633545 0.21694798362480464 0.15856805019032652
+0.2740620820696474 0.22030290683356768 0.2740620820696474 0.22030290683356765 0.15372265875279847
+0.27195858996195904 0.22363841707070822 0.27195858996195904 0.22363841707070822 0.14900615257044933
+0.3138075313807237 0.16951916475844678 0.31380753138072365 0.16951916475844678 0.22953154712654134
+0.3117154811715183 0.17290954805361544 0.3117154811715183 0.17290954805361544 0.22656911336502975
+0.309623430962313 0.17629993134878386 0.309623430962313 0.17629993134878386 0.22330352613208324
+0.3075313807531076 0.17969031464395205 0.30753138075310765 0.17969031464395205 0.21974422329283258
+0.30125523012549404 0.18308069793912085 0.30125523012549404 0.18308069793912085 0.21129727697241282
+0.286611059302639 0.20680877640018755 0.286611059302639 0.20680877640018755 0.1784878941479916
+0.2991631799162901 0.18647108123429 0.2991631799162901 0.18647108123429 0.2071184362658525
+0.2970711394406343 0.1898614582383601 0.2970711394406343 0.1898614582383601 0.20271754540259443
+0.29497913627691336 0.1932518111265488 0.29497913627691336 0.1932518111265488 0.19812321301145389
+0.29288715068348903 0.19664212544354032 0.2928871506834891 0.19664212544354032 0.1933673542584087
+0.2907948553043706 0.20003203327378294 0.2907948553043706 0.20003203327378297 0.18848443495010073
+0.28870239746721515 0.20342070837444282 0.28870239746721515 0.20342070837444282 0.18351174536792506
+0.3054393305439023 0.18308069793911957 0.3054393305439023 0.18308069793911955 0.21590623881677487
+0.33472803347277513 0.14917686498743343 0.33472803347277513 0.14917686498743343 0.24672967315305386
+0.33263598326357 0.15256724828260237 0.33263598326356997 0.15256724828260237 0.24589661172501054
+0.3305439330543649 0.15595763157777132 0.3305439330543649 0.15595763157777132 0.24480606697423554
+0.3221757322175444 0.1627383981681092 0.3221757322175444 0.1627383981681092 0.23823008209238813
+0.32845188284515975 0.15934801487294026 0.32845188284515975 0.15934801487294026 0.2434327393186844
+0.32635983263595464 0.1627383981681092 0.32635983263595464 0.1627383981681092 0.24175607150488868
+0.32008368200833925 0.1661287814632781 0.32008368200833925 0.1661287814632781 0.23604954192737818
+0.317991631799134 0.16951916475844697 0.317991631799134 0.16951916475844697 0.23355278352017486
+0.3661087866108518 0.12544418192125084 0.3661087866108517 0.12544418192125084 0.24938267512417855
+0.36401673640164667 0.12883456521641978 0.36401673640164667 0.12883456521641978 0.25047390459147567
+0.36192468619244156 0.13222494851158872 0.3619246861924416 0.13222494851158872 0.2515485321924174
+0.35983263598323645 0.13561533180675767 0.35983263598323645 0.13561533180675767 0.25257284292239707
+0.35774058577403134 0.1390057151019266 0.3577405857740313 0.1390057151019266 0.25350910072798755
+0.35564853556482623 0.14239609839709555 0.35564853556482623 0.14239609839709555 0.2543170602199962
+0.34100418410039046 0.1457864816922645 0.3410041841003904 0.1457864816922645 0.2495618758904079
+0.3451882845188007 0.1457864816922645 0.34518828451880074 0.1457864816922645 0.25156966290631905
+0.3493723849372109 0.1457864816922645 0.34937238493721084 0.1457864816922645 0.25336535472229876
+0.3535564853556211 0.1457864816922645 0.3535564853556212 0.1457864816922645 0.2549555196493849
+0.33891213389118535 0.14917686498743343 0.33891213389118535 0.14917686498743343 0.2491990922840601
+0.3723849372384671 0.1220537986260819 0.3723849372384671 0.1220537986260819 0.2477716552414011
+0.370292887029262 0.12544418192125084 0.37029288702926205 0.12544418192125084 0.2491070900077247
+0.3765690376568773 0.1220537986260819 0.3765690376568773 0.1220537986260819 0.24701174092147468
+0.40585774058574886 0.10171149885506825 0.40585774058574886 0.10171149885506825 0.22864687004941045
+0.40376569037654375 0.10510188215023719 0.4037656903765438 0.10510188215023719 0.23054664888884632
+0.40167364016733864 0.10849226544540613 0.4016736401673386 0.10849226544540613 0.23254692353380005
+0.39958158995813353 0.11188264874057507 0.3995815899581335 0.11188264874057507 0.23466776558238345
+0.3974895397489284 0.11527303203574402 0.3974895397489284 0.11527303203574402 0.23692038460235484
+0.38075313807528754 0.1220537986260819 0.38075313807528754 0.1220537986260819 0.24603155502987625
+0.38493723849369776 0.1220537986260819 0.38493723849369776 0.1220537986260819 0.24483704136191406
+0.3912133891213131 0.11866341533091296 0.39121338912131304 0.11866341533091296 0.24115982694488194
+0.3953974895397233 0.11866341533091296 0.39539748953972337 0.11866341533091296 0.2393062501000914
+0.389121338912108 0.1220537986260819 0.389121338912108 0.1220537986260819 0.24343174438446988
+0.42677824267779996 0.09493073226473037 0.4267782426778 0.09493073226473037 0.21077710870045588
+0.4121338912133642 0.09832111555989931 0.41213389121336425 0.09832111555989931 0.22365178291705287
+0.4163179916317744 0.09832111555989931 0.41631799163177435 0.09832111555989931 0.2203115476926156
+0.42050209205018463 0.09832111555989931 0.4205020920501847 0.09832111555989931 0.21679962913363435
+0.42468619246859485 0.09832111555989931 0.4246861924685948 0.09832111555989931 0.21311430390193023
+0.4100418410041591 0.10171149885506825 0.41004184100415914 0.10171149885506825 0.2256322557224331
+0.44769874476985105 0.08814996567439248 0.44769874476985105 0.08814996567439248 0.18816239239569463
+0.4330543933054153 0.09154034896956142 0.43305439330541523 0.09154034896956142 0.20435938835179077
+0.4372384937238255 0.09154034896956142 0.43723849372382556 0.09154034896956142 0.20007399939155235
+0.4414225941422357 0.09154034896956142 0.44142259414223567 0.09154034896956142 0.19560700530488365
+0.44560669456064594 0.09154034896956142 0.445606694560646 0.09154034896956142 0.1909498842976384
+0.4309623430962102 0.09493073226473037 0.4309623430962102 0.09493073226473037 0.20678842609901094
+0.4539748953974664 0.08475958237922354 0.45397489539746644 0.08475958237922354 0.18023127214465853
+0.4581589958158766 0.08475958237922354 0.45815899581587655 0.08475958237922354 0.1749341760511444
+0.4623430962342868 0.08475958237922354 0.4623430962342869 0.08475958237922354 0.16941424173527395
+0.4518828451882613 0.08814996567439248 0.4518828451882612 0.08814996567439248 0.18319214657457308
+0.485355648535543 0.06780766590337883 0.48535564853554297 0.06780766590337883 0.13126576153235495
+0.4790794979079277 0.07119804919854777 0.47907949790792775 0.07119804919854777 0.14244331231293803
+0.4832635983263379 0.07119804919854777 0.48326359832633786 0.07119804919854777 0.13564757125418733
+0.46652719665269704 0.08475958237922354 0.466527196652697 0.08475958237922354 0.16365851355451014
+0.4769874476987226 0.07458843249371672 0.47698744769872264 0.07458843249371672 0.14650823387212564
+0.4748953974895175 0.07797881578888566 0.4748953974895174 0.07797881578888566 0.15038860186564149
+0.47280334728031237 0.0813691990840546 0.47280334728031237 0.0813691990840546 0.15409672624453952
+0.47071129707110726 0.08475958237922354 0.4707112970711073 0.08475958237922354 0.15765365971893516
+0.48953974895395325 0.06780766590337883 0.48953974895395325 0.06780766590337883 0.12405932600327314
+0.49372384937236347 0.06780766590337883 0.4937238493723635 0.06780766590337883 0.1165602632891648
+0.4999999999999788 0.06441728260820989 0.49999999999997874 0.06441728260820989 0.10384867026378043
+0.4979079497907737 0.06780766590337883 0.4979079497907737 0.06780766590337883 0.1087591822362204
+0.504184100418389 0.06441728260820989 0.504184100418389 0.06441728260820989 0.09562999026839558
+0.5104602510460043 0.06102689931304095 0.5104602510460045 0.06102689931304095 0.08188683834738118
+0.5083682008367992 0.06441728260820989 0.5083682008367992 0.06441728260820989 0.08710237250782353
+0.5167364016736197 0.05763651601787201 0.5167364016736197 0.05763651601787201 0.06764113785191049
+0.5146443514644146 0.06102689931304095 0.5146443514644146 0.06102689931304095 0.07297556940176687
+0.5543933054393116 0.01695191647584471 0.5543933054393116 0.01695191647584471 0.02056674808027859
+0.5481171548116963 0.02034229977101365 0.5481171548116963 0.02034229977101365 0.010229930568688093
+0.5523012552301065 0.02034229977101365 0.5523012552301064 0.02034229977101365 0.016722334618893723
+0.5460251046024912 0.02373268306618259 0.5460251046024912 0.02373268306618259 0.008397774412936288
+0.5439330543932861 0.027123066361351533 0.5439330543932862 0.027123066361351533 0.008663795704227232
+0.541841004184081 0.030513449656520475 0.541841004184081 0.030513449656520475 0.010999023009402207
+0.5355648535564657 0.03390383295168942 0.5355648535564655 0.03390383295168942 0.02294600442753834
+0.5334728033472605 0.03729421624685836 0.5334728033472605 0.03729421624685836 0.027551674195924424
+0.5313807531380554 0.0406845995420273 0.5313807531380554 0.0406845995420273 0.03236872005651009
+0.5292887029288503 0.04407498283719624 0.5292887029288503 0.04407498283719624 0.037357592752327425
+0.5271966527196452 0.04746536613236518 0.5271966527196453 0.04746536613236518 0.042485993681467944
+0.5251046025104401 0.050855749427534125 0.5251046025104401 0.050855749427534125 0.04772314152388608
+0.523012552301235 0.054246132722703067 0.523012552301235 0.054246132722703067 0.0530375390855913
+0.5209205020920299 0.05763651601787201 0.5209205020920299 0.05763651601787201 0.05839642959733391
+0.5397489539748759 0.03390383295168942 0.5397489539748759 0.03390383295168942 0.014546031585239731
+0.5648535564853372 0.006780766590337883 0.5648535564853372 0.006780766590337883 0.04070069069937449
+0.5690376569037474 0.006780766590337883 0.5690376569037473 0.006780766590337883 0.04896010023737135
+0.5627615062761321 0.010171149885506825 0.5627615062761321 0.010171149885506825 0.03667149828406039
+0.560669456066927 0.013561533180675767 0.5606694560669271 0.013561533180675767 0.03267239337832009
+0.5585774058577219 0.01695191647584471 0.5585774058577219 0.01695191647584471 0.028694533242855202
+0.5732217573221576 0.006780766590337883 0.5732217573221576 0.006780766590337883 0.05720865097699227
+0.006780766590337709 0.5732217573221758 0.006780766590337709 0.5732217573221758 0.21689202548280787
+0.01017114988550656 0.5711297071129708 0.01017114988550656 0.5711297071129708 0.21792517511214812
+0.02034229977101312 0.5564853556485359 0.02034229977101312 0.5564853556485359 0.22355426054134583
+0.027123066361350822 0.5481171548117159 0.027123066361350822 0.5481171548117159 0.22666348931325456
+0.030513449656519673 0.5460251046025109 0.030513449656519673 0.5460251046025109 0.22790166374058837
+0.03729421624685738 0.5376569037656909 0.03729421624685738 0.5376569037656909 0.23056304965549226
+0.040684599542026224 0.5355648535564859 0.040684599542026224 0.5355648535564859 0.23167633591837114
+0.0440749828371951 0.5334728033472809 0.0440749828371951 0.5334728033472809 0.2327400850317736
+0.04746536613236394 0.5271966527196659 0.04746536613236394 0.5271966527196659 0.2336333031732083
+0.05085574942753279 0.5251046025104609 0.05085574942753279 0.5251046025104609 0.23449568710829552
+0.05424613272270159 0.5230125523012558 0.05424613272270159 0.5230125523012558 0.23528042178659989
+0.04746536613236394 0.5313807531380759 0.04746536613236394 0.5313807531380759 0.23373749236424476
+0.033903832951688535 0.5439330543933059 0.033903832951688535 0.5439330543933059 0.22915162591335303
+0.03729421624685738 0.5418410041841009 0.03729421624685738 0.5418410041841009 0.23039012065385522
+0.02373268306618197 0.5543933054393309 0.02373268306618197 0.5543933054393309 0.22480185521764653
+0.027123066361350822 0.5523012552301259 0.027123066361350822 0.5523012552301259 0.22610780203150907
+0.013561533180675408 0.5648535564853558 0.013561533180675408 0.5648535564853558 0.22024986739366237
+0.013561533180675408 0.5690376569037658 0.013561533180675408 0.5690376569037658 0.21907424370038228
+0.016951916475844264 0.5627615062761508 0.016951916475844264 0.5627615062761508 0.22142009164304396
+0.02034229977101312 0.5606694560669458 0.02034229977101312 0.5606694560669458 0.22268738355134401
+0.006780766590337709 0.5774058577405858 0.006780766590337709 0.5774058577405858 0.21542596537000006
+0.0678076659033789 0.5020920502092107 0.0678076659033789 0.5020920502092107 0.23723223215661807
+0.06780766590337704 0.506276150627621 0.06780766590337704 0.5062761506276211 0.23730383145696252
+0.07119804919854879 0.5000000000000053 0.07119804919854879 0.5000000000000053 0.2377607582102739
+0.07458843249371837 0.49790794979079905 0.07458843249371837 0.49790794979079905 0.2382803501003485
+0.07797881578888319 0.48744769874477073 0.0779788157888832 0.48744769874477073 0.2391076133184266
+0.07797881578888477 0.49163179916318006 0.07797881578888477 0.49163179916318006 0.23892144065836615
+0.07797881578888725 0.4958158995815922 0.07797881578888725 0.4958158995815922 0.23880737512546232
+0.05763651601786993 0.5167364016736409 0.05763651601786993 0.5167364016736409 0.23577297017520618
+0.06102689931303832 0.5146443514644363 0.06102689931303832 0.5146443514644363 0.2363882946236375
+0.06441728260820681 0.5125523012552322 0.0644172826082068 0.5125523012552322 0.23694183045428072
+0.06780766590337546 0.5104602510460289 0.06780766590337546 0.5104602510460289 0.23744412563289882
+0.057636516017870336 0.5209205020920505 0.057636516017870336 0.5209205020920505 0.2359840986912645
+0.25526544613014474 0.2521119946102931 0.25526544613014474 0.25211199461029304 0.1177600177678438
+0.23665597903541002 0.2632889445188236 0.23665597903541 0.2632889445188236 0.1001532029505704
+0.23345715854009724 0.265557769741362 0.23345715854009727 0.265557769741362 0.09815708122384888
+0.23021301967176996 0.2676748669091199 0.23021301967176996 0.26767486690911996 0.09652362991200815
+0.2551337720097792 0.2558347862732193 0.2551337720097792 0.2558347862732193 0.11698524391050165
+0.25198963685387954 0.2573666917723035 0.2519896368538795 0.2573666917723035 0.11353198990004605
+0.23977518330946757 0.2649985276922651 0.23977518330946754 0.2649985276922651 0.10226311463173769
+0.24894208248741315 0.2589948995700898 0.24894208248741315 0.25899489957008986 0.11038008679442812
+0.2428869829455961 0.262805522188228 0.2428869829455961 0.262805522188228 0.10474757714210227
+0.24596572492287616 0.2607596967887804 0.24596572492287616 0.2607596967887804 0.10749449576114241
+0.2269079695568297 0.2739464729057268 0.2269079695568297 0.2739464729057268 0.09570650427068426
+0.23021067595240585 0.27183185996972337 0.23021067595240585 0.27183185996972337 0.09680272595765814
+0.18308069782551564 0.30543933083922475 0.18308069782551564 0.30543933083922475 0.1182367401697516
+0.18647108092305545 0.3033472813938813 0.18647108092305545 0.3033472813938813 0.11515690001641175
+0.18986146335832985 0.3012552476375489 0.18986146335832985 0.3012552476375489 0.1121739897351738
+0.1932518425649752 0.2949791595683171 0.1932518425649752 0.2949791595683171 0.10650155663682952
+0.19664214881004194 0.2928871513242013 0.19664214881004194 0.2928871513242013 0.10402528797703958
+0.1932518334375124 0.2991633058112593 0.1932518334375124 0.2991633058112593 0.10932144368491614
+0.2236078962979966 0.2760745154930881 0.2236078962979966 0.2760745154930881 0.09504601971144215
+0.22028824417650758 0.2782043496766473 0.22028824417650758 0.2782043496766473 0.09481718966211082
+0.21694253540386677 0.2803251451020831 0.21694253540386677 0.2803251451020831 0.09501673277500776
+0.2135754209624224 0.282432196373456 0.2135754209624224 0.282432196373456 0.09563397247824346
+0.2101965019769195 0.284525782775237 0.2101965019769195 0.284525782775237 0.09664781107722321
+0.20680927635251956 0.2866140616313845 0.20680927635251956 0.28661406163138453 0.09803071105152067
+0.20003188683356846 0.29079536057690364 0.20003188683356846 0.29079536057690364 0.10176036944688603
+0.20342158852711104 0.2887041124932302 0.20342158852711104 0.2887041124932302 0.09974808210137555
+0.16273839816740937 0.3221757322218474 0.16273839816740934 0.3221757322218474 0.14201957141753155
+0.1661287814644506 0.32008368201486087 0.16612878146445056 0.32008368201486087 0.1386686669945432
+0.16951916476276316 0.31799163180570195 0.16951916476276316 0.31799163180570195 0.13530062701657644
+0.17290954806070769 0.3158995815918824 0.17290954806070769 0.3158995815918824 0.13192280374922427
+0.17629993135425845 0.31380753137232725 0.17629993135425845 0.31380753137232725 0.12854647124592852
+0.17969031463660257 0.3117154811501754 0.17969031463660257 0.3117154811501754 0.12518716972806623
+0.18308069782359157 0.3096234319606321 0.18308069782359157 0.3096234319606321 0.12186494518666813
+0.14578648169231304 0.34100418410048877 0.14578648169231304 0.34100418410048877 0.16866586794290736
+0.14917686498756016 0.3389121338912496 0.1491768649875602 0.3389121338912496 0.16528230413926345
+0.1525672482825961 0.3326359832629295 0.15256724828259613 0.3326359832629295 0.156908009553165
+0.15595763157738315 0.33054393305340624 0.15595763157738315 0.3305439330534062 0.1535262783690309
+0.1525672482828306 0.3368200836818587 0.1525672482828306 0.3368200836818587 0.16186352473425802
+0.15934801487183353 0.3284518828443386 0.15934801487183356 0.3284518828443386 0.1501144376568793
+0.16273839816609836 0.32635983263639895 0.16273839816609836 0.32635983263639895 0.1466716941663181
+0.13222494851158847 0.35774058577405876 0.13222494851158847 0.35774058577405876 0.19177551420873307
+0.13561533180675733 0.3556485355648528 0.13561533180675733 0.3556485355648528 0.18855468826295596
+0.13900571510192014 0.34937238493724027 0.13900571510192014 0.34937238493724027 0.1803758650571878
+0.13900571510192516 0.3535564853556458 0.13900571510192516 0.3535564853556458 0.18528075729670632
+0.14239609839708386 0.3472803347280484 0.14239609839708386 0.3472803347280484 0.17704269838271317
+0.1457864816922528 0.3451882845188776 0.1457864816922528 0.3451882845188776 0.17366799800300406
+0.1152730320357438 0.3765690376569043 0.1152730320357438 0.37656903765690425 0.21516094747298756
+0.1152730320357438 0.38075313807531436 0.1152730320357438 0.38075313807531436 0.2188726455552877
+0.11866341533091268 0.3744769874476992 0.1186634153309127 0.3744769874476992 0.21250959013533796
+0.12205379862608158 0.3723849372384942 0.12205379862608158 0.3723849372384942 0.20974955490407662
+0.12544418192125048 0.36610878661087914 0.12544418192125048 0.36610878661087914 0.2025839411569185
+0.1254441819212505 0.3702928870292892 0.1254441819212505 0.3702928870292892 0.20689149660092124
+0.12883456521641937 0.3640167364016742 0.12883456521641937 0.3640167364016742 0.19955041205401414
+0.1322249485115883 0.36192468619246926 0.1322249485115883 0.36192468619246926 0.19644486779726
+0.10510188215023712 0.39539748953974957 0.10510188215023712 0.39539748953974957 0.231300216318121
+0.10849226544540602 0.3933054393305445 0.10849226544540602 0.39330543933054457 0.22951045080388974
+0.1118826487405749 0.38702928870292946 0.1118826487405749 0.38702928870292946 0.22455728588411325
+0.1152730320357438 0.3849372384937244 0.1152730320357438 0.3849372384937244 0.2223044922449102
+0.11188264874057491 0.3912133891213395 0.1118826487405749 0.39121338912133957 0.22755867710078811
+0.10510188215023712 0.3995815899581596 0.10510188215023712 0.3995815899581596 0.23369829841084552
+0.0983211155598993 0.41213389121338984 0.0983211155598993 0.4121338912133899 0.23974556035415603
+0.10510188215023712 0.4037656903765697 0.10510188215023712 0.4037656903765697 0.23581327192128773
+0.10171149885506821 0.4100418410041848 0.10171149885506821 0.4100418410041848 0.23878913451512365
+0.10510188215023714 0.4079497907949797 0.10510188215023715 0.40794979079497967 0.23765766550049058
+0.0983211155598993 0.4163179916317999 0.0983211155598993 0.4163179916317999 0.24101514405088106
+0.08814996567439248 0.43933054393305504 0.08814996567439248 0.43933054393305504 0.24377361643692494
+0.09493073226473037 0.42259414225941494 0.09493073226473037 0.422594142259415 0.24253001061234888
+0.09832111555989931 0.42050209205020994 0.09832111555989931 0.42050209205021 0.24204835237659106
+0.09154034896956142 0.42887029288703005 0.09154034896956142 0.42887029288703005 0.24339145925835107
+0.09493073226473037 0.426778242677825 0.09493073226473037 0.426778242677825 0.24320614826637985
+0.09154034896956142 0.43305439330544004 0.09154034896956142 0.43305439330544004 0.24375416057450286
+0.09154034896956142 0.43723849372385004 0.09154034896956142 0.43723849372385004 0.243954551710962
+0.08475958237922354 0.4539748953974902 0.08475958237922354 0.4539748953974902 0.24286275340146304
+0.08475958237922353 0.45815899581590047 0.08475958237922353 0.45815899581590047 0.2425214296067131
+0.08814996567439248 0.44351464435146504 0.08814996567439248 0.44351464435146504 0.24374138660608993
+0.08814996567439248 0.4476987447698751 0.08814996567439248 0.4476987447698751 0.2436006469005987
+0.08814996567439248 0.4518828451882852 0.08814996567439248 0.4518828451882852 0.24337411429952763
+0.0847595823792235 0.46234309623431064 0.0847595823792235 0.46234309623431064 0.24214562830470468
+0.0847595823792233 0.4665271966527209 0.0847595823792233 0.4665271966527209 0.2417547433871711
+0.08136919908405427 0.47280334728033613 0.08136919908405427 0.4728033472803361 0.2407002861127651
+0.08475958237922304 0.4707112970711313 0.08475958237922304 0.4707112970711313 0.2413665468090147
+0.08136919908405325 0.47698744769874674 0.08136919908405325 0.47698744769874674 0.24033071078682486
+0.08136919908405187 0.48117154811715707 0.08136919908405187 0.48117154811715707 0.24000141439428582
+0.0813691990840502 0.4853556485355668 0.0813691990840502 0.4853556485355668 0.2397239562190274
+0.2588603673833033 0.24698386941613282 0.25886036738330326 0.24698386941613282 0.1228649497835551
+0.2586110454776559 0.25071779843247327 0.25861104547765595 0.25071779843247327 0.12164026980655777
+0.26344844516404514 0.2376595636660157 0.26344844516404514 0.2376595636660157 0.13144627934997663
+0.2699636913770347 0.23348997591379284 0.2699636913770347 0.23348997591379286 0.1408542741764431
+0.2719343206003711 0.23021316879519924 0.2719343206003711 0.23021316879519924 0.14493046005893442
+0.26799265682156465 0.23687382857693282 0.26799265682156465 0.23687382857693282 0.13693090116758147
+0.27200395811344075 0.23634895559569147 0.27200395811344075 0.23634895559569147 0.1418933731986208
+0.2630212875940988 0.24179060028306906 0.2630212875940989 0.24179060028306906 0.12917743324630415
+0.262385429309393 0.2455349311340373 0.262385429309393 0.24553493113403732 0.1272194982324846
+0.2845217802983662 0.210197199989249 0.2845217802983662 0.210197199989249 0.17345103927040537
+0.2824372828077332 0.21358183465981506 0.2824372828077332 0.21358183465981506 0.1684439655381789
+0.28035172728419794 0.2169562222272908 0.28035172728419794 0.2169562222272908 0.16349814669484222
+0.27401790580203617 0.22693582174067117 0.27401790580203617 0.22693582174067117 0.14930653527870333
+0.2782561186858995 0.22031284096221262 0.27825611868589956 0.22031284096221262 0.15864082357054068
+0.2761388507869586 0.22363984317325228 0.2761388507869586 0.22363984317325228 0.1538958485691355
+0.31589958158992865 0.1729095480536157 0.31589958158992865 0.1729095480536157 0.23073714015453797
+0.3138075313807232 0.1762999313487843 0.3138075313807232 0.1762999313487843 0.22760599873954382
+0.31171548117151776 0.17969031464395266 0.31171548117151776 0.17969031464395266 0.22416873404911083
+0.3096234309623121 0.18308069793912063 0.3096234309623121 0.18308069793912063 0.22044049337633156
+0.28870667042262427 0.21019264693285644 0.28870667042262427 0.21019264693285641 0.17844692369068996
+0.3033472803346986 0.18647108123428718 0.3033472803346986 0.18647108123428716 0.2118098506119722
+0.2907944143911135 0.20680480875456983 0.2907944143911135 0.20680480875456983 0.18346304085380918
+0.301255230125497 0.1898614645294554 0.301255230125497 0.1898614645294554 0.20748009763730826
+0.29916336809822985 0.19325172619669675 0.2991633680982298 0.19325172619669675 0.20294647423546167
+0.29707167165015774 0.19664173327651382 0.29707167165015774 0.19664173327651382 0.19824172836866447
+0.29497923610223714 0.20003096270439155 0.29497923610223714 0.20003096270439155 0.19340052963156437
+0.2928859315931029 0.2034182923967717 0.2928859315931029 0.2034182923967717 0.188460751867218
+0.30753138101893057 0.18647107107846708 0.30753138101893057 0.18647107107846708 0.2164418510380762
+0.33682008368198024 0.15256724828260237 0.3368200836819803 0.15256724828260237 0.2486020144708561
+0.33472803347277513 0.15595763157777132 0.33472803347277513 0.15595763157777132 0.24774004643496325
+0.33263598326356997 0.15934801487294026 0.33263598326356997 0.15934801487294026 0.24658662541399878
+0.32426778242674953 0.16612878146327814 0.32426778242674953 0.16612878146327814 0.23976090162383493
+0.33054393305436486 0.1627383981681092 0.33054393305436486 0.1627383981681092 0.24512008081731854
+0.32845188284515975 0.16612878146327814 0.32845188284515975 0.16612878146327814 0.24332430365664945
+0.3221757322175443 0.16951916475844706 0.3221757322175443 0.16951916475844706 0.2374379272938507
+0.3200836820083391 0.1729095480536159 0.3200836820083391 0.1729095480536159 0.23478398380548396
+0.3682008368200569 0.12883456521641978 0.3682008368200569 0.12883456521641978 0.250463097052457
+0.3661087866108518 0.13222494851158872 0.3661087866108517 0.13222494851158872 0.25180991395353264
+0.36401673640164667 0.13561533180675767 0.36401673640164667 0.13561533180675767 0.2531121839268815
+0.36192468619244156 0.1390057151019266 0.3619246861924416 0.1390057151019266 0.2543303927929472
+0.35983263598323645 0.14239609839709555 0.35983263598323645 0.14239609839709555 0.2554224299613373
+0.35774058577403134 0.1457864816922645 0.3577405857740313 0.1457864816922645 0.25634518952406143
+0.34309623430959557 0.14917686498743343 0.34309623430959557 0.14917686498743343 0.25146027097987583
+0.3472803347280058 0.14917686498743343 0.3472803347280058 0.14917686498743343 0.25351994265719896
+0.351464435146416 0.14917686498743343 0.351464435146416 0.14917686498743343 0.25538384252841406
+0.35564853556482623 0.14917686498743343 0.35564853556482623 0.14917686498743343 0.2570561368984268
+0.34100418410039046 0.15256724828260237 0.3410041841003904 0.15256724828260237 0.2511111470952177
+0.3744769874476722 0.12544418192125084 0.37447698744767216 0.12544418192125084 0.2486046899288359
+0.3723849372384671 0.12883456521641978 0.3723849372384671 0.12883456521641978 0.2502280059674002
+0.37866108786608244 0.12544418192125084 0.3786610878660825 0.12544418192125084 0.24788255606341505
+0.40794979079495397 0.10510188215023719 0.4079497907949539 0.10510188215023719 0.2276967113281538
+0.40585774058574886 0.10849226544540613 0.40585774058574886 0.10849226544540613 0.2298739373690952
+0.40376569037654375 0.11188264874057507 0.4037656903765438 0.11188264874057507 0.23218501294718055
+0.40167364016733864 0.11527303203574402 0.4016736401673386 0.11527303203574402 0.23464191680420018
+0.39958158995813353 0.11866341533091296 0.3995815899581335 0.11866341533091296 0.23724658872861257
+0.38284518828449265 0.12544418192125084 0.3828451882844926 0.12544418192125084 0.2469454786898447
+0.3870292887029029 0.12544418192125084 0.38702928870290293 0.12544418192125084 0.24579576577551412
+0.3933054393305182 0.1220537986260819 0.3933054393305182 0.1220537986260819 0.24181671408223557
+0.3974895397489284 0.1220537986260819 0.3974895397489284 0.1220537986260819 0.23999050936977842
+0.3912133891213131 0.12544418192125084 0.39121338912131304 0.12544418192125084 0.24443315378090433
+0.42887029288700507 0.09832111555989931 0.4288702928870051 0.09832111555989931 0.20925191548446806
+0.4142259414225693 0.10171149885506825 0.4142259414225693 0.10171149885506825 0.22244071742304047
+0.4184100418409795 0.10171149885506825 0.41841004184097946 0.10171149885506825 0.2190722248454479
+0.42259414225938974 0.10171149885506825 0.42259414225938974 0.10171149885506825 0.21552469609765623
+0.42677824267779996 0.10171149885506825 0.4267782426778 0.10171149885506825 0.21179417125308256
+0.4121338912133642 0.10510188215023719 0.41213389121336425 0.10510188215023719 0.22466426760709704
+0.44979079497905616 0.09154034896956142 0.4497907949790561 0.09154034896956142 0.18609287169693464
+0.4351464435146204 0.09493073226473037 0.43514644351462034 0.09493073226473037 0.2026219670184448
+0.4393305439330306 0.09493073226473037 0.4393305439330306 0.09493073226473037 0.19827079667530814
+0.44351464435144083 0.09493073226473037 0.4435146443514409 0.09493073226473037 0.19372659219221391
+0.44769874476985105 0.09493073226473037 0.44769874476985105 0.09493073226473037 0.18897987351969667
+0.4330543933054153 0.09832111555989931 0.43305439330541523 0.09832111555989931 0.20520706468500724
+0.4560669456066715 0.08814996567439248 0.4560669456066715 0.08814996567439248 0.17801194570984988
+0.4602510460250817 0.08814996567439248 0.46025104602508177 0.08814996567439248 0.17260980291758196
+0.46443514644349193 0.08814996567439248 0.46443514644349193 0.08814996567439248 0.16697312575515547
+0.4539748953974664 0.09154034896956142 0.45397489539746644 0.09154034896956142 0.18102518943521648
+0.48744769874474814 0.07119804919854777 0.4874476987447482 0.07119804919854777 0.1285692549682322
+0.4811715481171328 0.07458843249371672 0.4811715481171328 0.07458843249371672 0.13984510813273587
+0.485355648535543 0.07458843249371672 0.48535564853554297 0.07458843249371672 0.13290001019907446
+0.46861924686190215 0.08814996567439248 0.4686192468619021 0.08814996567439248 0.16108894799461482
+0.4790794979079277 0.07797881578888566 0.47907949790792775 0.07797881578888566 0.14385949059649575
+0.4769874476987226 0.0813691990840546 0.47698744769872264 0.0813691990840546 0.14770037526368893
+0.4748953974895175 0.08475958237922354 0.4748953974895174 0.08475958237922354 0.15138621556282014
+0.47280334728031237 0.08814996567439248 0.47280334728031237 0.08814996567439248 0.15494415748849336
+0.49163179916315836 0.07119804919854777 0.4916317991631583 0.07119804919854777 0.12119683861266806
+0.4958158995815686 0.07119804919854777 0.49581589958156863 0.07119804919854777 0.1135198482712892
+0.5020920502091839 0.06780766590337883 0.5020920502091838 0.06780766590337883 0.1006481602745276
+0.4999999999999788 0.07119804919854777 0.49999999999997874 0.07119804919854777 0.10552914275768653
+0.5062761506275941 0.06780766590337883 0.5062761506275941 0.06780766590337883 0.09222102036220026
+0.5125523012552095 0.06441728260820989 0.5125523012552095 0.06441728260820989 0.07826335026812105
+0.5104602510460043 0.06780766590337883 0.5104602510460045 0.06780766590337883 0.08347359845339684
+0.5188284518828248 0.06102689931304095 0.5188284518828247 0.06102689931304095 0.06376613823826179
+0.5167364016736197 0.06441728260820989 0.5167364016736197 0.06441728260820989 0.06911290578801042
+0.5564853556485168 0.02034229977101365 0.5564853556485168 0.02034229977101365 0.024728066624891253
+0.5502092050209014 0.02373268306618259 0.5502092050209014 0.02373268306618259 0.013052610582877183
+0.5543933054393116 0.02373268306618259 0.5543933054393116 0.02373268306618259 0.020768825501917196
+0.5481171548116963 0.027123066361351533 0.5481171548116963 0.027123066361351533 0.009820160397408137
+0.5460251046024912 0.030513449656520475 0.5460251046024912 0.030513449656520475 0.007740066430683443
+0.5439330543932861 0.03390383295168942 0.5439330543932862 0.03390383295168942 0.007978651385702092
+0.5376569037656708 0.03729421624685836 0.5376569037656708 0.03729421624685836 0.018724548737096548
+0.5355648535564657 0.0406845995420273 0.5355648535564655 0.0406845995420273 0.023279039523496466
+0.5334728033472605 0.04407498283719624 0.5334728033472605 0.04407498283719624 0.02809294196580148
+0.5313807531380554 0.04746536613236518 0.5313807531380554 0.04746536613236518 0.03310184754510912
+0.5292887029288503 0.050855749427534125 0.5292887029288503 0.050855749427534125 0.03826075692368656
+0.5271966527196452 0.054246132722703067 0.5271966527196453 0.054246132722703067 0.04353148921062094
+0.5251046025104401 0.05763651601787201 0.5251046025104401 0.05763651601787201 0.048877810988998245
+0.523012552301235 0.06102689931304095 0.523012552301235 0.06102689931304095 0.054263812859097434
+0.541841004184081 0.03729421624685836 0.541841004184081 0.03729421624685836 0.010545514285579828
+0.5669456066945423 0.010171149885506825 0.5669456066945423 0.010171149885506825 0.04497009461699219
+0.5711297071129525 0.010171149885506825 0.5711297071129525 0.010171149885506825 0.05328526924365188
+0.5648535564853372 0.013561533180675767 0.5648535564853372 0.013561533180675767 0.041018638295721326
+0.5627615062761321 0.01695191647584471 0.5627615062761321 0.01695191647584471 0.037092602994476115
+0.560669456066927 0.02034229977101365 0.5606694560669271 0.02034229977101365 0.03317294748619979
+0.5774058577405679 0.006780766590337883 0.577405857740568 0.006780766590337883 0.06540425430359953
+0.5753138075313627 0.010171149885506825 0.5753138075313627 0.010171149885506825 0.06156656528696123
+0.006780766590337709 0.5815899581589958 0.006780766590337709 0.5815899581589958 0.21383131322348456
+0.01017114988550656 0.5753138075313808 0.01017114988550656 0.5753138075313808 0.21653770104668377
+0.013561533180675408 0.5732217573221758 0.013561533180675408 0.5732217573221758 0.21777213870163
+0.02373268306618197 0.5585774058577408 0.02373268306618197 0.5585774058577408 0.22403700031775112
+0.030513449656519673 0.5502092050209209 0.030513449656519673 0.5502092050209209 0.22745022188801298
+0.033903832951688535 0.5481171548117159 0.033903832951688535 0.5481171548117159 0.22880501477471873
+0.040684599542026224 0.5397489539748959 0.040684599542026224 0.5397489539748959 0.23159430100266645
+0.0440749828371951 0.5376569037656909 0.0440749828371951 0.5376569037656909 0.23274290185000615
+0.04746536613236394 0.5355648535564859 0.04746536613236394 0.5355648535564859 0.23381733287540066
+0.0508557494275328 0.5292887029288709 0.0508557494275328 0.5292887029288709 0.2346552443279419
+0.05424613272270166 0.5271966527196658 0.05424613272270166 0.5271966527196658 0.23548427480802284
+0.057636516017870565 0.5251046025104608 0.057636516017870565 0.5251046025104608 0.2362203488440802
+0.05085574942753279 0.5334728033472809 0.05085574942753279 0.5334728033472809 0.23480265255736685
+0.03729421624685738 0.5460251046025109 0.03729421624685738 0.5460251046025109 0.2301471121732759
+0.040684599542026224 0.5439330543933059 0.040684599542026224 0.5439330543933059 0.23145175143221272
+0.027123066361350822 0.5564853556485359 0.027123066361350822 0.5564853556485359 0.2254494536207071
+0.030513449656519673 0.5543933054393309 0.030513449656519673 0.5543933054393309 0.22690156610386378
+0.016951916475844264 0.5669456066945608 0.016951916475844264 0.5669456066945608 0.22033634966835744
+0.016951916475844264 0.5711297071129708 0.016951916475844264 0.5711297071129708 0.21912663522722495
+0.02034229977101312 0.5648535564853558 0.02034229977101312 0.5648535564853558 0.22170214508043604
+0.02373268306618197 0.5627615062761508 0.02373268306618197 0.5627615062761508 0.22315637211350944
+0.01017114988550656 0.5794979079497908 0.01017114988550656 0.5794979079497908 0.21502096707656773
+0.07119804919854701 0.5041841004184174 0.07119804919854701 0.5041841004184174 0.23779851202657573
+0.07119804919854456 0.5083682008368262 0.07119804919854456 0.5083682008368262 0.23790987147731021
+0.0745884324937174 0.5020920502092129 0.0745884324937174 0.5020920502092129 0.2382806467209416
+0.07797881578888785 0.5000000000000072 0.07797881578888786 0.5000000000000072 0.23876913274688802
+0.08136919908405192 0.4895397489539745 0.08136919908405192 0.4895397489539745 0.23950767946883447
+0.0813691990840551 0.49372384937238484 0.0813691990840551 0.49372384937238484 0.2393596445955821
+0.08136919908405768 0.49790794979079983 0.0813691990840577 0.49790794979079983 0.23928458315146825
+0.06102689931303889 0.5188284518828455 0.06102689931303889 0.5188284518828455 0.23660815244726766
+0.0644172826082072 0.5167364016736405 0.06441728260820721 0.5167364016736405 0.2371589983942561
+0.06780766590337536 0.5146443514644361 0.06780766590337538 0.514644351464436 0.23764795757721355
+0.07119804919854346 0.5125523012552324 0.07119804919854346 0.5125523012552325 0.2380909628706903
+0.06102689931303935 0.5230125523012555 0.06102689931303935 0.5230125523012555 0.23686445314281765
+0.25839313445641965 0.2544078726506206 0.25839313445641965 0.25440787265062065 0.12070955015692648
+0.23656031748356168 0.26754143779056255 0.23656031748356168 0.26754143779056255 0.10005064440144858
+0.2335153253470645 0.26971676548805074 0.2335153253470645 0.26971676548805074 0.09832715136585973
+0.23979051596574763 0.26875252041914804 0.23979051596574763 0.26875252041914804 0.10232382803093905
+0.2582545091034487 0.2581032404902644 0.2582545091034487 0.2581032404902644 0.12007899591291181
+0.2550731463973934 0.25959935614279195 0.2550731463973934 0.2595993561427919 0.11648935244614063
+0.2519614588536277 0.2611526057987957 0.2519614588536277 0.2611526057987957 0.11315240656024152
+0.24286570935955243 0.2666225556466098 0.24286570935955246 0.2666225556466098 0.10466071648365573
+0.24890990672866217 0.2627893373229988 0.24890990672866217 0.2627893373229988 0.1100748676131219
+0.2458746856098478 0.2646179367648114 0.2458746856098478 0.2646179367648114 0.10723115592964172
+0.2269003962471028 0.2780875028930028 0.2269003962471028 0.2780875028930028 0.09644143529200662
+0.23017254835774148 0.2759607113819874 0.23017254835774148 0.27596071138198747 0.09734461357388897
+0.23348801463659316 0.2738607938242443 0.23348801463659316 0.2738607938242443 0.098699790170183
+0.18647108048506775 0.30753138425201104 0.18647108048506775 0.30753138425201104 0.1186044629130263
+0.1898614608696133 0.305439382803111 0.1898614608696133 0.305439382803111 0.11543500693081805
+0.1932518056858529 0.3033474698336185 0.1932518056858529 0.3033474698336185 0.11239023669700558
+0.1966420157267542 0.297071397018633 0.1966420157267542 0.297071397018633 0.10663648594991441
+0.200031196730976 0.2949795442755017 0.200031196730976 0.2949795442755017 0.10415969896275228
+0.19664190204631346 0.3012557091591122 0.19664190204631346 0.3012557091591122 0.10950780981641817
+0.22360703014953498 0.2802342034100594 0.22360703014953498 0.2802342034100594 0.09597314999482633
+0.22028566519104 0.28237928270368473 0.22028566519104 0.2823792827036847 0.09594393109876671
+0.2169368718733287 0.2845088360673179 0.2169368718733287 0.28450883606731786 0.09634993261702963
+0.21357067035605368 0.286617622643004 0.21357067035605368 0.286617622643004 0.09717742567072195
+0.2101947093687434 0.2887095353071769 0.21019470936874338 0.2887095353071769 0.09840314588029027
+0.2068056215205817 0.2907985353048222 0.2068056215205817 0.2907985353048222 0.1000013591461757
+0.20341950721177068 0.29288846438713506 0.20341950721177068 0.29288846438713506 0.10193364325592025
+0.1661287814607589 0.3242677824302042 0.1661287814607589 0.3242677824302042 0.14319954018702866
+0.16951916475687026 0.32217573222562074 0.16951916475687026 0.32217573222562074 0.13970233217915615
+0.17290954805553438 0.3200836820208572 0.17290954805553438 0.3200836820208572 0.13618780435282704
+0.17629993135667976 0.3179916318120176 0.17629993135667976 0.31799163181201756 0.13266750653911255
+0.17969031465714883 0.31589958159426806 0.17969031465714883 0.31589958159426806 0.12915715629546234
+0.18308069768913826 0.3138075349697437 0.18308069768913826 0.31380753496974373 0.1256768969364225
+0.18647107882784134 0.31171549293102085 0.18647107882784134 0.31171549293102085 0.1222514332956733
+0.1491768649874454 0.3430962343097321 0.1491768649874454 0.3430962343097321 0.17024972957022147
+0.15256724828269366 0.3410041841005838 0.15256724828269366 0.3410041841005838 0.16678551590045984
+0.15595763157803957 0.3347280334722041 0.15595763157803957 0.3347280334722041 0.15840680543527874
+0.15934801487299782 0.3326359832622733 0.1593480148729978 0.3326359832622732 0.15491036405870529
+0.15595763157802653 0.3389121338913322 0.15595763157802653 0.3389121338913322 0.16327325325144768
+0.16273839816744048 0.3305439330523626 0.16273839816744048 0.33054393305236257 0.1513740034674755
+0.16612878146119714 0.3284518828432942 0.16612878146119714 0.32845188284329424 0.14779972286336238
+0.13561533180675744 0.35983263598326415 0.13561533180675744 0.35983263598326415 0.19327194046789795
+0.1390057151019267 0.3577405857740584 0.1390057151019267 0.3577405857740584 0.1900342880623326
+0.1423960983970902 0.35146443514643894 0.1423960983970902 0.35146443514643894 0.18195444014475928
+0.1423960983970956 0.3556485355648509 0.14239609839709558 0.3556485355648509 0.18673289321464545
+0.14578648169224998 0.34937238493723854 0.14578648169224998 0.34937238493723854 0.17857508766977007
+0.14917686498740543 0.3472803347280604 0.14917686498740543 0.3472803347280604 0.1751411784221983
+0.11866341533091268 0.37866108786610925 0.1186634153309127 0.37866108786610925 0.21634825591594356
+0.11866341533091268 0.3828451882845193 0.1186634153309127 0.38284518828451924 0.21991700415683924
+0.12205379862608157 0.37656903765690425 0.12205379862608157 0.37656903765690425 0.21370689533875423
+0.12544418192125048 0.3744769874476992 0.12544418192125048 0.3744769874476992 0.2109585607029478
+0.1288345652164194 0.3682008368200842 0.12883456521641937 0.3682008368200842 0.20394404954829518
+0.12883456521641937 0.3723849372384942 0.12883456521641937 0.3723849372384942 0.20811137835186247
+0.13222494851158825 0.3661087866108792 0.13222494851158825 0.3661087866108792 0.20091376846238748
+0.1356153318067572 0.36401673640167426 0.1356153318067572 0.36401673640167426 0.19780518911701295
+0.10849226544540602 0.39748953974895457 0.10849226544540602 0.39748953974895457 0.2320690746986875
+0.1118826487405749 0.39539748953974957 0.1118826487405749 0.39539748953974957 0.2302772260807385
+0.1152730320357438 0.38912133891213446 0.1152730320357438 0.38912133891213446 0.22545668366162322
+0.11866341533091268 0.3870292887029294 0.1186634153309127 0.3870292887029294 0.22321544301780596
+0.1152730320357438 0.3933054393305445 0.1152730320357438 0.39330543933054457 0.22833328394366972
+0.10849226544540602 0.4016736401673646 0.10849226544540602 0.4016736401673646 0.23434799877593895
+0.1017114988550682 0.41422594142259483 0.10171149885506821 0.4142259414225949 0.24021488134956612
+0.10849226544540602 0.4058577405857747 0.10849226544540602 0.4058577405857747 0.23635913830288577
+0.10510188215023712 0.4121338912133898 0.10510188215023712 0.4121338912133898 0.23924664216446342
+0.10849226544540602 0.4100418410041847 0.10849226544540602 0.41004184100418467 0.2381170553138454
+0.1017114988550682 0.4184100418410049 0.10171149885506821 0.4184100418410049 0.24140257648748745
+0.09154034896956142 0.44142259414226004 0.09154034896956142 0.44142259414226004 0.24401573811718794
+0.0983211155598993 0.42468619246862 0.0983211155598993 0.42468619246862 0.24286528025594348
+0.1017114988550682 0.4225941422594149 0.10171149885506821 0.4225941422594149 0.2423717783199564
+0.09493073226473037 0.43096234309623505 0.09493073226473037 0.43096234309623505 0.24369150779068074
+0.0983211155598993 0.42887029288703 0.0983211155598993 0.42887029288703 0.24348719443082636
+0.09493073226473037 0.43514644351464504 0.09493073226473037 0.43514644351464504 0.24400853743597442
+0.09493073226473037 0.43933054393305504 0.09493073226473037 0.43933054393305504 0.2441799458757574
+0.08814996567439248 0.4560669456066954 0.08814996567439248 0.4560669456066954 0.24308365661873269
+0.08814996567439243 0.46025104602510564 0.08814996567439243 0.46025104602510564 0.24275000264816457
+0.09154034896956142 0.44560669456067004 0.09154034896956142 0.44560669456067004 0.24396068024458625
+0.09154034896956142 0.4497907949790801 0.09154034896956142 0.4497907949790801 0.24381182054741998
+0.09154034896956142 0.45397489539749025 0.09154034896956142 0.4539748953974902 0.24359075033173525
+0.08814996567439232 0.46443514644351586 0.08814996567439232 0.46443514644351586 0.2423924959062941
+0.08814996567439194 0.4686192468619263 0.08814996567439194 0.4686192468619263 0.24202889284350418
+0.08475958237922232 0.47489539748954185 0.08475958237922232 0.47489539748954185 0.2409970156905501
+0.08814996567439132 0.47280334728033696 0.08814996567439132 0.47280334728033696 0.24167520437541298
+0.08475958237922088 0.4790794979079523 0.08475958237922088 0.4790794979079523 0.2406601962747528
+0.0847595823792187 0.4832635983263622 0.0847595823792187 0.4832635983263622 0.2403681009961134
+0.08475958237921688 0.487447698744769 0.08475958237921688 0.48744769874476906 0.2401306339695429
+0.26197807810834295 0.2493052653580835 0.26197807810834295 0.24930526535808353 0.125732783873742
+0.2616767511395725 0.2530019635786314 0.2616767511395725 0.2530019635786314 0.12463096207316089
+0.2666119685435535 0.24058790887998344 0.2666119685435535 0.2405879088799834 0.13378746095829874
+0.27393312716936596 0.23339887111745763 0.27393312716936596 0.23339887111745763 0.1456310143357575
+0.27603101371998345 0.23019485925141828 0.27603101371998345 0.23019485925141828 0.14982459857396077
+0.2702128850413611 0.23947243869039325 0.27021288504136104 0.23947243869039325 0.13843864182554064
+0.27326953741939264 0.23901284965111225 0.27326953741939264 0.23901284965111227 0.14226809057393558
+0.27567195605258743 0.23674171485738876 0.2756719560525874 0.23674171485738874 0.14621714104027808
+0.26594473049905243 0.2442610759831054 0.2659447304990525 0.2442610759831054 0.13170509666724836
+0.26541066224692317 0.24794648429546776 0.26541066224692317 0.24794648429546776 0.13003761541099365
+0.28662073368248975 0.21358463334169248 0.28662073368248975 0.21358463334169245 0.17344637475098376
+0.2845393401877981 0.21697069478070305 0.2845393401877981 0.21697069478070305 0.16850764177086971
+0.2824557388168843 0.22033473498626777 0.2824557388168843 0.22033473498626774 0.16366014882802982
+0.27816810297066846 0.2269468585758728 0.27816810297066846 0.2269468585758728 0.15426357014390388
+0.2803415531453383 0.2236667452698493 0.2803415531453383 0.2236667452698493 0.15891030911099893
+0.3179916317991337 0.17629993134878472 0.31799163179913364 0.17629993134878472 0.23180214371104627
+0.3158995815899282 0.17969031464395324 0.3158995815899282 0.17969031464395324 0.2285016490959391
+0.31380753138072254 0.18308069793912154 0.31380753138072254 0.18308069793912154 0.22489769108621507
+0.3117154825155832 0.18647100921662949 0.3117154825155832 0.18647100921662949 0.22101109863101923
+0.29080802403638034 0.21357368394257295 0.29080802403638034 0.21357368394257295 0.17851512045735907
+0.2928935967405741 0.21018482918647738 0.2928935967405741 0.21018482918647738 0.18348812617768687
+0.3054393419752239 0.1898613991995635 0.3054393419752239 0.1898613991995635 0.21219834668465506
+0.2949812883341733 0.20680000751579355 0.2949812883341733 0.20680000751579355 0.18847037949614967
+0.30334774759219857 0.1932513903548674 0.30334774759219857 0.1932513903548674 0.20774049094897992
+0.301256801037824 0.1966406331429655 0.301256801037824 0.1966406331429655 0.20310226550524188
+0.2991652940396093 0.20002878802253524 0.2991652940396093 0.20002878802253524 0.19831870173289723
+0.29707254647860915 0.20341507367650483 0.2970725464786091 0.20341507367650483 0.19342748846787094
+0.30962349540807993 0.1898610370976889 0.30962349540807993 0.1898610370976889 0.2168679819581971
+0.33891213389118535 0.15595763157777132 0.33891213389118535 0.15595763157777132 0.2504902042788512
+0.33682008368198024 0.15934801487294026 0.3368200836819803 0.15934801487294026 0.24956951711081574
+0.33472803347277513 0.1627383981681092 0.33472803347277513 0.1627383981681092 0.24832620257506322
+0.32635983263595464 0.16951916475844708 0.32635983263595464 0.16951916475844708 0.24118922314803956
+0.33263598326356997 0.16612878146327814 0.33263598326356997 0.16612878146327814 0.2467431073228706
+0.33054393305436486 0.16951916475844708 0.33054393305436486 0.16951916475844708 0.24480929817413455
+0.3242677824267494 0.172909548053616 0.3242677824267494 0.172909548053616 0.2387110930501526
+0.32217573221754414 0.17629993134878486 0.3221757322175441 0.17629993134878486 0.23589259458408787
+0.370292887029262 0.13222494851158872 0.37029288702926205 0.13222494851158872 0.2518504950237092
+0.3682008368200569 0.13561533180675767 0.3682008368200569 0.13561533180675767 0.25343516509797365
+0.3661087866108518 0.1390057151019266 0.3661087866108517 0.1390057151019266 0.2549407117786302
+0.36401673640164667 0.14239609839709555 0.36401673640164667 0.14239609839709555 0.2563231298143897
+0.36192468619244156 0.1457864816922645 0.3619246861924416 0.1457864816922645 0.25753736388064136
+0.35983263598323645 0.14917686498743343 0.35983263598323645 0.14917686498743343 0.2585389219190138
+0.3451882845188007 0.15256724828260237 0.34518828451880074 0.15256724828260237 0.25342995937491364
+0.3493723849372109 0.15256724828260237 0.34937238493721084 0.15256724828260237 0.25556338756488567
+0.3535564853556211 0.15256724828260237 0.3535564853556212 0.15256724828260237 0.2575147795205113
+0.35774058577403134 0.15256724828260237 0.3577405857740313 0.15256724828260237 0.2592853883067268
+0.34309623430959557 0.15595763157777132 0.34309623430959557 0.15595763157777132 0.25306173068917753
+0.3765690376568773 0.12883456521641978 0.3765690376568773 0.12883456521641978 0.2497746063410289
+0.3744769874476722 0.13222494851158872 0.37447698744767216 0.13222494851158872 0.2516751270503157
+0.38075313807528754 0.12883456521641978 0.38075313807528754 0.12883456521641978 0.2491064958732894
+0.4100418410041591 0.10849226544540613 0.41004184100415914 0.10849226544540613 0.22701230320749244
+0.40794979079495397 0.11188264874057507 0.4079497907949539 0.11188264874057507 0.2295070863685251
+0.40585774058574886 0.11527303203574402 0.40585774058574886 0.11527303203574402 0.23216156366965301
+0.40376569037654375 0.11866341533091296 0.4037656903765438 0.11866341533091296 0.23497835800209807
+0.40167364016733864 0.1220537986260819 0.4016736401673386 0.1220537986260819 0.23794929618496993
+0.38493723849369776 0.12883456521641978 0.38493723849369776 0.12883456521641978 0.248224704941545
+0.389121338912108 0.12883456521641978 0.389121338912108 0.12883456521641978 0.24712761219651583
+0.3953974895397233 0.12544418192125084 0.39539748953972337 0.12544418192125084 0.24285482083829482
+0.39958158995813353 0.12544418192125084 0.3995815899581335 0.12544418192125084 0.24105549829521208
+0.3933054393305182 0.12883456521641978 0.3933054393305182 0.12883456521641978 0.24581096598527277
+0.4309623430962102 0.10171149885506825 0.4309623430962102 0.10171149885506825 0.20787502384929213
+0.4163179916317744 0.10510188215023719 0.41631799163177435 0.10510188215023719 0.2214487117780374
+0.42050209205018463 0.10510188215023719 0.4205020920501847 0.10510188215023719 0.21804742060833524
+0.42468619246859485 0.10510188215023719 0.4246861924685948 0.10510188215023719 0.21445595015309774
+0.42887029288700507 0.10510188215023719 0.4288702928870051 0.10510188215023719 0.21066827105860578
+0.4142259414225693 0.10849226544540613 0.4142259414225693 0.10849226544540613 0.22396065486092767
+0.4518828451882613 0.09493073226473037 0.4518828451882612 0.09493073226473037 0.18402023734521633
+0.4372384937238255 0.09832111555989931 0.43723849372382556 0.09832111555989931 0.20097282751811954
+0.4414225941422357 0.09832111555989931 0.44142259414223567 0.09832111555989931 0.196540990396695
+0.44560669456064594 0.09832111555989931 0.445606694560646 0.09832111555989931 0.19190229304595485
+0.44979079497905616 0.09832111555989931 0.4497907949790561 0.09832111555989931 0.18704667061655753
+0.4351464435146204 0.10171149885506825 0.43514644351462034 0.10171149885506825 0.203760199167383
+0.4581589958158766 0.09154034896956142 0.45815899581587655 0.09154034896956142 0.1757352764713611
+0.4623430962342868 0.09154034896956142 0.4623430962342869 0.09154034896956142 0.17021101571449868
+0.46652719665269704 0.09154034896956142 0.466527196652697 0.09154034896956142 0.16443995447258342
+0.4560669456066715 0.09493073226473037 0.4560669456066715 0.09493073226473037 0.17883658761774743
+0.48953974895395325 0.07458843249371672 0.48953974895395325 0.07458843249371672 0.12566067834702996
+0.4832635983263379 0.07797881578888566 0.48326359832633786 0.07797881578888566 0.13704991044279743
+0.48744769874474814 0.07797881578888566 0.4874476987447482 0.07797881578888566 0.1299470971556365
+0.47071129707110726 0.09154034896956142 0.4707112970711073 0.09154034896956142 0.15840951692935076
+0.4811715481171328 0.0813691990840546 0.4811715481171328 0.0813691990840546 0.1410256762638374
+0.4790794979079277 0.08475958237922354 0.47907949790792775 0.08475958237922354 0.14484282511722288
+0.4769874476987226 0.08814996567439248 0.47698744769872264 0.08814996567439248 0.14852571959900498
+0.4748953974895175 0.09154034896956142 0.4748953974895174 0.09154034896956142 0.1521072085826601
+0.49372384937236347 0.07458843249371672 0.4937238493723635 0.07458843249371672 0.11811577136057126
+0.4979079497907737 0.07458843249371672 0.4979079497907737 0.07458843249371672 0.1102551447425615
+0.504184100418389 0.07119804919854777 0.504184100418389 0.07119804919854777 0.09721718749492747
+0.5020920502091839 0.07458843249371672 0.5020920502091838 0.07458843249371672 0.10207012087712754
+0.5083682008367992 0.07119804919854777 0.5083682008367992 0.07119804919854777 0.08857831823065489
+0.5146443514644146 0.06780766590337883 0.5146443514644146 0.06780766590337883 0.07440400216807447
+0.5125523012552095 0.07119804919854777 0.5125523012552095 0.07119804919854777 0.07960899244505786
+0.5209205020920299 0.06441728260820989 0.5209205020920299 0.06441728260820989 0.05965378870756843
+0.5188284518828248 0.06780766590337883 0.5188284518828247 0.06780766590337883 0.06501286584008571
+0.5585774058577219 0.02373268306618259 0.5585774058577219 0.02373268306618259 0.029237568507631706
+0.5523012552301065 0.027123066361351533 0.5523012552301064 0.027123066361351533 0.01683202325409182
+0.5564853556485168 0.027123066361351533 0.5564853556485168 0.027123066361351533 0.025265231765833913
+0.5502092050209014 0.030513449656520475 0.5502092050209014 0.030513449656520475 0.012986874950865245
+0.5481171548116963 0.03390383295168942 0.5481171548116963 0.03390383295168942 0.009465122842496591
+0.5460251046024912 0.03729421624685836 0.5460251046024912 0.03729421624685836 0.007014800662341231
+0.5397489539748759 0.0406845995420273 0.5397489539748759 0.0406845995420273 0.014370355376308241
+0.5376569037656708 0.04407498283719624 0.5376569037656708 0.04407498283719624 0.018805576510968522
+0.5355648535564657 0.04746536613236518 0.5355648535564655 0.04746536613236518 0.02359109254304886
+0.5334728033472605 0.050855749427534125 0.5334728033472605 0.050855749427534125 0.0286102404915388
+0.5313807531380554 0.054246132722703067 0.5313807531380554 0.054246132722703067 0.03379600783229514
+0.5292887029288503 0.05763651601787201 0.5292887029288503 0.05763651601787201 0.03909933651041031
+0.5271966527196452 0.06102689931304095 0.5271966527196453 0.06102689931304095 0.044477862802242946
+0.5251046025104401 0.06441728260820989 0.5251046025104401 0.06441728260820989 0.049891946916084125
+0.5439330543932861 0.0406845995420273 0.5439330543932862 0.0406845995420273 0.007164363728032073
+0.5690376569037474 0.013561533180675767 0.5690376569037473 0.013561533180675767 0.04941589934889404
+0.5732217573221576 0.013561533180675767 0.5732217573221576 0.013561533180675767 0.057801565855686014
+0.5669456066945423 0.01695191647584471 0.5669456066945423 0.01695191647584471 0.04558668681869851
+0.5648535564853372 0.02034229977101365 0.5648535564853372 0.02034229977101365 0.041775713550515285
+0.5627615062761321 0.02373268306618259 0.5627615062761321 0.02373268306618259 0.0379552850055714
+0.5815899581589781 0.006780766590337883 0.5815899581589781 0.006780766590337883 0.07351496239906445
+0.579497907949773 0.010171149885506825 0.579497907949773 0.010171149885506825 0.06977777075919044
+0.5774058577405679 0.013561533180675767 0.577405857740568 0.013561533180675767 0.06613379800651102
+0.006780766590337709 0.5857740585774058 0.006780766590337709 0.5857740585774058 0.2121079623107632
+0.01017114988550656 0.5836820083682008 0.01017114988550656 0.5836820083682008 0.21337391678495662
+0.013561533180675408 0.5774058577405858 0.013561533180675408 0.5774058577405858 0.21634009489675324
+0.016951916475844264 0.5753138075313808 0.016951916475844264 0.5753138075313808 0.21778641493133774
+0.027123066361350822 0.5606694560669458 0.027123066361350822 0.5606694560669458 0.22467870166197182
+0.033903832951688535 0.5523012552301259 0.033903832951688535 0.5523012552301259 0.2283676826669032
+0.03729421624685738 0.5502092050209209 0.03729421624685738 0.5502092050209209 0.22982097361279055
+0.0440749828371951 0.5418410041841009 0.0440749828371951 0.5418410041841009 0.23269571818476972
+0.04746536613236394 0.5397489539748959 0.04746536613236394 0.5397489539748959 0.23385850957126533
+0.05085574942753279 0.5376569037656909 0.05085574942753279 0.5376569037656909 0.23492337837603428
+0.05424613272270165 0.5313807531380759 0.054246132722701644 0.5313807531380759 0.23568839152659085
+0.05763651601787054 0.5292887029288709 0.057636516017870544 0.5292887029288709 0.23646919923184975
+0.06102689931303947 0.5271966527196658 0.06102689931303947 0.5271966527196658 0.23714529257836658
+0.05424613272270165 0.5355648535564859 0.054246132722701644 0.5355648535564859 0.23587822518021542
+0.040684599542026224 0.5481171548117159 0.040684599542026224 0.5481171548117159 0.2312347679589802
+0.0440749828371951 0.5460251046025109 0.0440749828371951 0.5460251046025109 0.2325838602175053
+0.030513449656519673 0.5585774058577408 0.030513449656519673 0.5585774058577408 0.2262448034454065
+0.033903832951688535 0.5564853556485359 0.033903832951688535 0.5564853556485359 0.22782758638291098
+0.02034229977101312 0.5690376569037658 0.02034229977101312 0.5690376569037658 0.22059180883936494
+0.02034229977101312 0.5732217573221758 0.02034229977101312 0.5732217573221758 0.21935066921411803
+0.02373268306618197 0.5669456066945608 0.02373268306618197 0.5669456066945608 0.2221520611156008
+0.027123066361350822 0.5648535564853558 0.027123066361350822 0.5648535564853558 0.22378639916466356
+0.013561533180675408 0.5815899581589958 0.013561533180675408 0.5815899581589958 0.21477602029350926
+0.07458843249371437 0.5062761506276239 0.07458843249371437 0.5062761506276239 0.2383573952189473
+0.0745884324937118 0.5104602510460304 0.07458843249371182 0.5104602510460304 0.23850804558780572
+0.07797881578888506 0.504184100418421 0.07797881578888506 0.504184100418421 0.23880795704087476
+0.08136919908405645 0.5020920502092167 0.08136919908405645 0.5020920502092167 0.23928486898637072
+0.0847595823792215 0.491631799163178 0.0847595823792215 0.49163179916317806 0.2399555397023673
+0.08475958237922616 0.49581589958159117 0.08475958237922616 0.49581589958159117 0.2398483698250943
+0.0847595823792278 0.5000000000000099 0.0847595823792278 0.5000000000000099 0.23981246313576923
+0.06441728260820799 0.5209205020920501 0.06441728260820799 0.5209205020920501 0.23742297705630414
+0.06780766590337635 0.5188284518828447 0.06780766590337635 0.5188284518828447 0.23790767149184203
+0.07119804919854432 0.5167364016736395 0.07119804919854432 0.5167364016736395 0.23833537740096197
+0.07458843249371186 0.5146443514644354 0.07458843249371185 0.5146443514644354 0.23872752068382283
+0.06441728260820838 0.5251046025104605 0.06441728260820838 0.5251046025104605 0.2377226890347848
+0.2614606015484509 0.2566668087251904 0.2614606015484509 0.2566668087251904 0.12385002984695999
+0.23717139824470185 0.27178965178198 0.23717139824470188 0.27178965178198 0.10073810637324554
+0.26131838840022276 0.26031471323200517 0.26131838840022276 0.26031471323200517 0.12334324001578222
+0.2406448346600783 0.2718475389515159 0.2406448346600783 0.2718475389515159 0.1031522136648199
+0.24299339185928806 0.27019380991503655 0.24299339185928806 0.27019380991503655 0.10489951481513883
+0.2581598786864628 0.26179299275137113 0.2581598786864628 0.26179299275137113 0.11968871663948775
+0.25503424798021634 0.2633229377305101 0.25503424798021634 0.26332293773051013 0.1162296886700991
+0.2519404535657019 0.26491482370251557 0.2519404535657019 0.26491482370251557 0.1129863392419485
+0.24586710348203467 0.26838010648859323 0.24586710348203464 0.2683801064885932 0.10725628140996656
+0.24886159097613483 0.2665968603958274 0.24886159097613483 0.26659686039582736 0.10996532243581937
+0.22690432252463974 0.28222480109964143 0.22690432252463974 0.2822248010996415 0.09744744681833549
+0.23015641685571173 0.28007127495791845 0.23015641685571173 0.28007127495791845 0.09815739752179654
+0.233356726367693 0.2779637821756939 0.233356726367693 0.2779637821756939 0.099281904987388
+0.23649321786474198 0.2759015591804287 0.236493217864742 0.27590155918042875 0.10077627771610627
+0.1898614528829895 0.30962356280843634 0.1898614528829895 0.30962356280843634 0.11891012402665548
+0.193251740758842 0.30753175499014196 0.193251740758842 0.30753175499014196 0.11568665787632844
+0.1966418966577174 0.3054400024708156 0.1966418966577174 0.30544000247081554 0.11261864109123375
+0.20003037153707107 0.2991639089868929 0.20003037153707107 0.2991639089868929 0.10682881943984913
+0.20341618503560457 0.2970727758442021 0.20341618503560457 0.29707277584420216 0.10439687052573877
+0.20002983149502476 0.30334864059718286 0.20002983149502476 0.30334864059718286 0.10974805830559621
+0.2236049324465171 0.2844004491591977 0.2236049324465171 0.28440044915919765 0.09717747786044174
+0.22027695584845985 0.28656078789830414 0.22027695584845985 0.28656078789830414 0.09735406192980367
+0.21692656483739267 0.2886935649892956 0.21692656483739267 0.2886935649892956 0.09796906379516336
+0.21356099184402302 0.29080152979626217 0.21356099184402302 0.2908015297962621 0.09900763739831366
+0.21018207730135052 0.29289393109570555 0.21018207730135052 0.29289393109570555 0.10044664986639128
+0.20679969099517795 0.29498265098915716 0.20679969099517795 0.29498265098915716 0.10225533036025795
+0.1695191647545364 0.3263598326364003 0.1695191647545364 0.3263598326364003 0.14419228194928602
+0.17290954804857042 0.32426778243293836 0.17290954804857042 0.32426778243293836 0.1405597054641725
+0.17629993134535368 0.32217573223273693 0.17629993134535368 0.32217573223273693 0.13691371776266792
+0.17969031464705798 0.32008368203238946 0.17969031464705798 0.3200836820323895 0.1332700977520476
+0.1830806971438885 0.31799164304978983 0.1830806971438885 0.31799164304978983 0.12964895461625794
+0.1864710730121283 0.3158996178780917 0.1864710730121283 0.3158996178780917 0.12607487278467241
+0.18986142797280806 0.313807794439905 0.18986142797280806 0.313807794439905 0.122577122429946
+0.15256724828256954 0.3451882845189287 0.15256724828256954 0.3451882845189287 0.17165087065333115
+0.15595763157778073 0.34309623430985675 0.15595763157778073 0.34309623430985675 0.16810258845819462
+0.1593480148734196 0.33682008368177874 0.15934801487341962 0.33682008368177874 0.15971173866107777
+0.16273839816870964 0.3347280334716842 0.16273839816870964 0.3347280334716842 0.1561012876085213
+0.1593480148731072 0.34100418410079375 0.1593480148731072 0.34100418410079375 0.16449562049557928
+0.16612878146352028 0.3326359832609951 0.16612878146352028 0.3326359832609951 0.15244432397298938
+0.16951916475731277 0.3305439330502625 0.16951916475731277 0.3305439330502625 0.14874592726324268
+0.1390057151019263 0.3619246861924694 0.1390057151019263 0.3619246861924694 0.19462100349458636
+0.14239609839709572 0.3598326359832642 0.14239609839709574 0.3598326359832642 0.19136233927394375
+0.14578648169226233 0.3535564853556405 0.1457864816922623 0.3535564853556405 0.18336745567358656
+0.14578648169226555 0.3577405857740575 0.14578648169226557 0.3577405857740575 0.18802912934410643
+0.14917686498742258 0.3514644351464295 0.14917686498742258 0.3514644351464295 0.17993686017059005
+0.1525672482825705 0.34937238493723105 0.1525672482825705 0.34937238493723105 0.17643969927243144
+0.12205379862608157 0.3807531380753143 0.12205379862608157 0.38075313807531425 0.21740561429393132
+0.12205379862608161 0.38493723849372435 0.12205379862608161 0.38493723849372435 0.22084475348318058
+0.12544418192125045 0.3786610878661093 0.12544418192125042 0.37866108786610925 0.2147795554877908
+0.12883456521641937 0.37656903765690425 0.12883456521641937 0.37656903765690425 0.2120463297544972
+0.13222494851158828 0.3702928870292892 0.13222494851158828 0.3702928870292892 0.20517154282762215
+0.13222494851158828 0.3744769874476992 0.13222494851158828 0.3744769874476992 0.20921164761054908
+0.1356153318067572 0.3682008368200842 0.1356153318067572 0.3682008368200842 0.20214337037241895
+0.13900571510192608 0.36610878661087926 0.13900571510192608 0.36610878661087926 0.1990294620417902
+0.1118826487405749 0.3995815899581596 0.1118826487405749 0.3995815899581596 0.23272112769655592
+0.1152730320357438 0.39748953974895457 0.1152730320357438 0.39748953974895457 0.2309418739890714
+0.11866341533091268 0.39121338912133946 0.1186634153309127 0.39121338912133946 0.22624703737942067
+0.12205379862608161 0.38912133891213446 0.12205379862608161 0.38912133891213446 0.22402719266376117
+0.11866341533091268 0.39539748953974957 0.1186634153309127 0.39539748953974957 0.22901876313058445
+0.1118826487405749 0.4037656903765697 0.1118826487405749 0.4037656903765697 0.23490168338674114
+0.10510188215023714 0.41631799163179983 0.10510188215023715 0.4163179916317999 0.24059752331502302
+0.11188264874057491 0.4079497907949797 0.1118826487405749 0.40794979079497967 0.23683284670717517
+0.10849226544540602 0.4142259414225948 0.10849226544540602 0.4142259414225948 0.23963847502639588
+0.1118826487405749 0.4121338912133898 0.1118826487405749 0.4121338912133898 0.238530732633915
+0.10510188215023711 0.42050209205020994 0.1051018821502371 0.42050209205021 0.2417292934692621
+0.09493073226473037 0.44351464435146504 0.09493073226473037 0.44351464435146504 0.24422828660334187
+0.1017114988550682 0.42677824267782494 0.10171149885506821 0.426778242677825 0.24314321580735973
+0.10510188215023711 0.42468619246861994 0.1051018821502371 0.42468619246862 0.2426620970549964
+0.0983211155598993 0.43305439330544004 0.0983211155598993 0.43305439330544004 0.2439360616386214
+0.1017114988550682 0.430962343096235 0.10171149885506821 0.430962343096235 0.24373830346755962
+0.0983211155598993 0.43723849372385004 0.0983211155598993 0.43723849372385004 0.2442340941769192
+0.0983211155598993 0.44142259414226004 0.0983211155598993 0.44142259414226004 0.24440332353816582
+0.09154034896956136 0.4581589958159005 0.09154034896956136 0.4581589958159005 0.24331792160775537
+0.0915403489695612 0.46234309623431086 0.0915403489695612 0.46234309623431086 0.24301240719494022
+0.09493073226473037 0.44769874476987515 0.09493073226473037 0.4476987447698751 0.2441755779688226
+0.09493073226473035 0.4518828451882853 0.09493073226473035 0.4518828451882853 0.2440429665501518
+0.0949307322647303 0.45606694560669553 0.0949307322647303 0.45606694560669553 0.24385043987589403
+0.09154034896956088 0.4665271966527212 0.09154034896956088 0.4665271966527212 0.2426917101731241
+0.0915403489695603 0.47071129707113196 0.0915403489695603 0.47071129707113196 0.24237162149915226
+0.08814996567438989 0.47698744769874796 0.08814996567438989 0.47698744769874796 0.24134557775502288
+0.09154034896955908 0.4748953974895431 0.09154034896955908 0.4748953974895431 0.24206612237629607
+0.08814996567438728 0.4811715481171584 0.08814996567438728 0.4811715481171584 0.24105221415086056
+0.08814996567438405 0.4853556485355681 0.08814996567438405 0.4853556485355681 0.24080531603193192
+0.08814996567438639 0.48953974895397273 0.08814996567438639 0.48953974895397273 0.24061305769093252
+0.2649988448377391 0.2516245761634897 0.2649988448377391 0.2516245761634897 0.12874321855102855
+0.26469949727987413 0.2552695519594597 0.26469949727987413 0.2552695519594597 0.12780042556937532
+0.2694169498862358 0.24304680422186395 0.2694169498862358 0.24304680422186395 0.13620951760714062
+0.27799382315277843 0.23340455229125529 0.2779938231527784 0.2334045522912553 0.15055250656820507
+0.28013515909337505 0.23026452178240475 0.280135159093375 0.23026452178240478 0.15480676943118687
+0.27271748274832236 0.24190948674147006 0.27271748274832236 0.24190948674147003 0.14057332449078916
+0.2793165133307964 0.2362687881129054 0.2793165133307964 0.2362687881129054 0.15085492843735493
+0.2758154784293879 0.24050892770995586 0.27581547842938786 0.24050892770995588 0.14486693806268514
+0.278704905847626 0.2393158291724834 0.278704905847626 0.23931582917248342 0.14892961070275224
+0.268835909683748 0.24665289136505422 0.268835909683748 0.24665289136505422 0.1344447219090822
+0.2683656782508382 0.2502830437433929 0.2683656782508382 0.2502830437433929 0.133029592991009
+0.28872408539087785 0.21697345493597434 0.28872408539087785 0.21697345493597434 0.17358510160772403
+0.28663807605422115 0.2203865265533931 0.28663807605422115 0.2203865265533931 0.16872864076239333
+0.2845862682686717 0.22370053832828263 0.2845862682686717 0.22370053832828263 0.16406519132545502
+0.2823330986528317 0.22696497130550433 0.2823330986528317 0.22696497130550433 0.15932645206557314
+0.32008368200833875 0.17969031464395366 0.32008368200833875 0.17969031464395366 0.23274276614663195
+0.3179916317991333 0.18308069793912227 0.3179916317991333 0.18308069793912227 0.22927677355506923
+0.3158995748877143 0.18647085117212067 0.3158995748877143 0.18647085117212067 0.22551565923428285
+0.3138076403224446 0.18986015553989022 0.3138076403224446 0.18986015553989022 0.2214861676350698
+0.29290669377721384 0.2169456105090559 0.29290669377721384 0.2169456105090559 0.17872685792227494
+0.2949985288602434 0.21355788205668236 0.2949985288602434 0.21355788205668236 0.1836311225646929
+0.2970859142792993 0.21017786276930414 0.29708591427929937 0.21017786276930414 0.18856400297436196
+0.3075323384894044 0.19325028302469846 0.3075323384894044 0.19325028302469846 0.21249996266570584
+0.29917441207529727 0.2067954465942151 0.29917441207529727 0.2067954465942151 0.1935012690557234
+0.3054428266428362 0.1966382052736559 0.3054428266428362 0.1966382052736559 0.2079426071190351
+0.30335406055488623 0.20002487558224105 0.3033540605548862 0.20002487558224105 0.2032319921089758
+0.3012643134418228 0.20341061336394514 0.30126431344182286 0.20341061336394514 0.19840471969491372
+0.31171690218445186 0.19324793644555635 0.31171690218445186 0.19324793644555635 0.2172209166786139
+0.34100418410039046 0.15934801487294026 0.3410041841003904 0.15934801487294026 0.2523858694437726
+0.33891213389118535 0.1627383981681092 0.33891213389118535 0.1627383981681092 0.2513781798043557
+0.33682008368198024 0.16612878146327814 0.3368200836819803 0.16612878146327814 0.250020363788042
+0.32845188284515975 0.17290954805361602 0.32845188284515975 0.17290954805361602 0.24252035838406713
+0.33472803347277513 0.16951916475844708 0.33472803347277513 0.16951916475844708 0.2483005271232667
+0.33263598326356997 0.17290954805361602 0.33263598326356997 0.17290954805361602 0.24621348722420053
+0.3263598326359546 0.17629993134878494 0.3263598326359545 0.17629993134878494 0.2398784959666834
+0.3242677824267493 0.17969031464395382 0.3242677824267493 0.17969031464395382 0.23689247279563672
+0.3723849372384671 0.13561533180675767 0.3723849372384671 0.13561533180675767 0.2535455173155429
+0.370292887029262 0.1390057151019266 0.37029288702926205 0.1390057151019266 0.2553426887397829
+0.3682008368200569 0.14239609839709555 0.3682008368200569 0.14239609839709555 0.25702072845024565
+0.3661087866108518 0.1457864816922645 0.3661087866108517 0.1457864816922645 0.2585326007834606
+0.36401673640164667 0.14917686498743343 0.36401673640164667 0.14917686498743343 0.25983180880156054
+0.36192468619244156 0.15256724828260237 0.3619246861924416 0.15256724828260237 0.2608739515676452
+0.3472803347280058 0.15595763157777132 0.3472803347280058 0.15595763157777132 0.2554588004369296
+0.351464435146416 0.15595763157777132 0.351464435146416 0.15595763157777132 0.2576839945976697
+0.35564853556482623 0.15595763157777132 0.35564853556482623 0.15595763157777132 0.25973778929904684
+0.35983263598323645 0.15595763157777132 0.35983263598323645 0.15595763157777132 0.26161812900245124
+0.3451882845188007 0.15934801487294026 0.34518828451880074 0.15934801487294026 0.2550391346008399
+0.37866108786608244 0.13222494851158872 0.3786610878660825 0.13222494851158872 0.25128619902571664
+0.3765690376568773 0.13561533180675767 0.3765690376568773 0.13561533180675767 0.25344442676419904
+0.38284518828449265 0.13222494851158872 0.3828451882844926 0.13222494851158872 0.2506834477401747
+0.4121338912133642 0.11188264874057507 0.41213389121336425 0.11188264874057507 0.22663168020210386
+0.4100418410041591 0.11527303203574402 0.41004184100415914 0.11527303203574402 0.22947591349939325
+0.40794979079495397 0.11866341533091296 0.4079497907949539 0.11866341533091296 0.23249689265783213
+0.40585774058574886 0.1220537986260819 0.40585774058574886 0.1220537986260819 0.2356870325834837
+0.40376569037654375 0.12544418192125084 0.4037656903765438 0.12544418192125084 0.23902767266200806
+0.3870292887029029 0.13222494851158872 0.38702928870290293 0.13222494851158872 0.24986387682695102
+0.3912133891213131 0.13222494851158872 0.39121338912131304 0.13222494851158872 0.24882178467646623
+0.3974895397489284 0.12883456521641978 0.3974895397489284 0.12883456521641978 0.2442680074925682
+0.40167364016733864 0.12883456521641978 0.4016736401673386 0.12883456521641978 0.24248968740848117
+0.3953974895397233 0.13222494851158872 0.39539748953972337 0.13222494851158872 0.24754889704264968
+0.4330543933054153 0.10510188215023719 0.43305439330541523 0.10510188215023719 0.2066770303595832
+0.4184100418409795 0.10849226544540613 0.41841004184097946 0.10849226544540613 0.22071563960535154
+0.42259414225938974 0.10849226544540613 0.42259414225938974 0.10849226544540613 0.21727213958950012
+0.42677824267779996 0.10849226544540613 0.4267782426778 0.10849226544540613 0.21362353308725268
+0.4309623430962102 0.10849226544540613 0.4309623430962102 0.10849226544540613 0.20976198232401974
+0.4163179916317744 0.11188264874057507 0.41631799163177435 0.11188264874057507 0.22355452661482844
+0.4539748953974664 0.09832111555989931 0.45397489539746644 0.09832111555989931 0.18196348791324632
+0.4393305439330306 0.10171149885506825 0.4393305439330306 0.10171149885506825 0.1994414681009549
+0.44351464435144083 0.10171149885506825 0.4435146443514409 0.10171149885506825 0.1949096860132122
+0.44769874476985105 0.10171149885506825 0.44769874476985105 0.10171149885506825 0.19015504711649348
+0.4518828451882613 0.10171149885506825 0.4518828451882612 0.10171149885506825 0.18516732649004888
+0.4372384937238255 0.10510188215023719 0.43723849372382556 0.10510188215023719 0.20247382749454942
+0.4602510460250817 0.09493073226473037 0.46025104602508177 0.09493073226473037 0.1734173578591711
+0.46443514644349193 0.09493073226473037 0.46443514644349193 0.09493073226473037 0.16775072212285147
+0.46861924686190215 0.09493073226473037 0.4686192468619021 0.09493073226473037 0.16182479319215223
+0.4581589958158766 0.09832111555989931 0.45815899581587655 0.09832111555989931 0.17664176039157822
+0.49163179916315836 0.07797881578888566 0.4916317991631583 0.07797881578888566 0.12253908256308255
+0.485355648535543 0.0813691990840546 0.48535564853554297 0.0813691990840546 0.13405961311917328
+0.48953974895395325 0.0813691990840546 0.48953974895395325 0.0813691990840546 0.12678985247332789
+0.47280334728031237 0.09493073226473037 0.47280334728031237 0.09493073226473037 0.15562780830237433
+0.4832635983263379 0.08475958237922354 0.48326359832633786 0.08475958237922354 0.13801048076629938
+0.4811715481171328 0.08814996567439248 0.4811715481171328 0.08814996567439248 0.14182089673469875
+0.4790794979079277 0.09154034896956142 0.47907949790792775 0.09154034896956142 0.145520813904475
+0.4769874476987226 0.09493073226473037 0.47698744769872264 0.09493073226473037 0.14914830426583262
+0.4958158995815686 0.07797881578888566 0.49581589958156863 0.07797881578888566 0.11481496199825292
+0.4999999999999788 0.07797881578888566 0.49999999999997874 0.07797881578888566 0.10676515823889256
+0.5062761506275941 0.07458843249371672 0.5062761506275941 0.07458843249371672 0.0935537512935554
+0.504184100418389 0.07797881578888566 0.504184100418389 0.07797881578888566 0.0983816813015459
+0.5104602510460043 0.07458843249371672 0.5104602510460045 0.07458843249371672 0.08470106909310914
+0.5167364016736197 0.07119804919854777 0.5167364016736197 0.07119804919854777 0.07030802661953424
+0.5146443514644146 0.07458843249371672 0.5146443514644146 0.07458843249371672 0.07550932952326626
+0.523012552301235 0.06780766590337883 0.523012552301235 0.06780766590337883 0.05530361950516649
+0.5209205020920299 0.07119804919854777 0.5209205020920299 0.07119804919854777 0.06067681853101713
+0.560669456066927 0.027123066361351533 0.5606694560669271 0.027123066361351533 0.034094727257373995
+0.5543933054393116 0.030513449656520475 0.5543933054393116 0.030513449656520475 0.021241472872601284
+0.5585774058577219 0.030513449656520475 0.5585774058577219 0.030513449656520475 0.03016356863831925
+0.5523012552301065 0.03390383295168942 0.5523012552301064 0.03390383295168942 0.017169560938362357
+0.5502092050209014 0.03729421624685836 0.5502092050209014 0.03729421624685836 0.013098048066687075
+0.5481171548116963 0.0406845995420273 0.5481171548116963 0.0406845995420273 0.00921551382572276
+0.541841004184081 0.04407498283719624 0.541841004184081 0.04407498283719624 0.01001088682337635
+0.5397489539748759 0.04746536613236518 0.5397489539748759 0.04746536613236518 0.014151987549567967
+0.5376569037656708 0.050855749427534125 0.5376569037656708 0.050855749427534125 0.01885975010478196
+0.5355648535564657 0.054246132722703067 0.5355648535564655 0.054246132722703067 0.02387557281999071
+0.5334728033472605 0.05763651601787201 0.5334728033472605 0.05763651601787201 0.029086011740460545
+0.5313807531380554 0.06102689931304095 0.5313807531380554 0.06102689931304095 0.03442361711025994
+0.5292887029288503 0.06441728260820989 0.5292887029288503 0.06441728260820989 0.03983732468358737
+0.5271966527196452 0.06780766590337883 0.5271966527196453 0.06780766590337883 0.04528282846878817
+0.5460251046024912 0.04407498283719624 0.5460251046024912 0.04407498283719624 0.006252919483013055
+0.5711297071129525 0.01695191647584471 0.5711297071129525 0.01695191647584471 0.05409581535653946
+0.5753138075313627 0.01695191647584471 0.5753138075313627 0.01695191647584471 0.06257053881178411
+0.5690376569037474 0.02034229977101365 0.5690376569037473 0.02034229977101365 0.05042619429735493
+0.5669456066945423 0.02373268306618259 0.5669456066945423 0.02373268306618259 0.046762111876568195
+0.5648535564853372 0.027123066361351533 0.5648535564853372 0.027123066361351533 0.043068232880555925
+0.5857740585773883 0.006780766590337883 0.5857740585773882 0.006780766590337883 0.08151450129519346
+0.5836820083681832 0.010171149885506825 0.5836820083681832 0.010171149885506825 0.07788991624714614
+0.5815899581589781 0.013561533180675767 0.5815899581589781 0.013561533180675767 0.07438034683915734
+0.579497907949773 0.01695191647584471 0.579497907949773 0.01695191647584471 0.07097457214663928
+0.006780766590337709 0.5899581589958158 0.006780766590337709 0.5899581589958158 0.21025742182216192
+0.01017114988550656 0.5878661087866108 0.01017114988550656 0.5878661087866108 0.2115970694565891
+0.013561533180675408 0.5857740585774058 0.013561533180675408 0.5857740585774058 0.21307935895185007
+0.016951916475844264 0.5794979079497908 0.016951916475844264 0.5794979079497908 0.21631246296747345
+0.02034229977101312 0.5774058577405858 0.02034229977101312 0.5774058577405858 0.21797426350717267
+0.030513449656519673 0.5627615062761508 0.030513449656519673 0.5627615062761508 0.22546950712340563
+0.03729421624685738 0.5543933054393309 0.03729421624685738 0.5543933054393309 0.22939854355924738
+0.040684599542026224 0.5523012552301259 0.040684599542026224 0.5523012552301259 0.23092913717139898
+0.04746536613236394 0.5439330543933059 0.04746536613236394 0.5439330543933059 0.23384574114555337
+0.05085574942753279 0.5418410041841009 0.05085574942753279 0.5418410041841009 0.23500171089576052
+0.05424613272270165 0.5397489539748959 0.054246132722701644 0.5397489539748959 0.2360378404922416
+0.0576365160178705 0.5334728033472809 0.0576365160178705 0.5334728033472809 0.2367163116191036
+0.061026899313039396 0.5313807531380759 0.061026899313039396 0.5313807531380759 0.2374367725815926
+0.06441728260820835 0.5292887029288708 0.06441728260820835 0.5292887029288708 0.2380449088381499
+0.05763651601787049 0.5376569037656909 0.05763651601787049 0.5376569037656909 0.2369457538864543
+0.0440749828371951 0.5502092050209209 0.0440749828371951 0.5502092050209209 0.23239216403839194
+0.04746536613236394 0.5481171548117159 0.04746536613236394 0.5481171548117159 0.23376304990333638
+0.033903832951688535 0.5606694560669458 0.033903832951688535 0.5606694560669458 0.22717300428476084
+0.03729421624685738 0.5585774058577408 0.03729421624685738 0.5585774058577408 0.22886682187245047
+0.02373268306618197 0.5711297071129708 0.02373268306618197 0.5711297071129708 0.22101709918551657
+0.02373268306618197 0.5753138075313808 0.02373268306618197 0.5753138075313808 0.2197456867035759
+0.027123066361350822 0.5690376569037658 0.027123066361350822 0.5690376569037658 0.22276423856426839
+0.030513449656519673 0.5669456066945608 0.030513449656519673 0.5669456066945608 0.22456597333331943
+0.016951916475844264 0.5836820083682008 0.016951916475844264 0.5836820083682008 0.21470304730336268
+0.07797881578888093 0.5083682008368292 0.07797881578888093 0.5083682008368292 0.2389226090416007
+0.07797881578887922 0.512552301255233 0.07797881578887922 0.512552301255233 0.23910937717278327
+0.08136919908405135 0.5062761506276285 0.08136919908405137 0.5062761506276284 0.23936050444088977
+0.08475958237922332 0.5041841004184272 0.08475958237922332 0.5041841004184272 0.23984893521580333
+0.0881499656743927 0.4937238493723825 0.0881499656743927 0.4937238493723825 0.24048157204711887
+0.08814996567439792 0.4979079497908007 0.08814996567439792 0.4979079497908007 0.24041494729078708
+0.08814996567439641 0.502092050209223 0.08814996567439641 0.5020920502092229 0.24041522793577932
+0.0678076659033772 0.523012552301255 0.06780766590337718 0.523012552301255 0.23821321011923594
+0.07119804919854576 0.520920502092049 0.07119804919854576 0.520920502092049 0.23863424480396836
+0.07458843249371377 0.5188284518828431 0.07458843249371377 0.5188284518828431 0.2390082669756581
+0.07797881578888101 0.5167364016736379 0.07797881578888101 0.5167364016736379 0.23936210741767996
+0.06780766590337735 0.5271966527196655 0.06780766590337735 0.5271966527196655 0.2385522445810195
+0.264486217410253 0.2588877059939322 0.2644862174102531 0.25888770599393224 0.1271474833459001
+0.23968746722552908 0.27489933439842834 0.2396874672255291 0.27489933439842834 0.102811980114851
+0.26434817445994446 0.2624831181643437 0.26434817445994446 0.2624831181643437 0.12673943414230185
+0.2612202391136038 0.26394975233514617 0.2612202391136038 0.26394975233514617 0.12304788735675798
+0.24294862032314612 0.27357812499479256 0.24294862032314612 0.27357812499479256 0.10512227429448819
+0.24585945511481552 0.27198196547213144 0.24585945511481552 0.27198196547213144 0.10744309825629239
+0.25811330291152507 0.26545548137374747 0.25811330291152507 0.26545548137374747 0.11951823179854469
+0.25499923179818906 0.26701631381994356 0.25499923179818906 0.26701631381994356 0.1161431616774685
+0.25188582899682443 0.26863126285660727 0.25188582899682443 0.26863126285660727 0.1129592520737248
+0.2488325666030708 0.2703007191282424 0.24883256660307082 0.27030071912824244 0.110048398017193
+0.22691236331636755 0.28637965435963164 0.22691236331636758 0.2863796543596316 0.09870625793974831
+0.230173392493385 0.2841604322288786 0.230173392493385 0.2841604322288786 0.09921297743129193
+0.2333630295090433 0.28202244048728825 0.23336302950904333 0.28202244048728825 0.1001521541269944
+0.23646713098232636 0.2799659132222962 0.23646713098232633 0.2799659132222962 0.10146716094229612
+0.23956384470949854 0.2784766916825248 0.23956384470949854 0.2784766916825248 0.10325076946107607
+0.19325164902082528 0.3117161847044974 0.19325164902082528 0.3117161847044974 0.11918923740202654
+0.1966415991758723 0.3096247610360925 0.1966415991758723 0.3096247610360925 0.11594876216840831
+0.20002967613349268 0.30753394762919634 0.20002967613349268 0.30753394762919634 0.11289759426819078
+0.20341337515433108 0.30125739503274745 0.20341337515433108 0.30125739503274745 0.10711855663926519
+0.2067920691339714 0.29916729300769046 0.20679206913397144 0.29916729300769046 0.10477479253432374
+0.20341254678496046 0.3054430648522997 0.20341254678496049 0.3054430648522997 0.11007958900323496
+0.22359664098834023 0.2885925948180322 0.22359664098834023 0.2885925948180322 0.09864745694032075
+0.22026478311326314 0.29075042716151805 0.22026478311326314 0.29075042716151805 0.0990303935510596
+0.21691376066750231 0.2928788909321388 0.21691376066750231 0.29287889093213876 0.0998559109494226
+0.2135483362590765 0.2949858214415441 0.21354833625907646 0.2949858214415441 0.10110861291024587
+0.21016753854741888 0.29707750986289627 0.21016753854741888 0.2970775098628962 0.10275862895223
+0.17290954804971562 0.32845188284108356 0.17290954804971562 0.32845188284108356 0.14501432489660562
+0.17629993134120372 0.32635983263612806 0.17629993134120372 0.32635983263612806 0.14126131947194506
+0.17969031463389185 0.32426778243791315 0.17969031463389185 0.32426778243791315 0.13750264223701258
+0.18308069586845965 0.3221757608534177 0.18308069586845965 0.3221757608534177 0.13375825015645068
+0.18647105495034313 0.3200837806317163 0.18647105495034313 0.3200837806317163 0.1300524628599914
+0.18986135027685477 0.31799209973126374 0.18986135027685477 0.31799209973126374 0.1264142745648729
+0.1932515837410214 0.3159006151379493 0.1932515837410214 0.3159006151379493 0.12287666844502128
+0.15595763157770634 0.3472803347280791 0.15595763157770634 0.3472803347280791 0.17287483012344088
+0.15934801487285552 0.34518828451902833 0.15934801487285552 0.34518828451902833 0.16924194456751895
+0.16273839816861566 0.3389121338915393 0.16273839816861566 0.3389121338915393 0.16083071150250897
+0.16612878146426954 0.3368200836816879 0.16612878146426954 0.3368200836816879 0.15711062931696607
+0.16273839816809707 0.34309623431011493 0.16273839816809707 0.34309623431011493 0.16554213377728344
+0.16951916475975579 0.3347280334707344 0.16951916475975579 0.3347280334707344 0.15334069289780514
+0.17290954805432815 0.33263598325851895 0.17290954805432815 0.3326359832585189 0.14952924942544513
+0.14239609839709508 0.3640167364016745 0.14239609839709508 0.3640167364016745 0.19583096665130195
+0.14578648169226438 0.36192468619246987 0.14578648169226438 0.36192468619246987 0.19254792983560745
+0.1491768649874349 0.3556485355648464 0.1491768649874349 0.3556485355648464 0.18462055387834583
+0.14917686498743457 0.35983263598326465 0.14917686498743457 0.35983263598326465 0.18917971251120955
+0.1525672482825997 0.35355648535562795 0.1525672482825997 0.35355648535562795 0.18113553555090875
+0.15595763157775003 0.35146443514640596 0.15595763157775003 0.35146443514640596 0.17757326779885174
+0.1254441819212505 0.3828451882845194 0.1254441819212505 0.3828451882845194 0.21835297430445613
+0.12544418192125054 0.38702928870292946 0.12544418192125054 0.38702928870292946 0.22168112306736784
+0.1288345652164194 0.38075313807531436 0.12883456521641937 0.38075313807531436 0.21574686267469015
+0.13222494851158828 0.37866108786610925 0.13222494851158828 0.37866108786610925 0.2130315166085058
+0.13561533180675717 0.37238493723849425 0.1356153318067572 0.37238493723849425 0.20627947730975607
+0.13561533180675717 0.3765690376569043 0.1356153318067572 0.37656903765690425 0.21021042303979834
+0.13900571510192608 0.3702928870292892 0.13900571510192608 0.3702928870292892 0.20325219887366883
+0.14239609839709497 0.36820083682008425 0.14239609839709497 0.36820083682008425 0.20013085338809014
+0.1152730320357438 0.4016736401673646 0.1152730320357438 0.4016736401673646 0.23329314340595567
+0.11866341533091268 0.3995815899581596 0.1186634153309127 0.3995815899581596 0.23154070099149934
+0.12205379862608161 0.39330543933054457 0.12205379862608161 0.39330543933054457 0.22695931052086113
+0.1254441819212505 0.3912133891213395 0.1254441819212505 0.39121338912133957 0.22476978884083296
+0.12205379862608161 0.3974895397489546 0.12205379862608161 0.3974895397489546 0.2296505814498224
+0.1152730320357438 0.4058577405857747 0.1152730320357438 0.4058577405857747 0.23540043322157664
+0.10849226544540602 0.41841004184100483 0.10849226544540602 0.4184100418410049 0.2409417800669769
+0.1152730320357438 0.4100418410041847 0.1152730320357438 0.41004184100418467 0.23727923874170642
+0.1118826487405749 0.41631799163179983 0.1118826487405749 0.4163179916317999 0.24001310157068875
+0.1152730320357438 0.4142259414225948 0.1152730320357438 0.4142259414225948 0.23894668383939496
+0.108492265445406 0.42259414225941494 0.10849226544540601 0.422594142259415 0.24204649446635942
+0.09832111555989931 0.44560669456067015 0.09832111555989931 0.4456066945606701 0.24446521210880665
+0.10510188215023712 0.42887029288703 0.10510188215023712 0.42887029288703 0.2434167395532301
+0.10849226544540601 0.42677824267782494 0.10849226544540601 0.426778242677825 0.24297277050648838
+0.1017114988550682 0.43514644351464504 0.10171149885506821 0.43514644351464504 0.24417867378171484
+0.10510188215023712 0.43305439330544 0.10510188215023712 0.43305439330544 0.24401420581807096
+0.10171149885506821 0.43933054393305504 0.10171149885506821 0.43933054393305504 0.24448573878908977
+0.1017114988550682 0.4435146443514651 0.10171149885506821 0.4435146443514651 0.2446802920148041
+0.09493073226473019 0.46025104602510575 0.09493073226473019 0.46025104602510575 0.2436165924219055
+0.09493073226472976 0.4644351464435162 0.09493073226472976 0.4644351464435162 0.24335844638761175
+0.09832111555989927 0.4497907949790802 0.09832111555989927 0.4497907949790802 0.24444031169798539
+0.09832111555989921 0.4539748953974905 0.09832111555989921 0.4539748953974905 0.24434797588788557
+0.09832111555989909 0.45815899581590075 0.09832111555989909 0.45815899581590075 0.24420613092827856
+0.0949307322647292 0.468619246861927 0.0949307322647292 0.46861924686192696 0.2430913261614566
+0.09493073226472815 0.4728033472803384 0.09493073226472815 0.4728033472803384 0.24282878278628214
+0.09154034896955654 0.4790794979079543 0.09154034896955654 0.4790794979079543 0.24178732594830218
+0.09493073226472576 0.47698744769875034 0.09493073226472576 0.47698744769875034 0.24258256233068967
+0.09154034896955261 0.48326359832636373 0.09154034896955261 0.48326359832636373 0.24154545126328628
+0.0915403489695486 0.487447698744769 0.0915403489695486 0.48744769874476906 0.24134882136500826
+0.09154034896955654 0.49163179916317534 0.09154034896955654 0.4916317991631754 0.24120387693067302
+0.26798216669311226 0.2539074491780159 0.2679821666931122 0.25390744917801594 0.13192595428738588
+0.2676901311912969 0.25750524139100045 0.2676901311912969 0.25750524139100045 0.13111794865827894
+0.2842533296821272 0.2301997657927929 0.2842533296821272 0.23019976579279292 0.15992191337647077
+0.2721871726410744 0.24539267162912562 0.27218717264107445 0.24539267162912562 0.13885981124374466
+0.2820315863818613 0.23387612347758469 0.28203158638186127 0.23387612347758463 0.15541508715797295
+0.2754310474043535 0.24409975108983595 0.2754310474043535 0.24409975108983595 0.1432381059643245
+0.2821802952191289 0.23800572076581494 0.28218029521912896 0.23800572076581492 0.1537830929452323
+0.278558495689705 0.2427532032511895 0.278558495689705 0.24275320325118946 0.1475679050975983
+0.28176241066654784 0.2414735165820963 0.2817624106665479 0.2414735165820963 0.1520446731094378
+0.27172349544523833 0.24897185026955312 0.27172349544523833 0.24897185026955312 0.13740706204755623
+0.27131161547265886 0.2525696238165216 0.27131161547265886 0.2525696238165216 0.13621393381530275
+0.29082925122276426 0.22037851723630594 0.2908292512227643 0.22037851723630594 0.17389118899160227
+0.2886908598832133 0.22396188874491452 0.28869085988321336 0.22396188874491454 0.1690173720787043
+0.2865115992951103 0.2270079573660405 0.28651159929511033 0.22700795736604054 0.1644714670924192
+0.28754127232883825 0.230073380733394 0.28754127232883825 0.23007338073339403 0.1640744512307245
+0.322175732217544 0.18308069793912263 0.322175732217544 0.18308069793912263 0.23357736550808395
+0.3200836297856081 0.18647064257137935 0.32008362978560806 0.18647064257137935 0.22995433707119475
+0.3179915643671635 0.18985900553055657 0.3179915643671635 0.18985900553055657 0.22605060041534217
+0.31590073336836405 0.19324473777410803 0.31590073336836405 0.19324473777410803 0.2218995799925525
+0.2949809932037157 0.22029546125574975 0.2949809932037157 0.22029546125574975 0.17909571152640902
+0.29710560507701755 0.2169132232922119 0.29710560507701755 0.21691322329221194 0.18393368646360056
+0.29919133925097535 0.21355208264047185 0.29919133925097535 0.21355208264047185 0.1887729326947033
+0.3012866760614221 0.2101730380049958 0.3012866760614221 0.2101730380049958 0.19366662836205306
+0.30962913206345144 0.1966337865199517 0.30962913206345144 0.1966337865199517 0.21275723752853848
+0.3033751269260005 0.20678902770326105 0.3033751269260005 0.20678902770326105 0.19854908042889222
+0.30754447208194113 0.20001806529242952 0.30754447208194113 0.20001806529242952 0.20813324083238258
+0.3054605838769747 0.20340290788929935 0.3054605838769748 0.20340290788929935 0.20338470378883686
+0.3138139507537327 0.19662719700562395 0.3138139507537327 0.19662719700562395 0.21754057338357288
+0.34309623430959557 0.1627383981681092 0.34309623430959557 0.1627383981681092 0.25427878056157044
+0.34100418410039046 0.16612878146327814 0.3410041841003904 0.16612878146327814 0.25315819315517435
+0.33891213389118535 0.16951916475844708 0.33891213389118535 0.16951916475844708 0.25166441418293645
+0.33054393305436486 0.17629993134878497 0.33054393305436486 0.17629993134878497 0.24376088958812134
+0.33682008368198024 0.17290954805361602 0.3368200836819803 0.17290954805361602 0.24979139348082555
+0.33472803347277513 0.17629993134878497 0.33472803347277513 0.17629993134878497 0.24754011544767376
+0.3284518828451597 0.1796903146439539 0.3284518828451597 0.1796903146439539 0.24095114035848017
+0.3263598326359545 0.18308069793912282 0.3263598326359545 0.18308069793912282 0.23779916309708535
+0.3744769874476722 0.1390057151019266 0.37447698744767216 0.1390057151019266 0.2555363334544996
+0.3723849372384671 0.14239609839709555 0.3723849372384671 0.14239609839709555 0.2575141041338716
+0.370292887029262 0.1457864816922645 0.37029288702926205 0.1457864816922645 0.2593287080192915
+0.3682008368200569 0.14917686498743343 0.3682008368200569 0.14917686498743343 0.26093160947048055
+0.3661087866108518 0.15256724828260237 0.3661087866108517 0.15256724828260237 0.2622763709122719
+0.36401673640164667 0.15595763157777132 0.36401673640164667 0.15595763157777132 0.2633200988543352
+0.3493723849372109 0.15934801487294026 0.34937238493721084 0.15934801487294026 0.2575311810621886
+0.3535564853556211 0.15934801487294026 0.3535564853556212 0.15934801487294026 0.25986177780746805
+0.35774058577403134 0.15934801487294026 0.3577405857740313 0.15934801487294026 0.26202816125802825
+0.36192468619244156 0.15934801487294026 0.3619246861924416 0.15934801487294026 0.2640246997654309
+0.3472803347280058 0.1627383981681092 0.3472803347280058 0.1627383981681092 0.2570292153929255
+0.38075313807528754 0.13561533180675767 0.38075313807528754 0.13561533180675767 0.2531303448333235
+0.37866108786608244 0.1390057151019266 0.3786610878660825 0.1390057151019266 0.25551884266951874
+0.38493723849369776 0.13561533180675767 0.38493723849369776 0.13561533180675767 0.252598909126847
+0.4142259414225693 0.11527303203574402 0.4142259414225693 0.11527303203574402 0.2265796080837705
+0.4121338912133642 0.11866341533091296 0.41213389121336425 0.11866341533091296 0.2297955863442458
+0.4100418410041591 0.1220537986260819 0.41004184100415914 0.1220537986260819 0.23319572980843792
+0.40794979079495397 0.12544418192125084 0.4079497907949539 0.12544418192125084 0.23676186653490408
+0.40585774058574886 0.12883456521641978 0.40585774058574886 0.12883456521641978 0.24046496436105105
+0.389121338912108 0.13561533180675767 0.389121338912108 0.13561533180675767 0.2518429759343422
+0.3933054393305182 0.13561533180675767 0.3933054393305182 0.13561533180675767 0.25085275995458883
+0.39958158995813353 0.13222494851158872 0.3995815899581335 0.13222494851158872 0.24603459597178998
+0.40376569037654375 0.13222494851158872 0.4037656903765438 0.13222494851158872 0.24426623303396403
+0.3974895397489284 0.13561533180675767 0.3974895397489284 0.13561533180675767 0.24961607278411677
+0.4351464435146204 0.10849226544540613 0.43514644351462034 0.10849226544540613 0.20567873455053554
+0.42050209205018463 0.11188264874057507 0.4205020920501847 0.11188264874057507 0.2202696428859344
+0.42468619246859485 0.11188264874057507 0.4246861924685948 0.11188264874057507 0.2167696199642302
+0.42887029288700507 0.11188264874057507 0.4288702928870051 0.11188264874057507 0.21304593804525399
+0.4330543933054153 0.11188264874057507 0.43305439330541523 0.11188264874057507 0.20908929485763927
+0.4184100418409795 0.11527303203574402 0.41841004184097946 0.11527303203574402 0.223465616145495
+0.4560669456066715 0.10171149885506825 0.4560669456066715 0.10171149885506825 0.1799361037598416
+0.4414225941422357 0.10510188215023719 0.44142259414223567 0.10510188215023719 0.1980494928882959
+0.44560669456064594 0.10510188215023719 0.445606694560646 0.10510188215023719 0.19339435866485308
+0.44979079497905616 0.10510188215023719 0.4497907949790561 0.10510188215023719 0.18849851275081753
+0.4539748953974664 0.10510188215023719 0.45397489539746644 0.10510188215023719 0.1833520296815677
+0.4393305439330306 0.10849226544540613 0.4393305439330306 0.10849226544540613 0.20136442368788285
+0.4623430962342868 0.09832111555989931 0.4623430962342869 0.09832111555989931 0.17107035848586663
+0.46652719665269704 0.09832111555989931 0.466527196652697 0.09832111555989931 0.16523819380628588
+0.47071129707110726 0.09832111555989931 0.4707112970711073 0.09832111555989931 0.1591343876922281
+0.4602510460250817 0.10171149885506825 0.46025104602508177 0.10171149885506825 0.17445096457419004
+0.49372384937236347 0.0813691990840546 0.4937238493723635 0.0813691990840546 0.1192049985337721
+0.48744769874474814 0.08475958237922354 0.4874476987447482 0.08475958237922354 0.13087676150048874
+0.49163179916315836 0.08475958237922354 0.4916317991631583 0.08475958237922354 0.12343007093225698
+0.4748953974895175 0.09832111555989931 0.4748953974895174 0.09832111555989931 0.15274842447565337
+0.485355648535543 0.08814996567439248 0.48535564853554297 0.08814996567439248 0.1348174655001987
+0.4832635983263379 0.09154034896956142 0.48326359832633786 0.09154034896956142 0.13863858970173817
+0.4811715481171328 0.09493073226473037 0.4811715481171328 0.09493073226473037 0.14237528537442615
+0.4790794979079277 0.09832111555989931 0.47907949790792775 0.09832111555989931 0.14607029358603776
+0.4979079497907737 0.0813691990840546 0.4979079497907737 0.0813691990840546 0.11129484707005079
+0.5020920502091839 0.0813691990840546 0.5020920502091838 0.0813691990840546 0.1030506395795217
+0.5083682008367992 0.07797881578888566 0.5083682008367992 0.07797881578888566 0.0896583838049697
+0.5062761506275941 0.0813691990840546 0.5062761506275941 0.0813691990840546 0.09446531963264461
+0.5125523012552095 0.07797881578888566 0.5125523012552095 0.07797881578888566 0.08059121257492007
+0.5188284518828248 0.07458843249371672 0.5188284518828247 0.07458843249371672 0.06597823676744073
+0.5167364016736197 0.07797881578888566 0.5167364016736197 0.07797881578888566 0.07117845974753188
+0.5251046025104401 0.07119804919854777 0.5251046025104401 0.07119804919854777 0.05071955696404817
+0.523012552301235 0.07458843249371672 0.523012552301235 0.07458843249371672 0.05611015567681656
+0.5627615062761321 0.030513449656520475 0.5627615062761321 0.030513449656520475 0.03930747515867152
+0.5564853556485168 0.03390383295168942 0.5564853556485168 0.03390383295168942 0.026135132107838095
+0.560669456066927 0.03390383295168942 0.5606694560669271 0.03390383295168942 0.03544402636913868
+0.5543933054393116 0.03729421624685836 0.5543933054393116 0.03729421624685836 0.021991051461301203
+0.5523012552301065 0.0406845995420273 0.5523012552301064 0.0406845995420273 0.01772878786031386
+0.5502092050209014 0.04407498283719624 0.5502092050209014 0.04407498283719624 0.013380360040690596
+0.5439330543932861 0.04746536613236518 0.5439330543932862 0.04746536613236518 0.006225987907449888
+0.541841004184081 0.050855749427534125 0.541841004184081 0.050855749427534125 0.0094194244986531
+0.5397489539748759 0.054246132722703067 0.5397489539748759 0.054246132722703067 0.013911558158105424
+0.5376569037656708 0.05763651601787201 0.5376569037656708 0.05763651601787201 0.018896392195532023
+0.5355648535564657 0.06102689931304095 0.5355648535564655 0.06102689931304095 0.02412959558581383
+0.5334728033472605 0.06441728260820989 0.5334728033472605 0.06441728260820989 0.029506038957174446
+0.5313807531380554 0.06780766590337883 0.5313807531380554 0.06780766590337883 0.03496080912989918
+0.5292887029288503 0.07119804919854777 0.5292887029288503 0.07119804919854777 0.040443432775531606
+0.5481171548116963 0.04746536613236518 0.5481171548116963 0.04746536613236518 0.009082680528564445
+0.5732217573221576 0.02034229977101365 0.5732217573221576 0.02034229977101365 0.05906430088473624
+0.5774058577405679 0.02034229977101365 0.577405857740568 0.02034229977101365 0.06764869129305022
+0.5711297071129525 0.02373268306618259 0.5711297071129525 0.02373268306618259 0.05558240973430611
+0.5690376569037474 0.027123066361351533 0.5690376569037473 0.027123066361351533 0.05208602828338332
+0.5669456066945423 0.030513449656520475 0.5669456066945423 0.030513449656520475 0.048533308701894866
+0.5899581589957985 0.006780766590337883 0.5899581589957985 0.006780766590337883 0.08938045984325658
+0.5878661087865934 0.010171149885506825 0.5878661087865934 0.010171149885506825 0.08587850529579873
+0.5857740585773883 0.013561533180675767 0.5857740585773882 0.013561533180675767 0.0825143280326625
+0.5836820083681832 0.01695191647584471 0.5836820083681832 0.01695191647584471 0.07927829514304206
+0.5815899581589781 0.02034229977101365 0.5815899581589781 0.02034229977101365 0.0761466009475707
+0.006780766590337709 0.5941422594142258 0.006780766590337709 0.5941422594142258 0.2082829373727346
+0.01017114988550656 0.5920502092050208 0.01017114988550656 0.5920502092050208 0.2096926562860387
+0.013561533180675408 0.5899581589958158 0.013561533180675408 0.5899581589958158 0.2112512438716931
+0.016951916475844264 0.5878661087866108 0.016951916475844264 0.5878661087866108 0.2129581002014109
+0.02034229977101312 0.5815899581589958 0.02034229977101312 0.5815899581589958 0.21645957456990386
+0.02373268306618197 0.5794979079497908 0.02373268306618197 0.5794979079497908 0.2183334121463761
+0.033903832951688535 0.5648535564853558 0.033903832951688535 0.5648535564853558 0.22639280538464387
+0.040684599542026224 0.5564853556485359 0.040684599542026224 0.5564853556485359 0.23052063117231383
+0.0440749828371951 0.5543933054393309 0.0440749828371951 0.5543933054393309 0.23210526097645331
+0.05085574942753279 0.5460251046025109 0.05085574942753279 0.5460251046025109 0.2350210292368056
+0.05424613272270165 0.5439330543933059 0.054246132722701644 0.5439330543933059 0.23615017526966797
+0.05763651601787049 0.5418410041841009 0.05763651601787049 0.5418410041841009 0.23714025170043776
+0.06102689931303936 0.5355648535564859 0.06102689931303936 0.5355648535564859 0.23772320771333225
+0.06441728260820823 0.5334728033472809 0.06441728260820823 0.5334728033472809 0.2383744493840352
+0.06780766590337718 0.5313807531380759 0.06780766590337718 0.5313807531380759 0.23891033676457143
+0.06102689931303934 0.5397489539748959 0.06102689931303934 0.5397489539748959 0.23798736257395733
+0.04746536613236394 0.5523012552301259 0.04746536613236394 0.5523012552301259 0.23359405029415262
+0.05085574942753279 0.5502092050209209 0.05085574942753279 0.5502092050209209 0.2349640912700166
+0.03729421624685738 0.5627615062761508 0.03729421624685738 0.5627615062761508 0.228213250043908
+0.040684599542026224 0.5606694560669458 0.040684599542026224 0.5606694560669458 0.22999529782435194
+0.027123066361350822 0.5732217573221758 0.027123066361350822 0.5732217573221758 0.22160499398588088
+0.027123066361350822 0.5774058577405858 0.027123066361350822 0.5774058577405858 0.22030275798333013
+0.030513449656519673 0.5711297071129708 0.030513449656519673 0.5711297071129708 0.22352547844614598
+0.033903832951688535 0.5690376569037658 0.033903832951688535 0.5690376569037658 0.22547672093522753
+0.02034229977101312 0.5857740585774058 0.02034229977101312 0.5857740585774058 0.21480521974450592
+0.08136919908404704 0.5104602510460324 0.08136919908404704 0.5104602510460324 0.2395091202951258
+0.08136919908404745 0.514644351464434 0.08136919908404745 0.514644351464434 0.23972598947454712
+0.08475958237921623 0.5083682008368341 0.08475958237921623 0.5083682008368341 0.23995667521105443
+0.08814996567438778 0.5062761506276368 0.08814996567438778 0.5062761506276368 0.2404824163507269
+0.09154034896956569 0.4958158995815896 0.09154034896956569 0.4958158995815896 0.2411151971413912
+0.09154034896956952 0.5000000000000149 0.09154034896956952 0.500000000000015 0.24108552043716291
+0.091540348969562 0.5041841004184379 0.091540348969562 0.5041841004184379 0.24111575940119015
+0.0711980491985464 0.5251046025104601 0.0711980491985464 0.5251046025104601 0.2389763373885668
+0.0745884324937153 0.523012552301254 0.07458843249371529 0.523012552301254 0.2393403320181899
+0.07797881578888369 0.5209205020920475 0.07797881578888367 0.5209205020920474 0.2396722550712835
+0.08136919908405113 0.5188284518828404 0.08136919908405114 0.5188284518828404 0.24000405575550196
+0.07119804919854625 0.5292887029288709 0.07119804919854623 0.5292887029288709 0.2393482051077606
+0.26746683365852064 0.2610709166528801 0.26746683365852064 0.2610709166528801 0.13054648539775407
+0.2427308517213277 0.27702968704268527 0.24273085172132766 0.2770296870426852 0.10538587792932878
+0.2673047150991185 0.26460978729152346 0.2673047150991185 0.26460978729152346 0.1301665648966576
+0.2643127189704494 0.2660610075300797 0.26431271897044933 0.2660610075300797 0.12658461006721436
+0.26121264338039724 0.2675544647782107 0.26121264338039724 0.2675544647782107 0.12298292841282497
+0.2457881778331131 0.2755133358864833 0.2457881778331131 0.27551333588648325 0.10771395125705342
+0.24878101855479126 0.27391728321777015 0.24878101855479126 0.27391728321777015 0.11024783582332472
+0.2580842497097909 0.2690962809357214 0.2580842497097909 0.2690962809357214 0.11949604455552447
+0.2549426632965354 0.27067648342607714 0.2549426632965354 0.27067648342607714 0.11616762418279795
+0.2518116693451568 0.27229256510255123 0.2518116693451568 0.27229256510255123 0.11304937734367128
+0.22690254798871834 0.2906469159752212 0.22690254798871834 0.2906469159752212 0.1002315493164893
+0.2302415405996565 0.2882376703165332 0.2302415405996565 0.2882376703165332 0.10049679944011052
+0.23345092610351506 0.28602844576244874 0.23345092610351506 0.28602844576244874 0.10124896356522307
+0.23656538856641834 0.28394436160889236 0.23656538856641832 0.28394436160889236 0.10240676966941613
+0.239623779245925 0.28223091316478444 0.239623779245925 0.28223091316478444 0.10399124637732947
+0.2426810364682798 0.28063845662137005 0.2426810364682798 0.28063845662137005 0.10591499623822224
+0.1966407840307548 0.313810170119097 0.1966407840307548 0.313810170119097 0.11947798343534179
+0.200029185691332 0.3117197822845618 0.20002918569133196 0.3117197822845618 0.11625786065169054
+0.2034138130235976 0.30962989918098627 0.2034138130235976 0.30962989918098627 0.11326098960413955
+0.20678725740108606 0.3033525912840263 0.20678725740108606 0.3033525912840263 0.10754011040440993
+0.21015389923359773 0.3012638359995498 0.21015389923359776 0.3012638359995498 0.10532349202320275
+0.20678970052768886 0.30753949877141223 0.20678970052768886 0.30753949877141223 0.11053244765675309
+0.22359010196267706 0.2927974782279887 0.22359010196267706 0.2927974782279887 0.10036474062354435
+0.22025671361094887 0.29494761166819017 0.22025671361094887 0.29494761166819017 0.10095237276355341
+0.21690360853844792 0.29706835685104305 0.21690360853844792 0.29706835685104305 0.1019987960820166
+0.21351863017956751 0.2991713276276409 0.21351863017956751 0.2991713276276409 0.10346527125659417
+0.17629993134689168 0.33054393304622 0.17629993134689168 0.33054393304621993 0.14568809061142254
+0.17969031463658167 0.328451882836761 0.17969031463658167 0.328451882836761 0.1418327993907134
+0.18308069446476238 0.32635988061229376 0.18308069446476238 0.32635988061229376 0.1379830713668558
+0.1864710050803222 0.3242680085160495 0.1864710050803222 0.3242680085160495 0.13416289276949334
+0.18986112668155286 0.32217658332739124 0.18986112668155286 0.32217658332739124 0.13040082143004283
+0.19325110832848055 0.32008537780417384 0.19325110832848055 0.32008537780417384 0.1267290561680016
+0.1966395466034311 0.3179955354464846 0.1966395466034311 0.3179955354464847 0.12318587213444054
+0.15934801487287184 0.34937238493720707 0.15934801487287184 0.34937238493720707 0.1739337565588199
+0.1627383981679625 0.34728033472810454 0.1627383981679625 0.34728033472810454 0.1702183574519004
+0.1661287814635755 0.3410041841012473 0.1661287814635755 0.3410041841012473 0.16177843086536228
+0.16951916475943982 0.33891213389203007 0.16951916475943982 0.33891213389203007 0.15795631758365358
+0.16612878146307122 0.34518828451921885 0.16612878146307122 0.34518828451921885 0.16643029264709416
+0.17290954805564132 0.33682008368163824 0.17290954805564132 0.33682008368163824 0.1540841836568452
+0.17629993135156308 0.33472803346973773 0.17629993135156308 0.33472803346973773 0.15017372908739557
+0.1457864816922638 0.3661087866108794 0.1457864816922638 0.3661087866108794 0.1969154743040398
+0.14917686498743282 0.3640167364016751 0.1491768649874328 0.3640167364016751 0.19360548466154218
+0.15256724828260612 0.3577405857740558 0.15256724828260612 0.3577405857740558 0.185725460179924
+0.1525672482826027 0.36192468619247126 0.1525672482826027 0.36192468619247126 0.1902001424083587
+0.15595763157777717 0.3556485355648367 0.15595763157777717 0.3556485355648367 0.18218460385291288
+0.1593480148729388 0.3535564853555993 0.1593480148729388 0.3535564853555993 0.17855737386170256
+0.1288345652164194 0.3849372384937244 0.12883456521641937 0.3849372384937244 0.21921471683492152
+0.12883456521641942 0.38912133891213446 0.12883456521641942 0.38912133891213446 0.22245509020473295
+0.13222494851158828 0.3828451882845193 0.13222494851158828 0.38284518828451924 0.2166323268309606
+0.13561533180675717 0.38075313807531436 0.1356153318067572 0.38075313807531436 0.2139368208478221
+0.13900571510192608 0.3744769874476992 0.13900571510192608 0.3744769874476992 0.20728560593599568
+0.13900571510192608 0.37866108786610925 0.13900571510192608 0.37866108786610925 0.21112972718082648
+0.142396098397095 0.3723849372384942 0.142396098397095 0.3723849372384942 0.20425786503277268
+0.14578648169226385 0.37029288702928914 0.14578648169226385 0.37029288702928914 0.20112709226163858
+0.11866341533091268 0.4037656903765697 0.1186634153309127 0.4037656903765697 0.23382557732220707
+0.12205379862608161 0.4016736401673646 0.12205379862608161 0.4016736401673646 0.2321131155458592
+0.1254441819212505 0.39539748953974957 0.1254441819212505 0.39539748953974957 0.22762784076295617
+0.1288345652164194 0.3933054393305445 0.12883456521641937 0.39330543933054457 0.2254762453449393
+0.1254441819212505 0.3995815899581596 0.1254441819212505 0.3995815899581596 0.2302667704367025
+0.11866341533091268 0.4079497907949797 0.1186634153309127 0.40794979079497967 0.23588826138994748
+0.11188264874057491 0.4205020920502099 0.1118826487405749 0.4205020920502099 0.24129883059452162
+0.11866341533091268 0.4121338912133898 0.1186634153309127 0.4121338912133898 0.23774523065757872
+0.1152730320357438 0.41841004184100483 0.1152730320357438 0.4184100418410049 0.24042097974377483
+0.11866341533091268 0.41631799163179983 0.1186634153309127 0.4163179916317999 0.2394140176599018
+0.11188264874057488 0.42468619246861994 0.11188264874057487 0.42468619246862 0.24240738579821253
+0.1017114988550682 0.4476987447698752 0.10171149885506821 0.4476987447698752 0.24478216064021527
+0.10849226544540598 0.430962343096235 0.10849226544540598 0.430962343096235 0.2437408922265889
+0.1118826487405749 0.42887029288702994 0.1118826487405749 0.42887029288703 0.24335831049959109
+0.10510188215023712 0.43723849372385004 0.10510188215023712 0.43723849372385004 0.24447520845596518
+0.10849226544540602 0.43514644351464504 0.10849226544540602 0.43514644351464504 0.24437080958812696
+0.10510188215023714 0.44142259414226004 0.10510188215023715 0.44142259414226004 0.24481977859480467
+0.1051018821502371 0.44560669456067015 0.1051018821502371 0.4456066945606701 0.24506691014878243
+0.09832111555989863 0.4623430962343112 0.09832111555989863 0.4623430962343112 0.24403110723233712
+0.09832111555989803 0.466527196652722 0.09832111555989803 0.46652719665272196 0.24383753062079003
+0.10171149885506818 0.4518828451882853 0.10171149885506818 0.4518828451882853 0.24480991597250726
+0.10171149885506796 0.45606694560669564 0.10171149885506796 0.45606694560669564 0.2447806478415039
+0.10171149885506768 0.46025104602510614 0.10171149885506768 0.4602510460251061 0.24470980565134717
+0.09832111555989699 0.47071129707113357 0.09832111555989699 0.47071129707113357 0.24363826949974185
+0.09832111555989469 0.47489539748954623 0.09832111555989469 0.47489539748954623 0.24344443136145585
+0.09493073226472121 0.4811715481171616 0.09493073226472121 0.4811715481171616 0.24236261005936086
+0.09832111555988939 0.47907949790795956 0.09832111555988939 0.4790794979079596 0.24326539958827773
+0.09493073226471604 0.4853556485355692 0.09493073226471604 0.4853556485355692 0.24217710085116417
+0.09493073226471693 0.48953974895396857 0.09493073226471693 0.4895397489539686 0.2420324855756284
+0.0949307322647298 0.49372384937237856 0.0949307322647298 0.4937238493723786 0.2419335431867875
+0.270949950323335 0.25615953337281056 0.270949950323335 0.25615953337281056 0.13526212795220546
+0.27064369430703433 0.2597153525081171 0.27064369430703433 0.2597153525081171 0.13453174066517049
+0.2864097828654669 0.23306251985326512 0.286409782865467 0.23306251985326512 0.16123812042881655
+0.2750322719554065 0.24766962812970794 0.2750322719554065 0.24766962812970794 0.14181251410327966
+0.2855714447898648 0.2366607790052553 0.2855714447898648 0.2366607790052553 0.15866805156156247
+0.2782753829622251 0.24636458907756678 0.2782753829622251 0.24636458907756678 0.14621389104897056
+0.28513281373506255 0.24030165704599726 0.28513281373506255 0.24030165704599726 0.15674541631476235
+0.2814907086717297 0.24508033379408514 0.2814907086717297 0.24508033379408514 0.15064509522709224
+0.28473917670510235 0.24384682284376083 0.28473917670510235 0.24384682284376083 0.15515985389866005
+0.2746421533718479 0.25125070515484327 0.2746421533718479 0.2512507051548432 0.1405934801778548
+0.27426366285103276 0.2548348610124312 0.2742636628510327 0.2548348610124312 0.13956396886640185
+0.29274468802807907 0.2238365725621363 0.29274468802807907 0.2238365725621363 0.17413482643400832
+0.2971214663262075 0.22344813668655195 0.29712146632620756 0.22344813668655195 0.17986367448127363
+0.29061493202257715 0.22793368651450946 0.2906149320225771 0.22793368651450943 0.1691960750694777
+0.2900288704286396 0.23198245515150562 0.2900288704286396 0.23198245515150565 0.16633967185492216
+0.32426764635608646 0.18647052342575124 0.32426764635608646 0.18647052342575124 0.2343260946952556
+0.32217521135412786 0.18985829556874254 0.32217521135412786 0.18985829556874254 0.23055924850684303
+0.32008367183542413 0.1932420836420392 0.32008367183542413 0.1932420836420392 0.22653278554806677
+0.31799675245749476 0.1966202244106806 0.31799675245749476 0.1966202244106806 0.22228814950332673
+0.2991782547910116 0.22025070724823678 0.2991782547910116 0.22025070724823678 0.18438480375213537
+0.3012926682879827 0.21692404823443326 0.3012926682879827 0.21692404823443326 0.18912624351596372
+0.303401219340236 0.21355276500486664 0.303401219340236 0.2135527650048666 0.19394960322761032
+0.30549715883886935 0.21016482426413985 0.30549715883886935 0.21016482426413985 0.19879165687070902
+0.31173345423280846 0.2000069017928309 0.31173345423280846 0.2000069017928309 0.21301488650778735
+0.3075820519511344 0.206774002637497 0.30758205195113447 0.20677400263749704 0.20360771091500754
+0.30965834423672534 0.20338780254888614 0.30965834423672534 0.20338780254888614 0.20836019558106392
+0.3159185977580289 0.19999304960157568 0.31591859775802883 0.19999304960157568 0.21786968006223398
+0.3451882845188007 0.16612878146327814 0.34518828451880074 0.16612878146327814 0.2561572012187699
+0.34309623430959557 0.16951916475844708 0.34309623430959557 0.16951916475844708 0.25490101036084084
+0.34100418410039046 0.17290954805361602 0.3410041841003904 0.17290954805361602 0.2532536182610124
+0.33263598326356997 0.1796903146439539 0.33263598326356997 0.1796903146439539 0.2449185394105414
+0.33891213389118535 0.17629993134878497 0.33891213389118535 0.17629993134878497 0.2512152411273419
+0.33682008368198024 0.1796903146439539 0.3368200836819803 0.1796903146439539 0.2487932858317293
+0.3305439330543648 0.18308069793912285 0.33054393305436486 0.18308069793912285 0.24194136033962743
+0.3284516891387371 0.1864705795030026 0.32845168913873707 0.1864705795030026 0.23862958707948392
+0.3765690376568773 0.14239609839709555 0.3765690376568773 0.14239609839709555 0.25779925015492794
+0.3744769874476722 0.1457864816922645 0.37447698744767216 0.1457864816922645 0.25992054451704405
+0.3723849372384671 0.14917686498743343 0.3723849372384671 0.14917686498743343 0.2618321327576964
+0.370292887029262 0.15256724828260237 0.37029288702926205 0.15256724828260237 0.26348550166324003
+0.3682008368200569 0.15595763157777132 0.3682008368200569 0.15595763157777132 0.26483570675138357
+0.3661087866108518 0.15934801487294026 0.3661087866108517 0.15934801487294026 0.26584266668666556
+0.351464435146416 0.1627383981681092 0.351464435146416 0.1627383981681092 0.2596286174012665
+0.35564853556482623 0.1627383981681092 0.35564853556482623 0.1627383981681092 0.26207360265824503
+0.35983263598323645 0.1627383981681092 0.35983263598323645 0.1627383981681092 0.2643579259418218
+0.36401673640164667 0.1627383981681092 0.36401673640164667 0.1627383981681092 0.26647224334523173
+0.3493723849372109 0.16612878146327814 0.34937238493721084 0.16612878146327814 0.25901595583157144
+0.38284518828449265 0.1390057151019266 0.3828451882844926 0.1390057151019266 0.2552845214812877
+0.38075313807528754 0.14239609839709555 0.38075313807528754 0.14239609839709555 0.25786919491018373
+0.3870292887029029 0.1390057151019266 0.38702928870290293 0.1390057151019266 0.2548248182945118
+0.4163179916317744 0.11866341533091296 0.41631799163177435 0.11866341533091296 0.22686619065599292
+0.4142259414225693 0.1220537986260819 0.4142259414225693 0.1220537986260819 0.23046577562814655
+0.4121338912133642 0.12544418192125084 0.41213389121336425 0.12544418192125084 0.2342469843006139
+0.4100418410041591 0.12883456521641978 0.41004184100415914 0.12883456521641978 0.23818117052179133
+0.40794979079495397 0.13222494851158872 0.4079497907949539 0.13222494851158872 0.2422295119567737
+0.3912133891213131 0.1390057151019266 0.39121338912131304 0.1390057151019266 0.25412846915942194
+0.3953974895397233 0.1390057151019266 0.39539748953972337 0.1390057151019266 0.2531817429494439
+0.40167364016733864 0.13561533180675767 0.4016736401673386 0.13561533180675767 0.24811864797120572
+0.40585774058574886 0.13561533180675767 0.40585774058574886 0.13561533180675767 0.2463445375183981
+0.39958158995813353 0.1390057151019266 0.3995815899581335 0.1390057151019266 0.25196877508586674
+0.4372384937238255 0.11188264874057507 0.43723849372382556 0.11188264874057507 0.2048899330184882
+0.42259414225938974 0.11527303203574402 0.42259414225938974 0.11527303203574402 0.22012554969731138
+0.42677824267779996 0.11527303203574402 0.4267782426778 0.11527303203574402 0.21655000820029083
+0.4309623430962102 0.11527303203574402 0.4309623430962102 0.11527303203574402 0.21272893532137307
+0.4351464435146204 0.11527303203574402 0.43514644351462034 0.11527303203574402 0.20865197377755942
+0.42050209205018463 0.11866341533091296 0.4205020920501847 0.11866341533091296 0.2236991589211583
+0.4581589958158766 0.10510188215023719 0.45815899581587655 0.10510188215023719 0.17794517370205842
+0.44351464435144083 0.10849226544540613 0.4435146443514409 0.10849226544540613 0.19680936114435246
+0.44769874476985105 0.10849226544540613 0.44769874476985105 0.10849226544540613 0.19200380619314242
+0.4518828451882613 0.10849226544540613 0.4518828451882612 0.10849226544540613 0.18693820846762133
+0.4560669456066715 0.10849226544540613 0.4560669456066715 0.10849226544540613 0.18160341754395934
+0.4414225941422357 0.11188264874057507 0.44142259414223567 0.11188264874057507 0.20043795414367138
+0.46443514644349193 0.10171149885506825 0.46443514644349193 0.10171149885506825 0.16870167820570756
+0.46861924686190215 0.10171149885506825 0.4686192468619021 0.10171149885506825 0.16267835179973414
+0.47280334728031237 0.10171149885506825 0.47280334728031237 0.10171149885506825 0.15637156391419585
+0.4623430962342868 0.10510188215023719 0.4623430962342869 0.10510188215023719 0.17226857214063276
+0.4958158995815686 0.08475958237922354 0.49581589958156863 0.08475958237922354 0.11565987692246883
+0.48953974895395325 0.08814996567439248 0.48953974895395325 0.08814996567439248 0.12750393386274964
+0.49372384937236347 0.08814996567439248 0.4937238493723635 0.08814996567439248 0.11986976171351149
+0.4769874476987226 0.10171149885506825 0.47698744769872264 0.10171149885506825 0.14977248204871985
+0.48744769874474814 0.09154034896956142 0.4874476987447482 0.09154034896956142 0.13144945782596204
+0.485355648535543 0.09493073226473037 0.48535564853554297 0.09493073226473037 0.13529838891170667
+0.4832635983263379 0.09832111555989931 0.48326359832633786 0.09832111555989931 0.1390906263845434
+0.4811715481171328 0.10171149885506825 0.4811715481171328 0.10171149885506825 0.14287297091234522
+0.4999999999999788 0.08475958237922354 0.49999999999997874 0.08475958237922354 0.10755695561949731
+0.504184100418389 0.08475958237922354 0.504184100418389 0.08475958237922354 0.09911364445853861
+0.5104602510460043 0.0813691990840546 0.5104602510460045 0.0813691990840546 0.08553379577101328
+0.5083682008367992 0.08475958237922354 0.5083682008367992 0.08475958237922354 0.0903241123665056
+0.5146443514644146 0.0813691990840546 0.5146443514644146 0.0813691990840546 0.07625322103827058
+0.5209205020920299 0.07797881578888566 0.5209205020920299 0.07797881578888566 0.06142102385017023
+0.5188284518828248 0.0813691990840546 0.5188284518828247 0.0813691990840546 0.06662331388187202
+0.5271966527196452 0.07458843249371672 0.5271966527196453 0.07458843249371672 0.04591030984430755
+0.5251046025104401 0.07797881578888566 0.5251046025104401 0.07797881578888566 0.05132271322896587
+0.5648535564853372 0.03390383295168942 0.5648535564853372 0.03390383295168942 0.044882568645437465
+0.5585774058577219 0.03729421624685836 0.5585774058577219 0.03729421624685836 0.03144619298771675
+0.5627615062761321 0.03729421624685836 0.5627615062761321 0.03729421624685836 0.04109521669381005
+0.5564853556485168 0.0406845995420273 0.5564853556485168 0.0406845995420273 0.027289042755679453
+0.5543933054393116 0.04407498283719624 0.5543933054393116 0.04407498283719624 0.022957117545190392
+0.5523012552301065 0.04746536613236518 0.5523012552301064 0.04746536613236518 0.018448368051887324
+0.5460251046024912 0.050855749427534125 0.5460251046024912 0.050855749427534125 0.0054689259225906015
+0.5439330543932861 0.054246132722703067 0.5439330543932862 0.054246132722703067 0.00515719871915618
+0.541841004184081 0.05763651601787201 0.541841004184081 0.05763651601787201 0.00880692861773643
+0.5397489539748759 0.06102689931304095 0.5397489539748759 0.06102689931304095 0.013677750448642995
+0.5376569037656708 0.06441728260820989 0.5376569037656708 0.06441728260820989 0.01892961787024029
+0.5355648535564657 0.06780766590337883 0.5355648535564655 0.06780766590337883 0.024353483625168898
+0.5334728033472605 0.07119804919854777 0.5334728033472605 0.07119804919854777 0.029858916019863874
+0.5313807531380554 0.07458843249371672 0.5313807531380554 0.07458843249371672 0.03538697845379007
+0.5502092050209014 0.050855749427534125 0.5502092050209014 0.050855749427534125 0.013783896729075942
+0.5753138075313627 0.02373268306618259 0.5753138075313627 0.02373268306618259 0.06436832564138091
+0.579497907949773 0.02373268306618259 0.579497907949773 0.02373268306618259 0.07308344793256631
+0.5732217573221576 0.027123066361351533 0.5732217573221576 0.027123066361351533 0.06109154969983683
+0.5711297071129525 0.030513449656520475 0.5711297071129525 0.030513449656520475 0.05777224573204115
+0.5690376569037474 0.03390383295168942 0.5690376569037473 0.03390383295168942 0.05436353991968267
+0.5941422594142087 0.006780766590337883 0.5941422594142088 0.006780766590337883 0.09709359024909191
+0.5920502092050036 0.010171149885506825 0.5920502092050036 0.010171149885506825 0.09372241005301231
+0.5899581589957985 0.013561533180675767 0.5899581589957985 0.013561533180675767 0.09051253899854345
+0.5878661087865934 0.01695191647584471 0.5878661087865934 0.01695191647584471 0.08745622847821975
+0.5857740585773883 0.02034229977101365 0.5857740585773882 0.02034229977101365 0.08453007038829384
+0.5836820083681832 0.02373268306618259 0.5836820083681832 0.02373268306618259 0.08169713127565546
+0.006780766590337709 0.5983263598326358 0.006780766590337709 0.5983263598326358 0.20618958547087887
+0.01017114988550656 0.5962343096234308 0.01017114988550656 0.5962343096234308 0.20766473255777831
+0.013561533180675408 0.5941422594142258 0.013561533180675408 0.5941422594142258 0.20929462782854544
+0.016951916475844264 0.5920502092050208 0.016951916475844264 0.5920502092050208 0.21107936867031873
+0.02034229977101312 0.5899581589958158 0.02034229977101312 0.5899581589958158 0.21301162177483565
+0.02373268306618197 0.5836820083682008 0.02373268306618197 0.5836820083682008 0.21677746002286938
+0.027123066361350822 0.5815899581589958 0.027123066361350822 0.5815899581589958 0.21885316873507432
+0.03729421624685738 0.5669456066945608 0.03729421624685738 0.5669456066945608 0.22742599627884205
+0.0440749828371951 0.5585774058577408 0.0440749828371951 0.5585774058577408 0.23170787588517225
+0.04746536613236394 0.5564853556485359 0.04746536613236394 0.5564853556485359 0.23332225289224717
+0.05424613272270165 0.5481171548117159 0.054246132722701644 0.5481171548117159 0.23619732579280525
+0.05763651601787049 0.5460251046025109 0.05763651601787049 0.5460251046025109 0.23728146642589334
+0.06102689931303934 0.5439330543933059 0.06102689931303934 0.5439330543933059 0.23821071759798126
+0.06441728260820821 0.5376569037656909 0.06441728260820821 0.5376569037656909 0.23869438028467302
+0.06780766590337707 0.5355648535564859 0.06780766590337707 0.5355648535564859 0.23927113394869035
+0.07119804919854598 0.533472803347281 0.07119804919854598 0.533472803347281 0.23973434222761605
+0.06441728260820821 0.5418410041841009 0.06441728260820821 0.5418410041841009 0.2389862764761659
+0.05085574942753279 0.5543933054393309 0.05085574942753279 0.5543933054393309 0.23481334039963545
+0.05424613272270165 0.5523012552301259 0.054246132722701644 0.5523012552301259 0.23616085291924613
+0.040684599542026224 0.5648535564853558 0.040684599542026224 0.5648535564853558 0.2293397580122721
+0.0440749828371951 0.5627615062761508 0.0440749828371951 0.5627615062761508 0.23118513483790457
+0.030513449656519673 0.5753138075313808 0.030513449656519673 0.5753138075313808 0.22234053278910113
+0.030513449656519673 0.5794979079497908 0.030513449656519673 0.5794979079497908 0.221005127028525
+0.033903832951688535 0.5732217573221758 0.033903832951688535 0.5732217573221758 0.22441561477454816
+0.03729421624685738 0.5711297071129708 0.03729421624685738 0.5711297071129708 0.22649424155649814
+0.02373268306618197 0.5878661087866108 0.02373268306618197 0.5878661087866108 0.21507680286376782
+0.08475958237921355 0.512552301255233 0.08475958237921355 0.512552301255233 0.24013234894918786
+0.08475958237921716 0.5167364016736343 0.08475958237921716 0.5167364016736343 0.24037040922508116
+0.08814996567438037 0.5104602510460358 0.08814996567438037 0.5104602510460358 0.2406144727089111
+0.09154034896954966 0.5083682008368425 0.09154034896954966 0.5083682008368425 0.24120500610802595
+0.09493073226474029 0.49790794979080216 0.09493073226474029 0.49790794979080216 0.24188342914283814
+0.09493073226473851 0.502092050209234 0.09493073226473851 0.502092050209234 0.2418837123553967
+0.09493073226472316 0.5062761506276506 0.09493073226472316 0.5062761506276506 0.2419343950929008
+0.07458843249371545 0.5271966527196655 0.07458843249371545 0.5271966527196655 0.23971147002052232
+0.07797881578888474 0.5251046025104598 0.07797881578888476 0.5251046025104599 0.2400289600410502
+0.08136919908405381 0.5230125523012528 0.08136919908405381 0.5230125523012528 0.24033397981814356
+0.08475958237922206 0.5209205020920445 0.08475958237922206 0.5209205020920445 0.24066311566307919
+0.07458843249371501 0.5313807531380761 0.07458843249371501 0.531380753138076 0.24010727699833487
+0.2703715141817307 0.2632140209610956 0.2703715141817307 0.2632140209610956 0.1339639479735861
+0.2457215518277911 0.27907061386834414 0.2457215518277911 0.27907061386834414 0.10811750053104939
+0.2700696521739454 0.26662351062450423 0.2700696521739454 0.26662351062450423 0.13343941603648013
+0.267472388058887 0.26815286709094477 0.267472388058887 0.26815286709094477 0.13029374939901964
+0.2643474226499346 0.2696120410760459 0.26434742264993455 0.2696120410760459 0.12659343723616012
+0.26120070313923677 0.271153647476261 0.26120070313923677 0.271153647476261 0.12300330539753306
+0.24873403635778982 0.2774914405979184 0.24873403635778982 0.27749144059791847 0.11056449270159056
+0.25175535651006553 0.2759059596743999 0.2517553565100656 0.27590595967439985 0.11326446090003668
+0.25803595474884145 0.272723954033714 0.2580359547488414 0.272723954033714 0.1195506346105815
+0.25488036663898206 0.2743085802382462 0.25488036663898206 0.2743085802382463 0.11628939380618915
+0.22698973372197093 0.2949527369292495 0.2269897337219709 0.2949527369292495 0.10203565819115092
+0.23033066212616823 0.2922277951493652 0.23033066212616823 0.2922277951493652 0.10194630109173382
+0.2335372829998319 0.2899726802998629 0.2335372829998319 0.28997268029986284 0.10249617683979596
+0.23666538734799394 0.2878977438339608 0.23666538734799394 0.2878977438339608 0.10349859095125084
+0.2397302814538771 0.2860376316396623 0.2397302814538771 0.2860376316396623 0.10490942610357772
+0.2427386756234835 0.2843331266680519 0.2427386756234835 0.2843331266680518 0.1066525758816705
+0.24570751568165303 0.2826897073018299 0.24570751568165303 0.2826897073018299 0.10866973041155382
+0.2000268093976856 0.31590628063158005 0.2000268093976856 0.31590628063158005 0.11981039926325417
+0.2034139896422182 0.3138175562204968 0.2034139896422182 0.3138175562204968 0.11664502333346384
+0.20679814129542917 0.3117283744575859 0.20679814129542917 0.3117283744575859 0.11373455770767173
+0.21015015774160353 0.3054489118334504 0.21015015774160353 0.3054489118334504 0.10811790324874514
+0.21349868079651255 0.3033684933642266 0.21349868079651255 0.3033684933642266 0.10606541806500004
+0.2101674284830358 0.30963779653679474 0.2101674284830358 0.30963779653679474 0.11112601327156446
+0.22351986767390727 0.296884449256279 0.22351986767390727 0.296884449256279 0.10220821636892304
+0.22025032067431702 0.29911295716241904 0.22025032067431702 0.2991129571624191 0.10310688119440269
+0.21683571291631024 0.3012625062808659 0.21683571291631024 0.301262506280866 0.10438761197467816
+0.17969031464545082 0.33263598325496235 0.17969031464545082 0.33263598325496235 0.14624030098104693
+0.18308069794140028 0.33054393302915774 0.18308069794140028 0.33054393302915774 0.14230315749472813
+0.186470885028622 0.32845229676794435 0.186470885028622 0.32845229676794435 0.1383861619845632
+0.18986061030722642 0.32636129084828075 0.18986061030722642 0.32636129084828075 0.13451715743432624
+0.19324978815179525 0.3242708295478965 0.19324978815179525 0.3242708295478965 0.13072768150060132
+0.19663754134031772 0.3221806339394916 0.19663754134031772 0.32218063393949153 0.1270535408990422
+0.20002227872505216 0.3200921976722444 0.20002227872505216 0.3200921976722444 0.12353608468207877
+0.16273839816806882 0.351464435146349 0.16273839816806882 0.351464435146349 0.17484530929162492
+0.16612878146313437 0.3493723849371406 0.16612878146313437 0.3493723849371406 0.17105174796968933
+0.16951916475835938 0.3430962343106417 0.16951916475835938 0.3430962343106417 0.16257513421198808
+0.1729095480541296 0.34100418410221134 0.1729095480541296 0.34100418410221134 0.15866124319242572
+0.16951916475812376 0.3472803347281286 0.16951916475812376 0.3472803347281286 0.16718228452438558
+0.17629993135062838 0.33891213389642805 0.17629993135062838 0.33891213389642805 0.15470015543503415
+0.17969031464692045 0.33682008368675614 0.17969031464692045 0.33682008368675614 0.1507069053018787
+0.14917686498743263 0.36820083682008425 0.14917686498743263 0.36820083682008425 0.19789265029464218
+0.15256724828260135 0.36610878661087987 0.15256724828260135 0.36610878661087987 0.19455379600651815
+0.15595763157777495 0.35983263598326637 0.15595763157777495 0.35983263598326637 0.18669901536764308
+0.15595763157777048 0.3640167364016768 0.15595763157777046 0.3640167364016768 0.19111013109769234
+0.1593480148729509 0.35774058577405327 0.1593480148729509 0.35774058577405327 0.18310246786806264
+0.16273839816812707 0.3556485355648165 0.16273839816812707 0.3556485355648165 0.17941214244812767
+0.13222494851158828 0.3870292887029294 0.13222494851158828 0.3870292887029294 0.22001868601790672
+0.13222494851158828 0.39121338912133946 0.13222494851158828 0.39121338912133946 0.22319824578005273
+0.13561533180675717 0.38493723849372435 0.1356153318067572 0.38493723849372435 0.21746268306666547
+0.13900571510192605 0.3828451882845193 0.13900571510192605 0.38284518828451924 0.2147879701404498
+0.142396098397095 0.3765690376569043 0.142396098397095 0.37656903765690425 0.20821146608584898
+0.142396098397095 0.38075313807531436 0.142396098397095 0.38075313807531436 0.2119944456909388
+0.14578648169226388 0.3744769874476992 0.14578648169226385 0.3744769874476992 0.2051816544041639
+0.14917686498743274 0.37238493723849414 0.14917686498743274 0.37238493723849414 0.20203946817046248
+0.12205379862608161 0.4058577405857747 0.12205379862608161 0.4058577405857747 0.23436115131217158
+0.12544418192125054 0.4037656903765697 0.12544418192125054 0.4037656903765697 0.23270018129099077
+0.1288345652164194 0.39748953974895457 0.12883456521641937 0.39748953974895457 0.22828905155713805
+0.13222494851158828 0.39539748953974957 0.13222494851158828 0.39539748953974957 0.2261812469986326
+0.1288345652164194 0.4016736401673646 0.12883456521641937 0.4016736401673646 0.23090647228565062
+0.12205379862608158 0.4100418410041848 0.12205379862608158 0.4100418410041848 0.23641051288622217
+0.1152730320357438 0.4225941422594149 0.1152730320357438 0.4225941422594149 0.24172088293364302
+0.12205379862608158 0.41422594142259483 0.12205379862608158 0.4142259414225949 0.23827804580069636
+0.11866341533091268 0.4205020920502099 0.1186634153309127 0.4205020920502099 0.24091265377983936
+0.12205379862608157 0.4184100418410049 0.12205379862608157 0.4184100418410049 0.23998104725200228
+0.1152730320357438 0.42677824267782494 0.1152730320357438 0.426778242677825 0.24286516784186937
+0.10510188215023701 0.4497907949790803 0.10510188215023701 0.4497907949790803 0.2452342667657227
+0.1118826487405749 0.43305439330544 0.1118826487405749 0.43305439330544 0.24417074442771589
+0.1152730320357438 0.430962343096235 0.1152730320357438 0.430962343096235 0.24387213057107668
+0.10849226544540602 0.4393305439330551 0.10849226544540602 0.4393305439330551 0.24488171683431473
+0.11188264874057491 0.43723849372385004 0.1118826487405749 0.43723849372385004 0.24486298862806777
+0.10849226544540602 0.4435146443514651 0.10849226544540602 0.4435146443514651 0.24529168737612536
+0.10849226544540591 0.44769874476987526 0.10849226544540591 0.4476987447698752 0.24561737556300112
+0.1017114988550667 0.4644351464435171 0.1017114988550667 0.4644351464435171 0.24461110560371982
+0.10171149885506559 0.4686192468619288 0.10171149885506559 0.46861924686192874 0.24449650029610057
+0.10510188215023684 0.45397489539749064 0.10510188215023684 0.45397489539749064 0.2453379580700175
+0.10510188215023653 0.45815899581590114 0.10510188215023653 0.4581589958159011 0.24539238869342625
+0.10510188215023548 0.46234309623431225 0.10510188215023548 0.46234309623431225 0.2454101800893527
+0.10171149885506336 0.4728033472803419 0.10171149885506336 0.47280334728034196 0.2443762037204014
+0.10171149885505791 0.47698744769875717 0.10171149885505791 0.47698744769875717 0.2442587618873715
+0.0983211155598805 0.48326359832637017 0.0983211155598805 0.48326359832637017 0.2431088997195692
+0.10171149885504632 0.4811715481171724 0.10171149885504631 0.4811715481171724 0.24415115710420035
+0.09832111555987222 0.48744769874477084 0.09832111555987222 0.48744769874477084 0.2429810832710033
+0.09832111555988565 0.4916317991631692 0.09832111555988565 0.4916317991631692 0.24288661697770197
+0.09832111555990562 0.4958158995815852 0.09832111555990562 0.4958158995815852 0.2428287660012982
+0.27389693754867195 0.25840281892567074 0.27389693754867195 0.2584028189256707 0.13870055350704893
+0.27354565763786787 0.26192310797442925 0.27354565763786787 0.26192310797442925 0.13797718154756858
+0.2892131964551073 0.23556349261162965 0.2892131964551073 0.23556349261162965 0.16374726817763022
+0.27793998437765477 0.24994244105829314 0.2779399843776548 0.24994244105829314 0.14500871198522905
+0.28854699946479684 0.23914059980481575 0.28854699946479684 0.23914059980481575 0.16155203123033887
+0.28119601790342125 0.24864911745979426 0.28119601790342125 0.24864911745979426 0.14943710668900323
+0.2880287829734765 0.24267639131460597 0.2880287829734765 0.24267639131460597 0.1597539433546669
+0.28441204280782995 0.24739887330162702 0.2844120428078299 0.24739887330162702 0.15386014031958573
+0.28760830137596777 0.2461501650241534 0.28760830137596777 0.2461501650241534 0.15829352253212503
+0.2775988521459846 0.25352150535857715 0.2775988521459846 0.25352150535857715 0.14397264387388223
+0.2772123312608876 0.2571004692610475 0.2772123312608876 0.2571004692610475 0.14302746174121353
+0.2950764345091555 0.22703765252861305 0.2950764345091555 0.22703765252861305 0.17527165032479108
+0.29925021465610985 0.22651886428539036 0.29925021465610985 0.22651886428539036 0.18085371962081262
+0.3012830549556412 0.22359528334994208 0.30128305495564117 0.22359528334994208 0.18508064054107998
+0.2936511401838937 0.23078655911914703 0.2936511401838937 0.23078655911914706 0.17157960965711483
+0.2927529023354163 0.23447403851655443 0.2927529023354163 0.23447403851655443 0.1687595342234585
+0.3263589151986531 0.18985844075445826 0.3263589151986532 0.18985844075445826 0.23501038465379306
+0.32426654208189903 0.19324139729647605 0.32426654208189903 0.19324139729647605 0.23111833100207627
+0.322177392213056 0.19661711502769377 0.322177392213056 0.19661711502769377 0.2269946241039821
+0.3200979388061373 0.1999834059216138 0.3200979388061373 0.1999834059216138 0.22268833041388958
+0.30337839844492337 0.2203054947657299 0.30337839844492337 0.2203054947657299 0.18962814953823434
+0.305515773370488 0.21694880649598314 0.305515773370488 0.21694880649598317 0.19437129898772995
+0.30762332013402055 0.21355254981099625 0.30762332013402055 0.21355254981099625 0.1991526104482334
+0.3097096231277221 0.21013561963832555 0.3097096231277221 0.21013561963832553 0.20392962499016
+0.3138498777324926 0.2033639726539573 0.3138498777324927 0.2033639726539573 0.21331828228307362
+0.3117881894879723 0.20674897886291177 0.3117881894879723 0.20674897886291177 0.2086632659204379
+0.31802957282470085 0.20333943417984515 0.31802957282470085 0.20333943417984515 0.21824454760331616
+0.3472803347280058 0.16951916475844708 0.3472803347280058 0.16951916475844708 0.25800838620686
+0.3451882845188007 0.17290954805361602 0.34518828451880074 0.17290954805361602 0.25659779926574094
+0.34309623430959557 0.17629993134878497 0.34309623430959557 0.17629993134878497 0.2547835315497214
+0.33472803347277513 0.18308069793912285 0.33472803347277513 0.18308069793912285 0.24600212197208868
+0.34100418410039046 0.1796903146439539 0.3410041841003904 0.1796903146439539 0.2525723210872724
+0.33891213389118535 0.18308069793912285 0.33891213389118535 0.18308069793912285 0.24997809052636466
+0.33263581594872177 0.18647074264096633 0.33263581594872177 0.18647074264096633 0.24286261529049957
+0.3305429939744672 0.18985915005851614 0.3305429939744671 0.18985915005851614 0.23940177702789914
+0.37866108786608244 0.1457864816922645 0.3786610878660825 0.1457864816922645 0.260299937418584
+0.3765690376568773 0.14917686498743343 0.3765690376568773 0.14917686498743343 0.26252409674111205
+0.3744769874476722 0.15256724828260237 0.37447698744767216 0.15256724828260237 0.26449105876725615
+0.3723849372384671 0.15595763157777132 0.3723849372384671 0.15595763157777132 0.26615378116878546
+0.370292887029262 0.15934801487294026 0.37029288702926205 0.15934801487294026 0.2674701284862581
+0.3682008368200569 0.1627383981681092 0.3682008368200569 0.1627383981681092 0.2684039888857657
+0.3535564853556211 0.16612878146327814 0.3535564853556212 0.16612878146327814 0.2617305408180252
+0.35774058577403134 0.16612878146327814 0.3577405857740313 0.16612878146327814 0.264294202161159
+0.36192468619244156 0.16612878146327814 0.3619246861924416 0.16612878146327814 0.2666970983887606
+0.3661087866108518 0.16612878146327814 0.3661087866108517 0.16612878146327814 0.26892616349993664
+0.351464435146416 0.16951916475844708 0.351464435146416 0.16951916475844708 0.2609821794994049
+0.38493723849369776 0.14239609839709555 0.38493723849369776 0.14239609839709555 0.2577140371877938
+0.38284518828449265 0.1457864816922645 0.3828451882844926 0.1457864816922645 0.2604557154776161
+0.389121338912108 0.14239609839709555 0.389121338912108 0.14239609839709555 0.25732109251101004
+0.4184100418409795 0.1220537986260819 0.41841004184097946 0.1220537986260819 0.2274863043690993
+0.4163179916317744 0.12544418192125084 0.41631799163177435 0.12544418192125084 0.23147070651746507
+0.4142259414225693 0.12883456521641978 0.4142259414225693 0.12883456521641978 0.23562442785046175
+0.4121338912133642 0.13222494851158872 0.41213389121336425 0.13222494851158872 0.23990892380073695
+0.4100418410041591 0.13561533180675767 0.41004184100415914 0.13561533180675767 0.2442765627434387
+0.3933054393305182 0.14239609839709555 0.3933054393305182 0.14239609839709555 0.2566751420259808
+0.3974895397489284 0.14239609839709555 0.3974895397489284 0.14239609839709555 0.2557587716412986
+0.40376569037654375 0.1390057151019266 0.4037656903765438 0.1390057151019266 0.25047197457064413
+0.40794979079495397 0.1390057151019266 0.4079497907949539 0.1390057151019266 0.24867248710156534
+0.40167364016733864 0.14239609839709555 0.4016736401673386 0.14239609839709555 0.2545527861614159
+0.4393305439330306 0.11527303203574402 0.4393305439330306 0.11527303203574402 0.20430880512017913
+0.42468619246859485 0.11866341533091296 0.4246861924685948 0.11866341533091296 0.2202840188524187
+0.42887029288700507 0.11866341533091296 0.4288702928870051 0.11866341533091296 0.21660975808209074
+0.4330543933054153 0.11866341533091296 0.43305439330541523 0.11866341533091296 0.21266520730925054
+0.4372384937238255 0.11866341533091296 0.43723849372382556 0.11866341533091296 0.20843940718687873
+0.42259414225938974 0.1220537986260819 0.42259414225938974 0.1220537986260819 0.2242455970955495
+0.4602510460250817 0.10849226544540613 0.46025104602508177 0.10849226544540613 0.17599085711851922
+0.44560669456064594 0.11188264874057507 0.445606694560646 0.11188264874057507 0.19572360925821233
+0.44979079497905616 0.11188264874057507 0.4497907949790561 0.11188264874057507 0.1907375573057983
+0.4539748953974664 0.11188264874057507 0.45397489539746644 0.11188264874057507 0.18547108606738713
+0.4581589958158766 0.11188264874057507 0.45815899581587655 0.11188264874057507 0.17991629244514432
+0.44351464435144083 0.11527303203574402 0.4435146443514409 0.11527303203574402 0.19968946322512385
+0.46652719665269704 0.10510188215023719 0.466527196652697 0.10510188215023719 0.16631335943369677
+0.47071129707110726 0.10510188215023719 0.4707112970711073 0.10510188215023719 0.16007129453338564
+0.4748953974895175 0.10510188215023719 0.4748953974895174 0.10510188215023719 0.1535348567347439
+0.46443514644349193 0.10849226544540613 0.46443514644349193 0.10849226544540613 0.1700926638550542
+0.4979079497907737 0.08814996567439248 0.4979079497907737 0.08814996567439248 0.1119055895579444
+0.49163179916315836 0.09154034896956142 0.4916317991631583 0.09154034896956142 0.12394320216059247
+0.4958158995815686 0.09154034896956142 0.49581589958156863 0.09154034896956142 0.1161106765616828
+0.4790794979079277 0.10510188215023719 0.47907949790792775 0.10510188215023719 0.14669732728540294
+0.48953974895395325 0.09493073226473037 0.48953974895395325 0.09493073226473037 0.127908054705392
+0.48744769874474814 0.09832111555989931 0.4874476987447482 0.09832111555989931 0.131800835537078
+0.485355648535543 0.10171149885506825 0.48535564853554297 0.10171149885506825 0.13566570042005835
+0.4832635983263379 0.10510188215023719 0.48326359832633786 0.10510188215023719 0.13955286668296976
+0.5020920502091839 0.08814996567439248 0.5020920502091838 0.08814996567439248 0.10360348245326086
+0.5062761506275941 0.08814996567439248 0.5062761506275941 0.08814996567439248 0.09495720112710021
+0.5125523012552095 0.08475958237922354 0.5125523012552095 0.08475958237922354 0.08118466385798728
+0.5104602510460043 0.08814996567439248 0.5104602510460045 0.08814996567439248 0.08596252272380071
+0.5167364016736197 0.08475958237922354 0.5167364016736197 0.08475958237922354 0.07169411422922979
+0.523012552301235 0.0813691990840546 0.523012552301235 0.0813691990840546 0.0566467862493536
+0.5209205020920299 0.08475958237922354 0.5209205020920299 0.08475958237922354 0.06185432718557813
+0.5292887029288503 0.07797881578888566 0.5292887029288503 0.07797881578888566 0.040890700800672586
+0.5271966527196452 0.0813691990840546 0.5271966527196453 0.0813691990840546 0.04633007579025702
+0.5669456066945423 0.03729421624685836 0.5669456066945423 0.03729421624685836 0.050821006343527965
+0.560669456066927 0.0406845995420273 0.5606694560669271 0.0406845995420273 0.037138227431187644
+0.5648535564853372 0.0406845995420273 0.5648535564853372 0.0406845995420273 0.04710540180386135
+0.5585774058577219 0.04407498283719624 0.5585774058577219 0.04407498283719624 0.032986064112440934
+0.5564853556485168 0.04746536613236518 0.5564853556485168 0.04746536613236518 0.028622053002704956
+0.5543933054393116 0.050855749427534125 0.5543933054393116 0.050855749427534125 0.024039345126038027
+0.5481171548116963 0.054246132722703067 0.5481171548116963 0.054246132722703067 0.009047920131048201
+0.5460251046024912 0.05763651601787201 0.5460251046024912 0.05763651601787201 0.004679256195183095
+0.5439330543932861 0.06102689931304095 0.5439330543932862 0.06102689931304095 0.0039557461449503915
+0.541841004184081 0.06441728260820989 0.541841004184081 0.06441728260820989 0.008237650172880315
+0.5397489539748759 0.06780766590337883 0.5397489539748759 0.06780766590337883 0.013492817553472978
+0.5376569037656708 0.07119804919854777 0.5376569037656708 0.07119804919854777 0.01898048611886417
+0.5355648535564657 0.07458843249371672 0.5355648535564655 0.07458843249371672 0.024551762073344943
+0.5334728033472605 0.07797881578888566 0.5334728033472605 0.07797881578888566 0.030136575587185386
+0.5523012552301065 0.054246132722703067 0.5523012552301064 0.054246132722703067 0.01924187698377799
+0.5774058577405679 0.027123066361351533 0.577405857740568 0.027123066361351533 0.07004407704676091
+0.5815899581589781 0.027123066361351533 0.5815899581589781 0.027123066361351533 0.07891006062286386
+0.5753138075313627 0.030513449656520475 0.5753138075313627 0.030513449656520475 0.06697832242516448
+0.5732217573221576 0.03390383295168942 0.5732217573221576 0.03390383295168942 0.06383431627019835
+0.5711297071129525 0.03729421624685836 0.5711297071129525 0.03729421624685836 0.06056199497547895
+0.598326359832619 0.006780766590337883 0.598326359832619 0.006780766590337883 0.10463762032337127
+0.5962343096234138 0.010171149885506825 0.5962343096234138 0.010171149885506825 0.10140349996140958
+0.5941422594142087 0.013561533180675767 0.5941422594142088 0.013561533180675767 0.09835483659507016
+0.5920502092050036 0.01695191647584471 0.5920502092050036 0.01695191647584471 0.09548606485205517
+0.5899581589957985 0.02034229977101365 0.5899581589957985 0.02034229977101365 0.09277449208208283
+0.5878661087865934 0.02373268306618259 0.5878661087865934 0.02373268306618259 0.09018235629472295
+0.5857740585773883 0.027123066361351533 0.5857740585773882 0.027123066361351533 0.08765998595130714
+0.006780766590337709 0.6025104602510458 0.006780766590337709 0.6025104602510458 0.20398433726158158
+0.01017114988550656 0.6004184100418408 0.01017114988550656 0.6004184100418408 0.20551926112638338
+0.013561533180675408 0.5983263598326358 0.013561533180675408 0.5983263598326358 0.20721438749864154
+0.016951916475844264 0.5962343096234308 0.016951916475844264 0.5962343096234308 0.20907054021163898
+0.02034229977101312 0.5941422594142258 0.02034229977101312 0.5941422594142258 0.21108115706743133
+0.02373268306618197 0.5920502092050208 0.02373268306618197 0.5920502092050208 0.21323237268221665
+0.027123066361350822 0.5857740585774058 0.027123066361350822 0.5857740585774058 0.2172536234327556
+0.030513449656519673 0.5836820083682008 0.030513449656519673 0.5836820083682008 0.21951496693559513
+0.040684599542026224 0.5690376569037658 0.040684599542026224 0.5690376569037658 0.22854150618223043
+0.04746536613236394 0.5606694560669458 0.04746536613236394 0.5606694560669458 0.23293138029896135
+0.05085574942753279 0.5585774058577408 0.05085574942753279 0.5585774058577408 0.23455122691557737
+0.05763651601787049 0.5502092050209209 0.05763651601787049 0.5502092050209209 0.23735029645339653
+0.06102689931303934 0.5481171548117159 0.06102689931303934 0.5481171548117159 0.2383737608955561
+0.06441728260820821 0.5460251046025109 0.06441728260820821 0.5460251046025109 0.23923049530783877
+0.06780766590337706 0.5397489539748959 0.06780766590337706 0.5397489539748959 0.2396165949992801
+0.0711980491985459 0.5376569037656909 0.0711980491985459 0.5376569037656909 0.24011738587639211
+0.07458843249371476 0.535564853556486 0.07458843249371476 0.535564853556486 0.24051135688650804
+0.06780766590337706 0.5439330543933059 0.06780766590337706 0.5439330543933059 0.23992724700899234
+0.05424613272270165 0.5564853556485359 0.054246132722701644 0.5564853556485359 0.23602210554161784
+0.05763651601787049 0.5543933054393309 0.05763651601787049 0.5543933054393309 0.23732719877960048
+0.0440749828371951 0.5669456066945608 0.0440749828371951 0.5669456066945608 0.23052287849712538
+0.04746536613236394 0.5648535564853558 0.04746536613236394 0.5648535564853558 0.2324056912427741
+0.033903832951688535 0.5774058577405858 0.033903832951688535 0.5774058577405858 0.22320174846585625
+0.033903832951688535 0.5815899581589958 0.033903832951688535 0.5815899581589958 0.22182903705722748
+0.03729421624685738 0.5753138075313808 0.03729421624685738 0.5753138075313808 0.22540846273124734
+0.040684599542026224 0.5732217573221758 0.040684599542026224 0.5732217573221758 0.22758921023545028
+0.027123066361350822 0.5899581589958158 0.027123066361350822 0.5899581589958158 0.21550347332967248
+0.08814996567438162 0.5146443514644307 0.08814996567438162 0.5146443514644307 0.24080731335819952
+0.08814996567438858 0.5188284518828354 0.08814996567438858 0.5188284518828353 0.2410548096739982
+0.09154034896954528 0.5125523012552323 0.09154034896954528 0.5125523012552323 0.2413505266781746
+0.09493073226471026 0.5104602510460411 0.09493073226471026 0.5104602510460411 0.24203391293357757
+0.0983211155599144 0.5000000000000221 0.0983211155599144 0.5000000000000221 0.24280946115774252
+0.09832111555990186 0.5041841004184561 0.09832111555990186 0.5041841004184561 0.24282934248002866
+0.09832111555987967 0.5083682008368565 0.09832111555987967 0.5083682008368565 0.24288777426211192
+0.07797881578888427 0.5292887029288712 0.07797881578888427 0.5292887029288712 0.24041914810153764
+0.08136919908405384 0.5271966527196659 0.08136919908405384 0.5271966527196659 0.24070420584356067
+0.08475958237922365 0.5251046025104593 0.08475958237922365 0.5251046025104592 0.24100056790038846
+0.08814996567439322 0.5230125523012507 0.08814996567439322 0.5230125523012507 0.24134879132700168
+0.07797881578888369 0.5334728033472812 0.07797881578888367 0.5334728033472812 0.2408276606500417
+0.2732188416464394 0.26533606085687034 0.2732188416464394 0.2653360608568703 0.1373761858798136
+0.24870573743924976 0.28105641265313475 0.24870573743924976 0.28105641265313475 0.11098748875311877
+0.27271096626255253 0.26817961322413975 0.27271096626255253 0.26817961322413975 0.13661201613361235
+0.27060936020959825 0.2699059957326105 0.27060936020959825 0.2699059957326105 0.13403396720564587
+0.2675202618927525 0.27157732539729634 0.2675202618927525 0.27157732539729634 0.13031307103731035
+0.2643547806124212 0.27317749135317243 0.2643547806124212 0.27317749135317243 0.12662588338973071
+0.2611614503959344 0.274763941553269 0.26116145039593436 0.274763941553269 0.12305479003466369
+0.25171926365814473 0.279465850689417 0.25171926365814473 0.279465850689417 0.11357902344296571
+0.2548006463591134 0.27790263362203466 0.2548006463591134 0.27790263362203466 0.11646755660472304
+0.2579614620873094 0.27634444514539164 0.2579614620873094 0.27634444514539164 0.11964597305308684
+0.22617148845587942 0.2982942212594999 0.22617148845587942 0.2982942212594999 0.10331372691121551
+0.22864131951573025 0.2978782027633849 0.22864131951573025 0.2978782027633849 0.10370398165638992
+0.23072865799293102 0.2958614446469472 0.23072865799293105 0.2958614446469472 0.10352166372241105
+0.23371800331019868 0.29374425751717875 0.23371800331019868 0.29374425751717875 0.10387445495120529
+0.23681717851145856 0.29170016921969083 0.23681717851145856 0.29170016921969083 0.10470772083390663
+0.2399043405010212 0.28979104626673635 0.2399043405010212 0.28979104626673635 0.1059699610339291
+0.242931890819093 0.28800187350383866 0.24293189081909297 0.2880018735038386 0.10757935621714403
+0.24584839960538182 0.28633523085058743 0.24584839960538182 0.2863352308505874 0.10944175426802306
+0.24870153462412403 0.2846372484850623 0.24870153462412406 0.2846372484850623 0.11150119699465373
+0.2034084135279071 0.31800481019541227 0.2034084135279071 0.31800481019541227 0.12021485051477136
+0.20680204261982524 0.315917895095507 0.20680204261982524 0.315917895095507 0.11713162307105889
+0.21019676036546145 0.31382928014612815 0.21019676036546145 0.31382928014612815 0.11433289599019163
+0.21350189188865776 0.307539531290863 0.21350189188865776 0.30753953129086303 0.10886190552386078
+0.2168294689883705 0.3055255227679811 0.2168294689883705 0.3055255227679811 0.10702783574086282
+0.21356864639335682 0.311747667180427 0.21356864639335682 0.31174766718042696 0.11187049737609746
+0.22393371879275914 0.30105269906622467 0.2239337187927592 0.3010526990662247 0.10443254944322165
+0.2202163495809365 0.30346562487863327 0.22021634958093647 0.3034656248786333 0.10558848224438087
+0.1830806979477614 0.33472803347185554 0.1830806979477614 0.3347280334718556 0.14670027902001012
+0.18647063996983573 0.3326365894050986 0.18647063996983573 0.3326365894050986 0.14270386324563286
+0.18985967858838057 0.33054603810677047 0.18985967858838057 0.33054603810677047 0.1387448697121637
+0.19324750328985404 0.32845669725485793 0.19324750328985404 0.32845669725485793 0.13485436413457716
+0.19663354265790464 0.326366645893364 0.19663354265790464 0.326366645893364 0.13106514020634064
+0.20001533084343062 0.3242765844990068 0.20001533084343062 0.3242765844990068 0.1274172201880879
+0.20339535717548216 0.3221882537573633 0.20339535717548216 0.3221882537573633 0.12395205353286588
+0.16612878146328428 0.3535564853555355 0.16612878146328428 0.3535564853555355 0.17563142217571912
+0.1695191647583736 0.3514644351462166 0.1695191647583736 0.3514644351462166 0.1717658617156588
+0.17290954805313066 0.345188284519576 0.17290954805313066 0.345188284519576 0.1632451865865998
+0.17629993134812283 0.34309623432613673 0.17629993134812283 0.34309623432613673 0.15925176123090837
+0.17290954805332 0.3493723849369701 0.17290954805332 0.3493723849369701 0.16782357799839978
+0.17969031464314578 0.34100418412354677 0.17969031464314578 0.34100418412354677 0.15521666492309563
+0.18308069793724668 0.3389121339058714 0.18308069793724668 0.3389121339058714 0.15115814499194602
+0.15256724828260154 0.37029288702928914 0.15256724828260151 0.37029288702928914 0.19878404653409784
+0.15595763157777007 0.36820083682008437 0.15595763157777007 0.36820083682008437 0.19541491985335543
+0.15934801487294173 0.36192468619247514 0.15934801487294173 0.36192468619247514 0.18756206257610186
+0.15934801487293843 0.3661087866108808 0.15934801487293845 0.3661087866108808 0.19193244530774647
+0.16273839816811883 0.3598326359832717 0.16273839816811883 0.3598326359832717 0.18391125712707
+0.1661287814633055 0.3577405857740508 0.16612878146330548 0.3577405857740508 0.18016107543156926
+0.1356153318067572 0.38912133891213446 0.1356153318067572 0.38912133891213446 0.22079504248669654
+0.13561533180675717 0.3933054393305445 0.1356153318067572 0.39330543933054457 0.22394350262950516
+0.13900571510192608 0.3870292887029294 0.13900571510192608 0.3870292887029294 0.21826673717984876
+0.142396098397095 0.3849372384937244 0.142396098397095 0.3849372384937244 0.2156125604014634
+0.14578648169226388 0.3786610878661093 0.14578648169226385 0.37866108786610925 0.20908131390636767
+0.14578648169226388 0.3828451882845194 0.14578648169226385 0.3828451882845194 0.21283116247173803
+0.14917686498743277 0.3765690376569042 0.14917686498743277 0.3765690376569042 0.20604743430084413
+0.15256724828260168 0.3744769874476992 0.15256724828260168 0.3744769874476992 0.20289170858811054
+0.1254441819212505 0.4079497907949797 0.1254441819212505 0.40794979079497967 0.23494323889981303
+0.12883456521641942 0.4058577405857747 0.12883456521641942 0.4058577405857747 0.23334300989500115
+0.13222494851158828 0.3995815899581596 0.13222494851158828 0.3995815899581596 0.22898000682601297
+0.13561533180675717 0.39748953974895457 0.1356153318067572 0.39748953974895457 0.2269197260671115
+0.13222494851158828 0.4037656903765697 0.13222494851158828 0.4037656903765697 0.2316083594881598
+0.1254441819212505 0.4121338912133898 0.1254441819212505 0.4121338912133898 0.23701209667347647
+0.11866341533091268 0.42468619246861994 0.1186634153309127 0.42468619246862 0.24225912653084225
+0.12544418192125048 0.41631799163179983 0.12544418192125048 0.4163179916317999 0.23892331350168136
+0.12205379862608157 0.42259414225941494 0.12205379862608157 0.422594142259415 0.24153670833760757
+0.12544418192125045 0.42050209205020994 0.12544418192125042 0.42050209205021 0.24069328160967837
+0.11866341533091268 0.42887029288703 0.1186634153309127 0.42887029288703 0.24347086760380274
+0.10849226544540569 0.4518828451882857 0.10849226544540569 0.45188284518828575 0.24587379298985512
+0.1152730320357438 0.43514644351464504 0.1152730320357438 0.43514644351464504 0.24475913955442127
+0.11866341533091268 0.43305439330544004 0.1186634153309127 0.43305439330544004 0.24456428877519767
+0.1118826487405749 0.44142259414226004 0.1118826487405749 0.44142259414226004 0.24545212965440913
+0.1152730320357438 0.4393305439330551 0.1152730320357438 0.4393305439330551 0.24554224795610533
+0.11188264874057484 0.44560669456067026 0.11188264874057484 0.4456066945606702 0.2459537345953113
+0.11188264874057462 0.4497907949790807 0.11188264874057462 0.44979079497908075 0.24638162565360444
+0.1051018821502341 0.46652719665272396 0.1051018821502341 0.46652719665272396 0.2454021614780415
+0.10510188215023179 0.4707112970711372 0.10510188215023179 0.4707112970711372 0.24537742272726934
+0.10849226544540523 0.45606694560669636 0.10849226544540523 0.45606694560669636 0.24607416366404913
+0.1084922654454042 0.4602510460251074 0.1084922654454042 0.4602510460251074 0.24622985858957278
+0.10849226544540243 0.4644351464435195 0.10849226544540243 0.4644351464435195 0.24635040636155967
+0.10510188215022663 0.47489539748955373 0.10510188215022663 0.47489539748955373 0.24534341879926228
+0.105101882150214 0.4790794979079736 0.105101882150214 0.4790794979079736 0.24530611283305062
+0.10171149885503072 0.48535564853558016 0.10171149885503072 0.48535564853558016 0.24405893251818075
+0.10510188215019034 0.4832635983263916 0.10510188215019034 0.4832635983263916 0.24527014318024823
+0.10171149885502881 0.48953974895396646 0.10171149885502882 0.4895397489539665 0.24398632302897563
+0.10171149885505654 0.4937238493723702 0.10171149885505652 0.4937238493723702 0.24393637911555963
+0.10171149885508379 0.49790794979080144 0.10171149885508379 0.4979079497908014 0.24391107149674943
+0.2768127596093217 0.2606620561326744 0.2768127596093217 0.2606620561326744 0.14218529915640943
+0.2763568769841311 0.26419753678975805 0.2763568769841311 0.26419753678975805 0.14136009267969815
+0.29199891072869044 0.23805512145273455 0.29199891072869044 0.23805512145273458 0.1664041754284691
+0.2808886538160134 0.25221173089098115 0.2808886538160134 0.2522117308909811 0.1483925268176365
+0.2913531362517564 0.24158291214560731 0.29135313625175646 0.24158291214560731 0.16440985748300505
+0.2841580713018474 0.2509086778114833 0.2841580713018474 0.2509086778114833 0.15284421226811992
+0.2908027504448242 0.24503432770010103 0.29080275044482423 0.24503432770010103 0.1627456836638909
+0.2873674107325096 0.24961599920678257 0.28736741073250954 0.24961599920678257 0.15726272683473985
+0.2903028869105234 0.2483281746594328 0.29030288691052336 0.2483281746594328 0.16133202969393556
+0.2805489806430864 0.25579149990106537 0.28054898064308637 0.25579149990106537 0.14745158190786067
+0.2801662919340225 0.2593797809336055 0.2801662919340225 0.2593797809336054 0.1465749019529672
+0.29723235918834134 0.22984478860983032 0.2972323591883414 0.2298447886098303 0.17659682016805178
+0.30536528482138364 0.2237571266396857 0.30536528482138364 0.2237571266396857 0.19014809838514238
+0.3004162724973354 0.2296482364855702 0.3004162724973354 0.22964823648557023 0.18074435806539077
+0.3032824035878246 0.22741903334029764 0.3032824035878246 0.22741903334029764 0.1856418075060115
+0.30730110465264704 0.2268918379347502 0.30730110465264704 0.2268918379347502 0.1909907124461382
+0.296252514723409 0.23343234254987136 0.296252514723409 0.23343234254987136 0.17372448317334557
+0.29545673954142526 0.23701036024036382 0.2954567395414252 0.23701036024036384 0.1712821070928117
+0.3284501435154496 0.19324281262047738 0.3284501435154496 0.19324281262047738 0.23565400092423586
+0.3263587690104747 0.196618760443961 0.3263587690104747 0.196618760443961 0.23165956720597494
+0.3242771896268277 0.1999809977747847 0.3242771896268277 0.1999809977747847 0.22747208434696195
+0.3222056494729891 0.20332733773542302 0.3222056494729891 0.20332733773542302 0.22313697697038712
+0.30762563496448836 0.22039172979837024 0.30762563496448836 0.2203917297983702 0.1949256974927416
+0.30977333570166743 0.21696604459847266 0.30977333570166743 0.21696604459847266 0.19968816056118757
+0.31182600325939486 0.21345326293295375 0.31182600325939486 0.21345326293295375 0.20438085459560232
+0.31389581521012216 0.21005119777588832 0.31389581521012216 0.21005119777588832 0.2090635716652632
+0.315973001942312 0.20670092333366763 0.315973001942312 0.20670092333366763 0.2136987781487909
+0.32013785482751506 0.20665791278504198 0.32013785482751506 0.206657912785042 0.21869190848885878
+0.3493723849372109 0.17290954805361602 0.34937238493721084 0.17290954805361602 0.25981920929381297
+0.3472803444963269 0.17629992497810068 0.3472803444963269 0.17629992497810068 0.25823998277005206
+0.3451883608514977 0.1796902769845329 0.3451883608514977 0.1796902769845329 0.2562504988359832
+0.3368200145543833 0.18647088938987286 0.3368200145543833 0.18647088938987286 0.24702154645002386
+0.34309649165521333 0.18308060293831852 0.34309649165521333 0.18308060293831852 0.25386416535763695
+0.34100470570285096 0.18647081396831355 0.34100470570285096 0.18647081396831355 0.251101368845923
+0.3347275044077236 0.18985987329804502 0.3347275044077236 0.18985987329804502 0.24372971642267202
+0.33263501803270645 0.1932449429480674 0.33263501803270645 0.1932449429480674 0.24013679079551117
+0.38075313807528754 0.14917686498743343 0.38075313807528754 0.14917686498743343 0.2629951580445086
+0.37866108786608244 0.15256724828260237 0.3786610878660825 0.15256724828260237 0.26527963983422875
+0.3765690376568773 0.15595763157777132 0.3765690376568773 0.15595763157777132 0.2672599858861782
+0.3744769874476722 0.15934801487294026 0.37447698744767216 0.15934801487294026 0.2688919492425394
+0.3723849372384671 0.1627383981681092 0.3723849372384671 0.1627383981681092 0.2701373669819849
+0.370292887029262 0.16612878146327814 0.37029288702926205 0.16612878146327814 0.27096508543118175
+0.35564853556482623 0.16951916475844708 0.35564853556482623 0.16951916475844708 0.26381523189778383
+0.35983263598323645 0.16951916475844708 0.35983263598323645 0.16951916475844708 0.2664973250629781
+0.36401673640164667 0.16951916475844708 0.36401673640164667 0.16951916475844708 0.2690150268825944
+0.3682008368200569 0.16951916475844708 0.3682008368200569 0.16951916475844708 0.27135165301220177
+0.3535564853556211 0.17290954805361602 0.3535564853556212 0.17290954805361602 0.26291038754418344
+0.3870292887029029 0.1457864816922645 0.38702928870290293 0.1457864816922645 0.26037385474580016
+0.38493723849369776 0.14917686498743343 0.38493723849369776 0.14917686498743343 0.26323005419401685
+0.3912133891213131 0.1457864816922645 0.39121338912131304 0.1457864816922645 0.2600377281304902
+0.42050209205018463 0.12544418192125084 0.4205020920501847 0.12544418192125084 0.22841991588057511
+0.4184100418409795 0.12883456521641978 0.41841004184097946 0.12883456521641978 0.23278009745789108
+0.4163179916317744 0.13222494851158872 0.41631799163177435 0.13222494851158872 0.23728821683574222
+0.4142259414225693 0.13561533180675767 0.4142259414225693 0.13561533180675767 0.24189680143857764
+0.4121338912133642 0.1390057151019266 0.41213389121336425 0.1390057151019266 0.24655069607740496
+0.3953974895397233 0.1457864816922645 0.39539748953972337 0.1457864816922645 0.2594284466382372
+0.39958158995813353 0.1457864816922645 0.3995815899581335 0.1457864816922645 0.25852527714667556
+0.40585774058574886 0.14239609839709555 0.40585774058574886 0.14239609839709555 0.25303668114683764
+0.4100418410041591 0.14239609839709555 0.41004184100415914 0.14239609839709555 0.2511891542502008
+0.40376569037654375 0.1457864816922645 0.4037656903765438 0.1457864816922645 0.2573061195042094
+0.4414225941422357 0.11866341533091296 0.44142259414223567 0.11866341533091296 0.20392194702883362
+0.42677824267779996 0.1220537986260819 0.4267782426778 0.1220537986260819 0.22073149529928693
+0.4309623430962102 0.1220537986260819 0.4309623430962102 0.1220537986260819 0.21693181219379973
+0.4351464435146204 0.1220537986260819 0.43514644351462034 0.1220537986260819 0.21283472713665955
+0.4393305439330306 0.1220537986260819 0.4393305439330306 0.1220537986260819 0.20842915068438825
+0.42468619246859485 0.12544418192125084 0.4246861924685948 0.12544418192125084 0.22508113760373274
+0.4623430962342868 0.11188264874057507 0.4623430962342869 0.11188264874057507 0.1740662217568907
+0.44769874476985105 0.11527303203574402 0.44769874476985105 0.11527303203574402 0.19478461256929921
+0.4518828451882613 0.11527303203574402 0.4518828451882612 0.11527303203574402 0.18958578494893882
+0.4560669456066715 0.11527303203574402 0.4560669456066715 0.11527303203574402 0.1840855710099438
+0.4602510460250817 0.11527303203574402 0.46025104602508177 0.11527303203574402 0.17827776572379417
+0.44560669456064594 0.11866341533091296 0.445606694560646 0.11866341533091296 0.19910326576989992
+0.46861924686190215 0.10849226544540613 0.4686192468619021 0.10849226544540613 0.16390179351907086
+0.47280334728031237 0.10849226544540613 0.47280334728031237 0.10849226544540613 0.15741209953234933
+0.4769874476987226 0.10849226544540613 0.47698744769872264 0.10849226544540613 0.15061839164522797
+0.46652719665269704 0.11188264874057507 0.466527196652697 0.11188264874057507 0.16791496836634726
+0.4999999999999788 0.09154034896956142 0.49999999999997874 0.09154034896956142 0.10794403336968851
+0.49372384937236347 0.09493073226473037 0.4937238493723635 0.09493073226473037 0.12019570727382332
+0.4979079497907737 0.09493073226473037 0.4979079497907737 0.09493073226473037 0.11215396254642862
+0.4811715481171328 0.10849226544540613 0.4811715481171328 0.10849226544540613 0.14351648523151375
+0.49163179916315836 0.09832111555989931 0.4916317991631583 0.09832111555989931 0.12419326722143968
+0.48953974895395325 0.10171149885506825 0.48953974895395325 0.10171149885506825 0.1281442652416648
+0.48744769874474814 0.10510188215023719 0.4874476987447482 0.10510188215023719 0.13209660072257637
+0.485355648535543 0.10849226544540613 0.48535564853554297 0.10849226544540613 0.1361032551549646
+0.504184100418389 0.09154034896956142 0.504184100418389 0.09154034896956142 0.09943698780245928
+0.5083682008367992 0.09154034896956142 0.5083682008367992 0.09154034896956142 0.0905851454791936
+0.5146443514644146 0.08814996567439248 0.5146443514644146 0.08814996567439248 0.07661765805328635
+0.5125523012552095 0.09154034896956142 0.5125523012552095 0.09154034896956142 0.08138644697848035
+0.5188284518828248 0.08814996567439248 0.5188284518828247 0.08814996567439248 0.06692387338082129
+0.5251046025104401 0.08475958237922354 0.5251046025104401 0.08475958237922354 0.05167116618200967
+0.523012552301235 0.08814996567439248 0.523012552301235 0.08814996567439248 0.056886593988482115
+0.5313807531380554 0.0813691990840546 0.5313807531380554 0.0813691990840546 0.03568508456394388
+0.5292887029288503 0.08475958237922354 0.5292887029288503 0.08475958237922354 0.041156665106899006
+0.5690376569037474 0.0406845995420273 0.5690376569037473 0.0406845995420273 0.0571161393119879
+0.5627615062761321 0.04407498283719624 0.5627615062761321 0.04407498283719624 0.04318479195488526
+0.5669456066945423 0.04407498283719624 0.5669456066945423 0.04407498283719624 0.05345878872269246
+0.560669456066927 0.04746536613236518 0.5606694560669271 0.04746536613236518 0.03903602146353272
+0.5585774058577219 0.050855749427534125 0.5585774058577219 0.050855749427534125 0.03464555153664756
+0.5564853556485168 0.054246132722703067 0.5564853556485168 0.054246132722703067 0.030009731858157803
+0.5502092050209014 0.05763651601787201 0.5502092050209014 0.05763651601787201 0.014246790186372505
+0.5481171548116963 0.06102689931304095 0.5481171548116963 0.06102689931304095 0.00909625129344377
+0.5460251046024912 0.06441728260820989 0.5460251046024912 0.06441728260820989 0.0039715509229704534
+0.5439330543932861 0.06780766590337883 0.5439330543932862 0.06780766590337883 0.0027081690083989823
+0.541841004184081 0.07119804919854777 0.541841004184081 0.07119804919854777 0.007832737499492133
+0.5397489539748759 0.07458843249371672 0.5397489539748759 0.07458843249371672 0.013420489492331987
+0.5376569037656708 0.07797881578888566 0.5376569037656708 0.07797881578888566 0.019080590255821914
+0.5355648535564657 0.0813691990840546 0.5355648535564655 0.0813691990840546 0.02473523214164411
+0.5543933054393116 0.05763651601787201 0.5543933054393116 0.05763651601787201 0.025134593566628446
+0.579497907949773 0.030513449656520475 0.579497907949773 0.030513449656520475 0.07611483028244914
+0.5836820083681832 0.030513449656520475 0.5836820083681832 0.030513449656520475 0.08514970305223434
+0.5774058577405679 0.03390383295168942 0.577405857740568 0.03390383295168942 0.07325469916770978
+0.5753138075313627 0.03729421624685836 0.5753138075313627 0.03729421624685836 0.07027401841825692
+0.5732217573221576 0.0406845995420273 0.5732217573221576 0.0406845995420273 0.067121578176341
+0.6025104602510292 0.006780766590337883 0.6025104602510291 0.006780766590337883 0.11199931605431712
+0.6004184100418241 0.010171149885506825 0.6004184100418241 0.010171149885506825 0.10890662005274156
+0.598326359832619 0.013561533180675767 0.598326359832619 0.013561533180675767 0.10602400268750689
+0.5962343096234138 0.01695191647584471 0.5962343096234138 0.01695191647584471 0.10334838325139246
+0.5941422594142087 0.02034229977101365 0.5941422594142088 0.02034229977101365 0.10085812092252412
+0.5920502092050036 0.02373268306618259 0.5920502092050036 0.02373268306618259 0.09851496413204706
+0.5899581589957985 0.027123066361351533 0.5899581589957985 0.027123066361351533 0.09626723133698756
+0.5878661087865934 0.030513449656520475 0.5878661087865934 0.030513449656520475 0.09405385234151485
+0.006780766590337709 0.6066945606694558 0.006780766590337709 0.6066945606694558 0.20167608665120326
+0.006780766590337709 0.6108786610878658 0.006780766590337709 0.6108786610878658 0.19927563777909962
+0.01017114988550656 0.6046025104602508 0.01017114988550656 0.6046025104602508 0.2032641622922666
+0.013561533180675408 0.6025104602510458 0.013561533180675408 0.6025104602510458 0.20501739595473542
+0.016951916475844264 0.6004184100418408 0.016951916475844264 0.6004184100418408 0.20693733893609598
+0.02034229977101312 0.5983263598326358 0.02034229977101312 0.5983263598326358 0.20901827638756484
+0.02373268306618197 0.5962343096234308 0.02373268306618197 0.5962343096234308 0.2112472070218385
+0.027123066361350822 0.5941422594142258 0.027123066361350822 0.5941422594142258 0.2136041956184246
+0.030513449656519673 0.5878661087866108 0.030513449656519673 0.5878661087866108 0.21786769206106046
+0.033903832951688535 0.5857740585774058 0.033903832951688535 0.5857740585774058 0.2202932910504216
+0.0440749828371951 0.5711297071129708 0.0440749828371951 0.5711297071129708 0.2297079772440148
+0.05085574942753279 0.5627615062761508 0.05085574942753279 0.5627615062761508 0.23416054022324437
+0.05424613272270165 0.5606694560669458 0.054246132722701644 0.5606694560669458 0.23576255778136335
+0.06102689931303934 0.5523012552301259 0.06102689931303934 0.5523012552301259 0.23845630330189352
+0.06441728260820821 0.5502092050209209 0.06441728260820821 0.5502092050209209 0.23940647974153537
+0.06780766590337706 0.5481171548117159 0.06780766590337706 0.5481171548117159 0.24018247072514273
+0.0711980491985459 0.5418410041841009 0.0711980491985459 0.5418410041841009 0.2404783463203066
+0.07458843249371473 0.5397489539748959 0.07458843249371473 0.5397489539748959 0.24090551963702292
+0.07797881578888353 0.537656903765691 0.07797881578888353 0.537656903765691 0.2412374153323467
+0.0711980491985459 0.5460251046025109 0.0711980491985459 0.5460251046025109 0.24079686824227917
+0.05763651601787049 0.5585774058577408 0.05763651601787049 0.5585774058577408 0.23719252736683719
+0.06102689931303934 0.5564853556485359 0.06102689931303934 0.5564853556485359 0.23843781341126766
+0.04746536613236394 0.5690376569037658 0.04746536613236394 0.5690376569037658 0.23173030897137495
+0.05085574942753279 0.5669456066945608 0.05085574942753279 0.5669456066945608 0.2336247480619081
+0.03729421624685738 0.5794979079497908 0.03729421624685738 0.5794979079497908 0.22416070853865566
+0.03729421624685738 0.5836820083682008 0.03729421624685738 0.5836820083682008 0.22274486415704112
+0.040684599542026224 0.5774058577405858 0.040684599542026224 0.5774058577405858 0.22647300667121859
+0.0440749828371951 0.5753138075313808 0.0440749828371951 0.5753138075313808 0.22872864398360096
+0.030513449656519673 0.5920502092050208 0.030513449656519673 0.5920502092050208 0.21606307355989232
+0.09154034896955238 0.5167364016736274 0.09154034896955238 0.5167364016736274 0.24154774629952483
+0.09154034896956136 0.5209205020920392 0.09154034896956136 0.5209205020920392 0.2417902283839035
+0.09493073226471323 0.5146443514644242 0.09493073226471323 0.5146443514644242 0.24217911476952977
+0.09832111555987251 0.5125523012552301 0.09832111555987251 0.5125523012552301 0.24298282992572454
+0.10171149885508375 0.5020920502092515 0.10171149885508375 0.5020920502092515 0.24391136675223643
+0.101711498855057 0.5062761506276751 0.101711498855057 0.5062761506276751 0.24393726691970222
+0.10171149885503399 0.5104602510460493 0.10171149885503399 0.5104602510460493 0.2439878094526238
+0.08136919908405287 0.5313807531380766 0.08136919908405287 0.5313807531380766 0.24110105235375737
+0.08475958237922249 0.5292887029288721 0.08475958237922249 0.5292887029288721 0.24137075679840844
+0.08814996567439282 0.5271966527196666 0.08814996567439282 0.5271966527196666 0.24167905940125764
+0.09154034896956371 0.525104602510459 0.09154034896956371 0.525104602510459 0.2420696536162428
+0.08136919908405237 0.5355648535564862 0.08136919908405237 0.5355648535564862 0.24150883109530694
+0.2757000518580953 0.2677441490487533 0.27570005185809526 0.2677441490487533 0.14033373541171537
+0.25166972910908914 0.28297798339164126 0.2516697291090892 0.28297798339164126 0.11393586202618601
+0.27395692542468464 0.27128834985796024 0.2739569254246846 0.2712883498579602 0.13807636349667726
+0.2707648780777744 0.27345048874560485 0.27076487807777433 0.27345048874560485 0.13413258471955117
+0.2675542931015596 0.27516998338741544 0.2675542931015596 0.27516998338741544 0.13032650640812038
+0.2643235870025857 0.27679497915912105 0.2643235870025857 0.27679497915912105 0.12663815001960652
+0.2610840828773421 0.27838616527835547 0.26108408287734214 0.27838616527835547 0.12309966505088345
+0.25471282086517405 0.2814381281138622 0.25471282086517405 0.2814381281138622 0.11668648727204824
+0.2578496804236324 0.27992759461460237 0.2578496804236324 0.2799275946146023 0.11974425434966408
+0.22777280257502971 0.3007030182823612 0.22777280257502971 0.3007030182823612 0.10486950861073828
+0.22701824840803578 0.3036436327040728 0.22701824840803578 0.3036436327040728 0.10623323871589906
+0.2309089644952384 0.299275345769533 0.23090896449523843 0.299275345769533 0.10500220514804039
+0.23388971646023518 0.29732827481264873 0.23388971646023518 0.29732827481264873 0.10528399408014029
+0.2370045234440421 0.2953751834412807 0.2370045234440421 0.2953751834412807 0.1059977066628139
+0.24010334324619184 0.29347473248582157 0.24010334324619184 0.29347473248582157 0.10711566009716415
+0.2515879049576789 0.2864039585499167 0.25158790495767885 0.2864039585499167 0.11428972392951843
+0.24317796162751265 0.2916341269174444 0.24317796162751268 0.29163412691744434 0.10860415126685637
+0.24617153898949184 0.2898434887937564 0.24617153898949184 0.2898434887937564 0.11038053379330348
+0.24914421584946983 0.2881341032401446 0.24914421584946986 0.2881341032401446 0.11245337776212806
+0.206785978754184 0.3201051859061804 0.206785978754184 0.3201051859061805 0.12071134128312035
+0.2101968879245215 0.3180221798460082 0.2101968879245215 0.3180221798460083 0.1177341383272863
+0.213631544948822 0.31593645987064956 0.213631544948822 0.31593645987064956 0.11506953460524062
+0.22018905346400486 0.3077639303520084 0.22018905346400483 0.3077639303520084 0.1082081863619806
+0.21694428111330943 0.3097226817103272 0.2169442811133094 0.3097226817103272 0.10983142445823002
+0.2169705386018405 0.31382589410313255 0.21697053860184054 0.3138258941031325 0.1127370699535769
+0.2239652823304259 0.3058942895688546 0.2239652823304259 0.3058942895688546 0.10715033076641188
+0.2229848457701478 0.30937547048391034 0.22298484577014782 0.30937547048391034 0.10917253808349614
+0.22725060705668643 0.30648552295465736 0.22725060705668643 0.30648552295465736 0.10776593040277258
+0.22922660508220144 0.30553122395428534 0.22922660508220144 0.30553122395428534 0.10757298511369917
+0.18647024715936478 0.33682067670563515 0.18647024715936478 0.33682067670563515 0.14709930557803927
+0.1898582583103887 0.3347305135393286 0.1898582583103887 0.3347305135393286 0.14306705790743848
+0.19324404931920483 0.3326421479448716 0.19324404931920483 0.3326421479448716 0.1390918052148793
+0.19662711853256917 0.33055333288186206 0.19662711853256917 0.3305533328818621 0.13520451986336726
+0.20000512312212493 0.3284603902218601 0.20000512312212493 0.3284603902218601 0.13143933892060022
+0.2033772182443311 0.3263665366858852 0.2033772182443311 0.3263665366858852 0.1278395194255331
+0.20675280403742533 0.3242776901247141 0.20675280403742533 0.32427769012471414 0.12444862543534328
+0.1695191647584957 0.3556485355647759 0.1695191647584957 0.3556485355647759 0.17631697503010543
+0.1729095480536488 0.35355648535539735 0.1729095480536488 0.35355648535539735 0.17238687313864107
+0.17629993134656005 0.3472803347894174 0.17629993134656005 0.3472803347894174 0.16381559380205693
+0.17969031463797913 0.3451882845940774 0.17969031463797913 0.3451882845940774 0.1597561282866378
+0.1762999313424666 0.35146443539460037 0.1762999313424666 0.35146443539460037 0.16838146390844458
+0.1830806226075235 0.3430962149225667 0.18308062260752347 0.3430962149225667 0.15566286399981988
+0.1864696980546541 0.3410045303430726 0.1864696980546541 0.3410045303430726 0.1515581187393857
+0.1559576315777705 0.37238493723849403 0.1559576315777705 0.37238493723849403 0.19961348824548852
+0.15934801487293906 0.3702928870292888 0.15934801487293906 0.3702928870292888 0.19621298672307244
+0.16273839816810767 0.36401673640168064 0.16273839816810767 0.36401673640168064 0.18833823466858488
+0.16273839816810706 0.36820083682008425 0.16273839816810706 0.36820083682008425 0.19269168157733033
+0.1661287814632818 0.3619246861924852 0.1661287814632818 0.3619246861924852 0.1846355607835123
+0.16951916475846995 0.3598326359832873 0.16951916475846995 0.3598326359832873 0.18082973171283245
+0.13900571510192608 0.39121338912133946 0.13900571510192608 0.39121338912133946 0.22157498239582454
+0.13900571510192608 0.39539748953974957 0.13900571510192608 0.39539748953974957 0.22472370312708476
+0.142396098397095 0.38912133891213446 0.142396098397095 0.38912133891213446 0.21907409958094717
+0.14578648169226385 0.38702928870292946 0.14578648169226385 0.38702928870292946 0.21643880623075384
+0.14917686498743277 0.3807531380753143 0.14917686498743277 0.38075313807531425 0.20992095314204604
+0.14917686498743277 0.3849372384937244 0.14917686498743277 0.3849372384937244 0.21366692610324814
+0.15256724828260165 0.3786610878661093 0.15256724828260168 0.37866108786610925 0.20688047407963797
+0.1559576315777706 0.3765690376569042 0.15595763157777062 0.3765690376569042 0.20370878807884238
+0.1288345652164194 0.4100418410041847 0.12883456521641937 0.41004184100418467 0.23561412257662084
+0.13222494851158828 0.4079497907949797 0.13222494851158828 0.40794979079497967 0.2340810659183978
+0.13561533180675717 0.4016736401673646 0.1356153318067572 0.4016736401673646 0.22973687300438228
+0.13900571510192608 0.3995815899581596 0.13900571510192608 0.3995815899581596 0.22772537824349584
+0.1356153318067572 0.4058577405857747 0.1356153318067572 0.4058577405857747 0.23240900536064954
+0.1288345652164194 0.4142259414225948 0.12883456521641937 0.4142259414225948 0.2377356305093252
+0.12205379862608161 0.426778242677825 0.12205379862608161 0.426778242677825 0.24296158653446034
+0.1288345652164194 0.41841004184100483 0.12883456521641937 0.4184100418410049 0.23972313026997752
+0.12544418192125048 0.42468619246862 0.12544418192125048 0.42468619246862 0.24233768385888513
+0.1288345652164194 0.4225941422594149 0.12883456521641937 0.4225941422594149 0.24159143761921673
+0.1220537986260816 0.430962343096235 0.12205379862608158 0.430962343096235 0.24427112663630393
+0.11188264874057409 0.45397489539749153 0.11188264874057409 0.45397489539749153 0.2467477394740639
+0.11866341533091268 0.43723849372385004 0.1186634153309127 0.43723849372385004 0.24555438167306
+0.1220537986260816 0.43514644351464504 0.12205379862608158 0.43514644351464504 0.24547924730940543
+0.1152730320357437 0.44351464435146526 0.1152730320357437 0.4435146443514652 0.24623588054712675
+0.11866341533091262 0.4414225941422602 0.11866341533091262 0.4414225941422602 0.24645439530361535
+0.11527303203574352 0.4476987447698757 0.11527303203574353 0.44769874476987576 0.24685260484679236
+0.115273032035743 0.4518828451882864 0.115273032035743 0.4518828451882864 0.24740299261317825
+0.10849226544539986 0.46861924686193285 0.10849226544539987 0.46861924686193285 0.24644357247910118
+0.10849226544539518 0.4728033472803494 0.10849226544539518 0.4728033472803494 0.24651549656168403
+0.111882648740573 0.45815899581590275 0.111882648740573 0.45815899581590275 0.24706207239377334
+0.11188264874057095 0.4623430962343151 0.11188264874057095 0.4623430962343151 0.24733270852947933
+0.11188264874056784 0.4665271966527286 0.11188264874056784 0.4665271966527286 0.247565923413688
+0.10849226544538337 0.4769874476987719 0.10849226544538337 0.4769874476987718 0.2465708737551546
+0.10849226544535705 0.4811715481171972 0.10849226544535705 0.4811715481171972 0.2466131645480614
+0.10510188215015956 0.48744769874480154 0.10510188215015957 0.48744769874480154 0.24523899890542608
+0.10849226544531715 0.48535564853561003 0.10849226544531713 0.48535564853561003 0.24664481613114977
+0.10510188215018855 0.4916317991631685 0.10510188215018855 0.4916317991631685 0.2452151884599403
+0.10510188215023554 0.4958158995815775 0.10510188215023554 0.4958158995815775 0.245200387424695
+0.1051018821502621 0.5000000000000325 0.1051018821502621 0.5000000000000325 0.24519555330885923
+0.27971878482463636 0.2629639157385977 0.27971878482463636 0.2629639157385977 0.14570210903185662
+0.2791518368941916 0.2665510850453591 0.2791518368941916 0.2665510850453591 0.14473238970701763
+0.2947228766548445 0.24054922621888744 0.2947228766548445 0.24054922621888744 0.16913305537284987
+0.2838778213599968 0.25446662803830655 0.2838778213599968 0.25446662803830655 0.15193015878079577
+0.2940621856997983 0.24403319252585945 0.2940621856997983 0.24403319252585945 0.16728145191401578
+0.28719261219712955 0.2531154645261203 0.28719261219712955 0.2531154645261204 0.1564494528239437
+0.29348057713189996 0.2474312158690007 0.29348057713189996 0.24743121586900066 0.1657231456243685
+0.2904130632062655 0.25175022531814883 0.29041306320626553 0.2517502253181489 0.16089576077075504
+0.2926670962151784 0.2500110087828829 0.2926670962151784 0.2500110087828829 0.1641182256320601
+0.2835420533954377 0.25806481643356977 0.28354205339543764 0.25806481643356977 0.15105885473280775
+0.28315369098869075 0.2616845431643982 0.28315369098869075 0.2616845431643982 0.15020769412683885
+0.2996912490538807 0.23251924957932513 0.2996912490538807 0.23251924957932513 0.17855874998185176
+0.3093207440659197 0.22394124151038508 0.30932074406591964 0.22394124151038505 0.19508187147290026
+0.30303891684637363 0.23123655883562005 0.30303891684637363 0.23123655883562003 0.18346096479193885
+0.31024827309799313 0.22694635901260918 0.31024827309799313 0.2269463590126092 0.1947285981850711
+0.30632197668528116 0.23028532585112482 0.30632197668528116 0.23028532585112482 0.18818327604408647
+0.30931452980059604 0.2295612968681936 0.309314529800596 0.22956129686819357 0.19234651548288573
+0.2988904289044553 0.2360051170987245 0.2988904289044552 0.2360051170987245 0.17613326228769813
+0.29814740155962943 0.23954219720175474 0.29814740155962943 0.2395421972017547 0.17394198685021
+0.3305439494770263 0.19662235568359898 0.3305439494770263 0.19662235568359898 0.23628354945536864
+0.32845977031900847 0.19998515360263336 0.32845977031900847 0.19998515360263336 0.23222096974242667
+0.32638422319040084 0.2033281066793962 0.32638422319040084 0.2033281066793962 0.2279982467748455
+0.32430872282693163 0.20664070945821153 0.32430872282693163 0.20664070945821153 0.22365681058992903
+0.3121148486680521 0.22074524014304273 0.3121148486680521 0.22074524014304273 0.20046734698363888
+0.31393443381356073 0.21670467840948984 0.31393443381356073 0.21670467840948984 0.2049929798379768
+0.3160035533363155 0.21328603567044804 0.3160035533363155 0.21328603567044804 0.20961595558893667
+0.31807452010701615 0.20998236621702318 0.31807452010701615 0.20998236621702318 0.2141737877794259
+0.3222258494934349 0.20992801016671928 0.3222258494934349 0.20992801016671928 0.219230551872332
+0.351464435146416 0.17629993134878497 0.351464435146416 0.17629993134878497 0.26157689220679264
+0.349372659813894 0.17969018664053069 0.349372659813894 0.17969018664053069 0.259820051449608
+0.3472815051134486 0.18308026392082058 0.3472815051134486 0.18308026392082058 0.25765289566411065
+0.3389128305574269 0.18985999482677707 0.3389128305574269 0.18985999482677707 0.24798916659498013
+0.3451907228419973 0.18647015656530183 0.3451907228419973 0.18647015656530183 0.25509520309778694
+0.34309976022750993 0.18985876234998408 0.34309976022750993 0.18985876234998408 0.25217346951190805
+0.33682160064345407 0.19324565007813843 0.33682160064345407 0.19324565007813843 0.2445621626159106
+0.334732540066844 0.19662438318861755 0.334732540066844 0.19662438318861755 0.2408615916385212
+0.38284518828449265 0.15256724828260237 0.3828451882844926 0.15256724828260237 0.2658348615462134
+0.38075313807528754 0.15595763157777132 0.38075313807528754 0.15595763157777132 0.26813694797354026
+0.37866108786608244 0.15934801487294026 0.3786610878660825 0.15934801487294026 0.27008990799359506
+0.3765690376568773 0.1627383981681092 0.3765690376568773 0.1627383981681092 0.2716534573125677
+0.3744769874476722 0.16612878146327814 0.37447698744767216 0.16612878146327814 0.27279439694826396
+0.3723849372384671 0.16951916475844708 0.3723849372384671 0.16951916475844708 0.2734873423187521
+0.35774058577403134 0.17290954805361602 0.3577405857740313 0.17290954805361602 0.2658608595874212
+0.36192468619244156 0.17290954805361602 0.3619246861924416 0.17290954805361602 0.26865696221663476
+0.3661087866108518 0.17290954805361602 0.3661087866108517 0.17290954805361602 0.2712817838098911
+0.370292887029262 0.17290954805361602 0.37029288702926205 0.17290954805361602 0.27371522008082777
+0.35564853556482623 0.17629993134878497 0.35564853556482623 0.17629993134878497 0.2647836811228754
+0.389121338912108 0.14917686498743343 0.389121338912108 0.14917686498743343 0.2632108507837809
+0.3870292887029029 0.15256724828260237 0.38702928870290293 0.15256724828260237 0.2661376013945107
+0.3933054393305182 0.14917686498743343 0.3933054393305182 0.14917686498743343 0.2629172814821206
+0.42259414225938974 0.12883456521641978 0.42259414225938974 0.12883456521641978 0.22963324451117573
+0.42050209205018463 0.13222494851158872 0.4205020920501847 0.13222494851158872 0.234350883249394
+0.4184100418409795 0.13561533180675767 0.41841004184097946 0.13561533180675767 0.2391870932675433
+0.4163179916317744 0.1390057151019266 0.41631799163177435 0.1390057151019266 0.24408674332341987
+0.4142259414225693 0.14239609839709555 0.4142259414225693 0.14239609839709555 0.24898863780448163
+0.3974895397489284 0.14917686498743343 0.3974895397489284 0.14917686498743343 0.26232716596576916
+0.40167364016733864 0.14917686498743343 0.4016736401673386 0.14917686498743343 0.2614168887936547
+0.40794979079495397 0.1457864816922645 0.4079497907949539 0.1457864816922645 0.2557480247171797
+0.4121338912133642 0.1457864816922645 0.41213389121336425 0.1457864816922645 0.25382773596750186
+0.40585774058574886 0.14917686498743343 0.40585774058574886 0.14917686498743343 0.26016192108445707
+0.44351464435144083 0.1220537986260819 0.4435146443514409 0.1220537986260819 0.20370505015928142
+0.42887029288700507 0.12544418192125084 0.4288702928870051 0.12544418192125084 0.22144097780702168
+0.4330543933054153 0.12544418192125084 0.43305439330541523 0.12544418192125084 0.21748654495601574
+0.4372384937238255 0.12544418192125084 0.43723849372382556 0.12544418192125084 0.21320584139846818
+0.4414225941422357 0.12544418192125084 0.44142259414223567 0.12544418192125084 0.20858811442691458
+0.42677824267779996 0.12883456521641978 0.4267782426778 0.12883456521641978 0.22616910189093134
+0.46443514644349193 0.11527303203574402 0.46443514644349193 0.11527303203574402 0.17215746970784282
+0.44979079497905616 0.11866341533091296 0.4497907949790561 0.11866341533091296 0.193974908223561
+0.4539748953974664 0.11866341533091296 0.45397489539746644 0.11866341533091296 0.1885297324296963
+0.4581589958158766 0.11866341533091296 0.45815899581587655 0.11866341533091296 0.18276206668036607
+0.4623430962342868 0.11866341533091296 0.4623430962342869 0.11866341533091296 0.1766678176134382
+0.44769874476985105 0.1220537986260819 0.44769874476985105 0.1220537986260819 0.1986537282319405
+0.47071129707110726 0.11188264874057507 0.4707112970711073 0.11188264874057507 0.16145774264938004
+0.4748953974895175 0.11188264874057507 0.4748953974895174 0.11188264874057507 0.15469091204622695
+0.4790794979079277 0.11188264874057507 0.47907949790792775 0.11188264874057507 0.1476120269694918
+0.46861924686190215 0.11527303203574402 0.4686192468619021 0.11527303203574402 0.16572115106521412
+0.5020920502091839 0.09493073226473037 0.5020920502091838 0.09493073226473037 0.10377687749360627
+0.4958158995815686 0.09832111555989931 0.49581589958156863 0.09832111555989931 0.11626138031403233
+0.4999999999999788 0.09832111555989931 0.49999999999997874 0.09832111555989931 0.10799997355252829
+0.4832635983263379 0.11188264874057507 0.48326359832633786 0.11188264874057507 0.14021984601274748
+0.49372384937236347 0.10171149885506825 0.4937238493723635 0.10171149885506825 0.12030333195194033
+0.49163179916315836 0.10510188215023719 0.4916317991631583 0.10510188215023719 0.12432473291355702
+0.48953974895395325 0.10849226544540613 0.48953974895395325 0.10849226544540613 0.12837671299450756
+0.48744769874474814 0.11188264874057507 0.4874476987447482 0.11188264874057507 0.13251437996343293
+0.5062761506275941 0.09493073226473037 0.5062761506275941 0.09493073226473037 0.09506027383852084
+0.5104602510460043 0.09493073226473037 0.5104602510460045 0.09493073226473037 0.08600219463743901
+0.5167364016736197 0.09154034896956142 0.5167364016736197 0.09154034896956142 0.07184184706385031
+0.5146443514644146 0.09493073226473037 0.5146443514644146 0.09493073226473037 0.07660361585966008
+0.5209205020920299 0.09154034896956142 0.5209205020920299 0.09154034896956142 0.06195651263667625
+0.5271966527196452 0.08814996567439248 0.5271966527196453 0.08814996567439248 0.046517802905454146
+0.5251046025104401 0.09154034896956142 0.5251046025104401 0.09154034896956142 0.05174231207313912
+0.5334728033472605 0.08475958237922354 0.5334728033472605 0.08475958237922354 0.03033564651535484
+0.5313807531380554 0.08814996567439248 0.5313807531380554 0.08814996567439248 0.035842602886931814
+0.5711297071129525 0.04407498283719624 0.5711297071129525 0.04407498283719624 0.06375331357204335
+0.5648535564853372 0.04746536613236518 0.5648535564853372 0.04746536613236518 0.04956097323611818
+0.5690376569037474 0.04746536613236518 0.5690376569037473 0.04746536613236518 0.06013430147427545
+0.5627615062761321 0.050855749427534125 0.5627615062761321 0.050855749427534125 0.045403788033537625
+0.560669456066927 0.054246132722703067 0.5606694560669271 0.054246132722703067 0.04097889072875483
+0.5585774058577219 0.05763651601787201 0.5585774058577219 0.05763651601787201 0.036288537663859095
+0.5523012552301065 0.06102689931304095 0.5523012552301064 0.06102689931304095 0.020035252154835887
+0.5502092050209014 0.06441728260820989 0.5502092050209014 0.06441728260820989 0.01473500158197732
+0.5481171548116963 0.06780766590337883 0.5481171548116963 0.06780766590337883 0.009264171653648269
+0.5460251046024912 0.07119804919854777 0.5460251046024912 0.07119804919854777 0.0036588573162550206
+0.5439330543932861 0.07458843249371672 0.5439330543932862 0.07458843249371672 0.0020415884248629616
+0.541841004184081 0.07797881578888566 0.541841004184081 0.07797881578888566 0.007792624545462159
+0.5397489539748759 0.0813691990840546 0.5397489539748759 0.0813691990840546 0.013551630395835337
+0.5376569037656708 0.08475958237922354 0.5376569037656708 0.08475958237922354 0.019275348464667028
+0.5564853556485168 0.06102689931304095 0.5564853556485168 0.06102689931304095 0.03134531446674955
+0.5815899581589781 0.03390383295168942 0.5815899581589781 0.03390383295168942 0.0825900329569018
+0.5857740585773883 0.03390383295168942 0.5857740585773882 0.03390383295168942 0.09180880462549827
+0.579497907949773 0.03729421624685836 0.579497907949773 0.03729421624685836 0.07991979976155021
+0.5774058577405679 0.0406845995420273 0.577405857740568 0.0406845995420273 0.07708177506051485
+0.5753138075313627 0.04407498283719624 0.5753138075313627 0.04407498283719624 0.07402567291082572
+0.6066945606694394 0.006780766590337883 0.6066945606694394 0.006780766590337883 0.11916866747730294
+0.6046025104602343 0.010171149885506825 0.6046025104602343 0.010171149885506825 0.11621974257822189
+0.6025104602510292 0.013561533180675767 0.6025104602510291 0.013561533180675767 0.1135058487223652
+0.6004184100418241 0.01695191647584471 0.6004184100418241 0.01695191647584471 0.11102668946020468
+0.598326359832619 0.02034229977101365 0.598326359832619 0.02034229977101365 0.10876202835456404
+0.5962343096234138 0.02373268306618259 0.5962343096234138 0.02373268306618259 0.10667349501640165
+0.5941422594142087 0.027123066361351533 0.5941422594142088 0.027123066361351533 0.1047077526006837
+0.5920502092050036 0.030513449656520475 0.5920502092050036 0.030513449656520475 0.10280064769750431
+0.5899581589957985 0.03390383295168942 0.5899581589957985 0.03390383295168942 0.10088185059443626
+0.6108786610878496 0.006780766590337883 0.6108786610878497 0.006780766590337883 0.12613912840081085
+0.006780766590337709 0.6150627615062758 0.006780766590337709 0.6150627615062758 0.1967956467656339
+0.006780766590337709 0.6192468619246858 0.006780766590337709 0.6192468619246858 0.1942505128005527
+0.01017114988550656 0.6087866108786608 0.01017114988550656 0.6087866108786608 0.20090932497453529
+0.01017114988550656 0.6129707112970708 0.01017114988550656 0.6129707112970708 0.1984665739668072
+0.013561533180675408 0.6066945606694558 0.013561533180675408 0.6066945606694558 0.20271255837370786
+0.016951916475844264 0.6046025104602508 0.016951916475844264 0.6046025104602508 0.20468758684592683
+0.02034229977101312 0.6025104602510458 0.02034229977101312 0.6025104602510458 0.20682959276761856
+0.02373268306618197 0.6004184100418408 0.02373268306618197 0.6004184100418408 0.20912656438307928
+0.027123066361350822 0.5983263598326358 0.027123066361350822 0.5983263598326358 0.2115595369766201
+0.030513449656519673 0.5962343096234308 0.030513449656519673 0.5962343096234308 0.2141031860835352
+0.033903832951688535 0.5899581589958158 0.033903832951688535 0.5899581589958158 0.2185924399032542
+0.03729421624685738 0.5878661087866108 0.03729421624685738 0.5878661087866108 0.22115689973506222
+0.04746536613236394 0.5732217573221758 0.04746536613236394 0.5732217573221758 0.23089154986220442
+0.05424613272270165 0.5648535564853558 0.054246132722701644 0.5648535564853558 0.235364156071461
+0.05763651601787049 0.5627615062761508 0.05763651601787049 0.5627615062761508 0.23692688452629543
+0.06441728260820821 0.5543933054393309 0.06441728260820821 0.5543933054393309 0.23949308483723333
+0.06780766590337706 0.5523012552301259 0.06780766590337706 0.5523012552301259 0.24036081253850475
+0.0711980491985459 0.5502092050209209 0.0711980491985459 0.5502092050209209 0.24105152163433896
+0.07458843249371476 0.5439330543933059 0.07458843249371476 0.5439330543933059 0.24127001176259036
+0.07797881578888359 0.5418410041841009 0.07797881578888359 0.5418410041841009 0.24162959942177117
+0.08136919908405238 0.539748953974896 0.08136919908405238 0.539748953974896 0.24190999746015932
+0.07458843249371476 0.5481171548117159 0.07458843249371476 0.5481171548117159 0.241583779051705
+0.06102689931303934 0.5606694560669458 0.06102689931303934 0.5606694560669458 0.23829776901407765
+0.06441728260820821 0.5585774058577408 0.06441728260820821 0.5585774058577408 0.23946892424262436
+0.05085574942753279 0.5711297071129708 0.05085574942753279 0.5711297071129708 0.23292833864609594
+0.05424613272270165 0.5690376569037658 0.054246132722701644 0.5690376569037658 0.2348096720791473
+0.040684599542026224 0.5815899581589958 0.040684599542026224 0.5815899581589958 0.2251847866821153
+0.040684599542026224 0.5857740585774058 0.040684599542026224 0.5857740585774058 0.2237184686917831
+0.0440749828371951 0.5794979079497908 0.0440749828371951 0.5794979079497908 0.22757474036709288
+0.04746536613236394 0.5774058577405858 0.04746536613236394 0.5774058577405858 0.22987724801581175
+0.033903832951688535 0.5941422594142258 0.033903832951688535 0.5941422594142258 0.21672673208474766
+0.09493073226472633 0.518828451882826 0.09493073226472633 0.518828451882826 0.24236522576954847
+0.09493073226473438 0.5230125523012471 0.09493073226473438 0.5230125523012471 0.24258579887879447
+0.09832111555988625 0.5167364016736145 0.09832111555988625 0.5167364016736143 0.24311124837151912
+0.10171149885504048 0.5146443514644111 0.10171149885504048 0.5146443514644111 0.24406102754031525
+0.10510188215024317 0.5041841004184872 0.10510188215024317 0.5041841004184872 0.24520099824382705
+0.1051018821502037 0.5083682008368812 0.1051018821502037 0.5083682008368812 0.24521641383884926
+0.10510188215019155 0.512552301255225 0.10510188215019155 0.512552301255225 0.24524084624777642
+0.08475958237922131 0.5334728033472819 0.08475958237922131 0.5334728033472819 0.24175963888723806
+0.08814996567439072 0.531380753138078 0.08814996567439072 0.531380753138078 0.24203341580185392
+0.09154034896956104 0.5292887029288741 0.09154034896956104 0.5292887029288741 0.24237580624616387
+0.0949307322647328 0.5271966527196688 0.0949307322647328 0.5271966527196686 0.24283266265367484
+0.0847595823792211 0.5376569037656911 0.0847595823792211 0.537656903765691 0.2421512392405378
+0.2783791121680272 0.270205548410022 0.2783791121680272 0.27020554841002203 0.14353050225539224
+0.25460925728544215 0.284859320209499 0.25460925728544215 0.28485932020949895 0.11691690615256321
+0.2777753800581387 0.2739396615894274 0.2777753800581387 0.2739396615894274 0.1425857658132984
+0.2741239633866418 0.27556979351788113 0.27412396338664186 0.27556979351788113 0.13805159299749345
+0.27081043137963107 0.27719321916849066 0.27081043137963107 0.27719321916849066 0.13407333212442366
+0.26752515645643643 0.2788310886994925 0.26752515645643643 0.2788310886994925 0.1302594180015476
+0.2642415652865866 0.28044445111344246 0.2642415652865866 0.28044445111344246 0.12659703642851675
+0.26091703973433017 0.2819912019812318 0.26091703973433017 0.2819912019812318 0.12306130110635584
+0.25766607145853004 0.2834788071731679 0.2576660714585301 0.2834788071731679 0.11979335737967879
+0.2306753845016927 0.30289477980898194 0.2306753845016927 0.302894779808982 0.10664607755201384
+0.23387196675881777 0.30079417052302265 0.2338719667588178 0.30079417052302265 0.10667900365104245
+0.23713234359865934 0.29892752376110426 0.23713234359865934 0.29892752376110426 0.10730144343607893
+0.2402930187911075 0.29709271271605797 0.2402930187911075 0.2970927127160579 0.10830845512192748
+0.24340521020010408 0.29525141959867784 0.24340521020010408 0.2952514195986779 0.10966718887823083
+0.2543498433550649 0.28773798336081857 0.2543498433550649 0.28773798336081857 0.11695555184835382
+0.2524055658851626 0.28963646205923427 0.25240556588516266 0.28963646205923427 0.11547072727698464
+0.24645316281115237 0.29340292748233826 0.24645316281115237 0.29340292748233826 0.11133199572969053
+0.24947031642299985 0.2915498080125355 0.24947031642299985 0.29154980801253544 0.11329558513844169
+0.21014900074451406 0.3222026965976123 0.21014900074451406 0.3222026965976123 0.1213116371180867
+0.21361774856050883 0.32012561756026037 0.21361774856050883 0.3201256175602603 0.11844749927176433
+0.2174392803798397 0.3179968192290802 0.2174392803798397 0.31799681922908013 0.1158496053718263
+0.2206407028338205 0.3118835519314201 0.22064070283382048 0.3118835519314201 0.11097524762327025
+0.219858183909699 0.31535018605174786 0.219858183909699 0.31535018605174786 0.11342591805935369
+0.22402583956692043 0.3118297727895323 0.22402583956692043 0.3118297727895323 0.11075220292477853
+0.22618431621809923 0.30945702078064996 0.22618431621809923 0.3094570207806499 0.10941928050179506
+0.23186212657346816 0.3061394803100927 0.23186212657346816 0.3061394803100927 0.108472932814373
+0.22938026856814922 0.3081955317238085 0.22938026856814922 0.3081955317238085 0.10903700195050202
+0.18985628427158105 0.3389144753598235 0.18985628427158105 0.3389144753598235 0.14746880871630982
+0.19323952997141372 0.3368262031732862 0.19323952997141372 0.3368262031732862 0.14342396743234606
+0.19661856201051373 0.334738779331243 0.19661856201051373 0.334738779331243 0.13945472933180603
+0.19999146918443342 0.33264508121469966 0.19999146918443342 0.33264508121469966 0.13558955606757347
+0.20335544479707038 0.33054336669803414 0.20335544479707038 0.33054336669803414 0.13186603250622062
+0.20671565712199488 0.32844042605984597 0.20671565712199488 0.32844042605984597 0.12832897981798108
+0.21008499439353434 0.32635420017940525 0.21008499439353434 0.32635420017940525 0.12503343827220184
+0.17290954805368242 0.3577405857740524 0.17290954805368242 0.3577405857740524 0.17692842420558044
+0.17629993132525268 0.3556485365147862 0.17629993132525268 0.3556485365147862 0.1729419721009303
+0.1796903146179615 0.34937238520876895 0.1796903146179615 0.34937238520876895 0.16431448547555236
+0.18308029139013196 0.347280213319301 0.18308029139013196 0.347280213319301 0.1602030451681438
+0.1796903145083728 0.35355648629945247 0.1796903145083728 0.35355648629945247 0.1688836013984711
+0.18646892072488996 0.3451881974756537 0.18646892072488996 0.3451881974756537 0.1560684054826744
+0.1898538422689624 0.34309770075123075 0.1898538422689624 0.34309770075123075 0.15193728469326007
+0.1593480148729395 0.37447698744769903 0.1593480148729395 0.37447698744769903 0.2004058695061102
+0.16273839816810828 0.3723849372384936 0.16273839816810828 0.3723849372384936 0.1969729818762153
+0.16612878146327428 0.3661087866108828 0.16612878146327428 0.3661087866108828 0.18905269367371802
+0.16612878146327634 0.37029288702928786 0.16612878146327634 0.37029288702928786 0.19341303042566793
+0.16951916475844322 0.36401673640169013 0.16951916475844322 0.36401673640169013 0.18530113276644258
+0.17290954805362335 0.36192468619251034 0.17290954805362335 0.36192468619251034 0.181444401218787
+0.142396098397095 0.3933054393305445 0.142396098397095 0.39330543933054457 0.2223893821183511
+0.142396098397095 0.39748953974895457 0.142396098397095 0.39748953974895457 0.22557019650351498
+0.14578648169226388 0.3912133891213395 0.14578648169226385 0.39121338912133957 0.2199138698108439
+0.14917686498743277 0.38912133891213446 0.14917686498743277 0.38912133891213446 0.21729426525637216
+0.15256724828260165 0.38284518828451936 0.15256724828260168 0.38284518828451936 0.21075651556082353
+0.15256724828260168 0.38702928870292946 0.15256724828260168 0.38702928870292946 0.2145280119985651
+0.15595763157777054 0.3807531380753143 0.15595763157777054 0.38075313807531425 0.2077062367607402
+0.15934801487293948 0.3786610878661093 0.15934801487293948 0.37866108786610925 0.20451572819954777
+0.13222494851158828 0.4121338912133898 0.13222494851158828 0.4121338912133898 0.2364132098217789
+0.13561533180675717 0.4100418410041847 0.1356153318067572 0.41004184100418467 0.2349504743472031
+0.13900571510192608 0.4037656903765697 0.13900571510192608 0.4037656903765697 0.23059336858366244
+0.142396098397095 0.4016736401673646 0.142396098397095 0.4016736401673646 0.22862919968828802
+0.13900571510192608 0.4079497907949797 0.13900571510192608 0.40794979079497967 0.2333412978524471
+0.13222494851158828 0.41631799163179983 0.13222494851158828 0.4163179916317999 0.23861959982687178
+0.12544418192125048 0.42887029288703 0.12544418192125048 0.42887029288703 0.24387099977731339
+0.13222494851158828 0.4205020920502099 0.13222494851158828 0.4205020920502099 0.24071419866674945
+0.1288345652164194 0.42677824267782494 0.12883456521641937 0.426778242677825 0.2433540789507771
+0.13222494851158828 0.42468619246861994 0.13222494851158828 0.42468619246862 0.2427096006061873
+0.12544418192125048 0.43305439330544004 0.12544418192125048 0.43305439330544004 0.2453060785912702
+0.11527303203574184 0.4560669456066979 0.11527303203574184 0.45606694560669786 0.24789557350504646
+0.12205379862608152 0.4393305439330552 0.12205379862608152 0.4393305439330552 0.24659800830187883
+0.12544418192125042 0.4372384937238502 0.12544418192125042 0.4372384937238502 0.24665379537918983
+0.11866341533091242 0.44560669456067054 0.11866341533091242 0.44560669456067054 0.24727560218788722
+0.12205379862608133 0.44351464435146554 0.12205379862608133 0.44351464435146554 0.24763737018600374
+0.1186634153309119 0.44979079497908137 0.11866341533091189 0.44979079497908137 0.24802716007559275
+0.11866341533091072 0.453974895397493 0.11866341533091072 0.453974895397493 0.24871607171720797
+0.11188264874056303 0.4707112970711451 0.11188264874056304 0.4707112970711451 0.24776635204947173
+0.11188264874055265 0.47489539748956844 0.11188264874055265 0.47489539748956844 0.24793720704953295
+0.11527303203573942 0.4602510460251108 0.11527303203573942 0.4602510460251108 0.2483368782012865
+0.11527303203573541 0.46443514644352524 0.1152730320357354 0.46443514644352524 0.24873156376955619
+0.11527303203572985 0.46861924686194173 0.11527303203572985 0.46861924686194173 0.2490826099462021
+0.11188264874052695 0.4790794979080005 0.11188264874052693 0.4790794979080005 0.24808053017951673
+0.11188264874047747 0.483263598326431 0.11188264874047747 0.483263598326431 0.24819745928578305
+0.10849226544529086 0.4895397489539727 0.10849226544529088 0.48953974895397273 0.24666747838653194
+0.11188264874041506 0.4874476987448428 0.11188264874041508 0.4874476987448428 0.24828849231821323
+0.1084922654453621 0.4937238493723612 0.1084922654453621 0.4937238493723612 0.24668219857647886
+0.10849226544542438 0.4979079497907999 0.10849226544542438 0.4979079497907999 0.2466895807340073
+0.10849226544543351 0.5020920502092815 0.10849226544543351 0.5020920502092815 0.24668989850425113
+0.2826645959978679 0.26529588705942736 0.2826645959978679 0.26529588705942736 0.14928223572144886
+0.2820926250816199 0.2688965894488529 0.28209262508161986 0.2688965894488529 0.1482788289680592
+0.2974050832565241 0.24305590324330958 0.2974050832565241 0.24305590324330958 0.17194429977577974
+0.2869154909792249 0.25670533533840834 0.2869154909792249 0.25670533533840834 0.15560241376257025
+0.29664578277757486 0.24653823631608862 0.29664578277757486 0.24653823631608862 0.17009963244627377
+0.2903078691566003 0.25524483168892353 0.2903078691566003 0.25524483168892353 0.16023448137671356
+0.2956713607135663 0.25001401406856855 0.2956713607135663 0.25001401406856855 0.16810495574261564
+0.2937306702204416 0.2533079605842151 0.2937306702204416 0.2533079605842152 0.1650521786149415
+0.2865672686545228 0.26035013297043036 0.2865672686545228 0.26035013297043036 0.1547494272708492
+0.2861729744884248 0.26399817387577706 0.28617297448842477 0.26399817387577706 0.15389580259093358
+0.3023170021633698 0.23494845389633448 0.3023170021633698 0.23494845389633448 0.18100688166910064
+0.3128834148829118 0.2252036921661355 0.3128834148829118 0.22520369216613553 0.19910220951474664
+0.3153430235540186 0.22255823297479843 0.3153430235540186 0.22255823297479843 0.20345352045042225
+0.3056564256312904 0.23388739274809667 0.3056564256312904 0.23388739274809667 0.1857932742234816
+0.3125442347022034 0.22880795920330155 0.3125442347022034 0.22880795920330152 0.19686538794680708
+0.30886773515289334 0.23294462243835168 0.3088677351528934 0.2329446224383517 0.19036073800878206
+0.31180155832821677 0.23201259660967097 0.31180155832821677 0.23201259660967097 0.19453202555486734
+0.30160252312553926 0.23855428134860046 0.30160252312553926 0.2385542813486005 0.17880305447713066
+0.30085169486724295 0.2420698509809456 0.300851694867243 0.2420698509809456 0.17676212318527296
+0.33264844403522803 0.1999909141886125 0.33264844403522803 0.1999909141886125 0.23693498954478454
+0.3305694594688049 0.20333786268087187 0.3305694594688049 0.20333786268087187 0.23283014936153454
+0.3284900683911194 0.20665409818479563 0.3284900683911194 0.20665409818479566 0.22859179063247306
+0.3264070316425066 0.20992526515551033 0.32640703164250656 0.20992526515551033 0.22426935953695462
+0.31600485220128083 0.21945765919150761 0.31600485220128083 0.21945765919150761 0.20598638666249067
+0.3180833069612806 0.21635045876285774 0.31808330696128057 0.21635045876285774 0.2103643116293372
+0.32012831060491737 0.21318472273216305 0.32012831060491737 0.21318472273216305 0.21475299787895305
+0.32429657541576246 0.213168157389745 0.32429657541576246 0.213168157389745 0.21987432001036364
+0.31831989566691166 0.2221478262854317 0.3183198956669116 0.2221478262854317 0.2074920100644186
+0.3535564853556211 0.1796903146439539 0.3535564853556212 0.1796903146439539 0.263269815127527
+0.3514663869870696 0.18307993133442224 0.3514663869870696 0.18307993133442224 0.261332879782555
+0.3493779245260078 0.18646893852893973 0.3493779245260078 0.18646893852893973 0.2589923319264886
+0.34101005562417774 0.1932432777241979 0.34101005562417774 0.1932432777241979 0.24892309530507087
+0.34728907550946936 0.18985610567667688 0.34728907550946936 0.18985610567667688 0.25627313759030773
+0.3452006860290267 0.19323803475568047 0.3452006860290267 0.19323803475568047 0.25320990384547315
+0.33892423306175806 0.19662117281307745 0.33892423306175806 0.19662117281307745 0.24538660349266703
+0.3368439497232352 0.19999145438736213 0.3368439497232352 0.19999145438736213 0.2416093681354712
+0.38493723849369776 0.15595763157777132 0.38493723849369776 0.15595763157777132 0.26876449117239876
+0.38284518828449265 0.15934801487294026 0.3828451882844926 0.15934801487294026 0.2710429210997845
+0.38075313807528754 0.1627383981681092 0.38075313807528754 0.1627383981681092 0.2729304240142454
+0.37866108786608244 0.16612878146327814 0.3786610878660825 0.16612878146327814 0.27439167037065676
+0.3765690376568773 0.16951916475844708 0.3765690376568773 0.16951916475844708 0.27539923691057083
+0.3744769874476722 0.17290954805361602 0.37447698744767216 0.17290954805361602 0.2759341416081011
+0.35983263598323645 0.17629993134878497 0.35983263598323645 0.17629993134878497 0.267846578512899
+0.36401673640164667 0.17629993134878497 0.36401673640164667 0.17629993134878497 0.27074859738705337
+0.3682008368200569 0.17629993134878497 0.3682008368200569 0.17629993134878497 0.2734695377618448
+0.3723849372384671 0.17629993134878497 0.3723849372384671 0.17629993134878497 0.27598614839170826
+0.3577405919475059 0.17969029708070314 0.3577405919475059 0.17969029708070314 0.2665867268142585
+0.3912133891213131 0.15256724828260237 0.39121338912131304 0.15256724828260237 0.2661663330885204
+0.389121338912108 0.15595763157777132 0.389121338912108 0.15595763157777132 0.2691199633610903
+0.3953974895397233 0.15256724828260237 0.39539748953972337 0.15256724828260237 0.26589754113459096
+0.42468619246859485 0.13222494851158872 0.4246861924685948 0.13222494851158872 0.2310806456354916
+0.42259414225938974 0.13561533180675767 0.42259414225938974 0.13561533180675767 0.23612954619249146
+0.42050209205018463 0.1390057151019266 0.4205020920501847 0.1390057151019266 0.24126105225960245
+0.4184100418409795 0.14239609839709555 0.41841004184097946 0.14239609839709555 0.24641383536898576
+0.4163179916317744 0.1457864816922645 0.41631799163177435 0.1457864816922645 0.25152223514659816
+0.39958158995813353 0.15256724828260237 0.3995815899581335 0.15256724828260237 0.26530619802036126
+0.40376569037654375 0.15256724828260237 0.4037656903765438 0.15256724828260237 0.2643662861549658
+0.4100418410041591 0.14917686498743343 0.41004184100415914 0.14917686498743343 0.25853736670549204
+0.4142259414225693 0.14917686498743343 0.4142259414225693 0.14917686498743343 0.25651851555070065
+0.40794979079495397 0.15256724828260237 0.4079497907949539 0.15256724828260237 0.26305134627386656
+0.44560669456064594 0.12544418192125084 0.445606694560646 0.12544418192125084 0.20362415891383476
+0.4309623430962102 0.12883456521641978 0.4309623430962102 0.12883456521641978 0.22237351729220325
+0.4351464435146204 0.12883456521641978 0.43514644351462034 0.12883456521641978 0.21823337047256922
+0.4393305439330306 0.12883456521641978 0.4393305439330306 0.12883456521641978 0.21373694972755564
+0.44351464435144083 0.12883456521641978 0.4435146443514409 0.12883456521641978 0.20887427926877167
+0.42887029288700507 0.13222494851158872 0.4288702928870051 0.13222494851158872 0.22746192771727783
+0.46652719665269704 0.11866341533091296 0.466527196652697 0.11866341533091296 0.17024453358541222
+0.4518828451882613 0.1220537986260819 0.4518828451882612 0.1220537986260819 0.19326804977540693
+0.4560669456066715 0.1220537986260819 0.4560669456066715 0.1220537986260819 0.1875426150413995
+0.4602510460250817 0.1220537986260819 0.46025104602508177 0.1220537986260819 0.18147388000666195
+0.46443514644349193 0.1220537986260819 0.46443514644349193 0.1220537986260819 0.1750602275556399
+0.44979079497905616 0.12544418192125084 0.4497907949790561 0.12544418192125084 0.1983065663004634
+0.47280334728031237 0.11527303203574402 0.47280334728031237 0.11527303203574402 0.15896667529221944
+0.4769874476987226 0.11527303203574402 0.47698744769872264 0.11527303203574402 0.15189331396668737
+0.4811715481171328 0.11527303203574402 0.4811715481171328 0.11527303203574402 0.14450174676609115
+0.47071129707110726 0.11866341533091296 0.4707112970711073 0.11866341533091296 0.16349143046609096
+0.504184100418389 0.09832111555989931 0.504184100418389 0.09832111555989931 0.09940549500795348
+0.4979079497907737 0.10171149885506825 0.4979079497907737 0.10171149885506825 0.11213883705304739
+0.5020920502091839 0.10171149885506825 0.5020920502091838 0.10171149885506825 0.10364827269813326
+0.485355648535543 0.11527303203574402 0.48535564853554297 0.11527303203574402 0.13679407656571949
+0.4958158995815686 0.10510188215023719 0.49581589958156863 0.10510188215023719 0.11623470838443158
+0.49372384937236347 0.10849226544540613 0.4937238493723635 0.10849226544540613 0.12033613411662368
+0.49163179916315836 0.11188264874057507 0.4916317991631583 0.11188264874057507 0.1244969819495093
+0.48953974895395325 0.11527303203574402 0.48953974895395325 0.11527303203574402 0.12877388523263836
+0.5083682008367992 0.09832111555989931 0.5083682008367992 0.09832111555989931 0.09047649589921634
+0.5125523012552095 0.09832111555989931 0.5125523012552095 0.09832111555989931 0.08121435195292366
+0.5188284518828248 0.09493073226473037 0.5188284518828247 0.09493073226473037 0.06686969231206719
+0.5167364016736197 0.09832111555989931 0.5167364016736197 0.09832111555989931 0.07162452058612194
+0.523012552301235 0.09493073226473037 0.523012552301235 0.09493073226473037 0.05681224931021724
+0.5292887029288503 0.09154034896956142 0.5292887029288503 0.09154034896956142 0.041224049890999793
+0.5271966527196452 0.09493073226473037 0.5271966527196453 0.09493073226473037 0.04645559011338284
+0.5355648535564657 0.08814996567439248 0.5355648535564655 0.08814996567439248 0.024923257838489934
+0.5334728033472605 0.09154034896956142 0.5334728033472605 0.09154034896956142 0.030459143473567162
+0.5732217573221576 0.04746536613236518 0.5732217573221576 0.04746536613236518 0.0707104077254327
+0.5669456066945423 0.050855749427534125 0.5669456066945423 0.050855749427534125 0.05624007009408553
+0.5711297071129525 0.050855749427534125 0.5711297071129525 0.050855749427534125 0.06710563055753878
+0.5648535564853372 0.054246132722703067 0.5648535564853372 0.054246132722703067 0.052057304609146544
+0.5627615062761321 0.05763651601787201 0.5627615062761321 0.05763651601787201 0.04758407000699274
+0.560669456066927 0.06102689931304095 0.5606694560669271 0.06102689931304095 0.04282970362790279
+0.5543933054393116 0.06441728260820989 0.5543933054393116 0.06441728260820989 0.02617181296217999
+0.5523012552301065 0.06780766590337883 0.5523012552301064 0.06780766590337883 0.020800856093537937
+0.5502092050209014 0.07119804919854777 0.5502092050209014 0.07119804919854777 0.015278436407660691
+0.5481171548116963 0.07458843249371672 0.5481171548116963 0.07458843249371672 0.009681403170741565
+0.5460251046024912 0.07797881578888566 0.5460251046024912 0.07797881578888566 0.004287492898097992
+0.5439330543932861 0.0813691990840546 0.5439330543932862 0.0813691990840546 0.00319537537966819
+0.541841004184081 0.08475958237922354 0.541841004184081 0.08475958237922354 0.008360328733145073
+0.5397489539748759 0.08814996567439248 0.5397489539748759 0.08814996567439248 0.013999780681266052
+0.5585774058577219 0.06441728260820989 0.5585774058577219 0.06441728260820989 0.03781458483267942
+0.5836820083681832 0.03729421624685836 0.5836820083681832 0.03729421624685836 0.08946548714513168
+0.5878661087865934 0.03729421624685836 0.5878661087865934 0.03729421624685836 0.09887949265243436
+0.5815899581589781 0.0406845995420273 0.5815899581589781 0.0406845995420273 0.08696066489869914
+0.579497907949773 0.04407498283719624 0.579497907949773 0.04407498283719624 0.08423775041181449
+0.5774058577405679 0.04746536613236518 0.577405857740568 0.04746536613236518 0.08124932199506012
+0.6087866108786445 0.010171149885506825 0.6087866108786445 0.010171149885506825 0.12333420124159789
+0.6066945606694394 0.013561533180675767 0.6066945606694394 0.013561533180675767 0.12078943842109773
+0.6046025104602343 0.01695191647584471 0.6046025104602343 0.01695191647584471 0.11850761903557518
+0.6025104602510292 0.02034229977101365 0.6025104602510291 0.02034229977101365 0.1164702749305677
+0.6004184100418241 0.02373268306618259 0.6004184100418241 0.02373268306618259 0.11463931677273785
+0.598326359832619 0.027123066361351533 0.598326359832619 0.027123066361351533 0.11296015049241608
+0.5962343096234138 0.030513449656520475 0.5962343096234138 0.030513449656520475 0.11136590173905316
+0.5941422594142087 0.03390383295168942 0.5941422594142088 0.03390383295168942 0.10978223320248211
+0.5920502092050036 0.03729421624685836 0.5920502092050036 0.03729421624685836 0.10813222712722892
+0.6150627615062598 0.006780766590337883 0.6150627615062598 0.006780766590337883 0.13290786651991982
+0.6129707112970547 0.010171149885506825 0.6129707112970547 0.010171149885506825 0.13024495492767438
+0.61924686192467 0.006780766590337883 0.6192468619246699 0.006780766590337883 0.1394759924316069
+0.006780766590337709 0.6234309623430958 0.006780766590337709 0.6234309623430958 0.19165621402395572
+0.006780766590337709 0.6276150627615058 0.006780766590337709 0.6276150627615058 0.18903008439598168
+0.01017114988550656 0.6171548117154808 0.01017114988550656 0.6171548117154808 0.19594958808025142
+0.01017114988550656 0.6213389121338908 0.01017114988550656 0.6213389121338908 0.19337376420669858
+0.013561533180675408 0.6108786610878658 0.013561533180675408 0.6108786610878658 0.2003108056091174
+0.013561533180675408 0.6150627615062758 0.013561533180675408 0.6150627615062758 0.1978250401935178
+0.016951916475844264 0.6087866108786608 0.016951916475844264 0.6087866108786608 0.20233122482849805
+0.02034229977101312 0.6066945606694558 0.02034229977101312 0.6066945606694558 0.20452393110283254
+0.02373268306618197 0.6046025104602508 0.02373268306618197 0.6046025104602508 0.20687800347952442
+0.027123066361350822 0.6025104602510458 0.027123066361350822 0.6025104602510458 0.20937562325934952
+0.030513449656519673 0.6004184100418408 0.030513449656519673 0.6004184100418408 0.21199254829303396
+0.033903832951688535 0.5983263598326358 0.033903832951688535 0.5983263598326358 0.21469890634950214
+0.03729421624685738 0.5920502092050208 0.03729421624685738 0.5920502092050208 0.21939509801772492
+0.040684599542026224 0.5899581589958158 0.040684599542026224 0.5899581589958158 0.22207025257954105
+0.05085574942753279 0.5753138075313808 0.05085574942753279 0.5753138075313808 0.23205716150270586
+0.05763651601787049 0.5669456066945608 0.05763651601787049 0.5669456066945608 0.23651148132049668
+0.06102689931303934 0.5648535564853558 0.06102689931303934 0.5648535564853558 0.23801602103381447
+0.06780766590337706 0.5564853556485359 0.06780766590337706 0.5564853556485359 0.24044032022475245
+0.0711980491985459 0.5543933054393309 0.0711980491985459 0.5543933054393309 0.24122012019846525
+0.07458843249371476 0.5523012552301259 0.07458843249371476 0.5523012552301259 0.24182476033283742
+0.07797881578888362 0.5460251046025109 0.07797881578888362 0.5460251046025109 0.24198389708285425
+0.08136919908405246 0.5439330543933059 0.08136919908405248 0.5439330543933059 0.2422853352513881
+0.08475958237922125 0.5418410041841009 0.08475958237922125 0.5418410041841009 0.24252778747187767
+0.07797881578888362 0.5502092050209209 0.07797881578888362 0.5502092050209209 0.24227875069831037
+0.06441728260820821 0.5627615062761508 0.06441728260820821 0.5627615062761508 0.23931273297972824
+0.06780766590337706 0.5606694560669458 0.06780766590337706 0.5606694560669458 0.2403988990718335
+0.05424613272270165 0.5732217573221758 0.054246132722701644 0.5732217573221758 0.23408305724241632
+0.05763651601787049 0.5711297071129708 0.05763651601787049 0.5711297071129708 0.23592850276653374
+0.0440749828371951 0.5836820083682008 0.0440749828371951 0.5836820083682008 0.22623807198642654
+0.0440749828371951 0.5878661087866108 0.0440749828371951 0.5878661087866108 0.22471266788356772
+0.04746536613236394 0.5815899581589958 0.04746536613236394 0.5815899581589958 0.22867707143046742
+0.05085574942753279 0.5794979079497908 0.05085574942753279 0.5794979079497908 0.2309987626216525
+0.03729421624685738 0.5962343096234308 0.03729421624685738 0.5962343096234308 0.2174602558753321
+0.09832111555990264 0.52092050209203 0.09832111555990264 0.52092050209203 0.24326836667128585
+0.09832111555990597 0.5251046025104592 0.09832111555990597 0.5251046025104592 0.2434480367896081
+0.10171149885506504 0.5188284518828089 0.10171149885506504 0.5188284518828089 0.24415387440870231
+0.10510188215021797 0.5167364016735901 0.10510188215021797 0.5167364016735901 0.24527262340028608
+0.1084922654453876 0.506276150627718 0.1084922654453876 0.506276150627718 0.24668315356957973
+0.10849226544534651 0.5104602510460631 0.10849226544534651 0.5104602510460631 0.2466690756147014
+0.10849226544536006 0.5146443514643863 0.10849226544536006 0.5146443514643863 0.24664706383276894
+0.08814996567438982 0.5355648535564866 0.08814996567438982 0.5355648535564866 0.2423977158112486
+0.09154034896955875 0.5334728033472831 0.09154034896955875 0.5334728033472831 0.24269657593659807
+0.09493073226472849 0.5313807531380804 0.09493073226472849 0.5313807531380804 0.2430958748247278
+0.09832111555990007 0.5292887029288781 0.09832111555990007 0.5292887029288781 0.24364253628005186
+0.08814996567438994 0.539748953974896 0.08814996567438994 0.539748953974896 0.242755950462441
+0.28153765080910176 0.2725315497361802 0.2815376508091018 0.2725315497361802 0.14730155582886909
+0.2572870361885794 0.28705381157164556 0.25728703618857945 0.2870538115716456 0.1196648399897061
+0.2811167641798234 0.2761760288281148 0.2811167641798234 0.2761760288281148 0.14645608269461294
+0.27754359341147256 0.27764453411475654 0.27754359341147256 0.2776445341147565 0.14200942263603264
+0.274102027580565 0.27925515810472595 0.274102027580565 0.27925515810472595 0.13781508443463
+0.27077263765538034 0.28088350736535533 0.27077263765538034 0.28088350736535533 0.13388800852326632
+0.2674319126839806 0.2825010930532599 0.2674319126839806 0.2825010930532599 0.1300934802876079
+0.264037688499353 0.28406817339961343 0.264037688499353 0.2840681733996134 0.12640997712564409
+0.2606361129818439 0.28559662782757705 0.2606361129818439 0.28559662782757705 0.12290867803653893
+0.23417128264273662 0.30412217005798114 0.23417128264273665 0.3041221700579811 0.10822733964754254
+0.23733103249048593 0.30234862408504315 0.23733103249048595 0.3023486240850431 0.10867492504772037
+0.24043084154322342 0.3006279761168034 0.24043084154322344 0.3006279761168034 0.10951514869725724
+0.24356993502798843 0.2988465683383609 0.24356993502798843 0.29884656833836093 0.11073115537026633
+0.24669773409551254 0.2970077613379145 0.24669773409551254 0.2970077613379145 0.11228886902434611
+0.2558594524584612 0.29073636441379747 0.2558594524584612 0.2907363644137974 0.11867840916597615
+0.2528501793555706 0.2931518584244283 0.2528501793555706 0.2931518584244283 0.11630675762924636
+0.24978742589950684 0.29512717582532016 0.24978742589950684 0.29512717582532016 0.11415596348965386
+0.21345527774973255 0.3243308511550066 0.21345527774973252 0.32433085115500665 0.12205968641124819
+0.21683449961562298 0.3222646986632051 0.21683449961562298 0.3222646986632051 0.11935614662270043
+0.2202367831483273 0.320681091862003 0.22023678314832731 0.32068109186200294 0.11740922946685052
+0.22091655399528698 0.3177910998239847 0.22091655399528695 0.3177910998239847 0.11509642455093741
+0.2233232392595164 0.3152538289736805 0.2233232392595164 0.31525382897368054 0.11312517629989549
+0.22681321480855965 0.31328511400394915 0.22681321480855968 0.31328511400394915 0.11175601530622614
+0.22957360424365478 0.3113637337297879 0.22957360424365478 0.3113637337297879 0.11086477176960474
+0.2348393617132035 0.30774676155636627 0.2348393617132035 0.30774676155636627 0.11004061638356406
+0.23239525139603387 0.3095898849665521 0.23239525139603387 0.3095898849665521 0.11035207347559574
+0.1932341400346597 0.3410087977291214 0.1932341400346597 0.3410087977291214 0.14783757297488934
+0.19660882176228411 0.33892137474939643 0.19660882176228411 0.33892137474939643 0.14380006031477718
+0.19997639573818402 0.33682918529100164 0.19997639573818402 0.33682918529100164 0.1398520947955715
+0.20333230397397475 0.33472345358572575 0.20333230397397475 0.33472345358572575 0.13602276771888278
+0.2066773817603751 0.33260585017014554 0.2066773817603751 0.3326058501701455 0.13235106107637537
+0.2100263914766872 0.3304801565517374 0.2100263914766872 0.3304801565517374 0.12887643226528508
+0.2134059652559652 0.32838891405642595 0.2134059652559652 0.32838891405642595 0.12568231199320198
+0.1762999312656246 0.3598326393253202 0.1762999312656246 0.3598326393253202 0.17749245398502775
+0.1796903138952682 0.3577405888175475 0.1796903138952682 0.3577405888175475 0.17345799183395136
+0.1830800433554637 0.3514641784689431 0.1830800433554637 0.3514641784689431 0.16476971891989176
+0.1864678754376029 0.3493717041501337 0.1864678754376029 0.3493717041501337 0.16062071657306096
+0.18307996630248913 0.35564814470313744 0.18307996630248913 0.35564814470313744 0.1693566055099698
+0.18985120842379877 0.34728030920408964 0.18985120842379877 0.34728030920408964 0.15646228883757998
+0.1932280789268007 0.34519034034276225 0.1932280789268007 0.34519034034276225 0.15232205576223543
+0.16273839816810845 0.3765690376569042 0.16273839816810845 0.3765690376569042 0.20118595898716163
+0.16612878146327745 0.37447698744769875 0.16612878146327745 0.37447698744769875 0.19771955536154381
+0.16951916475844273 0.36820083682008375 0.16951916475844273 0.36820083682008375 0.18973087970118355
+0.169519164758446 0.3723849372384924 0.169519164758446 0.3723849372384924 0.19412109048511017
+0.1729095480536069 0.36610878661088736 0.1729095480536069 0.36610878661088736 0.1859336280842754
+0.1762999310896042 0.3640167468106215 0.1762999310896042 0.3640167468106215 0.18203084431749741
+0.14578648169226385 0.39539748953974957 0.14578648169226385 0.39539748953974957 0.2232674404111976
+0.14578648169226388 0.3995815899581596 0.14578648169226385 0.3995815899581596 0.22651146728038166
+0.14917686498743277 0.3933054393305445 0.14917686498743277 0.39330543933054457 0.2208133437509389
+0.15256724828260165 0.3912133891213395 0.15256724828260168 0.39121338912133957 0.21820460802622152
+0.15595763157777057 0.3849372384937244 0.15595763157777057 0.3849372384937244 0.21161325765443975
+0.15595763157777057 0.38912133891213446 0.15595763157777057 0.38912133891213446 0.215438750894175
+0.15934801487293948 0.3828451882845194 0.15934801487293948 0.3828451882845194 0.20854920654833523
+0.16273839816810837 0.3807531380753143 0.16273839816810834 0.38075313807531425 0.20533645244596757
+0.1356153318067572 0.41422594142259483 0.1356153318067572 0.4142259414225949 0.2373753117732831
+0.13900571510192608 0.4121338912133898 0.13900571510192608 0.4121338912133898 0.2359824346940549
+0.142396098397095 0.4058577405857747 0.142396098397095 0.4058577405857747 0.23157929327744806
+0.14578648169226385 0.4037656903765697 0.14578648169226385 0.4037656903765697 0.22965813529826792
+0.142396098397095 0.4100418410041847 0.142396098397095 0.41004184100418467 0.23443299815245325
+0.13561533180675717 0.4184100418410049 0.1356153318067572 0.4184100418410049 0.23969664675125993
+0.12883456521641937 0.430962343096235 0.12883456521641937 0.430962343096235 0.2450228507268777
+0.13561533180675717 0.42259414225941494 0.1356153318067572 0.422594142259415 0.24192616986118734
+0.13222494851158828 0.42887029288703 0.13222494851158828 0.42887029288703 0.2446165774193351
+0.13561533180675717 0.426778242677825 0.1356153318067572 0.426778242677825 0.2440736659842427
+0.1288345652164194 0.43514644351464504 0.12883456521641937 0.43514644351464504 0.2466074640509335
+0.11866341533090817 0.45815899581590624 0.11866341533090817 0.45815899581590624 0.24934724038160974
+0.1254441819212502 0.44142259414226054 0.1254441819212502 0.44142259414226054 0.24792280321730623
+0.12883456521641914 0.43933054393305554 0.12883456521641914 0.43933054393305554 0.2481152881907797
+0.12205379862608083 0.44769874476987637 0.12205379862608083 0.44769874476987637 0.24860505446600453
+0.12544418192124976 0.44560669456067137 0.12544418192124976 0.44560669456067137 0.24911938998546557
+0.12205379862607964 0.451882845188288 0.12205379862607964 0.451882845188288 0.24950650718557407
+0.12205379862607692 0.45606694560670163 0.12205379862607692 0.45606694560670163 0.25034496413794427
+0.11527303203572076 0.4728033472803645 0.11527303203572074 0.4728033472803645 0.2493915715162789
+0.11527303203569805 0.4769874476988 0.11527303203569805 0.4769874476988 0.24965886939520718
+0.11866341533090331 0.46234309623432157 0.11866341533090331 0.46234309623432157 0.24992361404558364
+0.11866341533089597 0.4665271966527392 0.11866341533089597 0.4665271966527392 0.25044640679507585
+0.11866341533088638 0.4707112970711616 0.11866341533088638 0.4707112970711616 0.25091538227217575
+0.11527303203564587 0.4811715481172441 0.11527303203564587 0.4811715481172441 0.24988410146025
+0.11527303203556483 0.4853556485356651 0.11527303203556483 0.4853556485356651 0.2500663537199355
+0.11188264874046067 0.49163179916316674 0.11188264874046068 0.49163179916316674 0.24835373094407773
+0.11527303203550636 0.4895397489539856 0.11527303203550636 0.4895397489539856 0.2502044930196483
+0.11188264874055626 0.4958158995815631 0.11188264874055624 0.4958158995815631 0.24839308800657148
+0.11188264874061539 0.5000000000000498 0.11188264874061539 0.5000000000000498 0.2484064456792836
+0.11188264874058702 0.5041841004185428 0.11188264874058702 0.5041841004185428 0.24839375443620962
+0.2856621147704629 0.26759559579536724 0.2856621147704628 0.26759559579536724 0.15292079717096677
+0.2851582981447573 0.2711917720054848 0.2851582981447573 0.2711917720054848 0.15194919283489314
+0.3000734706909381 0.24558698893514594 0.3000734706909381 0.24558698893514594 0.1748523271072562
+0.2899911544978058 0.25898963204079445 0.2899911544978058 0.25898963204079445 0.1593614920337021
+0.2992038279581018 0.2491040723821882 0.2992038279581018 0.2491040723821882 0.17296575379959367
+0.29344350282372333 0.25765085559549994 0.2934435028237234 0.25765085559549994 0.16405617098469985
+0.2981269625745651 0.25266101794544044 0.2981269625745651 0.25266101794544044 0.17092033248046204
+0.2971380730800589 0.25629963172484227 0.29713807308005885 0.25629963172484227 0.16913283368675827
+0.289611682359596 0.2626542032652856 0.289611682359596 0.2626542032652856 0.15848190771465745
+0.28917225513141126 0.2662827208700874 0.28917225513141126 0.2662827208700875 0.1575513955440908
+0.316823808305134 0.22518682221147157 0.316823808305134 0.2251868222114716 0.20406186340575186
+0.3050252740027751 0.23748729008956498 0.3050252740027752 0.237487290089565 0.18366190209641897
+0.31556866968518443 0.22797362309288666 0.31556866968518443 0.22797362309288663 0.2011911103666418
+0.30836754719528037 0.23642200107851138 0.3083675471952803 0.23642200107851138 0.1884286840016023
+0.315042738176016 0.23129385112086462 0.31504273817601597 0.23129385112086462 0.19907412733266416
+0.311625772269025 0.23538449978465037 0.311625772269025 0.23538449978465037 0.19308364352193805
+0.3140003533517848 0.2338770441519672 0.3140003533517848 0.23387704415196717 0.19669034886725048
+0.30435131658290315 0.2410641413471088 0.3043513165829031 0.24106414134710882 0.18167148563504346
+0.30359402700145993 0.24459888979741962 0.30359402700145993 0.24459888979741962 0.17975486969840462
+0.3285303928629506 0.21316945871179094 0.3285303928629506 0.21316945871179094 0.22503413852689372
+0.33476761303220387 0.20335201151354665 0.33476761303220387 0.20335201151354668 0.23763530709004008
+0.3326865964844355 0.20669029532542282 0.3326865964844355 0.20669029532542282 0.2335029283961316
+0.3305974446002519 0.20997976193270276 0.3305974446002519 0.20997976193270276 0.2292687418660422
+0.32028861188048857 0.21909618710514156 0.32028861188048857 0.21909618710514156 0.21157231463224505
+0.32214007993112037 0.21637346946839636 0.3221400799311204 0.21637346946839633 0.21542982540095415
+0.3263477879596446 0.2164280181038903 0.3263477879596446 0.2164280181038903 0.22060533431537466
+0.3306352279529168 0.2163948868918696 0.3306352279529168 0.21639488689186956 0.22589218501799715
+0.32128818606580917 0.22192837722973074 0.32128818606580917 0.22192837722973074 0.2113195976682062
+0.3205626632880454 0.22461652507360108 0.3205626632880454 0.2246165250736011 0.2091177629100407
+0.35565091050508696 0.18307939362015746 0.35565091050508696 0.18307939362015746 0.26489036780769754
+0.3535649773159868 0.18646669428707666 0.3535649773159868 0.18646669428707666 0.2627781372543229
+0.351478669798579 0.1898508934212603 0.351478669798579 0.1898508934212603 0.26027319246835123
+0.34311785808074746 0.19661229120030219 0.34311785808074746 0.19661229120030219 0.24984758983500263
+0.34939172922754397 0.19322974377404958 0.34939172922754397 0.19322974377404958 0.25740824084270825
+0.34731147992929484 0.1965998822837026 0.34731147992929484 0.1965998822837026 0.2542301408317864
+0.34104389132839436 0.19998050705004497 0.34104389132839436 0.19998050705004497 0.24623329384558043
+0.33897584733780706 0.20335122007769627 0.33897584733780706 0.20335122007769627 0.2424070402162302
+0.3870292887029029 0.15934801487294026 0.38702928870290293 0.15934801487294026 0.27172735854769986
+0.38493723849369776 0.1627383981681092 0.38493723849369776 0.1627383981681092 0.27394381801462014
+0.38284518828449265 0.16612878146327814 0.3828451882844926 0.16612878146327814 0.2757318040669156
+0.38075313807528754 0.16951916475844708 0.38075313807528754 0.16951916475844708 0.277061752655181
+0.37866108786608244 0.17290954805361602 0.3786610878660825 0.17290954805361602 0.27791264942447014
+0.3765690376568773 0.17629993134878497 0.3765690376568773 0.17629993134878497 0.27827237786262443
+0.36192470779960256 0.17969025317257623 0.36192470779960256 0.17969025317257623 0.269753652520682
+0.3661088142200019 0.17969023609719348 0.3661088142200019 0.17969023609719348 0.272750438328283
+0.3702929012339697 0.17969027423221484 0.3702929012339697 0.17969027423221484 0.2755538476913894
+0.37447700916905485 0.17969030742483824 0.37447700916905485 0.17969030742483824 0.27813784164083116
+0.35983472300009883 0.18307891792620715 0.35983472300009883 0.18307891792620715 0.26830842855826464
+0.3933054393305182 0.15595763157777132 0.3933054393305182 0.15595763157777132 0.2691786441637252
+0.3912133891213131 0.15934801487294026 0.39121338912131304 0.15934801487294026 0.27211744086473194
+0.3974895397489284 0.15595763157777132 0.3974895397489284 0.15595763157777132 0.26891421684557343
+0.42677824267779996 0.13561533180675767 0.4267782426778 0.13561533180675767 0.23270702825705825
+0.42468619246859485 0.1390057151019266 0.4246861924685948 0.1390057151019266 0.23805483780583106
+0.42259414225938974 0.14239609839709555 0.42259414225938974 0.14239609839709555 0.2434442465696133
+0.42050209205018463 0.1457864816922645 0.4205020920501847 0.1457864816922645 0.24880927930850597
+0.4184100418409795 0.14917686498743343 0.41841004184097946 0.14917686498743343 0.2540813882899231
+0.40167364016733864 0.15595763157777132 0.4016736401673386 0.15595763157777132 0.26829928728347857
+0.40585774058574886 0.15595763157777132 0.40585774058574886 0.15595763157777132 0.26730593195486413
+0.4121338912133642 0.15256724828260237 0.41213389121336425 0.15256724828260237 0.26133503460063384
+0.4163179916317744 0.15256724828260237 0.41631799163177435 0.15256724828260237 0.2591916728281966
+0.4100418410041591 0.15595763157777132 0.41004184100415914 0.15595763157777132 0.26590625680091723
+0.44769874476985105 0.12883456521641978 0.44769874476985105 0.12883456521641978 0.20363739187843807
+0.4330543933054153 0.13222494851158872 0.43305439330541523 0.13222494851158872 0.22348029577743708
+0.4372384937238255 0.13222494851158872 0.43723849372382556 0.13222494851158872 0.21912285962470726
+0.4414225941422357 0.13222494851158872 0.44142259414223567 0.13222494851158872 0.2143786244819512
+0.44560669456064594 0.13222494851158872 0.445606694560646 0.13222494851158872 0.2092387878243769
+0.4309623430962102 0.13561533180675767 0.4309623430962102 0.13561533180675767 0.22890363107206904
+0.46861924686190215 0.1220537986260819 0.4686192468619021 0.1220537986260819 0.1683019960969561
+0.4539748953974664 0.12544418192125084 0.45397489539746644 0.12544418192125084 0.1926299174881139
+0.4581589958158766 0.12544418192125084 0.45815899581587655 0.12544418192125084 0.18659091994438903
+0.4623430962342868 0.12544418192125084 0.4623430962342869 0.12544418192125084 0.1801884921145336
+0.46652719665269704 0.12544418192125084 0.466527196652697 0.12544418192125084 0.17342380111207548
+0.4518828451882613 0.12883456521641978 0.4518828451882612 0.12883456521641978 0.19802054393612065
+0.4748953974895175 0.11866341533091296 0.4748953974895174 0.11866341533091296 0.15640939023629666
+0.4790794979079277 0.11866341533091296 0.47907949790792775 0.11866341533091296 0.14900094668400102
+0.4832635983263379 0.11866341533091296 0.48326359832633786 0.11866341533091296 0.14127027774846287
+0.47280334728031237 0.1220537986260819 0.47280334728031237 0.1220537986260819 0.16120147545232655
+0.5062761506275941 0.10171149885506825 0.5062761506275941 0.10171149885506825 0.09483112416481239
+0.4999999999999788 0.10510188215023719 0.49999999999997874 0.10510188215023719 0.10782546798588862
+0.504184100418389 0.10510188215023719 0.504184100418389 0.10510188215023719 0.09909785770339126
+0.48744769874474814 0.11866341533091296 0.4874476987447482 0.11866341533091296 0.13322323186871823
+0.4979079497907737 0.10849226544540613 0.4979079497907737 0.10849226544540613 0.11198227457822707
+0.4958158995815686 0.11188264874057507 0.49581589958156863 0.11188264874057507 0.11617052435138629
+0.49372384937236347 0.11527303203574402 0.4937238493723635 0.11527303203574402 0.12044637075067237
+0.49163179916315836 0.11866341533091296 0.4916317991631583 0.11866341533091296 0.12486742833520335
+0.5104602510460043 0.10171149885506825 0.5104602510460045 0.10171149885506825 0.08568958114668895
+0.5146443514644146 0.10171149885506825 0.5146443514644146 0.10171149885506825 0.07622977700430689
+0.5209205020920299 0.09832111555989931 0.5209205020920299 0.09832111555989931 0.06171897854440223
+0.5188284518828248 0.10171149885506825 0.5188284518828247 0.10171149885506825 0.06646413575890597
+0.5251046025104401 0.09832111555989931 0.5251046025104401 0.09832111555989931 0.05152158077777385
+0.5313807531380554 0.09493073226473037 0.5313807531380554 0.09493073226473037 0.035852821063770655
+0.5292887029288503 0.09832111555989931 0.5292887029288503 0.09832111555989931 0.041081800512495
+0.5376569037656708 0.09154034896956142 0.5376569037656708 0.09154034896956142 0.019624450368181067
+0.5355648535564657 0.09493073226473037 0.5355648535564655 0.09493073226473037 0.025145095462968847
+0.5753138075313627 0.050855749427534125 0.5753138075313627 0.050855749427534125 0.07795888576957395
+0.5690376569037474 0.054246132722703067 0.5690376569037473 0.054246132722703067 0.06319262485142123
+0.5732217573221576 0.054246132722703067 0.5732217573221576 0.054246132722703067 0.07434195914130774
+0.5669456066945423 0.05763651601787201 0.5669456066945423 0.05763651601787201 0.058964679974646404
+0.5648535564853372 0.06102689931304095 0.5648535564853372 0.06102689931304095 0.05442708223149117
+0.5627615062761321 0.06441728260820989 0.5627615062761321 0.06441728260820989 0.04959688667077527
+0.5564853556485168 0.06780766590337883 0.5564853556485168 0.06780766590337883 0.03257013765958219
+0.5543933054393116 0.07119804919854777 0.5543933054393116 0.07119804919854777 0.027139874693348987
+0.5523012552301065 0.07458843249371672 0.5523012552301064 0.07458843249371672 0.021583838828315383
+0.5502092050209014 0.07797881578888566 0.5502092050209014 0.07797881578888566 0.015995183786453985
+0.5481171548116963 0.0813691990840546 0.5481171548116963 0.0813691990840546 0.010572435551459694
+0.5460251046024912 0.08475958237922354 0.5460251046024912 0.08475958237922354 0.006058225738206615
+0.5439330543932861 0.08814996567439248 0.5439330543932862 0.08814996567439248 0.005598203990367729
+0.541841004184081 0.09154034896956142 0.541841004184081 0.09154034896956142 0.009701636224308719
+0.560669456066927 0.06780766590337883 0.5606694560669271 0.06780766590337883 0.04450268686854123
+0.5857740585773883 0.0406845995420273 0.5857740585773882 0.0406845995420273 0.09672439870028277
+0.5899581589957985 0.0406845995420273 0.5899581589957985 0.0406845995420273 0.10634089505760179
+0.5836820083681832 0.04407498283719624 0.5836820083681832 0.04407498283719624 0.09435365226547383
+0.5815899581589781 0.04746536613236518 0.5815899581589781 0.04746536613236518 0.09171337481122467
+0.579497907949773 0.050855749427534125 0.579497907949773 0.050855749427534125 0.0887607160804631
+0.6108786610878496 0.013561533180675767 0.6108786610878497 0.013561533180675767 0.12786736223008674
+0.6087866108786445 0.01695191647584471 0.6087866108786445 0.01695191647584471 0.12578121819803334
+0.6066945606694394 0.02034229977101365 0.6066945606694394 0.02034229977101365 0.12397019174731803
+0.6046025104602343 0.02373268306618259 0.6046025104602343 0.02373268306618259 0.12239689919432149
+0.6025104602510292 0.027123066361351533 0.6025104602510291 0.027123066361351533 0.12100592864243664
+0.6004184100418241 0.030513449656520475 0.6004184100418241 0.030513449656520475 0.11972810057981066
+0.598326359832619 0.03390383295168942 0.598326359832619 0.03390383295168942 0.11848543071339505
+0.5962343096234138 0.03729421624685836 0.5962343096234138 0.03729421624685836 0.11719623502952249
+0.5941422594142087 0.0406845995420273 0.5941422594142088 0.0406845995420273 0.11577990322596164
+0.6171548117154649 0.010171149885506825 0.6171548117154649 0.010171149885506825 0.1369508449660408
+0.6150627615062598 0.013561533180675767 0.6150627615062598 0.013561533180675767 0.13473602155565564
+0.6234309623430803 0.006780766590337883 0.6234309623430803 0.006780766590337883 0.14584874155504388
+0.6213389121338752 0.010171149885506825 0.6213389121338752 0.010171149885506825 0.14345481779799887
+0.6276150627614905 0.006780766590337883 0.6276150627614906 0.006780766590337883 0.15203558544218032
+0.006780766590337709 0.6317991631799158 0.006780766590337709 0.6317991631799158 0.18639052896520147
+0.006780766590337709 0.6359832635983258 0.006780766590337709 0.6359832635983258 0.18375667674450932
+0.01017114988550656 0.6255230125523008 0.01017114988550656 0.6255230125523008 0.19075602286976612
+0.01017114988550656 0.6297071129707108 0.01017114988550656 0.6297071129707108 0.18811455178749634
+0.013561533180675408 0.6192468619246858 0.013561533180675408 0.6192468619246858 0.19527002941432525
+0.013561533180675408 0.6234309623430958 0.013561533180675408 0.6234309623430958 0.19266224044282845
+0.016951916475844264 0.6129707112970708 0.016951916475844264 0.6129707112970708 0.1998802877220178
+0.016951916475844264 0.6171548117154808 0.016951916475844264 0.6171548117154808 0.19734882775449525
+0.02034229977101312 0.6108786610878658 0.02034229977101312 0.6108786610878658 0.20211233364240733
+0.02373268306618197 0.6087866108786608 0.02373268306618197 0.6087866108786608 0.20451142044315015
+0.027123066361350822 0.6066945606694558 0.027123066361350822 0.6066945606694558 0.20706102943879098
+0.030513449656519673 0.6046025104602508 0.030513449656519673 0.6046025104602508 0.2097382261441069
+0.033903832951688535 0.6025104602510458 0.033903832951688535 0.6025104602510458 0.21251432849331084
+0.03729421624685738 0.6004184100418408 0.03729421624685738 0.6004184100418408 0.2153558541529146
+0.040684599542026224 0.5941422594142258 0.040684599542026224 0.5941422594142258 0.22023885054300507
+0.0440749828371951 0.5920502092050208 0.0440749828371951 0.5920502092050208 0.22299503946400354
+0.05424613272270165 0.5774058577405858 0.054246132722701644 0.5774058577405858 0.23316979453551132
+0.06102689931303934 0.5690376569037658 0.06102689931303934 0.5690376569037658 0.23757316578237755
+0.06441728260820821 0.5669456066945608 0.06441728260820821 0.5669456066945608 0.23900374244627123
+0.0711980491985459 0.5585774058577408 0.0711980491985459 0.5585774058577408 0.2412800644307644
+0.07458843249371476 0.5564853556485359 0.07458843249371476 0.5564853556485359 0.24197021026708335
+0.07797881578888362 0.5543933054393309 0.07797881578888362 0.5543933054393309 0.24249165536297554
+0.08136919908405248 0.5481171548117159 0.08136919908405248 0.5481171548117159 0.24261417760342271
+0.08475958237922131 0.5460251046025109 0.08475958237922131 0.5460251046025109 0.2428698905950635
+0.08814996567439014 0.5439330543933059 0.08814996567439014 0.5439330543933059 0.2430903646271144
+0.08136919908405248 0.5523012552301259 0.08136919908405248 0.5523012552301259 0.24287466464567917
+0.06780766590337706 0.5648535564853558 0.06780766590337706 0.5648535564853558 0.24021468451722758
+0.0711980491985459 0.5627615062761508 0.0711980491985459 0.5627615062761508 0.24120870588238708
+0.05763651601787049 0.5753138075313808 0.05763651601787049 0.5753138075313808 0.23516147343909924
+0.06102689931303934 0.5732217573221758 0.06102689931303934 0.5732217573221758 0.2369509211193053
+0.04746536613236394 0.5857740585774058 0.04746536613236394 0.5857740585774058 0.2272828251745231
+0.04746536613236394 0.5899581589958158 0.04746536613236394 0.5899581589958158 0.2256887367603114
+0.05085574942753279 0.5836820083682008 0.05085574942753279 0.5836820083682008 0.22974270937880467
+0.05424613272270165 0.5815899581589958 0.054246132722701644 0.5815899581589958 0.23205724292978588
+0.040684599542026224 0.5983263598326358 0.040684599542026224 0.5983263598326358 0.21822568919616317
+0.10171149885507902 0.5230125523012419 0.10171149885507902 0.5230125523012418 0.24426211858914607
+0.10171149885507458 0.5271966527196734 0.10171149885507458 0.5271966527196734 0.24438022003096593
+0.10510188215024789 0.5209205020920141 0.10510188215024789 0.5209205020920141 0.24530924013423774
+0.10849226544540606 0.518828451882778 0.10849226544540606 0.518828451882778 0.24661607401886118
+0.11188264874051652 0.5083682008369249 0.11188264874051652 0.5083682008369249 0.24835506671350596
+0.11188264874049587 0.5125523012552139 0.11188264874049587 0.5125523012552139 0.24829050318914783
+0.11188264874054642 0.516736401673545 0.11188264874054642 0.516736401673545 0.24820015375532378
+0.0915403489695585 0.5376569037656912 0.0915403489695585 0.5376569037656912 0.2430179837501242
+0.09493073226472694 0.5355648535564872 0.09493073226472694 0.5355648535564872 0.2433636918286998
+0.09832111555989566 0.5334728033472852 0.09832111555989566 0.5334728033472852 0.2438424844165827
+0.10171149885506585 0.5313807531380853 0.10171149885506585 0.5313807531380853 0.24450119914035726
+0.09154034896955887 0.5418410041841007 0.09154034896955887 0.5418410041841007 0.24332424041439824
+0.2847037252222442 0.274779698135179 0.2847037252222442 0.27477969813517905 0.1510051170783934
+0.2601590189642964 0.28929319165245765 0.2601590189642964 0.28929319165245765 0.12257303378466776
+0.2843301061068457 0.27835063635874285 0.2843301061068457 0.27835063635874285 0.15009370803664482
+0.28083188872018133 0.2797980027563469 0.28083188872018133 0.2797980027563469 0.14570107020465295
+0.27737616770378737 0.2813255728993171 0.27737616770378737 0.2813255728993171 0.1414536587441416
+0.27398287998100795 0.28291496755858586 0.27398287998100795 0.28291496755858586 0.1373973858446016
+0.27060530173549324 0.28451171672391035 0.27060530173549324 0.28451171672391035 0.13350329398368913
+0.26720854583394166 0.2861079690300432 0.26720854583394166 0.2861079690300432 0.12975099108733842
+0.2637542075737309 0.28769183429435574 0.2637542075737309 0.28769183429435574 0.12612336961876006
+0.2376843985672384 0.3059380770963171 0.23768439856723836 0.3059380770963171 0.11025060025134285
+0.24059112923741263 0.30423391832153174 0.24059112923741263 0.30423391832153174 0.11082520761991689
+0.24370504994808684 0.3024607613080853 0.24370504994808684 0.30246076130808536 0.11183467614927874
+0.2468846346429603 0.30063762899214685 0.2468846346429603 0.30063762899214685 0.11323928508138485
+0.25004274968976575 0.2987722417627164 0.25004274968976575 0.2987722417627164 0.11498138360024916
+0.25986092601991856 0.2930682663778775 0.25986092601991856 0.2930682663778775 0.12245706035210878
+0.2563670430903079 0.2949842577832501 0.25636704309030783 0.29498425778325016 0.11944843837073237
+0.25319230880490506 0.29687580236930095 0.25319230880490506 0.29687580236930095 0.11704917611917191
+0.2165875519946131 0.3263479742178667 0.21658755199461313 0.3263479742178667 0.12285575740897235
+0.21978725220723533 0.32407072342354765 0.2197872522072353 0.32407072342354765 0.1201588619540258
+0.22230894788034788 0.32270043438799895 0.22230894788034788 0.32270043438799895 0.118577811146984
+0.2238928237095068 0.31958131891735764 0.2238928237095068 0.3195813189173577 0.11611227457362429
+0.2271153559928216 0.3170557592977713 0.2271153559928216 0.31705575929777124 0.11421827490219073
+0.23015110577641598 0.31494796693079047 0.23015110577641598 0.31494796693079047 0.11301499039629635
+0.2375717696022287 0.30875980148553317 0.23757176960222867 0.30875980148553317 0.11136276764157896
+0.23301889418714616 0.312953531677296 0.23301889418714614 0.312953531677296 0.1122682288348069
+0.23576650567041046 0.31105592454352154 0.23576650567041044 0.31105592454352154 0.111907292565372
+0.19659873860972665 0.34310157088353704 0.19659873860972665 0.34310157088353704 0.14822881976063187
+0.19996216736388575 0.34101092289751705 0.19996216736388575 0.34101092289751705 0.14421148886726295
+0.20331460890025957 0.33890824058782126 0.20331460890025957 0.33890824058782126 0.14029559767732114
+0.20664692285291153 0.3367861399911995 0.20664692285291153 0.3367861399911995 0.13651412895070128
+0.20995714376337182 0.334638820677974 0.20995714376337182 0.334638820677974 0.13289494442605723
+0.21330528588753386 0.3324430227154554 0.21330528588753386 0.3324430227154554 0.1294367545335763
+0.21697629003369032 0.33037727951908463 0.2169762900336903 0.33037727951908463 0.126305115061874
+0.17969031037304367 0.3619246955442994 0.17969031037304364 0.3619246955442994 0.17803470025968895
+0.18308009929027938 0.35983224458882895 0.18308009929027938 0.35983224458882895 0.17396001632065208
+0.1864670484363978 0.353555040385842 0.1864670484363978 0.353555040385842 0.1652077469239506
+0.1898488721306911 0.3514625262701326 0.1898488721306911 0.3514625262701326 0.1610361214441497
+0.1864670990748807 0.35773846364731215 0.1864670990748807 0.35773846364731215 0.16982479481816679
+0.19322236382084398 0.34937099449647446 0.19322236382084398 0.34937099449647446 0.15686871370420163
+0.19658827122539804 0.34728019763946155 0.19658827122539804 0.34728019763946155 0.15273261416952688
+0.16612878146327736 0.37866108786610925 0.16612878146327736 0.37866108786610925 0.20197727978591198
+0.1695191647584465 0.376569037656904 0.1695191647584465 0.376569037656904 0.19847592539814254
+0.1729095480536128 0.3702928870292854 0.1729095480536128 0.3702928870292854 0.19039733080900548
+0.1729095480536156 0.3744769874476979 0.1729095480536156 0.3744769874476979 0.19483879542393587
+0.17629993068828217 0.3682008633471347 0.17629993068828217 0.3682008633471347 0.1865574600485298
+0.17969021702109003 0.36610887785651225 0.17969021702109003 0.36610887785651225 0.18261323080798575
+0.14917686498743277 0.39748953974895457 0.14917686498743277 0.39748953974895457 0.22423539819201985
+0.14917686498743277 0.4016736401673646 0.14917686498743277 0.4016736401673646 0.2275719017743114
+0.15256724828260168 0.39539748953974957 0.15256724828260168 0.39539748953974957 0.2217968215900669
+0.15595763157777057 0.39330543933054457 0.15595763157777057 0.39330543933054457 0.2191925088603973
+0.1593480148729395 0.38702928870292946 0.1593480148729395 0.38702928870292946 0.2125144427763013
+0.15934801487293948 0.3912133891213395 0.15934801487293948 0.39121338912133957 0.21642049605609184
+0.16273839816810837 0.3849372384937244 0.16273839816810834 0.3849372384937244 0.20943181966756716
+0.16612878146327725 0.3828451882845193 0.16612878146327725 0.38284518828451924 0.20619276204385759
+0.13900571510192608 0.41631799163179983 0.13900571510192608 0.4163179916317999 0.23852909824050975
+0.142396098397095 0.4142259414225948 0.142396098397095 0.4142259414225948 0.23720185034658492
+0.14578648169226388 0.4079497907949797 0.14578648169226385 0.40794979079497967 0.23271923406832382
+0.14917686498743277 0.4058577405857747 0.14917686498743277 0.4058577405857747 0.2308339298368751
+0.14578648169226385 0.4121338912133898 0.14578648169226385 0.4121338912133898 0.235705545744653
+0.13900571510192605 0.42050209205020994 0.13900571510192605 0.42050209205021 0.24099210994130105
+0.13222494851158828 0.43305439330544004 0.13222494851158828 0.43305439330544004 0.24644371103860685
+0.13900571510192608 0.42468619246862 0.13900571510192608 0.42468619246862 0.2433803137044683
+0.13561533180675714 0.43096234309623505 0.13561533180675714 0.43096234309623505 0.24614663483147184
+0.13900571510192603 0.42887029288703005 0.13900571510192603 0.42887029288703005 0.24570018421662618
+0.1322249485115881 0.4372384937238505 0.1322249485115881 0.4372384937238505 0.2481971275814683
+0.12205379862607141 0.46025104602511835 0.12205379862607142 0.46025104602511835 0.2511216107776679
+0.12883456521641867 0.4435146443514662 0.12883456521641867 0.4435146443514662 0.2495512025217557
+0.13222494851158761 0.4414225941422612 0.13222494851158761 0.4414225941422612 0.2498803429897544
+0.1254441819212486 0.4497907949790829 0.1254441819212486 0.44979079497908286 0.25024744360623147
+0.12883456521641753 0.4476987447698779 0.12883456521641753 0.44769874476987787 0.25091756128314774
+0.12544418192124587 0.4539748953974967 0.12544418192124587 0.4539748953974967 0.2513085242401473
+0.12544418192124002 0.4581589958159144 0.12544418192124 0.4581589958159144 0.2523020367371271
+0.1186634153308675 0.4748953974895976 0.11866341533086748 0.4748953974895976 0.25132918121277337
+0.1186634153308187 0.47907949790805343 0.1186634153308187 0.47907949790805343 0.25168567339408415
+0.1220537986260621 0.46443514644353834 0.1220537986260621 0.4644351464435383 0.25183582531936727
+0.12205379862605005 0.4686192468619618 0.12205379862605005 0.4686192468619618 0.25248548960418654
+0.12205379862603284 0.47280334728039564 0.12205379862603284 0.4728033472803956 0.2530673493617017
+0.11866341533072255 0.4832635983265074 0.11866341533072255 0.4832635983265074 0.2519823136998998
+0.11866341533060641 0.4874476987449067 0.11866341533060641 0.48744769874490673 0.2522164824791479
+0.11527303203564211 0.49372384937234154 0.11527303203564211 0.49372384937234154 0.2502974240715226
+0.11866341533066835 0.4916317991631354 0.11866341533066836 0.49163179916313543 0.2523857918174193
+0.11527303203576701 0.49790794979079384 0.11527303203576701 0.49790794979079384 0.25034429602833863
+0.11527303203579294 0.5020920502093339 0.11527303203579294 0.5020920502093339 0.25034464693298375
+0.1152730320357125 0.5062761506277951 0.1152730320357125 0.5062761506277952 0.250298477987177
+0.2887029970361638 0.2698830344930308 0.2887029970361638 0.2698830344930308 0.15657811620235293
+0.2882454614513806 0.2734461146064617 0.2882454614513806 0.2734461146064617 0.15558313663444437
+0.30279266961464696 0.24813940683020475 0.30279266961464696 0.24813940683020475 0.17792784404780868
+0.2930900274628148 0.26133108135165034 0.2930900274628148 0.26133108135165034 0.16316798951477918
+0.3019229796680924 0.25168113413358617 0.3019229796680924 0.2516811341335861 0.1761357747808806
+0.2966447530607569 0.2600374168716095 0.29664475306075694 0.2600374168716095 0.16800338564705353
+0.3010487216883491 0.2552481192040614 0.3010487216883491 0.2552481192040614 0.17444625180741583
+0.3003093044997892 0.25885426663498406 0.30030930449978926 0.25885426663498406 0.17300725092843316
+0.2926662216244499 0.26497320790356643 0.29266622162444994 0.26497320790356643 0.16222048795065222
+0.29220751208162854 0.26857862309594066 0.29220751208162854 0.26857862309594066 0.16122243271270095
+0.3191912568905324 0.22768378959128624 0.3191912568905324 0.22768378959128624 0.2059765448503854
+0.3077890802369003 0.2399853773375825 0.3077890802369003 0.2399853773375825 0.18653431673136134
+0.3181625222238109 0.23068091535220805 0.3181625222238109 0.23068091535220805 0.2034113048230974
+0.31124038542818294 0.2388421982783867 0.31124038542818294 0.23884219827838668 0.19144745670459926
+0.3170273847148619 0.234104472308786 0.3170273847148619 0.23410447230878598 0.20061388452190745
+0.3148148862832402 0.2372854809353046 0.3148148862832402 0.23728548093530463 0.19669716428237055
+0.30712254842714753 0.24358160691788683 0.30712254842714753 0.24358160691788686 0.1846912654561438
+0.3063721715132665 0.24714008484561278 0.3063721715132665 0.24714008484561276 0.1829028666270748
+0.33266760633350173 0.21336311776440534 0.33266760633350173 0.21336311776440534 0.22998088268211903
+0.33690493812419614 0.20672881845506333 0.33690493812419614 0.20672881845506333 0.23840260987259732
+0.33480945054724337 0.2100699249772279 0.33480945054724337 0.2100699249772279 0.234245327588851
+0.32412247640617387 0.2199122936969756 0.3241224764061738 0.21991229369697557 0.21606675408438433
+0.3285477999526121 0.21945151856184833 0.3285477999526121 0.21945151856184833 0.22178486896943075
+0.33184580961732435 0.2192242588725719 0.33184580961732435 0.2192242588725719 0.22595729665345704
+0.3345012460295037 0.21709375692073585 0.33450124602950376 0.21709375692073585 0.2303922195515775
+0.32376488614567506 0.22357910985555057 0.32376488614567506 0.2235791098555506 0.21371824939059128
+0.32271292435691923 0.2270061045954555 0.3227129243569192 0.22700610459545548 0.21081170692413084
+0.35774910555451084 0.1864642179155415 0.35774910555451084 0.1864642179155415 0.2664336052124047
+0.3556638259027875 0.18984526742490535 0.3556638259027875 0.18984526742490535 0.2641523626266759
+0.353579907181852 0.19322177273203653 0.353579907181852 0.19322177273203653 0.2614981328949018
+0.3452423720576372 0.19995941438617204 0.3452423720576372 0.19995941438617204 0.2507887442047965
+0.3515024512259249 0.19658854671885462 0.3515024512259249 0.19658854671885462 0.2585157053181111
+0.3494344704627252 0.19993896268647518 0.3494344704627252 0.19993896268647518 0.25525395462996703
+0.3431845184574413 0.20331961106122856 0.3431845184574413 0.20331961106122856 0.24712782311506773
+0.34112898588171325 0.20671664052589275 0.34112898588171325 0.20671664052589275 0.24327090340178828
+0.389121338912108 0.1627383981681092 0.389121338912108 0.1627383981681092 0.2746669595704672
+0.3870292887029029 0.16612878146327814 0.38702928870290293 0.16612878146327814 0.276787387443083
+0.38493723849369776 0.16951916475844708 0.38493723849369776 0.16951916475844708 0.27844692504858176
+0.38284518828449265 0.17290954805361602 0.3828451882844926 0.17290954805361602 0.27962240484090994
+0.38075313807528754 0.17629993134878497 0.38075313807528754 0.17629993134878497 0.28029968046584375
+0.37866120115835766 0.1796902981883969 0.37866120115835766 0.1796902981883969 0.280473856191464
+0.36401800059633943 0.18307906859587167 0.36401800059633943 0.18307906859587167 0.27156738962447197
+0.3682013422488854 0.18307981461491432 0.3682013422488854 0.18307981461491432 0.27464478435350476
+0.37238518099377643 0.18308043177494934 0.37238518099377643 0.18308043177494934 0.2775149232209972
+0.37656968293619225 0.18308052642707331 0.37656968293619225 0.18308052642707331 0.2801492642277921
+0.3619285682458458 0.18646637898955887 0.3619285682458458 0.18646637898955887 0.2699378994487422
+0.3953974895397233 0.15934801487294026 0.39539748953972337 0.15934801487294026 0.27218570178318163
+0.3933054393305182 0.1627383981681092 0.3933054393305182 0.1627383981681092 0.2750713872928688
+0.39958158995813353 0.15934801487294026 0.3995815899581335 0.15934801487294026 0.2719035006290808
+0.42887029288700507 0.1390057151019266 0.4288702928870051 0.1390057151019266 0.2344505893497316
+0.42677824267779996 0.14239609839709555 0.4267782426778 0.14239609839709555 0.24006066664365885
+0.42468619246859485 0.1457864816922645 0.4246861924685948 0.1457864816922645 0.24566791363109772
+0.42259414225938974 0.14917686498743343 0.42259414225938974 0.14917686498743343 0.2512032593884675
+0.42050209205018463 0.15256724828260237 0.4205020920501847 0.15256724828260237 0.2565967777568097
+0.40376569037654375 0.15934801487294026 0.4037656903765438 0.15934801487294026 0.2712415672776642
+0.40794979079495397 0.15934801487294026 0.4079497907949539 0.15934801487294026 0.2701705613774761
+0.4142259414225693 0.15595763157777132 0.4142259414225693 0.15595763157777132 0.2640729500990238
+0.4184100418409795 0.15595763157777132 0.41841004184097946 0.15595763157777132 0.2617798155513156
+0.4121338912133642 0.15934801487294026 0.41213389121336425 0.15934801487294026 0.26866162728760606
+0.44979079497905616 0.13222494851158872 0.4497907949790561 0.13222494851158872 0.20369697785733556
+0.4351464435146204 0.13561533180675767 0.43514644351462034 0.13561533180675767 0.2247050936780726
+0.4393305439330306 0.13561533180675767 0.4393305439330306 0.13561533180675767 0.2200991779536051
+0.44351464435144083 0.13561533180675767 0.4435146443514409 0.13561533180675767 0.2150759893049047
+0.44769874476985105 0.13561533180675767 0.44769874476985105 0.13561533180675767 0.20962823895410984
+0.4330543933054153 0.1390057151019266 0.43305439330541523 0.1390057151019266 0.23043251539497023
+0.47071129707110726 0.12544418192125084 0.4707112970711073 0.12544418192125084 0.16630026284581848
+0.4560669456066715 0.12883456521641978 0.4560669456066715 0.12883456521641978 0.19202037262309943
+0.4602510460250817 0.12883456521641978 0.46025104602508177 0.12883456521641978 0.1856359978232924
+0.46443514644349193 0.12883456521641978 0.46443514644349193 0.12883456521641978 0.17886907404326793
+0.46861924686190215 0.12883456521641978 0.4686192468619021 0.12883456521641978 0.171723800751861
+0.4539748953974664 0.13222494851158872 0.45397489539746644 0.13222494851158872 0.19774943296640293
+0.4769874476987226 0.1220537986260819 0.47698744769872264 0.1220537986260819 0.15376288376624048
+0.4811715481171328 0.1220537986260819 0.4811715481171328 0.1220537986260819 0.14599234439530354
+0.485355648535543 0.1220537986260819 0.48535564853554297 0.1220537986260819 0.1378978893784363
+0.4748953974895175 0.12544418192125084 0.4748953974895174 0.12544418192125084 0.15882351756857818
+0.5083682008367992 0.10510188215023719 0.5083682008367992 0.10510188215023719 0.09005531291994262
+0.5020920502091839 0.10849226544540613 0.5020920502091838 0.10849226544540613 0.10331774324172936
+0.5062761506275941 0.10849226544540613 0.5062761506275941 0.10849226544540613 0.09434764521404106
+0.48953974895395325 0.1220537986260819 0.48953974895395325 0.1220537986260819 0.12948952824931825
+0.4999999999999788 0.11188264874057507 0.49999999999997874 0.11188264874057507 0.10753972740937544
+0.4979079497907737 0.11527303203574402 0.4979079497907737 0.11527303203574402 0.11181862945551609
+0.4958158995815686 0.11866341533091296 0.49581589958156863 0.11866341533091296 0.11621249358402487
+0.49372384937236347 0.1220537986260819 0.4937238493723635 0.1220537986260819 0.12077944163288969
+0.5125523012552095 0.10510188215023719 0.5125523012552095 0.10510188215023719 0.08070505641605975
+0.5167364016736197 0.10510188215023719 0.5167364016736197 0.10510188215023719 0.07106033024550008
+0.523012552301235 0.10171149885506825 0.523012552301235 0.10171149885506825 0.05641629449744511
+0.5209205020920299 0.10510188215023719 0.5209205020920299 0.10510188215023719 0.061144905717572424
+0.5271966527196452 0.10171149885506825 0.5271966527196453 0.10171149885506825 0.046132823503255004
+0.5334728033472605 0.09832111555989931 0.5334728033472605 0.09832111555989931 0.0305178433523822
+0.5313807531380554 0.10171149885506825 0.5313807531380554 0.10171149885506825 0.03571608599532954
+0.5397489539748759 0.09493073226473037 0.5397489539748759 0.09493073226473037 0.014880057876257994
+0.5376569037656708 0.09832111555989931 0.5376569037656708 0.09832111555989931 0.020196833898842723
+0.5774058577405679 0.054246132722703067 0.577405857740568 0.054246132722703067 0.08546512923640738
+0.5711297071129525 0.05763651601787201 0.5711297071129525 0.05763651601787201 0.07038659129667636
+0.5753138075313627 0.05763651601787201 0.5753138075313627 0.05763651601787201 0.0818090445722094
+0.5690376569037474 0.06102689931304095 0.5690376569037473 0.06102689931304095 0.0660934523873049
+0.5669456066945423 0.06441728260820989 0.5669456066945423 0.06441728260820989 0.0614756311360577
+0.5648535564853372 0.06780766590337883 0.5648535564853372 0.06780766590337883 0.05655829615429194
+0.5585774058577219 0.07119804919854777 0.5585774058577219 0.07119804919854777 0.039184741011968734
+0.5564853556485168 0.07458843249371672 0.5564853556485168 0.07458843249371672 0.03369618849371331
+0.5543933054393116 0.07797881578888566 0.5543933054393116 0.07797881578888566 0.028107149739663214
+0.5523012552301065 0.0813691990840546 0.5523012552301064 0.0813691990840546 0.022516799600236465
+0.5502092050209014 0.08475958237922354 0.5502092050209014 0.08475958237922354 0.01709021572578322
+0.5481171548116963 0.08814996567439248 0.5481171548116963 0.08814996567439248 0.012183286928445296
+0.5460251046024912 0.09154034896956142 0.5460251046024912 0.09154034896956142 0.008760319921802436
+0.5439330543932861 0.09493073226473037 0.5439330543932862 0.09493073226473037 0.008672501278361118
+0.5627615062761321 0.07119804919854777 0.5627615062761321 0.07119804919854777 0.051378420297320766
+0.5878661087865934 0.04407498283719624 0.5878661087865934 0.04407498283719624 0.1043390227452422
+0.5920502092050036 0.04407498283719624 0.5920502092050036 0.04407498283719624 0.11416101714713246
+0.5857740585773883 0.04746536613236518 0.5857740585773882 0.04746536613236518 0.10206621086611435
+0.5836820083681832 0.050855749427534125 0.5836820083681832 0.050855749427534125 0.09947309723695531
+0.5815899581589781 0.054246132722703067 0.5815899581589781 0.054246132722703067 0.09652282947226277
+0.6129707112970547 0.01695191647584471 0.6129707112970547 0.01695191647584471 0.13284125265236194
+0.6108786610878496 0.02034229977101365 0.6108786610878497 0.02034229977101365 0.1312527101174037
+0.6087866108786445 0.02373268306618259 0.6087866108786445 0.02373268306618259 0.12993415941653355
+0.6066945606694394 0.027123066361351533 0.6066945606694394 0.027123066361351533 0.12882984816653972
+0.6046025104602343 0.030513449656520475 0.6046025104602343 0.030513449656520475 0.1278687600635177
+0.6025104602510292 0.03390383295168942 0.6025104602510291 0.03390383295168942 0.1269696866902049
+0.6004184100418241 0.03729421624685836 0.6004184100418241 0.03729421624685836 0.12604652783114678
+0.598326359832619 0.0406845995420273 0.598326359832619 0.0406845995420273 0.12501331109951488
+0.5962343096234138 0.04407498283719624 0.5962343096234138 0.04407498283719624 0.12378857500729022
+0.61924686192467 0.013561533180675767 0.6192468619246699 0.013561533180675767 0.14139589187859317
+0.6171548117154649 0.01695191647584471 0.6171548117154649 0.01695191647584471 0.13968550986616435
+0.6255230125522854 0.010171149885506825 0.6255230125522854 0.010171149885506825 0.14976408837628916
+0.6234309623430803 0.013561533180675767 0.6234309623430803 0.013561533180675767 0.1478517387109948
+0.6317991631799007 0.006780766590337883 0.6317991631799007 0.006780766590337883 0.15805025025617014
+0.6297071129706956 0.010171149885506825 0.6297071129706956 0.010171149885506825 0.15589022115284526
+0.6359832635983109 0.006780766590337883 0.6359832635983108 0.006780766590337883 0.16391062139461712
+0.006780766590337709 0.6401673640167358 0.006780766590337709 0.6401673640167358 0.1811479728825165
+0.006780766590337709 0.6443514644351458 0.006780766590337709 0.6443514644351458 0.17858371502557957
+0.01017114988550656 0.6338912133891208 0.01017114988550656 0.6338912133891208 0.185468485468865
+0.01017114988550656 0.6380753138075308 0.01017114988550656 0.6380753138075308 0.18283752102446602
+0.013561533180675408 0.6276150627615058 0.013561533180675408 0.6276150627615058 0.1900196131997104
+0.013561533180675408 0.6317991631799158 0.013561533180675408 0.6317991631799158 0.18736126783973914
+0.016951916475844264 0.6213389121338908 0.016951916475844264 0.6213389121338908 0.1947527808031868
+0.016951916475844264 0.6255230125523008 0.016951916475844264 0.6255230125523008 0.19210977037914978
+0.02034229977101312 0.6150627615062758 0.02034229977101312 0.6150627615062758 0.19960801539995252
+0.02034229977101312 0.6192468619246858 0.02034229977101312 0.6192468619246858 0.19702626347681154
+0.02373268306618197 0.6129707112970708 0.02373268306618197 0.6129707112970708 0.20203903780809526
+0.027123066361350822 0.6108786610878658 0.027123066361350822 0.6108786610878658 0.2046268035201955
+0.030513449656519673 0.6087866108786608 0.030513449656519673 0.6087866108786608 0.20734989266951268
+0.033903832951688535 0.6066945606694558 0.033903832951688535 0.6066945606694558 0.21018108740026295
+0.03729421624685738 0.6046025104602508 0.03729421624685738 0.6046025104602508 0.21308818980720032
+0.040684599542026224 0.6025104602510458 0.040684599542026224 0.6025104602510458 0.2160350770749971
+0.0440749828371951 0.5962343096234308 0.0440749828371951 0.5962343096234308 0.22108441359422623
+0.04746536613236394 0.5941422594142258 0.04746536613236394 0.5941422594142258 0.22389171866298632
+0.05763651601787049 0.5794979079497908 0.05763651601787049 0.5794979079497908 0.2341956189153653
+0.06441728260820821 0.5711297071129708 0.06441728260820821 0.5711297071129708 0.23852206323290062
+0.06780766590337706 0.5690376569037658 0.06780766590337706 0.5690376569037658 0.2398664269787588
+0.07458843249371476 0.5606694560669458 0.07458843249371476 0.5606694560669458 0.24199704826111387
+0.07797881578888362 0.5585774058577408 0.07797881578888362 0.5585774058577408 0.24259948453367122
+0.08136919908405248 0.5564853556485359 0.08136919908405248 0.5564853556485359 0.24304403715795672
+0.08475958237922132 0.5502092050209209 0.08475958237922132 0.5502092050209209 0.24315674519259975
+0.08814996567439015 0.5481171548117159 0.08814996567439015 0.5481171548117159 0.24338161545011935
+0.09154034896955902 0.5460251046025107 0.09154034896955902 0.5460251046025107 0.24359784391968056
+0.08475958237922132 0.5543933054393309 0.08475958237922132 0.5543933054393309 0.24336638980577696
+0.0711980491985459 0.5669456066945608 0.0711980491985459 0.5669456066945608 0.24098372848192098
+0.07458843249371476 0.5648535564853558 0.07458843249371476 0.5648535564853558 0.24188222976930077
+0.06102689931303934 0.5774058577405858 0.06102689931303934 0.5774058577405858 0.2361325019106383
+0.06441728260820821 0.5753138075313808 0.06441728260820821 0.5753138075313808 0.23784907110256123
+0.05085574942753279 0.5878661087866108 0.05085574942753279 0.5878661087866108 0.2282809005129208
+0.05085574942753279 0.5920502092050208 0.05085574942753279 0.5920502092050208 0.2266078562263452
+0.05424613272270165 0.5857740585774058 0.054246132722701644 0.5857740585774058 0.23073496986479092
+0.05763651601787049 0.5836820083682008 0.05763651601787049 0.5836820083682008 0.23301821836198358
+0.0440749828371951 0.6004184100418408 0.0440749828371951 0.6004184100418408 0.2189829342811814
+0.10510188215025218 0.5251046025104613 0.10510188215025218 0.5251046025104613 0.24534721039262822
+0.10510188215023962 0.5292887029288865 0.10510188215023962 0.5292887029288865 0.24538189850088107
+0.10849226544543022 0.5230125523012342 0.10849226544543022 0.5230125523012342 0.2465744591203436
+0.1118826487406011 0.5209205020919867 0.1118826487406011 0.5209205020919868 0.2480839193093379
+0.1152730320356385 0.5104602510460865 0.1152730320356385 0.5104602510460864 0.25020625353008796
+0.11527303203566606 0.5146443514643384 0.11527303203566606 0.5146443514643383 0.2500688267261478
+0.11527303203575225 0.5188284518827214 0.11527303203575225 0.5188284518827214 0.2498872950715363
+0.09493073226472741 0.5397489539748955 0.09493073226472741 0.5397489539748955 0.24362256459828524
+0.09832111555989553 0.5376569037656911 0.09832111555989553 0.537656903765691 0.2440367758882199
+0.10171149885506325 0.5355648535564882 0.10171149885506325 0.5355648535564882 0.24461651219994549
+0.10510188215023135 0.5334728033472889 0.10510188215023135 0.5334728033472889 0.24540734363036118
+0.09493073226472785 0.5439330543933056 0.09493073226472785 0.5439330543933057 0.24385717015871908
+0.2878326360423121 0.2769775208440813 0.2878326360423121 0.2769775208440813 0.15457898110375187
+0.263491018141595 0.291355048272476 0.263491018141595 0.291355048272476 0.1258433091250464
+0.287470353207708 0.28047288635049816 0.2874703532077079 0.28047288635049816 0.153546493151423
+0.2840268295476384 0.28190002844143736 0.2840268295476384 0.2819000284414374 0.14917706668826655
+0.28059967248255446 0.2833969655297134 0.2805996724825545 0.28339696552971333 0.14492188850050114
+0.277197402983208 0.284947548035621 0.277197402983208 0.284947548035621 0.1408078117670577
+0.27381180366936064 0.28652832607951384 0.27381180366936064 0.2865283260795138 0.13684846753113492
+0.2704190261568768 0.2881215106564862 0.2704190261568768 0.2881215106564862 0.13303859179388589
+0.26699084111273275 0.2897207513389573 0.2669908411127327 0.2897207513389573 0.1293719038476888
+0.24055209505174963 0.30789831711762505 0.24055209505174965 0.30789831711762505 0.11211951783868425
+0.24374463607364105 0.3061238931524755 0.24374463607364105 0.3061238931524755 0.11295280380657609
+0.2470027561373465 0.30429077764095236 0.24700275613734649 0.3042907776409524 0.11418390891675188
+0.2502384318159263 0.3024311071969461 0.2502384318159263 0.3024311071969461 0.11577647145804508
+0.26335966561017804 0.2950281338642517 0.26335966561017804 0.2950281338642517 0.12565646829376553
+0.2534321894245736 0.30055052152151546 0.2534321894245735 0.30055052152151546 0.1176954196324614
+0.2599267441503504 0.2967851658105959 0.2599267441503504 0.29678516581059583 0.12260083036205717
+0.25664103834083096 0.29866816643473365 0.256641038340831 0.29866816643473365 0.11995741714832343
+0.219690918826628 0.32760442650964494 0.21969091882662803 0.32760442650964494 0.12310278305372639
+0.22281780272781201 0.3254829676331636 0.22281780272781201 0.3254829676331636 0.1206946850737316
+0.22518106357034212 0.3230965868634117 0.22518106357034215 0.3230965868634117 0.1185102408261474
+0.22778346871129057 0.32070066368340855 0.22778346871129054 0.3207006636834086 0.11664558526675561
+0.23072767921344886 0.3185659270800004 0.23072767921344886 0.31856592708000037 0.11526642867750224
+0.2336543687094362 0.31646526922537266 0.2336543687094362 0.31646526922537266 0.11429067119086304
+0.23943047867901918 0.3116117138975392 0.23943047867901915 0.3116117138975392 0.11324441561916235
+0.23656671549642283 0.31430149894416687 0.23656671549642283 0.31430149894416687 0.113678259310248
+0.19994954857796665 0.34519127399138577 0.19994954857796665 0.34519127399138577 0.14865800223137407
+0.20330725603236346 0.3430975602645557 0.20330725603236346 0.3430975602645557 0.14466946062337915
+0.2066388056069113 0.3409793102711835 0.2066388056069113 0.3409793102711835 0.14079578186523667
+0.20993944164344824 0.33884371224883814 0.20993944164344827 0.33884371224883814 0.13707817505218245
+0.21313504810253692 0.33666423827390646 0.21313504810253692 0.33666423827390646 0.13353604523560889
+0.21632796300358342 0.33410640349359727 0.21632796300358345 0.33410640349359727 0.1298824811083895
+0.21900062977637502 0.332933732761705 0.219000629776375 0.332933732761705 0.12791578009072005
+0.22047884116574112 0.33070202146628663 0.2204788411657411 0.33070202146628663 0.12554490343842029
+0.1830802808423846 0.36401656373001806 0.1830802808423846 0.36401656373001806 0.1785786014069619
+0.18646808954293315 0.3619225816137481 0.18646808954293315 0.3619225816137481 0.17447012489319846
+0.1898478993767028 0.3556445502096417 0.1898478993767028 0.3556445502096417 0.16565304750202411
+0.19321900879991827 0.35355124683688355 0.19321900879991827 0.35355124683688355 0.16147113687038475
+0.18984957177006703 0.35982707522987994 0.18984957177006703 0.35982707522987994 0.17030993879801815
+0.19657922475306602 0.35145772237435385 0.19657922475306602 0.35145772237435385 0.15730495003081923
+0.19993402533303553 0.34936581440243336 0.19993402533303553 0.34936581440243336 0.1531821266658776
+0.16951916475844622 0.38075313807531436 0.16951916475844622 0.38075313807531436 0.20280112756315247
+0.17290954805361536 0.3786610878661094 0.17290954805361536 0.3786610878661094 0.19926293808335302
+0.17629993024102789 0.3723849817287439 0.17629993024102789 0.3723849817287439 0.19107468388800555
+0.1762999313487845 0.3765690376569051 0.1762999313487845 0.3765690376569051 0.1955865198164649
+0.17969005281549036 0.37029313921748924 0.17969005281549036 0.37029313921748924 0.18719504142988744
+0.18308029861698163 0.3682010365593668 0.18308029861698163 0.3682010365593668 0.18321294004463162
+0.15256724828260168 0.3995815899581596 0.15256724828260168 0.3995815899581596 0.22531541878013028
+0.15256724828260168 0.4037656903765697 0.15256724828260168 0.4037656903765697 0.2287707778063359
+0.15595763157777057 0.3974895397489546 0.15595763157777057 0.3974895397489546 0.22288459477612002
+0.15934801487293948 0.39539748953974957 0.15934801487293948 0.39539748953974957 0.22027673103475062
+0.1627383981681084 0.38912133891213446 0.1627383981681084 0.38912133891213446 0.21348037774617298
+0.16273839816810834 0.39330543933054457 0.16273839816810834 0.39330543933054457 0.21749079766295346
+0.16612878146327725 0.3870292887029294 0.16612878146327725 0.3870292887029294 0.21037356364896032
+0.1695191647584462 0.3849372384937243 0.1695191647584462 0.38493723849372424 0.20710349539250536
+0.142396098397095 0.4184100418410049 0.142396098397095 0.4184100418410049 0.2398958416091919
+0.14578648169226388 0.41631799163179983 0.14578648169226385 0.4163179916317999 0.23862627552812918
+0.14917686498743277 0.4100418410041848 0.14917686498743277 0.4100418410041848 0.23403154138287366
+0.15256724828260168 0.4079497907949798 0.15256724828260168 0.4079497907949798 0.2321722660041126
+0.14917686498743277 0.4142259414225949 0.14917686498743277 0.4142259414225949 0.23717320083952687
+0.14239609839709497 0.422594142259415 0.14239609839709497 0.422594142259415 0.24252292741310996
+0.135615331806757 0.4351464435146453 0.135615331806757 0.4351464435146453 0.2481500147187358
+0.1423960983970949 0.42677824267782505 0.1423960983970949 0.42677824267782505 0.24508862304848247
+0.1390057151019259 0.43305439330544027 0.13900571510192591 0.4330543933054402 0.24795553979280474
+0.14239609839709474 0.43096234309623527 0.14239609839709474 0.4309623430962352 0.24759570492027647
+0.13561533180675653 0.4393305439330562 0.13561533180675653 0.4393305439330562 0.2500860205549135
+0.125444181921229 0.46234309623433695 0.125444181921229 0.46234309623433695 0.25322549182938614
+0.13222494851158648 0.4456066945606729 0.13222494851158648 0.44560669456067287 0.2514942252778148
+0.13561533180675536 0.44351464435146787 0.13561533180675536 0.44351464435146787 0.2519541016297187
+0.12883456521641481 0.45188284518829197 0.12883456521641481 0.45188284518829197 0.25221427009237424
+0.13222494851158387 0.4497907949790869 0.13222494851158387 0.44979079497908697 0.2530370727594499
+0.12883456521640874 0.4560669456067105 0.1288345652164087 0.4560669456067105 0.2534389677417363
+0.12883456521639625 0.46025104602513606 0.12883456521639625 0.46025104602513606 0.25458730181125727
+0.12205379862599142 0.4769874476988565 0.12205379862599142 0.4769874476988565 0.25357740363694536
+0.12205379862589116 0.4811715481173397 0.12205379862589116 0.4811715481173397 0.25401130242941955
+0.12544418192121257 0.4665271966527638 0.12544418192121257 0.4665271966527638 0.25407484047833795
+0.12544418192119325 0.47071129707119774 0.12544418192119325 0.4707112970711977 0.25484486270428336
+0.1254441819211588 0.4748953974896574 0.1254441819211588 0.4748953974896574 0.25552959027321626
+0.1220537986257304 0.48535564853578034 0.1220537986257304 0.48535564853578034 0.2543647319530023
+0.12205379862560302 0.4895397489540238 0.12205379862560302 0.4895397489540238 0.254633768254036
+0.11866341533085976 0.4958158995815332 0.11866341533085976 0.4958158995815332 0.25248834161440953
+0.12205379862586195 0.493723849372304 0.12205379862586195 0.493723849372304 0.25481518206106885
+0.11866341533098125 0.5000000000000774 0.11866341533098125 0.5000000000000774 0.25252291229795937
+0.1186634153309365 0.5041841004186421 0.1186634153309365 0.5041841004186421 0.2524890844350463
+0.11866341533080892 0.5083682008370028 0.11866341533080892 0.5083682008370028 0.252387279266531
+0.29175234447056325 0.2721515665776386 0.29175234447056325 0.2721515665776386 0.1601906959066363
+0.29131848487918316 0.2756716434754451 0.29131848487918316 0.2756716434754451 0.1591221884055769
+0.3055842505704482 0.25069265933681 0.3055842505704482 0.25069265933681 0.18119567517639948
+0.29617377219116975 0.26368150853933536 0.29617377219116975 0.26368150853933536 0.1669578108160977
+0.30477893416385493 0.25422891633836425 0.30477893416385493 0.25422891633836425 0.17957242851444885
+0.299733833179083 0.2624476328293721 0.2997338331790829 0.2624476328293721 0.17180361860378948
+0.3040160761437342 0.2577637484471509 0.3040160761437342 0.2577637484471509 0.1780807167094802
+0.3033358819033308 0.261293221793657 0.3033358819033308 0.261293221793657 0.1767328082949312
+0.2957011981631022 0.26728608686794747 0.2957011981631022 0.26728608686794747 0.16591110034352954
+0.29523508298319373 0.27086385982515293 0.29523508298319373 0.27086385982515293 0.16483546374724564
+0.32166337617153284 0.23021667866843487 0.32166337617153284 0.23021667866843484 0.2081387296134414
+0.31062201955039664 0.2425102048962282 0.31062201955039664 0.2425102048962282 0.18961953537554277
+0.3205404181861057 0.23354710493259895 0.3205404181861056 0.23354710493259898 0.20544181903638883
+0.31413346966831274 0.2414399521892926 0.31413346966831274 0.24143995218929257 0.19457818929279388
+0.31925344116370447 0.23699731332176718 0.31925344116370447 0.23699731332176718 0.20260791091986743
+0.3179363253202384 0.2404772978721446 0.31793632532023836 0.24047729787214459 0.1999252584725232
+0.30994070501764426 0.24612214284352826 0.3099407050176443 0.24612214284352826 0.18788475630420354
+0.3091912088976167 0.24968389794376403 0.3091912088976167 0.24968389794376403 0.18620713762364904
+0.3369318760081443 0.2134709171521051 0.3369318760081443 0.21347091715210506 0.23506548197193897
+0.33907299618749875 0.21018202515219978 0.33907299618749875 0.21018202515219978 0.23925470918572464
+0.32729126174665185 0.22273707025668 0.32729126174665185 0.22273707025668 0.21865587322690597
+0.3310442360329612 0.22201258354910283 0.3310442360329611 0.22201258354910283 0.2237055125113355
+0.3382740846892061 0.2168362524234254 0.3382740846892061 0.21683625242342544 0.23508207211407386
+0.33425826836161454 0.22081695098404663 0.3342582683616145 0.22081695098404666 0.2283139592988963
+0.33689879744528894 0.21954701465842008 0.33689879744528894 0.2195470146584201 0.23212950568150276
+0.32634125886609466 0.2261431268573747 0.3263412588660946 0.22614312685737473 0.2158799503668993
+0.3252966026497021 0.22952409024826306 0.3252966026497021 0.22952409024826306 0.21314119830953313
+0.35984361115747304 0.1898437558034701 0.35984361115747304 0.1898437558034701 0.26789045234888564
+0.35776186476768007 0.1932175895426884 0.35776186476768007 0.1932175895426884 0.26545722023484203
+0.35568694630970715 0.19658258344425314 0.35568694630970715 0.19658258344425314 0.26268099026248987
+0.3473800214414404 0.2032757326568754 0.3473800214414404 0.2032757326568754 0.25176475246648916
+0.3536186230329957 0.1999306204774396 0.3536186230329957 0.1999306204774396 0.2596081031984138
+0.3515599495129362 0.20325195389854656 0.3515599495129362 0.20325195389854658 0.25628934858975794
+0.34534547018337103 0.20662084372052963 0.345345470183371 0.20662084372052966 0.24809718366064135
+0.3432928742554861 0.21009492181072642 0.3432928742554861 0.21009492181072642 0.24420198032758586
+0.3912133891213131 0.16612878146327814 0.39121338912131304 0.16612878146327814 0.2775291316535187
+0.389121338912108 0.16951916475844708 0.389121338912108 0.16951916475844708 0.27952481720341454
+0.3870292887029029 0.17290954805361602 0.38702928870290293 0.17290954805361602 0.28103301164249755
+0.38493723849369776 0.17629993134878497 0.38493723849369776 0.17629993134878497 0.2820374011346287
+0.38284518828449265 0.1796903146439539 0.3828451882844926 0.1796903146439539 0.28253100566628603
+0.3807541894059723 0.18308034416623212 0.3807541894059723 0.18308034416623212 0.28251662826496804
+0.3661110950789146 0.1864665909453815 0.3661110950789146 0.1864665909453815 0.27327551756497
+0.3702941750164466 0.1864687045321346 0.3702941750164466 0.1864687045321346 0.27641846265764225
+0.37447882070737926 0.1864699904637028 0.37447882070737926 0.1864699904637028 0.27933911810163853
+0.37866423347490136 0.1864698999644426 0.37866423347490136 0.1864698999644426 0.2820060107621411
+0.36402261700477156 0.18984725627869614 0.36402261700477156 0.18984725627869614 0.2714708751026145
+0.3974895397489284 0.1627383981681092 0.3974895397489284 0.1627383981681092 0.27512735940742156
+0.3953974895397233 0.16612878146327814 0.39539748953972337 0.16612878146327814 0.2779263539313783
+0.40167364016733864 0.1627383981681092 0.4016736401673386 0.1627383981681092 0.27480439215101593
+0.4309623430962102 0.14239609839709555 0.4309623430962102 0.14239609839709555 0.23624564936978124
+0.42887029288700507 0.1457864816922645 0.4288702928870051 0.1457864816922645 0.24207894978796599
+0.42677824267779996 0.14917686498743343 0.4267782426778 0.14917686498743343 0.2478631477243183
+0.42468619246859485 0.15256724828260237 0.4246861924685948 0.15256724828260237 0.25352756051621445
+0.42259414225938974 0.15595763157777132 0.42259414225938974 0.15595763157777132 0.2590022759945186
+0.40585774058574886 0.1627383981681092 0.40585774058574886 0.1627383981681092 0.2740718182686483
+0.4100418410041591 0.1627383981681092 0.41004184100415914 0.1627383981681092 0.27289934554942546
+0.4163179916317744 0.15934801487294026 0.41631799163177435 0.15934801487294026 0.2666869286519427
+0.42050209205018463 0.15934801487294026 0.4205020920501847 0.15934801487294026 0.2642201523773384
+0.4142259414225693 0.1627383981681092 0.4142259414225693 0.1627383981681092 0.2712575942241708
+0.4518828451882613 0.13561533180675767 0.4518828451882612 0.13561533180675767 0.2037514467106323
+0.4372384937238255 0.1390057151019266 0.43723849372382556 0.1390057151019266 0.22598694091904778
+0.4414225941422357 0.1390057151019266 0.44142259414223567 0.1390057151019266 0.22110265092658463
+0.44560669456064594 0.1390057151019266 0.445606694560646 0.1390057151019266 0.21577117615778976
+0.44979079497905616 0.1390057151019266 0.4497907949790561 0.1390057151019266 0.2099870193913245
+0.4351464435146204 0.14239609839709555 0.43514644351462034 0.14239609839709555 0.23198392437011303
+0.47280334728031237 0.12883456521641978 0.47280334728031237 0.12883456521641978 0.1642069032225969
+0.4581589958158766 0.13222494851158872 0.45815899581587655 0.13222494851158872 0.19139512410952095
+0.4623430962342868 0.13222494851158872 0.4623430962342869 0.13222494851158872 0.1846358248266915
+0.46652719665269704 0.13222494851158872 0.466527196652697 0.13222494851158872 0.17747613648562108
+0.47071129707110726 0.13222494851158872 0.4707112970711073 0.13222494851158872 0.1699234798705117
+0.4560669456066715 0.13561533180675767 0.4560669456066715 0.13561533180675767 0.19744408566890173
+0.4790794979079277 0.12544418192125084 0.47907949790792775 0.12544418192125084 0.15100139890655398
+0.4832635983263379 0.12544418192125084 0.48326359832633786 0.12544418192125084 0.14284392179816854
+0.48744769874474814 0.12544418192125084 0.4874476987447482 0.12544418192125084 0.13436332634013215
+0.4769874476987226 0.12883456521641978 0.47698744769872264 0.12883456521641978 0.1563276008148455
+0.5104602510460043 0.10849226544540613 0.5104602510460045 0.10849226544540613 0.08508072018768731
+0.504184100418389 0.11188264874057507 0.504184100418389 0.11188264874057507 0.09861175156518213
+0.5083682008367992 0.11188264874057507 0.5083682008367992 0.11188264874057507 0.08939726224089976
+0.49163179916315836 0.12544418192125084 0.4916317991631583 0.12544418192125084 0.12557423388675273
+0.5020920502091839 0.11527303203574402 0.5020920502091838 0.11527303203574402 0.10290019080424627
+0.4999999999999788 0.11866341533091296 0.49999999999997874 0.11866341533091296 0.10727053572645982
+0.4979079497907737 0.1220537986260819 0.4979079497907737 0.1220537986260819 0.11178239627128177
+0.4958158995815686 0.12544418192125084 0.49581589958156863 0.12544418192125084 0.11649400590255961
+0.5146443514644146 0.10849226544540613 0.5146443514644146 0.10849226544540613 0.07553144245353666
+0.5188284518828248 0.10849226544540613 0.5188284518828247 0.10849226544540613 0.06572414475253043
+0.5251046025104401 0.10510188215023719 0.5251046025104401 0.10510188215023719 0.051003198240041965
+0.523012552301235 0.10849226544540613 0.523012552301235 0.10849226544540613 0.055701832935009056
+0.5292887029288503 0.10510188215023719 0.5292887029288503 0.10510188215023719 0.04072620473761484
+0.5355648535564657 0.10171149885506825 0.5355648535564655 0.10171149885506825 0.025439019691244413
+0.5334728033472605 0.10510188215023719 0.5334728033472605 0.10510188215023719 0.03053067683266435
+0.541841004184081 0.09832111555989931 0.541841004184081 0.09832111555989931 0.011825894899919852
+0.5397489539748759 0.10171149885506825 0.5397489539748759 0.10171149885506825 0.016276284703403296
+0.579497907949773 0.05763651601787201 0.579497907949773 0.05763651601787201 0.09319190049691613
+0.5732217573221576 0.06102689931304095 0.5732217573221576 0.06102689931304095 0.07778806966052064
+0.5774058577405679 0.06102689931304095 0.577405857740568 0.06102689931304095 0.08947047346075411
+0.5711297071129525 0.06441728260820989 0.5711297071129525 0.06441728260820989 0.07341084442518121
+0.5690376569037474 0.06780766590337883 0.5690376569037473 0.06780766590337883 0.06869867846978851
+0.5669456066945423 0.07119804919854777 0.5669456066945423 0.07119804919854777 0.0636851061894273
+0.560669456066927 0.07458843249371672 0.5606694560669271 0.07458843249371672 0.04598487796949242
+0.5585774058577219 0.07797881578888566 0.5585774058577219 0.07797881578888566 0.04043948779128642
+0.5564853556485168 0.0813691990840546 0.5564853556485168 0.0813691990840546 0.034820201980641195
+0.5543933054393116 0.08475958237922354 0.5543933054393116 0.08475958237922354 0.029229215714195986
+0.5523012552301065 0.08814996567439248 0.5523012552301064 0.08814996567439248 0.023812875491438287
+0.5502092050209014 0.09154034896956142 0.5502092050209014 0.09154034896956142 0.018810828694237756
+0.5481171548116963 0.09493073226473037 0.5481171548116963 0.09493073226473037 0.014670705111066872
+0.5460251046024912 0.09832111555989931 0.5460251046024912 0.09832111555989931 0.012208544912954864
+0.5648535564853372 0.07458843249371672 0.5648535564853372 0.07458843249371672 0.058415525881918055
+0.5899581589957985 0.04746536613236518 0.5899581589957985 0.04746536613236518 0.11227265241526578
+0.5941422594142087 0.04746536613236518 0.5941422594142088 0.04746536613236518 0.12229892921434633
+0.5878661087865934 0.050855749427534125 0.5878661087865934 0.050855749427534125 0.11005883579431307
+0.5857740585773883 0.054246132722703067 0.5857740585773882 0.054246132722703067 0.10747622138143571
+0.5836820083681832 0.05763651601787201 0.5836820083681832 0.05763651601787201 0.10449509653914657
+0.6150627615062598 0.02034229977101365 0.6150627615062598 0.02034229977101365 0.13831270041215957
+0.6129707112970547 0.02373268306618259 0.6129707112970547 0.02373268306618259 0.13724283329378675
+0.6108786610878496 0.027123066361351533 0.6108786610878497 0.027123066361351533 0.13642032620799435
+0.6087866108786445 0.030513449656520475 0.6087866108786445 0.030513449656520475 0.13577284501038034
+0.6066945606694394 0.03390383295168942 0.6066945606694394 0.03390383295168942 0.13521644272687386
+0.6046025104602343 0.03729421624685836 0.6046025104602343 0.03729421624685836 0.13466102261805246
+0.6025104602510292 0.0406845995420273 0.6025104602510291 0.0406845995420273 0.13401558204516492
+0.6004184100418241 0.04407498283719624 0.6004184100418241 0.04407498283719624 0.1331928479050513
+0.598326359832619 0.04746536613236518 0.598326359832619 0.04746536613236518 0.13211309090291978
+0.6213389121338752 0.01695191647584471 0.6213389121338752 0.01695191647584471 0.14631606716162396
+0.61924686192467 0.02034229977101365 0.6192468619246699 0.02034229977101365 0.14514929051225534
+0.6276150627614905 0.013561533180675767 0.6276150627614906 0.013561533180675767 0.15411276234491256
+0.6255230125522854 0.01695191647584471 0.6255230125522854 0.01695191647584471 0.15273950071284828
+0.6338912133891058 0.010171149885506825 0.6338912133891058 0.010171149885506825 0.16184910646416906
+0.6317991631799007 0.013561533180675767 0.6317991631799007 0.013561533180675767 0.16019264818550297
+0.6401673640167211 0.006780766590337883 0.6401673640167211 0.006780766590337883 0.16963851511584419
+0.638075313807516 0.010171149885506825 0.638075313807516 0.010171149885506825 0.1676608114104827
+0.6443514644351314 0.006780766590337883 0.6443514644351315 0.006780766590337883 0.17525930119504893
+0.006780766590337709 0.6485355648535558 0.006780766590337709 0.6485355648535558 0.17608254266460352
+0.006780766590337709 0.6527196652719658 0.006780766590337709 0.6527196652719658 0.17366189269489551
+0.01017114988550656 0.6422594142259408 0.01017114988550656 0.6422594142259408 0.18024147327211293
+0.01017114988550656 0.6464435146443508 0.01017114988550656 0.6464435146443508 0.1776997758781322
+0.013561533180675408 0.6359832635983258 0.013561533180675408 0.6359832635983258 0.18470714556491655
+0.013561533180675408 0.6401673640167358 0.013561533180675408 0.6401673640167358 0.18207758404432958
+0.016951916475844264 0.6297071129707108 0.016951916475844264 0.6297071129707108 0.18943884513840872
+0.016951916475844264 0.6338912133891208 0.016951916475844264 0.6338912133891208 0.18676014720059173
+0.02034229977101312 0.6234309623430958 0.02034229977101312 0.6234309623430958 0.19438427451166404
+0.02034229977101312 0.6276150627615058 0.02034229977101312 0.6276150627615058 0.19170092506422576
+0.02373268306618197 0.6171548117154808 0.02373268306618197 0.6171548117154808 0.1994753389146993
+0.02373268306618197 0.6213389121338908 0.02373268306618197 0.6213389121338908 0.19683694137407834
+0.027123066361350822 0.6150627615062758 0.027123066361350822 0.6150627615062758 0.20208643784427213
+0.030513449656519673 0.6129707112970708 0.030513449656519673 0.6129707112970708 0.2048398375654875
+0.033903832951688535 0.6108786610878658 0.033903832951688535 0.6108786610878658 0.2077100437094839
+0.03729421624685738 0.6087866108786608 0.03729421624685738 0.6087866108786608 0.21066646378907036
+0.040684599542026224 0.6066945606694558 0.040684599542026224 0.6066945606694558 0.21367433122045706
+0.0440749828371951 0.6046025104602508 0.0440749828371951 0.6046025104602508 0.21669582686453828
+0.04746536613236394 0.5983263598326358 0.04746536613236394 0.5983263598326358 0.2218916026011899
+0.05085574942753279 0.5962343096234308 0.05085574942753279 0.5962343096234308 0.2247209832128705
+0.06102689931303934 0.5815899581589958 0.06102689931303934 0.5815899581589958 0.23510299002892496
+0.06780766590337706 0.5732217573221758 0.06780766590337706 0.5732217573221758 0.23933388420311186
+0.0711980491985459 0.5711297071129708 0.0711980491985459 0.5711297071129708 0.2405835422922884
+0.07797881578888362 0.5627615062761508 0.07797881578888362 0.5627615062761508 0.2425788437461898
+0.08136919908405248 0.5606694560669458 0.08136919908405248 0.5606694560669458 0.24309896410815332
+0.08475958237922132 0.5585774058577408 0.08475958237922132 0.5585774058577408 0.2434759968239728
+0.08814996567439015 0.5523012552301259 0.08814996567439015 0.5523012552301259 0.24360897411983903
+0.09154034896955902 0.5502092050209209 0.09154034896955902 0.5502092050209209 0.24381972187450454
+0.09493073226472791 0.5481171548117159 0.09493073226472791 0.5481171548117159 0.2440504871355791
+0.08814996567439015 0.5564853556485359 0.08814996567439015 0.5564853556485359 0.2437505720921803
+0.07458843249371476 0.5690376569037658 0.07458843249371476 0.5690376569037658 0.24160313553698812
+0.07797881578888362 0.5669456066945608 0.07797881578888362 0.5669456066945608 0.2424064483344082
+0.06441728260820821 0.5794979079497908 0.06441728260820821 0.5794979079497908 0.236967791282318
+0.06780766590337706 0.5774058577405858 0.06780766590337706 0.5774058577405858 0.2385982161806128
+0.05424613272270165 0.5899581589958158 0.054246132722701644 0.5899581589958158 0.2291950668742653
+0.05424613272270165 0.5941422594142258 0.054246132722701644 0.5941422594142258 0.22743244330341802
+0.05763651601787049 0.5878661087866108 0.05763651601787049 0.5878661087866108 0.23161894342340306
+0.06102689931303934 0.5857740585774058 0.06102689931303934 0.5857740585774058 0.23384969400496836
+0.04746536613236394 0.6025104602510458 0.04746536613236394 0.6025104602510458 0.21969133978547095
+0.10849226544541939 0.5271966527196842 0.10849226544541939 0.5271966527196842 0.2465197744986747
+0.10849226544540207 0.5313807531380944 0.10849226544540207 0.5313807531380944 0.24644856190306855
+0.11188264874060577 0.525104602510468 0.11188264874060576 0.525104602510468 0.24794130424595254
+0.11527303203579393 0.5230125523012236 0.11527303203579393 0.5230125523012236 0.24966279377579537
+0.1186634153307733 0.5125523012551901 0.1186634153307733 0.5125523012551901 0.25221871815235075
+0.11866341533086987 0.51673640167346 0.11866341533086987 0.51673640167346 0.25198530293687255
+0.1186634153309699 0.5209205020919386 0.1186634153309699 0.5209205020919386 0.25168942320526183
+0.09832111555989653 0.5418410041841003 0.09832111555989653 0.5418410041841003 0.24421254396566702
+0.10171149885506466 0.5397489539748948 0.10171149885506466 0.5397489539748949 0.2447159470650633
+0.10510188215023182 0.5376569037656904 0.10510188215023182 0.5376569037656904 0.2454160927390934
+0.1084922654453979 0.5355648535564891 0.1084922654453979 0.5355648535564891 0.24635612808769966
+0.09832111555989688 0.5460251046025107 0.09832111555989688 0.5460251046025107 0.24435516397696075
+0.2909295703667904 0.2791427255909225 0.2909295703667904 0.2791427255909225 0.15802248286814288
+0.2668214495687131 0.2933281121069565 0.2668214495687131 0.2933281121069565 0.1289924790378705
+0.2905517769372796 0.2825255690688464 0.2905517769372796 0.2825255690688464 0.15683070271833244
+0.2871624034305934 0.2839575681981004 0.28716240343059335 0.2839575681981004 0.15247481650095282
+0.2837764022958272 0.2854450680639588 0.2837764022958272 0.2854450680639588 0.14821572108611283
+0.2803936609076826 0.2869762899070305 0.28039366090768253 0.2869762899070305 0.14407209360576845
+0.27701747084538547 0.28853582956355955 0.27701747084538547 0.28853582956355955 0.14006829814997268
+0.27363955864910555 0.290111396891287 0.27363955864910555 0.290111396891287 0.13621597365488494
+0.2702456622290559 0.2916991939376211 0.2702456622290559 0.29169919393762106 0.1325208932880844
+0.24358745619143246 0.30990309634815 0.24358745619143243 0.30990309634815 0.11409972354335662
+0.24702932987581808 0.30795648817850824 0.24702932987581808 0.30795648817850824 0.11512715883026585
+0.2503401113911911 0.30607654180281435 0.2503401113911911 0.30607654180281435 0.1165251169831185
+0.26672494235311894 0.2969155581136501 0.266724942353119 0.29691555811365017 0.12862395977963148
+0.2535997396494787 0.3042092902114141 0.2535997396494787 0.30420929021141413 0.11827598485766423
+0.26337785895969507 0.2986617402746907 0.26337785895969507 0.2986617402746907 0.12555168292349772
+0.2568393563951442 0.30234097235916935 0.25683935639514427 0.3023409723591693 0.12036692314705001
+0.2600727833470446 0.3004740044198023 0.2600727833470446 0.30047400441980227 0.12278009579433684
+0.22288413469133841 0.3286552738119645 0.22288413469133841 0.3286552738119645 0.12324754554085939
+0.2256539965420788 0.3266189291551273 0.22565399654207877 0.3266189291551273 0.12110702016197257
+0.22843319867492135 0.3244107258876351 0.22843319867492132 0.32441072588763514 0.1191691660814781
+0.24359117540070896 0.31360497059136005 0.24359117540070896 0.31360497059136 0.11542256439636654
+0.2313033206338322 0.3222036177826817 0.2313033206338322 0.3222036177826817 0.11758221051785141
+0.23423498197622608 0.32008359498624533 0.23423498197622608 0.32008359498624533 0.11641053907404887
+0.23721612304790343 0.3179461391576866 0.23721612304790343 0.3179461391576866 0.11562292353881153
+0.24025657104373832 0.315795414331407 0.24025657104373832 0.315795414331407 0.11524975407746814
+0.20329890271178463 0.3472874441349562 0.20329890271178463 0.3472874441349562 0.1491386223353777
+0.20663218455631926 0.3451622839308659 0.20663218455631926 0.3451622839308659 0.1451674260798539
+0.20998413523974704 0.34306979151998723 0.20998413523974704 0.34306979151998723 0.14136335724623939
+0.21343784615844866 0.34107285622374006 0.21343784615844869 0.34107285622374 0.13778227018467423
+0.2165105477407402 0.337949698615887 0.21651054774074022 0.337949698615887 0.13345802955626393
+0.21929206100874887 0.3357248052774685 0.2192920610087489 0.33572480527746856 0.13038742855592633
+0.22164852546095426 0.333562276076138 0.2216485254609543 0.33356227607613803 0.1277112961503043
+0.223067875937702 0.3313686585166821 0.223067875937702 0.3313686585166821 0.1254342989528075
+0.18646936622167676 0.3661076567058601 0.18646936622167676 0.3661076567058601 0.17914403116846914
+0.18985335231273548 0.36401135317736216 0.18985335231273548 0.36401135317736216 0.17500737080251258
+0.1932202567537964 0.3577316161947052 0.1932202567537964 0.3577316161947052 0.1661246923731582
+0.19657738615245166 0.35563607902421207 0.19657738615245166 0.35563607902421207 0.161940651374564
+0.1932272963373348 0.36191326010994773 0.1932272963373348 0.36191326010994773 0.17082807240878475
+0.1999207418031349 0.35353861861848435 0.1999207418031349 0.35353861861848435 0.15778280930393848
+0.20326139285172848 0.35143819110622765 0.20326139285172848 0.35143819110622765 0.15367379617367696
+0.1729095480536151 0.3828451882845194 0.1729095480536151 0.3828451882845194 0.20367578601846173
+0.17629993134878405 0.38075313807531447 0.17629993134878405 0.38075313807531447 0.2000983379400216
+0.1796896821827092 0.3744775065031079 0.1796896821827092 0.3744775065031079 0.19178343670132944
+0.17968902043779988 0.37866197235161164 0.17968902043779988 0.37866197235161164 0.1963829508462606
+0.18307998586730867 0.37238559572431473 0.18307998586730867 0.37238559572431473 0.1878653143231398
+0.18647056904863615 0.3702933878760823 0.18647056904863615 0.3702933878760823 0.18384785526142577
+0.15595763157777057 0.4016736401673647 0.15595763157777057 0.4016736401673647 0.22652470682174272
+0.15595763157777057 0.40585774058577473 0.15595763157777057 0.4058577405857747 0.23012155228444664
+0.15934801487293948 0.3995815899581596 0.15934801487293948 0.3995815899581596 0.22409218322068378
+0.16273839816810834 0.3974895397489546 0.16273839816810834 0.3974895397489546 0.221471470872344
+0.16612878146327725 0.39121338912133946 0.16612878146327725 0.39121338912133946 0.2145276673837507
+0.16612878146327725 0.39539748953974957 0.16612878146327725 0.39539748953974957 0.21866284274700495
+0.16951906608702685 0.38912133245786046 0.16951906608702685 0.38912133245786046 0.21139033275472816
+0.1729095480536151 0.3870292887029294 0.1729095480536151 0.3870292887029294 0.20808391498453935
+0.14578648169226388 0.42050209205020994 0.14578648169226385 0.42050209205021 0.2414885481869307
+0.14917686498743277 0.418410041841005 0.14917686498743277 0.418410041841005 0.2402652638363902
+0.15256724828260168 0.41213389121338984 0.15256724828260168 0.4121338912133899 0.23552765435316933
+0.15595763157777057 0.4100418410041848 0.15595763157777057 0.4100418410041848 0.23368225648747884
+0.15256724828260165 0.41631799163179994 0.15256724828260168 0.4163179916318 0.23884259342940564
+0.1457864816922638 0.42468619246862005 0.1457864816922638 0.42468619246862005 0.2442969919472413
+0.13900571510192544 0.43723849372385115 0.13900571510192547 0.4372384937238511 0.25014737142947957
+0.14578648169226363 0.42887029288703027 0.14578648169226363 0.4288702928870302 0.2470534276212755
+0.14239609839709433 0.4351464435146461 0.14239609839709433 0.4351464435146461 0.25004402941633547
+0.14578648169226324 0.433054393305441 0.14578648169226324 0.433054393305441 0.24975667604833743
+0.1390057151019243 0.44142259414226287 0.1390057151019243 0.44142259414226287 0.2522737942309469
+0.1288345652163754 0.464435146443569 0.1288345652163754 0.46443514644356904 0.25565328241467994
+0.1356153318067527 0.4476987447698819 0.1356153318067527 0.447698744769882 0.25375101900796865
+0.13900571510192164 0.4456066945606769 0.13900571510192164 0.445606694560677 0.2543301214730574
+0.13222494851157782 0.45397489539750596 0.13222494851157782 0.45397489539750596 0.2545048020298491
+0.13561533180674676 0.4518828451883013 0.13561533180674676 0.4518828451883013 0.2554710365933089
+0.13222494851156497 0.45815899581593356 0.13222494851156497 0.4581589958159336 0.25589123433165767
+0.1322249485115413 0.4623430962343715 0.1322249485115413 0.4623430962343715 0.2571884645929748
+0.12544418192106727 0.479079497908162 0.12544418192106724 0.479079497908162 0.2561227418178993
+0.12544418192087906 0.4832635983266728 0.12544418192087906 0.4832635983266728 0.25661814926234805
+0.12883456521634967 0.46861924686200634 0.12883456521634964 0.46861924686200634 0.25662969520829026
+0.12883456521631698 0.472803347280461 0.12883456521631698 0.472803347280461 0.2575085527710694
+0.12883456521624106 0.47698744769897017 0.12883456521624106 0.47698744769897017 0.25828156262563645
+0.1254441819206435 0.48744769874508187 0.12544418192064352 0.4874476987450818 0.257010155663386
+0.1254441819207498 0.49163179916312344 0.1254441819207498 0.49163179916312344 0.25729396660711773
+0.12205379862610925 0.4979079497907781 0.12205379862610925 0.4979079497907781 0.25490668050810944
+0.12544418192112158 0.4958158995814772 0.12544418192112158 0.4958158995814772 0.2574659399191222
+0.12205379862617054 0.5020920502094258 0.12205379862617054 0.5020920502094258 0.25490707461222845
+0.12205379862602728 0.5062761506279344 0.12205379862602728 0.5062761506279344 0.25481636493122
+0.12205379862589277 0.5104602510461261 0.12205379862589276 0.5104602510461261 0.2546357415706992
+0.29478550436202766 0.2744058091818155 0.2947855043620277 0.2744058091818155 0.16371369431057034
+0.2943696914058227 0.27789565438770264 0.2943696914058227 0.27789565438770264 0.16254546635164616
+0.3084253768365756 0.2532267087778399 0.3084253768365756 0.2532267087778399 0.18461571456791515
+0.2992083756539528 0.2660230903720107 0.2992083756539528 0.2660230903720107 0.1706671854990529
+0.3076674127802505 0.2567347277832894 0.3076674127802505 0.2567347277832894 0.18311338727504725
+0.3027389216359487 0.26480870067897977 0.3027389216359487 0.2648087006789797 0.17549332187391184
+0.3069541634832581 0.2602171023243997 0.30695416348325816 0.2602171023243997 0.18171168579423302
+0.3063002924050175 0.2636724815619537 0.3063002924050175 0.2636724815619537 0.18039262708623202
+0.29871627762075575 0.2695900662413026 0.29871627762075575 0.2695900662413026 0.16953855210799482
+0.2982443784428451 0.27313995276140873 0.29824437844284507 0.27313995276140873 0.1683679302500675
+0.32421785355473415 0.2328885230371381 0.32421785355473415 0.2328885230371381 0.21050119344076865
+0.3135032730663428 0.2450877942803955 0.3135032730663428 0.2450877942803955 0.19287999028903693
+0.3230841462467689 0.23629575841334194 0.3230841462467689 0.23629575841334197 0.20790683808335994
+0.317152182304994 0.24410524509078552 0.3171521823049939 0.2441052450907855 0.19800276247142376
+0.32193666719774816 0.23974410142009708 0.32193666719774816 0.23974410142009708 0.20542742980906617
+0.32091684701818585 0.24323386980114084 0.32091684701818585 0.24323386980114084 0.20325772219409846
+0.31278091962140336 0.2486707575583531 0.31278091962140336 0.2486707575583531 0.19121633071562136
+0.31202726367623873 0.25221680220705317 0.31202726367623873 0.25221680220705317 0.1896262711974552
+0.34136985230820927 0.21401092799218302 0.3413698523082092 0.21401092799218308 0.24020637935244935
+0.3299797818776052 0.22529827052533316 0.3299797818776052 0.22529827052533316 0.22092041239275514
+0.3415743035387744 0.21765368240978866 0.3415743035387744 0.21765368240978863 0.2386931081259946
+0.33361013559509645 0.22431183644667257 0.33361013559509645 0.22431183644667255 0.22595570042331217
+0.339906409793972 0.22010329870558482 0.3399064097939721 0.22010329870558484 0.23564025182365286
+0.3373311790099603 0.22301058800436457 0.33733117900996035 0.22301058800436463 0.23126218574098195
+0.32894759334200174 0.22873003439213435 0.3289475933420017 0.22873003439213435 0.2181962454736184
+0.3278966096069304 0.2321600739390409 0.3278966096069304 0.2321600739390409 0.21558042576654476
+0.36193535154816553 0.19321886726203852 0.36193535154816553 0.19321886726203852 0.2692628467112137
+0.3577971345102294 0.19993527064035818 0.3577971345102294 0.19993527064035818 0.26383085355402813
+0.3598628698161311 0.19658510637938184 0.3598628698161311 0.19658510637938184 0.26670244568050977
+0.34951677164376455 0.20655043049789534 0.34951677164376455 0.20655043049789534 0.2527838217592419
+0.3557329679199204 0.2032683138145753 0.3557329679199204 0.2032683138145753 0.26069301819294705
+0.3536795720731418 0.20653511799282875 0.3536795720731418 0.20653511799282875 0.2573437370951577
+0.3474966876807167 0.20985166220666138 0.3474966876807167 0.20985166220666138 0.2491471961317643
+0.34551051687173984 0.21320907345870077 0.34551051687173984 0.2132090734587008 0.24540737900040607
+0.3933054393305182 0.16951916475844708 0.3933054393305182 0.16951916475844708 0.2802639807007805
+0.3912133891213131 0.17290954805361602 0.39121338912131304 0.17290954805361602 0.2821124461884743
+0.389121338912108 0.17629993134878497 0.389121338912108 0.17629993134878497 0.2834531385475331
+0.3870292887029029 0.1796903146439539 0.38702928870290293 0.1796903146439539 0.2842768846287413
+0.384938373193168 0.18308008749407975 0.384938373193168 0.18308008749407975 0.28458435364826773
+0.38284912591249287 0.18646884811124376 0.38284912591249287 0.18646884811124376 0.2843858276547023
+0.3682039327543858 0.1898534573078302 0.3682039327543858 0.1898534573078302 0.2748714716422663
+0.3723873058663336 0.18985881013021808 0.3723873058663336 0.18985881013021808 0.27806412839771544
+0.3765739246521247 0.1898600371978548 0.3765739246521247 0.1898600371978548 0.2810186125897482
+0.38076105363390167 0.18985786282310846 0.38076105363390167 0.18985786282310846 0.2837002775474295
+0.36611368625978696 0.19323209614244133 0.36611368625978696 0.19323209614244133 0.27290399521219233
+0.39958158995813353 0.16612878146327814 0.3995815899581335 0.16612878146327814 0.277947503560809
+0.3974895397489284 0.16951916475844708 0.3974895397489284 0.16951916475844708 0.28063196038198984
+0.40376569037654375 0.16612878146327814 0.4037656903765438 0.16612878146327814 0.2775607165125156
+0.4330543933054153 0.1457864816922645 0.43305439330541523 0.1457864816922645 0.2380254008364149
+0.4309623430962102 0.14917686498743343 0.4309623430962102 0.14917686498743343 0.24404226632195744
+0.42887029288700507 0.15256724828260237 0.4288702928870051 0.15256724828260237 0.24996338781661778
+0.42677824267779996 0.15595763157777132 0.4267782426778 0.15595763157777132 0.25571784180011486
+0.42468619246859485 0.15934801487294026 0.4246861924685948 0.15934801487294026 0.26123697821609454
+0.40794979087282357 0.16612876914737737 0.40794979087282357 0.16612876914737737 0.2767343702026405
+0.4121338916676039 0.16612870962052362 0.4121338916676039 0.16612870962052362 0.2754376190188758
+0.4184100418409795 0.1627383981681092 0.41841004184097946 0.1627383981681092 0.2691185983882565
+0.42259414225938974 0.1627383981681092 0.42259414225938974 0.1627383981681092 0.26645626916263154
+0.4163179931180967 0.16612858942951303 0.41631799311809664 0.16612858942951303 0.27364093418281227
+0.4539748953974664 0.1390057151019266 0.45397489539746644 0.1390057151019266 0.20374782326543858
+0.4393305439330306 0.14239609839709555 0.4393305439330306 0.14239609839709555 0.22726276206738952
+0.44351464435144083 0.14239609839709555 0.4435146443514409 0.14239609839709555 0.22207228189383676
+0.44769874476985105 0.14239609839709555 0.44769874476985105 0.14239609839709555 0.2164057017134462
+0.4518828451882613 0.14239609839709555 0.4518828451882612 0.14239609839709555 0.21025952883732082
+0.4372384937238255 0.1457864816922645 0.43723849372382556 0.1457864816922645 0.2334928657852993
+0.4748953974895175 0.13222494851158872 0.4748953974895174 0.13222494851158872 0.16198806878387184
+0.4602510460250817 0.13561533180675767 0.46025104602508177 0.13561533180675767 0.1907076728813
+0.46443514644349193 0.13561533180675767 0.46443514644349193 0.13561533180675767 0.18354681285064944
+0.46861924686190215 0.13561533180675767 0.4686192468619021 0.13561533180675767 0.17596920395111104
+0.47280334728031237 0.13561533180675767 0.47280334728031237 0.13561533180675767 0.1679856221067709
+0.4581589958158766 0.1390057151019266 0.45815899581587655 0.1390057151019266 0.19705448306052534
+0.4811715481171328 0.12883456521641978 0.4811715481171328 0.12883456521641978 0.14809758662613182
+0.485355648535543 0.12883456521641978 0.48535564853554297 0.12883456521641978 0.13953105331757917
+0.48953974895395325 0.12883456521641978 0.48953974895395325 0.12883456521641978 0.13064481785206883
+0.4790794979079277 0.13222494851158872 0.47907949790792775 0.13222494851158872 0.15368288786507514
+0.5125523012552095 0.11188264874057507 0.5125523012552095 0.11188264874057507 0.07991238665337341
+0.5062761506275941 0.11527303203574402 0.5062761506275941 0.11527303203574402 0.09370399907424393
+0.5104602510460043 0.11527303203574402 0.5104602510460045 0.11527303203574402 0.08424821996742728
+0.49372384937236347 0.12883456521641978 0.4937238493723635 0.12883456521641978 0.12145862904706972
+0.504184100418389 0.11866341533091296 0.504184100418389 0.11866341533091296 0.09805703789990651
+0.5020920502091839 0.1220537986260819 0.5020920502091838 0.1220537986260819 0.102516548606296
+0.4999999999999788 0.12544418192125084 0.49999999999997874 0.12544418192125084 0.10714345943081498
+0.4979079497907737 0.12883456521641978 0.4979079497907737 0.12883456521641978 0.11199579861968355
+0.5167364016736197 0.11188264874057507 0.5167364016736197 0.11188264874057507 0.07018247619312247
+0.5209205020920299 0.11188264874057507 0.5209205020920299 0.11188264874057507 0.060249846713313675
+0.5271966527196452 0.10849226544540613 0.5271966527196453 0.10849226544540613 0.04554722681233445
+0.5251046025104401 0.11188264874057507 0.5251046025104401 0.11188264874057507 0.05019121874215709
+0.5313807531380554 0.10849226544540613 0.5313807531380554 0.10849226544540613 0.035440599779951655
+0.5376569037656708 0.10510188215023719 0.5376569037656708 0.10510188215023719 0.021059095938689616
+0.5355648535564657 0.10849226544540613 0.5355648535564655 0.10849226544540613 0.025848299270126985
+0.5439330543932861 0.10171149885506825 0.5439330543932862 0.10171149885506825 0.012281059614468666
+0.541841004184081 0.10510188215023719 0.541841004184081 0.10510188215023719 0.014637049416443221
+0.5815899581589781 0.06102689931304095 0.5815899581589781 0.06102689931304095 0.10109984398372361
+0.5753138075313627 0.06441728260820989 0.5753138075313627 0.06441728260820989 0.08536231975329987
+0.579497907949773 0.06441728260820989 0.579497907949773 0.06441728260820989 0.09728898228098688
+0.5732217573221576 0.06780766590337883 0.5732217573221576 0.06780766590337883 0.08088448474015973
+0.5711297071129525 0.07119804919854777 0.5711297071129525 0.07119804919854777 0.07606678876674829
+0.5690376569037474 0.07458843249371672 0.5690376569037473 0.07458843249371672 0.07095127235577492
+0.5627615062761321 0.07797881578888566 0.5627615062761321 0.07797881578888566 0.05294716331779991
+0.560669456066927 0.0813691990840546 0.5606694560669271 0.0813691990840546 0.04734975852370114
+0.5585774058577219 0.08475958237922354 0.5585774058577219 0.08475958237922354 0.04170769987657718
+0.5564853556485168 0.08814996567439248 0.5564853556485168 0.08814996567439248 0.03612498943674345
+0.5543933054393116 0.09154034896956142 0.5543933054393116 0.09154034896956142 0.03073570982422283
+0.5523012552301065 0.09493073226473037 0.5523012552301064 0.09493073226473037 0.02572476612423105
+0.5502092050209014 0.09832111555989931 0.5502092050209014 0.09832111555989931 0.021364501494923745
+0.5481171548116963 0.10171149885506825 0.5481171548116963 0.10171149885506825 0.018057017230194473
+0.5669456066945423 0.07797881578888566 0.5669456066945423 0.07797881578888566 0.06559171065145264
+0.5920502092050036 0.050855749427534125 0.5920502092050036 0.050855749427534125 0.12048174935049687
+0.5962343096234138 0.050855749427534125 0.5962343096234138 0.050855749427534125 0.13070705869901797
+0.5899581589957985 0.054246132722703067 0.5899581589957985 0.054246132722703067 0.11828706220391637
+0.5878661087865934 0.05763651601787201 0.5878661087865934 0.05763651601787201 0.1156787300405994
+0.5857740585773883 0.06102689931304095 0.5857740585773882 0.06102689931304095 0.11263506069273661
+0.6171548117154649 0.02373268306618259 0.6171548117154649 0.02373268306618259 0.14431884086166227
+0.6150627615062598 0.027123066361351533 0.6150627615062598 0.027123066361351533 0.14376984353248676
+0.6129707112970547 0.030513449656520475 0.6129707112970547 0.030513449656520475 0.14342921278398227
+0.6108786610878496 0.03390383295168942 0.6108786610878497 0.03390383295168942 0.1432108109214637
+0.6087866108786445 0.03729421624685836 0.6087866108786445 0.03729421624685836 0.14302103592172075
+0.6066945606694394 0.0406845995420273 0.6066945606694394 0.0406845995420273 0.14276426247406881
+0.6046025104602343 0.04407498283719624 0.6046025104602343 0.04407498283719624 0.14234771347086983
+0.6025104602510292 0.04746536613236518 0.6025104602510291 0.04746536613236518 0.14168552083612088
+0.6004184100418241 0.050855749427534125 0.6004184100418241 0.050855749427534125 0.14070189597550267
+0.6234309623430803 0.02034229977101365 0.6234309623430803 0.02034229977101365 0.1517661381499368
+0.6213389121338752 0.02373268306618259 0.6213389121338752 0.02373268306618259 0.15116261936558184
+0.6297071129706956 0.01695191647584471 0.6297071129706956 0.01695191647584471 0.15896701144678996
+0.6276150627614905 0.02034229977101365 0.6276150627614906 0.02034229977101365 0.15817163261419834
+0.6359832635983109 0.013561533180675767 0.6359832635983108 0.013561533180675767 0.16610950023069507
+0.6338912133891058 0.01695191647584471 0.6338912133891058 0.01695191647584471 0.1650144442083172
+0.6422594142259263 0.010171149885506825 0.6422594142259263 0.010171149885506825 0.17334928663447272
+0.6401673640167211 0.013561533180675767 0.6401673640167211 0.013561533180675767 0.1718856367371643
+0.6485355648535416 0.006780766590337883 0.6485355648535416 0.006780766590337883 0.1808013655596961
+0.6464435146443365 0.010171149885506825 0.6464435146443365 0.010171149885506825 0.17894191429658637
+0.6527196652719518 0.006780766590337883 0.6527196652719517 0.006780766590337883 0.18629540881675768
+0.006780766590337709 0.6569037656903758 0.006780766590337709 0.6569037656903758 0.17133743907959606
+0.01017114988550656 0.6506276150627608 0.01017114988550656 0.6506276150627608 0.17523093960607816
+0.01017114988550656 0.6548117154811708 0.01017114988550656 0.6548117154811708 0.1728519835145528
+0.013561533180675408 0.6443514644351458 0.013561533180675408 0.6443514644351458 0.17949283209702313
+0.013561533180675408 0.6485355648535558 0.013561533180675408 0.6485355648535558 0.17697251246007875
+0.016951916475844264 0.6380753138075308 0.016951916475844264 0.6380753138075308 0.18409451075891067
+0.016951916475844264 0.6422594142259408 0.016951916475844264 0.6422594142259408 0.18146299350416936
+0.02034229977101312 0.6317991631799158 0.02034229977101312 0.6317991631799158 0.1889964708578914
+0.02034229977101312 0.6359832635983258 0.02034229977101312 0.6359832635983258 0.18629217260626127
+0.02373268306618197 0.6255230125523008 0.02373268306618197 0.6255230125523008 0.1941424035336939
+0.02373268306618197 0.6297071129707108 0.02373268306618197 0.6297071129707108 0.19141195863231056
+0.027123066361350822 0.6192468619246858 0.027123066361350822 0.6192468619246858 0.19945578098881042
+0.027123066361350822 0.6234309623430958 0.027123066361350822 0.6234309623430958 0.1967528835087583
+0.030513449656519673 0.6171548117154808 0.030513449656519673 0.6171548117154808 0.20222291953122387
+0.033903832951688535 0.6150627615062758 0.033903832951688535 0.6150627615062758 0.20511482395373307
+0.03729421624685738 0.6129707112970708 0.03729421624685738 0.6129707112970708 0.20810281758166346
+0.040684599542026224 0.6108786610878658 0.040684599542026224 0.6108786610878658 0.21115385593465827
+0.0440749828371951 0.6087866108786608 0.0440749828371951 0.6087866108786608 0.21423151809358676
+0.04746536613236394 0.6066945606694558 0.04746536613236394 0.6066945606694558 0.2172971608293602
+0.05085574942753279 0.6004184100418408 0.05085574942753279 0.6004184100418408 0.22262080907400317
+0.05424613272270165 0.5983263598326358 0.054246132722701644 0.5983263598326358 0.2254450927848444
+0.06441728260820821 0.5836820083682008 0.06441728260820821 0.5836820083682008 0.23586327607117594
+0.0711980491985459 0.5753138075313808 0.0711980491985459 0.5753138075313808 0.23998768467329093
+0.07458843249371476 0.5732217573221758 0.07458843249371476 0.5732217573221758 0.24113797375324766
+0.08136919908405248 0.5648535564853558 0.08136919908405248 0.5648535564853558 0.2430159006800732
+0.08475958237922132 0.5627615062761508 0.08475958237922132 0.5627615062761508 0.24346220153241457
+0.08814996567439015 0.5606694560669458 0.08814996567439015 0.5606694560669458 0.24378369093562127
+0.09154034896955902 0.5543933054393309 0.09154034896955902 0.5543933054393309 0.24396942203023927
+0.09493073226472788 0.5523012552301259 0.09493073226472788 0.5523012552301259 0.24418392126494223
+0.09832111555989677 0.5502092050209209 0.09832111555989677 0.5502092050209209 0.24444830610825521
+0.09154034896955902 0.5585774058577408 0.09154034896955902 0.5585774058577408 0.2440253521537569
+0.07797881578888362 0.5711297071129708 0.07797881578888362 0.5711297071129708 0.2420595202593245
+0.08136919908405248 0.5690376569037658 0.08136919908405248 0.5690376569037658 0.24277147226556406
+0.06780766590337706 0.5815899581589958 0.06780766590337706 0.5815899581589958 0.23764237747810243
+0.0711980491985459 0.5794979079497908 0.0711980491985459 0.5794979079497908 0.2391772235305647
+0.05763651601787049 0.5920502092050208 0.05763651601787049 0.5920502092050208 0.22999017841177016
+0.05763651601787049 0.5962343096234308 0.05763651601787049 0.5962343096234308 0.22812731659922994
+0.06102689931303934 0.5899581589958158 0.06102689931303934 0.5899581589958158 0.23236249331710787
+0.06441728260820821 0.5878661087866108 0.06441728260820821 0.5878661087866108 0.23452297065467834
+0.05085574942753279 0.6046025104602508 0.05085574942753279 0.6046025104602508 0.22031118014538567
+0.1118826487405797 0.5292887029289032 0.1118826487405797 0.5292887029289032 0.2477711728039551
+0.11188264874056429 0.5334728033472952 0.11188264874056429 0.5334728033472952 0.24757148501662976
+0.11527303203576927 0.5271966527197066 0.11527303203576929 0.5271966527197066 0.24939623869107827
+0.11866341533097269 0.5251046025104851 0.11866341533097269 0.525104602510485 0.2513337001703213
+0.122053798625948 0.5146443514642468 0.122053798625948 0.5146443514642468 0.2543674985368638
+0.12205379862610959 0.5188284518826182 0.12205379862610959 0.5188284518826182 0.2540148662604315
+0.12205379862618154 0.5230125523012095 0.12205379862618156 0.5230125523012096 0.2535817698582814
+0.10171149885506574 0.5439330543933052 0.10171149885506574 0.5439330543933051 0.24478755252078602
+0.10510188215023418 0.5418410041840991 0.10510188215023418 0.5418410041840991 0.24539905747612653
+0.10849226544540148 0.5397489539748928 0.10849226544540148 0.5397489539748928 0.24623633498528993
+0.11188264874056664 0.5376569037656881 0.11188264874056664 0.5376569037656881 0.24733902977230263
+0.10171149885506577 0.5481171548117157 0.10171149885506577 0.5481171548117157 0.2448176132678542
+0.29404277438293946 0.28132196755222905 0.29404277438293946 0.2813219675522291 0.16138566828799086
+0.270115328478597 0.29524509214962313 0.2701153284785969 0.2952450921496231 0.13197502202324715
+0.2934796522769261 0.2843225817198757 0.2934796522769261 0.28432258171987573 0.15989908786379584
+0.2902467828926337 0.28596827072349473 0.29024678289263367 0.28596827072349473 0.15561253847246112
+0.28692121520658986 0.2874721095531319 0.28692121520658986 0.2874721095531319 0.15135208030821834
+0.28356814823408066 0.2889989382929048 0.28356814823408066 0.2889989382929048 0.1471771115437995
+0.2802071712893848 0.2905387442772421 0.2802071712893848 0.2905387442772421 0.14313085209797893
+0.2768490968049596 0.2920857110103657 0.27684909680495956 0.2920857110103657 0.13924286230515867
+0.27348677957601836 0.29364186415733196 0.27348677957601836 0.29364186415733196 0.13552101784978357
+0.24707194314259662 0.311629155497165 0.2470719431425966 0.311629155497165 0.11614729412786483
+0.2504236632098437 0.30970909743826364 0.2504236632098437 0.30970909743826364 0.11729382671123183
+0.25370976315484856 0.3078317782353314 0.25370976315484856 0.3078317782353314 0.11881890627105439
+0.27004072000058726 0.29876304589750563 0.27004072000058726 0.29876304589750563 0.13140863933299649
+0.2667332922521139 0.3004916419679962 0.2667332922521139 0.3004916419679962 0.12828660335805495
+0.25695949213387365 0.30596629052492 0.25695949213387365 0.30596629052492 0.12069349564768399
+0.26345091282037425 0.30227877931081387 0.2634509128203742 0.30227877931081387 0.12544088806734124
+0.260197622673557 0.3041106822463724 0.260197622673557 0.3041106822463724 0.12290304110945911
+0.2257721724918597 0.3301981094128115 0.22577217249185974 0.3301981094128115 0.12388702955760751
+0.24724668683353077 0.3152797496985617 0.24724668683353077 0.3152797496985617 0.11728025823202916
+0.22875559567272566 0.32811723974003976 0.22875559567272566 0.32811723974003976 0.12182049391793422
+0.23174754086848404 0.3259154179968404 0.23174754086848406 0.3259154179968404 0.12001579642239436
+0.24395880285437838 0.31730547857180236 0.2439588028543784 0.31730547857180236 0.11688957164944426
+0.23474306020280267 0.32373731499589814 0.23474306020280267 0.32373731499589814 0.1186044097484572
+0.2377577151028636 0.3215884769775492 0.2377577151028636 0.3215884769775492 0.11760157700662521
+0.24081398574108095 0.31944800782060895 0.24081398574108095 0.31944800782060895 0.11701876534921836
+0.20656963612673854 0.34927111933431276 0.20656963612673854 0.34927111933431276 0.1495904562714823
+0.20987784048753588 0.34717504914342906 0.20987784048753588 0.34717504914342906 0.14569992976284363
+0.21337869298581894 0.34518553730186663 0.21337869298581896 0.3451855373018666 0.14200674074304567
+0.2154521055507017 0.343195916592973 0.2154521055507017 0.343195916592973 0.1389773375705767
+0.2174134936001237 0.34132069035077356 0.21741349360012371 0.34132069035077356 0.13638595733037154
+0.21995920964371396 0.33908229945675933 0.21995920964371396 0.33908229945675933 0.13328433753279664
+0.22261028671478428 0.33661186559258 0.2226102867147843 0.33661186559258 0.13013937040914988
+0.22505460363627672 0.33394027175528757 0.22505460363627666 0.3339402717552876 0.12716211332506552
+0.18985617521807854 0.3681978798951935 0.18985617521807854 0.3681978798951935 0.17974815012249812
+0.1932373366992534 0.36609803986334266 0.1932373366992534 0.36609803986334266 0.17558496663968093
+0.19658600607631696 0.359814787251629 0.19658600607631696 0.359814787251629 0.16663430452689867
+0.1999300801032508 0.3577198386690406 0.19993008010325083 0.3577198386690406 0.16245503887452697
+0.1966056645118617 0.3639956160953415 0.1966056645118617 0.3639956160953415 0.1713866877250373
+0.20323834713075506 0.3556130239274694 0.20323834713075506 0.35561302392746935 0.1583146539234326
+0.20652146345222389 0.35339465199720305 0.20652146345222389 0.35339465199720305 0.15412350058057722
+0.176299931348784 0.3849372384937243 0.176299931348784 0.38493723849372424 0.20461599483338677
+0.17968786386514282 0.38284632325245505 0.17968786386514282 0.38284632325245505 0.20099858450618882
+0.1830769291049157 0.3765710519270375 0.1830769291049157 0.3765710519270375 0.19254157632815552
+0.18307266685471538 0.3807566321617977 0.18307266685471538 0.3807566321617977 0.19724445246465686
+0.18646487891102295 0.3744790748845946 0.18646487891102295 0.3744790748845946 0.18858710848963012
+0.18985302457795697 0.37238490810561437 0.18985302457795697 0.37238490810561437 0.18453484349833219
+0.15934801487293945 0.4037656903765697 0.15934801487293945 0.4037656903765697 0.22787493134897338
+0.15934801487293945 0.4079497907949798 0.15934801487293945 0.4079497907949798 0.2316315022620101
+0.16273839816810834 0.4016736401673647 0.16273839816810834 0.4016736401673647 0.22542987954477292
+0.16612878146327725 0.3995815899581596 0.16612878146327725 0.3995815899581596 0.2227860096967932
+0.16951890919831172 0.3933054187278579 0.16951890919831172 0.3933054187278579 0.21566879891251434
+0.16951877896652204 0.39748949564955477 0.16951877896652204 0.39748949564955477 0.2199452535854143
+0.17290863260519748 0.39121333936603575 0.17290863260519748 0.39121333936603575 0.21249416339151228
+0.1762977012895305 0.3891213619326613 0.1762977012895305 0.3891213619326613 0.2091462284031205
+0.1491768649874327 0.42259414225941505 0.14917686498743274 0.42259414225941505 0.2433115489409011
+0.15256724828260168 0.42050209205021 0.15256724828260168 0.42050209205021 0.242120173083644
+0.15595763157777057 0.41422594142259483 0.15595763157777057 0.4142259414225949 0.23721183020278083
+0.15934801487293948 0.41213389121338984 0.15934801487293948 0.4121338912133899 0.23536633172778645
+0.15595763157777054 0.41841004184100494 0.15595763157777054 0.418410041841005 0.2407127175865614
+0.14917686498743257 0.42677824267782527 0.14917686498743257 0.4267782426778252 0.2463130139698911
+0.1423960983970932 0.43933054393305787 0.1423960983970932 0.43933054393305787 0.25243047610018904
+0.14917686498743216 0.43096234309623593 0.14917686498743213 0.43096234309623593 0.24926755073305065
+0.14578648169226213 0.4372384937238529 0.14578648169226213 0.4372384937238529 0.25240249120073804
+0.14917686498743105 0.4351464435146477 0.14917686498743102 0.4351464435146477 0.25216990622069674
+0.14239609839709047 0.4435146443514721 0.14239609839709047 0.4435146443514721 0.2547490159733763
+0.13222494851150804 0.466527196652815 0.13222494851150804 0.466527196652815 0.25838729415193945
+0.13900571510191576 0.4497907949790963 0.13900571510191576 0.4497907949790963 0.25630905570401546
+0.14239609839708436 0.44769874476989163 0.14239609839708436 0.44769874476989163 0.2569908996085836
+0.1356153318067336 0.45606694560673094 0.1356153318067336 0.45606694560673094 0.2571062146402465
+0.13900571510190282 0.4539748953975269 0.13900571510190282 0.4539748953975269 0.25820098588097284
+0.13561533180670687 0.46025104602517614 0.13561533180670685 0.46025104602517614 0.2586467900383973
+0.13561533180666324 0.46443514644363515 0.13561533180666327 0.4644351464436351 0.26008162434039933
+0.12883456521604872 0.48117154811753565 0.12883456521604872 0.48117154811753565 0.2589405904243878
+0.12883456521572906 0.4853556485360311 0.12883456521572903 0.48535564853603114 0.2594780980156917
+0.1322249485114705 0.4707112970712682 0.1322249485114705 0.4707112970712682 0.2594777061156888
+0.13222494851141425 0.4748953974897622 0.13222494851141423 0.4748953974897622 0.26044936144740344
+0.13222494851127103 0.47907949790832705 0.132224948511271 0.47907949790832705 0.2612920941246488
+0.12883456521546116 0.489539748954132 0.1288345652154612 0.48953974895413205 0.259887538041427
+0.128834565215958 0.4937238493722495 0.128834565215958 0.4937238493722495 0.26016368921205607
+0.1254441819213674 0.5000000000001216 0.1254441819213674 0.5000000000001216 0.25752380149871534
+0.128834565216444 0.49790794979074304 0.128834565216444 0.49790794979074304 0.2603029192850988
+0.12544418192129664 0.5041841004188213 0.1254441819212966 0.5041841004188213 0.25746677841459936
+0.12544418192106366 0.5083682008371436 0.12544418192106366 0.5083682008371436 0.2572956438901137
+0.12544418192100168 0.512552301255142 0.12544418192100168 0.512552301255142 0.25701267237764286
+0.297789463778749 0.2766673717950561 0.297789463778749 0.2766673717950561 0.16712325135236636
+0.29735692361219407 0.28015935791058144 0.29735692361219407 0.28015935791058144 0.16579410726405944
+0.3112750007307527 0.2557340006308737 0.3112750007307527 0.2557340006308737 0.18811772977601451
+0.3022092050541734 0.26834375989629905 0.3022092050541734 0.26834375989629905 0.17430851234259734
+0.31054475393508724 0.2592050858389004 0.31054475393508724 0.2592050858389004 0.18668625701472316
+0.30570895808473414 0.2671317867788233 0.30570895808473414 0.2671317867788234 0.17913142176606164
+0.30985799540282644 0.26262486599463153 0.30985799540282644 0.26262486599463153 0.18532539733921397
+0.30920371197039825 0.2659514458674379 0.30920371197039825 0.2659514458674379 0.1839846015103065
+0.30171386768772396 0.2718786930928245 0.30171386768772396 0.2718786930928245 0.1731013355772301
+0.30123786217134324 0.2754137975073341 0.30123786217134324 0.2754137975073341 0.1718195403624582
+0.32682074182189363 0.2355842740944021 0.32682074182189363 0.2355842740944021 0.2130727675654973
+0.3163880597037239 0.24767744780256037 0.3163880597037239 0.24767744780256037 0.19626706970272004
+0.32573510964984054 0.2390122527518962 0.3257351096498406 0.23901225275189616 0.21069022007778182
+0.32004552323384666 0.24674430606317288 0.32004552323384666 0.24674430606317288 0.2013891443404612
+0.3246941337877509 0.24244811636029162 0.3246941337877509 0.24244811636029162 0.208502893401489
+0.32373743728854126 0.24588770017109765 0.32373743728854126 0.24588770017109765 0.20654729976274963
+0.31561982404818506 0.25121625279352333 0.31561982404818506 0.25121625279352333 0.19464676918394674
+0.3148568868427004 0.2547345397839697 0.3148568868427004 0.2547345397839697 0.19311704346536882
+0.34458689288879263 0.2164940522731756 0.3445868928887927 0.2164940522731756 0.24291114352635887
+0.3325997000407998 0.22787053579084918 0.3325997000407998 0.22787053579084918 0.2232484457774889
+0.3433698382800413 0.21987274937416212 0.34336983828004136 0.21987274937416212 0.2399727964301123
+0.3362457223788521 0.22690836956119015 0.33624572237885214 0.22690836956119018 0.22830252942889784
+0.3416275789631297 0.2231225414554997 0.34162757896312973 0.22312254145549967 0.23653248162632431
+0.3400279586918059 0.2263443284708268 0.34002795869180596 0.22634432847082683 0.23335146854857206
+0.33156878352747415 0.23138380617035495 0.33156878352747415 0.23138380617035495 0.22065082677146722
+0.33051647757566044 0.23484825462042988 0.33051647757566044 0.23484825462042988 0.2181806273868547
+0.3640258302961834 0.1966033227465075 0.3640258302961834 0.1966033227465075 0.2705553291974214
+0.35991234719230786 0.20329160377587843 0.35991234719230786 0.20329160377587843 0.2649594493652609
+0.3619684722986859 0.19994851704978295 0.36196847229868595 0.19994851704978298 0.2678988322291334
+0.3516400669154737 0.20976262534506854 0.3516400669154737 0.20976262534506854 0.2538541251228012
+0.3557970731136669 0.20971414342156997 0.3557970731136669 0.20971414342156994 0.25845224502383984
+0.35783096123774666 0.20666195495742748 0.35783096123774666 0.20666195495742748 0.2617710120072356
+0.349765902958527 0.21298797276882953 0.349765902958527 0.21298797276882953 0.2504433945580331
+0.3482429538427249 0.21620488337446042 0.3482429538427249 0.21620488337446045 0.24738124717842516
+0.3953974895397233 0.17290954805361602 0.39539748953972337 0.17290954805361602 0.2828275325544987
+0.39330544769499926 0.17629992594186705 0.39330544769499926 0.17629992594186705 0.2845132042874461
+0.39121343791411894 0.17969028310359939 0.39121343791411894 0.17969028310359939 0.2856774660009776
+0.3891222598532624 0.18307992547113527 0.3891222598532624 0.18307992547113527 0.2863185167535405
+0.3870326143896618 0.1864679255182249 0.3870326143896618 0.1864679255182249 0.2864445028628347
+0.3849453246519643 0.18985443354451959 0.3849453246519643 0.18985443354451959 0.2860734580482975
+0.37029465929149497 0.19324473378910367 0.370294659291495 0.19324473378910367 0.2763530138640457
+0.37448124109982556 0.19325133885398668 0.37448124109982556 0.19325133885398668 0.27958076811818083
+0.3786694294402439 0.19324973675904097 0.3786694294402439 0.19324973675904097 0.2825515432563584
+0.3828601765350419 0.1932413312411071 0.3828601765350419 0.1932413312411071 0.2852309924208058
+0.3681975539040678 0.19662297151898503 0.3681975539040678 0.19662297151898503 0.2742397794738247
+0.4016736397950329 0.16951915238993634 0.40167363979503284 0.16951915238993634 0.2805958271781705
+0.3995815973307634 0.17290948134632886 0.3995815973307634 0.17290948134632886 0.2831444106567636
+0.40585774187755486 0.16951901445293013 0.4058577418775549 0.16951901445293013 0.28012267489398607
+0.4351464435146204 0.14917686498743343 0.43514644351462034 0.14917686498743343 0.23972442445638872
+0.4330543933054153 0.15256724828260237 0.43305439330541523 0.15256724828260237 0.24588619911015216
+0.4309623430962102 0.15595763157777132 0.4309623430962102 0.15595763157777132 0.2519065396895443
+0.42887029288700507 0.15934801487294026 0.4288702928870051 0.15934801487294026 0.25771551359558703
+0.42677824267779996 0.1627383981681092 0.4267782426778 0.1627383981681092 0.26324682563397234
+0.41004186562475337 0.1695185705683604 0.41004186562475337 0.1695185705683604 0.2791801917231267
+0.4142260449057662 0.16951786710531222 0.41422604490576626 0.16951786710531222 0.27773742857227296
+0.4205020956985262 0.16612845552787897 0.4205020956985262 0.166128455527879 0.2713165984992754
+0.42468619894470444 0.1661283765491865 0.42468619894470444 0.16612837654918652 0.2684390880886549
+0.41841027109785195 0.16951715776491585 0.41841027109785195 0.16951715776491585 0.2757652949485305
+0.4560669456066715 0.14239609839709555 0.4560669456066715 0.14239609839709555 0.20363369547616664
+0.4414225941422357 0.1457864816922645 0.44142259414223567 0.1457864816922645 0.228469859055594
+0.44560669456064594 0.1457864816922645 0.445606694560646 0.1457864816922645 0.22294808223275417
+0.44979079497905616 0.1457864816922645 0.4497907949790561 0.1457864816922645 0.21692263786472063
+0.4539748953974664 0.1457864816922645 0.45397489539746644 0.1457864816922645 0.21039218752223918
+0.4393305439330306 0.14917686498743343 0.4393305439330306 0.14917686498743343 0.2348963769512766
+0.4769874476987226 0.13561533180675767 0.47698744769872264 0.13561533180675767 0.1596099020549162
+0.4623430962342868 0.1390057151019266 0.4623430962342869 0.1390057151019266 0.18991121054267693
+0.46652719665269704 0.1390057151019266 0.466527196652697 0.1390057151019266 0.1823255579971321
+0.47071129707110726 0.1390057151019266 0.4707112970711073 0.1390057151019266 0.17430841542450584
+0.4748953974895175 0.1390057151019266 0.4748953974895174 0.1390057151019266 0.1658739992801264
+0.4602510460250817 0.14239609839709555 0.46025104602508177 0.14239609839709555 0.19653164402640963
+0.4832635983263379 0.13222494851158872 0.48326359832633786 0.13222494851158872 0.14502370690001173
+0.48744769874474814 0.13222494851158872 0.4874476987447482 0.13222494851158872 0.13602918034381584
+0.49163179916315836 0.13222494851158872 0.4916317991631583 0.13222494851158872 0.1267211089808112
+0.4811715481171328 0.13561533180675767 0.4811715481171328 0.13561533180675767 0.15085894570569636
+0.5146443514644146 0.11527303203574402 0.5146443514644146 0.11527303203574402 0.0745596635167869
+0.5083682008367992 0.11866341533091296 0.5083682008367992 0.11866341533091296 0.08859251145398174
+0.5125523012552095 0.11866341533091296 0.5125523012552095 0.11866341533091296 0.07890559894945942
+0.4958158995815686 0.13222494851158872 0.49581589958156863 0.13222494851158872 0.1171249912368481
+0.5062761506275941 0.1220537986260819 0.5062761506275941 0.1220537986260819 0.09300494469216293
+0.504184100418389 0.12544418192125084 0.504184100418389 0.12544418192125084 0.09754821656810196
+0.5020920502091839 0.12883456521641978 0.5020920502091838 0.12883456521641978 0.10228440486317454
+0.4999999999999788 0.13222494851158872 0.49999999999997874 0.13222494851158872 0.10727108662148889
+0.5188284518828248 0.11527303203574402 0.5188284518828247 0.11527303203574402 0.06468061840479301
+0.523012552301235 0.11527303203574402 0.523012552301235 0.11527303203574402 0.0546835530769054
+0.5292887029288503 0.11188264874057507 0.5292887029288503 0.11188264874057507 0.04016184311143739
+0.5271966527196452 0.11527303203574402 0.5271966527196453 0.11527303203574402 0.04470592499509376
+0.5334728033472605 0.11188264874057507 0.5334728033472605 0.11188264874057507 0.030523570794566912
+0.5397489539748759 0.10849226544540613 0.5397489539748759 0.10849226544540613 0.018215150922428383
+0.5376569037656708 0.11188264874057507 0.5376569037656708 0.11188264874057507 0.022259670789560093
+0.5460251046024912 0.10510188215023719 0.5460251046024912 0.10510188215023719 0.016293430529676856
+0.5439330543932861 0.10849226544540613 0.5439330543932862 0.10849226544540613 0.016360459470531604
+0.5836820083681832 0.06441728260820989 0.5836820083681832 0.06441728260820989 0.1091489658875472
+0.5774058577405679 0.06780766590337883 0.577405857740568 0.06780766590337883 0.09307489395012726
+0.5815899581589781 0.06780766590337883 0.5815899581589781 0.06780766590337883 0.10522777527916634
+0.5753138075313627 0.07119804919854777 0.5753138075313627 0.07119804919854777 0.08848333600350318
+0.5732217573221576 0.07458843249371672 0.5732217573221576 0.07458843249371672 0.08355281665826703
+0.5711297071129525 0.07797881578888566 0.5711297071129525 0.07797881578888566 0.07833391661496482
+0.5648535564853372 0.0813691990840546 0.5648535564853372 0.0813691990840546 0.06005336120515497
+0.5627615062761321 0.08475958237922354 0.5627615062761321 0.08475958237922354 0.05441318331226202
+0.560669456066927 0.08814996567439248 0.5606694560669271 0.08814996567439248 0.04876089292076755
+0.5585774058577219 0.09154034896956142 0.5585774058577219 0.09154034896956142 0.043201406810799474
+0.5564853556485168 0.09493073226473037 0.5564853556485168 0.09493073226473037 0.03785944265475541
+0.5543933054393116 0.09832111555989931 0.5543933054393116 0.09832111555989931 0.03288699599989837
+0.5523012552301065 0.10171149885506825 0.5523012552301064 0.10171149885506825 0.028473002165227492
+0.5502092050209014 0.10510188215023719 0.5502092050209014 0.10510188215023719 0.024848606600124626
+0.5690376569037474 0.0813691990840546 0.5690376569037473 0.0813691990840546 0.07288863474691455
+0.5941422594142087 0.054246132722703067 0.5941422594142088 0.054246132722703067 0.1289180746229506
+0.598326359832619 0.054246132722703067 0.598326359832619 0.054246132722703067 0.13933344532085098
+0.5920502092050036 0.05763651601787201 0.5920502092050036 0.05763651601787201 0.12670340749605705
+0.5899581589957985 0.06102689931304095 0.5899581589957985 0.06102689931304095 0.12403503918879048
+0.5878661087865934 0.06441728260820989 0.5878661087865934 0.06441728260820989 0.12089995331623994
+0.61924686192467 0.027123066361351533 0.6192468619246699 0.027123066361351533 0.15087533377298143
+0.6171548117154649 0.030513449656520475 0.6171548117154649 0.030513449656520475 0.15083105268615848
+0.6150627615062598 0.03390383295168942 0.6150627615062598 0.03390383295168942 0.15094205615938625
+0.6129707112970547 0.03729421624685836 0.6129707112970547 0.03729421624685836 0.15111180091319734
+0.6108786610878496 0.0406845995420273 0.6108786610878497 0.0406845995420273 0.1512405257244965
+0.6087866108786445 0.04407498283719624 0.6087866108786445 0.04407498283719624 0.1512303379067024
+0.6066945606694394 0.04746536613236518 0.6066945606694394 0.04746536613236518 0.15098950971080785
+0.6046025104602343 0.050855749427534125 0.6046025104602343 0.050855749427534125 0.1504358826773858
+0.6025104602510292 0.054246132722703067 0.6025104602510291 0.054246132722703067 0.14949940177495802
+0.6255230125522854 0.02373268306618259 0.6255230125522854 0.02373268306618259 0.15777939907048658
+0.6234309623430803 0.027123066361351533 0.6234309623430803 0.027123066361351533 0.15773852950417178
+0.6317991631799007 0.02034229977101365 0.6317991631799007 0.02034229977101365 0.16437900139869147
+0.6297071129706956 0.02373268306618259 0.6297071129706956 0.02373268306618259 0.16417939711510854
+0.638075313807516 0.01695191647584471 0.638075313807516 0.01695191647584471 0.17090217725322096
+0.6359832635983109 0.02034229977101365 0.6359832635983108 0.02034229977101365 0.17040629740482058
+0.6443514644351314 0.013561533180675767 0.6443514644351315 0.013561533180675767 0.17754722994009445
+0.6422594142259263 0.01695191647584471 0.6422594142259263 0.01695191647584471 0.17665486089037605
+0.6506276150627467 0.010171149885506825 0.6506276150627467 0.010171149885506825 0.18446888842990508
+0.6485355648535416 0.013561533180675767 0.6485355648535416 0.013561533180675767 0.18312377639781266
+0.656903765690362 0.006780766590337883 0.656903765690362 0.006780766590337883 0.1917735856171052
+0.6548117154811569 0.010171149885506825 0.6548117154811569 0.010171149885506825 0.1899624269395044
+0.006780766590337709 0.6610878661087858 0.006780766590337709 0.6610878661087858 0.16912253893136353
+0.006780766590337709 0.6652719665271958 0.006780766590337709 0.6652719665271958 0.1670277109132756
+0.01017114988550656 0.6589958158995808 0.01017114988550656 0.6589958158995808 0.17057785975607057
+0.013561533180675408 0.6527196652719658 0.013561533180675408 0.6527196652719658 0.17453504626496927
+0.013561533180675408 0.6569037656903758 0.013561533180675408 0.6569037656903758 0.17219705796057838
+0.016951916475844264 0.6464435146443508 0.016951916475844264 0.6464435146443508 0.17888634730466246
+0.016951916475844264 0.6506276150627608 0.016951916475844264 0.6506276150627608 0.1763844393138566
+0.02034229977101312 0.6401673640167358 0.02034229977101312 0.6401673640167358 0.18360984878256922
+0.02034229977101312 0.6443514644351458 0.02034229977101312 0.6443514644351458 0.18097135926575014
+0.02373268306618197 0.6338912133891208 0.02373268306618197 0.6338912133891208 0.1886671726994833
+0.02373268306618197 0.6380753138075308 0.02373268306618197 0.6380753138075308 0.18593052442062533
+0.027123066361350822 0.6276150627615058 0.027123066361350822 0.6276150627615058 0.19399777114076489
+0.027123066361350822 0.6317991631799158 0.027123066361350822 0.6317991631799158 0.19121214001700085
+0.030513449656519673 0.6213389121338908 0.030513449656519673 0.6213389121338908 0.19951645409714303
+0.030513449656519673 0.6255230125523008 0.030513449656519673 0.6255230125523008 0.19674002972984753
+0.033903832951688535 0.6192468619246858 0.033903832951688535 0.6192468619246858 0.20241175261591707
+0.03729421624685738 0.6171548117154808 0.03729421624685738 0.6171548117154808 0.2054123107605024
+0.040684599542026224 0.6150627615062758 0.040684599542026224 0.6150627615062758 0.20848716618337207
+0.0440749828371951 0.6129707112970708 0.0440749828371951 0.6129707112970708 0.21160170481493504
+0.04746536613236394 0.6108786610878658 0.04746536613236394 0.6108786610878658 0.21471868839838668
+0.05085574942753279 0.6087866108786608 0.05085574942753279 0.6087866108786608 0.2177994161996142
+0.05424613272270165 0.6025104602510458 0.054246132722701644 0.6025104602510458 0.22323432678576297
+0.05763651601787049 0.6004184100418408 0.05763651601787049 0.6004184100418408 0.2260290271471995
+0.06780766590337706 0.5857740585774058 0.06780766590337706 0.5857740585774058 0.23645150171115456
+0.07458843249371476 0.5774058577405858 0.07458843249371476 0.5774058577405858 0.24046618964339553
+0.07797881578888362 0.5753138075313808 0.07797881578888362 0.5753138075313808 0.24151619850605358
+0.08475958237922132 0.5669456066945608 0.08475958237922132 0.5669456066945608 0.24330146448353948
+0.08814996567439015 0.5648535564853558 0.08814996567439015 0.5648535564853558 0.24368509307790784
+0.09154034896955902 0.5627615062761508 0.09154034896955902 0.5627615062761508 0.24396506815434835
+0.09493073226472787 0.5564853556485359 0.09493073226472787 0.5564853556485359 0.24423748459281147
+0.09832111555989677 0.5543933054393309 0.09832111555989677 0.5543933054393309 0.24447404413687837
+0.10171149885506565 0.5523012552301259 0.10171149885506565 0.5523012552301259 0.244790680307176
+0.09493073226472787 0.5606694560669458 0.09493073226472787 0.5606694560669458 0.24419002945293597
+0.08136919908405248 0.5732217573221758 0.08136919908405248 0.5732217573221758 0.2423428789625147
+0.08475958237922132 0.5711297071129708 0.08475958237922132 0.5711297071129708 0.2429704620695247
+0.0711980491985459 0.5836820083682008 0.0711980491985459 0.5836820083682008 0.23813515714430086
+0.07458843249371476 0.5815899581589958 0.07458843249371476 0.5815899581589958 0.23956887673749086
+0.06102689931303934 0.5941422594142258 0.06102689931303934 0.5941422594142258 0.23063416216317492
+0.06102689931303934 0.5983263598326358 0.06102689931303934 0.5983263598326358 0.22866066737728205
+0.06441728260820821 0.5920502092050208 0.06441728260820821 0.5920502092050208 0.23293706191739427
+0.06780766590337706 0.5899581589958158 0.06780766590337706 0.5899581589958158 0.23501327279300807
+0.05424613272270165 0.6066945606694558 0.054246132722701644 0.6066945606694558 0.22080496907368993
+0.11527303203573537 0.5313807531381116 0.11527303203573537 0.5313807531381115 0.24908803357343134
+0.11527303203572918 0.5355648535564896 0.11527303203572918 0.5355648535564895 0.2487377588932814
+0.11866341533091969 0.5292887029289365 0.11866341533091969 0.5292887029289365 0.25092068036285786
+0.12205379862612768 0.5271966527197537 0.12205379862612768 0.5271966527197537 0.2530725242518094
+0.12544418192118598 0.5167364016733016 0.12544418192118598 0.5167364016733016 0.25662150651450477
+0.12544418192136944 0.5209205020918554 0.12544418192136944 0.5209205020918554 0.25612694132119446
+0.12544418192136422 0.5251046025105252 0.12544418192136422 0.5251046025105252 0.2555346344913955
+0.10510188215023485 0.5460251046025104 0.10510188215023485 0.5460251046025104 0.24534540972697802
+0.10849226544540379 0.5439330543933041 0.10849226544540379 0.5439330543933041 0.24608141830073563
+0.11188264874057192 0.5418410041840966 0.11188264874057192 0.5418410041840965 0.24706917327352265
+0.11527303203573776 0.5397489539748881 0.11527303203573776 0.539748953974888 0.24834386100052716
+0.10510188215023464 0.550209205020921 0.10510188215023464 0.550209205020921 0.2452425287248885
+0.296941533131554 0.2836060069343119 0.29694153313155397 0.283606006934312 0.16435502183542725
+0.2960423826620681 0.28635792182539754 0.2960423826620681 0.28635792182539754 0.1623703870328328
+0.27337183576853835 0.2971157027824794 0.27337183576853835 0.2971157027824794 0.13478130702872423
+0.2933108620435144 0.28798994012874746 0.29331086204351436 0.2879899401287474 0.1586267656179857
+0.29006789338596733 0.2895680643909469 0.29006789338596733 0.2895680643909469 0.15434577448049472
+0.28673878592209323 0.29102818512350964 0.2867387859220933 0.29102818512350964 0.1501370806242975
+0.283381223199159 0.2925514443643233 0.283381223199159 0.2925514443643233 0.14602703302703077
+0.28003698929624604 0.2940736569990586 0.28003698929624604 0.2940736569990586 0.14209177662837727
+0.27670905552999325 0.2955714456053533 0.2767090555299933 0.2955714456053533 0.1383543422696987
+0.2732802299931053 0.3005333458832025 0.27328022999310525 0.3005333458832025 0.1339826693005466
+0.2505533473442458 0.31332153072814667 0.2505533473442458 0.31332153072814667 0.11812265922498466
+0.25382812630223145 0.3114239345967001 0.25382812630223145 0.3114239345967001 0.1193784393686725
+0.25707931087891395 0.309565772869656 0.25707931087891395 0.309565772869656 0.12101105680618858
+0.27003091324070866 0.3022795964384705 0.27003091324070866 0.3022795964384705 0.13082913776819205
+0.26678439923995273 0.30406265074665956 0.26678439923995273 0.30406265074665956 0.12792413152851892
+0.2603128327536949 0.3077171786222308 0.2603128327536948 0.3077171786222308 0.12299025320416655
+0.2635444303531372 0.3058790973947754 0.2635444303531372 0.3058790973947754 0.1253009698580011
+0.2288482781502846 0.33193515038445587 0.2288482781502846 0.33193515038445587 0.12470820475222437
+0.2507608841625394 0.3169044303610179 0.25076088416253933 0.31690443036101795 0.1190184149231475
+0.24755203146764362 0.31890120792181736 0.24755203146764362 0.31890120792181736 0.11849216425788546
+0.2320783873087256 0.3296251056033682 0.23207838730872557 0.3296251056033683 0.12255447056361006
+0.235169664797896 0.32739874767742777 0.235169664797896 0.32739874767742777 0.12087493780951429
+0.24439051072076426 0.3209684469212688 0.24439051072076426 0.3209684469212688 0.11841931585731706
+0.2382314807276958 0.32523162113070603 0.23823148072769576 0.32523162113070603 0.1196316396681889
+0.2412913120877965 0.3230861528167213 0.2412913120877965 0.3230861528167213 0.11880659877185228
+0.20982548115368688 0.3511685264616369 0.20982548115368685 0.3511685264616369 0.1500044896371946
+0.21287613761658636 0.3491921793618423 0.21287613761658639 0.34919217936184227 0.14638805589120898
+0.2158195455966455 0.34793301545434113 0.21581954559664548 0.34793301545434113 0.14368131495948977
+0.2173964717936852 0.34522825066511675 0.21739647179368518 0.34522825066511675 0.14029071823239883
+0.22056374558840078 0.34264958740471646 0.22056374558840078 0.34264958740471646 0.13645336196477406
+0.22336512320948587 0.3402371494991305 0.2233651232094859 0.3402371494991305 0.13318334132612056
+0.22608604200653773 0.3378058430561015 0.22608604200653773 0.3378058430561015 0.13017412768489264
+0.22899108496088533 0.33555575804829146 0.22899108496088535 0.33555575804829146 0.12757919110750773
+0.19324142501400374 0.3702861357027009 0.19324142501400374 0.3702861357027009 0.1804013738227701
+0.19662953648897852 0.36818266182502307 0.19662953648897852 0.36818266182502307 0.17620792073641908
+0.1999492084530318 0.3618907286547048 0.1999492084530318 0.3618907286547048 0.16718728241664338
+0.20323375584257797 0.3597574492874866 0.20323375584257794 0.3597574492874866 0.1629928463431112
+0.19999849395392633 0.36607345593985996 0.19999849395392633 0.36607345593985996 0.17198164947101924
+0.2064710205798764 0.35753940017167607 0.2064710205798764 0.35753940017167607 0.15877555728837225
+0.20973131248267593 0.3552400129381532 0.20973131248267593 0.3552400129381532 0.15452423287791375
+0.17968545838177186 0.38703039859224164 0.17968545838177186 0.38703039859224164 0.20563571089950697
+0.18306756982990935 0.38494165672288316 0.18306756982990935 0.38494165672288316 0.20197761030667108
+0.18645568280561312 0.3786659428726822 0.18645568280561312 0.3786659428726822 0.19336496917962254
+0.18644365174716285 0.3828533971974852 0.18644365174716285 0.3828533971974852 0.1981844974666731
+0.18984429115370466 0.3765726428214781 0.18984429115370463 0.3765726428214781 0.1893709171993523
+0.19323315119496562 0.37447553035328335 0.19323315119496562 0.37447553035328335 0.1852808485533379
+0.16273839816810834 0.4058577405857748 0.16273839816810834 0.4058577405857748 0.2293719979437168
+0.1627383981681083 0.4100418410041849 0.1627383981681083 0.4100418410041849 0.23330174896562725
+0.16612878146327725 0.4037656903765697 0.16612878146327725 0.4037656903765697 0.22690263591141435
+0.169518749290507 0.4016735774071342 0.169518749290507 0.4016735774071342 0.2242247157771902
+0.1729076690049932 0.3953973514466178 0.1729076690049932 0.3953973514466178 0.21691208652028673
+0.17290692741789956 0.3995813045848143 0.17290692741789956 0.3995813045848143 0.22134223338294004
+0.17629526389703773 0.3933052566274909 0.17629526389703773 0.3933052566274909 0.21369339089559172
+0.17968103778931924 0.39121402584697407 0.17968103778931924 0.39121402584697407 0.21029931853740222
+0.15256724828260146 0.4246861924686202 0.15256724828260146 0.4246861924686202 0.24536058521398066
+0.1559576315777705 0.42259414225941505 0.1559576315777705 0.42259414225941505 0.24418444456258917
+0.15934801487293945 0.4163179916318 0.15934801487293945 0.4163179916318 0.23908130180771867
+0.1627383981681083 0.414225941422595 0.1627383981681083 0.414225941422595 0.23722053446663063
+0.1593480148729393 0.4205020920502101 0.1593480148729393 0.4205020920502101 0.24277537393221235
+0.15256724828260107 0.42887029288703077 0.15256724828260107 0.42887029288703077 0.24856090443822068
+0.14578648169225936 0.44142259414226714 0.14578648169225936 0.44142259414226714 0.2549836201892201
+0.15256724828260002 0.4330543933054425 0.15256724828260002 0.43305439330544254 0.2517149955253379
+0.1491768649874283 0.4393305439330619 0.1491768649874283 0.439330543933062 0.2550117319462957
+0.15256724828259732 0.43723849372385665 0.1525672482825973 0.43723849372385665 0.25481354982688925
+0.14578648169225322 0.44560669456068663 0.1457864816922532 0.44560669456068663 0.25748998542789975
+0.13561533180661323 0.46861924686209494 0.13561533180661323 0.46861924686209494 0.26139869840036156
+0.14239609839707137 0.4518828451883228 0.14239609839707137 0.4518828451883228 0.2591449544723336
+0.14578648169224015 0.44979079497911795 0.14578648169224015 0.44979079497911795 0.25990897874139063
+0.13900571510187534 0.4581589958159771 0.13900571510187534 0.45815899581597713 0.2599943749759965
+0.14239609839704334 0.4560669456067774 0.14239609839704334 0.45606694560677746 0.2611979760794962
+0.13900571510182516 0.4623430962344492 0.13900571510182516 0.4623430962344492 0.2616762190445355
+0.13900571510175705 0.4665271966529305 0.13900571510175705 0.4665271966529305 0.26323255659651107
+0.13222494851097868 0.48326359832687454 0.13222494851097868 0.48326359832687454 0.2619963848785391
+0.13222494851067243 0.4874476987451633 0.13222494851067243 0.4874476987451633 0.2625537948932251
+0.13561533180656463 0.4728033472805686 0.13561533180656463 0.4728033472805686 0.26258563163816256
+0.1356153318064616 0.47698744769912443 0.1356153318064616 0.47698744769912443 0.263630204220566
+0.13561533180618948 0.48117154811774276 0.13561533180618948 0.4811715481177428 0.2645208616308945
+0.13222494851073166 0.4916317991632033 0.13222494851073166 0.49163179916320326 0.2629573432239159
+0.13222494851130645 0.4958158995813675 0.13222494851130648 0.4958158995813675 0.2632018144200228
+0.12883456521658082 0.5020920502095886 0.1288345652165808 0.5020920502095886 0.26030336590586606
+0.13222494851178743 0.5000000000001928 0.13222494851178743 0.5000000000001928 0.26328398578686646
+0.12883456521632378 0.5062761506281883 0.12883456521632378 0.5062761506281883 0.26016502870804437
+0.12883456521607733 0.5104602510461949 0.12883456521607736 0.5104602510461947 0.25988976937379604
+0.12883456521618683 0.5146443514640725 0.12883456521618683 0.5146443514640725 0.25948121965136645
+0.3007400688373738 0.27896051543897926 0.3007400688373738 0.2789605154389792 0.17038271805558577
+0.30025680113563813 0.2824979255928905 0.30025680113563813 0.2824979255928905 0.16882180201126276
+0.31411022440036634 0.2582250252790697 0.31411022440036634 0.2582250252790697 0.1916583369105126
+0.3051858197466903 0.27063758477100636 0.3051858197466903 0.27063758477100636 0.1778952323917127
+0.3133952210953543 0.2616656581746495 0.3133952210953543 0.2616656581746495 0.190259641612211
+0.30862853762445946 0.2693906901772567 0.30862853762445946 0.2693906901772567 0.18270173592605463
+0.3127496782498093 0.26503172319994295 0.3127496782498093 0.265031723199943 0.18894345000478022
+0.3119961199460065 0.2680373411193762 0.31199611994600657 0.2680373411193762 0.18745453267908044
+0.30471105675914084 0.27415611595499983 0.30471105675914084 0.27415611595499983 0.17662068269685652
+0.3042325355614796 0.27767668941493806 0.3042325355614796 0.27767668941493806 0.17521494084252034
+0.3294565974707616 0.2382891171477953 0.32945659747076167 0.2382891171477953 0.21584552931679193
+0.3192278754753019 0.2502468830286437 0.3192278754753019 0.2502468830286437 0.19970379468591679
+0.3284154235333326 0.24170790213492457 0.3284154235333326 0.24170790213492457 0.21367338629389285
+0.3228569187272123 0.24932937005586986 0.3228569187272123 0.24932937005586986 0.20479376679885195
+0.3274241464696189 0.2451052661094513 0.32742414646961887 0.2451052661094513 0.2116914466949031
+0.3264933284550574 0.24847904490989933 0.32649332845505746 0.24847904490989933 0.20989140139475324
+0.3184381995244594 0.2537476415530899 0.3184381995244594 0.2537476415530899 0.1981401626369744
+0.31766825408487503 0.25724422134351727 0.31766825408487503 0.25724422134351727 0.1966537368726977
+0.34694540297885945 0.21948070832021696 0.34694540297885945 0.21948070832021696 0.24451169583434637
+0.33524144844527565 0.2305918956079336 0.33524144844527565 0.2305918956079336 0.22570114846765968
+0.34553583377771213 0.22275001848132997 0.34553583377771213 0.22275001848133 0.24152538951893934
+0.3389534307331445 0.22989377960616145 0.3389534307331445 0.22989377960616145 0.2307475611067021
+0.3440618346150694 0.22601669589033677 0.3440618346150694 0.22601669589033677 0.2385319837932589
+0.3427480148577419 0.22935904128438347 0.3427480148577419 0.22935904128438347 0.23579831969646967
+0.33419356648394666 0.23410491285591747 0.33419356648394666 0.23410491285591747 0.2232482442496818
+0.33313819829468055 0.23756451241739004 0.33313819829468055 0.23756451241739004 0.2209376127732959
+0.36187203087264935 0.2066054833337576 0.36187203087264935 0.2066054833337576 0.26593798470841307
+0.36610343060666395 0.19998387412957216 0.36610343060666395 0.19998387412957216 0.2717718303945324
+0.36405940812591686 0.20328968317378626 0.3640594081259168 0.20328968317378626 0.2690414938327334
+0.35358439402302516 0.21293642518262634 0.35358439402302516 0.21293642518262637 0.2548125589158619
+0.35688041724552794 0.21279606461516448 0.35688041724552794 0.21279606461516448 0.25848159456637426
+0.3599324951737192 0.21048612410306375 0.35993249517371917 0.21048612410306375 0.2627982005799312
+0.36406573422017907 0.20969940902310452 0.364065734220179 0.20969940902310455 0.26720559101857116
+0.3521730812499485 0.21598048436756634 0.35217308124994856 0.21598048436756634 0.2520498322769467
+0.3507216698217415 0.21912351982574355 0.3507216698217415 0.21912351982574355 0.24917924380351422
+0.39748963412875876 0.1762997575644025 0.39748963412875876 0.1762997575644025 0.2851829897025213
+0.39539789395488456 0.1796899769684681 0.39539789395488456 0.1796899769684681 0.28669767009967123
+0.39330665413699667 0.18307960567841394 0.39330665413699667 0.18307960567841394 0.28768411499583463
+0.3912157927778375 0.18646754349467135 0.3912157927778375 0.18646754349467135 0.28814770897459585
+0.3891256446365199 0.18985319918522178 0.3891256446365199 0.18985319918522178 0.28810392033043136
+0.38704033454067444 0.19323626041607328 0.3870403345406745 0.1932362604160733 0.28757921734266073
+0.3723803397573357 0.19664068511885807 0.3723803397573357 0.19664068511885804 0.2777226461594923
+0.3765680292909741 0.19664246185104084 0.3765680292909741 0.19664246185104084 0.2809680718545429
+0.3807592651799061 0.19663290823683846 0.3807592651799061 0.19663290823683846 0.2839402391446788
+0.3849214492826349 0.19661096485677057 0.3849214492826349 0.19661096485677057 0.28658363938091314
+0.37026377630044804 0.20003258667631002 0.370263776300448 0.20003258667631 0.27548002178643
+0.4037657725457355 0.1729089781389045 0.4037657725457355 0.1729089781389045 0.2830289000957021
+0.40167415944359125 0.1762988113003091 0.40167415944359125 0.1762988113003091 0.2854272253995083
+0.4079501890435701 0.17290763529564088 0.4079501890435701 0.17290763529564088 0.2824471986740739
+0.4372384937238255 0.15256724828260237 0.43723849372382556 0.15256724828260237 0.24128087424689762
+0.4351464435146204 0.15595763157777132 0.43514644351462034 0.15595763157777132 0.24755129710873716
+0.4330543933054153 0.15934801487294026 0.43305439330541523 0.15934801487294026 0.2536366920391972
+0.4309623430962102 0.1627383981681092 0.4309623430962102 0.1627383981681092 0.25946920028000203
+0.4288703005555674 0.16612840277005428 0.4288703005555674 0.16612840277005428 0.26498542368217565
+0.4121349652661673 0.17290560461752777 0.4121349652661673 0.17290560461752777 0.28136696043714865
+0.416319834423859 0.17290330742623247 0.416319834423859 0.17290330742623247 0.27975781734591004
+0.4225944523532735 0.16951669211147916 0.4225944523532735 0.16951669211147916 0.2732367999746383
+0.4267785205664243 0.16951675519205167 0.4267785205664243 0.16951675519205167 0.27012738305895345
+0.4205042492528163 0.17290141578191345 0.4205042492528163 0.17290141578191345 0.2775918409790537
+0.4581589958158766 0.1457864816922645 0.45815899581587655 0.1457864816922645 0.20335905885976668
+0.44351464435144083 0.14917686498743343 0.4435146443514409 0.14917686498743343 0.22954811733433536
+0.44769874476985105 0.14917686498743343 0.44769874476985105 0.14917686498743343 0.22367311378857754
+0.4518828451882613 0.14917686498743343 0.4518828451882612 0.14917686498743343 0.21726848939137597
+0.4560669456066715 0.14917686498743343 0.4560669456066715 0.14917686498743343 0.2103351507519939
+0.4414225941422357 0.15256724828260237 0.44142259414223567 0.15256724828260237 0.2361355472341393
+0.4790794979079277 0.1390057151019266 0.47907949790792775 0.1390057151019266 0.15703985936669895
+0.46443514644349193 0.14239609839709555 0.46443514644349193 0.14239609839709555 0.1889603703946925
+0.46861924686190215 0.14239609839709555 0.4686192468619021 0.14239609839709555 0.18093043701508402
+0.47280334728031237 0.14239609839709555 0.47280334728031237 0.14239609839709555 0.17245597199567012
+0.4769874476987226 0.14239609839709555 0.47698744769872264 0.14239609839709555 0.16355467806784385
+0.4623430962342868 0.1457864816922645 0.4623430962342869 0.1457864816922645 0.19582930905749893
+0.485355648535543 0.13561533180675767 0.48535564853554297 0.13561533180675767 0.14175280199513518
+0.48953974895395325 0.13561533180675767 0.48953974895395325 0.13561533180675767 0.13231488788953152
+0.49372384937236347 0.13561533180675767 0.4937238493723635 0.13561533180675767 0.12257246492509478
+0.4832635983263379 0.1390057151019266 0.48326359832633786 0.1390057151019266 0.1478269437520101
+0.5167364016736197 0.11866341533091296 0.5167364016736197 0.11866341533091296 0.06903912923206536
+0.5104602510460043 0.1220537986260819 0.5104602510460045 0.1220537986260819 0.08327832095345182
+0.5146443514644146 0.1220537986260819 0.5146443514644146 0.1220537986260819 0.07338047631669818
+0.4979079497907737 0.13561533180675767 0.4979079497907737 0.13561533180675767 0.11255756834127832
+0.5083682008367992 0.12544418192125084 0.5083682008367992 0.12544418192125084 0.0877412191106385
+0.5062761506275941 0.12883456521641978 0.5062761506275941 0.12883456521641978 0.09235953584869482
+0.504184100418389 0.13222494851158872 0.504184100418389 0.13222494851158872 0.09719640068939463
+0.5020920502091839 0.13561533180675767 0.5020920502091838 0.13561533180675767 0.10230874582181258
+0.5209205020920299 0.11866341533091296 0.5209205020920299 0.11866341533091296 0.059062669289111906
+0.5251046025104401 0.11866341533091296 0.5251046025104401 0.11866341533091296 0.04910070742090158
+0.5313807531380554 0.11527303203574402 0.5313807531380554 0.11527303203574402 0.035042429766509
+0.5292887029288503 0.11866341533091296 0.5292887029288503 0.11866341533091296 0.039402159559077714
+0.5355648535564657 0.11527303203574402 0.5355648535564655 0.11527303203574402 0.026413921532830422
+0.541841004184081 0.11188264874057507 0.541841004184081 0.11188264874057507 0.018010422724358186
+0.5397489539748759 0.11527303203574402 0.5397489539748759 0.11527303203574402 0.020662653793907918
+0.5481171548116963 0.10849226544540613 0.5481171548116963 0.10849226544540613 0.022267034760272645
+0.5460251046024912 0.11188264874057507 0.5460251046024912 0.11188264874057507 0.020925706696759167
+0.5857740585773883 0.06780766590337883 0.5857740585773882 0.06780766590337883 0.11730005269537887
+0.579497907949773 0.07119804919854777 0.579497907949773 0.07119804919854777 0.10089279547753822
+0.5836820083681832 0.07119804919854777 0.5836820083681832 0.07119804919854777 0.11325179296515542
+0.5774058577405679 0.07458843249371672 0.577405857740568 0.07458843249371672 0.09617868630137603
+0.5753138075313627 0.07797881578888566 0.5753138075313627 0.07797881578888566 0.09113271208026626
+0.5732217573221576 0.0813691990840546 0.5732217573221576 0.0813691990840546 0.08581391359731778
+0.5669456066945423 0.08475958237922354 0.5669456066945423 0.08475958237922354 0.0672898459237572
+0.5648535564853372 0.08814996567439248 0.5648535564853372 0.08814996567439248 0.061620969823533996
+0.5627615062761321 0.09154034896956142 0.5627615062761321 0.09154034896956142 0.05597595330088597
+0.560669456066927 0.09493073226473037 0.5606694560669271 0.09493073226473037 0.050459635166078355
+0.5585774058577219 0.09832111555989931 0.5585774058577219 0.09832111555989931 0.04518841568562539
+0.5564853556485168 0.10171149885506825 0.5564853556485168 0.10171149885506825 0.04029072756130341
+0.5543933054393116 0.10510188215023719 0.5543933054393116 0.10510188215023719 0.03590581117497226
+0.5523012552301065 0.10849226544540613 0.5523012552301064 0.10849226544540613 0.032177498695998674
+0.5711297071129525 0.08475958237922354 0.5711297071129525 0.08475958237922354 0.0802922338068451
+0.5962343096234138 0.05763651601787201 0.5962343096234138 0.05763651601787201 0.1375307318201262
+0.6004184100418241 0.05763651601787201 0.6004184100418241 0.05763651601787201 0.14812387365097682
+0.5941422594142087 0.06102689931304095 0.5941422594142088 0.06102689931304095 0.1352592082993975
+0.5920502092050036 0.06441728260820989 0.5920502092050036 0.06441728260820989 0.13249964713005213
+0.5899581589957985 0.06780766590337883 0.5899581589957985 0.06780766590337883 0.12924817491278684
+0.6213389121338752 0.030513449656520475 0.6213389121338752 0.030513449656520475 0.15797629645644828
+0.61924686192467 0.03390383295168942 0.6192468619246699 0.03390383295168942 0.1584040635972648
+0.6171548117154649 0.03729421624685836 0.6171548117154649 0.03729421624685836 0.15892298336429492
+0.6150627615062598 0.0406845995420273 0.6150627615062598 0.0406845995420273 0.15942972747849574
+0.6129707112970547 0.04407498283719624 0.6129707112970547 0.04407498283719624 0.15982176180958382
+0.6108786610878496 0.04746536613236518 0.6108786610878497 0.04746536613236518 0.16000186310969525
+0.6087866108786445 0.050855749427534125 0.6087866108786445 0.050855749427534125 0.15988175089368184
+0.6066945606694394 0.054246132722703067 0.6066945606694394 0.054246132722703067 0.15938483999498895
+0.6046025104602343 0.05763651601787201 0.6046025104602343 0.05763651601787201 0.15844819940386734
+0.6276150627614905 0.027123066361351533 0.6276150627614906 0.027123066361351533 0.16436624054301108
+0.6255230125522854 0.030513449656520475 0.6255230125522854 0.030513449656520475 0.16486797578190768
+0.6338912133891058 0.02373268306618259 0.6338912133891058 0.02373268306618259 0.17037790419238272
+0.6317991631799007 0.027123066361351533 0.6317991631799007 0.027123066361351533 0.17077053907517056
+0.6401673640167211 0.02034229977101365 0.6401673640167211 0.02034229977101365 0.17627624304408682
+0.638075313807516 0.02373268306618259 0.638075313807516 0.02373268306618259 0.17639523865439014
+0.6464435146443365 0.01695191647584471 0.6464435146443365 0.01695191647584471 0.1823009875238634
+0.6443514644351314 0.02034229977101365 0.6443514644351315 0.02034229977101365 0.1820159096979206
+0.6527196652719518 0.013561533180675767 0.6527196652719517 0.013561533180675767 0.18864739147475837
+0.6506276150627467 0.01695191647584471 0.6506276150627467 0.01695191647584471 0.18787228095213884
+0.6610878661087722 0.006780766590337883 0.6610878661087723 0.006780766590337883 0.19726850058806325
+0.6589958158995671 0.010171149885506825 0.6589958158995671 0.010171149885506825 0.19545582468333836
+0.656903765690362 0.013561533180675767 0.656903765690362 0.013561533180675767 0.1941519307654114
+0.6652719665271825 0.006780766590337883 0.6652719665271825 0.006780766590337883 0.20281208838280304
+0.006780766590337709 0.6694560669456058 0.006780766590337709 0.6694560669456058 0.16506017394491576
+0.006780766590337709 0.6736401673640158 0.006780766590337709 0.6736401673640158 0.16322347416973185
+0.01017114988550656 0.6631799163179908 0.01017114988550656 0.6631799163179908 0.1684208969193632
+0.01017114988550656 0.6673640167364008 0.01017114988550656 0.6673640167364008 0.16639028995451566
+0.013561533180675408 0.6610878661087858 0.013561533180675408 0.6610878661087858 0.16997278434811977
+0.016951916475844264 0.6548117154811708 0.016951916475844264 0.6548117154811708 0.1739756399880645
+0.016951916475844264 0.6589958158995808 0.016951916475844264 0.6589958158995808 0.17167619996205044
+0.02034229977101312 0.6485355648535558 0.02034229977101312 0.6485355648535558 0.1783980283277942
+0.02034229977101312 0.6527196652719658 0.02034229977101312 0.6527196652719658 0.17591002078458942
+0.02373268306618197 0.6422594142259408 0.02373268306618197 0.6422594142259408 0.1832249083147093
+0.02373268306618197 0.6464435146443508 0.02373268306618197 0.6464435146443508 0.1805730667557094
+0.027123066361350822 0.6359832635983258 0.027123066361350822 0.6359832635983258 0.1884189700815818
+0.027123066361350822 0.6401673640167358 0.027123066361350822 0.6401673640167358 0.18564205548406473
+0.030513449656519673 0.6297071129707108 0.030513449656519673 0.6297071129707108 0.19391524548098216
+0.030513449656519673 0.6338912133891208 0.030513449656519673 0.6338912133891208 0.1910653645549449
+0.033903832951688535 0.6234309623430958 0.033903832951688535 0.6234309623430958 0.19961971431250422
+0.033903832951688535 0.6276150627615058 0.033903832951688535 0.6276150627615058 0.19675993838763575
+0.03729421624685738 0.6213389121338908 0.03729421624685738 0.6213389121338908 0.20261283147689332
+0.040684599542026224 0.6192468619246858 0.040684599542026224 0.6192468619246858 0.2056908474954847
+0.0440749828371951 0.6171548117154808 0.0440749828371951 0.6171548117154808 0.20882136329045045
+0.04746536613236394 0.6150627615062758 0.04746536613236394 0.6150627615062758 0.2119689949491137
+0.05085574942753279 0.6129707112970708 0.05085574942753279 0.6129707112970708 0.21509641480914357
+0.05424613272270165 0.6108786610878658 0.054246132722701644 0.6108786610878658 0.21816550434879542
+0.05763651601787049 0.6046025104602508 0.05763651601787049 0.6046025104602508 0.2236974868452005
+0.06102689931303934 0.6025104602510458 0.06102689931303934 0.6025104602510458 0.22644143489776294
+0.0711980491985459 0.5878661087866108 0.0711980491985459 0.5878661087866108 0.23684680496926838
+0.07797881578888362 0.5794979079497908 0.07797881578888362 0.5794979079497908 0.24075595704434113
+0.08136919908405248 0.5774058577405858 0.08136919908405248 0.5774058577405858 0.24170831441608923
+0.08814996567439015 0.5690376569037658 0.08814996567439015 0.5690376569037658 0.24343138903124614
+0.09154034896955902 0.5669456066945608 0.09154034896955902 0.5669456066945608 0.24376560721636595
+0.09493073226472787 0.5648535564853558 0.09493073226472787 0.5648535564853558 0.24401953571745053
+0.09832111555989677 0.5585774058577408 0.09832111555989677 0.5585774058577408 0.2444130239087354
+0.10171149885506565 0.5564853556485359 0.10171149885506565 0.5564853556485359 0.24468966369320902
+0.10510188215023454 0.5543933054393309 0.10510188215023454 0.5543933054393309 0.24507601009082933
+0.09832111555989675 0.5627615062761508 0.09832111555989675 0.5627615062761508 0.2442446924119883
+0.08475958237922132 0.5753138075313808 0.08475958237922132 0.5753138075313808 0.24244649914633684
+0.08814996567439015 0.5732217573221758 0.08814996567439015 0.5732217573221758 0.2429994352408835
+0.07458843249371476 0.5857740585774058 0.07458843249371476 0.5857740585774058 0.23842918388725606
+0.07797881578888362 0.5836820083682008 0.07797881578888362 0.5836820083682008 0.23976002406607674
+0.06441728260820821 0.5962343096234308 0.06441728260820821 0.5962343096234308 0.23109880493172594
+0.06441728260820821 0.6004184100418408 0.06441728260820821 0.6004184100418408 0.22900482164479793
+0.06780766590337706 0.5941422594142258 0.06780766590337706 0.5941422594142258 0.23331827753480439
+0.0711980491985459 0.5920502092050208 0.0711980491985459 0.5920502092050208 0.2353001837565272
+0.05763651601787049 0.6087866108786608 0.05763651601787049 0.6087866108786608 0.22113857034449105
+0.11866341533089148 0.5334728033473056 0.11866341533089146 0.5334728033473056 0.2504524952388149
+0.11866341533089886 0.5376569037656818 0.11866341533089886 0.5376569037656819 0.24993050509233664
+0.12205379862606208 0.5313807531381439 0.1220537986260621 0.5313807531381439 0.2524914805017609
+0.1254441819212578 0.529288702929002 0.1254441819212578 0.529288702929002 0.25485075495462467
+0.1288345652164902 0.5188284518824298 0.1288345652164902 0.5188284518824298 0.25894460062495733
+0.12883456521661446 0.5230125523011945 0.1288345652166145 0.5230125523011945 0.2582864598124042
+0.12883456521650014 0.5271966527198497 0.12883456521650014 0.5271966527198497 0.25751433590371225
+0.10849226544540376 0.5481171548117157 0.10849226544540376 0.5481171548117157 0.2458818502975927
+0.11188264874057315 0.54602510460251 0.11188264874057315 0.54602510460251 0.24675564090985388
+0.11527303203574242 0.5439330543933023 0.11527303203574242 0.5439330543933023 0.24790336105562547
+0.11866341533091031 0.5418410041840914 0.11866341533091031 0.5418410041840914 0.2493549471062896
+0.10849226544540347 0.552301255230126 0.10849226544540347 0.552301255230126 0.24562626048351202
+0.29952712963728123 0.2863021198098759 0.29952712963728123 0.2863021198098759 0.16670055711405599
+0.3004069075927049 0.2895155199773705 0.3004069075927049 0.2895155199773705 0.16653406879042418
+0.29695273622106505 0.2895689605341766 0.29695273622106505 0.28956896053417663 0.16239106860727862
+0.2766122352604937 0.29893791611157716 0.2766122352604938 0.2989379161115772 0.1374325618369128
+0.29339197116733007 0.29137653867157787 0.29339197116733007 0.29137653867157787 0.1575161324846341
+0.2899406460067287 0.2930222822932554 0.2899406460067287 0.2930222822932554 0.15300934720274154
+0.28655368755095845 0.29456463111005166 0.28655368755095845 0.29456463111005166 0.14877460772874726
+0.2831726621473841 0.2961139213131556 0.28317266214738407 0.2961139213131556 0.14471654222071165
+0.2799076815757015 0.29756035143592724 0.2799076815757015 0.29756035143592724 0.14098991130770464
+0.2763712960627799 0.3020932897645343 0.2763712960627798 0.3020932897645343 0.1363307077431202
+0.27328475171459327 0.3040241662276342 0.27328475171459327 0.3040241662276342 0.13319073128185535
+0.2539865334394606 0.31497915140957927 0.2539865334394606 0.31497915140957927 0.11997716821674813
+0.25720910025475996 0.3131168218502639 0.25720910025476 0.31311682185026385 0.12133552904676069
+0.2604305979877413 0.3112909578354506 0.2604305979877413 0.3112909578354506 0.12306199816836004
+0.27009207334599294 0.30582707523341646 0.2700920733459929 0.30582707523341646 0.13023382531540706
+0.2668739573847157 0.30764044742717905 0.2668739573847157 0.30764044742717905 0.12753371903109156
+0.2636498933163241 0.30946528109818244 0.2636498933163241 0.30946528109818244 0.12513280290073617
+0.23238067455780773 0.3332655602409042 0.23238067455780773 0.3332655602409042 0.12515234090630856
+0.2541978171592249 0.3184925063449418 0.2541978171592249 0.3184925063449418 0.12062137353471158
+0.2510451717313404 0.32046047042202797 0.2510451717313404 0.32046047042202797 0.11997616779707032
+0.24791252511977588 0.3224938137929361 0.24791252511977588 0.3224938137929361 0.11975911241943425
+0.23555278508473965 0.33102577430129554 0.23555278508473965 0.3310257743012955 0.12321249614176398
+0.23865186971831634 0.3288450340878711 0.23865186971831634 0.3288450340878711 0.12171390160500649
+0.24480881088522144 0.32457868260212086 0.24480881088522147 0.32457868260212086 0.11998003054733629
+0.24172849144873834 0.3266987692537971 0.24172849144873834 0.3266987692537971 0.12063553001810645
+0.21297971889024858 0.35303996896245665 0.21297971889024855 0.35303996896245665 0.15048208657398243
+0.2161192417019399 0.35107705921995297 0.21611924170193994 0.35107705921995297 0.14688102038581397
+0.21865539176842053 0.348595787514307 0.2186553917684205 0.34859578751430703 0.1431290327006048
+0.22119161340488913 0.3462064224701563 0.22119161340488916 0.34620642247015626 0.13969088925661197
+0.224057163501878 0.3438229393791803 0.224057163501878 0.3438229393791803 0.136282484351719
+0.22691573903958742 0.3414508732922989 0.22691573903958742 0.3414508732922989 0.1331362150092608
+0.22980763456862283 0.33912115767575957 0.22980763456862283 0.33912115767575957 0.13030184433977812
+0.23285047468748513 0.3368438839575918 0.23285047468748513 0.3368438839575918 0.1277814959425345
+0.19663244972279997 0.3723756663137781 0.1966324497228 0.3723756663137781 0.18111152980712011
+0.2000571778281082 0.370266494881561 0.2000571778281082 0.370266494881561 0.17687230646012828
+0.20646644772137962 0.3617254608351933 0.2064664477213796 0.36172546083519336 0.16352993449260375
+0.20334125023025684 0.36398322468487093 0.20334125023025687 0.36398322468487093 0.167800844844083
+0.2034067791894138 0.3681218493406206 0.20340677918941383 0.3681218493406206 0.1725708886665377
+0.20957703964159907 0.35934913888830067 0.20957703964159904 0.3593491388883007 0.15923262416224812
+0.21301315118822933 0.3569483911787884 0.21301315118822936 0.35694839117878846 0.15477461059274714
+0.20958942194070895 0.36296653060816036 0.20958942194070893 0.36296653060816036 0.16332253853352444
+0.1830610504301153 0.3891250681461065 0.1830610504301153 0.3891250681461065 0.2067444312699017
+0.18643094132508156 0.3870385493657829 0.18643094132508156 0.3870385493657829 0.20304476577710204
+0.18981900428019072 0.380762646219093 0.18981900428019072 0.380762646219093 0.1942666163039115
+0.189794657499345 0.38495332237732366 0.189794657499345 0.38495332237732366 0.1992134880959949
+0.1931996030577142 0.378664116577365 0.1931996030577142 0.378664116577365 0.19023172164801908
+0.19659389967710916 0.37655301830379123 0.19659389967710916 0.37655301830379123 0.1860860414258205
+0.16612878146327725 0.4079497907949798 0.16612878146327725 0.4079497907949798 0.2310161884115405
+0.16612878146327725 0.4121338912133899 0.16612878146327725 0.4121338912133899 0.23512766406375943
+0.1695188071655034 0.40585769389485166 0.1695188071655034 0.40585769389485166 0.22851029800026126
+0.1729066701840213 0.40376522523578845 0.1729066701840213 0.40376522523578845 0.22578733076056787
+0.17629242245525908 0.3974888720007132 0.17629242245525908 0.3974888720007132 0.21826176535764677
+0.17629026588480134 0.4016722955707352 0.17629026588480134 0.4016722955707352 0.22285361232303094
+0.17967514912814733 0.3953969840842855 0.17967514912814733 0.3953969840842855 0.21499285715868502
+0.1830519698820083 0.39330652833758367 0.1830519698820083 0.39330652833758367 0.21154859100413068
+0.15595763157777 0.42677824267782577 0.15595763157777 0.42677824267782577 0.2476233838106703
+0.15934801487293895 0.42468619246862066 0.15934801487293895 0.42468619246862066 0.24644433594570617
+0.16273839816810823 0.4184100418410051 0.16273839816810823 0.4184100418410051 0.2411268535814741
+0.16612878146327723 0.4163179916318 0.16612878146327723 0.4163179916318 0.23923520045439764
+0.1627383981681079 0.42259414225941566 0.1627383981681079 0.42259414225941566 0.24501602736196945
+0.15595763157776896 0.4309623430962373 0.15595763157776896 0.4309623430962373 0.2510226464443392
+0.14917686498742186 0.44351464435148164 0.14917686498742186 0.44351464435148164 0.2577817571284556
+0.1559576315777663 0.4351464435146513 0.1559576315777663 0.4351464435146513 0.25437210346324807
+0.1525672482825908 0.4414225941422762 0.1525672482825908 0.4414225941422762 0.2578442465808885
+0.15595763157775971 0.4393305439330706 0.15595763157775974 0.4393305439330706 0.25765853291642654
+0.14917686498740812 0.4476987447699134 0.14917686498740812 0.4476987447699134 0.26046607610563927
+0.13900571510169227 0.4707112970714033 0.13900571510169227 0.4707112970714033 0.2646490062606431
+0.14578648169221234 0.45397489539757463 0.14578648169221234 0.4539748953975746 0.2622258524327718
+0.1491768649873798 0.4518828451883712 0.1491768649873798 0.4518828451883712 0.26304853571468273
+0.1423960983969865 0.46025104602526695 0.1423960983969865 0.46025104602526695 0.263135194061983
+0.1457864816921538 0.4581589958160756 0.1457864816921538 0.4581589958160756 0.26442418857688893
+0.1423960983968944 0.46443514644378436 0.1423960983968944 0.4644351464437843 0.2649407919967635
+0.14239609839679546 0.4686192468622861 0.14239609839679546 0.4686192468622861 0.2665984589626132
+0.1356153318057455 0.48535564853617247 0.1356153318057455 0.48535564853617247 0.2652471829294702
+0.13561533180541024 0.4895397489541629 0.13561533180541027 0.4895397489541629 0.26580029627148205
+0.13900571510162094 0.4748953974899297 0.13900571510162094 0.47489539748992976 0.2659113110602176
+0.13900571510142887 0.47907949790856125 0.13900571510142887 0.47907949790856125 0.26700586887016087
+0.13900571510099297 0.483263598327131 0.13900571510099294 0.483263598327131 0.26792023047556796
+0.1356153318060248 0.4937238493719745 0.1356153318060248 0.4937238493719745 0.26617322781038816
+0.1356153318067996 0.49790794979064623 0.1356153318067996 0.49790794979064623 0.2663611728845647
+0.13222494851167688 0.5041841004191471 0.13222494851167688 0.5041841004191471 0.26320276676350685
+0.13561533180705074 0.5020920502098788 0.13561533180705074 0.5020920502098788 0.2663616812780461
+0.13222494851124889 0.5083682008374001 0.13222494851124889 0.5083682008374001 0.2629592459367887
+0.1322249485111399 0.5125523012550457 0.1322249485111399 0.5125523012550457 0.26255664421436226
+0.13222494851149144 0.5167364016730055 0.13222494851149144 0.5167364016730055 0.2620001756498083
+0.30373930067171506 0.28120992278272244 0.30373930067171506 0.28120992278272244 0.17364437880014674
+0.3032368173282051 0.28473374224644105 0.3032368173282051 0.28473374224644105 0.17189715051948343
+0.31691417606000977 0.2607227283498832 0.31691417606000977 0.2607227283498832 0.19520647339810984
+0.30816302938673734 0.2729524355874252 0.3081630293867374 0.27295243558742527 0.18145540166494808
+0.31618901497383806 0.2641662427002992 0.31618901497383806 0.26416624270029926 0.19378592577617992
+0.311520511414416 0.2716510982963451 0.311520511414416 0.2716510982963451 0.18623877579656392
+0.31550478808401505 0.26757663736358267 0.3155047880840151 0.26757663736358267 0.19237266976934772
+0.3143796271664826 0.27025456644146784 0.3143796271664826 0.27025456644146784 0.19034557618165296
+0.3077412191543944 0.2763950321486972 0.3077412191543944 0.2763950321486972 0.18014878122002398
+0.30722765975172867 0.2799315757892851 0.30722765975172867 0.2799315757892851 0.17856835639109125
+0.3320948351510226 0.24099601170012372 0.3320948351510226 0.24099601170012372 0.2187802558199113
+0.32203008873087174 0.2527876810122448 0.32203008873087174 0.25278768101224486 0.20319451711023936
+0.33108477205619935 0.24439024316322397 0.33108477205619935 0.24439024316322397 0.21679412938065745
+0.32562119925251565 0.25186355379166797 0.3256211992525157 0.25186355379166797 0.20825486480641617
+0.33012759972599764 0.2477353209408495 0.33012759972599764 0.2477353209408495 0.21498851212208225
+0.3291997466808393 0.25097782839437927 0.32919974668083934 0.25097782839437927 0.2132967926027409
+0.32123904065853853 0.2562687996981005 0.32123904065853853 0.2562687996981005 0.2016944921086347
+0.3204590753125845 0.2597583461340499 0.3204590753125845 0.25975834613404997 0.20022790486002415
+0.3493123889807128 0.22236703389838705 0.3493123889807128 0.22236703389838705 0.24630576260127612
+0.3378734803017913 0.23339635618027263 0.3378734803017913 0.23339635618027263 0.2282867947418966
+0.3479130710008909 0.22562548931277246 0.3479130710008909 0.22562548931277246 0.24347880787988485
+0.3415796965358579 0.2327696735698658 0.3415796965358579 0.2327696735698658 0.2333030028053801
+0.34655792395919466 0.22890661402043588 0.34655792395919466 0.22890661402043588 0.24077281960036542
+0.34530938723243154 0.2322311928805246 0.34530938723243154 0.2322311928805246 0.2382730289913156
+0.3368012796250577 0.23685367578327135 0.3368012796250577 0.23685367578327135 0.2259841242636538
+0.3357486475110711 0.24029024768448623 0.3357486475110711 0.24029024768448623 0.22384234622903973
+0.3659288172415196 0.20644486351995245 0.3659288172415196 0.20644486351995248 0.26996785890835623
+0.3681040860565939 0.20340599182344613 0.3681040860565939 0.20340599182344613 0.2728733317947713
+0.3561115425612947 0.21556047049239657 0.3561115425612947 0.21556047049239657 0.25669094400538167
+0.36706607100368327 0.2092323683874011 0.36706607100368327 0.2092323683874011 0.2702652549888771
+0.35953459435346097 0.21443447505802532 0.35953459435346097 0.21443447505802535 0.260929775484664
+0.3662957261134349 0.21147390789731835 0.3662957261134349 0.21147390789731838 0.26888191171376286
+0.36354665517280393 0.2134913383123972 0.36354665517280393 0.21349133831239714 0.2656674955299873
+0.3545769835337064 0.21871440144732868 0.3545769835337064 0.21871440144732865 0.25385198844758744
+0.35309839264978193 0.22197500037125736 0.35309839264978193 0.22197500037125736 0.25100843345424817
+0.39958313303138876 0.17968883996209442 0.39958313303138876 0.17968883996209442 0.2873015504874749
+0.39749258947353944 0.18307861624034996 0.39749258947353944 0.18307861624034996 0.288644999453636
+0.3954013436223059 0.1864669493099592 0.3954013436223059 0.1864669493099592 0.2894598361621146
+0.3933072894898293 0.18985487840648377 0.3933072894898293 0.18985487840648377 0.2897586023143162
+0.391211858668806 0.1932380966241007 0.391211858668806 0.1932380966241007 0.2895630668676578
+0.3890915101289614 0.19660740952517367 0.3890915101289614 0.19660740952517367 0.2888896858043996
+0.3744190981507067 0.20003785144335764 0.3744190981507067 0.20003785144335764 0.27895989887394773
+0.37860699028645767 0.20001069988119835 0.37860699028645767 0.20001069988119835 0.28220996647837726
+0.3827919589059445 0.19998058925917686 0.3827919589059445 0.19998058925917686 0.2851631840093877
+0.38697361284550613 0.19996353238529493 0.38697361284550613 0.19996353238529493 0.28778734946967693
+0.37223619595639157 0.203483977422553 0.37223619595639157 0.203483977422553 0.27656755110010595
+0.4058595290187846 0.17629646462662407 0.4058595290187846 0.17629646462662407 0.28521066492932645
+0.4037698928460205 0.17968617660015554 0.40376989284602055 0.17968617660015554 0.28745272305362674
+0.4100459459196591 0.17629244062651853 0.4100459459196591 0.17629244062651853 0.28449904480731397
+0.4393305439330306 0.15595763157777132 0.4393305439330306 0.15595763157777132 0.24263827629439197
+0.4372384937238255 0.15934801487294026 0.43723849372382556 0.15934801487294026 0.24898462829439846
+0.4351464435146204 0.1627383981681092 0.43514644351462034 0.1627383981681092 0.255105416648955
+0.4330543990015922 0.16612853198718266 0.4330543990015922 0.16612853198718266 0.26093552520030444
+0.430962537288369 0.16951738174551964 0.430962537288369 0.16951738174551964 0.2664149140773761
+0.4142324961509239 0.17628688268734646 0.4142324961509239 0.17628688268734646 0.28326037836299506
+0.41841758089373443 0.17628139252727423 0.41841758089373443 0.17628139252727423 0.2814664757786776
+0.4246879346120942 0.1729012013737162 0.42468793461209414 0.1729012013737162 0.27484390347819954
+0.42887134888727113 0.17290294969197284 0.42887134888727113 0.17290294969197284 0.2714900734854377
+0.42260039765128843 0.17627902868753179 0.42260039765128843 0.17627902868753179 0.2790927299695662
+0.4602510460250817 0.14917686498743343 0.46025104602508177 0.14917686498743343 0.20287787175843489
+0.44560669456064594 0.15256724828260237 0.445606694560646 0.15256724828260237 0.23044186378737463
+0.44979079497905616 0.15256724828260237 0.4497907949790561 0.15256724828260237 0.22419518320297246
+0.4539748953974664 0.15256724828260237 0.45397489539746644 0.15256724828260237 0.2173947280307039
+0.4581589958158766 0.15256724828260237 0.45815899581587655 0.15256724828260237 0.21004368779106328
+0.44351464435144083 0.15595763157777132 0.4435146443514409 0.15595763157777132 0.2371571533993234
+0.4811715481171328 0.14239609839709555 0.4811715481171328 0.14239609839709555 0.15424788660881314
+0.46652719665269704 0.1457864816922645 0.466527196652697 0.1457864816922645 0.18781275508053988
+0.47071129707110726 0.1457864816922645 0.4707112970711073 0.1457864816922645 0.17932298531060184
+0.4748953974895175 0.1457864816922645 0.4748953974895174 0.1457864816922645 0.1703773733518488
+0.4790794979079277 0.1457864816922645 0.47907949790792775 0.1457864816922645 0.16099712477146402
+0.46443514644349193 0.14917686498743343 0.46443514644349193 0.14917686498743343 0.19490534185556088
+0.48744769874474814 0.1390057151019266 0.4874476987447482 0.1390057151019266 0.1382597839229395
+0.49163179916315836 0.1390057151019266 0.4916317991631583 0.1390057151019266 0.12836690152737473
+0.4958158995815686 0.1390057151019266 0.49581589958156863 0.1390057151019266 0.11818160944111718
+0.485355648535543 0.14239609839709555 0.48535564853554297 0.14239609839709555 0.1445607114468881
+0.5188284518828248 0.1220537986260819 0.5188284518828247 0.1220537986260819 0.0633790877078221
+0.5125523012552095 0.12544418192125084 0.5125523012552095 0.12544418192125084 0.07776749156155023
+0.5167364016736197 0.12544418192125084 0.5167364016736197 0.12544418192125084 0.06769351396555336
+0.4999999999999788 0.1390057151019266 0.49999999999997874 0.1390057151019266 0.10774351591165014
+0.5104602510460043 0.12883456521641978 0.5104602510460045 0.12883456521641978 0.08226750024500108
+0.5083682008367992 0.13222494851158872 0.5083682008367992 0.13222494851158872 0.086948387944587
+0.5062761506275941 0.13561533180675767 0.5062761506275941 0.13561533180675767 0.09187428778505043
+0.504184100418389 0.1390057151019266 0.504184100418389 0.1390057151019266 0.09710131227185305
+0.523012552301235 0.1220537986260819 0.523012552301235 0.1220537986260819 0.053388986578273824
+0.5271966527196452 0.1220537986260819 0.5271966527196453 0.1220537986260819 0.04362638443495898
+0.5334728033472605 0.11866341533091296 0.5334728033472605 0.11866341533091296 0.030526450875301012
+0.5313807531380554 0.1220537986260819 0.5313807531380554 0.1220537986260819 0.03454453574454323
+0.5376569037656708 0.11866341533091296 0.5376569037656708 0.11866341533091296 0.023814583676774984
+0.5439330543932861 0.11527303203574402 0.5439330543932862 0.11527303203574402 0.020844963232475273
+0.541841004184081 0.11866341533091296 0.541841004184081 0.11866341533091296 0.02182247242065162
+0.5502092050209014 0.11188264874057507 0.5502092050209014 0.11188264874057507 0.029237862917090688
+0.5481171548116963 0.11527303203574402 0.5481171548116963 0.11527303203574402 0.0271773643681034
+0.5878661087865934 0.07119804919854777 0.5878661087865934 0.07119804919854777 0.1255159996132507
+0.5815899581589781 0.07458843249371672 0.5815899581589781 0.07458843249371672 0.10878559956036828
+0.5857740585773883 0.07458843249371672 0.5857740585773882 0.07458843249371672 0.1213288956165924
+0.579497907949773 0.07797881578888566 0.579497907949773 0.07797881578888566 0.10394511656968212
+0.5774058577405679 0.0813691990840546 0.577405857740568 0.0813691990840546 0.09878631827452318
+0.5753138075313627 0.08475958237922354 0.5753138075313627 0.08475958237922354 0.09337649502415796
+0.5690376569037474 0.08814996567439248 0.5690376569037473 0.08814996567439248 0.0746476129450417
+0.5669456066945423 0.09154034896956142 0.5669456066945423 0.09154034896956142 0.06896903733256408
+0.5648535564853372 0.09493073226473037 0.5648535564853372 0.09493073226473037 0.06335346603221155
+0.5627615062761321 0.09832111555989931 0.5627615062761321 0.09832111555989931 0.05790444711100085
+0.560669456066927 0.10171149885506825 0.5606694560669271 0.10171149885506825 0.052730041449863686
+0.5585774058577219 0.10510188215023719 0.5585774058577219 0.10510188215023719 0.047939383791007685
+0.5564853556485168 0.10849226544540613 0.5564853556485168 0.10849226544540613 0.0436368996974297
+0.5543933054393116 0.11188264874057507 0.5543933054393116 0.11188264874057507 0.039913157354067925
+0.5732217573221576 0.08814996567439248 0.5732217573221576 0.08814996567439248 0.08779310058990986
+0.598326359832619 0.06102689931304095 0.598326359832619 0.06102689931304095 0.14626807313323756
+0.6025104602510292 0.06102689931304095 0.6025104602510291 0.06102689931304095 0.15702383826795982
+0.5962343096234138 0.06441728260820989 0.5962343096234138 0.06441728260820989 0.14390632309202245
+0.5941422594142087 0.06780766590337883 0.5941422594142088 0.06780766590337883 0.14102865779213547
+0.5920502092050036 0.07119804919854777 0.5920502092050036 0.07119804919854777 0.13764065821298144
+0.6234309623430803 0.03390383295168942 0.6234309623430803 0.03390383295168942 0.16559576802594114
+0.6213389121338752 0.03729421624685836 0.6213389121338752 0.03729421624685836 0.1664491739631928
+0.61924686192467 0.0406845995420273 0.6192468619246699 0.0406845995420273 0.16732195122835125
+0.6171548117154649 0.04407498283719624 0.6171548117154649 0.04407498283719624 0.1681074886812397
+0.6150627615062598 0.04746536613236518 0.6150627615062598 0.04746536613236518 0.16870352312100798
+0.6129707112970547 0.050855749427534125 0.6129707112970547 0.050855749427534125 0.16901598862223122
+0.6108786610878496 0.054246132722703067 0.6108786610878497 0.054246132722703067 0.1689619848664248
+0.6087866108786445 0.05763651601787201 0.6087866108786445 0.05763651601787201 0.16847193881954278
+0.6066945606694394 0.06102689931304095 0.6066945606694394 0.06102689931304095 0.1674910755271237
+0.6297071129706956 0.030513449656520475 0.6297071129706956 0.030513449656520475 0.17151450183785688
+0.6276150627614905 0.03390383295168942 0.6276150627614906 0.03390383295168942 0.1725215210466737
+0.6359832635983109 0.027123066361351533 0.6359832635983108 0.027123066361351533 0.1769688252860758
+0.6338912133891058 0.030513449656520475 0.6338912133891058 0.030513449656520475 0.17792984044625137
+0.6422594142259263 0.02373268306618259 0.6422594142259263 0.02373268306618259 0.18225654347708778
+0.6401673640167211 0.027123066361351533 0.6401673640167211 0.027123066361351533 0.18298374686421345
+0.6485355648535416 0.02034229977101365 0.6485355648535416 0.02034229977101365 0.18765621510417818
+0.6464435146443365 0.02373268306618259 0.6464435146443365 0.02373268306618259 0.18799140405961998
+0.6548117154811569 0.01695191647584471 0.6548117154811569 0.01695191647584471 0.19340290087696863
+0.6527196652719518 0.02034229977101365 0.6527196652719517 0.02034229977101365 0.19323122783836819
+0.6631799163179773 0.010171149885506825 0.6631799163179773 0.010171149885506825 0.20098236883474607
+0.6610878661087722 0.013561533180675767 0.6610878661087723 0.013561533180675767 0.1996719526443952
+0.6589958158995671 0.01695191647584471 0.6589958158995671 0.01695191647584471 0.1989284691666452
+0.6694560669455927 0.006780766590337883 0.6694560669455926 0.006780766590337883 0.20843441712532887
+0.6673640167363876 0.010171149885506825 0.6673640167363876 0.010171149885506825 0.20657415014637406
+0.6736401673640029 0.006780766590337883 0.6736401673640029 0.006780766590337883 0.21416246475686276
+0.006780766590337709 0.6778242677824258 0.006780766590337709 0.6778242677824258 0.16151722557160994
+0.006780766590337709 0.6820083682008358 0.006780766590337709 0.6820083682008358 0.15993698442356255
+0.01017114988550656 0.6715481171548108 0.01017114988550656 0.6715481171548108 0.1644916659332998
+0.01017114988550656 0.6757322175732208 0.01017114988550656 0.6757322175732208 0.1627267536556858
+0.013561533180675408 0.6652719665271958 0.013561533180675408 0.6652719665271958 0.16787351547009374
+0.013561533180675408 0.6694560669456058 0.013561533180675408 0.6694560669456058 0.16590709757716168
+0.016951916475844264 0.6631799163179908 0.016951916475844264 0.6631799163179908 0.16949964273050153
+0.02034229977101312 0.6569037656903758 0.02034229977101312 0.6569037656903758 0.17352569099221207
+0.02034229977101312 0.6610878661087858 0.02034229977101312 0.6610878661087858 0.17126093018531294
+0.02373268306618197 0.6506276150627608 0.02373268306618197 0.6506276150627608 0.17799696158920975
+0.02373268306618197 0.6548117154811708 0.02373268306618197 0.6548117154811708 0.17551710214861208
+0.027123066361350822 0.6443514644351458 0.027123066361350822 0.6443514644351458 0.18290545440950598
+0.027123066361350822 0.6485355648535558 0.027123066361350822 0.6485355648535558 0.18023286567871852
+0.030513449656519673 0.6380753138075308 0.030513449656519673 0.6380753138075308 0.1882148801350001
+0.030513449656519673 0.6422594142259408 0.030513449656519673 0.6422594142259408 0.1853889928573772
+0.033903832951688535 0.6317991631799158 0.033903832951688535 0.6317991631799158 0.19385569877905492
+0.033903832951688535 0.6359832635983258 0.033903832951688535 0.6359832635983258 0.1909319233321484
+0.03729421624685738 0.6255230125523008 0.03729421624685738 0.6255230125523008 0.19972493149608161
+0.03729421624685738 0.6297071129707108 0.03729421624685738 0.6297071129707108 0.19677157751502292
+0.040684599542026224 0.6234309623430958 0.040684599542026224 0.6234309623430958 0.20278444367477363
+0.0440749828371951 0.6213389121338908 0.0440749828371951 0.6213389121338908 0.205908690453104
+0.04746536613236394 0.6192468619246858 0.04746536613236394 0.6192468619246858 0.20906459711131467
+0.05085574942753279 0.6171548117154808 0.05085574942753279 0.6171548117154808 0.2122166973474723
+0.05424613272270165 0.6150627615062758 0.054246132722701644 0.6150627615062758 0.21532817354487202
+0.05763651601787049 0.6129707112970708 0.05763651601787049 0.6129707112970708 0.2183619919323048
+0.06102689931303934 0.6066945606694558 0.06102689931303934 0.6066945606694558 0.22397957883031672
+0.06441728260820821 0.6046025104602508 0.06441728260820821 0.6046025104602508 0.22665536604919492
+0.07458843249371476 0.5899581589958158 0.07458843249371476 0.5899581589958158 0.2370327120467106
+0.08136919908405248 0.5815899581589958 0.08136919908405248 0.5815899581589958 0.24084739237012995
+0.08475958237922132 0.5794979079497908 0.08475958237922132 0.5794979079497908 0.2417079368175641
+0.09154034896955902 0.5711297071129708 0.09154034896955902 0.5711297071129708 0.24340386078386736
+0.09493073226472787 0.5690376569037658 0.09493073226472787 0.5690376569037658 0.24370344739967367
+0.09832111555989675 0.5669456066945608 0.09832111555989675 0.5669456066945608 0.24394758539091607
+0.10171149885506564 0.5606694560669458 0.10171149885506563 0.5606694560669458 0.24449599145000886
+0.10510188215023453 0.5585774058577408 0.10510188215023453 0.5585774058577408 0.24482974399255777
+0.10849226544540343 0.5564853556485359 0.10849226544540343 0.5564853556485359 0.24530142500136934
+0.10171149885506564 0.5648535564853558 0.10171149885506563 0.5648535564853558 0.24418983513288037
+0.08814996567439015 0.5774058577405858 0.08814996567439015 0.5774058577405858 0.24236675559587062
+0.09154034896955902 0.5753138075313808 0.09154034896955902 0.5753138075313808 0.24285698068137482
+0.07797881578888362 0.5878661087866108 0.07797881578888362 0.5878661087866108 0.23851179609092346
+0.08136919908405248 0.5857740585774058 0.08136919908405248 0.5857740585774058 0.23974157404478544
+0.06780766590337706 0.5983263598326358 0.06780766590337706 0.5983263598326358 0.23136033409901888
+0.06780766590337706 0.6025104602510458 0.06780766590337706 0.6025104602510458 0.2291367906892323
+0.0711980491985459 0.5962343096234308 0.0711980491985459 0.5962343096234308 0.2334863633354959
+0.07458843249371476 0.5941422594142258 0.07458843249371476 0.5941422594142258 0.23536789484971377
+0.06102689931303934 0.6108786610878658 0.06102689931303934 0.6108786610878658 0.22128208664725313
+0.12205379862605381 0.5355648535564878 0.12205379862605381 0.5355648535564878 0.25184264049712035
+0.12205379862607334 0.5397489539748773 0.12205379862607334 0.5397489539748773 0.2511292592771302
+0.1254441819212068 0.5334728033473225 0.1254441819212068 0.5334728033473225 0.254081584954383
+0.12883456521637413 0.5313807531382035 0.12883456521637413 0.5313807531382037 0.25663636408537965
+0.13222494851182873 0.5209205020917115 0.13222494851182873 0.5209205020917115 0.26129682038625796
+0.13222494851180053 0.5251046025106147 0.13222494851180053 0.5251046025106146 0.2604550171846589
+0.13222494851158897 0.5292887029291288 0.13222494851158897 0.5292887029291288 0.2594842860190356
+0.11188264874057258 0.5502092050209211 0.11188264874057259 0.550209205020921 0.246390349215896
+0.11527303203574212 0.548117154811716 0.11527303203574212 0.548117154811716 0.24741160267255893
+0.11866341533091228 0.5460251046025094 0.11866341533091228 0.5460251046025094 0.24872460783371578
+0.12205379862608262 0.5439330543932986 0.12205379862608261 0.5439330543932986 0.25035345559247796
+0.11188264874057234 0.554393305439331 0.11188264874057234 0.554393305439331 0.2459633022386186
+0.30291562775043246 0.28797650177525747 0.3029156277504325 0.2879765017752574 0.17031908952411232
+0.30279524842497524 0.2912545072227967 0.30279524842497524 0.2912545072227967 0.1687313994270441
+0.29950310492556376 0.29232628967671853 0.2995031049255638 0.29232628967671853 0.16430403632973364
+0.29639065405460485 0.2933758082824195 0.29639065405460485 0.29337580828241944 0.16017609388925405
+0.2797910317922384 0.300860533525194 0.27979103179223846 0.300860533525194 0.13984860557066445
+0.29307623620697504 0.2950152834084024 0.29307623620697504 0.2950152834084024 0.155701022960122
+0.2897205958570909 0.296579925923185 0.2897205958570909 0.296579925923185 0.15138284116845568
+0.2863513904237322 0.2981184748888179 0.2863513904237322 0.2981184748888179 0.14724489973195395
+0.28299602349553005 0.2996390125192112 0.28299602349553005 0.2996390125192112 0.1433195258866701
+0.2790598938909008 0.30383205527318397 0.2790598938909008 0.30383205527318397 0.13814337697735862
+0.2765409087738124 0.3058195877722507 0.2765409087738124 0.3058195877722507 0.1353917324091827
+0.2734193729252842 0.3076134190791686 0.2734193729252841 0.3076134190791686 0.13238896557272775
+0.25737024451282503 0.31661175617801435 0.25737024451282503 0.31661175617801435 0.1216863146499196
+0.2605583172981913 0.3148112661494285 0.2605583172981913 0.3148112661494285 0.12313748848673069
+0.2637582914019633 0.3130276875698296 0.2637582914019632 0.3130276875698296 0.12494472378864123
+0.27021137037811427 0.30939883806578855 0.2702113703781142 0.30939883806578855 0.1296060207586235
+0.26697578534352157 0.31122278372539686 0.26697578534352157 0.31122278372539686 0.12710383285005863
+0.25756252720297823 0.3200236892724694 0.25756252720297823 0.3200236892724693 0.12206216013096656
+0.23596670063618813 0.3346051726020829 0.2359667006361881 0.3346051726020829 0.12560852822019178
+0.25447604940231866 0.3219846417147776 0.25447604940231866 0.3219846417147776 0.12132723886216178
+0.25138562734902303 0.3240029445438491 0.251385627349023 0.3240029445438491 0.1209944055019256
+0.24830063233058122 0.3260648363122624 0.24830063233058122 0.3260648363122624 0.12108020319297652
+0.23906941348950417 0.33241502559611913 0.23906941348950417 0.33241502559611913 0.1238516284727017
+0.24215061739334034 0.33027554698078165 0.24215061739334034 0.33027554698078165 0.1225158246695701
+0.2452267455320891 0.3281607232175089 0.2452267455320891 0.32816072321750894 0.12159064666848
+0.21631298919837294 0.35461364461436645 0.2163129891983729 0.35461364461436645 0.15058951251480338
+0.21923284490464354 0.35225587882030246 0.21923284490464354 0.35225587882030246 0.14669055458891167
+0.22199067728746558 0.3497864265992021 0.22199067728746558 0.3497864265992021 0.1429275835269692
+0.22479001061509757 0.3474019418727234 0.22479001061509754 0.3474019418727234 0.13943442777876566
+0.23648754246687265 0.3381345274472052 0.23648754246687265 0.3381345274472052 0.12803759917660765
+0.22764793542098186 0.34503115919592026 0.22764793542098186 0.34503115919592026 0.13614240148531465
+0.2305332996556295 0.3426880715105703 0.2305332996556295 0.3426880715105703 0.1331235509084384
+0.23347901588918077 0.3403873154932568 0.23347901588918077 0.3403873154932568 0.13041282987778877
+0.20001390445161113 0.3744403293796385 0.20001390445161113 0.3744403293796385 0.18185815808293174
+0.20379439983156805 0.372256385774104 0.20379439983156808 0.37225638577410397 0.17734473589989644
+0.20698801569135022 0.3660639029396491 0.2069880156913502 0.36606390293964913 0.16834404007862044
+0.20614076347540294 0.36955858500300387 0.20614076347540294 0.36955858500300387 0.1728321009792863
+0.21014754150735954 0.36617350534651016 0.21014754150735954 0.36617350534651016 0.16674280577666067
+0.21652682787752875 0.35837479971472763 0.21652682787752875 0.3583747997147277 0.1546261583623553
+0.21316691819006856 0.3613303250502802 0.21316691819006858 0.3613303250502802 0.15968624350756508
+0.21207364561172748 0.36455266573657996 0.21207364561172745 0.36455266573657996 0.16384330376969505
+0.18641751184916544 0.39121877235450087 0.18641751184916544 0.39121877235450087 0.2079461445265864
+0.18977360491125816 0.3891363001440759 0.18977360491125816 0.3891363001440759 0.2042038945057969
+0.19315924401106063 0.3828640001467218 0.19315924401106063 0.3828640001467218 0.19525848487306496
+0.19312277249117407 0.3870626107482435 0.19312277249117407 0.3870626107482435 0.20034205951546005
+0.19654320135276548 0.38075484984419766 0.19654320135276548 0.38075484984419766 0.19117091237650238
+0.1999402838367171 0.37860728205854705 0.1999402838367171 0.37860728205854705 0.18693684852944806
+0.1695189024811287 0.4100418357208133 0.1695189024811287 0.41004183572081326 0.23280266639885808
+0.169518975849321 0.4142259490155975 0.169518975849321 0.41422594901559756 0.237099640607258
+0.17290680577868422 0.40794917932580893 0.17290680577868422 0.40794917932580893 0.23024788523355363
+0.17628925139807258 0.4058556532844662 0.17628925139807258 0.4058556532844662 0.22746915484789385
+0.17966919976796591 0.39957920485206017 0.17966919976796591 0.39957920485206017 0.21971810880325848
+0.1796648159755614 0.40376114827657333 0.1796648159755614 0.40376114827657333 0.2244750598334396
+0.18304085331917763 0.3974869661136666 0.18304085331917763 0.3974869661136666 0.2163932941090657
+0.18640080542852297 0.39539512884341743 0.18640080542852297 0.39539512884341743 0.21289314438796916
+0.15934801487293795 0.4288702928870322 0.15934801487293795 0.4288702928870322 0.25008067574368065
+0.16273839816810698 0.4267782426778268 0.16273839816810698 0.4267782426778268 0.24888005115563905
+0.1661287814632771 0.4205020920502101 0.16612878146327706 0.4205020920502101 0.24333377400913436
+0.16951899653626243 0.41841003087631545 0.16951899653626243 0.41841003087631545 0.24139596414444667
+0.16612875788020462 0.42468620607262175 0.16612875788020462 0.4246862060726217 0.2474150249174292
+0.15934801487293537 0.4330543933054459 0.15934801487293537 0.4330543933054459 0.25367358533740414
+0.15256724828257662 0.4456066945607072 0.15256724828257662 0.4456066945607072 0.260792029941727
+0.15934801487292893 0.43723849372386486 0.15934801487292893 0.43723849372386486 0.25720909260821484
+0.15595763157774484 0.4435146443515013 0.15595763157774487 0.4435146443515013 0.2608658829066047
+0.15934801487291395 0.44142259414229473 0.15934801487291395 0.44142259414229473 0.2606703088367847
+0.15256724828254808 0.44979079497916247 0.15256724828254808 0.44979079497916247 0.26363948875120286
+0.14239609839672332 0.47280334728078216 0.14239609839672332 0.47280334728078216 0.2680919511723982
+0.1491768649873202 0.4560669456068815 0.1491768649873202 0.4560669456068815 0.2655112042979931
+0.15256724828249027 0.45397489539766916 0.15256724828249027 0.45397489539766916 0.2663673218838618
+0.1457864816920462 0.46234309623462666 0.1457864816920462 0.46234309623462666 0.2664864253985184
+0.1491768649871993 0.46025104602547157 0.1491768649871993 0.46025104602547157 0.2678349011707164
+0.14578648169189784 0.4665271966532002 0.14578648169189787 0.46652719665320014 0.2683944186433318
+0.1457864816917803 0.47071129707169845 0.1457864816917803 0.47071129707169845 0.2701300162240783
+0.13900571510051515 0.48744769874523125 0.13900571510051515 0.48744769874523125 0.26864354881479446
+0.13900571510060958 0.49163179916287086 0.13900571510060958 0.49163179916287086 0.26916696533115164
+0.1423960983965871 0.47698744769941587 0.1423960983965871 0.47698744769941587 0.2694056434143326
+0.14239609839616163 0.4811715481181718 0.14239609839616163 0.4811715481181718 0.2705250520325402
+0.14239609839541215 0.48535564853656815 0.14239609839541215 0.48535564853656815 0.271437313332974
+0.13900571510148793 0.4958158995809052 0.13900571510148793 0.4958158995809052 0.2694839218897633
+0.13900571510232615 0.5000000000002802 0.13900571510232615 0.5000000000002802 0.26959038945972896
+0.13561533180658691 0.5062761506286547 0.13561533180658691 0.5062761506286547 0.2661747512048565
+0.1390057151020952 0.5041841004197428 0.13900571510209517 0.5041841004197428 0.26948500757491134
+0.13561533180613264 0.5104602510463149 0.13561533180613264 0.5104602510463149 0.2658028294231763
+0.13561533180634816 0.5146443514637411 0.1356153318063482 0.5146443514637412 0.2652507175182144
+0.13561533180691873 0.5188284518820853 0.13561533180691873 0.5188284518820853 0.2645253869960244
+0.3067432244523725 0.2834610010939951 0.3067432244523725 0.2834610010939951 0.1768574336420199
+0.30633404903915284 0.28693137259974333 0.30633404903915284 0.28693137259974333 0.17508570780591015
+0.3196651579571589 0.2632536612600247 0.31966515795715894 0.2632536612600247 0.19872800110638786
+0.31139737568320647 0.2750212534615648 0.31139737568320647 0.2750212534615648 0.18538002118119276
+0.3189035044335262 0.26673908504100896 0.3189035044335262 0.26673908504100896 0.19722806340898139
+0.3150184079627253 0.27352897594429315 0.31501840796272523 0.27352897594429315 0.19068887741976465
+0.3178583084252501 0.27047877948374205 0.31785830842525004 0.27047877948374205 0.19520239026333838
+0.3184674877077476 0.27375636739771186 0.3184674877077476 0.27375636739771186 0.19539740067194342
+0.3107184290007076 0.2786391359724028 0.3107184290007076 0.2786391359724028 0.1835936397269726
+0.31019540275522983 0.2822106067911803 0.31019540275522983 0.2822106067911803 0.18184857491443276
+0.3347177682741748 0.24370722277837306 0.3347177682741748 0.24370722277837306 0.22185112568808754
+0.3248138693975693 0.255308475972921 0.3248138693975693 0.255308475972921 0.2067618232663496
+0.3337275935530973 0.24708208184676517 0.3337275935530973 0.24708208184676517 0.22002507725194428
+0.3283446732182463 0.2543434263878488 0.3283446732182463 0.2543434263878488 0.21177714275231438
+0.3328439565691735 0.25040557029505056 0.3328439565691735 0.25040557029505056 0.21843816469548613
+0.3317964642897793 0.2532393661414113 0.3317964642897793 0.25323936614141124 0.2166866200879272
+0.32403818086456 0.2587899027638006 0.32403818086456 0.2587899027638006 0.20532657545357294
+0.3232544054953062 0.2622731051696751 0.3232544054953062 0.2622731051696751 0.20387139302489463
+0.351683851355904 0.22522300405828355 0.351683851355904 0.22522300405828358 0.2482609373976268
+0.34046479838247534 0.23618565269054773 0.34046479838247534 0.23618565269054773 0.23099499630915823
+0.3503274328807768 0.2284887421591614 0.3503274328807768 0.2284887421591614 0.24563338752050454
+0.3441383833368799 0.2355799937913873 0.3441383833368799 0.2355799937913873 0.23596458203123308
+0.3490300894676891 0.23175659391579806 0.34903008946768915 0.2317565939157981 0.24315754015914462
+0.34781294654795875 0.23503933831645563 0.34781294654795875 0.23503933831645565 0.24086908204893023
+0.3393864726882856 0.23959674852490723 0.3393864726882856 0.23959674852490723 0.22886072041049024
+0.3383563469499734 0.2430159806548239 0.33835634694997335 0.2430159806548239 0.22690894292351996
+0.36991295302750093 0.2072082589450628 0.369912953027501 0.2072082589450628 0.2737199017283701
+0.3582640685291025 0.21805875611173262 0.3582640685291025 0.21805875611173262 0.2583079304413351
+0.3692697535703115 0.211010866467153 0.3692697535703115 0.21101086646715303 0.2720341062763214
+0.36195748776551695 0.21726970245632315 0.36195748776551695 0.21726970245632318 0.2627195502591641
+0.36748107908580013 0.21425945336804925 0.36748107908580013 0.21425945336804927 0.2693739187861152
+0.3656358950512427 0.21701180612527898 0.36563589505124267 0.217011806125279 0.2667699144213361
+0.35683092140396083 0.2214608189407771 0.35683092140396083 0.2214608189407771 0.2555797360013767
+0.3554103954985335 0.22479461682781782 0.3554103954985335 0.22479461682781784 0.2529033563224407
+0.40168043428481703 0.18307678591399731 0.401680434284817 0.18307678591399731 0.28916416397401207
+0.3995908918510773 0.1864656894521182 0.3995908918510773 0.1864656894521182 0.29034391732565396
+0.3974970577612896 0.18985335757983343 0.3974970577612896 0.18985335757983343 0.2910005804273099
+0.3953921728948215 0.19323973509627243 0.3953921728948215 0.19323973509627243 0.2911525818387304
+0.39326885139816975 0.19661801777892407 0.39326885139816975 0.19661801777892407 0.2908218165896274
+0.39112959146899423 0.19997634448375393 0.39112959146899423 0.19997634448375393 0.29004271697252154
+0.3764448823754564 0.20340994119434033 0.3764448823754564 0.20340994119434033 0.2801078709462041
+0.3806481175370327 0.20335611232709003 0.3806481175370327 0.20335611232709003 0.2833603308618759
+0.38484231830412935 0.20330931786786907 0.38484231830412935 0.20330931786786907 0.286294102538023
+0.3889876449230087 0.20327672083893247 0.3889876449230087 0.20327672083893247 0.28885247589374496
+0.37426798011969264 0.20680712966070985 0.37426798011969264 0.20680712966070988 0.27767609697444406
+0.40795870265848316 0.17968060237001726 0.40795870265848316 0.17968060237001726 0.28711451470304317
+0.4058711758853783 0.1830722961239503 0.4058711758853783 0.1830722961239503 0.2892034558068439
+0.4121481694684294 0.17967110798655986 0.4121481694684294 0.17967110798655986 0.28625225667520543
+0.4414225941422357 0.15934801487294026 0.44142259414223567 0.15934801487294026 0.2437469205422409
+0.4393305439330306 0.1627383981681092 0.4393305439330306 0.1627383981681092 0.2501409208942414
+0.43723849601671616 0.16612868548339013 0.4372384960167162 0.16612868548339013 0.2562725568978034
+0.43514659040425757 0.1695181318285686 0.43514659040425757 0.1695181318285686 0.2620799136840259
+0.4330551087695868 0.17290509626141595 0.4330551087695868 0.17290509626141595 0.2675072668057897
+0.41633528568160055 0.17965934995864066 0.41633528568160055 0.17965934995864066 0.2848369903966425
+0.42051747289816643 0.17965013481047135 0.4205174728981664 0.17965013481047135 0.2828448633986906
+0.4267821689258335 0.17628079658310045 0.4267821689258335 0.17628079658310045 0.276114146911508
+0.430964401748061 0.17628470639121085 0.430964401748061 0.17628470639121085 0.2725048984219678
+0.4246962522188456 0.17964811018193838 0.4246962522188456 0.17964811018193838 0.28025284756127156
+0.4623430962342868 0.15256724828260237 0.4623430962342869 0.15256724828260237 0.20214928552469727
+0.44769874476985105 0.15595763157777132 0.44769874476985105 0.15595763157777132 0.2311013416306318
+0.4518828451882613 0.15595763157777132 0.4518828451882612 0.15595763157777132 0.22446816122596672
+0.4560669456066715 0.15595763157777132 0.4560669456066715 0.15595763157777132 0.21725896229939065
+0.4602510460250817 0.15595763157777132 0.46025104602508177 0.15595763157777132 0.2094792092742552
+0.44560669456064594 0.15934801487294026 0.445606694560646 0.15934801487294026 0.23791489514356204
+0.4832635983263379 0.1457864816922645 0.48326359832633786 0.1457864816922645 0.15120740409276465
+0.46861924686190215 0.14917686498743343 0.4686192468619021 0.14917686498743343 0.18643019165949928
+0.47280334728031237 0.14917686498743343 0.47280334728031237 0.14917686498743343 0.17746901391072825
+0.4769874476987226 0.14917686498743343 0.47698744769872264 0.14917686498743343 0.16804240631734782
+0.4811715481171328 0.14917686498743343 0.4811715481171328 0.14917686498743343 0.15817507662577215
+0.46652719665269704 0.15256724828260237 0.466527196652697 0.15256724828260237 0.1937228185483321
+0.48953974895395325 0.14239609839709555 0.48953974895395325 0.14239609839709555 0.13452239098313148
+0.49372384937236347 0.14239609839709555 0.4937238493723635 0.14239609839709555 0.12416696816935659
+0.4979079497907737 0.14239609839709555 0.4979079497907737 0.14239609839709555 0.1135345724854666
+0.48744769874474814 0.1457864816922645 0.4874476987447482 0.1457864816922645 0.14103761810777213
+0.5209205020920299 0.12544418192125084 0.5209205020920299 0.12544418192125084 0.05762672680122278
+0.5146443514644146 0.12883456521641978 0.5146443514644146 0.12883456521641978 0.07207396870410947
+0.5188284518828248 0.12883456521641978 0.5188284518828247 0.12883456521641978 0.0618804738438369
+0.5020920502091839 0.14239609839709555 0.5020920502091838 0.14239609839709555 0.10267379355085725
+0.5125523012552095 0.13222494851158872 0.5125523012552095 0.13222494851158872 0.07659201519077258
+0.5104602510460043 0.13561533180675767 0.5104602510460045 0.13561533180675767 0.08131832632863596
+0.5083682008367992 0.1390057151019266 0.5083682008367992 0.1390057151019266 0.08631799570549854
+0.5062761506275941 0.14239609839709555 0.5062761506275941 0.14239609839709555 0.09164610245529543
+0.5251046025104401 0.12544418192125084 0.5251046025104401 0.12544418192125084 0.047758971085081904
+0.5292887029288503 0.12544418192125084 0.5292887029288503 0.12544418192125084 0.03846953816760998
+0.5355648535564657 0.1220537986260819 0.5355648535564655 0.1220537986260819 0.027165327086818375
+0.5334728033472605 0.12544418192125084 0.5334728033472605 0.12544418192125084 0.030568587384237757
+0.5397489539748759 0.1220537986260819 0.5397489539748759 0.1220537986260819 0.023538656370047012
+0.5460251046024912 0.11866341533091296 0.5460251046024912 0.11866341533091296 0.026009252171190583
+0.5439330543932861 0.1220537986260819 0.5439330543932862 0.1220537986260819 0.025652152944881244
+0.5523012552301065 0.11527303203574402 0.5523012552301064 0.11527303203574402 0.036832194029488445
+0.5502092050209014 0.11866341533091296 0.5502092050209014 0.11866341533091296 0.034417566634715735
+0.5899581589957985 0.07458843249371672 0.5899581589957985 0.07458843249371672 0.13376302486579347
+0.5836820083681832 0.07797881578888566 0.5836820083681832 0.07797881578888566 0.11672649131913788
+0.5878661087865934 0.07797881578888566 0.5878661087865934 0.07797881578888566 0.12943093158807695
+0.5815899581589781 0.0813691990840546 0.5815899581589781 0.0813691990840546 0.11176138376898971
+0.579497907949773 0.08475958237922354 0.579497907949773 0.08475958237922354 0.10649808359457036
+0.5774058577405679 0.08814996567439248 0.577405857740568 0.08814996567439248 0.10101176800229968
+0.5711297071129525 0.09154034896956142 0.5711297071129525 0.09154034896956142 0.08212241256037851
+0.5690376569037474 0.09493073226473037 0.5690376569037473 0.09493073226473037 0.07645790350367006
+0.5669456066945423 0.09832111555989931 0.5669456066945423 0.09832111555989931 0.07089814179241215
+0.5648535564853372 0.10171149885506825 0.5648535564853372 0.10171149885506825 0.0655439372800488
+0.5627615062761321 0.10510188215023719 0.5627615062761321 0.10510188215023719 0.060494340695644404
+0.560669456066927 0.10849226544540613 0.5606694560669271 0.10849226544540613 0.05584106809763333
+0.5585774058577219 0.11188264874057507 0.5585774058577219 0.11188264874057507 0.051661100931884384
+0.5564853556485168 0.11527303203574402 0.5564853556485168 0.11527303203574402 0.048007810661902815
+0.5753138075313627 0.09154034896956142 0.5753138075313627 0.09154034896956142 0.09538678627397769
+0.6004184100418241 0.06441728260820989 0.6004184100418241 0.06441728260820989 0.15507944410559604
+0.6046025104602343 0.06441728260820989 0.6046025104602343 0.06441728260820989 0.16598032191353476
+0.598326359832619 0.06780766590337883 0.598326359832619 0.06780766590337883 0.1525986846829945
+0.5962343096234138 0.07119804919854777 0.5962343096234138 0.07119804919854777 0.1495811635347375
+0.5941422594142087 0.07458843249371672 0.5941422594142088 0.07458843249371672 0.14604209569211865
+0.6255230125522854 0.03729421624685836 0.6255230125522854 0.03729421624685836 0.1736903341791811
+0.6234309623430803 0.0406845995420273 0.6234309623430803 0.0406845995420273 0.17491252244572109
+0.6213389121338752 0.04407498283719624 0.6213389121338752 0.04407498283719624 0.1760780563055602
+0.61924686192467 0.04746536613236518 0.6192468619246699 0.04746536613236518 0.17708018573108408
+0.6171548117154649 0.050855749427534125 0.6171548117154649 0.050855749427534125 0.1778194923440811
+0.6150627615062598 0.054246132722703067 0.6150627615062598 0.054246132722703067 0.17820706772858308
+0.6129707112970547 0.05763651601787201 0.6129707112970547 0.05763651601787201 0.17816687817365676
+0.6108786610878496 0.06102689931304095 0.6108786610878497 0.06102689931304095 0.17763742427367887
+0.6087866108786445 0.06441728260820989 0.6087866108786445 0.06441728260820989 0.1765728166289122
+0.6317991631799007 0.03390383295168942 0.6317991631799007 0.03390383295168942 0.17919137029439505
+0.6297071129706956 0.03729421624685836 0.6297071129706956 0.03729421624685836 0.18065217114276907
+0.638075313807516 0.030513449656520475 0.638075313807516 0.030513449656520475 0.18413355519033991
+0.6359832635983109 0.03390383295168942 0.6359832635983108 0.03390383295168942 0.18562122302042017
+0.6443514644351314 0.027123066361351533 0.6443514644351315 0.027123066361351533 0.18884294675078947
+0.6422594142259263 0.030513449656520475 0.6422594142259263 0.030513449656520475 0.19015069045520563
+0.6506276150627467 0.02373268306618259 0.6506276150627467 0.02373268306618259 0.19363326970089864
+0.6485355648535416 0.027123066361351533 0.6485355648535416 0.027123066361351533 0.19457861653700803
+0.656903765690362 0.02034229977101365 0.656903765690362 0.02034229977101365 0.19877727740576404
+0.6548117154811569 0.02373268306618259 0.6548117154811569 0.02373268306618259 0.19921866927605666
+0.6652719665271825 0.013561533180675767 0.6652719665271825 0.013561533180675767 0.20524154890522903
+0.6631799163179773 0.01695191647584471 0.6631799163179773 0.01695191647584471 0.20448493708971424
+0.6610878661087722 0.02034229977101365 0.6610878661087723 0.02034229977101365 0.20433188045382514
+0.6715481171547978 0.010171149885506825 0.6715481171547978 0.010171149885506825 0.2122608154865446
+0.6694560669455927 0.013561533180675767 0.6694560669455926 0.013561533180675767 0.2108930834605167
+0.6778242677824131 0.006780766590337883 0.6778242677824132 0.006780766590337883 0.2200189250099637
+0.675732217573208 0.010171149885506825 0.675732217573208 0.010171149885506825 0.21806831654102307
+0.6820083682008233 0.006780766590337883 0.6820083682008233 0.006780766590337883 0.2260211026461781
+0.006780766590337709 0.6861924686192458 0.006780766590337709 0.6861924686192458 0.15847427022213825
+0.006780766590337709 0.6903765690376558 0.006780766590337709 0.6903765690376558 0.15711673663276235
+0.01017114988550656 0.6799163179916308 0.01017114988550656 0.6799163179916308 0.16109318111903967
+0.01017114988550656 0.6841004184100408 0.01017114988550656 0.6841004184100408 0.1595844182160819
+0.013561533180675408 0.6736401673640158 0.013561533180675408 0.6736401673640158 0.16407752858073385
+0.013561533180675408 0.6778242677824258 0.013561533180675408 0.6778242677824258 0.16238467378557173
+0.016951916475844264 0.6673640167364008 0.016951916475844264 0.6673640167364008 0.16745620384765858
+0.016951916475844264 0.6715481171548108 0.016951916475844264 0.6715481171548108 0.16555234907415362
+0.02034229977101312 0.6652719665271958 0.02034229977101312 0.6652719665271958 0.16912854266926078
+0.02373268306618197 0.6589958158995808 0.02373268306618197 0.6589958158995808 0.17315185292379243
+0.02373268306618197 0.6631799163179908 0.02373268306618197 0.6631799163179908 0.17091675028871622
+0.027123066361350822 0.6527196652719658 0.027123066361350822 0.6527196652719658 0.1776469454466383
+0.027123066361350822 0.6569037656903758 0.027123066361350822 0.6569037656903758 0.1751685841469344
+0.030513449656519673 0.6464435146443508 0.030513449656519673 0.6464435146443508 0.18261300364014818
+0.030513449656519673 0.6506276150627608 0.030513449656519673 0.6506276150627608 0.1799116312258604
+0.033903832951688535 0.6401673640167358 0.033903832951688535 0.6401673640167358 0.1880147090554485
+0.033903832951688535 0.6443514644351458 0.033903832951688535 0.6443514644351458 0.18513074338743987
+0.03729421624685738 0.6338912133891208 0.03729421624685738 0.6338912133891208 0.1937778111646997
+0.03729421624685738 0.6380753138075308 0.03729421624685738 0.6380753138075308 0.19077031164329197
+0.040684599542026224 0.6276150627615058 0.040684599542026224 0.6276150627615058 0.1997902633271024
+0.040684599542026224 0.6317991631799158 0.040684599542026224 0.6317991631799158 0.19673309631286487
+0.0440749828371951 0.6255230125523008 0.0440749828371951 0.6255230125523008 0.20288496779117846
+0.04746536613236394 0.6234309623430958 0.04746536613236394 0.6234309623430958 0.20602537745471236
+0.05085574942753279 0.6213389121338908 0.05085574942753279 0.6213389121338908 0.20917838770819716
+0.05424613272270165 0.6192468619246858 0.054246132722701644 0.6192468619246858 0.2123090074096545
+0.05763651601787049 0.6171548117154808 0.05763651601787049 0.6171548117154808 0.21538139108312412
+0.06102689931303934 0.6150627615062758 0.06102689931303934 0.6150627615062758 0.2183599533880823
+0.06441728260820821 0.6087866108786608 0.06441728260820821 0.6087866108786608 0.2240545497693791
+0.06780766590337706 0.6066945606694558 0.06780766590337706 0.6066945606694558 0.22664878865406843
+0.07797881578888362 0.5920502092050208 0.07797881578888362 0.5920502092050208 0.23699724053710355
+0.08475958237922132 0.5836820083682008 0.08475958237922132 0.5836820083682008 0.24073462802781823
+0.08814996567439015 0.5815899581589958 0.08814996567439015 0.5815899581589958 0.24151197888048506
+0.09493073226472787 0.5732217573221758 0.09493073226472787 0.5732217573221758 0.24321905259438373
+0.09832111555989675 0.5711297071129708 0.09832111555989675 0.5711297071129708 0.24349966878026597
+0.10171149885506564 0.5690376569037658 0.10171149885506563 0.5690376569037658 0.24375039931024364
+0.10510188215023453 0.5627615062761508 0.10510188215023453 0.5627615062761508 0.2444860660726391
+0.10849226544540343 0.5606694560669458 0.10849226544540343 0.5606694560669458 0.24489233201222663
+0.11188264874057234 0.5585774058577408 0.11188264874057234 0.5585774058577408 0.2454625634341863
+0.10510188215023453 0.5669456066945608 0.10510188215023453 0.5669456066945608 0.24402598115045973
+0.09154034896955902 0.5794979079497908 0.09154034896955902 0.5794979079497908 0.24210281048837964
+0.09493073226472787 0.5774058577405858 0.09493073226472787 0.5774058577405858 0.24254389906515747
+0.08136919908405248 0.5899581589958158 0.08136919908405248 0.5899581589958158 0.23837458939568287
+0.08475958237922132 0.5878661087866108 0.08475958237922132 0.5878661087866108 0.2395083534172829
+0.0711980491985459 0.6004184100418408 0.0711980491985459 0.6004184100418408 0.23139979637601646
+0.0711980491985459 0.6046025104602508 0.0711980491985459 0.6046025104602508 0.22903861638205622
+0.07458843249371476 0.5983263598326358 0.07458843249371476 0.5983263598326358 0.23342635707275103
+0.07797881578888362 0.5962343096234308 0.07797881578888362 0.5962343096234308 0.23520528044923306
+0.06441728260820821 0.6129707112970708 0.06441728260820821 0.6129707112970708 0.22121052148397594
+0.12544418192122628 0.5376569037656668 0.12544418192122628 0.5376569037656668 0.25323309352501494
+0.12544418192125034 0.5418410041840805 0.12544418192125037 0.5418410041840805 0.2523105012871387
+0.12883456521636552 0.5355648535564788 0.12883456521636552 0.5355648535564788 0.25566083781022053
+0.1322249485114979 0.5334728033473481 0.1322249485114979 0.5334728033473483 0.2583947941951856
+0.13561533180713303 0.5230125523011859 0.13561533180713303 0.5230125523011858 0.2636357084886857
+0.1356153318068952 0.5271966527200431 0.1356153318068952 0.5271966527200432 0.26259210312725473
+0.13561533180665455 0.5313807531383122 0.13561533180665455 0.5313807531383122 0.2614061269860935
+0.1152730320357413 0.5523012552301262 0.11527303203574131 0.5523012552301262 0.24686205566125022
+0.11866341533091064 0.5502092050209216 0.11866341533091064 0.5502092050209216 0.24803653978418058
+0.12205379862608107 0.5481171548117169 0.12205379862608105 0.5481171548117169 0.24951585166446158
+0.12544418192125317 0.5460251046025092 0.12544418192125317 0.5460251046025092 0.2513178577237181
+0.11527303203574117 0.556485355648536 0.11527303203574117 0.556485355648536 0.2462461906671405
+0.30610306028139067 0.29030777530674745 0.3061030602813907 0.2903077753067475 0.17340360450212233
+0.3051385438887849 0.29301528423764467 0.3051385438887849 0.29301528423764467 0.17085656996790471
+0.3026250890941523 0.294372870572558 0.30262508909415237 0.29437287057255807 0.16711497638199055
+0.29931158034750804 0.29570965019241824 0.2993115803475081 0.2957096501924182 0.1624950181158162
+0.29614013701454517 0.2971042896410668 0.29614013701454517 0.2971042896410668 0.15817030297523696
+0.28258017789072276 0.3035285645321403 0.2825801778907228 0.3035285645321402 0.14144319253491908
+0.29286760140037293 0.29862332105018735 0.2928676014003729 0.29862332105018735 0.15384058596949404
+0.28953301154531386 0.3001332951519177 0.28953301154531386 0.3001332951519177 0.14963546758774984
+0.28613197652215505 0.30167878100899453 0.28613197652215505 0.30167878100899453 0.14555803287318939
+0.28371898411651714 0.3066714122280929 0.28371898411651714 0.3066714122280929 0.14108525938017832
+0.2802818690317917 0.3070441299625291 0.2802818690317917 0.3070441299625291 0.13804763074578086
+0.2769144730231034 0.30913520919615833 0.2769144730231034 0.30913520919615833 0.13458845494990682
+0.2736203760187553 0.3110891365497439 0.2736203760187553 0.3110891365497439 0.1315757354953512
+0.2607171142287552 0.3182493578465818 0.2607171142287552 0.31824935784658187 0.12324055478173924
+0.2638643378288765 0.31655799130708023 0.2638643378288765 0.31655799130708023 0.12475452581425304
+0.2670698999625386 0.314791098619774 0.26706989996253855 0.314791098619774 0.1266441350878709
+0.2702951355629657 0.31300667258348513 0.2702951355629657 0.3130066725834851 0.12889170094782001
+0.2607731289477135 0.321358336388459 0.2607731289477135 0.32135833638845895 0.12330002290578691
+0.2578640167451376 0.3234624620272224 0.2578640167451376 0.3234624620272224 0.1225345352023627
+0.23952163585360686 0.33593459507611356 0.2395216358536069 0.3359345950761136 0.1260387818854294
+0.2548323519952121 0.32549758706692095 0.2548323519952121 0.32549758706692095 0.12210575161731856
+0.25176946119529925 0.3275457537669118 0.25176946119529925 0.3275457537669118 0.12207501059663861
+0.24870957524207132 0.3296215452430119 0.24870957524207135 0.32962154524301196 0.12246186516768165
+0.24258042231022944 0.33380119537723757 0.24258042231022944 0.33380119537723757 0.12444683749681089
+0.24564221623923363 0.33170631119714905 0.24564221623923363 0.33170631119714905 0.12325577796265617
+0.21969991868059235 0.35586079252397934 0.21969991868059235 0.35586079252397934 0.15032506321359893
+0.22264277728363643 0.35342609155444854 0.22264277728363643 0.35342609155444854 0.14638560200325215
+0.22550412180913884 0.35097949885780144 0.22550412180913884 0.35097949885780144 0.14266253480570681
+0.22836466253004808 0.34859113412315684 0.22836466253004808 0.34859113412315684 0.1392059016628009
+0.24004238022784283 0.33941309457476815 0.24004238022784283 0.33941309457476815 0.12826886955875005
+0.23707886546832468 0.3416384175484844 0.23707886546832468 0.3416384175484844 0.1305096533856607
+0.23123927105518896 0.3462377825326581 0.23123927105518896 0.3462377825326581 0.13601092558101965
+0.23414270393554823 0.34391774054392515 0.23414270393554823 0.34391774054392515 0.1331018922060219
+0.20323456469723444 0.37652579893606697 0.20323456469723444 0.376525798936067 0.18275691311693046
+0.20655144222772048 0.3748938858555552 0.20655144222772046 0.3748938858555552 0.1791250702040099
+0.20715573616973482 0.37198723361140457 0.2071557361697348 0.37198723361140457 0.17524391231012384
+0.20935888649494783 0.3693635533492411 0.20935888649494783 0.36936355334924104 0.1710265158392277
+0.22032998073794663 0.35946032706755915 0.22032998073794663 0.35946032706755915 0.1539682710939232
+0.212622540154677 0.3675312336899206 0.212622540154677 0.3675312336899206 0.16708678525101497
+0.21740449066923756 0.3620326569651352 0.2174044906692376 0.36203265696513526 0.15831398939624022
+0.21485230086425589 0.36467860457014134 0.21485230086425586 0.36467860457014134 0.1625936063031417
+0.1897533913729047 0.39330714105240544 0.1897533913729047 0.39330714105240544 0.20923636717545216
+0.19310113425099187 0.39123409756545624 0.19310113425099187 0.39123409756545624 0.2054520463501772
+0.19646656474334429 0.384985042290006 0.1964665647433443 0.384985042290006 0.19636499358300571
+0.19643548597485633 0.38920193623975763 0.1964354859748563 0.38920193623975763 0.20158791793047381
+0.19987357055737787 0.38284977843478935 0.19987357055737787 0.38284977843478935 0.19220685845083288
+0.20338256228420432 0.38051991745279873 0.2033825622842043 0.38051991745279873 0.1876362534369174
+0.17290697115277387 0.4121331923696554 0.17290697115277387 0.41213319236965534 0.23472168016887482
+0.17290697910751687 0.4163170870930517 0.17290697910751687 0.4163170870930517 0.23920320984396784
+0.17628905647357918 0.4100389251532055 0.17628905647357918 0.41003892515320556 0.2321060228141901
+0.17966224187802493 0.4079433566658605 0.17966224187802493 0.4079433566658605 0.2292615711154732
+0.1830310623139273 0.40166747820112714 0.1830310623139273 0.4016674782011272 0.2212788597808257
+0.18302518546223512 0.40584804589911117 0.18302518546223512 0.4058480458991111 0.2262014339448817
+0.18638279257098697 0.39957268308018024 0.18638279257098697 0.39957268308018024 0.21789200771453696
+0.18972304935035453 0.3974744495321993 0.18972304935035453 0.3974744495321993 0.21432547516062317
+0.1627383981681045 0.4309623430962402 0.1627383981681045 0.4309623430962402 0.2527075794095501
+0.16612872065135512 0.428870354260425 0.16612872065135512 0.428870354260425 0.25146722485851375
+0.1695189827728422 0.4225941186230539 0.1695189827728422 0.4225941186230539 0.24568308165211636
+0.17290683490434375 0.4205006634593926 0.17290683490434375 0.4205006634593926 0.2436835649785162
+0.16951883537368995 0.42677821003287136 0.16951883537368995 0.42677821003287136 0.24994895159826638
+0.16273839816809824 0.4351464435146586 0.16273839816809824 0.43514644351465853 0.25648403799279107
+0.15595763157771478 0.44769874476995425 0.15595763157771478 0.44769874476995425 0.26397563871569935
+0.16273839816808344 0.4393305439330873 0.16273839816808344 0.4393305439330873 0.2601918611398259
+0.15934801487288283 0.4456066945607449 0.15934801487288283 0.4456066945607449 0.2640377766192716
+0.16273839816805197 0.4435146443515343 0.16273839816805194 0.4435146443515343 0.26381081928255484
+0.15595763157765727 0.45188284518845184 0.15595763157765727 0.45188284518845184 0.2669672804526895
+0.14578648169167902 0.474895397490287 0.145786481691679 0.474895397490287 0.2716756259498294
+0.15256724828237067 0.45815899581626557 0.15256724828237067 0.45815899581626557 0.2689548679194514
+0.1559576315775428 0.45606694560703565 0.1559576315775428 0.45606694560703565 0.26981881093863996
+0.14917686498700194 0.4644351464441227 0.14917686498700197 0.4644351464441227 0.2699997642935568
+0.152567248282148 0.46234309623496445 0.152567248282148 0.46234309623496445 0.2713806762523477
+0.14917686498679433 0.468619246862716 0.14917686498679436 0.468619246862716 0.2719858342428116
+0.14917686498666685 0.47280334728124945 0.14917686498666685 0.47280334728124945 0.2737736340629819
+0.14239609839483655 0.4895397489539384 0.14239609839483655 0.4895397489539384 0.27213160336740033
+0.14239609839586023 0.49372384937137354 0.14239609839586023 0.49372384937137354 0.27259948714574816
+0.14578648169137695 0.4790794979090927 0.14578648169137695 0.4790794979090927 0.27301475847524626
+0.1457864816905651 0.48326359832787086 0.1457864816905651 0.48326359832787086 0.2741325300533198
+0.14578648168938005 0.48744769874603355 0.14578648168938005 0.4874476987460335 0.2750161115799778
+0.1423960983972428 0.49790794979033315 0.1423960983972428 0.49790794979033315 0.27283518777120225
+0.142396098397673 0.5020920502103811 0.142396098397673 0.5020920502103811 0.2728357688824396
+0.13900571510130486 0.5083682008378705 0.13900571510130486 0.5083682008378706 0.26916913122587344
+0.14239609839678893 0.5062761506295154 0.14239609839678893 0.5062761506295154 0.272601226612505
+0.1390057151011115 0.5125523012548546 0.1390057151011115 0.5125523012548546 0.2686467841860721
+0.13900571510178242 0.5167364016724509 0.13900571510178242 0.5167364016724508 0.26792451996566397
+0.13900571510240411 0.5209205020914619 0.13900571510240411 0.5209205020914619 0.26701119381255656
+0.3097289734097213 0.2857477665069678 0.3097289734097213 0.2857477665069678 0.18000506915195122
+0.30927659101279487 0.28936144866905117 0.30927659101279487 0.28936144866905117 0.17795729296870302
+0.3224711102472742 0.26575129230597416 0.3224711102472742 0.26575129230597416 0.20237889759336922
+0.31414482390938053 0.2772704973201093 0.31414482390938053 0.2772704973201093 0.188630119573395
+0.3216786177180957 0.2692174658046346 0.3216786177180957 0.2692174658046346 0.20079160002996968
+0.3173333142725002 0.2765026371313942 0.31733331427250017 0.27650263713139417 0.19325804798325583
+0.32109624595983616 0.2724268579708352 0.32109624595983616 0.27242685797083516 0.19945152600963797
+0.320711096264806 0.2756865567454217 0.32071109626480604 0.2756865567454217 0.1981756287684371
+0.31360523814534136 0.2809525506606891 0.31360523814534136 0.2809525506606891 0.18687667180363784
+0.31315098749245446 0.28452984146340793 0.31315098749245446 0.28452984146340793 0.18507874317798897
+0.33730039913746884 0.24644104807992018 0.33730039913746884 0.24644104807992018 0.22502555591346704
+0.3276231232055331 0.2578405711313103 0.3276231232055331 0.2578405711313103 0.21046407830564595
+0.3362918977930127 0.24980611282083726 0.3362918977930127 0.24980611282083728 0.22330115660670077
+0.3310225862242974 0.2568710037507465 0.3310225862242974 0.2568710037507465 0.21535364400888804
+0.33532787796364827 0.2531353322239055 0.3353278779636483 0.25313533222390555 0.22169390539997894
+0.3339864000560119 0.25568798099682766 0.3339864000560119 0.25568798099682766 0.2195776776903975
+0.3268483026559584 0.2613119482743239 0.3268483026559584 0.26131194827432397 0.20905211289732475
+0.3260481246721454 0.2647785731098932 0.3260481246721454 0.2647785731098932 0.20758567739530107
+0.354052510130021 0.2280809761289099 0.354052510130021 0.2280809761289099 0.25036111923013854
+0.3430244929919822 0.23895468967367664 0.3430244929919822 0.23895468967367664 0.23384043487839626
+0.3527373217918397 0.23134353943313068 0.3527373217918397 0.23134353943313068 0.24794690777013506
+0.3466586597837591 0.23834608673826327 0.3466586597837591 0.23834608673826327 0.23876416481383703
+0.3514802763510765 0.23458123656504362 0.3514802763510765 0.23458123656504362 0.2456943763299275
+0.35027914158811635 0.23778007909756535 0.35027914158811635 0.23778007909756535 0.24360421891567532
+0.34195129563185395 0.24235133258614588 0.34195129563185395 0.2423513325861459 0.23188224697139725
+0.3408810990336373 0.24583165676123098 0.3408810990336373 0.245831656761231 0.23002018888445006
+0.37279586049793645 0.2103082684463621 0.37279586049793645 0.2103082684463621 0.27561602080328346
+0.36054275921223794 0.22091133007274985 0.36054275921223794 0.22091133007274985 0.2600308578243653
+0.3713065278600052 0.21384725385692507 0.3713065278600052 0.21384725385692507 0.2733178726060161
+0.3642324149051483 0.220465323531479 0.3642324149051483 0.220465323531479 0.2642962012186132
+0.3695167614152937 0.2171760269141839 0.3695167614152937 0.2171760269141839 0.27071917878301294
+0.3679197768346897 0.22021908492426673 0.3679197768346896 0.2202190849242667 0.2683432831167792
+0.3591289742142549 0.2243199717178283 0.3591289742142549 0.22431997171782833 0.25744621130166095
+0.3577598424079236 0.22766248824055105 0.3577598424079236 0.22766248824055105 0.2549778873217509
+0.4037791172085348 0.18646682142135879 0.4037791172085348 0.18646682142135876 0.29076265716100963
+0.4016958324469136 0.1898505669398872 0.4016958324469136 0.1898505669398872 0.29179212144767797
+0.3995921245218298 0.1932389355953602 0.39959212452182985 0.1932389355953602 0.2923088760316644
+0.39747368229030167 0.19663411824055244 0.3974736822903017 0.19663411824055244 0.2923421748769112
+0.39531300585742196 0.20001200720371573 0.39531300585742196 0.20001200720371573 0.2919115766430947
+0.39314292366089704 0.20338037917048277 0.39314292366089704 0.20338037917048277 0.2910641549908906
+0.3784933327979556 0.2067632789971512 0.3784933327979556 0.2067632789971512 0.28121718690229186
+0.3826935178693937 0.20665323879314865 0.3826935178693937 0.20665323879314865 0.28445479988072714
+0.38684406469951815 0.20653475784208364 0.38684406469951815 0.20653475784208367 0.2873241707030194
+0.39095254299261506 0.20648396675062475 0.39095254299261506 0.20648396675062478 0.28979881584923
+0.3766879872743281 0.2101557559929741 0.3766879872743281 0.2101557559929741 0.2791143569699761
+0.41006450090023344 0.18306127923184257 0.41006450090023344 0.18306127923184257 0.28872364917883436
+0.4079768852244599 0.18646098748896278 0.4079768852244599 0.18646098748896278 0.29067210930233905
+0.41425484192115025 0.18303963625477107 0.41425484192115025 0.18303963625477107 0.28769094983563237
+0.44351464435144083 0.1627383981681092 0.4435146443514409 0.1627383981681092 0.24456485008351572
+0.4414225941422357 0.16612878146327814 0.44142259414223567 0.16612878146327814 0.25098330782401906
+0.4393307195541578 0.16951857496788317 0.43933071955415776 0.16951857496788317 0.25710645267026555
+0.4372393314489457 0.17290631785818325 0.4372393314489457 0.17290631785818325 0.26287615740289527
+0.43514804350227815 0.17628794147753 0.43514804350227815 0.17628794147753 0.26824116801823905
+0.41844129503256067 0.18302098657422647 0.41844129503256067 0.18302098657422647 0.2860852422194913
+0.4226150137100688 0.18300768296914827 0.4226150137100689 0.18300768296914827 0.28388755738741556
+0.428874454102723 0.17965220647942626 0.428874454102723 0.17965220647942626 0.2770343871672169
+0.4330555510274067 0.17965762995537293 0.4330555510274067 0.17965762995537293 0.2731598293501745
+0.426780316950549 0.18300065724636816 0.426780316950549 0.18300065724636816 0.28107093352683105
+0.46443514644349193 0.15595763157777132 0.46443514644349193 0.15595763157777132 0.20113853764058873
+0.44979079497905616 0.15934801487294026 0.4497907949790561 0.15934801487294026 0.23148379607899547
+0.4539748953974664 0.15934801487294026 0.45397489539746644 0.15934801487294026 0.22445292552276955
+0.4581589958158766 0.15934801487294026 0.45815899581587655 0.15934801487294026 0.21682574475786184
+0.4623430962342868 0.15934801487294026 0.4623430962342869 0.15934801487294026 0.20860994693884474
+0.44769874476985105 0.1627383981681092 0.44769874476985105 0.1627383981681092 0.23837024086015593
+0.485355648535543 0.14917686498743343 0.48535564853554297 0.14917686498743343 0.14789607400546104
+0.47071129707110726 0.15256724828260237 0.4707112970711073 0.15256724828260237 0.18477968863489933
+0.4748953974895175 0.15256724828260237 0.4748953974895174 0.15256724828260237 0.1753394439867724
+0.4790794979079277 0.15256724828260237 0.47907949790792775 0.15256724828260237 0.16542586769230916
+0.4832635983263379 0.15256724828260237 0.48326359832633786 0.15256724828260237 0.155067165399612
+0.46861924686190215 0.15595763157777132 0.4686192468619021 0.15595763157777132 0.19225079568469125
+0.49163179916315836 0.1457864816922645 0.4916317991631583 0.1457864816922645 0.130521983097123
+0.4958158995815686 0.1457864816922645 0.49581589958156863 0.1457864816922645 0.11970059909901475
+0.4999999999999788 0.1457864816922645 0.49999999999997874 0.1457864816922645 0.10862143949988275
+0.48953974895395325 0.14917686498743343 0.48953974895395325 0.14917686498743343 0.1372392537332754
+0.523012552301235 0.12883456521641978 0.523012552301235 0.12883456521641978 0.05185988428739404
+0.5167364016736197 0.13222494851158872 0.5167364016736197 0.13222494851158872 0.06622378363064245
+0.5209205020920299 0.13222494851158872 0.5209205020920299 0.13222494851158872 0.056001058309024444
+0.504184100418389 0.1457864816922645 0.504184100418389 0.1457864816922645 0.09734404148404918
+0.5146443514644146 0.13561533180675767 0.5146443514644146 0.13561533180675767 0.07073274882823812
+0.5125523012552095 0.1390057151019266 0.5125523012552095 0.1390057151019266 0.07548094261640202
+0.5104602510460043 0.14239609839709555 0.5104602510460045 0.14239609839709555 0.0805342932015733
+0.5083682008367992 0.1457864816922645 0.5083682008367992 0.1457864816922645 0.08594649352197194
+0.5271966527196452 0.12883456521641978 0.5271966527196453 0.12883456521641978 0.04233716252140864
+0.5313807531380554 0.12883456521641978 0.5313807531380554 0.12883456521641978 0.03397483051095921
+0.5376569037656708 0.12544418192125084 0.5376569037656708 0.12544418192125084 0.02570072872527812
+0.5355648535564657 0.12883456521641978 0.5355648535564655 0.12883456521641978 0.028111765320026055
+0.541841004184081 0.12544418192125084 0.541841004184081 0.12544418192125084 0.025952214038449883
+0.5481171548116963 0.1220537986260819 0.5481171548116963 0.1220537986260819 0.032642766763782353
+0.5460251046024912 0.12544418192125084 0.5460251046024912 0.12544418192125084 0.03143304994820328
+0.5543933054393116 0.11866341533091296 0.5543933054393116 0.11866341533091296 0.044902068486022566
+0.5523012552301065 0.1220537986260819 0.5523012552301064 0.1220537986260819 0.042326087554642795
+0.5920502092050036 0.07797881578888566 0.5920502092050036 0.07797881578888566 0.14201174747003978
+0.5857740585773883 0.0813691990840546 0.5857740585773882 0.0813691990840546 0.1246931826150496
+0.5899581589957985 0.0813691990840546 0.5899581589957985 0.0813691990840546 0.13753466249178992
+0.5836820083681832 0.08475958237922354 0.5836820083681832 0.08475958237922354 0.11961117344123724
+0.5815899581589781 0.08814996567439248 0.5815899581589781 0.08814996567439248 0.11425763127358103
+0.579497907949773 0.09154034896956142 0.579497907949773 0.09154034896956142 0.108715080694051
+0.5732217573221576 0.09493073226473037 0.5732217573221576 0.09493073226473037 0.08971481747965548
+0.5711297071129525 0.09832111555989931 0.5711297071129525 0.09832111555989931 0.08409252315908154
+0.5690376569037474 0.10171149885506825 0.5690376569037473 0.10171149885506825 0.07861847537632899
+0.5669456066945423 0.10510188215023719 0.5669456066945423 0.10510188215023719 0.07338909659988903
+0.5648535564853372 0.10849226544540613 0.5648535564853372 0.10849226544540613 0.06849337466457744
+0.5627615062761321 0.11188264874057507 0.5627615062761321 0.11188264874057507 0.0640062986947695
+0.560669456066927 0.11527303203574402 0.5606694560669271 0.11527303203574402 0.05998139023893212
+0.5585774058577219 0.11866341533091296 0.5585774058577219 0.11866341533091296 0.056443383898091275
+0.5774058577405679 0.09493073226473037 0.577405857740568 0.09493073226473037 0.10307394275468784
+0.6025104602510292 0.06780766590337883 0.6025104602510291 0.06780766590337883 0.16391675590838573
+0.6066945606694394 0.06780766590337883 0.6066945606694394 0.06780766590337883 0.17494338005237334
+0.6004184100418241 0.07119804919854777 0.6004184100418241 0.07119804919854777 0.1612936924543296
+0.598326359832619 0.07458843249371672 0.598326359832619 0.07458843249371672 0.15812047448680214
+0.5962343096234138 0.07797881578888566 0.5962343096234138 0.07797881578888566 0.1544220139440814
+0.6276150627614905 0.0406845995420273 0.6276150627614906 0.0406845995420273 0.18220246855446118
+0.6255230125522854 0.04407498283719624 0.6255230125522854 0.04407498283719624 0.18372956995631598
+0.6234309623430803 0.04746536613236518 0.6234309623430803 0.04746536613236518 0.18512289489798275
+0.6213389121338752 0.050855749427534125 0.6213389121338752 0.050855749427534125 0.18627820969953476
+0.61924686192467 0.054246132722703067 0.6192468619246699 0.054246132722703067 0.18710100591962062
+0.6171548117154649 0.05763651601787201 0.6171548117154649 0.05763651601787201 0.18750906572993828
+0.6150627615062598 0.06102689931304095 0.6150627615062598 0.06102689931304095 0.18743431266726843
+0.6129707112970547 0.06441728260820989 0.6129707112970547 0.06441728260820989 0.18682406448776664
+0.6108786610878496 0.06780766590337883 0.6108786610878497 0.06780766590337883 0.18564179946998502
+0.6338912133891058 0.03729421624685836 0.6338912133891058 0.03729421624685836 0.18734641469169208
+0.6317991631799007 0.0406845995420273 0.6317991631799007 0.0406845995420273 0.18919889935777887
+0.6401673640167211 0.03390383295168942 0.6401673640167211 0.03390383295168942 0.19183286485720116
+0.638075313807516 0.03729421624685836 0.638075313807516 0.03729421624685836 0.19379096743320942
+0.6464435146443365 0.030513449656520475 0.6464435146443365 0.030513449656520475 0.19601146759528423
+0.6443514644351314 0.03390383295168942 0.6443514644351315 0.03390383295168942 0.19785380421786278
+0.6527196652719518 0.027123066361351533 0.6527196652719517 0.027123066361351533 0.200226838607005
+0.6506276150627467 0.030513449656520475 0.6506276150627467 0.030513449656520475 0.20175077100242708
+0.6589958158995671 0.02373268306618259 0.6589958158995671 0.02373268306618259 0.20478622233452717
+0.656903765690362 0.027123066361351533 0.656903765690362 0.027123066361351533 0.20582670897070346
+0.6673640167363876 0.01695191647584471 0.6673640167363876 0.01695191647584471 0.21010732657078132
+0.6652719665271825 0.02034229977101365 0.6652719665271825 0.02034229977101365 0.20993250765739233
+0.6631799163179773 0.02373268306618259 0.6631799163179773 0.02373268306618259 0.21037546033442264
+0.6736401673640029 0.013561533180675767 0.6736401673640029 0.013561533180675767 0.2166558907837346
+0.6715481171547978 0.01695191647584471 0.6715481171547978 0.01695191647584471 0.2158283921144564
+0.6799163179916182 0.010171149885506825 0.6799163179916182 0.010171149885506825 0.22401771533033196
+0.6778242677824131 0.013561533180675767 0.6778242677824132 0.013561533180675767 0.22255499447929752
+0.6861924686192336 0.006780766590337883 0.6861924686192334 0.006780766590337883 0.23217995538841338
+0.6841004184100284 0.010171149885506825 0.6841004184100284 0.010171149885506825 0.23012410799753716
+0.6903765690376438 0.006780766590337883 0.6903765690376438 0.006780766590337883 0.2384993325911994
+0.006780766590337709 0.6945606694560658 0.006780766590337709 0.6945606694560658 0.15584848628138423
+0.006780766590337709 0.6987447698744758 0.006780766590337709 0.6987447698744758 0.1546505141415141
+0.01017114988550656 0.6882845188284508 0.01017114988550656 0.6882845188284508 0.1581898732664563
+0.01017114988550656 0.6924686192468608 0.01017114988550656 0.6924686192468608 0.1568951420571556
+0.013561533180675408 0.6820083682008358 0.013561533180675408 0.6820083682008358 0.16082412414643976
+0.013561533180675408 0.6861924686192458 0.013561533180675408 0.6861924686192458 0.15938721113133356
+0.016951916475844264 0.6757322175732208 0.016951916475844264 0.6757322175732208 0.16379040287438199
+0.016951916475844264 0.6799163179916308 0.016951916475844264 0.6799163179916308 0.1621683145040607
+0.02034229977101312 0.6694560669456058 0.02034229977101312 0.6694560669456058 0.16713768470829946
+0.02034229977101312 0.6736401673640158 0.02034229977101312 0.6736401673640158 0.16529340072778428
+0.02373268306618197 0.6673640167364008 0.02373268306618197 0.6673640167364008 0.16882386264891128
+0.027123066361350822 0.6610878661087858 0.027123066361350822 0.6610878661087858 0.1728161709051548
+0.027123066361350822 0.6652719665271958 0.027123066361350822 0.6652719665271958 0.17060487911456387
+0.030513449656519673 0.6548117154811708 0.030513449656519673 0.6548117154811708 0.1773082706561316
+0.030513449656519673 0.6589958158995808 0.030513449656519673 0.6589958158995808 0.1748242165586288
+0.033903832951688535 0.6485355648535558 0.033903832951688535 0.6485355648535558 0.18230663657289226
+0.033903832951688535 0.6527196652719658 0.033903832951688535 0.6527196652719658 0.17956817677190554
+0.03729421624685738 0.6422594142259408 0.03729421624685738 0.6422594142259408 0.18777685763394317
+0.03729421624685738 0.6464435146443508 0.03729421624685738 0.6464435146443508 0.184825689324875
+0.040684599542026224 0.6359832635983258 0.040684599542026224 0.6359832635983258 0.1936398320211872
+0.040684599542026224 0.6401673640167358 0.040684599542026224 0.6401673640167358 0.19053897314845547
+0.0440749828371951 0.6297071129707108 0.0440749828371951 0.6297071129707108 0.1997743381858779
+0.0440749828371951 0.6338912133891208 0.0440749828371951 0.6338912133891208 0.1966034861410411
+0.04746536613236394 0.6276150627615058 0.04746536613236394 0.6276150627615058 0.20287442367061928
+0.05085574942753279 0.6255230125523008 0.05085574942753279 0.6255230125523008 0.20600311389974416
+0.05424613272270165 0.6234309623430958 0.054246132722701644 0.6234309623430958 0.20912778897051446
+0.05763651601787049 0.6213389121338908 0.05763651601787049 0.6213389121338908 0.21221435304444494
+0.06102689931303934 0.6192468619246858 0.06102689931303934 0.6192468619246858 0.21522825685634797
+0.06441728260820821 0.6171548117154808 0.06441728260820821 0.6171548117154808 0.21813559289785708
+0.06780766590337706 0.6108786610878658 0.06780766590337706 0.6108786610878658 0.2239014838472186
+0.0711980491985459 0.6087866108786608 0.0711980491985459 0.6087866108786608 0.22640489800566496
+0.08136919908405248 0.5941422594142258 0.08136919908405248 0.5941422594142258 0.23673284539881492
+0.08814996567439015 0.5857740585774058 0.08814996567439015 0.5857740585774058 0.24041528402014659
+0.09154034896955902 0.5836820083682008 0.09154034896955902 0.5836820083682008 0.2411203335278895
+0.09832111555989675 0.5753138075313808 0.09832111555989675 0.5753138075313808 0.24287872697239174
+0.10171149885506564 0.5732217573221758 0.10171149885506563 0.5732217573221758 0.24315626934227755
+0.10510188215023453 0.5711297071129708 0.10510188215023453 0.5711297071129708 0.24342945620997855
+0.10849226544540343 0.5648535564853558 0.10849226544540343 0.5648535564853558 0.2443823264747211
+0.11188264874057234 0.5627615062761508 0.11188264874057234 0.5627615062761508 0.24487431037583043
+0.11527303203574124 0.5606694560669458 0.11527303203574124 0.5606694560669458 0.24555343603347699
+0.10849226544540343 0.5690376569037658 0.10849226544540343 0.5690376569037658 0.24375333376576644
+0.09493073226472787 0.5815899581589958 0.09493073226472787 0.5815899581589958 0.24165623658099597
+0.09832111555989675 0.5794979079497908 0.09832111555989675 0.5794979079497908 0.24206278915734747
+0.08475958237922132 0.5920502092050208 0.08475958237922132 0.5920502092050208 0.2380132499113425
+0.08814996567439015 0.5899581589958158 0.08814996567439015 0.5899581589958158 0.23905884485251394
+0.07458843249371476 0.6025104602510458 0.07458843249371476 0.6025104602510458 0.2312032451206599
+0.07458843249371476 0.6066945606694558 0.07458843249371476 0.6066945606694558 0.22869752366905674
+0.07797881578888362 0.6004184100418408 0.07797881578888362 0.6004184100418408 0.2331281552137209
+0.08136919908405248 0.5983263598326358 0.08136919908405248 0.5983263598326358 0.23480581469564857
+0.06780766590337706 0.6150627615062758 0.06780766590337706 0.6150627615062758 0.22090421957364573
+0.12883456521640838 0.5397489539748542 0.12883456521640838 0.5397489539748542 0.2545957454084642
+0.12883456521642633 0.5439330543932926 0.12883456521642633 0.5439330543932926 0.2534483018967481
+0.1322249485115454 0.5376569037656318 0.1322249485115454 0.5376569037656318 0.25719688226085796
+0.13561533180665222 0.5355648535564516 0.13561533180665222 0.5355648535564516 0.2600900023784931
+0.13900571510231854 0.5251046025108074 0.13900571510231854 0.5251046025108074 0.26591765157284475
+0.13900571510190107 0.5292887029293728 0.13900571510190107 0.5292887029293728 0.26465634379884845
+0.1390057151017402 0.5334728033473838 0.1390057151017402 0.5334728033473838 0.2632408762389525
+0.11866341533091 0.5543933054393312 0.11866341533091 0.5543933054393312 0.24728584005566753
+0.12205379862607903 0.5523012552301269 0.12205379862607903 0.5523012552301269 0.24861526236432382
+0.12544418192124895 0.5502092050209236 0.12544418192124895 0.5502092050209236 0.25025765237262537
+0.1288345652164213 0.54811715481172 0.1288345652164213 0.54811715481172 0.2522244975214274
+0.11866341533091007 0.5585774058577408 0.11866341533091007 0.5585774058577408 0.24646550615996812
+0.308483300391832 0.29325825570487984 0.3084833003918321 0.2932582557048798 0.17511957507997403
+0.3056860212515742 0.2958830123812412 0.3056860212515742 0.2958830123812412 0.17010367158478268
+0.30246261508775224 0.2976239807725897 0.30246261508775224 0.2976239807725897 0.16523351880839418
+0.29919493742177916 0.299193551851067 0.2991949374217792 0.29919355185106694 0.16055107872738736
+0.29599869719370175 0.3007061503289935 0.2959986971937018 0.30070615032899356 0.15616457160325495
+0.2860814663859262 0.3049740272077762 0.2860814663859262 0.30497402720777617 0.1440320494880167
+0.2927154507505983 0.3021627500329429 0.2927154507505983 0.3021627500329429 0.15190916031189264
+0.28940966740143553 0.3036341429021438 0.28940966740143553 0.3036341429021438 0.14783360521277153
+0.2862391895294927 0.30821566419905777 0.2862391895294927 0.3082156641990577 0.14252949512157723
+0.2830359152664967 0.3095058101277771 0.2830359152664967 0.30950581012777706 0.1392663520399352
+0.28002570822943806 0.31089326832805003 0.280025708229438 0.31089326832805003 0.13629435498396167
+0.27687279651326513 0.31283829248818346 0.27687279651326513 0.31283829248818346 0.1332673573753729
+0.2736294828161206 0.3147127379567823 0.2736294828161206 0.3147127379567823 0.13053857943081534
+0.26400768423044846 0.32001734018854877 0.26400768423044846 0.3200173401885488 0.12460538615224144
+0.267143823150944 0.31837275975694845 0.267143823150944 0.3183727597569485 0.1261700188907181
+0.2703864499916366 0.31654055132155445 0.2703864499916366 0.31654055132155445 0.1281747469915463
+0.26363756643255665 0.32288088631662876 0.26363756643255665 0.32288088631662876 0.12429633765387023
+0.26126995424074895 0.32493501626730203 0.261269954240749 0.3249350162673021 0.12361275444012455
+0.25829646249448335 0.32700650897198363 0.2582964624944833 0.32700650897198363 0.12308494692326079
+0.24304179431032488 0.3372704474600643 0.24304179431032488 0.3372704474600643 0.12642460926540158
+0.2552328473988693 0.3290204005137629 0.25523284739886926 0.3290204005137629 0.12294040506494941
+0.2521710604263112 0.3310893403113653 0.2521710604263112 0.3310893403113653 0.12322166585829715
+0.24911300876043618 0.3331559769976422 0.2491130087604362 0.3331559769976422 0.12390935688473027
+0.24606918145305956 0.3352059909366721 0.24606918145305956 0.3352059909366721 0.12497980779836572
+0.2233029718286601 0.35695895707264297 0.2233029718286601 0.35695895707264297 0.14981877496511706
+0.22620129282742818 0.35452291258684054 0.22620129282742818 0.35452291258684054 0.1459496798654724
+0.22907516780640969 0.35213023115657544 0.22907516780640966 0.35213023115657544 0.14233028129693423
+0.23194700171055851 0.3497737919596691 0.23194700171055851 0.3497737919596691 0.1389633574397234
+0.24352864430907048 0.3406573183424322 0.24352864430907048 0.3406573183424322 0.12842442361899642
+0.2406253210180956 0.34287218231052513 0.2406253210180956 0.34287218231052513 0.1305596353399637
+0.2377247353010965 0.3451395903532725 0.2377247353010965 0.3451395903532725 0.13304822808721417
+0.2348298067185612 0.347442647507927 0.2348298067185612 0.347442647507927 0.13585964523716942
+0.20625216718787232 0.37831575561162517 0.20625216718787232 0.37831575561162517 0.18345927519868988
+0.20875376672210683 0.3767709033846133 0.20875376672210683 0.3767709033846133 0.1802600374926698
+0.21011801875780636 0.3735072378155174 0.2101180187578064 0.3735072378155175 0.17563996779496893
+0.21298731802414161 0.3707464558160123 0.21298731802414164 0.3707464558160123 0.17079383021151615
+0.22405305023831548 0.3604603567143067 0.22405305023831548 0.3604603567143067 0.15326021933698142
+0.22120019869492025 0.36297794384148374 0.22120019869492022 0.36297794384148374 0.15747430901379686
+0.215778341561213 0.3683497316627692 0.21577834156121298 0.36834973166276924 0.16644329074751296
+0.21840908080326268 0.3655644356540322 0.21840908080326268 0.3655644356540322 0.16183688003566435
+0.19307711044196335 0.39537904753720576 0.19307711044196332 0.3953790475372058 0.2105970071160949
+0.19643610121794552 0.393316069166798 0.19643610121794552 0.393316069166798 0.20676651802758758
+0.19978737735595375 0.3871247121326772 0.19978737735595375 0.38712471213267724 0.1975553126856532
+0.1995840196717379 0.39136375342177954 0.1995840196717379 0.39136375342177954 0.2029919942613473
+0.20375187082463184 0.3851319264816788 0.2037518708246318 0.3851319264816788 0.1933090134775239
+0.2072047450229913 0.3821735795240023 0.20720474502299127 0.3821735795240024 0.18789878172333754
+0.17628884206523013 0.41422204062735873 0.17628884206523013 0.41422204062735873 0.23675898618577154
+0.1762882649978841 0.4184051054216266 0.1762882649978841 0.4184051054216266 0.24141968532930735
+0.1796606986408068 0.41212552448302703 0.1796606986408068 0.41212552448302703 0.2340722681534988
+0.18302141404548833 0.4100286138964193 0.18302141404548833 0.41002861389641937 0.23115557399411787
+0.18637102848923834 0.40375467566814643 0.18637102848923834 0.40375467566814643 0.22294188158472328
+0.18636695052300342 0.4079374660733919 0.18636695052300342 0.4079374660733919 0.22803088021998183
+0.18969521504016032 0.4016546790646253 0.18969521504016032 0.4016546790646253 0.21948728783700636
+0.1930039893259644 0.39953417776868233 0.1930039893259644 0.39953417776868233 0.21583335939333578
+0.16612866955816336 0.4330545379102222 0.16612866955816338 0.43305453791022225 0.2554753492483462
+0.16951850486257983 0.43096247114750047 0.16951850486257983 0.43096247114750047 0.2541783369326425
+0.1729066951001156 0.4246842697159636 0.1729066951001156 0.42468426971596357 0.2481509248607676
+0.17628769678199685 0.4225881603276163 0.17628769678199685 0.4225881603276163 0.24607605129313945
+0.17290651301487367 0.4288686033314131 0.17290651301487367 0.428868603331413 0.25259046578131317
+0.1661285650692588 0.4372386837316879 0.1661285650692588 0.4372386837316879 0.2594212190474901
+0.15934801487282457 0.4497907949792326 0.15934801487282457 0.44979079497923263 0.267289911781266
+0.16612839307424632 0.4414227448740562 0.16612839307424632 0.44142274487405614 0.26328394398987703
+0.1627383981679946 0.44769874477000987 0.1627383981679946 0.44769874477000987 0.2673184251298284
+0.16612823446744737 0.44560672991823824 0.16612823446744737 0.4456067299182383 0.2670403588691839
+0.159348014872715 0.45397489539779645 0.159348014872715 0.45397489539779645 0.2704035279709245
+0.14917686498645544 0.4769874477000499 0.14917686498645544 0.4769874477000499 0.2753447272863258
+0.155957631577312 0.46025104602574457 0.155957631577312 0.46025104602574457 0.2725073284779585
+0.15934801487249323 0.45815899581649266 0.15934801487249325 0.4581589958164926 0.2733544128640966
+0.15256724828183046 0.46652719665373 0.15256724828183046 0.46652719665372994 0.27362309753187036
+0.15595763157692769 0.4644351464445333 0.15595763157692769 0.4644351464445333 0.27500962136896573
+0.15256724828158805 0.4707112970722795 0.15256724828158805 0.4707112970722795 0.27566087253816157
+0.1525672482814118 0.4748953974910175 0.1525672482814118 0.4748953974910175 0.2774737010527914
+0.1457864816898591 0.49163179916252336 0.1457864816898591 0.49163179916252336 0.275655111785124
+0.14578648169146177 0.4958158995801601 0.14578648169146177 0.4958158995801601 0.2760418840195756
+0.14917686498568689 0.48117154811916246 0.14917686498568686 0.48117154811916246 0.2766822397190212
+0.14917686498421537 0.4853556485376791 0.14917686498421537 0.48535564853767904 0.2777713329856688
+0.14917686498312063 0.48953974895409796 0.14917686498312063 0.48953974895409796 0.2785996184192974
+0.14578648169303696 0.5000000000003836 0.14578648169303696 0.5000000000003836 0.27617174884465406
+0.14578648169260422 0.50418410042083 0.14578648169260422 0.50418410042083 0.2760431282279093
+0.14239609839594694 0.5104602510465265 0.14239609839594694 0.5104602510465265 0.2721344895618001
+0.14578648169111982 0.5083682008387383 0.14578648169111982 0.5083682008387383 0.2756575900477433
+0.14239609839636935 0.5146443514631094 0.14239609839636935 0.5146443514631094 0.27144132701860935
+0.14239609839744438 0.5188284518814527 0.14239609839744438 0.5188284518814527 0.270530167319238
+0.14239609839781375 0.523012552301204 0.14239609839781375 0.523012552301204 0.26941183016408327
+0.31272276765444984 0.28813199367581666 0.3127227676544498 0.28813199367581666 0.18310222063890078
+0.3122875806583677 0.2917912917631666 0.31228758065836765 0.2917912917631666 0.18086361350264182
+0.3252786090388861 0.2682470450515085 0.3252786090388861 0.2682470450515085 0.20608711784342296
+0.31690719817240903 0.27977232744788716 0.31690719817240903 0.27977232744788716 0.1918129323376088
+0.32459017226694625 0.2716655287180196 0.32459017226694625 0.2716655287180196 0.20461192225141156
+0.32030990328687886 0.2787744330978399 0.32030990328687886 0.2787744330978399 0.19692331130868015
+0.32407969524763797 0.2750127216968248 0.32407969524763797 0.2750127216968248 0.20328707380992042
+0.3229145089528827 0.27761603025745696 0.3229145089528827 0.27761603025745696 0.20094560463556674
+0.31651563925684867 0.2832828865985231 0.31651563925684867 0.2832828865985231 0.19018489319583806
+0.3161386662221235 0.2868514832206333 0.3161386662221235 0.2868514832206333 0.188356476273705
+0.33983111920483416 0.24918750546493032 0.33983111920483416 0.24918750546493032 0.22828958102884858
+0.3305989907456883 0.2603042756733659 0.3305989907456883 0.26030427567336595 0.21448785956674857
+0.3387761302239907 0.25257999475861487 0.3387761302239907 0.25257999475861487 0.2266127280741341
+0.33434984042790655 0.25900274512971355 0.3343498404279065 0.2590027451297136 0.21999083139370246
+0.33743523137442766 0.2561914577383611 0.3374352313744277 0.2561914577383611 0.22454717595032636
+0.33781278667814774 0.25948392387895747 0.33781278667814774 0.25948392387895747 0.22491575704994493
+0.3296235644752354 0.26378887639886983 0.3296235644752354 0.26378887639886983 0.2128327634208981
+0.32881559171555197 0.26730042417897876 0.32881559171555197 0.26730042417897876 0.21133800472587846
+0.35642224468463635 0.23095702532217943 0.35642224468463635 0.23095702532217946 0.25262430703289684
+0.345560233676287 0.241712921094973 0.345560233676287 0.24171292109497297 0.2368350059343731
+0.35512882314373034 0.2342053882210894 0.35512882314373034 0.2342053882210894 0.2504137355036376
+0.34914897324220157 0.24106232202211156 0.34914897324220157 0.24106232202211156 0.24171424813121042
+0.35390394699237177 0.23738416355968117 0.35390394699237177 0.23738416355968117 0.2483858202418893
+0.3526810588048147 0.24030908753095226 0.35268105880481476 0.24030908753095223 0.2464448753641165
+0.34450132679114215 0.2451906022034644 0.34450132679114215 0.24519060220346442 0.23504957283803987
+0.34346684066291266 0.2485305801006061 0.34346684066291266 0.2485305801006061 0.23339671922088448
+0.375044378310684 0.21355208239246956 0.375044378310684 0.21355208239246956 0.2769455492808639
+0.36284268845544426 0.22389340767835883 0.36284268845544426 0.22389340767835883 0.2618508281683339
+0.3734067746863495 0.21689400072151035 0.3734067746863495 0.21689400072151035 0.27466046589914445
+0.3665425330336636 0.22355026395302804 0.3665425330336636 0.22355026395302804 0.2660792975168467
+0.3717683413266961 0.22015376887125843 0.3717683413266961 0.22015376887125845 0.2723380536221591
+0.3702413191361208 0.22329898669778958 0.37024131913612074 0.22329898669778955 0.27012545766832474
+0.3614619565473994 0.22725024285520581 0.3614619565473994 0.22725024285520581 0.25947841554650036
+0.36010675814527526 0.23057087816421817 0.36010675814527526 0.23057087816421817 0.2572051078965536
+0.4058877900805625 0.18986563886660868 0.4058877900805626 0.18986563886660868 0.29210140282915625
+0.40382831638541294 0.19321274627404827 0.4038283163854129 0.19321274627404827 0.29299207799994287
+0.40164750395802934 0.19661309764264864 0.40164750395802934 0.19661309764264864 0.2933913093367695
+0.39942815418180083 0.19998863079345128 0.39942815418180083 0.19998863079345128 0.2933113528180496
+0.39728496602968977 0.20337170662012463 0.39728496602968977 0.20337170662012463 0.2928264616552963
+0.3951209107354373 0.20710904089050314 0.39512091073543726 0.20710904089050317 0.291977041631613
+0.3806683595709396 0.2100858083712266 0.38066835957093964 0.21008580837122662 0.2824235691834382
+0.38466491430678706 0.20987015735347134 0.38466491430678706 0.20987015735347134 0.28548205139584143
+0.38852586348325685 0.20974135540656563 0.38852586348325685 0.20974135540656566 0.2881198101434514
+0.39206879899313074 0.20972363810419406 0.3920687989931308 0.20972363810419406 0.29022110097757103
+0.39499252302162857 0.2105885532828765 0.39499252302162857 0.21058855328287648 0.29165627846021813
+0.37886236174018406 0.21341525668093475 0.37886236174018406 0.21341525668093472 0.28036167580150173
+0.4121772124000029 0.18643938739907373 0.4121772124000029 0.18643938739907373 0.2900292641699332
+0.41008035205268345 0.18986061183933045 0.4100803520526835 0.18986061183933045 0.29186171376720416
+0.41636258804407456 0.18638570637828317 0.4163625880440746 0.1863857063782832 0.2888082797774583
+0.44560669456064594 0.16612878146327814 0.445606694560646 0.16612878146327814 0.24505846995461608
+0.44351493982457374 0.16951869333280098 0.44351493982457374 0.16951869333280098 0.25148282193487637
+0.441424006011741 0.17290648998518887 0.441424006011741 0.17290648998518887 0.2575823454929296
+0.4393336125229301 0.17628882557750739 0.4393336125229301 0.17628882557750739 0.26330360932359964
+0.43724185733698007 0.17966128536728512 0.4372418573369801 0.17966128536728512 0.2686037575400826
+0.420499043901783 0.18633866140873231 0.420499043901783 0.18633866140873231 0.2870155883009997
+0.4246688671415622 0.1863230483376863 0.4246688671415622 0.1863230483376863 0.2846043637029409
+0.4309585014738415 0.18300794154526523 0.4309585014738415 0.18300794154526523 0.2776020622680923
+0.4351454772255183 0.1830181455354254 0.4351454772255183 0.1830181455354254 0.27345062981598595
+0.4288482638671984 0.1863302043910473 0.4288482638671984 0.1863302043910473 0.28155190998923724
+0.46652719665269704 0.15934801487294026 0.466527196652697 0.15934801487294026 0.1998175132780846
+0.4518828451882613 0.1627383981681092 0.4518828451882612 0.1627383981681092 0.23155418455153357
+0.4560669456066715 0.1627383981681092 0.4560669456066715 0.1627383981681092 0.2241179427543711
+0.4602510460250817 0.1627383981681092 0.46025104602508177 0.1627383981681092 0.2160670328951231
+0.46443514644349193 0.1627383981681092 0.46443514644349193 0.1627383981681092 0.2074113019923622
+0.44979079497905616 0.16612878146327814 0.4497907949790561 0.16612878146327814 0.23849290824022448
+0.48744769874474814 0.15256724828260237 0.4874476987447482 0.15256724828260237 0.14429633988154766
+0.47280334728031237 0.15595763157777132 0.47280334728031237 0.15595763157777132 0.18283408875113363
+0.4769874476987226 0.15595763157777132 0.47698744769872264 0.15595763157777132 0.17291085483685895
+0.4811715481171328 0.15595763157777132 0.4811715481171328 0.15595763157777132 0.16250801952996877
+0.485355648535543 0.15595763157777132 0.48535564853554297 0.15595763157777132 0.15165729376331394
+0.47071129707110726 0.15934801487294026 0.4707112970711073 0.15934801487294026 0.19046476417317218
+0.49372384937236347 0.14917686498743343 0.4937238493723635 0.14917686498743343 0.126244161000484
+0.4979079497907737 0.14917686498743343 0.4979079497907737 0.14917686498743343 0.1149576700759538
+0.5020920502091839 0.14917686498743343 0.5020920502091838 0.14917686498743343 0.1034370162109506
+0.49163179916315836 0.15256724828260237 0.4916317991631583 0.15256724828260237 0.13315190463356194
+0.5251046025104401 0.13222494851158872 0.5251046025104401 0.13222494851158872 0.046206770433241805
+0.5188284518828248 0.13561533180675767 0.5188284518828247 0.13561533180675767 0.060261589553910415
+0.523012552301235 0.13561533180675767 0.523012552301235 0.13561533180675767 0.050153569427868964
+0.5062761506275941 0.14917686498743343 0.5062761506275941 0.14917686498743343 0.09175549593125543
+0.5167364016736197 0.1390057151019266 0.5167364016736197 0.1390057151019266 0.06472218797340824
+0.5146443514644146 0.14239609839709555 0.5146443514644146 0.14239609839709555 0.0694592461244347
+0.5125523012552095 0.1457864816922645 0.5125523012552095 0.1457864816922645 0.07453915145498215
+0.5104602510460043 0.14917686498743343 0.5104602510460045 0.14917686498743343 0.08001354082433772
+0.5292887029288503 0.13222494851158872 0.5292887029288503 0.13222494851158872 0.037394905735241894
+0.5334728033472605 0.13222494851158872 0.5334728033472605 0.13222494851158872 0.03067311020870683
+0.5397489539748759 0.12883456521641978 0.5397489539748759 0.12883456521641978 0.026735475361812366
+0.5376569037656708 0.13222494851158872 0.5376569037656708 0.13222494851158872 0.02785862245886958
+0.5439330543932861 0.12883456521641978 0.5439330543932862 0.12883456521641978 0.030681886735058683
+0.5502092050209014 0.12544418192125084 0.5502092050209014 0.12544418192125084 0.040223266272134045
+0.5481171548116963 0.12883456521641978 0.5481171548116963 0.12883456521641978 0.03850608441218962
+0.5564853556485168 0.1220537986260819 0.5564853556485168 0.1220537986260819 0.05338283281861931
+0.5543933054393116 0.12544418192125084 0.5543933054393116 0.12544418192125084 0.050754709619629086
+0.5941422594142087 0.0813691990840546 0.5941422594142088 0.0813691990840546 0.15023810599589418
+0.5878661087865934 0.08475958237922354 0.5878661087865934 0.08475958237922354 0.1326686744126686
+0.5920502092050036 0.08475958237922354 0.5920502092050036 0.08475958237922354 0.1456225182290404
+0.5857740585773883 0.08814996567439248 0.5857740585773882 0.08814996567439248 0.12748368321355172
+0.5836820083681832 0.09154034896956142 0.5836820083681832 0.09154034896956142 0.1220601445965266
+0.5815899581589781 0.09493073226473037 0.5815899581589781 0.09493073226473037 0.11648718997486394
+0.5753138075313627 0.09832111555989931 0.5753138075313627 0.09832111555989931 0.09743013224809748
+0.5732217573221576 0.10171149885506825 0.5732217573221576 0.10171149885506825 0.09188197611605803
+0.5711297071129525 0.10510188215023719 0.5711297071129525 0.10510188215023719 0.08652625603395368
+0.5690376569037474 0.10849226544540613 0.5690376569037473 0.10849226544540613 0.08145321835159784
+0.5669456066945423 0.11188264874057507 0.5669456066945423 0.11188264874057507 0.07674054983405586
+0.5648535564853372 0.11527303203574402 0.5648535564853372 0.11527303203574402 0.07244663856136567
+0.5627615062761321 0.11866341533091296 0.5627615062761321 0.11866341533091296 0.06860391842528647
+0.560669456066927 0.1220537986260819 0.5606694560669271 0.1220537986260819 0.06521359643419189
+0.579497907949773 0.09832111555989931 0.579497907949773 0.09832111555989931 0.11086025947902207
+0.6046025104602343 0.07119804919854777 0.6046025104602343 0.07119804919854777 0.17273587916916955
+0.6087866108786445 0.07119804919854777 0.6087866108786445 0.07119804919854777 0.18386752983833665
+0.6025104602510292 0.07458843249371672 0.6025104602510291 0.07458843249371672 0.1699534351824056
+0.6004184100418241 0.07797881578888566 0.6004184100418241 0.07797881578888566 0.1666151805110213
+0.598326359832619 0.0813691990840546 0.598326359832619 0.0813691990840546 0.16275567611700956
+0.6297071129706956 0.04407498283719624 0.6297071129706956 0.04407498283719624 0.19106417402609976
+0.6276150627614905 0.04746536613236518 0.6276150627614906 0.04746536613236518 0.1928285920746522
+0.6255230125522854 0.050855749427534125 0.6255230125522854 0.050855749427534125 0.19438375328956822
+0.6234309623430803 0.054246132722703067 0.6234309623430803 0.054246132722703067 0.195630067539152
+0.6213389121338752 0.05763651601787201 0.6213389121338752 0.05763651601787201 0.19647951483393622
+0.61924686192467 0.06102689931304095 0.6192468619246699 0.06102689931304095 0.19685768733759765
+0.6171548117154649 0.06441728260820989 0.6171548117154649 0.06441728260820989 0.19670522325231055
+0.6150627615062598 0.06780766590337883 0.6150627615062598 0.06780766590337883 0.1959787413399393
+0.6129707112970547 0.07119804919854777 0.6129707112970547 0.07119804919854777 0.1946513696672054
+0.6359832635983109 0.0406845995420273 0.6359832635983108 0.0406845995420273 0.19591527977907205
+0.6338912133891058 0.04407498283719624 0.6338912133891058 0.04407498283719624 0.19809043567296258
+0.6422594142259263 0.03729421624685836 0.6422594142259263 0.03729421624685836 0.2000098970080246
+0.6401673640167211 0.0406845995420273 0.6401673640167211 0.0406845995420273 0.2023715641782348
+0.6485355648535416 0.03390383295168942 0.6485355648535416 0.03390383295168942 0.20371691428979186
+0.6464435146443365 0.03729421624685836 0.6464435146443365 0.03729421624685836 0.20603323941987792
+0.6548117154811569 0.030513449656520475 0.6548117154811569 0.030513449656520475 0.20740740744189115
+0.6527196652719518 0.03390383295168942 0.6527196652719517 0.03390383295168942 0.20945984875359444
+0.6610878661087722 0.027123066361351533 0.6610878661087723 0.027123066361351533 0.21141924487589134
+0.6589958158995671 0.030513449656520475 0.6589958158995671 0.030513449656520475 0.21302313211673743
+0.6694560669455927 0.02034229977101365 0.6694560669455926 0.02034229977101365 0.21561523076876998
+0.6673640167363876 0.02373268306618259 0.6673640167363876 0.02373268306618259 0.21602548822280002
+0.6652719665271825 0.027123066361351533 0.6652719665271825 0.027123066361351533 0.2170460963742227
+0.675732217573208 0.01695191647584471 0.675732217573208 0.01695191647584471 0.22167726164382848
+0.6736401673640029 0.02034229977101365 0.6736401673640029 0.02034229977101365 0.22141330349720043
+0.6820083682008233 0.013561533180675767 0.6820083682008233 0.013561533180675767 0.2286099105291198
+0.6799163179916182 0.01695191647584471 0.6799163179916182 0.01695191647584471 0.22767812227900455
+0.6882845188284387 0.010171149885506825 0.6882845188284387 0.010171149885506825 0.2363957236357633
+0.6861924686192336 0.013561533180675767 0.6861924686192334 0.013561533180675767 0.2348335983430203
+0.694560669456054 0.006780766590337883 0.6945606694560541 0.006780766590337883 0.24497544886602518
+0.6924686192468489 0.010171149885506825 0.6924686192468489 0.010171149885506825 0.24283324504745232
+0.6987447698744642 0.006780766590337883 0.6987447698744642 0.006780766590337883 0.2515966160652236
+0.006780766590337709 0.7029288702928858 0.006780766590337709 0.7029288702928858 0.15350125685169144
+0.006780766590337709 0.7071129707112958 0.006780766590337709 0.7071129707112958 0.15237722032844817
+0.01017114988550656 0.6966527196652708 0.01017114988550656 0.6966527196652708 0.15568239815380136
+0.01017114988550656 0.7008368200836808 0.01017114988550656 0.7008368200836808 0.15453090455049298
+0.013561533180675408 0.6903765690376558 0.013561533180675408 0.6903765690376558 0.1580611822985805
+0.013561533180675408 0.6945606694560658 0.013561533180675408 0.6945606694560658 0.15682953106500377
+0.016951916475844264 0.6841004184100408 0.016951916475844264 0.6841004184100408 0.16067958168584126
+0.016951916475844264 0.6882845188284508 0.016951916475844264 0.6882845188284508 0.1593133421397764
+0.02034229977101312 0.6778242677824258 0.02034229977101312 0.6778242677824258 0.163596289008191
+0.02034229977101312 0.6820083682008358 0.02034229977101312 0.6820083682008358 0.1620423231407113
+0.02373268306618197 0.6715481171548108 0.02373268306618197 0.6715481171548108 0.16688123112028633
+0.02373268306618197 0.6757322175732208 0.02373268306618197 0.6757322175732208 0.1650924274815665
+0.027123066361350822 0.6694560669456058 0.027123066361350822 0.6694560669456058 0.16854601166678151
+0.030513449656519673 0.6631799163179908 0.030513449656519673 0.6631799163179908 0.17247788286012608
+0.030513449656519673 0.6673640167364008 0.030513449656519673 0.6673640167364008 0.17028405729569404
+0.033903832951688535 0.6569037656903758 0.033903832951688535 0.6569037656903758 0.17693952734591936
+0.033903832951688535 0.6610878661087858 0.033903832951688535 0.6610878661087858 0.17444239434590914
+0.03729421624685738 0.6506276150627608 0.03729421624685738 0.6506276150627608 0.1819447771734173
+0.03729421624685738 0.6548117154811708 0.03729421624685738 0.6548117154811708 0.17916101155421085
+0.040684599542026224 0.6443514644351458 0.040684599542026224 0.6443514644351458 0.18746004180054976
+0.040684599542026224 0.6485355648535558 0.040684599542026224 0.6485355648535558 0.18443287955352541
+0.0440749828371951 0.6380753138075308 0.0440749828371951 0.6380753138075308 0.19340121273953145
+0.0440749828371951 0.6422594142259408 0.0440749828371951 0.6422594142259408 0.19019789870935375
+0.04746536613236394 0.6317991631799158 0.04746536613236394 0.6317991631799158 0.19963777476865688
+0.04746536613236394 0.6359832635983258 0.04746536613236394 0.6359832635983258 0.1963440640015026
+0.05085574942753279 0.6297071129707108 0.05085574942753279 0.6297071129707108 0.20271582185640866
+0.05424613272270165 0.6276150627615058 0.054246132722701644 0.6276150627615058 0.20580793445004839
+0.05763651601787049 0.6255230125523008 0.05763651601787049 0.6255230125523008 0.20888235459827645
+0.06102689931303934 0.6234309623430958 0.06102689931303934 0.6234309623430958 0.21190616474009868
+0.06441728260820821 0.6213389121338908 0.06441728260820821 0.6213389121338908 0.21484630305002392
+0.06780766590337706 0.6192468619246858 0.06780766590337706 0.6192468619246858 0.21767064372181455
+0.0711980491985459 0.6129707112970708 0.0711980491985459 0.6129707112970708 0.22350487346222994
+0.07458843249371476 0.6108786610878658 0.07458843249371476 0.6108786610878658 0.22591223248834358
+0.08475958237922132 0.5962343096234308 0.08475958237922132 0.5962343096234308 0.23623622471127428
+0.09154034896955902 0.5878661087866108 0.09154034896955902 0.5878661087866108 0.2398901284608184
+0.09493073226472787 0.5857740585774058 0.09493073226472787 0.5857740585774058 0.24053547637119085
+0.10171149885506564 0.5774058577405858 0.10171149885506563 0.5774058577405858 0.24238580940599028
+0.10510188215023453 0.5753138075313808 0.10510188215023453 0.5753138075313808 0.2426757760668137
+0.10849226544540343 0.5732217573221758 0.10849226544540343 0.5732217573221758 0.2429861578251347
+0.11188264874057234 0.5669456066945608 0.11188264874057234 0.5669456066945608 0.2441829753568345
+0.11527303203574124 0.5648535564853558 0.11527303203574124 0.5648535564853558 0.2447712240869742
+0.11866341533091013 0.5627615062761508 0.11866341533091011 0.5627615062761508 0.24556638048562232
+0.11188264874057234 0.5711297071129708 0.11188264874057234 0.5711297071129708 0.24337147071823187
+0.09832111555989675 0.5836820083682008 0.09832111555989675 0.5836820083682008 0.24103058374669376
+0.10171149885506564 0.5815899581589958 0.10171149885506563 0.5815899581589958 0.24141760086393904
+0.08814996567439015 0.5941422594142258 0.08814996567439015 0.5941422594142258 0.23742726628145716
+0.09154034896955902 0.5920502092050208 0.09154034896955902 0.5920502092050208 0.23839482345201315
+0.07797881578888362 0.6046025104602508 0.07797881578888362 0.6046025104602508 0.2307617512249622
+0.07797881578888362 0.6087866108786608 0.07797881578888362 0.6087866108786608 0.22810589653887092
+0.08136919908405248 0.6025104602510458 0.08136919908405248 0.6025104602510458 0.23258639817170249
+0.08475958237922132 0.6004184100418408 0.08475958237922132 0.6004184100418408 0.2341673476561024
+0.0711980491985459 0.6171548117154808 0.0711980491985459 0.6171548117154808 0.22034909832495594
+0.13222494851159491 0.541841004184059 0.13222494851159491 0.541841004184059 0.25590056844309067
+0.13222494851159797 0.5460251046025104 0.13222494851159797 0.5460251046025104 0.25451505225207893
+0.13561533180674423 0.5397489539748053 0.13561533180674423 0.5397489539748053 0.25865611254963633
+0.13900571510185003 0.5376569037655539 0.13900571510185003 0.537656903765554 0.2616855107122378
+0.14239609839732578 0.5271966527204284 0.14239609839732578 0.5271966527204284 0.26809917893920704
+0.1423960983968686 0.5313807531385087 0.1423960983968686 0.5313807531385087 0.2666067015455289
+0.1423960983968913 0.53556485355638 0.1423960983968913 0.5355648535563801 0.26495003096251385
+0.1220537986260788 0.556485355648536 0.1220537986260788 0.556485355648536 0.24764845216443218
+0.12544418192124748 0.5543933054393316 0.12544418192124748 0.5543933054393316 0.24913048054860584
+0.1288345652164165 0.552301255230129 0.12883456521641648 0.552301255230129 0.2509286847863353
+0.13222494851158745 0.5502092050209284 0.13222494851158742 0.5502092050209284 0.253048239011683
+0.12205379862607901 0.5606694560669458 0.12205379862607901 0.5606694560669458 0.246609975254807
+0.3120500459545592 0.2957425502390156 0.3120500459545592 0.2957425502390156 0.1785256291745334
+0.3088739969902136 0.29755201812960735 0.3088739969902136 0.29755201812960735 0.17327684852212769
+0.3056547782706687 0.29942352663545546 0.3056547782706687 0.29942352663545546 0.16809652670705877
+0.3023988046620873 0.3011558358185951 0.3023988046620873 0.3011558358185951 0.1631392209986342
+0.2991429380877449 0.3027599836405988 0.2991429380877449 0.3027599836405988 0.15845235104997132
+0.29585910533957754 0.3043147032075409 0.29585910533957754 0.3043147032075409 0.15398283048234937
+0.28945107437400885 0.30703387886809785 0.28945107437400885 0.3070338788680979 0.1461154196182107
+0.2925435699078443 0.3058169748362974 0.2925435699078443 0.3058169748362974 0.14974981640451823
+0.28868409550578666 0.3097830808664133 0.28868409550578666 0.3097830808664133 0.1438592545959181
+0.2863190321114458 0.31137389390998776 0.28631903211144577 0.31137389390998776 0.1410221195081447
+0.28316356539120857 0.3129477739797435 0.28316356539120857 0.3129477739797435 0.13774402474574163
+0.28006995570903465 0.3146449245502495 0.28006995570903465 0.31464492455024956 0.13474783161863882
+0.2769199271001033 0.3164497177827312 0.2769199271001033 0.3164497177827312 0.1319929091165771
+0.27371993418582397 0.318252755170543 0.273719934185824 0.318252755170543 0.12955284675257006
+0.2670680993983264 0.3222464339861667 0.2670680993983264 0.32224643398616676 0.1256281314593136
+0.27047032979737484 0.3200792282431975 0.2704703297973748 0.3200792282431975 0.12745333706416692
+0.2684173426224644 0.3252027318262666 0.2684173426224644 0.3252027318262666 0.12568751894012714
+0.26506896534554586 0.32584730475266704 0.26506896534554586 0.32584730475266704 0.12465762977109954
+0.26192250168151154 0.3281870834112431 0.2619225016815116 0.3281870834112431 0.12391296336289247
+0.25871410745430967 0.33045340680261115 0.2587141074543097 0.3304534068026111 0.12365654794914484
+0.24652656901737385 0.3386254730413988 0.24652656901737388 0.33862547304139884 0.12674675811030037
+0.25562905661752355 0.33255247212829986 0.2556290566175235 0.3325524721282998 0.12384537418506747
+0.25256482900814065 0.3346279954316478 0.25256482900814065 0.3346279954316478 0.12444805355130016
+0.2495152144415636 0.3366750927358902 0.24951521444156358 0.3366750927358902 0.12544056923796065
+0.2468380400144694 0.3417238620090143 0.2468380400144694 0.34172386200901433 0.1284213265173527
+0.22690049992533634 0.3580182961267176 0.22690049992533634 0.3580182961267176 0.14927399665733262
+0.2297829157367629 0.35562405950011877 0.22978291573676293 0.35562405950011877 0.14549709286851817
+0.23265506182272458 0.3532834118673694 0.23265506182272458 0.3532834118673694 0.1419758094479461
+0.2355309993083865 0.3509592200122476 0.2355309993083865 0.3509592200122476 0.13868991676213774
+0.24412310731763198 0.3440692933984917 0.24412310731763198 0.3440692933984917 0.13052759710456027
+0.24128487849527133 0.3463561651083682 0.24128487849527133 0.3463561651083682 0.13293813763329995
+0.23841238434217657 0.3486441276548346 0.23841238434217657 0.3486441276548346 0.13566140068796909
+0.2093919463928196 0.37946460076271155 0.20939194639281958 0.37946460076271155 0.18335915292397376
+0.2117178414886084 0.3770044405237741 0.21171784148860837 0.3770044405237741 0.17909139128803986
+0.21406899888352324 0.3742405414310377 0.21406899888352324 0.3742405414310377 0.17450159747447017
+0.22768830720074582 0.3614363451980486 0.22768830720074582 0.3614363451980486 0.15255987411471195
+0.21671421002813307 0.37165318544151016 0.2167142100281331 0.37165318544151016 0.1699621021144692
+0.22489753660945497 0.363912263665912 0.22489753660945497 0.363912263665912 0.15668179454729583
+0.2221124856365069 0.36644089160409277 0.2221124856365069 0.3664408916040927 0.16097905866109444
+0.21933483345196325 0.36904406741028056 0.21933483345196328 0.36904406741028056 0.16545845763325362
+0.19637877551755512 0.3973940231498397 0.19637877551755512 0.3973940231498397 0.21197677199589096
+0.20004008145056873 0.39532355708674904 0.20004008145056873 0.39532355708674904 0.2079904714284513
+0.20275679319312429 0.38920043240951013 0.20275679319312426 0.38920043240951013 0.1989005247841937
+0.20245662403209214 0.392570404373443 0.20245662403209214 0.392570404373443 0.20333983984585063
+0.21032883124481966 0.38189622884454244 0.21032883124481966 0.38189622884454244 0.18597693865130532
+0.20572926745183812 0.3882353742957134 0.20572926745183812 0.3882353742957134 0.19630321124596864
+0.2075287799069332 0.38581969112226033 0.2075287799069332 0.3858196911222604 0.192408624695702
+0.2097472525369103 0.38407153642607195 0.20974725253691026 0.38407153642607195 0.18906378216102696
+0.179659320524416 0.4163071630064268 0.179659320524416 0.4163071630064268 0.23889875107617756
+0.17965789609305582 0.4204890605011928 0.17965789609305582 0.4204890605011928 0.24373035008499436
+0.18301736093012014 0.4142090257844113 0.18301736093012014 0.4142090257844114 0.23613414313830658
+0.1863632299274529 0.4121155486424551 0.1863632299274529 0.4121155486424551 0.23314558900931173
+0.1896916060521281 0.40584912283926017 0.1896916060521281 0.40584912283926017 0.22471124358759706
+0.18969660112500497 0.4100368360960966 0.18969660112500497 0.4100368360960966 0.22996285256606172
+0.19297811201699436 0.40374267280422965 0.19297811201699436 0.40374267280422965 0.2211864313776746
+0.1961622153654799 0.4015581179194644 0.19616221536547987 0.40155811791946444 0.217416413949126
+0.16951806460073696 0.4351470459923121 0.16951806460073696 0.4351470459923121 0.2583529176298272
+0.17290577972286883 0.4330537630124293 0.17290577972286883 0.4330537630124293 0.2569834551249121
+0.17628756056809372 0.42677146933873006 0.17628756056809372 0.42677146933873006 0.25071265342118526
+0.17965698135911903 0.424672372878329 0.17965698135911903 0.424672372878329 0.24855276133210688
+0.1762875819341587 0.430956247778353 0.1762875819341587 0.430956247778353 0.2553118313120731
+0.16951735570160423 0.43933151709481755 0.16951735570160423 0.4393315170948176 0.2624509603434814
+0.16273839816790303 0.45188284518853344 0.16273839816790303 0.45188284518853344 0.27069044523546054
+0.16951633965471738 0.4435154931373435 0.16951633965471738 0.4435154931373435 0.2664482986443017
+0.1661281552649221 0.44979063931142566 0.1661281552649221 0.44979063931142566 0.2706653695032016
+0.16951537932624425 0.44769908866193836 0.16951537932624425 0.44769908866193836 0.27031933134305364
+0.16273839816774324 0.45606694560717537 0.16273839816774324 0.45606694560717537 0.27390149227496363
+0.15256724828089216 0.47907949791020044 0.15256724828089216 0.4790794979102005 0.2790427767561343
+0.15934801487207076 0.46234309623533426 0.15934801487207076 0.46234309623533426 0.27611792486214964
+0.16273839816738864 0.46025104602604466 0.16273839816738864 0.46025104602604466 0.276925628743115
+0.15595763157650613 0.46861924686321704 0.15595763157650613 0.46861924686321704 0.277302764301074
+0.15934801487146563 0.46652719665426085 0.15934801487146563 0.46652719665426085 0.27866959397773416
+0.1559576315762338 0.4728033472818929 0.1559576315762338 0.4728033472818929 0.2793646957339084
+0.15595763157584266 0.4769874477011939 0.15595763157584266 0.4769874477011939 0.2811747609157483
+0.14917686498500185 0.49372384937046937 0.14917686498500185 0.49372384937046937 0.27915749961818515
+0.14917686498765542 0.49790794978979186 0.14917686498765545 0.49790794978979186 0.27943843317508316
+0.1525672482793579 0.48326359832943105 0.1525672482793579 0.48326359832943105 0.280351278966984
+0.15256724827702495 0.48744769874750804 0.15256724827702495 0.4874476987475081 0.28138481279906974
+0.1525672482778431 0.49163179916212835 0.1525672482778431 0.49163179916212835 0.282131786558583
+0.14917686498852653 0.502092050211283 0.14917686498852653 0.502092050211283 0.2794391017957442
+0.1491768649868847 0.5062761506311086 0.14917686498688473 0.5062761506311086 0.2791594995442696
+0.14578648169077413 0.5125523012544785 0.14578648169077413 0.5125523012544785 0.2750198029638726
+0.1491768649853108 0.510460251046903 0.1491768649853108 0.510460251046903 0.2786029307539251
+0.14578648169205552 0.5167364016714099 0.14578648169205552 0.5167364016714099 0.2741374024874825
+0.14578648169320452 0.520920502091029 0.14578648169320452 0.520920502091029 0.27302077027312915
+0.1457864816929855 0.5251046025112117 0.1457864816929855 0.5251046025112117 0.27168273054007414
+0.31576719589729063 0.2905078509393479 0.3157671958972906 0.2905078509393479 0.18627624892339864
+0.3154437953557503 0.294264325832683 0.3154437953557503 0.2942643258326831 0.18398386234575104
+0.3280709968058819 0.27076883596203294 0.3280709968058819 0.2707688359620329 0.2098446328703731
+0.3198817998443006 0.2819851532307546 0.3198817998443006 0.2819851532307546 0.19540210080120576
+0.3273368688313398 0.2743202458222815 0.3273368688313398 0.2743202458222815 0.20823355887862346
+0.32321193032915635 0.2805342266029512 0.32321193032915635 0.2805342266029512 0.2006584114041199
+0.3262106035639427 0.2781181689179994 0.32621060356394277 0.2781181689179994 0.20582478439081295
+0.31951054913150195 0.28550142485195756 0.31951054913150195 0.28550142485195756 0.19368550098028411
+0.31916720480539423 0.2891530689256887 0.31916720480539423 0.2891530689256887 0.19174056784414598
+0.3424190946780683 0.25189970779641796 0.3424190946780683 0.25189970779641796 0.23179352010964613
+0.3331412650236286 0.26265995892926475 0.3331412650236287 0.2626599589292647 0.218029976428773
+0.3413515603299535 0.2552598525072369 0.3413515603299535 0.2552598525072369 0.2301962146153851
+0.33643333958165816 0.2620757813483802 0.33643333958165816 0.2620757813483802 0.22287198828912694
+0.340492020181664 0.25834921851316067 0.3404920201816641 0.25834921851316067 0.22892427407709207
+0.3398368212392943 0.2616014865441337 0.3398368212392943 0.2616014865441337 0.22783008589383122
+0.33230147630719753 0.2663661892289563 0.3323014763071975 0.2663661892289562 0.21654362595249735
+0.3315744053068048 0.26985233151358956 0.3315744053068048 0.2698523315135896 0.21515181546285542
+0.35877378333790577 0.23386149542960266 0.3587737833379058 0.2338614954296027 0.2550407421369038
+0.3480912971434462 0.24451230592578743 0.3480912971434462 0.24451230592578743 0.24000654550474562
+0.3574655785345225 0.23710835485147286 0.3574655785345225 0.23710835485147283 0.252998672770234
+0.3516301365541271 0.2437614762848378 0.35163013655412717 0.24376147628483782 0.24485019921474108
+0.3561418768683229 0.24032423664471603 0.3561418768683229 0.24032423664471603 0.2510228571687483
+0.3546645635469923 0.2428201911426374 0.3546645635469923 0.2428201911426374 0.24887971118656488
+0.3471105507852387 0.2478437293139749 0.3471105507852387 0.2478437293139749 0.23848672037330879
+0.34605654812030084 0.2512303329001276 0.34605654812030084 0.2512303329001276 0.2369481874893745
+0.377208034300059 0.21669011188928464 0.377208034300059 0.21669011188928464 0.278284999076904
+0.36516129890449217 0.22687435102766595 0.36516129890449217 0.22687435102766598 0.2638385418131341
+0.3755966049053588 0.21994476040494046 0.3755966049053588 0.21994476040494046 0.27616598635695283
+0.3688618102276519 0.22655490391809416 0.3688618102276519 0.22655490391809416 0.2680399507305688
+0.3740458831851236 0.22313918574911806 0.3740458831851236 0.22313918574911806 0.27408002599324227
+0.37258107142011737 0.22629835970382373 0.37258107142011737 0.22629835970382373 0.27208109538880115
+0.36379503314985445 0.2301898075169959 0.36379503314985445 0.2301898075169959 0.2616732155122963
+0.36245000419624523 0.2334981846499403 0.36245000419624523 0.2334981846499403 0.25960526125674915
+0.40803923652747026 0.19333273648795518 0.40803923652747026 0.19333273648795515 0.29321332642970305
+0.4058961567258379 0.19663454722791365 0.4058961567258379 0.19663454722791365 0.29396394237600076
+0.4035150789768825 0.20001200499991587 0.4035150789768825 0.20001200499991587 0.29425705325306234
+0.40133468759839236 0.2032888564675554 0.40133468759839236 0.20328885646755543 0.29411235937643787
+0.39934965522238675 0.20655001077830015 0.39934965522238675 0.20655001077830012 0.2936456903613633
+0.3978277959274349 0.2099084919972339 0.39782779592743495 0.2099084919972339 0.2930806909673093
+0.38274483247648877 0.21321486106352786 0.38274483247648877 0.21321486106352786 0.2835807358304263
+0.3865134649375051 0.21299035772151492 0.3865134649375051 0.2129903577215149 0.28642789956080156
+0.3901866394603823 0.21285778301369798 0.3901866394603823 0.21285778301369798 0.28889495964621265
+0.39356906906342976 0.21281512285111762 0.39356906906342976 0.21281512285111762 0.2908824766340947
+0.39628134427289874 0.21244247061331228 0.39628134427289874 0.21244247061331228 0.2922146096051098
+0.3810114459362844 0.21651358745914603 0.3810114459362844 0.21651358745914603 0.28165849872032284
+0.41419714375225625 0.18976561298360925 0.4141971437522562 0.18976561298360925 0.291042024225502
+0.41206129010001935 0.19331321863745232 0.4120612901000193 0.19331321863745232 0.2928045538251865
+0.41834963212357995 0.18965689102835137 0.41834963212357995 0.18965689102835137 0.28963520541814813
+0.4476991879790077 0.16951859835569216 0.4476991879790077 0.16951859835569216 0.24520155363628668
+0.4456088634344962 0.17290583483829372 0.4456088634344962 0.17290583483829372 0.2516161717438918
+0.44352003655587796 0.17628728815789887 0.44352003655587796 0.17628728815789887 0.2576802352314314
+0.44143130864955377 0.17966051734667995 0.44143130864955377 0.17966051734667995 0.26334914718595676
+0.4393394329861436 0.18302315917773274 0.4393394329861436 0.18302315917773274 0.2685904596083133
+0.42252684716331596 0.1896170329233763 0.42252684716331596 0.1896170329233763 0.2876353384041263
+0.42671544293771 0.18961593550626835 0.4267154429377101 0.18961593550626835 0.2850029810654386
+0.4330384946250157 0.1863508227211471 0.4330384946250157 0.1863508227211471 0.27782305272262725
+0.4372389467563574 0.18636847521427855 0.4372389467563574 0.18636847521427855 0.2733812198155135
+0.4309138921907862 0.18964709696481083 0.4309138921907862 0.18964709696481083 0.2817078729733838
+0.46861924686190215 0.1627383981681092 0.4686192468619021 0.1627383981681092 0.19816499261629228
+0.4539748953974664 0.16612878146327814 0.45397489539746644 0.16612878146327814 0.2312855381476905
+0.4581589958158766 0.16612878146327814 0.45815899581587655 0.16612878146327814 0.22343951557910066
+0.4623431056534983 0.16612877463957368 0.4623431056534983 0.16612877463957368 0.21496229993991414
+0.46652726099222114 0.16612873474184223 0.46652726099222114 0.16612873474184223 0.20586569632579255
+0.4518833166580753 0.16951838330939192 0.4518833166580753 0.16951838330939192 0.23825946127886796
+0.48953974895395325 0.15595763157777132 0.48953974895395325 0.15595763157777132 0.14039574169809896
+0.47489540726138174 0.15934800851241648 0.47489540726138174 0.15934800851241648 0.18057239670034533
+0.4790794979079277 0.15934801487294026 0.47907949790792775 0.15934801487294026 0.17016575524439928
+0.4832635983263379 0.15934801487294026 0.48326359832633786 0.15934801487294026 0.1592747870678408
+0.48744769874474814 0.15934801487294026 0.4874476987447482 0.15934801487294026 0.14793477755725737
+0.47280341387418995 0.1627383543056281 0.47280341387418995 0.1627383543056281 0.18834660798573186
+0.4958158995815686 0.15256724828260237 0.49581589958156863 0.15256724828260237 0.1216792097391133
+0.4999999999999788 0.15256724828260237 0.49999999999997874 0.15256724828260237 0.10993289150312797
+0.504184100418389 0.15256724828260237 0.504184100418389 0.15256724828260237 0.09798145063610436
+0.49372384937236347 0.15595763157777132 0.4937238493723635 0.15595763157777132 0.12876683178408022
+0.5271966527196452 0.13561533180675767 0.5271966527196453 0.13561533180675767 0.04087848961897498
+0.5209205020920299 0.1390057151019266 0.5209205020920299 0.1390057151019266 0.054261313178597885
+0.5251046025104401 0.1390057151019266 0.5251046025104401 0.1390057151019266 0.044499477158800434
+0.5083682008367992 0.15256724828260237 0.5083682008367992 0.15256724828260237 0.0859160592870535
+0.5188284518828248 0.14239609839709555 0.5188284518828247 0.14239609839709555 0.05861486287808121
+0.5167364016736197 0.1457864816922645 0.5167364016736197 0.1457864816922645 0.06329286325726556
+0.5146443514644146 0.14917686498743343 0.5146443514644146 0.14917686498743343 0.0683612364728249
+0.5125523012552095 0.15256724828260237 0.5125523012552095 0.15256724828260237 0.07386825976358947
+0.5313807531380554 0.13561533180675767 0.5313807531380554 0.13561533180675767 0.03336358159851813
+0.5355648535564657 0.13561533180675767 0.5355648535564655 0.13561533180675767 0.029237299376452874
+0.541841004184081 0.13222494851158872 0.541841004184081 0.13222494851158872 0.030277747610813085
+0.5397489539748759 0.13561533180675767 0.5397489539748759 0.13561533180675767 0.030132232022251654
+0.5460251046024912 0.13222494851158872 0.5460251046024912 0.13222494851158872 0.037071365210063
+0.5523012552301065 0.12883456521641978 0.5523012552301064 0.12883456521641978 0.048482472739330866
+0.5502092050209014 0.13222494851158872 0.5502092050209014 0.13222494851158872 0.04646759718895585
+0.5585774058577219 0.12544418192125084 0.5585774058577219 0.12544418192125084 0.062243301024156934
+0.5564853556485168 0.12883456521641978 0.5564853556485168 0.12883456521641978 0.05962886747221565
+0.5962343096234138 0.08475958237922354 0.5962343096234138 0.08475958237922354 0.1584240952224165
+0.5899581589957985 0.08814996567439248 0.5899581589957985 0.08814996567439248 0.1406418340381682
+0.5941422594142087 0.08814996567439248 0.5941422594142088 0.08814996567439248 0.15368315560055879
+0.5878661087865934 0.09154034896956142 0.5878661087865934 0.09154034896956142 0.13537400445687664
+0.5857740585773883 0.09493073226473037 0.5857740585773882 0.09493073226473037 0.12990653451413936
+0.5836820083681832 0.09832111555989931 0.5836820083681832 0.09832111555989931 0.12433420055267348
+0.5774058577405679 0.10171149885506825 0.577405857740568 0.10171149885506825 0.1052780993938497
+0.5753138075313627 0.10510188215023719 0.5753138075313627 0.10510188215023719 0.09983896482731379
+0.5732217573221576 0.10849226544540613 0.5732217573221576 0.10849226544540613 0.0946359069343039
+0.5711297071129525 0.11188264874057507 0.5711297071129525 0.11188264874057507 0.08975115076869887
+0.5690376569037474 0.11527303203574402 0.5690376569037473 0.11527303203574402 0.08524981893457155
+0.5669456066945423 0.11866341533091296 0.5669456066945423 0.11866341533091296 0.08117362193866122
+0.5648535564853372 0.1220537986260819 0.5648535564853372 0.1220537986260819 0.0775355279337374
+0.5627615062761321 0.12544418192125084 0.5627615062761321 0.12544418192125084 0.07431665209293341
+0.5815899581589781 0.10171149885506825 0.5815899581589781 0.10171149885506825 0.11875616981897029
+0.6066945606694394 0.07458843249371672 0.6066945606694394 0.07458843249371672 0.1814978536488695
+0.6108786610878496 0.07458843249371672 0.6108786610878497 0.07458843249371672 0.19271294110346734
+0.6046025104602343 0.07797881578888566 0.6046025104602343 0.07797881578888566 0.17854573365534374
+0.6025104602510292 0.0813691990840546 0.6025104602510291 0.0813691990840546 0.1750400299218735
+0.6004184100418241 0.08475958237922354 0.6004184100418241 0.08475958237922354 0.17102479219249464
+0.6317991631799007 0.04746536613236518 0.6317991631799007 0.04746536613236518 0.20020059698244538
+0.6297071129706956 0.050855749427534125 0.6297071129706956 0.050855749427534125 0.202133963844884
+0.6276150627614905 0.054246132722703067 0.6276150627614906 0.054246132722703067 0.20378650217200325
+0.6255230125522854 0.05763651601787201 0.6255230125522854 0.05763651601787201 0.20506488783306143
+0.6234309623430803 0.06102689931304095 0.6234309623430803 0.06102689931304095 0.20588873697625562
+0.6213389121338752 0.06441728260820989 0.6213389121338752 0.06441728260820989 0.20619222292784092
+0.61924686192467 0.06780766590337883 0.6192468619246699 0.06780766590337883 0.20592518390621742
+0.6171548117154649 0.07119804919854777 0.6171548117154649 0.07119804919854777 0.20505381382653717
+0.6150627615062598 0.07458843249371672 0.6150627615062598 0.07458843249371672 0.2035610092415733
+0.638075313807516 0.04407498283719624 0.638075313807516 0.04407498283719624 0.20482361091431503
+0.6359832635983109 0.04746536613236518 0.6359832635983108 0.04746536613236518 0.20724899201938304
+0.6443514644351314 0.0406845995420273 0.6443514644351315 0.0406845995420273 0.20859415971922954
+0.6422594142259263 0.04407498283719624 0.6422594142259263 0.04407498283719624 0.21128576076553793
+0.6506276150627467 0.03729421624685836 0.6506276150627467 0.03729421624685836 0.21189658412299917
+0.6485355648535416 0.0406845995420273 0.6485355648535416 0.0406845995420273 0.2146156860366646
+0.656903765690362 0.03390383295168942 0.656903765690362 0.03390383295168942 0.21512421491388434
+0.6548117154811569 0.03729421624685836 0.6548117154811569 0.03729421624685836 0.2176404163829697
+0.6631799163179773 0.030513449656520475 0.6631799163179773 0.030513449656520475 0.21864144859983967
+0.6610878661087722 0.03390383295168942 0.6610878661087723 0.03390383295168942 0.22075449934262484
+0.6715481171547978 0.02373268306618259 0.6715481171547978 0.02373268306618259 0.22177353265828972
+0.6694560669455927 0.027123066361351533 0.6694560669455926 0.027123066361351533 0.22274809803586756
+0.6673640167363876 0.030513449656520475 0.6673640167363876 0.030513449656520475 0.22430620653351427
+0.6778242677824131 0.02034229977101365 0.6778242677824132 0.02034229977101365 0.227355741309935
+0.675732217573208 0.02373268306618259 0.675732217573208 0.02373268306618259 0.22765343791148537
+0.6841004184100284 0.01695191647584471 0.6841004184100284 0.01695191647584471 0.2338490195095726
+0.6820083682008233 0.02034229977101365 0.6820083682008233 0.02034229977101365 0.23346597198200295
+0.6903765690376438 0.013561533180675767 0.6903765690376438 0.013561533180675767 0.24123161549783492
+0.6882845188284387 0.01695191647584471 0.6882845188284387 0.01695191647584471 0.2402008344388569
+0.6966527196652591 0.010171149885506825 0.6966527196652591 0.010171149885506825 0.24942938439475446
+0.694560669456054 0.013561533180675767 0.6945606694560541 0.013561533180675767 0.24780151967566313
+0.7029288702928744 0.006780766590337883 0.7029288702928743 0.006780766590337883 0.2583432411003983
+0.7008368200836693 0.010171149885506825 0.7008368200836693 0.010171149885506825 0.25616873048274424
+0.7071129707112846 0.006780766590337883 0.7071129707112846 0.006780766590337883 0.2651880819534029
+0.006780766590337709 0.7112970711297057 0.006780766590337709 0.7112970711297057 0.15125365586554496
+0.006780766590337709 0.7154811715481157 0.006780766590337709 0.7154811715481157 0.1501052554437923
+0.01017114988550656 0.7050209205020908 0.01017114988550656 0.7050209205020908 0.15341762023784314
+0.01017114988550656 0.7092050209205008 0.01017114988550656 0.7092050209205008 0.15231787158170326
+0.013561533180675408 0.6987447698744758 0.013561533180675408 0.6987447698744758 0.1556724641664572
+0.013561533180675408 0.7029288702928858 0.013561533180675408 0.7029288702928858 0.15456748219250274
+0.016951916475844264 0.6924686192468608 0.016951916475844264 0.6924686192468608 0.1580546320831142
+0.016951916475844264 0.6966527196652708 0.016951916475844264 0.6966527196652708 0.15688479960947563
+0.02034229977101312 0.6861924686192458 0.02034229977101312 0.6861924686192458 0.16062284644300254
+0.02034229977101312 0.6903765690376558 0.02034229977101312 0.6903765690376558 0.15932474518764897
+0.02373268306618197 0.6799163179916308 0.02373268306618197 0.6799163179916308 0.1634562620582409
+0.02373268306618197 0.6841004184100408 0.02373268306618197 0.6841004184100408 0.16196666633668788
+0.027123066361350822 0.6736401673640158 0.027123066361350822 0.6736401673640158 0.16664644632616435
+0.027123066361350822 0.6778242677824258 0.027123066361350822 0.6778242677824258 0.164908219989272
+0.030513449656519673 0.6715481171548108 0.030513449656519673 0.6715481171548108 0.16825323360705738
+0.033903832951688535 0.6652719665271958 0.033903832951688535 0.6652719665271958 0.172095200648456
+0.033903832951688535 0.6694560669456058 0.033903832951688535 0.6694560669456058 0.16991231017740469
+0.03729421624685738 0.6589958158995808 0.03729421624685738 0.6589958158995808 0.17649933631674727
+0.03729421624685738 0.6631799163179908 0.03729421624685738 0.6631799163179908 0.1739818588546992
+0.040684599542026224 0.6527196652719658 0.040684599542026224 0.6527196652719658 0.18148684981552307
+0.040684599542026224 0.6569037656903758 0.040684599542026224 0.6569037656903758 0.1786499594114684
+0.0440749828371951 0.6464435146443508 0.0440749828371951 0.6464435146443508 0.1870248525880115
+0.0440749828371951 0.6506276150627608 0.0440749828371951 0.6506276150627608 0.1839135465060522
+0.04746536613236394 0.6401673640167358 0.04746536613236394 0.6401673640167358 0.19302404923666405
+0.04746536613236394 0.6443514644351458 0.04746536613236394 0.6443514644351458 0.18971002382145155
+0.05085574942753279 0.6338912133891208 0.05085574942753279 0.6338912133891208 0.19934449029897283
+0.05085574942753279 0.6380753138075308 0.05085574942753279 0.6380753138075308 0.1959197355806793
+0.05424613272270165 0.6317991631799158 0.054246132722701644 0.6317991631799158 0.20237628126049953
+0.05763651601787049 0.6297071129707108 0.05763651601787049 0.6297071129707108 0.20541062396938195
+0.06102689931303934 0.6276150627615058 0.06102689931303934 0.6276150627615058 0.20841686335142165
+0.06441728260820821 0.6255230125523008 0.06441728260820821 0.6255230125523008 0.21136341158778493
+0.06780766590337706 0.6234309623430958 0.06780766590337706 0.6234309623430958 0.21421876170077425
+0.0711980491985459 0.6213389121338908 0.0711980491985459 0.6213389121338908 0.21695255922957649
+0.07458843249371476 0.6150627615062758 0.07458843249371476 0.6150627615062758 0.22285469720535026
+0.07797881578888362 0.6129707112970708 0.07797881578888362 0.6129707112970708 0.22516461350707948
+0.08814996567439015 0.5983263598326358 0.08814996567439015 0.5983263598326358 0.23550800398660057
+0.09493073226472787 0.5899581589958158 0.09493073226472787 0.5899581589958158 0.23916265777652776
+0.09832111555989675 0.5878661087866108 0.09832111555989675 0.5878661087866108 0.2397620102022304
+0.10510188215023453 0.5794979079497908 0.10510188215023453 0.5794979079497908 0.24174395253634187
+0.10849226544540343 0.5774058577405858 0.10849226544540343 0.5774058577405858 0.2420608461816308
+0.11188264874057234 0.5753138075313808 0.11188264874057234 0.5753138075313808 0.2424214937148754
+0.11527303203574124 0.5690376569037658 0.11527303203574124 0.5690376569037658 0.24388512956002042
+0.11866341533091013 0.5669456066945608 0.11866341533091011 0.5669456066945608 0.24457719046301493
+0.12205379862607901 0.5648535564853558 0.12205379862607901 0.5648535564853558 0.24549211031789356
+0.11527303203574124 0.5732217573221758 0.11527303203574124 0.5732217573221758 0.2428790983332961
+0.10171149885506564 0.5857740585774058 0.10171149885506563 0.5857740585774058 0.24023090983925802
+0.10510188215023453 0.5836820083682008 0.10510188215023453 0.5836820083682008 0.24061317600569163
+0.09154034896955902 0.5962343096234308 0.09154034896955902 0.5962343096234308 0.23661954012604336
+0.09493073226472787 0.5941422594142258 0.09493073226472787 0.5941422594142258 0.2375209122667584
+0.08136919908405248 0.6066945606694558 0.08136919908405248 0.6066945606694558 0.2300712552724362
+0.08136919908405248 0.6108786610878658 0.08136919908405248 0.6108786610878658 0.22726109602334857
+0.08475958237922132 0.6046025104602508 0.08475958237922132 0.6046025104602508 0.23180021528049924
+0.08814996567439015 0.6025104602510458 0.08814996567439015 0.6025104602510458 0.23329176029634938
+0.07458843249371476 0.6192468619246858 0.07458843249371476 0.6192468619246858 0.21953668727335537
+0.13561533180677787 0.5439330543932822 0.13561533180677787 0.5439330543932822 0.2571164787434736
+0.13561533180676397 0.5481171548117278 0.13561533180676397 0.5481171548117278 0.2554822404558906
+0.1390057151019502 0.5418410041840165 0.13900571510195017 0.5418410041840165 0.2600046331757752
+0.14239609839708495 0.5397489539747041 0.14239609839708492 0.5397489539747041 0.26314541982407386
+0.14578648169216613 0.529288702929839 0.14578648169216613 0.529288702929839 0.2701381697353224
+0.14578648169188552 0.533472803347426 0.1457864816918855 0.533472803347426 0.26840358777534984
+0.14578648169213101 0.5376569037653851 0.14578648169213101 0.5376569037653852 0.26649659209874704
+0.12544418192124776 0.5585774058577408 0.12544418192124776 0.5585774058577408 0.2479347822326822
+0.1288345652164162 0.5564853556485362 0.1288345652164162 0.5564853556485362 0.24956322482782647
+0.13222494851158437 0.5543933054393327 0.13222494851158437 0.5543933054393327 0.25150630723303924
+0.1356153318067531 0.552301255230133 0.1356153318067531 0.552301255230133 0.253763160717428
+0.12544418192124793 0.5627615062761508 0.12544418192124793 0.5627615062761508 0.24666666967745263
+0.3153030118080099 0.2980892481744977 0.31530301180800985 0.2980892481744977 0.18165543480742619
+0.3120429979303178 0.2996991037027276 0.3120429979303178 0.2996991037027276 0.17619067498109867
+0.308829435956031 0.30141311815173494 0.308829435956031 0.30141311815173494 0.1708848708965541
+0.3056043943105262 0.3031260268430737 0.3056043943105262 0.3031260268430737 0.16574648301670278
+0.30236079817049094 0.3047947714644707 0.30236079817049094 0.3047947714644707 0.1608189857170543
+0.2990755564564578 0.30638856202236225 0.2990755564564578 0.30638856202236225 0.15612205352407627
+0.29574300586107377 0.30799263740442034 0.29574300586107377 0.30799263740442034 0.15162062803213147
+0.29206148928517495 0.30974167382973417 0.29206148928517495 0.3097416738297341 0.14700826191053226
+0.289486207370823 0.31262048086732863 0.2894862073708229 0.3126204808673286 0.14294403716989412
+0.28645272068869343 0.31462570699040954 0.2864527206886934 0.31462570699040954 0.1393776151315641
+0.2833259362536341 0.3164573121262705 0.28332593625363417 0.31645731212627043 0.1361424511438538
+0.28021263023593407 0.31824112086085227 0.28021263023593407 0.31824112086085227 0.13328388309400233
+0.27701479093781056 0.3200083667672631 0.2770147909378106 0.3200083667672631 0.1307434530336936
+0.27390000224049094 0.3217227045440338 0.27390000224049094 0.3217227045440338 0.1286322527345175
+0.27072574156421914 0.3233447935160094 0.2707257415642191 0.3233447935160094 0.1268823441360625
+0.27117605723164384 0.3265041012573096 0.2711760572316439 0.3265041012573096 0.1263363403700769
+0.26804784957258676 0.3280710256191801 0.2680478495725867 0.3280710256191801 0.12527928115551368
+0.26512272565745565 0.32969251130528554 0.2651227256574557 0.32969251130528554 0.12455281609584203
+0.2621329113551857 0.3319105826994933 0.26213291135518574 0.3319105826994933 0.12422135698920445
+0.2590820712720132 0.33400689344080353 0.2590820712720132 0.33400689344080353 0.12431891666110607
+0.24995093938024526 0.34012006524830485 0.24995093938024526 0.3401200652483048 0.12703728953000923
+0.25601784740372574 0.3360879430091967 0.25601784740372574 0.3360879430091967 0.12484271526320732
+0.25294036189579383 0.33820289807086856 0.2529403618957939 0.3382028980708686 0.1257896408172804
+0.24982750832847173 0.34300257630318215 0.24982750832847173 0.34300257630318215 0.12851984248779666
+0.24763466572987575 0.3452444118706429 0.24763466572987577 0.345244411870643 0.1303908644703027
+0.23050616954151912 0.3590465160064888 0.23050616954151912 0.3590465160064888 0.148673713269007
+0.23336144696490765 0.3567387357578071 0.23336144696490765 0.3567387357578071 0.1450288742256006
+0.23623134607085508 0.35445137398342447 0.23623134607085508 0.35445137398342447 0.14159121702233035
+0.23911060932291395 0.35214931578711717 0.23911060932291398 0.35214931578711717 0.13836256853495174
+0.24485308005007572 0.34759712579993157 0.2448530800500757 0.34759712579993157 0.1327573750351558
+0.2419906811375229 0.34984427180789046 0.2419906811375229 0.34984427180789046 0.1353898215089752
+0.21254807593244285 0.3801560792854821 0.21254807593244288 0.3801560792854821 0.18266696996683754
+0.21509067581161267 0.37767772179656156 0.21509067581161267 0.3776777217965615 0.17823973865527473
+0.2177220387298476 0.37505998157532106 0.2177220387298476 0.37505998157532106 0.17362274620328932
+0.2312477240000129 0.3623632131064234 0.2312477240000129 0.3623632131064234 0.15181422747081394
+0.2285317545707702 0.36482722307904797 0.2285317545707702 0.36482722307904797 0.15588375979862176
+0.22039487371177482 0.3724680244045932 0.22039487371177482 0.3724680244045932 0.16904316505604708
+0.22580357073175306 0.3673374749283078 0.22580357073175303 0.3673374749283078 0.16013691235577374
+0.22307693981369994 0.3698907543767848 0.22307693981369994 0.3698907543767848 0.1645451707524239
+0.19943263769903496 0.3994503907616504 0.19943263769903496 0.3994503907616504 0.21355554649409478
+0.2023857862461312 0.3980622827335558 0.2023857862461312 0.3980622827335558 0.21059727943018372
+0.20400968112961632 0.3953117373986216 0.20400968112961634 0.39531173739862163 0.2063801632974869
+0.20577723073079357 0.391817505530751 0.20577723073079351 0.39181750553075106 0.20106844854772432
+0.2127521363389343 0.38361534822444426 0.21275213633893436 0.38361534822444426 0.18705007554031947
+0.2085460334419777 0.38919751500369115 0.20854603344197772 0.3891975150036911 0.1963219052454879
+0.21083324039987827 0.3866181439202639 0.21083324039987827 0.3866181439202639 0.1918791260712199
+0.1830141103731511 0.41838902983361703 0.1830141103731511 0.418389029833617 0.2411265208746122
+0.1830126412950157 0.4225708003054203 0.1830126412950157 0.4225708003054203 0.24612025864773027
+0.18635652977578088 0.4162903593318695 0.18635652977578088 0.4162903593318695 0.23828026367913366
+0.1896881673883524 0.4142049132249684 0.1896881673883524 0.4142049132249684 0.23522181962181013
+0.19302084192976168 0.40797204682658017 0.19302084192976168 0.4079720468265801 0.2266028365121262
+0.193030880028254 0.4121498766829187 0.193030880028254 0.41214987668291864 0.23199125649362576
+0.1962902703456286 0.40588788605238396 0.1962902703456286 0.40588788605238396 0.2230224558364501
+0.1995070517194785 0.403890616490237 0.1995070517194785 0.403890616490237 0.2194109526906676
+0.17290435575901733 0.4372393422868938 0.17290435575901733 0.4372393422868938 0.26130778326578974
+0.1762864992690488 0.43514293575057045 0.1762864992690488 0.43514293575057045 0.2598521433172905
+0.17965709024645724 0.4288570692688394 0.17965709024645724 0.4288570692688394 0.2533467252573431
+0.18301270981152185 0.42675620955011145 0.18301270981152185 0.42675620955011145 0.25109823652669166
+0.1796573040093559 0.43304284338701016 0.1796573040093559 0.4330428433870102 0.25808965030380154
+0.17290208443864874 0.4414245375366839 0.17290208443864874 0.4414245375366839 0.26553846952820725
+0.16612814565749695 0.453974529045875 0.16612814565749698 0.45397452904587504 0.27413257599155744
+0.17289900369943625 0.4456088170339117 0.17289900369943625 0.4456088170339117 0.26964859038760797
+0.16951483009721777 0.45188241668449614 0.16951483009721777 0.45188241668449614 0.27403693352340847
+0.17289593285530944 0.44979252941703624 0.17289593285530944 0.44979252941703624 0.2736104838312448
+0.16612817942536146 0.45815855283291773 0.16612817942536148 0.45815855283291773 0.27741498800299635
+0.15595763157440842 0.4811715481211327 0.15595763157440842 0.4811715481211327 0.2827142122822839
+0.1627383981666504 0.4644351464450563 0.1627383981666504 0.4644351464450563 0.27973696298293277
+0.1661281748581756 0.4623427584709898 0.16612817485817558 0.46234275847098977 0.280485421547876
+0.1593480148709401 0.47071129707281095 0.1593480148709401 0.47071129707281095 0.28098571184190685
+0.16273839159186965 0.46861923720752396 0.16273839159186965 0.468619237207524 0.2823102378289866
+0.15934801487063918 0.4748953974918386 0.15934801487063918 0.4748953974918386 0.2830438780197904
+0.15934801486965172 0.4790794979121042 0.15934801486965175 0.4790794979121042 0.28482350564456543
+0.1525672482808788 0.4958158995788475 0.15256724828087884 0.4958158995788475 0.28258371171649893
+0.15256724828399373 0.5000000000005533 0.15256724828399373 0.5000000000005533 0.28273541298225907
+0.1559576315715465 0.48535564853993113 0.1559576315715465 0.48535564853993113 0.28396666838574963
+0.15595763156926665 0.4895397489546969 0.15595763156926665 0.48953974895469693 0.2849185225795146
+0.1559576315728085 0.49372384936889624 0.1559576315728085 0.49372384936889624 0.2855592886331441
+0.15256724828326132 0.5041841004228381 0.15256724828326132 0.5041841004228381 0.28258514850071803
+0.15256724828048562 0.5083682008403461 0.15256724828048562 0.5083682008403461 0.2821346475621281
+0.14917686498613594 0.5146443514619067 0.14917686498613594 0.5146443514619067 0.2777759232190882
+0.1525672482798617 0.5125523012537412 0.1525672482798617 0.5125523012537413 0.28138906825309956
+0.14917686498816532 0.5188284518802885 0.14917686498816532 0.5188284518802885 0.27668805604641417
+0.14917686498880117 0.5230125523012977 0.1491768649888012 0.5230125523012977 0.2753517037155185
+0.14917686498781058 0.5271966527211893 0.14917686498781058 0.5271966527211892 0.2737817004732657
+0.3188480664577044 0.29285448815506143 0.3188480664577044 0.29285448815506143 0.18957049354026864
+0.3186111762606761 0.29659549950962333 0.3186111762606761 0.29659549950962333 0.1872559333629449
+0.3308636224498748 0.2733942445250808 0.3308636224498747 0.2733942445250808 0.21365438926598854
+0.322908852871114 0.284060560883973 0.322908852871114 0.284060560883973 0.19917256883670398
+0.330122967401283 0.276984748735617 0.33012296740128294 0.276984748735617 0.21193358291133224
+0.32625851073398965 0.28244695304732637 0.32625851073398965 0.28244695304732637 0.20472893705785714
+0.32957030080181576 0.28088489057077975 0.32957030080181576 0.28088489057077975 0.21025726212964505
+0.3225388759285988 0.2877515729831898 0.3225388759285988 0.2877515729831898 0.19729335784909585
+0.32220559506588264 0.2914515859236588 0.32220559506588264 0.2914515859236588 0.19521633441354466
+0.34501867256554813 0.25461415059333087 0.34501867256554813 0.25461415059333087 0.2354745614369317
+0.3356772635040525 0.26550452470760255 0.3356772635040525 0.2655045247076026 0.22160365029045279
+0.344047867005941 0.2579489046815703 0.344047867005941 0.25794890468157033 0.2341141674817251
+0.33916115713024225 0.26469151302949046 0.33916115713024225 0.26469151302949046 0.22684086719880733
+0.34325757169797977 0.26125565871223544 0.34325757169797977 0.26125565871223544 0.23301981528263374
+0.34186405216607335 0.2637528237825778 0.34186405216607335 0.2637528237825778 0.23086716437948915
+0.3350215279805271 0.26887541831369793 0.3350215279805271 0.26887541831369793 0.22041363202431627
+0.3343748880147374 0.272408037265102 0.3343748880147374 0.27240803726510204 0.21911576804896435
+0.36111166744734785 0.2367894624611214 0.36111166744734785 0.2367894624611214 0.25763156517066976
+0.35083089363204867 0.24707554248596708 0.3508308936320486 0.24707554248596705 0.2436388770425235
+0.3597373321472202 0.24008236497152055 0.3597373321472202 0.24008236497152055 0.25570199001689015
+0.3547729462094897 0.24617932764568234 0.3547729462094896 0.24617932764568232 0.24905509195861122
+0.35810850325573873 0.24354652587152503 0.3581085032557387 0.24354652587152503 0.2535227358164999
+0.35816355126792426 0.24693743734346962 0.35816355126792426 0.24693743734346962 0.2535834404847342
+0.34969250131829965 0.25052845020055886 0.34969250131829965 0.25052845020055886 0.24207098232627725
+0.3486314111510287 0.2539653883686285 0.3486314111510287 0.2539653883686284 0.2406552030719212
+0.37936467780531485 0.21978686871005124 0.37936467780531485 0.21978686871005124 0.2797073310028391
+0.36748013806403584 0.22982277391341785 0.36748013806403584 0.22982277391341785 0.265996863376086
+0.3777900696011023 0.22299807819028986 0.3777900696011023 0.22299807819028986 0.2777775010285158
+0.37117664486178886 0.22950062133403806 0.37117664486178886 0.22950062133403806 0.2701671248445993
+0.3762978927213465 0.22614116062660636 0.3762978927213465 0.22614116062660636 0.2759245658815235
+0.3748701076158614 0.22915923060619897 0.3748701076158614 0.22915923060619894 0.274146446477207
+0.36613507935884576 0.23313661919903703 0.36613507935884576 0.23313661919903703 0.2640561362161355
+0.3647980879477686 0.23644225417180276 0.3647980879477686 0.23644225417180276 0.2622042296358114
+0.4103589426063393 0.19715254170602986 0.41035894260633926 0.19715254170602983 0.29416426040541804
+0.40753334210960135 0.20015361505741103 0.4075333421096014 0.20015361505741103 0.2947419409851771
+0.4052506292876333 0.20339328281051505 0.4052506292876333 0.20339328281051508 0.29493948823585553
+0.40317187120635095 0.20668538467795286 0.40317187120635095 0.20668538467795286 0.2947873238846448
+0.4012299770063668 0.20999327798725034 0.4012299770063668 0.20999327798725034 0.294367106035848
+0.3991509437282401 0.21344906397648883 0.3991509437282401 0.2134490639764888 0.29361858585900663
+0.3847811927151037 0.21633629852663072 0.3847811927151037 0.2163362985266307 0.2847358011568959
+0.38848731410427323 0.2161639772024827 0.38848731410427323 0.21616397720248273 0.2874806114125196
+0.3921291628825301 0.21594369965782378 0.3921291628825301 0.2159436996578238 0.28987577866383085
+0.3958473061138594 0.2155401528469373 0.3958473061138594 0.21554015284693734 0.2919918985208269
+0.39859690497913136 0.21666453903508653 0.39859690497913136 0.21666453903508653 0.29326216352733375
+0.383109288469998 0.21963688155510155 0.383109288469998 0.21963688155510155 0.2829807483302633
+0.4161450081692811 0.19293411690751516 0.41614500816928107 0.19293411690751516 0.29174104211327007
+0.4141349564352531 0.19619609249302428 0.41413495643525305 0.19619609249302428 0.29328723774324666
+0.42035527313051674 0.192893387461607 0.42035527313051674 0.192893387461607 0.290166540070123
+0.4133213696547747 0.19909965211912062 0.41332136965477473 0.19909965211912062 0.29413989568428067
+0.44979320108568627 0.17290462676624527 0.44979320108568627 0.17290462676624527 0.2449729850878075
+0.44770538666527626 0.1762839488861998 0.44770538666527626 0.1762839488861998 0.25136584077954177
+0.4456196604744062 0.17965479914629903 0.4456196604744062 0.17965479914629903 0.25738972219756406
+0.44353280777381143 0.18301752109836103 0.4435328077738115 0.18301752109836103 0.2630114007980895
+0.4414375431669058 0.18636618007442404 0.4414375431669058 0.18636618007442404 0.26820855063946575
+0.42455874136618793 0.1928605539371043 0.42455874136618793 0.1928605539371043 0.28795542185466544
+0.4287644372896677 0.19289046423636316 0.4287644372896677 0.19289046423636316 0.2850989154093897
+0.4393350599749804 0.18969965524227764 0.4393350599749804 0.18969965524227764 0.27296091264978095
+0.43512509491184265 0.18968745885557262 0.43512509491184265 0.18968745885557262 0.27770557349132075
+0.4329907847004619 0.1929667144693521 0.4329907847004619 0.1929667144693521 0.28155494510988305
+0.47071169757178355 0.16612850268673154 0.47071169757178355 0.16612850268673154 0.1961654078209524
+0.45606724686433847 0.16951819444926422 0.45606724686433847 0.16951819444926422 0.23065755011654418
+0.46025117296032564 0.1695181789167466 0.46025117296032564 0.1695181789167466 0.22240057038499186
+0.4644355210144229 0.16951816610934145 0.4644355210144229 0.16951816610934145 0.21349678047082524
+0.4686208124660709 0.16951759177220962 0.4686208124660709 0.16951759177220962 0.2039582270035407
+0.4539767042544034 0.1729037268779675 0.45397670425440334 0.1729037268779675 0.23765247333495387
+0.49163179916315836 0.15934801487294026 0.4916317991631583 0.15934801487294026 0.1361870228287622
+0.4769876763250969 0.1627382404451071 0.4769876763250969 0.1627382404451071 0.17797929622273692
+0.4811720066937854 0.16273803896562689 0.4811720066937854 0.16273803896562689 0.16709112150255936
+0.4853562068968081 0.16273782326522143 0.4853562068968081 0.16273782326522143 0.15571582365910355
+0.4895401169227647 0.1627377166523929 0.4895401169227647 0.1627377166523929 0.14389286786812608
+0.4748966513285626 0.16612787988023595 0.4748966513285627 0.16612787988023595 0.18588158854660922
+0.4979079497907737 0.15595763157777132 0.4979079497907737 0.15595763157777132 0.11682238236684113
+0.5020920502091839 0.15595763157777132 0.5020920502091838 0.15595763157777132 0.10462618295078423
+0.5062761506275941 0.15595763157777132 0.5062761506275941 0.15595763157777132 0.09226089323626446
+0.4958158995815686 0.15934801487294026 0.49581589958156863 0.15934801487294026 0.12408037278257635
+0.5292887029288503 0.1390057151019266 0.5292887029288503 0.1390057151019266 0.03621704706745594
+0.523012552301235 0.14239609839709555 0.523012552301235 0.14239609839709555 0.04834406006276088
+0.5271966527196452 0.14239609839709555 0.5271966527196453 0.14239609839709555 0.039302800998788516
+0.5104602510460043 0.15595763157777132 0.5104602510460045 0.15595763157777132 0.07984173519361594
+0.5209205020920299 0.1457864816922645 0.5209205020920299 0.1457864816922645 0.05249991906191783
+0.5188284518828248 0.14917686498743343 0.5188284518828247 0.14917686498743343 0.05704655117263079
+0.5167364016736197 0.15256724828260237 0.5167364016736197 0.15256724828260237 0.062047486854158174
+0.5146443514644146 0.15595763157777132 0.5146443514644146 0.15595763157777132 0.0675451695548716
+0.5334728033472605 0.1390057151019266 0.5334728033472605 0.1390057151019266 0.030852153626575878
+0.5376569037656708 0.1390057151019266 0.5376569037656708 0.1390057151019266 0.030202033948248445
+0.5439330543932861 0.13561533180675767 0.5439330543932862 0.13561533180675767 0.035819715333529324
+0.541841004184081 0.1390057151019266 0.541841004184081 0.1390057151019266 0.034675432588727066
+0.5481171548116963 0.13561533180675767 0.5481171548116963 0.13561533180675767 0.04460297670977199
+0.5543933054393116 0.13222494851158872 0.5543933054393116 0.13222494851158872 0.05728054435415813
+0.5523012552301065 0.13561533180675767 0.5523012552301064 0.13561533180675767 0.05509273437604001
+0.560669456066927 0.12883456521641978 0.5606694560669271 0.12883456521641978 0.07146645116944896
+0.5585774058577219 0.13222494851158872 0.5585774058577219 0.13222494851158872 0.06890668837264112
+0.598326359832619 0.08814996567439248 0.598326359832619 0.08814996567439248 0.16655829735731945
+0.5920502092050036 0.09154034896956142 0.5920502092050036 0.09154034896956142 0.1486077594795997
+0.5962343096234138 0.09154034896956142 0.5962343096234138 0.09154034896956142 0.16171179571805508
+0.5899581589957985 0.09493073226473037 0.5899581589957985 0.09493073226473037 0.14328327482922007
+0.5878661087865934 0.09832111555989931 0.5878661087865934 0.09832111555989931 0.13780336580698724
+0.5857740585773883 0.10171149885506825 0.5857740585773882 0.10171149885506825 0.13226725835987932
+0.579497907949773 0.10510188215023719 0.579497907949773 0.10510188215023719 0.11327238614186151
+0.5774058577405679 0.10849226544540613 0.577405857740568 0.10849226544540613 0.10797911792750094
+0.5753138075313627 0.11188264874057507 0.5753138075313627 0.11188264874057507 0.10296366666274774
+0.5732217573221576 0.11527303203574402 0.5732217573221576 0.11527303203574402 0.0982984318284535
+0.5711297071129525 0.11866341533091296 0.5711297071129525 0.11866341533091296 0.09403482032143894
+0.5690376569037474 0.1220537986260819 0.5690376569037473 0.1220537986260819 0.09019781479329747
+0.5669456066945423 0.12544418192125084 0.5669456066945423 0.12544418192125084 0.08678224144906854
+0.5648535564853372 0.12883456521641978 0.5648535564853372 0.12883456521641978 0.08375173499582311
+0.5836820083681832 0.10510188215023719 0.5836820083681832 0.10510188215023719 0.12677631993516744
+0.6087866108786445 0.07797881578888566 0.6087866108786445 0.07797881578888566 0.19016990584025598
+0.6129707112970547 0.07797881578888566 0.6129707112970547 0.07797881578888566 0.20144642415160738
+0.6066945606694394 0.0813691990840546 0.6066945606694394 0.0813691990840546 0.18704498975822184
+0.6046025104602343 0.08475958237922354 0.6046025104602343 0.08475958237922354 0.1833766071118008
+0.6025104602510292 0.08814996567439248 0.6025104602510291 0.08814996567439248 0.1792180160777863
+0.6338912133891058 0.050855749427534125 0.6338912133891058 0.050855749427534125 0.20953339758924375
+0.6317991631799007 0.054246132722703067 0.6317991631799007 0.054246132722703067 0.21156911507287712
+0.6297071129706956 0.05763651601787201 0.6297071129706956 0.05763651601787201 0.2132581410317708
+0.6276150627614905 0.06102689931304095 0.6276150627614906 0.06102689931304095 0.21451459266896852
+0.6255230125522854 0.06441728260820989 0.6255230125522854 0.06441728260820989 0.21526650705288222
+0.6234309623430803 0.06780766590337883 0.6234309623430803 0.06780766590337883 0.21545712538168846
+0.6213389121338752 0.07119804919854777 0.6213389121338752 0.07119804919854777 0.2150457516199469
+0.61924686192467 0.07458843249371672 0.6192468619246699 0.07458843249371672 0.21400825806896773
+0.6171548117154649 0.07797881578888566 0.6171548117154649 0.07797881578888566 0.21233729052530528
+0.6401673640167211 0.04746536613236518 0.6401673640167211 0.04746536613236518 0.21399087921876922
+0.638075313807516 0.050855749427534125 0.638075313807516 0.050855749427534125 0.2165937088718868
+0.6464435146443365 0.04407498283719624 0.6464435146443365 0.04407498283719624 0.2175056831605547
+0.6443514644351314 0.04746536613236518 0.6443514644351315 0.04746536613236518 0.2204504756581435
+0.6527196652719518 0.0406845995420273 0.6527196652719517 0.0406845995420273 0.22047450064347737
+0.6506276150627467 0.04407498283719624 0.6506276150627467 0.04407498283719624 0.22351862629873862
+0.6589958158995671 0.03729421624685836 0.6589958158995671 0.03729421624685836 0.2233092010032023
+0.656903765690362 0.0406845995420273 0.656903765690362 0.0406845995420273 0.22621396504617697
+0.6652719665271825 0.03390383295168942 0.6652719665271825 0.03390383295168942 0.2263967564260613
+0.6631799163179773 0.03729421624685836 0.6631799163179773 0.03729421624685836 0.22895020431130256
+0.6736401673640029 0.027123066361351533 0.6736401673640029 0.027123066361351533 0.22856371427539077
+0.6715481171547978 0.030513449656520475 0.6715481171547978 0.030513449656520475 0.2300600396023488
+0.6694560669455927 0.03390383295168942 0.6694560669455926 0.03390383295168942 0.23209708871144483
+0.6799163179916182 0.02373268306618259 0.6799163179916182 0.02373268306618259 0.23369418166135533
+0.6778242677824131 0.027123066361351533 0.6778242677824132 0.027123066361351533 0.23452744703507492
+0.6861924686192336 0.02034229977101365 0.6861924686192334 0.02034229977101365 0.2397606292725363
+0.6841004184100284 0.02373268306618259 0.6841004184100284 0.02373268306618259 0.23991848847254574
+0.6924686192468489 0.01695191647584471 0.6924686192468489 0.01695191647584471 0.24673649389113309
+0.6903765690376438 0.02034229977101365 0.6903765690376438 0.02034229977101365 0.24624855583683528
+0.6987447698744642 0.013561533180675767 0.6987447698744642 0.013561533180675767 0.25453254533476954
+0.6966527196652591 0.01695191647584471 0.6966527196652591 0.01695191647584471 0.25345045327869314
+0.7050209205020795 0.010171149885506825 0.7050209205020795 0.010171149885506825 0.2630278679629457
+0.7029288702928744 0.013561533180675767 0.7029288702928743 0.013561533180675767 0.261405565138817
+0.7112970711296949 0.006780766590337883 0.711297071129695 0.006780766590337883 0.2720967415403602
+0.7092050209204898 0.010171149885506825 0.7092050209204898 0.010171149885506825 0.2699757539739562
+0.7154811715481051 0.006780766590337883 0.7154811715481051 0.006780766590337883 0.2790283698569617
+0.006780766590337709 0.7196652719665257 0.006780766590337709 0.7196652719665257 0.14890683976717112
+0.006780766590337709 0.7238493723849357 0.006780766590337709 0.7238493723849357 0.1476340169175374
+0.01017114988550656 0.7133891213389107 0.01017114988550656 0.7133891213389107 0.15120605764566972
+0.01017114988550656 0.7175732217573207 0.01017114988550656 0.7175732217573207 0.15005636045303136
+0.013561533180675408 0.7071129707112958 0.013561533180675408 0.7071129707112958 0.15349004317796258
+0.013561533180675408 0.7112970711297057 0.013561533180675408 0.7112970711297057 0.152414276940789
+0.016951916475844264 0.7008368200836808 0.016951916475844264 0.7008368200836808 0.15578205100483233
+0.016951916475844264 0.7050209205020908 0.016951916475844264 0.7050209205020908 0.15472210071437964
+0.02034229977101312 0.6945606694560658 0.02034229977101312 0.6945606694560658 0.15813079422867926
+0.02034229977101312 0.6987447698744758 0.02034229977101312 0.6987447698744758 0.15702015698965097
+0.02373268306618197 0.6882845188284508 0.02373268306618197 0.6882845188284508 0.1606127640716446
+0.02373268306618197 0.6924686192468608 0.02373268306618197 0.6924686192468608 0.1593791316638111
+0.027123066361350822 0.6820083682008358 0.027123066361350822 0.6820083682008358 0.16332828458995433
+0.027123066361350822 0.6861924686192458 0.027123066361350822 0.6861924686192458 0.1618984573838473
+0.030513449656519673 0.6757322175732208 0.030513449656519673 0.6757322175732208 0.16639106536302853
+0.030513449656519673 0.6799163179916308 0.030513449656519673 0.6799163179916308 0.16469798194605853
+0.033903832951688535 0.6736401673640158 0.033903832951688535 0.6736401673640158 0.16790334975340795
+0.03729421624685738 0.6673640167364008 0.03729421624685738 0.6673640167364008 0.1716269784183231
+0.03729421624685738 0.6715481171548108 0.03729421624685738 0.6715481171548108 0.16944858156298326
+0.040684599542026224 0.6610878661087858 0.040684599542026224 0.6610878661087858 0.17594792636694057
+0.040684599542026224 0.6652719665271958 0.040684599542026224 0.6652719665271958 0.1734032315183599
+0.0440749828371951 0.6548117154811708 0.0440749828371951 0.6548117154811708 0.18089474979534345
+0.0440749828371951 0.6589958158995808 0.0440749828371951 0.6589958158995808 0.1779975803971151
+0.04746536613236394 0.6485355648535558 0.04746536613236394 0.6485355648535558 0.1864351051001221
+0.04746536613236394 0.6527196652719658 0.04746536613236394 0.6527196652719658 0.18323240405812571
+0.05085574942753279 0.6422594142259408 0.05085574942753279 0.6422594142259408 0.19247429656948137
+0.05085574942753279 0.6464435146443508 0.05085574942753279 0.6464435146443508 0.18904239223750252
+0.05424613272270165 0.6359832635983258 0.054246132722701644 0.6359832635983258 0.19886277110806883
+0.05424613272270165 0.6401673640167358 0.054246132722701644 0.6401673640167358 0.19530001631934799
+0.05763651601787049 0.6338912133891208 0.05763651601787049 0.6338912133891208 0.2018279027850589
+0.06102689931303934 0.6317991631799158 0.06102689931303934 0.6317991631799158 0.20478739637336388
+0.06441728260820821 0.6297071129707108 0.06441728260820821 0.6297071129707108 0.20771181028703226
+0.06780766590337706 0.6276150627615058 0.06780766590337706 0.6276150627615058 0.21057091555926008
+0.0711980491985459 0.6255230125523008 0.0711980491985459 0.6255230125523008 0.2133347149916958
+0.07458843249371476 0.6234309623430958 0.07458843249371476 0.6234309623430958 0.21597451366542605
+0.07797881578888362 0.6171548117154808 0.07797881578888362 0.6171548117154808 0.22194632316516974
+0.08136919908405248 0.6150627615062758 0.08136919908405248 0.6150627615062758 0.2241609287543813
+0.09154034896955902 0.6004184100418408 0.09154034896955902 0.6004184100418408 0.23455231898731224
+0.09832111555989675 0.5920502092050208 0.09832111555989675 0.5920502092050208 0.2382386173972424
+0.10171149885506564 0.5899581589958158 0.10171149885506563 0.5899581589958158 0.23880617223113498
+0.10849226544540343 0.5815899581589958 0.10849226544540343 0.5815899581589958 0.24095711151351493
+0.11188264874057234 0.5794979079497908 0.11188264874057234 0.5794979079497908 0.2413139022138728
+0.11527303203574124 0.5774058577405858 0.11527303203574124 0.5774058577405858 0.24173576042770326
+0.11866341533091013 0.5711297071129708 0.11866341533091011 0.5711297071129708 0.24348468674440962
+0.12205379862607901 0.5690376569037658 0.12205379862607901 0.5690376569037658 0.2442848968510658
+0.12544418192124793 0.5669456066945608 0.12544418192124793 0.5669456066945608 0.24531985521221558
+0.11866341533091013 0.5753138075313808 0.11866341533091011 0.5753138075313808 0.24227387692706134
+0.10510188215023453 0.5878661087866108 0.10510188215023453 0.5878661087866108 0.23926329708700902
+0.10849226544540343 0.5857740585774058 0.10849226544540343 0.5857740585774058 0.23965479742194437
+0.09493073226472787 0.5983263598326358 0.09493073226472787 0.5983263598326358 0.23559591539098215
+0.09832111555989675 0.5962343096234308 0.09832111555989675 0.5962343096234308 0.23644407786617264
+0.08475958237922132 0.6087866108786608 0.08475958237922132 0.6087866108786608 0.22913228023562593
+0.08475958237922132 0.6129707112970708 0.08475958237922132 0.6129707112970708 0.22616514000394497
+0.08814996567439015 0.6066945606694558 0.08814996567439015 0.6066945606694558 0.2307728493178222
+0.09154034896955902 0.6046025104602508 0.09154034896955902 0.6046025104602508 0.23218451856117903
+0.07797881578888362 0.6213389121338908 0.07797881578888362 0.6213389121338908 0.21846399468974667
+0.13900571510195056 0.5460251046025162 0.13900571510195056 0.5460251046025162 0.2582122081879367
+0.13900571510192591 0.5502092050209392 0.13900571510192591 0.5502092050209392 0.2563212406529309
+0.14239609839714648 0.5439330543932661 0.14239609839714648 0.543933054393266 0.2612091862565528
+0.1457864816923307 0.5418410041839352 0.1457864816923307 0.5418410041839352 0.2644353495348705
+0.14917686498694518 0.5313807531388598 0.14917686498694518 0.5313807531388598 0.2719949310922196
+0.14917686498704053 0.5355648535562064 0.14917686498704053 0.5355648535562064 0.2700098553005095
+0.14917686498744223 0.5397489539744984 0.14917686498744223 0.5397489539744984 0.26784597742210114
+0.12883456521641676 0.5606694560669457 0.12883456521641676 0.5606694560669457 0.2481282119486619
+0.13222494851158526 0.5585774058577405 0.13222494851158526 0.5585774058577405 0.24989333981137837
+0.135615331806753 0.556485355648536 0.135615331806753 0.556485355648536 0.25196717833702936
+0.13900571510191975 0.5543933054393344 0.13900571510191975 0.5543933054393344 0.2543432665968361
+0.12883456521641684 0.5648535564853558 0.12883456521641687 0.5648535564853558 0.24662129193271723
+0.3184607891336774 0.3003447153100937 0.3184607891336774 0.3003447153100937 0.18481394826761807
+0.3152092662130786 0.3018892944528429 0.3152092662130786 0.3018892944528429 0.17915548923814406
+0.3120041763115737 0.3035095509353654 0.3120041763115737 0.3035095509353654 0.17367619944953183
+0.30879904936040115 0.3051703086094338 0.30879904936040115 0.3051703086094338 0.1683536387965654
+0.3055852038012203 0.3068386825263806 0.3055852038012203 0.30683868252638064 0.16322336107698157
+0.30235789170490907 0.3084995379358135 0.30235789170490907 0.3084995379358135 0.15831638346628282
+0.299092448297436 0.31017530026993617 0.299092448297436 0.31017530026993617 0.1536180521625544
+0.2958289194147958 0.31192816549823943 0.2958289194147958 0.3119281654982395 0.14915997298646097
+0.2927608819517797 0.31402372165542003 0.2927608819517797 0.31402372165542003 0.14492108606823373
+0.2897486304973023 0.31619403910405686 0.2897486304973023 0.3161940391040568 0.14103066999848235
+0.28667295250774705 0.3181607419550699 0.2866729525077471 0.3181607419550699 0.1375689650051335
+0.28355423555610587 0.3200332845794615 0.28355423555610587 0.3200332845794615 0.13449263825101168
+0.2803910551544812 0.3218527356147736 0.2803910551544812 0.3218527356147736 0.13180459813840806
+0.2772067236183506 0.32361953566368806 0.2772067236183506 0.323619535663688 0.12952616648028936
+0.2742624933393665 0.3250315479035017 0.2742624933393665 0.3250315479035017 0.12784751840761485
+0.27358282519795646 0.32789484105928535 0.27358282519795646 0.32789484105928535 0.12680001949065065
+0.2715086734973814 0.3297321122970647 0.27150867349738134 0.3297321122970647 0.12588342680601025
+0.26847710410807163 0.3314881946228 0.26847710410807163 0.33148819462279994 0.1250515403024128
+0.265474720153958 0.3334857808627475 0.265474720153958 0.33348578086274744 0.12462501671739061
+0.2625129982357047 0.3355007815733899 0.2625129982357047 0.3355007815733899 0.1246405606934111
+0.2594875858956876 0.33752707618430433 0.2594875858956876 0.33752707618430433 0.12507655222110628
+0.25319751086804243 0.3420589495067848 0.25319751086804243 0.34205894950678484 0.1274053580959598
+0.25640268045159037 0.33960599630292704 0.25640268045159037 0.33960599630292704 0.1259488431021313
+0.25487094732802806 0.34491576878748825 0.25487094732802806 0.34491576878748825 0.12833169374519834
+0.2515163856497259 0.3458655928811637 0.25151638564972595 0.34586559288116364 0.12971587737131204
+0.24858959909174294 0.3484909932431242 0.2485895990917429 0.3484909932431242 0.13217114989332437
+0.2340598347923818 0.3601026508091726 0.23405983479238177 0.36010265080917264 0.14809099878981413
+0.23691871111072896 0.35790372437832163 0.23691871111072896 0.35790372437832163 0.1445633990347356
+0.23979446002226112 0.35564069123899955 0.2397944600222611 0.35564069123899955 0.1411616231881342
+0.24268882594230998 0.3533356778725658 0.24268882594230998 0.3533356778725658 0.13794888801656402
+0.24558337519983173 0.3510009790955941 0.24558337519983173 0.3510009790955941 0.13498300601300026
+0.21593777033574502 0.3810530928901424 0.21593777033574502 0.3810530928901424 0.1821100378263016
+0.23463242974764714 0.36317020679267553 0.23463242974764717 0.3631702067926756 0.15097810662430344
+0.21868670380250724 0.3784486763118458 0.21868670380250724 0.3784486763118458 0.177377905958125
+0.2213747355616791 0.3758711567726751 0.2213747355616791 0.3758711567726751 0.1727368139240865
+0.23211324766649685 0.36571666876750397 0.23211324766649685 0.36571666876750397 0.1550514454769705
+0.22945109754715576 0.3682179075863782 0.22945109754715576 0.3682179075863781 0.1592687195565692
+0.22406010348203845 0.37330617402464455 0.22406010348203845 0.37330617402464455 0.1681568301440356
+0.226756739015631 0.3707497112445895 0.226756739015631 0.3707497112445895 0.1636517285278205
+0.20295198692753041 0.40170279128770575 0.20295198692753044 0.40170279128770575 0.21539245661924203
+0.2052980092327945 0.39872203212995627 0.2052980092327945 0.39872203212995627 0.21043009218403855
+0.20742352842191736 0.39557220553231826 0.20742352842191733 0.39557220553231826 0.20534794266898446
+0.20967213878559318 0.39261625956968216 0.20967213878559318 0.3926162595696821 0.2004181833551227
+0.21684732322531008 0.3844007009303915 0.21684732322531008 0.3844007009303915 0.1860521876706336
+0.2143455441615803 0.38713141331979184 0.21434554416158028 0.38713141331979184 0.19087996118714692
+0.21207969601293397 0.3898733594253238 0.212079696012934 0.3898733594253238 0.19562448004674335
+0.18635218940321327 0.4204674762283008 0.18635218940321327 0.4204674762283008 0.24342859278537363
+0.18635253811383387 0.424651489676997 0.18635253811383387 0.424651489676997 0.2485760032733346
+0.189678599142208 0.4183643904121599 0.189678599142208 0.4183643904121599 0.24049363201190865
+0.19298690959055909 0.4162826837499947 0.19298690959055909 0.4162826837499947 0.2373583011642765
+0.196432061327284 0.4101668203517918 0.196432061327284 0.4101668203517918 0.22867479156568557
+0.1963072651398067 0.4142915307861624 0.1963072651398067 0.4142915307861624 0.2341281781953289
+0.19965636275390955 0.40797281043148015 0.19965636275390955 0.40797281043148015 0.2248588730831255
+0.20230385675028545 0.40561219689788863 0.20230385675028548 0.4056121968978887 0.22083746414717167
+0.1762835079972134 0.4393298959128571 0.1762835079972134 0.4393298959128571 0.26430738397236303
+0.17965536173939378 0.4372296552248849 0.17965536173939378 0.4372296552248849 0.26275701759365533
+0.18301371250156062 0.4309432821572143 0.18301371250156062 0.4309432821572143 0.25603533204583506
+0.1863568529262214 0.4288426451723559 0.1863568529262214 0.4288426451723559 0.25370024283504544
+0.1830126197128679 0.43512871694478666 0.1830126197128679 0.43512871694478666 0.260902189096707
+0.176278810838409 0.44351598025376354 0.176278810838409 0.44351598025376354 0.26864975102890476
+0.16951470016166256 0.4560657023150405 0.16951470016166256 0.4560657023150405 0.2775731383944604
+0.17627250874107905 0.44770165534735273 0.17627250874107905 0.44770165534735273 0.27285076384386014
+0.17289364385450653 0.4539756855354075 0.17289364385450653 0.4539756855354075 0.2773951381522852
+0.17626559515122353 0.45188737662392414 0.17626559515122353 0.45188737662392414 0.27688037316922
+0.16951477824949854 0.46024941976873207 0.16951477824949854 0.46024941976873207 0.2808999671648988
+0.1593480148666844 0.4832635983325065 0.1593480148666844 0.4832635983325065 0.28630627150289806
+0.16612803492390602 0.4665269165404582 0.16612803492390602 0.4665269165404582 0.2833169664758129
+0.16951475362243182 0.4644336186346534 0.16951475362243182 0.4644336186346534 0.2839893687340766
+0.16273839816540944 0.47280334728179385 0.16273839816540944 0.47280334728179385 0.28462145470338224
+0.16612780370607527 0.47071078236192704 0.16612780370607527 0.47071078236192704 0.2858839165887445
+0.1627383981656987 0.47698744770195706 0.1627383981656987 0.47698744770195706 0.28664827015573907
+0.16273839816401667 0.4811715481251 0.16273839816401667 0.48117154812509993 0.2883705309372409
+0.1559576315779772 0.4979079497887542 0.15595763157797718 0.49790794978875413 0.2858818541469568
+0.15595763157980105 0.5020920502129242 0.15595763157980105 0.5020920502129242 0.2858826280798766
+0.1593480148620591 0.4874476987505286 0.1593480148620591 0.48744769875052857 0.28747656241671865
+0.15934801486331404 0.4916317991616563 0.15934801486331404 0.4916317991616563 0.28832184647004316
+0.15934801486884267 0.4958158995766237 0.15934801486884267 0.4958158995766237 0.2888330231235745
+0.15595763157677633 0.5062761506340768 0.15595763157677633 0.5062761506340768 0.28556160588195817
+0.15595763157383022 0.5104602510475766 0.15595763157383022 0.5104602510475766 0.28492236701556145
+0.1525672482823111 0.5167364016694534 0.15256724828231108 0.5167364016694534 0.28035687395370884
+0.1559576315754382 0.5146443514596141 0.1559576315754382 0.5146443514596141 0.2839719974296467
+0.15256724828444002 0.520920502090278 0.15256724828444002 0.520920502090278 0.2790496273842708
+0.1525672482839238 0.5251046025120463 0.1525672482839238 0.5251046025120463 0.2774817026363911
+0.15256724828232263 0.5292887029307258 0.15256724828232263 0.5292887029307258 0.27566992195386364
+0.3219187741691855 0.29515754449861237 0.3219187741691855 0.29515754449861237 0.19295897028135175
+0.32171000073049366 0.29886559926267914 0.32171000073049366 0.29886559926267914 0.19057345281878593
+0.3337088376282567 0.2760096205414139 0.3337088376282567 0.2760096205414139 0.217625679485248
+0.32589750452594207 0.28629893530234973 0.32589750452594207 0.28629893530234973 0.2029351744364616
+0.33308493127952177 0.27971364537732085 0.3330849312795218 0.27971364537732085 0.21600088541600804
+0.3292456324099476 0.28484694200076943 0.3292456324099476 0.2848469420007694 0.20862786120066248
+0.3326297281805401 0.2835135349771232 0.3326297281805401 0.2835135349771232 0.21438968154750979
+0.3255503068271786 0.2900445836265963 0.3255503068271786 0.2900445836265963 0.20095073900184654
+0.3252337619328544 0.29375080132601206 0.3252337619328544 0.293750801326012 0.19877837780359361
+0.347604248743742 0.2573807711425139 0.347604248743742 0.25738077114251384 0.239315076420636
+0.3384976168682512 0.2678836768795299 0.3384976168682512 0.2678836768795299 0.22574328828566234
+0.3465618234027084 0.2608346919068785 0.3465618234027084 0.2608346919068785 0.23795699962814146
+0.3419391441639393 0.2666848186819419 0.3419391441639393 0.2666848186819419 0.23100320313082037
+0.34512556630697455 0.2645306420247851 0.34512556630697455 0.2645306420247851 0.23596677008464928
+0.3378508108437097 0.2713537640104234 0.3378508108437097 0.2713537640104234 0.22456637786355174
+0.3372115399353574 0.27495150919560174 0.3372115399353574 0.2749515091956018 0.22324876069447805
+0.36345947777267257 0.23972841435973868 0.36345947777267257 0.23972841435973868 0.2604360339228855
+0.3533214462804496 0.24975080155834278 0.35332144628044965 0.24975080155834276 0.24713803116737418
+0.3621394464380534 0.24299269629420292 0.3621394464380534 0.24299269629420292 0.25877331372600115
+0.35663817804184766 0.24938155854876248 0.35663817804184766 0.24938155854876246 0.25170565264588646
+0.361148919315685 0.24609549894272434 0.361148919315685 0.24609549894272434 0.25763558038308365
+0.3600671221584251 0.24924397243873034 0.3600671221584251 0.24924397243873034 0.25632549727167137
+0.3522041579407314 0.2533049065763122 0.3522041579407314 0.2533049065763122 0.24573605784137628
+0.35118385899677707 0.2567371678835544 0.35118385899677707 0.2567371678835544 0.24450736413920068
+0.38149441083813546 0.222889794181793 0.38149441083813546 0.22288979418179303 0.2812109930803046
+0.3698084419434991 0.23277940696145588 0.3698084419434991 0.2327794069614559 0.2683463229517163
+0.3799515799448503 0.22606761199909045 0.3799515799448503 0.22606761199909045 0.27948729073435036
+0.37346516263767265 0.2324019471776124 0.37346516263767265 0.2324019471776124 0.272444546515545
+0.37855402802740756 0.22918405801598105 0.37855402802740756 0.22918405801598105 0.27792356951021974
+0.3770841083462018 0.23189693248248655 0.3770841083462018 0.23189693248248658 0.27629107736551006
+0.36849330855806844 0.23609167149868723 0.36849330855806844 0.23609167149868723 0.26665854452946286
+0.3671544917510483 0.23940450217900477 0.3671544917510483 0.23940450217900477 0.2650213205452176
+0.41098922023494355 0.2009440162396996 0.4109892202349435 0.2009440162396996 0.29486565954364186
+0.4089179180640836 0.2037862021936812 0.4089179180640836 0.20378620219368118 0.295332387642056
+0.40693526977015165 0.20693564847442578 0.40693526977015165 0.20693564847442578 0.295508914213145
+0.40493658936121885 0.210103471215795 0.40493658936121885 0.210103471215795 0.29538199842854634
+0.4029430079024451 0.21326324927744217 0.402943007902445 0.2132632492774422 0.2949720685037012
+0.40133026989554443 0.21633126607815925 0.4013302698955444 0.21633126607815925 0.29448951356535785
+0.3868314488553621 0.21947435961797893 0.3868314488553621 0.21947435961797893 0.28596968606189144
+0.3905230527049367 0.2192879570249764 0.39052305270493676 0.2192879570249764 0.2886495533735722
+0.39418197042503234 0.21896555173345256 0.3941819704250324 0.21896555173345256 0.291013973312666
+0.39702174875562857 0.21850062606099008 0.39702174875562857 0.21850062606099008 0.29249686537334924
+0.3996298479237546 0.219394560535569 0.3996298479237546 0.21939456053556897 0.29381089170007296
+0.3851962807066936 0.22276461209225087 0.3851962807066936 0.22276461209225087 0.28439915885405403
+0.418302262423564 0.19604824852307945 0.418302262423564 0.19604824852307945 0.2921259962506575
+0.4164816744565458 0.1990507571745905 0.4164816744565458 0.1990507571745905 0.29356283328148547
+0.42239708080449523 0.19605920590319514 0.42239708080449523 0.19605920590319514 0.29041271740544344
+0.41440105838017727 0.20184555881806726 0.4144010583801773 0.20184555881806723 0.2946158556745176
+0.4518885602210121 0.17628130769694836 0.4518885602210121 0.17628130769694836 0.2443604843568278
+0.44980402623936816 0.17964809719722097 0.44980402623936816 0.17964809719722097 0.25072721731523057
+0.44772115053853095 0.18300575831475194 0.44772115053853095 0.18300575831475194 0.2567156343601357
+0.44562784207416956 0.18634783667923083 0.44562784207416956 0.18634783667923083 0.2623070504395806
+0.4435281755358967 0.18967410108427182 0.4435281755358967 0.18967410108427182 0.26747431346147316
+0.4265883540544007 0.19607415666160297 0.4265883540544007 0.19607415666160297 0.28800491822956853
+0.4308185250619598 0.1961531703036363 0.4308185250619598 0.1961531703036363 0.28491499659825914
+0.44144429326811696 0.19301997364841983 0.441444293268117 0.19301997364841983 0.27219906210260575
+0.4372289556193622 0.19303135795374438 0.4372289556193622 0.19303135795374438 0.27726334895724625
+0.4350952491486865 0.1963549323627102 0.4350952491486865 0.1963549323627102 0.2811317284387502
+0.4728072257556315 0.16951592982065192 0.4728072257556315 0.16951592982065192 0.193802236372403
+0.4581602347828197 0.17290395169071018 0.4581602347828197 0.17290395169071018 0.22965625141001952
+0.4623451023698111 0.17290457683398644 0.46234510236981113 0.17290457683398644 0.2209873844813228
+0.4665317607139931 0.17290386487675158 0.4665317607139931 0.17290386487675158 0.21165401395162028
+0.4707197223991992 0.17290070711208402 0.4707197223991992 0.17290070711208402 0.20167172840418565
+0.4560709347393053 0.1762826283937995 0.4560709347393053 0.1762826283937995 0.23666481873430464
+0.4937238805146078 0.16273776897766845 0.49372388051460786 0.16273776897766845 0.13166768793056108
+0.4790819017270429 0.16612682051107275 0.47908190172704296 0.16612682051107275 0.17504039473914093
+0.48326652322443325 0.16612563747816733 0.48326652322443325 0.16612563747816733 0.16367536938217284
+0.48744986353652336 0.16612485788442458 0.48744986353652336 0.16612485788442458 0.15182526064128365
+0.491632573331337 0.1661248213276137 0.491632573331337 0.16612482132761366 0.13953127361016518
+0.476993995413083 0.16951305984935783 0.476993995413083 0.16951305984935783 0.18305364012135608
+0.4999999999999788 0.15934801487294026 0.49999999999997874 0.15934801487294026 0.11167405609436033
+0.504184100418389 0.15934801487294026 0.504184100418389 0.15934801487294026 0.09904301405928784
+0.5083682106093329 0.15934800852012349 0.5083682106093329 0.1593480085201235 0.08628830619615856
+0.49790777021785765 0.16273792931156628 0.49790777021785765 0.16273792931156628 0.11909427662102591
+0.5313807531380554 0.14239609839709555 0.5313807531380554 0.14239609839709555 0.032740809914338094
+0.5251046025104401 0.1457864816922645 0.5251046025104401 0.1457864816922645 0.04270812965246023
+0.5292887029288503 0.1457864816922645 0.5292887029288503 0.1457864816922645 0.03498200870771102
+0.5125523012552095 0.15934801487294026 0.5125523012552095 0.15934801487294026 0.07355880295719165
+0.523012552301235 0.14917686498743343 0.523012552301235 0.14917686498743343 0.04652259759018682
+0.5209205020920299 0.15256724828260237 0.5209205020920299 0.15256724828260237 0.05082475936384492
+0.5188284518828248 0.15595763157777132 0.5188284518828247 0.15595763157777132 0.05567255396052533
+0.5167364016736197 0.15934801487294026 0.5167364016736197 0.15934801487294026 0.06109820240717944
+0.5355648535564657 0.14239609839709555 0.5355648535564655 0.14239609839709555 0.030501451708075496
+0.5397489539748759 0.14239609839709555 0.5397489539748759 0.14239609839709555 0.03360456576179683
+0.5460251046024912 0.1390057151019266 0.5460251046024912 0.1390057151019266 0.04278787049318954
+0.5439330543932861 0.14239609839709555 0.5439330543932862 0.14239609839709555 0.04094259033227304
+0.5502092050209014 0.1390057151019266 0.5502092050209014 0.1390057151019266 0.05295558356324213
+0.5564853556485168 0.13561533180675767 0.5564853556485168 0.13561533180675767 0.06653873416397137
+0.5543933054393116 0.1390057151019266 0.5543933054393116 0.1390057151019266 0.06425299097872371
+0.5627615062761321 0.13222494851158872 0.5627615062761321 0.13222494851158872 0.08104098821868587
+0.560669456066927 0.13561533180675767 0.5606694560669271 0.13561533180675767 0.07856117797987629
+0.6004184100418241 0.09154034896956142 0.6004184100418241 0.09154034896956142 0.174636185323266
+0.5941422594142087 0.09493073226473037 0.5941422594142088 0.09493073226473037 0.15656790669159584
+0.598326359832619 0.09493073226473037 0.598326359832619 0.09493073226473037 0.1697103184280908
+0.5920502092050036 0.09832111555989931 0.5920502092050036 0.09832111555989931 0.1512185811891902
+0.5899581589957985 0.10171149885506825 0.5899581589957985 0.10171149885506825 0.14576252814035973
+0.5878661087865934 0.10510188215023719 0.5878661087865934 0.10510188215023719 0.14030199494916307
+0.5815899581589781 0.10849226544540613 0.5815899581589781 0.10849226544540613 0.12142985758840354
+0.579497907949773 0.11188264874057507 0.579497907949773 0.11188264874057507 0.11632011998115303
+0.5774058577405679 0.11527303203574402 0.577405857740568 0.11527303203574402 0.11152664755506357
+0.5753138075313627 0.11866341533091296 0.5753138075313627 0.11866341533091296 0.10711035441790064
+0.5732217573221576 0.1220537986260819 0.5732217573221576 0.1220537986260819 0.10310800559326934
+0.5711297071129525 0.12544418192125084 0.5711297071129525 0.12544418192125084 0.09952797748708936
+0.5690376569037474 0.12883456521641978 0.5690376569037473 0.12883456521641978 0.09634822377550724
+0.5669456066945423 0.13222494851158872 0.5669456066945423 0.13222494851158872 0.09351711150122284
+0.5857740585773883 0.10849226544540613 0.5857740585773882 0.10849226544540613 0.1349388102430982
+0.6108786610878496 0.0813691990840546 0.6108786610878497 0.0813691990840546 0.19872626349968048
+0.6150627615062598 0.0813691990840546 0.6150627615062598 0.0813691990840546 0.21004220557828193
+0.6087866108786445 0.08475958237922354 0.6087866108786445 0.08475958237922354 0.195432826290295
+0.6066945606694394 0.08814996567439248 0.6066945606694394 0.08814996567439248 0.19161379003809434
+0.6046025104602343 0.09154034896956142 0.6046025104602343 0.09154034896956142 0.18733120892422425
+0.6359832635983109 0.054246132722703067 0.6359832635983108 0.054246132722703067 0.21898375854941657
+0.6338912133891058 0.05763651601787201 0.6338912133891058 0.05763651601787201 0.22105910730315012
+0.6317991631799007 0.06102689931304095 0.6317991631799007 0.06102689931304095 0.22272898448222203
+0.6297071129706956 0.06441728260820989 0.6297071129706956 0.06441728260820989 0.22391574683361062
+0.6276150627614905 0.06780766590337883 0.6276150627614906 0.06780766590337883 0.22455634031478802
+0.6255230125522854 0.07119804919854777 0.6255230125522854 0.07119804919854777 0.22460333094049814
+0.6234309623430803 0.07458843249371672 0.6234309623430803 0.07458843249371672 0.22402557535671816
+0.6213389121338752 0.07797881578888566 0.6213389121338752 0.07797881578888566 0.22280858387330052
+0.61924686192467 0.0813691990840546 0.6192468619246699 0.0813691990840546 0.22095460976284412
+0.6422594142259263 0.050855749427534125 0.6422594142259263 0.050855749427534125 0.22333389542990054
+0.6401673640167211 0.054246132722703067 0.6401673640167211 0.054246132722703067 0.2260437102574083
+0.6485355648535416 0.04746536613236518 0.6485355648535416 0.04746536613236518 0.2266590113262301
+0.6464435146443365 0.050855749427534125 0.6464435146443365 0.050855749427534125 0.22978037048596364
+0.6548117154811569 0.04407498283719624 0.6548117154811569 0.04407498283719624 0.22936575166659748
+0.6527196652719518 0.04746536613236518 0.6527196652719517 0.04746536613236518 0.2326543935383352
+0.6610878661087722 0.0406845995420273 0.6610878661087723 0.0406845995420273 0.2318814361878229
+0.6589958158995671 0.04407498283719624 0.6589958158995671 0.04407498283719624 0.23509332125548396
+0.6673640167363876 0.03729421624685836 0.6673640167363876 0.03729421624685836 0.23461206826709677
+0.6652719665271825 0.0406845995420273 0.6652719665271825 0.0406845995420273 0.23752698208652942
+0.675732217573208 0.030513449656520475 0.675732217573208 0.030513449656520475 0.23594270475250131
+0.6736401673640029 0.03390383295168942 0.6736401673640029 0.03390383295168942 0.23789996818370865
+0.6715481171547978 0.03729421624685836 0.6715481171547978 0.03729421624685836 0.24034317085531579
+0.6820083682008233 0.027123066361351533 0.6820083682008233 0.027123066361351533 0.24066828542749572
+0.6799163179916182 0.030513449656520475 0.6799163179916182 0.030513449656520475 0.24198939942216183
+0.6882845188284387 0.02373268306618259 0.6882845188284387 0.02373268306618259 0.24634161726062673
+0.6861924686192336 0.027123066361351533 0.6861924686192334 0.027123066361351533 0.24700828120508425
+0.694560669456054 0.02034229977101365 0.6945606694560541 0.02034229977101365 0.25293006885594554
+0.6924686192468489 0.02373268306618259 0.6924686192468489 0.02373268306618259 0.2529703901479818
+0.7008368200836693 0.01695191647584471 0.7008368200836693 0.01695191647584471 0.26032847414969473
+0.6987447698744642 0.02034229977101365 0.6987447698744642 0.02034229977101365 0.25979652441869416
+0.7071129707112846 0.013561533180675767 0.7071129707112846 0.013561533180675767 0.26839332932060694
+0.7050209205020795 0.01695191647584471 0.7050209205020795 0.01695191647584471 0.2673476996352457
+0.7133891213389 0.010171149885506825 0.7133891213389 0.010171149885506825 0.27697432609673195
+0.7112970711296949 0.013561533180675767 0.711297071129695 0.013561533180675767 0.275460961845295
+0.7196652719665153 0.006780766590337883 0.7196652719665152 0.006780766590337883 0.2859365394497871
+0.7175732217573102 0.010171149885506825 0.7175732217573102 0.010171149885506825 0.283979307773998
+0.7238493723849255 0.006780766590337883 0.7238493723849255 0.006780766590337883 0.2927702575054303
+0.006780766590337709 0.7280334728033457 0.006780766590337709 0.7280334728033457 0.1462637947420098
+0.006780766590337709 0.7322175732217557 0.006780766590337709 0.7322175732217557 0.14477513547893342
+0.01017114988550656 0.7217573221757307 0.01017114988550656 0.7217573221757307 0.1488434350523349
+0.01017114988550656 0.7259414225941407 0.01017114988550656 0.7259414225941407 0.14754305936173606
+0.013561533180675408 0.7154811715481157 0.013561533180675408 0.7154811715481157 0.15131371855475598
+0.013561533180675408 0.7196652719665257 0.013561533180675408 0.7196652719665257 0.15016203251692062
+0.016951916475844264 0.7092050209205008 0.016951916475844264 0.7092050209205008 0.15367889153694178
+0.016951916475844264 0.7133891213389107 0.016951916475844264 0.7133891213389107 0.1526253508355759
+0.02034229977101312 0.7029288702928858 0.02034229977101312 0.7029288702928858 0.15596901226128768
+0.02034229977101312 0.7071129707112958 0.02034229977101312 0.7071129707112958 0.1549512739100953
+0.02373268306618197 0.6966527196652708 0.02373268306618197 0.6966527196652708 0.1582462352964309
+0.02373268306618197 0.7008368200836808 0.02373268306618197 0.7008368200836808 0.15719102047267672
+0.027123066361350822 0.6903765690376558 0.027123066361350822 0.6903765690376558 0.1606055752212496
+0.027123066361350822 0.6945606694560658 0.027123066361350822 0.6945606694560658 0.1594318477926304
+0.030513449656519673 0.6841004184100408 0.030513449656519673 0.6841004184100408 0.163168999098627
+0.030513449656519673 0.6882845188284508 0.030513449656519673 0.6882845188284508 0.16179374400914973
+0.033903832951688535 0.6778242677824258 0.033903832951688535 0.6778242677824258 0.16607267596259953
+0.033903832951688535 0.6820083682008358 0.033903832951688535 0.6820083682008358 0.16441902911383424
+0.03729421624685738 0.6757322175732208 0.03729421624685738 0.6757322175732208 0.16745535714297696
+0.040684599542026224 0.6694560669456058 0.040684599542026224 0.6694560669456058 0.17103420142644968
+0.040684599542026224 0.6736401673640158 0.040684599542026224 0.6736401673640158 0.16885417731676775
+0.0440749828371951 0.6631799163179908 0.0440749828371951 0.6631799163179908 0.17524850537852107
+0.0440749828371951 0.6673640167364008 0.0440749828371951 0.6673640167364008 0.1726703336660578
+0.04746536613236394 0.6569037656903758 0.04746536613236394 0.6569037656903758 0.18013408832408495
+0.04746536613236394 0.6610878661087858 0.04746536613236394 0.6610878661087858 0.17717036183385257
+0.05085574942753279 0.6506276150627608 0.05085574942753279 0.6506276150627608 0.1856589492857559
+0.05085574942753279 0.6548117154811708 0.05085574942753279 0.6548117154811708 0.18235870429746928
+0.05424613272270165 0.6443514644351458 0.054246132722701644 0.6443514644351458 0.1917227387228021
+0.05424613272270165 0.6485355648535558 0.054246132722701644 0.6485355648535558 0.18816707334227153
+0.05763651601787049 0.6380753138075308 0.05763651601787049 0.6380753138075308 0.1981660972887641
+0.05763651601787049 0.6422594142259408 0.05763651601787049 0.6422594142259408 0.19445980605692006
+0.06102689931303934 0.6359832635983258 0.06102689931303934 0.6359832635983258 0.2010484007937706
+0.06441728260820821 0.6338912133891208 0.06441728260820821 0.6338912133891208 0.20392034064741518
+0.06780766590337706 0.6317991631799158 0.06780766590337706 0.6317991631799158 0.2067536781930512
+0.0711980491985459 0.6297071129707108 0.0711980491985459 0.6297071129707108 0.2095194613145228
+0.07458843249371476 0.6276150627615058 0.07458843249371476 0.6276150627615058 0.21218905773620947
+0.07797881578888362 0.6255230125523008 0.07797881578888362 0.6255230125523008 0.21473523248254686
+0.08136919908405248 0.6192468619246858 0.08136919908405248 0.6192468619246858 0.22078025736704324
+0.08475958237922132 0.6171548117154808 0.08475958237922132 0.6171548117154808 0.2229047789582744
+0.09493073226472787 0.6025104602510458 0.09493073226472787 0.6025104602510458 0.23337631784211155
+0.10171149885506564 0.5941422594142258 0.10171149885506563 0.5941422594142258 0.23712548432551836
+0.10510188215023453 0.5920502092050208 0.10510188215023453 0.5920502092050208 0.2376753254762389
+0.11188264874057234 0.5836820083682008 0.11188264874057234 0.5836820083682008 0.24002914969089129
+0.11527303203574124 0.5815899581589958 0.11527303203574124 0.5815899581589958 0.24043681747056422
+0.11866341533091013 0.5794979079497908 0.11866341533091011 0.5794979079497908 0.24092834786758055
+0.12205379862607901 0.5732217573221758 0.12205379862607901 0.5732217573221758 0.2429762749352101
+0.12544418192124793 0.5711297071129708 0.12544418192124793 0.5711297071129708 0.243885685933562
+0.1288345652164168 0.5690376569037658 0.1288345652164168 0.5690376569037658 0.24503758556451508
+0.12205379862607901 0.5774058577405858 0.12205379862607901 0.5774058577405858 0.24155232532699675
+0.10849226544540343 0.5899581589958158 0.10849226544540343 0.5899581589958158 0.23813437489095257
+0.11188264874057234 0.5878661087866108 0.11188264874057234 0.5878661087866108 0.23854776596945945
+0.09832111555989675 0.6004184100418408 0.09832111555989675 0.6004184100418408 0.23436464785659158
+0.10171149885506564 0.5983263598326358 0.10171149885506563 0.5983263598326358 0.2351730875367297
+0.08814996567439015 0.6108786610878658 0.08814996567439015 0.6108786610878658 0.22794952488262796
+0.08814996567439015 0.6150627615062758 0.08814996567439015 0.6150627615062758 0.22482426524255028
+0.09154034896955902 0.6087866108786608 0.09154034896955902 0.6087866108786608 0.22951118114203936
+0.09493073226472787 0.6066945606694558 0.09493073226472787 0.6066945606694558 0.23085414755958825
+0.08136919908405248 0.6234309623430958 0.08136919908405248 0.6234309623430958 0.2171332215594585
+0.14239609839711106 0.5481171548117477 0.14239609839711106 0.5481171548117477 0.2591571504546751
+0.14239609839708728 0.5523012552301418 0.1423960983970873 0.5523012552301418 0.2570040827485766
+0.14578648169231942 0.5460251046025356 0.14578648169231942 0.5460251046025356 0.2622380141947253
+0.14917686498755164 0.5439330543932447 0.14917686498755164 0.5439330543932447 0.26552327861955427
+0.15256724828183946 0.533472803347456 0.15256724828183946 0.533472803347456 0.2736331210588769
+0.15256724828237447 0.5376569037650268 0.15256724828237447 0.5376569037650268 0.2713916468488801
+0.15256724828276774 0.5418410041837829 0.15256724828276777 0.5418410041837829 0.2689668024180453
+0.13222494851158575 0.5627615062761506 0.13222494851158575 0.5627615062761507 0.24821103792567548
+0.13561533180675447 0.5606694560669453 0.13561533180675447 0.5606694560669453 0.2501000280738941
+0.13900571510192242 0.5585774058577392 0.13900571510192242 0.5585774058577392 0.2522878947511016
+0.14239609839708842 0.5564853556485346 0.14239609839708842 0.5564853556485346 0.25476318454319574
+0.13222494851158573 0.5669456066945608 0.13222494851158573 0.5669456066945608 0.2464585332614522
+0.32157270721418557 0.302561874333864 0.32157270721418557 0.302561874333864 0.18806988914707046
+0.3183629833632596 0.30406746530503764 0.3183629833632596 0.30406746530503764 0.1822363079204562
+0.31517016543493986 0.3056321252000479 0.31517016543493986 0.30563212520004784 0.17655052062953855
+0.3119824561907096 0.3072455161711259 0.3119824561907096 0.3072455161711259 0.17102402230557914
+0.30879612856084343 0.3088889747952811 0.30879612856084343 0.30888897479528105 0.16568769137919806
+0.3056122037299447 0.31055318696768924 0.3056122037299447 0.31055318696768924 0.16057452938065844
+0.302436141829693 0.31224783850171867 0.302436141829693 0.31224783850171867 0.1557084529654296
+0.2992505068329416 0.31399718291250955 0.2992505068329416 0.3139971829125096 0.15107508655804677
+0.2961420029214716 0.3158871749316072 0.2961420029214716 0.3158871749316072 0.14671335537936178
+0.29308175908582396 0.31787905977595404 0.29308175908582396 0.31787905977595404 0.14265416854733684
+0.2900322400077338 0.31985776811654254 0.2900322400077338 0.3198577681165426 0.13897592446512577
+0.2869313523471166 0.3217981256477761 0.2869313523471166 0.32179812564777605 0.13566843595483338
+0.28379252810680644 0.3236885327854438 0.2837925281068064 0.3236885327854438 0.13277451956547992
+0.28056585331336287 0.3255248885900408 0.28056585331336287 0.3255248885900408 0.13029140140302378
+0.2770626588670827 0.32760009857010014 0.27706265886708265 0.32760009857010014 0.1280996372399604
+0.2747368967977849 0.3306660506913277 0.27473689679778485 0.3306660506913277 0.12644730852170394
+0.27186440321479205 0.33292126351772255 0.27186440321479205 0.33292126351772255 0.12543818726365286
+0.2689113122658565 0.33498682008866587 0.26891131226585646 0.33498682008866587 0.12489439601375542
+0.2659488664449527 0.3370296944062913 0.2659488664449527 0.3370296944062913 0.12480935697965516
+0.26295348723004003 0.3390382755298202 0.26295348723004003 0.3390382755298202 0.12516606398016542
+0.2599592135692075 0.3409109007755918 0.2599592135692075 0.3409109007755918 0.12590508286042887
+0.2569610932199038 0.34274388061652106 0.2569610932199038 0.34274388061652106 0.12701300450849876
+0.25760181600029197 0.34605007804450394 0.25760181600029197 0.34605007804450394 0.12812753777368746
+0.2546436374280562 0.34781231150999126 0.25464363742805624 0.3478123115099913 0.12987092528449162
+0.2519029529691382 0.3496742537171028 0.25190295296913817 0.34967425371710276 0.1318162110627454
+0.24911921203639653 0.35214866932030553 0.24911921203639653 0.35214866932030553 0.13448360353508837
+0.23760214860648643 0.3613151119183976 0.23760214860648646 0.36131511191839755 0.14761305996831206
+0.24044429881351778 0.35915377145149857 0.24044429881351778 0.35915377145149857 0.1441158929926085
+0.24335094986746583 0.35681894120754043 0.24335094986746583 0.35681894120754043 0.14063685909412602
+0.24623960223073818 0.3544984498343151 0.24623960223073818 0.3544984498343151 0.13742636190823576
+0.23770809021007594 0.3641969065958796 0.23770809021007594 0.3641969065958796 0.15048363947387894
+0.21964725354043255 0.3817915734418389 0.21964725354043255 0.3817915734418389 0.18119484899902336
+0.23572363908653937 0.3666104261884305 0.23572363908653937 0.3666104261884305 0.15416336405522954
+0.22234690146235223 0.37923826021484636 0.22234690146235223 0.37923826021484636 0.17649575068626389
+0.22503068878670543 0.376703417958677 0.22503068878670543 0.376703417958677 0.17186156332202615
+0.23309884680311777 0.36912570253059895 0.2330988468031178 0.36912570253059895 0.15838604554775484
+0.23042088733137114 0.3716059541404842 0.23042088733137114 0.3716059541404842 0.16272565697751376
+0.22772134965016397 0.3741577722910577 0.22772134965016397 0.3741577722910577 0.1672616998550613
+0.20512214132189566 0.4043531755023301 0.20512214132189568 0.4043531755023301 0.21817229927582948
+0.22071570997814857 0.38507317375053063 0.22071570997814857 0.38507317375053063 0.18499240135295816
+0.20663689645608685 0.40177794405208034 0.20663689645608682 0.4017779440520803 0.2141453098218833
+0.20877062995103102 0.3989284116901724 0.20877062995103102 0.3989284116901724 0.209392525171596
+0.21101348070167564 0.39603728687472584 0.21101348070167567 0.3960372868747259 0.20449320372654387
+0.21336807013397463 0.39321999467865537 0.21336807013397463 0.39321999467865537 0.19959362668094527
+0.21818270294724032 0.3877383073963232 0.21818270294724032 0.3877383073963232 0.18984529985560247
+0.21575435272503682 0.39046340562848836 0.21575435272503682 0.39046340562848836 0.19471343329988908
+0.18967849452918925 0.42253969478563214 0.18967849452918925 0.42253969478563214 0.24579081289311847
+0.18968130728665536 0.42673331324692737 0.18968130728665536 0.42673331324692737 0.2510877772536712
+0.19299683764250755 0.4204084558219885 0.19299683764250755 0.42040845582198844 0.24273749691100824
+0.19621700337014253 0.418279891798539 0.1962170033701425 0.418279891798539 0.23947739356097072
+0.19887785897301097 0.41637298863700156 0.19887785897301097 0.41637298863700156 0.2363546861175724
+0.20029527140442188 0.41271616603341504 0.2002952714044219 0.41271616603341504 0.2312366428763186
+0.20312762630521294 0.40955889941435686 0.20312762630521294 0.40955889941435686 0.2260707167083165
+0.20546761344894135 0.40718978319981697 0.20546761344894135 0.40718978319981697 0.22206104975287663
+0.17965031689447974 0.441416386050691 0.17965031689447974 0.44141638605069106 0.26732136285430913
+0.18300742776976023 0.4393116343115045 0.18300742776976023 0.4393116343115045 0.2656723911502164
+0.18636240583547417 0.43303262978351004 0.18636240583547417 0.43303262978351004 0.2587649223920501
+0.18969977427341375 0.4309383063699417 0.18969977427341375 0.4309383063699417 0.25635540279119473
+0.1863540650709982 0.43721139727939523 0.1863540650709982 0.43721139727939523 0.2637285332998886
+0.17964312507126556 0.4456034143499588 0.17964312507126556 0.4456034143499588 0.2717543689962257
+0.17289262453392387 0.4581580843867256 0.17289262453392387 0.4581580843867256 0.2809732857640968
+0.17963316059927867 0.4497932537608218 0.17963316059927867 0.4497932537608218 0.2760262967174926
+0.1762598071186102 0.4560716612345246 0.1762598071186102 0.4560716612345246 0.2807067894539103
+0.1796197989124162 0.4539853493570783 0.1796197989124162 0.4539853493570783 0.28010243735514706
+0.1728925730961082 0.46234050945312233 0.1728925730961082 0.4623405094531224 0.2843167509537286
+0.16273835438132425 0.4853555819901449 0.16273835438132425 0.4853555819901449 0.2897705672284423
+0.16951428123190523 0.4686175949331091 0.16951428123190523 0.4686175949331091 0.2868135646562508
+0.17289249944937546 0.46652345181665816 0.17289249944937546 0.46652345181665816 0.28739731799766516
+0.16612764371039976 0.47489444560368516 0.16612764371039976 0.47489444560368516 0.28816253306853673
+0.16951356181656507 0.4728006872966109 0.16951356181656507 0.4728006872966109 0.2893467732272601
+0.166127652158315 0.47907828215101445 0.16612765215831501 0.47907828215101445 0.29013124315811195
+0.16612780396965113 0.4832626122902433 0.16612780396965113 0.4832626122902433 0.2917706673615412
+0.15934801487439862 0.5000000000012595 0.15934801487439862 0.5000000000012595 0.28900458298614157
+0.159348014872177 0.5041841004271937 0.159348014872177 0.5041841004271937 0.28883468575266796
+0.1627383917965601 0.489539739194541 0.1627383917965601 0.489539739194541 0.29083394145983604
+0.16273839815961139 0.493723849367987 0.16273839815961136 0.493723849367987 0.291549343356921
+0.16273839816968774 0.49790794979197583 0.16273839816968774 0.49790794979197583 0.2919093406924551
+0.1593480148659947 0.5083682008449584 0.1593480148659947 0.5083682008449584 0.2883251697178802
+0.15934801486644318 0.5125523012505901 0.1593480148664432 0.5125523012505901 0.2874815409884847
+0.15595763157927633 0.5188284518781406 0.15595763157927633 0.5188284518781406 0.2827209366888053
+0.15934801487376507 0.5167364016691219 0.15934801487376507 0.5167364016691219 0.2863128421415275
+0.1559576315803687 0.5230125523015804 0.1559576315803687 0.5230125523015804 0.28118274110506075
+0.1559576315783738 0.5271966527226835 0.1559576315783738 0.5271966527226835 0.27937376375657336
+0.15595763157674075 0.5313807531394824 0.15595763157674078 0.5313807531394824 0.27731277508044117
+0.3249651860398098 0.2974360252243328 0.3249651860398098 0.2974360252243328 0.1964433754409042
+0.3247759476811578 0.30110660679492196 0.3247759476811578 0.30110660679492196 0.19400452708214497
+0.33659507668876604 0.2786055381497609 0.33659507668876604 0.2786055381497609 0.22178086109567582
+0.3288905966910853 0.2886467687174992 0.3288905966910853 0.2886467687174992 0.2067596806349116
+0.3360528564705898 0.282308878876817 0.3360528564705898 0.28230887887681705 0.2202128254428122
+0.3322318023243019 0.28729561822691313 0.3322318023243019 0.28729561822691313 0.21261876843585648
+0.3355928457970636 0.2860312348101393 0.3355928457970636 0.2860312348101393 0.2185312643043921
+0.3285519493460347 0.29236997154551464 0.3285519493460347 0.29236997154551464 0.2046921899877783
+0.3282471888377505 0.29605023665937574 0.3282471888377505 0.29605023665937574 0.20244687369815437
+0.3501793770714902 0.26019394375867766 0.3501793770714902 0.2601939437586776 0.24330529427566897
+0.34133579758703614 0.2701920225340232 0.34133579758703614 0.27019202253402325 0.23004528246901615
+0.34915630959012334 0.26369823112148877 0.34915630959012334 0.26369823112148877 0.24203103894534062
+0.3448173115546066 0.26884946546915794 0.34481731155460654 0.26884946546915794 0.23553106451186556
+0.34824924733563406 0.2675572621071306 0.34824924733563406 0.26755726210713066 0.24090136117367456
+0.3406844768457325 0.2738381270196845 0.3406844768457325 0.2738381270196845 0.2288548235720074
+0.3400571776496908 0.2774945102485446 0.3400571776496908 0.2774945102485446 0.22752168865748204
+0.36582723495296815 0.24263866577832102 0.36582723495296815 0.24263866577832102 0.26348977549228136
+0.35570186068472537 0.25270627249045474 0.35570186068472537 0.25270627249045474 0.2506516323044325
+0.36455715364016356 0.24585944274918042 0.36455715364016356 0.24585944274918045 0.2621097683016769
+0.3591367236868586 0.2523084339279627 0.3591367236868586 0.2523084339279627 0.25544557649196103
+0.3634645818995788 0.24920787718978604 0.3634645818995788 0.24920787718978607 0.26103753050869655
+0.36185264409803486 0.2515368135906988 0.36185264409803486 0.2515368135906988 0.25906641581413664
+0.3547222313502499 0.25607394945994927 0.3547222313502499 0.25607394945994927 0.24959200828710168
+0.35375770387144967 0.25950491133921466 0.35375770387144967 0.25950491133921466 0.24856599109064212
+0.3835866326637376 0.22600264902929393 0.3835866326637376 0.22600264902929393 0.2828203646363932
+0.37212062211348174 0.23577366824339901 0.3721206221134818 0.23577366824339904 0.2708764020347891
+0.3819964528651034 0.2291675504658235 0.3819964528651034 0.2291675504658235 0.28125780419499996
+0.37573458827829587 0.23532946411614553 0.37573458827829587 0.23532946411614555 0.27490314560252194
+0.3804987997208689 0.23235211449966803 0.3804987997208689 0.23235211449966806 0.27979960619289357
+0.3787962673798021 0.2346310489498446 0.3787962673798021 0.2346310489498446 0.27806485187498486
+0.3709544109441484 0.23902285324919126 0.3709544109441483 0.23902285324919123 0.26958286426595296
+0.3695165368711899 0.24229607382067278 0.3695165368711899 0.24229607382067278 0.2680746025854602
+0.4126163834594412 0.2044132933760365 0.4126163834594411 0.2044132933760365 0.2953391260190688
+0.4106530892321905 0.20732049385877152 0.4106530892321905 0.20732049385877152 0.2958213573059841
+0.40866480472254607 0.21037211008193682 0.4086648047225461 0.21037211008193682 0.2960121450322866
+0.40667432135319176 0.21346819022039218 0.40667432135319176 0.21346819022039218 0.2959361354942534
+0.4047226867290452 0.2164961735949708 0.4047226867290452 0.21649617359497084 0.29563472324475765
+0.4028282880361399 0.21959119606948202 0.40282828803613985 0.21959119606948205 0.2951334598094572
+0.3889114907100588 0.22260948153304425 0.3889114907100588 0.22260948153304425 0.2873232007482098
+0.39268506533229175 0.22238730719256675 0.39268506533229175 0.22238730719256675 0.28998218027014694
+0.39683000032260235 0.22194506600608263 0.39683000032260235 0.22194506600608263 0.2925453917018271
+0.4011211887137458 0.2229263087588288 0.4011211887137458 0.22292630875882885 0.2947106670582647
+0.38726918258106274 0.225909394908581 0.38726918258106274 0.225909394908581 0.2859413121631376
+0.42037635702492976 0.19909491307299765 0.42037635702492976 0.19909491307299765 0.2923076135455717
+0.4183484858946988 0.20202709722625958 0.4183484858946988 0.20202709722625958 0.2937838939087829
+0.42444591492039363 0.19919679119262287 0.42444591492039363 0.19919679119262287 0.2904192851316047
+0.4163505933025738 0.20486156780663214 0.4163505933025738 0.20486156780663214 0.2948895602702813
+0.45398376877750063 0.1796491638611166 0.45398376877750063 0.1796491638611166 0.24336812669752475
+0.4519042132802091 0.18299853712312797 0.4519042132802091 0.18299853712312797 0.24970854479724205
+0.449820736441351 0.18633736467454948 0.44982073644135095 0.18633736467454945 0.2556739509107894
+0.4477048080269211 0.1896457115826511 0.4477048080269211 0.1896457115826511 0.2612701730156532
+0.4456058075257454 0.19293852650385737 0.4456058075257454 0.19293852650385737 0.26641410597201065
+0.4285445650513398 0.19927666022561033 0.4285445650513398 0.19927666022561033 0.2878689053379504
+0.4329280965673808 0.19934550995153333 0.4329280965673808 0.19934550995153333 0.2843987140980429
+0.44357138585018574 0.19626606340511074 0.4435713858501858 0.19626606340511074 0.2710729461070309
+0.43938312805556884 0.19643127584861328 0.43938312805556884 0.19643127584861328 0.27649979489633
+0.4372222190597107 0.20019238179486215 0.43722221905971065 0.20019238179486212 0.2806344552639146
+0.4749078468750508 0.1728949445288623 0.4749078468750508 0.1728949445288623 0.19106357061999593
+0.4602559030647708 0.17628601141734943 0.46025590306477077 0.17628601141734943 0.2282739606034183
+0.4644441984736127 0.17628653215613324 0.4644441984736127 0.17628653215613324 0.21918919385847335
+0.46863359873484156 0.1762817756375886 0.4686335987348416 0.1762817756375886 0.20942608974617907
+0.4728228817419362 0.1762716544896604 0.4728228817419362 0.1762716544896604 0.19900534089714564
+0.4581662843710548 0.17965943508306922 0.45816628437105483 0.17965943508306922 0.23530162840379173
+0.4958157195790194 0.16612548536044944 0.4958157195790194 0.16612548536044944 0.12684076359740024
+0.48117922390166085 0.16950957992906115 0.48117922390166085 0.16950957992906115 0.17174635442863442
+0.4853618262183599 0.16950676447339608 0.4853618262183598 0.16950676447339608 0.1599185808648321
+0.48954308969675875 0.16950579731213758 0.48954308969675875 0.16950579731213758 0.14760745105436837
+0.49372483679069795 0.16950700914851757 0.49372483679069795 0.16950700914851757 0.13485418016274142
+0.47909398556242544 0.17288755412228204 0.4790939855624254 0.17288755412228204 0.17986175259072523
+0.5020918571054649 0.16273811408891972 0.5020918571054649 0.16273811408891972 0.1062403322833081
+0.5062760983913165 0.16273821519622328 0.5062760983913165 0.1627382151962233 0.09319494359765006
+0.5104604268277747 0.16273818606322632 0.5104604268277747 0.16273818606322632 0.08008431071207416
+0.49999956031874376 0.16612651072036702 0.49999956031874376 0.16612651072036702 0.11381427202290599
+0.5334728033472605 0.1457864816922645 0.5334728033472605 0.1457864816922645 0.031104411600592213
+0.5271966527196452 0.14917686498743343 0.5271966527196453 0.14917686498743343 0.037675403817078464
+0.5313807531380554 0.14917686498743343 0.5313807531380554 0.14917686498743343 0.03213467252759237
+0.5146443514644146 0.1627383981681092 0.5146443514644146 0.1627383981681092 0.06710741514777181
+0.5251046025104401 0.15256724828260237 0.5251046025104401 0.15256724828260237 0.04092023483748327
+0.523012552301235 0.15595763157777132 0.523012552301235 0.15595763157777132 0.04479693538655557
+0.5209205020920299 0.15934801487294026 0.5209205020920299 0.15934801487294026 0.049355364699014685
+0.5188284597582996 0.16273836531441377 0.5188284597582996 0.16273836531441377 0.05461100746207744
+0.5376569037656708 0.1457864816922645 0.5376569037656708 0.1457864816922645 0.03263040988454307
+0.541841004184081 0.1457864816922645 0.541841004184081 0.1457864816922645 0.03902247920015473
+0.5481171548116963 0.14239609839709555 0.5481171548116963 0.14239609839709555 0.0507667141826868
+0.5460251046024912 0.1457864816922645 0.5460251046024912 0.1457864816922645 0.04844210440234694
+0.5523012552301065 0.14239609839709555 0.5523012552301064 0.14239609839709555 0.06193893526787766
+0.5585774058577219 0.1390057151019266 0.5585774058577219 0.1390057151019266 0.07620774446773824
+0.5564853556485168 0.14239609839709555 0.5564853556485168 0.14239609839709555 0.073869271028841
+0.5648535564853372 0.13561533180675767 0.5648535564853372 0.13561533180675767 0.0909572612117127
+0.5627615062761321 0.1390057151019266 0.5627615062761321 0.1390057151019266 0.08857189152991794
+0.6025104602510292 0.09493073226473037 0.6025104602510291 0.09493073226473037 0.18266017814933097
+0.5962343096234138 0.09832111555989931 0.5962343096234138 0.09832111555989931 0.1645299615409511
+0.6004184100418241 0.09832111555989931 0.6004184100418241 0.09832111555989931 0.1776870970591957
+0.5941422594142087 0.10171149885506825 0.5941422594142088 0.10171149885506825 0.1591926011939884
+0.5920502092050036 0.10510188215023719 0.5920502092050036 0.10510188215023719 0.1538006505298102
+0.5899581589957985 0.10849226544540613 0.5899581589957985 0.10849226544540613 0.1484577347832374
+0.5836820083681832 0.11188264874057507 0.5836820083681832 0.11188264874057507 0.1297696612337601
+0.5815899581589781 0.11527303203574402 0.5815899581589781 0.11527303203574402 0.1248807060975242
+0.579497907949773 0.11866341533091296 0.579497907949773 0.11866341533091296 0.12034181998739783
+0.5774058577405679 0.1220537986260819 0.577405857740568 0.1220537986260819 0.11620101670943957
+0.5753138075313627 0.12544418192125084 0.5753138075313627 0.12544418192125084 0.11247980681676299
+0.5732217573221576 0.12883456521641978 0.5732217573221576 0.12883456521641978 0.10917034015561201
+0.5711297071129525 0.13222494851158872 0.5711297071129525 0.13222494851158872 0.10623503828912229
+0.5690376569037474 0.13561533180675767 0.5690376569037473 0.13561533180675767 0.10360902882985468
+0.5878661087865934 0.11188264874057507 0.5878661087865934 0.11188264874057507 0.14326423652636847
+0.6129707112970547 0.08475958237922354 0.6129707112970547 0.08475958237922354 0.20714875332859103
+0.6171548117154649 0.08475958237922354 0.6171548117154649 0.08475958237922354 0.21848248017731883
+0.6108786610878496 0.08814996567439248 0.6108786610878497 0.08814996567439248 0.20369850027104477
+0.6087866108786445 0.09154034896956142 0.6087866108786445 0.09154034896956142 0.19974796870212685
+0.6066945606694394 0.09493073226473037 0.6066945606694394 0.09493073226473037 0.19536745034624323
+0.638075313807516 0.05763651601787201 0.638075313807516 0.05763651601787201 0.22847498894068888
+0.6359832635983109 0.06102689931304095 0.6359832635983108 0.06102689931304095 0.23053282996747496
+0.6338912133891058 0.06441728260820989 0.6338912133891058 0.06441728260820989 0.23213450684551698
+0.6317991631799007 0.06780766590337883 0.6317991631799007 0.06780766590337883 0.233211105025784
+0.6297071129706956 0.07119804919854777 0.6297071129706956 0.07119804919854777 0.2337087272283548
+0.6276150627614905 0.07458843249371672 0.6276150627614906 0.07458843249371672 0.23358933418335548
+0.6255230125522854 0.07797881578888566 0.6255230125522854 0.07797881578888566 0.23283127239030366
+0.6234309623430803 0.0813691990840546 0.6234309623430803 0.0813691990840546 0.23142952320716395
+0.6213389121338752 0.08475958237922354 0.6213389121338752 0.08475958237922354 0.22939569022365824
+0.6443514644351314 0.054246132722703067 0.6443514644351315 0.054246132722703067 0.23276990420888619
+0.6422594142259263 0.05763651601787201 0.6422594142259263 0.05763651601787201 0.2355207290876201
+0.6506276150627467 0.050855749427534125 0.6506276150627467 0.050855749427534125 0.23596682400175464
+0.6485355648535416 0.054246132722703067 0.6485355648535416 0.054246132722703067 0.23919097703776296
+0.656903765690362 0.04746536613236518 0.656903765690362 0.04746536613236518 0.23848060504684557
+0.6548117154811569 0.050855749427534125 0.6548117154811569 0.050855749427534125 0.24193383570523475
+0.6631799163179773 0.04407498283719624 0.6631799163179773 0.04407498283719624 0.24075159427757373
+0.6610878661087722 0.04746536613236518 0.6610878661087723 0.04746536613236518 0.24418681005939877
+0.6694560669455927 0.0406845995420273 0.6694560669455926 0.0406845995420273 0.24320183923337788
+0.6673640167363876 0.04407498283719624 0.6673640167363876 0.04407498283719624 0.2463934344231867
+0.6778242677824131 0.03390383295168942 0.6778242677824132 0.03390383295168942 0.24384646726915218
+0.675732217573208 0.03729421624685836 0.675732217573208 0.03729421624685836 0.24618982880989382
+0.6736401673640029 0.0406845995420273 0.6736401673640029 0.0406845995420273 0.24895665144290402
+0.6841004184100284 0.030513449656520475 0.6841004184100284 0.030513449656520475 0.24822914398075438
+0.6820083682008233 0.03390383295168942 0.6820083682008233 0.03390383295168942 0.2499724846067359
+0.6903765690376438 0.027123066361351533 0.6903765690376438 0.027123066361351533 0.25356133026202293
+0.6882845188284387 0.030513449656520475 0.6882845188284387 0.030513449656520475 0.2546833193988817
+0.6966527196652591 0.02373268306618259 0.6966527196652591 0.02373268306618259 0.25980251464429965
+0.694560669456054 0.027123066361351533 0.6945606694560541 0.027123066361351533 0.260332228689824
+0.7029288702928744 0.02034229977101365 0.7029288702928743 0.02034229977101365 0.26683019675032954
+0.7008368200836693 0.02373268306618259 0.7008368200836693 0.02373268306618259 0.26682623105007236
+0.7092050209204898 0.01695191647584471 0.7092050209204898 0.01695191647584471 0.2744770138838654
+0.7071129707112846 0.02034229977101365 0.7071129707112846 0.02034229977101365 0.2740044685691347
+0.7154811715481051 0.013561533180675767 0.7154811715481051 0.013561533180675767 0.28256668172227273
+0.7133891213389 0.01695191647584471 0.7133891213389 0.01695191647584471 0.28167765781941584
+0.7217573221757204 0.010171149885506825 0.7217573221757204 0.010171149885506825 0.29094117361617383
+0.7196652719665153 0.013561533180675767 0.7196652719665152 0.013561533180675767 0.2896627115975143
+0.7280334728033357 0.006780766590337883 0.7280334728033359 0.006780766590337883 0.29947507907420073
+0.7259414225941306 0.010171149885506825 0.7259414225941306 0.010171149885506825 0.29780623681571683
+0.006780766590337709 0.7364016736401657 0.006780766590337709 0.7364016736401657 0.14314944616436123
+0.01017114988550656 0.7301255230125507 0.01017114988550656 0.7301255230125507 0.1461327293658281
+0.01017114988550656 0.7343096234309607 0.01017114988550656 0.7343096234309607 0.14459219069327126
+0.013561533180675408 0.7238493723849357 0.013561533180675408 0.7238493723849357 0.1489337040492931
+0.013561533180675408 0.7280334728033457 0.013561533180675408 0.7280334728033457 0.14760467973144462
+0.016951916475844264 0.7175732217573207 0.016951916475844264 0.7175732217573207 0.1515341507488727
+0.016951916475844264 0.7217573221757307 0.016951916475844264 0.7217573221757307 0.15037844484034799
+0.02034229977101312 0.7112970711297057 0.02034229977101312 0.7112970711297057 0.15393936690357865
+0.02034229977101312 0.7154811715481157 0.02034229977101312 0.7154811715481157 0.15290502388400637
+0.02373268306618197 0.7050209205020908 0.02373268306618197 0.7050209205020908 0.15618762066086864
+0.02373268306618197 0.7092050209205008 0.02373268306618197 0.7092050209205008 0.15520814664308338
+0.027123066361350822 0.6987447698744758 0.027123066361350822 0.6987447698744758 0.15835539065483076
+0.027123066361350822 0.7029288702928858 0.027123066361350822 0.7029288702928858 0.15735090700507334
+0.030513449656519673 0.6924686192468608 0.030513449656519673 0.6924686192468608 0.16055669959509075
+0.030513449656519673 0.6966527196652708 0.030513449656519673 0.6966527196652708 0.15943765641505636
+0.033903832951688535 0.6861924686192458 0.033903832951688535 0.6861924686192458 0.162935405744053
+0.033903832951688535 0.6903765690376558 0.033903832951688535 0.6903765690376558 0.16160916611314977
+0.03729421624685738 0.6799163179916308 0.03729421624685738 0.6799163179916308 0.16565028165261927
+0.03729421624685738 0.6841004184100408 0.03729421624685738 0.6841004184100408 0.16403031814324745
+0.040684599542026224 0.6778242677824258 0.040684599542026224 0.6778242677824258 0.1668708275009518
+0.0440749828371951 0.6715481171548108 0.0440749828371951 0.6715481171548108 0.1702812546776051
+0.0440749828371951 0.6757322175732208 0.0440749828371951 0.6757322175732208 0.1680939837620611
+0.04746536613236394 0.6652719665271958 0.04746536613236394 0.6652719665271958 0.17436839718402933
+0.04746536613236394 0.6694560669456058 0.04746536613236394 0.6694560669456058 0.1717512697228318
+0.05085574942753279 0.6589958158995808 0.05085574942753279 0.6589958158995808 0.17917519483528718
+0.05085574942753279 0.6631799163179908 0.05085574942753279 0.6631799163179908 0.17613966639020687
+0.05424613272270165 0.6527196652719658 0.054246132722701644 0.6527196652719658 0.18466973439496837
+0.05424613272270165 0.6569037656903758 0.054246132722701644 0.6569037656903758 0.18126704916457467
+0.05763651601787049 0.6464435146443508 0.05763651601787049 0.6464435146443508 0.19074571278812205
+0.05763651601787049 0.6506276150627608 0.05763651601787049 0.6506276150627608 0.18706183596948997
+0.06102689931303934 0.6401673640167358 0.06102689931303934 0.6401673640167358 0.19723372638389025
+0.06102689931303934 0.6443514644351458 0.06102689931303934 0.6443514644351458 0.19337992507797283
+0.06441728260820821 0.6380753138075308 0.06441728260820821 0.6380753138075308 0.20002150402857444
+0.06780766590337706 0.6359832635983258 0.06780766590337706 0.6359832635983258 0.20279764994634444
+0.0711980491985459 0.6338912133891208 0.0711980491985459 0.6338912133891208 0.20553500767378766
+0.07458843249371476 0.6317991631799158 0.07458843249371476 0.6317991631799158 0.2082057212942953
+0.07797881578888362 0.6297071129707108 0.07797881578888362 0.6297071129707108 0.21078229233594215
+0.08136919908405248 0.6276150627615058 0.08136919908405248 0.6276150627615058 0.2132386726752196
+0.08475958237922132 0.6213389121338908 0.08475958237922132 0.6213389121338908 0.21936175772043578
+0.08814996567439015 0.6192468619246858 0.08814996567439015 0.6192468619246858 0.2214040086627405
+0.09832111555989675 0.6046025104602508 0.09832111555989675 0.6046025104602508 0.23198960388452225
+0.10510188215023453 0.5962343096234308 0.10510188215023453 0.5962343096234308 0.23583193319069795
+0.10849226544540343 0.5941422594142258 0.10849226544540343 0.5941422594142258 0.23637745544100008
+0.11527303203574124 0.5857740585774058 0.11527303203574124 0.5857740585774058 0.23896349191696717
+0.11866341533091013 0.5836820083682008 0.11866341533091011 0.5836820083682008 0.23943066575725377
+0.12205379862607901 0.5815899581589958 0.12205379862607901 0.5815899581589958 0.2399976020615642
+0.12544418192124793 0.5753138075313808 0.12544418192124793 0.5753138075313808 0.24235328676083498
+0.1288345652164168 0.5732217573221758 0.1288345652164168 0.5732217573221758 0.24336972381143465
+0.13222494851158573 0.5711297071129708 0.13222494851158573 0.5711297071129708 0.24463230987294418
+0.12544418192124793 0.5794979079497908 0.12544418192124793 0.5794979079497908 0.24070980809832068
+0.11188264874057234 0.5920502092050208 0.11188264874057234 0.5920502092050208 0.23685086897170374
+0.11527303203574124 0.5899581589958158 0.11527303203574124 0.5899581589958158 0.23729702324670218
+0.10171149885506564 0.6025104602510458 0.10171149885506563 0.6025104602510458 0.23293583654930786
+0.10510188215023453 0.6004184100418408 0.10510188215023453 0.6004184100418408 0.23371794990547531
+0.09154034896955902 0.6129707112970708 0.09154034896955902 0.6129707112970708 0.2265313586337616
+0.09154034896955902 0.6171548117154808 0.09154034896955902 0.6171548117154808 0.22324839246223213
+0.09493073226472787 0.6108786610878658 0.09493073226472787 0.6108786610878658 0.22802517557869253
+0.09832111555989675 0.6087866108786608 0.09832111555989675 0.6087866108786608 0.22931164740993873
+0.08475958237922132 0.6255230125523008 0.08475958237922132 0.6255230125523008 0.21555134339492552
+0.1457864816922633 0.550209205020964 0.1457864816922633 0.550209205020964 0.25992215101047483
+0.14578648169225158 0.5543933054393374 0.14578648169225158 0.5543933054393374 0.2575041749698342
+0.14917686498746582 0.5481171548117955 0.14917686498746582 0.5481171548117955 0.2630616316460846
+0.15256724828272025 0.5460251046025896 0.15256724828272025 0.5460251046025896 0.26638026356726613
+0.15595763157702155 0.5355648535558079 0.15595763157702155 0.5355648535558079 0.2750205004446267
+0.15595763157784484 0.5397489539740862 0.15595763157784484 0.5397489539740862 0.27251908631876937
+0.1559576315780331 0.5439330543932247 0.1559576315780331 0.5439330543932247 0.2698315158900901
+0.1356153318067547 0.5648535564853557 0.1356153318067547 0.5648535564853557 0.24816494758832577
+0.13900571510192364 0.5627615062761502 0.13900571510192364 0.5627615062761501 0.2501624197796737
+0.14239609839709222 0.5606694560669437 0.14239609839709222 0.5606694560669437 0.2524456235883674
+0.1457864816922589 0.5585774058577363 0.1457864816922589 0.5585774058577363 0.254998826715843
+0.1356153318067546 0.5690376569037658 0.13561533180675459 0.5690376569037658 0.2461624867215054
+0.3246572911002154 0.30475887566474247 0.3246572911002154 0.3047588756647425 0.1914705297093713
+0.321481125879895 0.30623024939153565 0.321481125879895 0.30623024939153565 0.18544194442162965
+0.31831492699680297 0.3077533031672254 0.3183149269968029 0.30775330316722543 0.17955296146314292
+0.3151536987711966 0.3093262708499538 0.31515369877119653 0.3093262708499538 0.17381861404550888
+0.31199066461653685 0.31093773810806324 0.31199066461653685 0.3109377381080632 0.1682618820131513
+0.3088384531975748 0.31258238896930307 0.3088384531975748 0.31258238896930307 0.1629294175021093
+0.30571382772656486 0.3142649575683036 0.3057138277265649 0.3142649575683036 0.1578610757872773
+0.3025982659650652 0.31599857856882463 0.3025982659650652 0.31599857856882463 0.1530458142259752
+0.29949842419106126 0.31780466081361636 0.29949842419106126 0.3178046608136164 0.148495213071721
+0.2964306307356617 0.3196911528772382 0.2964306307356617 0.3196911528772382 0.1442501010307912
+0.29337535412458204 0.3216210281443272 0.29337535412458204 0.3216210281443272 0.14035060517703546
+0.29031290891954037 0.3235575845651533 0.29031290891954037 0.3235575845651533 0.1368376369127897
+0.2872271546888275 0.32549063977734394 0.2872271546888275 0.3254906397773439 0.13373407137214133
+0.28408889949180505 0.32743109287693367 0.2840888994918051 0.32743109287693367 0.1310523798757911
+0.2809952178812767 0.32946093293434325 0.2809952178812767 0.32946093293434325 0.12882800008693038
+0.27811418532159055 0.33180972012011284 0.27811418532159055 0.33180972012011284 0.1270091142013592
+0.2752902573312755 0.3342150482158694 0.2752902573312755 0.3342150482158694 0.1257503641460899
+0.2723787347825673 0.3364215573116866 0.2723787347825673 0.3364215573116866 0.12504195517024821
+0.26942788181538974 0.33853576091717036 0.26942788181538974 0.33853576091717036 0.12483325508330433
+0.26642311829768434 0.340612256997858 0.26642311829768434 0.340612256997858 0.12511054567076338
+0.26339265106668125 0.3426389725503874 0.26339265106668125 0.3426389725503874 0.12584468631254572
+0.2605917059468574 0.34444461310028435 0.2605917059468574 0.34444461310028435 0.12688557744138154
+0.26023014918070214 0.34719306884443957 0.26023014918070214 0.34719306884443957 0.12791463817018708
+0.2582289467048371 0.34918196828946924 0.2582289467048371 0.34918196828946924 0.12941944424189814
+0.25539115361108644 0.3511728249714314 0.25539115361108644 0.3511728249714314 0.13145918596213815
+0.2526101778348603 0.35342223725266536 0.25261017783486034 0.35342223725266536 0.13395592699884265
+0.24977847068237388 0.35570086392329475 0.24977847068237388 0.35570086392329475 0.1368210370416876
+0.24097209870671216 0.3629601762823888 0.24097209870671213 0.3629601762823888 0.14756148081671008
+0.24402360400660805 0.3602774816960423 0.24402360400660808 0.3602774816960423 0.14343449362957303
+0.24691545203207546 0.35798198387784463 0.24691545203207546 0.35798198387784463 0.13998677424866493
+0.24284012931747573 0.3657111147844768 0.24284012931747573 0.3657111147844768 0.14931498294463985
+0.23961013490299435 0.3669286117975055 0.23961013490299438 0.3669286117975056 0.152413040699413
+0.22334911243853192 0.3825355365532769 0.22334911243853192 0.3825355365532768 0.1802664869880752
+0.23682848839176981 0.36977010433076196 0.23682848839176981 0.36977010433076196 0.15708767878501875
+0.22599003269102705 0.3800783457773714 0.22599003269102705 0.3800783457773714 0.17566447355815748
+0.22866878133465707 0.3775694431664273 0.22866878133465707 0.3775694431664273 0.17100529051853577
+0.2340888527053109 0.3724647059717769 0.2340888527053109 0.3724647059717769 0.16174594070000506
+0.23137471746980254 0.375019486074585 0.2313747174698025 0.375019486074585 0.16634015509438252
+0.20772857931790403 0.4048380443160655 0.20772857931790403 0.40483804431606546 0.21798683326769644
+0.22433226022953165 0.3856484384726162 0.22433226022953165 0.3856484384726162 0.18389499560302747
+0.22193911362306598 0.3883249255724226 0.22193911362306598 0.3883249255724226 0.18878825281490186
+0.20996439465556196 0.40212278449762423 0.20996439465556196 0.40212278449762423 0.21338348110100877
+0.21229195722783128 0.3993384126673879 0.21229195722783126 0.39933841266738795 0.20856030649003768
+0.21465390189348643 0.39655009641632527 0.2146539018934864 0.39655009641632527 0.20365382949005897
+0.21705966777805571 0.39378103605274134 0.21705966777805571 0.39378103605274134 0.19870048521112302
+0.21950183851615448 0.39103713620288905 0.21950183851615448 0.39103713620288905 0.1937330109824749
+0.19300262670582038 0.42461408244988513 0.19300262670582038 0.42461408244988513 0.2482153873246382
+0.19299267706161122 0.4288179108135701 0.19299267706161125 0.42881791081357007 0.25364867460354773
+0.1963307843257929 0.42242765016786343 0.1963307843257929 0.42242765016786343 0.2449998493107635
+0.20886384261857896 0.40786369697826186 0.20886384261857896 0.4078636969782618 0.22192088803181567
+0.19990801629520122 0.42017930153759153 0.1999080162952012 0.4201793015375915 0.24149013621744
+0.20219085048162544 0.41658594656701275 0.20219085048162544 0.41658594656701275 0.23603911831167665
+0.2043663625852541 0.4133628915791454 0.2043663625852541 0.4133628915791454 0.23106835260017153
+0.20667629088846526 0.41049954834439495 0.20667629088846526 0.41049954834439495 0.22636794748191957
+0.1830012032939873 0.4434951091809179 0.1830012032939873 0.4434951091809179 0.2703232307497847
+0.18633961059387075 0.4413817240123404 0.18633961059387075 0.4413817240123404 0.26857263532182835
+0.18972563528720307 0.43513050087119604 0.18972563528720307 0.43513050087119604 0.2615293439151145
+0.1930768631889965 0.433076159597352 0.1930768631889965 0.433076159597352 0.2590966219636736
+0.18966593787686534 0.43928198270961344 0.18966593787686534 0.43928198270961344 0.26654432037472414
+0.18299455909039666 0.4476853450965868 0.18299455909039666 0.4476853450965868 0.27482989313570155
+0.17625648154499707 0.4602532920127426 0.17625648154499707 0.4602532920127426 0.2842999422511981
+0.18298003106464256 0.45188705862382395 0.18298003106464256 0.451887058623824 0.279157951129176
+0.17960794361634358 0.45817346483235194 0.17960794361634358 0.45817346483235194 0.2839462373129031
+0.1829532035899196 0.4560942385208961 0.1829532035899196 0.4560942385208961 0.28326187262728414
+0.17625539018070582 0.4644332451179621 0.17625539018070582 0.4644332451179621 0.28763241976532555
+0.16612791488370096 0.4874472212274588 0.16612791488370096 0.4874472212274588 0.2930638179049936
+0.17289173012006986 0.47070589651394673 0.17289173012006986 0.47070589651394673 0.2901868012027932
+0.17625501400315777 0.4686129197978519 0.17625501400315777 0.4686129197978519 0.2906766606677205
+0.16951340242749105 0.47698316101680643 0.16951340242749105 0.47698316101680643 0.2915663462023159
+0.1728908665800933 0.4748873655386483 0.1728908665800933 0.47488736553864824 0.2926602383428127
+0.1695139263016645 0.48116654699152156 0.1695139263016645 0.48116654699152156 0.29345203976855755
+0.16951444653161107 0.48535202679465744 0.16951444653161107 0.48535202679465744 0.2949850453327046
+0.16273839816931082 0.5020920502246187 0.16273839816931082 0.5020920502246186 0.2919102256850748
+0.1627383981582141 0.5062761506473578 0.1627383981582141 0.5062761506473578 0.2915520156961359
+0.16612784901437364 0.49163166701042393 0.16612784901437364 0.4916316670104239 0.2939970619765413
+0.1661275371811283 0.49581559528681335 0.1661275371811283 0.49581559528681335 0.29456079643224903
+0.1661272343452468 0.4999993746387592 0.1661272343452468 0.49999937463875915 0.29474977120000684
+0.16273821741280833 0.5104601239369317 0.16273821741280833 0.5104601239369319 0.2908383129162196
+0.1627382290848949 0.5146442543654854 0.1627382290848949 0.5146442543654856 0.28977682949771316
+0.15934801487714323 0.5209205020925963 0.15934801487714323 0.5209205020925963 0.2848315131981902
+0.16273810370231015 0.5188282862060746 0.16273810370231015 0.5188282862060746 0.288378406015813
+0.15934801487520017 0.5251046025171641 0.1593480148752002 0.5251046025171641 0.2830530830301993
+0.15934800851362982 0.5292886931780112 0.15934800851362982 0.5292886931780112 0.28099584125994004
+0.1593480148714182 0.5334728033474178 0.15934801487141817 0.5334728033474178 0.27868046438829147
+0.3279934567308898 0.29970051931925046 0.3279934567308898 0.2997005193192504 0.20005797886417223
+0.32782222296716146 0.3033315890625439 0.32782222296716146 0.3033315890625439 0.19759057363806895
+0.3394708561024515 0.2811602479633481 0.3394708561024515 0.2811602479633481 0.22604941589724106
+0.33186921396991087 0.2910257136576601 0.33186921396991087 0.2910257136576601 0.21067066653142355
+0.33895560915275097 0.28483430971601287 0.33895560915275097 0.28483430971601287 0.22446315316845736
+0.3351836656535871 0.28973320831259913 0.3351836656535871 0.28973320831259913 0.21668753550756656
+0.338506536803653 0.2885031199741134 0.338506536803653 0.2885031199741133 0.2227430827734241
+0.33153672775850596 0.2947055050020479 0.33153672775850596 0.2947055050020479 0.2085392145962918
+0.3312436368464608 0.2983463413618846 0.3312436368464608 0.2983463413618846 0.20624559781920518
+0.3528123125165604 0.2630079345837973 0.35281231251656037 0.2630079345837973 0.24754912822770317
+0.3441480565803226 0.2726648687946624 0.3441480565803226 0.2726648687946624 0.23445262851308632
+0.3518711867460081 0.2666761355715635 0.3518711867460081 0.2666761355715635 0.24649677561925262
+0.347603120343353 0.27148999009260244 0.347603120343353 0.27148999009260244 0.24001400381732088
+0.35108962719351117 0.27043604375039737 0.35108962719351117 0.27043604375039737 0.24558689004940912
+0.343507231109069 0.2763731377516173 0.343507231109069 0.27637313775161726 0.23325723520746952
+0.3428884709111499 0.280042463463147 0.3428884709111499 0.28004246346314693 0.23190204325559174
+0.3681410000137608 0.24553937826030198 0.3681410000137608 0.24553937826030195 0.2667050513409546
+0.3582038570349759 0.2554014415481791 0.3582038570349759 0.2554014415481791 0.2545294717385289
+0.3668180970884724 0.24897236322815017 0.3668180970884724 0.24897236322815017 0.2655053701470222
+0.36166456458247154 0.25465039441782766 0.3616645645824716 0.2546503944178276 0.25931224884100795
+0.3650701301162287 0.2525572583058303 0.3650701301162287 0.25255725830583037 0.2638124234530986
+0.3572978175696689 0.2587747984958404 0.3572978175696689 0.2587747984958404 0.25371018220729685
+0.35636977368324013 0.262276116213282 0.35636977368324013 0.262276116213282 0.25286691172021264
+0.38563410654710895 0.2291519883681387 0.38563410654710895 0.2291519883681387 0.2845562604384888
+0.37476741768045646 0.23854257361852305 0.37476741768045646 0.23854257361852307 0.27397179941305727
+0.3839677979815992 0.23238530399828883 0.3839677979815992 0.23238530399828883 0.2831616484637507
+0.3786051303051451 0.23787061987434513 0.37860513030514514 0.23787061987434516 0.278179991754721
+0.38205871024849886 0.2357061137765777 0.38205871024849886 0.2357061137765777 0.28155524744162036
+0.38177687934503646 0.23885911032147578 0.38177687934503646 0.23885911032147575 0.2815202222524486
+0.37322934207882347 0.24187631637711807 0.37322934207882347 0.24187631637711807 0.27251311065302897
+0.3718374551663613 0.24521703673632578 0.3718374551663613 0.24521703673632578 0.2712930834575342
+0.41438642154267863 0.20772192133936748 0.41438642154267863 0.20772192133936748 0.29569481640037604
+0.4123965172788077 0.21069617339198018 0.4123965172788077 0.21069617339198018 0.2962217229131472
+0.4103925925548555 0.21374749481062927 0.41039259255485555 0.21374749481062927 0.29648389985841644
+0.40838624684904 0.21682664234157864 0.40838624684904 0.21682664234157864 0.2965092717793261
+0.40642369373888976 0.2198858869533783 0.4064236937388897 0.21988588695337832 0.2963423651816805
+0.4044162552735451 0.22216592398590934 0.404416255273545 0.22216592398590934 0.2958396059745575
+0.3909836806522116 0.22578243506280138 0.3909836806522116 0.2257824350628014 0.2888048167774518
+0.3947096558644012 0.2256563124950493 0.3947096558644012 0.22565631249504928 0.29136787497036787
+0.4042387424967104 0.22506681511018156 0.4042387424967104 0.22506681511018156 0.29616053413397186
+0.3984605252433616 0.225784795266122 0.3984605252433617 0.22578479526612202 0.2936134989083597
+0.40153959917990323 0.22623190991339454 0.40153959917990323 0.22623190991339454 0.29513265032962277
+0.38932241192612915 0.22908390475622353 0.38932241192612915 0.2290839047562235 0.28763375031180877
+0.4222827236498814 0.2021873784182384 0.4222827236498814 0.2021873784182384 0.2923824817354114
+0.42019796966210476 0.20512354871050809 0.42019796966210476 0.20512354871050809 0.29391509495119245
+0.42625302540286203 0.20234734166540078 0.42625302540286203 0.20234734166540078 0.29037688772778486
+0.4181506886815882 0.2080430097045579 0.41815068868158817 0.20804300970455794 0.29509778114064544
+0.4560712222434602 0.18301723862540661 0.4560712222434602 0.18301723862540661 0.2420261787103227
+0.4540169033557919 0.18632443715383262 0.454016903355792 0.18632443715383262 0.24829515844902542
+0.45189709492300373 0.18963712331701363 0.45189709492300373 0.18963712331701363 0.25431415787446987
+0.449744360955046 0.19293192809855997 0.44974436095504605 0.19293192809855997 0.259970860062094
+0.44764095821088123 0.19608825573040395 0.4476409582108812 0.19608825573040398 0.2650636578438636
+0.4302334743010426 0.20254299157886602 0.4302334743010426 0.202542991578866 0.2877671919291767
+0.4340172486817231 0.20272467988664883 0.4340172486817231 0.20272467988664886 0.28467960097906286
+0.43708794176073346 0.2037814488297714 0.4370879417607335 0.2037814488297714 0.2820313963701271
+0.44561832596087564 0.19940052824626475 0.44561832596087564 0.19940052824626475 0.26974084708567386
+0.4417356938907428 0.19971543556506433 0.4417356938907428 0.19971543556506433 0.27514857287058353
+0.44020194824439407 0.20296846549981606 0.4402019482443941 0.20296846549981606 0.27837768089676956
+0.47701117886192673 0.17625842013996654 0.47701117886192673 0.17625842013996654 0.18795367225543716
+0.4623558503199809 0.17966709768125697 0.4623558503199809 0.17966709768125697 0.2265116539174374
+0.4665467273244879 0.1796610895917998 0.4665467273244879 0.1796610895917998 0.21701111592680197
+0.4707385812420792 0.17964451066434775 0.4707385812420792 0.17964451066434775 0.20681882156015272
+0.47493382712434135 0.17962360799721896 0.47493382712434135 0.17962360799721896 0.19595174802888618
+0.46026158895018265 0.1830512654476545 0.4602615889501827 0.1830512654476545 0.23358468913852648
+0.49790780478853974 0.16950973641003084 0.49790780478853974 0.16950973641003084 0.12171163638883369
+0.4832767779864415 0.17288077627183232 0.4832767779864415 0.17288077627183232 0.1681034272450946
+0.48745720070907766 0.17287710367668216 0.48745720070907766 0.17287710367668216 0.15582481735864476
+0.49163742606982774 0.17287792730176574 0.49163742606982774 0.17287792730176574 0.14306307981540897
+0.4958191199420028 0.17288246632589233 0.49581911994200284 0.17288246632589233 0.12986269981052415
+0.48119677782344855 0.1762452174224245 0.48119677782344855 0.1762452174224245 0.17630658103650174
+0.5041840008108861 0.1661273387439666 0.5041840008108861 0.1661273387439666 0.10053046913722317
+0.5083690686963401 0.1661274732845534 0.5083690686963401 0.16612747328455343 0.08709661237501244
+0.5125539898107315 0.16612731847841525 0.5125539898107315 0.16612731847841525 0.07367635710898213
+0.5020922831612281 0.16951244881838812 0.5020922831612281 0.16951244881838812 0.10824771948820834
+0.5355648535564657 0.14917686498743343 0.5355648535564655 0.14917686498743343 0.031845573284082766
+0.5292887029288503 0.15256724828260237 0.5292887029288503 0.15256724828260237 0.03374314086583924
+0.5334728033472605 0.15256724828260237 0.5334728033472605 0.15256724828260237 0.0314166273340094
+0.5167385732040054 0.1661268833222878 0.5167385732040054 0.16612688332228778 0.060541247875409106
+0.5271966527196452 0.15595763157777132 0.5271966527196453 0.15595763157777132 0.03607544324084495
+0.5251046025104401 0.15934801487294026 0.5251046025104401 0.15934801487294026 0.03923988732558981
+0.5230125831652808 0.16273824735769504 0.5230125831652809 0.16273824735769504 0.04328830640855746
+0.520922525536874 0.1661263028168426 0.520922525536874 0.1661263028168426 0.048210287087480035
+0.5397489539748759 0.14917686498743343 0.5397489539748759 0.14917686498743343 0.03703212488502925
+0.5439330543932861 0.14917686498743343 0.5439330543932862 0.14917686498743343 0.04592618622862088
+0.5502092050209014 0.1457864816922645 0.5502092050209014 0.1457864816922645 0.05949454519190884
+0.5481171548116963 0.14917686498743343 0.5481171548116963 0.14917686498743343 0.05683453711703901
+0.5543933054393116 0.1457864816922645 0.5543933054393116 0.1457864816922645 0.07143622131925685
+0.560669456066927 0.14239609839709555 0.5606694560669271 0.14239609839709555 0.0862526801766925
+0.5585774058577219 0.1457864816922645 0.5585774058577219 0.1457864816922645 0.08388799044333282
+0.5669456066945423 0.1390057151019266 0.5669456066945423 0.1390057151019266 0.10120515076214291
+0.5648535564853372 0.14239609839709555 0.5648535564853372 0.14239609839709555 0.09892079964125834
+0.6046025104602343 0.09832111555989931 0.6046025104602343 0.09832111555989931 0.19063943327264846
+0.598326359832619 0.10171149885506825 0.598326359832619 0.10171149885506825 0.17250744612286195
+0.6025104602510292 0.10171149885506825 0.6025104602510291 0.10171149885506825 0.18565656446729464
+0.5962343096234138 0.10510188215023719 0.5962343096234138 0.10510188215023719 0.16722298318628628
+0.5941422594142087 0.10849226544540613 0.5941422594142088 0.10849226544540613 0.16193827193690577
+0.5920502092050036 0.11188264874057507 0.5920502092050036 0.11188264874057507 0.15675649337053257
+0.5857740585773883 0.11527303203574402 0.5857740585773882 0.11527303203574402 0.13831216438747285
+0.5836820083681832 0.11866341533091296 0.5836820083681832 0.11866341533091296 0.13367957375663295
+0.5815899581589781 0.1220537986260819 0.5815899581589781 0.1220537986260819 0.12942497999086586
+0.579497907949773 0.12544418192125084 0.579497907949773 0.12544418192125084 0.12558241388731464
+0.5774058577405679 0.12883456521641978 0.577405857740568 0.12883456521641978 0.12215789124149747
+0.5753138075313627 0.13222494851158872 0.5753138075313627 0.13222494851158872 0.11912801251950879
+0.5732217573221576 0.13561533180675767 0.5732217573221576 0.13561533180675767 0.11644113117500358
+0.5711297071129525 0.1390057151019266 0.5711297071129525 0.1390057151019266 0.11402107972286367
+0.5899581589957985 0.11527303203574402 0.5899581589957985 0.11527303203574402 0.15177457376209832
+0.6150627615062598 0.08814996567439248 0.6150627615062598 0.08814996567439248 0.21542716625122083
+0.61924686192467 0.08814996567439248 0.6192468619246699 0.08814996567439248 0.22675772498481536
+0.6129707112970547 0.09154034896956142 0.6129707112970547 0.09154034896956142 0.21183907247392098
+0.6108786610878496 0.09493073226473037 0.6108786610878497 0.09493073226473037 0.20778300783750292
+0.6087866108786445 0.09832111555989931 0.6087866108786445 0.09832111555989931 0.20333678377948347
+0.6401673640167211 0.06102689931304095 0.6401673640167211 0.06102689931304095 0.23793472598662088
+0.638075313807516 0.06441728260820989 0.638075313807516 0.06441728260820989 0.23992483696898761
+0.6359832635983109 0.06780766590337883 0.6359832635983108 0.06780766590337883 0.24141686999339226
+0.6338912133891058 0.07119804919854777 0.6338912133891058 0.07119804919854777 0.24235087780766493
+0.6317991631799007 0.07458843249371672 0.6317991631799007 0.07458843249371672 0.24268217211248908
+0.6297071129706956 0.07797881578888566 0.6297071129706956 0.07797881578888566 0.24238202184948507
+0.6276150627614905 0.0813691990840546 0.6276150627614906 0.0813691990840546 0.2414380693365914
+0.6255230125522854 0.08475958237922354 0.6255230125522854 0.08475958237922354 0.23985448209112084
+0.6234309623430803 0.08814996567439248 0.6234309623430803 0.08814996567439248 0.23765184240863493
+0.6464435146443365 0.05763651601787201 0.6464435146443365 0.05763651601787201 0.2422192260087397
+0.6443514644351314 0.06102689931304095 0.6443514644351315 0.06102689931304095 0.24495131083377167
+0.6527196652719518 0.054246132722703067 0.6527196652719517 0.054246132722703067 0.24534309022732306
+0.6506276150627467 0.05763651601787201 0.6506276150627467 0.05763651601787201 0.24860135114927343
+0.6589958158995671 0.050855749427534125 0.6589958158995671 0.050855749427534125 0.24772820605928067
+0.656903765690362 0.054246132722703067 0.656903765690362 0.054246132722703067 0.2512694895552723
+0.6652719665271825 0.04746536613236518 0.6652719665271825 0.04746536613236518 0.24982615432940922
+0.6631799163179773 0.050855749427534125 0.6631799163179773 0.050855749427534125 0.25340197923904656
+0.6715481171547978 0.04407498283719624 0.6715481171547978 0.04407498283719624 0.25207264916276256
+0.6694560669455927 0.04746536613236518 0.6694560669455926 0.04746536613236518 0.2554542627539573
+0.6799163179916182 0.03729421624685836 0.6799163179916182 0.03729421624685836 0.25219441955945543
+0.6778242677824131 0.0406845995420273 0.6778242677824132 0.0406845995420273 0.25483955338133674
+0.675732217573208 0.04407498283719624 0.675732217573208 0.04407498283719624 0.2578421065650725
+0.6861924686192336 0.03390383295168942 0.6861924686192334 0.03390383295168942 0.25630706052773805
+0.6841004184100284 0.03729421624685836 0.6841004184100284 0.03729421624685836 0.25839351590274645
+0.6924686192468489 0.030513449656520475 0.6924686192468489 0.030513449656520475 0.26136444416604526
+0.6903765690376438 0.03390383295168942 0.6903765690376438 0.03390383295168942 0.2628708784193643
+0.6987447698744642 0.027123066361351533 0.6987447698744642 0.027123066361351533 0.2673160534997016
+0.6966527196652591 0.030513449656520475 0.6966527196652591 0.030513449656520475 0.2682752598701443
+0.7050209205020795 0.02373268306618259 0.7050209205020795 0.02373268306618259 0.27402029510658465
+0.7029288702928744 0.027123066361351533 0.7029288702928743 0.027123066361351533 0.27449789546868275
+0.7112970711296949 0.02034229977101365 0.711297071129695 0.02034229977101365 0.2812843115458738
+0.7092050209204898 0.02373268306618259 0.7092050209204898 0.02373268306618259 0.281354285073319
+0.7175732217573102 0.01695191647584471 0.7175732217573102 0.01695191647584471 0.28890406422602477
+0.7154811715481051 0.02034229977101365 0.7154811715481051 0.02034229977101365 0.2886270227413394
+0.7238493723849255 0.013561533180675767 0.7238493723849255 0.013561533180675767 0.29669633364109643
+0.7217573221757204 0.01695191647584471 0.7217573221757204 0.01695191647584471 0.29610487046659956
+0.732217573221746 0.006780766590337883 0.732217573221746 0.006780766590337883 0.3059942892707337
+0.7301255230125409 0.010171149885506825 0.7301255230125409 0.010171149885506825 0.3045178233874109
+0.7280334728033357 0.013561533180675767 0.7280334728033359 0.013561533180675767 0.30361105401462135
+0.7364016736401562 0.006780766590337883 0.7364016736401561 0.006780766590337883 0.3122701268111627
+0.006780766590337709 0.7405857740585757 0.006780766590337709 0.7405857740585757 0.1413710026981678
+0.006780766590337709 0.7447698744769857 0.006780766590337709 0.7447698744769857 0.13942730891691443
+0.01017114988550656 0.7384937238493707 0.01017114988550656 0.7384937238493707 0.1429039024662461
+0.013561533180675408 0.7322175732217557 0.013561533180675408 0.7322175732217557 0.14615294554843558
+0.013561533180675408 0.7364016736401657 0.013561533180675408 0.7364016736401657 0.14455903588483351
+0.016951916475844264 0.7259414225941407 0.016951916475844264 0.7259414225941407 0.1491325594414614
+0.016951916475844264 0.7301255230125507 0.016951916475844264 0.7301255230125507 0.1477726242556812
+0.02034229977101312 0.7196652719665257 0.02034229977101312 0.7196652719665257 0.15182007024497834
+0.02034229977101312 0.7238493723849357 0.02034229977101312 0.7238493723849357 0.15065717136176374
+0.02373268306618197 0.7133891213389107 0.02373268306618197 0.7133891213389107 0.15422351709280865
+0.02373268306618197 0.7175732217573207 0.02373268306618197 0.7175732217573207 0.15320429345012168
+0.027123066361350822 0.7071129707112958 0.027123066361350822 0.7071129707112958 0.1563904790892381
+0.027123066361350822 0.7112970711297057 0.027123066361350822 0.7112970711297057 0.15544442650757676
+0.030513449656519673 0.7008368200836808 0.030513449656519673 0.7008368200836808 0.15841234575380977
+0.030513449656519673 0.7050209205020908 0.030513449656519673 0.7050209205020908 0.1574532158616501
+0.033903832951688535 0.6945606694560658 0.033903832951688535 0.6945606694560658 0.1604223755279914
+0.033903832951688535 0.6987447698744758 0.033903832951688535 0.6987447698744758 0.15935236058792826
+0.03729421624685738 0.6882845188284508 0.03729421624685738 0.6882845188284508 0.16258635857326922
+0.03729421624685738 0.6924686192468608 0.03729421624685738 0.6924686192468608 0.16130342161964495
+0.040684599542026224 0.6820083682008358 0.040684599542026224 0.6820083682008358 0.1650856573729211
+0.040684599542026224 0.6861924686192458 0.040684599542026224 0.6861924686192458 0.16349376090715315
+0.0440749828371951 0.6799163179916308 0.0440749828371951 0.6799163179916308 0.16611507707320683
+0.04746536613236394 0.6736401673640158 0.04746536613236394 0.6736401673640158 0.16933695371461902
+0.04746536613236394 0.6778242677824258 0.04746536613236394 0.6778242677824258 0.16713744799656557
+0.05085574942753279 0.6673640167364008 0.05085574942753279 0.6673640167364008 0.17327993631260696
+0.05085574942753279 0.6715481171548108 0.05085574942753279 0.6715481171548108 0.17061927016452708
+0.05424613272270165 0.6610878661087858 0.054246132722701644 0.6610878661087858 0.1779938765019113
+0.05424613272270165 0.6652719665271958 0.054246132722701644 0.6652719665271958 0.17488244073072748
+0.05763651601787049 0.6548117154811708 0.05763651601787049 0.6548117154811708 0.18344663306860134
+0.05763651601787049 0.6589958158995808 0.05763651601787049 0.6589958158995808 0.17993796594967135
+0.06102689931303934 0.6485355648535558 0.06102689931303934 0.6485355648535558 0.18952559801972377
+0.06102689931303934 0.6527196652719658 0.06102689931303934 0.6527196652719658 0.18571059159143213
+0.06441728260820821 0.6422594142259408 0.06441728260820821 0.6422594142259408 0.19605104983798236
+0.06441728260820821 0.6464435146443508 0.06441728260820821 0.6464435146443508 0.19204742721472923
+0.06780766590337706 0.6401673640167358 0.06780766590337706 0.6401673640167358 0.1987371433863432
+0.0711980491985459 0.6380753138075308 0.0711980491985459 0.6380753138075308 0.20141365321301552
+0.07458843249371476 0.6359832635983258 0.07458843249371476 0.6359832635983258 0.20405428621841235
+0.07797881578888362 0.6338912133891208 0.07797881578888362 0.6338912133891208 0.20663201665891842
+0.08136919908405248 0.6317991631799158 0.08136919908405248 0.6317991631799158 0.20912017671199037
+0.08475958237922132 0.6297071129707108 0.08475958237922132 0.6297071129707108 0.21149357351904643
+0.08814996567439015 0.6234309623430958 0.08814996567439015 0.6234309623430958 0.2177003340391738
+0.09154034896955902 0.6213389121338908 0.09154034896955902 0.6213389121338908 0.21967014185435144
+0.10171149885506564 0.6066945606694558 0.10171149885506563 0.6066945606694558 0.23040364110152067
+0.10849226544540343 0.5983263598326358 0.10849226544540343 0.5983263598326358 0.234367307171645
+0.11188264874057234 0.5962343096234308 0.11188264874057234 0.5962343096234308 0.2349206923773728
+0.11866341533091013 0.5878661087866108 0.11866341533091011 0.5878661087866108 0.2377628400751742
+0.12205379862607901 0.5857740585774058 0.12205379862607901 0.5857740585774058 0.23829554570929654
+0.12544418192124793 0.5836820083682008 0.12544418192124793 0.5836820083682008 0.2389407694592561
+0.1288345652164168 0.5774058577405858 0.1288345652164168 0.5774058577405858 0.24160799572823702
+0.13222494851158573 0.5753138075313808 0.13222494851158573 0.5753138075313808 0.24272624189055061
+0.1356153318067546 0.5732217573221758 0.13561533180675459 0.5732217573221758 0.2440904302648866
+0.1288345652164168 0.5815899581589958 0.1288345652164168 0.5815899581589958 0.2397406047089996
+0.11527303203574124 0.5941422594142258 0.11527303203574124 0.5941422594142258 0.235419195214869
+0.11866341533091013 0.5920502092050208 0.11866341533091011 0.5920502092050208 0.23590683544047683
+0.10510188215023453 0.6046025104602508 0.10510188215023453 0.6046025104602508 0.231320839029914
+0.10849226544540343 0.6025104602510458 0.10849226544540343 0.6025104602510458 0.23208936061197163
+0.09493073226472787 0.6150627615062758 0.09493073226472787 0.6150627615062758 0.22488923907675962
+0.09493073226472787 0.6192468619246858 0.09493073226472787 0.6192468619246858 0.22145051568676735
+0.09832111555989675 0.6129707112970708 0.09832111555989675 0.6129707112970708 0.22632727019755247
+0.10171149885506564 0.6108786610878658 0.10171149885506563 0.6108786610878658 0.2275698727503058
+0.08814996567439015 0.6276150627615058 0.08814996567439015 0.6276150627615058 0.21372958033766074
+0.14917686498741523 0.5523012552301602 0.14917686498741523 0.5523012552301602 0.2604802166583248
+0.14917686498742075 0.5564853556485309 0.14917686498742075 0.5564853556485309 0.257796956261809
+0.15256724828259574 0.5502092050210189 0.15256724828259574 0.5502092050210189 0.2636534874680365
+0.15595763157783274 0.5481171548119051 0.15595763157783274 0.5481171548119051 0.2669810229819665
+0.15934801487256214 0.53765690376428 0.15934801487256214 0.53765690376428 0.2761295089177301
+0.15934801487332864 0.541841004183503 0.15934801487332864 0.541841004183503 0.2733668080474391
+0.15934801487318376 0.5460251046027272 0.15934801487318376 0.5460251046027272 0.27041688309329687
+0.13900571510192353 0.5669456066945608 0.13900571510192353 0.5669456066945608 0.24797152589328333
+0.1423960983970927 0.5648535564853555 0.1423960983970927 0.5648535564853555 0.2500601442185068
+0.1457864816922619 0.5627615062761494 0.1457864816922619 0.5627615062761494 0.2524187056483353
+0.1491768649874302 0.5606694560669402 0.1491768649874302 0.5606694560669402 0.25502798989066866
+0.1390057151019235 0.5711297071129708 0.1390057151019235 0.5711297071129708 0.24571709626816254
+0.32772632950000363 0.3069438646671333 0.32772632950000363 0.30694386466713336 0.19505879484754848
+0.32458459944832546 0.30838357403801336 0.32458459944832546 0.30838357403801336 0.1888352287622921
+0.32144503974803007 0.30986952638651094 0.32144503974803 0.30986952638651094 0.18273497148323545
+0.31830867273172464 0.31140451157630294 0.31830867273172464 0.31140451157630294 0.17678174395920335
+0.315170068902434 0.31298011019313293 0.315170068902434 0.31298011019313293 0.17099927752088637
+0.31204327018931266 0.31459623656040303 0.3120432701893127 0.3145962365604031 0.16543425513814145
+0.3089523749283351 0.31625347110487784 0.3089523749283351 0.31625347110487784 0.16014100978870718
+0.3058807311461578 0.3179593442594223 0.3058807311461578 0.31795934425942235 0.15511302207944988
+0.30280996406397315 0.3197174873573776 0.30280996406397315 0.3197174873573776 0.15035075503883785
+0.2997631405664462 0.3215420048467716 0.2997631405664462 0.3215420048467716 0.1458972381392035
+0.29671986783097615 0.3234166963400732 0.29671986783097615 0.32341669634007314 0.14177684065291915
+0.2936803906319178 0.32532493057635326 0.2936803906319178 0.32532493057635326 0.1380370687602284
+0.290643696545058 0.32725614917689255 0.290643696545058 0.32725614917689255 0.13471583430318168
+0.2876127001081718 0.32921625311938263 0.2876127001081718 0.3292162531193826 0.13183982554598475
+0.2845966348814794 0.3312379080512601 0.2845966348814794 0.33123790805126013 0.12941651395634
+0.28164323839162453 0.33337735186653394 0.28164323839162453 0.33337735186653394 0.12745573855095127
+0.278759226883189 0.3356184388395101 0.27875922688318905 0.3356184388395101 0.1260061376655761
+0.27588809698772887 0.3378532588148567 0.27588809698772887 0.33785325881485667 0.12510470750251143
+0.272947271425126 0.34001786839351 0.272947271425126 0.34001786839351 0.12473911043620443
+0.269968163633583 0.3421379671561203 0.26996816363358306 0.34213796715612027 0.12489310640950661
+0.26684132129006244 0.34422705041997625 0.26684132129006244 0.34422705041997625 0.1255678756741788
+0.2635845217596984 0.3465590822766482 0.2635845217596984 0.3465590822766482 0.12685149160641496
+0.2615223432176345 0.34984572182540974 0.2615223432176345 0.3498457218254098 0.1285989100604423
+0.2588626737669353 0.3523159318507392 0.2588626737669353 0.3523159318507392 0.13076755855292446
+0.25611911498450013 0.35462456794052905 0.25611911498450013 0.35462456794052905 0.13325097525940646
+0.2533310018631112 0.3569169417883185 0.2533310018631112 0.3569169417883185 0.13609036919365403
+0.2504618557518399 0.3592131426003672 0.2504618557518399 0.35921314260036713 0.13928001580828808
+0.2448120498752443 0.3633796391674601 0.24481204987524433 0.36337963916746 0.14597712468621069
+0.24764596356022395 0.3613648434381358 0.24764596356022395 0.3613648434381358 0.14258194287240267
+0.2456747570877238 0.3665328194804791 0.2456747570877238 0.3665328194804791 0.14855384212366476
+0.2429154389478353 0.3685930172200774 0.24291543894783532 0.3685930172200775 0.1523614416942969
+0.24032232472100995 0.3707054866228421 0.24032232472100998 0.3707054866228421 0.15618373956083187
+0.22694861069789418 0.38339803657466176 0.22694861069789418 0.3833980365746617 0.17952766118714014
+0.23770621384910007 0.373306135131503 0.23770621384910004 0.373306135131503 0.16070957627809648
+0.22959264048396358 0.3810241279458166 0.22959264048396358 0.3810241279458166 0.17494979996050766
+0.23228469682890596 0.37843116667922455 0.23228469682890598 0.37843116667922455 0.1701136449692718
+0.2350096445158051 0.375871143093726 0.2350096445158051 0.375871143093726 0.16536032292548716
+0.2273896688074919 0.3863111850491415 0.2273896688074919 0.3863111850491415 0.18317531508165572
+0.21114277225636116 0.4052425327813166 0.21114277225636116 0.40524253278131667 0.21738326158187202
+0.22561615412977323 0.38886963577742284 0.22561615412977323 0.38886963577742284 0.18769680508193787
+0.22331017697954086 0.3915880007483648 0.2233101769795409 0.3915880007483648 0.19265867414780377
+0.2134979881220014 0.4025559450216418 0.2134979881220014 0.4025559450216418 0.2126614573161353
+0.21589466982757918 0.3998359059869789 0.21589466982757918 0.3998359059869789 0.20779787042084177
+0.21832312358503547 0.3970884961397249 0.21832312358503544 0.3970884961397249 0.20281584362924301
+0.22078841318205433 0.3943292061327257 0.22078841318205433 0.3943292061327257 0.19775078402911006
+0.2124146090651926 0.40837790837307675 0.2124146090651926 0.4083779083730768 0.2214886477928331
+0.19638265971023777 0.43108337225629667 0.1963826597102378 0.4310833722562966 0.2564542322829399
+0.19633565938916603 0.42675746986332874 0.19633565938916606 0.4267574698633288 0.25078926283240405
+0.19956198815388732 0.42433664501820756 0.1995619881538873 0.42433664501820756 0.24716383461220007
+0.2024538752237653 0.4228383075742642 0.2024538752237653 0.4228383075742642 0.24465922146892152
+0.21020367376245103 0.41109950476304635 0.21020367376245105 0.4110995047630464 0.22617453939879706
+0.20382229370652738 0.41998948502351796 0.20382229370652735 0.41998948502351796 0.24051027744939232
+0.20587529992533737 0.41689484659140524 0.20587529992533735 0.41689484659140524 0.23568865763941485
+0.2080382759852749 0.41392100005603355 0.20803827598527488 0.41392100005603355 0.23088993984714465
+0.18634137308287793 0.44556004883591166 0.18634137308287793 0.44556004883591166 0.27329193473975444
+0.1896507488573599 0.443425504270992 0.1896507488573599 0.443425504270992 0.27142905166477155
+0.19302751870044552 0.4372334345449404 0.19302751870044552 0.4372334345449404 0.26431602592265846
+0.19675243096307282 0.43526350987229484 0.19675243096307282 0.4352635098722949 0.2619696697194264
+0.19919847206656213 0.4326245375253107 0.19919847206656213 0.4326245375253107 0.2583392955308812
+0.19289804875131428 0.44130933527881605 0.1928980487513143 0.44130933527881605 0.26929894904919044
+0.18634940105901465 0.4497647848327294 0.18634940105901465 0.44976478483272947 0.2778697470580794
+0.17960380362946762 0.4623526214492584 0.17960380362946762 0.4623526214492584 0.28752820834375953
+0.18631718320971014 0.4539948522269272 0.18631718320971014 0.4539948522269272 0.28224489792809626
+0.1862489373586506 0.4582348189073676 0.18624893735865064 0.45823481890736767 0.28635746567206305
+0.18293492642428555 0.46028677266248047 0.18293492642428555 0.46028677266248047 0.2870971184323204
+0.17960294707249194 0.4665282991162578 0.17960294707249194 0.4665282991162578 0.290824090882605
+0.16951437736275535 0.48953827181434867 0.16951437736275535 0.48953827181434867 0.29614849778990276
+0.17625435572845402 0.47279190992864906 0.17625435572845402 0.472791909928649 0.29340508488549344
+0.17960046551173434 0.47070385233726836 0.17960046551173434 0.47070385233726836 0.2938061020190142
+0.17289136391478385 0.47906919159254024 0.17289136391478385 0.4790691915925402 0.2947968246650267
+0.1762545771063245 0.4769703480673571 0.1762545771063245 0.4769703480673571 0.2957945193319738
+0.17289345799853853 0.4832531610668626 0.17289345799853853 0.4832531610668626 0.29657721145912513
+0.17289460685602634 0.48744041638252017 0.17289460685602634 0.48744041638252017 0.29798180937960644
+0.16612697916466884 0.5041833159641106 0.16612697916466887 0.5041833159641106 0.29456227077108516
+0.16612665380408873 0.508367352771585 0.16612665380408873 0.508367352771585 0.29400008327601235
+0.1695133684937692 0.49372323721145356 0.1695133684937692 0.49372323721145356 0.29692964844747555
+0.1695117928844938 0.4979065504470448 0.1695117928844938 0.4979065504470448 0.29732143989407517
+0.16951058119451604 0.502089533451456 0.16951058119451604 0.502089533451456 0.29732154123939875
+0.16612627052907053 0.5125511694275459 0.1661262705290705 0.5125511694275459 0.2930688880919074
+0.1661260742476547 0.5167349404147462 0.1661260742476547 0.5167349404147462 0.29177824180894696
+0.16273787635353756 0.5230123230996254 0.16273787635353756 0.5230123230996254 0.2866574601914054
+0.16612588982915397 0.5209190548342358 0.16612588982915397 0.5209190548342358 0.29014094368920373
+0.16273777590840996 0.5271964693262515 0.16273777590840996 0.5271964693262515 0.284631577881533
+0.1627378138279234 0.531380543908082 0.1627378138279234 0.531380543908082 0.2823210419062856
+0.16273793123265293 0.535564531894935 0.16273793123265293 0.535564531894935 0.27974836470879255
+0.3310042467750556 0.30195516182890253 0.3310042467750556 0.30195516182890253 0.20382769460343078
+0.33084897618598835 0.3055436922477135 0.33084897618598835 0.3055436922477135 0.20135489576162205
+0.3423200771577167 0.28369071294089926 0.3423200771577167 0.28369071294089926 0.23041026086013847
+0.33482175676961173 0.2934053246390724 0.33482175676961173 0.2934053246390724 0.2146809613679981
+0.34182371566443387 0.28732556278236937 0.34182371566443387 0.28732556278236937 0.228803165540342
+0.3381015789487134 0.2921503885162422 0.3381015789487134 0.2921503885162422 0.2208530953933517
+0.3413905901798833 0.2909479922173779 0.3413905901798833 0.2909479922173779 0.2270608936929359
+0.33449945718895685 0.2970416766772522 0.33449945718895685 0.2970416766772522 0.2125085406405933
+0.3342201865040238 0.30063722253766945 0.3342201865040238 0.30063722253766945 0.210192495767103
+0.355454312865896 0.26586229824282426 0.355454312865896 0.26586229824282426 0.25199995473782105
+0.3469427488181025 0.2752545748774489 0.3469427488181025 0.2752545748774489 0.23895912482886603
+0.3546026619399718 0.269516379288988 0.3546026619399718 0.26951637928898803 0.2511471753075409
+0.35037781668721274 0.2741806675069061 0.35037781668721274 0.2741806675069061 0.2446285133356533
+0.35383373010888725 0.27319582793519376 0.35383373010888725 0.27319582793519376 0.25028623483634577
+0.34630420166647524 0.27894373228426833 0.34630420166647524 0.27894373228426833 0.23775092456880823
+0.3456961302327537 0.28259914401940833 0.3456961302327537 0.2825991440194083 0.23637794429737466
+0.37049963633856886 0.2486108960579797 0.37049963633856886 0.24861089605797967 0.27022360195822076
+0.3608564382397768 0.25792979428101315 0.3608564382397768 0.2579297942810132 0.2587803512040974
+0.3691760805225334 0.2520593268058223 0.3691760805225334 0.2520593268058224 0.26922500737111266
+0.3644657564838809 0.2568496891463492 0.3644657564838809 0.2568496891463492 0.26379685794163205
+0.36795837226406347 0.25582012853521624 0.3679583722640634 0.25582012853521624 0.2685096028307154
+0.3599107073919074 0.2614590535257493 0.3599107073919074 0.2614590535257493 0.2580753441987967
+0.35898578788395835 0.2650477010922659 0.35898578788395835 0.2650477010922659 0.2573611495527668
+0.3876741749879824 0.23232230498751227 0.3876741749879824 0.23232230498751227 0.28648172286262813
+0.3768640415741972 0.24133609592944927 0.37686404157419723 0.24133609592944927 0.27665791897316455
+0.3860347662195607 0.23551550346728306 0.3860347662195607 0.2355155034672831 0.28535718403743116
+0.3802179376892031 0.24126045394362328 0.38021793768920314 0.24126045394362325 0.2803542314891471
+0.3848112600530103 0.23842301131884097 0.3848112600530103 0.238423011318841 0.2846439155064682
+0.38300007794877655 0.2408652476562959 0.38300007794877655 0.24086524765629588 0.28313486464548027
+0.3754772165101849 0.24478193307535845 0.3754772165101849 0.24478193307535845 0.27562464066328163
+0.3741609991856396 0.2481976228265237 0.3741609991856396 0.2481976228265237 0.2747544655305314
+0.41614622412830843 0.2110073073241735 0.41614622412830843 0.21100730732417353 0.29597798503831824
+0.4141296826741725 0.21402636152093227 0.41412968267417244 0.21402636152093227 0.29659452697582767
+0.41210398731012776 0.21709750767731395 0.4121039873101278 0.21709750767731392 0.29697540844297476
+0.4099994235853014 0.22027441042316995 0.40999942358530145 0.22027441042316995 0.2971558534185848
+0.4076155404530448 0.22346850528353726 0.4076155404530448 0.22346850528353726 0.29710407238312886
+0.4067502611071466 0.22668211756814682 0.4067502611071466 0.22668211756814682 0.297228724684341
+0.3930165140581878 0.22901106076719752 0.3930165140581878 0.22901106076719754 0.29042183309770025
+0.3967244127122503 0.2289694258705991 0.3967244127122503 0.22896942587059907 0.29290069511362105
+0.4041833374204646 0.22869898052105372 0.4041833374204646 0.22869898052105372 0.29678005239929234
+0.4003501938071174 0.22898965339330268 0.4003501938071174 0.22898965339330268 0.29496682484704406
+0.3913791190881583 0.23226793556418593 0.3913791190881583 0.23226793556418593 0.2895226497920331
+0.42407271846299976 0.2053383559153231 0.4240727184629998 0.2053383559153231 0.29238039968123203
+0.42197394044208325 0.20830386980418214 0.42197394044208325 0.20830386980418214 0.2939777264865642
+0.42793623405371806 0.20554492218775847 0.42793623405371806 0.20554492218775847 0.2902808416839282
+0.4199206959416191 0.21128068599560978 0.4199206959416191 0.21128068599560978 0.2952459308689011
+0.45820084264400074 0.18641499750841017 0.4582008426440007 0.18641499750841017 0.2402687071569702
+0.45614714461527867 0.18976718704765994 0.45614714461527867 0.18976718704765994 0.2465835280693669
+0.4539610001184952 0.19307884239705025 0.4539610001184952 0.19307884239705023 0.25275845137631464
+0.4515564342594192 0.19625000349146113 0.4515564342594192 0.19625000349146113 0.2588006341559503
+0.4491461156699251 0.1989279849530075 0.4491461156699251 0.19892798495300748 0.264147823941627
+0.4317059001052981 0.20576744250191692 0.431705900105298 0.20576744250191692 0.2876654048780763
+0.4352472109838563 0.2060920429518399 0.4352472109838564 0.2060920429518399 0.2847110377886905
+0.43864992958036925 0.20611084102562827 0.43864992958036925 0.20611084102562827 0.2812871060201863
+0.44765117063142795 0.2015277895592349 0.44765117063142795 0.2015277895592349 0.26767557049417434
+0.4444171561737217 0.2030338985957191 0.44441715617372163 0.20303389859571913 0.2731461458503153
+0.4420733090352797 0.20620407451570566 0.4420733090352797 0.20620407451570566 0.2774077142448929
+0.4791275698353159 0.1796009373613623 0.4791275698353159 0.1796009373613623 0.18444843445139902
+0.4644603414437378 0.1830474709507043 0.4644603414437379 0.1830474709507043 0.2243752317756069
+0.46865620818960824 0.18301946708935857 0.46865620818960824 0.18301946708935857 0.21444763531604868
+0.4728654389582529 0.1829869435628199 0.4728654389582529 0.1829869435628199 0.2037909930629855
+0.47707656350430105 0.1829529859987521 0.4770765635043011 0.1829529859987521 0.19245310651534397
+0.4623889593008406 0.18646618961427605 0.4623889593008406 0.18646618961427605 0.23145748776448158
+0.5000031788779796 0.1728879345723128 0.5000031788779796 0.1728879345723128 0.11628095635293846
+0.48537881211994266 0.1762356677529314 0.48537881211994266 0.1762356677529314 0.16410357521336283
+0.4895590732002959 0.17623315693802977 0.4895590732002959 0.17623315693802977 0.15138134370953862
+0.49373985116205654 0.17623781326239107 0.49373985116205654 0.17623781326239107 0.13817842722545384
+0.4979230596132828 0.17624607493610137 0.4979230596132828 0.17624607493610137 0.12454145571376375
+0.4833149008405751 0.17957996984415123 0.4833149008405751 0.17957996984415123 0.17235699388569573
+0.5062785031928173 0.16951356106796275 0.5062785031928173 0.16951356106796275 0.09455349066346798
+0.5104654588873035 0.16951284844676004 0.5104654588873035 0.16951284844676004 0.08076519457186676
+0.5146512900268037 0.16951081672103552 0.5146512900268037 0.16951081672103552 0.06710170795771575
+0.5041901531242768 0.17289126928148627 0.5041901531242768 0.17289126928148627 0.1023946531141957
+0.5376569037656708 0.15256724828260237 0.5376569037656708 0.15256724828260237 0.03504138705998839
+0.5313807531380554 0.15595763157777132 0.5313807531380554 0.15595763157777132 0.031572000365403134
+0.5355648535564657 0.15595763157777132 0.5355648535564655 0.15595763157777132 0.03320350347441579
+0.5188347080985113 0.16950873610222683 0.5188347080985113 0.16950873610222683 0.05395329713444714
+0.5292887029288503 0.15934801487294026 0.5292887029288503 0.15934801487294026 0.032562403495541965
+0.527196702144504 0.1627380985073972 0.527196702144504 0.1627380985073972 0.03459709085835145
+0.5251059566057098 0.16612595465346797 0.5251059566057098 0.16612595465346794 0.03778395623239749
+0.5230168192569642 0.16950779282624595 0.5230168192569642 0.16950779282624595 0.042115801771156404
+0.541841004184081 0.15256724828260237 0.541841004184081 0.15256724828260237 0.04320233140520619
+0.5460251046024912 0.15256724828260237 0.5460251046024912 0.15256724828260237 0.05389760243137637
+0.5523012552301065 0.14917686498743343 0.5523012552301064 0.14917686498743343 0.0688086692792952
+0.5502092050209014 0.15256724828260237 0.5502092050209014 0.15256724828260237 0.06590270499403363
+0.5564853556485168 0.14917686498743343 0.5564853556485168 0.14917686498743343 0.0813704900550184
+0.5627615062761321 0.1457864816922645 0.5627615062761321 0.1457864816922645 0.09664560598260598
+0.560669456066927 0.14917686498743343 0.5606694560669271 0.14917686498743343 0.09426896124055985
+0.5690376569037474 0.14239609839709555 0.5690376569037473 0.14239609839709555 0.11177296258333859
+0.5669456066945423 0.1457864816922645 0.5669456066945423 0.1457864816922645 0.10959018123750065
+0.6066945606694394 0.10171149885506825 0.6066945606694394 0.10171149885506825 0.19858936795308046
+0.6004184100418241 0.10510188215023719 0.6004184100418241 0.10510188215023719 0.18051905994548625
+0.6046025104602343 0.10510188215023719 0.6046025104602343 0.10510188215023719 0.1936385117848303
+0.598326359832619 0.10849226544540613 0.598326359832619 0.10849226544540613 0.17533147762804632
+0.5962343096234138 0.11188264874057507 0.5962343096234138 0.11188264874057507 0.17019879634986368
+0.5941422594142087 0.11527303203574402 0.5941422594142088 0.11527303203574402 0.16522181008108713
+0.5878661087865934 0.11866341533091296 0.5878661087865934 0.11866341533091296 0.1470777994634431
+0.5857740585773883 0.1220537986260819 0.5857740585773882 0.1220537986260819 0.14273427283890597
+0.5836820083681832 0.12544418192125084 0.5836820083681832 0.12544418192125084 0.13878975998428447
+0.5815899581589781 0.12883456521641978 0.5815899581589781 0.12883456521641978 0.13526362367976372
+0.579497907949773 0.13222494851158872 0.579497907949773 0.13222494851158872 0.13214654400284645
+0.5774058577405679 0.13561533180675767 0.577405857740568 0.13561533180675767 0.12940054848756133
+0.5753138075313627 0.1390057151019266 0.5753138075313627 0.1390057151019266 0.1269615163838427
+0.5732217573221576 0.14239609839709555 0.5732217573221576 0.14239609839709555 0.12474388351568422
+0.5920502092050036 0.11866341533091296 0.5920502092050036 0.11866341533091296 0.16049195946298203
+0.6171548117154649 0.09154034896956142 0.6171548117154649 0.09154034896956142 0.22355937455890618
+0.6213389121338752 0.09154034896956142 0.6213389121338752 0.09154034896956142 0.23486676120141928
+0.6150627615062598 0.09493073226473037 0.6150627615062598 0.09493073226473037 0.2198593178937248
+0.6129707112970547 0.09832111555989931 0.6129707112970547 0.09832111555989931 0.21572994146529625
+0.6108786610878496 0.10171149885506825 0.6108786610878497 0.10171149885506825 0.21125568944770157
+0.6422594142259263 0.06441728260820989 0.6422594142259263 0.06441728260820989 0.24729676078571275
+0.6401673640167211 0.06780766590337883 0.6401673640167211 0.06780766590337883 0.24917685285421168
+0.638075313807516 0.07119804919854777 0.638075313807516 0.07119804919854777 0.25052615862244165
+0.6359832635983109 0.07458843249371672 0.6359832635983108 0.07458843249371672 0.251293732126465
+0.6338912133891058 0.07797881578888566 0.6338912133891058 0.07797881578888566 0.25144398273442464
+0.6317991631799007 0.0813691990840546 0.6317991631799007 0.0813691990840546 0.2509572646856955
+0.6297071129706956 0.08475958237922354 0.6297071129706956 0.08475958237922354 0.24983020097821643
+0.6276150627614905 0.08814996567439248 0.6276150627614906 0.08814996567439248 0.24807574494795362
+0.6255230125522854 0.09154034896956142 0.6255230125522854 0.09154034896956142 0.24572296850440037
+0.6485355648535416 0.06102689931304095 0.6485355648535416 0.06102689931304095 0.2516074594322626
+0.6464435146443365 0.06441728260820989 0.6464435146443365 0.06441728260820989 0.2542686260875273
+0.6548117154811569 0.05763651601787201 0.6548117154811569 0.05763651601787201 0.25470573016623566
+0.6527196652719518 0.06102689931304095 0.6527196652719517 0.06102689931304095 0.2579362710360282
+0.6610878661087722 0.054246132722703067 0.6610878661087723 0.054246132722703067 0.2570197670929822
+0.6589958158995671 0.05763651601787201 0.6589958158995671 0.05763651601787201 0.2605782469592985
+0.6673640167363876 0.050855749427534125 0.6673640167363876 0.050855749427534125 0.2590111453448221
+0.6652719665271825 0.054246132722703067 0.6652719665271825 0.054246132722703067 0.2626487998652371
+0.6736401673640029 0.04746536613236518 0.6736401673640029 0.04746536613236518 0.26112746015702354
+0.6715481171547978 0.050855749427534125 0.6715481171547978 0.050855749427534125 0.2646140279005347
+0.6820083682008233 0.0406845995420273 0.6820083682008233 0.0406845995420273 0.26089418396805225
+0.6799163179916182 0.04407498283719624 0.6799163179916182 0.04407498283719624 0.2637517002566407
+0.6778242677824131 0.04746536613236518 0.6778242677824132 0.04746536613236518 0.2669007667322727
+0.6882845188284387 0.03729421624685836 0.6882845188284387 0.03729421624685836 0.2648161361654226
+0.6861924686192336 0.0406845995420273 0.6861924686192334 0.0406845995420273 0.26715773174277163
+0.694560669456054 0.03390383295168942 0.6945606694560541 0.03390383295168942 0.2696750396440956
+0.6924686192468489 0.03729421624685836 0.6924686192468489 0.03729421624685836 0.27148221208169504
+0.7008368200836693 0.030513449656520475 0.7008368200836693 0.030513449656520475 0.2754081734165959
+0.6987447698744642 0.03390383295168942 0.6987447698744642 0.03390383295168942 0.27672018203575494
+0.7071129707112846 0.027123066361351533 0.7071129707112846 0.027123066361351533 0.2818529477923986
+0.7050209205020795 0.030513449656520475 0.7050209205020795 0.030513449656520475 0.2827450785684555
+0.7133891213389 0.02373268306618259 0.7133891213389 0.02373268306618259 0.2887892050322188
+0.7112970711296949 0.027123066361351533 0.711297071129695 0.027123066361351533 0.2893469324387849
+0.7196652719665153 0.02034229977101365 0.7196652719665152 0.02034229977101365 0.295983174806638
+0.7175732217573102 0.02373268306618259 0.7175732217573102 0.02373268306618259 0.29627834386270885
+0.7259414225941306 0.01695191647584471 0.7259414225941306 0.01695191647584471 0.30322406659911105
+0.7238493723849255 0.02034229977101365 0.7238493723849255 0.02034229977101365 0.30329773456933745
+0.7343096234309511 0.010171149885506825 0.7343096234309511 0.010171149885506825 0.31101750217921414
+0.732217573221746 0.013561533180675767 0.732217573221746 0.013561533180675767 0.31034784087412687
+0.7301255230125409 0.01695191647584471 0.7301255230125409 0.01695191647584471 0.3102022393301968
+0.7405857740585664 0.006780766590337883 0.7405857740585664 0.006780766590337883 0.3182450261553074
+0.7384937238493613 0.010171149885506825 0.7384937238493613 0.010171149885506825 0.31724634463989204
+0.7447698744769766 0.006780766590337883 0.7447698744769767 0.006780766590337883 0.3238628602057892
+0.006780766590337709 0.7489539748953957 0.006780766590337709 0.7489539748953957 0.1373093945849991
+0.006780766590337709 0.7531380753138057 0.006780766590337709 0.7531380753138057 0.13501205792920204
+0.01017114988550656 0.7426778242677807 0.01017114988550656 0.7426778242677807 0.1410534333275084
+0.01017114988550656 0.7468619246861907 0.01017114988550656 0.7468619246861907 0.13902979262527057
+0.013561533180675408 0.7405857740585757 0.013561533180675408 0.7405857740585757 0.14280647163801433
+0.016951916475844264 0.7343096234309607 0.016951916475844264 0.7343096234309607 0.14627713287922697
+0.016951916475844264 0.7384937238493707 0.016951916475844264 0.7384937238493707 0.14462742926182234
+0.02034229977101312 0.7280334728033457 0.02034229977101312 0.7280334728033457 0.14939052230244584
+0.02034229977101312 0.7322175732217557 0.02034229977101312 0.7322175732217557 0.14799646711657474
+0.02373268306618197 0.7217573221757307 0.02373268306618197 0.7217573221757307 0.1521214874286572
+0.02373268306618197 0.7259414225941407 0.02373268306618197 0.7259414225941407 0.15094731637814118
+0.027123066361350822 0.7154811715481157 0.027123066361350822 0.7154811715481157 0.15448218942059333
+0.027123066361350822 0.7196652719665257 0.027123066361350822 0.7196652719665257 0.15347319900730458
+0.030513449656519673 0.7092050209205008 0.030513449656519673 0.7092050209205008 0.15653030640453872
+0.030513449656519673 0.7133891213389107 0.030513449656519673 0.7133891213389107 0.15561217430930538
+0.033903832951688535 0.7029288702928858 0.033903832951688535 0.7029288702928858 0.1583724460698682
+0.033903832951688535 0.7071129707112958 0.033903832951688535 0.7071129707112958 0.1574528272007727
+0.03729421624685738 0.6966527196652708 0.03729421624685738 0.6966527196652708 0.1601610980488812
+0.03729421624685738 0.7008368200836808 0.03729421624685738 0.7008368200836808 0.15913421660606555
+0.040684599542026224 0.6903765690376558 0.040684599542026224 0.6903765690376558 0.16208384114491306
+0.040684599542026224 0.6945606694560658 0.040684599542026224 0.6945606694560658 0.1608385063273157
+0.0440749828371951 0.6841004184100408 0.0440749828371951 0.6841004184100408 0.1643444730676681
+0.0440749828371951 0.6882845188284508 0.0440749828371951 0.6882845188284508 0.1627753046941918
+0.04746536613236394 0.6820083682008358 0.04746536613236394 0.6820083682008358 0.16515809899808834
+0.05085574942753279 0.6757322175732208 0.05085574942753279 0.6757322175732208 0.16817533791490316
+0.05085574942753279 0.6799163179916308 0.05085574942753279 0.6799163179916308 0.16595932419053092
+0.05424613272270165 0.6694560669456058 0.054246132722701644 0.6694560669456058 0.17196112756598325
+0.05424613272270165 0.6736401673640158 0.054246132722701644 0.6736401673640158 0.16925330431015215
+0.05763651601787049 0.6631799163179908 0.05763651601787049 0.6631799163179908 0.1765719467443292
+0.05763651601787049 0.6673640167364008 0.05763651601787049 0.6673640167364008 0.17338169907491932
+0.06102689931303934 0.6569037656903758 0.06102689931303934 0.6569037656903758 0.18197504021754551
+0.06102689931303934 0.6610878661087858 0.06102689931303934 0.6610878661087858 0.17835826380960648
+0.06441728260820821 0.6506276150627608 0.06441728260820821 0.6506276150627608 0.18805108714039317
+0.06441728260820821 0.6548117154811708 0.06441728260820821 0.6548117154811708 0.1841036257702607
+0.06780766590337706 0.6443514644351458 0.06780766590337706 0.6443514644351458 0.19460974092636166
+0.06780766590337706 0.6485355648535558 0.06780766590337706 0.6485355648535558 0.19045570982506288
+0.0711980491985459 0.6422594142259408 0.0711980491985459 0.6422594142259408 0.19719144678355247
+0.07458843249371476 0.6401673640167358 0.07458843249371476 0.6401673640167358 0.1997686700427127
+0.07797881578888362 0.6380753138075308 0.07797881578888362 0.6380753138075308 0.20231567692026262
+0.08136919908405248 0.6359832635983258 0.08136919908405248 0.6359832635983258 0.20480593448589793
+0.08475958237922132 0.6338912133891208 0.08475958237922132 0.6338912133891208 0.20721324542342115
+0.08814996567439015 0.6317991631799158 0.08814996567439015 0.6317991631799158 0.20951289794078745
+0.09154034896955902 0.6255230125523008 0.09154034896955902 0.6255230125523008 0.2158091548370711
+0.09493073226472787 0.6234309623430958 0.09493073226472787 0.6234309623430958 0.21771774356952692
+0.10510188215023453 0.6087866108786608 0.10510188215023453 0.6087866108786608 0.22863114433242035
+0.11188264874057234 0.6004184100418408 0.11188264874057234 0.6004184100418408 0.23274111442414505
+0.11527303203574124 0.5983263598326358 0.11527303203574124 0.5983263598326358 0.2333128779631132
+0.12205379862607901 0.5899581589958158 0.12205379862607901 0.5899581589958158 0.23642896227552904
+0.12544418192124793 0.5878661087866108 0.12544418192124793 0.5878661087866108 0.23703048621043574
+0.1288345652164168 0.5857740585774058 0.1288345652164168 0.5857740585774058 0.2377540236458819
+0.13222494851158573 0.5794979079497908 0.13222494851158573 0.5794979079497908 0.2407317477108317
+0.1356153318067546 0.5774058577405858 0.13561533180675459 0.5774058577405858 0.2419438401440737
+0.1390057151019235 0.5753138075313808 0.1390057151019235 0.5753138075313808 0.24339813922303663
+0.13222494851158573 0.5836820083682008 0.13222494851158573 0.5836820083682008 0.2386380556955965
+0.11866341533091013 0.5962343096234308 0.11866341533091011 0.5962343096234308 0.23384511428078006
+0.12205379862607901 0.5941422594142258 0.12205379862607901 0.5941422594142258 0.23438055060567706
+0.10849226544540343 0.6066945606694558 0.10849226544540343 0.6066945606694558 0.22953169241551688
+0.11188264874057234 0.6046025104602508 0.11188264874057234 0.6046025104602508 0.2302981739893392
+0.09832111555989675 0.6171548117154808 0.09832111555989675 0.6171548117154808 0.22303707381928173
+0.09832111555989675 0.6213389121338908 0.09832111555989675 0.6213389121338908 0.2194460375055416
+0.10171149885506564 0.6150627615062758 0.10171149885506563 0.6150627615062758 0.22443172907710637
+0.10510188215023453 0.6129707112970708 0.10510188215023453 0.6129707112970708 0.22564289821047298
+0.09154034896955902 0.6297071129707108 0.09154034896955902 0.6297071129707108 0.21168277603726146
+0.15256724828257495 0.554393305439341 0.15256724828257495 0.554393305439341 0.2608071260477223
+0.1525672482825942 0.558577405857728 0.1525672482825942 0.558577405857728 0.25786046051717504
+0.1559576315777276 0.5523012552301966 0.1559576315777276 0.5523012552301966 0.2639905033764193
+0.15934801487291317 0.5502092050211361 0.15934801487291317 0.5502092050211361 0.26730437948832586
+0.1627380991058489 0.5397486199494624 0.1627380991058489 0.5397486199494624 0.2769377130504684
+0.16273826001156882 0.5439328541011782 0.1627382600115688 0.5439328541011782 0.27391437996955853
+0.16273835664777792 0.5481170876312583 0.16273835664777792 0.5481170876312583 0.27070433476407224
+0.1423960983970924 0.5690376569037658 0.1423960983970924 0.5690376569037658 0.24761277114202396
+0.1457864816922616 0.566945606694561 0.1457864816922616 0.566945606694561 0.249773880979533
+0.14917686498743113 0.5648535564853553 0.14917686498743113 0.5648535564853553 0.2521872086699528
+0.15256724828260113 0.5627615062761471 0.15256724828260113 0.5627615062761472 0.25483087826582995
+0.1423960983970924 0.5732217573221758 0.1423960983970924 0.5732217573221758 0.24510662200175262
+0.33077927687504166 0.30911798086837894 0.33077927687504166 0.309117980868379 0.19885713876095298
+0.3276881928821353 0.31053371904673754 0.3276881928821353 0.3105337190467376 0.19246846684241203
+0.3245670949016555 0.3119822450418557 0.3245670949016555 0.3119822450418557 0.18614268890188346
+0.32144891815155047 0.3134798497919568 0.32144891815155047 0.3134798497919568 0.1799566459394123
+0.3183311839719142 0.31501634783396854 0.31833118397191423 0.31501634783396854 0.17394007966381295
+0.315229453331244 0.31659723333544837 0.315229453331244 0.31659723333544837 0.16813956220519402
+0.3121656506144727 0.31822380254801225 0.3121656506144727 0.31822380254801225 0.16260805026965328
+0.3091279705714332 0.3198994133609567 0.3091279705714332 0.3198994133609567 0.1573478649371881
+0.3060902769002794 0.32162387080895827 0.3060902769002794 0.32162387080895827 0.15235206381683167
+0.3030691493970895 0.3234010950721616 0.30306914939708957 0.3234010950721616 0.14766649073287796
+0.3000478642558968 0.32522763181290365 0.3000478642558968 0.32522763181290365 0.143309956916406
+0.29702920653710374 0.32709671429164816 0.2970292065371037 0.32709671429164816 0.13932682691452056
+0.2940240034330969 0.3290026623852965 0.2940240034330969 0.32900266238529646 0.1357647626510667
+0.29104882103278235 0.3309463456353084 0.29104882103278235 0.3309463456353084 0.13266202677310843
+0.2880890668857965 0.3329400143373042 0.2880890668857965 0.3329400143373042 0.13002429812064994
+0.28515068653020187 0.33500180317306283 0.28515068653020187 0.33500180317306283 0.12786772793173226
+0.282250455067278 0.3371386220022174 0.282250455067278 0.3371386220022174 0.12622290230579744
+0.2793690399196661 0.33931673416600094 0.27936903991966616 0.339316734166001 0.12512016619011546
+0.2764740904216037 0.341495396959169 0.2764740904216037 0.341495396959169 0.12457371160368302
+0.2735542808629707 0.3436644871667238 0.2735542808629707 0.3436644871667238 0.12457662350626235
+0.2705904586593639 0.34584991418697175 0.2705904586593639 0.34584991418697175 0.12512700846909777
+0.2676605228728672 0.34812744169197507 0.2676605228728672 0.34812744169197507 0.12620373218519043
+0.26496538323753777 0.35068979940605766 0.26496538323753777 0.35068979940605766 0.12776441470757297
+0.26235915600479265 0.35331414104898917 0.26235915600479265 0.3533141410489891 0.1298630623279039
+0.25965560937750204 0.3557596489034159 0.25965560937750204 0.3557596489034159 0.13235979845430138
+0.25689043486794333 0.35812423900025697 0.25689043486794333 0.35812423900025697 0.1352182938388721
+0.2540612303411683 0.3604691081430016 0.2540612303411683 0.3604691081430016 0.1384375580630167
+0.2512303428688822 0.3627397127003867 0.2512303428688822 0.3627397127003867 0.1418874813236821
+0.24856105477763413 0.36465014622028874 0.2485610547776341 0.36465014622028874 0.1451464087714591
+0.24837454623348257 0.3675097475673156 0.2483745462334826 0.3675097475673156 0.1480070445941226
+0.24660044864962166 0.36966206975906807 0.24660044864962163 0.36966206975906807 0.15134787187030274
+0.24393276288644591 0.3718641393886351 0.24393276288644591 0.3718641393886351 0.15537540336809905
+0.24132696904678247 0.3742680616458119 0.2413269690467825 0.3742680616458119 0.15972892942698871
+0.2305184235501106 0.38479028828065875 0.23051842355011057 0.3847902882806587 0.1794737014373569
+0.2386582744328223 0.37675512519275367 0.2386582744328223 0.37675512519275367 0.16434121805144566
+0.2331153430861943 0.3818528115609229 0.2331153430861943 0.3818528115609228 0.17408995994558574
+0.23593904776487098 0.3792469527338302 0.23593904776487098 0.3792469527338302 0.1690775503466896
+0.23270833599956559 0.3873474401976535 0.23270833599956559 0.3873474401976535 0.1817288932177774
+0.22953289543014982 0.3888495261403483 0.22953289543014985 0.38884952614034823 0.18561592386997552
+0.2146849778826081 0.4057206559789017 0.2146849778826081 0.4057206559789018 0.21681106527734292
+0.22700872467403332 0.39193647483927296 0.22700872467403332 0.391936474839273 0.1912983754724096
+0.22452314058317202 0.39483779200473973 0.22452314058317202 0.39483779200473973 0.19671442672106584
+0.21708091259954254 0.40308793107670676 0.21708091259954254 0.40308793107670676 0.2120466493670454
+0.21954003716509224 0.4003946975774416 0.2195400371650922 0.40039469757744156 0.20708267457094146
+0.22203503326630233 0.39764072317797844 0.22203503326630233 0.39764072317797844 0.20195623558097162
+0.21580889730256733 0.40878002043324146 0.21580889730256733 0.40878002043324146 0.2209202005818268
+0.21378786208881326 0.4115614758569353 0.21378786208881326 0.4115614758569353 0.22575787254989962
+0.20006114710214606 0.42898648294404407 0.20006114710214606 0.428986482944044 0.25356504404809405
+0.20302316198591353 0.42586499664407557 0.20302316198591353 0.42586499664407557 0.24888343448232386
+0.20529825861201734 0.4231622578294217 0.20529825861201734 0.4231622578294217 0.24470058017069432
+0.21164649851138118 0.41438850528594257 0.21164649851138115 0.41438850528594257 0.23058520272017566
+0.20735766873377262 0.42023169287086587 0.20735766873377262 0.42023169287086587 0.24015185646191947
+0.20948682412891392 0.41727624432826366 0.20948682412891392 0.41727624432826366 0.2353900664853378
+0.2022892912095132 0.4323883900957945 0.2022892912095132 0.4323883900957945 0.2579360148664937
+0.20050683134784086 0.43540093245812334 0.20050683134784086 0.43540093245812334 0.26208066779012307
+0.18969740644792074 0.4476019440177306 0.18969740644792074 0.4476019440177306 0.2762144283432735
+0.19295727719208242 0.4454160677075603 0.19295727719208242 0.4454160677075603 0.2742005842132171
+0.19606056861712917 0.4394074811758079 0.19606056861712917 0.4394074811758079 0.26718071917888414
+0.19901487478695537 0.43801747861631724 0.19901487478695537 0.43801747861631724 0.2654524259094739
+0.1960794088283277 0.4433898706295558 0.19607940882832772 0.4433898706295558 0.2721070610849922
+0.1897296079636711 0.45184769817721576 0.1897296079636711 0.45184769817721576 0.28088021602741353
+0.18293317796268918 0.4644647745489971 0.18293317796268918 0.4644647745489971 0.29064748649120276
+0.1896408496410915 0.4561402822614929 0.1896408496410915 0.4561402822614929 0.28529983644685664
+0.18953241576517008 0.4603980640657639 0.18953241576517008 0.4603980640657639 0.28937324409614634
+0.1862568715974305 0.46240050200844157 0.1862568715974305 0.46240050200844157 0.2901434885110347
+0.18293813382644813 0.4686313052355139 0.18293813382644816 0.46863130523551394 0.29388217571782005
+0.1728929726711915 0.4916284567262663 0.1728929726711915 0.49162845672626626 0.29899340805589986
+0.1795995296626828 0.4748759201203772 0.1795995296626828 0.4748759201203772 0.2964473569316994
+0.1829364899097348 0.47279424474577203 0.1829364899097348 0.47279424474577203 0.29677451718774434
+0.17625747019381252 0.4811514072355682 0.17625747019381252 0.4811514072355682 0.2978263429779974
+0.179602707752246 0.47904778357228645 0.179602707752246 0.47904778357228645 0.29872976820987723
+0.17626148102372344 0.4853377257104671 0.17626148102372344 0.4853377257104671 0.29948082172071383
+0.17626186453809548 0.4895277526723252 0.17626186453809548 0.4895277526723252 0.30073589666816214
+0.16950977007342974 0.5062732625367385 0.16950977007342974 0.5062732625367384 0.2969301900639541
+0.16950884424557033 0.5104575898872286 0.16950884424557033 0.5104575898872286 0.2961505486662315
+0.17288931010340547 0.49581340901428805 0.17288931010340547 0.4958134090142881 0.29960159845105433
+0.17288554136474496 0.49999533406448055 0.17288554136474496 0.49999533406448055 0.29980340972382097
+0.17288323501888614 0.5041773308529984 0.17288323501888614 0.5041773308529985 0.2995995777803157
+0.1695077869199317 0.5146415223928477 0.1695077869199317 0.5146415223928477 0.2949902114709029
+0.16950721959257534 0.5188248287681991 0.16950721959257534 0.5188248287681992 0.2934611756234124
+0.1661255325691704 0.5251035437867452 0.1661255325691704 0.5251035437867452 0.28817316114495073
+0.16950728199430184 0.5230089001168012 0.16950728199430184 0.5230089001168013 0.2915780646308237
+0.16612528329666182 0.5292878544841738 0.1661252832966618 0.5292878544841738 0.2858946670902311
+0.16612543091669915 0.5334714443779102 0.16612543091669915 0.5334714443779102 0.2833281057125228
+0.166125974353434 0.5376546856103794 0.166125974353434 0.5376546856103794 0.2804976800680647
+0.3339920047224713 0.30419793120664124 0.3339920047224713 0.30419793120664124 0.2077658363636399
+0.3338373199779436 0.30773427416218463 0.3338373199779436 0.30773427416218463 0.20528962594146294
+0.34515071167727046 0.2862021041672947 0.34515071167727046 0.2862021041672947 0.2348829116738629
+0.3377452071462042 0.29578383567167116 0.3377452071462042 0.29578383567167116 0.21880225544063112
+0.34466873982205987 0.28979472222667413 0.34466873982205987 0.28979472222667413 0.2332561669621902
+0.3410019593684477 0.2945487829136467 0.3410019593684477 0.29454878291364667 0.22515491559304615
+0.3442555007331492 0.2933717086063741 0.3442555007331492 0.2933717086063741 0.23150862939908032
+0.3374429316871225 0.29937874939266523 0.3374429316871225 0.29937874939266523 0.21662171956074006
+0.3371793813254928 0.3029127009363536 0.3371793813254928 0.30291270093635353 0.21431517949845805
+0.3580985362737466 0.2686536607409916 0.3580985362737466 0.2686536607409917 0.25662186209553944
+0.34971606652218196 0.27787505283463715 0.34971606652218196 0.27787505283463715 0.24357156766048796
+0.35728140683172027 0.27227881184412217 0.35728140683172027 0.27227881184412217 0.25587007012503754
+0.3531215708788042 0.2768588204913213 0.3531215708788042 0.2768588204913213 0.24934179252777713
+0.35653269169631896 0.2759053729373029 0.35653269169631896 0.2759053729373029 0.25506562452321746
+0.34908748823510405 0.2815212322544723 0.34908748823510405 0.2815212322544723 0.24236138571155427
+0.3484985775938232 0.28512604155104887 0.3484985775938232 0.28512604155104887 0.2409906466938854
+0.37287377217066436 0.2516734124616131 0.37287377217066436 0.2516734124616131 0.2739987150499564
+0.3634572551106506 0.26059157231933616 0.3634572551106506 0.26059157231933616 0.2631885780067789
+0.37163599548088333 0.2552535624309655 0.3716359954808834 0.2552535624309655 0.2733871769121649
+0.36699138567649653 0.2597005943753659 0.36699138567649653 0.2597005943753659 0.2681486986226458
+0.3705470791291765 0.2589317801941381 0.3705470791291765 0.25893178019413815 0.27302266821411614
+0.36250621579168135 0.26421910983498403 0.36250621579168135 0.26421910983498403 0.262614650675741
+0.36159198327097225 0.2678194392538277 0.36159198327097225 0.26781943925382773 0.26201664719883516
+0.3897475438389653 0.2355015390188098 0.3897475438389653 0.2355015390188098 0.2886575025272671
+0.37902628361657353 0.24427947887977103 0.3790262836165735 0.24427947887977106 0.279633082176032
+0.38812835054512446 0.2387257505210003 0.38812835054512446 0.2387257505210003 0.28785634361528695
+0.38264292662424554 0.24370163998539818 0.38264292662424554 0.24370163998539818 0.2834514929551479
+0.38610627489167965 0.2421888284524683 0.3861062748916796 0.24218882845246828 0.28679223884119454
+0.3777859542016821 0.24770172314789107 0.3777859542016821 0.24770172314789107 0.27903601744320244
+0.3765210889089683 0.2511851923004681 0.3765210889089683 0.25118519230046804 0.27850289077147444
+0.417885170279434 0.21429177280299472 0.417885170279434 0.21429177280299472 0.29623534652097
+0.4158420269567271 0.21734650526233282 0.4158420269567271 0.21734650526233282 0.296986332697125
+0.41376785263482546 0.2204446367978535 0.41376785263482546 0.2204446367978535 0.29753126196473784
+0.4116085384921081 0.2235385276105895 0.41160853849210804 0.22353852761058948 0.29787203905996007
+0.40986604339259014 0.2266105339017846 0.4098660433925901 0.22661053390178457 0.2981479063439833
+0.40785620410340795 0.22950664271922314 0.4078562041034079 0.22950664271922314 0.29818278316757946
+0.3950793733625601 0.23220859326482998 0.3950793733625601 0.23220859326482998 0.29224967138058194
+0.39875823912615466 0.2321554803699316 0.39875823912615466 0.23215548036993158 0.2946213498537608
+0.40614718217763945 0.2322687963443276 0.40614718217763945 0.2322687963443276 0.2983300438917799
+0.402471593626779 0.232118989314201 0.40247159362677903 0.23211898931420102 0.29665724623255313
+0.39346055644476463 0.23545122275065633 0.39346055644476463 0.23545122275065636 0.2916473825632279
+0.4257887040239197 0.2085311780589738 0.4257887040239197 0.2085311780589738 0.29231576132754045
+0.42370617949193407 0.21152303766569966 0.42370617949193407 0.21152303766569966 0.29399148020688676
+0.42955815120448637 0.2087558033749374 0.42955815120448637 0.2087558033749374 0.29011942023578197
+0.42165126268094527 0.2145394504598572 0.42165126268094527 0.2145394504598572 0.29537454458736373
+0.46042359646758607 0.18999329262314402 0.46042359646758607 0.18999329262314402 0.23809029415932273
+0.458341152469954 0.19321167642360662 0.45834115246995394 0.19321167642360662 0.24440509336304483
+0.45596347467193565 0.19684397783022997 0.45596347467193565 0.19684397783022997 0.25123306506359583
+0.45287442835346403 0.1996494691885897 0.4528744283534641 0.1996494691885897 0.2583226942373025
+0.4504826792689498 0.2021437248654489 0.45048267926894975 0.20214372486544893 0.26358257853475914
+0.43323301393435326 0.20898851792870018 0.43323301393435326 0.20898851792870018 0.2874313034331389
+0.43678882780608014 0.20918128049044418 0.43678882780608014 0.20918128049044418 0.2842888028689772
+0.44017679856702496 0.20935707147549204 0.440176798567025 0.209357071475492 0.28078727275141363
+0.4480942469445215 0.2045028790840501 0.4480942469445215 0.2045028790840501 0.2683998676133173
+0.4455504514850027 0.2069023949794145 0.44555045148500266 0.2069023949794145 0.27314337554597623
+0.44360819203747814 0.2096369424920476 0.44360819203747814 0.2096369424920476 0.27677820043865536
+0.48127442113739 0.18291461627972697 0.48127442113739 0.18291461627972697 0.18050156053598687
+0.46657178988926407 0.18641035333336728 0.4665717898892641 0.18641035333336728 0.22185988196204673
+0.470798755215321 0.18635045233167558 0.47079875521532094 0.18635045233167558 0.21143798447792791
+0.47504290332995097 0.1863087219201127 0.47504290332995097 0.1863087219201127 0.2002756779563483
+0.47926771309660027 0.18625559107325562 0.47926771309660027 0.18625559107325562 0.1884658766925922
+0.4644699207884492 0.18986871593800794 0.46446992078844923 0.18986871593800794 0.2290837473470193
+0.5021099135477154 0.1762529736488199 0.5021099135477155 0.1762529736488199 0.11053360592936268
+0.48749683647338976 0.17956760893315574 0.48749683647338976 0.17956760893315574 0.15971774086503474
+0.4916780025078776 0.17956835930131043 0.4916780025078776 0.17956835930131043 0.14656161773556953
+0.4958615739641483 0.17957871248916693 0.4958615739641483 0.17957871248916693 0.13292469694063339
+0.5000485669809028 0.17959046136214288 0.5000485669809028 0.17959046136214288 0.1188601371301246
+0.48545668713065077 0.182880695923875 0.48545668713065077 0.182880695923875 0.1679902174585373
+0.5083788023849544 0.17289069239559396 0.5083788023849544 0.17289069239559396 0.08831849988338586
+0.5125657108483469 0.17288681101182132 0.5125657108483469 0.17288681101182132 0.07423364982472493
+0.5167492315003742 0.17288266029452223 0.5167492315003742 0.17288266029452223 0.06043635277858204
+0.506299072892925 0.17625451822846708 0.506299072892925 0.17625451822846708 0.09625180248102673
+0.5397489539748759 0.15595763157777132 0.5397489539748759 0.15595763157777132 0.040305887575679454
+0.5334728033472605 0.15934801487294026 0.5334728033472605 0.15934801487294026 0.03176973776175263
+0.5376569037656708 0.15934801487294026 0.5376569037656708 0.15934801487294026 0.037342629593420024
+0.5209308848761129 0.17288056546345623 0.5209308848761128 0.17288056546345623 0.0474939427021256
+0.5313807964592159 0.16273805753769302 0.5313807964592159 0.16273805753769302 0.031082060424200673
+0.5292894008148151 0.1661261038515073 0.5292894008148151 0.1661261038515073 0.0315132584920258
+0.5271991357583877 0.16950828511764968 0.5271991357583877 0.16950828511764968 0.033348607628724054
+0.5251120610867689 0.17288093212399805 0.5251120610867689 0.17288093212399805 0.03667689375407735
+0.5439330543932861 0.15595763157777132 0.5439330543932862 0.15595763157777132 0.05065357639474841
+0.5481171548116963 0.15595763157777132 0.5481171548116963 0.15595763157777132 0.06265573758822574
+0.5543933054393116 0.15256724828260237 0.5543933054393116 0.15256724828260237 0.07860358072311037
+0.5523012552301065 0.15595763157777132 0.5523012552301064 0.15595763157777132 0.07550649465006508
+0.5585774058577219 0.15256724828260237 0.5585774058577219 0.15256724828260237 0.09168666313153351
+0.5648535564853372 0.14917686498743343 0.5648535564853372 0.14917686498743343 0.10736175537166535
+0.5627615062761321 0.15256724828260237 0.5627615062761321 0.15256724828260237 0.10497913882045586
+0.5711297071129525 0.1457864816922645 0.5711297071129525 0.1457864816922645 0.12264689857679946
+0.5690376569037474 0.14917686498743343 0.5690376569037473 0.14917686498743343 0.12056158759617781
+0.6087866108786445 0.10510188215023719 0.6087866108786445 0.10510188215023719 0.20653091220629152
+0.6025104602510292 0.10849226544540613 0.6025104602510291 0.10849226544540613 0.18858776977401046
+0.6066945606694394 0.10849226544540613 0.6066945606694394 0.10849226544540613 0.2016571343121001
+0.6004184100418241 0.11188264874057507 0.6004184100418241 0.11188264874057507 0.1835428487110682
+0.598326359832619 0.11527303203574402 0.598326359832619 0.11527303203574402 0.17860727658191708
+0.5962343096234138 0.11866341533091296 0.5962343096234138 0.11866341533091296 0.17387747358483072
+0.5899581589957985 0.1220537986260819 0.5899581589957985 0.1220537986260819 0.15608588135155377
+0.5878661087865934 0.12544418192125084 0.5878661087865934 0.12544418192125084 0.1520601378801076
+0.5857740585773883 0.12883456521641978 0.5857740585773882 0.12883456521641978 0.14844673924718388
+0.5836820083681832 0.13222494851158872 0.5836820083681832 0.13222494851158872 0.14525013018761887
+0.5815899581589781 0.13561533180675767 0.5815899581589781 0.13561533180675767 0.14244620918275966
+0.579497907949773 0.1390057151019266 0.579497907949773 0.1390057151019266 0.13998367914858958
+0.5774058577405679 0.14239609839709555 0.577405857740568 0.14239609839709555 0.1377876465252148
+0.5753138075313627 0.1457864816922645 0.5753138075313627 0.1457864816922645 0.1357650066317058
+0.5941422594142087 0.1220537986260819 0.5941422594142088 0.1220537986260819 0.16943744318640439
+0.61924686192467 0.09493073226473037 0.6192468619246699 0.09493073226473037 0.2315511870786515
+0.6234309623430803 0.09493073226473037 0.6234309623430803 0.09493073226473037 0.24281655156719342
+0.6171548117154649 0.09832111555989931 0.6171548117154649 0.09832111555989931 0.22777136622618507
+0.6150627615062598 0.10171149885506825 0.6150627615062598 0.10171149885506825 0.22360639410718486
+0.6129707112970547 0.10510188215023719 0.6129707112970547 0.10510188215023719 0.21914628845798698
+0.6443514644351314 0.06780766590337883 0.6443514644351315 0.06780766590337883 0.2565025210928444
+0.6422594142259263 0.07119804919854777 0.6422594142259263 0.07119804919854777 0.25823897604616414
+0.6401673640167211 0.07458843249371672 0.6401673640167211 0.07458843249371672 0.2594213414803124
+0.638075313807516 0.07797881578888566 0.638075313807516 0.07797881578888566 0.2600075355660428
+0.6359832635983109 0.0813691990840546 0.6359832635983108 0.0813691990840546 0.2599708118224506
+0.6338912133891058 0.08475958237922354 0.6338912133891058 0.08475958237922354 0.25930026194199757
+0.6317991631799007 0.08814996567439248 0.6317991631799007 0.08814996567439248 0.2580010573162956
+0.6297071129706956 0.09154034896956142 0.6297071129706956 0.09154034896956142 0.2560944199186324
+0.6276150627614905 0.09493073226473037 0.6276150627614906 0.09493073226473037 0.2536173000378094
+0.6506276150627467 0.06441728260820989 0.6506276150627467 0.06441728260820989 0.2608672788630308
+0.6485355648535416 0.06780766590337883 0.6485355648535416 0.06780766590337883 0.2634139288112208
+0.656903765690362 0.06102689931304095 0.656903765690362 0.06102689931304095 0.2639788072217133
+0.6548117154811569 0.06441728260820989 0.6548117154811569 0.06441728260820989 0.2671280187819769
+0.6631799163179773 0.05763651601787201 0.6631799163179773 0.05763651601787201 0.2662712353759966
+0.6610878661087722 0.06102689931304095 0.6610878661087723 0.06102689931304095 0.26978353912414604
+0.6694560669455927 0.054246132722703067 0.6694560669455926 0.054246132722703067 0.26821535367040306
+0.6673640167363876 0.05763651601787201 0.6673640167363876 0.05763651601787201 0.2718423329347219
+0.675732217573208 0.050855749427534125 0.675732217573208 0.050855749427534125 0.27026938671439527
+0.6736401673640029 0.054246132722703067 0.6736401673640029 0.054246132722703067 0.2737803609468717
+0.6841004184100284 0.04407498283719624 0.6841004184100284 0.04407498283719624 0.26984625617260694
+0.6820083682008233 0.04746536613236518 0.6820083682008233 0.04746536613236518 0.2728257463431223
+0.6799163179916182 0.050855749427534125 0.6799163179916182 0.050855749427534125 0.2760342937691848
+0.6903765690376438 0.0406845995420273 0.6903765690376438 0.0406845995420273 0.27365912273811727
+0.6882845188284387 0.04407498283719624 0.6882845188284387 0.04407498283719624 0.27616349180647215
+0.6966527196652591 0.03729421624685836 0.6966527196652591 0.03729421624685836 0.27840136549168154
+0.694560669456054 0.0406845995420273 0.6945606694560541 0.0406845995420273 0.2804174589914998
+0.7029288702928744 0.03390383295168942 0.7029288702928743 0.03390383295168942 0.283995987457668
+0.7008368200836693 0.03729421624685836 0.7008368200836693 0.03729421624685836 0.28557206413447306
+0.7092050209204898 0.030513449656520475 0.7092050209204898 0.030513449656520475 0.290257553862392
+0.7071129707112846 0.03390383295168942 0.7071129707112846 0.03390383295168942 0.29148109597105726
+0.7154811715481051 0.027123066361351533 0.7154811715481051 0.027123066361351533 0.2969368287434437
+0.7133891213389 0.030513449656520475 0.7133891213389 0.030513449656520475 0.2979074113129647
+0.7217573221757204 0.02373268306618259 0.7217573221757204 0.02373268306618259 0.30376834254289803
+0.7196652719665153 0.027123066361351533 0.7196652719665152 0.027123066361351533 0.30457185726887875
+0.7280334728033357 0.02034229977101365 0.7280334728033359 0.02034229977101365 0.3105113056362949
+0.7259414225941306 0.02373268306618259 0.7259414225941306 0.02373268306618259 0.31120042082656085
+0.7364016736401562 0.013561533180675767 0.7364016736401561 0.013561533180675767 0.31684640590344343
+0.7343096234309511 0.01695191647584471 0.7343096234309511 0.01695191647584471 0.3169778770154097
+0.732217573221746 0.02034229977101365 0.732217573221746 0.02034229977101365 0.31756145467397395
+0.7426778242677715 0.010171149885506825 0.7426778242677715 0.010171149885506825 0.32314619343212486
+0.7405857740585664 0.013561533180675767 0.7405857740585664 0.013561533180675767 0.32304650486880687
+0.7489539748953868 0.006780766590337883 0.7489539748953868 0.006780766590337883 0.329070169557605
+0.7468619246861817 0.010171149885506825 0.7468619246861817 0.010171149885506825 0.32866092360026816
+0.7531380753137971 0.006780766590337883 0.753138075313797 0.006780766590337883 0.33381736745155205
+0.006780766590337709 0.7573221757322157 0.006780766590337709 0.7573221757322157 0.13253405929561216
+0.006780766590337709 0.7615062761506257 0.006780766590337709 0.7615062761506257 0.12987827278901712
+0.01017114988550656 0.7510460251046007 0.01017114988550656 0.7510460251046007 0.13682570189396182
+0.01017114988550656 0.7552301255230107 0.01017114988550656 0.7552301255230107 0.13443781309721137
+0.013561533180675408 0.7447698744769857 0.013561533180675408 0.7447698744769857 0.14088212929370506
+0.013561533180675408 0.7489539748953957 0.013561533180675408 0.7489539748953957 0.13877654548462545
+0.016951916475844264 0.7426778242677807 0.016951916475844264 0.7426778242677807 0.14280812050707917
+0.02034229977101312 0.7364016736401657 0.02034229977101312 0.7364016736401657 0.14645404099627848
+0.02034229977101312 0.7405857740585757 0.02034229977101312 0.7405857740585757 0.1447454338234855
+0.02373268306618197 0.7301255230125507 0.02373268306618197 0.7301255230125507 0.1496558891689619
+0.02373268306618197 0.7343096234309607 0.02373268306618197 0.7343096234309607 0.1482238123895575
+0.027123066361350822 0.7238493723849357 0.027123066361350822 0.7238493723849357 0.15238770433726534
+0.027123066361350822 0.7280334728033457 0.027123066361350822 0.7280334728033457 0.15119753283251802
+0.030513449656519673 0.7175732217573207 0.030513449656519673 0.7175732217573207 0.15466682691400022
+0.030513449656519673 0.7217573221757307 0.030513449656519673 0.7217573221757307 0.1536626245619419
+0.033903832951688535 0.7112970711297057 0.033903832951688535 0.7112970711297057 0.15656152662163367
+0.033903832951688535 0.7154811715481157 0.033903832951688535 0.7154811715481157 0.15566538549274492
+0.03729421624685738 0.7050209205020908 0.03729421624685738 0.7050209205020908 0.1581936877965724
+0.03729421624685738 0.7092050209205008 0.03729421624685738 0.7092050209205008 0.15730747291058592
+0.040684599542026224 0.6987447698744758 0.040684599542026224 0.6987447698744758 0.15973482606828934
+0.040684599542026224 0.7029288702928858 0.040684599542026224 0.7029288702928858 0.15874511161288343
+0.0440749828371951 0.6924686192468608 0.0440749828371951 0.6924686192468608 0.16139400652375244
+0.0440749828371951 0.6966527196652708 0.0440749828371951 0.6966527196652708 0.16018071708440906
+0.04746536613236394 0.6861924686192458 0.04746536613236394 0.6861924686192458 0.1633971811280889
+0.04746536613236394 0.6903765690376558 0.04746536613236394 0.6903765690376558 0.16184577808158018
+0.05085574942753279 0.6841004184100408 0.05085574942753279 0.6841004184100408 0.16397526570316337
+0.05424613272270165 0.6778242677824258 0.054246132722701644 0.6778242677824258 0.1667762392359947
+0.05424613272270165 0.6820083682008358 0.054246132722701644 0.6820083682008358 0.1645402013983769
+0.05763651601787049 0.6715481171548108 0.05763651601787049 0.6715481171548108 0.17039608706853562
+0.05763651601787049 0.6757322175732208 0.05763651601787049 0.6757322175732208 0.16763848166061882
+0.06102689931303934 0.6652719665271958 0.06102689931303934 0.6652719665271958 0.17489754168419938
+0.06102689931303934 0.6694560669456058 0.06102689931303934 0.6694560669456058 0.17162680219884607
+0.06441728260820821 0.6589958158995808 0.06441728260820821 0.6589958158995808 0.18024676690325225
+0.06441728260820821 0.6631799163179908 0.06441728260820821 0.6631799163179908 0.176521192652882
+0.06780766590337706 0.6527196652719658 0.06780766590337706 0.6527196652719658 0.18631726063775914
+0.06780766590337706 0.6569037656903758 0.06780766590337706 0.6569037656903758 0.1822376393620553
+0.0711980491985459 0.6464435146443508 0.0711980491985459 0.6464435146443508 0.19290771499837803
+0.0711980491985459 0.6506276150627608 0.0711980491985459 0.6506276150627608 0.18860444192238113
+0.07458843249371476 0.6443514644351458 0.07458843249371476 0.6443514644351458 0.19538656205963878
+0.07797881578888362 0.6422594142259408 0.07797881578888362 0.6422594142259408 0.19786870940496074
+0.08136919908405248 0.6401673640167358 0.08136919908405248 0.6401673640167358 0.20032860701879132
+0.08475958237922132 0.6380753138075308 0.08475958237922132 0.6380753138075308 0.20273982110144997
+0.08814996567439015 0.6359832635983258 0.08814996567439015 0.6359832635983258 0.20507622383305882
+0.09154034896955902 0.6338912133891208 0.09154034896955902 0.6338912133891208 0.20731318468265428
+0.09493073226472787 0.6276150627615058 0.09493073226472787 0.6276150627615058 0.21370438187972587
+0.09832111555989675 0.6255230125523008 0.09832111555989675 0.6255230125523008 0.21556372908303648
+0.10849226544540343 0.6108786610878658 0.10849226544540343 0.6108786610878658 0.22668547630599736
+0.11527303203574124 0.6025104602510458 0.11527303203574124 0.6025104602510458 0.23096256928761208
+0.11866341533091013 0.6004184100418408 0.11866341533091011 0.6004184100418408 0.23156119306650894
+0.12544418192124793 0.5920502092050208 0.12544418192124793 0.5920502092050208 0.23496256334725052
+0.1288345652164168 0.5899581589958158 0.1288345652164168 0.5899581589958158 0.235633435218616
+0.13222494851158573 0.5878661087866108 0.13222494851158573 0.5878661087866108 0.2364325711824681
+0.1356153318067546 0.5815899581589958 0.13561533180675459 0.5815899581589958 0.2397152172225678
+0.1390057151019235 0.5794979079497908 0.1390057151019235 0.5794979079497908 0.2410108367598303
+0.1423960983970924 0.5774058577405858 0.1423960983970924 0.5774058577405858 0.24254183939704846
+0.1356153318067546 0.5857740585774058 0.13561533180675459 0.5857740585774058 0.2373947771666732
+0.12205379862607901 0.5983263598326358 0.12205379862607901 0.5983263598326358 0.2321334600947814
+0.12544418192124793 0.5962343096234308 0.12544418192124793 0.5962343096234308 0.23272043805646045
+0.11188264874057234 0.6087866108786608 0.11188264874057234 0.6087866108786608 0.22758056141493843
+0.11527303203574124 0.6066945606694558 0.11527303203574124 0.6066945606694558 0.2283549204561379
+0.10171149885506564 0.6192468619246858 0.10171149885506563 0.6192468619246858 0.22099054883964717
+0.10171149885506564 0.6234309623430958 0.10171149885506563 0.6234309623430958 0.217252072459202
+0.10510188215023453 0.6171548117154808 0.10510188215023453 0.6171548117154808 0.22235398399925002
+0.10849226544540343 0.6150627615062758 0.10849226544540343 0.6150627615062758 0.22354539216481628
+0.09493073226472787 0.6317991631799158 0.09493073226472787 0.6317991631799158 0.20942870605002947
+0.15595763157774645 0.5564853556485189 0.15595763157774645 0.5564853556485189 0.2608819280750206
+0.15595763157776935 0.560669456066932 0.15595763157776935 0.560669456066932 0.2576757794782352
+0.15934801487287928 0.5543933054393425 0.15934801487287928 0.5543933054393425 0.2640534815923934
+0.16273839215248226 0.5523012453841049 0.1627383921524823 0.5523012453841049 0.2673335597563917
+0.16612688673560408 0.5418387224388924 0.16612688673560408 0.5418387224388924 0.27742846222734346
+0.16612780116783102 0.5460236448455104 0.16612780116783102 0.5460236448455104 0.27414679774682865
+0.1661284201945877 0.5502086301289829 0.1661284201945877 0.5502086301289829 0.2706802816171246
+0.14578648169226133 0.571129707112971 0.14578648169226135 0.571129707112971 0.24707159908696927
+0.14917686498743035 0.5690376569037662 0.14917686498743035 0.5690376569037662 0.24928587093851348
+0.1525672482825999 0.5669456066945614 0.1525672482825999 0.5669456066945614 0.25173341342247596
+0.1559576315777707 0.5648535564853553 0.15595763157777068 0.5648535564853553 0.25439053533928785
+0.1457864816922613 0.5753138075313808 0.1457864816922613 0.5753138075313808 0.24431610212137747
+0.3337745017085596 0.3112485227883213 0.3337745017085596 0.3112485227883213 0.20282900163267412
+0.3308216480870285 0.31270997907747256 0.3308216480870285 0.31270997907747256 0.1964038535009143
+0.32770150086978483 0.3140800631117851 0.32770150086978483 0.3140800631117851 0.18985184739821634
+0.32458408159071256 0.31554072243952325 0.32458408159071256 0.31554072243952325 0.18340320588618853
+0.32147006630296504 0.317046249048628 0.32147006630296504 0.31704624904862794 0.17711770501650528
+0.31839102358296845 0.3185855458007965 0.3183910235829685 0.3185855458007965 0.17108039557415478
+0.31535472982276264 0.3201770817466201 0.31535472982276264 0.3201770817466201 0.1653098138296343
+0.31235000397692636 0.32182159405744537 0.3123500039769263 0.32182159405744537 0.1598104452150815
+0.3093445152507874 0.3235167371734304 0.3093445152507874 0.3235167371734304 0.1545666353321362
+0.30634906074252577 0.3252578836316875 0.3063490607425257 0.3252578836316875 0.14962634956266194
+0.30335616284454947 0.32704491643254735 0.3033561628445494 0.32704491643254735 0.14501588289217612
+0.30035961026948754 0.32886922579882705 0.3003596102694876 0.32886922579882705 0.14077395449007754
+0.2973789589342681 0.3307397495649943 0.2973789589342681 0.33073974956499436 0.13694956239849812
+0.29443821443293894 0.3326533916518915 0.29443821443293894 0.3326533916518915 0.13359261696515332
+0.2915212370731643 0.3346141096712141 0.2915212370731643 0.3346141096712141 0.13071275472911595
+0.2886118275840707 0.3366263674037186 0.2886118275840707 0.3366263674037186 0.12832427070354877
+0.2857269832307689 0.33869839994599577 0.2857269832307689 0.33869839994599577 0.126457573415252
+0.2828523246208055 0.3408207766001361 0.2828523246208055 0.3408207766001361 0.12513607284677095
+0.2799819497333383 0.3429738001870872 0.2799819497333383 0.3429738001870872 0.124382008720876
+0.27711154237339825 0.34514463219796143 0.27711154237339825 0.34514463219796143 0.12419942629376512
+0.27424353595581186 0.3473398912798695 0.2742435359558119 0.3473398912798695 0.1245790110512217
+0.27137766285256876 0.3495864253935788 0.27137766285256876 0.3495864253935788 0.1255053585557816
+0.2686164093042389 0.3519677310057307 0.2686164093042389 0.3519677310057307 0.1269441201014472
+0.2659211693239838 0.35443230101574336 0.2659211693239838 0.35443230101574336 0.12889760847556742
+0.26323119467679257 0.35687891890080625 0.2632311946767926 0.3568789189008062 0.13132193783105786
+0.260498621769185 0.3593062773999156 0.260498621769185 0.3593062773999156 0.13417594929455376
+0.25772348376521514 0.3617031234227523 0.25772348376521514 0.3617031234227523 0.137403546191512
+0.2548387381394484 0.36406704045727023 0.2548387381394484 0.3640670404572703 0.14099318870949892
+0.2518132146429779 0.36667399534325656 0.2518132146429779 0.3666739953432566 0.1451982534240128
+0.24993727837636526 0.3700522635892232 0.24993727837636523 0.3700522635892232 0.14969885404474306
+0.24749517007919677 0.37272888701697454 0.24749517007919677 0.37272888701697454 0.15417401232441574
+0.244936225874229 0.3752273140670366 0.244936225874229 0.3752273140670366 0.15867213238737096
+0.24232967277757475 0.37770310228908827 0.24232967277757475 0.37770310228908827 0.16330860893250232
+0.23434661871407786 0.3847513236552152 0.2343466187140779 0.3847513236552152 0.1772993484362397
+0.2396315511520185 0.3801298467156783 0.23963155115201848 0.38012984671567823 0.16803865686254785
+0.23692817646886438 0.38243703991541533 0.2369281764688644 0.38243703991541533 0.17267890160543195
+0.23555043914760843 0.3880193674926775 0.23555043914760843 0.3880193674926775 0.1810553054452693
+0.23294321450608046 0.3902731452695267 0.2329432145060805 0.3902731452695267 0.18579871378622823
+0.23054760076373376 0.3925556362352606 0.23054760076373373 0.39255563623526063 0.190379601214991
+0.2181668221065306 0.4062798593966832 0.21816682210653057 0.4062798593966832 0.21637173052532319
+0.2281639337435247 0.39537965188924 0.2281639337435247 0.39537965188924 0.19573489076325193
+0.2256987007746667 0.39816701134844146 0.2256987007746667 0.39816701134844146 0.20105483197135773
+0.22070343620540278 0.403741038935375 0.22070343620540278 0.403741038935375 0.21156885164902564
+0.22319298734937354 0.40094642991767193 0.2231929873493735 0.40094642991767193 0.2063391097568044
+0.21890594595805185 0.40919241725873656 0.21890594595805185 0.40919241725873656 0.22043850583315566
+0.2173817844970576 0.4119071977151788 0.2173817844970576 0.41190719771517875 0.225155915449709
+0.21529353217450972 0.41481378733143087 0.21529353217450972 0.41481378733143087 0.2301983716918896
+0.2042496037986702 0.42935947264558716 0.20424960379867016 0.4293594726455872 0.25365370394525844
+0.20655220653711925 0.42636629690427935 0.20655220653711925 0.42636629690427935 0.24911662665658493
+0.20874415881716657 0.42350269919539685 0.20874415881716657 0.4235026991953968 0.2446275232928059
+0.21310989559408144 0.4176506273543967 0.21310989559408142 0.4176506273543967 0.23505320578397812
+0.21093063274965415 0.4205620770743 0.21093063274965415 0.4205620770743 0.23989146677767922
+0.20583205376233485 0.4324491881889685 0.20583205376233485 0.4324491881889685 0.2577962030813071
+0.2038884108561824 0.4355085538808175 0.2038884108561824 0.4355085538808175 0.26212669676228195
+0.20189784029158825 0.4386026010217943 0.20189784029158828 0.4386026010217943 0.26629843558268534
+0.19315088841477424 0.4495952651880374 0.19315088841477424 0.44959526518803733 0.2790856108883522
+0.1962671618527975 0.4471744868602306 0.1962671618527975 0.4471744868602306 0.27668720216746684
+0.19953166289443414 0.44158050484207 0.19953166289443414 0.44158050484207 0.27020222862736126
+0.19862536628228894 0.4450260318465431 0.19862536628228894 0.4450260318465431 0.27428388937709075
+0.1932243151606877 0.4539853291777716 0.1932243151606877 0.4539853291777716 0.2839308955569772
+0.18625026742812334 0.46660036669461286 0.18625026742812334 0.46660036669461286 0.2936571147607469
+0.19279491673475524 0.4583823912865867 0.19279491673475524 0.4583823912865867 0.2883328993271541
+0.19271115809334505 0.4626308771796214 0.19271115809334505 0.4626308771796214 0.2922958186362097
+0.18956332820922359 0.46456377783233654 0.18956332820922359 0.46456377783233654 0.2931199969199154
+0.18623908779692203 0.4707767800930154 0.18623908779692203 0.4707767800930154 0.29681315176460527
+0.1762559057222989 0.4937165660975367 0.1762559057222989 0.4937165660975367 0.3015740467908821
+0.18293720917595202 0.47695045017125764 0.18293720917595202 0.47695045017125764 0.2993020735530188
+0.18622072364199846 0.4749321201757451 0.18622072364199846 0.4749321201757451 0.29958604726862426
+0.17960983547660722 0.4832273056106729 0.17960983547660722 0.4832273056106729 0.30063709638975933
+0.1829346701162539 0.481118485520936 0.1829346701162539 0.481118485520936 0.3014547902464741
+0.1796151343797917 0.4874175032820056 0.1796151343797917 0.4874175032820056 0.3021469253208536
+0.17960947952904974 0.49161296856944287 0.17960947952904974 0.49161296856944287 0.3032310416878605
+0.17288168257683467 0.5083615074686739 0.17288168257683467 0.5083615074686739 0.29899122563865616
+0.17287974764515682 0.5125470181862466 0.17287974764515682 0.5125470181862467 0.29798241144134213
+0.17624758390841364 0.4978992419761674 0.17624758390841364 0.4978992419761674 0.3019900456737226
+0.17624187284273915 0.5020776877588682 0.17624187284273915 0.5020776877588683 0.30198745525353404
+0.1762395802003056 0.5062581357862911 0.1762395802003056 0.5062581357862911 0.30156852253710514
+0.1728775696639803 0.516731761415061 0.1728775696639803 0.5167317614150609 0.29658301341000143
+0.17287665559041934 0.5209154352403774 0.17287665559041934 0.5209154352403774 0.2948078478119817
+0.16950738778863605 0.5271941846650912 0.16950738778863605 0.527194184665091 0.2893583903176716
+0.1728775960442511 0.5250999075184637 0.1728775960442511 0.5250999075184638 0.2926735016559902
+0.16950739789327673 0.5313783121940382 0.16950739789327673 0.5313783121940382 0.2868245425600198
+0.1695081899056566 0.535560188404501 0.1695081899056566 0.535560188404501 0.28400192344393527
+0.16951005894312668 0.5397416203245672 0.16951005894312668 0.5397416203245672 0.2809158570214574
+0.3369420026025618 0.3064218135679265 0.3369420026025618 0.3064218135679266 0.2118663805548093
+0.3367359368056322 0.3098880049180724 0.3367359368056322 0.3098880049180724 0.20932208043545156
+0.3479585038257414 0.28869590578999615 0.3479585038257414 0.2886959057899961 0.23946510325760287
+0.340671416970402 0.29812737239747134 0.340671416970402 0.29812737239747134 0.2231194985199024
+0.3474912530639986 0.29224486497382945 0.3474912530639986 0.29224486497382945 0.23782591211600349
+0.3438976480492462 0.2969261419248565 0.3438976480492462 0.2969261419248565 0.2296282682818108
+0.34710072869829783 0.29577468652865174 0.34710072869829783 0.29577468652865174 0.23608884191096102
+0.34038951686743973 0.30167076399686116 0.34038951686743973 0.30167076399686116 0.22095715467709676
+0.34011575523233717 0.30517304192455574 0.3401157552323371 0.30517304192455574 0.21861625811664434
+0.36072520306427647 0.27141135244993003 0.36072520306427647 0.27141135244993003 0.2613749965633913
+0.3524620732335605 0.2804914169140591 0.35246207323356055 0.2804914169140591 0.24828237635212402
+0.35993169286595234 0.275002609609677 0.35993169286595234 0.275002609609677 0.2606978302501757
+0.3558321553771772 0.27951375412936946 0.3558321553771772 0.27951375412936946 0.25414472819579315
+0.3592050279210956 0.27858578775742293 0.3592050279210956 0.27858578775742293 0.25994484723986333
+0.3518478471950833 0.28409223843956527 0.3518478471950833 0.28409223843956527 0.24707548041117214
+0.35127059565831714 0.28765200573424593 0.35127059565831714 0.28765200573424593 0.24569370228663476
+0.3752855963007897 0.25471639542922314 0.3752855963007897 0.25471639542922314 0.27807316659396647
+0.36601764813680276 0.2633925591956781 0.36601764813680276 0.2633925591956781 0.2677396042726095
+0.37412716817129127 0.258296073677251 0.37412716817129127 0.258296073677251 0.2777865866281801
+0.36951553835206574 0.2626173827959605 0.3695155383520658 0.2626173827959604 0.27271846304646363
+0.37305401483025874 0.2619029393500696 0.37305401483025874 0.2619029393500696 0.2776114280815625
+0.3650812484418642 0.2670060628748403 0.3650812484418642 0.2670060628748403 0.2673038123499158
+0.3641830640668564 0.27058625005349296 0.3641830640668564 0.27058625005349296 0.26681276860035386
+0.3918525739016061 0.23870708137097243 0.3918525739016061 0.23870708137097243 0.2911012767254424
+0.38139677954505924 0.24712165557742238 0.38139677954505924 0.2471216555774224 0.28306337203551474
+0.3902475577555602 0.24201370663384902 0.3902475577555602 0.24201370663384902 0.29061829528272126
+0.3850411729145973 0.24634741531884377 0.3850411729145973 0.24634741531884377 0.28683688186127393
+0.38880646501555627 0.24568291557569455 0.38880646501555627 0.24568291557569455 0.29049781619327936
+0.3801385431830689 0.25063949933193164 0.3801385431830689 0.25063949933193164 0.2827466877903093
+0.378893356968064 0.254171539148707 0.378893356968064 0.254171539148707 0.28250827402864903
+0.41960244065402574 0.21758813827280724 0.4196024406540257 0.21758813827280724 0.29651082676501916
+0.41754859194749705 0.22065752851549297 0.4175485919474971 0.220657528515493 0.2974345512221372
+0.41549319814279123 0.22376647862951235 0.41549319814279123 0.22376647862951235 0.2981825632190409
+0.41351037846655103 0.22682573254151825 0.41351037846655103 0.22682573254151825 0.29878373988174006
+0.41158690191793607 0.22976270565301862 0.41158690191793607 0.22976270565301862 0.29923054411115674
+0.40977867640119425 0.23249475040914835 0.4097786764011943 0.23249475040914835 0.29955696792276815
+0.3971575809667153 0.23538019089622236 0.3971575809667152 0.23538019089622234 0.29429570030874036
+0.4008634249304168 0.235315973292024 0.4008634249304168 0.235315973292024 0.2966004141107095
+0.4081552373098842 0.2354218619370193 0.4081552373098842 0.23542186193701928 0.3000503470135137
+0.40455230511089524 0.2353044656576634 0.4045523051108953 0.23530446565766336 0.2985267738209867
+0.39556476774279586 0.23863052838279689 0.39556476774279586 0.23863052838279689 0.2940240857383229
+0.4274740159004105 0.21175314421907587 0.4274740159004105 0.21175314421907587 0.29220257326025706
+0.4254135567988571 0.21477635271731257 0.4254135567988571 0.21477635271731257 0.29398930419619157
+0.43120345058713944 0.21197834793285297 0.43120345058713944 0.21197834793285297 0.28987955388518566
+0.42336015036329294 0.217829366301057 0.42336015036329294 0.217829366301057 0.29552562598481574
+0.462718033583278 0.19376852155281915 0.46271803358327807 0.19376852155281912 0.23553879982213327
+0.45998253441220105 0.1965792826894519 0.459982534412201 0.1965792826894519 0.24299236290546755
+0.4586521862187054 0.19919956891497553 0.45865218621870535 0.19919956891497553 0.2471289110521276
+0.456259627924429 0.2005962302540799 0.45625962792442903 0.20059623025407988 0.25262251835181565
+0.4538382383261253 0.20313489373731086 0.4538382383261253 0.20313489373731083 0.25834217733562603
+0.45146969838343365 0.20554657952453048 0.45146969838343365 0.2055465795245305 0.2635379446776677
+0.43489005636717315 0.2121792745337512 0.4348900563671732 0.2121792745337512 0.28701938376761743
+0.4385319437392821 0.21237758366633963 0.4385319437392821 0.21237758366633966 0.28363875045357995
+0.44191653460894587 0.2123246416616018 0.4419165346089459 0.2123246416616018 0.27984504561201895
+0.44906369998524165 0.2078771698165145 0.4490636999852416 0.2078771698165145 0.2684078131729826
+0.44692929921410524 0.21035701512783211 0.44692929921410524 0.2103570151278321 0.2725993860969756
+0.44500275931451033 0.21267645719223963 0.44500275931451033 0.21267645719223963 0.2761272375182417
+0.44348829599075645 0.21446380156207928 0.4434882959907565 0.21446380156207928 0.27868136677135746
+0.4834497272573639 0.1861861155844209 0.4834497272573639 0.1861861155844209 0.17611709529151567
+0.4686986517346535 0.18970555583083548 0.4686986517346536 0.18970555583083548 0.21892196271643724
+0.4729984734168354 0.18965908000811516 0.4729984734168354 0.18965908000811516 0.20793586509682774
+0.47729488238707013 0.18962912676761143 0.47729488238707013 0.18962912676761143 0.19622351698782925
+0.4815085663325407 0.18952070405097007 0.4815085663325407 0.18952070405097007 0.18398070482916976
+0.4666495667855915 0.19298621988959336 0.4666495667855915 0.19298621988959333 0.22594778836779364
+0.4658413295864626 0.1959143179799372 0.4658413295864626 0.1959143179799372 0.22958241829716924
+0.5042377326787116 0.17959707673607092 0.5042377326787116 0.17959707673607092 0.10444988037547957
+0.4896369952931436 0.18286847384217222 0.4896369952931436 0.18286847384217222 0.1549321862198381
+0.4938245191807729 0.1828799195259808 0.4938245191807729 0.1828799195259808 0.14134002695771875
+0.49801477529683424 0.1828988185409758 0.49801477529683424 0.1828988185409758 0.12727057761260793
+0.5022047632317536 0.18291411220579823 0.5022047632317536 0.18291411220579823 0.11279981051538583
+0.4876090615043569 0.18613450417020272 0.48760906150435696 0.18613450417020272 0.16325035848966055
+0.5104868964465187 0.17625085690067996 0.5104868964465187 0.17625085690067996 0.08184595774115912
+0.5146718011280392 0.17624591970082437 0.5146718011280392 0.17624591970082437 0.06754483072041416
+0.5188542564449888 0.17624256525379292 0.5188542564449888 0.17624256525379292 0.053759673721176494
+0.5084258892128947 0.17959755755168116 0.5084258892128947 0.17959755755168116 0.08981784322627796
+0.541841004184081 0.15934801487294026 0.541841004184081 0.15934801487294026 0.04711223693993439
+0.5355648775423799 0.16273815882444265 0.5355648775423799 0.16273815882444265 0.03451471258577066
+0.5397489622594245 0.1627383043479916 0.5397489622594245 0.1627383043479916 0.043336408446116685
+0.5230348962392517 0.17624157689839237 0.5230348962392517 0.17624157689839237 0.04137576881034127
+0.5334730762398286 0.16612669056095064 0.5334730762398286 0.16612669056095064 0.03214962231789497
+0.5313819489227634 0.16950988789304433 0.5313819489227632 0.16950988789304433 0.03070481814566126
+0.5292936080278988 0.1728833981661347 0.5292936080278988 0.1728833981661347 0.030685954769856878
+0.5272144330217723 0.17624348518347202 0.5272144330217722 0.17624348518347202 0.03244060222038081
+0.5460251046024912 0.15934801487294026 0.5460251046024912 0.15934801487294026 0.0590313868286389
+0.5502092050209014 0.15934801487294026 0.5502092050209014 0.15934801487294026 0.07201828883198615
+0.5564853556485168 0.15595763157777132 0.5564853556485168 0.15595763157777132 0.08880631236741555
+0.5543933054393116 0.15934801487294026 0.5543933054393116 0.15934801487294026 0.0855514334500035
+0.560669456066927 0.15595763157777132 0.5606694560669271 0.15595763157777132 0.10234200949916693
+0.5669456066945423 0.15256724828260237 0.5669456066945423 0.15256724828260237 0.1183776085164925
+0.5648535564853372 0.15595763157777132 0.5648535564853372 0.15595763157777132 0.1159893729510043
+0.5732217573221576 0.14917686498743343 0.5732217573221576 0.14917686498743343 0.13381089578992264
+0.5711297071129525 0.15256724828260237 0.5711297071129525 0.15256724828260237 0.13181542149731315
+0.6108786610878496 0.10849226544540613 0.6108786610878497 0.10849226544540613 0.2144895084981169
+0.6046025104602343 0.11188264874057507 0.6046025104602343 0.11188264874057507 0.1967396770967439
+0.6087866108786445 0.11188264874057507 0.6087866108786445 0.11188264874057507 0.20973985398934133
+0.6025104602510292 0.11527303203574402 0.6025104602510291 0.11527303203574402 0.19188361065828866
+0.6004184100418241 0.11866341533091296 0.6004184100418241 0.11866341533091296 0.18718908547466404
+0.598326359832619 0.1220537986260819 0.598326359832619 0.1220537986260819 0.18274620838900435
+0.5920502092050036 0.12544418192125084 0.5920502092050036 0.12544418192125084 0.16535346477878898
+0.5899581589957985 0.12883456521641978 0.5899581589957985 0.12883456521641978 0.16166932377128762
+0.5878661087865934 0.13222494851158872 0.5878661087865934 0.13222494851158872 0.15840270266597034
+0.5857740585773883 0.13561533180675767 0.5857740585773882 0.13561533180675767 0.1555433193966973
+0.5836820083681832 0.1390057151019266 0.5836820083681832 0.1390057151019266 0.15305320801800162
+0.5815899581589781 0.14239609839709555 0.5815899581589781 0.14239609839709555 0.15086921899791503
+0.579497907949773 0.1457864816922645 0.579497907949773 0.1457864816922645 0.14890745637328132
+0.5774058577405679 0.14917686498743343 0.577405857740568 0.14917686498743343 0.14706907533208435
+0.5962343096234138 0.12544418192125084 0.5962343096234138 0.12544418192125084 0.1786297733901001
+0.6213389121338752 0.09832111555989931 0.6213389121338752 0.09832111555989931 0.23941593286551102
+0.6255230125522854 0.09832111555989931 0.6255230125522854 0.09832111555989931 0.2506217251031641
+0.61924686192467 0.10171149885506825 0.6192468619246699 0.10171149885506825 0.2355940685226706
+0.6171548117154649 0.10510188215023719 0.6171548117154649 0.10510188215023719 0.23143573340098733
+0.6150627615062598 0.10849226544540613 0.6150627615062598 0.10849226544540613 0.22703529423484678
+0.6464435146443365 0.07119804919854777 0.6464435146443365 0.07119804919854777 0.26550224174216414
+0.6443514644351314 0.07458843249371672 0.6443514644351315 0.07458843249371672 0.267070600199024
+0.6422594142259263 0.07797881578888566 0.6422594142259263 0.07797881578888566 0.2680709697575998
+0.6401673640167211 0.0813691990840546 0.6401673640167211 0.0813691990840546 0.2684698469700692
+0.638075313807516 0.08475958237922354 0.638075313807516 0.08475958237922354 0.26824894655788745
+0.6359832635983109 0.08814996567439248 0.6359832635983108 0.08814996567439248 0.26740563026465636
+0.6338912133891058 0.09154034896956142 0.6338912133891058 0.09154034896956142 0.2659530686484584
+0.6317991631799007 0.09493073226473037 0.6317991631799007 0.09493073226473037 0.2639201154293445
+0.6297071129706956 0.09832111555989931 0.6297071129706956 0.09832111555989931 0.2613508620421153
+0.6527196652719518 0.06780766590337883 0.6527196652719517 0.06780766590337883 0.2699398676219186
+0.6506276150627467 0.07119804919854777 0.6506276150627467 0.07119804919854777 0.2723376937799096
+0.6589958158995671 0.06441728260820989 0.6589958158995671 0.06441728260820989 0.27309429270473146
+0.656903765690362 0.06780766590337883 0.656903765690362 0.06780766590337883 0.2761177884023471
+0.6652719665271825 0.06102689931304095 0.6652719665271825 0.06102689931304095 0.2754054681130668
+0.6631799163179773 0.06441728260820989 0.6631799163179773 0.06441728260820989 0.2788170842665329
+0.6715481171547978 0.05763651601787201 0.6715481171547978 0.05763651601787201 0.27735298655292034
+0.6694560669455927 0.06102689931304095 0.6694560669455926 0.06102689931304095 0.2809048946976216
+0.6778242677824131 0.054246132722703067 0.6778242677824132 0.054246132722703067 0.27940490736321516
+0.675732217573208 0.05763651601787201 0.675732217573208 0.05763651601787201 0.2828666222104322
+0.6861924686192336 0.04746536613236518 0.6861924686192334 0.04746536613236518 0.2789483098620425
+0.6841004184100284 0.050855749427534125 0.6841004184100284 0.050855749427534125 0.2819618680285758
+0.6820083682008233 0.054246132722703067 0.6820083682008233 0.054246132722703067 0.28514799114023465
+0.6924686192468489 0.04407498283719624 0.6924686192468489 0.04407498283719624 0.2827321461691667
+0.6903765690376438 0.04746536613236518 0.6903765690376438 0.04746536613236518 0.2853065928135463
+0.6987447698744642 0.0406845995420273 0.6987447698744642 0.0406845995420273 0.28744080188977533
+0.6966527196652591 0.04407498283719624 0.6966527196652591 0.04407498283719624 0.2895703942119239
+0.7050209205020795 0.03729421624685836 0.7050209205020795 0.03729421624685836 0.29298119913357906
+0.7029288702928744 0.0406845995420273 0.7029288702928743 0.0406845995420273 0.2947253704788669
+0.7112970711296949 0.03390383295168942 0.711297071129695 0.03390383295168942 0.2991434167468126
+0.7092050209204898 0.03729421624685836 0.7092050209204898 0.03729421624685836 0.3006040962177275
+0.7175732217573102 0.030513449656520475 0.7175732217573102 0.030513449656520475 0.30564755310051606
+0.7154811715481051 0.03390383295168942 0.7154811715481051 0.03390383295168942 0.3069408024628992
+0.7238493723849255 0.027123066361351533 0.7238493723849255 0.027123066361351533 0.31219466652591593
+0.7217573221757204 0.030513449656520475 0.7217573221757204 0.030513449656520475 0.3134230828521111
+0.7301255230125409 0.02373268306618259 0.7301255230125409 0.02373268306618259 0.31851171688763474
+0.7280334728033357 0.027123066361351533 0.7280334728033359 0.027123066361351533 0.31974267012975394
+0.7384937238493613 0.01695191647584471 0.7384937238493613 0.01695191647584471 0.3234887066958941
+0.7364016736401562 0.02034229977101365 0.7364016736401561 0.02034229977101365 0.3243840868348771
+0.7343096234309511 0.02373268306618259 0.7343096234309511 0.02373268306618259 0.3256366988688743
+0.7447698744769766 0.013561533180675767 0.7447698744769767 0.013561533180675767 0.328889237936043
+0.7426778242677715 0.01695191647584471 0.7426778242677715 0.01695191647584471 0.3296730400557651
+0.751046025104592 0.010171149885506825 0.751046025104592 0.010171149885506825 0.33373768380237445
+0.7489539748953868 0.013561533180675767 0.7489539748953868 0.013561533180675767 0.3343183350266603
+0.7573221757322073 0.006780766590337883 0.7573221757322073 0.006780766590337883 0.3380599117540702
+0.7552301255230022 0.010171149885506825 0.7552301255230022 0.010171149885506825 0.3383281079237492
+0.7615062761506175 0.006780766590337883 0.7615062761506176 0.006780766590337883 0.341759436434806
+0.006780766590337709 0.7656903765690357 0.006780766590337709 0.7656903765690357 0.1270518024113871
+0.006780766590337709 0.7698744769874457 0.006780766590337709 0.7698744769874457 0.12406606823014354
+0.01017114988550656 0.7594142259414207 0.01017114988550656 0.7594142259414207 0.1318668807006215
+0.01017114988550656 0.7635983263598307 0.01017114988550656 0.7635983263598307 0.12911789459414377
+0.013561533180675408 0.7531380753138057 0.013561533180675408 0.7531380753138057 0.13648416331347787
+0.013561533180675408 0.7573221757322157 0.013561533180675408 0.7573221757322157 0.1340035276778124
+0.016951916475844264 0.7468619246861907 0.016951916475844264 0.7468619246861907 0.14080741971490177
+0.016951916475844264 0.7510460251046007 0.016951916475844264 0.7510460251046007 0.13861742484610293
+0.02034229977101312 0.7447698744769857 0.02034229977101312 0.7447698744769857 0.14285637768205864
+0.02373268306618197 0.7384937238493707 0.02373268306618197 0.7384937238493707 0.14663071286268362
+0.02373268306618197 0.7426778242677807 0.02373268306618197 0.7426778242677807 0.14485967748604545
+0.027123066361350822 0.7322175732217557 0.027123066361350822 0.7322175732217557 0.14987676960136262
+0.027123066361350822 0.7364016736401657 0.027123066361350822 0.7364016736401657 0.14840234829466395
+0.030513449656519673 0.7259414225941407 0.030513449656519673 0.7259414225941407 0.152569123108955
+0.030513449656519673 0.7301255230125507 0.030513449656519673 0.7301255230125507 0.15135783586672732
+0.033903832951688535 0.7196652719665257 0.033903832951688535 0.7196652719665257 0.15473104306479243
+0.033903832951688535 0.7238493723849357 0.033903832951688535 0.7238493723849357 0.1537258671963183
+0.03729421624685738 0.7133891213389107 0.03729421624685738 0.7133891213389107 0.15644162202210102
+0.03729421624685738 0.7175732217573207 0.03729421624685738 0.7175732217573207 0.15556132711985485
+0.040684599542026224 0.7071129707112958 0.040684599542026224 0.7071129707112958 0.15783786876212244
+0.040684599542026224 0.7112970711297057 0.040684599542026224 0.7112970711297057 0.15697886335582478
+0.0440749828371951 0.7008368200836808 0.0440749828371951 0.7008368200836808 0.159109952106263
+0.0440749828371951 0.7050209205020908 0.0440749828371951 0.7050209205020908 0.15815150306925294
+0.04746536613236394 0.6945606694560658 0.04746536613236394 0.6945606694560658 0.16048798512584464
+0.04746536613236394 0.6987447698744758 0.04746536613236394 0.6987447698744758 0.15930142515795312
+0.05085574942753279 0.6882845188284508 0.05085574942753279 0.6882845188284508 0.1622196783055058
+0.05085574942753279 0.6924686192468608 0.05085574942753279 0.6924686192468608 0.16068151596281569
+0.05424613272270165 0.6861924686192458 0.054246132722701644 0.6861924686192458 0.16254781917946312
+0.05763651601787049 0.6799163179916308 0.05763651601787049 0.6799163179916308 0.1651256469433691
+0.05763651601787049 0.6841004184100408 0.05763651601787049 0.6841004184100408 0.162866835007725
+0.06102689931303934 0.6736401673640158 0.06102689931303934 0.6736401673640158 0.16857528669708113
+0.06102689931303934 0.6778242677824258 0.06102689931303934 0.6778242677824258 0.1657662648603733
+0.06441728260820821 0.6673640167364008 0.06441728260820821 0.6673640167364008 0.1729652468526169
+0.06441728260820821 0.6715481171548108 0.06441728260820821 0.6715481171548108 0.16961355498068162
+0.06780766590337706 0.6610878661087858 0.06780766590337706 0.6610878661087858 0.17826005130250247
+0.06780766590337706 0.6652719665271958 0.06780766590337706 0.6652719665271958 0.17442642692413246
+0.0711980491985459 0.6548117154811708 0.0711980491985459 0.6548117154811708 0.1843254856133133
+0.0711980491985459 0.6589958158995808 0.0711980491985459 0.6589958158995808 0.18011562118425964
+0.07458843249371476 0.6485355648535558 0.07458843249371476 0.6485355648535558 0.19094892305089559
+0.07458843249371476 0.6527196652719658 0.07458843249371476 0.6527196652719658 0.18649933139549657
+0.07797881578888362 0.6464435146443508 0.07797881578888362 0.6464435146443508 0.19333032832262295
+0.08136919908405248 0.6443514644351458 0.08136919908405248 0.6443514644351458 0.1957250320070707
+0.08475958237922132 0.6422594142259408 0.08475958237922132 0.6422594142259408 0.19810723566020316
+0.08814996567439015 0.6401673640167358 0.08814996567439015 0.6401673640167358 0.2004501709143043
+0.09154034896955902 0.6380753138075308 0.09154034896955902 0.6380753138075308 0.20272735504865413
+0.09493073226472787 0.6359832635983258 0.09493073226472787 0.6359832635983258 0.20491383167391522
+0.09832111555989675 0.6297071129707108 0.09832111555989675 0.6297071129707108 0.21140445396872162
+0.10171149885506564 0.6276150627615058 0.10171149885506563 0.6276150627615058 0.21322664287524673
+0.11188264874057234 0.6129707112970708 0.11188264874057234 0.6129707112970708 0.2245800731154858
+0.11866341533091013 0.6046025104602508 0.11866341533091011 0.6046025104602508 0.2290401955058163
+0.12205379862607901 0.6025104602510458 0.12205379862607901 0.6025104602510458 0.2296718604379773
+0.1288345652164168 0.5941422594142258 0.1288345652164168 0.5941422594142258 0.23336324020567714
+0.13222494851158573 0.5920502092050208 0.13222494851158573 0.5920502092050208 0.23410133015280507
+0.1356153318067546 0.5899581589958158 0.13561533180675459 0.5899581589958158 0.23497082945608358
+0.1390057151019235 0.5836820083682008 0.1390057151019235 0.5836820083682008 0.23854871522018586
+0.1423960983970924 0.5815899581589958 0.1423960983970924 0.5815899581589958 0.23991564760297998
+0.1457864816922613 0.5794979079497908 0.1457864816922613 0.5794979079497908 0.24150856825189448
+0.1390057151019235 0.5878661087866108 0.1390057151019235 0.5878661087866108 0.23600293191884905
+0.12544418192124793 0.6004184100418408 0.12544418192124793 0.6004184100418408 0.23028795180281705
+0.1288345652164168 0.5983263598326358 0.1288345652164168 0.5983263598326358 0.23092761453468838
+0.11527303203574124 0.6108786610878658 0.11527303203574124 0.6108786610878658 0.2254792334964355
+0.11866341533091013 0.6087866108786608 0.11866341533091011 0.6087866108786608 0.22626938738269264
+0.10510188215023453 0.6213389121338908 0.10510188215023453 0.6213389121338908 0.21876644591548847
+0.10510188215023453 0.6255230125523008 0.10510188215023453 0.6255230125523008 0.2148867412530641
+0.10849226544540343 0.6192468619246858 0.10849226544540343 0.6192468619246858 0.22010998562841402
+0.11188264874057234 0.6171548117154808 0.11188264874057234 0.6171548117154808 0.2212920206929944
+0.09832111555989675 0.6338912133891208 0.09832111555989675 0.6338912133891208 0.20698733704422967
+0.1593480148729277 0.5585774058577068 0.1593480148729277 0.5585774058577068 0.26068732021781643
+0.15934801487294295 0.5627615062761423 0.15934801487294295 0.5627615062761423 0.2572274153903526
+0.16273839816805855 0.5564853556484853 0.16273839816805855 0.5564853556484853 0.26382737964182984
+0.16612870358155907 0.5543931828076695 0.16612870358155907 0.5543931828076695 0.26705639592596925
+0.16951273478451326 0.5439254002955627 0.16951273478451326 0.5439254002955627 0.27759116560571195
+0.16951520458355726 0.548111619352684 0.16951520458355726 0.5481116193526842 0.27405487581267746
+0.16951682551796518 0.5522980464334137 0.16951682551796518 0.5522980464334138 0.27033687455201877
+0.1491768649874302 0.5732217573221758 0.1491768649874302 0.5732217573221758 0.2463323163717768
+0.15256724828259907 0.5711297071129712 0.15256724828259907 0.5711297071129712 0.24858037024619575
+0.1559576315777683 0.5690376569037668 0.1559576315777683 0.5690376569037668 0.25104221915941755
+0.1593480148729389 0.566945606694563 0.1593480148729389 0.566945606694563 0.25369317525536994
+0.1491768649874302 0.5774058577405858 0.1491768649874302 0.5774058577405858 0.24333179341471292
+0.3365042736067644 0.3132934169682412 0.33650427360676444 0.31329341696824115 0.20660917331135317
+0.3339842159975709 0.3147515897308022 0.33398421599757094 0.3147515897308022 0.20078654094862444
+0.3308445902036033 0.31613533317100856 0.3308445902036033 0.31613533317100856 0.19390903125953365
+0.32771193722545605 0.3175764891547194 0.32771193722545605 0.3175764891547194 0.18715799925888224
+0.32459458189054885 0.31904809927700856 0.32459458189054885 0.31904809927700856 0.18059504267203982
+0.3215172013873013 0.32055493624771286 0.3215172013873013 0.32055493624771286 0.17428138294474818
+0.31850573575216584 0.32210913138688674 0.31850573575216584 0.32210913138688674 0.1682692960294494
+0.31554281661991523 0.32372246521255216 0.31554281661991523 0.32372246521255216 0.1625440468856756
+0.31258394451133503 0.3253914176750091 0.31258394451133503 0.32539141767500906 0.1570645458826149
+0.3096152973067718 0.32710991252521093 0.3096152973067718 0.327109912525211 0.15185013146355306
+0.30664734574817026 0.3288592490881135 0.30664734574817026 0.3288592490881135 0.1469661573582295
+0.3036714006214661 0.3306388104273306 0.3036714006214661 0.3306388104273306 0.14244587155523136
+0.3007135938487519 0.3324696111500772 0.3007135938487519 0.3324696111500773 0.13833956316589024
+0.2977995134107251 0.334348026767548 0.297799513410725 0.334348026767548 0.13470363138110808
+0.29491488410155947 0.3362741101681499 0.29491488410155947 0.3362741101681499 0.1315523742422129
+0.29203383567306723 0.338246198203161 0.29203383567306723 0.338246198203161 0.12889928765377545
+0.2891746981122633 0.3402687277673639 0.2891746981122633 0.3402687277673639 0.12677974819715462
+0.2863203117726491 0.34234109173102306 0.2863203117726491 0.34234109173102306 0.1252128152055759
+0.283470942030207 0.3444564111609041 0.283470942030207 0.3444564111609041 0.1242235235888809
+0.2806322659807023 0.3466047991557384 0.2806322659807023 0.3466047991557384 0.12382461650697539
+0.2778173172824377 0.3487845334208231 0.2778173172824377 0.3487845334208231 0.12400972151126834
+0.27501683723961556 0.35100966896218755 0.27501683723961556 0.35100966896218755 0.12476330555616234
+0.27224751458993585 0.3533030138664206 0.27224751458993585 0.3533030138664206 0.12606208602681715
+0.2695265396574656 0.35566923977662096 0.2695265396574656 0.35566923977662096 0.12788936992024302
+0.26682833306307535 0.3580739759562552 0.26682833306307535 0.3580739759562552 0.1302190280557465
+0.26412730007465873 0.36048822060168173 0.26412730007465873 0.36048822060168173 0.13300813590368224
+0.26140771414570435 0.3629074322268295 0.26140771414570435 0.3629074322268295 0.13621397710050379
+0.2586451092969992 0.36534451338438617 0.2586451092969992 0.36534451338438617 0.13981988077950067
+0.2559156849894607 0.3678399812541787 0.25591568498946066 0.36783998125417877 0.14377138415237234
+0.25346818717736946 0.37062078381421454 0.25346818717736946 0.37062078381421454 0.14806631874820966
+0.2510699087042301 0.37344465393108633 0.2510699087042301 0.37344465393108633 0.1526832027372618
+0.24855857407332524 0.37607400801345975 0.24855857407332524 0.37607400801345975 0.15737568420811987
+0.24600517775599973 0.3786467935197253 0.24600517775599973 0.3786467935197253 0.16218189165921879
+0.24336429326978257 0.38118209778455564 0.24336429326978257 0.38118209778455564 0.16712037986100256
+0.2382539637068884 0.3859706452792513 0.23825396370688837 0.3859706452792513 0.17671950281823046
+0.24069749002256868 0.38366800685651237 0.24069749002256868 0.38366800685651237 0.17209826429131617
+0.2383470059525644 0.3887411440378642 0.2383470059525644 0.3887411440378642 0.180509257169643
+0.236703496006474 0.39103250651655347 0.236703496006474 0.39103250651655347 0.1848142374080304
+0.23422563163988816 0.3934374835485874 0.23422563163988816 0.3934374835485874 0.1897254699352483
+0.23182205630315322 0.3960379078509944 0.23182205630315322 0.3960379078509944 0.1948800331458216
+0.22189847541624513 0.40742740603122984 0.22189847541624516 0.4074274060312298 0.21672901370750758
+0.2293824852849825 0.3987429663315155 0.22938248528498253 0.39874296633151557 0.20018789502301362
+0.22688602814784428 0.4014503393854889 0.22688602814784428 0.40145033938548896 0.20547588189013025
+0.22428268998041706 0.4042767183289063 0.2242826899804171 0.4042767183289064 0.2109329386881074
+0.22431855539513934 0.40980490635258066 0.22431855539513937 0.40980490635258066 0.21946307461156173
+0.22127375046785852 0.4115676027173496 0.22127375046785855 0.4115676027173496 0.22336104185758326
+0.21902418103489107 0.414842346920199 0.2190241810348911 0.414842346920199 0.22914796180304212
+0.21678959162918865 0.41796131554697574 0.21678959162918865 0.41796131554697574 0.23458796081132902
+0.20792684878172105 0.42950533909846683 0.20792684878172105 0.42950533909846683 0.25345182360640167
+0.21015355335420027 0.42667338431782453 0.21015355335420027 0.4266733843178246 0.2490481321534935
+0.21234970003138107 0.4238198761024063 0.21234970003138107 0.4238198761024063 0.24445717485140103
+0.2145676468008936 0.4208813485104128 0.2145676468008936 0.42088134851041287 0.23958188885092555
+0.2092150951687818 0.4324053157660692 0.2092150951687818 0.4324053157660693 0.25745046438582037
+0.20742379947342757 0.4355272497004146 0.20742379947342757 0.4355272497004146 0.2620198279806729
+0.20543016991420293 0.43865969722679804 0.20543016991420293 0.43865969722679804 0.2663948791008253
+0.20340478664543635 0.4417752853784521 0.20340478664543635 0.4417752853784522 0.2705465519394308
+0.19711510584450365 0.4516003476814476 0.19711510584450367 0.4516003476814476 0.28205182293005654
+0.19970043728495662 0.4479198855284977 0.19970043728495665 0.44791988552849776 0.27799326164774524
+0.20163879480931327 0.44484478522601983 0.20163879480931327 0.44484478522601983 0.27436041591415966
+0.1969145223653303 0.45634599047184976 0.19691452236533033 0.4563459904718497 0.28722691324726185
+0.18956855131886152 0.46876933435784435 0.18956855131886152 0.46876933435784435 0.29657192082317535
+0.19593845478386074 0.46077932771040725 0.19593845478386074 0.46077932771040725 0.2914160511612205
+0.19556968178049267 0.4638677770305726 0.19556968178049267 0.46386777703057264 0.2941571517827692
+0.19305372148795988 0.4667415578018046 0.1930537214879599 0.4667415578018046 0.29610286047808204
+0.18950831655699893 0.47295344919549526 0.18950831655699893 0.47295344919549526 0.29960848498027065
+0.17959387475342523 0.49580125022508553 0.17959387475342523 0.49580125022508553 0.3038740054843095
+0.18621876762177328 0.47905975008423524 0.18621876762177328 0.47905975008423524 0.30196610757044146
+0.18946629156704844 0.4770901379763656 0.18946629156704844 0.4770901379763656 0.30222774483745724
+0.18295068793633015 0.4852935774475675 0.18295068793633015 0.4852935774475675 0.30322333641463306
+0.18625021517146467 0.4831777870159723 0.18625021517146467 0.4831777870159723 0.303969006939021
+0.18295664298631178 0.48948976949283773 0.18295664298631178 0.48948976949283773 0.3045723040840192
+0.18293664375725693 0.49369404547381124 0.18293664375725693 0.4936940454738112 0.30546230706367933
+0.1762378807549805 0.5104436409517671 0.1762378807549805 0.5104436409517671 0.3007327701692371
+0.1762352425519831 0.5146314783200386 0.1762352425519831 0.5146314783200386 0.2994852987782773
+0.17957970009535637 0.4999754207738319 0.17957970009535637 0.4999754207738319 0.30408131705710145
+0.17957377888986323 0.5041454451120366 0.17957377888986323 0.5041454451120365 0.3038653833455933
+0.1795732831895633 0.5083241203838745 0.1795732831895633 0.5083241203838745 0.30322356660445027
+0.17623250219127398 0.5188187277787207 0.17623250219127398 0.5188187277787207 0.2978389228964657
+0.17623115044701124 0.5230051846431784 0.17623115044701124 0.5230051846431784 0.2958105967873595
+0.1728788628430317 0.5292854944744797 0.1728788628430317 0.5292854944744797 0.290198785295015
+0.17623196588638576 0.5271920134964051 0.17623196588638576 0.5271920134964051 0.2934190485638098
+0.17287999031872195 0.5334684071658246 0.17287999031872195 0.5334684071658246 0.28740909065259695
+0.1728840053690475 0.5376459385149019 0.1728840053690475 0.5376459385149018 0.28433430213435246
+0.17288816245274527 0.541825065218535 0.17288816245274527 0.5418250652185349 0.28099552834055913
+0.33983885355951476 0.308630049063577 0.33983885355951476 0.308630049063577 0.2161024354931916
+0.339544384288209 0.31200491417640014 0.33954438428820893 0.31200491417640014 0.21343590132919577
+0.3507410178835056 0.29117561062165737 0.3507410178835056 0.29117561062165737 0.24415223079682172
+0.3436079118443593 0.30045758284885793 0.3436079118443593 0.3004575828488579 0.22765174092448684
+0.35027798220207734 0.2946713758235388 0.35027798220207734 0.2946713758235388 0.2424886884052805
+0.3468021311384882 0.29929020862205474 0.3468021311384882 0.29929020862205474 0.23430528495325267
+0.3498983177368311 0.2981490712017618 0.3498983177368311 0.2981490712017618 0.24074603057946112
+0.34333726772590456 0.303955405382103 0.34333726772590456 0.303955405382103 0.2255043084201865
+0.3430372292400817 0.3074265545746028 0.3430372292400817 0.3074265545746027 0.22311247837146644
+0.363335771044272 0.2741490525955816 0.363335771044272 0.2741490525955816 0.26625305893173506
+0.3551901651515961 0.28310353528437265 0.3551901651515961 0.28310353528437265 0.2531044952172911
+0.3625638771344164 0.27770258034937 0.3625638771344164 0.27770258034937 0.265636882997852
+0.3585246048550659 0.28215279787008557 0.3585246048550659 0.28215279787008557 0.25905666848329084
+0.3618608531111798 0.28124317429883045 0.3618608531111798 0.28124317429883045 0.2649302690305679
+0.3545888113262597 0.2866629246370558 0.3545888113262597 0.2866629246370558 0.25189694957903147
+0.35402066861996273 0.2901680189146835 0.35402066861996273 0.2901680189146835 0.2505016806871006
+0.37769330581617183 0.2577104330730767 0.37769330581617183 0.2577104330730767 0.28235887687528316
+0.3685637440513823 0.2662248137609806 0.3685637440513823 0.2662248137609806 0.2724585702446843
+0.37657213379239957 0.2612623982215714 0.37657213379239957 0.2612623982215714 0.2823134797114224
+0.3720425061478873 0.26549370374675546 0.3720425061478873 0.26549370374675546 0.2774703741876254
+0.37552546416802207 0.2648164019451786 0.37552546416802207 0.2648164019451786 0.28232948782067085
+0.36764239699051066 0.2697994147496167 0.36764239699051066 0.2697994147496167 0.27214110901353866
+0.3667612103920033 0.27334541473107626 0.3667612103920033 0.27334541473107626 0.2717413112918106
+0.39398405276698034 0.24191339312639032 0.3939840527669803 0.24191339312639035 0.2938194901287803
+0.3837548631064221 0.2500374135365457 0.3837548631064221 0.2500374135365457 0.2867375662888101
+0.3924841755616868 0.24539806737823636 0.3924841755616868 0.24539806737823636 0.2938334755465855
+0.38739867409064593 0.24943034193897531 0.38739867409064593 0.24943034193897531 0.2904939627001791
+0.3910523953393534 0.24896958948372627 0.3910523953393534 0.24896958948372627 0.2940112393910301
+0.3824876656870683 0.2536100570745307 0.3824876656870683 0.2536100570745307 0.2866973532189813
+0.3812572019256803 0.257146651783273 0.3812572019256803 0.257146651783273 0.2867251323224504
+0.4213066858350396 0.22091063416320567 0.42130668583503966 0.22091063416320567 0.29684868049807633
+0.41926073084878707 0.22401346747109038 0.41926073084878707 0.22401346747109038 0.29799205597155853
+0.4172619135771255 0.22712230693275676 0.41726191357712544 0.22712230693275678 0.298990785654819
+0.4152456752767551 0.23015384252144797 0.4152456752767551 0.23015384252144797 0.2998560757593976
+0.4132953067896177 0.23298245681977126 0.4132953067896176 0.23298245681977123 0.30056717216850104
+0.4110414273409517 0.23517615178380735 0.4110414273409518 0.23517615178380735 0.3007748172394298
+0.3992569170614314 0.23852194603849852 0.39925691706143146 0.23852194603849855 0.2965813306192659
+0.40298451180509653 0.23841522970641513 0.40298451180509653 0.23841522970641513 0.29878812408505545
+0.4103523051066057 0.2380169320546286 0.41035230510660575 0.2380169320546286 0.30177453322250325
+0.4066943975603185 0.2382871830275651 0.4066943975603185 0.2382871830275651 0.3005601708636119
+0.3976952421576801 0.24180760734527576 0.3976952421576801 0.24180760734527576 0.2966674672042244
+0.42916097535375336 0.21500919119106376 0.42916097535375336 0.21500919119106374 0.29206482614740703
+0.42711111057233436 0.21806805409918453 0.42711111057233436 0.21806805409918453 0.2940089691060539
+0.43289354417496423 0.21523460905448147 0.43289354417496423 0.21523460905448147 0.289584868241473
+0.42505603288050287 0.2211529684191793 0.42505603288050287 0.2211529684191793 0.2957415611354755
+0.4633988615741112 0.1976429041238349 0.4633988615741112 0.1976429041238349 0.236240742859305
+0.4615372664528373 0.1998222960140395 0.4615372664528374 0.19982229601403947 0.2415236499084715
+0.459313717970517 0.2020458830200228 0.45931371797051707 0.20204588302002283 0.24732188515283546
+0.4571064113033902 0.20423061234613069 0.4571064113033902 0.20423061234613069 0.25282526045094883
+0.45483641391759394 0.20664352928547366 0.45483641391759394 0.20664352928547366 0.25821704300956555
+0.45250323648709806 0.20897870289926546 0.45250323648709806 0.20897870289926548 0.2633552113550479
+0.43664652315768965 0.2154397610207156 0.43664652315768965 0.21543976102071563 0.28650293645764696
+0.44062815755602835 0.2155871217644441 0.4406281575560284 0.21558712176444408 0.28258567862152845
+0.45024430149593425 0.2113658756543725 0.45024430149593425 0.2113658756543725 0.26807271283936446
+0.44810640644418076 0.21368329463661745 0.4481064064441807 0.21368329463661742 0.272267881244367
+0.44597111883922436 0.21559296166675407 0.44597111883922436 0.21559296166675404 0.2760068360381238
+0.44352918042761474 0.21680771877525448 0.44352918042761474 0.21680771877525448 0.27953470141265485
+0.4856133162613472 0.1893905646598563 0.4856133162613472 0.1893905646598563 0.17141241790493897
+0.4708783808886905 0.19292483772159583 0.47087838088869044 0.19292483772159583 0.2154982086216715
+0.47529595211719666 0.193027721334844 0.47529595211719666 0.193027721334844 0.2038924845423952
+0.48376505526159813 0.19266178966883218 0.48376505526159813 0.19266178966883218 0.17904542223419792
+0.47967652737963734 0.1929929897348508 0.47967652737963734 0.1929929897348508 0.19149613803681567
+0.469028337897624 0.19582680524858265 0.46902833789762394 0.19582680524858265 0.22190969184742423
+0.466812630339417 0.19867385868570153 0.46681263033941706 0.19867385868570153 0.2289274268600736
+0.5063920795813215 0.1829223659925159 0.5063920795813215 0.1829223659925159 0.09803031532465988
+0.4918008228535822 0.18614522197994063 0.4918008228535822 0.18614522197994063 0.14975762987647068
+0.49600717783907916 0.1861808813716901 0.49600717783907916 0.1861808813716901 0.13570237412070782
+0.5001989312768788 0.1862055552877696 0.5001989312768788 0.1862055552877696 0.12123147546916173
+0.5043893809479009 0.18622765307371106 0.5043893809479009 0.18622765307371106 0.10638800978063102
+0.4897172224994276 0.189321567004483 0.48971722249942756 0.189321567004483 0.15832651639097206
+0.5126119342514536 0.17959565435285693 0.5126119342514536 0.17959565435285693 0.07514318978917417
+0.5167966849148808 0.17959351793102718 0.5167966849148807 0.17959351793102718 0.060727461931805636
+0.5209784867149482 0.1795905625233349 0.5209784867149482 0.1795905625233349 0.047193057061289574
+0.5105760909536058 0.18292740673359645 0.5105760909536058 0.18292740673359645 0.08310511178954959
+0.5439330543932861 0.1627383981681092 0.5439330543932862 0.1627383981681092 0.05502513459707747
+0.5376569019835522 0.1661273710540591 0.5376569019835521 0.1661273710540591 0.03946298447408662
+0.5418408478418769 0.166127843632321 0.5418408478418769 0.166127843632321 0.05067169428752311
+0.5251550046499561 0.17958850195597698 0.5251550046499561 0.17958850195597698 0.0359733724259467
+0.5355652596383375 0.16951188961815952 0.5355652596383375 0.16951188961815952 0.03573830064193178
+0.5334759877701175 0.17288718701359151 0.5334759877701175 0.17288718701359151 0.03256325736951012
+0.5313940069508695 0.17624827138814259 0.5313940069508695 0.17624827138814259 0.03050601084200043
+0.5293278801020966 0.17959103850629177 0.5293278801020965 0.17959103850629177 0.03017820032737015
+0.5481171164033062 0.16273837452186776 0.5481171164033062 0.16273837452186776 0.06810112080772635
+0.5523012278979854 0.16273838181391234 0.5523012278979854 0.16273838181391234 0.0818644463273776
+0.5585774058577219 0.15934801487294026 0.5585774058577219 0.15934801487294026 0.09936282327813163
+0.5564853428681636 0.16273839076907914 0.5564853428681636 0.16273839076907914 0.095970129687337
+0.5627615062761321 0.15934801487294026 0.5627615062761321 0.15934801487294026 0.11330108212446242
+0.5690376569037474 0.15595763157777132 0.5690376569037473 0.15595763157777132 0.12966998999161047
+0.5669456066945423 0.15934801487294026 0.5669456066945423 0.15934801487294026 0.12727276716329539
+0.5753138075313627 0.15256724828260237 0.5753138075313627 0.15256724828260237 0.14524671865875136
+0.5732217573221576 0.15595763157777132 0.5732217573221576 0.15595763157777132 0.14333089486614484
+0.6129707112970547 0.11188264874057507 0.6129707112970547 0.11188264874057507 0.22249388829113279
+0.6066945606694394 0.11527303203574402 0.6066945606694394 0.11527303203574402 0.20500270803723367
+0.6108786610878496 0.11527303203574402 0.6108786610878497 0.11527303203574402 0.2179159636921808
+0.6046025104602343 0.11866341533091296 0.6046025104602343 0.11866341533091296 0.20038064794839014
+0.6025104602510292 0.1220537986260819 0.6025104602510291 0.1220537986260819 0.19596854433398977
+0.6004184100418241 0.12544418192125084 0.6004184100418241 0.12544418192125084 0.191848396287714
+0.5941422594142087 0.12883456521641978 0.5941422594142088 0.12883456521641978 0.1748943072847519
+0.5920502092050036 0.13222494851158872 0.5920502092050036 0.13222494851158872 0.17156999793731356
+0.5899581589957985 0.13561533180675767 0.5899581589957985 0.13561533180675767 0.16866008447430583
+0.5878661087865934 0.1390057151019266 0.5878661087865934 0.1390057151019266 0.16614016692415393
+0.5857740585773883 0.14239609839709555 0.5857740585773882 0.14239609839709555 0.16395964127103782
+0.5836820083681832 0.1457864816922645 0.5836820083681832 0.1457864816922645 0.16204514137116177
+0.5815899581589781 0.14917686498743343 0.5815899581589781 0.14917686498743343 0.1603055631212813
+0.579497907949773 0.15256724828260237 0.579497907949773 0.15256724828260237 0.1586380456493098
+0.598326359832619 0.12883456521641978 0.598326359832619 0.12883456521641978 0.18808429117878303
+0.6234309623430803 0.10171149885506825 0.6234309623430803 0.10171149885506825 0.2471737709933873
+0.6276150627614905 0.10171149885506825 0.6276150627614906 0.10171149885506825 0.2583038282301406
+0.6213389121338752 0.10510188215023719 0.6213389121338752 0.10510188215023719 0.2433520960859256
+0.61924686192467 0.10849226544540613 0.6192468619246699 0.10849226544540613 0.2392459714487736
+0.6171548117154649 0.11188264874057507 0.6171548117154649 0.11188264874057507 0.23495274221753717
+0.6485355648535416 0.07458843249371672 0.6485355648535416 0.07458843249371672 0.2742558461605566
+0.6464435146443365 0.07797881578888566 0.6464435146443365 0.07797881578888566 0.27564106682163186
+0.6443514644351314 0.0813691990840546 0.6443514644351315 0.0813691990840546 0.27645361686792597
+0.6422594142259263 0.08475958237922354 0.6422594142259263 0.08475958237922354 0.27666815084785373
+0.6401673640167211 0.08814996567439248 0.6401673640167211 0.08814996567439248 0.2762743390292625
+0.638075313807516 0.09154034896956142 0.638075313807516 0.09154034896956142 0.27527722800510585
+0.6359832635983109 0.09493073226473037 0.6359832635983108 0.09493073226473037 0.2736973202345969
+0.6338912133891058 0.09832111555989931 0.6338912133891058 0.09832111555989931 0.27157034268887176
+0.6317991631799007 0.10171149885506825 0.6317991631799007 0.10171149885506825 0.26894666418891416
+0.6548117154811569 0.07119804919854777 0.6548117154811569 0.07119804919854777 0.2787760228433513
+0.6527196652719518 0.07458843249371672 0.6527196652719517 0.07458843249371672 0.2810004588835382
+0.6610878661087722 0.06780766590337883 0.6610878661087723 0.06780766590337883 0.2819934493361515
+0.6589958158995671 0.07119804919854777 0.6589958158995671 0.07119804919854777 0.2848567591294122
+0.6673640167363876 0.06441728260820989 0.6673640167363876 0.06441728260820989 0.2843539634537579
+0.6652719665271825 0.06780766590337883 0.6652719665271825 0.06780766590337883 0.2876202475745102
+0.6736401673640029 0.06102689931304095 0.6736401673640029 0.06102689931304095 0.2863458273431185
+0.6715481171547978 0.06441728260820989 0.6715481171547978 0.06441728260820989 0.2897677716093752
+0.6799163179916182 0.05763651601787201 0.6799163179916182 0.05763651601787201 0.2884465179971611
+0.6778242677824131 0.06102689931304095 0.6778242677824132 0.06102689931304095 0.2917940463609227
+0.6882845188284387 0.050855749427534125 0.6882845188284387 0.050855749427534125 0.28809897987227817
+0.6861924686192336 0.054246132722703067 0.6861924686192334 0.054246132722703067 0.2910641487307966
+0.6841004184100284 0.05763651601787201 0.6841004184100284 0.05763651601787201 0.29415345098849116
+0.694560669456054 0.04746536613236518 0.6945606694560541 0.04746536613236518 0.2919290329894235
+0.6924686192468489 0.050855749427534125 0.6924686192468489 0.050855749427534125 0.29448405283277945
+0.7008368200836693 0.04407498283719624 0.7008368200836693 0.04407498283719624 0.29668464261584754
+0.6987447698744642 0.04746536613236518 0.6987447698744642 0.04746536613236518 0.29883276705331524
+0.7071129707112846 0.0406845995420273 0.7071129707112846 0.0406845995420273 0.3022551940193421
+0.7050209205020795 0.04407498283719624 0.7050209205020795 0.04407498283719624 0.3040687764755503
+0.7133891213389 0.03729421624685836 0.7133891213389 0.03729421624685836 0.3084049436020219
+0.7112970711296949 0.0406845995420273 0.711297071129695 0.0406845995420273 0.3100022249515704
+0.7196652719665153 0.03390383295168942 0.7196652719665152 0.03390383295168942 0.3148220369644816
+0.7175732217573102 0.03729421624685836 0.7175732217573102 0.03729421624685836 0.3163375954352036
+0.7259414225941306 0.030513449656520475 0.7259414225941306 0.030513449656520475 0.32117261412950887
+0.7238493723849255 0.03390383295168942 0.7238493723849255 0.03390383295168942 0.32272807640876455
+0.732217573221746 0.027123066361351533 0.732217573221746 0.027123066361351533 0.3271494860299409
+0.7301255230125409 0.030513449656520475 0.7301255230125409 0.030513449656520475 0.3288297203181449
+0.7405857740585664 0.02034229977101365 0.7405857740585664 0.02034229977101365 0.3309148422630486
+0.7384937238493613 0.02373268306618259 0.7384937238493613 0.02373268306618259 0.33250861406763604
+0.7364016736401562 0.027123066361351533 0.7364016736401561 0.027123066361351533 0.33434643608081055
+0.7468619246861817 0.01695191647584471 0.7468619246861817 0.01695191647584471 0.33547111054689477
+0.7447698744769766 0.02034229977101365 0.7447698744769767 0.02034229977101365 0.33709049185977463
+0.7531380753137971 0.013561533180675767 0.753138075313797 0.013561533180675767 0.3392814150432785
+0.751046025104592 0.01695191647584471 0.751046025104592 0.01695191647584471 0.34082638835909784
+0.7594142259414124 0.010171149885506825 0.7594142259414124 0.010171149885506825 0.34238948914329587
+0.7573221757322073 0.013561533180675767 0.7573221757322073 0.013561533180675767 0.34373121025479664
+0.7656903765690277 0.006780766590337883 0.7656903765690277 0.006780766590337883 0.3448848351432486
+0.7635983263598226 0.010171149885506825 0.7635983263598226 0.010171149885506825 0.3458859092211886
+0.7698744769874379 0.006780766590337883 0.7698744769874378 0.006780766590337883 0.34741328859203696
+0.006780766590337709 0.7740585774058557 0.006780766590337709 0.7740585774058557 0.1209368663721677
+0.006780766590337709 0.7782426778242657 0.006780766590337709 0.7782426778242657 0.11768440394368283
+0.01017114988550656 0.7677824267782407 0.01017114988550656 0.7677824267782407 0.1262001802095293
+0.01017114988550656 0.7719665271966507 0.01017114988550656 0.7719665271966507 0.1231274708190327
+0.013561533180675408 0.7615062761506257 0.013561533180675408 0.7615062761506257 0.13133743709251935
+0.013561533180675408 0.7656903765690357 0.013561533180675408 0.7656903765690357 0.12849305912794703
+0.016951916475844264 0.7552301255230107 0.016951916475844264 0.7552301255230107 0.13623434095971368
+0.016951916475844264 0.7594142259414207 0.016951916475844264 0.7594142259414207 0.13365865376780187
+0.02034229977101312 0.7489539748953957 0.02034229977101312 0.7489539748953957 0.14077646382794864
+0.02034229977101312 0.7531380753138057 0.02034229977101312 0.7531380753138057 0.13849939648421913
+0.02373268306618197 0.7468619246861907 0.02373268306618197 0.7468619246861907 0.1428976151128312
+0.027123066361350822 0.7405857740585757 0.027123066361350822 0.7405857740585757 0.14675455227227577
+0.027123066361350822 0.7447698744769857 0.027123066361350822 0.7447698744769857 0.14491742957745998
+0.030513449656519673 0.7343096234309607 0.030513449656519673 0.7343096234309607 0.15000290315709264
+0.030513449656519673 0.7384937238493707 0.030513449656519673 0.7384937238493707 0.14848166514831765
+0.033903832951688535 0.7280334728033457 0.033903832951688535 0.7280334728033457 0.15261880810383863
+0.033903832951688535 0.7322175732217557 0.033903832951688535 0.7322175732217557 0.15138115761552848
+0.03729421624685738 0.7217573221757307 0.03729421624685738 0.7217573221757307 0.1546319436926437
+0.03729421624685738 0.7259414225941407 0.03729421624685738 0.7259414225941407 0.15361994419420835
+0.040684599542026224 0.7154811715481157 0.040684599542026224 0.7154811715481157 0.15613223776635346
+0.040684599542026224 0.7196652719665257 0.040684599542026224 0.7196652719665257 0.15526162181113357
+0.0440749828371951 0.7092050209205008 0.0440749828371951 0.7092050209205008 0.15727150048236593
+0.0440749828371951 0.7133891213389107 0.0440749828371951 0.7133891213389107 0.15643357438583497
+0.04746536613236394 0.7029288702928858 0.04746536613236394 0.7029288702928858 0.15825804457317902
+0.04746536613236394 0.7071129707112958 0.04746536613236394 0.7071129707112958 0.15732513301017603
+0.05085574942753279 0.6966527196652708 0.05085574942753279 0.6966527196652708 0.15934247648288255
+0.05085574942753279 0.7008368200836808 0.05085574942753279 0.7008368200836808 0.1581776382167879
+0.05424613272270165 0.6903765690376558 0.054246132722701644 0.6903765690376558 0.16079376201268733
+0.05424613272270165 0.6945606694560658 0.054246132722701644 0.6945606694560658 0.15926478547266906
+0.05763651601787049 0.6882845188284508 0.05763651601787049 0.6882845188284508 0.16086317262444352
+0.06102689931303934 0.6820083682008358 0.06102689931303934 0.6820083682008358 0.16321589237464848
+0.06102689931303934 0.6861924686192458 0.06102689931303934 0.6861924686192458 0.160932306673552
+0.06441728260820821 0.6757322175732208 0.06441728260820821 0.6757322175732208 0.16649562562618658
+0.06441728260820821 0.6799163179916308 0.06441728260820821 0.6799163179916308 0.16363451850223862
+0.06780766590337706 0.6694560669456058 0.06780766590337706 0.6694560669456058 0.17077605700160892
+0.06780766590337706 0.6736401673640158 0.06780766590337706 0.6736401673640158 0.16734414553852028
+0.0711980491985459 0.6631799163179908 0.0711980491985459 0.6631799163179908 0.1760194084962878
+0.0711980491985459 0.6673640167364008 0.0711980491985459 0.6673640167364008 0.17207989595450238
+0.07458843249371476 0.6569037656903758 0.07458843249371476 0.6569037656903758 0.18208315991836335
+0.07458843249371476 0.6610878661087858 0.07458843249371476 0.6610878661087858 0.17774657256998505
+0.07797881578888362 0.6506276150627608 0.07797881578888362 0.6506276150627608 0.18874299868811414
+0.07797881578888362 0.6548117154811708 0.07797881578888362 0.6548117154811708 0.18415175090311886
+0.08136919908405248 0.6485355648535558 0.08136919908405248 0.6485355648535558 0.19103581499482705
+0.08475958237922132 0.6464435146443508 0.08475958237922132 0.6464435146443508 0.19335359507807234
+0.08814996567439015 0.6443514644351458 0.08814996567439015 0.6443514644351458 0.19566981962033692
+0.09154034896955902 0.6422594142259408 0.09154034896955902 0.6422594142259408 0.19795692992253655
+0.09493073226472787 0.6401673640167358 0.09493073226472787 0.6401673640167358 0.20018765962230547
+0.09832111555989675 0.6380753138075308 0.09832111555989675 0.6380753138075308 0.20233633163429207
+0.10171149885506564 0.6317991631799158 0.10171149885506563 0.6317991631799158 0.20892934212111833
+0.10510188215023453 0.6297071129707108 0.10510188215023453 0.6297071129707108 0.21072593020147076
+0.11527303203574124 0.6150627615062758 0.11527303203574124 0.6150627615062758 0.22232791866729973
+0.12205379862607901 0.6066945606694558 0.12205379862607901 0.6066945606694558 0.22698150595990427
+0.12544418192124793 0.6046025104602508 0.12544418192124793 0.6046025104602508 0.22764993271764863
+0.13222494851158573 0.5962343096234308 0.13222494851158573 0.5962343096234308 0.23162952149900448
+0.1356153318067546 0.5941422594142258 0.13561533180675459 0.5941422594142258 0.23243024407138205
+0.1390057151019235 0.5920502092050208 0.1390057151019235 0.5920502092050208 0.23336266616084453
+0.1423960983970924 0.5857740585774058 0.1423960983970924 0.5857740585774058 0.2372225332444813
+0.1457864816922613 0.5836820083682008 0.1457864816922613 0.5836820083682008 0.23864717834086033
+0.1491768649874302 0.5815899581589958 0.1491768649874302 0.5815899581589958 0.24028641009840182
+0.1423960983970924 0.5899581589958158 0.1423960983970924 0.5899581589958158 0.2344545432006305
+0.1288345652164168 0.6025104602510458 0.1288345652164168 0.6025104602510458 0.22831109481159942
+0.13222494851158573 0.6004184100418408 0.13222494851158573 0.6004184100418408 0.22900205764481463
+0.11866341533091013 0.6129707112970708 0.11866341533091011 0.6129707112970708 0.22323867946105733
+0.12205379862607901 0.6108786610878658 0.12205379862607901 0.6108786610878658 0.2240502785409312
+0.10849226544540343 0.6234309623430958 0.10849226544540343 0.6234309623430958 0.21638197192608774
+0.10849226544540343 0.6276150627615058 0.10849226544540343 0.6276150627615058 0.21236847884431084
+0.11188264874057234 0.6213389121338908 0.11188264874057234 0.6213389121338908 0.21771558694270862
+0.11527303203574124 0.6192468619246858 0.11527303203574124 0.6192468619246858 0.21889690271032566
+0.10171149885506564 0.6359832635983258 0.10171149885506563 0.6359832635983258 0.20438005889720864
+0.16273839816811203 0.5606694560669122 0.16273839816811206 0.5606694560669122 0.26020990291316837
+0.16273839816811303 0.564853556485356 0.162738398168113 0.564853556485356 0.2565035174554237
+0.16612877513848742 0.5585773964008385 0.16612877513848742 0.5585773964008385 0.26330146029969953
+0.1695175643290047 0.5564833553734377 0.1695175643290047 0.5564833553734377 0.2664663598074826
+0.17289217608832355 0.5460093490147304 0.17289217608832355 0.5460093490147305 0.2774182313062547
+0.17289710167752328 0.5501960772441268 0.17289710167752328 0.5501960772441268 0.2736335818066838
+0.17289982239422028 0.5543835721114373 0.17289982239422028 0.5543835721114373 0.269671076682203
+0.15256724828259907 0.5753138075313808 0.15256724828259907 0.5753138075313808 0.2453810468492683
+0.15595763157776787 0.573221757322176 0.15595763157776787 0.573221757322176 0.2476440338596475
+0.15934801487293668 0.5711297071129718 0.15934801487293668 0.5711297071129718 0.25010145869282047
+0.1627383981681063 0.5690376569037693 0.1627383981681063 0.5690376569037693 0.2527284073800129
+0.1525672482825991 0.5794979079497908 0.15256724828259907 0.5794979079497908 0.24214157413128415
+0.33905354658868814 0.3147083451577787 0.33905354658868814 0.3147083451577787 0.21066623001725876
+0.3370348690928614 0.31663425860212924 0.33703486909286134 0.3166342586021292 0.20536986187601625
+0.33400313996006137 0.3181065274567835 0.33400313996006137 0.3181065274567835 0.19837957638444206
+0.33084098500043824 0.31958565329828614 0.3308409850004383 0.31958565329828614 0.19125952515882136
+0.3276976949728052 0.3210509009261785 0.3276976949728052 0.32105090092617855 0.18436022303608215
+0.32459611081265893 0.3225116197402024 0.32459611081265893 0.3225116197402024 0.17774182804979957
+0.321583138126178 0.32401475438905286 0.321583138126178 0.32401475438905286 0.17146503437384128
+0.3186855125100375 0.32559323645433214 0.31868551251003746 0.32559323645433214 0.16555663044402102
+0.315795024483446 0.32724166646911595 0.315795024483446 0.32724166646911595 0.1598826744452895
+0.31289855072147393 0.3289327341202451 0.31289855072147393 0.3289327341202451 0.15445255481039458
+0.3099295098159308 0.33065166938372165 0.30992950981593076 0.33065166938372165 0.14924413098911973
+0.30696216913136115 0.3323985155456632 0.30696216913136115 0.3323985155456632 0.14440772426685258
+0.3040241016778658 0.3341899655613436 0.3040241016778658 0.3341899655613436 0.1399984408280939
+0.301135838013949 0.33603097419597394 0.301135838013949 0.33603097419597394 0.13606394867173235
+0.2982824586371553 0.337922846910738 0.2982824586371553 0.337922846910738 0.13261765728527097
+0.29543107228319837 0.33986230039826587 0.29543107228319837 0.33986230039826587 0.12966939687643098
+0.29259675411567526 0.3418436548922656 0.29259675411567526 0.3418436548922656 0.1272633652951447
+0.28976512427611856 0.343868255381044 0.28976512427611856 0.343868255381044 0.12541997201158475
+0.286938009510298 0.34594044675732755 0.286938009510298 0.34594044675732755 0.12416465422639544
+0.2841250709573579 0.34805489960386377 0.2841250709573579 0.34805489960386377 0.12351678016597627
+0.28134382871582214 0.35020658523630566 0.28134382871582214 0.35020658523630566 0.12347660718853516
+0.2785832581582059 0.3524005534897065 0.2785832581582059 0.3524005534897065 0.12403043417662685
+0.27583173459873317 0.354643596322727 0.27583173459873317 0.354643596322727 0.12516301658554976
+0.27312137909001744 0.3569460303928315 0.2731213790900174 0.3569460303928315 0.12684503931109606
+0.2704272462511266 0.3592963739220525 0.2704272462511266 0.3592963739220525 0.12905743822524451
+0.26774364008870827 0.3616795883030164 0.26774364008870827 0.3616795883030164 0.1317615855406422
+0.2650683282223186 0.36408570633738857 0.26506832822231857 0.36408570633738857 0.13490990751958795
+0.2624043962039983 0.366519452418883 0.2624043962039983 0.366519452418883 0.13845820536635467
+0.2597600071763166 0.36900555853103006 0.2597600071763166 0.36900555853103006 0.14237411734401925
+0.25719664170408785 0.37159315964916356 0.25719664170408785 0.37159315964916356 0.14661805772487405
+0.2547169875097873 0.37426700906499133 0.2547169875097873 0.37426700906499133 0.15117027956472087
+0.25224325500933664 0.37692497208765496 0.2522432550093367 0.376924972087655 0.1559388240898039
+0.24971096240558954 0.37954860892503745 0.24971096240558954 0.37954860892503745 0.16088566107111738
+0.24713133813549726 0.38214563003917407 0.24713133813549729 0.38214563003917407 0.16596831594276204
+0.24445082098853665 0.38472651948683906 0.24445082098853668 0.38472651948683906 0.17119267910658986
+0.24155613454932168 0.38756189195733454 0.24155613454932162 0.38756189195733454 0.17699719591378657
+0.2400599926972043 0.39114592324160347 0.24005999269720427 0.39114592324160347 0.18302962481330018
+0.2378416433158209 0.39400999664170655 0.2378416433158209 0.39400999664170655 0.18861646728492845
+0.23549577894406654 0.3967157087774825 0.23549577894406656 0.39671570877748247 0.1940196413404994
+0.23309448058082669 0.3993932106302353 0.23309448058082669 0.3993932106302353 0.1993915978863362
+0.22573927211227718 0.4070822600653734 0.22573927211227715 0.40708226006537346 0.21472282839813947
+0.2306087541301554 0.40203025878775395 0.23060875413015539 0.40203025878775395 0.2047004416251512
+0.2281492666429753 0.40453838478415155 0.22814926664297533 0.40453838478415155 0.20972923443419852
+0.22721625803525822 0.41024536438246445 0.22721625803525822 0.41024536438246445 0.21908769915717416
+0.22479516331548471 0.41270125881452335 0.22479516331548474 0.41270125881452335 0.22396478282765117
+0.22259749879437335 0.41517146459496573 0.22259749879437332 0.41517146459496573 0.22860944040664632
+0.2204629569290069 0.4182095194813605 0.2204629569290069 0.4182095194813605 0.2340252869422872
+0.21824728756551495 0.42116795605321083 0.21824728756551495 0.42116795605321083 0.23920550802141063
+0.21156010809213527 0.4297764242459752 0.21156010809213524 0.4297764242459752 0.25343069081926733
+0.2137903764997332 0.4270677531329505 0.21379037649973318 0.4270677531329505 0.24909325027760373
+0.21601598453156312 0.4241071978521969 0.2160159845315631 0.4241071978521969 0.24421344382651491
+0.21234536651711128 0.4326479172963079 0.21234536651711128 0.4326479172963079 0.2575030953542753
+0.21103124871406465 0.43554512146368274 0.21103124871406465 0.4355451214636828 0.2618891615061519
+0.20914734644791416 0.4385936691540552 0.20914734644791413 0.43859366915405523 0.2662694734898006
+0.19998459294895962 0.4539383064984313 0.19998459294895962 0.4539383064984313 0.2850213755403207
+0.20716597655914934 0.44175891439557885 0.20716597655914934 0.44175891439557885 0.2706095804996586
+0.2052486984285687 0.444849857338094 0.20524869842856866 0.44484985733809396 0.2746119979993144
+0.2013113073083743 0.4509613944549191 0.2013113073083743 0.45096139445491906 0.2818673086254319
+0.20332309607808838 0.44791482315553727 0.20332309607808838 0.44791482315553727 0.27835900617833403
+0.20083576029313743 0.45682700440235186 0.20083576029313743 0.45682700440235186 0.2884222516173022
+0.199423244414366 0.4600491594233298 0.199423244414366 0.4600491594233298 0.29152226834382816
+0.19279658643394118 0.4709800745298009 0.19279658643394118 0.4709800745298009 0.299349530892767
+0.19821720531487505 0.4633997708704837 0.19821720531487505 0.46339977087048373 0.29445806310827716
+0.19689945229475558 0.4665905103360457 0.19689945229475558 0.46659051033604565 0.2970329607972691
+0.19555729054037863 0.46936257070704973 0.19555729054037863 0.46936257070704973 0.29888508544163
+0.1927562047260572 0.47517652194867166 0.19275620472605717 0.47517652194867166 0.30229362571425117
+0.18290865348689334 0.4978842721845487 0.18290865348689334 0.4978842721845487 0.3058896300174751
+0.18947480888057688 0.4811301778293952 0.18947480888057688 0.4811301778293952 0.30441500945599037
+0.19261451689712414 0.4792973606793599 0.19261451689712414 0.47929736067935996 0.30467549176510106
+0.1895765168227296 0.48517102716594906 0.1895765168227296 0.485171027165949 0.3062745298056411
+0.18629847685170395 0.48734557879275736 0.18629847685170395 0.48734557879275736 0.30559716393286124
+0.18629529490518068 0.491565328411322 0.18629529490518068 0.491565328411322 0.30676741525355716
+0.1862307155527847 0.4957854761186948 0.1862307155527847 0.4957854761186948 0.30742579925815544
+0.179573522038504 0.5125128087841644 0.179573522038504 0.5125128087841643 0.3021521972924118
+0.17957344850168175 0.5167056744971057 0.17957344850168175 0.5167056744971057 0.3006590664989273
+0.18288276450756757 0.5020300906007688 0.18288276450756757 0.5020300906007688 0.30587626946742436
+0.18288071096348588 0.50618833372301 0.18288071096348588 0.50618833372301 0.3054445627627238
+0.1828840502354254 0.5103704387176092 0.1828840502354254 0.5103704387176092 0.3045724510730978
+0.17957254885422622 0.5208984196183764 0.17957254885422622 0.5208984196183764 0.2987596670601829
+0.17956946930168063 0.5250914814749974 0.17956946930168063 0.5250914814749974 0.2964707542136505
+0.17623348490971294 0.531377900618005 0.17623348490971294 0.531377900618005 0.2906862641149412
+0.17956571817935815 0.5292839911329227 0.17956571817935815 0.5292839911329227 0.29381425876710426
+0.1762355380444179 0.5355592375338755 0.1762355380444179 0.5355592375338755 0.2876404325055044
+0.1762408661897208 0.5397355605312307 0.1762408661897208 0.5397355605312307 0.2843119240630106
+0.17625125017758814 0.5439106322866056 0.17625125017758814 0.5439106322866056 0.2807274070648474
+0.3426743046268872 0.3108622601689117 0.3426743046268872 0.3108622601689117 0.2204341300030093
+0.34208881480745557 0.3142805334427116 0.3420888148074556 0.3142805334427116 0.21714779725309508
+0.3534909829664621 0.2936334796244736 0.3534909829664621 0.29363347962447367 0.24893075240977283
+0.34657585355618753 0.30277399144602724 0.34657585355618753 0.30277399144602724 0.23244901464712744
+0.352987710872549 0.2970586836615666 0.352987710872549 0.2970586836615667 0.24716752165865533
+0.34977199624384364 0.30166572338251 0.34977199624384364 0.30166572338251 0.23929790836080886
+0.35246387031313775 0.3004364422411074 0.35246387031313775 0.3004364422411074 0.24512663873731935
+0.34629992882648714 0.3062272918709991 0.34629992882648714 0.3062272918709991 0.2303001173945167
+0.34596261011658624 0.3097061258582366 0.34596261011658624 0.3097061258582366 0.22782317930220783
+0.36593225509539523 0.2768711235931351 0.36593225509539523 0.2768711235931351 0.27124761004020886
+0.35790195518708445 0.28571561869762235 0.3579019551870845 0.28571561869762235 0.25803596570714665
+0.36517898700342616 0.2803796843170933 0.36517898700342616 0.2803796843170933 0.2706755575804342
+0.3612124450727572 0.2847713739818589 0.3612124450727572 0.2847713739818589 0.26409210472029004
+0.3644997743396474 0.28387239410055415 0.3644997743396474 0.28387239410055415 0.2700075194627127
+0.3573290967419496 0.28921152434275155 0.3573290967419496 0.28921152434275155 0.2568566163602426
+0.35676195734584576 0.292660458677293 0.35676195734584576 0.292660458677293 0.25543703432817105
+0.38008239098921376 0.26066902264973146 0.38008239098921376 0.26066902264973146 0.28681787296749994
+0.3710937361899105 0.2690540141297735 0.3710937361899105 0.2690540141297735 0.2773244389597486
+0.3789910290293644 0.2641881682828518 0.3789910290293644 0.2641881682828518 0.28698383443326536
+0.37453267560450093 0.26835278274212676 0.37453267560450093 0.26835278274212676 0.2823352184896093
+0.377971613652256 0.2677007349251848 0.377971613652256 0.2677007349251848 0.2871738465214118
+0.37018774991773445 0.27258772569294687 0.37018774991773445 0.2725877256929468 0.27710785291445456
+0.3693235603797336 0.27609501051307245 0.3693235603797336 0.27609501051307245 0.27678306172767614
+0.39614370124006393 0.245175562343917 0.39614370124006393 0.245175562343917 0.2968593021063332
+0.38608101995694327 0.25304871513522154 0.38608101995694327 0.2530487151352215 0.29063300297366385
+0.3946789267252567 0.24863667281095292 0.3946789267252567 0.24863667281095295 0.29722728481637595
+0.3896713063492372 0.2525336425438368 0.3896713063492372 0.25253364254383687 0.29430129178832526
+0.39327482429373695 0.25213589665466163 0.39327482429373695 0.25213589665466163 0.2977275045313967
+0.3848194871916826 0.25660006803707075 0.3848194871916826 0.25660006803707075 0.29085632207353923
+0.3836079709901791 0.26011405544387717 0.3836079709901791 0.26011405544387717 0.29113062247616034
+0.42300000542949967 0.22425876610989365 0.4230000054294996 0.22425876610989362 0.2972940413197191
+0.42094871884699614 0.22739066946123582 0.4209487188469962 0.2273906694612358 0.29870317333962126
+0.4188971393236895 0.23053864297727408 0.4188971393236895 0.23053864297727408 0.2999997257396198
+0.4167517666294869 0.23370118536196383 0.4167517666294868 0.23370118536196385 0.3012158232406165
+0.4140538543552305 0.23699183288274708 0.4140538543552305 0.2369918328827471 0.3023490473346874
+0.40139727154618354 0.24163808145171686 0.40139727154618354 0.24163808145171686 0.29911854269675686
+0.40517227873830675 0.24144684070534483 0.4051722787383067 0.2414468407053448 0.3011981301347635
+0.4125625309782285 0.24059530158205894 0.4125625309782284 0.24059530158205897 0.3036547093427184
+0.4089652274914388 0.24114198188696212 0.4089652274914388 0.24114198188696215 0.3027803670892379
+0.39983894164209444 0.24497021390006554 0.39983894164209444 0.24497021390006554 0.29956915635232284
+0.43085361404056527 0.2183057615681834 0.43085361404056527 0.2183057615681834 0.2919416040410569
+0.4288007943244014 0.22139721296005369 0.4288007943244014 0.22139721296005369 0.2940914102457966
+0.4345922043539723 0.21853826253197686 0.4345922043539723 0.21853826253197686 0.2893023729260664
+0.426740047397818 0.22450793634150035 0.42674004739781796 0.22450793634150035 0.2960636528136145
+0.4648250807501626 0.20091317764066763 0.46482508075016254 0.20091317764066763 0.23483032827085526
+0.46268357701772556 0.20319862200977676 0.4626835770177255 0.20319862200977676 0.24083667228284453
+0.460435657305433 0.20546242474416188 0.46043565730543307 0.20546242474416188 0.24677785206231448
+0.4581989698076774 0.2078092692102472 0.4581989698076773 0.2078092692102472 0.25244206467478425
+0.45590280215468953 0.21016428124395273 0.45590280215468953 0.21016428124395273 0.2579065894029251
+0.4535905586047026 0.21250284276886075 0.4535905586047026 0.21250284276886075 0.26307890678926743
+0.4383342020313311 0.21874327235610552 0.43833420203133105 0.21874327235610555 0.28606019360359
+0.44185651630070283 0.21922075835001167 0.44185651630070283 0.21922075835001167 0.28252276382722424
+0.4512727011065755 0.21479649270242637 0.4512727011065755 0.21479649270242637 0.26792327220409945
+0.4488284984155285 0.21700631816187935 0.4488284984155286 0.21700631816187935 0.2726009756748677
+0.4457255043882448 0.21916320713852 0.4457255043882448 0.21916320713852006 0.27784080355158713
+0.4876344330333747 0.1925166181811096 0.4876344330333748 0.19251661818110957 0.1668178433361174
+0.47307447129843017 0.1962803838537894 0.4730744712984301 0.1962803838537894 0.21182089355459985
+0.4857374461160294 0.19513239007150696 0.4857374461160294 0.19513239007150696 0.1742891317232044
+0.4778534886639546 0.19667674985921912 0.47785348866395466 0.1966767498592191 0.19897166208844147
+0.482420876110775 0.19641705345487576 0.48242087611077494 0.19641705345487573 0.18536351282343483
+0.48076008077769455 0.19927410431867545 0.48076008077769455 0.19927410431867545 0.19189034049559012
+0.47061211606698544 0.1992384001414641 0.47061211606698544 0.1992384001414641 0.21992317460888824
+0.4683685340923942 0.20185752589477 0.4683685340923942 0.20185752589477 0.2269695289408525
+0.5085665674097847 0.18623529204812486 0.5085665674097847 0.18623529204812486 0.0913235842983273
+0.4940334615483608 0.18947043836042088 0.4940334615483608 0.18947043836042088 0.14408651205020437
+0.49820432876811865 0.1894621625300117 0.49820432876811865 0.1894621625300117 0.12972653431467973
+0.5024070713811175 0.18952306017541345 0.5024070713811176 0.18952306017541345 0.11485804440859214
+0.5065994814394141 0.18954108172908954 0.5065994814394141 0.18954108172908954 0.09965901166507307
+0.4922895714965532 0.19301712167267382 0.4922895714965532 0.1930171216726738 0.15187845133573594
+0.5147628141389452 0.18293375978463375 0.5147628141389452 0.18293375978463375 0.06823382253595668
+0.5189501336906802 0.18293326587313394 0.5189501336906802 0.18293326587313394 0.05386118934445978
+0.5231265297658931 0.18292249000989871 0.523126529765893 0.18292249000989871 0.04099364795676388
+0.5127445400249097 0.18625581467476707 0.5127445400249097 0.18625581467476707 0.07617510278112272
+0.5460249378615403 0.1661281746237568 0.5460249378615404 0.1661281746237568 0.06374368243032759
+0.5397489974429266 0.16951377088863687 0.5397489974429267 0.16951377088863687 0.04606169801378287
+0.5439329409508826 0.16951543495473134 0.5439329409508825 0.16951543495473134 0.05896719566747632
+0.527288763741013 0.1829141094629009 0.527288763741013 0.1829141094629009 0.031932133605323924
+0.5376589823694446 0.1728914381614671 0.5376589823694448 0.1728914381614671 0.041367234541351376
+0.5355741407051992 0.1762551438511569 0.5355741407051992 0.1762551438511569 0.03688391342327863
+0.5334998382857209 0.17959859604161113 0.5334998382857209 0.17959859604161113 0.033078564394037786
+0.5314437063273391 0.18291732940446367 0.5314437063273391 0.18291732940446367 0.030597121404764168
+0.5502090865587216 0.16612843625692897 0.5502090865587216 0.16612843625692897 0.07770898108812117
+0.5543932484681225 0.16612864941164626 0.5543932484681225 0.16612864941164626 0.09211092084885962
+0.560669451248954 0.16273839546174 0.560669451248954 0.16273839546174 0.11023056121513237
+0.558577393410653 0.1661287745940053 0.558577393410653 0.1661287745940053 0.10671207611226251
+0.5648535549032623 0.16273839730217668 0.5648535549032623 0.16273839730217668 0.12453304390035731
+0.5711297071129525 0.15934801487294026 0.5711297071129525 0.15934801487294026 0.14121575489350605
+0.5690376564325031 0.16273839791577427 0.5690376564325031 0.16273839791577427 0.13880393520598447
+0.5774058577405679 0.15595763157777132 0.577405857740568 0.15595763157777132 0.15693423342463908
+0.5753138075313627 0.15934801487294026 0.5753138075313627 0.15934801487294026 0.15508623015294723
+0.6150627615062598 0.11527303203574402 0.6150627615062598 0.11527303203574402 0.23057467125230666
+0.6087866108786445 0.11866341533091296 0.6087866108786445 0.11866341533091296 0.21340518542280976
+0.6129707112970547 0.11866341533091296 0.6129707112970547 0.11866341533091296 0.22621515355755487
+0.6066945606694394 0.1220537986260819 0.6066945606694394 0.1220537986260819 0.20905979031679614
+0.6046025104602343 0.12544418192125084 0.6046025104602343 0.12544418192125084 0.20496758449272331
+0.6025104602510292 0.12883456521641978 0.6025104602510291 0.12883456521641978 0.20120090560893802
+0.5962343096234138 0.13222494851158872 0.5962343096234138 0.13222494851158872 0.18471799534450203
+0.5941422594142087 0.13561533180675767 0.5941422594142088 0.13561533180675767 0.18176572958521095
+0.5920502092050036 0.1390057151019266 0.5920502092050036 0.1390057151019266 0.17921661972852596
+0.5899581589957985 0.14239609839709555 0.5899581589957985 0.14239609839709555 0.17703312541493132
+0.5878661087865934 0.1457864816922645 0.5878661087865934 0.1457864816922645 0.17515347186608785
+0.5857740585773883 0.14917686498743343 0.5857740585773882 0.14917686498743343 0.17349581112724688
+0.5836820083681832 0.15256724828260237 0.5836820083681832 0.15256724828260237 0.17196360398034402
+0.5815899581589781 0.15595763157777132 0.5815899581589781 0.15595763157777132 0.1704516001061546
+0.6004184100418241 0.13222494851158872 0.6004184100418241 0.13222494851158872 0.1978119926769237
+0.6255230125522854 0.10510188215023719 0.6255230125522854 0.10510188215023719 0.25485073390851404
+0.6297071129706956 0.10510188215023719 0.6297071129706956 0.10510188215023719 0.2658903111832198
+0.6234309623430803 0.10849226544540613 0.6234309623430803 0.10849226544540613 0.2510747901888
+0.6213389121338752 0.11188264874057507 0.6213389121338752 0.11188264874057507 0.24706844682582493
+0.61924686192467 0.11527303203574402 0.6192468619246699 0.11527303203574402 0.24293054435691683
+0.6506276150627467 0.07797881578888566 0.6506276150627467 0.07797881578888566 0.2827335539185425
+0.6485355648535416 0.0813691990840546 0.6485355648535416 0.0813691990840546 0.28393005486283945
+0.6464435146443365 0.08475958237922354 0.6464435146443365 0.08475958237922354 0.284558058278703
+0.6443514644351314 0.08814996567439248 0.6443514644351315 0.08814996567439248 0.28459982969066117
+0.6422594142259263 0.09154034896956142 0.6422594142259263 0.09154034896956142 0.2840523698066606
+0.6401673640167211 0.09493073226473037 0.6401673640167211 0.09493073226473037 0.2829277077175006
+0.638075313807516 0.09832111555989931 0.638075313807516 0.09832111555989931 0.28125289255417063
+0.6359832635983109 0.10171149885506825 0.6359832635983108 0.10171149885506825 0.279069646003979
+0.6338912133891058 0.10510188215023719 0.6338912133891058 0.10510188215023719 0.2764336292925134
+0.656903765690362 0.07458843249371672 0.656903765690362 0.07458843249371672 0.2873369597767835
+0.6548117154811569 0.07797881578888566 0.6548117154811569 0.07797881578888566 0.28937338889320025
+0.6631799163179773 0.07119804919854777 0.6631799163179773 0.07119804919854777 0.2906278744364808
+0.6610878661087722 0.07458843249371672 0.6610878661087723 0.07458843249371672 0.2933068634712969
+0.6694560669455927 0.06780766590337883 0.6694560669455926 0.06780766590337883 0.29305819835744634
+0.6673640167363876 0.07119804919854777 0.6673640167363876 0.07119804919854777 0.29614505625621074
+0.675732217573208 0.06441728260820989 0.675732217573208 0.06441728260820989 0.2951249354464829
+0.6736401673640029 0.06780766590337883 0.6736401673640029 0.06780766590337883 0.29837253788698065
+0.6820083682008233 0.06102689931304095 0.6820083682008233 0.06102689931304095 0.29731486722183337
+0.6799163179916182 0.06441728260820989 0.6799163179916182 0.06441728260820989 0.30049342861838113
+0.6903765690376438 0.054246132722703067 0.6903765690376438 0.054246132722703067 0.29720106601792656
+0.6882845188284387 0.05763651601787201 0.6882845188284387 0.05763651601787201 0.3000432192923455
+0.6861924686192336 0.06102689931304095 0.6861924686192334 0.06102689931304095 0.30297068020433254
+0.6966527196652591 0.050855749427534125 0.6966527196652591 0.050855749427534125 0.3011450954557718
+0.694560669456054 0.054246132722703067 0.6945606694560541 0.054246132722703067 0.30359731087327035
+0.7029288702928744 0.04746536613236518 0.7029288702928743 0.04746536613236518 0.3060224452865872
+0.7008368200836693 0.050855749427534125 0.7008368200836693 0.050855749427534125 0.3080980871270844
+0.7092050209204898 0.04407498283719624 0.7092050209204898 0.04407498283719624 0.3117038923966253
+0.7071129707112846 0.04746536613236518 0.7071129707112846 0.04746536613236518 0.313489532904029
+0.7154811715481051 0.0406845995420273 0.7154811715481051 0.0406845995420273 0.3179268877219931
+0.7133891213389 0.04407498283719624 0.7133891213389 0.04407498283719624 0.3195585179285915
+0.7217573221757204 0.03729421624685836 0.7217573221757204 0.03729421624685836 0.32434669312848197
+0.7196652719665153 0.0406845995420273 0.7196652719665152 0.0406845995420273 0.32597901440941385
+0.7280334728033357 0.03390383295168942 0.7280334728033359 0.03390383295168942 0.3305934816130888
+0.7259414225941306 0.03729421624685836 0.7259414225941306 0.03729421624685836 0.3323690384563558
+0.7343096234309511 0.030513449656520475 0.7343096234309511 0.030513449656520475 0.3363244756953427
+0.732217573221746 0.03390383295168942 0.732217573221746 0.03390383295168942 0.33834798253521003
+0.7426778242677715 0.02373268306618259 0.7426778242677715 0.02373268306618259 0.33906094859258623
+0.7405857740585664 0.027123066361351533 0.7405857740585664 0.027123066361351533 0.3412640719614147
+0.7384937238493613 0.030513449656520475 0.7384937238493613 0.030513449656520475 0.3435850453361841
+0.7489539748953868 0.02034229977101365 0.7489539748953868 0.02034229977101365 0.34285031593525256
+0.7468619246861817 0.02373268306618259 0.7468619246861817 0.02373268306618259 0.3452288768890743
+0.7552301255230022 0.01695191647584471 0.7552301255230022 0.01695191647584471 0.3456868632159948
+0.7531380753137971 0.02034229977101365 0.753138075313797 0.02034229977101365 0.3481374536834618
+0.7615062761506175 0.013561533180675767 0.7615062761506176 0.013561533180675767 0.3476267484766318
+0.7594142259414124 0.01695191647584471 0.7594142259414124 0.01695191647584471 0.3500062870896122
+0.7677824267782328 0.010171149885506825 0.7677824267782328 0.010171149885506825 0.3487893154257992
+0.7656903765690277 0.013561533180675767 0.7656903765690277 0.013561533180675767 0.35093448592771087
+0.7740585774058482 0.006780766590337883 0.7740585774058482 0.006780766590337883 0.3493312254986723
+0.771966527196643 0.010171149885506825 0.771966527196643 0.010171149885506825 0.35108053610548645
+0.7782426778242584 0.006780766590337883 0.7782426778242585 0.006780766590337883 0.35063520373421553
+0.006780766590337709 0.7824267782426757 0.006780766590337709 0.7824267782426757 0.11433330599153614
+0.006780766590337709 0.7866108786610857 0.006780766590337709 0.7866108786610857 0.11091258591439825
+0.01017114988550656 0.7761506276150607 0.01017114988550656 0.7761506276150607 0.1199179547978264
+0.01017114988550656 0.7803347280334707 0.01017114988550656 0.7803347280334707 0.11659429730882666
+0.013561533180675408 0.7698744769874457 0.013561533180675408 0.7698744769874457 0.1254820155574049
+0.013561533180675408 0.7740585774058557 0.013561533180675408 0.7740585774058557 0.12232044153090625
+0.016951916475844264 0.7635983263598307 0.016951916475844264 0.7635983263598307 0.13089526237280077
+0.016951916475844264 0.7677824267782407 0.016951916475844264 0.7677824267782407 0.1279535783368487
+0.02034229977101312 0.7573221757322157 0.02034229977101312 0.7573221757322157 0.13602319181362585
+0.02034229977101312 0.7615062761506257 0.02034229977101312 0.7615062761506257 0.1333503306607664
+0.02373268306618197 0.7510460251046007 0.02373268306618197 0.7510460251046007 0.14073554769293004
+0.02373268306618197 0.7552301255230107 0.02373268306618197 0.7552301255230107 0.13836883936130948
+0.027123066361350822 0.7489539748953957 0.027123066361350822 0.7489539748953957 0.14287912852979612
+0.030513449656519673 0.7426778242677807 0.030513449656519673 0.7426778242677807 0.14677513960568211
+0.030513449656519673 0.7468619246861907 0.030513449656519673 0.7468619246861907 0.1448684105412915
+0.033903832951688535 0.7364016736401657 0.033903832951688535 0.7364016736401657 0.14998720526708495
+0.033903832951688535 0.7405857740585757 0.033903832951688535 0.7405857740585757 0.1484147900790007
+0.03729421624685738 0.7301255230125507 0.03729421624685738 0.7301255230125507 0.1524937780179451
+0.03729421624685738 0.7343096234309607 0.03729421624685738 0.7343096234309607 0.15122462339853526
+0.040684599542026224 0.7238493723849357 0.040684599542026224 0.7238493723849357 0.154331191059311
+0.040684599542026224 0.7280334728033457 0.040684599542026224 0.7280334728033457 0.15330663754220827
+0.0440749828371951 0.7175732217573207 0.0440749828371951 0.7175732217573207 0.15560004566551064
+0.0440749828371951 0.7217573221757307 0.0440749828371951 0.7217573221757307 0.15473308947896977
+0.04746536613236394 0.7112970711297057 0.04746536613236394 0.7112970711297057 0.15646649700233958
+0.04746536613236394 0.7154811715481157 0.04746536613236394 0.7154811715481157 0.15564371281906586
+0.05085574942753279 0.7050209205020908 0.05085574942753279 0.7050209205020908 0.15715638315729222
+0.05085574942753279 0.7092050209205008 0.05085574942753279 0.7092050209205008 0.15624353959120554
+0.05424613272270165 0.6987447698744758 0.054246132722701644 0.6987447698744758 0.15794014827108604
+0.05424613272270165 0.7029288702928858 0.054246132722701644 0.7029288702928858 0.15679237567942253
+0.05763651601787049 0.6924686192468608 0.05763651601787049 0.6924686192468608 0.15910740566226275
+0.05763651601787049 0.6966527196652708 0.05763651601787049 0.6966527196652708 0.1575840384230963
+0.06102689931303934 0.6903765690376558 0.06102689931303934 0.6903765690376558 0.1589150489220342
+0.06441728260820821 0.6841004184100408 0.06441728260820821 0.6841004184100408 0.16104567830325497
+0.06441728260820821 0.6882845188284508 0.06441728260820821 0.6882845188284508 0.15873603750985943
+0.06780766590337706 0.6778242677824258 0.06780766590337706 0.6778242677824258 0.164160352128112
+0.06780766590337706 0.6820083682008358 0.06780766590337706 0.6820083682008358 0.1612474169052159
+0.0711980491985459 0.6715481171548108 0.0711980491985459 0.6715481171548108 0.168337190525078
+0.0711980491985459 0.6757322175732208 0.0711980491985459 0.6757322175732208 0.16482694723243227
+0.07458843249371476 0.6652719665271958 0.07458843249371476 0.6652719665271958 0.1735353391079225
+0.07458843249371476 0.6694560669456058 0.07458843249371476 0.6694560669456058 0.16949348043607484
+0.07797881578888362 0.6589958158995808 0.07797881578888362 0.6589958158995808 0.1796033205837068
+0.07797881578888362 0.6631799163179908 0.07797881578888362 0.6631799163179908 0.1751451021510868
+0.08136919908405248 0.6527196652719658 0.08136919908405248 0.6527196652719658 0.18630477707087892
+0.08136919908405248 0.6569037656903758 0.08136919908405248 0.6569037656903758 0.1815782402764533
+0.08475958237922132 0.6506276150627608 0.08475958237922132 0.6506276150627608 0.1885207465862209
+0.08814996567439015 0.6485355648535558 0.08814996567439015 0.6485355648535558 0.190774397556755
+0.09154034896955902 0.6464435146443508 0.09154034896955902 0.6464435146443508 0.19303799547506426
+0.09493073226472787 0.6443514644351458 0.09493073226472787 0.6443514644351458 0.19528273333537835
+0.09832111555989675 0.6422594142259408 0.09832111555989675 0.6422594142259408 0.19748014868572727
+0.10171149885506564 0.6401673640167358 0.10171149885506563 0.6401673640167358 0.1996034818648639
+0.10510188215023453 0.6338912133891208 0.10510188215023453 0.6338912133891208 0.20629979907020266
+0.10849226544540343 0.6317991631799158 0.10849226544540343 0.6317991631799158 0.20808122456978137
+0.11866341533091013 0.6171548117154808 0.11866341533091011 0.6171548117154808 0.21994108687973893
+0.12544418192124793 0.6087866108786608 0.12544418192124793 0.6087866108786608 0.2247927700240349
+0.1288345652164168 0.6066945606694558 0.1288345652164168 0.6066945606694558 0.225499172212551
+0.1356153318067546 0.5983263598326358 0.13561533180675459 0.5983263598326358 0.2297589869307349
+0.1390057151019235 0.5962343096234308 0.1390057151019235 0.5962343096234308 0.2306155984311393
+0.1423960983970924 0.5941422594142258 0.1423960983970924 0.5941422594142258 0.23160168751629692
+0.1457864816922613 0.5878661087866108 0.1457864816922613 0.5878661087866108 0.23572730773142
+0.1491768649874302 0.5857740585774058 0.1491768649874302 0.5857740585774058 0.23719521242469752
+0.1525672482825991 0.5836820083682008 0.15256724828259907 0.5836820083682008 0.23886487961697658
+0.1457864816922613 0.5920502092050208 0.1457864816922613 0.5920502092050208 0.23274183582568372
+0.13222494851158573 0.6046025104602508 0.13222494851158573 0.6046025104602508 0.22620417233700388
+0.1356153318067546 0.6025104602510458 0.13561533180675459 0.6025104602510458 0.22694270294949073
+0.12205379862607901 0.6150627615062758 0.12205379862607901 0.6150627615062758 0.22086869510870163
+0.12544418192124793 0.6129707112970708 0.12544418192124793 0.6129707112970708 0.2217049639034442
+0.11188264874057234 0.6255230125523008 0.11188264874057234 0.6255230125523008 0.2138541226557726
+0.11188264874057234 0.6297071129707108 0.11188264874057234 0.6297071129707108 0.20971537941462862
+0.11527303203574124 0.6234309623430958 0.11527303203574124 0.6234309623430958 0.21518598032311975
+0.11866341533091013 0.6213389121338908 0.11866341533091011 0.6213389121338908 0.21637313555224943
+0.10510188215023453 0.6380753138075308 0.10510188215023453 0.6380753138075308 0.20162891269443764
+0.166128781463292 0.5627615062761597 0.166128781463292 0.5627615062761597 0.25944030721074224
+0.16612874824950907 0.5669455847716877 0.16612874824950907 0.5669455847716877 0.2554960117127721
+0.1695177292752762 0.5606677999639119 0.1695177292752762 0.5606677999639119 0.26247043475806014
+0.17290095956494042 0.5585694616814135 0.17290095956494042 0.5585694616814135 0.2655619943187684
+0.17625992611887853 0.5480927076401736 0.17625992611887853 0.5480927076401736 0.2769059393421765
+0.17626821513576893 0.5522778064068878 0.17626821513576893 0.552277806406888 0.2728816019247379
+0.1762720788248431 0.5564650457483674 0.1762720788248431 0.5564650457483674 0.2686836102083037
+0.15595763157776796 0.5774058577405858 0.15595763157776796 0.5774058577405858 0.24420609727881695
+0.1593480148729368 0.5753138075313808 0.1593480148729368 0.5753138075313808 0.24646621876361238
+0.16273839816810529 0.5732217573221764 0.16273839816810529 0.5732217573221764 0.24890211738298532
+0.16612861888951955 0.5711296346666641 0.16612861888951955 0.5711296346666641 0.251489389697805
+0.15595763157776799 0.5815899581589958 0.15595763157776799 0.5815899581589958 0.24073529562046045
+0.3404809763155896 0.3178691506177907 0.3404809763155896 0.3178691506177907 0.21153990267921954
+0.33722692898748696 0.31994713450628554 0.33722692898748696 0.3199471345062856 0.20338993274588432
+0.3339973242070004 0.3215727478145574 0.3339973242070004 0.3215727478145574 0.1957644407011614
+0.33077862713324285 0.3230671058785351 0.33077862713324285 0.3230671058785351 0.1884147886429082
+0.32762365332411353 0.3244766260162457 0.32762365332411353 0.3244766260162457 0.1814481760121739
+0.32456848984244957 0.32589692972212503 0.3245684898424495 0.32589692972212503 0.17487134439496635
+0.32164643103652946 0.327416539606069 0.32164643103652946 0.32741653960606903 0.16867056639167333
+0.3190526572358836 0.3290529441959724 0.3190526572358836 0.3290529441959724 0.16318287333002965
+0.31616669638460637 0.33071367973974874 0.31616669638460637 0.33071367973974874 0.15745407158575284
+0.31321181514511676 0.33242240709679616 0.3132118151451167 0.3324224070967961 0.15191566689998146
+0.31023038949506004 0.33414861669056256 0.31023038949506004 0.33414861669056256 0.1467123453127842
+0.30729778306895744 0.3358977982605835 0.30729778306895744 0.3358977982605835 0.14197516791213302
+0.304434092130998 0.3376984416587992 0.304434092130998 0.3376984416587992 0.13772732276306773
+0.3016212609015072 0.33955640232417367 0.3016212609015072 0.33955640232417367 0.13397654587479998
+0.2988129231388826 0.3414666963575725 0.2988129231388826 0.3414666963575725 0.13071702878445612
+0.2960018834026314 0.3434281418583671 0.2960018834026314 0.3434281418583671 0.1279830025357472
+0.2931904856912339 0.34539979007018107 0.2931904856912339 0.34539979007018107 0.12583299262772044
+0.29038255738184743 0.34742555261348856 0.29038255738184743 0.34742555261348856 0.12427742590704434
+0.28759307343004564 0.34949905767978406 0.28759307343004564 0.34949905767978406 0.1233454335419724
+0.2848394036888943 0.3516155530691505 0.2848394036888943 0.3516155530691505 0.12304443525875418
+0.28211040150096806 0.3537756916280223 0.28211040150096806 0.3537756916280223 0.12336468406729346
+0.2793863131471426 0.3559835590172031 0.2793863131471426 0.3559835590172031 0.12429450825035959
+0.2766833488376655 0.3582366206243317 0.2766833488376655 0.3582366206243317 0.12580883587292876
+0.2740132050256303 0.3605343929550007 0.2740132050256303 0.3605343929550007 0.1278740268532774
+0.2713426637833977 0.3628773637416601 0.2713426637833977 0.3628773637416601 0.1304692909906192
+0.26869312988158717 0.3652524859557588 0.26869312988158717 0.3652524859557588 0.13353837576090297
+0.2660765965839949 0.367659892134571 0.2660765965839949 0.367659892134571 0.13702556523590922
+0.263481907189899 0.37011203900549766 0.263481907189899 0.37011203900549766 0.14089906377212189
+0.26091630367345436 0.3726242054740711 0.26091630367345436 0.3726242054740711 0.1451231317266762
+0.2584059326297517 0.3752020772457169 0.2584059326297517 0.3752020772457169 0.1496552660158802
+0.2559179722600851 0.37781657157242626 0.2559179722600851 0.37781657157242626 0.15445760806183947
+0.2534242910677753 0.38043744758824705 0.2534242910677753 0.38043744758824705 0.15947300552128782
+0.25090773241268877 0.3830607387351898 0.25090773241268877 0.3830607387351898 0.16466298320754377
+0.2483537012469726 0.3857072500094314 0.24835370124697256 0.3857072500094314 0.17003093886078716
+0.24582345526791166 0.3884109836034707 0.2458234552679117 0.38841098360347065 0.17555313927481908
+0.24365673368612314 0.3913554318349623 0.24365673368612314 0.3913554318349623 0.1812182044821514
+0.24147435628794933 0.3944178288458658 0.24147435628794933 0.3944178288458658 0.18717927973168366
+0.239189556640943 0.39728099739603256 0.239189556640943 0.39728099739603256 0.1929334677722704
+0.23684294940369618 0.40004238031474415 0.23684294940369618 0.40004238031474415 0.19854820886947447
+0.23441179189103653 0.40279023914692397 0.23441179189103653 0.40279023914692397 0.2041521871371035
+0.22973180283509598 0.40797512244266415 0.22973180283509595 0.40797512244266415 0.21457274433213078
+0.23197670755066815 0.40547299050489444 0.23197670755066815 0.40547299050489444 0.20959948932194797
+0.23010867403381574 0.41072673264047405 0.23010867403381577 0.4107267326404741 0.21883791173496497
+0.22860408051973635 0.41318190597917126 0.22860408051973638 0.4131819059791713 0.22346534893600492
+0.22634577737668057 0.41576279811022904 0.22634577737668057 0.41576279811022904 0.22842458953422476
+0.2241788235844191 0.41859949085937526 0.2241788235844191 0.41859949085937526 0.2336662016685432
+0.22195556046640583 0.4214627423355051 0.22195556046640583 0.4214627423355051 0.23883521208291625
+0.21971114275017756 0.4243554272618151 0.21971114275017758 0.4243554272618151 0.24390210422602573
+0.21521884894204002 0.4306984047559549 0.21521884894203996 0.43069840475595494 0.2543962178239089
+0.21744538638217892 0.4273300013005786 0.2174453863821789 0.4273300013005786 0.24893584334525884
+0.2177963887748689 0.4328904100857791 0.2177963887748689 0.4328904100857791 0.25738291770536603
+0.2149285078020231 0.4348515019771828 0.2149285078020231 0.4348515019771827 0.2606537125487765
+0.21288853411708455 0.4384213131719103 0.21288853411708455 0.4384213131719103 0.26594123462160524
+0.21092699438663706 0.4416733925911291 0.21092699438663706 0.4416733925911291 0.27055285602292395
+0.20311150842185102 0.45402418893043106 0.20311150842185102 0.454024188930431 0.2856077152523487
+0.20896076453908596 0.4448214407042492 0.208960764539086 0.4448214407042492 0.2747726581665763
+0.20700515036484068 0.4479160460036429 0.20700515036484068 0.4479160460036429 0.2786813979925304
+0.20503928343273606 0.4509687173864214 0.20503928343273606 0.4509687173864214 0.2822903349432
+0.20471647841776383 0.45682939858995025 0.20471647841776383 0.45682939858995025 0.2890478217932623
+0.2030353636006149 0.45984849212826373 0.2030353636006149 0.4598484921282637 0.29202957279453085
+0.20159824913207983 0.4630943719478127 0.20159824913207983 0.4630943719478127 0.2949925201017593
+0.19638703678331024 0.473193293453611 0.19638703678331024 0.473193293453611 0.30222952461958
+0.2001432523253099 0.46641089435878363 0.2001432523253099 0.46641089435878363 0.297724467867654
+0.19857116869827124 0.4698141388116713 0.1985711686982712 0.4698141388116713 0.3001866908554441
+0.19574997077215894 0.47758396491686916 0.19574997077215894 0.47758396491686916 0.30483567691199204
+0.1861771601316293 0.4999282446947091 0.1861771601316293 0.4999282446947091 0.30760867512362616
+0.19270915496540617 0.48300127115240854 0.19270915496540617 0.4830012711524086 0.30662570231897573
+0.19512255547080298 0.4808789120133932 0.19512255547080298 0.4808789120133932 0.30640153337156817
+0.1929811058212966 0.4870037395578756 0.1929811058212966 0.4870037395578756 0.3083697566269332
+0.1897241516949836 0.48938185663574124 0.1897241516949836 0.48938185663574124 0.3078002637521802
+0.18960230539165213 0.4936899889801375 0.18960230539165213 0.49368998898013755 0.308729703885092
+0.18945688227451565 0.49794365819212777 0.18945688227451565 0.49794365819212777 0.3091001823519732
+0.18289066527283648 0.514567839728859 0.18289066527283648 0.514567839728859 0.30325661732341147
+0.18290110895993425 0.5187702293479306 0.18290110895993425 0.5187702293479307 0.3015127373409862
+0.18616354816133138 0.5040407838755426 0.18616354816133138 0.5040407838755426 0.3073941178546944
+0.1861721647897466 0.5082025333600413 0.1861721647897466 0.5082025333600413 0.3067455576282478
+0.1861759161227107 0.5124046296535317 0.1861759161227107 0.5124046296535317 0.30562715331612683
+0.18290216816455504 0.5229728944918162 0.18290216816455504 0.522972894491816 0.29935289214974264
+0.18288908594873773 0.527176946178241 0.18288908594873773 0.527176946178241 0.29679186500004273
+0.17956380757820364 0.5334718279755782 0.17956380757820364 0.5334718279755782 0.29081921275494055
+0.18287404337918764 0.5313789880618978 0.18287404337918764 0.5313789880618978 0.2938616301078591
+0.17956652223095304 0.5376518956733872 0.17956652223095304 0.5376518956733872 0.28751816600931174
+0.17957820757919332 0.5418259445063646 0.17957820757919332 0.5418259445063646 0.2839417447180661
+0.17959591598029787 0.5459983170246336 0.17959591598029787 0.5459983170246336 0.2801147860788917
+0.3454958354842678 0.31320944489168256 0.3454958354842678 0.3132094448916826 0.22488501216529308
+0.3447717267776413 0.31677577949248353 0.3447717267776413 0.31677577949248353 0.22120045655106427
+0.3562011972819938 0.29606809359419123 0.3562011972819938 0.29606809359419123 0.253779842738216
+0.3495779749095508 0.3050198373026086 0.34957797490955084 0.3050198373026087 0.23755207335042458
+0.3556165786111892 0.2993967061135477 0.35561657861118917 0.2993967061135477 0.25183604446861146
+0.35273195721405115 0.3038045324970923 0.3527319572140511 0.3038045324970922 0.24454538169227402
+0.35490229068585144 0.3020465439481528 0.35490229068585144 0.3020465439481528 0.2495799895571164
+0.3493049279614892 0.308477232942671 0.3493049279614892 0.308477232942671 0.235406205545986
+0.3489565034761776 0.312026769204173 0.3489565034761776 0.312026769204173 0.23287851095645504
+0.3685082954844668 0.2795741096989222 0.3685082954844668 0.2795741096989222 0.27633224678909857
+0.3606394968368857 0.28828219297583246 0.36063949683688573 0.2882821929758324 0.26314851732935746
+0.36776377449060194 0.28302381428513135 0.36776377449060194 0.28302381428513135 0.2757730067978123
+0.36389892590936945 0.2873662661858455 0.36389892590936945 0.28736626618584543 0.26924963908587723
+0.36710180633592 0.2864531336557766 0.36710180633592 0.28645313365577657 0.2751182893349306
+0.3600746076696721 0.291723912818569 0.3600746076696721 0.29172391281856896 0.2619623246137199
+0.35949082503631463 0.2951392062085549 0.35949082503631463 0.2951392062085549 0.26048426438614675
+0.3824582766418248 0.2636065825216996 0.3824582766418248 0.2636065825216996 0.291441609574882
+0.3736034466752529 0.27187317601572775 0.3736034466752529 0.27187317601572775 0.2823109387770366
+0.381392827693642 0.2670900225398911 0.381392827693642 0.2670900225398911 0.2917915503775242
+0.37700374291131117 0.27119799954405555 0.37700374291131117 0.2711979995440555 0.287320670011459
+0.38040036317098186 0.2705642674818995 0.38040036317098186 0.2705642674818995 0.2921348071396686
+0.3727169210562358 0.27537143311862194 0.3727169210562358 0.27537143311862194 0.2821873974380144
+0.37186489918749843 0.2788326107716176 0.37186489918749843 0.27883261077161764 0.2819117993703599
+0.39830143958133774 0.2483588825001065 0.39830143958133774 0.2483588825001065 0.30012434922357656
+0.3883722471565907 0.2560836909507335 0.3883722471565907 0.2560836909507335 0.2947205245572315
+0.3968502681708206 0.25179439112204355 0.3968502681708206 0.25179439112204355 0.3008216028944017
+0.3919264037446715 0.25563458372659725 0.3919264037446715 0.25563458372659725 0.298324637843286
+0.3954776909057323 0.2552499359459246 0.3954776909057323 0.2552499359459246 0.30163868046367376
+0.3871346022580406 0.2595964820033994 0.3871346022580406 0.2595964820033994 0.2952058226147693
+0.38594559253128996 0.26307437597494815 0.38594559253128996 0.26307437597494815 0.2957059592724863
+0.42467485789149 0.22763390472311693 0.42467485789149 0.22763390472311693 0.29788873993902026
+0.42259731206475504 0.23077857756854836 0.42259731206475504 0.2307785775685484 0.2996005975260055
+0.42047422733785345 0.23394255530713903 0.42047422733785345 0.23394255530713903 0.30122717166878527
+0.41826384260133703 0.2371464824334091 0.41826384260133703 0.2371464824334091 0.3027833463665583
+0.4162115398066209 0.24028343314073963 0.4162115398066209 0.2402834331407396 0.30424449674762616
+0.414469760737471 0.24285348384688746 0.41446976073747094 0.24285348384688749 0.30526240469975024
+0.40356375137714257 0.24474138536898948 0.40356375137714257 0.24474138536898948 0.3018965421206086
+0.4074285126496602 0.2444571827904201 0.4074285126496601 0.24445718279042009 0.30383244537017434
+0.41144721865985995 0.24423053327067862 0.41144721865985995 0.24423053327067865 0.30540509986409986
+0.4145578357065769 0.24524910807524614 0.41455783570657695 0.24524910807524614 0.30675200464886504
+0.40195245810517416 0.24810424665609673 0.40195245810517416 0.24810424665609673 0.3026847191460462
+0.4325396115523555 0.22164477407487668 0.4325396115523555 0.22164477407487668 0.29187904369172174
+0.430482512179671 0.22475539848518056 0.430482512179671 0.22475539848518053 0.29427330275901936
+0.43626550549020404 0.22190553765387788 0.43626550549020404 0.22190553765387788 0.2890949971465307
+0.428415083173509 0.22787803545544505 0.428415083173509 0.22787803545544505 0.2965227800539308
+0.4661496150244901 0.20428385911588295 0.4661496150244901 0.20428385911588295 0.23357699295263398
+0.463890437449152 0.2066491126571045 0.463890437449152 0.20664911265710453 0.23995646398778736
+0.46160725469765773 0.2090013735714693 0.4616072546976577 0.2090013735714693 0.24608646361781564
+0.4593068353778283 0.2113582141991663 0.4593068353778283 0.2113582141991663 0.2519467173572186
+0.45698453838807707 0.21370315055526476 0.45698453838807707 0.21370315055526476 0.25753436519400513
+0.45463914622129203 0.21601999990870932 0.45463914622129203 0.21601999990870932 0.26284158497634125
+0.43994640288572445 0.2222144808887175 0.43994640288572445 0.2222144808887175 0.2857681522201903
+0.4436245761777229 0.2225144735895535 0.44362457617772294 0.22251447358955348 0.28183549313667283
+0.4522327985315977 0.2182770514950524 0.4522327985315977 0.21827705149505236 0.2679145495183957
+0.4496601988765819 0.22055483956024535 0.4496601988765819 0.22055483956024532 0.27292141410783893
+0.44731367506243136 0.22294445772071922 0.4473136750624313 0.22294445772071922 0.27731389295822706
+0.48890104478311813 0.19601313329792927 0.4889010447831181 0.19601313329792927 0.16469031028248893
+0.4746238887688203 0.19990804207245091 0.4746238887688203 0.19990804207245091 0.20977581500068368
+0.4859658213912812 0.198053355754788 0.48596582139128125 0.198053355754788 0.17524311037746007
+0.47820605376681524 0.2008681903541093 0.4782060537668152 0.20086819035410927 0.20030026847159324
+0.4837712184918546 0.20013912915798784 0.4837712184918546 0.20013912915798784 0.18329083669386115
+0.48154876685507336 0.2022693987671853 0.48154876685507336 0.2022693987671853 0.19120967829275146
+0.4720828469229437 0.20273002107299024 0.4720828469229437 0.20273002107299024 0.21808984496126974
+0.4697277594753304 0.20530437905675425 0.4697277594753304 0.20530437905675428 0.22547618539465566
+0.5107303082866224 0.1895193552304603 0.5107303082866225 0.1895193552304603 0.08446888721109334
+0.4962298504358975 0.1926661031025426 0.49622985043589746 0.1926661031025426 0.1381758504487818
+0.5003624238968006 0.1927289009434468 0.5003624238968006 0.19272890094344677 0.1236329183660083
+0.5047009562755096 0.19297548814467913 0.5047009562755096 0.19297548814467913 0.10799389766940971
+0.5088143417044995 0.1927587873383145 0.5088143417044995 0.1927587873383145 0.09267589965766215
+0.4949666997285324 0.19536494973044966 0.4949666997285324 0.19536494973044966 0.14389206734582813
+0.49243019344074335 0.19692006864086087 0.4924301934407433 0.19692006864086087 0.1534274713351724
+0.5169433362613909 0.18628020679325538 0.5169433362613908 0.18628020679325538 0.06118854826586582
+0.5211358339804953 0.18626003063943378 0.5211358339804953 0.18626003063943378 0.04712204682937581
+0.5252895230517979 0.18621992297739862 0.5252895230517979 0.18621992297739862 0.035644402171052254
+0.5149181736100226 0.18962679698904092 0.5149181736100226 0.18962679698904092 0.06914676666594238
+0.5481169872694847 0.16951692556459397 0.5481169872694847 0.16951692556459397 0.07307249382821678
+0.5418421649114785 0.17289588209066842 0.5418421649114785 0.17289588209066842 0.05383578266515147
+0.5460255053392437 0.17290044661018836 0.5460255053392437 0.17290044661018836 0.06797044411789001
+0.5294159291448295 0.186209199494257 0.5294159291448296 0.186209199494257 0.030105245892325796
+0.5397546386523694 0.1762634359829203 0.5397546386523694 0.1762634359829203 0.04847329987208055
+0.5376723082299695 0.1796100432843882 0.5376723082299694 0.1796100432843882 0.04308645592324382
+0.5355973691604238 0.1829297179857626 0.5355973691604238 0.1829297179857626 0.038009766247051664
+0.5335409385709522 0.1862255391057084 0.5335409385709521 0.1862255391057084 0.033776643441199926
+0.5523011188295839 0.16951808693779666 0.5523011188295839 0.16951808693779666 0.08775216539416429
+0.5564853071247552 0.16951897372637562 0.5564853071247552 0.16951897372637562 0.10269794531801225
+0.5627615000140337 0.1661287781001051 0.5627615000140337 0.1661287781001051 0.12137450753285552
+0.5606694539534406 0.1695190664112307 0.5606694539534406 0.1695190664112307 0.11773746901621458
+0.5669456042690034 0.16612878018362776 0.5669456042690034 0.16612878018362776 0.13601034601613016
+0.5732217571916569 0.16273839809951451 0.573221757191657 0.16273839809951451 0.15299182705322925
+0.5711297062986754 0.16612878103968517 0.5711297062986754 0.16612878103968517 0.1505587835024905
+0.579497907949773 0.15934801487294026 0.579497907949773 0.15934801487294026 0.16885181444471117
+0.5774058577064187 0.16273839815044025 0.5774058577064186 0.16273839815044025 0.1670590204247349
+0.6171548117154649 0.11866341533091296 0.6171548117154649 0.11866341533091296 0.2387628478970285
+0.6108786610878496 0.1220537986260819 0.6108786610878497 0.1220537986260819 0.2219743546846553
+0.6150627615062598 0.1220537986260819 0.6150627615062598 0.1220537986260819 0.23466599172638516
+0.6087866108786445 0.12544418192125084 0.6087866108786445 0.12544418192125084 0.21794442005969952
+0.6066945606694394 0.12883456521641978 0.6066945606694394 0.12883456521641978 0.2142045176486355
+0.6046025104602343 0.13222494851158872 0.6046025104602343 0.13222494851158872 0.21081609374024238
+0.598326359832619 0.13561533180675767 0.598326359832619 0.13561533180675767 0.19482927829713861
+0.5962343096234138 0.1390057151019266 0.5962343096234138 0.1390057151019266 0.19225510154100633
+0.5941422594142087 0.14239609839709555 0.5941422594142088 0.14239609839709555 0.19006521175580582
+0.5920502092050036 0.1457864816922645 0.5920502092050036 0.1457864816922645 0.18821020681372547
+0.5899581589957985 0.14917686498743343 0.5899581589957985 0.14917686498743343 0.18661877458146894
+0.5878661087865934 0.15256724828260237 0.5878661087865934 0.15256724828260237 0.18520235617393058
+0.5857740585773883 0.15595763157777132 0.5857740585773882 0.15595763157777132 0.1838606884960039
+0.5836820083681832 0.15934801487294026 0.5836820083681832 0.15934801487294026 0.18248764258292496
+0.6025104602510292 0.13561533180675767 0.6025104602510291 0.13561533180675767 0.20781880867246524
+0.6276150627614905 0.10849226544540613 0.6276150627614906 0.10849226544540613 0.26247752428823606
+0.6317991631799007 0.10849226544540613 0.6317991631799007 0.10849226544540613 0.2734132711095027
+0.6255230125522854 0.11188264874057507 0.6255230125522854 0.11188264874057507 0.2587947956997804
+0.6234309623430803 0.11527303203574402 0.6234309623430803 0.11527303203574402 0.2549363346729873
+0.6213389121338752 0.11866341533091296 0.6213389121338752 0.11866341533091296 0.2510009298554779
+0.6527196652719518 0.0813691990840546 0.6527196652719517 0.0813691990840546 0.2909162213640586
+0.6506276150627467 0.08475958237922354 0.6506276150627467 0.08475958237922354 0.29192770706794674
+0.6485355648535416 0.08814996567439248 0.6485355648535416 0.08814996567439248 0.2923831865685828
+0.6464435146443365 0.09154034896956142 0.6464435146443365 0.09154034896956142 0.29227186740697647
+0.6443514644351314 0.09493073226473037 0.6443514644351315 0.09493073226473037 0.2915973385431591
+0.6422594142259263 0.09832111555989931 0.6422594142259263 0.09832111555989931 0.290377794115752
+0.6401673640167211 0.10171149885506825 0.6401673640167211 0.10171149885506825 0.2886459304486057
+0.638075313807516 0.10510188215023719 0.638075313807516 0.10510188215023719 0.28644847282025077
+0.6359832635983109 0.10849226544540613 0.6359832635983108 0.10849226544540613 0.283845282078882
+0.6589958158995671 0.07797881578888566 0.6589958158995671 0.07797881578888566 0.29559483362364786
+0.656903765690362 0.0813691990840546 0.656903765690362 0.0813691990840546 0.29743856896410076
+0.6652719665271825 0.07458843249371672 0.6652719665271825 0.07458843249371672 0.29896023399734273
+0.6631799163179773 0.07797881578888566 0.6631799163179773 0.07797881578888566 0.30144126950249023
+0.6715481171547978 0.07119804919854777 0.6715481171547978 0.07119804919854777 0.3014706178392315
+0.6694560669455927 0.07458843249371672 0.6694560669455926 0.07458843249371672 0.30435490230804935
+0.6778242677824131 0.06780766590337883 0.6778242677824132 0.06780766590337883 0.30363194560375945
+0.675732217573208 0.07119804919854777 0.675732217573208 0.07119804919854777 0.3066720215770245
+0.6841004184100284 0.06441728260820989 0.6841004184100284 0.06441728260820989 0.30594043017567024
+0.6820083682008233 0.06780766590337883 0.6820083682008233 0.06780766590337883 0.3089064079219665
+0.6924686192468489 0.05763651601787201 0.6924686192468489 0.05763651601787201 0.3061641667074177
+0.6903765690376438 0.06102689931304095 0.6903765690376438 0.06102689931304095 0.3088183753394478
+0.6882845188284387 0.06441728260820989 0.6882845188284387 0.06441728260820989 0.3115297632527463
+0.6987447698744642 0.054246132722703067 0.6987447698744642 0.054246132722703067 0.3102803266616014
+0.6966527196652591 0.05763651601787201 0.6966527196652591 0.05763651601787201 0.31255485367722424
+0.7050209205020795 0.050855749427534125 0.7050209205020795 0.050855749427534125 0.31534581875312795
+0.7029288702928744 0.054246132722703067 0.7029288702928743 0.054246132722703067 0.31726481485623875
+0.7112970711296949 0.04746536613236518 0.711297071129695 0.04746536613236518 0.32121212924879344
+0.7092050209204898 0.050855749427534125 0.7092050209204898 0.050855749427534125 0.3228772551099008
+0.7175732217573102 0.04407498283719624 0.7175732217573102 0.04407498283719624 0.32758928508068347
+0.7154811715481051 0.04746536613236518 0.7154811715481051 0.04746536613236518 0.32915529820986594
+0.7238493723849255 0.0406845995420273 0.7238493723849255 0.0406845995420273 0.3340991020037189
+0.7217573221757204 0.04407498283719624 0.7217573221757204 0.04407498283719624 0.3357420008100122
+0.7301255230125409 0.03729421624685836 0.7301255230125409 0.03729421624685836 0.34033515136901366
+0.7280334728033357 0.0406845995420273 0.7280334728033359 0.0406845995420273 0.34221981899232684
+0.7364016736401562 0.03390383295168942 0.7364016736401561 0.03390383295168942 0.34591812290791585
+0.7343096234309511 0.03729421624685836 0.7343096234309511 0.03729421624685836 0.34817095031678047
+0.7447698744769766 0.027123066361351533 0.7447698744769767 0.027123066361351533 0.34783370114987017
+0.7426778242677715 0.030513449656520475 0.7426778242677715 0.030513449656520475 0.35053929016505875
+0.7405857740585664 0.03390383295168942 0.7405857740585664 0.03390383295168942 0.3532289421535069
+0.751046025104592 0.02373268306618259 0.751046025104592 0.02373268306618259 0.35095068603174817
+0.7489539748953868 0.027123066361351533 0.7489539748953868 0.027123066361351533 0.3539888935027651
+0.7573221757322073 0.02034229977101365 0.7573221757322073 0.02034229977101365 0.3529002144608649
+0.7552301255230022 0.02373268306618259 0.7552301255230022 0.02373268306618259 0.35616916385886
+0.7635983263598226 0.01695191647584471 0.7635983263598226 0.01695191647584471 0.35374536986220245
+0.7615062761506175 0.02034229977101365 0.7615062761506176 0.02034229977101365 0.35709334361116557
+0.7698744769874379 0.013561533180675767 0.7698744769874378 0.013561533180675767 0.3536293828035395
+0.7677824267782328 0.01695191647584471 0.7677824267782328 0.01695191647584471 0.35687292075135235
+0.7761506276150533 0.010171149885506825 0.7761506276150533 0.010171149885506825 0.35275022337892986
+0.7740585774058482 0.013561533180675767 0.7740585774058482 0.013561533180675767 0.3556959116464044
+0.7824267782426686 0.006780766590337883 0.7824267782426686 0.006780766590337883 0.35133269394633576
+0.7803347280334635 0.010171149885506825 0.7803347280334635 0.010171149885506825 0.3537997076566816
+0.7866108786610788 0.006780766590337883 0.7866108786610787 0.006780766590337883 0.3514427421081432
+0.006780766590337709 0.7907949790794957 0.006780766590337709 0.7907949790794957 0.10745556281546388
+0.006780766590337709 0.7949790794979057 0.006780766590337709 0.7949790794979057 0.10399969875560026
+0.01017114988550656 0.7845188284518807 0.01017114988550656 0.7845188284518807 0.11318363103020046
+0.01017114988550656 0.7887029288702907 0.01017114988550656 0.7887029288702907 0.10971750370466728
+0.013561533180675408 0.7782426778242657 0.013561533180675408 0.7782426778242657 0.1190290203417682
+0.013561533180675408 0.7824267782426757 0.013561533180675408 0.7824267782426757 0.11563299128251266
+0.016951916475844264 0.7719665271966507 0.016951916475844264 0.7719665271966507 0.12484759683027584
+0.016951916475844264 0.7761506276150607 0.016951916475844264 0.7761506276150607 0.1215959433546324
+0.02034229977101312 0.7656903765690357 0.02034229977101312 0.7656903765690357 0.1304878732380961
+0.02034229977101312 0.7698744769874457 0.02034229977101312 0.7698744769874457 0.1274475428620381
+0.02373268306618197 0.7594142259414207 0.02373268306618197 0.7594142259414207 0.13579737276568624
+0.02373268306618197 0.7635983263598307 0.02373268306618197 0.7635983263598307 0.13302568181398303
+0.027123066361350822 0.7531380753138057 0.027123066361350822 0.7531380753138057 0.14063216282415192
+0.027123066361350822 0.7573221757322157 0.027123066361350822 0.7573221757322157 0.13817361607744538
+0.030513449656519673 0.7510460251046007 0.030513449656519673 0.7510460251046007 0.1427509366234336
+0.033903832951688535 0.7447698744769857 0.033903832951688535 0.7447698744769857 0.1466457525422784
+0.033903832951688535 0.7489539748953957 0.033903832951688535 0.7489539748953957 0.14466629526872798
+0.03729421624685738 0.7384937238493707 0.03729421624685738 0.7384937238493707 0.14978702599826121
+0.03729421624685738 0.7426778242677807 0.03729421624685738 0.7426778242677807 0.14815942631324328
+0.040684599542026224 0.7322175732217557 0.040684599542026224 0.7322175732217557 0.15215603037595793
+0.040684599542026224 0.7364016736401657 0.040684599542026224 0.7364016736401657 0.15085055524371202
+0.0440749828371951 0.7259414225941407 0.0440749828371951 0.7259414225941407 0.15379582413901105
+0.0440749828371951 0.7301255230125507 0.0440749828371951 0.7301255230125507 0.1527532927129106
+0.04746536613236394 0.7196652719665257 0.04746536613236394 0.7196652719665257 0.15481738776107057
+0.04746536613236394 0.7238493723849357 0.04746536613236394 0.7238493723849357 0.15394836983407847
+0.05085574942753279 0.7133891213389107 0.05085574942753279 0.7133891213389107 0.15540066482160883
+0.05085574942753279 0.7175732217573207 0.05085574942753279 0.7175732217573207 0.154587386369708
+0.05424613272270165 0.7071129707112958 0.054246132722701644 0.7071129707112958 0.15578831330576712
+0.05424613272270165 0.7112970711297057 0.054246132722701644 0.7112970711297057 0.1548903930067493
+0.05763651601787049 0.7008368200836808 0.05763651601787049 0.7008368200836808 0.15626986901114612
+0.05763651601787049 0.7050209205020908 0.05763651601787049 0.7050209205020908 0.15513488447775858
+0.06102689931303934 0.6945606694560658 0.06102689931303934 0.6945606694560658 0.15715487897171346
+0.06102689931303934 0.6987447698744758 0.06102689931303934 0.6987447698744758 0.15563401649727251
+0.06441728260820821 0.6924686192468608 0.06441728260820821 0.6924686192468608 0.15670348081744903
+0.06780766590337706 0.6861924686192458 0.06780766590337706 0.6861924686192458 0.15861997592847685
+0.06780766590337706 0.6903765690376558 0.06780766590337706 0.6903765690376558 0.1562836773755946
+0.0711980491985459 0.6799163179916308 0.0711980491985459 0.6799163179916308 0.161578856601809
+0.0711980491985459 0.6841004184100408 0.0711980491985459 0.6841004184100408 0.1586152314859434
+0.07458843249371476 0.6736401673640158 0.07458843249371476 0.6736401673640158 0.1656617775288309
+0.07458843249371476 0.6778242677824258 0.07458843249371476 0.6778242677824258 0.16207620201457607
+0.07797881578888362 0.6673640167364008 0.07797881578888362 0.6673640167364008 0.17082391440072328
+0.07797881578888362 0.6715481171548108 0.07797881578888362 0.6715481171548108 0.1666845918525767
+0.08136919908405248 0.6610878661087858 0.08136919908405248 0.6610878661087858 0.1769041335077848
+0.08136919908405248 0.6652719665271958 0.08136919908405248 0.6652719665271958 0.172330906885388
+0.08475958237922132 0.6548117154811708 0.08475958237922132 0.6548117154811708 0.1836537030046631
+0.08475958237922132 0.6589958158995808 0.08475958237922132 0.6589958158995808 0.17879990158277434
+0.08814996567439015 0.6527196652719658 0.08814996567439015 0.6527196652719658 0.18580683028295286
+0.09154034896955902 0.6506276150627608 0.09154034896955902 0.6506276150627608 0.18801074334731327
+0.09493073226472787 0.6485355648535558 0.09493073226472787 0.6485355648535558 0.19023599699567875
+0.09832111555989675 0.6464435146443508 0.09832111555989675 0.6464435146443508 0.19245209754252182
+0.10171149885506564 0.6443514644351458 0.10171149885506563 0.6443514644351458 0.19462901228393095
+0.10510188215023453 0.6422594142259408 0.10510188215023453 0.6422594142259408 0.19673859129483987
+0.10849226544540343 0.6359832635983258 0.10849226544540343 0.6359832635983258 0.20353662666430863
+0.11188264874057234 0.6338912133891208 0.11188264874057234 0.6338912133891208 0.20531167455252008
+0.12205379862607901 0.6192468619246858 0.12205379862607901 0.6192468619246858 0.21743036787828265
+0.1288345652164168 0.6108786610878658 0.1288345652164168 0.6108786610878658 0.22247887573074152
+0.13222494851158573 0.6087866108786608 0.13222494851158573 0.6087866108786608 0.22322202466975685
+0.1390057151019235 0.6004184100418408 0.1390057151019235 0.6004184100418408 0.22774845804741353
+0.1423960983970924 0.5983263598326358 0.1423960983970924 0.5983263598326358 0.228652430454345
+0.1457864816922613 0.5962343096234308 0.1457864816922613 0.5962343096234308 0.2296815606775047
+0.1491768649874302 0.5899581589958158 0.1491768649874302 0.5899581589958158 0.23405438827083916
+0.1525672482825991 0.5878661087866108 0.15256724828259907 0.5878661087866108 0.23555077928012116
+0.15595763157776799 0.5857740585774058 0.15595763157776799 0.5857740585774058 0.2372352631356259
+0.1491768649874302 0.5941422594142258 0.1491768649874302 0.5941422594142258 0.23085758892058303
+0.1356153318067546 0.6066945606694558 0.13561533180675459 0.6066945606694558 0.22396732470088934
+0.1390057151019235 0.6046025104602508 0.1390057151019235 0.6046025104602508 0.2247476173576
+0.12544418192124793 0.6171548117154808 0.12544418192124793 0.6171548117154808 0.21837763636820942
+0.1288345652164168 0.6150627615062758 0.1288345652164168 0.6150627615062758 0.2192393276283031
+0.11527303203574124 0.6276150627615058 0.11527303203574124 0.6276150627615058 0.21119910297558733
+0.11527303203574124 0.6317991631799158 0.11527303203574124 0.6317991631799158 0.20694460061258454
+0.11866341533091013 0.6255230125523008 0.11866341533091011 0.6255230125523008 0.2125352081102493
+0.12205379862607901 0.6234309623430958 0.12205379862607901 0.6234309623430958 0.21373240781443406
+0.10849226544540343 0.6401673640167358 0.10849226544540343 0.6401673640167358 0.19875583848633874
+0.1695177414873222 0.5648520268065341 0.1695177414873222 0.5648520268065341 0.25837432386420117
+0.16951765601548338 0.5690364022530635 0.16951765601548338 0.5690364022530635 0.2542014524813214
+0.17290134908637778 0.5627543650087233 0.17290134908637778 0.5627543650087233 0.261333827492243
+0.1762735844427276 0.5606512824489304 0.1762735844427276 0.5606512824489304 0.26434502099392804
+0.17961223071518728 0.5501738764578094 0.17961223071518728 0.5501738764578094 0.27606011375249556
+0.1796230155826766 0.5543557006728946 0.1796230155826766 0.5543557006728946 0.2718048398815531
+0.1796280836766919 0.558542469627837 0.1796280836766919 0.558542469627837 0.26738042691774805
+0.1593480148729369 0.5794979079497908 0.1593480148729369 0.5794979079497908 0.24279825211072104
+0.16273839816810573 0.5774058577405857 0.16273839816810573 0.5774058577405857 0.24503920086632683
+0.1661284638771011 0.5753137244141574 0.1661284638771011 0.5753137244141574 0.24743848792754294
+0.16951734283451037 0.5732209213635855 0.16951734283451037 0.5732209213635855 0.24997319254594852
+0.1593480148729369 0.5836820083682008 0.1593480148729369 0.5836820083682008 0.2391050719431305
+0.34414598694452336 0.3204690494488012 0.34414598694452336 0.3204690494488012 0.21756438911722112
+0.340453928358985 0.32198420495533436 0.34045392835898497 0.32198420495533436 0.20863111646589258
+0.3372105648560487 0.3236006127864419 0.3372105648560488 0.3236006127864419 0.20071088780597987
+0.3339140011629482 0.32512637788147086 0.3339140011629482 0.32512637788147086 0.19289417793124675
+0.330587385907724 0.3265860089579104 0.330587385907724 0.3265860089579104 0.1852612354995515
+0.32729174847692816 0.32795478716839954 0.32729174847692816 0.3279547871683995 0.17800013291275743
+0.3242993507638118 0.3286286665475773 0.3242993507638118 0.3286286665475773 0.17210479789466612
+0.3223395223934422 0.3307768068262461 0.3223395223934422 0.33077680682624605 0.16703062094409724
+0.3194923125103789 0.332432040316164 0.31949231251037885 0.332432040316164 0.16101980462695462
+0.31648432595063875 0.3341640695539852 0.31648432595063875 0.3341640695539852 0.15501628321610253
+0.31348225614077346 0.3358847415543353 0.31348225614077346 0.3358847415543353 0.14941550986376329
+0.31052431632012073 0.3375977107916417 0.31052431632012073 0.3375977107916417 0.14429991717154875
+0.30765749938093473 0.3393459958392426 0.30765749938093473 0.3393459958392426 0.13971353030060715
+0.3049104241682689 0.34116675672831304 0.3049104241682689 0.34116675672831304 0.13567153700106085
+0.3021710519478353 0.34305280768926255 0.3021710519478353 0.34305280768926255 0.13211375935448919
+0.2994157758125356 0.3449778513015964 0.2994157758125356 0.3449778513015964 0.12905218405495097
+0.2966039815374035 0.346929510546733 0.2966039815374035 0.346929510546733 0.12653335332061302
+0.29380260970931654 0.3489113400406482 0.29380260970931654 0.3489113400406482 0.12463673557268194
+0.2910320727834504 0.3509391523351948 0.2910320727834504 0.3509391523351948 0.12338385616501797
+0.28830621057097955 0.3530148054100554 0.28830621057097955 0.3530148054100554 0.12278386641595172
+0.2856097722570825 0.3551370527376989 0.2856097722570825 0.3551370527376989 0.12283169189379449
+0.28291280268891145 0.3573102844970322 0.28291280268891145 0.3573102844970322 0.12351953262092641
+0.28023048912143844 0.3595347386620743 0.28023048912143844 0.35953473866207425 0.12482934125969047
+0.27757086935860553 0.36180906473992297 0.2775708693586055 0.36180906473992297 0.12673224712767475
+0.2749202979496614 0.3640824221603784 0.2749202979496614 0.3640824221603784 0.12917593057766633
+0.27229116748187615 0.3664144420601856 0.27229116748187615 0.3664144420601856 0.1321372287036124
+0.26970337764497987 0.3687853978036329 0.2697033776449799 0.3687853978036329 0.13554759235207067
+0.2671430262608018 0.3711994103563177 0.26714302626080183 0.3711994103563177 0.1393690561709688
+0.26459453161561686 0.3736633891454462 0.26459453161561686 0.3736633891454462 0.14357224881750927
+0.2620876597654848 0.3761784701823287 0.2620876597654848 0.3761784701823287 0.148096192735517
+0.25959997485502323 0.3787380826323967 0.25959997485502323 0.3787380826323967 0.15291419076705604
+0.2571239276064375 0.3813283221604206 0.2571239276064375 0.3813283221604206 0.15797723387132898
+0.25465339096278905 0.3839403220671 0.25465339096278905 0.3839403220671 0.1632383998639602
+0.2521965555001029 0.3865784929131826 0.2521965555001029 0.3865784929131826 0.16866022819789514
+0.24976401588086763 0.38926847039333096 0.24976401588086763 0.38926847039333096 0.17423622747241785
+0.24742622425588898 0.3920535594275563 0.24742622425588898 0.3920535594275563 0.17994715261060237
+0.24517776173755887 0.39493187403822544 0.24517776173755887 0.39493187403822544 0.18581001269481257
+0.24292412647993195 0.3978077790691066 0.24292412647993197 0.3978077790691066 0.19171176478212607
+0.2406134859128464 0.4006368163032854 0.2406134859128464 0.4006368163032854 0.1975700538929068
+0.2382533987228006 0.4034344227172027 0.2382533987228006 0.4034344227172027 0.20337142852400694
+0.23580343722044722 0.4062166535604752 0.2358034372204472 0.4062166535604752 0.20912896237051085
+0.23315519258429873 0.4092872843073979 0.23315519258429873 0.40928728430739797 0.21539846194918294
+0.23200845140293141 0.4129414038169199 0.23200845140293144 0.4129414038169199 0.22186860987838333
+0.23000992979867574 0.41601503267381756 0.23000992979867574 0.4160150326738176 0.22773249035785134
+0.22788916824739394 0.4189076357395212 0.22788916824739394 0.4189076357395212 0.23318954804578554
+0.2257051535574566 0.42179403021297784 0.2257051535574566 0.42179403021297784 0.2385233411985128
+0.22343316295392002 0.42463878808301936 0.22343316295392004 0.4246387880830193 0.24365598636760286
+0.22117851844165534 0.42740602086661905 0.22117851844165534 0.42740602086661905 0.2484916948969591
+0.21903467165849455 0.43008194626304275 0.21903467165849455 0.4300819462630427 0.25301478453459314
+0.22075675614061613 0.4330591347107787 0.2207567561406161 0.43305913471077867 0.2573811739929577
+0.2185998382544606 0.43574029865274283 0.21859983825446064 0.43574029865274283 0.2617617000016734
+0.21655511928968108 0.4383939103733708 0.21655511928968108 0.4383939103733708 0.2658340297645949
+0.21464599079927793 0.4416079916636289 0.21464599079927793 0.4416079916636289 0.27051794433912796
+0.21268576208839693 0.44474877724174244 0.21268576208839693 0.4447487772417425 0.27485896877879895
+0.20674325200822974 0.4539705429465693 0.20674325200822974 0.4539705429465693 0.28610381694532944
+0.21071563490980613 0.4478771154618803 0.21071563490980613 0.4478771154618803 0.27893467712118275
+0.2087413864150324 0.45102530882742914 0.2087413864150324 0.45102530882742914 0.28278117686664844
+0.20781585283906612 0.45668396892641167 0.20781585283906612 0.45668396892641167 0.28935571240814695
+0.20675713334368362 0.4596221942056738 0.20675713334368365 0.4596221942056738 0.29252724842381067
+0.20517030437493874 0.4627681021179381 0.20517030437493874 0.4627681021179381 0.29547176491254357
+0.19900156409524555 0.47652511579524626 0.19900156409524558 0.4765251157952463 0.30523323049480716
+0.2036020141387135 0.46608963862441993 0.2036020141387135 0.46608963862441993 0.2983060976469427
+0.2002762283799543 0.4729134733593357 0.20027622837995426 0.4729134733593357 0.3031376165960196
+0.2019714243731642 0.46947693556226794 0.2019714243731642 0.46947693556226794 0.30087006509695474
+0.19867701151671321 0.4804527225767661 0.1986770115167132 0.4804527225767661 0.3075246684181439
+0.18941657470518097 0.5018775662776651 0.189416574705181 0.5018775662776651 0.30906639756727966
+0.19648542589990664 0.48452640966847865 0.19648542589990667 0.4845264096684786 0.30882667556489213
+0.19600313743796927 0.4885341276153132 0.19600313743796927 0.4885341276153132 0.30998344935550365
+0.19338349311388148 0.49141025056272436 0.19338349311388145 0.4914102505627244 0.3099424216759265
+0.19282613781935198 0.4960298162727071 0.19282613781935198 0.4960298162727071 0.31039702951461506
+0.1924699461278105 0.5002676870106255 0.19246994612781052 0.5002676870106254 0.3104152665083142
+0.1862040720958109 0.5166176336338876 0.1862040720958109 0.5166176336338876 0.30405737925919896
+0.18624378018684987 0.5208356010890421 0.18624378018684987 0.5208356010890421 0.30206463329739136
+0.1894461511945891 0.5060051296802587 0.1894461511945891 0.5060051296802587 0.30867182575845403
+0.189465142588196 0.5101960167009304 0.189465142588196 0.5101960167009304 0.30779699929528487
+0.1894273641812727 0.514462441633962 0.1894273641812727 0.5144624416339622 0.30637038621793505
+0.18622223442998767 0.5250465606442769 0.18622223442998767 0.5250465606442769 0.2996274433603585
+0.18618188095886834 0.5292728504952199 0.18618188095886834 0.5292728504952199 0.29677048354607377
+0.18286610582341825 0.5355693062786108 0.18286610582341825 0.5355693062786108 0.2906029619285577
+0.1861540812300657 0.533486271977947 0.1861540812300657 0.5334862719779468 0.29356530082846866
+0.1828746414693744 0.5397471068088515 0.1828746414693744 0.5397471068088516 0.2870517679644729
+0.18290123233042443 0.5439170385461991 0.18290123233042443 0.5439170385461991 0.2832356731351422
+0.18292968791149988 0.5480815033813106 0.18292968791149988 0.5480815033813106 0.27917612423318644
+0.3484334129674164 0.3155470917785476 0.3484334129674164 0.3155470917785476 0.2298239760648466
+0.347904394513232 0.3191028545032946 0.347904394513232 0.3191028545032946 0.22661026975477574
+0.35887807625340123 0.29852018628160704 0.35887807625340123 0.298520186281607 0.25869613456728696
+0.35265021506427624 0.30711992746427624 0.35265021506427624 0.30711992746427624 0.24305782635579207
+0.3579570652488796 0.3019427615554403 0.35795706524887955 0.30194276155544036 0.25600104358069387
+0.35606448648189865 0.30531848569919284 0.35606448648189865 0.3053184856991929 0.25103979604279236
+0.3523739057643977 0.3107561994384078 0.3523739057643977 0.3107561994384078 0.24086066060616648
+0.35196440589247585 0.31432353730392487 0.35196440589247585 0.31432353730392487 0.23821554156618305
+0.3710498167760104 0.2822499608473328 0.3710498167760104 0.2822499608473328 0.2814642576612425
+0.3633949314163281 0.2908160744013203 0.3633949314163281 0.29081607440132023 0.2684191928639017
+0.3702850235262856 0.2856156537898413 0.3702850235262856 0.2856156537898413 0.2808507905931931
+0.36664464822837517 0.28993890166356817 0.36664464822837517 0.2899389016635681 0.27463314697124463
+0.3695314432114727 0.28890227772558486 0.3695314432114727 0.2889022777255849 0.279982378819942
+0.36282787218091067 0.2942163565474023 0.36282787218091067 0.2942163565474023 0.2672099176780223
+0.36220653460147273 0.2976444251906652 0.36220653460147273 0.2976444251906652 0.2656254927035348
+0.3848204343761557 0.26652917552857586 0.3848204343761557 0.26652917552857586 0.29620871887980055
+0.37609869549715047 0.27468795590694967 0.3760986954971504 0.27468795590694967 0.2874107210632189
+0.38377683659519074 0.2699706280316611 0.38377683659519074 0.2699706280316611 0.2967107236286819
+0.37946510800657346 0.2740293817560147 0.37946510800657346 0.2740293817560147 0.29241871282122783
+0.3828104867907984 0.27340331212364827 0.3828104867907984 0.27340331212364827 0.2971818071345184
+0.3752399976370448 0.278151036810205 0.3752399976370448 0.278151036810205 0.28737821926395735
+0.37437510584630557 0.28155492477909017 0.37437510584630557 0.2815549247790901 0.28709096827113795
+0.40042571684625744 0.251496668837252 0.40042571684625744 0.251496668837252 0.30358397225288897
+0.3906519794246814 0.25912404457278304 0.3906519794246814 0.2591240445727831 0.29901033534389887
+0.39900657609453355 0.25491028685996137 0.39900657609453355 0.25491028685996137 0.30461169896014256
+0.39415664488430213 0.25870069495804765 0.39415664488430213 0.25870069495804765 0.3025179984879867
+0.397669092883501 0.25833035589848546 0.397669092883501 0.25833035589848546 0.30573027205607556
+0.3894330267943382 0.26258881062905476 0.3894330267943382 0.26258881062905476 0.29972386292023506
+0.3882682432256533 0.26602581935762165 0.3882682432256533 0.26602581935762165 0.3004252730548245
+0.4263342615418399 0.2310131846372149 0.4263342615418399 0.2310131846372149 0.2986566334980991
+0.4242315652613539 0.2341617910472625 0.4242315652613539 0.2341617910472625 0.3007001747486768
+0.42210373814649826 0.2373286524543763 0.4221037381464983 0.2373286524543763 0.3026736284139317
+0.41993707959952564 0.24053409120572708 0.41993707959952564 0.24053409120572708 0.3046092311632595
+0.41758389641327487 0.24391238997529482 0.4175838964132748 0.24391238997529482 0.3065967036655642
+0.4056110394305226 0.2478403939364824 0.4056110394305226 0.2478403939364824 0.3048397039753122
+0.40929638344541824 0.24758049701198528 0.40929638344541824 0.24758049701198528 0.30656736676377677
+0.4128502796102264 0.24773617770118989 0.4128502796102264 0.2477361777011899 0.3080187903100511
+0.4164459717985421 0.24751130039053754 0.4164459717985421 0.24751130039053756 0.3087855805553334
+0.4040280291484073 0.25123398085578014 0.40402802914840735 0.25123398085578014 0.306002431280924
+0.43422051891305635 0.2250157548298515 0.43422051891305635 0.2250157548298515 0.29190864437251945
+0.43216283080513046 0.22812637132654437 0.43216283080513046 0.22812637132654437 0.29457956725954887
+0.4379465979184085 0.22530447123993033 0.43794659791840845 0.22530447123993033 0.2889629563312481
+0.4300875286105295 0.2312492567945954 0.4300875286105295 0.2312492567945954 0.29713988921204404
+0.4673967869275268 0.2077687696559006 0.4673967869275268 0.2077687696559006 0.23245127605361146
+0.4650703641024565 0.21017672619979375 0.4650703641024565 0.21017672619979375 0.23908596259961667
+0.4627434478877112 0.21255769574403258 0.4627434478877112 0.21255769574403258 0.24540541192615387
+0.4604098218948132 0.21492570851485207 0.4604098218948132 0.21492570851485207 0.2514286011958951
+0.45806432654873536 0.21727215348229414 0.45806432654873536 0.21727215348229414 0.25716317414227907
+0.4556911156470988 0.21958765301442398 0.4556911156470988 0.21958765301442398 0.26263265810485475
+0.4416687629946288 0.22564815835551322 0.4416687629946288 0.22564815835551322 0.28542992046366716
+0.445266102885804 0.22602623018221307 0.445266102885804 0.2260262301822131 0.2814403297402137
+0.45334319140611806 0.22205135702155926 0.45334319140611806 0.22205135702155923 0.26784393975917914
+0.4508421787490398 0.22448852851474366 0.4508421787490398 0.22448852851474363 0.27301610321640934
+0.44827134431367366 0.22615074392373363 0.44827134431367366 0.22615074392373363 0.2774831339170528
+0.4895109473317075 0.1992162947519952 0.48951094733170747 0.1992162947519952 0.1644202910850928
+0.47576017598174114 0.20373457463261646 0.4757601759817412 0.20373457463261646 0.20877294636742674
+0.4870711570653924 0.20130698173756223 0.48707115706539245 0.2013069817375622 0.17350799743764522
+0.47929030673294365 0.20466154408741422 0.47929030673294365 0.20466154408741422 0.19924676592127244
+0.48486053972793425 0.20351395406928868 0.48486053972793425 0.2035139540692887 0.18173539904879962
+0.4824041982688315 0.20515965142098286 0.4824041982688315 0.20515965142098286 0.1901753134331413
+0.47340214296898103 0.20633462823241544 0.47340214296898103 0.20633462823241544 0.21656017570990183
+0.4709575041029228 0.2088415512759524 0.4709575041029228 0.20884155127595241 0.22423716440586786
+0.5127492943091213 0.19269348076359244 0.5127492943091213 0.19269348076359247 0.07798111376969998
+0.49827619673107587 0.1958379925368641 0.49827619673107587 0.1958379925368641 0.13254910094829467
+0.5107274703447163 0.1953099284622373 0.5107274703447163 0.1953099284622373 0.08640676194770913
+0.5027297562355929 0.19673236324939197 0.5027297562355929 0.196732363249392 0.11689538328420725
+0.5073791492190378 0.19651298623878882 0.5073791492190378 0.19651298623878885 0.09948935482668286
+0.5057514721194277 0.1993421386227775 0.5057514721194277 0.1993421386227775 0.10673338926402746
+0.4958510055829935 0.19824854093721192 0.4958510055829935 0.19824854093721192 0.14230219606073957
+0.49316583993745383 0.2004069329139098 0.49316583993745383 0.2004069329139098 0.15273598889418893
+0.5191761103433004 0.18965600449937348 0.5191761103433005 0.18965600449937348 0.054071623619166044
+0.5233553995004089 0.1895273852754075 0.5233553995004089 0.1895273852754075 0.04082178985059189
+0.5274348016377404 0.18946490266055727 0.5274348016377405 0.18946490266055727 0.031910890124674046
+0.517172447429822 0.19335060687139072 0.517172447429822 0.19335060687139075 0.06195275375440984
+0.5502091097400692 0.17290448221191276 0.5502091097400692 0.17290448221191276 0.08288257057200489
+0.5439356862448262 0.17627333364903375 0.5439356862448262 0.17627333364903375 0.062452527442407015
+0.5481176054151301 0.17628331657595156 0.5481176054151301 0.17628331657595156 0.0775152070820583
+0.5315072835170761 0.18949356551034738 0.5315072835170761 0.18949356551034738 0.03107195942105957
+0.5294796668557403 0.19266244950352832 0.5294796668557403 0.19266244950352832 0.0305762633199422
+0.5418474556419849 0.17962685577211882 0.5418474556419849 0.17962685577211882 0.05660687520645242
+0.5397575667913542 0.18295126828714306 0.5397575667913542 0.18295126828714306 0.0505717375140932
+0.5356143501863782 0.189543513382735 0.5356143501863783 0.189543513382735 0.03917186071911167
+0.5376653485558983 0.1862458067266115 0.5376653485558983 0.1862458067266115 0.044588713246635985
+0.5543929249338252 0.17290705696830336 0.5543929249338252 0.17290705696830336 0.09815782730666167
+0.5585770320249127 0.17290793464528412 0.5585770320249127 0.17290793464528412 0.11357782003882087
+0.5648536266408383 0.16951894666464626 0.5648536266408383 0.16951894666464626 0.13276494674413367
+0.5627615847382134 0.17290780883769194 0.5627615847382134 0.17290780883769194 0.1290129751876908
+0.5690378043155241 0.1695188083839303 0.5690378043155241 0.1695188083839303 0.1477081733457005
+0.5753138072828399 0.16612878133551728 0.57531380728284 0.16612878133551726 0.1649754523885216
+0.5732219117998847 0.16951877999432519 0.5732219117998847 0.16951877999432519 0.1625145969408974
+0.5815899581504378 0.16273839816374971 0.5815899581504378 0.16273839816374971 0.18097684278697393
+0.5794979078790388 0.1661287814272873 0.5794979078790387 0.1661287814272873 0.17922669011323947
+0.61924686192467 0.1220537986260819 0.6192468619246699 0.1220537986260819 0.24708821872297304
+0.6129707112970547 0.12544418192125084 0.6129707112970547 0.12544418192125084 0.23073494240186912
+0.6171548117154649 0.12544418192125084 0.6171548117154649 0.12544418192125084 0.2432944393448027
+0.6108786610878496 0.12883456521641978 0.6108786610878497 0.12883456521641978 0.22705418952240017
+0.6087866108786445 0.13222494851158872 0.6087866108786445 0.13222494851158872 0.22369298367600896
+0.6066945606694394 0.13561533180675767 0.6066945606694394 0.13561533180675767 0.22070103528594978
+0.6004184100418241 0.1390057151019266 0.6004184100418241 0.1390057151019266 0.20522763873550406
+0.598326359832619 0.14239609839709555 0.598326359832619 0.14239609839709555 0.20303155431030342
+0.5962343096234138 0.1457864816922645 0.5962343096234138 0.1457864816922645 0.20119401025055209
+0.5941422594142087 0.14917686498743343 0.5941422594142088 0.14917686498743343 0.1996552443759312
+0.5920502092050036 0.15256724828260237 0.5920502092050036 0.15256724828260237 0.19833613225898972
+0.5899581589957985 0.15595763157777132 0.5899581589957985 0.15595763157777132 0.19714315461898965
+0.5878661087865934 0.15934801487294026 0.5878661087865934 0.15934801487294026 0.19597394054498937
+0.5857740585753303 0.16273839816707084 0.5857740585753303 0.16273839816707084 0.19472286354905496
+0.6046025104602343 0.1390057151019266 0.6046025104602343 0.1390057151019266 0.21810513344873037
+0.6297071129706956 0.11188264874057507 0.6297071129706956 0.11188264874057507 0.2700880997732404
+0.6338912133891058 0.11188264874057507 0.6338912133891058 0.11188264874057507 0.2809079876059633
+0.6276150627614905 0.11527303203574402 0.6276150627614906 0.11527303203574402 0.26654652707117726
+0.6255230125522854 0.11866341533091296 0.6255230125522854 0.11866341533091296 0.2628830470964059
+0.6234309623430803 0.1220537986260819 0.6234309623430803 0.1220537986260819 0.25919484587250813
+0.6548117154811569 0.08475958237922354 0.6548117154811569 0.08475958237922354 0.29879541618332756
+0.6527196652719518 0.08814996567439248 0.6527196652719517 0.08814996567439248 0.29963448922558295
+0.6506276150627467 0.09154034896956142 0.6506276150627467 0.09154034896956142 0.29993765587159266
+0.6485355648535416 0.09493073226473037 0.6485355648535416 0.09493073226473037 0.2997002788284084
+0.6464435146443365 0.09832111555989931 0.6464435146443365 0.09832111555989931 0.2989316800688673
+0.6443514644351314 0.10171149885506825 0.6443514644351315 0.10171149885506825 0.29765529214393066
+0.6422594142259263 0.10510188215023719 0.6422594142259263 0.10510188215023719 0.29590845454845854
+0.6401673640167211 0.10849226544540613 0.6401673640167211 0.10849226544540613 0.29374180792096766
+0.638075313807516 0.11188264874057507 0.638075313807516 0.11188264874057507 0.2912182354448411
+0.6610878661087722 0.0813691990840546 0.6610878661087723 0.0813691990840546 0.3035329882780162
+0.6589958158995671 0.08475958237922354 0.6589958158995671 0.08475958237922354 0.30518902963608013
+0.6673640167363876 0.07797881578888566 0.6673640167363876 0.07797881578888566 0.3069647082789528
+0.6652719665271825 0.0813691990840546 0.6652719665271825 0.0813691990840546 0.30924458771364777
+0.6736401673640029 0.07458843249371672 0.6736401673640029 0.07458843249371672 0.30955530945935944
+0.6715481171547978 0.07797881578888566 0.6715481171547978 0.07797881578888566 0.31222495466694533
+0.6799163179916182 0.07119804919854777 0.6799163179916182 0.07119804919854777 0.31182001357808886
+0.6778242677824131 0.07458843249371672 0.6778242677824132 0.07458843249371672 0.31463095402302166
+0.6861924686192336 0.06780766590337883 0.6861924686192334 0.06780766590337883 0.3142647777539768
+0.6841004184100284 0.07119804919854777 0.6841004184100284 0.07119804919854777 0.3169863950742196
+0.694560669456054 0.06102689931304095 0.6945606694560541 0.06102689931304095 0.3149067881148262
+0.6924686192468489 0.06441728260820989 0.6924686192468489 0.06441728260820989 0.3173192303793026
+0.6903765690376438 0.06780766590337883 0.6903765690376438 0.06780766590337883 0.3197721194848217
+0.7008368200836693 0.05763651601787201 0.7008368200836693 0.05763651601787201 0.319242020422609
+0.6987447698744642 0.06102689931304095 0.6987447698744642 0.06102689931304095 0.32127431705450155
+0.7071129707112846 0.054246132722703067 0.7071129707112846 0.054246132722703067 0.3245516088363028
+0.7050209205020795 0.05763651601787201 0.7050209205020795 0.05763651601787201 0.3262389741835226
+0.7133891213389 0.050855749427534125 0.7133891213389 0.050855749427534125 0.33066744552377175
+0.7112970711296949 0.054246132722703067 0.711297071129695 0.054246132722703067 0.33212710355061614
+0.7196652719665153 0.04746536613236518 0.7196652719665152 0.04746536613236518 0.3372718697218117
+0.7175732217573102 0.050855749427534125 0.7175732217573102 0.050855749427534125 0.3386779693537403
+0.7259414225941306 0.04407498283719624 0.7259414225941306 0.04407498283719624 0.34395304192099213
+0.7238493723849255 0.04746536613236518 0.7238493723849255 0.04746536613236518 0.3455036471614506
+0.732217573221746 0.0406845995420273 0.732217573221746 0.0406845995420273 0.3502676895663714
+0.7301255230125409 0.04407498283719624 0.7301255230125409 0.04407498283719624 0.35215099593926563
+0.7384937238493613 0.03729421624685836 0.7384937238493613 0.03729421624685836 0.3557995014765781
+0.7364016736401562 0.0406845995420273 0.7364016736401561 0.0406845995420273 0.35816489028275506
+0.7468619246861817 0.030513449656520475 0.7468619246861817 0.030513449656520475 0.35711636171309186
+0.7447698744769766 0.03390383295168942 0.7447698744769767 0.03390383295168942 0.36020566122135644
+0.7426778242677715 0.03729421624685836 0.7426778242677715 0.03729421624685836 0.36314279356373175
+0.7531380753137971 0.027123066361351533 0.753138075313797 0.027123066361351533 0.3596669545226663
+0.751046025104592 0.030513449656520475 0.751046025104592 0.030513449656520475 0.36324826823645373
+0.7594142259414124 0.02373268306618259 0.7594142259414124 0.02373268306618259 0.3608329427975794
+0.7573221757322073 0.027123066361351533 0.7573221757322073 0.027123066361351533 0.3648103554202111
+0.7656903765690277 0.02034229977101365 0.7656903765690277 0.02034229977101365 0.36067923609716246
+0.7635983263598226 0.02373268306618259 0.7635983263598226 0.02373268306618259 0.36489779263121114
+0.771966527196643 0.01695191647584471 0.771966527196643 0.01695191647584471 0.35936692695971534
+0.7698744769874379 0.02034229977101365 0.7698744769874378 0.02034229977101365 0.36362909051359305
+0.7782426778242584 0.013561533180675767 0.7782426778242585 0.013561533180675767 0.35712898543890287
+0.7761506276150533 0.01695191647584471 0.7761506276150533 0.01695191647584471 0.3612155584687032
+0.7845188284518737 0.010171149885506825 0.7845188284518737 0.010171149885506825 0.3542417435647296
+0.7824267782426686 0.013561533180675767 0.7824267782426686 0.013561533180675767 0.3579347878606552
+0.790794979079489 0.006780766590337883 0.790794979079489 0.006780766590337883 0.3509964800566951
+0.7887029288702839 0.010171149885506825 0.7887029288702839 0.010171149885506825 0.35410112015499084
+0.7949790794978993 0.006780766590337883 0.7949790794978994 0.006780766590337883 0.35003744409056864
+0.006780766590337709 0.7991631799163157 0.006780766590337709 0.7991631799163157 0.10058631567456465
+0.006780766590337709 0.8033472803347257 0.006780766590337709 0.8033472803347257 0.09726013671508348
+0.01017114988550656 0.7928870292887007 0.01017114988550656 0.7928870292887007 0.10623176095107954
+0.01017114988550656 0.7970711297071107 0.01017114988550656 0.7970711297071107 0.1027663306420439
+0.013561533180675408 0.7866108786610857 0.013561533180675408 0.7866108786610857 0.11216212223051066
+0.013561533180675408 0.7907949790794957 0.013561533180675408 0.7907949790794957 0.10865063042577637
+0.016951916475844264 0.7803347280334707 0.016951916475844264 0.7803347280334707 0.11822189614355737
+0.016951916475844264 0.7845188284518807 0.016951916475844264 0.7845188284518807 0.11475337938641916
+0.02034229977101312 0.7740585774058557 0.02034229977101312 0.7740585774058557 0.12424578402647492
+0.02034229977101312 0.7782426778242657 0.02034229977101312 0.7782426778242657 0.12090379730254397
+0.02373268306618197 0.7677824267782407 0.02373268306618197 0.7677824267782407 0.13006304926166187
+0.02373268306618197 0.7719665271966507 0.02373268306618197 0.7719665271966507 0.1269235761160277
+0.027123066361350822 0.7615062761506257 0.027123066361350822 0.7615062761506257 0.1355052959938214
+0.027123066361350822 0.7656903765690357 0.027123066361350822 0.7656903765690357 0.13263384785757557
+0.030513449656519673 0.7552301255230107 0.030513449656519673 0.7552301255230107 0.14041678983786865
+0.030513449656519673 0.7594142259414207 0.030513449656519673 0.7594142259414207 0.13786483553379783
+0.033903832951688535 0.7531380753138057 0.033903832951688535 0.7531380753138057 0.14246726316395478
+0.03729421624685738 0.7468619246861907 0.03729421624685738 0.7468619246861907 0.1463245833527432
+0.03729421624685738 0.7510460251046007 0.03729421624685738 0.7510460251046007 0.1442699054885781
+0.040684599542026224 0.7405857740585757 0.040684599542026224 0.7405857740585757 0.14936513114499253
+0.040684599542026224 0.7447698744769857 0.040684599542026224 0.7447698744769857 0.14767890994451838
+0.0440749828371951 0.7343096234309607 0.0440749828371951 0.7343096234309607 0.15157331825172182
+0.0440749828371951 0.7384937238493707 0.0440749828371951 0.7384937238493707 0.15022722548583775
+0.04746536613236394 0.7280334728033457 0.04746536613236394 0.7280334728033457 0.15299886028345835
+0.04746536613236394 0.7322175732217557 0.04746536613236394 0.7322175732217557 0.1519333991701869
+0.05085574942753279 0.7217573221757307 0.05085574942753279 0.7217573221757307 0.15376272725536258
+0.05085574942753279 0.7259414225941407 0.05085574942753279 0.7259414225941407 0.15288635471837275
+0.05424613272270165 0.7154811715481157 0.054246132722701644 0.7154811715481157 0.15405802197074703
+0.05424613272270165 0.7196652719665257 0.054246132722701644 0.7196652719665257 0.15324900698775146
+0.05763651601787049 0.7092050209205008 0.05763651601787049 0.7092050209205008 0.15414344737241892
+0.05763651601787049 0.7133891213389107 0.05763651601787049 0.7133891213389107 0.15325568378043186
+0.06102689931303934 0.7029288702928858 0.06102689931303934 0.7029288702928858 0.154326800879413
+0.06102689931303934 0.7071129707112958 0.06102689931303934 0.7071129707112958 0.15320072176636293
+0.06441728260820821 0.6966527196652708 0.06441728260820821 0.6966527196652708 0.1549367380647598
+0.06441728260820821 0.7008368200836808 0.06441728260820821 0.7008368200836808 0.15341573390361088
+0.06780766590337706 0.6945606694560658 0.06780766590337706 0.6945606694560658 0.15423469535192033
+0.0711980491985459 0.6882845188284508 0.0711980491985459 0.6882845188284508 0.15594980970745684
+0.0711980491985459 0.6924686192468608 0.0711980491985459 0.6924686192468608 0.15358689001663048
+0.07458843249371476 0.6820083682008358 0.07458843249371476 0.6820083682008358 0.15876635373222683
+0.07458843249371476 0.6861924686192458 0.07458843249371476 0.6861924686192458 0.15575401502240963
+0.07797881578888362 0.6757322175732208 0.07797881578888362 0.6757322175732208 0.16276843757594314
+0.07797881578888362 0.6799163179916308 0.07797881578888362 0.6799163179916308 0.15911160033560037
+0.08136919908405248 0.6694560669456058 0.08136919908405248 0.6694560669456058 0.16790625284087998
+0.08136919908405248 0.6736401673640158 0.08136919908405248 0.6736401673640158 0.16367564882299776
+0.08475958237922132 0.6631799163179908 0.08475958237922132 0.6631799163179908 0.17400827945435604
+0.08475958237922132 0.6673640167364008 0.08475958237922132 0.6673640167364008 0.16932815318761837
+0.08814996567439015 0.6569037656903758 0.08814996567439015 0.6569037656903758 0.18081314422188122
+0.08814996567439015 0.6610878661087858 0.08814996567439015 0.6610878661087858 0.17584170174129354
+0.09154034896955902 0.6548117154811708 0.09154034896955902 0.6548117154811708 0.1829190030485384
+0.09493073226472787 0.6527196652719658 0.09493073226472787 0.6527196652719658 0.18508844061774224
+0.09832111555989675 0.6506276150627608 0.09832111555989675 0.6506276150627608 0.18728982744165326
+0.10171149885506564 0.6485355648535558 0.10171149885506563 0.6485355648535558 0.18949058792136422
+0.10510188215023453 0.6464435146443508 0.10510188215023453 0.6464435146443508 0.19165880599773932
+0.10849226544540343 0.6443514644351458 0.10849226544540343 0.6443514644351458 0.19376470892400924
+0.11188264874057234 0.6380753138075308 0.11188264874057234 0.6380753138075308 0.20065998503604945
+0.11527303203574124 0.6359832635983258 0.11527303203574124 0.6359832635983258 0.2024353328677655
+0.12544418192124793 0.6213389121338908 0.12544418192124793 0.6213389121338908 0.21480499112984144
+0.13222494851158573 0.6129707112970708 0.13222494851158573 0.6129707112970708 0.22004328965942913
+0.1356153318067546 0.6108786610878658 0.13561533180675459 0.6108786610878658 0.2208196849928494
+0.1423960983970924 0.6025104602510458 0.1423960983970924 0.6025104602510458 0.2255942492920001
+0.1457864816922613 0.6004184100418408 0.1457864816922613 0.6004184100418408 0.2265357011879672
+0.1491768649874302 0.5983263598326358 0.1491768649874302 0.5983263598326358 0.22759635504150677
+0.1525672482825991 0.5920502092050208 0.15256724828259907 0.5920502092050208 0.2321961943763413
+0.15595763157776799 0.5899581589958158 0.15595763157776799 0.5899581589958158 0.23370648886584242
+0.1593480148729369 0.5878661087866108 0.1593480148729369 0.5878661087866108 0.23539090647320848
+0.1525672482825991 0.5962343096234308 0.15256724828259907 0.5962343096234308 0.22879548503538086
+0.1390057151019235 0.6087866108786608 0.1390057151019235 0.6087866108786608 0.22159970970134493
+0.1423960983970924 0.6066945606694558 0.1423960983970924 0.6066945606694558 0.22241423823404524
+0.1288345652164168 0.6192468619246858 0.1288345652164168 0.6192468619246858 0.21577225630891858
+0.13222494851158573 0.6171548117154808 0.13222494851158573 0.6171548117154808 0.21665771772920037
+0.11866341533091013 0.6297071129707108 0.11866341533091011 0.6297071129707108 0.20843182376664157
+0.11866341533091013 0.6338912133891208 0.11866341533091011 0.6338912133891208 0.20407184802415132
+0.12205379862607901 0.6276150627615058 0.12205379862607901 0.6276150627615058 0.20977576399428075
+0.12544418192124793 0.6255230125523008 0.12544418192124793 0.6255230125523008 0.21098471294196655
+0.11188264874057234 0.6422594142259408 0.11188264874057234 0.6422594142259408 0.19578196715911136
+0.17290184695925348 0.5669393182224137 0.17290184695925348 0.5669393182224137 0.2570120264926406
+0.17290233771923547 0.5711248401913553 0.17290233771923547 0.5711248401913553 0.25262035083919443
+0.1762747889413793 0.5648370218170248 0.1762747889413793 0.5648370218170248 0.2598939203772525
+0.1796311537368267 0.5627298292698096 0.1796311537368267 0.5627298292698096 0.2628210187548862
+0.18294791423598825 0.5522470383944961 0.18294791423598825 0.5522470383944961 0.27489663588960506
+0.18295816282823293 0.5564242512423266 0.18295816282823293 0.5564242512423266 0.2704200934533993
+0.1829644948169303 0.560614056096085 0.1829644948169303 0.560614056096085 0.2657747442204809
+0.1627383981681058 0.5815899581589958 0.16273839816810584 0.5815899581589958 0.2411509901142923
+0.16612841648974178 0.5794978689322413 0.16612841648974178 0.5794978689322413 0.24335831224161586
+0.16951683269289686 0.5774053516032277 0.16951683269289686 0.5774053516032277 0.24570831452459355
+0.1729021057192522 0.5753106764427952 0.1729021057192522 0.5753106764427952 0.2481808582057998
+0.16273839816810579 0.5857740585774058 0.16273839816810579 0.5857740585774058 0.2372454997097103
+0.34749882838242113 0.32265814601690196 0.34749882838242113 0.32265814601690196 0.22357375943529487
+0.3439158772679962 0.3241209341935677 0.3439158772679962 0.32412093419356763 0.2146721219169007
+0.34041976638217386 0.3256841281321401 0.3404197663821739 0.3256841281321401 0.2059812026350547
+0.3371161374111257 0.32719459475102763 0.3371161374111257 0.3271945947510276 0.1978890274939581
+0.3337055161235351 0.328681107293379 0.3337055161235351 0.328681107293379 0.18975921527490577
+0.33017008226495864 0.3301831633676984 0.33017008226495864 0.3301831633676984 0.18160549780997207
+0.3259869195408534 0.3316640719279239 0.3259869195408534 0.33166407192792396 0.17266265570344963
+0.3228609418932778 0.3340100405869381 0.3228609418932778 0.3340100405869381 0.1652269075470221
+0.31980934678810563 0.33588208689864957 0.31980934678810563 0.33588208689864957 0.15867262041612487
+0.3167370653838293 0.337645469928659 0.3167370653838293 0.337645469928659 0.15254719337223968
+0.3137042429848308 0.3393271101099763 0.31370424298483085 0.33932711010997624 0.14696982573063308
+0.3107907310712231 0.3409786117219431 0.31079073107122307 0.3409786117219431 0.14202936652676534
+0.3080091888490912 0.34273430053133674 0.3080091888490912 0.34273430053133674 0.1376154921148202
+0.3055827460682598 0.3446116767393855 0.3055827460682598 0.3446116767393855 0.13399719769006754
+0.30282001538532066 0.34649558725090523 0.30282001538532066 0.34649558725090523 0.13053679890168376
+0.3000214327106798 0.34844015574600157 0.3000214327106798 0.34844015574600157 0.1276132692096301
+0.29719449667432574 0.3504004642075346 0.2971944966743258 0.3504004642075346 0.12531295483872448
+0.2944270689811835 0.3523757800094722 0.2944270689811835 0.3523757800094722 0.1237034930781681
+0.2917281478950831 0.3544058296727585 0.2917281478950831 0.3544058296727585 0.12276716327004446
+0.2890804602324622 0.3564865296820945 0.2890804602324622 0.3564865296820945 0.12250360223414018
+0.28642565051758423 0.35861801152406986 0.28642565051758423 0.35861801152406986 0.1229050697278946
+0.2837610292952525 0.3608030650452931 0.28376102929525254 0.3608030650452931 0.12396149883895625
+0.28110944133158605 0.3630243839774891 0.28110944133158605 0.3630243839774891 0.12564772571333513
+0.27847354216392045 0.36528047025677696 0.27847354216392045 0.36528047025677696 0.12792768661961815
+0.27586441727680927 0.36757043745265144 0.27586441727680927 0.36757043745265144 0.13074955993589524
+0.2733006301781323 0.36990134516083023 0.2733006301781323 0.36990134516083023 0.1340566120875488
+0.27076770669705486 0.3722758162998388 0.27076770669705486 0.3722758162998388 0.13780754187596392
+0.26824295888056154 0.37469881075284533 0.26824295888056154 0.37469881075284533 0.1419730232477323
+0.26574317223677413 0.3771666252792667 0.2657431722367742 0.3771666252792667 0.1464915639079212
+0.26326840164245713 0.37967817795723113 0.26326840164245713 0.37967817795723113 0.15131994527244477
+0.2608056124015739 0.38222622218446406 0.2608056124015739 0.38222622218446406 0.15641745170974872
+0.25836243229738104 0.3848071441824788 0.25836243229738104 0.3848071441824788 0.16173421494044124
+0.2559509754980237 0.3874179652071732 0.25595097549802365 0.3874179652071732 0.16721852807080764
+0.25356750359263946 0.3900733399132144 0.25356750359263946 0.3900733399132144 0.17285809637124297
+0.25121665542169014 0.3927871964931306 0.25121665542169014 0.3927871964931306 0.17863863135656485
+0.2489284335624998 0.39556800278162135 0.2489284335624998 0.39556800278162135 0.18453704514989458
+0.24666087158697617 0.3983871752491273 0.24666087158697617 0.3983871752491273 0.19051923411311142
+0.24438682402997827 0.40121237742212545 0.24438682402997827 0.4012123774221255 0.1965200729428629
+0.24209238573788405 0.40403590383750476 0.24209238573788405 0.40403590383750476 0.20250276940617415
+0.23976044646796088 0.40688135602757824 0.23976044646796088 0.4068813560275783 0.20849231278945998
+0.2374773666131202 0.40977932768894654 0.23747736661312022 0.40977932768894654 0.21448058102854148
+0.23556740338842236 0.41286280191167596 0.23556740338842233 0.41286280191167596 0.22050255855461806
+0.23365754123832388 0.4160900475775544 0.2336575412383239 0.4160900475775544 0.22672940748949086
+0.23160415209096458 0.41916149429863847 0.2316041520909646 0.4191614942986384 0.2326322931290932
+0.22949130710340782 0.42211135735678745 0.22949130710340784 0.42211135735678745 0.23820324306649135
+0.2272856984500905 0.42503858356579266 0.22728569845009047 0.42503858356579266 0.2436069782816825
+0.22507558214303916 0.4279467023289612 0.22507558214303916 0.4279467023289612 0.2488130641228852
+0.22305552881773327 0.43060737695575746 0.22305552881773325 0.43060737695575746 0.2533838302558506
+0.22360348556559068 0.43332494950831923 0.22360348556559068 0.43332494950831923 0.25761163975300444
+0.22236006435771527 0.4358555330835622 0.22236006435771527 0.43585553308356223 0.26176199876006784
+0.22033035586981553 0.43866558384892557 0.22033035586981553 0.43866558384892557 0.26617691872660426
+0.21839150725586 0.44165654137792404 0.21839150725586 0.44165654137792404 0.2706601040787647
+0.2164209044569211 0.4447142839054247 0.2164209044569211 0.4447142839054247 0.2750102135681291
+0.21444363977777156 0.44779440979214796 0.21444363977777156 0.44779440979214796 0.279137135243451
+0.21048794701649898 0.4544607674405291 0.21048794701649903 0.45446076744052905 0.2872476894046065
+0.21245964996405164 0.4509394862331749 0.21245964996405164 0.450939486233175 0.28309420449106787
+0.21319827706877376 0.456412198241731 0.21319827706877376 0.456412198241731 0.289938031825118
+0.21052488128293892 0.4586496916279314 0.21052488128293895 0.45864969162793134 0.29217164140645124
+0.2088478519734311 0.4622454430108538 0.20884785197343111 0.46224544301085385 0.2957270133311037
+0.2071893461858664 0.4657073921258124 0.2071893461858664 0.4657073921258124 0.2988216223138609
+0.20137782300315601 0.4784939892644396 0.20137782300315604 0.47849398926443965 0.30717604943417365
+0.2024013796562185 0.47570006268235754 0.2024013796562185 0.4757000626823576 0.30576106431423616
+0.2055437380294794 0.4690798616871139 0.20554373802947937 0.4690798616871139 0.3014945489660224
+0.2039130704841069 0.4724353496636779 0.20391307048410692 0.4724353496636779 0.30382353506871834
+0.20222597388657404 0.4811288833945221 0.202225973886574 0.48112888339452203 0.3090395199997871
+0.20052406386414184 0.48407477795736653 0.20052406386414187 0.4840747779573666 0.3100036573287482
+0.1925879436526031 0.5038418798129704 0.1925879436526031 0.5038418798129704 0.31030271698766065
+0.19922994632854654 0.4877409214860224 0.19922994632854654 0.4877409214860224 0.31099219075707035
+0.19764416510259997 0.4914309883192686 0.19764416510259997 0.4914309883192686 0.31154297985738916
+0.1964468026991653 0.4949590514864826 0.19644680269916528 0.4949590514864826 0.31176333835093
+0.19560005815933096 0.49872788353320996 0.19560005815933093 0.4987278835332099 0.3117196249551801
+0.19491503375839664 0.5017868168130503 0.19491503375839664 0.5017868168130503 0.3113202018627522
+0.18958532835685804 0.5186475360134327 0.18958532835685804 0.5186475360134327 0.30460485586197444
+0.18961136048417337 0.5228666760183603 0.18961136048417337 0.5228666760183603 0.3023622206201853
+0.19275555314077364 0.5165814399662152 0.19275555314077364 0.5165814399662151 0.3068092403064391
+0.19287153327047668 0.5078719980544019 0.19287153327047668 0.5078719980544019 0.3098277603785096
+0.19269357280999716 0.5122270026998459 0.1926935728099972 0.5122270026998459 0.3085568146094397
+0.18949855346477104 0.5271469654589683 0.18949855346477104 0.5271469654589683 0.29954586242653186
+0.1894411279925906 0.531396755458016 0.1894411279925906 0.531396755458016 0.29640882668503016
+0.18614512981506792 0.5376742930531083 0.18614512981506792 0.5376742930531083 0.29004789571257517
+0.1894023907460759 0.535624822238983 0.1894023907460759 0.535624822238983 0.2929224760839832
+0.18617438037206627 0.5418456159192111 0.18617438037206627 0.5418456159192111 0.2862594339171196
+0.18623045318331355 0.5460074420456359 0.18623045318331355 0.5460074420456359 0.2822136772918373
+0.18625652409888974 0.5501504155704677 0.18625652409888974 0.5501504155704677 0.2779347181994163
+0.3515038664218077 0.31784118513921555 0.3515038664218077 0.31784118513921555 0.23534130603161182
+0.3510725455855819 0.321325875143818 0.3510725455855819 0.321325875143818 0.23244129882270467
+0.3614437505582424 0.3010936428087391 0.3614437505582424 0.3010936428087391 0.2634676088102685
+0.35569759039081417 0.30937426625448705 0.35569759039081417 0.309374266254487 0.24867556086700224
+0.36045451813952434 0.3045964174961595 0.3604545181395244 0.3045964174961595 0.26053129449306395
+0.3595438511646398 0.30815600168410134 0.3595438511646398 0.30815600168410134 0.25752417041854603
+0.35544807791136823 0.3131146084623374 0.35544807791136823 0.31311460846233746 0.24650784682135193
+0.35503662198347363 0.31662631463207536 0.3550366219834737 0.31662631463207536 0.24393179301603937
+0.37354480889930775 0.28489568884182925 0.3735448088993078 0.28489568884182925 0.2866000887786881
+0.36617730970682527 0.29327022533241826 0.36617730970682527 0.29327022533241826 0.273860121682801
+0.3727403182160479 0.288168380902586 0.37274031821604797 0.28816838090258606 0.2858816762374829
+0.3693529099358057 0.29232486288446885 0.3693529099358057 0.29232486288446885 0.280035306202237
+0.37174461046881446 0.2907408349848496 0.37174461046881446 0.2907408349848496 0.28440223392780933
+0.36561708328528325 0.29669400517000866 0.36561708328528325 0.29669400517000866 0.2726388943302149
+0.36497233380006566 0.3001901449293225 0.36497233380006566 0.3001901449293225 0.27096837551068015
+0.3871620351182384 0.26943366326549806 0.3871620351182384 0.26943366326549806 0.30108282873559555
+0.37859615443871136 0.2774894864306877 0.37859615443871136 0.27748948643068777 0.2926261635869358
+0.38612954281070144 0.27281996319280083 0.38612954281070144 0.27281996319280083 0.30168845542488204
+0.38192731531576296 0.2768425134319456 0.38192731531576296 0.2768425134319456 0.2976212638362601
+0.3851818529638693 0.27619856692242367 0.3851818529638693 0.27619856692242367 0.302241883074106
+0.3777683575200746 0.2809205852644389 0.3777683575200746 0.2809205852644389 0.29267443263584286
+0.37689994823498446 0.2842515969591249 0.37689994823498446 0.2842515969591249 0.29237584523105675
+0.40254067575800767 0.254616856730897 0.4025406757580077 0.254616856730897 0.30724886476842395
+0.39291221169647184 0.26214742255621476 0.39291221169647184 0.26214742255621476 0.3034586604843383
+0.4011613343486045 0.25800157919980765 0.4011613343486045 0.25800157919980765 0.3085899227422884
+0.3963814488116432 0.26174409654996456 0.3963814488116432 0.2617440965499646 0.30688007637163134
+0.399856578366564 0.26138429974505367 0.399856578366564 0.26138429974505367 0.30998383444268623
+0.39171918062527755 0.2655744168327099 0.39171918062527755 0.2655744168327099 0.304390623517339
+0.3905693817521576 0.26896484989683955 0.3905693817521576 0.26896484989683955 0.3052527065795157
+0.42799451628959745 0.23438303534362182 0.42799451628959745 0.23438303534362182 0.2996102089148606
+0.42588025621486625 0.2375277078712772 0.4258802562148663 0.2375277078712772 0.30200776182045774
+0.4237627315688495 0.2406801113118223 0.4237627315688495 0.2406801113118223 0.30433634759714895
+0.42169672195436203 0.24385348178874106 0.421696721954362 0.24385348178874103 0.30660735189077176
+0.419768365289825 0.247101831379185 0.419768365289825 0.24710183137918504 0.30890292442603867
+0.4076119696196808 0.2509907363363032 0.40761196961968077 0.25099073633630326 0.30800550206037164
+0.41120080849403295 0.2507514279919938 0.411200808494033 0.2507514279919938 0.30955437164736693
+0.41484972183295615 0.25061558715841115 0.41484972183295615 0.2506155871584111 0.31069328380689165
+0.4185965476165541 0.25062740111339077 0.4185965476165542 0.2506274011133907 0.3115700637033389
+0.40609112383145907 0.25437418557262115 0.406091123831459 0.25437418557262115 0.3095330970907278
+0.43590994164888447 0.22838973543822835 0.43590994164888447 0.22838973543822835 0.29204272026967604
+0.4338458738865865 0.23149462176408087 0.4338458738865865 0.23149462176408084 0.2950277720260559
+0.43965820836773567 0.2286707524001552 0.43965820836773567 0.2286707524001552 0.288890786238759
+0.4317580838112213 0.23461587153548824 0.4317580838112213 0.23461587153548824 0.29793321598002726
+0.4685711241023287 0.21131802628208204 0.4685711241023287 0.21131802628208204 0.2314426889447838
+0.46621056866349386 0.21374230743090647 0.46621056866349386 0.21374230743090647 0.23825771092323525
+0.46385867875396264 0.21614421200131848 0.46385867875396264 0.21614421200131848 0.24474414828294555
+0.4615021244530601 0.2185216625556037 0.4615021244530601 0.2185216625556037 0.2509346811447668
+0.4591320144639491 0.22088589085677449 0.4591320144639491 0.22088589085677449 0.256856337300251
+0.45673096460806617 0.223292779636924 0.45673096460806617 0.22329277963692398 0.2625798373243354
+0.4434172667775898 0.22894292785053086 0.4434172667775898 0.22894292785053086 0.2850756828077752
+0.4472811173289356 0.22910831474157511 0.44728111732893566 0.22910831474157511 0.2803856867566286
+0.45420411106839337 0.2258047208767423 0.45420411106839337 0.22580472087674233 0.2682977266654905
+0.4512153588199113 0.22846783032628448 0.45121535881991137 0.22846783032628443 0.27455941464553163
+0.490509022971315 0.20264295459500473 0.490509022971315 0.20264295459500473 0.16292356349151185
+0.47715873362130595 0.20736550932416736 0.47715873362130595 0.20736550932416734 0.20681348689857734
+0.4880197486183509 0.20479961923092121 0.4880197486183509 0.2047996192309212 0.17230740153329513
+0.4810317715822908 0.20824900366047852 0.48103177158229077 0.20824900366047852 0.19604971049805167
+0.48514714160398487 0.2073317342822602 0.4851471416039849 0.20733173428226023 0.1828952712378468
+0.48381970673362534 0.21041614735658698 0.4838197067336253 0.21041614735658695 0.18860120598719174
+0.4745494392347249 0.2098936068606296 0.47454943923472487 0.2098936068606296 0.21536145084109068
+0.4720874771829948 0.21240601755189026 0.47208747718299476 0.21240601755189026 0.22317938782194527
+0.5137965886069702 0.1963134695652886 0.5137965886069703 0.1963134695652886 0.07524432661517873
+0.49951114805996033 0.19934361244395785 0.49951114805996033 0.19934361244395785 0.12981639260044844
+0.5108979778839526 0.19827091840520203 0.5108979778839525 0.19827091840520203 0.0868526096188535
+0.5030650199406533 0.20073947960075897 0.5030650199406533 0.20073947960075897 0.1174171087594373
+0.508574902542034 0.20018862648267535 0.508574902542034 0.20018862648267535 0.09642914426459949
+0.5062273199698576 0.20206635930548436 0.5062273199698576 0.20206635930548436 0.10611306192539727
+0.49675595560019464 0.2016176893572294 0.49675595560019464 0.20161768935722943 0.14080139098880454
+0.4941126910685542 0.20392218860954114 0.4941126910685542 0.20392218860954117 0.1512640362853934
+0.5215389778657936 0.19288625380284224 0.5215389778657936 0.19288625380284222 0.04680425519531085
+0.5255653710999528 0.19267049470642847 0.5255653710999528 0.19267049470642847 0.03563510392872312
+0.5275542627661334 0.19517561555007593 0.5275542627661334 0.19517561555007593 0.032452321050273306
+0.5201514750160041 0.19584324843196954 0.5201514750160041 0.19584324843196954 0.052029991656398565
+0.5174066867928435 0.19746111986511514 0.5174066867928434 0.19746111986511514 0.0621955995711287
+0.5523004072047638 0.1762903404191013 0.5523004072047638 0.1762903404191013 0.09308392678417288
+0.5460266858289888 0.17964742909542653 0.5460266858289887 0.17964742909542653 0.07168955497056455
+0.5502093370712277 0.17966409593562613 0.5502093370712277 0.17966409593562613 0.08749564258141762
+0.53127032916573 0.19633349347346188 0.53127032916573 0.1963334934734619 0.03186543793176361
+0.5335569289139456 0.19285365013964492 0.5335569289139456 0.19285365013964492 0.034709728648075
+0.5439325509906854 0.1829861732937865 0.5439325509906854 0.1829861732937865 0.06546434278310476
+0.5418236472408539 0.18628290181978044 0.5418236472408539 0.18628290181978044 0.05891521684874044
+0.5375656843569302 0.1927244113845347 0.5375656843569302 0.1927244113845347 0.04575190597201088
+0.5396540343083832 0.18953020973831403 0.5396540343083832 0.18953020973831403 0.0520666336184904
+0.5564843591000211 0.17629333801242394 0.5564843591000211 0.17629333801242394 0.10887233527273565
+0.5606695501447504 0.17629343991292548 0.5606695501447504 0.17629343991292548 0.12471815178311595
+0.5669462451733401 0.17290736041026433 0.5669462451733401 0.17290736041026433 0.1443760659483523
+0.5648550061228584 0.1762925750348396 0.5648550061228584 0.1762925750348396 0.14051448735295993
+0.571130502716208 0.17290730551421438 0.571130502716208 0.17290730551421438 0.15960391926095915
+0.5774059544586289 0.1695188968730913 0.5774059544586289 0.1695188968730913 0.17714452803045158
+0.5753143481960784 0.17290795785634713 0.5753143481960784 0.17290795785634713 0.17464997122853831
+0.5836820083491124 0.1661287814536624 0.5836820083491124 0.1661287814536624 0.1932862640718478
+0.5815899931180997 0.16951906029523298 0.5815899931180998 0.16951906029523298 0.19156698093370791
+0.6213389121338752 0.12544418192125084 0.6213389121338752 0.12544418192125084 0.25557787052286346
+0.6150627615062598 0.12883456521641978 0.6150627615062598 0.12883456521641978 0.2397078271407209
+0.61924686192467 0.12883456521641978 0.6192468619246699 0.12883456521641978 0.25212248085603145
+0.6129707112970547 0.13222494851158872 0.6129707112970547 0.13222494851158872 0.23640392014231096
+0.6108786610878496 0.13561533180675767 0.6108786610878497 0.13561533180675767 0.23344113156217425
+0.6087866108786445 0.1390057151019266 0.6087866108786445 0.1390057151019266 0.2308570109567659
+0.6025104602510292 0.14239609839709555 0.6025104602510291 0.14239609839709555 0.21590711084331013
+0.6004184100418241 0.1457864816922645 0.6004184100418241 0.1457864816922645 0.2140834569907649
+0.598326359832619 0.14917686498743343 0.598326359832619 0.14917686498743343 0.21258668315406573
+0.5962343096234138 0.15256724828260237 0.5962343096234138 0.15256724828260237 0.21134831121581202
+0.5941422594142087 0.15595763157777132 0.5941422594142088 0.15595763157777132 0.21028315268148876
+0.5920502092050036 0.15934801487294026 0.5920502092050036 0.15934801487294026 0.20929441101010973
+0.5899581589953176 0.16273839816786903 0.5899581589953176 0.16273839816786903 0.2082791033542777
+0.5878661087816709 0.16612878146081622 0.5878661087816709 0.16612878146081622 0.20713334867809866
+0.6066945606694394 0.14239609839709555 0.6066945606694394 0.14239609839709555 0.22866561642638736
+0.6317991631799007 0.11527303203574402 0.6317991631799007 0.11527303203574402 0.2777180951922032
+0.6359832635983109 0.11527303203574402 0.6359832635983108 0.11527303203574402 0.2884113015893888
+0.6297071129706956 0.11866341533091296 0.6297071129706956 0.11866341533091296 0.27436452980671655
+0.6276150627614905 0.1220537986260819 0.6276150627614906 0.1220537986260819 0.270940598295031
+0.6255230125522854 0.12544418192125084 0.6255230125522854 0.12544418192125084 0.26754039960715575
+0.656903765690362 0.08814996567439248 0.656903765690362 0.08814996567439248 0.3063732228388101
+0.6548117154811569 0.09154034896956142 0.6548117154811569 0.09154034896956142 0.30706077730765685
+0.6527196652719518 0.09493073226473037 0.6527196652719517 0.09493073226473037 0.30723925160262483
+0.6506276150627467 0.09832111555989931 0.6506276150627467 0.09832111555989931 0.3069092648589751
+0.6485355648535416 0.10171149885506825 0.6485355648535416 0.10171149885506825 0.30608491192839193
+0.6464435146443365 0.10510188215023719 0.6464435146443365 0.10510188215023719 0.30479384002272786
+0.6443514644351314 0.10849226544540613 0.6443514644351315 0.10849226544540613 0.30307694097113114
+0.6422594142259263 0.11188264874057507 0.6422594142259263 0.11188264874057507 0.3009876105344757
+0.6401673640167211 0.11527303203574402 0.6401673640167211 0.11527303203574402 0.2985905264613415
+0.6631799163179773 0.08475958237922354 0.6631799163179773 0.08475958237922354 0.3111459345246823
+0.6610878661087722 0.08814996567439248 0.6610878661087723 0.08814996567439248 0.31262850099241085
+0.6694560669455927 0.0813691990840546 0.6694560669455926 0.0813691990840546 0.31462716008130215
+0.6673640167363876 0.08475958237922354 0.6673640167363876 0.08475958237922354 0.31671280563948706
+0.675732217573208 0.07797881578888566 0.675732217573208 0.07797881578888566 0.317288385575971
+0.6736401673640029 0.0813691990840546 0.6736401673640029 0.0813691990840546 0.3197422925746393
+0.6820083682008233 0.07458843249371672 0.6820083682008233 0.07458843249371672 0.3196544439621314
+0.6799163179916182 0.07797881578888566 0.6799163179916182 0.07797881578888566 0.32222632594574635
+0.6882845188284387 0.07119804919854777 0.6882845188284387 0.07119804919854777 0.32224148994579555
+0.6861924686192336 0.07458843249371672 0.6861924686192334 0.07458843249371672 0.3246991822119179
+0.6966527196652591 0.06441728260820989 0.6966527196652591 0.06441728260820989 0.3233579885584821
+0.694560669456054 0.06780766590337883 0.6945606694560541 0.06780766590337883 0.3254869629543642
+0.6924686192468489 0.07119804919854777 0.6924686192468489 0.07119804919854777 0.3276514041493732
+0.7029288702928744 0.06102689931304095 0.7029288702928743 0.06102689931304095 0.3279468648207542
+0.7008368200836693 0.06441728260820989 0.7008368200836693 0.06441728260820989 0.329684122170405
+0.7092050209204898 0.05763651601787201 0.7092050209204898 0.05763651601787201 0.3335445032548949
+0.7071129707112846 0.06102689931304095 0.7071129707112846 0.06102689931304095 0.33493623794186006
+0.7154811715481051 0.054246132722703067 0.7154811715481051 0.054246132722703067 0.33996326266028815
+0.7133891213389 0.05763651601787201 0.7133891213389 0.05763651601787201 0.3411423798715801
+0.7217573221757204 0.050855749427534125 0.7217573221757204 0.050855749427534125 0.34685786812226227
+0.7196652719665153 0.054246132722703067 0.7196652719665152 0.054246132722703067 0.3480181825163302
+0.7280334728033357 0.04746536613236518 0.7280334728033359 0.04746536613236518 0.353782940772922
+0.7259414225941306 0.050855749427534125 0.7259414225941306 0.050855749427534125 0.3551449910726446
+0.7343096234309511 0.04407498283719624 0.7343096234309511 0.04407498283719624 0.360258471833859
+0.732217573221746 0.04746536613236518 0.732217573221746 0.04746536613236518 0.36203434278407315
+0.7405857740585664 0.0406845995420273 0.7405857740585664 0.0406845995420273 0.365831104084363
+0.7384937238493613 0.04407498283719624 0.7384937238493613 0.04407498283719624 0.368194012651679
+0.7489539748953868 0.03390383295168942 0.7489539748953868 0.03390383295168942 0.3667753477614215
+0.7468619246861817 0.03729421624685836 0.7468619246861817 0.03729421624685836 0.3701235052567953
+0.7447698744769766 0.0406845995420273 0.7447698744769767 0.0406845995420273 0.37318538802538503
+0.7552301255230022 0.030513449656520475 0.7552301255230022 0.030513449656520475 0.36887139938953184
+0.7531380753137971 0.03390383295168942 0.753138075313797 0.03390383295168942 0.3728685433571863
+0.7615062761506175 0.027123066361351533 0.7615062761506176 0.027123066361351533 0.3693681125707636
+0.7594142259414124 0.030513449656520475 0.7594142259414124 0.030513449656520475 0.3739280004990975
+0.7677824267782328 0.02373268306618259 0.7677824267782328 0.02373268306618259 0.36832785554773323
+0.7656903765690277 0.027123066361351533 0.7656903765690277 0.027123066361351533 0.3732971099933183
+0.7740585774058482 0.02034229977101365 0.7740585774058482 0.02034229977101365 0.36592399415788773
+0.771966527196643 0.02373268306618259 0.771966527196643 0.02373268306618259 0.37109681562337243
+0.7803347280334635 0.01695191647584471 0.7803347280334635 0.01695191647584471 0.36241808405995507
+0.7782426778242584 0.02034229977101365 0.7782426778242585 0.02034229977101365 0.3675559266622909
+0.7866108786610788 0.013561533180675767 0.7866108786610787 0.013561533180675767 0.3581314821593487
+0.7845188284518737 0.01695191647584471 0.7845188284518737 0.01695191647584471 0.3629856783583742
+0.7928870292886941 0.010171149885506825 0.7928870292886941 0.010171149885506825 0.3534150999456964
+0.790794979079489 0.013561533180675767 0.790794979079489 0.013561533180675767 0.35774976743418074
+0.7991631799163095 0.006780766590337883 0.7991631799163095 0.006780766590337883 0.34862165129119216
+0.7970711297071044 0.010171149885506825 0.7970711297071044 0.010171149885506825 0.35223364138067476
+0.8033472803347197 0.006780766590337883 0.8033472803347196 0.006780766590337883 0.3468173720356495
+0.006780766590337709 0.8075313807531357 0.006780766590337709 0.8075313807531357 0.09406858223707275
+0.006780766590337709 0.8117154811715457 0.006780766590337709 0.8117154811715457 0.09106074187944894
+0.01017114988550656 0.8012552301255207 0.01017114988550656 0.8012552301255207 0.09936486049733068
+0.01017114988550656 0.8054393305439307 0.01017114988550656 0.8054393305439307 0.09607414487415439
+0.013561533180675408 0.7949790794979057 0.013561533180675408 0.7949790794979057 0.10513702393166167
+0.013561533180675408 0.7991631799163157 0.013561533180675408 0.7991631799163157 0.10166382238459255
+0.016951916475844264 0.7887029288702907 0.016951916475844264 0.7887029288702907 0.11122291535501405
+0.016951916475844264 0.7928870292887007 0.016951916475844264 0.7928870292887007 0.10766751377071616
+0.02034229977101312 0.7824267782426757 0.02034229977101312 0.7824267782426757 0.1174475494042599
+0.02034229977101312 0.7866108786610857 0.02034229977101312 0.7866108786610857 0.11390775074528857
+0.02373268306618197 0.7761506276150607 0.02373268306618197 0.7761506276150607 0.12362622754936896
+0.02373268306618197 0.7803347280334707 0.02373268306618197 0.7803347280334707 0.1201948565797425
+0.027123066361350822 0.7698744769874457 0.027123066361350822 0.7698744769874457 0.12957083595034236
+0.027123066361350822 0.7740585774058557 0.027123066361350822 0.7740585774058557 0.12633279964069907
+0.030513449656519673 0.7635983263598307 0.030513449656519673 0.7635983263598307 0.13509886484235242
+0.030513449656519673 0.7677824267782407 0.030513449656519673 0.7677824267782407 0.13212768964338828
+0.033903832951688535 0.7573221757322157 0.033903832951688535 0.7573221757322157 0.140044355154615
+0.033903832951688535 0.7615062761506257 0.033903832951688535 0.7615062761506257 0.13739827972765847
+0.03729421624685738 0.7552301255230107 0.03729421624685738 0.7552301255230107 0.14198770126898788
+0.040684599542026224 0.7489539748953957 0.040684599542026224 0.7489539748953957 0.14577566910785647
+0.040684599542026224 0.7531380753138057 0.040684599542026224 0.7531380753138057 0.14364411091420007
+0.0440749828371951 0.7426778242677807 0.0440749828371951 0.7426778242677807 0.14869043124138712
+0.0440749828371951 0.7468619246861907 0.0440749828371951 0.7468619246861907 0.14694291257540068
+0.04746536613236394 0.7364016736401657 0.04746536613236394 0.7364016736401657 0.15071970881544658
+0.04746536613236394 0.7405857740585757 0.04746536613236394 0.7405857740585757 0.14932939216047833
+0.05085574942753279 0.7301255230125507 0.05085574942753279 0.7301255230125507 0.15191970879940045
+0.05085574942753279 0.7343096234309607 0.05085574942753279 0.7343096234309607 0.15082698454817509
+0.05424613272270165 0.7238493723849357 0.054246132722701644 0.7238493723849357 0.15242093661278724
+0.05424613272270165 0.7280334728033457 0.054246132722701644 0.7280334728033457 0.1515324608995616
+0.05763651601787049 0.7175732217573207 0.05763651601787049 0.7175732217573207 0.1524289745975539
+0.05763651601787049 0.7217573221757307 0.05763651601787049 0.7217573221757307 0.15161945628576842
+0.06102689931303934 0.7112970711297057 0.06102689931303934 0.7112970711297057 0.15221773897067714
+0.06102689931303934 0.7154811715481157 0.06102689931303934 0.7154811715481157 0.15133578991755525
+0.06441728260820821 0.7050209205020908 0.06441728260820821 0.7050209205020908 0.15211237711954492
+0.06441728260820821 0.7092050209205008 0.06441728260820821 0.7092050209205008 0.15099172878664188
+0.06780766590337706 0.6987447698744758 0.06780766590337706 0.6987447698744758 0.15245970758856
+0.06780766590337706 0.7029288702928858 0.06780766590337706 0.7029288702928858 0.15093635929830726
+0.0711980491985459 0.6966527196652708 0.0711980491985459 0.6966527196652708 0.15152090181929398
+0.07458843249371476 0.6903765690376558 0.07458843249371476 0.6903765690376558 0.15305194670793623
+0.07458843249371476 0.6945606694560658 0.07458843249371476 0.6945606694560658 0.1506630501059998
+0.07797881578888362 0.6841004184100408 0.07797881578888362 0.6841004184100408 0.1557434681698859
+0.07797881578888362 0.6882845188284508 0.07797881578888362 0.6882845188284508 0.15268519638846043
+0.08136919908405248 0.6778242677824258 0.08136919908405248 0.6778242677824258 0.15968075999643908
+0.08136919908405248 0.6820083682008358 0.08136919908405248 0.6820083682008358 0.15595776942824913
+0.08475958237922132 0.6715481171548108 0.08475958237922132 0.6715481171548108 0.16480790072302107
+0.08475958237922132 0.6757322175732208 0.08475958237922132 0.6757322175732208 0.16049346164441383
+0.08814996567439015 0.6652719665271958 0.08814996567439015 0.6652719665271958 0.17094224996112847
+0.08814996567439015 0.6694560669456058 0.08814996567439015 0.6694560669456058 0.16616477036130492
+0.09154034896955902 0.6589958158995808 0.09154034896955902 0.6589958158995808 0.17780962543881
+0.09154034896955902 0.6631799163179908 0.09154034896955902 0.6631799163179908 0.1727316969985343
+0.09493073226472787 0.6569037656903758 0.09493073226472787 0.6569037656903758 0.1798846152572475
+0.09832111555989675 0.6548117154811708 0.09832111555989675 0.6548117154811708 0.18203495611825796
+0.10171149885506564 0.6527196652719658 0.10171149885506563 0.6527196652719658 0.18422640787074687
+0.10510188215023453 0.6506276150627608 0.10510188215023453 0.6506276150627608 0.1864239855440791
+0.10849226544540343 0.6485355648535558 0.10849226544540343 0.6485355648535558 0.18859366027724922
+0.11188264874057234 0.6464435146443508 0.11188264874057234 0.6464435146443508 0.1907038985396361
+0.11527303203574124 0.6401673640167358 0.11527303203574124 0.6401673640167358 0.19768876708410496
+0.11866341533091013 0.6380753138075308 0.11866341533091011 0.6380753138075308 0.19946862933824575
+0.1288345652164168 0.6234309623430958 0.1288345652164168 0.6234309623430958 0.21207245446032985
+0.1356153318067546 0.6150627615062758 0.13561533180675459 0.6150627615062758 0.2174881130764694
+0.1390057151019235 0.6129707112970708 0.1390057151019235 0.6129707112970708 0.2182922487805006
+0.1457864816922613 0.6046025104602508 0.1457864816922613 0.6046025104602508 0.22329246591139754
+0.1491768649874302 0.6025104602510458 0.1491768649874302 0.6025104602510458 0.22426062928225612
+0.1525672482825991 0.6004184100418408 0.15256724828259907 0.6004184100418408 0.22534088728011967
+0.15595763157776799 0.5941422594142258 0.15595763157776799 0.5941422594142258 0.23014654681992372
+0.1593480148729369 0.5920502092050208 0.1593480148729369 0.5920502092050208 0.23165682102935933
+0.16273839816810579 0.5899581589958158 0.16273839816810579 0.5899581589958158 0.2333274408662982
+0.15595763157776799 0.5983263598326358 0.15595763157776799 0.5983263598326358 0.2265504415419504
+0.1423960983970924 0.6108786610878658 0.1423960983970924 0.6108786610878658 0.21909973397563773
+0.1457864816922613 0.6087866108786608 0.1457864816922613 0.6087866108786608 0.2199396651985945
+0.13222494851158573 0.6213389121338908 0.13222494851158573 0.6213389121338908 0.2130576480321352
+0.1356153318067546 0.6192468619246858 0.13561533180675459 0.6192468619246858 0.2139629964261208
+0.12205379862607901 0.6317991631799158 0.12205379862607901 0.6317991631799158 0.20556549353819256
+0.12205379862607901 0.6359832635983258 0.12205379862607901 0.6359832635983258 0.20111095844995017
+0.12544418192124793 0.6297071129707108 0.12544418192124793 0.6297071129707108 0.20691829927731278
+0.1288345652164168 0.6276150627615058 0.1288345652164168 0.6276150627615058 0.2081381729990712
+0.11527303203574124 0.6443514644351458 0.11527303203574124 0.6443514644351458 0.19272698063063173
+0.17627688361820237 0.5690235879884905 0.17627688361820237 0.5690235879884905 0.25535596226624185
+0.17627892429529846 0.5732111038737601 0.17627892429529846 0.5732111038737601 0.2507558299458052
+0.17963522842259316 0.566917249358036 0.17963522842259316 0.566917249358036 0.2581558888151032
+0.1829713863176363 0.5648077486301827 0.1829713863176363 0.5648077486301827 0.2609972940517686
+0.18626155897892313 0.5542978054417145 0.18626155897892313 0.5542978054417144 0.27344501163209944
+0.18627303191087632 0.5584761625716196 0.18627303191087632 0.5584761625716196 0.26875249009146324
+0.18628183442025592 0.5626820780384658 0.18628183442025592 0.5626820780384659 0.26387915959000224
+0.16612847347978396 0.5836819728769124 0.16612847347978396 0.5836819728769124 0.23926065495118962
+0.16951661773699522 0.5815895982392169 0.16951661773699522 0.5815895982392169 0.2414222411255562
+0.1729011415978886 0.5794959964459073 0.1729011415978886 0.5794959964459073 0.24371330528368865
+0.17627913578448573 0.5773986303890067 0.17627913578448573 0.5773986303890067 0.24611674127266223
+0.1661286175386655 0.5878660821637717 0.1661286175386655 0.5878660821637717 0.23515384096933878
+0.3507138114212332 0.3247128362632565 0.3507138114212332 0.3247128362632565 0.22967981455687533
+0.3472171720559342 0.32621030176980537 0.3472171720559342 0.3262103017698053 0.2207503214736721
+0.34375958148393976 0.32771977483842313 0.34375958148393976 0.32771977483842313 0.21195780638209152
+0.34038762473074047 0.32925765321269085 0.34038762473074047 0.3292576532126908 0.20343333278277545
+0.33695711420654134 0.3307325793826589 0.33695711420654134 0.33073257938265893 0.19498224820265994
+0.3334820822972018 0.33225911077176135 0.3334820822972018 0.33225911077176135 0.1866093042237704
+0.3298841260515744 0.33387967693629705 0.3298841260515744 0.33387967693629705 0.17820789446024532
+0.32628726576370926 0.335700302599569 0.32628726576370926 0.335700302599569 0.16995055344249363
+0.3232054631941206 0.33760925262669367 0.3232054631941206 0.33760925262669367 0.1629374860138841
+0.3200636128455836 0.33942665824584595 0.3200636128455836 0.3394266582458459 0.15625928522360544
+0.3168700960524344 0.341183251495129 0.3168700960524344 0.341183251495129 0.14997487835480383
+0.31368197481604093 0.3428688497232837 0.31368197481604093 0.3428688497232837 0.14425070601482415
+0.3107478446971986 0.3437232961910482 0.3107478446971986 0.3437232961910482 0.1399638256295099
+0.30896261383839974 0.3460318445900235 0.3089626138383998 0.3460318445900235 0.13644306921053362
+0.3062659944209339 0.3479596931273745 0.3062659944209339 0.3479596931273745 0.13256628127066097
+0.30342945537758814 0.3499205543131366 0.3034294553775881 0.3499205543131367 0.1291435848630782
+0.3005732223698126 0.35186501778641865 0.3005732223698126 0.35186501778641865 0.12639054842273903
+0.2977711666362996 0.35380678054197756 0.2977711666362996 0.35380678054197756 0.12436692166538678
+0.2950611514474621 0.35578706923685205 0.2950611514474621 0.35578706923685205 0.12305933490479715
+0.292492978899657 0.35782747020949596 0.29249297889965703 0.35782747020949596 0.12244799017848144
+0.28993483032558987 0.3599142257192926 0.2899348303255898 0.3599142257192926 0.1225309534312123
+0.28729130778582496 0.36205219803330335 0.28729130778582496 0.36205219803330335 0.12327991909393328
+0.2846363490738412 0.3642400317917233 0.2846363490738412 0.3642400317917233 0.12470953692175966
+0.2820014487618638 0.36646193733647725 0.2820014487618638 0.36646193733647725 0.12677862690825245
+0.2794080590994265 0.3687168866892449 0.2794080590994265 0.3687168866892449 0.12942811211718083
+0.27686989991062677 0.3710078251931499 0.27686989991062677 0.3710078251931499 0.132596249603572
+0.27436652841427595 0.3733417604773801 0.27436652841427595 0.3733417604773801 0.13624550042778852
+0.27186489901716965 0.3757259082637306 0.27186489901716965 0.3757259082637306 0.14035209617920985
+0.2693819638236647 0.3781561267535344 0.2693819638236647 0.37815612675353444 0.14484992775608982
+0.2669195971178808 0.38063102800574183 0.2669195971178808 0.38063102800574183 0.1496895021220435
+0.2644681999620145 0.3831278609128242 0.2644681999620145 0.3831278609128242 0.1548042014921318
+0.2620425708058935 0.38566888329495647 0.2620425708058935 0.38566888329495647 0.16016731848274965
+0.2596591596193912 0.3882434145287827 0.2596591596193912 0.3882434145287827 0.1657122930635251
+0.2573059783294852 0.39086032991469377 0.25730597832948515 0.39086032991469377 0.17142383368626646
+0.25497532700810627 0.39352685538633003 0.25497532700810627 0.39352685538633003 0.1772842097906856
+0.2526835167416242 0.3962426707933587 0.2526835167416242 0.3962426707933587 0.18325593689709252
+0.2504099252107837 0.3990036599685114 0.2504099252107837 0.3990036599685114 0.1893239207910062
+0.24814796222168523 0.4017952274576468 0.24814796222168525 0.4017952274576468 0.19544187219348477
+0.24589733746749387 0.4046047789877912 0.24589733746749384 0.4046047789877912 0.20156231396782123
+0.24366510226048674 0.4074369371300098 0.24366510226048674 0.4074369371300098 0.20766574734569665
+0.24146266365289668 0.4103200639131787 0.24146266365289668 0.4103200639131787 0.21377125954664147
+0.23936574696287416 0.4133080671721964 0.23936574696287413 0.4133080671721964 0.2199143013170944
+0.23737274235911165 0.4163268756629732 0.23737274235911165 0.41632687566297316 0.22598386098106107
+0.23536222735140103 0.4193781718773435 0.23536222735140103 0.4193781718773435 0.23200785356844453
+0.23329597236037988 0.4223902624568591 0.23329597236037988 0.4223902624568591 0.23783808221566974
+0.23116830468868058 0.4253734347280152 0.23116830468868058 0.4253734347280152 0.24347049866527762
+0.22892352028426355 0.42835764421750755 0.22892352028426358 0.4283576442175075 0.24894291421220607
+0.22657706391057236 0.43163180028507087 0.2265770639105724 0.4316318002850709 0.2547441675322011
+0.22568861982271604 0.43541618943963567 0.22568861982271607 0.4354161894396356 0.2609004713933625
+0.22398147544483832 0.43862057570288937 0.22398147544483835 0.4386205757028893 0.2660962443022743
+0.2221225306783139 0.4416753350502809 0.2221225306783139 0.4416753350502809 0.27080228125933353
+0.2201929733184265 0.4447260727644063 0.2201929733184265 0.4447260727644063 0.27526261554591813
+0.21816461795757677 0.4477456703041498 0.21816461795757677 0.4477456703041498 0.27942447926952824
+0.2162178371008442 0.45072598017371895 0.21621783710084416 0.45072598017371895 0.2832736494823105
+0.21420963581376873 0.4535665399007145 0.2142096358137687 0.45356653990071455 0.28669223661218274
+0.21612935651163334 0.4562769678754995 0.21612935651163334 0.4562769678754995 0.29028918805167075
+0.21418043931371267 0.4591870830671559 0.2141804393137127 0.4591870830671559 0.2934811629015884
+0.212423156487137 0.46198111942990616 0.21242315648713703 0.46198111942990616 0.296247227919816
+0.2108333965697832 0.4653457109558863 0.2108333965697832 0.4653457109558863 0.2993688339044434
+0.20915033659897372 0.468714563024482 0.20915033659897372 0.468714563024482 0.30213539235115044
+0.2041565732095537 0.4783723024981323 0.2041565732095537 0.4783723024981323 0.3080406422898671
+0.20580858638201016 0.47540257609987824 0.2058085863820102 0.4754025760998783 0.3065937952644034
+0.20747706608381497 0.47203918859111355 0.20747706608381497 0.47203918859111355 0.3045237751169101
+0.20533516414778555 0.4809250695714936 0.20533516414778555 0.4809250695714936 0.3099035217034737
+0.2043891761094468 0.48386412410004337 0.20438917610944676 0.48386412410004337 0.31122657701333606
+0.2030123286536391 0.48717616572397915 0.20301232865363913 0.4871761657239792 0.3121596930961776
+0.19631667794882096 0.5051824666449408 0.196316677948821 0.5051824666449408 0.31169989080764243
+0.20150654638879123 0.490717780514973 0.20150654638879126 0.490717780514973 0.3127738103891533
+0.20014969050786924 0.4942599285524675 0.20014969050786924 0.4942599285524674 0.3130465870749513
+0.19898316768432694 0.4978232381319774 0.19898316768432697 0.49782323813197743 0.31299927388818793
+0.19783934864766903 0.5013305440788433 0.19783934864766903 0.5013305440788433 0.31255878742283133
+0.1928157382131433 0.5250475575614422 0.19281573821314327 0.5250475575614422 0.3021620115896417
+0.1933083561522027 0.5204669338548868 0.19330835615220268 0.5204669338548867 0.30520237859555394
+0.19558081117168946 0.5174646253232786 0.19558081117168946 0.5174646253232786 0.3073950571005768
+0.19575077568002214 0.5141957739401675 0.1957507756800221 0.5141957739401675 0.3089850893377717
+0.19669100837746534 0.509751469895186 0.19669100837746534 0.509751469895186 0.31094106341450317
+0.19921848580392376 0.5066666194602762 0.19921848580392376 0.5066666194602762 0.3124469829877984
+0.19271733702769667 0.5292497128361336 0.19271733702769667 0.5292497128361336 0.2991520316796847
+0.19268820858828573 0.5335994394113429 0.19268820858828573 0.5335994394113429 0.2956959334882243
+0.18938980351415957 0.5397723943626473 0.18938980351415957 0.5397723943626475 0.28917628887274577
+0.19258909294748197 0.5378252603862713 0.19258909294748197 0.5378252603862713 0.29189730907585826
+0.18950684421368502 0.5439572141427893 0.18950684421368502 0.5439572141427894 0.2851618858853043
+0.18960879581844048 0.5480938192426027 0.18960879581844048 0.5480938192426027 0.28089898892702925
+0.1895430607159825 0.5521731792159214 0.1895430607159825 0.5521731792159214 0.27643243418275687
+0.3545988291022664 0.32011194545614646 0.3545988291022664 0.32011194545614646 0.24118141141599272
+0.3542117984336339 0.3235253033475817 0.3542117984336339 0.3235253033475817 0.23849434916551146
+0.36418043617014023 0.3036624059472151 0.36418043617014023 0.3036624059472151 0.26870858012132987
+0.3590029506600014 0.3118192604279828 0.3590029506600014 0.3118192604279828 0.2549849491670431
+0.36337083460931646 0.3071563730643632 0.36337083460931646 0.3071563730643632 0.266143944611089
+0.3626727267062839 0.31067120716242225 0.3626727267062839 0.31067120716242225 0.26357016050215926
+0.35855008078928524 0.3154015978717848 0.35855008078928524 0.3154015978717848 0.2524774439629787
+0.3580968672876046 0.31892248045657456 0.3580968672876046 0.3189224804565746 0.249853492436764
+0.3759776982363942 0.2875301416629261 0.3759776982363942 0.2875301416629261 0.29170546928604096
+0.36904092125771437 0.2956278207724163 0.36904092125771437 0.2956278207724163 0.2795494648110248
+0.3748259893611259 0.29091317406250317 0.3748259893611259 0.2909131740625032 0.2903367373949695
+0.37263099194186894 0.2940979293297186 0.372630991941869 0.2940979293297186 0.2866400052069457
+0.36847123418617284 0.29921080550297136 0.36847123418617284 0.29921080550297136 0.278304624865145
+0.3677920515897243 0.30273549625682583 0.3677920515897242 0.30273549625682583 0.27653684301511094
+0.3894733591838219 0.2723086484026551 0.3894733591838219 0.2723086484026551 0.30601669754557653
+0.3811132664867226 0.28030335415121 0.38111326648672256 0.28030335415121005 0.29797385853949504
+0.38841178656630326 0.27561526698015343 0.38841178656630326 0.27561526698015343 0.3066308727519362
+0.3844639602811798 0.27964544502342603 0.38446396028117974 0.27964544502342603 0.30302257866084487
+0.3873611059704557 0.2788681370152223 0.38736110597045575 0.27886813701522234 0.3070164824578617
+0.3803221453525911 0.2836370617815589 0.3803221453525911 0.2836370617815589 0.2980700558598373
+0.37940678072222805 0.28695906876617844 0.37940678072222805 0.28695906876617844 0.29769506532593265
+0.4046685358572717 0.2577263522393547 0.40466853585727164 0.2577263522393547 0.31111379533100547
+0.395166230202715 0.2651623102517285 0.395166230202715 0.2651623102517285 0.30806008232082743
+0.4033151026530062 0.26107012401274515 0.4033151026530062 0.26107012401274515 0.3127289885948932
+0.39860462033488603 0.26476353855777235 0.39860462033488603 0.2647635385577724 0.31138347724620535
+0.4020353225705617 0.2644051595408692 0.4020353225705617 0.2644051595408692 0.31435711956212464
+0.3940083694118833 0.26854964216889976 0.3940083694118833 0.26854964216889976 0.3091939391957584
+0.3928712750928059 0.2718701980577133 0.3928712750928059 0.27187019805771323 0.31017395695924505
+0.42965168863449926 0.23774459666881695 0.42965168863449926 0.23774459666881695 0.30076662811935656
+0.4275250836376199 0.24087260276571598 0.4275250836376198 0.24087260276571598 0.30353275631794
+0.42539205507660566 0.24397372948934823 0.42539205507660566 0.24397372948934823 0.30620770739067815
+0.42330960700877734 0.24691756177737056 0.42330960700877734 0.2469175617773706 0.30865872040148257
+0.42160901375639204 0.24939491090668753 0.42160901375639204 0.24939491090668753 0.3106184399260396
+0.40967717515381175 0.25421561222335254 0.40967717515381175 0.25421561222335254 0.31147438782903686
+0.4133010668041731 0.25396893778461144 0.41330106680417306 0.25396893778461144 0.31289962431910606
+0.4164117080338193 0.25318658494767254 0.4164117080338193 0.25318658494767254 0.31312937321475026
+0.4217972889340976 0.2522148860508876 0.4217972889340977 0.25221488605088765 0.31302765760515955
+0.41929154098292004 0.2543711112635681 0.41929154098292004 0.2543711112635681 0.31477771787935754
+0.40822913438741093 0.2575086598677905 0.40822913438741093 0.2575086598677905 0.31330080495446705
+0.4376090018878014 0.23174966734723115 0.43760900188780133 0.23174966734723115 0.29229350977456736
+0.43552779680876824 0.23485832180513375 0.43552779680876824 0.23485832180513375 0.29563663412351787
+0.4413868907741307 0.23200395967395768 0.4413868907741307 0.23200395967395768 0.2888956690731183
+0.4334261048627803 0.23797841301933628 0.4334261048627804 0.23797841301933628 0.29891569494566866
+0.4696930256595217 0.21489397571567045 0.4696930256595217 0.21489397571567045 0.23051120529588573
+0.46732281676164117 0.21733227079987213 0.46732281676164117 0.21733227079987213 0.23746782949546938
+0.46495765908804504 0.21973870537874998 0.46495765908804504 0.21973870537874998 0.24411144464829546
+0.4625863979545571 0.22213498619943195 0.4625863979545571 0.22213498619943195 0.2504842938642389
+0.46019997940229285 0.22454140055199331 0.46019997940229285 0.22454140055199331 0.25662258056568416
+0.4577756707724239 0.22700122029722988 0.4577756707724239 0.22700122029722988 0.2625967548002775
+0.4452380911091716 0.23220628455359338 0.4452380911091716 0.23220628455359335 0.28470824032708014
+0.4490915688609738 0.23227004168230309 0.44909156886097373 0.2322700416823031 0.2797313551020049
+0.4553173020548003 0.22952660946371278 0.4553173020548003 0.22952660946371276 0.2684029456846115
+0.4528698812492915 0.2326205348552478 0.4528698812492915 0.23262053485524783 0.27430035505427197
+0.4915109793615248 0.20620755055086007 0.4915109793615248 0.20620755055086007 0.16139221212680752
+0.47811392165345745 0.21080485275061062 0.4781139216534575 0.2108048527506106 0.20591448808618915
+0.4889856488382995 0.20852113905169956 0.4889856488382995 0.20852113905169958 0.17107059923776743
+0.4812871443811164 0.21200482629859713 0.4812871443811164 0.21200482629859715 0.19721547716270646
+0.4867773289775906 0.21079281439918124 0.4867773289775906 0.21079281439918127 0.17947136227962243
+0.4844940447395577 0.21325386029730037 0.48449404473955765 0.2132538602973004 0.18797135130212494
+0.475574341545403 0.21346257680653108 0.475574341545403 0.21346257680653105 0.2144182368752314
+0.4731757267506067 0.21597521384580218 0.4731757267506067 0.21597521384580218 0.2221716096716626
+0.5144798203832166 0.19959037858573947 0.5144798203832166 0.19959037858573947 0.07376057266314738
+0.5003889492747 0.20288564777162788 0.5003889492746999 0.20288564777162788 0.12829633125470472
+0.5118111377767648 0.20155325600552837 0.5118111377767648 0.2015532560055284 0.08461580158729827
+0.5037814440170681 0.2040669889473367 0.5037814440170681 0.20406698894733674 0.1162382185933043
+0.5093855248937582 0.2033899958225417 0.5093855248937582 0.20338999582254172 0.09463120633880732
+0.5068128594145038 0.20478970467996926 0.5068128594145038 0.2047897046799693 0.10504637663268321
+0.4977278354936198 0.20519042058938342 0.4977278354936198 0.2051904205893834 0.1390810865854892
+0.49504788803199135 0.20749393226831003 0.49504788803199135 0.20749393226831003 0.14978364767321672
+0.5240291179739001 0.1963063614461595 0.5240291179739001 0.1963063614461595 0.04005081562765261
+0.5276943090461943 0.19834866035696175 0.5276943090461943 0.19834866035696175 0.032911338365838934
+0.5209364750688309 0.19888016418438345 0.5209364750688309 0.19888016418438345 0.05019183913293352
+0.5180057826055752 0.20093797232471775 0.5180057826055752 0.20093797232471775 0.06109206286033408
+0.5308981797035965 0.20003153838814536 0.5308981797035965 0.20003153838814533 0.03233022862306073
+0.5543944587225064 0.17967200584665835 0.5543944587225064 0.17967200584665835 0.10362896524659564
+0.5481198587120175 0.18302293108330445 0.5481198587120176 0.18302293108330445 0.08143221841589966
+0.552312032168394 0.18304252414479238 0.552312032168394 0.18304252414479238 0.09788647722496639
+0.5337010472050627 0.19914119956918414 0.5337010472050627 0.19914119956918414 0.03625820245161975
+0.5359038386229558 0.19636356582940212 0.5359038386229558 0.1963635658294021 0.04133821265621756
+0.5393210555385033 0.19528497780241233 0.5393210555385033 0.19528497780241233 0.052433504783818516
+0.5460242661251663 0.1863585342079778 0.5460242661251663 0.1863585342079778 0.07492891222542948
+0.5439100121996467 0.18961320804026666 0.5439100121996469 0.18961320804026663 0.06802180539485335
+0.5413493831121614 0.19277123661293533 0.5413493831121614 0.1927712366129353 0.05921566942007648
+0.558580739524407 0.1796733204438696 0.558580739524407 0.1796733204438696 0.11987550935089032
+0.5627667813923093 0.17967229737826265 0.5627667813923093 0.17967229737826265 0.13610470374979675
+0.569039649454213 0.1762925837376703 0.569039649454213 0.1762925837376703 0.1561856554593436
+0.5669495255956479 0.17967530327400463 0.5669495255956479 0.17967530327400463 0.15222315462274508
+0.573223421842952 0.17629421667440912 0.573223421842952 0.17629421667440912 0.17167680336032043
+0.5794981155353012 0.17290889842482027 0.5794981155353013 0.17290889842482027 0.18947810854660904
+0.5774068789852768 0.17629651501235014 0.5774068789852768 0.17629651501235014 0.18694551041339216
+0.5857740585710837 0.16951916475535808 0.5857740585710837 0.16951916475535808 0.2057571819274435
+0.5836820222558998 0.17290951451361472 0.5836820222558998 0.17290951451361472 0.20405867030921745
+0.6234309623430803 0.12883456521641978 0.6234309623430803 0.12883456521641978 0.2642547719709772
+0.6171548117154649 0.13222494851158872 0.6171548117154649 0.13222494851158872 0.24890889610820488
+0.6213389121338752 0.13222494851158872 0.6213389121338752 0.13222494851158872 0.26116694477092683
+0.6150627615062598 0.13561533180675767 0.6150627615062598 0.13561533180675767 0.2460027415127178
+0.6129707112970547 0.1390057151019266 0.6129707112970547 0.1390057151019266 0.24345107151190093
+0.6108786610878496 0.14239609839709555 0.6108786610878497 0.14239609839709555 0.2412792730543649
+0.6046025104602343 0.1457864816922645 0.6046025104602343 0.1457864816922645 0.22685634173310135
+0.6025104602510292 0.14917686498743343 0.6025104602510291 0.14917686498743343 0.22539438683538407
+0.6004184100418241 0.15256724828260237 0.6004184100418241 0.15256724828260237 0.22422285654522464
+0.598326359832619 0.15595763157777132 0.598326359832619 0.15595763157777132 0.22326626650311665
+0.5962343096234138 0.15934801487294026 0.5962343096234138 0.15934801487294026 0.2224350767475032
+0.5941422594140994 0.162738398168055 0.5941422594140994 0.162738398168055 0.2216307928930664
+0.592050209203778 0.1661287814626696 0.5920502092037782 0.1661287814626696 0.2207511794756576
+0.5899581589933364 0.16951916475723552 0.5899581589933364 0.16951916475723552 0.21969519958525915
+0.6087866108786445 0.1457864816922645 0.6087866108786445 0.1457864816922645 0.23948921246740837
+0.6338912133891058 0.11866341533091296 0.6338912133891058 0.11866341533091296 0.2854031463939148
+0.638075313807516 0.11866341533091296 0.638075313807516 0.11866341533091296 0.29595990270617095
+0.6317991631799007 0.1220537986260819 0.6317991631799007 0.1220537986260819 0.28228181257333174
+0.6297071129706956 0.12544418192125084 0.6297071129706956 0.12544418192125084 0.27913801647278597
+0.6276150627614905 0.12883456521641978 0.6276150627614906 0.12883456521641978 0.2760614246620194
+0.6589958158995671 0.09154034896956142 0.6589958158995671 0.09154034896956142 0.31366177461091915
+0.656903765690362 0.09493073226473037 0.656903765690362 0.09493073226473037 0.31422616922576957
+0.6548117154811569 0.09832111555989931 0.6548117154811569 0.09832111555989931 0.3143139860415633
+0.6527196652719518 0.10171149885506825 0.6527196652719517 0.10171149885506825 0.3139301004342853
+0.6506276150627467 0.10510188215023719 0.6506276150627467 0.10510188215023719 0.31309232963803096
+0.6485355648535416 0.10849226544540613 0.6485355648535416 0.10849226544540613 0.3118314348016482
+0.6464435146443365 0.11188264874057507 0.6464435146443365 0.11188264874057507 0.310190709597735
+0.6443514644351314 0.11527303203574402 0.6443514644351315 0.11527303203574402 0.3082251080342559
+0.6422594142259263 0.11866341533091296 0.6422594142259263 0.11866341533091296 0.30599986850253774
+0.6652719665271825 0.08814996567439248 0.6652719665271825 0.08814996567439248 0.3184390559401773
+0.6631799163179773 0.09154034896956142 0.6631799163179773 0.09154034896956142 0.3197708923001718
+0.6715481171547978 0.08475958237922354 0.6715481171547978 0.08475958237922354 0.32194502944335174
+0.6694560669455927 0.08814996567439248 0.6694560669455926 0.08814996567439248 0.3238529489649698
+0.6778242677824131 0.0813691990840546 0.6778242677824132 0.0813691990840546 0.3246580857322012
+0.675732217573208 0.08475958237922354 0.675732217573208 0.08475958237922354 0.32690576431511714
+0.6841004184100284 0.07797881578888566 0.6841004184100284 0.07797881578888566 0.32711302385861946
+0.6820083682008233 0.0813691990840546 0.6820083682008233 0.0813691990840546 0.32944746291865284
+0.6903765690376438 0.07458843249371672 0.6903765690376438 0.07458843249371672 0.32983675009996855
+0.6882845188284387 0.07797881578888566 0.6882845188284387 0.07797881578888566 0.3320232577536852
+0.6987447698744642 0.06780766590337883 0.6987447698744642 0.06780766590337883 0.33145861683635025
+0.6966527196652591 0.07119804919854777 0.6966527196652591 0.07119804919854777 0.33327520740636224
+0.694560669456054 0.07458843249371672 0.6945606694560541 0.07458843249371672 0.3351340902337773
+0.7050209205020795 0.06441728260820989 0.7050209205020795 0.06441728260820989 0.33632257052240583
+0.7029288702928744 0.06780766590337883 0.7029288702928743 0.06780766590337883 0.337724705852597
+0.7112970711296949 0.06102689931304095 0.711297071129695 0.06102689931304095 0.34223910789424733
+0.7092050209204898 0.06441728260820989 0.7092050209204898 0.06441728260820989 0.34328354770856523
+0.7175732217573102 0.05763651601787201 0.7175732217573102 0.05763651601787201 0.3490014681465537
+0.7154811715481051 0.06102689931304095 0.7154811715481051 0.06102689931304095 0.34983659250081706
+0.7238493723849255 0.054246132722703067 0.7238493723849255 0.054246132722703067 0.35623715674956685
+0.7217573221757204 0.05763651601787201 0.7217573221757204 0.05763651601787201 0.3570764091342083
+0.7301255230125409 0.050855749427534125 0.7301255230125409 0.050855749427534125 0.36346766714200657
+0.7280334728033357 0.054246132722703067 0.7280334728033359 0.054246132722703067 0.3645541603204103
+0.7364016736401562 0.04746536613236518 0.7364016736401561 0.04746536613236518 0.3701766638762943
+0.7343096234309511 0.050855749427534125 0.7343096234309511 0.050855749427534125 0.3717466133517382
+0.7426778242677715 0.04407498283719624 0.7426778242677715 0.04407498283719624 0.37587405364284826
+0.7405857740585664 0.04746536613236518 0.7405857740585664 0.04746536613236518 0.3781249605178259
+0.751046025104592 0.03729421624685836 0.751046025104592 0.03729421624685836 0.3766667415095497
+0.7489539748953868 0.0406845995420273 0.7489539748953868 0.0406845995420273 0.3801480221741971
+0.7468619246861817 0.04407498283719624 0.7468619246861817 0.04407498283719624 0.38321488200578063
+0.7573221757322073 0.03390383295168942 0.7573221757322073 0.03390383295168942 0.37842084106057405
+0.7552301255230022 0.03729421624685836 0.7552301255230022 0.03729421624685836 0.3827017225156259
+0.7635983263598226 0.030513449656520475 0.7635983263598226 0.030513449656520475 0.37836758968123935
+0.7615062761506175 0.03390383295168942 0.7615062761506176 0.03390383295168942 0.3833744051307375
+0.7698744769874379 0.027123066361351533 0.7698744769874378 0.027123066361351533 0.37656335811751185
+0.7677824267782328 0.030513449656520475 0.7677824267782328 0.030513449656520475 0.3821483116778759
+0.7761506276150533 0.02373268306618259 0.7761506276150533 0.02373268306618259 0.373188992417056
+0.7740585774058482 0.027123066361351533 0.7740585774058482 0.027123066361351533 0.379143180389048
+0.7824267782426686 0.02034229977101365 0.7824267782426686 0.02034229977101365 0.3685286651065614
+0.7803347280334635 0.02373268306618259 0.7803347280334635 0.02373268306618259 0.37460034448945945
+0.7887029288702839 0.01695191647584471 0.7887029288702839 0.01695191647584471 0.36294209275945327
+0.7866108786610788 0.02034229977101365 0.7866108786610787 0.02034229977101365 0.3688585673486702
+0.7949790794978993 0.013561533180675767 0.7949790794978994 0.013561533180675767 0.35683324174112907
+0.7928870292886941 0.01695191647584471 0.7928870292886941 0.01695191647584471 0.3623241543804841
+0.8012552301255146 0.010171149885506825 0.8012552301255146 0.010171149885506825 0.35061934809235584
+0.7991631799163095 0.013561533180675767 0.7991631799163095 0.013561533180675767 0.3554385204583934
+0.8075313807531299 0.006780766590337883 0.8075313807531298 0.006780766590337883 0.34470452646381977
+0.8054393305439248 0.010171149885506825 0.8054393305439248 0.010171149885506825 0.34864707680199664
+0.8117154811715401 0.006780766590337883 0.8117154811715402 0.006780766590337883 0.34237362467145793
+0.006780766590337709 0.8158995815899557 0.006780766590337709 0.8158995815899557 0.08828594866746854
+0.01017114988550656 0.8096234309623407 0.01017114988550656 0.8096234309623407 0.09294326365850282
+0.01017114988550656 0.8138075313807507 0.01017114988550656 0.8138075313807507 0.09002235227012716
+0.013561533180675408 0.8033472803347257 0.013561533180675408 0.8033472803347257 0.09827709959513797
+0.013561533180675408 0.8075313807531357 0.013561533180675408 0.8075313807531357 0.09502577478910702
+0.016951916475844264 0.7970711297071107 0.016951916475844264 0.7970711297071107 0.10412846392538307
+0.016951916475844264 0.8012552301255207 0.016951916475844264 0.8012552301255207 0.10065097933135396
+0.02034229977101312 0.7907949790794957 0.02034229977101312 0.7907949790794957 0.11031978431882107
+0.02034229977101312 0.7949790794979057 0.02034229977101312 0.7949790794979057 0.10672355817350997
+0.02373268306618197 0.7845188284518807 0.02373268306618197 0.7845188284518807 0.11665820173361775
+0.02373268306618197 0.7887029288702907 0.02373268306618197 0.7887029288702907 0.1130498476386451
+0.027123066361350822 0.7782426778242657 0.027123066361350822 0.7782426778242657 0.12294128808073333
+0.027123066361350822 0.7824267782426757 0.027123066361350822 0.7824267782426757 0.11942287327018213
+0.030513449656519673 0.7719665271966507 0.030513449656519673 0.7719665271966507 0.12896520877631537
+0.030513449656519673 0.7761506276150607 0.030513449656519673 0.7761506276150607 0.12563045189784502
+0.033903832951688535 0.7656903765690357 0.033903832951688535 0.7656903765690357 0.1345348660235832
+0.033903832951688535 0.7698744769874457 0.033903832951688535 0.7698744769874457 0.13146514105949383
+0.03729421624685738 0.7594142259414207 0.03729421624685738 0.7594142259414207 0.13947536369666902
+0.03729421624685738 0.7635983263598307 0.03729421624685738 0.7635983263598307 0.13673550128470954
+0.040684599542026224 0.7573221757322157 0.040684599542026224 0.7573221757322157 0.14127808280411844
+0.0440749828371951 0.7510460251046007 0.0440749828371951 0.7510460251046007 0.14496956593265953
+0.0440749828371951 0.7552301255230107 0.0440749828371951 0.7552301255230107 0.14276047294112762
+0.04746536613236394 0.7447698744769857 0.04746536613236394 0.7447698744769857 0.1477384922993007
+0.04746536613236394 0.7489539748953957 0.04746536613236394 0.7489539748953957 0.1459279256792303
+0.05085574942753279 0.7384937238493707 0.05085574942753279 0.7384937238493707 0.14957595707124474
+0.05085574942753279 0.7426778242677807 0.05085574942753279 0.7426778242677807 0.14813865095049558
+0.05424613272270165 0.7322175732217557 0.054246132722701644 0.7322175732217557 0.15054442787232444
+0.05424613272270165 0.7364016736401657 0.054246132722701644 0.7364016736401657 0.1494208547300422
+0.05763651601787049 0.7259414225941407 0.05763651601787049 0.7259414225941407 0.15078345179750993
+0.05763651601787049 0.7301255230125507 0.05763651601787049 0.7301255230125507 0.14987877258009072
+0.06102689931303934 0.7196652719665257 0.06102689931303934 0.7196652719665257 0.15051037746972507
+0.06102689931303934 0.7238493723849357 0.06102689931303934 0.7238493723849357 0.14969613936097692
+0.06441728260820821 0.7133891213389107 0.06441728260820821 0.7133891213389107 0.15001345441289812
+0.06441728260820821 0.7175732217573207 0.06441728260820821 0.7175732217573207 0.14913344644317317
+0.06780766590337706 0.7071129707112958 0.06780766590337706 0.7071129707112958 0.14963418539834958
+0.06780766590337706 0.7112970711297057 0.06780766590337706 0.7112970711297057 0.14851591672408146
+0.0711980491985459 0.7008368200836808 0.0711980491985459 0.7008368200836808 0.14973647356559452
+0.0711980491985459 0.7050209205020908 0.0711980491985459 0.7050209205020908 0.14820901511355788
+0.07458843249371476 0.6987447698744758 0.07458843249371476 0.6987447698744758 0.14857999863195862
+0.07797881578888362 0.6924686192468608 0.07797881578888362 0.6924686192468608 0.14994850325817086
+0.07797881578888362 0.6966527196652708 0.07797881578888362 0.6966527196652708 0.14753486416452355
+0.08136919908405248 0.6861924686192458 0.08136919908405248 0.6861924686192458 0.15253573449754795
+0.08136919908405248 0.6903765690376558 0.08136919908405248 0.6903765690376558 0.14943509549510445
+0.08475958237922132 0.6799163179916308 0.08475958237922132 0.6799163179916308 0.1564266967095991
+0.08475958237922132 0.6841004184100408 0.08475958237922132 0.6841004184100408 0.15264367857319852
+0.08814996567439015 0.6736401673640158 0.08814996567439015 0.6736401673640158 0.1615581275530493
+0.08814996567439015 0.6778242677824258 0.08814996567439015 0.6778242677824258 0.1571685341476378
+0.09154034896955902 0.6673640167364008 0.09154034896955902 0.6673640167364008 0.16773556603649498
+0.09154034896955902 0.6715481171548108 0.09154034896955902 0.6715481171548108 0.1628716676254526
+0.09493073226472787 0.6610878661087858 0.09493073226472787 0.6610878661087858 0.17467199908214073
+0.09493073226472787 0.6652719665271958 0.09493073226472787 0.6652719665271958 0.16950019385025894
+0.09832111555989675 0.6589958158995808 0.09832111555989675 0.6589958158995808 0.17673256898423714
+0.10171149885506564 0.6569037656903758 0.10171149885506563 0.6569037656903758 0.1788785451471162
+0.10510188215023453 0.6548117154811708 0.10510188215023453 0.6548117154811708 0.18107272443015252
+0.10849226544540343 0.6527196652719658 0.10849226544540343 0.6527196652719658 0.1832774774770306
+0.11188264874057234 0.6506276150627608 0.11188264874057234 0.6506276150627608 0.1854565379261629
+0.11527303203574124 0.6485355648535558 0.11527303203574124 0.6485355648535558 0.1875765846598021
+0.11866341533091013 0.6422594142259408 0.11866341533091011 0.6422594142259408 0.19464006059217165
+0.12205379862607901 0.6401673640167358 0.12205379862607901 0.6401673640167358 0.1964259469860725
+0.13222494851158573 0.6255230125523008 0.13222494851158573 0.6255230125523008 0.20923846337839666
+0.1390057151019235 0.6171548117154808 0.1390057151019235 0.6171548117154808 0.21481422862881408
+0.1423960983970924 0.6150627615062758 0.1423960983970924 0.6150627615062758 0.2156389399626795
+0.1491768649874302 0.6066945606694558 0.1491768649874302 0.6066945606694558 0.22083933396452426
+0.1525672482825991 0.6046025104602508 0.15256724828259907 0.6046025104602508 0.22182303534329947
+0.15595763157776799 0.6025104602510458 0.15595763157776799 0.6025104602510458 0.22291105584899132
+0.1593480148729369 0.5962343096234308 0.1593480148729369 0.5962343096234308 0.22790096162160764
+0.16273839816810579 0.5941422594142258 0.16273839816810579 0.5941422594142258 0.22939836061152705
+0.1661287325389862 0.5920501981199667 0.1661287325389862 0.5920501981199667 0.23104295821863086
+0.1593480148729369 0.6004184100418408 0.1593480148729369 0.6004184100418408 0.2241189120687788
+0.1457864816922613 0.6129707112970708 0.1457864816922613 0.6129707112970708 0.21646534257784422
+0.1491768649874302 0.6108786610878658 0.1491768649874302 0.6108786610878658 0.21732098997333105
+0.1356153318067546 0.6234309623430958 0.13561533180675459 0.6234309623430958 0.21023729280082046
+0.1390057151019235 0.6213389121338908 0.1390057151019235 0.6213389121338908 0.2111566857790216
+0.12544418192124793 0.6338912133891208 0.12544418192124793 0.6338912133891208 0.2026113193350116
+0.12544418192124793 0.6380753138075308 0.12544418192124793 0.6380753138075308 0.19807359716493764
+0.1288345652164168 0.6317991631799158 0.1288345652164168 0.6317991631799158 0.2039714439007377
+0.13222494851158573 0.6297071129707108 0.13222494851158573 0.6297071129707108 0.20519897740421508
+0.11866341533091013 0.6464435146443508 0.11866341533091011 0.6464435146443508 0.18960856349633937
+0.179640365999904 0.5711060676653047 0.179640365999904 0.5711060676653047 0.2534116014338181
+0.17964377337257612 0.575295490018764 0.17964377337257612 0.575295490018764 0.24861476660807624
+0.18298196634605055 0.568998827340499 0.18298196634605055 0.568998827340499 0.2561250615878545
+0.18630261055837105 0.5668904409105006 0.18630261055837105 0.5668904409105006 0.25887991397036786
+0.1895523823185341 0.5563041919367385 0.1895523823185341 0.5563041919367385 0.27175475750972083
+0.1895738757258815 0.5605120611937332 0.1895738757258815 0.5605120611937332 0.266821566962614
+0.18957663680238357 0.5647730846943205 0.18957663680238357 0.5647730846943205 0.2616745778074208
+0.16951689753849322 0.5857735271934881 0.16951689753849322 0.5857735271934881 0.2371269908658149
+0.1729005370291898 0.5836802224035287 0.1729005370291898 0.5836802224035287 0.2392337146189434
+0.17627752930465432 0.5815848235021067 0.17627752930465432 0.5815848235021067 0.24145918938981548
+0.17964322488584206 0.5794841742025088 0.17964322488584206 0.5794841742025088 0.24378952295641823
+0.16951761488418116 0.5899574593847626 0.16951761488418116 0.5899574593847626 0.23283078744951638
+0.35372356989266573 0.3267110921676394 0.35372356989266573 0.3267110921676393 0.23561142137514257
+0.3503988416211115 0.3282697927380345 0.3503988416211115 0.3282697927380345 0.22690454799346013
+0.3470071915665692 0.32977792725928884 0.3470071915665692 0.32977792725928884 0.2180742526247801
+0.34360812513088285 0.3312676893446789 0.34360812513088285 0.3312676893446789 0.20929990455184475
+0.3402175275095198 0.3327430970490585 0.3402175275095198 0.3327430970490585 0.20067691910317034
+0.3368061052811049 0.3342387202043104 0.3368061052811049 0.3342387202043104 0.19216141871401796
+0.3333695498554963 0.33583941744622425 0.3333695498554963 0.33583941744622425 0.183743434141349
+0.32993366436804034 0.3375704991948905 0.32993366436804034 0.3375704991948905 0.17550033416179864
+0.3265811054649367 0.3394346710938074 0.32658110546493674 0.3394346710938074 0.16762695146903817
+0.3234634966843834 0.3412261597451207 0.3234634966843834 0.3412261597451207 0.16061896310615478
+0.3201634312580936 0.34299749759469583 0.3201634312580936 0.34299749759469583 0.1537141969464527
+0.3167590219183124 0.34481309494002216 0.31675902191831234 0.34481309494002216 0.14713509322866436
+0.312681405725315 0.34660898255351635 0.31268140572531505 0.3466089825535163 0.14039646992577717
+0.30976371835547334 0.349232646366743 0.30976371835547334 0.349232646366743 0.135295660708266
+0.30686449848942576 0.3513533164589684 0.30686449848942576 0.3513533164589684 0.13123016622967187
+0.3039483069571887 0.3533571037099697 0.3039483069571887 0.3533571037099697 0.1279179100164378
+0.3010770046267775 0.35526383137552064 0.3010770046267775 0.3552638313755207 0.12541403813664978
+0.29830556542511577 0.3571462109437328 0.2983055654251157 0.35714621094373283 0.12370935251368305
+0.29565707245128925 0.3591583221575661 0.29565707245128925 0.3591583221575661 0.12270290738122831
+0.2935063741169398 0.36121129930204987 0.29350637411693986 0.3612112993020498 0.12248254917787528
+0.290835290461085 0.3632861387176504 0.29083529046108497 0.3632861387176504 0.12286345491390742
+0.2881599503523819 0.36544879421989873 0.2881599503523819 0.36544879421989873 0.12398377892282143
+0.28550707500132394 0.3676417430342669 0.28550707500132394 0.3676417430342669 0.12580049428624676
+0.28291121967165106 0.36985807559939254 0.28291121967165106 0.36985807559939254 0.1282406490773447
+0.2803964295700986 0.3721067234900581 0.28039642957009864 0.3721067234900581 0.1312280969984196
+0.27793798894588323 0.3743971939867207 0.27793798894588323 0.3743971939867207 0.13472784699286874
+0.2754764237454533 0.37673903678896714 0.2754764237454533 0.37673903678896714 0.13873048793529028
+0.27300803098219306 0.3791329130886494 0.2730080309821931 0.3791329130886494 0.1431842449792918
+0.27055443942209867 0.3815671053683281 0.27055443942209867 0.3815671053683281 0.1480118465791885
+0.2681103722524382 0.3840276863893172 0.2681103722524382 0.3840276863893172 0.15315115724757386
+0.2656973701951396 0.38652603421116494 0.26569737019513967 0.38652603421116494 0.1585504268167334
+0.2633353390673842 0.3890601966833606 0.2633353390673842 0.3890601966833606 0.16414871938950515
+0.2610061692111161 0.39163676668573216 0.2610061692111161 0.39163676668573216 0.16993030339302795
+0.25868673021043254 0.394262732349338 0.25868673021043254 0.394262732349338 0.17588682990456242
+0.2564160483059946 0.39693414391735654 0.25641604830599457 0.39693414391735654 0.18195087515923059
+0.2541572439442051 0.39963512554543856 0.2541572439442051 0.3996351255454385 0.18809532284984323
+0.25189795948932525 0.40238692624033656 0.2518979594893253 0.4023869262403366 0.19433472135482818
+0.24966685833099955 0.4051638302422291 0.24966685833099955 0.4051638302422291 0.20058202653044635
+0.24747701148827994 0.40796591518666947 0.24747701148827997 0.40796591518666947 0.20680635499546973
+0.24531769448347232 0.41080824649957076 0.24531769448347232 0.41080824649957076 0.2130174983783928
+0.24318962512946565 0.41370644896077063 0.24318962512946565 0.41370644896077063 0.21922067717564106
+0.24115242897145947 0.4166651021148568 0.24115242897145947 0.4166651021148568 0.22539132022814526
+0.23913368434658544 0.41965337858101237 0.23913368434658544 0.4196533785810123 0.23149089278160084
+0.2371045314599638 0.42265411684278065 0.2371045314599638 0.4226541168427806 0.23747354462989176
+0.235051322742615 0.42565632988629437 0.235051322742615 0.42565632988629437 0.24329932453146644
+0.23296624100089885 0.4286826963014363 0.23296624100089883 0.4286826963014363 0.2489927258454652
+0.2309250594197535 0.43176926183188 0.23092505941975353 0.43176926183187997 0.25458568578160273
+0.22926230381857976 0.4350456836278147 0.22926230381857973 0.43504568362781465 0.2602107858164362
+0.2276251150080982 0.43842336810303695 0.2276251150080982 0.438423368103037 0.26581051293024066
+0.22585199403182074 0.4416199920408102 0.22585199403182074 0.4416199920408102 0.27088908710813847
+0.2239957562971343 0.44473030272947 0.22399575629713428 0.44473030272946995 0.2755726200596161
+0.22206213705720962 0.4478314152472095 0.2220621370572096 0.44783141524720943 0.27997745525731993
+0.22006432906511156 0.45086374414930613 0.22006432906511156 0.45086374414930613 0.2840116698557486
+0.21816983260121797 0.45354712267950625 0.218169832601218 0.4535471226795062 0.28730173170222034
+0.21888180392784284 0.45635899351197695 0.21888180392784284 0.45635899351197695 0.2909508908498795
+0.21792174206728568 0.45895569465570174 0.21792174206728568 0.4589556946557018 0.2940158763467353
+0.21616696597422075 0.46200806197832506 0.21616696597422072 0.46200806197832506 0.2971508288507776
+0.21451564951806903 0.4650904672232025 0.21451564951806903 0.4650904672232025 0.3000578597831565
+0.21285043187646055 0.4683434054416531 0.21285043187646055 0.4683434054416531 0.3028225713647819
+0.2111492930116916 0.4716163225536161 0.2111492930116916 0.471616322553616 0.305253982516604
+0.207790513383504 0.4785832336790198 0.20779051338350402 0.4785832336790197 0.30939444093486923
+0.2094567555897343 0.47491085823215634 0.20945675558973428 0.47491085823215634 0.30736574326145455
+0.21056060521845354 0.4802758253062521 0.21056060521845357 0.4802758253062521 0.3112901850164402
+0.20811358414984935 0.48267680418575065 0.20811358414984935 0.4826768041857506 0.31191741409191964
+0.20670551297704762 0.4863622509742291 0.20670551297704762 0.4863622509742291 0.3131331723411765
+0.2052661723143857 0.49000395699089755 0.20526617231438574 0.49000395699089755 0.3139272888863687
+0.19990034858410466 0.5037466508268504 0.19990034858410466 0.5037466508268506 0.31322121479712206
+0.20384534816836317 0.49351285530950856 0.20384534816836317 0.49351285530950856 0.31427675244333136
+0.20250110035331093 0.4970146654202157 0.2025011003533109 0.4970146654202157 0.31426783279766995
+0.201198723607691 0.5004267298499211 0.201198723607691 0.5004267298499211 0.31389745693521115
+0.1958220127008441 0.5277452329894855 0.1958220127008441 0.5277452329894855 0.3012493004696067
+0.19630738724083066 0.5236575579449048 0.19630738724083066 0.5236575579449047 0.3042791607192737
+0.1973192868118684 0.5200312221008203 0.1973192868118684 0.5200312221008203 0.3067943340624643
+0.1984635573217312 0.5165544216213183 0.19846355732173124 0.5165544216213184 0.30891372473339246
+0.19945212816571675 0.5128473517665518 0.19945212816571675 0.5128473517665518 0.3108875285320334
+0.20195658335521147 0.5060455282121062 0.20195658335521147 0.5060455282121062 0.31358882005782
+0.2007575580411863 0.5092650936490419 0.2007575580411863 0.5092650936490419 0.3125105249041982
+0.19620348891470046 0.5314928500845271 0.19620348891470044 0.5314928500845272 0.2985499665396567
+0.19577581390116877 0.5360072354641263 0.19577581390116874 0.5360072354641262 0.29443182052526445
+0.19270522642406987 0.5418735275762961 0.19270522642406987 0.5418735275762961 0.28802240015577635
+0.19557179232243213 0.5400752645466638 0.19557179232243213 0.5400752645466637 0.29048709116629107
+0.19325288737715152 0.5461925518883162 0.19325288737715152 0.5461925518883161 0.2837563981157171
+0.19278743915640367 0.550089989884578 0.1927874391564037 0.550089989884578 0.2793190779235866
+0.19278556406470834 0.5540992658677371 0.19278556406470834 0.5540992658677371 0.27477432257763734
+0.3576446230095741 0.3224100955239688 0.35764462300957417 0.3224100955239688 0.2471372672336323
+0.3571920449557881 0.32582692693948107 0.3571920449557881 0.32582692693948107 0.24437905788014233
+0.3670458344718576 0.30620013183509426 0.3670458344718576 0.30620013183509426 0.2743593174729461
+0.3621034078403415 0.3141973072290283 0.3621034078403415 0.3141973072290283 0.2610493696637084
+0.3663256718461776 0.309651500357451 0.3663256718461776 0.309651500357451 0.2719832100889031
+0.36568015796187137 0.31304365188347755 0.36568015796187137 0.31304365188347755 0.2695550582375254
+0.3616009398552594 0.31772407686370685 0.3616009398552594 0.31772407686370685 0.2585088091606415
+0.3611183277785149 0.3212454844560119 0.3611183277785149 0.3212454844560119 0.25588091687462716
+0.37835636030807934 0.2903322198756609 0.37835636030807934 0.2903322198756609 0.29679381719973513
+0.3719931942962119 0.29816884233518187 0.37199319429621186 0.29816884233518187 0.28553954162871253
+0.3770670480099281 0.2937283685212199 0.3770670480099281 0.2937283685212199 0.2950976564685209
+0.37588159213099287 0.29722450665632333 0.37588159213099287 0.29722450665632333 0.2933135327868696
+0.3713732877356999 0.3017767180026664 0.3713732877356999 0.3017767180026664 0.28416594711120263
+0.3706583631545563 0.3052635297697695 0.3706583631545563 0.3052635297697695 0.2823131920162632
+0.3917377725207279 0.27515318140118983 0.3917377725207279 0.27515318140118983 0.3109590081693671
+0.38375694346834865 0.2829993573433328 0.3837569434683487 0.28299935734333287 0.30354427753875296
+0.39060791159753927 0.27834753219804953 0.3906079115975393 0.27834753219804953 0.31147397183861786
+0.3870537622732019 0.28225093325734724 0.3870537622732018 0.28225093325734724 0.3084613014838982
+0.38953091869466117 0.2809593734085945 0.38953091869466117 0.2809593734085945 0.3114595242587751
+0.3829246221549409 0.2862930832818079 0.3829246221549409 0.28629308328180786 0.3035759348264499
+0.38195991004637775 0.28971030903599165 0.38195991004637775 0.28971030903599165 0.30315121227837377
+0.40679861815118296 0.26082212735217425 0.40679861815118296 0.26082212735217425 0.31514607619534146
+0.3974346437415985 0.26814538666175997 0.3974346437415985 0.26814538666175997 0.31279095471412793
+0.40544640727130604 0.26410529381502107 0.40544640727130604 0.26410529381502107 0.31697054032911437
+0.4008179370512612 0.2677482990726538 0.4008179370512612 0.2677482990726538 0.3159811561169075
+0.40419521483372206 0.2673672016980794 0.40419521483372206 0.2673672016980794 0.3187744558805608
+0.39630541301978345 0.27147517705478924 0.39630541301978345 0.27147517705478924 0.3140790453334746
+0.3951471162412464 0.2747685185662853 0.3951471162412464 0.2747685185662853 0.31514270400193983
+0.4313008865972658 0.24110023447806225 0.4313008865972658 0.24110023447806225 0.30213616323657394
+0.4291392324095498 0.2442148872220803 0.4291392324095498 0.24421488722208026 0.30529723353842847
+0.4269189538804756 0.24730373207035894 0.4269189538804756 0.24730373207035897 0.30837689137513485
+0.4245412257840838 0.2500579993516155 0.4245412257840839 0.2500579993516155 0.3110393555608422
+0.42518788358595827 0.2531376599234906 0.4251878835859583 0.25313765992349063 0.31366218377158334
+0.41194203624913506 0.25728467385122805 0.41194203624913506 0.25728467385122805 0.3150989185485797
+0.4161357900315118 0.25684178893710796 0.41613579003151185 0.25684178893710796 0.31637820363418667
+0.42265156276625665 0.25545928747873975 0.42265156276625665 0.25545928747873975 0.3159923140872389
+0.4201563485152802 0.25789671905361017 0.4201563485152802 0.25789671905361017 0.3181475836231536
+0.410355800029367 0.26064033409028475 0.41035580002936706 0.26064033409028475 0.31723319022311164
+0.439301617347323 0.23510852000710378 0.439301617347323 0.23510852000710378 0.2926934421708165
+0.437201296507502 0.2382245455274565 0.437201296507502 0.2382245455274565 0.29642517173098687
+0.4430911182268948 0.23535425238594485 0.4430911182268948 0.23535425238594485 0.2890602628773858
+0.43508694190547464 0.24134181870359486 0.43508694190547464 0.24134181870359486 0.3000970603086471
+0.47079437813332287 0.2184793332995234 0.47079437813332287 0.2184793332995234 0.22959742792825885
+0.4684227163881341 0.22092659723663358 0.4684227163881341 0.22092659723663358 0.23669587138909146
+0.466052081910127 0.22334101143830876 0.466052081910127 0.22334101143830876 0.24350710571571033
+0.46367495667597086 0.2257525839957921 0.46367495667597086 0.2257525839957921 0.2500707591165387
+0.46128986970006164 0.2281865830987929 0.46128986970006164 0.2281865830987929 0.25641117842997513
+0.45890570513757356 0.23067346752949883 0.4589057051375736 0.23067346752949883 0.2625360558206072
+0.44689604367648683 0.23558493368567904 0.4468960436764869 0.23558493368567904 0.2847030424574642
+0.45065449113237066 0.23590764086527405 0.4506544911323706 0.23590764086527405 0.27975829758178006
+0.4565444765300849 0.23331432110229708 0.45654447653008484 0.23331432110229708 0.2684940525103871
+0.454396090097608 0.23623676569161545 0.454396090097608 0.23623676569161542 0.27407820095216656
+0.49245333511582173 0.2098326749392577 0.49245333511582173 0.2098326749392577 0.16001345034021477
+0.4789884710688417 0.2144775820251216 0.47898847106884174 0.2144775820251216 0.20529260308899433
+0.4900053950026035 0.212163294034578 0.4900053950026035 0.21216329403457798 0.16953250962516908
+0.48224972553991696 0.2155975707336032 0.48224972553991696 0.21559757073360322 0.1961599871352497
+0.4875530256022997 0.21467676421782483 0.4875530256022997 0.21467676421782486 0.1789461944270759
+0.4849987831893715 0.21599124725151364 0.4849987831893715 0.21599124725151367 0.18778154746191048
+0.4766430858724798 0.216996263008868 0.4766430858724798 0.216996263008868 0.21328288109023283
+0.4742750338238251 0.21954389696083051 0.4742750338238251 0.21954389696083051 0.22109624711202427
+0.515180782114433 0.20300681978247448 0.5151807821144329 0.2030068197824745 0.07231694361057216
+0.5014691852305513 0.20646010729010894 0.5014691852305512 0.2064601072901089 0.12598549499187084
+0.5124048178339129 0.20494291603140996 0.5124048178339128 0.20494291603141 0.08365613138053953
+0.5052537264311585 0.20763718538191633 0.5052537264311585 0.20763718538191633 0.11229048575876686
+0.5093226747481208 0.2071770145644744 0.5093226747481207 0.20717701456447443 0.0964618330216381
+0.5076921909498796 0.21002754427929052 0.5076921909498796 0.21002754427929055 0.10393288488675315
+0.49859234375572764 0.20876295823948302 0.49859234375572764 0.20876295823948302 0.137680771923301
+0.49589378388613187 0.2111289536851175 0.49589378388613187 0.2111289536851175 0.1485797313898339
+0.5245081768976662 0.20030655289180166 0.5245081768976662 0.20030655289180163 0.03974313403063528
+0.5279057877701391 0.2019384003921264 0.5279057877701391 0.20193840039212638 0.03356637617050346
+0.5215176111269956 0.202425730146537 0.5215176111269956 0.202425730146537 0.049299279266989605
+0.5186289290610384 0.20451371852760467 0.5186289290610384 0.20451371852760467 0.06002740699872405
+0.531073706365858 0.20355145269886524 0.531073706365858 0.20355145269886524 0.03345101009860681
+0.5336914238243275 0.20184245286664282 0.5336914238243277 0.20184245286664285 0.036947334227741956
+0.5565033488516927 0.18304562141010683 0.5565033488516927 0.18304562141010683 0.11452206213577983
+0.5502348093052726 0.18641028924998806 0.5502348093052726 0.18641028924998806 0.09168271620045747
+0.5544441410530598 0.18641242406068692 0.55444414105306 0.18641242406068692 0.10871468730328009
+0.5365498001153172 0.20014696145489327 0.5365498001153172 0.20014696145489327 0.044269947276859185
+0.5393573417846081 0.19827196021763255 0.5393573417846081 0.19827196021763258 0.05340112791640162
+0.5424290298158617 0.19629371496755693 0.5424290298158617 0.19629371496755696 0.06459825170682915
+0.5481375424049484 0.1898185245638725 0.5481375424049483 0.1898185245638725 0.08500286644483128
+0.5460804743744322 0.19331502174806098 0.5460804743744322 0.193315021748061 0.07820696098419179
+0.560687494577976 0.18304509074613892 0.560687494577976 0.18304509074613892 0.13116135151734679
+0.5648683489990229 0.1830462695782433 0.564868348999023 0.1830462695782433 0.14771902449503146
+0.571133821657391 0.1796766661694607 0.571133821657391 0.17967666616946068 0.16817804269030992
+0.5690510476237315 0.18304885523048384 0.5690510476237315 0.18304885523048384 0.16413769813671217
+0.5753171724060989 0.17967951152050213 0.5753171724060989 0.17967951152050213 0.18391189583928036
+0.5815905345264155 0.17629814432905277 0.5815905345264155 0.17629814432905277 0.20195669724006873
+0.5794999555975906 0.17968263725799372 0.5794999555975906 0.17968263725799372 0.19938327567294534
+0.5878662038831582 0.17290947668182502 0.5878662038831582 0.17290947668182502 0.21836760162251992
+0.5857747139240065 0.1762986745682806 0.5857747139240065 0.1762986745682806 0.21668192312620774
+0.6255230125522854 0.13222494851158872 0.6255230125522854 0.13222494851158872 0.2731365649145708
+0.61924686192467 0.13561533180675767 0.6192468619246699 0.13561533180675767 0.25834814838742787
+0.6234309623430803 0.13561533180675767 0.6234309623430803 0.13561533180675767 0.27043857747721817
+0.6171548117154649 0.1390057151019266 0.6171548117154649 0.1390057151019266 0.2558535110915861
+0.6150627615062598 0.14239609839709555 0.6150627615062598 0.14239609839709555 0.25371861625987124
+0.6129707112970547 0.1457864816922645 0.6129707112970547 0.1457864816922645 0.2519570844381073
+0.6066945606694394 0.14917686498743343 0.6066945606694394 0.14917686498743343 0.23805887667367265
+0.6046025104602343 0.15256724828260237 0.6046025104602343 0.15256724828260237 0.23694358940286583
+0.6025104602510292 0.15595763157777132 0.6025104602510291 0.15595763157777132 0.2360786906706194
+0.6004184100418241 0.15934801487294026 0.6004184100418241 0.15934801487294026 0.23538339691630614
+0.5983263598325946 0.16273839816809724 0.5983263598325946 0.16273839816809724 0.23476544645601585
+0.5962343096231181 0.16612878146313212 0.5962343096231181 0.16612878146313212 0.23412609729250586
+0.5941422691939728 0.16951915841210322 0.5941422691939727 0.16951915841210322 0.23336509753276355
+0.5920505347615291 0.1729092813445862 0.5920505347615291 0.1729092813445862 0.23238574112703206
+0.6108786610878496 0.14917686498743343 0.6108786610878497 0.14917686498743343 0.25055947120222527
+0.6359832635983109 0.1220537986260819 0.6359832635983108 0.1220537986260819 0.29317719164923667
+0.6401673640167211 0.1220537986260819 0.6401673640167211 0.1220537986260819 0.30358860209638333
+0.6338912133891058 0.12544418192125084 0.6338912133891058 0.12544418192125084 0.29032823261054674
+0.6317991631799007 0.12883456521641978 0.6317991631799007 0.12883456521641978 0.28749988604474547
+0.6297071129706956 0.13222494851158872 0.6297071129706956 0.13222494851158872 0.284776248992949
+0.6610878661087722 0.09493073226473037 0.6610878661087723 0.09493073226473037 0.3206825096693129
+0.6589958158995671 0.09832111555989931 0.6589958158995671 0.09832111555989931 0.32115852266812833
+0.656903765690362 0.10171149885506825 0.656903765690362 0.10171149885506825 0.3211949280592916
+0.6548117154811569 0.10510188215023719 0.6548117154811569 0.10510188215023719 0.32079977291137135
+0.6527196652719518 0.10849226544540613 0.6527196652719517 0.10849226544540613 0.31999347870583433
+0.6506276150627467 0.11188264874057507 0.6506276150627467 0.11188264874057507 0.3188087722956326
+0.6485355648535416 0.11527303203574402 0.6485355648535416 0.11527303203574402 0.31729017609258703
+0.6464435146443365 0.11866341533091296 0.6464435146443365 0.11866341533091296 0.3154930138548529
+0.6443514644351314 0.1220537986260819 0.6443514644351315 0.1220537986260819 0.3134818972197367
+0.6673640167363876 0.09154034896956142 0.6673640167363876 0.09154034896956142 0.3254280392817454
+0.6652719665271825 0.09493073226473037 0.6652719665271825 0.09493073226473037 0.3266394951229828
+0.6736401673640029 0.08814996567439248 0.6736401673640029 0.08814996567439248 0.3289269537932414
+0.6715481171547978 0.09154034896956142 0.6715481171547978 0.09154034896956142 0.3306824662162074
+0.6799163179916182 0.08475958237922354 0.6799163179916182 0.08475958237922354 0.3316646036205128
+0.6778242677824131 0.08814996567439248 0.6778242677824132 0.08814996567439248 0.33372557054040786
+0.6861924686192336 0.0813691990840546 0.6861924686192334 0.0813691990840546 0.3341860755047145
+0.6841004184100284 0.08475958237922354 0.6841004184100284 0.08475958237922354 0.3362958248458873
+0.6924686192468489 0.07797881578888566 0.6924686192468489 0.07797881578888566 0.33702964453913625
+0.6903765690376438 0.0813691990840546 0.6903765690376438 0.0813691990840546 0.33894984007292717
+0.7008368200836693 0.07119804919854777 0.7008368200836693 0.07119804919854777 0.3391621942720691
+0.6987447698744642 0.07458843249371672 0.6987447698744642 0.07458843249371672 0.3406506255634143
+0.6966527196652591 0.07797881578888566 0.6966527196652591 0.07797881578888566 0.3421997557116621
+0.7071129707112846 0.06780766590337883 0.7071129707112846 0.06780766590337883 0.34430909318516556
+0.7050209205020795 0.07119804919854777 0.7050209205020795 0.07119804919854777 0.3453493947733373
+0.7133891213389 0.06441728260820989 0.7133891213389 0.06441728260820989 0.3505615569986155
+0.7112970711296949 0.06780766590337883 0.711297071129695 0.06780766590337883 0.3512203276875172
+0.7196652719665153 0.06102689931304095 0.7196652719665152 0.06102689931304095 0.3576944681497701
+0.7175732217573102 0.06441728260820989 0.7175732217573102 0.06441728260820989 0.3581350552153771
+0.7259414225941306 0.05763651601787201 0.7259414225941306 0.05763651601787201 0.36530881874453763
+0.7238493723849255 0.06102689931304095 0.7238493723849255 0.06102689931304095 0.3657639775302875
+0.732217573221746 0.054246132722703067 0.732217573221746 0.054246132722703067 0.37289365909846456
+0.7301255230125409 0.05763651601787201 0.7301255230125409 0.05763651601787201 0.37362890960152156
+0.7384937238493613 0.050855749427534125 0.7384937238493613 0.050855749427534125 0.37989699532634696
+0.7364016736401562 0.054246132722703067 0.7364016736401561 0.054246132722703067 0.38117264959588065
+0.7447698744769766 0.04746536613236518 0.7447698744769767 0.04746536613236518 0.3857925955948514
+0.7426778242677715 0.050855749427534125 0.7426778242677715 0.050855749427534125 0.3878305671352873
+0.7531380753137971 0.0406845995420273 0.753138075313797 0.0406845995420273 0.3866423168459441
+0.751046025104592 0.04407498283719624 0.751046025104592 0.04407498283719624 0.39013456623722864
+0.7489539748953868 0.04746536613236518 0.7489539748953868 0.04746536613236518 0.3930932883778923
+0.7594142259414124 0.03729421624685836 0.7594142259414124 0.03729421624685836 0.38816341456167075
+0.7573221757322073 0.0406845995420273 0.7573221757322073 0.0406845995420273 0.392596362951444
+0.7656903765690277 0.03390383295168942 0.7656903765690277 0.03390383295168942 0.38767942675622785
+0.7635983263598226 0.03729421624685836 0.7635983263598226 0.03729421624685836 0.39299409544724856
+0.771966527196643 0.030513449656520475 0.771966527196643 0.030513449656520475 0.38523822145134673
+0.7698744769874379 0.03390383295168942 0.7698744769874378 0.03390383295168942 0.39129550975888966
+0.7782426778242584 0.027123066361351533 0.7782426778242585 0.027123066361351533 0.38102431615805393
+0.7761506276150533 0.030513449656520475 0.7761506276150533 0.030513449656520475 0.38761648829182743
+0.7845188284518737 0.02373268306618259 0.7845188284518737 0.02373268306618259 0.3753393632498732
+0.7824267782426686 0.027123066361351533 0.7824267782426686 0.027123066361351533 0.38220692367821063
+0.790794979079489 0.02034229977101365 0.790794979079489 0.02034229977101365 0.368575202334494
+0.7887029288702839 0.02373268306618259 0.7887029288702839 0.02373268306618259 0.3754278303641807
+0.7970711297071044 0.01695191647584471 0.7970711297071044 0.01695191647584471 0.36118204665066406
+0.7949790794978993 0.02034229977101365 0.7949790794978994 0.02034229977101365 0.3677217862498457
+0.8033472803347197 0.013561533180675767 0.8033472803347196 0.013561533180675767 0.3536350463707661
+0.8012552301255146 0.01695191647584471 0.8012552301255146 0.01695191647584471 0.35957931312760344
+0.809623430962335 0.010171149885506825 0.809623430962335 0.010171149885506825 0.3464031255102224
+0.8075313807531299 0.013561533180675767 0.8075313807531298 0.013561533180675767 0.35150451619926365
+0.8158995815899504 0.006780766590337883 0.8158995815899504 0.006780766590337883 0.33992416849431345
+0.8138075313807452 0.010171149885506825 0.8138075313807452 0.010171149885506825 0.3439839176248061
+0.006780766590337709 0.8200836820083657 0.006780766590337709 0.8200836820083657 0.08579190994970488
+0.006780766590337709 0.8242677824267757 0.006780766590337709 0.8242677824267757 0.08362241281789061
+0.01017114988550656 0.8179916317991607 0.01017114988550656 0.8179916317991607 0.08736093687449596
+0.013561533180675408 0.8117154811715457 0.013561533180675408 0.8117154811715457 0.09196056886937765
+0.013561533180675408 0.8158995815899557 0.013561533180675408 0.8158995815899557 0.08913254553811355
+0.016951916475844264 0.8054393305439307 0.016951916475844264 0.8054393305439307 0.09728362744601136
+0.016951916475844264 0.8096234309623407 0.016951916475844264 0.8096234309623407 0.09407746194737064
+0.02034229977101312 0.7991631799163157 0.02034229977101312 0.7991631799163157 0.10316323886540646
+0.02034229977101312 0.8033472803347257 0.02034229977101312 0.8033472803347257 0.09968680563560574
+0.02373268306618197 0.7928870292887007 0.02373268306618197 0.7928870292887007 0.10940812732272646
+0.02373268306618197 0.7970711297071107 0.02373268306618197 0.7970711297071107 0.1057759313503085
+0.027123066361350822 0.7866108786610857 0.027123066361350822 0.7866108786610857 0.11580913514624758
+0.027123066361350822 0.7907949790794957 0.027123066361350822 0.7907949790794957 0.11213660361315335
+0.030513449656519673 0.7803347280334707 0.030513449656519673 0.7803347280334707 0.12214760397186332
+0.030513449656519673 0.7845188284518807 0.030513449656519673 0.7845188284518807 0.11854600833558888
+0.033903832951688535 0.7740585774058557 0.033903832951688535 0.7740585774058557 0.12820538179035038
+0.033903832951688535 0.7782426778242657 0.033903832951688535 0.7782426778242657 0.12477714793100701
+0.03729421624685738 0.7677824267782407 0.03729421624685738 0.7677824267782407 0.13377602832106172
+0.03729421624685738 0.7719665271966507 0.03729421624685738 0.7719665271966507 0.13061022524616273
+0.040684599542026224 0.7615062761506257 0.040684599542026224 0.7615062761506257 0.13867673375283862
+0.040684599542026224 0.7656903765690357 0.040684599542026224 0.7656903765690357 0.13584462096662653
+0.0440749828371951 0.7594142259414207 0.0440749828371951 0.7594142259414207 0.1403110892828383
+0.04746536613236394 0.7531380753138057 0.04746536613236394 0.7531380753138057 0.14388380514028054
+0.04746536613236394 0.7573221757322157 0.04746536613236394 0.7573221757322157 0.14159767065082252
+0.05085574942753279 0.7468619246861907 0.05085574942753279 0.7468619246861907 0.14649186440163578
+0.05085574942753279 0.7510460251046007 0.05085574942753279 0.7510460251046007 0.14461756415596724
+0.05424613272270165 0.7405857740585757 0.054246132722701644 0.7405857740585757 0.14812972780288117
+0.05424613272270165 0.7447698744769857 0.054246132722701644 0.7447698744769857 0.14664363749458784
+0.05763651601787049 0.7343096234309607 0.05763651601787049 0.7343096234309607 0.14886585438236832
+0.05763651601787049 0.7384937238493707 0.05763651601787049 0.7384937238493707 0.14770870967921398
+0.06102689931303934 0.7280334728033457 0.06102689931303934 0.7280334728033457 0.1488483188596346
+0.06102689931303934 0.7322175732217557 0.06102689931303934 0.7322175732217557 0.1479240797495834
+0.06441728260820821 0.7217573221757307 0.06441728260820821 0.7217573221757307 0.1483055015481918
+0.06441728260820821 0.7259414225941407 0.06441728260820821 0.7259414225941407 0.1474829498009399
+0.06780766590337706 0.7154811715481157 0.06780766590337706 0.7154811715481157 0.14753906154214788
+0.06780766590337706 0.7196652719665257 0.06780766590337706 0.7196652719665257 0.14665763708759436
+0.0711980491985459 0.7092050209205008 0.0711980491985459 0.7092050209205008 0.14690577462911872
+0.0711980491985459 0.7133891213389107 0.0711980491985459 0.7133891213389107 0.14578728144421746
+0.07458843249371476 0.7029288702928858 0.07458843249371476 0.7029288702928858 0.1467854016936546
+0.07458843249371476 0.7071129707112958 0.07458843249371476 0.7071129707112958 0.14525250831130346
+0.07797881578888362 0.7008368200836808 0.07797881578888362 0.7008368200836808 0.1454352102877848
+0.08136919908405248 0.6945606694560658 0.08136919908405248 0.6945606694560658 0.1466664776261677
+0.08136919908405248 0.6987447698744758 0.08136919908405248 0.6987447698744758 0.14422992311558225
+0.08475958237922132 0.6882845188284508 0.08475958237922132 0.6882845188284508 0.14917301875879516
+0.08475958237922132 0.6924686192468608 0.08475958237922132 0.6924686192468608 0.146034364409691
+0.08814996567439015 0.6820083682008358 0.08814996567439015 0.6820083682008358 0.15303787503662106
+0.08814996567439015 0.6861924686192458 0.08814996567439015 0.6861924686192458 0.14920196715855624
+0.09154034896955902 0.6757322175732208 0.09154034896955902 0.6757322175732208 0.15818914575523954
+0.09154034896955902 0.6799163179916308 0.09154034896955902 0.6799163179916308 0.15373429057835697
+0.09493073226472787 0.6694560669456058 0.09493073226472787 0.6694560669456058 0.16441993272821476
+0.09493073226472787 0.6736401673640158 0.09493073226472787 0.6736401673640158 0.15948188611436584
+0.09832111555989675 0.6631799163179908 0.09832111555989675 0.6631799163179908 0.17143056977463525
+0.09832111555989675 0.6673640167364008 0.09832111555989675 0.6673640167364008 0.1661788622564521
+0.10171149885506564 0.6610878661087858 0.10171149885506563 0.6610878661087858 0.17349243093667607
+0.10510188215023453 0.6589958158995808 0.10510188215023453 0.6589958158995808 0.1756473799350454
+0.10849226544540343 0.6569037656903758 0.10849226544540343 0.6569037656903758 0.17785499956463022
+0.11188264874057234 0.6548117154811708 0.11188264874057234 0.6548117154811708 0.1800748967092937
+0.11527303203574124 0.6527196652719658 0.11527303203574124 0.6527196652719658 0.18226856551036483
+0.11866341533091013 0.6506276150627608 0.11866341533091011 0.6506276150627608 0.18440099372811083
+0.12205379862607901 0.6443514644351458 0.12205379862607901 0.6443514644351458 0.191528717995489
+0.12544418192124793 0.6422594142259408 0.12544418192124793 0.6422594142259408 0.1933193170636833
+0.1356153318067546 0.6276150627615058 0.13561533180675459 0.6276150627615058 0.20630698033287018
+0.1423960983970924 0.6192468619246858 0.1423960983970924 0.6192468619246858 0.2120215280944082
+0.1457864816922613 0.6171548117154808 0.1457864816922613 0.6171548117154808 0.2128584018896955
+0.1525672482825991 0.6087866108786608 0.15256724828259907 0.6087866108786608 0.21823154722354812
+0.15595763157776799 0.6066945606694558 0.15595763157776799 0.6066945606694558 0.21921968236217385
+0.1593480148729369 0.6046025104602508 0.1593480148729369 0.6046025104602508 0.22030415233083048
+0.16273839816810579 0.5983263598326358 0.16273839816810579 0.5983263598326358 0.22545689725822707
+0.16612877521639663 0.5962343076670892 0.16612877521639666 0.5962343076670892 0.22692997498999015
+0.16951831708664913 0.5941415760575973 0.16951831708664913 0.5941415760575973 0.22853883616864815
+0.16273839816810579 0.6025104602510458 0.16273839816810579 0.6025104602510458 0.2214991480493802
+0.1491768649874302 0.6150627615062758 0.1491768649874302 0.6150627615062758 0.21369435213867635
+0.1525672482825991 0.6129707112970708 0.15256724828259907 0.6129707112970708 0.21455564892166587
+0.1390057151019235 0.6255230125523008 0.1390057151019235 0.6255230125523008 0.20731320819519802
+0.1423960983970924 0.6234309623430958 0.1423960983970924 0.6234309623430958 0.20823919921179848
+0.1288345652164168 0.6359832635983258 0.1288345652164168 0.6359832635983258 0.19957832727649463
+0.1288345652164168 0.6401673640167358 0.1288345652164168 0.6401673640167358 0.19496907995673027
+0.13222494851158573 0.6338912133891208 0.13222494851158573 0.6338912133891208 0.20094174733406375
+0.1356153318067546 0.6317991631799158 0.13561533180675459 0.6317991631799158 0.20217143644262855
+0.12205379862607901 0.6485355648535558 0.12205379862607901 0.6485355648535558 0.18644196698006113
+0.18299071081032334 0.5731880681411967 0.18299071081032334 0.5731880681411967 0.25118741221254665
+0.18299273306853336 0.5773772057899392 0.18299273306853336 0.5773772057899392 0.24620880669670173
+0.1863315401630652 0.5710828661547396 0.1863315401630652 0.5710828661547396 0.253812198170386
+0.18966165020880302 0.56899090772166 0.18966165020880302 0.56899090772166 0.2564653300996255
+0.1928564272388949 0.5582559022964715 0.19285642723889487 0.5582559022964714 0.2698696404237266
+0.19287574062331694 0.5625624418035138 0.19287574062331694 0.5625624418035137 0.2646068298605026
+0.19297444777902328 0.5669338511816888 0.19297444777902328 0.5669338511816888 0.2591109627731301
+0.17290127003558906 0.5878635273230864 0.17290127003558906 0.5878635273230864 0.23475371439773896
+0.1762764472184414 0.5857686410300871 0.1762764472184414 0.5857686410300871 0.2367994270547499
+0.17964022121271717 0.5836710998062858 0.17964022121271717 0.5836710998062858 0.23895557992350547
+0.1829882714994067 0.5815669858633046 0.1829882714994067 0.5815669858633045 0.2412117540621074
+0.17290326001168568 0.5920469036520856 0.17290326001168568 0.5920469036520856 0.23028083026435867
+0.3562829373881625 0.32870052620343043 0.3562829373881625 0.32870052620343043 0.24068389770841625
+0.3534997265375781 0.33034327980354533 0.3534997265375781 0.33034327980354533 0.2331732342521756
+0.3502235641898032 0.3318694236373778 0.3502235641898032 0.3318694236373778 0.22444398982681832
+0.34681716730203593 0.3333284706767871 0.34681716730203593 0.3333284706767871 0.21547768668682568
+0.3434438579294502 0.33477127628755704 0.34344385792945026 0.33477127628755704 0.20668937511973348
+0.3400829062132116 0.3361754558433474 0.3400829062132116 0.3361754558433474 0.19808566067040168
+0.336718881139315 0.3376774084168804 0.336718881139315 0.3376774084168804 0.18958643679363704
+0.33338551704329394 0.33940651372439823 0.33338551704329394 0.33940651372439823 0.18123773561389145
+0.33009442202923145 0.34116241336904696 0.33009442202923145 0.34116241336904696 0.1732135068722771
+0.3268703646887213 0.3429942203753469 0.3268703646887214 0.3429942203753469 0.16557987979519947
+0.32357304963351646 0.34475642907359233 0.32357304963351646 0.34475642907359233 0.1582568498935325
+0.32022777363648275 0.34657646729853137 0.32022777363648275 0.34657646729853137 0.15129007182271534
+0.31676359199364174 0.34849626104881093 0.31676359199364174 0.34849626104881093 0.14468086396729177
+0.3133685201533791 0.3506626349926125 0.3133685201533791 0.3506626349926125 0.13867453802855714
+0.31038987297531223 0.3527870351462996 0.31038987297531223 0.3527870351462996 0.13398279795710374
+0.30738917858476084 0.3548623680610312 0.30738917858476084 0.3548623680610312 0.13002323310975025
+0.3043564233309484 0.35687584224175883 0.3043564233309484 0.35687584224175883 0.126860073370929
+0.3013596222001538 0.3588089159199984 0.3013596222001538 0.35880891591999836 0.12457875005907203
+0.2984891228117331 0.3598852257236481 0.2984891228117331 0.3598852257236481 0.12329342908045426
+0.2969338948674375 0.36239361225176203 0.29693389486743754 0.3623936122517621 0.12284295087511622
+0.2943934405008198 0.3644638409047381 0.2943934405008198 0.3644638409047381 0.12280442258268782
+0.2916894479336177 0.3666436870221596 0.2916894479336177 0.3666436870221596 0.12354593161051529
+0.2889979906102735 0.3688288532300073 0.2889979906102735 0.3688288532300073 0.12506039499582863
+0.28636564830923833 0.37100459495080007 0.28636564830923833 0.37100459495080007 0.12725681487567034
+0.2838378982869729 0.373204220746133 0.2838378982869729 0.373204220746133 0.13004158839905014
+0.28145322940635 0.3754468021546136 0.2814532294063499 0.3754468021546136 0.13332230639327902
+0.2790836383867391 0.377736817141026 0.27908363838673905 0.377736817141026 0.1371499564587202
+0.27664154344300723 0.38008963122650696 0.27664154344300723 0.38008963122650696 0.14150831507628733
+0.2741745999279429 0.3824872257394006 0.27417459992794285 0.3824872257394006 0.14631743524020555
+0.271730586504939 0.38492524425858926 0.27173058650493903 0.38492524425858926 0.15148386633779679
+0.2693233444517012 0.3873778967736204 0.2693233444517012 0.3873778967736204 0.15690431263269633
+0.26697968604864103 0.38986840756746727 0.26697968604864103 0.38986840756746727 0.16254106738566018
+0.2646788834518704 0.3924025308750067 0.26467888345187035 0.3924025308750067 0.16837889999731537
+0.2623866807552729 0.3949897865036774 0.2623866807552729 0.3949897865036774 0.17441856078033854
+0.26011493944032926 0.3976295509385697 0.26011493944032926 0.3976295509385697 0.18061270275495242
+0.2578839208888806 0.4003115944080839 0.2578839208888806 0.4003115944080839 0.18689944276177684
+0.25563073820527277 0.4029882426557086 0.25563073820527277 0.4029882426557086 0.19320181474202325
+0.2534112900764802 0.40572025250563065 0.2534112900764802 0.40572025250563065 0.1995662223614784
+0.25124281784732116 0.408483813830512 0.25124281784732116 0.40848381383051197 0.2059163898194756
+0.24911164667275898 0.4112852188432848 0.24911164667275898 0.4112852188432848 0.21224939448204436
+0.24700426626050864 0.41413356792428074 0.24700426626050867 0.41413356792428074 0.21856555931186475
+0.24494219004689344 0.417027431906559 0.2449421900468934 0.417027431906559 0.22483467016739292
+0.24291539344584243 0.4199634658049252 0.24291539344584243 0.4199634658049252 0.2310420054497521
+0.24090137892700017 0.4229274166492172 0.24090137892700017 0.4229274166492171 0.2371489274518619
+0.23889374889800086 0.4259101872688626 0.23889374889800088 0.4259101872688626 0.24311982057430223
+0.23690191717886389 0.4289149631983786 0.2369019171788639 0.4289149631983786 0.24894074104471944
+0.2349443921721814 0.4319682185722245 0.2349443921721814 0.4319682185722245 0.2546361554288075
+0.23309424401403678 0.43510299904396144 0.2330942440140368 0.43510299904396144 0.2602307771547033
+0.23135523242841124 0.4383143403856276 0.23135523242841124 0.4383143403856276 0.2657280807908787
+0.22961266571074815 0.44152013396373907 0.22961266571074815 0.44152013396373907 0.2709733568961053
+0.22780444398738542 0.4446887177770444 0.22780444398738542 0.4446887177770444 0.27589231396827874
+0.2259372414783285 0.4478288494015728 0.2259372414783285 0.4478288494015728 0.28048395971077283
+0.2239585590134482 0.45093023096960055 0.22395855901344816 0.45093023096960055 0.28471370549662844
+0.22180968901437814 0.4543930933411075 0.22180968901437814 0.45439309334110745 0.2891558187411339
+0.22129314170996311 0.45826974881839505 0.2212931417099631 0.45826974881839505 0.29394115652878133
+0.2198206632175501 0.46159726184921684 0.2198206632175501 0.46159726184921684 0.29763203256852605
+0.21823330159568344 0.4648175736243931 0.21823330159568344 0.4648175736243931 0.3008048608612217
+0.21659174128090564 0.4680313757151728 0.21659174128090566 0.4680313757151728 0.3036285406461107
+0.21486217427933973 0.47126199317755907 0.21486217427933973 0.47126199317755907 0.3061086322648365
+0.2131337238399862 0.47439005853464816 0.2131337238399862 0.47439005853464816 0.3081553676471795
+0.21138499356576562 0.47742968850447187 0.21138499356576565 0.4774296885044719 0.30982906569283214
+0.21350664119470739 0.4799749992323204 0.21350664119470739 0.4799749992323204 0.31214433054240903
+0.21176464561299269 0.4829099782618836 0.21176464561299269 0.4829099782618836 0.31331596230506215
+0.2102688436105316 0.48585621094380893 0.21026884361053158 0.485856210943809 0.31422098651100255
+0.20893767040456634 0.48933850545991503 0.20893767040456632 0.48933850545991503 0.3150732613170868
+0.20752830868615446 0.49280592335424783 0.20752830868615443 0.49280592335424783 0.3155012887248904
+0.20325720316982016 0.5028504496979671 0.20325720316982013 0.5028504496979672 0.31455644331543814
+0.20612100413098278 0.49627253081630124 0.20612100413098275 0.49627253081630124 0.3155484677303231
+0.20470293217612015 0.4997741960572335 0.20470293217612015 0.4997741960572335 0.31522478775666224
+0.20472904816973522 0.5053644807486877 0.2047290481697352 0.5053644807486877 0.31470280823542357
+0.19842803884554439 0.5289244297112751 0.19842803884554439 0.5289244297112751 0.30110408862178895
+0.1988126860418782 0.5260505189840128 0.1988126860418782 0.5260505189840128 0.3034466411746006
+0.19980755264438907 0.5225450593776428 0.19980755264438907 0.5225450593776428 0.30612257749935967
+0.20087835036810378 0.519021189852319 0.20087835036810378 0.519021189852319 0.30853689904188447
+0.20196252356297606 0.5154704642430847 0.20196252356297606 0.5154704642430846 0.3106761397523658
+0.20308734601091935 0.5118468872505123 0.20308734601091935 0.5118468872505123 0.31254918001172444
+0.2041399164644528 0.508432689420585 0.20413991646445281 0.508432689420585 0.31394597888570314
+0.19993981160382363 0.5313663473136929 0.1999398116038236 0.5313663473136928 0.299635606718861
+0.19913912098446315 0.5347792863153674 0.19913912098446315 0.5347792863153674 0.29644668570743743
+0.19866532969357947 0.5384997686223141 0.19866532969357945 0.5384997686223141 0.2927834546421764
+0.19600763423317782 0.5434973037041764 0.19600763423317782 0.5434973037041764 0.28715321601447874
+0.19818263225020546 0.5415355304445919 0.19818263225020546 0.5415355304445919 0.28953525512345135
+0.1958700045628511 0.5518995378298588 0.1958700045628511 0.5518995378298587 0.2777871279268725
+0.19662445179122598 0.5464705136105341 0.19662445179122598 0.5464705136105341 0.28401056006135994
+0.1954624555936865 0.548759289368107 0.1954624555936865 0.548759289368107 0.28123921806998087
+0.1961017090536542 0.5558711287158266 0.1961017090536542 0.5558711287158266 0.27306843236475253
+0.3605954714362112 0.32481264213414934 0.3605954714362112 0.32481264213414934 0.2530429750778321
+0.3598194069983066 0.32867181855394734 0.35981940699830656 0.3286718185539473 0.24940478329581856
+0.36993765807185686 0.3087243137628669 0.3699376580718568 0.30872431376286696 0.28017872425559626
+0.3650934514999442 0.316519912621196 0.3650934514999442 0.316519912621196 0.2670545850386578
+0.3692392274581983 0.31211022614567346 0.3692392274581983 0.31211022614567346 0.2778596393105723
+0.368527488186736 0.3152782625289023 0.368527488186736 0.3152782625289023 0.27533813287687486
+0.36461227310533867 0.3200541616859808 0.36461227310533867 0.32005416168598083 0.2646249427947854
+0.36413406977264 0.32354946804655615 0.36413406977264 0.3235494680465561 0.2620790758175509
+0.3808739093397748 0.29310523930549476 0.3808739093397748 0.29310523930549476 0.30216229009955414
+0.37504106252815067 0.3008062941474887 0.37504106252815067 0.3008062941474887 0.29179809972617937
+0.37977114429135067 0.2965228528897159 0.37977114429135067 0.2965228528897159 0.3008101665854925
+0.3787805923332442 0.299965417498316 0.3787805923332442 0.299965417498316 0.2993284541080588
+0.3742724061761884 0.3043293999176511 0.3742724061761884 0.3043293999176511 0.29010821140196047
+0.3735233862092023 0.3078083092411818 0.3735233862092023 0.3078083092411818 0.288171026107572
+0.39393552916590047 0.2780073804026549 0.3939355291659004 0.2780073804026549 0.31588818703514027
+0.3865287917262516 0.2854366868183223 0.3865287917262516 0.2854366868183223 0.30922627962134813
+0.392511226556673 0.28119939677203004 0.392511226556673 0.28119939677203004 0.31605013067390647
+0.3901205870754359 0.2841308678003236 0.3901205870754359 0.2841308678003236 0.3143333523851877
+0.38557063279333254 0.2890116030759085 0.38557063279333254 0.2890116030759085 0.3092256912555201
+0.3845679285698952 0.2924675408485765 0.38456792856989525 0.29246754084857646 0.30873697628155977
+0.408875931648101 0.2639024875381635 0.408875931648101 0.2639024875381635 0.31927834198187893
+0.39974113055996513 0.27107898875713526 0.39974113055996513 0.27107898875713526 0.31762029812712295
+0.4075143209223315 0.2670791992326857 0.4075143209223315 0.2670791992326857 0.3212257658676951
+0.40317161691755277 0.27073912218132623 0.4031716169175528 0.27073912218132623 0.3208147517065341
+0.4062028848073198 0.27013091267656025 0.4062028848073198 0.27013091267656025 0.32296434344475583
+0.398616569113538 0.2743918022019898 0.398616569113538 0.2743918022019898 0.319047971874686
+0.39742194608274 0.2777055731323292 0.39742194608274 0.2777055731323292 0.320190136312595
+0.43294332137812014 0.2444574168854234 0.43294332137812014 0.2444574168854234 0.30372067168535705
+0.43072840303273024 0.2475856670298805 0.43072840303273024 0.24758566702988052 0.30731893991590814
+0.4283361177943818 0.2510601348238963 0.42833611779438174 0.2510601348238963 0.31121793814687276
+0.427762077466758 0.25440008352704985 0.427762077466758 0.25440008352704985 0.31433435041408775
+0.4258198447918279 0.2563496635828546 0.42581984479182783 0.2563496635828546 0.3166493154923129
+0.4140782762929228 0.2604635475856838 0.41407827629292276 0.2604635475856838 0.31892828407727847
+0.4177705042703653 0.2607212506393023 0.4177705042703653 0.26072125063930235 0.32045292046724944
+0.4236593914740643 0.2587865984501966 0.42365939147406434 0.25878659845019664 0.31925226207684704
+0.4214310529225549 0.261200837051593 0.4214310529225549 0.261200837051593 0.32158154824167956
+0.4123161443977462 0.26381719487040595 0.4123161443977463 0.26381719487040595 0.32126203744122656
+0.4409725945180391 0.23848137745064776 0.4409725945180391 0.23848137745064776 0.2932741820142923
+0.4388647194165967 0.24159596505795847 0.4388647194165967 0.24159596505795847 0.2973996987649763
+0.4447392303929367 0.23875274540883776 0.4447392303929368 0.23875274540883776 0.28944595246310634
+0.4367529621237829 0.244703964002604 0.43675296212378284 0.244703964002604 0.3014622818192578
+0.47189680335865086 0.22207172795445085 0.47189680335865086 0.22207172795445085 0.2286675626743002
+0.46951945858979216 0.22452869252713847 0.4695194585897921 0.2245286925271385 0.23594336912774758
+0.4671427602502403 0.2269505714209766 0.4671427602502403 0.2269505714209766 0.24295008464605308
+0.46476545316954393 0.2293656850326937 0.46476545316954393 0.2293656850326937 0.2497134377579544
+0.46240997454587146 0.23180554140402018 0.46240997454587146 0.23180554140402018 0.2562146726471181
+0.46009183131133147 0.23428125413067863 0.4600918313113315 0.23428125413067866 0.2624511192783086
+0.44852748056352193 0.23906668397233335 0.44852748056352193 0.23906668397233335 0.28490799409829665
+0.4525248912898844 0.23952600015441816 0.45252489128988443 0.23952600015441816 0.2794463019566091
+0.457895129677839 0.23681927978833814 0.457895129677839 0.23681927978833814 0.2683086652854863
+0.45592225414011917 0.239291501607363 0.45592225414011917 0.23929150160736298 0.2735546057639589
+0.454953408625215 0.2414776914789327 0.454953408625215 0.24147769147893267 0.27678792069675956
+0.49327631557437945 0.21348118004498084 0.4932763155743794 0.21348118004498087 0.15899057292711374
+0.48008942831238133 0.21795256633285423 0.4800894283123814 0.21795256633285423 0.2038673594087541
+0.490619938233128 0.21598435112707026 0.49061993823312805 0.21598435112707026 0.16940159670360552
+0.4836477712787425 0.21866364572797126 0.48364777127874253 0.21866364572797128 0.19342708306656073
+0.48746006671039543 0.21844517672218722 0.48746006671039543 0.21844517672218716 0.18121558687827757
+0.4777705824111798 0.22052050779073976 0.4777705824111798 0.22052050779073976 0.21193654518062957
+0.4753893009672024 0.2231290690271738 0.4753893009672024 0.2231290690271738 0.21996577231849293
+0.5157913300171307 0.20658232758714767 0.5157913300171307 0.20658232758714767 0.07132301536350542
+0.5020947994877408 0.2099125779582315 0.5020947994877408 0.2099125779582315 0.1252612830588438
+0.5130457277231208 0.2086892112163402 0.5130457277231208 0.20868921121634018 0.08266106770405647
+0.5051185598738074 0.2113334384995565 0.5051185598738074 0.21133343849955646 0.11442849869292208
+0.5106518802695383 0.21078346497115164 0.5106518802695383 0.2107834649711516 0.09280289168662344
+0.5081484169159097 0.21297455930401918 0.5081484169159097 0.21297455930401918 0.10344998261491418
+0.4993207244841631 0.21239201995660514 0.49932072448416315 0.21239201995660514 0.13674238536403782
+0.49667554331514113 0.2148109213726984 0.49667554331514113 0.2148109213726984 0.14756047082363158
+0.5249661717280565 0.20394268542986094 0.5249661717280566 0.20394268542986094 0.039658491655080286
+0.528295245394164 0.20545585448499393 0.528295245394164 0.20545585448499395 0.03429462267469762
+0.5220824363637472 0.2060414179265251 0.5220824363637472 0.2060414179265251 0.04866729352552193
+0.5192172706747201 0.20814034833571327 0.5192172706747201 0.2081403483357133 0.05922122803039864
+0.5315370349456423 0.2067764066501282 0.5315370349456422 0.20677640665012822 0.03500796193946636
+0.5341154716782004 0.20527139354010848 0.5341154716782004 0.20527139354010848 0.03898701554726628
+0.5368755686556749 0.2035375816359121 0.5368755686556749 0.2035375816359121 0.04631090278167141
+0.5586224630992757 0.1864138443255622 0.5586224630992757 0.1864138443255622 0.12572293094962747
+0.5523972056562744 0.1897844980848159 0.5523972056562744 0.1897844980848159 0.10247891621819176
+0.5566114183362847 0.18976678705698294 0.5566114183362848 0.18976678705698294 0.1199785863161383
+0.5397695805992736 0.2017250086105859 0.5397695805992736 0.20172500861058593 0.05600140222399363
+0.5428221011116777 0.1997104900656145 0.5428221011116777 0.1997104900656145 0.06731362134666068
+0.5459965747108693 0.19744028885811105 0.5459965747108693 0.19744028885811105 0.07951238575000275
+0.5503377840418707 0.19314280252809346 0.5503377840418707 0.19314280252809346 0.09575430207526693
+0.5488872320493248 0.19601198614338655 0.5488872320493248 0.19601198614338655 0.09103819986825017
+0.5627857839867992 0.1864167830976824 0.5627857839867992 0.1864167830976824 0.14264461155616892
+0.5669730399660934 0.18641271616005248 0.5669730399660934 0.18641271616005248 0.15953968698810697
+0.5732322057389018 0.18305272942507 0.5732322057389018 0.18305272942507 0.1803437244843061
+0.5711532336436533 0.18641375796802317 0.5711532336436534 0.18641375796802317 0.17622331374700126
+0.5774123098469129 0.18305769926562873 0.5774123098469129 0.18305769926562873 0.19628994327336033
+0.5836834726441605 0.17968403867775964 0.5836834726441605 0.17968403867775964 0.21455987471415502
+0.5815927550565546 0.18306054308718742 0.5815927550565546 0.18306054308718742 0.21193740902980593
+0.5899596119641266 0.17629797336067202 0.5899596119641267 0.17629797336067202 0.231097649647896
+0.5878683114522879 0.17968244585803858 0.5878683114522879 0.17968244585803858 0.22941280882272688
+0.6276150627614905 0.13561533180675767 0.6276150627614906 0.13561533180675767 0.2822346152407096
+0.6213389121338752 0.1390057151019266 0.6213389121338752 0.1390057151019266 0.2680290875260191
+0.6255230125522854 0.1390057151019266 0.6255230125522854 0.1390057151019266 0.27994141453566224
+0.61924686192467 0.14239609839709555 0.6192468619246699 0.14239609839709555 0.2659525345710203
+0.6171548117154649 0.1457864816922645 0.6171548117154649 0.1457864816922645 0.2642333096040828
+0.6150627615062598 0.14917686498743343 0.6150627615062598 0.14917686498743343 0.2628740111025733
+0.6087866108786445 0.15256724828260237 0.6087866108786445 0.15256724828260237 0.24949363818107503
+0.6066945606694394 0.15595763157777132 0.6066945606694394 0.15595763157777132 0.248706584624123
+0.6046025104602343 0.15934801487294026 0.6046025104602343 0.15934801487294026 0.248127556821544
+0.6025104602510238 0.1627383981681066 0.6025104602510237 0.16273839816810656 0.24767211934288227
+0.6004184100417546 0.16612878146324397 0.6004184100417546 0.16612878146324397 0.24724680015073988
+0.5983263598325442 0.16951916475841108 0.5983263598325442 0.16951916475841108 0.246753916460937
+0.5962349179568909 0.17290898779616112 0.5962349179568909 0.17290898779616112 0.24609716905802537
+0.5941447912592507 0.17629663601835896 0.5941447912592507 0.17629663601835896 0.24518366731413285
+0.6129707112970547 0.15256724828260237 0.6129707112970547 0.15256724828260237 0.26185503370518964
+0.638075313807516 0.12544418192125084 0.638075313807516 0.12544418192125084 0.3010708338478069
+0.6422594142259263 0.12544418192125084 0.6422594142259263 0.12544418192125084 0.3113286742996
+0.6359832635983109 0.12883456521641978 0.6359832635983108 0.12883456521641978 0.2985290183971166
+0.6338912133891058 0.13222494851158872 0.6338912133891058 0.13222494851158872 0.2960450980039882
+0.6317991631799007 0.13561533180675767 0.6317991631799007 0.13561533180675767 0.29369672918401674
+0.6631799163179773 0.09832111555989931 0.6631799163179773 0.09832111555989931 0.3274651533921466
+0.6610878661087722 0.10171149885506825 0.6610878661087723 0.10171149885506825 0.32789272830055194
+0.6589958158995671 0.10510188215023719 0.6589958158995671 0.10510188215023719 0.3279207858623172
+0.656903765690362 0.10849226544540613 0.656903765690362 0.10849226544540613 0.3275594013951029
+0.6548117154811569 0.11188264874057507 0.6548117154811569 0.11188264874057507 0.32683044685527074
+0.6527196652719518 0.11527303203574402 0.6527196652719517 0.11527303203574402 0.32576745807977353
+0.6506276150627467 0.11866341533091296 0.6506276150627467 0.11866341533091296 0.32441503658449483
+0.6485355648535416 0.1220537986260819 0.6485355648535416 0.1220537986260819 0.3228277482966128
+0.6464435146443365 0.12544418192125084 0.6464435146443365 0.12544418192125084 0.3210684947128994
+0.6694560669455927 0.09493073226473037 0.6694560669455926 0.09493073226473037 0.3321380277729323
+0.6673640167363876 0.09832111555989931 0.6673640167363876 0.09832111555989931 0.3332659127327187
+0.675732217573208 0.09154034896956142 0.675732217573208 0.09154034896956142 0.33559211083441237
+0.6736401673640029 0.09493073226473037 0.6736401673640029 0.09493073226473037 0.33722833570807437
+0.6820083682008233 0.08814996567439248 0.6820083682008233 0.08814996567439248 0.33831963790630776
+0.6799163179916182 0.09154034896956142 0.6799163179916182 0.09154034896956142 0.34022256950611324
+0.6882845188284387 0.08475958237922354 0.6882845188284387 0.08475958237922354 0.34087623250646276
+0.6861924686192336 0.08814996567439248 0.6861924686192334 0.08814996567439248 0.3427845286754679
+0.694560669456054 0.0813691990840546 0.6945606694560541 0.0813691990840546 0.34381218085453974
+0.6924686192468489 0.08475958237922354 0.6924686192468489 0.08475958237922354 0.3454826345306796
+0.7029288702928744 0.07458843249371672 0.7029288702928743 0.07458843249371672 0.3464354778681646
+0.7008368200836693 0.07797881578888566 0.7008368200836693 0.07797881578888566 0.34759318399860023
+0.6987447698744642 0.0813691990840546 0.6987447698744642 0.0813691990840546 0.34884108954001286
+0.7092050209204898 0.07119804919854777 0.7092050209204898 0.07119804919854777 0.35185949985166437
+0.7071129707112846 0.07458843249371672 0.7071129707112846 0.07458843249371672 0.3525249609152299
+0.7154811715481051 0.06780766590337883 0.7154811715481051 0.06780766590337883 0.3584507170889934
+0.7133891213389 0.07119804919854777 0.7133891213389 0.07119804919854777 0.35869934253830044
+0.7217573221757204 0.06441728260820989 0.7217573221757204 0.06441728260820989 0.3659667716925861
+0.7196652719665153 0.06780766590337883 0.7196652719665152 0.06780766590337883 0.36597607880961247
+0.7280334728033357 0.06102689931304095 0.7280334728033359 0.06102689931304095 0.3739831606588773
+0.7259414225941306 0.06441728260820989 0.7259414225941306 0.06441728260820989 0.3740046391326339
+0.7343096234309511 0.05763651601787201 0.7343096234309511 0.05763651601787201 0.3819574362759269
+0.732217573221746 0.06102689931304095 0.732217573221746 0.06102689931304095 0.38227861278169145
+0.7405857740585664 0.054246132722703067 0.7405857740585664 0.054246132722703067 0.38930284090235734
+0.7384937238493613 0.05763651601787201 0.7384937238493613 0.05763651601787201 0.39020786345934994
+0.7468619246861817 0.050855749427534125 0.7468619246861817 0.050855749427534125 0.3954578319377826
+0.7447698744769766 0.054246132722703067 0.7447698744769767 0.054246132722703067 0.3971929039536551
+0.7552301255230022 0.04407498283719624 0.7552301255230022 0.04407498283719624 0.3965548331384879
+0.7531380753137971 0.04746536613236518 0.753138075313797 0.04746536613236518 0.399943122392922
+0.751046025104592 0.050855749427534125 0.751046025104592 0.050855749427534125 0.4026901795065116
+0.7615062761506175 0.0406845995420273 0.7615062761506176 0.0406845995420273 0.3979447156398448
+0.7594142259414124 0.04407498283719624 0.7594142259414124 0.04407498283719624 0.40240287826662685
+0.7677824267782328 0.03729421624685836 0.7677824267782328 0.03729421624685836 0.39714484868546
+0.7656903765690277 0.0406845995420273 0.7656903765690277 0.0406845995420273 0.4026300046106455
+0.7740585774058482 0.03390383295168942 0.7740585774058482 0.03390383295168942 0.39419297893116795
+0.771966527196643 0.03729421624685836 0.771966527196643 0.03729421624685836 0.4005769804729237
+0.7803347280334635 0.030513449656520475 0.7803347280334635 0.030513449656520475 0.3892745074039284
+0.7782426778242584 0.03390383295168942 0.7782426778242585 0.03390383295168942 0.39635410076172556
+0.7866108786610788 0.027123066361351533 0.7866108786610787 0.027123066361351533 0.3827044607218251
+0.7845188284518737 0.030513449656520475 0.7845188284518737 0.030513449656520475 0.39021690049378416
+0.7928870292886941 0.02373268306618259 0.7928870292886941 0.02373268306618259 0.37490140282783185
+0.790794979079489 0.027123066361351533 0.790794979079489 0.027123066361351533 0.38254441205528344
+0.7991631799163095 0.02034229977101365 0.7991631799163095 0.02034229977101365 0.3663553716380324
+0.7970711297071044 0.02373268306618259 0.7970711297071044 0.02373268306618259 0.373809978634271
+0.8054393305439248 0.01695191647584471 0.8054393305439248 0.01695191647584471 0.35759251344021886
+0.8033472803347197 0.02034229977101365 0.8033472803347196 0.02034229977101365 0.3645467235121594
+0.8117154811715401 0.013561533180675767 0.8117154811715402 0.013561533180675767 0.3491398390517997
+0.809623430962335 0.01695191647584471 0.809623430962335 0.01695191647584471 0.3553104485965815
+0.8200836820083606 0.006780766590337883 0.8200836820083605 0.006780766590337883 0.3374624414451793
+0.8179916317991555 0.010171149885506825 0.8179916317991555 0.010171149885506825 0.3414940998778471
+0.8158995815899504 0.013561533180675767 0.8158995815899504 0.013561533180675767 0.34664353896800076
+0.8242677824267708 0.006780766590337883 0.8242677824267709 0.006780766590337883 0.3350986378801921
+0.006780766590337709 0.8284518828451857 0.006780766590337709 0.8284518828451857 0.08181472124552712
+0.006780766590337709 0.8326359832635957 0.006780766590337709 0.8326359832635957 0.08039690493921009
+0.01017114988550656 0.8221757322175707 0.01017114988550656 0.8221757322175707 0.08500581422760121
+0.01017114988550656 0.8263598326359807 0.01017114988550656 0.8263598326359807 0.08299853893683982
+0.013561533180675408 0.8200836820083657 0.013561533180675408 0.8200836820083657 0.08659118584848235
+0.016951916475844264 0.8138075313807507 0.016951916475844264 0.8138075313807507 0.091084769051777
+0.016951916475844264 0.8179916317991607 0.016951916475844264 0.8179916317991607 0.08835735304680636
+0.02034229977101312 0.8075313807531357 0.02034229977101312 0.8075313807531357 0.09634534703673181
+0.02034229977101312 0.8117154811715457 0.02034229977101312 0.8117154811715457 0.09319200853728782
+0.02373268306618197 0.8012552301255207 0.02373268306618197 0.8012552301255207 0.10220037176737884
+0.02373268306618197 0.8054393305439307 0.02373268306618197 0.8054393305439307 0.09873222936922334
+0.027123066361350822 0.7949790794979057 0.027123066361350822 0.7949790794979057 0.1084466302951181
+0.027123066361350822 0.7991631799163157 0.027123066361350822 0.7991631799163157 0.10478514678309954
+0.030513449656519673 0.7887029288702907 0.030513449656519673 0.7887029288702907 0.11486013893589363
+0.030513449656519673 0.7928870292887007 0.030513449656519673 0.7928870292887007 0.11112952184909265
+0.033903832951688535 0.7824267782426757 0.033903832951688535 0.7824267782426757 0.12120729734927549
+0.033903832951688535 0.7866108786610857 0.033903832951688535 0.7866108786610857 0.11752797978388317
+0.03729421624685738 0.7761506276150607 0.03729421624685738 0.7761506276150607 0.12725677776791242
+0.03729421624685738 0.7803347280334707 0.03729421624685738 0.7803347280334707 0.12373980000093059
+0.040684599542026224 0.7698744769874457 0.040684599542026224 0.7698744769874457 0.13279177995335925
+0.040684599542026224 0.7740585774058557 0.040684599542026224 0.7740585774058557 0.12953376912474288
+0.0440749828371951 0.7635983263598307 0.0440749828371951 0.7635983263598307 0.1376223728382522
+0.0440749828371951 0.7677824267782407 0.0440749828371951 0.7677824267782407 0.13470086631056422
+0.04746536613236394 0.7615062761506257 0.04746536613236394 0.7615062761506257 0.13906664585971543
+0.05085574942753279 0.7552301255230107 0.05085574942753279 0.7552301255230107 0.1425031700279394
+0.05085574942753279 0.7594142259414207 0.05085574942753279 0.7594142259414207 0.1401417491616004
+0.05424613272270165 0.7489539748953957 0.054246132722701644 0.7489539748953957 0.14494026274807736
+0.05424613272270165 0.7531380753138057 0.054246132722701644 0.7531380753138057 0.14300272445610973
+0.05763651601787049 0.7426778242677807 0.05763651601787049 0.7426778242677807 0.1463756959023423
+0.05763651601787049 0.7468619246861907 0.05763651601787049 0.7468619246861907 0.14484011056764337
+0.06102689931303934 0.7364016736401657 0.06102689931303934 0.7364016736401657 0.14688363267972135
+0.06102689931303934 0.7405857740585757 0.06102689931303934 0.7405857740585757 0.14569116105226598
+0.06441728260820821 0.7301255230125507 0.06441728260820821 0.7301255230125507 0.1466201553072055
+0.06441728260820821 0.7343096234309607 0.06441728260820821 0.7343096234309607 0.1456738344891655
+0.06780766590337706 0.7238493723849357 0.06780766590337706 0.7238493723849357 0.14582392784910292
+0.06780766590337706 0.7280334728033457 0.06780766590337706 0.7280334728033457 0.14499016455741195
+0.0711980491985459 0.7175732217573207 0.0711980491985459 0.7175732217573207 0.1448090521899856
+0.0711980491985459 0.7217573221757307 0.0711980491985459 0.7217573221757307 0.14392342369515473
+0.07458843249371476 0.7112970711297057 0.07458843249371476 0.7112970711297057 0.14394639857071292
+0.07458843249371476 0.7154811715481157 0.07458843249371476 0.7154811715481157 0.1428255596888954
+0.07797881578888362 0.7050209205020908 0.07797881578888362 0.7050209205020908 0.14363019149380882
+0.07797881578888362 0.7092050209205008 0.07797881578888362 0.7092050209205008 0.1420910021643156
+0.08136919908405248 0.7029288702928858 0.08136919908405248 0.7029288702928858 0.14211466123323588
+0.08475958237922132 0.6966527196652708 0.08475958237922132 0.6966527196652708 0.14323721342923704
+0.08475958237922132 0.7008368200836808 0.08475958237922132 0.7008368200836808 0.14078018993924066
+0.08814996567439015 0.6903765690376558 0.08814996567439015 0.6903765690376558 0.14568886568650474
+0.08814996567439015 0.6945606694560658 0.08814996567439015 0.6945606694560658 0.14251735712964442
+0.09154034896955902 0.6841004184100408 0.09154034896955902 0.6841004184100408 0.14954883625638518
+0.09154034896955902 0.6882845188284508 0.09154034896955902 0.6882845188284508 0.1456681992464597
+0.09493073226472787 0.6778242677824258 0.09493073226472787 0.6778242677824258 0.15473526417371372
+0.09493073226472787 0.6820083682008358 0.09493073226472787 0.6820083682008358 0.15022623487052736
+0.09832111555989675 0.6715481171548108 0.09832111555989675 0.6715481171548108 0.1610283439351197
+0.09832111555989675 0.6757322175732208 0.09832111555989675 0.6757322175732208 0.15602969849262596
+0.10171149885506564 0.6652719665271958 0.10171149885506563 0.6652719665271958 0.16811619173778072
+0.10171149885506564 0.6694560669456058 0.10171149885506563 0.6694560669456058 0.16279981926147824
+0.10510188215023453 0.6631799163179908 0.10510188215023453 0.6631799163179908 0.17019354247944632
+0.10849226544540343 0.6610878661087858 0.10849226544540343 0.6610878661087858 0.17236870157963557
+0.11188264874057234 0.6589958158995808 0.11188264874057234 0.6589958158995808 0.1745979138040641
+0.11527303203574124 0.6569037656903758 0.11527303203574124 0.6569037656903758 0.17683803839275433
+0.11866341533091013 0.6548117154811708 0.11866341533091011 0.6548117154811708 0.17904846373318342
+0.12205379862607901 0.6527196652719658 0.12205379862607901 0.6527196652719658 0.18119271237484982
+0.12544418192124793 0.6464435146443508 0.12544418192124793 0.6464435146443508 0.18836705028353729
+0.1288345652164168 0.6443514644351458 0.1288345652164168 0.6443514644351458 0.19015824429192033
+0.1390057151019235 0.6297071129707108 0.1390057151019235 0.6297071129707108 0.20328037876777708
+0.1457864816922613 0.6213389121338908 0.1457864816922613 0.6213389121338908 0.20910920855924617
+0.1491768649874302 0.6192468619246858 0.1491768649874302 0.6192468619246858 0.20994903714714783
+0.15595763157776799 0.6108786610878658 0.15595763157776799 0.6108786610878658 0.21546661614074822
+0.1593480148729369 0.6087866108786608 0.1593480148729369 0.6087866108786608 0.21644859907225014
+0.16273839816810579 0.6066945606694558 0.16273839816810579 0.6066945606694558 0.21751913919262833
+0.1661287814632747 0.6004184100418408 0.1661287814632747 0.6004184100418408 0.22281394869890916
+0.16951876689058634 0.5983258814899884 0.16951876689058634 0.5983258814899884 0.22425346494753828
+0.17290552580306306 0.596231038195982 0.17290552580306306 0.596231038195982 0.2258200049765695
+0.16612877516950833 0.6046025007404275 0.16612877516950833 0.6046025007404275 0.2186914249581049
+0.1525672482825991 0.6171548117154808 0.15256724828259907 0.6171548117154808 0.21078481201905794
+0.15595763157776799 0.6150627615062758 0.15595763157776799 0.6150627615062758 0.21164178305333084
+0.1423960983970924 0.6276150627615058 0.1423960983970924 0.6276150627615058 0.20428618688558373
+0.1457864816922613 0.6255230125523008 0.1457864816922613 0.6255230125523008 0.20521014619457886
+0.13222494851158573 0.6380753138075308 0.13222494851158573 0.6380753138075308 0.1964733080969986
+0.13222494851158573 0.6422594142259408 0.13222494851158573 0.6422594142259408 0.19180432555930918
+0.1356153318067546 0.6359832635983258 0.13561533180675459 0.6359832635983258 0.197833739245338
+0.1390057151019235 0.6338912133891208 0.1390057151019235 0.6338912133891208 0.19905814439237182
+0.12544418192124793 0.6506276150627608 0.12544418192124793 0.6506276150627608 0.18323970245336693
+0.1863261008510201 0.5752683442543128 0.1863261008510201 0.5752683442543128 0.2486963271325999
+0.18632123497664585 0.5794548946473553 0.18632123497664585 0.5794548946473553 0.24355437174724062
+0.18965694289446167 0.5731694079852477 0.18965694289446167 0.5731694079852477 0.25122716781784216
+0.19302325938820009 0.5711078553347657 0.19302325938820009 0.5711078553347657 0.2537674801096697
+0.1962074675688608 0.5601554608615936 0.1962074675688608 0.5601554608615936 0.26781102033322335
+0.1960575204332772 0.5647378859827965 0.1960575204332772 0.5647378859827965 0.2619460462553875
+0.19675933517813088 0.5691298004739247 0.1967593351781309 0.5691298004739247 0.25624872614360616
+0.17627819384309062 0.5899506115524489 0.17627819384309062 0.5899506115524488 0.2321482815814794
+0.1796395025755314 0.5878543754962308 0.1796395025755314 0.5878543754962308 0.2341290220430424
+0.18298220493256775 0.5857564532465706 0.18298220493256775 0.5857564532465706 0.23621311516822943
+0.1863078307609479 0.5836508338232443 0.1863078307609479 0.5836508338232443 0.23839526060170393
+0.17628281339476184 0.5941328540142253 0.17628281339476184 0.5941328540142253 0.2275119658290959
+0.3606732367151064 0.331912782685958 0.3606732367151064 0.331912782685958 0.24996467048639115
+0.3571834559782614 0.3320047317650556 0.3571834559782614 0.3320047317650556 0.24135573348551895
+0.3535567615766293 0.3337980828217122 0.3535567615766293 0.3337980828217122 0.23148360162830442
+0.35000735031320257 0.3353918810664938 0.35000735031320257 0.3353918810664938 0.22195267080861894
+0.346599546817188 0.336894459817689 0.346599546817188 0.336894459817689 0.21287135621691336
+0.34329676255684266 0.3382147106785396 0.34329676255684266 0.3382147106785396 0.204227987069874
+0.33989942081311186 0.33942532024390704 0.33989942081311186 0.33942532024390704 0.1955511304372235
+0.33672034317767136 0.3412149323840414 0.33672034317767136 0.3412149323840414 0.1872530969603865
+0.33347333525364004 0.34297420108606075 0.33347333525364004 0.34297420108606075 0.17900704507001428
+0.3302264318221874 0.3447331656367519 0.3302264318221874 0.3447331656367519 0.17102805356352688
+0.32698097106118285 0.3464803058579958 0.32698097106118285 0.3464803058579958 0.1634067708745319
+0.32370307627467865 0.34825359192848776 0.32370307627467865 0.34825359192848776 0.15612807985689112
+0.32040447074065376 0.35014192920557896 0.32040447074065376 0.35014192920557896 0.1492560283410026
+0.31713730652674793 0.3521512764162998 0.31713730652674793 0.3521512764162998 0.1429662380315244
+0.3139972403692159 0.3542543246174372 0.3139972403692159 0.3542543246174372 0.13747796606903506
+0.3109218364949802 0.3563476380793971 0.3109218364949802 0.3563476380793971 0.13284152538410923
+0.30779067961446316 0.3584145422230443 0.30779067961446316 0.3584145422230443 0.1289907595650075
+0.3045732837370494 0.360547794131733 0.3045732837370494 0.360547794131733 0.12598503393797292
+0.3007037181828861 0.36267523827841497 0.30070371818288605 0.362675238278415 0.12381580414930374
+0.2979659642858949 0.3654730515423536 0.2979659642858949 0.3654730515423536 0.12316288144313768
+0.29524711429454387 0.36780090790306913 0.29524711429454387 0.36780090790306913 0.12347012328761252
+0.2924915905851214 0.37003722050508703 0.29249159058512136 0.37003722050508703 0.12462760733996005
+0.2897659350231897 0.3721987627148887 0.28976593502318965 0.37219876271488866 0.12655158426228866
+0.2871979814973934 0.37429007020842897 0.28719798149739345 0.374290070208429 0.12907924134759785
+0.28472478856750777 0.3765137025091426 0.28472478856750777 0.37651370250914257 0.132220310856675
+0.28275232091647984 0.3787187699600397 0.2827523209164799 0.3787187699600398 0.13561838216831767
+0.2802790413225544 0.38101870574238816 0.2802790413225544 0.38101870574238816 0.13985929188341598
+0.277790832362185 0.38340092839845324 0.277790832362185 0.38340092839845324 0.14464507579179367
+0.27532216685323424 0.38580753209587654 0.27532216685323424 0.38580753209587654 0.14981868597333128
+0.27290808690967033 0.388226810309805 0.27290808690967033 0.388226810309805 0.15526789555324103
+0.27057754488986935 0.3906705364654302 0.27057754488986935 0.3906705364654302 0.160921842757367
+0.26831790479173034 0.3931561351192463 0.26831790479173034 0.3931561351192463 0.16678196904192602
+0.26606283094382727 0.3956999201173239 0.26606283094382727 0.3956999201173239 0.17288187205139682
+0.2638101206522627 0.3982986228915671 0.2638101206522627 0.3982986228915671 0.17917166279329758
+0.2615737142562785 0.40093969335743584 0.26157371425627846 0.4009396933574358 0.18558292189900508
+0.259337271545891 0.40358862321751166 0.259337271545891 0.4035886232175116 0.1920290246023608
+0.25713051133290915 0.4062738466029014 0.25713051133290915 0.4062738466029014 0.19851034888998334
+0.2549785693817879 0.4089945871328451 0.2549785693817879 0.40899458713284514 0.20498761573369473
+0.2528665642250421 0.41175499725137943 0.2528665642250421 0.41175499725137943 0.21145434013116193
+0.25077221927191967 0.4145614466374162 0.25077221927191967 0.4145614466374162 0.21790873064848656
+0.24871949588152342 0.4174038800583129 0.2487194958815234 0.4174038800583129 0.22429858280751488
+0.24669055182144375 0.42028842820873846 0.24669055182144375 0.42028842820873846 0.2306247622144484
+0.24468350217778903 0.42320905737626396 0.24468350217778903 0.42320905737626396 0.2368581707023644
+0.2426987425178689 0.42615758586049973 0.2426987425178689 0.42615758586049973 0.2429636737928683
+0.24074656024703345 0.42912842214395863 0.24074656024703342 0.4291284221439586 0.24891132970072052
+0.23882866372342862 0.4321381890338009 0.23882866372342862 0.4321381890338009 0.25471407364534526
+0.23695022769610632 0.4352012020238896 0.23695022769610632 0.4352012020238896 0.2603774321038181
+0.23515345206704194 0.43831915227738616 0.23515345206704194 0.43831915227738616 0.2658934970023219
+0.23338822078749746 0.44147245372815563 0.23338822078749746 0.44147245372815563 0.27121768391295437
+0.23161594199609062 0.4446315710683982 0.23161594199609062 0.4446315710683982 0.2762804489518124
+0.2298184980552994 0.4477926696305365 0.2298184980552994 0.4477926696305365 0.28105641346239313
+0.22798362595108138 0.4509865797425513 0.22798362595108138 0.45098657974255124 0.28557968759773206
+0.226214980885729 0.4542160344673227 0.226214980885729 0.4542160344673228 0.2898589917001025
+0.22483107552332626 0.45761614980634924 0.22483107552332626 0.4576161498063493 0.2940786735397009
+0.2234570733626843 0.4610997875759848 0.2234570733626843 0.4610997875759848 0.29808580458598016
+0.22194370062517776 0.46443328493549624 0.2219437006251778 0.46443328493549624 0.3015302150329308
+0.22037617697299375 0.46770630787204 0.22037617697299375 0.46770630787204 0.304535530900599
+0.2187339269951045 0.4709652660258507 0.2187339269951045 0.4709652660258507 0.3071531249430362
+0.21702387506422818 0.47422098634334536 0.21702387506422818 0.47422098634334536 0.309405608184155
+0.2153798716009605 0.4771324764646069 0.2153798716009605 0.47713247646460694 0.31103579651860436
+0.21639411547475843 0.47974039160174997 0.21639411547475845 0.4797403916017499 0.31312068875494187
+0.21551767659106505 0.4823900858674457 0.21551767659106505 0.4823900858674457 0.31446223760758296
+0.21399833625307008 0.48556971375109304 0.21399833625307005 0.485569713751093 0.31551156490312376
+0.21260575553336106 0.48878536320861543 0.21260575553336106 0.4887853632086154 0.3162984413912697
+0.21120776364270843 0.49215231793220854 0.21120776364270846 0.49215231793220854 0.3167746036470361
+0.20978897559845977 0.4955448130986568 0.2097889755984598 0.4955448130986568 0.31687078990320794
+0.20700710160230953 0.5027570973798479 0.20700710160230956 0.502757097379848 0.3159954563697757
+0.20835859228096013 0.4989693935084101 0.20835859228096013 0.4989693935084101 0.31660682103357324
+0.20991164667337395 0.5042331966487339 0.20991164667337397 0.5042331966487339 0.316845831309862
+0.207607424573244 0.5067734743914932 0.207607424573244 0.5067734743914932 0.315637747513398
+0.20117329275835638 0.5282980256066194 0.2011732927583564 0.5282980256066194 0.3024238397141556
+0.2022222726805386 0.5249764990365606 0.20222227268053858 0.5249764990365606 0.30524237933832093
+0.20330533272311477 0.5215333683472393 0.20330533272311477 0.5215333683472393 0.3078728251741452
+0.2044121350991106 0.5179921956724435 0.2044121350991106 0.5179921956724435 0.31027666549386707
+0.20553088603761824 0.5144014127048028 0.20553088603761824 0.5144014127048028 0.3123949374253821
+0.20668136499453355 0.5106643529005437 0.20668136499453357 0.5106643529005437 0.31421995658193064
+0.20319982631337313 0.5305060727647422 0.20319982631337316 0.5305060727647422 0.3011972675546211
+0.19903629907315257 0.5534173023291418 0.19903629907315257 0.5534173023291418 0.2763033706646027
+0.20250622365450563 0.5338713685412092 0.20250622365450563 0.5338713685412092 0.2980954275151358
+0.20184782419675182 0.5374059571068327 0.20184782419675182 0.5374059571068327 0.29458012423599816
+0.2012579432896619 0.5410890232446227 0.20125794328966193 0.5410890232446227 0.29067488740983594
+0.19962178674015238 0.5447595692817226 0.19962178674015238 0.5447595692817226 0.28651122840748716
+0.1987774950119617 0.5491438538103489 0.19877749501196168 0.5491438538103489 0.2814267149022558
+0.19985449181345755 0.557399303110157 0.19985449181345752 0.5573993031101568 0.2715287893478689
+0.36354165994059084 0.3270857613795593 0.3635416599405908 0.3270857613795593 0.2591738100162511
+0.36331949832988863 0.3303485503500604 0.36331949832988863 0.33034855035006044 0.25728068896839235
+0.37279090592763886 0.3112659964718249 0.37279090592763886 0.3112659964718249 0.28600256461092494
+0.3680226181289869 0.3188284899295526 0.3680226181289869 0.3188284899295526 0.27308064540587224
+0.3720630023633965 0.3146287088208868 0.37206300236339646 0.3146287088208868 0.28362836625581217
+0.3709226742869409 0.3174261314987291 0.3709226742869409 0.3174261314987291 0.280188603684599
+0.36782049392217264 0.3222870190055859 0.3678204939221726 0.3222870190055858 0.2713773546535456
+0.36720047634871344 0.325735293685797 0.3672004763487134 0.32573529368579696 0.26862646951390956
+0.38351834965080694 0.2958662249474193 0.38351834965080694 0.2958662249474193 0.30780089737618893
+0.37791464679151127 0.30342357410519233 0.37791464679151127 0.30342357410519233 0.2977452022640572
+0.3825053742833577 0.2992473604095222 0.3825053742833577 0.2992473604095222 0.3065779624323964
+0.3815682628585868 0.3025659655928471 0.3815682628585868 0.30256596559284704 0.3051432876917875
+0.3771197114869072 0.30689227480812825 0.3771197114869072 0.30689227480812825 0.29599778578505215
+0.37635060589453045 0.3103622371306228 0.37635060589453045 0.3103622371306228 0.2940123198758453
+0.39609699217498007 0.28098682020034565 0.39609699217498 0.28098682020034565 0.3208778321876458
+0.3891095203691169 0.28826699532520567 0.3891095203691169 0.28826699532520567 0.31483582772434815
+0.39452972696009225 0.28423064904155304 0.39452972696009225 0.284230649041553 0.32087453733221877
+0.3930609214312521 0.2876416099985251 0.3930609214312521 0.2876416099985251 0.32080497536041847
+0.38824093368033114 0.29181259629435263 0.38824093368033114 0.2918125962943527 0.31495472473943525
+0.38720453707669306 0.2952291480393689 0.38720453707669306 0.2952291480393689 0.31438862363008185
+0.41088141471591255 0.2669576828290763 0.41088141471591255 0.2669576828290763 0.3234482897547988
+0.402100603516057 0.27397414537029247 0.402100603516057 0.27397414537029247 0.3225419651781017
+0.4095145230436127 0.27001690807152645 0.40951452304361263 0.27001690807152645 0.32547647645957317
+0.4055452531001923 0.27346088314694916 0.40554525310019235 0.27346088314694916 0.3254755855717422
+0.4080918754142744 0.2724728456699711 0.40809187541427433 0.2724728456699711 0.3266900611227584
+0.400972811034334 0.2773344097192075 0.4009728110343341 0.2773344097192075 0.3241274379889015
+0.39974977026585334 0.2807284395001997 0.3997497702658533 0.2807284395001997 0.32538571647576836
+0.4346221430876687 0.24780170255888534 0.4346221430876687 0.2478017025588853 0.3054682696699614
+0.432467356158285 0.2508530785251909 0.432467356158285 0.25085307852519095 0.3093678477890569
+0.43073156510247085 0.25400787020379456 0.43073156510247085 0.2540078702037945 0.31311883488810394
+0.4290312133802973 0.25697445257829205 0.4290312133802973 0.25697445257829205 0.31660661403492046
+0.4270080763841793 0.25961804762917545 0.4270080763841793 0.25961804762917545 0.31983310900331996
+0.41584504902334796 0.2639586621622225 0.415845049023348 0.2639586621622225 0.32303614118141827
+0.4193826394187178 0.2641079425982138 0.41938263941871773 0.2641079425982138 0.32428410831044735
+0.4248943686045286 0.26219659436780546 0.4248943686045286 0.26219659436780546 0.3228189469591424
+0.4225569497159859 0.2641052380249728 0.4225569497159859 0.2641052380249728 0.3247190642842298
+0.4143256553963148 0.26695675925435086 0.4143256553963148 0.26695675925435086 0.32539304053412826
+0.442614469873303 0.24186790974895578 0.44261446987330294 0.24186790974895578 0.2940493949725236
+0.44052879015481394 0.24496778923999257 0.440528790154814 0.2449677892399926 0.29854293470658494
+0.4463201727630295 0.24217021332674774 0.44632017276302954 0.24217021332674774 0.29007026517026185
+0.4384394964855038 0.24806430236872837 0.4384394964855038 0.24806430236872837 0.3029861697415251
+0.47299772859153233 0.22568255294776177 0.47299772859153233 0.22568255294776177 0.22774985820361018
+0.4706123420294608 0.22813903296835625 0.4706123420294608 0.22813903296835622 0.23522939542922724
+0.46823423799829844 0.2305576041532993 0.4682342379982984 0.2305576041532993 0.24244063707402488
+0.46586482003545904 0.23296668512811314 0.465864820035459 0.23296668512811314 0.24940762716192524
+0.46354011631147823 0.2353702238454599 0.46354011631147823 0.23537022384545994 0.25606672876632053
+0.46127667077747914 0.23775354677120386 0.46127667077747914 0.2377535467712039 0.26239756738566
+0.4499285178704411 0.24254202181530551 0.4499285178704411 0.24254202181530551 0.2855734011800016
+0.4529416817096348 0.24321433373047413 0.4529416817096347 0.24321433373047416 0.2815397375159215
+0.45545342809039024 0.24355006710098745 0.45545342809039024 0.24355006710098745 0.27756571694158433
+0.45914177403127576 0.24004130589465614 0.45914177403127576 0.24004130589465614 0.26823580756228754
+0.45724249099155834 0.24202023480438073 0.4572424909915584 0.24202023480438073 0.2732530209481438
+0.49404248017949176 0.21728910746879712 0.49404248017949176 0.21728910746879712 0.15817716755351796
+0.4813255240348959 0.2213709606164842 0.4813255240348959 0.2213709606164842 0.2019605691321055
+0.49138234632959793 0.21985058427405363 0.49138234632959793 0.21985058427405366 0.1687115106679631
+0.48501806618309273 0.2219900923853826 0.4850180661830928 0.2219900923853826 0.190863208836376
+0.4886881313504546 0.22268196984453387 0.4886881313504546 0.2226819698445339 0.17926771292366994
+0.4789125624984354 0.22407604036411014 0.47891256249843545 0.22407604036411014 0.21053011519154174
+0.4764967077502876 0.22677520358087358 0.4764967077502876 0.22677520358087358 0.21887303783300308
+0.5164123944997959 0.21026555515868373 0.5164123944997959 0.2102655551586837 0.07040062297997364
+0.5026374795237586 0.21367012745882433 0.5026374795237586 0.21367012745882433 0.1249366956668538
+0.5136986385581359 0.21242356831212336 0.5136986385581359 0.21242356831212336 0.08166169039073583
+0.5057966839238535 0.2151012211103545 0.5057966839238536 0.21510122111035448 0.1134984326902261
+0.5110792566759834 0.21467213779445843 0.5110792566759833 0.21467213779445846 0.09277984134055083
+0.5085494713999605 0.21587743291701272 0.5085494713999605 0.21587743291701272 0.10313872647352511
+0.5000535745571321 0.2160571226283615 0.5000535745571321 0.2160571226283615 0.13574887369439706
+0.4974663812095484 0.21851714445232823 0.4974663812095484 0.2185171444523282 0.14645941653684155
+0.5255022032688305 0.20755043169130238 0.5255022032688305 0.20755043169130238 0.039665991747294245
+0.5287898507221269 0.20899585557113232 0.528789850722127 0.20899585557113234 0.03531003307715012
+0.5226645563075728 0.20968401944046336 0.5226645563075728 0.20968401944046336 0.04820224086583579
+0.5197731512886593 0.2118218553505324 0.5197731512886593 0.2118218553505324 0.05869045336283874
+0.5316830695124202 0.20989838199586713 0.5316830695124202 0.20989838199586713 0.036444446382644054
+0.5343513152470103 0.20884485788532192 0.5343513152470103 0.20884485788532192 0.04089720508075
+0.5371640343607074 0.20707995888594757 0.5371640343607074 0.20707995888594757 0.048488558622097715
+0.5400938004747199 0.20524138632501798 0.5400938004747199 0.20524138632501798 0.05843679188087957
+0.5607614230113465 0.1897603297374971 0.5607614230113463 0.1897603297374971 0.1372406382750095
+0.554630459502577 0.19314855856629942 0.554630459502577 0.19314855856629942 0.11391856655116923
+0.5588207233128265 0.19307610644247966 0.5588207233128265 0.19307610644247966 0.13167168010423388
+0.5431359771977603 0.20329645946535077 0.5431359771977603 0.20329645946535077 0.06990268211350505
+0.5462441025616933 0.20123550827444991 0.5462441025616932 0.20123550827444991 0.08214459917342086
+0.5494432081643568 0.19920177749510823 0.5494432081643569 0.19920177749510823 0.09498393889103986
+0.5526426050549801 0.1967103054857094 0.5526426050549801 0.19671030548570936 0.10754796313234428
+0.5649219564302378 0.1897556316553722 0.5649219564302378 0.1897556316553722 0.1544711942335204
+0.5690839415691421 0.18976170836181047 0.5690839415691421 0.18976170836181047 0.17156317644861094
+0.5753307771370545 0.18641849399812374 0.5753307771370545 0.18641849399812374 0.19265335984074936
+0.5732586693401397 0.18976299540536257 0.5732586693401397 0.18976299540536257 0.18847514894496364
+0.5795055613633453 0.18642319783743175 0.5795055613633453 0.18642319783743175 0.2087793295552407
+0.5857735148319917 0.18305799737416184 0.5857735148319917 0.18305799737416184 0.22724704706098905
+0.5836757506450543 0.18642144902737026 0.5836757506450542 0.18642144902737026 0.22454782418288602
+0.5920536507575384 0.1796785064086178 0.5920536507575384 0.1796785064086178 0.2439156611613915
+0.5899579701796495 0.1830527728574468 0.5899579701796495 0.1830527728574468 0.2422053549305815
+0.6297071129706956 0.1390057151019266 0.6297071129706956 0.1390057151019266 0.2915533689684171
+0.6234309623430803 0.14239609839709555 0.6234309623430803 0.14239609839709555 0.2779484251634075
+0.6276150627614905 0.14239609839709555 0.6276150627614906 0.14239609839709555 0.2896724724475223
+0.6213389121338752 0.1457864816922645 0.6213389121338752 0.1457864816922645 0.2762895860027641
+0.61924686192467 0.14917686498743343 0.6192468619246699 0.14917686498743343 0.27497872224732695
+0.6171548117154649 0.15256724828260237 0.6171548117154649 0.15256724828260237 0.2740084353152888
+0.6108786610878496 0.15595763157777132 0.6108786610878497 0.15595763157777132 0.2611355616849122
+0.6087866108786445 0.15934801487294026 0.6087866108786445 0.15934801487294026 0.2606558806696833
+0.6066945606694382 0.16273839816810864 0.6066945606694382 0.16273839816810864 0.2603407787901459
+0.6046025104602183 0.16612878146327034 0.6046025104602183 0.16612878146327034 0.26010371086565526
+0.6025104602510061 0.16951916475843595 0.602510460251006 0.16951916475843595 0.2598513609986368
+0.6004191718685437 0.1729087550256356 0.6004191718685438 0.1729087550256356 0.25948920410887794
+0.5983293754162554 0.17629542863006084 0.5983293754162554 0.17629542863006084 0.25892272717378123
+0.5962381162707145 0.1796743456571056 0.5962381162707145 0.1796743456571056 0.2580471141285594
+0.6150627615062598 0.15595763157777132 0.6150627615062598 0.15595763157777132 0.27335029677679684
+0.6401673640167211 0.12883456521641978 0.6401673640167211 0.12883456521641978 0.30910984777964284
+0.6443514644351314 0.12883456521641978 0.6443514644351315 0.12883456521641978 0.3192063528334251
+0.638075313807516 0.13222494851158872 0.638075313807516 0.13222494851158872 0.3069035077398994
+0.6359832635983109 0.13561533180675767 0.6359832635983108 0.13561533180675767 0.30478587366122417
+0.6338912133891058 0.1390057151019266 0.6338912133891058 0.1390057151019266 0.30282759743981463
+0.6652719665271825 0.10171149885506825 0.6652719665271825 0.10171149885506825 0.3340464370839507
+0.6631799163179773 0.10510188215023719 0.6631799163179773 0.10510188215023719 0.334469238356971
+0.6610878661087722 0.10849226544540613 0.6610878661087723 0.10849226544540613 0.3345342746546458
+0.6589958158995671 0.11188264874057507 0.6589958158995671 0.11188264874057507 0.3342524819772723
+0.656903765690362 0.11527303203574402 0.656903765690362 0.11527303203574402 0.33364603465096904
+0.6548117154811569 0.11866341533091296 0.6548117154811569 0.11866341533091296 0.332748159800245
+0.6527196652719518 0.1220537986260819 0.6527196652719517 0.1220537986260819 0.33160246468253285
+0.6506276150627467 0.12544418192125084 0.6506276150627467 0.12544418192125084 0.3302617471491827
+0.6485355648535416 0.12883456521641978 0.6485355648535416 0.12883456521641978 0.32878627660748266
+0.6715481171547978 0.09832111555989931 0.6715481171547978 0.09832111555989931 0.33860250056233054
+0.6694560669455927 0.10171149885506825 0.6694560669455926 0.10171149885506825 0.33968872668866457
+0.6778242677824131 0.09493073226473037 0.6778242677824132 0.09493073226473037 0.34196928294402446
+0.675732217573208 0.09832111555989931 0.675732217573208 0.09832111555989931 0.34352589830672337
+0.6841004184100284 0.09154034896956142 0.6841004184100284 0.09154034896956142 0.34464566413186065
+0.6820083682008233 0.09493073226473037 0.6820083682008233 0.09493073226473037 0.34642730293803453
+0.6903765690376438 0.08814996567439248 0.6903765690376438 0.08814996567439248 0.34719793876401756
+0.6882845188284387 0.09154034896956142 0.6882845188284387 0.09154034896956142 0.34893759134181423
+0.6966527196652591 0.08475958237922354 0.6966527196652591 0.08475958237922354 0.3501890294130053
+0.694560669456054 0.08814996567439248 0.6945606694560541 0.08814996567439248 0.35163731271305715
+0.7050209205020795 0.07797881578888566 0.7050209205020795 0.07797881578888566 0.35325872922119855
+0.7029288702928744 0.0813691990840546 0.7029288702928743 0.0813691990840546 0.3540961501593865
+0.7008368200836693 0.08475958237922354 0.7008368200836693 0.08475958237922354 0.3550636207844273
+0.7112970711296949 0.07458843249371672 0.711297071129695 0.07458843249371672 0.35894051670946053
+0.7092050209204898 0.07797881578888566 0.7092050209204898 0.07797881578888566 0.359231882942511
+0.7175732217573102 0.07119804919854777 0.7175732217573102 0.07119804919854777 0.36585903456200514
+0.7154811715481051 0.07458843249371672 0.7154811715481051 0.07458843249371672 0.36568723649219487
+0.7238493723849255 0.06780766590337883 0.7238493723849255 0.06780766590337883 0.3737561669435705
+0.7217573221757204 0.07119804919854777 0.7217573221757204 0.07119804919854777 0.37331180590762
+0.7301255230125409 0.06441728260820989 0.7301255230125409 0.06441728260820989 0.38218325637046036
+0.7280334728033357 0.06780766590337883 0.7280334728033359 0.06780766590337883 0.38173572544978956
+0.7364016736401562 0.06102689931304095 0.7364016736401561 0.06102689931304095 0.3905675622741065
+0.7343096234309511 0.06441728260820989 0.7343096234309511 0.06441728260820989 0.3904257794356747
+0.7426778242677715 0.05763651601787201 0.7426778242677715 0.05763651601787201 0.3982886657731665
+0.7405857740585664 0.06102689931304095 0.7405857740585664 0.06102689931304095 0.39876016339913284
+0.7489539748953868 0.054246132722703067 0.7489539748953868 0.054246132722703067 0.40475072885299107
+0.7468619246861817 0.05763651601787201 0.7468619246861817 0.05763651601787201 0.406105682540645
+0.7573221757322073 0.04746536613236518 0.7573221757322073 0.04746536613236518 0.4062624901687531
+0.7552301255230022 0.050855749427534125 0.7552301255230022 0.050855749427534125 0.4094419698537725
+0.7531380753137971 0.054246132722703067 0.753138075313797 0.054246132722703067 0.41188564648648657
+0.7635983263598226 0.04407498283719624 0.7635983263598226 0.04407498283719624 0.4076131008975274
+0.7615062761506175 0.04746536613236518 0.7615062761506176 0.04746536613236518 0.4119779616310794
+0.7698744769874379 0.0406845995420273 0.7698744769874378 0.0406845995420273 0.4066044656375983
+0.7677824267782328 0.04407498283719624 0.7677824267782328 0.04407498283719624 0.4121287574922215
+0.7761506276150533 0.03729421624685836 0.7761506276150533 0.03729421624685836 0.4032633515257107
+0.7740585774058482 0.0406845995420273 0.7740585774058482 0.0406845995420273 0.4098313871455544
+0.7824267782426686 0.03390383295168942 0.7824267782426686 0.03390383295168942 0.39777420177159367
+0.7803347280334635 0.03729421624685836 0.7803347280334635 0.03729421624685836 0.405189612317259
+0.7887029288702839 0.030513449656520475 0.7887029288702839 0.030513449656520475 0.3904623795502511
+0.7866108786610788 0.03390383295168942 0.7866108786610787 0.03390383295168942 0.3984626633290084
+0.7949790794978993 0.027123066361351533 0.7949790794978994 0.027123066361351533 0.3817688226281493
+0.7928870292886941 0.030513449656520475 0.7928870292886941 0.030513449656520475 0.3900444385558128
+0.8012552301255146 0.02373268306618259 0.8012552301255146 0.02373268306618259 0.3722177829518118
+0.7991631799163095 0.027123066361351533 0.7991631799163095 0.027123066361351533 0.38043458278801867
+0.8075313807531299 0.02034229977101365 0.8075313807531298 0.02034229977101365 0.36237980322271474
+0.8054393305439248 0.02373268306618259 0.8054393305439248 0.02373268306618259 0.3702031005934335
+0.8138075313807452 0.01695191647584471 0.8138075313807452 0.01695191647584471 0.35283286510203005
+0.8117154811715401 0.02034229977101365 0.8117154811715402 0.02034229977101365 0.3599507696024731
+0.8221757322175657 0.010171149885506825 0.8221757322175657 0.010171149885506825 0.3390439873969931
+0.8200836820083606 0.013561533180675767 0.8200836820083605 0.013561533180675767 0.34412552111962924
+0.8179916317991555 0.01695191647584471 0.8179916317991555 0.01695191647584471 0.35026854761450427
+0.828451882845181 0.006780766590337883 0.8284518828451811 0.006780766590337883 0.33294332755506634
+0.8263598326359759 0.010171149885506825 0.8263598326359759 0.010171149885506825 0.3367463235028591
+0.8326359832635912 0.006780766590337883 0.8326359832635912 0.006780766590337883 0.33110331967677004
+0.006780766590337709 0.8368200836820057 0.006780766590337709 0.8368200836820057 0.07938545054005014
+0.006780766590337709 0.8410041841004157 0.006780766590337709 0.8410041841004157 0.07878355354807744
+0.01017114988550656 0.8305439330543907 0.01017114988550656 0.8305439330543907 0.08137269811282359
+0.01017114988550656 0.8347280334728007 0.01017114988550656 0.8347280334728007 0.0801512796599551
+0.013561533180675408 0.8242677824267757 0.013561533180675408 0.8242677824267757 0.08438200981428447
+0.013561533180675408 0.8284518828451857 0.013561533180675408 0.8284518828451857 0.08254386367743498
+0.016951916475844264 0.8221757322175707 0.016951916475844264 0.8221757322175707 0.08594433218936398
+0.02034229977101312 0.8158995815899557 0.02034229977101312 0.8158995815899557 0.09028050036531089
+0.02034229977101312 0.8200836820083657 0.02034229977101312 0.8200836820083657 0.08766310220865704
+0.02373268306618197 0.8096234309623407 0.02373268306618197 0.8096234309623407 0.09542509462346294
+0.02373268306618197 0.8138075313807507 0.02373268306618197 0.8138075313807507 0.09233410288435906
+0.027123066361350822 0.8033472803347257 0.027123066361350822 0.8033472803347257 0.1012022465637562
+0.027123066361350822 0.8075313807531357 0.027123066361350822 0.8075313807531357 0.09775150675126576
+0.030513449656519673 0.7970711297071107 0.030513449656519673 0.7970711297071107 0.10739857180147676
+0.030513449656519673 0.8012552301255207 0.030513449656519673 0.8012552301255207 0.10371629074420942
+0.033903832951688535 0.7907949790794957 0.033903832951688535 0.7907949790794957 0.11377659582392462
+0.033903832951688535 0.7949790794979057 0.033903832951688535 0.7949790794979057 0.10999569557783655
+0.03729421624685738 0.7845188284518807 0.03729421624685738 0.7845188284518807 0.12008884200309354
+0.03729421624685738 0.7887029288702907 0.03729421624685738 0.7887029288702907 0.11633887483860116
+0.040684599542026224 0.7782426778242657 0.040684599542026224 0.7782426778242657 0.12609169736273326
+0.040684599542026224 0.7824267782426757 0.040684599542026224 0.7824267782426757 0.12249223902453667
+0.0440749828371951 0.7719665271966507 0.0440749828371951 0.7719665271966507 0.1315587479313817
+0.0440749828371951 0.7761506276150607 0.0440749828371951 0.7761506276150607 0.12821386157789338
+0.04746536613236394 0.7656903765690357 0.04746536613236394 0.7656903765690357 0.1362935378818612
+0.04746536613236394 0.7698744769874457 0.04746536613236394 0.7698744769874457 0.13328689635608018
+0.05085574942753279 0.7635983263598307 0.05085574942753279 0.7635983263598307 0.13753213965404384
+0.05424613272270165 0.7573221757322157 0.054246132722701644 0.7573221757322157 0.1408198294657659
+0.05424613272270165 0.7615062761506257 0.054246132722701644 0.7615062761506257 0.13838622718409377
+0.05763651601787049 0.7510460251046007 0.05763651601787049 0.7510460251046007 0.14308063200636556
+0.05763651601787049 0.7552301255230107 0.05763651601787049 0.7552301255230107 0.14108162847009106
+0.06102689931303934 0.7447698744769857 0.06102689931303934 0.7447698744769857 0.1443155510949745
+0.06102689931303934 0.7489539748953957 0.06102689931303934 0.7489539748953957 0.14273094214959506
+0.06441728260820821 0.7384937238493707 0.06441728260820821 0.7384937238493707 0.14460416412383104
+0.06441728260820821 0.7426778242677807 0.06441728260820821 0.7426778242677807 0.14337567311756483
+0.06780766590337706 0.7322175732217557 0.06780766590337706 0.7322175732217557 0.14411004443174358
+0.06780766590337706 0.7364016736401657 0.06780766590337706 0.7364016736401657 0.14314004289743829
+0.0711980491985459 0.7259414225941407 0.0711980491985459 0.7259414225941407 0.14308138251424532
+0.0711980491985459 0.7301255230125507 0.0711980491985459 0.7301255230125507 0.14223428295804905
+0.07458843249371476 0.7196652719665257 0.07458843249371476 0.7196652719665257 0.14184371010353078
+0.07458843249371476 0.7238493723849357 0.07458843249371476 0.7238493723849357 0.14095172445255325
+0.07797881578888362 0.7133891213389107 0.07797881578888362 0.7133891213389107 0.14078070499583598
+0.07797881578888362 0.7175732217573207 0.07797881578888362 0.7175732217573207 0.13965593470429108
+0.08136919908405248 0.7071129707112958 0.08136919908405248 0.7071129707112958 0.1402994721544881
+0.08136919908405248 0.7112970711297057 0.08136919908405248 0.7112970711297057 0.13875363396774135
+0.08475958237922132 0.7050209205020908 0.08475958237922132 0.7050209205020908 0.13865088888105184
+0.08814996567439015 0.6987447698744758 0.08814996567439015 0.6987447698744758 0.13969579461446804
+0.08814996567439015 0.7029288702928858 0.08814996567439015 0.7029288702928858 0.13722142166098572
+0.09154034896955902 0.6924686192468608 0.09154034896955902 0.6924686192468608 0.14211977325372527
+0.09154034896955902 0.6966527196652708 0.09154034896955902 0.6966527196652708 0.1389214275168316
+0.09493073226472787 0.6861924686192458 0.09493073226472787 0.6861924686192458 0.1459962049889447
+0.09493073226472787 0.6903765690376558 0.09493073226472787 0.6903765690376558 0.14208004729470694
+0.09832111555989675 0.6799163179916308 0.09832111555989675 0.6799163179916308 0.15123198601253696
+0.09832111555989675 0.6841004184100408 0.09832111555989675 0.6841004184100408 0.14668105068357404
+0.10171149885506564 0.6736401673640158 0.10171149885506563 0.6736401673640158 0.157594154270686
+0.10171149885506564 0.6778242677824258 0.10171149885506563 0.6778242677824258 0.15254967139583678
+0.10510188215023453 0.6673640167364008 0.10510188215023453 0.6673640167364008 0.16475936108469139
+0.10510188215023453 0.6715481171548108 0.10510188215023453 0.6715481171548108 0.15939470430552502
+0.10849226544540343 0.6652719665271958 0.10849226544540343 0.6652719665271958 0.16686415200576846
+0.11188264874057234 0.6631799163179908 0.11188264874057234 0.6631799163179908 0.16906802283433076
+0.11527303203574124 0.6610878661087858 0.11527303203574124 0.6610878661087858 0.17132390581486498
+0.11866341533091013 0.6589958158995808 0.11866341533091011 0.6589958158995808 0.17358607859026198
+0.12205379862607901 0.6569037656903758 0.12205379862607901 0.6569037656903758 0.1758120996946576
+0.12544418192124793 0.6548117154811708 0.12544418192124793 0.6548117154811708 0.17796438089733702
+0.1288345652164168 0.6485355648535558 0.1288345652164168 0.6485355648535558 0.18516465682517566
+0.13222494851158573 0.6464435146443508 0.13222494851158573 0.6464435146443508 0.18694966815742997
+0.1423960983970924 0.6317991631799158 0.1423960983970924 0.6317991631799158 0.20015969243285406
+0.1491768649874302 0.6234309623430958 0.1491768649874302 0.6234309623430958 0.20607612209973294
+0.1525672482825991 0.6213389121338908 0.15256724828259907 0.6213389121338908 0.2069093802020299
+0.1593480148729369 0.6129707112970708 0.1593480148729369 0.6129707112970708 0.21254320513915334
+0.16273839816810579 0.6108786610878658 0.16273839816810579 0.6108786610878658 0.21350937488936725
+0.1661287814632747 0.6087866108786608 0.1661287814632747 0.6087866108786608 0.21455688515320712
+0.16951900718661608 0.6025102322654877 0.16951900718661608 0.6025102322654877 0.2199742444549713
+0.17290743749500925 0.6004160618494989 0.17290743749500925 0.6004160618494989 0.22137378615680578
+0.17628845760395287 0.5983171938317925 0.17628845760395287 0.5983171938317925 0.22289449510617523
+0.16951912110134892 0.6066944943592227 0.16951912110134892 0.6066944943592228 0.21569822472057987
+0.15595763157776799 0.6192468619246858 0.15595763157776799 0.6192468619246858 0.2077353777843558
+0.1593480148729369 0.6171548117154808 0.1593480148729369 0.6171548117154808 0.20857859113306773
+0.1457864816922613 0.6297071129707108 0.1457864816922613 0.6297071129707108 0.2011561130730621
+0.1491768649874302 0.6276150627615058 0.1491768649874302 0.6276150627615058 0.2020686948691938
+0.1356153318067546 0.6401673640167358 0.13561533180675459 0.6401673640167358 0.19330088764734965
+0.1356153318067546 0.6443514644351458 0.13561533180675459 0.6443514644351458 0.18858393842153656
+0.1390057151019235 0.6380753138075308 0.1390057151019235 0.6380753138075308 0.1946501046616411
+0.1423960983970924 0.6359832635983258 0.1423960983970924 0.6359832635983258 0.19586024247199452
+0.1288345652164168 0.6527196652719658 0.1288345652164168 0.6527196652719658 0.1800113768888523
+0.18964451841958563 0.5773314444837977 0.18964451841958563 0.5773314444837977 0.24597353710525316
+0.18962826584347214 0.5815127452783112 0.18962826584347214 0.5815127452783112 0.24069204444447653
+0.19295061867116936 0.575233169719848 0.19295061867116936 0.575233169719848 0.24840741100733202
+0.1960204219270273 0.5732633761795505 0.1960204219270273 0.5732633761795505 0.2507365694233222
+0.19949655490863472 0.5621044379337692 0.19949655490863472 0.5621044379337691 0.26541742326725726
+0.19929070178507674 0.5660575121012648 0.1992907017850767 0.5660575121012648 0.2601988087249914
+0.2000237370906604 0.5691741546613871 0.2000237370906604 0.5691741546613871 0.25591259040096664
+0.19922312987371937 0.572019730719569 0.19922312987371937 0.572019730719569 0.25217001475485296
+0.17964470208038733 0.5920340051112616 0.17964470208038733 0.5920340051112616 0.22932065905410207
+0.18298353552067467 0.5899408650505097 0.18298353552067467 0.5899408650505097 0.23123052718917167
+0.18629613994435956 0.5878487034563665 0.18629613994435956 0.5878487034563665 0.23323730291342684
+0.18959176792412924 0.5857372198353016 0.18959176792412924 0.5857372198353016 0.2353566678883183
+0.17965481202045708 0.5962141080686215 0.17965481202045708 0.5962141080686215 0.22453448931001255
+0.3632187347901624 0.3337237890250614 0.36321873479016237 0.33372378902506133 0.25560441954063867
+0.35984873072686785 0.33474634958383925 0.35984873072686785 0.33474634958383925 0.24673322757762603
+0.3566233089718329 0.3358662110521742 0.3566233089718329 0.3358662110521742 0.2381293304103612
+0.35325056047789466 0.3373349320614287 0.35325056047789466 0.3373349320614287 0.22896155116788555
+0.34980097804952304 0.33887671430915695 0.34980097804952304 0.33887671430915695 0.21958899572392057
+0.34617024782429884 0.3407984132695604 0.3461702478242988 0.34079841326956034 0.20964971181907743
+0.3426369736904031 0.3411397630449146 0.3426369736904031 0.3411397630449146 0.20087518257829373
+0.3400078737279622 0.34301327576692225 0.3400078737279622 0.34301327576692225 0.19365179277457945
+0.3368321773871371 0.34479806336526075 0.33683217738713717 0.34479806336526075 0.18526526055952885
+0.33357520156217285 0.3465319680202276 0.33357520156217285 0.3465319680202276 0.1769554733141033
+0.3303421332020507 0.3482459132387459 0.3303421332020507 0.3482459132387459 0.1690110569201642
+0.3271424981378757 0.34988707704840766 0.3271424981378757 0.34988707704840766 0.16154403492474875
+0.323884148554518 0.35167908337168496 0.323884148554518 0.35167908337168496 0.15430829666696314
+0.3207075328261278 0.3536942603220377 0.3207075328261278 0.3536942603220377 0.14764434411188798
+0.3175596723906384 0.3557366600049871 0.3175596723906384 0.3557366600049871 0.14162135648044824
+0.3144494544631639 0.3577974555972127 0.3144494544631639 0.3577974555972127 0.13635609920049552
+0.3113366656241105 0.35986678004583145 0.3113366656241105 0.35986678004583145 0.13189837186125672
+0.30816454286464445 0.36198561230321175 0.30816454286464445 0.36198561230321175 0.1282809781441626
+0.3048468606042769 0.3642293236418287 0.3048468606042769 0.36422932364182875 0.1256055512301074
+0.3016331275830761 0.3665596933614632 0.3016331275830761 0.3665596933614632 0.12409969587576723
+0.2988704697556334 0.3689440880911525 0.2988704697556334 0.3689440880911525 0.12385723078175288
+0.296054144473007 0.3712471983445567 0.296054144473007 0.3712471983445567 0.12456547201161068
+0.2931758523213221 0.37350900336823395 0.2931758523213221 0.37350900336823395 0.12619998081203565
+0.2903593838589821 0.37568362166052915 0.290359383858982 0.3756836216605292 0.12861093560701767
+0.2876069366066788 0.3770044635082256 0.2876069366066788 0.3770044635082256 0.13101266352965305
+0.2863046772364885 0.37954833034699054 0.2863046772364885 0.3795483303469905 0.13418637425567456
+0.28392688928379634 0.38185978561123773 0.28392688928379634 0.38185978561123773 0.1382245119250095
+0.2814059716484032 0.38428926388524404 0.2814059716484032 0.38428926388524404 0.14301065252769465
+0.27889903051821235 0.3867026088918603 0.27889903051821235 0.3867026088918603 0.14821671098292818
+0.2764477670530396 0.389089988589214 0.2764477670530396 0.389089988589214 0.1536945452009331
+0.27407782027079264 0.3914781694038935 0.2740778202707927 0.3914781694038935 0.15937884918643982
+0.2718978799769345 0.3939026590395999 0.2718978799769345 0.3939026590395999 0.16517971504524923
+0.2697270842755573 0.3963875051465536 0.2697270842755573 0.3963875051465536 0.17126859947190023
+0.2675022974308671 0.39894788480513377 0.2675022974308671 0.39894788480513377 0.1776411673727147
+0.26526241702947007 0.4015577580566952 0.26526241702947 0.4015577580566952 0.1841911568924698
+0.2630159549147106 0.4041750607706283 0.2630159549147106 0.4041750607706283 0.19079092278697907
+0.26081768975180786 0.406821888221113 0.2608176897518079 0.406821888221113 0.19740908796690873
+0.2586847493261936 0.4094985727144766 0.2586847493261936 0.4094985727144766 0.20401269699871152
+0.2565945162066288 0.4122150997585022 0.2565945162066288 0.4122150997585022 0.2106124433880809
+0.2545161963528277 0.41498440839582695 0.2545161963528277 0.41498440839582695 0.21722236729469355
+0.2524698805198579 0.41778829760793657 0.2524698805198579 0.4177882976079365 0.223767873173316
+0.2504477002821842 0.42062270389210155 0.25044770028218416 0.4206227038921016 0.23022397549630289
+0.24844762056753575 0.42349584629604714 0.24844762056753575 0.42349584629604714 0.2365875604366994
+0.24647516608925626 0.42640336284549835 0.24647516608925626 0.42640336284549835 0.24282987920695634
+0.24454575955028005 0.4293346987799666 0.24454575955028005 0.4293346987799666 0.24891035975820394
+0.2426500325189751 0.43230162572302794 0.2426500325189751 0.43230162572302794 0.25483678666332166
+0.24078352273824252 0.4353132343064389 0.24078352273824252 0.4353132343064389 0.26060712598004
+0.23896584027302445 0.4383665617180952 0.23896584027302445 0.43836656171809524 0.26620005619415205
+0.23718124888517159 0.4414612906142407 0.23718124888517159 0.4414612906142407 0.2716022933382278
+0.23541746418730577 0.4445832592391892 0.23541746418730577 0.4445832592391891 0.2767727140161878
+0.233663855791892 0.44772269768634465 0.233663855791892 0.4477226976863447 0.28167809873278066
+0.23191911877273166 0.45088447479423105 0.23191911877273166 0.45088447479423105 0.2863127478389927
+0.23020383349078674 0.4540879884420724 0.23020383349078674 0.4540879884420724 0.2906902253687483
+0.22864756566537203 0.45735847088907516 0.228647565665372 0.45735847088907516 0.2948565901202706
+0.22717519255125707 0.4606959741514034 0.22717519255125707 0.4606959741514034 0.2987915938865518
+0.22569035193208237 0.4640330887155086 0.22569035193208234 0.4640330887155086 0.3023657185325719
+0.22416527961701035 0.4673463162600442 0.22416527961701035 0.46734631626004414 0.3055331105466888
+0.2225929582501469 0.4706428610234769 0.2225929582501469 0.4706428610234769 0.30829724934607167
+0.22096127192864712 0.4739278209077287 0.22096127192864712 0.4739278209077287 0.31065231077101135
+0.21907228174133103 0.4776483029496786 0.21907228174133106 0.4776483029496786 0.3129146827350448
+0.2187192309421051 0.48149316532267056 0.2187192309421051 0.48149316532267056 0.31523927091603493
+0.21760078160429383 0.4848870785772767 0.21760078160429383 0.4848870785772767 0.31669190705576894
+0.2162926362094055 0.4882081077201927 0.2162926362094055 0.4882081077201927 0.3176151375053385
+0.21491708589966185 0.49154202562848454 0.21491708589966185 0.49154202562848454 0.31814589867826304
+0.21346631657533138 0.49488767922803434 0.2134663165753314 0.4948876792280343 0.3182792933844532
+0.2120491138429099 0.498160241516425 0.2120491138429099 0.498160241516425 0.3180481730717056
+0.2104824263349786 0.5013074821819958 0.21048242633497863 0.5013074821819958 0.3174373935410222
+0.2128593837866346 0.5036310346828975 0.2128593837866346 0.5036310346828975 0.3181077862996371
+0.21136686618741934 0.5067934916782831 0.21136686618741932 0.5067934916782831 0.31706235990364845
+0.210066860759635 0.5098946998980385 0.210066860759635 0.5098946998980384 0.3157453765740445
+0.20452597607738487 0.5273478364994012 0.2045259760773849 0.5273478364994012 0.30415902597973443
+0.20572347139621028 0.5240651986038127 0.2057234713962103 0.5240651986038127 0.3069584488038793
+0.2068367004785319 0.5205278322640537 0.2068367004785319 0.5205278322640537 0.30964077384946714
+0.20796073315172348 0.5169964601149689 0.20796073315172348 0.5169964601149689 0.3120181288306189
+0.2090839584317794 0.5134344672022988 0.2090839584317794 0.5134344672022988 0.31408798435299734
+0.2061959741521449 0.5297206274063191 0.2061959741521449 0.5297206274063191 0.3026262436201937
+0.2057862391259791 0.5328778530400413 0.20578623912597907 0.5328778530400413 0.2998316638169223
+0.2018424061650378 0.554374569169088 0.20184240616503776 0.554374569169088 0.2753321943677086
+0.20199559742076456 0.5512488678037532 0.20199559742076456 0.5512488678037532 0.27928094892536176
+0.2051245409499525 0.5362926879356563 0.2051245409499525 0.5362926879356563 0.2964163810495625
+0.20439378660834837 0.5399036079818269 0.20439378660834837 0.5399036079818269 0.29256726557877627
+0.2034655222050997 0.5436040740395841 0.2034655222050997 0.5436040740395841 0.2884241052196399
+0.2025658009860507 0.5474016971858545 0.2025658009860507 0.5474016971858545 0.28396882144200536
+0.2035133395258118 0.5565641746866228 0.20351333952581177 0.5565641746866228 0.27273071403173726
+0.2029740343839883 0.5601764025901367 0.2029740343839883 0.5601764025901367 0.26801583603288387
+0.3667560237052893 0.32920591779407943 0.3667560237052893 0.32920591779407943 0.26623945883203287
+0.3664871654251418 0.33251501832656577 0.3664871654251418 0.33251501832656577 0.26433211194231815
+0.3755217828531087 0.31389098254269715 0.3755217828531087 0.31389098254269715 0.29162126581947057
+0.371553548952834 0.32079007858749126 0.37155354895283393 0.32079007858749126 0.2807749646688909
+0.3744417006339704 0.3176876480026483 0.3744417006339704 0.3176876480026483 0.2883606503433263
+0.3750210131326065 0.32099650492363585 0.3750210131326065 0.32099650492363585 0.2887531361689399
+0.3706821025059403 0.32460435466955867 0.3706821025059403 0.32460435466955867 0.277458769408879
+0.37016633437927104 0.3280654585260615 0.3701663343792711 0.32806545852606156 0.275038502405128
+0.38618055272270685 0.29861573569353195 0.38618055272270685 0.29861573569353195 0.3134715082903797
+0.3807027713261699 0.3059796076421099 0.3807027713261699 0.3059796076421099 0.30355196831853576
+0.38521063764343816 0.3019448043642678 0.38521063764343816 0.3019448043642678 0.31228644106492837
+0.38422991187394073 0.30499554546353425 0.38422991187394073 0.30499554546353425 0.3106899495205439
+0.3799489836572861 0.3094483677197142 0.3799489836572861 0.3094483677197142 0.30189167407121514
+0.37916831751181834 0.31292322555037416 0.37916831751181834 0.31292322555037416 0.2998654753423104
+0.39836984985393853 0.2839783721337259 0.39836984985393853 0.2839783721337259 0.3260329582675327
+0.3919336699034602 0.2911290071645002 0.3919336699034602 0.29112900716450024 0.32084566929115294
+0.39698692640809324 0.2872831085413942 0.39698692640809324 0.2872831085413942 0.32637954522494134
+0.3957178994683217 0.29064009353404124 0.3957178994683217 0.29064009353404124 0.3265485432584025
+0.3908823197245339 0.29460163799491185 0.3908823197245339 0.29460163799491185 0.3206279114542134
+0.3898330087677051 0.2980050724791161 0.3898330087677051 0.2980050724791161 0.32001633861700624
+0.41276647252897514 0.2699756472446915 0.4127664725289751 0.2699756472446915 0.32760576267983327
+0.4045477079679572 0.2768311627039222 0.4045477079679572 0.2768311627039222 0.3275367060443157
+0.4110401978925312 0.27305687926218836 0.41104019789253116 0.27305687926218836 0.3295687006321418
+0.40826056246619075 0.2758737393188293 0.40826056246619075 0.2758737393188293 0.3302058823174056
+0.4033835315012845 0.28036290567250555 0.40338353150128453 0.2803629056725056 0.32935056325777307
+0.4020885268228594 0.28367439551405393 0.4020885268228594 0.28367439551405393 0.33053625788075264
+0.43636603652957207 0.2511479279410998 0.436366036529572 0.2511479279410998 0.30734931916169295
+0.4343688421503182 0.254226561593397 0.4343688421503182 0.254226561593397 0.3116071106708072
+0.4324144643552106 0.25725868004555197 0.43241446435521064 0.257258680045552 0.31570713975774417
+0.4304512521813371 0.26021237048132556 0.4304512521813371 0.26021237048132556 0.31963289586675564
+0.42819774066528543 0.26318751308167043 0.42819774066528543 0.2631875130816704 0.32354322549845405
+0.41792519346033585 0.2669851650567952 0.4179251934603359 0.2669851650567952 0.32690523362248186
+0.4216171394840239 0.26686188243805403 0.42161713948402385 0.26686188243805403 0.3276773072904675
+0.4254595481501046 0.26615893366919763 0.42545954815010456 0.26615893366919763 0.3272769744776162
+0.4163553147697061 0.2700281556698647 0.4163553147697061 0.2700281556698647 0.329527610862365
+0.4442363641098323 0.245249935685474 0.4442363641098323 0.245249935685474 0.2949953180565776
+0.4421909520181088 0.24833765960952423 0.4421909520181088 0.24833765960952423 0.2998425255649446
+0.4478600953700014 0.24554812496464562 0.4478600953700013 0.24554812496464562 0.2908530021392033
+0.44015728234087864 0.2514286321342912 0.44015728234087864 0.2514286321342912 0.30464535388776254
+0.4740910557380403 0.22929753520726093 0.4740910557380403 0.22929753520726096 0.2268662878784431
+0.47169876212892364 0.23175195121235082 0.47169876212892364 0.2317519512123508 0.2345691432038279
+0.4693224672098783 0.23415985445287849 0.4693224672098783 0.23415985445287849 0.24199723533978612
+0.46696584523569157 0.23654406927347219 0.46696584523569157 0.23654406927347219 0.24916757089886646
+0.4646431345324009 0.2388868433294363 0.4646431345324009 0.2388868433294363 0.25604796588696926
+0.4623643329091715 0.24114534785728833 0.4623643329091715 0.24114534785728833 0.26259718607686233
+0.4512916538258293 0.2458256033718395 0.4512916538258293 0.24582560337183954 0.2862645467041311
+0.45452605292874837 0.24594742380024215 0.4545260529287484 0.24594742380024215 0.28120633207405893
+0.4576035061967947 0.24509065169090757 0.45760350619679463 0.24509065169090757 0.2750752638649164
+0.4601524129961502 0.24322182069135823 0.4601524129961501 0.2432218206913582 0.2687013367043875
+0.4948354957524892 0.221090331381137 0.49483549575248914 0.221090331381137 0.1572036105000216
+0.48248232141541636 0.22488618536361715 0.4824823214154163 0.22488618536361712 0.20029148137106093
+0.4921880647266542 0.22376057886169193 0.4921880647266543 0.2237605788616919 0.16785175749812453
+0.48607586398838215 0.2255988599217169 0.48607586398838215 0.2255988599217169 0.18933181377702812
+0.4895945143218698 0.22655354530333524 0.4895945143218698 0.22655354530333524 0.178158105427949
+0.48001866099678625 0.2277104275676417 0.4800186609967863 0.22771042756764173 0.20924040404720792
+0.4775838661134569 0.230393319365782 0.4775838661134569 0.23039331936578203 0.21781701052125865
+0.5169482665281775 0.21393599352088458 0.5169482665281775 0.21393599352088458 0.06987927513867988
+0.5034464068585519 0.21724471030520193 0.5034464068585519 0.21724471030520195 0.12348599178805854
+0.5140543056521998 0.21619504721122196 0.5140543056521998 0.21619504721122196 0.08187756377804235
+0.5069359806103361 0.21827499936230088 0.5069359806103361 0.2182749993623009 0.1104811559326405
+0.5107459434925332 0.21837297587994176 0.5107459434925331 0.21837297587994176 0.09570003630239356
+0.5008925643951608 0.2197028333567602 0.5008925643951608 0.2197028333567602 0.13429777963537123
+0.49828061932449735 0.22225195946967743 0.49828061932449735 0.22225195946967743 0.1452267221351025
+0.5262339713107302 0.21123585098288633 0.5262339713107301 0.2112358509828863 0.03964447384977043
+0.5298704584404179 0.2125394631820732 0.5298704584404179 0.2125394631820732 0.0366577149353206
+0.523194988361287 0.2133561295618582 0.5231949883612871 0.2133561295618582 0.04815762635047339
+0.5202704379987905 0.21552252940682015 0.5202704379987905 0.21552252940682015 0.058520284186700904
+0.5321501239896984 0.21510341933700622 0.5321501239896984 0.21510341933700622 0.039629084086701426
+0.533973424619816 0.21255496494479384 0.5339734246198161 0.2125549649447938 0.04168283401030009
+0.5373147939846095 0.21072676065793017 0.5373147939846095 0.21072676065793017 0.050487532183717355
+0.5403311526534835 0.2088722092225639 0.5403311526534836 0.2088722092225639 0.060770644016319146
+0.5434025598188962 0.2069394332983021 0.5434025598188962 0.2069394332983021 0.07246343056090386
+0.562917670894179 0.19305952549440733 0.562917670894179 0.19305952549440733 0.14903663308559742
+0.5610311343947039 0.19630590513207952 0.561031134394704 0.1963059051320795 0.14360416508788723
+0.5569755862135992 0.19640899651483598 0.5569755862135991 0.19640899651483598 0.12607651215766794
+0.5464951967243329 0.20494228553507218 0.5464951967243329 0.20494228553507218 0.08482858396377319
+0.5496171797286037 0.20290425792814426 0.5496171797286037 0.2029042579281443 0.0975374898873541
+0.5526505255339538 0.2008216710130023 0.5526505255339539 0.20082167101300233 0.10983153120008728
+0.5555005925873421 0.19939795757000262 0.5555005925873421 0.19939795757000262 0.1215242221255605
+0.5670192232843819 0.19308737270760576 0.5670192232843819 0.19308737270760576 0.16634616491008505
+0.5711871936288501 0.19309795379410996 0.5711871936288501 0.19309795379410996 0.18373551089509688
+0.5774303298245201 0.18976782951386265 0.5774303298245201 0.18976782951386265 0.20509353149605666
+0.5753746053946464 0.19309003773517666 0.5753746053946464 0.19309003773517666 0.2009076868198489
+0.5815862627194098 0.18977369785367137 0.5815862627194098 0.18977369785367137 0.22132748004521804
+0.5878507098981738 0.18641538118400694 0.5878507098981737 0.18641538118400694 0.23996195654285324
+0.5857352544076261 0.18976769153364315 0.5857352544076261 0.18976769153364315 0.23715705338921908
+0.594142115854303 0.18304473737756333 0.5941421158543029 0.18304473737756333 0.25677273089004643
+0.5920266601227941 0.18640184092073284 0.5920266601227943 0.18640184092073284 0.25497261674085486
+0.6317991631799007 0.14239609839709555 0.6317991631799007 0.14239609839709555 0.3010900374421271
+0.6255230125522854 0.1457864816922645 0.6255230125522854 0.1457864816922645 0.2880960957224397
+0.6297071129706956 0.1457864816922645 0.6297071129706956 0.1457864816922645 0.299621761614084
+0.6234309623430803 0.14917686498743343 0.6234309623430803 0.14917686498743343 0.28684820781464665
+0.6213389121338752 0.15256724828260237 0.6213389121338752 0.15256724828260237 0.2859329807509861
+0.61924686192467 0.15595763157777132 0.6192468619246699 0.15595763157777132 0.2853342473062776
+0.6129707112970547 0.15934801487294026 0.6129707112970547 0.15934801487294026 0.27295634677283603
+0.6108786610878495 0.1627383981681091 0.6108786610878495 0.1627383981681091 0.27276175691322985
+0.6087866108786409 0.1661287814632764 0.6087866108786409 0.1661287814632764 0.27268840409995826
+0.6066945606694316 0.16951916475844334 0.6066945606694317 0.16951916475844334 0.2726490350425496
+0.6046031951477969 0.17290870051082205 0.6046031951477969 0.17290870051082205 0.2725522347793596
+0.6025129584031184 0.1762949057075548 0.6025129584031185 0.1762949057075548 0.2723027336957731
+0.6004213349675963 0.17967251862256403 0.6004213349675963 0.17967251862256403 0.2717949833586111
+0.5983268808061821 0.1830411625011651 0.598326880806182 0.1830411625011651 0.2709431805531674
+0.6171548117154649 0.15934801487294026 0.6171548117154649 0.15934801487294026 0.285016200895356
+0.6422594142259263 0.13222494851158872 0.6422594142259263 0.13222494851158872 0.3173139107481297
+0.6464435146443365 0.13222494851158872 0.6464435146443365 0.13222494851158872 0.32724155759721635
+0.6401673640167211 0.13561533180675767 0.6401673640167211 0.13561533180675767 0.31546416662361443
+0.638075313807516 0.1390057151019266 0.638075313807516 0.1390057151019266 0.31372710846195634
+0.6359832635983109 0.14239609839709555 0.6359832635983108 0.14239609839709555 0.3121661456450337
+0.6673640167363876 0.10510188215023719 0.6673640167363876 0.10510188215023719 0.3404685741406635
+0.6652719665271825 0.10849226544540613 0.6652719665271825 0.10849226544540613 0.34093238382201424
+0.6631799163179773 0.11188264874057507 0.6631799163179773 0.11188264874057507 0.34108031568424413
+0.6610878661087722 0.11527303203574402 0.6610878661087723 0.11527303203574402 0.34092301861172286
+0.6589958158995671 0.11866341533091296 0.6589958158995671 0.11866341533091296 0.3404818761568666
+0.656903765690362 0.1220537986260819 0.656903765690362 0.1220537986260819 0.3397887815175466
+0.6548117154811569 0.12544418192125084 0.6548117154811569 0.12544418192125084 0.338885406354293
+0.6527196652719518 0.12883456521641978 0.6527196652719517 0.12883456521641978 0.33782194297719537
+0.6506276150627467 0.13222494851158872 0.6506276150627467 0.13222494851158872 0.33665531995704195
+0.6736401673640029 0.10171149885506825 0.6736401673640029 0.10171149885506825 0.34486188977785665
+0.6715481171547978 0.10510188215023719 0.6715481171547978 0.10510188215023719 0.34595192251282114
+0.6799163179916182 0.09832111555989931 0.6799163179916182 0.09832111555989931 0.3480956467483423
+0.6778242677824131 0.10171149885506825 0.6778242677824132 0.10171149885506825 0.34961742780680516
+0.6861924686192336 0.09493073226473037 0.6861924686192334 0.09493073226473037 0.3506749262118603
+0.6841004184100284 0.09832111555989931 0.6841004184100284 0.09832111555989931 0.35237874612300196
+0.6924686192468489 0.09154034896956142 0.6924686192468489 0.09154034896956142 0.35317666674396714
+0.6903765690376438 0.09493073226473037 0.6903765690376438 0.09493073226473037 0.35478889109369877
+0.6987447698744642 0.08814996567439248 0.6987447698744642 0.08814996567439248 0.35617698662332825
+0.6966527196652591 0.09154034896956142 0.6966527196652591 0.09154034896956142 0.35744071010186135
+0.7071129707112846 0.0813691990840546 0.7071129707112846 0.0813691990840546 0.3596257024254578
+0.7050209205020795 0.08475958237922354 0.7050209205020795 0.08475958237922354 0.3601658115687887
+0.7029288702928744 0.08814996567439248 0.7029288702928743 0.08814996567439248 0.36088516908683865
+0.7133891213389 0.07797881578888566 0.7133891213389 0.07797881578888566 0.3655327827926862
+0.7112970711296949 0.0813691990840546 0.711297071129695 0.0813691990840546 0.3654643266257905
+0.7196652719665153 0.07458843249371672 0.7196652719665152 0.07458843249371672 0.3727530642893236
+0.7175732217573102 0.07797881578888566 0.7175732217573102 0.07797881578888566 0.37216477829519606
+0.7259414225941306 0.07119804919854777 0.7259414225941306 0.07119804919854777 0.38101453983061323
+0.7238493723849255 0.07458843249371672 0.7238493723849255 0.07458843249371672 0.3801087262639253
+0.732217573221746 0.06780766590337883 0.732217573221746 0.06780766590337883 0.3898460800594061
+0.7301255230125409 0.07119804919854777 0.7301255230125409 0.07119804919854777 0.3889089462823417
+0.7384937238493613 0.06441728260820989 0.7384937238493613 0.06441728260820989 0.3986461281022629
+0.7364016736401562 0.06780766590337883 0.7364016736401561 0.06780766590337883 0.39800715847961304
+0.7447698744769766 0.06102689931304095 0.7447698744769767 0.06102689931304095 0.40676190958525077
+0.7426778242677715 0.06441728260820989 0.7426778242677715 0.06441728260820989 0.40675139845731456
+0.751046025104592 0.05763651601787201 0.751046025104592 0.05763651601787201 0.4135644676713421
+0.7489539748953868 0.06102689931304095 0.7489539748953868 0.06102689931304095 0.4144760890058448
+0.7594142259414124 0.050855749427534125 0.7594142259414124 0.050855749427534125 0.41563254286951407
+0.7573221757322073 0.054246132722703067 0.7573221757322073 0.054246132722703067 0.41851058437416905
+0.7552301255230022 0.05763651601787201 0.7552301255230022 0.05763651601787201 0.42057259118240164
+0.7656903765690277 0.04746536613236518 0.7656903765690277 0.04746536613236518 0.41702406804362974
+0.7635983263598226 0.050855749427534125 0.7635983263598226 0.050855749427534125 0.4211881416971465
+0.771966527196643 0.04407498283719624 0.771966527196643 0.04407498283719624 0.4159035284261096
+0.7698744769874379 0.04746536613236518 0.7698744769874378 0.04746536613236518 0.4213449960168461
+0.7782426778242584 0.0406845995420273 0.7782426778242585 0.0406845995420273 0.41228646320210854
+0.7761506276150533 0.04407498283719624 0.7761506276150533 0.04407498283719624 0.41890299152767246
+0.7845188284518737 0.03729421624685836 0.7845188284518737 0.03729421624685836 0.4063553249094726
+0.7824267782426686 0.0406845995420273 0.7824267782426686 0.0406845995420273 0.41395904000564837
+0.790794979079489 0.03390383295168942 0.790794979079489 0.03390383295168942 0.39844376338042187
+0.7887029288702839 0.03729421624685836 0.7887029288702839 0.03729421624685836 0.4067749472190461
+0.7970711297071044 0.030513449656520475 0.7970711297071044 0.030513449656520475 0.38901182610426677
+0.7949790794978993 0.03390383295168942 0.7949790794978994 0.03390383295168942 0.39775732477261294
+0.8033472803347197 0.027123066361351533 0.8033472803347196 0.027123066361351533 0.3786133975042891
+0.8012552301255146 0.030513449656520475 0.8012552301255146 0.030513449656520475 0.387428737917845
+0.809623430962335 0.02373268306618259 0.809623430962335 0.02373268306618259 0.3678575669180156
+0.8075313807531299 0.027123066361351533 0.8075313807531298 0.027123066361351533 0.3763913565091621
+0.8158995815899504 0.02034229977101365 0.8158995815899504 0.02034229977101365 0.35736640124745594
+0.8138075313807452 0.02373268306618259 0.8138075313807452 0.02373268306618259 0.36528491895949416
+0.8242677824267708 0.013561533180675767 0.8242677824267709 0.013561533180675767 0.341700144917352
+0.8221757322175657 0.01695191647584471 0.8221757322175657 0.01695191647584471 0.3477327236851669
+0.8200836820083606 0.02034229977101365 0.8200836820083605 0.02034229977101365 0.35474184871999
+0.8305439330543861 0.010171149885506825 0.8305439330543861 0.010171149885506825 0.3347123787908744
+0.828451882845181 0.013561533180675767 0.8284518828451811 0.013561533180675767 0.33948259258569213
+0.8368200836820014 0.006780766590337883 0.8368200836820013 0.006780766590337883 0.32967707858058576
+0.8347280334727963 0.010171149885506825 0.8347280334727963 0.010171149885506825 0.333047494169001
+0.8410041841004117 0.006780766590337883 0.8410041841004116 0.006780766590337883 0.3287499410389368
+0.006780766590337709 0.8451882845188257 0.006780766590337709 0.8451882845188257 0.07858043061095722
+0.006780766590337709 0.8493723849372357 0.006780766590337709 0.8493723849372357 0.07875182070708826
+0.01017114988550656 0.8389121338912107 0.01017114988550656 0.8389121338912107 0.07934452953697557
+0.01017114988550656 0.8430962343096207 0.01017114988550656 0.8430962343096207 0.07894869238381229
+0.013561533180675408 0.8326359832635957 0.013561533180675408 0.8326359832635957 0.08110612265252524
+0.013561533180675408 0.8368200836820057 0.013561533180675408 0.8368200836820057 0.08008617898331773
+0.016951916475844264 0.8263598326359807 0.016951916475844264 0.8263598326359807 0.08388950378836514
+0.016951916475844264 0.8305439330543907 0.016951916475844264 0.8305439330543907 0.08222846346634381
+0.02034229977101312 0.8242677824267757 0.02034229977101312 0.8242677824267757 0.085388168429812
+0.02373268306618197 0.8179916317991607 0.02373268306618197 0.8179916317991607 0.08951417489633583
+0.02373268306618197 0.8221757322175707 0.02373268306618197 0.8221757322175707 0.08701771860329593
+0.027123066361350822 0.8117154811715457 0.027123066361350822 0.8117154811715457 0.09448894837964072
+0.027123066361350822 0.8158995815899557 0.027123066361350822 0.8158995815899557 0.09147152998480346
+0.030513449656519673 0.8054393305439307 0.030513449656519673 0.8054393305439307 0.1001357534469597
+0.030513449656519673 0.8096234309623407 0.030513449656519673 0.8096234309623407 0.09671328282400055
+0.033903832951688535 0.7991631799163157 0.033903832951688535 0.7991631799163157 0.10623277446704481
+0.033903832951688535 0.8033472803347257 0.033903832951688535 0.8033472803347257 0.10253990199844419
+0.03729421624685738 0.7928870292887007 0.03729421624685738 0.7928870292887007 0.11253023576214945
+0.03729421624685738 0.7970711297071107 0.03729421624685738 0.7970711297071107 0.10870850125780411
+0.040684599542026224 0.7866108786610857 0.040684599542026224 0.7866108786610857 0.11876763502070709
+0.040684599542026224 0.7907949790794957 0.040684599542026224 0.7907949790794957 0.11495566997208696
+0.0440749828371951 0.7803347280334707 0.0440749828371951 0.7803347280334707 0.12468973442457387
+0.0440749828371951 0.7845188284518807 0.0440749828371951 0.7845188284518807 0.121015585592532
+0.04746536613236394 0.7740585774058557 0.04746536613236394 0.7740585774058557 0.13006104585621278
+0.04746536613236394 0.7782426778242657 0.04746536613236394 0.7782426778242657 0.1266361030749632
+0.05085574942753279 0.7677824267782407 0.05085574942753279 0.7677824267782407 0.1346790220998124
+0.05085574942753279 0.7719665271966507 0.05085574942753279 0.7719665271966507 0.13159295585127315
+0.05424613272270165 0.7656903765690357 0.054246132722701644 0.7656903765690357 0.13570249994799732
+0.05763651601787049 0.7594142259414207 0.05763651601787049 0.7594142259414207 0.1388333598130058
+0.05763651601787049 0.7635983263598307 0.05763651601787049 0.7635983263598307 0.1363320956377614
+0.06102689931303934 0.7531380753138057 0.06102689931303934 0.7531380753138057 0.14091712000078005
+0.06102689931303934 0.7573221757322157 0.06102689931303934 0.7573221757322157 0.13885977923450565
+0.06441728260820821 0.7468619246861907 0.06441728260820821 0.7468619246861907 0.14195792832459672
+0.06441728260820821 0.7510460251046007 0.06441728260820821 0.7510460251046007 0.14032603539853558
+0.06780766590337706 0.7405857740585757 0.06780766590337706 0.7405857740585757 0.1420404945753753
+0.06780766590337706 0.7447698744769857 0.06780766590337706 0.7447698744769857 0.14077644369983708
+0.0711980491985459 0.7343096234309607 0.0711980491985459 0.7343096234309607 0.14133537621355777
+0.0711980491985459 0.7384937238493707 0.0711980491985459 0.7384937238493707 0.1403411056242494
+0.07458843249371476 0.7280334728033457 0.07458843249371476 0.7280334728033457 0.14009952343135998
+0.07458843249371476 0.7322175732217557 0.07458843249371476 0.7322175732217557 0.1392378194325393
+0.07797881578888362 0.7217573221757307 0.07797881578888362 0.7217573221757307 0.1386688314744637
+0.07797881578888362 0.7259414225941407 0.07797881578888362 0.7259414225941407 0.13776904720927652
+0.08136919908405248 0.7154811715481157 0.08136919908405248 0.7154811715481157 0.13743837437856488
+0.08136919908405248 0.7196652719665257 0.08136919908405248 0.7196652719665257 0.13630869427926995
+0.08475958237922132 0.7092050209205008 0.08475958237922132 0.7092050209205008 0.13682634114213268
+0.08475958237922132 0.7133891213389107 0.08475958237922132 0.7133891213389107 0.13527407856885088
+0.08814996567439015 0.7071129707112958 0.08814996567439015 0.7071129707112958 0.1350802934407318
+0.09154034896955902 0.7008368200836808 0.09154034896955902 0.7008368200836808 0.13608036939540266
+0.09154034896955902 0.7050209205020908 0.09154034896955902 0.7050209205020908 0.13359252094857046
+0.09493073226472787 0.6945606694560658 0.09493073226472787 0.6945606694560658 0.1385043946336966
+0.09493073226472787 0.6987447698744758 0.09493073226472787 0.6987447698744758 0.13528615282593306
+0.09832111555989675 0.6882845188284508 0.09832111555989675 0.6882845188284508 0.14241779523541934
+0.09832111555989675 0.6924686192468608 0.09832111555989675 0.6924686192468608 0.13847640806562359
+0.10171149885506564 0.6820083682008358 0.10171149885506563 0.6820083682008358 0.1477150644984393
+0.10171149885506564 0.6861924686192458 0.10171149885506563 0.6861924686192458 0.1431356532069177
+0.10510188215023453 0.6757322175732208 0.10510188215023453 0.6757322175732208 0.15415013832098903
+0.10510188215023453 0.6799163179916308 0.10510188215023453 0.6799163179916308 0.14907570978653725
+0.10849226544540343 0.6694560669456058 0.10849226544540343 0.6694560669456058 0.161389328259371
+0.10849226544540343 0.6736401673640158 0.10849226544540343 0.6736401673640158 0.15599377132982883
+0.11188264874057234 0.6673640167364008 0.11188264874057234 0.6673640167364008 0.16353059759672536
+0.11527303203574124 0.6652719665271958 0.11527303203574124 0.6652719665271958 0.16576841053289262
+0.11866341533091013 0.6631799163179908 0.11866341533091011 0.6631799163179908 0.16805257822182537
+0.12205379862607901 0.6610878661087858 0.12205379862607901 0.6610878661087858 0.17033511972361196
+0.12544418192124793 0.6589958158995808 0.12544418192124793 0.6589958158995808 0.1725721802231963
+0.1288345652164168 0.6569037656903758 0.1288345652164168 0.6569037656903758 0.174725534995728
+0.13222494851158573 0.6506276150627608 0.13222494851158573 0.6506276150627608 0.18192839720830897
+0.1356153318067546 0.6485355648535558 0.13561533180675459 0.6485355648535558 0.1836980601367371
+0.1457864816922613 0.6338912133891208 0.1457864816922613 0.6338912133891208 0.19694494666619836
+0.1525672482825991 0.6255230125523008 0.15256724828259907 0.6255230125523008 0.2029211626980418
+0.15595763157776799 0.6234309623430958 0.15595763157776799 0.6234309623430958 0.20373848672403347
+0.16273839816810579 0.6150627615062758 0.16273839816810579 0.6150627615062758 0.20946144612988746
+0.1661287814632747 0.6129707112970708 0.1661287814632747 0.6129707112970708 0.21040341758338596
+0.16951916475844359 0.6108786610878658 0.16951916475844356 0.6108786610878658 0.2114203547599048
+0.17290873532023934 0.6046014119126437 0.17290873532023934 0.6046014119126437 0.2169425614095792
+0.17629364140276169 0.6025038586906231 0.17629364140276169 0.6025038586906231 0.21829870188995604
+0.17966619114678076 0.6003991196010853 0.17966619114678076 0.6003991196010853 0.21977230631595698
+0.17290936592855835 0.6087863397094928 0.17290936592855835 0.6087863397094928 0.21252440652039165
+0.1593480148729369 0.6213389121338908 0.1593480148729369 0.6213389121338908 0.20454568200720705
+0.16273839816810579 0.6192468619246858 0.16273839816810579 0.6192468619246858 0.2053666629217348
+0.1491768649874302 0.6317991631799158 0.1491768649874302 0.6317991631799158 0.1979223409879526
+0.1525672482825991 0.6297071129707108 0.15256724828259907 0.6297071129707108 0.19881397589553518
+0.1390057151019235 0.6422594142259408 0.1390057151019235 0.6422594142259408 0.19006371684120402
+0.1390057151019235 0.6464435146443508 0.1390057151019235 0.6464435146443508 0.18531041597423123
+0.1423960983970924 0.6401673640167358 0.1423960983970924 0.6401673640167358 0.19139196346023116
+0.1457864816922613 0.6380753138075308 0.1457864816922613 0.6380753138075308 0.19257776787245448
+0.13222494851158573 0.6548117154811708 0.13222494851158573 0.6548117154811708 0.17676367660354317
+0.19296798390281777 0.5793422214193974 0.19296798390281777 0.5793422214193974 0.24309481523110235
+0.19291259337717928 0.5835438637283795 0.19291259337717928 0.5835438637283795 0.23765188135743262
+0.19639058549492355 0.5771847129163291 0.19639058549492353 0.5771847129163291 0.24550125722530267
+0.19870957905628464 0.5751194595221543 0.19870957905628464 0.5751194595221543 0.24796275422806477
+0.20256976375370955 0.5640609817884377 0.20256976375370958 0.5640609817884377 0.2627976686260967
+0.20244726525249876 0.5676358114068473 0.20244726525249876 0.5676358114068473 0.2578982255485012
+0.20221685795050018 0.5709458332122344 0.20221685795050018 0.5709458332122344 0.25336857970349463
+0.20164340316713336 0.5747402851109584 0.20164340316713333 0.5747402851109583 0.24819291928866213
+0.18299660614013624 0.5941189103903802 0.18299660614013624 0.5941189103903802 0.22627651851150846
+0.18630256698661865 0.5920376525368672 0.18630256698661865 0.5920376525368672 0.228106184163525
+0.18957525385343188 0.5899605130294839 0.18957525385343188 0.5899605130294839 0.23002615533421378
+0.19281156314002948 0.5878851482353142 0.19281156314002948 0.5878851482353142 0.23203652625772422
+0.18301919282183043 0.5982942291741465 0.18301919282183043 0.5982942291741465 0.22135547786006496
+0.36618429823283494 0.3355542404254287 0.36618429823283494 0.33555424042542864 0.2624405043657723
+0.3629413387988625 0.33685374786755945 0.3629413387988625 0.33685374786755945 0.2537306704268505
+0.3596915600932016 0.3380873307468653 0.3596915600932016 0.3380873307468653 0.2449510895222022
+0.35641985598591974 0.33937373837222157 0.35641985598591974 0.33937373837222157 0.23604715011186564
+0.3530951079702601 0.34070296474681366 0.35309510797026006 0.34070296474681366 0.2269719602816309
+0.3497525933257523 0.3421340485957301 0.3497525933257523 0.3421340485957301 0.21785060940759068
+0.34734797661529926 0.34400821762862804 0.34734797661529926 0.34400821762862804 0.2108260010756588
+0.3438099801966359 0.34436083042310844 0.34380998019663583 0.34436083042310844 0.20196830183648967
+0.34025347046522686 0.3464757169257418 0.34025347046522686 0.3464757169257418 0.19222713598014962
+0.33691950705146434 0.34830954554393734 0.33691950705146434 0.34830954554393734 0.18340189191320141
+0.3336447346504346 0.3501342055853541 0.3336447346504346 0.3501342055853541 0.17496816732225615
+0.3304718243525405 0.3517078265887525 0.3304718243525406 0.3517078265887525 0.1672219419952519
+0.32718746774086627 0.35312068355877196 0.3271874677408663 0.35312068355877196 0.1596935935452036
+0.3241725593110523 0.35521147406557413 0.3241725593110523 0.35521147406557413 0.15283769003064537
+0.3210810920489026 0.3572464340430681 0.3210810920489026 0.3572464340430681 0.1463852228794422
+0.31798094544987016 0.35927532783894023 0.31798094544987016 0.35927532783894023 0.14056709490634398
+0.3148968396286811 0.36130311193671677 0.3148968396286811 0.36130311193671677 0.13553008841564718
+0.31179402294997943 0.3633512473238838 0.31179402294997943 0.3633512473238838 0.13132922454379467
+0.30864574465798744 0.3655039864529493 0.3086457446579875 0.3655039864529493 0.12803592005365386
+0.3055288741970082 0.3677990814479874 0.3055288741970082 0.3677990814479874 0.1258461959504812
+0.30252249214444793 0.3701666538356438 0.302522492144448 0.3701666538356438 0.1248428389098135
+0.2996972945277599 0.3724574980926449 0.2996972945277599 0.3724574980926449 0.12498499492994945
+0.2967278133140276 0.3747605186253577 0.2967278133140276 0.3747605186253577 0.12616029853248187
+0.2936524217061725 0.37712708458837857 0.2936524217061725 0.37712708458837857 0.12843925254746094
+0.2900760466237938 0.37957633707660965 0.29007604662379377 0.3795763370766097 0.13207973461274428
+0.28757455705165585 0.3825654592317655 0.28757455705165585 0.3825654592317655 0.13659916494493937
+0.2850487336268915 0.3851360552319652 0.2850487336268915 0.3851360552319652 0.14141844836271777
+0.2824802446695622 0.3876129236353257 0.2824802446695622 0.3876129236353257 0.14669870570933705
+0.2799248299128397 0.3900047329379158 0.2799248299128397 0.3900047329379159 0.15228391170405986
+0.27754408699092215 0.39229226872993905 0.2775440869909222 0.39229226872993905 0.15789293074231406
+0.2752783217556921 0.3946734763784002 0.27527832175569206 0.3946734763784003 0.16375971920506974
+0.2734218531919473 0.3970456900253311 0.2734218531919473 0.397045690025331 0.1695438536578728
+0.2711892952324051 0.39956314322808606 0.2711892952324051 0.399563143228086 0.1759999844836744
+0.26893948313445964 0.4021615150098671 0.26893948313445964 0.40216151500986713 0.18272375719399062
+0.26667365119806585 0.4047622317847728 0.26667365119806585 0.4047622317847727 0.18951279445307725
+0.2644588844572815 0.4073705452013406 0.2644588844572815 0.4073705452013406 0.19628289638020988
+0.2623461274276178 0.4099994048628215 0.2623461274276178 0.4099994048628215 0.20300051436031907
+0.2602927930362854 0.41266575561971885 0.26029279303628533 0.41266575561971885 0.20971458031194432
+0.2582470361751108 0.41538580767333805 0.2582470361751108 0.41538580767333805 0.21645491124659763
+0.25620368937461374 0.4181653763318344 0.25620368937461374 0.4181653763318344 0.22319857433694992
+0.25418813858271144 0.4209597320192138 0.25418813858271144 0.42095973201921383 0.22981478640538713
+0.25219100074905626 0.423787077004373 0.25219100074905626 0.423787077004373 0.23632431956167885
+0.2502267390768628 0.4266471333604762 0.2502267390768628 0.42664713336047627 0.24270362216757965
+0.2483123165143939 0.42953504234981854 0.2483123165143939 0.4295350423498185 0.24892342536349657
+0.24643421457028794 0.4324594901632702 0.24643421457028794 0.4324594901632702 0.25498759490157347
+0.2445735535878143 0.43543275828429373 0.24457355358781427 0.4354327582842937 0.2609013934854096
+0.24276080881666093 0.43843213200289893 0.24276080881666093 0.43843213200289893 0.26660131351748123
+0.24097094620096357 0.44147146263349407 0.24097094620096357 0.44147146263349407 0.27209878329065956
+0.23920711285565754 0.4445470477885349 0.23920711285565757 0.4445470477885349 0.2773719942578842
+0.23747204808507502 0.44764986237274607 0.23747204808507502 0.447649862372746 0.28239086916437767
+0.23576975484429294 0.4507746946683708 0.23576975484429294 0.4507746946683708 0.2871346745179096
+0.2340906410842116 0.4539368285816793 0.2340906410842116 0.45393682858167933 0.29160994803985224
+0.23249510055696854 0.45714055460651726 0.23249510055696856 0.4571405546065172 0.2958204436671759
+0.2309651617332107 0.46039441220126637 0.2309651617332107 0.46039441220126637 0.2997671889374142
+0.2294620263537659 0.46367968991164377 0.2294620263537659 0.46367968991164377 0.30339878600767567
+0.22795763459184437 0.46697652138829565 0.22795763459184437 0.46697652138829565 0.3066680835263367
+0.22643965131401575 0.4702824640071108 0.22643965131401575 0.4702824640071109 0.30955913706846677
+0.22489120061392637 0.4736249051368343 0.22489120061392634 0.47362490513683436 0.312087497444081
+0.22340694728792498 0.4770171302928021 0.22340694728792498 0.4770171302928022 0.314299367779071
+0.222218110338141 0.4805971684489367 0.222218110338141 0.4805971684489367 0.31630544438043917
+0.2211723032813804 0.4841281433014936 0.2211723032813804 0.4841281433014936 0.3179332180595764
+0.2199688019695578 0.4875394565374262 0.2199688019695578 0.4875394565374262 0.3190242631627577
+0.21865983930739807 0.4909177201982648 0.21865983930739805 0.4909177201982648 0.31965183144568726
+0.21726901542165153 0.4942983274656496 0.21726901542165153 0.49429832746564967 0.3198616769860036
+0.21583086166050383 0.49765308713580286 0.21583086166050383 0.49765308713580286 0.3196733490216905
+0.2143679570187748 0.5005902373031604 0.21436795701877484 0.5005902373031604 0.31909651999951066
+0.21550892384779685 0.5032897931952288 0.21550892384779682 0.5032897931952288 0.31931065436401773
+0.21506590381594376 0.5059340206825406 0.21506590381594373 0.5059340206825406 0.3187838258048448
+0.21379075433036276 0.5092215208021602 0.21379075433036276 0.5092215208021602 0.31742803533808633
+0.2126699802270536 0.5125932834060573 0.2126699802270536 0.5125932834060573 0.31579554144890415
+0.20824820395509608 0.5269292996253976 0.2082482039550961 0.5269292996253975 0.3056022475406981
+0.2092285688295599 0.523050731475876 0.2092285688295599 0.523050731475876 0.3087797119133955
+0.2103926906831666 0.5195247633678024 0.2103926906831666 0.5195247633678024 0.31145547743811064
+0.2115472087006088 0.5160344807146932 0.2115472087006088 0.5160344807146932 0.3138088696547277
+0.21129521488663583 0.5281630542684301 0.21129521488663583 0.5281630542684301 0.3054008823231502
+0.2092328073635974 0.5309405552057642 0.2092328073635974 0.5309405552057642 0.3025020906795281
+0.2085043040343866 0.5349945598547358 0.2085043040343866 0.5349945598547358 0.2984643469834824
+0.20457408174885694 0.5532940628842512 0.20457408174885697 0.5532940628842512 0.27692940959212525
+0.2052255972398866 0.5497237978113088 0.20522559723988662 0.5497237978113088 0.2814881006702023
+0.20774205413408722 0.5386915301877568 0.20774205413408722 0.5386915301877568 0.29452650021256815
+0.20692485612184652 0.5423383686055865 0.20692485612184655 0.5423383686055865 0.2904126043600177
+0.20604753008690055 0.5460248917449729 0.20604753008690055 0.5460248917449729 0.28605174925902926
+0.20683955834248943 0.5551895078428322 0.20683955834248943 0.5551895078428322 0.274641504305906
+0.20628789237247555 0.5586696291202949 0.20628789237247555 0.5586696291202949 0.2700467683745375
+0.2058333079518114 0.5623349233608591 0.2058333079518114 0.5623349233608591 0.2650823340532918
+0.36982677297234257 0.3315093913189012 0.36982677297234257 0.3315093913189013 0.27305010966667426
+0.3695586213150072 0.3347458383260373 0.3695586213150072 0.3347458383260373 0.27134530134111107
+0.3782694971554311 0.3164297884419778 0.37826949715543107 0.3164297884419778 0.29731950022945325
+0.3739738725097853 0.32373759186803697 0.37397387250978525 0.32373759186803697 0.2855919974309958
+0.37780127541232456 0.31964390142998667 0.37780127541232456 0.3196439014299867 0.2956196168940863
+0.3773743015702804 0.32302712907639286 0.3773743015702804 0.32302712907639286 0.29378413067969983
+0.3734982310386972 0.3270505318225025 0.3734982310386972 0.3270505318225025 0.28347825397265974
+0.37308280332233756 0.3304319277666315 0.3730828033223376 0.3304319277666315 0.28146787762520703
+0.3888024653401952 0.3013893156440341 0.3888024653401952 0.3013893156440341 0.31905642288766217
+0.38343143949185615 0.3085545760691201 0.38343143949185615 0.3085545760691201 0.30926899633893123
+0.38780759697845035 0.3046971438986292 0.3878075969784503 0.3046971438986292 0.31778440997987256
+0.386438175486976 0.3073844560179428 0.386438175486976 0.3073844560179428 0.3152905700755574
+0.38291750450383305 0.3119838831356816 0.38291750450383305 0.3119838831356816 0.3080830013896169
+0.3820089359922262 0.3153948327050635 0.38200893599222624 0.3153948327050635 0.3058206806560598
+0.400766294201575 0.2869637744099854 0.400766294201575 0.2869637744099854 0.3313406612074488
+0.39457060907796554 0.29401157192392074 0.39457060907796554 0.29401157192392074 0.32651294497620326
+0.39947686653338005 0.2902441521305343 0.39947686653338005 0.2902441521305343 0.331818907037908
+0.398263117431187 0.29349593570739335 0.398263117431187 0.29349593570739335 0.33199815446190756
+0.393490267240097 0.2973983520013 0.393490267240097 0.2973983520013 0.3262092232157759
+0.392429649083147 0.3007841059464076 0.392429649083147 0.3007841059464076 0.32555281972861666
+0.41467264305335405 0.27312874616435373 0.41467264305335405 0.27312874616435373 0.3319543870248789
+0.40703522170519624 0.2799207596620454 0.4070352217051962 0.2799207596620454 0.33278037936106636
+0.41277365276689393 0.27627377394444835 0.41277365276689393 0.27627377394444835 0.3340064382504658
+0.4109948369892846 0.27958820432923087 0.4109948369892846 0.27958820432923087 0.33603417765168136
+0.40577675802634633 0.2833543764148676 0.40577675802634633 0.2833543764148676 0.3345039801423002
+0.4044839665927311 0.2866544209031234 0.4044839665927311 0.2866544209031234 0.33575137910546676
+0.43811781921464343 0.2545143762252017 0.4381178192146434 0.2545143762252016 0.3094005900113807
+0.4360983863048298 0.25757915312802465 0.4360983863048298 0.25757915312802465 0.3140465680684174
+0.4340774173953892 0.26060993118282355 0.4340774173953892 0.26060993118282355 0.3185552425876212
+0.4319824198192865 0.26362259453631404 0.4319824198192865 0.26362259453631404 0.3229422984290946
+0.4297689646882248 0.26666126890998126 0.42976896468822473 0.26666126890998126 0.327204242017761
+0.4200427607578035 0.2699809861764015 0.4200427607578035 0.2699809861764015 0.3308052515570252
+0.42381033630152576 0.26983169866418794 0.42381033630152576 0.26983169866418794 0.33135450085921964
+0.4276694038727694 0.269852094027795 0.42766940387276936 0.26985209402779503 0.33138872503826217
+0.4184015298109587 0.27313990638439645 0.41840152981095874 0.27313990638439645 0.3337483555420287
+0.445874283287228 0.24861571449452258 0.44587428328722806 0.2486157144945226 0.29604419095111206
+0.4438755438019074 0.2517041466399592 0.44387554380190736 0.2517041466399592 0.3012548094405707
+0.4495031927199938 0.24888741150318217 0.4495031927199938 0.24888741150318214 0.29157391173055885
+0.4418654841854547 0.2548040883187158 0.44186548418545474 0.25480408831871587 0.3064580635492044
+0.4751717790288681 0.23291695754361766 0.4751717790288681 0.23291695754361766 0.22603746437509512
+0.4727787751909241 0.23536442772582492 0.4727787751909241 0.23536442772582492 0.23396777544081246
+0.47040427586042943 0.2377575344335684 0.47040427586042943 0.23775753443356837 0.24163179713491625
+0.4680435825893096 0.24011453459869614 0.4680435825893096 0.24011453459869614 0.24906166059057847
+0.46569416290152743 0.2424079548754491 0.46569416290152743 0.2424079548754491 0.2562486488665692
+0.4633004937603292 0.24457980579270103 0.4633004937603293 0.24457980579270103 0.26326421838277464
+0.4532002576340772 0.24913443418960746 0.4532002576340772 0.24913443418960748 0.28623589286708495
+0.4573383186507872 0.24911391861755708 0.45733831865078717 0.24911391861755708 0.27916182030060815
+0.4607685553562371 0.24684897226121638 0.4607685553562371 0.24684897226121638 0.2704654544731771
+0.4956558715286357 0.2248741545418758 0.4956558715286357 0.2248741545418758 0.15606686713897425
+0.4835432276807797 0.22852092542840938 0.4835432276807797 0.22852092542840938 0.19892934998081
+0.4930597488200492 0.22757200259717414 0.4930597488200492 0.22757200259717414 0.16665685815293754
+0.4870447820179519 0.2293828059171212 0.4870447820179519 0.2293828059171212 0.18812916173120278
+0.49051049502772687 0.23032505467777345 0.49051049502772687 0.23032505467777345 0.1769250018879633
+0.48107996888295346 0.2313285112785967 0.4810799688829535 0.2313285112785967 0.20805179681486372
+0.4786517651961102 0.23402524977827976 0.4786517651961102 0.23402524977827976 0.21682459231975712
+0.517387134340987 0.21773836364795673 0.517387134340987 0.21773836364795676 0.0698492450170079
+0.504373046356704 0.2207846836422297 0.504373046356704 0.22078468364222967 0.12152506587046252
+0.5144696518366891 0.22002307426006612 0.5144696518366891 0.22002307426006615 0.08189193060186596
+0.5079982781410708 0.22171256838025047 0.5079982781410708 0.22171256838025047 0.10786591606496375
+0.5115254322799122 0.22265307773507886 0.5115254322799122 0.22265307773507884 0.0944562882786686
+0.5017366541671059 0.2233613261518994 0.5017366541671059 0.2233613261518994 0.1327751172542355
+0.49910192034340845 0.22597100296591366 0.49910192034340845 0.22597100296591366 0.14389835292568517
+0.5265812893905357 0.21482882695421068 0.5265812893905357 0.21482882695421068 0.04075074573515444
+0.5295576240281904 0.2163723956890547 0.5295576240281904 0.21637239568905467 0.03869533808890439
+0.5236598527519302 0.21702770274557548 0.5236598527519302 0.21702770274557545 0.04854166596922152
+0.5207712713523841 0.21927506737580493 0.5207712713523841 0.21927506737580496 0.05851231905622884
+0.5321397385469702 0.21737875499419063 0.5321397385469702 0.21737875499419063 0.04093036948869686
+0.5349007992093029 0.21629692591626973 0.5349007992093028 0.21629692591626973 0.045948626108448014
+0.537510573413157 0.21444406920340284 0.537510573413157 0.21444406920340284 0.05290083999402357
+0.5405566998733828 0.21256303349909003 0.5405566998733828 0.21256303349909003 0.06330464927613316
+0.5436299861932787 0.21063148821150582 0.5436299861932787 0.21063148821150582 0.07506113416357074
+0.546729245669802 0.20865277103030191 0.546729245669802 0.20865277103030191 0.08757401307157632
+0.5649511221071358 0.19633174334657877 0.5649511221071358 0.19633174334657877 0.1605130276795059
+0.5629408300097011 0.19891278120659123 0.5629408300097011 0.19891278120659123 0.15392305956377428
+0.5593009954569482 0.2000016077993894 0.5593009954569482 0.20000160779938939 0.13878848352705767
+0.5498485161295317 0.20663876358291833 0.5498485161295318 0.20663876358291833 0.10045037118144995
+0.5529674053203323 0.2045967270797081 0.5529674053203323 0.20459672707970808 0.11336189785000517
+0.5560873017018049 0.20256107035951382 0.5560873017018048 0.2025610703595138 0.12615960756163178
+0.569054696388927 0.19648128972922516 0.569054696388927 0.19648128972922516 0.17824738521986705
+0.5733343443303478 0.19638933995396649 0.5733343443303478 0.19638933995396649 0.19622225280575992
+0.5795234836629175 0.19311096066955025 0.5795234836629176 0.19311096066955025 0.21764233797293678
+0.5775125466749114 0.19640359735275326 0.5775125466749113 0.19640359735275326 0.2135800795515085
+0.5836383294533523 0.19312598875665937 0.5836383294533523 0.1931259887566594 0.2338908814444581
+0.589907540376979 0.189761882357338 0.589907540376979 0.189761882357338 0.2526739862870446
+0.5877389158273533 0.19309219545826076 0.5877389158273533 0.19309219545826076 0.24962410823431222
+0.5962152891486401 0.1863890412082393 0.5962152891486401 0.1863890412082393 0.26960749777580095
+0.5940795256869763 0.18974058173996597 0.5940795256869763 0.18974058173996597 0.2677399646036107
+0.6338912133891058 0.1457864816922645 0.6338912133891058 0.1457864816922645 0.3108346127506359
+0.6276150627614905 0.14917686498743343 0.6276150627614906 0.14917686498743343 0.29845556234443454
+0.6317991631799007 0.14917686498743343 0.6317991631799007 0.14917686498743343 0.3097726006261512
+0.6255230125522854 0.15256724828260237 0.6255230125522854 0.15256724828260237 0.29760625555958486
+0.6234309623430803 0.15595763157777132 0.6234309623430803 0.15595763157777132 0.2970694855541121
+0.6213389121338752 0.15934801487294026 0.6213389121338752 0.15934801487294026 0.2968216687226323
+0.6150627615062598 0.1627383981681092 0.6150627615062598 0.1627383981681092 0.2849252823608947
+0.612970711297054 0.16612878146327778 0.612970711297054 0.16612878146327778 0.28499307904501986
+0.6108786610878476 0.16951916475844606 0.6108786610878476 0.16951916475844606 0.28513997417676246
+0.6087870592067143 0.17290878068979368 0.6087870592067143 0.17290878068979368 0.2852791620017175
+0.6066960257233375 0.17629521055771288 0.6066960257233375 0.17629521055771288 0.2853169976318895
+0.6046038767197885 0.17967365265255686 0.6046038767197884 0.17967365265255686 0.2851513434047949
+0.6025069676974731 0.1830384376622496 0.6025069676974731 0.1830384376622496 0.2846776031619203
+0.6004029093838619 0.18638495558494572 0.6004029093838619 0.18638495558494572 0.28380629628795967
+0.61924686192467 0.1627383981681092 0.6192468619246699 0.1627383981681092 0.2968210969853176
+0.6443514644351314 0.13561533180675767 0.6443514644351315 0.13561533180675767 0.3256956216814318
+0.6485355648535416 0.13561533180675767 0.6485355648535416 0.13561533180675767 0.3354469188450479
+0.6422594142259263 0.1390057151019266 0.6422594142259263 0.1390057151019266 0.32421593544770294
+0.6401673640167211 0.14239609839709555 0.6401673640167211 0.14239609839709555 0.32286606029584514
+0.638075313807516 0.1457864816922645 0.638075313807516 0.1457864816922645 0.3217022476935829
+0.6694560669455927 0.10849226544540613 0.6694560669455926 0.10849226544540613 0.34677752806166356
+0.6673640167363876 0.11188264874057507 0.6673640167363876 0.11188264874057507 0.34732852810381803
+0.6652719665271825 0.11527303203574402 0.6652719665271825 0.11527303203574402 0.34760412790960765
+0.6631799163179773 0.11866341533091296 0.6631799163179773 0.11866341533091296 0.34761361265365026
+0.6610878661087722 0.1220537986260819 0.6610878661087723 0.1220537986260819 0.3473765914294367
+0.6589958158995671 0.12544418192125084 0.6589958158995671 0.12544418192125084 0.34692274623806535
+0.656903765690362 0.12883456521641978 0.656903765690362 0.12883456521641978 0.3462910576260228
+0.6548117154811569 0.13222494851158872 0.6548117154811569 0.13222494851158872 0.34552849665326574
+0.6527196652719518 0.13561533180675767 0.6527196652719517 0.13561533180675767 0.34468819608621065
+0.675732217573208 0.10510188215023719 0.675732217573208 0.10510188215023719 0.35096195782620937
+0.6736401673640029 0.10849226544540613 0.6736401673640029 0.10849226544540613 0.35210310993449845
+0.6820083682008233 0.10171149885506825 0.6820083682008233 0.10171149885506825 0.3540152998660487
+0.6799163179916182 0.10510188215023719 0.6799163179916182 0.10510188215023719 0.3555504621200596
+0.6882845188284387 0.09832111555989931 0.6882845188284387 0.09832111555989931 0.35644815086619713
+0.6861924686192336 0.10171149885506825 0.6861924686192334 0.10171149885506825 0.3581227942137227
+0.694560669456054 0.09493073226473037 0.6945606694560541 0.09493073226473037 0.35884785277065184
+0.6924686192468489 0.09832111555989931 0.6924686192468489 0.09832111555989931 0.36038085013803944
+0.7008368200836693 0.09154034896956142 0.7008368200836693 0.09154034896956142 0.3618041556990647
+0.6987447698744642 0.09493073226473037 0.6987447698744642 0.09493073226473037 0.3629297392596575
+0.7092050209204898 0.08475958237922354 0.7092050209204898 0.08475958237922354 0.3655433549882607
+0.7071129707112846 0.08814996567439248 0.7071129707112846 0.08814996567439248 0.3658209159726344
+0.7050209205020795 0.09154034896956142 0.7050209205020795 0.09154034896956142 0.36633501168781685
+0.7154811715481051 0.0813691990840546 0.7154811715481051 0.0813691990840546 0.3716308227117446
+0.7133891213389 0.08475958237922354 0.7133891213389 0.08475958237922354 0.3712298481904504
+0.7217573221757204 0.07797881578888566 0.7217573221757204 0.07797881578888566 0.37911370375583936
+0.7196652719665153 0.0813691990840546 0.7196652719665152 0.0813691990840546 0.37812682504101064
+0.7280334728033357 0.07458843249371672 0.7280334728033359 0.07458843249371672 0.38770837241339434
+0.7259414225941306 0.07797881578888566 0.7259414225941306 0.07797881578888566 0.38634789714186374
+0.7343096234309511 0.07119804919854777 0.7343096234309511 0.07119804919854777 0.3969232791178321
+0.732217573221746 0.07458843249371672 0.732217573221746 0.07458843249371672 0.3954908667842027
+0.7405857740585664 0.06780766590337883 0.7405857740585664 0.06780766590337883 0.40612982056841657
+0.7384937238493613 0.07119804919854777 0.7384937238493613 0.07119804919854777 0.4049744802956173
+0.7468619246861817 0.06441728260820989 0.7468619246861817 0.06441728260820989 0.41464438444154617
+0.7447698744769766 0.06780766590337883 0.7447698744769767 0.06780766590337883 0.4141183850723707
+0.7531380753137971 0.06102689931304095 0.753138075313797 0.06102689931304095 0.42180622221915925
+0.751046025104592 0.06441728260820989 0.751046025104592 0.06441728260820989 0.4222261288458408
+0.7615062761506175 0.054246132722703067 0.7615062761506176 0.054246132722703067 0.4245441376133816
+0.7594142259414124 0.05763651601787201 0.7594142259414124 0.05763651601787201 0.4270418630687067
+0.7573221757322073 0.06102689931304095 0.7573221757322073 0.06102689931304095 0.42865843878037585
+0.7677824267782328 0.050855749427534125 0.7677824267782328 0.050855749427534125 0.42604374251927135
+0.7656903765690277 0.054246132722703067 0.7656903765690277 0.054246132722703067 0.429912543561734
+0.7740585774058482 0.04746536613236518 0.7740585774058482 0.04746536613236518 0.42489618644159316
+0.771966527196643 0.050855749427534125 0.771966527196643 0.050855749427534125 0.43014478570820325
+0.7803347280334635 0.04407498283719624 0.7803347280334635 0.04407498283719624 0.4211059928610985
+0.7782426778242584 0.04746536613236518 0.7782426778242585 0.04746536613236518 0.4276458314425808
+0.7866108786610788 0.0406845995420273 0.7866108786610787 0.0406845995420273 0.414853236721469
+0.7845188284518737 0.04407498283719624 0.7845188284518737 0.04407498283719624 0.4225059001270446
+0.7928870292886941 0.03729421624685836 0.7928870292886941 0.03729421624685836 0.40647864592646527
+0.790794979079489 0.0406845995420273 0.790794979079489 0.0406845995420273 0.4149889130833843
+0.7991631799163095 0.03390383295168942 0.7991631799163095 0.03390383295168942 0.39645911661774275
+0.7970711297071044 0.03729421624685836 0.7970711297071044 0.03729421624685836 0.4055128920638071
+0.8054393305439248 0.030513449656520475 0.8054393305439248 0.030513449656520475 0.3853746526204866
+0.8033472803347197 0.03390383295168942 0.8033472803347196 0.03390383295168942 0.39462093967469863
+0.8117154811715401 0.027123066361351533 0.8117154811715402 0.027123066361351533 0.37386800854100827
+0.809623430962335 0.030513449656520475 0.809623430962335 0.030513449656520475 0.382943718262957
+0.8179916317991555 0.02373268306618259 0.8179916317991555 0.02373268306618259 0.36259910588634187
+0.8158995815899504 0.027123066361351533 0.8158995815899504 0.027123066361351533 0.37115483404626337
+0.8263598326359759 0.01695191647584471 0.8263598326359759 0.01695191647584471 0.34534373749675723
+0.8242677824267708 0.02034229977101365 0.8242677824267709 0.02034229977101365 0.35219764714176294
+0.8221757322175657 0.02373268306618259 0.8221757322175657 0.02373268306618259 0.35992166871967685
+0.8326359832635912 0.013561533180675767 0.8326359832635912 0.013561533180675767 0.3375845916505797
+0.8305439330543861 0.01695191647584471 0.8305439330543861 0.01695191647584471 0.3432190073422103
+0.8389121338912066 0.010171149885506825 0.8389121338912066 0.010171149885506825 0.3318462696179499
+0.8368200836820014 0.013561533180675767 0.8368200836820013 0.013561533180675767 0.33610964199868715
+0.8451882845188219 0.006780766590337883 0.845188284518822 0.006780766590337883 0.32838947459459017
+0.8430962343096168 0.010171149885506825 0.8430962343096168 0.010171149885506825 0.3311876999989712
+0.8493723849372321 0.006780766590337883 0.8493723849372321 0.006780766590337883 0.3286413733796732
+0.006780766590337709 0.8535564853556457 0.006780766590337709 0.8535564853556457 0.07926160764178082
+0.006780766590337709 0.8577405857740557 0.006780766590337709 0.8577405857740557 0.08006427823941258
+0.01017114988550656 0.8472803347280307 0.01017114988550656 0.8472803347280307 0.07894590943852221
+0.01017114988550656 0.8514644351464407 0.01017114988550656 0.8514644351464407 0.07930532883308368
+0.013561533180675408 0.8410041841004157 0.013561533180675408 0.8410041841004157 0.0794876389414033
+0.013561533180675408 0.8451882845188257 0.013561533180675408 0.8451882845188257 0.0792995919527183
+0.016951916475844264 0.8347280334728007 0.016951916475844264 0.8347280334728007 0.08098580247308092
+0.016951916475844264 0.8389121338912107 0.016951916475844264 0.8389121338912107 0.08017280807182521
+0.02034229977101312 0.8284518828451857 0.02034229977101312 0.8284518828451857 0.08349724985244496
+0.02034229977101312 0.8326359832635957 0.02034229977101312 0.8326359832635957 0.08202209293426178
+0.02373268306618197 0.8263598326359807 0.02373268306618197 0.8263598326359807 0.08489184012457197
+0.027123066361350822 0.8200836820083657 0.027123066361350822 0.8200836820083657 0.08875509277399261
+0.027123066361350822 0.8242677824267757 0.027123066361350822 0.8242677824267757 0.08639174276293925
+0.030513449656519673 0.8138075313807507 0.030513449656519673 0.8138075313807507 0.09350720255711574
+0.030513449656519673 0.8179916317991607 0.030513449656519673 0.8179916317991607 0.0905760590287638
+0.033903832951688535 0.8075313807531357 0.033903832951688535 0.8075313807531357 0.09897309479769496
+0.033903832951688535 0.8117154811715457 0.033903832951688535 0.8117154811715457 0.09559132246030648
+0.03729421624685738 0.8012552301255207 0.03729421624685738 0.8012552301255207 0.10492423572786046
+0.03729421624685738 0.8054393305439307 0.03729421624685738 0.8054393305439307 0.10123253889799766
+0.040684599542026224 0.7949790794979057 0.040684599542026224 0.7949790794979057 0.11109960291632805
+0.040684599542026224 0.7991631799163157 0.040684599542026224 0.7991631799163157 0.10724801146544326
+0.0440749828371951 0.7887029288702907 0.0440749828371951 0.7887029288702907 0.11722632235080115
+0.0440749828371951 0.7928870292887007 0.0440749828371951 0.7928870292887007 0.11336251018556658
+0.04746536613236394 0.7824267782426757 0.04746536613236394 0.7824267782426757 0.12303798646671656
+0.04746536613236394 0.7866108786610857 0.04746536613236394 0.7866108786610857 0.11929842058099772
+0.05085574942753279 0.7761506276150607 0.05085574942753279 0.7761506276150607 0.12829039448545884
+0.05085574942753279 0.7803347280334707 0.05085574942753279 0.7803347280334707 0.12479369190163737
+0.05424613272270165 0.7698744769874457 0.054246132722701644 0.7698744769874457 0.1327752067362579
+0.05424613272270165 0.7740585774058557 0.054246132722701644 0.7740585774058557 0.1296168977008416
+0.05763651601787049 0.7677824267782407 0.05763651601787049 0.7677824267782407 0.13358017241546996
+0.06102689931303934 0.7615062761506257 0.06102689931303934 0.7615062761506257 0.1365506812300504
+0.06102689931303934 0.7656903765690357 0.06102689931303934 0.7656903765690357 0.13398773340518977
+0.06441728260820821 0.7552301255230107 0.06441728260820821 0.7552301255230107 0.13846098151131492
+0.06441728260820821 0.7594142259414207 0.06441728260820821 0.7594142259414207 0.13634984898402683
+0.06780766590337706 0.7489539748953957 0.06780766590337706 0.7489539748953957 0.1393182800544189
+0.06780766590337706 0.7531380753138057 0.06780766590337706 0.7531380753138057 0.13764218631497213
+0.0711980491985459 0.7426778242677807 0.0711980491985459 0.7426778242677807 0.1392121521836781
+0.0711980491985459 0.7468619246861907 0.0711980491985459 0.7468619246861907 0.1379142368369007
+0.07458843249371476 0.7364016736401657 0.07458843249371476 0.7364016736401657 0.13831964360259755
+0.07458843249371476 0.7405857740585757 0.07458843249371476 0.7405857740585757 0.13730161500188123
+0.07797881578888362 0.7301255230125507 0.07797881578888362 0.7301255230125507 0.13690568378865944
+0.07797881578888362 0.7343096234309607 0.07797881578888362 0.7343096234309607 0.1360290544111521
+0.08136919908405248 0.7238493723849357 0.08136919908405248 0.7238493723849357 0.13531540004722833
+0.08136919908405248 0.7280334728033457 0.08136919908405248 0.7280334728033457 0.13440717882299935
+0.08475958237922132 0.7175732217573207 0.08475958237922132 0.7175732217573207 0.13395370679530252
+0.08475958237922132 0.7217573221757307 0.08475958237922132 0.7217573221757307 0.13281883866547184
+0.08814996567439015 0.7112970711297057 0.08814996567439015 0.7112970711297057 0.13324784167811465
+0.08814996567439015 0.7154811715481157 0.08814996567439015 0.7154811715481157 0.1316900522585528
+0.09154034896955902 0.7092050209205008 0.09154034896955902 0.7092050209205008 0.13144251773649043
+0.09493073226472787 0.7029288702928858 0.09493073226472787 0.7029288702928858 0.13243139786307648
+0.09493073226472787 0.7071129707112958 0.09493073226472787 0.7071129707112958 0.12993480928226434
+0.09832111555989675 0.6966527196652708 0.09832111555989675 0.6966527196652708 0.1348826675786271
+0.09832111555989675 0.7008368200836808 0.09832111555989675 0.7008368200836808 0.1316524796232086
+0.10171149885506564 0.6903765690376558 0.10171149885506563 0.6903765690376558 0.1388516614298353
+0.10171149885506564 0.6945606694560658 0.10171149885506563 0.6945606694560658 0.1348964560635861
+0.10510188215023453 0.6841004184100408 0.10510188215023453 0.6841004184100408 0.1442195337399046
+0.10510188215023453 0.6882845188284508 0.10510188215023453 0.6882845188284508 0.13962620817923663
+0.10849226544540343 0.6778242677824258 0.10849226544540343 0.6778242677824258 0.15072756203104187
+0.10849226544540343 0.6820083682008358 0.10849226544540343 0.6820083682008358 0.1456401073122481
+0.11188264874057234 0.6715481171548108 0.11188264874057234 0.6715481171548108 0.15803325917432984
+0.11188264874057234 0.6757322175732208 0.11188264874057234 0.6757322175732208 0.15262502676515458
+0.11527303203574124 0.6694560669456058 0.11527303203574124 0.6694560669456058 0.16021656993779243
+0.11866341533091013 0.6673640167364008 0.11866341533091011 0.6673640167364008 0.16248987664141723
+0.12205379862607901 0.6652719665271958 0.12205379862607901 0.6652719665271958 0.1648002348729158
+0.12544418192124793 0.6631799163179908 0.12544418192124793 0.6631799163179908 0.16709788313037474
+0.1288345652164168 0.6610878661087858 0.1288345652164168 0.6610878661087858 0.1693381001126162
+0.13222494851158573 0.6589958158995808 0.13222494851158573 0.6589958158995808 0.17148260243328484
+0.1356153318067546 0.6527196652719658 0.13561533180675459 0.6527196652719658 0.1786625048482705
+0.1390057151019235 0.6506276150627608 0.1390057151019235 0.6506276150627608 0.18040565059770433
+0.1491768649874302 0.6359832635983258 0.1491768649874302 0.6359832635983258 0.19363555553877296
+0.15595763157776799 0.6276150627615058 0.15595763157776799 0.6276150627615058 0.19964367372036684
+0.1593480148729369 0.6255230125523008 0.1593480148729369 0.6255230125523008 0.20043632399085412
+0.1661287814632747 0.6171548117154808 0.1661287814632747 0.6171548117154808 0.20622321799490537
+0.16951916475844359 0.6150627615062758 0.16951916475844356 0.6150627615062758 0.2071341670180973
+0.17290954220420152 0.612970702833441 0.17290954220420152 0.612970702833441 0.20811476137263404
+0.1762974189438258 0.6066913670301013 0.1762974189438258 0.6066913670301012 0.21372640695663692
+0.17967669021896712 0.6045886461155271 0.17967669021896712 0.6045886461155271 0.21503806958143423
+0.18304060263108227 0.6024782272217251 0.18304060263108227 0.6024782272217251 0.21646229147246987
+0.17629933107076623 0.6108778049984599 0.17629933107076623 0.6108778049984599 0.2091773909128902
+0.16273839816810579 0.6234309623430958 0.16273839816810579 0.6234309623430958 0.20121668869516504
+0.1661287814632747 0.6213389121338908 0.1661287814632747 0.6213389121338908 0.2020082812169087
+0.1525672482825991 0.6338912133891208 0.15256724828259907 0.6338912133891208 0.19458411819703728
+0.15595763157776799 0.6317991631799158 0.15595763157776799 0.6317991631799158 0.19544551029619986
+0.1423960983970924 0.6443514644351458 0.1423960983970924 0.6443514644351458 0.18676277039851927
+0.1423960983970924 0.6485355648535558 0.1423960983970924 0.6485355648535558 0.18198446913412372
+0.1457864816922613 0.6422594142259408 0.1457864816922613 0.6422594142259408 0.1880592398723636
+0.1491768649874302 0.6401673640167358 0.1491768649874302 0.6401673640167358 0.18921007214951782
+0.1356153318067546 0.6569037656903758 0.13561533180675459 0.6569037656903758 0.1735004989057185
+0.1962773519456502 0.5812455321473555 0.1962773519456502 0.5812455321473555 0.2401856945438079
+0.19619237165852269 0.5855355970995513 0.19619237165852269 0.5855355970995513 0.2344542061179685
+0.20027035481861974 0.5783891926843643 0.20027035481861974 0.5783891926843642 0.24347627840553113
+0.20545908675898628 0.5660176538819323 0.20545908675898628 0.5660176538819323 0.2599863791193726
+0.20512027378504735 0.5695916245525577 0.20512027378504735 0.5695916245525577 0.2550012913907416
+0.2046272792678122 0.5731888948461775 0.20462727926781224 0.5731888948461775 0.2500055045285347
+0.20390050816326585 0.5768862826539192 0.20390050816326585 0.5768862826539191 0.2449371443088648
+0.1863288970216994 0.5962164226196348 0.1863288970216994 0.5962164226196348 0.2230159383012645
+0.18959548238644697 0.5941562624817919 0.18959548238644697 0.5941562624817919 0.2247564394001794
+0.1928356897756149 0.5920926505016322 0.1928356897756149 0.5920926505016322 0.22659356779632353
+0.1961287275526851 0.5899595260064432 0.1961287275526851 0.5899595260064432 0.22858972307656336
+0.18636661012722164 0.6003910763706691 0.18636661012722164 0.6003910763706691 0.2179681831373743
+0.36853252356552874 0.33739403407121266 0.36853252356552874 0.33739403407121266 0.2678365812662812
+0.365937703666048 0.33877262616021053 0.365937703666048 0.3387726261602105 0.2607903610279532
+0.362792796385922 0.34011833683569187 0.36279279638592193 0.34011833683569187 0.252208091047844
+0.35954300690340846 0.3414669742142678 0.35954300690340846 0.3414669742142678 0.24328891013256504
+0.3531605520079768 0.3441576896320223 0.3531605520079768 0.34415768963202226 0.2256262680084604
+0.3563155934429181 0.34278401201144115 0.3563155934429181 0.34278401201144115 0.23438658341353302
+0.3499647115365923 0.34563133644906996 0.3499647115365923 0.34563133644906996 0.21670358805033604
+0.3466810267392868 0.346884659937618 0.3466810267392868 0.346884659937618 0.2078179004036214
+0.3402861522009654 0.35000420647617964 0.3402861522009654 0.35000420647617964 0.19043916832280436
+0.34356308059592705 0.3482758754507034 0.34356308059592705 0.3482758754507034 0.1993477724090604
+0.3369058353052664 0.3519127532774149 0.33690583530526647 0.3519127532774149 0.18141237971910174
+0.3335219309006848 0.35405991198774434 0.33352193090068477 0.35405991198774434 0.1725522337777618
+0.3300530252584196 0.3546833603065332 0.3300530252584196 0.3546833603065332 0.16464650093291236
+0.3275947305153648 0.3567575877364219 0.3275947305153648 0.3567575877364219 0.15858417674912464
+0.32457533134565675 0.3587795845518621 0.32457533134565675 0.35877958455186215 0.1517742729122262
+0.3214778966175207 0.3607862097339258 0.3214778966175207 0.3607862097339258 0.14540990024433295
+0.3184069733991826 0.3627807418860907 0.3184069733991826 0.3627807418860907 0.1398043043041404
+0.31540498640449055 0.3647453466734486 0.31540498640449055 0.36474534667344866 0.13509569389407797
+0.3122655995531614 0.3666796198352411 0.3122655995531614 0.3666796198352411 0.13111093545623767
+0.3092472461147237 0.36900935541188096 0.3092472461147237 0.36900935541188096 0.1282546360815557
+0.30627777407753703 0.3713254759841587 0.30627777407753703 0.3713254759841587 0.1265405031432728
+0.3033736071574935 0.37364384201562445 0.3033736071574935 0.37364384201562445 0.12598844336662385
+0.30039829598940027 0.37593750363407263 0.30039829598940027 0.37593750363407263 0.12655746017371103
+0.29738076401190366 0.3782830350696573 0.29738076401190366 0.3782830350696573 0.12828232223899705
+0.2942305229748948 0.38070982539371 0.29423052297489477 0.38070982539371 0.13122277397522267
+0.29130145489051784 0.38331489443471634 0.2913014548905179 0.3833148944347164 0.13521833961698274
+0.2887628170797218 0.3859643834275561 0.2887628170797218 0.3859643834275561 0.1399247743568153
+0.2861327361132413 0.3885213281270852 0.2861327361132413 0.3885213281270852 0.14523915352449104
+0.28345755217226826 0.39101812248270607 0.28345755217226826 0.39101812248270607 0.15104535982315762
+0.2808081032806132 0.3934183041724838 0.2808081032806132 0.39341830417248375 0.15708385263740718
+0.27817556791842957 0.3949636387788892 0.27817556791842957 0.3949636387788892 0.1619077867352805
+0.27706591423756466 0.3976000289057828 0.27706591423756466 0.3976000289057828 0.1676547744853629
+0.27487016917418566 0.40010622665627166 0.27487016917418566 0.40010622665627166 0.17418458485751265
+0.2725969939770143 0.40273173214351243 0.2725969939770143 0.4027317321435124 0.18115135496570248
+0.2703068397212857 0.4053399489819855 0.2703068397212857 0.4053399489819855 0.18817683503896568
+0.26805456318212334 0.40792411132468653 0.26805456318212334 0.4079241113246866 0.1951422668268448
+0.26592291647526095 0.41050923085064617 0.26592291647526095 0.4105092308506462 0.20200332594104672
+0.2639375072086174 0.41311417460472216 0.2639375072086174 0.41311417460472216 0.20877178272656136
+0.2619635625192223 0.41577489795044315 0.2619635625192223 0.41577489795044315 0.21561573836259432
+0.25995273167566646 0.4184931917904522 0.25995273167566646 0.4184931917904522 0.2224715192872487
+0.2579226884983447 0.42127853995715775 0.2579226884983447 0.42127853995715775 0.22933358282302455
+0.2559167363418606 0.4240663638197027 0.2559167363418606 0.4240663638197027 0.23601769351455396
+0.2539532132931905 0.4268841230274662 0.2539532132931905 0.4268841230274662 0.24255785355382384
+0.2520481047858275 0.42972681110424427 0.25204810478582745 0.42972681110424427 0.24892602379358933
+0.25018889315463416 0.43260759072128235 0.25018889315463416 0.43260759072128235 0.25513964970598885
+0.24834888993277038 0.4355394454089727 0.24834888993277038 0.4355394454089727 0.26120582866199266
+0.2465390221193709 0.43851393468156713 0.24653902211937087 0.43851393468156713 0.26708296127727066
+0.24474779023684526 0.44149656794857856 0.24474779023684526 0.44149656794857856 0.27268580078631094
+0.24298246789178854 0.4445208791254814 0.24298246789178854 0.4445208791254814 0.2780658329508882
+0.24125385138702327 0.44757988433913987 0.24125385138702327 0.44757988433913987 0.2831979333276695
+0.23957470005456627 0.4506630917850198 0.23957470005456627 0.4506630917850198 0.28805476777817335
+0.23792733823667858 0.45377925159614524 0.23792733823667858 0.45377925159614524 0.2926331025178555
+0.2363116483581992 0.4569336160164188 0.2363116483581992 0.45693361601641874 0.2969227173817737
+0.2347652821300381 0.46013034299042027 0.2347652821300381 0.46013034299042027 0.3009331623181137
+0.23324553439891807 0.4633624233403235 0.23324553439891807 0.46336242334032357 0.30462536275333424
+0.23174590181074284 0.4666201734125042 0.23174590181074284 0.4666201734125042 0.3079727864304406
+0.23026042393525104 0.4698970816451145 0.23026042393525104 0.4698970816451145 0.31095563118657094
+0.22879438974596988 0.47319682832505366 0.22879438974596988 0.47319682832505366 0.3135740451193684
+0.22734410035320077 0.47654493901937744 0.22734410035320077 0.47654493901937744 0.31583593631258905
+0.22605464671469963 0.479955386573884 0.22605464671469963 0.479955386573884 0.31780092472813287
+0.22485619659151856 0.48340990416863244 0.22485619659151856 0.48340990416863244 0.3194073690842007
+0.22366975723801918 0.4868413844791619 0.22366975723801916 0.4868413844791619 0.3205896650472247
+0.22241624346562652 0.4902525554503601 0.22241624346562652 0.4902525554503601 0.32131365516400395
+0.22109446435469227 0.4936642898565127 0.2210944643546923 0.49366428985651273 0.321594362337096
+0.2196408993359581 0.497116121983499 0.21964089933595812 0.497116121983499 0.3214212192326416
+0.21816404758595437 0.5008435841209038 0.21816404758595434 0.5008435841209038 0.3208955057941991
+0.21821374939054322 0.5047186645134294 0.2182137493905432 0.5047186645134295 0.32040709614438706
+0.21733543029955096 0.5082382764105843 0.21733543029955096 0.5082382764105843 0.31926462846227716
+0.2162760033611031 0.5116751763604421 0.2162760033611031 0.5116751763604421 0.31765530012608095
+0.2151812107362545 0.5151133873799266 0.2151812107362545 0.5151133873799266 0.3156886791657078
+0.21153921630814126 0.5252137215742514 0.2115392163081413 0.5252137215742514 0.30795485913416715
+0.21285034052975735 0.5219350369926766 0.21285034052975735 0.5219350369926766 0.31077669306099137
+0.21399467897367516 0.5185445228171045 0.21399467897367516 0.5185445228171045 0.31336819943642874
+0.21414287018954875 0.5273323699384419 0.21414287018954872 0.5273323699384419 0.3069827520189122
+0.21298403853443287 0.5305932462419036 0.21298403853443285 0.5305932462419037 0.3038454421142229
+0.21193186679442977 0.5337324520124915 0.2119318667944298 0.5337324520124915 0.3005821430162181
+0.21120831583827368 0.5374322807467045 0.21120831583827368 0.5374322807467045 0.2966143355785278
+0.2076608773609464 0.5516962638927949 0.20766087736094638 0.5516962638927949 0.2792518706659466
+0.2085769002578478 0.5483847326321244 0.20857690025784778 0.5483847326321244 0.28352335389120015
+0.2103926170464571 0.5410555616301486 0.2103926170464571 0.5410555616301486 0.2924804460141131
+0.20952650371067197 0.5446966801953795 0.20952650371067197 0.5446966801953795 0.28812089723588247
+0.2096093670297408 0.5539343003417335 0.2096093670297408 0.5539343003417335 0.27640769862680065
+0.20949265595917244 0.557059438782406 0.2094926559591724 0.557059438782406 0.27230020205035693
+0.20907493054080603 0.5606931371376005 0.20907493054080603 0.5606931371376005 0.26729424951278097
+0.20863413990090277 0.5643917356467525 0.20863413990090277 0.5643917356467525 0.26211338809727974
+0.3726709082384889 0.3338716270285247 0.3726709082384889 0.3338716270285247 0.27947518367130453
+0.37186740517906847 0.33764693204717655 0.37186740517906847 0.3376469320471766 0.27647656290685246
+0.3812977957745554 0.31878323501629247 0.3812977957745554 0.31878323501629247 0.3037597821337901
+0.37679248419148337 0.32607501055573396 0.37679248419148337 0.32607501055573396 0.29166503005175176
+0.3807436446031977 0.32204595061375135 0.3807436446031977 0.32204595061375135 0.30188926629895446
+0.38015132006926 0.3250867611454728 0.38015132006926006 0.3250867611454728 0.29982778319042586
+0.37638559616425815 0.32936830208475476 0.37638559616425815 0.3293683020847547 0.2898388070072988
+0.3760240115063089 0.3327309545755543 0.3760240115063089 0.3327309545755543 0.2881004432456196
+0.3913012616824441 0.30423070119860346 0.3913012616824441 0.30423070119860346 0.32440197656637354
+0.38678631504679906 0.31079757196363217 0.3867863150467991 0.31079757196363217 0.31629844385498496
+0.38991907566537115 0.30792986261199745 0.38991907566537115 0.30792986261199745 0.3224071975000587
+0.39023277415059054 0.3112740739948186 0.39023277415059054 0.3112740739948186 0.3232193028304609
+0.3856071013205054 0.3145301573052308 0.3856071013205054 0.3145301573052308 0.31372805535489406
+0.3848229934161784 0.31791885129954855 0.3848229934161784 0.31791885129954855 0.3117422328685239
+0.40318761368758377 0.2899293281203067 0.40318761368758377 0.28992932812030675 0.33661476388563166
+0.3971363807001936 0.29680440514137774 0.3971363807001936 0.2968044051413777 0.3319709548087215
+0.40193848571334184 0.2931496268752615 0.40193848571334184 0.2931496268752615 0.33711693062620207
+0.40071614079949724 0.29614952976506825 0.4007161407994973 0.29614952976506825 0.3371160865365445
+0.39608421896976803 0.3001787765892815 0.39608421896976803 0.30017877658928155 0.33170309008000515
+0.39500470519288783 0.30356386264624186 0.39500470519288783 0.30356386264624186 0.33098403088736533
+0.41669869055105896 0.27629811448053304 0.41669869055105896 0.27629811448053304 0.33641012563435496
+0.409554166050549 0.2830001553343023 0.409554166050549 0.2830001553343023 0.3380012359511777
+0.4149892447889407 0.27950176029576546 0.41498924478894067 0.27950176029576546 0.3388264617331939
+0.4133695073044724 0.28274476952945093 0.41336950730447247 0.28274476952945093 0.34099270983978375
+0.4082064607504598 0.2863448434612423 0.4082064607504598 0.2863448434612423 0.3396468654707227
+0.40687927292017817 0.2896328375229479 0.40687927292017817 0.28963283752294794 0.3409008722843048
+0.43982409169935655 0.25788759202750305 0.4398240916993565 0.25788759202750305 0.31161569073791356
+0.43778828089297733 0.26096225728696487 0.43778828089297733 0.2609622572869648 0.3166684840782756
+0.43573729400529143 0.2640095718811935 0.43573729400529143 0.2640095718811935 0.3215733863745085
+0.43366753495405835 0.267045199525966 0.43366753495405835 0.267045199525966 0.32630497941824516
+0.43163714066784425 0.27010127861894445 0.43163714066784425 0.27010127861894445 0.33083777050795393
+0.4221650904205408 0.27309959240204346 0.4221650904205408 0.27309959240204346 0.3348570238721846
+0.42595023064135856 0.27309109892699873 0.42595023064135856 0.27309109892699873 0.3353094778967101
+0.42973910973218477 0.2731986458177679 0.42973910973218477 0.2731986458177679 0.33514207905929494
+0.4205065094550254 0.27628281142126837 0.4205065094550254 0.27628281142126837 0.33803034212669386
+0.44754748785091086 0.25197217314086 0.44754748785091086 0.25197217314086 0.2971597825591213
+0.4455546130820518 0.25506990807401575 0.4455546130820518 0.25506990807401575 0.3027873326361297
+0.45122634678755436 0.2522312212757279 0.45122634678755436 0.2522312212757279 0.292287839338522
+0.4435559083601081 0.258180264217545 0.4435559083601081 0.258180264217545 0.30839555270048774
+0.4762460389583172 0.23653949666340182 0.4762460389583172 0.23653949666340182 0.22525157777922136
+0.47385525342688317 0.23897765449978692 0.4738552534268832 0.23897765449978695 0.23342125916549408
+0.4714785597451712 0.24135920667816604 0.4714785597451712 0.24135920667816604 0.24135310438531213
+0.46910792528428985 0.24370623842272687 0.46910792528428985 0.24370623842272687 0.2490858631902175
+0.46673890319969563 0.24601540767229246 0.46673890319969563 0.24601540767229246 0.2566261914122982
+0.46436461203807744 0.24837585392648007 0.4643646120380774 0.24837585392648007 0.26407153503859143
+0.454926683272239 0.25250205257652897 0.454926683272239 0.25250205257652897 0.2866202118688994
+0.4585682886456034 0.2530613942349403 0.45856828864560345 0.2530613942349403 0.2805204997907939
+0.46172254580883154 0.25122796003369585 0.4617225458088315 0.2512279600336958 0.2724422750200994
+0.4608699441884358 0.2543025139493733 0.4608699441884358 0.2543025139493733 0.27705650565819157
+0.49649196070761586 0.22861781224284863 0.49649196070761586 0.22861781224284863 0.15479322055304354
+0.4845588248066744 0.23220328578130103 0.4845588248066744 0.23220328578130103 0.1977004093443138
+0.4939347909215135 0.2313111981919427 0.4939347909215135 0.2313111981919427 0.16535895849318427
+0.48800221332272287 0.23309698308747956 0.48800221332272287 0.2330969830874796 0.18688985405059433
+0.4914318152314289 0.23403639236653231 0.4914318152314289 0.23403639236653231 0.17559515448794336
+0.48212553051409796 0.23499144939570804 0.48212553051409796 0.23499144939570807 0.20692109146070825
+0.4797183974587542 0.23765743087016597 0.47971839745875416 0.23765743087016597 0.21584024243539401
+0.517880876885768 0.22159221813943855 0.517880876885768 0.22159221813943855 0.06972226032484846
+0.5052303345826518 0.2244142516788908 0.5052303345826518 0.2244142516788908 0.119817778347774
+0.5149861756782816 0.22402996587291168 0.5149861756782816 0.22402996587291168 0.0816345991258496
+0.508721012992496 0.22546864989589677 0.508721012992496 0.2254686498958968 0.10664287163919899
+0.512170753732637 0.22663392889265135 0.512170753732637 0.22663392889265135 0.09362690511907151
+0.5025501218310849 0.2270555937477683 0.5025501218310849 0.2270555937477683 0.13132181108977933
+0.49991739380455485 0.22968625867489242 0.49991739380455485 0.22968625867489242 0.14252520150707634
+0.5269861924321141 0.21846265669661494 0.5269861924321141 0.21846265669661494 0.04202277310682584
+0.5304007473286717 0.21974902245668043 0.5304007473286717 0.21974902245668046 0.04087046086186452
+0.5241549369764696 0.220721006478144 0.5241549369764696 0.220721006478144 0.04911704551408871
+0.5212754406353987 0.2230484217398513 0.5212754406353987 0.22304842173985132 0.05868548446510621
+0.5342412689576634 0.22026765592711284 0.5342412689576634 0.22026765592711284 0.046808755086416735
+0.537668563660422 0.2182698954190233 0.537668563660422 0.21826989541902328 0.055630408492930335
+0.5407302822360001 0.21632829529396838 0.540730282236 0.21632829529396838 0.06595151921293783
+0.5438275675933522 0.21437069272915488 0.5438275675933522 0.21437069272915488 0.07778465941855167
+0.546936348793121 0.21238665895467154 0.546936348793121 0.21238665895467154 0.09039278511959697
+0.5500635149050558 0.21037521616119612 0.5500635149050558 0.21037521616119612 0.10342258921407115
+0.5667436810928232 0.20013533190187122 0.5667436810928232 0.20013533190187124 0.17173857344129712
+0.56298137180778 0.2022374256247491 0.56298137180778 0.20223742562474908 0.15680243276702233
+0.5595901514837068 0.20418711818795365 0.5595901514837068 0.20418711818795368 0.14304405400163103
+0.5532154813914395 0.20835115486337139 0.5532154813914395 0.20835115486337139 0.11666299335662488
+0.5563849152637231 0.2063017499146792 0.5563849152637231 0.20630174991467917 0.12989582933264654
+0.5710926138900234 0.19984599667121866 0.5710926138900234 0.1998459966712187 0.19029102083159988
+0.5754694764965673 0.1997583350896715 0.5754694764965674 0.19975833508967147 0.20894475375173102
+0.5815942640570295 0.19649531873580173 0.5815942640570295 0.19649531873580173 0.23029328555765285
+0.579670676958192 0.19962568291708355 0.579670676958192 0.19962568291708352 0.2263671162217644
+0.5856125639493105 0.19645124590952187 0.5856125639493105 0.19645124590952187 0.24624134618726193
+0.589663955505911 0.1963794615221458 0.589663955505911 0.1963794615221458 0.2618209001373662
+0.591870716335572 0.19308696563887004 0.591870716335572 0.19308696563887004 0.2650858595373289
+0.5982852324306192 0.1897219637131163 0.5982852324306193 0.1897219637131163 0.2824683060455686
+0.5960810097029116 0.1930799285560252 0.5960810097029116 0.1930799285560252 0.2803967861187466
+0.6359832635983109 0.14917686498743343 0.6359832635983108 0.14917686498743343 0.3207701933156765
+0.6297071129706956 0.15256724828260237 0.6297071129706956 0.15256724828260237 0.30900437806839154
+0.6338912133891058 0.15256724828260237 0.6338912133891058 0.15256724828260237 0.32010219509517385
+0.6276150627614905 0.15595763157777132 0.6276150627614906 0.15595763157777132 0.3085366415531516
+0.6255230125522854 0.15934801487294026 0.6255230125522854 0.15934801487294026 0.3083577686509043
+0.6234309623430803 0.1627383981681092 0.6234309623430803 0.1627383981681092 0.30843815990764906
+0.6171548117154647 0.16612878146327806 0.6171548117154647 0.16612878146327806 0.2970101056417562
+0.6150627615062593 0.16951916475844683 0.6150627615062593 0.16951916475844683 0.2973181124113807
+0.6129708929736255 0.17290888738705604 0.6129708929736255 0.17290888738705604 0.29766456205760167
+0.6108791249339003 0.17629593770257393 0.6108791249339003 0.17629593770257393 0.297960277083731
+0.6087861518949246 0.17967606299403904 0.6087861518949246 0.17967606299403904 0.29810694953313815
+0.6066882533563411 0.1830424690659506 0.6066882533563412 0.1830424690659506 0.29799683363250024
+0.6045825748536463 0.1863906128424475 0.6045825748536463 0.1863906128424475 0.2975358866194551
+0.60246424137328 0.18972327195372282 0.60246424137328 0.18972327195372282 0.29664709694843855
+0.6213389121338749 0.16612878146327814 0.6213389121338749 0.16612878146327814 0.3087316486314516
+0.6464435146443365 0.1390057151019266 0.6464435146443365 0.1390057151019266 0.33425985494220073
+0.6506276150627467 0.1390057151019266 0.6506276150627467 0.1390057151019266 0.3438271431994195
+0.6443514644351314 0.14239609839709555 0.6443514644351315 0.14239609839709555 0.3331559267426943
+0.6422594142259263 0.1457864816922645 0.6422594142259263 0.1457864816922645 0.3321923832400175
+0.6401673640167211 0.14917686498743343 0.6401673640167211 0.14917686498743343 0.3314186996355744
+0.6715481171547978 0.11188264874057507 0.6715481171547978 0.11188264874057507 0.353021121561836
+0.6694560669455927 0.11527303203574402 0.6694560669455926 0.11527303203574402 0.3537041199205902
+0.6673640167363876 0.11866341533091296 0.6673640167363876 0.11866341533091296 0.35414928673236984
+0.6652719665271825 0.1220537986260819 0.6652719665271825 0.1220537986260819 0.35436359399721823
+0.6631799163179773 0.12544418192125084 0.6631799163179773 0.12544418192125084 0.3543640576707145
+0.6610878661087722 0.12883456521641978 0.6610878661087723 0.12883456521641978 0.3541774717112252
+0.6589958158995671 0.13222494851158872 0.6589958158995671 0.13222494851158872 0.3538396022844937
+0.656903765690362 0.13561533180675767 0.656903765690362 0.13561533180675767 0.35339384246015376
+0.6548117154811569 0.1390057151019266 0.6548117154811569 0.1390057151019266 0.3528893528615857
+0.6778242677824131 0.10849226544540613 0.6778242677824132 0.10849226544540613 0.3569519713435479
+0.675732217573208 0.11188264874057507 0.675732217573208 0.11188264874057507 0.35819158822145797
+0.6841004184100284 0.10510188215023719 0.6841004184100284 0.10510188215023719 0.3597775483767868
+0.6820083682008233 0.10849226544540613 0.6820083682008233 0.10849226544540613 0.3613759324583759
+0.6903765690376438 0.10171149885506825 0.6903765690376438 0.10171149885506825 0.36201299678513216
+0.6882845188284387 0.10510188215023719 0.6882845188284387 0.10510188215023719 0.36371050846975445
+0.6966527196652591 0.09832111555989931 0.6966527196652591 0.09832111555989931 0.3642555516988539
+0.694560669456054 0.10171149885506825 0.6945606694560541 0.10171149885506825 0.3657628500111058
+0.7029288702928744 0.09493073226473037 0.7029288702928743 0.09493073226473037 0.36710884133086147
+0.7008368200836693 0.09832111555989931 0.7008368200836693 0.09832111555989931 0.36815002019303295
+0.7112970711296949 0.08814996567439248 0.711297071129695 0.08814996567439248 0.37103127931345076
+0.7092050209204898 0.09154034896956142 0.7092050209204898 0.09154034896956142 0.3710918271201316
+0.7071129707112846 0.09493073226473037 0.7071129707112846 0.09493073226473037 0.3714527627049223
+0.7175732217573102 0.08475958237922354 0.7175732217573102 0.08475958237922354 0.3772427421765558
+0.7154811715481051 0.08814996567439248 0.7154811715481051 0.08814996567439248 0.3765488178780166
+0.7238493723849255 0.0813691990840546 0.7238493723849255 0.0813691990840546 0.3849361458328017
+0.7217573221757204 0.08475958237922354 0.7217573221757204 0.08475958237922354 0.3835820086232804
+0.7301255230125409 0.07797881578888566 0.7301255230125409 0.07797881578888566 0.39381894572477877
+0.7280334728033357 0.0813691990840546 0.7280334728033359 0.0813691990840546 0.3920248819706116
+0.7364016736401562 0.07458843249371672 0.7364016736401561 0.07458843249371672 0.40338162488212653
+0.7343096234309511 0.07797881578888566 0.7343096234309511 0.07797881578888566 0.4014630882849472
+0.7426778242677715 0.07119804919854777 0.7426778242677715 0.07119804919854777 0.41297062768055876
+0.7405857740585664 0.07458843249371672 0.7405857740585664 0.07458843249371672 0.41129487561846373
+0.7489539748953868 0.06780766590337883 0.7489539748953868 0.06780766590337883 0.421873253493664
+0.7468619246861817 0.07119804919854777 0.7468619246861817 0.07119804919854777 0.42081356950157733
+0.7552301255230022 0.06441728260820989 0.7552301255230022 0.06441728260820989 0.4293984432954678
+0.7531380753137971 0.06780766590337883 0.753138075313797 0.06780766590337883 0.4292935505042625
+0.7635983263598226 0.05763651601787201 0.7635983263598226 0.05763651601787201 0.43289046132432246
+0.7615062761506175 0.06102689931304095 0.7615062761506176 0.06102689931304095 0.4349437643451615
+0.7594142259414124 0.06441728260820989 0.7594142259414124 0.06441728260820989 0.43606635460415827
+0.7698744769874379 0.054246132722703067 0.7698744769874378 0.054246132722703067 0.4345515536328309
+0.7677824267782328 0.05763651601787201 0.7677824267782328 0.05763651601787201 0.4380449536382737
+0.7761506276150533 0.050855749427534125 0.7761506276150533 0.050855749427534125 0.4334488031683142
+0.7740585774058482 0.054246132722703067 0.7740585774058482 0.054246132722703067 0.43840819749052323
+0.7824267782426686 0.04746536613236518 0.7824267782426686 0.04746536613236518 0.42957625865184657
+0.7803347280334635 0.050855749427534125 0.7803347280334635 0.050855749427534125 0.43592693434400814
+0.7887029288702839 0.04407498283719624 0.7887029288702839 0.04407498283719624 0.4231117168637946
+0.7866108786610788 0.04746536613236518 0.7866108786610787 0.04746536613236518 0.43068518619882523
+0.7949790794978993 0.0406845995420273 0.7949790794978994 0.0406845995420273 0.4144024452386259
+0.7928870292886941 0.04407498283719624 0.7928870292886941 0.04407498283719624 0.422949026019992
+0.8012552301255146 0.03729421624685836 0.8012552301255146 0.03729421624685836 0.40394077854705085
+0.7991631799163095 0.0406845995420273 0.7991631799163095 0.0406845995420273 0.4131472576368673
+0.8075313807531299 0.03390383295168942 0.8075313807531298 0.03390383295168942 0.3923303098325745
+0.8054393305439248 0.03729421624685836 0.8054393305439248 0.03729421624685836 0.4018419819293002
+0.8138075313807452 0.030513449656520475 0.8138075313807452 0.030513449656520475 0.3802435837107198
+0.8117154811715401 0.03390383295168942 0.8117154811715402 0.03390383295168942 0.389689637383472
+0.8200836820083606 0.027123066361351533 0.8200836820083605 0.027123066361351533 0.36837301199424816
+0.8179916317991555 0.030513449656520475 0.8179916317991555 0.030513449656520475 0.37739356246865036
+0.828451882845181 0.02034229977101365 0.8284518828451811 0.02034229977101365 0.34985596428430715
+0.8263598326359759 0.02373268306618259 0.8263598326359759 0.02373268306618259 0.35737833037248706
+0.8242677824267708 0.027123066361351533 0.8242677824267709 0.027123066361351533 0.36565039462910276
+0.8347280334727963 0.01695191647584471 0.8347280334727963 0.01695191647584471 0.34147036512847295
+0.8326359832635912 0.02034229977101365 0.8326359832635912 0.02034229977101365 0.3478361309477514
+0.8410041841004117 0.013561533180675767 0.8410041841004116 0.013561533180675767 0.33514800258233723
+0.8389121338912066 0.01695191647584471 0.8389121338912066 0.01695191647584471 0.34019897990978865
+0.847280334728027 0.010171149885506825 0.847280334728027 0.010171149885506825 0.331130639066084
+0.8451882845188219 0.013561533180675767 0.845188284518822 0.013561533180675767 0.33477179041527294
+0.8535564853556423 0.006780766590337883 0.8535564853556422 0.006780766590337883 0.32952628985967897
+0.8514644351464372 0.010171149885506825 0.8514644351464372 0.010171149885506825 0.33171000772916276
+0.8577405857740525 0.006780766590337883 0.8577405857740527 0.006780766590337883 0.33103793502517503
+0.006780766590337709 0.8619246861924656 0.006780766590337709 0.8619246861924656 0.08110780573130101
+0.006780766590337706 0.8661087866108756 0.0067807665903377055 0.8661087866108756 0.08233654459530741
+0.01017114988550656 0.8556485355648507 0.01017114988550656 0.8556485355648507 0.07998523824279948
+0.01017114988550656 0.8598326359832607 0.01017114988550656 0.8598326359832607 0.08093584658562024
+0.013561533180675408 0.8493723849372357 0.013561533180675408 0.8493723849372357 0.07949713292840066
+0.013561533180675408 0.8535564853556457 0.013561533180675408 0.8535564853556457 0.08004306602952861
+0.016951916475844264 0.8430962343096207 0.016951916475844264 0.8430962343096207 0.07978609618440573
+0.016951916475844264 0.8472803347280307 0.016951916475844264 0.8472803347280307 0.07980747800139042
+0.02034229977101312 0.8368200836820057 0.02034229977101312 0.8368200836820057 0.08098191408632753
+0.02034229977101312 0.8410041841004157 0.02034229977101312 0.8410041841004157 0.08038141418070475
+0.02373268306618197 0.8305439330543907 0.02373268306618197 0.8305439330543907 0.08317524963659494
+0.02373268306618197 0.8347280334728007 0.02373268306618197 0.8347280334728007 0.0818952057162551
+0.027123066361350822 0.8284518828451857 0.027123066361350822 0.8284518828451857 0.084426775135432
+0.030513449656519673 0.8221757322175707 0.030513449656519673 0.8221757322175707 0.087976245596745
+0.030513449656519673 0.8263598326359807 0.030513449656519673 0.8263598326359807 0.08575905596362075
+0.033903832951688535 0.8158995815899557 0.033903832951688535 0.8158995815899557 0.092455023754833
+0.033903832951688535 0.8200836820083657 0.033903832951688535 0.8200836820083657 0.08962402716036148
+0.03729421624685738 0.8096234309623407 0.03729421624685738 0.8096234309623407 0.09769228813065474
+0.03729421624685738 0.8138075313807507 0.03729421624685738 0.8138075313807507 0.09436494970871602
+0.040684599542026224 0.8033472803347257 0.040684599542026224 0.8033472803347257 0.10345448607570841
+0.040684599542026224 0.8075313807531357 0.040684599542026224 0.8075313807531357 0.09977708304702036
+0.0440749828371951 0.7970711297071107 0.0440749828371951 0.7970711297071107 0.10947028820201511
+0.0440749828371951 0.8012552301255207 0.0440749828371951 0.8012552301255207 0.10560118066170467
+0.04746536613236394 0.7907949790794957 0.04746536613236394 0.7907949790794957 0.1154549291781184
+0.04746536613236394 0.7949790794979057 0.04746536613236394 0.7949790794979057 0.11155079911857203
+0.05085574942753279 0.7845188284518807 0.05085574942753279 0.7845188284518807 0.12113110616383276
+0.05085574942753279 0.7887029288702907 0.05085574942753279 0.7887029288702907 0.11733680184834207
+0.05424613272270165 0.7782426778242657 0.054246132722701644 0.7782426778242657 0.1262461143507365
+0.05424613272270165 0.7824267782426757 0.054246132722701644 0.7824267782426757 0.12268738673336253
+0.05763651601787049 0.7719665271966507 0.05763651601787049 0.7719665271966507 0.13058601010003978
+0.05763651601787049 0.7761506276150607 0.05763651601787049 0.7761506276150607 0.12736410632686224
+0.06102689931303934 0.7698744769874457 0.06102689931303934 0.7698744769874457 0.13117501345376995
+0.06441728260820821 0.7635983263598307 0.06441728260820821 0.7635983263598307 0.1339859286615911
+0.06441728260820821 0.7677824267782407 0.06441728260820821 0.7677824267782407 0.13136876023256558
+0.06780766590337706 0.7573221757322157 0.06780766590337706 0.7573221757322157 0.13573042748755346
+0.06780766590337706 0.7615062761506257 0.06780766590337706 0.7615062761506257 0.1335715143478771
+0.0711980491985459 0.7510460251046007 0.0711980491985459 0.7510460251046007 0.13641870148915494
+0.0711980491985459 0.7552301255230107 0.0711980491985459 0.7552301255230107 0.1347028993852892
+0.07458843249371476 0.7447698744769857 0.07458843249371476 0.7447698744769857 0.13614494261507917
+0.07458843249371476 0.7489539748953957 0.07458843249371476 0.7489539748953957 0.13481617339712912
+0.07797881578888362 0.7384937238493707 0.07797881578888362 0.7384937238493707 0.13509219765491018
+0.07797881578888362 0.7426778242677807 0.07797881578888362 0.7426778242677807 0.13405211120730412
+0.08136919908405248 0.7322175732217557 0.08136919908405248 0.7322175732217557 0.1335325723929551
+0.08136919908405248 0.7364016736401657 0.08136919908405248 0.7364016736401657 0.13264174204322546
+0.08475958237922132 0.7259414225941407 0.08475958237922132 0.7259414225941407 0.13181921300514957
+0.08475958237922132 0.7301255230125507 0.08475958237922132 0.7301255230125507 0.13090282538258247
+0.08814996567439015 0.7196652719665257 0.08814996567439015 0.7196652719665257 0.13036515000739815
+0.08814996567439015 0.7238493723849357 0.08814996567439015 0.7238493723849357 0.12922562972669294
+0.09154034896955902 0.7133891213389107 0.09154034896955902 0.7133891213389107 0.12960437016472612
+0.09154034896955902 0.7175732217573207 0.09154034896955902 0.7175732217573207 0.12804274600680762
+0.09493073226472787 0.7112970711297057 0.09493073226472787 0.7112970711297057 0.12777974620200203
+0.09832111555989675 0.7050209205020908 0.09832111555989675 0.7050209205020908 0.1287908167029264
+0.09832111555989675 0.7092050209205008 0.09832111555989675 0.7092050209205008 0.12629121165045462
+0.10171149885506564 0.6987447698744758 0.10171149885506563 0.6987447698744758 0.13129487319601021
+0.10171149885506564 0.7029288702928858 0.10171149885506563 0.7029288702928858 0.12806179039615898
+0.10510188215023453 0.6924686192468608 0.10510188215023453 0.6924686192468608 0.1353351074756988
+0.10510188215023453 0.6966527196652708 0.10510188215023453 0.6966527196652708 0.1313786445296833
+0.10849226544540343 0.6861924686192458 0.10849226544540343 0.6861924686192458 0.14077873787509557
+0.10849226544540343 0.6903765690376558 0.10849226544540343 0.6903765690376558 0.13618713980364308
+0.11188264874057234 0.6799163179916308 0.11188264874057234 0.6799163179916308 0.14735529572457715
+0.11188264874057234 0.6841004184100408 0.11188264874057234 0.6841004184100408 0.14227263240069032
+0.11527303203574124 0.6736401673640158 0.11527303203574124 0.6736401673640158 0.1547154762814282
+0.11527303203574124 0.6778242677824258 0.11527303203574124 0.6778242677824258 0.14931344596333143
+0.11866341533091013 0.6715481171548108 0.11866341533091011 0.6715481171548108 0.1569424861627289
+0.12205379862607901 0.6694560669456058 0.12205379862607901 0.6694560669456058 0.1592489053350574
+0.12544418192124793 0.6673640167364008 0.12544418192124793 0.6673640167364008 0.16157957140698434
+0.1288345652164168 0.6652719665271958 0.1288345652164168 0.6652719665271958 0.16388356352667877
+0.13222494851158573 0.6631799163179908 0.13222494851158573 0.6631799163179908 0.16611595232575252
+0.1356153318067546 0.6610878661087858 0.13561533180675459 0.6610878661087858 0.16823905408324655
+0.1390057151019235 0.6548117154811708 0.1390057151019235 0.6548117154811708 0.17536883561266922
+0.1423960983970924 0.6527196652719658 0.1423960983970924 0.6527196652719658 0.1770727733720822
+0.1525672482825991 0.6380753138075308 0.15256724828259907 0.6380753138075308 0.19023076700125682
+0.1593480148729369 0.6297071129707108 0.1593480148729369 0.6297071129707108 0.1962438597795542
+0.16273839816810579 0.6276150627615058 0.16273839816810579 0.6276150627615058 0.1970041480558353
+0.16951916475844359 0.6192468619246858 0.16951916475844356 0.6192468619246858 0.20283238305661433
+0.17290954790559412 0.6171548152744845 0.17290954790559412 0.6171548152744845 0.2037072537905604
+0.17629987836266126 0.6150627012212639 0.17629987836266126 0.615062701221264 0.20464768567134442
+0.1796846189402738 0.6087794197454196 0.1796846189402738 0.6087794197454196 0.2103358968672897
+0.18305697496641973 0.6066720930799402 0.18305697496641973 0.6066720930799402 0.2116011222849045
+0.18640729721125757 0.6045678841630298 0.18640729721125757 0.6045678841630298 0.2129633914651112
+0.1796887879576942 0.6129684039466421 0.1796887879576942 0.612968403946642 0.20566734168524073
+0.1661287814632747 0.6255230125523008 0.1661287814632747 0.6255230125523008 0.19775101942348372
+0.16951916475844359 0.6234309623430958 0.16951916475844356 0.6234309623430958 0.1985076831938182
+0.15595763157776799 0.6359832635983258 0.15595763157776799 0.6359832635983258 0.1911410359003285
+0.1593480148729369 0.6338912133891208 0.1593480148729369 0.6338912133891208 0.19196364452821732
+0.1457864816922613 0.6464435146443508 0.1457864816922613 0.6464435146443508 0.18339773935104178
+0.1457864816922613 0.6506276150627608 0.1457864816922613 0.6506276150627608 0.1786054401444217
+0.1491768649874302 0.6443514644351458 0.1491768649874302 0.6443514644351458 0.18465110453625388
+0.1525672482825991 0.6422594142259408 0.15256724828259907 0.6422594142259408 0.1857562904095487
+0.1390057151019235 0.6589958158995808 0.1390057151019235 0.6589958158995808 0.17022322430542322
+0.1995306369505938 0.5831481640392608 0.1995306369505938 0.5831481640392608 0.23699209708157928
+0.1999200241091307 0.5877950222523367 0.19992002410913073 0.5877950222523367 0.2306070346713694
+0.20317186635515574 0.5807947604283623 0.20317186635515574 0.5807947604283622 0.2395906015230914
+0.20819265110975216 0.5680637324648141 0.20819265110975219 0.5680637324648141 0.256912878429794
+0.20773731937860776 0.5717015312315652 0.20773731937860776 0.5717015312315653 0.2517451557275742
+0.20714319386875593 0.5752678526768477 0.20714319386875593 0.5752678526768477 0.24671584414868605
+0.20654270391870214 0.5789393647146719 0.20654270391870214 0.5789393647146719 0.24155336966352614
+0.18963956368652501 0.5983389419012947 0.18963956368652501 0.5983389419012947 0.21953760562099064
+0.19285848552888393 0.5963121728928167 0.19285848552888393 0.5963121728928167 0.221173933507375
+0.19604328516494082 0.5942833498403228 0.19604328516494082 0.5942833498403228 0.22289602279371604
+0.19915697888541628 0.5922334216281964 0.19915697888541628 0.5922334216281965 0.22473194650541548
+0.18970604919172548 0.6025047195727004 0.18970604919172548 0.6025047195727004 0.21438407428106895
+0.3691145894346852 0.3402505333972102 0.3691145894346852 0.3402505333972102 0.2685799933207393
+0.36591593832721575 0.3419741233369966 0.36591593832721575 0.3419741233369966 0.2597957366499657
+0.36265895026408335 0.3434863536788019 0.36265895026408335 0.3434863536788019 0.2507992213220232
+0.3530444791389612 0.34718620488502283 0.35304447913896114 0.3471862048850229 0.2240720599208488
+0.359377986446703 0.3449081992821632 0.359377986446703 0.3449081992821632 0.24170188901137815
+0.3562970630072225 0.34609447341912536 0.3562970630072226 0.34609447341912536 0.2331149545009958
+0.3499356334857076 0.3487314851337246 0.3499356334857076 0.3487314851337246 0.2153529749594759
+0.34678605366714166 0.3502221241689818 0.34678605366714166 0.3502221241689818 0.20658747726226914
+0.3404554620941061 0.3533277341613445 0.3404554620941061 0.3533277341613445 0.18923557942555938
+0.3436195576938016 0.3517236134979355 0.34361955769380165 0.3517236134979355 0.19785915658175354
+0.3372261134616389 0.3550768317060648 0.33722611346163894 0.3550768317060648 0.18059644047084308
+0.334987236938711 0.357147082225007 0.334987236938711 0.357147082225007 0.174302739988711
+0.33150104969343347 0.3578045535845197 0.33150104969343347 0.35780455358451974 0.1662108970795615
+0.3282268724269305 0.360182031240052 0.32822687242693055 0.36018203124005194 0.15818333796845205
+0.32495946210045096 0.3623248787474032 0.32495946210045096 0.3623248787474032 0.15089363290335525
+0.3218375054147074 0.3643599826285835 0.3218375054147074 0.3643599826285835 0.14460531705465354
+0.31880501843562614 0.36621373838890536 0.31880501843562614 0.3662137383889053 0.1392965982554701
+0.3156428344782618 0.3678698938268796 0.3156428344782618 0.3678698938268796 0.1346562356888775
+0.3128357902849128 0.3702221857855125 0.3128357902849128 0.3702221857855125 0.13132341142738013
+0.3099292939607667 0.372526535218435 0.3099292939607667 0.372526535218435 0.12892223554213336
+0.3070152920177688 0.3748111063519397 0.30701529201776884 0.3748111063519397 0.12764355254299434
+0.3040767899368219 0.37708942345138624 0.3040767899368219 0.37708942345138624 0.12753206446422685
+0.3011165594718332 0.3793867320282605 0.3011165594718332 0.3793867320282605 0.12860229255305924
+0.2981589706150939 0.3817765461481642 0.29815897061509394 0.3817765461481642 0.13089000713726273
+0.29526772514647753 0.3842833877439174 0.29526772514647753 0.3842833877439174 0.13433483786292644
+0.2925466609493897 0.3869046896780895 0.2925466609493897 0.3869046896780895 0.13877683884468428
+0.2898453396533123 0.38942546994979915 0.2898453396533123 0.38942546994979915 0.14390203185776793
+0.28709640026865874 0.3919712470276087 0.28709640026865874 0.3919712470276087 0.14975195602936953
+0.28425334138632485 0.39457848329444606 0.28425334138632485 0.39457848329444606 0.1563126594714127
+0.2807603156686265 0.3972880656809194 0.2807603156686265 0.3972880656809194 0.16408468187919692
+0.27857016782918526 0.40052215385705275 0.27857016782918526 0.40052215385705275 0.17205961740198397
+0.2762793325515105 0.4032772348674267 0.2762793325515105 0.4032772348674268 0.17945872889005762
+0.27393847287615 0.40593841793421603 0.27393847287615 0.40593841793421603 0.18682901773305446
+0.2716181111465008 0.4085052002841778 0.2716181111465008 0.40850520028417775 0.19402318313012487
+0.26940948133978787 0.41102951117807734 0.26940948133978787 0.41102951117807734 0.20103244586263247
+0.267350844793494 0.41360945968555796 0.267350844793494 0.413609459685558 0.20799839257376743
+0.265760305826863 0.4161210465763524 0.265760305826863 0.41612104657635246 0.21457187452978746
+0.26368500209837564 0.41880310237471535 0.26368500209837564 0.41880310237471535 0.22164044527885807
+0.26164445104241896 0.42156718919225417 0.26164445104241896 0.42156718919225417 0.22873638464363796
+0.25962323008420857 0.42434074519684045 0.25962323008420857 0.42434074519684045 0.23566479133627047
+0.25764851493686086 0.427116987550244 0.25764851493686086 0.427116987550244 0.24238122712057017
+0.25574480852958487 0.42990904022649795 0.25574480852958487 0.42990904022649795 0.24889541620866493
+0.25390848120185117 0.4327426246559236 0.2539084812018512 0.4327426246559236 0.2552608125121556
+0.2520944505762231 0.43563287811734136 0.2520944505762231 0.43563287811734136 0.2614958207131823
+0.2502965085265539 0.43856113642888084 0.2502965085265539 0.4385611364288808 0.2675264646431565
+0.24851118851473897 0.4415320037161068 0.248511188514739 0.44153200371610685 0.2733399949895822
+0.24673980542021898 0.44450153161403444 0.24673980542021898 0.44450153161403444 0.2788325554710453
+0.24501312859232485 0.44751316228130483 0.24501312859232485 0.44751316228130483 0.2840848271099526
+0.24334459051532106 0.4505518151885605 0.24334459051532106 0.4505518151885605 0.2890616812887288
+0.24171718318008864 0.4536241201097823 0.24171718318008864 0.4536241201097823 0.29375857283939627
+0.2401139265244443 0.45673975985454734 0.2401139265244443 0.45673975985454734 0.29816716114826486
+0.23855267272921157 0.45988607842895063 0.23855267272921157 0.45988607842895063 0.30225849871371874
+0.2370227906241533 0.46306599725448067 0.2370227906241533 0.46306599725448067 0.3060233630593832
+0.23552140250339437 0.4662778449237497 0.2355214025033944 0.46627784492374963 0.3094465849208563
+0.23404997089404297 0.4695141549355227 0.23404997089404297 0.4695141549355227 0.3125103592592626
+0.23261865667046386 0.472768634779931 0.23261865667046386 0.472768634779931 0.31520644582795937
+0.2312144402022546 0.47606141883700426 0.2312144402022546 0.47606141883700426 0.31753985793371803
+0.22988016153815483 0.47939298979948236 0.22988016153815485 0.47939298979948236 0.3195169541886748
+0.22862218708323423 0.4827706476312517 0.22862218708323426 0.4827706476312517 0.32114071519420384
+0.22739997807989015 0.48616684110431874 0.22739997807989012 0.4861668411043187 0.322364055306579
+0.2261747634912862 0.4895692854211209 0.2261747634912862 0.4895692854211209 0.3231629907072096
+0.22492729300501546 0.4929782898188486 0.22492729300501546 0.49297828981884867 0.3235301176778991
+0.22365312916736174 0.49641935445678176 0.22365312916736177 0.4964193544567817 0.32347839412762025
+0.22240947078903944 0.49989961846781766 0.22240947078903942 0.49989961846781766 0.32303786856738387
+0.22160780312607248 0.5034949053218349 0.22160780312607245 0.503494905321835 0.3223523507771308
+0.22083340336387178 0.5071639063774726 0.22083340336387178 0.5071639063774726 0.3212446398809306
+0.2198957279141065 0.5106976419935196 0.2198957279141065 0.5106976419935196 0.31969361672509544
+0.21886493745772842 0.5141759857422433 0.21886493745772842 0.5141759857422433 0.3177401213811539
+0.2177569645208377 0.5176563395947164 0.2177569645208377 0.5176563395947164 0.31541182844953286
+0.215393963389659 0.5241719545847994 0.21539396338965897 0.5241719545847995 0.31008319006672375
+0.2166019163683036 0.521111419180828 0.2166019163683036 0.521111419180828 0.3127686026245953
+0.21677748356850293 0.5267437368983465 0.21677748356850293 0.5267437368983465 0.30839231049881966
+0.21652455912217747 0.5294820989771026 0.21652455912217747 0.5294820989771026 0.30596074023514536
+0.21557505855620052 0.5327651356112633 0.21557505855620054 0.5327651356112632 0.3025364465838136
+0.21473392666549587 0.5362221219745578 0.21473392666549587 0.5362221219745579 0.29875341776857595
+0.21390491188100705 0.5397967450007967 0.21390491188100705 0.5397967450007967 0.2946233708683787
+0.21143197978217287 0.5509601595687286 0.21143197978217287 0.5509601595687287 0.2805576534693314
+0.21216820068129813 0.5469988820077131 0.21216820068129813 0.5469988820077131 0.2857036236999661
+0.21304851683467174 0.5433772484162321 0.21304851683467171 0.5433772484162321 0.29027563115652644
+0.214577723728206 0.5519616947048592 0.214577723728206 0.5519616947048592 0.2794152337650171
+0.2127772549695247 0.5548815955396954 0.21277725496952465 0.5548815955396954 0.27540575053663124
+0.2123697673153545 0.5589873207844015 0.21236976731535454 0.5589873207844015 0.2696629894880873
+0.21192196258607754 0.5627452580861765 0.21192196258607754 0.5627452580861765 0.26432197058164236
+0.21143743501333925 0.5664523624623514 0.21143743501333925 0.5664523624623515 0.2589823586850127
+0.37566666885103933 0.33616477034525266 0.37566666885103933 0.33616477034525266 0.2863941388538745
+0.37235809696745775 0.3419243227694037 0.37235809696745775 0.3419243227694037 0.2767339466899212
+0.375566216011031 0.3400660142416584 0.37556621601103096 0.34006601424165833 0.28539798362967644
+0.3841404280679746 0.32126608560742653 0.3841404280679746 0.32126608560742653 0.3097928758404122
+0.3796707083710371 0.3282879884061669 0.3796707083710371 0.3282879884061669 0.29802013106511677
+0.38353710271541325 0.32454455872413707 0.38353710271541325 0.32454455872413707 0.3078847817620294
+0.38234723485595495 0.32708563032915083 0.38234723485595495 0.32708563032915083 0.3045513085809086
+0.37934161634171687 0.33157353283903335 0.37934161634171687 0.3315735328390334 0.2964900296868223
+0.3790564755234404 0.3349809628529124 0.3790564755234404 0.3349809628529124 0.295100317835415
+0.39379773400806345 0.30699020210224337 0.39379773400806345 0.3069902021022433 0.3296371728363962
+0.3889598212624909 0.31393203503094114 0.3889598212624909 0.31393203503094114 0.32078926863162033
+0.39311757078972376 0.3101360110034448 0.3931175707897237 0.3101360110034448 0.3288873621777333
+0.39242786457474593 0.31349610567916314 0.39242786457474593 0.31349610567916314 0.32780042941588455
+0.3882465164074936 0.3171763236215828 0.3882465164074936 0.3171763236215828 0.31921797892732595
+0.3875294647187102 0.32048745704231507 0.3875294647187102 0.32048745704231507 0.31743590857727333
+0.4055720346729018 0.2929005713425573 0.40557203467290176 0.29290057134255726 0.3417698901113014
+0.39969000934920246 0.2995928568670049 0.39969000934920246 0.29959285686700493 0.33735110874968693
+0.4043252181352182 0.2961089031630184 0.4043252181352182 0.2961089031630184 0.34226736065550023
+0.4027491347235544 0.2986651250534652 0.4027491347235544 0.2986651250534652 0.34144061443801077
+0.39875049307405935 0.3029323723460181 0.39875049307405935 0.30293237234601816 0.33721649738187015
+0.39763339448807433 0.30628066722737884 0.39763339448807433 0.30628066722737884 0.3364184533687613
+0.4188526879872683 0.2794583781172693 0.4188526879872683 0.2794583781172693 0.3409157806055049
+0.41195807905975457 0.2860615273638162 0.41195807905975457 0.28606152736381624 0.34301132938326756
+0.41724609313466604 0.2826473213736602 0.41724609313466604 0.2826473213736602 0.3435144896340796
+0.4157220716677782 0.2858525744000302 0.41572207166777814 0.2858525744000302 0.3458195474267609
+0.41058707226336116 0.28934040332554606 0.41058707226336116 0.28934040332554606 0.3446558331471507
+0.4092317648340491 0.292602248436675 0.4092317648340491 0.292602248436675 0.34590543312131583
+0.4415155096042403 0.26127455504203606 0.4415155096042403 0.26127455504203606 0.3139603131042256
+0.43947791132962477 0.26436450379052795 0.43947791132962477 0.26436450379052795 0.31940694481614124
+0.4374428705983113 0.2674182022648146 0.4374428705983113 0.2674182022648146 0.3246573816168535
+0.4354460803110134 0.2704371992816514 0.43544608031101345 0.2704371992816514 0.3296458250499866
+0.43353396607081 0.2734084015412293 0.43353396607081 0.2734084015412293 0.3343002413217256
+0.4242817920749385 0.27626896076654955 0.4242817920749385 0.27626896076654955 0.3389410224769774
+0.4280356514461921 0.2762956018836485 0.4280356514461921 0.2762956018836485 0.3391584419203176
+0.4317317698118679 0.27639332534584277 0.43173176981186784 0.27639332534584277 0.33869371402259235
+0.42264400722431233 0.27942694826573583 0.42264400722431233 0.27942694826573583 0.3422871880202915
+0.4492257718405117 0.25532722309692607 0.4492257718405117 0.25532722309692607 0.2983606833421826
+0.4472383377932898 0.25843302241819843 0.4472383377932898 0.2584330224181985 0.30439718186307824
+0.452861355312774 0.2555849072035176 0.452861355312774 0.2555849072035176 0.2932051326008902
+0.44523316179041567 0.2615532317777916 0.44523316179041567 0.2615532317777916 0.3104233799248776
+0.4773213227471503 0.24016041653351705 0.4773213227471503 0.24016041653351702 0.22448561201367198
+0.4749323929214348 0.24259232671113004 0.4749323929214348 0.24259232671113004 0.2329181442042321
+0.4725522294687054 0.24497233176895425 0.4725522294687054 0.24497233176895425 0.2411494488414955
+0.47017611649688024 0.2473290630615225 0.47017611649688024 0.2473290630615225 0.24921335305259065
+0.46781270049884616 0.24967769656695385 0.4678127004988461 0.24967769656695385 0.2571032907461915
+0.46549435471785844 0.2520720015638668 0.46549435471785844 0.25207200156386683 0.2647979055782255
+0.45636553260263796 0.25588643993782395 0.45636553260263796 0.25588643993782395 0.2875388026184505
+0.4593518442174701 0.25624081808472854 0.45935184421747005 0.2562408180847285 0.28218446008276205
+0.4635611995451042 0.25447927255624947 0.4635611995451043 0.25447927255624947 0.27150210300451666
+0.4618599936617086 0.2562972077356795 0.4618599936617086 0.2562972077356795 0.27698704862345236
+0.49733316129627186 0.2323318117028461 0.49733316129627186 0.2323318117028461 0.1534242197866629
+0.4855640515607705 0.23588533521714047 0.4855640515607705 0.23588533521714047 0.19647651150958959
+0.49481638809463213 0.23500891423641498 0.49481638809463213 0.23500891423641498 0.16395997363944181
+0.48897691594181897 0.23677297924089347 0.48897691594181897 0.23677297924089347 0.1855329534953087
+0.49236042589437146 0.23770960800000132 0.49236042589437146 0.23770960800000132 0.17416958083380443
+0.48317922019867865 0.23864272320778762 0.48317922019867865 0.23864272320778765 0.20574370824043656
+0.48079182455596653 0.2412807649262871 0.48079182455596653 0.2412807649262871 0.21483171566892525
+0.5184008106501289 0.22544041233744794 0.5184008106501289 0.22544041233744797 0.06960270032728068
+0.5059950402118061 0.2281424904049523 0.505995040211806 0.2281424904049523 0.11845144253198252
+0.5155717256433832 0.22792011822736338 0.5155717256433832 0.22792011822736338 0.08111516908002646
+0.5094148225467029 0.22926407462361542 0.5094148225467029 0.22926407462361542 0.10552183448934489
+0.5128053532550462 0.23046768700104195 0.5128053532550462 0.23046768700104195 0.09278645522120012
+0.5033344040878 0.23077340771136856 0.5033344040878 0.23077340771136856 0.12992716495583315
+0.5007270890407404 0.23339510997975463 0.5007270890407404 0.23339510997975463 0.14110565248258933
+0.5275688559523325 0.22207348837557342 0.5275688559523325 0.22207348837557342 0.04346965316377798
+0.5311187708872281 0.2232828737261957 0.5311187708872281 0.22328287372619568 0.043832463328565156
+0.5246719403823287 0.22443864721780704 0.5246719403823287 0.22443864721780704 0.04997527933837414
+0.5217832512920862 0.22682382993090963 0.5217832512920862 0.22682382993090963 0.059058679692868536
+0.5346855422192826 0.22456252916588604 0.5346855422192826 0.224562529165886 0.05095529945513343
+0.5377563807051147 0.2221406518140277 0.5377563807051146 0.22214065181402767 0.05844391138370588
+0.5408789477115321 0.22014392664819699 0.5408789477115321 0.220143926648197 0.06885724897965885
+0.5440041113580917 0.21815221981156596 0.5440041113580917 0.21815221981156596 0.08072449075538345
+0.5471233708559303 0.2161498090232177 0.5471233708559303 0.2161498090232177 0.09337248312269109
+0.5502540948963669 0.2141293587691129 0.5502540948963669 0.2141293587691129 0.10647708627013296
+0.5533993869011602 0.2120878500367571 0.5533993869011602 0.2120878500367571 0.11979468895209915
+0.5695360210048563 0.2027899617813424 0.5695360210048563 0.2027899617813424 0.18634180984159307
+0.5664282661732861 0.2042388198081036 0.5664282661732861 0.20423881980810357 0.17389564525242016
+0.5630179694460913 0.20590201407050682 0.5630179694460913 0.20590201407050682 0.15988727343066664
+0.55977928785652 0.20792852039999588 0.5597792878565199 0.20792852039999588 0.146588300740737
+0.5565639273912693 0.21002327387690345 0.5565639273912693 0.21002327387690345 0.1331651195064368
+0.5734630638841625 0.20351885125433325 0.5734630638841623 0.20351885125433328 0.20442915759697547
+0.5777919679330904 0.20276562207288404 0.5777919679330904 0.20276562207288404 0.22220728896939693
+0.5809269997852624 0.2024391539378953 0.5809269997852624 0.2024391539378953 0.2350114248168748
+0.5835729284213834 0.20012241917937065 0.5835729284213834 0.20012241917937065 0.24309423362995947
+0.5874654842241649 0.19951559601914576 0.5874654842241648 0.19951559601914573 0.257799658474486
+0.5915438658063115 0.19963911805504275 0.5915438658063116 0.19963911805504275 0.2739010527600972
+0.5937521868927533 0.19649164805203362 0.5937521868927532 0.1964916480520336 0.2773952717182724
+0.6003157735665298 0.19305617536818653 0.6003157735665298 0.19305617536818653 0.29524128091600804
+0.5980937862135409 0.19643809443768692 0.5980937862135409 0.19643809443768692 0.2932044807916811
+0.638075313807516 0.15256724828260237 0.638075313807516 0.15256724828260237 0.3308735820571205
+0.6317991631799007 0.15595763157777132 0.6317991631799007 0.15595763157777132 0.31971495482488566
+0.6359832635983109 0.15595763157777132 0.6359832635983108 0.15595763157777132 0.33058243216686195
+0.6297071129706956 0.15934801487294026 0.6297071129706956 0.15934801487294026 0.31960822564838903
+0.6276150627614905 0.1627383981681092 0.6276150627614906 0.1627383981681092 0.31976444016198874
+0.6255230125522853 0.16612878146327814 0.6255230125522853 0.16612878146327814 0.32014936477111816
+0.6192468619246698 0.16951916475844706 0.6192468619246698 0.16951916475844706 0.3091778569190642
+0.6171547700369006 0.1729089973301031 0.6171547700369006 0.1729089973301031 0.3097041506677419
+0.6150623688896996 0.17629670324288635 0.6150623688896996 0.17629670324288635 0.31022772338599264
+0.6129682646903875 0.17967838045661552 0.6129682646903875 0.17967838045661552 0.3106541826847706
+0.6108694350627426 0.18304753975451915 0.6108694350627425 0.18304753975451915 0.3108792720866685
+0.6087640759385442 0.1863998069734116 0.6087640759385442 0.1863998069734116 0.31081028849648334
+0.6066526868643718 0.1897359290480846 0.6066526868643719 0.1897359290480846 0.31037905669748184
+0.6045373863849923 0.1930452409718728 0.6045373863849922 0.1930452409718728 0.30951511422247213
+0.6234309623430802 0.16951916475844708 0.6234309623430802 0.16951916475844708 0.3207137296825611
+0.6485355648535416 0.14239609839709555 0.6485355648535416 0.14239609839709555 0.3430034722508633
+0.6527196652719518 0.14239609839709555 0.6527196652719517 0.14239609839709555 0.3523787441273442
+0.6464435146443365 0.1457864816922645 0.6464435146443365 0.1457864816922645 0.3422734747128091
+0.6443514644351314 0.14917686498743343 0.6443514644351315 0.14917686498743343 0.34168848565697324
+0.6422594142259263 0.15256724828260237 0.6422594142259263 0.15256724828260237 0.34129183917386424
+0.6736401673640029 0.11527303203574402 0.6736401673640029 0.11527303203574402 0.3592470509608274
+0.6715481171547978 0.11866341533091296 0.6715481171547978 0.11866341533091296 0.3601037212809098
+0.6694560669455927 0.1220537986260819 0.6694560669455926 0.1220537986260819 0.3607558339104346
+0.6673640167363876 0.12544418192125084 0.6673640167363876 0.12544418192125084 0.36120728135833263
+0.6652719665271825 0.12883456521641978 0.6652719665271825 0.12883456521641978 0.3614718842605646
+0.6631799163179773 0.13222494851158872 0.6631799163179773 0.13222494851158872 0.3615731162295113
+0.6610878661087722 0.13561533180675767 0.6610878661087723 0.13561533180675767 0.3615432719881216
+0.6589958158995671 0.1390057151019266 0.6589958158995671 0.1390057151019266 0.36142209005616416
+0.656903765690362 0.14239609839709555 0.656903765690362 0.14239609839709555 0.36125486754370106
+0.6799163179916182 0.11188264874057507 0.6799163179916182 0.11188264874057507 0.36288272347385586
+0.6778242677824131 0.11527303203574402 0.6778242677824132 0.11527303203574402 0.36426632218439464
+0.6861924686192336 0.10849226544540613 0.6861924686192334 0.10849226544540613 0.36543499280509967
+0.6841004184100284 0.11188264874057507 0.6841004184100284 0.11188264874057507 0.3671461432279021
+0.6924686192468489 0.10510188215023719 0.6924686192468489 0.10510188215023719 0.3674222622124756
+0.6903765690376438 0.10849226544540613 0.6903765690376438 0.10849226544540613 0.36919616064953337
+0.6987447698744642 0.10171149885506825 0.6987447698744642 0.10171149885506825 0.3694508218184809
+0.6966527196652591 0.10510188215023719 0.6966527196652591 0.10510188215023719 0.37098940312460277
+0.7050209205020795 0.09832111555989931 0.7050209205020795 0.09832111555989931 0.3721381591321327
+0.7029288702928743 0.10171149885506825 0.7029288702928743 0.10171149885506825 0.37315423802545217
+0.7133891213389 0.09154034896956142 0.7133891213389 0.09154034896956142 0.37612084894977543
+0.7112970711296949 0.09493073226473037 0.711297071129695 0.09493073226473037 0.3760193911620709
+0.7092050209204898 0.09832111555989931 0.7092050209204898 0.09832111555989931 0.3762869646657534
+0.7196652719665153 0.08814996567439248 0.7196652719665152 0.08814996567439248 0.3823896434117691
+0.7175732217573102 0.09154034896956142 0.7175732217573102 0.09154034896956142 0.3814535574945381
+0.7259414225941306 0.08475958237922354 0.7259414225941306 0.08475958237922354 0.3902295539638077
+0.7238493723849255 0.08814996567439248 0.7238493723849255 0.08814996567439248 0.3885521418127636
+0.732217573221746 0.0813691990840546 0.732217573221746 0.0813691990840546 0.39934226046917565
+0.7301255230125409 0.08475958237922354 0.7301255230125409 0.08475958237922354 0.3971494112041644
+0.7384937238493613 0.07797881578888566 0.7384937238493613 0.07797881578888566 0.40920316638925397
+0.7364016736401562 0.0813691990840546 0.7364016736401561 0.0813691990840546 0.40682214653740517
+0.7447698744769766 0.07458843249371672 0.7447698744769767 0.07458843249371672 0.419136219819037
+0.7426778242677715 0.07797881578888566 0.7426778242677715 0.07797881578888566 0.41695099676814357
+0.751046025104592 0.07119804919854777 0.751046025104592 0.07119804919854777 0.42840164395469765
+0.7489539748953868 0.07458843249371672 0.7489539748953868 0.07458843249371672 0.42680536520916407
+0.7573221757322073 0.06780766590337883 0.7573221757322073 0.06780766590337883 0.43627972035133356
+0.7552301255230022 0.07119804919854777 0.7552301255230022 0.07119804919854777 0.4356324025110614
+0.7656903765690277 0.06102689931304095 0.7656903765690277 0.06102689931304095 0.4405803009960571
+0.7635983263598226 0.06441728260820989 0.7635983263598226 0.06441728260820989 0.4421404498421042
+0.7615062761506175 0.06780766590337883 0.7615062761506176 0.06780766590337883 0.44273603716560234
+0.771966527196643 0.05763651601787201 0.771966527196643 0.05763651601787201 0.4424422067579828
+0.7698744769874379 0.06102689931304095 0.7698744769874378 0.06102689931304095 0.44549529113208336
+0.7782426778242584 0.054246132722703067 0.7782426778242585 0.054246132722703067 0.44144243429967117
+0.7761506276150533 0.05763651601787201 0.7761506276150533 0.05763651601787201 0.44603117902319855
+0.7845188284518737 0.050855749427534125 0.7845188284518737 0.050855749427534125 0.4375653188389346
+0.7824267782426686 0.054246132722703067 0.7824267782426686 0.054246132722703067 0.44362868270574163
+0.790794979079489 0.04746536613236518 0.790794979079489 0.04746536613236518 0.4309868235802808
+0.7887029288702839 0.050855749427534125 0.7887029288702839 0.050855749427534125 0.43836634677871283
+0.7970711297071044 0.04407498283719624 0.7970711297071044 0.04407498283719624 0.4220607191272185
+0.7949790794978993 0.04746536613236518 0.7949790794978994 0.04746536613236518 0.43051278269412646
+0.8033472803347197 0.0406845995420273 0.8033472803347196 0.0406845995420273 0.4112940423851868
+0.8012552301255146 0.04407498283719624 0.8012552301255146 0.04407498283719624 0.42050745203395185
+0.809623430962335 0.03729421624685836 0.809623430962335 0.03729421624685836 0.3993122726319059
+0.8075313807531299 0.0406845995420273 0.8075313807531298 0.0406845995420273 0.40893057901834107
+0.8158995815899504 0.03390383295168942 0.8158995815899504 0.03390383295168942 0.38681478727541657
+0.8138075313807452 0.03729421624685836 0.8138075313807452 0.03729421624685836 0.39646246132773616
+0.8221757322175657 0.030513449656520475 0.8221757322175657 0.030513449656520475 0.37452202302469223
+0.8200836820083606 0.03390383295168942 0.8200836820083605 0.03390383295168942 0.38383290224857114
+0.8305439330543861 0.02373268306618259 0.8305439330543861 0.02373268306618259 0.35509479462998256
+0.828451882845181 0.027123066361351533 0.8284518828451811 0.027123066361351533 0.3631176462911019
+0.8263598326359759 0.030513449656520475 0.8263598326359759 0.030513449656520475 0.3717629269327621
+0.8368200836820014 0.02034229977101365 0.8368200836820013 0.02034229977101365 0.34624959801679855
+0.8347280334727963 0.02373268306618259 0.8347280334727963 0.02373268306618259 0.3531918393670279
+0.8430962343096168 0.01695191647584471 0.8430962343096168 0.01695191647584471 0.3394901766661747
+0.8410041841004117 0.02034229977101365 0.8410041841004116 0.02034229977101365 0.34519457852562213
+0.8493723849372321 0.013561533180675767 0.8493723849372321 0.013561533180675767 0.33503060974564264
+0.847280334728027 0.01695191647584471 0.847280334728027 0.01695191647584471 0.3394085526795247
+0.8556485355648474 0.010171149885506825 0.8556485355648474 0.010171149885506825 0.33293413262957167
+0.8535564853556423 0.013561533180675767 0.8535564853556422 0.013561533180675767 0.3359481370681184
+0.8619246861924628 0.006780766590337883 0.8619246861924629 0.006780766590337883 0.333142650386781
+0.8598326359832577 0.010171149885506825 0.8598326359832577 0.010171149885506825 0.33478350075571695
+0.866108786610873 0.006780766590337883 0.866108786610873 0.006780766590337883 0.33578048640546476
+0.0067807665903376925 0.8702928870292856 0.006780766590337692 0.8702928870292856 0.08369381680985101
+0.006780766590337405 0.8744769874476962 0.006780766590337405 0.8744769874476962 0.08512400645498928
+0.01017114988550656 0.8640167364016706 0.01017114988550656 0.8640167364016706 0.08210227668328023
+0.01017114988550654 0.8682008368200806 0.01017114988550654 0.8682008368200806 0.08342738443933133
+0.013561533180675408 0.8577405857740557 0.013561533180675408 0.8577405857740557 0.08089048477488626
+0.013561533180675408 0.8619246861924656 0.013561533180675408 0.8619246861924656 0.08198579108514033
+0.016951916475844264 0.8514644351464407 0.016951916475844264 0.8514644351464407 0.08020512479302101
+0.016951916475844264 0.8556485355648507 0.016951916475844264 0.8556485355648507 0.08093582710078055
+0.02034229977101312 0.8451882845188257 0.02034229977101312 0.8451882845188257 0.08020993942470943
+0.02034229977101312 0.8493723849372357 0.02034229977101312 0.8493723849372357 0.0804419978436101
+0.02373268306618197 0.8389121338912107 0.02373268306618197 0.8389121338912107 0.08106496373532801
+0.02373268306618197 0.8430962343096207 0.02373268306618197 0.8430962343096207 0.08068221091485196
+0.027123066361350822 0.8326359832635957 0.027123066361350822 0.8326359832635957 0.08289540809049184
+0.027123066361350822 0.8368200836820057 0.027123066361350822 0.8368200836820057 0.08181975529394638
+0.030513449656519673 0.8305439330543907 0.030513449656519673 0.8305439330543907 0.08396734341946455
+0.033903832951688535 0.8242677824267757 0.033903832951688535 0.8242677824267757 0.08715483302648107
+0.033903832951688535 0.8284518828451857 0.033903832951688535 0.8284518828451857 0.08509733937477826
+0.03729421624685738 0.8179916317991607 0.03729421624685738 0.8179916317991607 0.09131282878320036
+0.03729421624685738 0.8221757322175707 0.03729421624685738 0.8221757322175707 0.08859666039665731
+0.040684599542026224 0.8117154811715457 0.040684599542026224 0.8117154811715457 0.09627741608511059
+0.040684599542026224 0.8158995815899557 0.040684599542026224 0.8158995815899557 0.09301924624313918
+0.0440749828371951 0.8054393305439307 0.0440749828371951 0.8054393305439307 0.10181172856534781
+0.0440749828371951 0.8096234309623407 0.0440749828371951 0.8096234309623407 0.09816283376084824
+0.04746536613236394 0.7991631799163157 0.04746536613236394 0.7991631799163157 0.10763497950170264
+0.04746536613236394 0.8033472803347257 0.04746536613236394 0.8033472803347257 0.10376185636768916
+0.05085574942753279 0.7928870292887007 0.05085574942753279 0.7928870292887007 0.11345084210285182
+0.05085574942753279 0.7970711297071107 0.05085574942753279 0.7970711297071107 0.10951914738243063
+0.05424613272270165 0.7866108786610857 0.054246132722701644 0.7866108786610857 0.11897123401496117
+0.05424613272270165 0.7907949790794957 0.054246132722701644 0.7907949790794957 0.11513416749068463
+0.05763651601787049 0.7803347280334707 0.05763651601787049 0.7803347280334707 0.12393502331028923
+0.05763651601787049 0.7845188284518807 0.05763651601787049 0.7845188284518807 0.12032537862486624
+0.06102689931303934 0.7740585774058557 0.06102689931303934 0.7740585774058557 0.128122759950812
+0.06102689931303934 0.7782426778242657 0.06102689931303934 0.7782426778242657 0.12484734796574647
+0.06441728260820821 0.7719665271966507 0.06441728260820821 0.7719665271966507 0.12850412434510025
+0.06780766590337706 0.7656903765690357 0.06780766590337706 0.7656903765690357 0.13116027175614217
+0.06780766590337706 0.7698744769874457 0.06780766590337706 0.7698744769874457 0.1284978404766951
+0.0711980491985459 0.7594142259414207 0.0711980491985459 0.7594142259414207 0.13275042920008784
+0.0711980491985459 0.7635983263598307 0.0711980491985459 0.7635983263598307 0.13055124739111654
+0.07458843249371476 0.7531380753138057 0.07458843249371476 0.7531380753138057 0.13328771400116332
+0.07458843249371476 0.7573221757322157 0.07458843249371476 0.7573221757322157 0.13153816143697172
+0.07797881578888362 0.7468619246861907 0.07797881578888362 0.7468619246861907 0.13287070302154336
+0.07797881578888362 0.7510460251046007 0.07797881578888362 0.7510460251046007 0.13151547971364885
+0.08136919908405248 0.7405857740585757 0.08136919908405248 0.7405857740585757 0.13168795888932386
+0.08136919908405248 0.7447698744769857 0.08136919908405248 0.7447698744769857 0.13062879341086567
+0.08475958237922132 0.7343096234309607 0.08475958237922132 0.7343096234309607 0.13001792415781424
+0.08475958237922132 0.7384937238493707 0.08475958237922132 0.7384937238493707 0.12911476656585227
+0.08814996567439015 0.7280334728033457 0.08814996567439015 0.7280334728033457 0.12822044728559093
+0.08814996567439015 0.7322175732217557 0.08814996567439015 0.7322175732217557 0.1272971911532662
+0.09154034896955902 0.7217573221757307 0.09154034896955902 0.7217573221757307 0.12671475557367443
+0.09154034896955902 0.7259414225941407 0.09154034896955902 0.7259414225941407 0.1255720659665981
+0.09493073226472787 0.7154811715481157 0.09493073226472787 0.7154811715481157 0.12593899995316352
+0.09493073226472787 0.7196652719665257 0.09493073226472787 0.7196652719665257 0.12437617160826553
+0.09832111555989675 0.7133891213389107 0.09832111555989675 0.7133891213389107 0.12413590943943098
+0.10171149885506564 0.7071129707112958 0.10171149885506563 0.7071129707112958 0.12520111536855108
+0.10171149885506564 0.7112970711297057 0.10171149885506563 0.7112970711297057 0.12270534295110407
+0.10510188215023453 0.7008368200836808 0.10510188215023453 0.7008368200836808 0.12778063073635312
+0.10510188215023453 0.7050209205020908 0.10510188215023453 0.7050209205020908 0.12455489360531628
+0.10849226544540343 0.6945606694560658 0.10849226544540343 0.6945606694560658 0.13190367355752838
+0.10849226544540343 0.6987447698744758 0.10849226544540343 0.6987447698744758 0.12795967136484018
+0.11188264874057234 0.6882845188284508 0.11188264874057234 0.6882845188284508 0.13742338821345043
+0.11188264874057234 0.6924686192468608 0.11188264874057234 0.6924686192468608 0.1328501568918207
+0.11527303203574124 0.6820083682008358 0.11527303203574124 0.6820083682008358 0.14405900266627156
+0.11527303203574124 0.6861924686192458 0.11527303203574124 0.6861924686192458 0.13899968532637788
+0.11866341533091013 0.6757322175732208 0.11866341533091011 0.6757322175732208 0.15145681213094078
+0.11866341533091013 0.6799163179916308 0.11866341533091011 0.6799163179916308 0.14608030272489766
+0.12205379862607901 0.6736401673640158 0.12205379862607901 0.6736401673640158 0.15372500403127173
+0.12544418192124793 0.6715481171548108 0.12544418192124793 0.6715481171548108 0.1560581396936438
+0.1288345652164168 0.6694560669456058 0.1288345652164168 0.6694560669456058 0.1583995351035696
+0.13222494851158573 0.6673640167364008 0.13222494851158573 0.6673640167364008 0.16069785294711111
+0.1356153318067546 0.6652719665271958 0.13561533180675459 0.6652719665271958 0.16290869948804618
+0.1390057151019235 0.6631799163179908 0.1390057151019235 0.6631799163179908 0.16499570135896902
+0.1423960983970924 0.6569037656903758 0.1423960983970924 0.6569037656903758 0.1720472385771614
+0.1457864816922613 0.6548117154811708 0.1457864816922613 0.6548117154811708 0.17369831107460834
+0.15595763157776799 0.6401673640167358 0.15595763157776799 0.6401673640167358 0.1867301375646683
+0.16273839816810579 0.6317991631799158 0.16273839816810579 0.6317991631799158 0.19272318805754315
+0.1661287814632747 0.6297071129707108 0.1661287814632747 0.6297071129707108 0.1934448551979777
+0.17290954751105211 0.6213389234909569 0.17290954751105211 0.6213389234909569 0.1992949594869214
+0.1762999131408062 0.6192469056845573 0.1762999131408062 0.6192469056845572 0.2001305764269066
+0.17969010472886893 0.6171545012831515 0.17969010472886893 0.6171545012831515 0.20102919810212852
+0.18307036612434335 0.6108662421122862 0.18307036612434335 0.6108662421122862 0.20678208714170832
+0.18643711392907733 0.6087582155558056 0.18643711392907733 0.6087582155558056 0.20799649441343385
+0.1897816804874629 0.6066607249822846 0.1897816804874629 0.6066607249822846 0.209294196067188
+0.18307773458336074 0.6150579402881414 0.18307773458336074 0.6150579402881414 0.20200644090003836
+0.16951916475844359 0.6276150627615058 0.16951916475844356 0.6276150627615058 0.1941532416501743
+0.17290954619663845 0.6255230430253856 0.17290954619663845 0.6255230430253856 0.1948712414989271
+0.1593480148729369 0.6380753138075308 0.1593480148729369 0.6380753138075308 0.1875934888517866
+0.16273839816810579 0.6359832635983258 0.16273839816810579 0.6359832635983258 0.18836997728362112
+0.1491768649874302 0.6485355648535558 0.1491768649874302 0.6485355648535558 0.17996749896315764
+0.1491768649874302 0.6527196652719658 0.1491768649874302 0.6527196652719658 0.17517179836125074
+0.1525672482825991 0.6464435146443508 0.15256724828259907 0.6464435146443508 0.18116646970573516
+0.15595763157776799 0.6443514644351458 0.15595763157776799 0.6443514644351458 0.1822158420954018
+0.1423960983970924 0.6610878661087858 0.1423960983970924 0.6610878661087858 0.1669311153871649
+0.20268854141595571 0.5847445780577101 0.20268854141595574 0.58474457805771 0.2341385581803274
+0.20333067808588523 0.5879034523827018 0.20333067808588523 0.5879034523827018 0.22949052086166755
+0.20241750543900738 0.5910398405348352 0.20241750543900738 0.591039840534835 0.22544133248818152
+0.20609845286379702 0.5826609804202477 0.20609845286379702 0.5826609804202477 0.23630694112913828
+0.21090074101518122 0.5701365909973901 0.21090074101518122 0.5701365909973902 0.25365063860458487
+0.21036450289212394 0.5736816305310691 0.21036450289212394 0.5736816305310691 0.2485195408108387
+0.2096940235017659 0.5772091459928816 0.2096940235017659 0.5772091459928816 0.24345755053443527
+0.20927411219354042 0.5808159488470834 0.20927411219354042 0.5808159488470834 0.23824957573937586
+0.19293674799615831 0.6004902457211426 0.19293674799615831 0.6004902457211426 0.2158491276298433
+0.1960832562159003 0.5985246786342522 0.1960832562159003 0.5985246786342522 0.21735489100026242
+0.19917110626367954 0.5965980996020331 0.19917110626367954 0.5965980996020331 0.21889653213709828
+0.20227868543128602 0.5948594420285025 0.20227868543128605 0.5948594420285024 0.2202614729120911
+0.1930564084471462 0.6046274995546862 0.1930564084471462 0.6046274995546862 0.21062221407678453
+0.3691142676363466 0.34379943257932116 0.3691142676363466 0.34379943257932116 0.2678126236741618
+0.36584904563428816 0.3453953831867178 0.36584904563428816 0.3453953831867178 0.25879251014182963
+0.37232402839257617 0.3457714444449566 0.37232402839257617 0.3457714444449566 0.2760586122403165
+0.36257844972816494 0.34693897426773146 0.36257844972816494 0.3469389742677315 0.24965802666281064
+0.3555531444129435 0.3487750198759431 0.3555531444129435 0.3487750198759431 0.23016106765545746
+0.35311602691803234 0.3504248712247805 0.3531160269180323 0.35042487122478055 0.2231372491642585
+0.35887489753226776 0.34867828827884645 0.35887489753226776 0.3486782882788465 0.23927200953904063
+0.35006657231826954 0.3520381086605998 0.3500665723182696 0.35203810866059987 0.2144478250104316
+0.34689503355197865 0.35362126004843697 0.34689503355197865 0.35362126004843697 0.2054967787698296
+0.3407329441307947 0.3566982459458287 0.3407329441307947 0.3566982459458287 0.18840731874724245
+0.34383886053459695 0.35519633944602197 0.34383886053459695 0.35519633944602197 0.1969341595423235
+0.33776259100835593 0.3585475792241641 0.33776259100835593 0.3585475792241641 0.18024042786606495
+0.3345605383906085 0.36006821449659665 0.3345605383906085 0.3600682144965966 0.1720312720753918
+0.3315606652862906 0.3617325366468574 0.3315606652862906 0.3617325366468574 0.1645434840458855
+0.32846630842916497 0.3637167572485261 0.32846630842916497 0.3637167572485261 0.15716350721581462
+0.3252927885003697 0.36579078086549394 0.32529278850036963 0.36579078086549394 0.1501862211840501
+0.3220507343361394 0.36828420959448155 0.3220507343361394 0.3682842095944815 0.14372651771518877
+0.3186375132672039 0.3692088673575652 0.3186375132672039 0.3692088673575652 0.13830409050739947
+0.31636259632911135 0.3714821172239398 0.3163625963291113 0.3714821172239398 0.1350845490133503
+0.3135598778464769 0.37377698212287014 0.31355987784647693 0.3737769821228701 0.13204298602750877
+0.31063629842971474 0.3760190982399579 0.3106362984297148 0.3760190982399579 0.12999624125475764
+0.307704524048227 0.3782680424213855 0.307704524048227 0.3782680424213855 0.1291528220511932
+0.3047912098584864 0.3804719475633885 0.3047912098584864 0.3804719475633885 0.12950103735323484
+0.3018843627655818 0.382760999979725 0.3018843627655818 0.382760999979725 0.13106777975493877
+0.2990669840400936 0.3852349150585577 0.29906698404009363 0.3852349150585577 0.13394110664342088
+0.29630175740887554 0.38775945575026666 0.29630175740887554 0.38775945575026666 0.13788634970091815
+0.293577444705906 0.3902968953861911 0.293577444705906 0.3902968953861911 0.14275176215746754
+0.2908379042301812 0.39283951801375855 0.2908379042301812 0.39283951801375855 0.14841598551474175
+0.2880494066787982 0.39544431406395025 0.2880494066787982 0.39544431406395025 0.15486297192735446
+0.28516156486543964 0.3981972617442246 0.2851615648654397 0.3981972617442246 0.16221216076675848
+0.2823532581587314 0.40103731580821067 0.2823532581587314 0.4010373158082107 0.17002369783671845
+0.2800466344270335 0.40382134109175377 0.28004663442703354 0.40382134109175377 0.17765084842548587
+0.2776514994384582 0.4065435619139121 0.2776514994384582 0.4065435619139121 0.1853826655644345
+0.27517837800403644 0.4092322011087522 0.27517837800403644 0.4092322011087522 0.19317321115139738
+0.2727285786865453 0.41182157459010066 0.27272857868654526 0.41182157459010066 0.20070769002707792
+0.2703320186989341 0.4136641539655648 0.2703320186989341 0.4136641539655647 0.20641305960102016
+0.269428505170467 0.4162679717174171 0.269428505170467 0.4162679717174171 0.21303977954419331
+0.2674220275561017 0.4190290902839748 0.2674220275561017 0.4190290902839748 0.22053093853436137
+0.2653543240942166 0.4218339974172474 0.2653543240942166 0.4218339974172474 0.22801700464455332
+0.2633079740460799 0.4246232095645805 0.2633079740460799 0.4246232095645805 0.23527801604999396
+0.2613106173539912 0.42736362039878945 0.2613106173539912 0.42736362039878945 0.24219496395310322
+0.2593790318639418 0.43008823338426544 0.2593790318639418 0.43008823338426544 0.24883037219304957
+0.2575668214102526 0.43286378864471886 0.2575668214102526 0.4328637886447188 0.25532281687159664
+0.25582219838122905 0.43570426713780885 0.25582219838122905 0.4357042671378089 0.261724209991228
+0.2540421925288587 0.4386002974710335 0.2540421925288587 0.4386002974710335 0.2679573485798324
+0.25225194822667557 0.44153339248538587 0.25225194822667557 0.44153339248538587 0.2739475885475831
+0.2504741525595304 0.44448018888313573 0.2504741525595304 0.44448018888313573 0.2796334388686756
+0.2487450549873498 0.44744935515776857 0.2487450549873498 0.44744935515776857 0.2850285486807695
+0.24708408812839835 0.450440571858952 0.24708408812839835 0.450440571858952 0.29013365562275156
+0.24547242819069673 0.4534650413182788 0.24547242819069673 0.45346504131827886 0.29495715836501213
+0.2438801286914286 0.45654067316355174 0.24388012869142858 0.4565406731635518 0.29949900353424597
+0.2423218350666663 0.4596607049195933 0.2423218350666663 0.4596607049195933 0.3037313445325633
+0.2407842206020554 0.46278632870631436 0.2407842206020554 0.46278632870631436 0.30757678078917844
+0.2392787119317211 0.46594581808148167 0.2392787119317211 0.46594581808148167 0.31107649800038195
+0.2378121340966377 0.4691373660434248 0.2378121340966377 0.4691373660434248 0.31422325695844294
+0.23639625373683104 0.4723460397810131 0.23639625373683107 0.4723460397810131 0.3169998064056834
+0.2350217119644938 0.4755844790031563 0.2350217119644938 0.4755844790031563 0.319408144517441
+0.23368129104613056 0.4788625458447336 0.23368129104613056 0.4788625458447336 0.32143997322865997
+0.23239457143205985 0.4821763927663732 0.23239457143205985 0.4821763927663732 0.3230964540121968
+0.23114719711501763 0.48552356169083644 0.23114719711501763 0.4855235616908365 0.32436051606152083
+0.22992397136967546 0.48889220101267344 0.22992397136967546 0.48889220101267344 0.32521344695821863
+0.22871290879211315 0.49227539849270235 0.22871290879211315 0.49227539849270235 0.32564654913886953
+0.22751993918161126 0.49567501392928576 0.22751993918161126 0.49567501392928576 0.32566887642499465
+0.22636603247880824 0.4991129392920441 0.22636603247880824 0.4991129392920441 0.3252934214955178
+0.2253387787511616 0.5026063225975009 0.2253387787511616 0.5026063225975009 0.3245520001771412
+0.22443287768262302 0.5061521524402953 0.22443287768262302 0.5061521524402953 0.32344874720777067
+0.22352021549379822 0.5096937676702681 0.22352021549379822 0.5096937676702681 0.32192588696761604
+0.2225522054458565 0.5132039278735497 0.2225522054458565 0.5132039278735497 0.31999236711475104
+0.22152751276821214 0.5167094412513061 0.22152751276821214 0.5167094412513061 0.31766457740108067
+0.22041820161295472 0.5202465901426631 0.22041820161295475 0.5202465901426631 0.31493455875329524
+0.21919734918293787 0.5241140709530079 0.21919734918293793 0.5241140709530079 0.3116363183064647
+0.21956578372399105 0.5279725561212731 0.21956578372399105 0.5279725561212731 0.3083729529314085
+0.21901287701770558 0.5315326775784684 0.21901287701770558 0.5315326775784684 0.3048369868284719
+0.21826240481960624 0.5350280724275893 0.21826240481960624 0.5350280724275893 0.30099797250296095
+0.2174579627599319 0.5385633268671223 0.21745796275993187 0.5385633268671223 0.2968625323655733
+0.2165858903656615 0.542127675681643 0.21658589036566148 0.542127675681643 0.2924693472968698
+0.21471410242817895 0.5489882630435424 0.21471410242817893 0.5489882630435424 0.2834883386703779
+0.21571120107424535 0.5455862081902719 0.21571120107424538 0.5455862081902719 0.2880189754198072
+0.2173692164913053 0.5508625669553464 0.21736921649130528 0.5508625669553463 0.28117782905532657
+0.21641648950221454 0.5542087255793099 0.2164164895022145 0.5542087255793099 0.27653722582625334
+0.215691721809246 0.5574068207004471 0.215691721809246 0.5574068207004471 0.2719817017530796
+0.2152589457373882 0.5611554385552852 0.2152589457373882 0.5611554385552852 0.2665435503332634
+0.2147583336693155 0.5648505233498066 0.2147583336693155 0.5648505233498066 0.26111613771956194
+0.21422690971564604 0.5685242275865218 0.21422690971564604 0.5685242275865218 0.2556837718277152
+0.37877437852264184 0.3385948412068155 0.37877437852264184 0.33859484120681543 0.29378005582378836
+0.37547355311409075 0.34403291185874335 0.37547355311409075 0.34403291185874335 0.28458480633649336
+0.3786840708821569 0.3424357550371524 0.3786840708821569 0.3424357550371524 0.29307121241728806
+0.38678813084854263 0.32387812389668297 0.38678813084854263 0.32387812389668297 0.31543211249080266
+0.38274398908943325 0.3299641256989857 0.38274398908943325 0.32996412569898576 0.3049710030508946
+0.38563305403463144 0.32754471767099147 0.3856330540346314 0.3275447176709915 0.31231809258680315
+0.382393532805818 0.3335890373460221 0.38239353280581806 0.33358903734602213 0.3035269749731167
+0.3821386451131176 0.3372326408047965 0.3821386451131176 0.3372326408047965 0.30236471049292396
+0.396691397608252 0.3094924104644826 0.396691397608252 0.30949241046448256 0.33552208092847735
+0.3916305264345172 0.31651738424424686 0.3916305264345172 0.31651738424424686 0.32632246692407696
+0.3958957696630664 0.3128503663418438 0.39589576966306644 0.3128503663418438 0.33458210836140934
+0.3950113846651541 0.31579406135019805 0.3950113846651541 0.3157940613501981 0.3331054022962607
+0.3909318874290462 0.31970578500095415 0.3909318874290462 0.31970578500095415 0.32482373497145506
+0.39024105480000293 0.3230424261844879 0.3902410548000029 0.3230424261844879 0.3231410955711352
+0.40784639101071923 0.2959206024047016 0.40784639101071923 0.2959206024047016 0.34674075852990377
+0.40280716571474 0.3020855241814835 0.40280716571473996 0.3020855241814835 0.3433941331031238
+0.4061740975013412 0.29948732667817285 0.4061740975013412 0.29948732667817285 0.3468865066582084
+0.40619831581998805 0.3028492650590962 0.40619831581998805 0.3028492650590962 0.34864193099537566
+0.40130677117954033 0.30570770561813126 0.40130677117954033 0.30570770561813126 0.3425021636697825
+0.4002492658656427 0.30899745018715574 0.40024926586564274 0.30899745018715574 0.3417667056581499
+0.42104333405352695 0.2825848145545335 0.42104333405352695 0.2825848145545335 0.34533439586008224
+0.41430912931936864 0.28908459702544986 0.41430912931936864 0.28908459702544986 0.3478444922600578
+0.4195014711725918 0.28574004452741436 0.4195014711725918 0.28574004452741436 0.34805641647246494
+0.4180340595366081 0.28889404233076116 0.4180340595366081 0.28889404233076116 0.3504416438723867
+0.41293650116884134 0.29231583618387497 0.41293650116884134 0.29231583618387497 0.34950719620049636
+0.4115778060175246 0.29556885479761286 0.4115778060175246 0.2955688547976129 0.3507793115948222
+0.4432072524439869 0.2646711710728606 0.4432072524439869 0.2646711710728606 0.31638738624236845
+0.44117542469921234 0.26777309851701986 0.4411754246992123 0.26777309851701986 0.3222081997141209
+0.43917083658746875 0.27083755394652365 0.43917083658746875 0.2708375539465236 0.3277839715265085
+0.43723613256040855 0.27378895452777535 0.43723613256040855 0.27378895452777535 0.33293534899431826
+0.43541678425044217 0.276524896793691 0.4354167842504422 0.276524896793691 0.33746965789437366
+0.4263949816051357 0.2794101204285073 0.4263949816051357 0.2794101204285073 0.34293298086239504
+0.43011690816813697 0.27941050372339665 0.430116908168137 0.27941050372339665 0.3428314404084425
+0.4336421671329041 0.27953238907416356 0.4336421671329041 0.2795323890741636 0.34214621397838046
+0.4247927233719457 0.28254260817840476 0.4247927233719457 0.28254260817840476 0.34643600331232377
+0.45090007311948826 0.2586736901806915 0.45090007311948826 0.2586736901806915 0.2996132173570932
+0.44892747313322984 0.26179716941432746 0.44892747313322984 0.26179716941432746 0.3060524013969213
+0.4544970837317728 0.2588948472912798 0.4544970837317727 0.2588948472912798 0.2941008481836627
+0.44692270551099184 0.2649374255797397 0.44692270551099184 0.2649374255797397 0.31249875321661885
+0.47839968335199096 0.2437763514258212 0.47839968335199096 0.24377635142582124 0.22372793098208407
+0.47601185095271986 0.2462086777867706 0.47601185095271986 0.2462086777867706 0.232450575841999
+0.4736280862848922 0.2485961628577771 0.4736280862848922 0.2485961628577771 0.24101142210296642
+0.4712459035297791 0.2509625403785885 0.4712459035297791 0.2509625403785885 0.24943386519758118
+0.468873377908154 0.2532951900606662 0.468873377908154 0.2532951900606662 0.25768264893479764
+0.4665458686046265 0.25553915213302836 0.4665458686046265 0.25553915213302836 0.2656059521589514
+0.45796354995550265 0.2590439113731514 0.45796354995550265 0.25904391137315136 0.28794725878870103
+0.4612650095321254 0.2588527236117209 0.4612650095321254 0.2588527236117209 0.28102193347709786
+0.4642135226432172 0.2575953892071002 0.4642135226432172 0.2575953892071002 0.2731867550366092
+0.4981782373181771 0.23602354782537968 0.49817823731817706 0.23602354782537968 0.15196661026292568
+0.48658195479334565 0.23951752219088476 0.4865819547933457 0.23951752219088476 0.1951539469966729
+0.49570334303065056 0.23867784123914823 0.4957033430306506 0.23867784123914823 0.16246753642051004
+0.48995364146958886 0.24041792150425087 0.48995364146958886 0.24041792150425087 0.1841083392885892
+0.4932934243375267 0.24135393751000148 0.4932934243375267 0.24135393751000148 0.17265857217932432
+0.48423189172116343 0.24226209945117677 0.48423189172116343 0.2422620994511768 0.2045316794514491
+0.48186358233872456 0.2448902207919185 0.48186358233872456 0.2448902207919185 0.21381527130851738
+0.518933004546643 0.22924413617154102 0.518933004546643 0.22924413617154102 0.06954510419390382
+0.5067309489755016 0.2318844195233599 0.5067309489755017 0.2318844195233599 0.11715373736463408
+0.51614970366111 0.2317201008987959 0.5161497036611101 0.2317201008987959 0.08064840441337601
+0.5100964112579828 0.23303449714953617 0.5100964112579828 0.23303449714953617 0.10441545448417032
+0.5134324933687932 0.23423709781281657 0.5134324933687932 0.23423709781281657 0.09196442664377841
+0.5041037613521905 0.2344895721702558 0.5041037613521905 0.2344895721702558 0.12852931860175307
+0.5015312592117458 0.23709008425650294 0.5015312592117458 0.23709008425650294 0.13963640842039696
+0.5280977519264161 0.22577621585598565 0.5280977519264161 0.22577621585598565 0.045509735500353005
+0.5315433729592433 0.22711603214076034 0.5315433729592433 0.22711603214076034 0.0471983786226815
+0.5251628799877183 0.2281901970018556 0.5251628799877183 0.2281901970018556 0.05125444782700277
+0.5222820609540728 0.23059345841539267 0.5222820609540727 0.23059345841539267 0.059688943661342676
+0.5349257559551126 0.22857764372382408 0.5349257559551126 0.22857764372382408 0.05487269764285705
+0.53798835845111 0.22623288042602904 0.53798835845111 0.22623288042602904 0.062351334302594534
+0.5410704464803592 0.2240362457619003 0.5410704464803592 0.2240362457619003 0.07235335606362192
+0.5441803542805549 0.22197000872630712 0.5441803542805549 0.2219700087263071 0.08402120555493153
+0.5535770407904672 0.21585805306947342 0.5535770407904672 0.2158580530694734 0.12311203681272466
+0.5473032817191813 0.219936705960075 0.5473032817191813 0.219936705960075 0.09662695850961828
+0.5504364226042131 0.21790347287926848 0.5504364226042132 0.21790347287926845 0.10975033431911817
+0.5567252480029727 0.21378468892784705 0.5567252480029729 0.21378468892784705 0.13651692584188024
+0.5699524799839865 0.20621080927118524 0.5699524799839865 0.2062108092711852 0.19155925916732683
+0.5662870278937802 0.2076005362334291 0.5662870278937802 0.20760053623342908 0.17621405955474892
+0.563053634507541 0.20957509532284302 0.5630536345075409 0.20957509532284302 0.1629839390418861
+0.5598792449317999 0.21168567911877004 0.5598792449317999 0.21168567911877004 0.1498174995417638
+0.5713457870296677 0.20897803279020935 0.5713457870296677 0.20897803279020938 0.2004278078895622
+0.5735897284284683 0.20718128103019884 0.5735897284284683 0.20718128103019887 0.2087100808210762
+0.5768800859400928 0.20607080789835297 0.5768800859400928 0.206070807898353 0.22201682862294989
+0.5803741874842661 0.20519529557316069 0.5803741874842662 0.20519529557316066 0.23607171343831826
+0.5835735940817086 0.20394856396741695 0.5835735940817086 0.20394856396741698 0.24802308726095545
+0.5861669158940156 0.20238137276872936 0.5861669158940156 0.20238137276872936 0.25654379231685964
+0.5892582813490258 0.20257531809958182 0.5892582813490258 0.20257531809958182 0.2693231334161041
+0.5924542886873576 0.20252698763542845 0.5924542886873576 0.20252698763542845 0.28172378066035547
+0.5954914845843855 0.20042118062890207 0.5954914845843854 0.20042118062890205 0.2902077174350686
+0.6024329852938343 0.19632855257669507 0.6024329852938343 0.1963285525766951 0.30821958543610656
+0.6003172650159148 0.1996105923697668 0.6003172650159146 0.19961059236976683 0.30640511810709165
+0.6401673640167211 0.15595763157777132 0.6401673640167211 0.15595763157777132 0.3411161069432242
+0.6338912133891058 0.15934801487294026 0.6338912133891058 0.15934801487294026 0.33055548640275934
+0.638075313807516 0.15934801487294026 0.638075313807516 0.15934801487294026 0.3411808349993304
+0.6317991631799007 0.1627383981681092 0.6317991631799007 0.1627383981681092 0.33078679981898435
+0.6297071129706956 0.16612878146327814 0.6297071129706956 0.16612878146327814 0.33125417487419645
+0.6276150627614904 0.16951916475844708 0.6276150627614904 0.16951916475844708 0.3319200509081672
+0.6213387090079856 0.17290914787587983 0.6213387090079855 0.17290914787587983 0.3213943921077493
+0.6192460003249574 0.1762978131898457 0.6192460003249574 0.1762978131898457 0.32211758349009606
+0.6171508390914091 0.17968092046884132 0.6171508390914092 0.17968092046884132 0.32279195221561735
+0.6150510903737696 0.18305262531158673 0.6150510903737696 0.18305262531158673 0.32331992383385305
+0.6129464071744978 0.18640946596664934 0.6129464071744978 0.18640946596664934 0.3236149627506306
+0.6108369751870284 0.18975308976550154 0.6108369751870284 0.18975308976550154 0.3236071097166949
+0.6087296085653929 0.1930979588687469 0.6087296085653929 0.1930979588687469 0.32327999168590593
+0.6066349625241858 0.1964123003628748 0.6066349625241858 0.1964123003628748 0.32256986057068554
+0.6255227362657483 0.1729093160244597 0.6255227362657482 0.1729093160244597 0.3327321216810631
+0.6506276150627467 0.1457864816922645 0.6506276150627467 0.1457864816922645 0.35191539215697754
+0.6548117154811569 0.1457864816922645 0.6548117154811569 0.1457864816922645 0.361090135110164
+0.6485355648535416 0.14917686498743343 0.6485355648535416 0.14917686498743343 0.3515505146539663
+0.6464435146443365 0.15256724828260237 0.6464435146443365 0.15256724828260237 0.3513301731944713
+0.6443514644351314 0.15595763157777132 0.6443514644351315 0.15595763157777132 0.3512923930330909
+0.675732217573208 0.11866341533091296 0.675732217573208 0.11866341533091296 0.3655008831774178
+0.6736401673640029 0.1220537986260819 0.6736401673640029 0.1220537986260819 0.3665680959076099
+0.6715481171547978 0.12544418192125084 0.6715481171547978 0.12544418192125084 0.36745852698910014
+0.6694560669455927 0.12883456521641978 0.6694560669455926 0.12883456521641978 0.36817245711268104
+0.6673640167363876 0.13222494851158872 0.6673640167363876 0.13222494851158872 0.368720167958809
+0.6652719665271825 0.13561533180675767 0.6652719665271825 0.13561533180675767 0.36912165584401796
+0.6631799163179773 0.1390057151019266 0.6631799163179773 0.1390057151019266 0.36940577072391306
+0.6610878661087722 0.14239609839709555 0.6610878661087723 0.14239609839709555 0.36960880295687115
+0.6589958158995671 0.1457864816922645 0.6589958158995671 0.1457864816922645 0.36977256698913896
+0.6820083682008233 0.11527303203574402 0.6820083682008233 0.11527303203574402 0.3688044714180389
+0.6799163179916182 0.11866341533091296 0.6799163179916182 0.11866341533091296 0.3703739076430453
+0.6882845188284387 0.11188264874057507 0.6882845188284387 0.11188264874057507 0.37104146624348977
+0.6861924686192336 0.11527303203574402 0.6861924686192334 0.11527303203574402 0.3729126708702902
+0.694560669456054 0.10849226544540613 0.6945606694560541 0.10849226544540613 0.3727318893943799
+0.6924686192468489 0.11188264874057507 0.6924686192468489 0.11188264874057507 0.37463512993772335
+0.7008368200836692 0.10510188215023719 0.7008368200836692 0.10510188215023719 0.3744898630046907
+0.6987447698744642 0.10849226544540613 0.6987447698744642 0.10849226544540613 0.3761181189685216
+0.7071129707112846 0.10171149885506825 0.7071129707112846 0.10171149885506825 0.3769463691391131
+0.7050209205020793 0.10510188215023719 0.7050209205020793 0.10510188215023719 0.37800025037633683
+0.7154811715481051 0.09493073226473037 0.7154811715481051 0.09493073226473037 0.3808540739057164
+0.7133891213389 0.09832111555989931 0.7133891213389 0.09832111555989931 0.3806535127760224
+0.711297071129695 0.10171149885506825 0.711297071129695 0.10171149885506825 0.38089340062984883
+0.7217573221757204 0.09154034896956142 0.7217573221757204 0.09154034896956142 0.387104753913607
+0.7196652719665153 0.09493073226473037 0.7196652719665152 0.09493073226473037 0.38598718563849804
+0.7280334728033357 0.08814996567439248 0.7280334728033359 0.08814996567439248 0.3950164567916093
+0.7259414225941306 0.09154034896956142 0.7259414225941306 0.09154034896956142 0.39307133720854676
+0.7343096234309511 0.08475958237922354 0.7343096234309511 0.08475958237922354 0.404288679750527
+0.732217573221746 0.08814996567439248 0.732217573221746 0.08814996567439248 0.40174476255835484
+0.7405857740585664 0.0813691990840546 0.7405857740585664 0.0813691990840546 0.4143851011892358
+0.7384937238493613 0.08475958237922354 0.7384937238493613 0.08475958237922354 0.41157913191900786
+0.7468619246861817 0.07797881578888566 0.7468619246861817 0.07797881578888566 0.42461003273750114
+0.7447698744769766 0.0813691990840546 0.7447698744769767 0.0813691990840546 0.4219408557190624
+0.7531380753137971 0.07458843249371672 0.753138075313797 0.07458843249371672 0.4341989345825861
+0.751046025104592 0.07797881578888566 0.751046025104592 0.07797881578888566 0.4320781918384659
+0.7594142259414124 0.07119804919854777 0.7594142259414124 0.07119804919854777 0.4424052763981992
+0.7573221757322073 0.07458843249371672 0.7573221757322073 0.07458843249371672 0.4412132650363369
+0.7677824267782328 0.06441728260820989 0.7677824267782328 0.06441728260820989 0.44753910374392797
+0.7656903765690277 0.06780766590337883 0.7656903765690277 0.06780766590337883 0.4485730023357077
+0.7635983263598226 0.07119804919854777 0.7635983263598226 0.07119804919854777 0.4486241447260125
+0.7740585774058482 0.06102689931304095 0.7740585774058482 0.06102689931304095 0.4496270594422098
+0.771966527196643 0.06441728260820989 0.771966527196643 0.06441728260820989 0.45219057954072656
+0.7803347280334635 0.05763651601787201 0.7803347280334635 0.05763651601787201 0.4487745904102555
+0.7782426778242584 0.06102689931304095 0.7782426778242585 0.06102689931304095 0.452926828557934
+0.7866108786610788 0.054246132722703067 0.7866108786610787 0.054246132722703067 0.4449572159001624
+0.7845188284518737 0.05763651601787201 0.7845188284518737 0.05763651601787201 0.4506504607656709
+0.7928870292886941 0.050855749427534125 0.7928870292886941 0.050855749427534125 0.43834973869501165
+0.790794979079489 0.054246132722703067 0.790794979079489 0.054246132722703067 0.4454354003387783
+0.7991631799163095 0.04746536613236518 0.7991631799163095 0.04746536613236518 0.42931274948367776
+0.7970711297071044 0.050855749427534125 0.7970711297071044 0.050855749427534125 0.43755341447348156
+0.8054393305439248 0.04407498283719624 0.8054393305439248 0.04407498283719624 0.4183677501427992
+0.8033472803347197 0.04746536613236518 0.8033472803347196 0.04746536613236518 0.4274548497166877
+0.8117154811715401 0.0406845995420273 0.8117154811715402 0.0406845995420273 0.40616104868017494
+0.809623430962335 0.04407498283719624 0.809623430962335 0.04407498283719624 0.4157376662206458
+0.8179916317991555 0.03729421624685836 0.8179916317991555 0.03729421624685836 0.3934166582441545
+0.8158995815899504 0.0406845995420273 0.8158995815899504 0.0406845995420273 0.4031047204198192
+0.8242677824267708 0.03390383295168942 0.8242677824267709 0.03390383295168942 0.3808793838887295
+0.8221757322175657 0.03729421624685836 0.8221757322175657 0.03729421624685836 0.3903097232594884
+0.8326359832635912 0.027123066361351533 0.8326359832635912 0.027123066361351533 0.36090357451596455
+0.8305439330543861 0.030513449656520475 0.8305439330543861 0.030513449656520475 0.3692514911333861
+0.828451882845181 0.03390383295168942 0.8284518828451811 0.03390383295168942 0.3780939645122587
+0.8389121338912066 0.02373268306618259 0.8389121338912066 0.02373268306618259 0.35177990082405053
+0.8368200836820014 0.027123066361351533 0.8368200836820013 0.027123066361351533 0.3591297840934764
+0.8451882845188219 0.02034229977101365 0.845188284518822 0.02034229977101365 0.3447507436729626
+0.8430962343096168 0.02373268306618259 0.8430962343096168 0.02373268306618259 0.3509534678132243
+0.8514644351464372 0.01695191647584471 0.8514644351464372 0.01695191647584471 0.33999383905822994
+0.8493723849372321 0.02034229977101365 0.8493723849372321 0.02034229977101365 0.3449744212276275
+0.8577405857740525 0.013561533180675767 0.8577405857740527 0.013561533180675767 0.3375200228452248
+0.8556485355648474 0.01695191647584471 0.8556485355648474 0.01695191647584471 0.3412579309712205
+0.8640167364016679 0.010171149885506825 0.8640167364016679 0.010171149885506825 0.33721105953433955
+0.8619246861924628 0.013561533180675767 0.8619246861924629 0.013561533180675767 0.3397133368864315
+0.8702928870292832 0.006780766590337883 0.8702928870292831 0.006780766590337883 0.33886765006923203
+0.8682008368200781 0.010171149885506825 0.8682008368200781 0.010171149885506825 0.34014401161147334
+0.8744769874476934 0.006780766590337883 0.8744769874476933 0.006780766590337883 0.34230004607285314
+0.006780766590336281 0.8786610878661087 0.006780766590336281 0.8786610878661086 0.08657410901499436
+0.006780766590331407 0.8828451882845286 0.006780766590331407 0.8828451882845286 0.08799477448879732
+0.010171149885506117 0.8723849372384916 0.010171149885506117 0.8723849372384916 0.08485414692364085
+0.010171149885504523 0.8765690376569047 0.010171149885504523 0.8765690376569047 0.08632750409937172
+0.013561533180675399 0.8661087866108756 0.0135615331806754 0.8661087866108756 0.08327171480795674
+0.013561533180674865 0.8702928870292866 0.013561533180674865 0.8702928870292866 0.08468999773331896
+0.016951916475844264 0.8598326359832607 0.016951916475844264 0.8598326359832607 0.08194794409270678
+0.01695191647584426 0.8640167364016706 0.01695191647584426 0.8640167364016706 0.08318456930066603
+0.02034229977101312 0.8535564853556457 0.02034229977101312 0.8535564853556457 0.08103906071548107
+0.02034229977101312 0.8577405857740557 0.02034229977101312 0.8577405857740557 0.0819523174398916
+0.02373268306618197 0.8472803347280307 0.02373268306618197 0.8472803347280307 0.08072883824138204
+0.02373268306618197 0.8514644351464407 0.02373268306618197 0.8514644351464407 0.08117213726620182
+0.027123066361350822 0.8410041841004157 0.027123066361350822 0.8410041841004157 0.08120655707600487
+0.027123066361350822 0.8451882845188257 0.027123066361350822 0.8451882845188257 0.0810461410434493
+0.030513449656519673 0.8347280334728007 0.030513449656519673 0.8347280334728007 0.08263214465371312
+0.030513449656519673 0.8389121338912107 0.030513449656519673 0.8389121338912107 0.08176977982869814
+0.033903832951688535 0.8326359832635957 0.033903832951688535 0.8326359832635957 0.08349127382161194
+0.03729421624685738 0.8263598326359807 0.03729421624685738 0.8263598326359807 0.08627253485246612
+0.03729421624685738 0.8305439330543907 0.03729421624685738 0.8305439330543907 0.08438831007097197
+0.040684599542026224 0.8200836820083657 0.040684599542026224 0.8200836820083657 0.09006643557290223
+0.040684599542026224 0.8242677824267757 0.040684599542026224 0.8242677824267757 0.08748018380736866
+0.0440749828371951 0.8138075313807507 0.0440749828371951 0.8138075313807507 0.09471867803203372
+0.0440749828371951 0.8179916317991607 0.0440749828371951 0.8179916317991607 0.09154506377448933
+0.04746536613236394 0.8075313807531357 0.04746536613236394 0.8075313807531357 0.09999081240230735
+0.04746536613236394 0.8117154811715457 0.04746536613236394 0.8117154811715457 0.09638544633322345
+0.05085574942753279 0.8012552301255207 0.05085574942753279 0.8012552301255207 0.10559337726799554
+0.05085574942753279 0.8054393305439307 0.05085574942753279 0.8054393305439307 0.10173066368923454
+0.05424613272270165 0.7949790794979057 0.054246132722701644 0.7949790794979057 0.11121868388719679
+0.05424613272270165 0.7991631799163157 0.054246132722701644 0.7991631799163157 0.10727322013197338
+0.05763651601787049 0.7887029288702907 0.05763651601787049 0.7887029288702907 0.11656784541534228
+0.05763651601787049 0.7928870292887007 0.05763651601787049 0.7928870292887007 0.11270115906534305
+0.06102689931303934 0.7824267782426757 0.06102689931303934 0.7824267782426757 0.12137126502537189
+0.06102689931303934 0.7866108786610857 0.06102689931303934 0.7866108786610857 0.11772309837615169
+0.06441728260820821 0.7761506276150607 0.06441728260820821 0.7761506276150607 0.1254040086685838
+0.06441728260820821 0.7803347280334707 0.06441728260820821 0.7803347280334707 0.12208656703898103
+0.06780766590337706 0.7740585774058557 0.06780766590337706 0.7740585774058557 0.12559163835389023
+0.0711980491985459 0.7677824267782407 0.0711980491985459 0.7677824267782407 0.12810169153618975
+0.0711980491985459 0.7719665271966507 0.0711980491985459 0.7719665271966507 0.1254044445621161
+0.07458843249371476 0.7615062761506257 0.07458843249371476 0.7615062761506257 0.12955248041311954
+0.07458843249371476 0.7656903765690357 0.07458843249371476 0.7656903765690357 0.12732206432593582
+0.07797881578888362 0.7552301255230107 0.07797881578888362 0.7552301255230107 0.1299600054432302
+0.07797881578888362 0.7594142259414207 0.07797881578888362 0.7594142259414207 0.12818417086486997
+0.08136919908405248 0.7489539748953957 0.08136919908405248 0.7489539748953957 0.1294270091421961
+0.08136919908405248 0.7531380753138057 0.08136919908405248 0.7531380753138057 0.12805118688434527
+0.08475958237922132 0.7426778242677807 0.08475958237922132 0.7426778242677807 0.1281470749560121
+0.08475958237922132 0.7468619246861907 0.08475958237922132 0.7468619246861907 0.12707317406790733
+0.08814996567439015 0.7364016736401657 0.08814996567439015 0.7364016736401657 0.1264040866520283
+0.08814996567439015 0.7405857740585757 0.08814996567439015 0.7405857740585757 0.12549173107070924
+0.09154034896955902 0.7301255230125507 0.09154034896955902 0.7301255230125507 0.12456314867026097
+0.09154034896955902 0.7343096234309607 0.09154034896955902 0.7343096234309607 0.12363547614026903
+0.09493073226472787 0.7238493723849357 0.09493073226472787 0.7238493723849357 0.12304754368046496
+0.09493073226472787 0.7280334728033457 0.09493073226472787 0.7280334728033457 0.12190426115912202
+0.09832111555989675 0.7175732217573207 0.09832111555989675 0.7175732217573207 0.12229670421008203
+0.09832111555989675 0.7217573221757307 0.09832111555989675 0.7217573221757307 0.1207363998019796
+0.10171149885506564 0.7154811715481157 0.10171149885506563 0.7154811715481157 0.12055578018132258
+0.10510188215023453 0.7092050209205008 0.10510188215023453 0.7092050209205008 0.12170432219705966
+0.10510188215023453 0.7133891213389107 0.10510188215023453 0.7133891213389107 0.11922048997521874
+0.10849226544540343 0.7029288702928858 0.10849226544540343 0.7029288702928858 0.12437784279132051
+0.10849226544540343 0.7071129707112958 0.10849226544540343 0.7071129707112958 0.12117094805546547
+0.11188264874057234 0.6966527196652708 0.11188264874057234 0.6966527196652708 0.12859012926563176
+0.11188264874057234 0.7008368200836808 0.11188264874057234 0.7008368200836808 0.1246734372302885
+0.11527303203574124 0.6903765690376558 0.11527303203574124 0.6903765690376558 0.13418068484338355
+0.11527303203574124 0.6945606694560658 0.11527303203574124 0.6945606694560658 0.1296433347851789
+0.11866341533091013 0.6841004184100408 0.11866341533091011 0.6841004184100408 0.14086044012841034
+0.11866341533091013 0.6882845188284508 0.11866341533091011 0.6882845188284508 0.13584356571526068
+0.12205379862607901 0.6778242677824258 0.12205379862607901 0.6778242677824258 0.14827410716160025
+0.12205379862607901 0.6820083682008358 0.12205379862607901 0.6820083682008358 0.1429426463710327
+0.12544418192124793 0.6757322175732208 0.12544418192124793 0.6757322175732208 0.15057670211339833
+0.1288345652164168 0.6736401673640158 0.1288345652164168 0.6736401673640158 0.15292624545660538
+0.13222494851158573 0.6715481171548108 0.13222494851158573 0.6715481171548108 0.15526536226155527
+0.1356153318067546 0.6694560669456058 0.13561533180675459 0.6694560669456058 0.1575431333879612
+0.1390057151019235 0.6673640167364008 0.1390057151019235 0.6673640167364008 0.15971649793985712
+0.1423960983970924 0.6652719665271958 0.1423960983970924 0.6652719665271958 0.16175112497277014
+0.1457864816922613 0.6589958158995808 0.1457864816922613 0.6589958158995808 0.16869603079542636
+0.1491768649874302 0.6569037656903758 0.1491768649874302 0.6569037656903758 0.17028022055897266
+0.1593480148729369 0.6422594142259408 0.1593480148729369 0.6422594142259408 0.18313401854187494
+0.1661287814632747 0.6338912133891208 0.1661287814632747 0.6338912133891208 0.18908476597957627
+0.16951916475844359 0.6317991631799158 0.16951916475844356 0.6317991631799158 0.18976329729508176
+0.17629987412591733 0.6234310834672975 0.17629987412591733 0.6234310834672975 0.19561919571720846
+0.1796902317176056 0.6213390365936452 0.1796902317176056 0.6213390365936452 0.19641439262625096
+0.18308020329408067 0.6192458982364725 0.18308020329408067 0.6192458982364725 0.1972716539481021
+0.18645693350138157 0.6129538012783909 0.18645693350138157 0.6129538012783909 0.2030758685808922
+0.18982917252017859 0.6108466351605966 0.18982917252017859 0.6108466351605966 0.2042353863042031
+0.19317642623469922 0.6087499429426242 0.19317642623469922 0.6087499429426241 0.2054762595298479
+0.1864668792190645 0.6171474524449521 0.1864668792190645 0.617147452444952 0.1982070936418356
+0.1729095420770259 0.6297071729402421 0.1729095420770259 0.6297071729402423 0.19043004981629294
+0.17629977052310938 0.6276153469980396 0.17629977052310938 0.6276153469980396 0.19110754774894764
+0.16273839816810579 0.6401673640167358 0.16273839816810579 0.6401673640167358 0.18394312889881936
+0.1661287814632747 0.6380753138075308 0.1661287814632747 0.6380753138075308 0.18466776443806932
+0.1525672482825991 0.6506276150627608 0.15256724828259907 0.6506276150627608 0.17647063170374708
+0.1525672482825991 0.6548117154811708 0.15256724828259907 0.6548117154811708 0.17168169248485157
+0.15595763157776799 0.6485355648535558 0.15595763157776799 0.6485355648535558 0.17760451758475335
+0.1593480148729369 0.6464435146443508 0.1593480148729369 0.6464435146443508 0.1785889447336576
+0.1457864816922613 0.6631799163179908 0.1457864816922613 0.6631799163179908 0.16362182286133917
+0.2059328771171988 0.5862411439701178 0.2059328771171988 0.5862411439701178 0.23118730052858757
+0.20569444234813342 0.5896966770985096 0.20569444234813342 0.5896966770985096 0.22637410799849741
+0.20539745113936755 0.5932886396811392 0.20539745113936755 0.5932886396811393 0.22143542662083734
+0.2090046011880636 0.5844278514498108 0.2090046011880636 0.5844278514498108 0.2330342313682439
+0.2136876254931093 0.5721858209740041 0.2136876254931093 0.5721858209740041 0.2502608336735492
+0.2130427370866756 0.5755924854329206 0.21304273708667562 0.5755924854329207 0.24524660052253303
+0.21225448598248334 0.5790466454020256 0.21225448598248334 0.5790466454020256 0.2401883118617257
+0.21210004614204184 0.5826074908631549 0.21210004614204184 0.5826074908631549 0.23493755724463908
+0.19624921300923756 0.6026577641645713 0.19624921300923756 0.6026577641645713 0.21197460361639564
+0.19923803002864976 0.6008087087096086 0.1992380300286498 0.6008087087096086 0.2133108217235977
+0.20222640185588417 0.5988789967713163 0.20222640185588417 0.5988789967713163 0.21483232545353734
+0.2053013407277806 0.597118853602097 0.2053013407277806 0.597118853602097 0.21616520429206512
+0.19646701172999156 0.6067225366572352 0.19646701172999156 0.6067225366572352 0.2067305599910044
+0.3754924369932868 0.34785886628544804 0.3754924369932868 0.34785886628544804 0.2843757495154207
+0.3691363826140314 0.34748064680253415 0.3691363826140314 0.34748064680253415 0.26727990509716987
+0.3659135692349978 0.3491527749364864 0.3659135692349978 0.3491527749364864 0.25828231923075423
+0.37237513528314814 0.3495325157788775 0.37237513528314814 0.3495325157788775 0.2759022191900264
+0.36272111374998334 0.35087348008065333 0.36272111374998334 0.3508734800806534 0.24925115411263984
+0.35639531227497534 0.3516051500365537 0.3563953122749753 0.3516051500365536 0.23161504989771567
+0.3533528265146062 0.3536082029764938 0.3533528265146062 0.3536082029764938 0.2227732368465035
+0.3597174376187121 0.35296419170922844 0.35971743761871217 0.3529641917092285 0.24051628849436105
+0.3502116486735762 0.3553990968494139 0.3502116486735762 0.3553990968494139 0.2137017913338959
+0.3409429739501171 0.359721018810154 0.3409429739501171 0.359721018810154 0.18765084619189623
+0.34705047590122723 0.3570624175480144 0.34705047590122723 0.3570624175480144 0.20466044207419423
+0.3440972394183047 0.3582934129321629 0.3440972394183048 0.3582934129321629 0.19640345534381798
+0.3379452283693601 0.36160452044869146 0.3379452283693601 0.36160452044869146 0.17944081354672511
+0.33493625512526287 0.3633593122748085 0.33493625512526287 0.3633593122748085 0.17152368952396146
+0.3319318254777043 0.36518414182387376 0.33193182547770433 0.36518414182387376 0.16395844448174832
+0.32888205456101577 0.3670827839473174 0.32888205456101577 0.3670827839473174 0.1567522797835368
+0.3258117614034024 0.36900968381446564 0.3258117614034024 0.36900968381446564 0.15012122880139664
+0.32375774023184034 0.37125998653729 0.32375774023184034 0.37125998653729 0.1458176447098427
+0.32033765868013525 0.3721996298356278 0.32033765868013525 0.3721996298356278 0.14026213355290637
+0.31727267923558133 0.3748458651855795 0.31727267923558133 0.3748458651855795 0.13601436033859263
+0.3142673661560834 0.37725155557847456 0.31426736615608336 0.37725155557847456 0.133093610099826
+0.3112572903800603 0.379560453428008 0.3112572903800603 0.379560453428008 0.13144146893014844
+0.3083758861719267 0.3816337476278484 0.30837588617192674 0.3816337476278484 0.13106473484925432
+0.305390858140132 0.38364284387376285 0.30539085814013195 0.38364284387376285 0.13173166880681605
+0.3027490492092091 0.3861632208208585 0.3027490492092091 0.3861632208208585 0.1340577623175219
+0.300031315193473 0.38866792402067113 0.300031315193473 0.38866792402067113 0.1374751994549743
+0.2973153369297555 0.39116819615430515 0.2973153369297555 0.39116819615430515 0.14190404717599048
+0.2946054308732327 0.3936794425973801 0.2946054308732327 0.39367944259738014 0.147236486975066
+0.29183987245940585 0.3962150738736452 0.29183987245940585 0.3962150738736452 0.15338544631516862
+0.28910735686277883 0.39886430043001847 0.28910735686277883 0.39886430043001847 0.16033905824046912
+0.28643059673366345 0.4016161847328732 0.2864305967336635 0.4016161847328732 0.16793787084641057
+0.283930387353376 0.40442338962929447 0.283930387353376 0.4044233896292945 0.17584836654108485
+0.28145727323925973 0.4071499728346707 0.28145727323925973 0.40714997283467064 0.18382448283592126
+0.27888527747682906 0.4098876025292954 0.27888527747682906 0.4098876025292954 0.19202504975794157
+0.276239154008831 0.41269723267250497 0.276239154008831 0.41269723267250497 0.20047180837250642
+0.2729741520571119 0.4156798295545692 0.2729741520571119 0.4156798295545693 0.20969541743102926
+0.2711287666198545 0.41907746821032693 0.2711287666198545 0.41907746821032693 0.21888113289624322
+0.2690791889905057 0.4220552407745021 0.2690791889905057 0.4220552407745021 0.22708180059921654
+0.2669831724821155 0.4249203828747348 0.2669831724821155 0.4249203828747348 0.23484894033849768
+0.264923195788011 0.42768268424744416 0.264923195788011 0.4276826842474442 0.24213039233522335
+0.26298342754590864 0.43028311635063565 0.26298342754590864 0.4302831163506356 0.24875338776195677
+0.26103841171796915 0.4329732365429667 0.26103841171796915 0.43297323654296666 0.2553057293139384
+0.2595196041623174 0.43575480763202445 0.2595196041623174 0.4357548076320245 0.26187409346655616
+0.25782878004628973 0.4386059438607868 0.25782878004628973 0.4386059438607868 0.2682922667969141
+0.2559889040969116 0.4415224864867721 0.2559889040969116 0.4415224864867721 0.2745197457341462
+0.25418381056055445 0.4444581921295894 0.25418381056055445 0.4444581921295894 0.28044307460528645
+0.252437134360592 0.4473922727112407 0.252437134360592 0.44739227271124077 0.28600913492320235
+0.2507799986103228 0.45033561801914623 0.2507799986103228 0.4503356180191462 0.2912507536074976
+0.24919567805279028 0.45330239039110104 0.24919567805279028 0.45330239039110104 0.2962019412690204
+0.24762767323485682 0.45632295606294365 0.24762767323485682 0.45632295606294365 0.3008778370191434
+0.24607093862612983 0.4594025081739433 0.2460709386261298 0.4594025081739433 0.305249232604421
+0.24453260046303396 0.46250391001808444 0.24453260046303396 0.4625039100180844 0.30924237553678147
+0.24301570269253417 0.46562047286616887 0.24301570269253417 0.46562047286616887 0.3128411834077925
+0.24154683649783423 0.46876518793281163 0.24154683649783423 0.4687651879328117 0.31607752113185533
+0.24013969884080696 0.4719278273093233 0.24013969884080696 0.4719278273093233 0.31894382602790405
+0.2387770105793264 0.4751189758278249 0.2387770105793264 0.4751189758278249 0.32143681671431024
+0.23744261955195634 0.4783492589484313 0.23744261955195634 0.4783492589484313 0.32354439166196464
+0.2361497947305898 0.48160839907235925 0.2361497947305898 0.48160839907235925 0.32525742672664676
+0.2348888819562943 0.4849028507083019 0.2348888819562943 0.4849028507083019 0.3265687867045386
+0.23365856228683926 0.4882282645738769 0.23365856228683926 0.4882282645738769 0.32747090632135883
+0.23245907754123596 0.491574761410287 0.232459077541236 0.49157476141028694 0.3279585466893629
+0.23129714018867964 0.4949339195931379 0.23129714018867964 0.494933919593138 0.3280366339614645
+0.23017072292946056 0.4983244610141335 0.23017072292946053 0.4983244610141336 0.327708828620438
+0.2291041540542149 0.5017528652867455 0.2291041540542149 0.5017528652867455 0.32698521871742564
+0.22812018692050426 0.5052230000468074 0.22812018692050426 0.5052230000468074 0.3258802361220106
+0.22717691882198274 0.5087203150862674 0.22717691882198274 0.5087203150862675 0.32437375326663337
+0.22623337372383578 0.5122197523747742 0.22623337372383578 0.5122197523747741 0.3224603089645069
+0.22527561636717505 0.5157206704995596 0.22527561636717505 0.5157206704995597 0.3201534532683885
+0.22429898353730088 0.5192503000619961 0.22429898353730085 0.5192503000619961 0.31745937020529946
+0.22334919133456138 0.5228214514542944 0.22334919133456135 0.5228214514542944 0.3144108339272494
+0.22284368229524837 0.526473497399697 0.2228436822952484 0.5264734973996968 0.31108999111052316
+0.22238950001172905 0.5301846055477863 0.22238950001172905 0.5301846055477863 0.30739507718303183
+0.2217565898506524 0.5337640285635403 0.2217565898506524 0.5337640285635404 0.30346968883821585
+0.22103327845581555 0.5373205822548371 0.22103327845581555 0.5373205822548371 0.29927131916923727
+0.22022470114708567 0.5408829012184017 0.22022470114708567 0.5408829012184017 0.29481689188117993
+0.21934949298689 0.5444319429437678 0.21934949298689 0.5444319429437678 0.29017888339239634
+0.21836306329984528 0.5475901636498698 0.21836306329984526 0.5475901636498698 0.2858545504074306
+0.21998222016792945 0.5500119216994102 0.21998222016792948 0.5500119216994102 0.28269119354394895
+0.21993975708119284 0.5527865981167472 0.21993975708119287 0.5527865981167474 0.27884334763120516
+0.2192339603387836 0.5561444175571507 0.2192339603387836 0.5561444175571507 0.2739364945005473
+0.21868293401229894 0.5596556500496409 0.2186829340122989 0.5596556500496409 0.2687451640118048
+0.2181289550320367 0.5632870583612382 0.2181289550320367 0.5632870583612383 0.2632981840110988
+0.21756826360911743 0.5669234776336768 0.21756826360911743 0.5669234776336768 0.2577950939287
+0.21700905949381324 0.5705965901019018 0.21700905949381324 0.5705965901019018 0.2522218670403966
+0.38195052308712363 0.34095594505643523 0.38195052308712363 0.34095594505643523 0.301506513105402
+0.37864941529505125 0.3462450248824539 0.37864941529505125 0.34624502488245396 0.2927736979492345
+0.38185174880130296 0.34470643060789624 0.38185174880130296 0.34470643060789624 0.3010987893854353
+0.3895837586915441 0.3264546257303069 0.3895837586915441 0.3264546257303069 0.3213720509633529
+0.3858019860938674 0.33186884323533294 0.38580198609386734 0.33186884323533294 0.31198906908316054
+0.38901272375344503 0.33023095069947156 0.38901272375344503 0.33023095069947156 0.31969573634253573
+0.38544063339457035 0.33575442525389576 0.38544063339457035 0.33575442525389576 0.3106224148689263
+0.38521692250993383 0.33952078382330514 0.38521692250993383 0.33952078382330514 0.309737396796359
+0.39930128510451324 0.3123107427902803 0.39930128510451324 0.3123107427902803 0.3408770374509657
+0.39424693673694117 0.31893760357688905 0.39424693673694117 0.318937603576889 0.33173282251098507
+0.3984232911479266 0.31553481299471925 0.3984232911479266 0.31553481299471925 0.33976643169809734
+0.3970149232725161 0.3179807978648935 0.3970149232725161 0.3179807978648935 0.33718275925652796
+0.3936969950295148 0.322083425180548 0.3936969950295148 0.322083425180548 0.3305745557424457
+0.3931265879027023 0.32550592775911225 0.3931265879027022 0.3255059277591123 0.3292321283922657
+0.4101974249032807 0.29885571001017286 0.4101974249032807 0.2988557100101729 0.351589864994509
+0.40470386685808135 0.3053983465531708 0.40470386685808135 0.30539834655317083 0.34773351833952204
+0.40916362697366226 0.3019552618160315 0.40916362697366226 0.3019552618160315 0.35228030662946935
+0.4081966769849904 0.30523702038373207 0.40819667698499046 0.30523702038373207 0.35272502665535915
+0.4037278587687403 0.3085673192229791 0.40372785876874034 0.30856731922297914 0.3474548138871198
+0.4027456887923984 0.3118104238210081 0.4027456887923984 0.31181042382100804 0.3468451430364818
+0.4232372500632775 0.28567693448102344 0.4232372500632775 0.28567693448102344 0.3496162187149368
+0.4166335767042288 0.29205549381655904 0.4166335767042288 0.2920554938165591 0.35248662695771266
+0.42174464646419685 0.2887931946545507 0.4217446464641968 0.2887931946545507 0.35243280316597897
+0.4203085959503768 0.29185132244935624 0.4203085959503768 0.29185132244935624 0.3548197543048734
+0.4152805523195202 0.2952497677643363 0.41528055231952016 0.29524976776433626 0.3541908583299629
+0.4139765151045062 0.2984779066510223 0.4139765151045062 0.2984779066510223 0.35552934693973176
+0.4448970983678087 0.26807507816907844 0.4448970983678087 0.26807507816907844 0.3188648350608452
+0.4428690454323505 0.27120537760320496 0.44286904543235045 0.2712053776032049 0.32506995013538126
+0.44087432060304355 0.27436670108033223 0.4408743206030436 0.2743667010803322 0.3310854830003615
+0.4389844136434131 0.2771424592441788 0.4389844136434132 0.27714245924417874 0.3362510137247883
+0.4365895254123406 0.2792204731877479 0.4365895254123406 0.2792204731877479 0.34037651851994327
+0.42850664987790815 0.2825045344556862 0.42850664987790815 0.2825045344556862 0.34677849468743355
+0.4322294618788624 0.28243875891031495 0.4322294618788624 0.28243875891031495 0.34628252594680303
+0.43598689980749483 0.2821994227201386 0.4359868998074949 0.2821994227201386 0.3446790930324976
+0.4269398942955575 0.2856334127791867 0.4269398942955575 0.2856334127791867 0.35044652771459023
+0.45259470798538776 0.26201428943144206 0.45259470798538776 0.26201428943144206 0.30084999242684946
+0.4506220432137317 0.26517074188345996 0.4506220432137317 0.26517074188345996 0.3077322848931015
+0.45624708374204165 0.26218249862891124 0.45624708374204165 0.26218249862891124 0.29476432054717966
+0.4486125512473642 0.26833274722512523 0.44861255124736416 0.2683327472251253 0.3146026739349738
+0.47948058243302155 0.24738751813790114 0.47948058243302155 0.24738751813790114 0.22297309030083953
+0.4770930936667313 0.24982959855849 0.4770930936667313 0.24982959855849 0.23201482825201256
+0.47470121614435 0.2522305627170542 0.47470121614435 0.2522305627170542 0.24094316082180112
+0.47229639447330213 0.2545996654846567 0.47229639447330213 0.2545996654846567 0.24978016858842958
+0.469853503556537 0.2569012638716783 0.469853503556537 0.2569012638716783 0.2585391852017627
+0.467280805407639 0.2591932527278611 0.467280805407639 0.2591932527278611 0.2674748297932897
+0.46002124364786867 0.2622193429340778 0.4600212436478687 0.2622193429340778 0.28742521339734656
+0.4641799030669851 0.26171967233558824 0.4641799030669852 0.2617196723355883 0.27779486262873343
+0.49902248885303346 0.23969426129355376 0.4990224888530335 0.23969426129355376 0.1504376321464518
+0.4876029234145689 0.2431426508100918 0.48760292341456885 0.2431426508100918 0.1937814792664274
+0.49659087953388087 0.2423190082161355 0.49659087953388087 0.2423190082161355 0.16089693570107275
+0.49093719642956674 0.24404386737459013 0.49093719642956674 0.24404386737459013 0.18260061198326916
+0.49422767234356596 0.24496829226712438 0.49422767234356596 0.24496829226712438 0.17106868647970289
+0.4852864526284208 0.24587206857473917 0.4852864526284208 0.24587206857473917 0.20328271227389785
+0.48294330177682004 0.24849810337644598 0.48294330177682004 0.24849810337644598 0.2127606881221926
+0.519464127529028 0.23301269292751214 0.519464127529028 0.23301269292751217 0.06961974849152229
+0.5074510169494543 0.23561098767600794 0.5074510169494543 0.23561098767600794 0.11586712462708758
+0.5167264978313375 0.23547423052965352 0.5167264978313374 0.23547423052965352 0.08024467164780978
+0.5107677255611904 0.23676772615804778 0.5107677255611903 0.23676772615804778 0.1033176422569184
+0.5140585826226761 0.23796828233350512 0.5140585826226761 0.23796828233350512 0.09116039372366734
+0.5048627947165105 0.23819247969746377 0.5048627947165105 0.23819247969746374 0.1271090071075913
+0.5023239270518907 0.2407704923344743 0.5023239270518908 0.2407704923344743 0.1381423788731941
+0.5285433786487671 0.22955672434840194 0.5285433786487671 0.22955672434840194 0.04808328102650324
+0.5319001683900436 0.23094994561350998 0.5319001683900436 0.23094994561350998 0.05090574898737544
+0.525618513964626 0.23196218978961977 0.525618513964626 0.23196218978961977 0.052963690517442825
+0.5227692875311144 0.23435611734530357 0.5227692875311144 0.23435611734530357 0.06060362593359553
+0.535213825171397 0.23245038954572697 0.535213825171397 0.23245038954572697 0.05920933068284084
+0.5382232685395995 0.23015408545103208 0.5382232685395995 0.23015408545103208 0.06657733517993719
+0.5412753343005208 0.22793207092244594 0.5412753343005208 0.22793207092244594 0.07633518380858852
+0.5443688423456192 0.2258053029092957 0.5443688423456193 0.2258053029092957 0.08777343283548511
+0.5474857576605636 0.22373618467731746 0.5474857576605636 0.22373618467731746 0.10025092271031001
+0.5569013571670238 0.2175710809708181 0.5569013571670238 0.2175710809708181 0.14016617123975614
+0.5537583072831229 0.21964103626893658 0.5537583072831228 0.21964103626893658 0.12671427987752767
+0.5506184443695474 0.2216875389105648 0.5506184443695474 0.2216875389105648 0.11333439767475938
+0.5600323444891955 0.21547603224718903 0.5600323444891955 0.21547603224718906 0.15347146138806597
+0.5688239838926631 0.20949761834162006 0.5688239838926631 0.20949761834162003 0.18950632096778322
+0.5660437565293007 0.2111798897223668 0.5660437565293007 0.21117988972236681 0.17820161507273077
+0.5631212902689027 0.21332521345958672 0.5631212902689028 0.2133252134595867 0.1663486234887065
+0.5710645963523493 0.21100565392002943 0.5710645963523493 0.21100565392002943 0.20115111082853204
+0.5734177758834934 0.21041486942780832 0.5734177758834934 0.21041486942780832 0.21132911818237357
+0.5763414614714695 0.20932292924231438 0.5763414614714694 0.2093229292423144 0.2232896972099343
+0.5797201064390995 0.2084408682172267 0.5797201064390994 0.2084408682172267 0.2371689110316806
+0.5833220457481867 0.20736194309655798 0.5833220457481866 0.20736194309655795 0.25136803527263624
+0.5869771322768863 0.20567893623985653 0.5869771322768863 0.20567893623985653 0.2644833824453748
+0.5910722900116393 0.20532839123648794 0.5910722900116393 0.2053283912364879 0.2804912385849547
+0.5949055216854262 0.20467093015712778 0.5949055216854262 0.20467093015712784 0.2946291367839932
+0.5987523251883661 0.20317068831711702 0.5987523251883661 0.20317068831711702 0.30662271360636933
+0.6019545500672251 0.20252552131032575 0.6019545500672251 0.20252552131032572 0.3170975002037333
+0.6046297970553377 0.19994314980696393 0.6046297970553377 0.19994314980696393 0.3221537379770449
+0.6422594142259263 0.15934801487294026 0.6422594142259263 0.15934801487294026 0.35146460650379446
+0.6359832635983109 0.1627383981681092 0.6359832635983108 0.1627383981681092 0.3414909697416811
+0.6401673640167211 0.1627383981681092 0.6401673640167211 0.1627383981681092 0.3518616194734101
+0.6338912133891058 0.16612878146327814 0.6338912133891058 0.16612878146327814 0.34203611511386295
+0.6317991631799007 0.16951916475844708 0.6317991631799007 0.16951916475844708 0.3427906937317611
+0.6297068768562815 0.1729094409173251 0.6297068768562815 0.1729094409173251 0.3437141955110621
+0.6234302278328349 0.1762992424575932 0.6234302278328349 0.1762992424575932 0.33362841008246097
+0.6213340837470537 0.1796832002752261 0.6213340837470537 0.1796832002752261 0.33451799393314013
+0.6192350482130193 0.1830584225262004 0.6192350482130192 0.1830584225262004 0.3353220310043686
+0.617132443820246 0.1864197476495982 0.617132443820246 0.1864197476495982 0.33595216332295874
+0.6150243540906922 0.1897658138561454 0.6150243540906922 0.1897658138561454 0.33632619281435244
+0.6129057367685083 0.19310115087181345 0.6129057367685083 0.19310115087181345 0.3363675159442346
+0.6107626001665288 0.1964298400069627 0.6107626001665288 0.1964298400069627 0.3359716995453821
+0.6086475556976482 0.19954859399469094 0.6086475556976482 0.19954859399469094 0.3348745964783166
+0.6276137803753711 0.17629906532718664 0.6276137803753711 0.17629906532718664 0.3447520818336978
+0.6527196652719518 0.14917686498743343 0.6527196652719517 0.14917686498743343 0.36097699399499406
+0.656903765690362 0.14917686498743343 0.656903765690362 0.14917686498743343 0.3699420611013562
+0.6506276150627467 0.15256724828260237 0.6506276150627467 0.15256724828260237 0.36096225167959584
+0.6485355648535416 0.15595763157777132 0.6485355648535416 0.15595763157777132 0.36108752393610305
+0.6464435146443365 0.15934801487294026 0.6464435146443365 0.15934801487294026 0.36138649321062727
+0.6778242677824131 0.1220537986260819 0.6778242677824132 0.1220537986260819 0.3718241219771392
+0.675732217573208 0.12544418192125084 0.675732217573208 0.12544418192125084 0.373132447319207
+0.6736401673640029 0.12883456521641978 0.6736401673640029 0.12883456521641978 0.3742853139256744
+0.6715481171547978 0.13222494851158872 0.6715481171547978 0.13222494851158872 0.37527913256314277
+0.6694560669455927 0.13561533180675767 0.6694560669455926 0.13561533180675767 0.3761205886553951
+0.6673640167363876 0.1390057151019266 0.6673640167363876 0.1390057151019266 0.3768263334553856
+0.6652719665271825 0.14239609839709555 0.6652719665271825 0.14239609839709555 0.37742208157509033
+0.6631799163179773 0.1457864816922645 0.6631799163179773 0.1457864816922645 0.3779411486154079
+0.6610878661087722 0.14917686498743343 0.6610878661087723 0.14917686498743343 0.3784224892437364
+0.6841004184100284 0.11866341533091296 0.6841004184100284 0.11866341533091296 0.37476486951329463
+0.6820083682008233 0.1220537986260819 0.6820083682008233 0.1220537986260819 0.376556614372158
+0.6903765690376438 0.11527303203574402 0.6903765690376438 0.11527303203574402 0.3766498940696739
+0.6882845188284387 0.11866341533091296 0.6882845188284387 0.11866341533091296 0.3787242633903132
+0.6966527196652591 0.11188264874057507 0.6966527196652591 0.11188264874057507 0.377998820878823
+0.694560669456054 0.11527303203574402 0.6945606694560541 0.11527303203574402 0.3800817229955064
+0.7029288702928743 0.10849226544540613 0.7029288702928743 0.10849226544540613 0.3794319464295275
+0.7008368200836692 0.11188264874057507 0.7008368200836692 0.11188264874057507 0.3812075203848882
+0.7092050209204898 0.10510188215023719 0.7092050209204898 0.10510188215023719 0.3815929549833092
+0.7071129707112846 0.10849226544540613 0.7071129707112846 0.10849226544540613 0.38274898240059724
+0.7175732217573102 0.09832111555989931 0.7175732217573102 0.09832111555989931 0.38528216327097914
+0.7154811715481051 0.10171149885506825 0.7154811715481051 0.10171149885506825 0.3850514483506133
+0.7133891213389 0.10510188215023719 0.7133891213389 0.10510188215023719 0.38533314760630283
+0.7238493723849255 0.09493073226473037 0.7238493723849255 0.09493073226473037 0.39143226174176154
+0.7217573221757204 0.09832111555989931 0.7217573221757204 0.09832111555989931 0.3902021680441606
+0.7301255230125409 0.09154034896956142 0.7301255230125409 0.09154034896956142 0.3993318554171956
+0.7280334728033357 0.09493073226473037 0.7280334728033359 0.09493073226473037 0.3971848318984474
+0.7364016736401562 0.08814996567439248 0.7364016736401561 0.08814996567439248 0.4086822912850607
+0.7343096234309511 0.09154034896956142 0.7343096234309511 0.09154034896956142 0.40584685391478104
+0.7426778242677715 0.08475958237922354 0.7426778242677715 0.08475958237922354 0.41893936820281913
+0.7405857740585664 0.08814996567439248 0.7405857740585664 0.08814996567439248 0.4157590294514201
+0.7489539748953868 0.0813691990840546 0.7489539748953868 0.0813691990840546 0.4293910674281874
+0.7468619246861817 0.08475958237922354 0.7468619246861817 0.08475958237922354 0.42627738455459857
+0.7552301255230022 0.07797881578888566 0.7552301255230022 0.07797881578888566 0.4392507448930178
+0.7531380753137971 0.0813691990840546 0.753138075313797 0.0813691990840546 0.43663223142788743
+0.7615062761506175 0.07458843249371672 0.7615062761506176 0.07458843249371672 0.44774713784307263
+0.7594142259414124 0.07797881578888566 0.7594142259414124 0.07797881578888566 0.44602318382832634
+0.7698744769874379 0.06780766590337883 0.7698744769874378 0.06780766590337883 0.45370961341510535
+0.7677824267782328 0.07119804919854777 0.7677824267782328 0.07119804919854777 0.45419977820793084
+0.7656903765690277 0.07458843249371672 0.7656903765690277 0.07458843249371672 0.4537043979907757
+0.7761506276150533 0.06441728260820989 0.7761506276150533 0.06441728260820989 0.4560349981585427
+0.7740585774058482 0.06780766590337883 0.7740585774058482 0.06780766590337883 0.458075496299222
+0.7824267782426686 0.06102689931304095 0.7824267782426686 0.06102689931304095 0.4553604022471896
+0.7803347280334635 0.06441728260820989 0.7803347280334635 0.06441728260820989 0.4590261713352502
+0.7887029288702839 0.05763651601787201 0.7887029288702839 0.05763651601787201 0.45165350075164773
+0.7866108786610788 0.06102689931304095 0.7866108786610787 0.06102689931304095 0.45690970563327077
+0.7949790794978993 0.054246132722703067 0.7949790794978994 0.054246132722703067 0.4450887461267979
+0.7928870292886941 0.05763651601787201 0.7928870292886941 0.05763651601787201 0.45179633119432466
+0.8012552301255146 0.050855749427534125 0.8012552301255146 0.050855749427534125 0.43603409549597455
+0.7991631799163095 0.054246132722703067 0.7991631799163095 0.054246132722703067 0.4439617234110203
+0.8075313807531299 0.04746536613236518 0.8075313807531298 0.04746536613236518 0.4250256227693847
+0.8054393305439248 0.050855749427534125 0.8054393305439248 0.050855749427534125 0.43386756548944566
+0.8138075313807452 0.04407498283719624 0.8138075313807452 0.04407498283719624 0.4127298742535925
+0.8117154811715401 0.04746536613236518 0.8117154811715402 0.04746536613236518 0.42212949616422274
+0.8200836820083606 0.0406845995420273 0.8200836820083605 0.0406845995420273 0.3998938788554898
+0.8179916317991555 0.04407498283719624 0.8179916317991555 0.04407498283719624 0.4094720674271799
+0.8263598326359759 0.03729421624685836 0.8263598326359759 0.03729421624685836 0.38728380601770906
+0.8242677824267708 0.0406845995420273 0.8242677824267709 0.0406845995420273 0.396670869292361
+0.8347280334727963 0.030513449656520475 0.8347280334727963 0.030513449656520475 0.367119039053254
+0.8326359832635912 0.03390383295168942 0.8326359832635912 0.03390383295168942 0.3756158728365408
+0.8305439330543861 0.03729421624685836 0.8305439330543861 0.03729421624685836 0.38448392578106666
+0.8410041841004117 0.027123066361351533 0.8410041841004116 0.027123066361351533 0.35790490939954595
+0.8389121338912066 0.030513449656520475 0.8389121338912066 0.030513449656520475 0.365487223603937
+0.847280334728027 0.02373268306618259 0.847280334728027 0.02373268306618259 0.35078571239762263
+0.8451882845188219 0.027123066361351533 0.845188284518822 0.027123066361351533 0.35731880739650196
+0.8535564853556423 0.02034229977101365 0.8535564853556422 0.02034229977101365 0.3458947642448426
+0.8514644351464372 0.02373268306618259 0.8514644351464372 0.02373268306618259 0.35132384559245405
+0.8598326359832577 0.01695191647584471 0.8598326359832577 0.01695191647584471 0.34318340874614245
+0.8577405857740525 0.02034229977101365 0.8577405857740527 0.02034229977101365 0.3475112981966734
+0.866108786610873 0.013561533180675767 0.866108786610873 0.013561533180675767 0.3424676056248701
+0.8640167364016679 0.01695191647584471 0.8640167364016679 0.01695191647584471 0.34572370673783936
+0.8723849372384883 0.010171149885506825 0.8723849372384883 0.010171149885506825 0.3434868889855847
+0.8702928870292832 0.013561533180675767 0.8702928870292831 0.013561533180675767 0.3456973048674951
+0.8786610878661036 0.006780766590337883 0.8786610878661038 0.006780766590337883 0.3459575565933018
+0.8765690376568985 0.010171149885506825 0.8765690376568985 0.010171149885506825 0.34712557592352566
+0.8828451882845139 0.006780766590337883 0.8828451882845139 0.006780766590337883 0.34970869071240523
+0.006780766590310587 0.887029288702982 0.006780766590310587 0.8870292887029819 0.08934093336302502
+0.006780766590223225 0.8912133891215728 0.006780766590223225 0.8912133891215728 0.09057210984896798
+0.010171149885497804 0.8807531380753285 0.010171149885497804 0.8807531380753285 0.0877956545926396
+0.010171149885469924 0.8849372384937949 0.010171149885469924 0.8849372384937949 0.08921087786251462
+0.013561533180672929 0.8744769874477005 0.01356153318067293 0.8744769874477004 0.08618355338655882
+0.013561533180664956 0.878661087866126 0.013561533180664956 0.878661087866126 0.08769805131694629
+0.016951916475843726 0.8682008368200816 0.016951916475843726 0.8682008368200816 0.0845864996243138
+0.01695191647584188 0.8723849372384951 0.01695191647584188 0.8723849372384951 0.08609473441011967
+0.020342299771013116 0.8619246861924656 0.02034229977101312 0.8619246861924656 0.08312590398047047
+0.020342299771013095 0.8661087866108756 0.020342299771013095 0.8661087866108756 0.08450012426863429
+0.02373268306618197 0.8556485355648507 0.02373268306618197 0.8556485355648507 0.08196720669557261
+0.02373268306618197 0.8598326359832607 0.02373268306618197 0.8598326359832607 0.08306012380770504
+0.027123066361350822 0.8493723849372357 0.027123066361350822 0.8493723849372357 0.08131287130789176
+0.02712306636135081 0.8535564853556457 0.02712306636135081 0.8535564853556457 0.08196702986361591
+0.030513449656519673 0.8430962343096207 0.030513449656519673 0.8430962343096207 0.08137998224801314
+0.030513449656519673 0.8472803347280307 0.030513449656519673 0.8472803347280307 0.08144548099649872
+0.033903832951688535 0.8368200836820057 0.033903832951688535 0.8368200836820057 0.082362788078175
+0.033903832951688535 0.8410041841004157 0.033903832951688535 0.8410041841004157 0.08172179891592125
+0.03729421624685738 0.8347280334728007 0.03729421624685738 0.8347280334728007 0.08297987208896335
+0.040684599542026224 0.8284518828451857 0.040684599542026224 0.8284518828451857 0.08531559120199993
+0.040684599542026224 0.8326359832635957 0.040684599542026224 0.8326359832635957 0.08361778687984713
+0.0440749828371951 0.8221757322175707 0.0440749828371951 0.8221757322175707 0.0887070422504807
+0.0440749828371951 0.8263598326359807 0.0440749828371951 0.8263598326359807 0.08626577631652488
+0.04746536613236394 0.8158995815899557 0.04746536613236394 0.8158995815899557 0.09301229645466795
+0.04746536613236394 0.8200836820083657 0.04746536613236394 0.8200836820083657 0.08993890371052114
+0.05085574942753279 0.8096234309623407 0.05085574942753279 0.8096234309623407 0.09799308873235392
+0.05085574942753279 0.8138075313807507 0.05085574942753279 0.8138075313807507 0.09444676238659584
+0.05424613272270165 0.8033472803347257 0.054246132722701644 0.8033472803347257 0.10335201675452967
+0.05424613272270165 0.8075313807531357 0.054246132722701644 0.8075313807531357 0.09951480465177522
+0.05763651601787049 0.7970711297071107 0.05763651601787049 0.7970711297071107 0.10877011435332838
+0.05763651601787049 0.8012552301255207 0.05763651601787049 0.8012552301255207 0.10482551765898458
+0.06102689931303934 0.7907949790794957 0.06102689931303934 0.7907949790794957 0.1139375380914615
+0.06102689931303934 0.7949790794979057 0.06102689931303934 0.7949790794979057 0.11005539077234393
+0.06441728260820821 0.7845188284518807 0.06441728260820821 0.7845188284518807 0.11857608721190228
+0.06441728260820821 0.7887029288702907 0.06441728260820821 0.7887029288702907 0.11490297787020033
+0.06780766590337706 0.7782426778242657 0.06780766590337706 0.7782426778242657 0.12245530369657932
+0.06780766590337706 0.7824267782426757 0.06780766590337706 0.7824267782426757 0.11910864046386026
+0.0711980491985459 0.7761506276150607 0.0711980491985459 0.7761506276150607 0.12246846661310763
+0.07458843249371476 0.7698744769874457 0.07458843249371476 0.7698744769874457 0.12484471427007639
+0.07458843249371476 0.7740585774058557 0.07458843249371476 0.7740585774058557 0.12212456711011598
+0.07797881578888362 0.7635983263598307 0.07797881578888362 0.7635983263598307 0.12617431304736504
+0.07797881578888362 0.7677824267782407 0.07797881578888362 0.7677824267782407 0.12392322549296242
+0.08136919908405248 0.7573221757322157 0.08136919908405248 0.7573221757322157 0.12647611804625647
+0.08136919908405248 0.7615062761506257 0.08136919908405248 0.7615062761506257 0.12468301074544198
+0.08475958237922132 0.7510460251046007 0.08475958237922132 0.7510460251046007 0.1258568215282723
+0.08475958237922132 0.7552301255230107 0.08475958237922132 0.7552301255230107 0.12446776429863117
+0.08814996567439015 0.7447698744769857 0.08814996567439015 0.7447698744769857 0.12451450599313162
+0.08814996567439015 0.7489539748953957 0.08814996567439015 0.7489539748953957 0.12343165508758192
+0.09154034896955902 0.7384937238493707 0.09154034896955902 0.7384937238493707 0.12273751996145847
+0.09154034896955902 0.7426778242677807 0.09154034896955902 0.7426778242677807 0.12182045303865897
+0.09493073226472787 0.7322175732217557 0.09493073226472787 0.7322175732217557 0.12089461828672961
+0.09493073226472787 0.7364016736401657 0.09493073226472787 0.7364016736401657 0.11996626364797403
+0.09832111555989675 0.7259414225941407 0.09832111555989675 0.7259414225941407 0.1194107519892172
+0.09832111555989675 0.7301255230125507 0.09832111555989675 0.7301255230125507 0.1182706980253475
+0.10171149885506564 0.7196652719665257 0.10171149885506563 0.7196652719665257 0.11872345925060611
+0.10171149885506564 0.7238493723849357 0.10171149885506563 0.7238493723849357 0.11717066716534154
+0.10510188215023453 0.7175732217573207 0.10510188215023453 0.7175732217573207 0.11708394965365344
+0.10849226544540343 0.7112970711297057 0.10849226544540343 0.7112970711297057 0.11834090730929493
+0.10849226544540343 0.7154811715481157 0.10849226544540343 0.7154811715481157 0.11587849133892224
+0.11188264874057234 0.7050209205020908 0.11188264874057234 0.7050209205020908 0.12112161631673359
+0.11188264874057234 0.7092050209205008 0.11188264874057234 0.7092050209205008 0.11794634460378428
+0.11527303203574124 0.6987447698744758 0.11527303203574124 0.6987447698744758 0.12542351141249428
+0.11527303203574124 0.7029288702928858 0.11527303203574124 0.7029288702928858 0.12155003470851193
+0.11866341533091013 0.6924686192468608 0.11866341533091011 0.6924686192468608 0.13107354484314418
+0.11866341533091013 0.6966527196652708 0.11866341533091011 0.6966527196652708 0.12659029798091603
+0.12205379862607901 0.6861924686192458 0.12205379862607901 0.6861924686192458 0.13777691052366034
+0.12205379862607901 0.6903765690376558 0.12205379862607901 0.6903765690376558 0.1328218916031139
+0.12544418192124793 0.6799163179916308 0.12544418192124793 0.6799163179916308 0.14517987988636993
+0.12544418192124793 0.6841004184100408 0.12544418192124793 0.6841004184100408 0.13991295750630361
+0.1288345652164168 0.6778242677824258 0.1288345652164168 0.6778242677824258 0.1475059452339493
+0.13222494851158573 0.6757322175732208 0.13222494851158573 0.6757322175732208 0.14985796098425153
+0.1356153318067546 0.6736401673640158 0.13561533180675459 0.6736401673640158 0.1521787923142709
+0.1390057151019235 0.6715481171548108 0.1390057151019235 0.6715481171548108 0.15441882864594936
+0.1423960983970924 0.6694560669456058 0.1423960983970924 0.6694560669456058 0.15653715800334342
+0.1457864816922613 0.6673640167364008 0.1457864816922613 0.6673640167364008 0.15850221399230724
+0.1491768649874302 0.6610878661087858 0.1491768649874302 0.6610878661087858 0.16531255407121948
+0.1525672482825991 0.6589958158995808 0.15256724828259907 0.6589958158995808 0.16681611569686614
+0.16273839816810579 0.6443514644351458 0.16273839816810579 0.6443514644351458 0.17944403736644118
+0.16951916475844359 0.6359832635983258 0.16951916475844356 0.6359832635983258 0.18533368424752591
+0.1729095287815201 0.633891270507951 0.1729095287815201 0.633891270507951 0.18596650140499374
+0.1796901752772512 0.6255233086273738 0.1796901752772512 0.6255233086273738 0.1918158074770406
+0.18308048641079958 0.6234312393212609 0.18308048641079958 0.6234312393212608 0.19257119295188205
+0.18647025599780562 0.6213370496337675 0.18647025599780562 0.6213370496337675 0.19338903092818596
+0.18984866554465366 0.6150437847330983 0.18984866554465366 0.6150437847330982 0.19922832317452863
+0.1932360618758295 0.6129397456432006 0.1932360618758295 0.6129397456432005 0.20032929071755287
+0.1965958508489226 0.6108391786238977 0.1965958508489226 0.6108391786238977 0.20152176319060436
+0.18985741248611854 0.6192380179066755 0.18985741248611854 0.6192380179066755 0.19428272394400556
+0.1762995416222863 0.6317996929616193 0.1762995416222863 0.6317996929616193 0.18659035847338856
+0.17968893948563783 0.6297079501006199 0.17968893948563783 0.6297079501006199 0.18722810499055112
+0.1661287814632747 0.6422594142259408 0.1661287814632747 0.6422594142259408 0.18019329825555727
+0.16951916475844359 0.6401673640167358 0.16951916475844356 0.6401673640167358 0.18086229098711823
+0.15595763157776799 0.6527196652719658 0.15595763157776799 0.6527196652719658 0.17290598425444284
+0.15595763157776799 0.6569037656903758 0.15595763157776799 0.6569037656903758 0.16813353707005943
+0.1593480148729369 0.6506276150627608 0.1593480148729369 0.6506276150627608 0.17396524236056712
+0.16273839816810579 0.6485355648535558 0.16273839816810579 0.6485355648535558 0.17487712360799887
+0.1491768649874302 0.6652719665271958 0.1491768649874302 0.6652719665271958 0.16029197519035734
+0.208785818025509 0.5880127483940676 0.20878581802550897 0.5880127483940676 0.2278898216687162
+0.20853301019512172 0.5916252609558721 0.20853301019512172 0.5916252609558721 0.2227868984174259
+0.2083139422422411 0.5952884052455639 0.2083139422422411 0.5952884052455639 0.21766561468258552
+0.2118963170323452 0.5862161010617412 0.2118963170323452 0.5862161010617412 0.22963988397498789
+0.21661465554094117 0.5745955737749837 0.21661465554094117 0.5745955737749836 0.24613865052250142
+0.21503075563457275 0.5776763185631779 0.21503075563457275 0.5776763185631779 0.2416450096663445
+0.2151734756447901 0.580816265423824 0.21517347564479009 0.5808162654238239 0.23689955716359545
+0.21505780243312814 0.5843131042235974 0.21505780243312814 0.5843131042235975 0.231613364624946
+0.19970628488715414 0.6047795839929161 0.19970628488715414 0.6047795839929161 0.2079678214100865
+0.20230427188087213 0.602827338244079 0.2023042718808721 0.602827338244079 0.20950641402856474
+0.2050614216277532 0.6007113601824089 0.20506142162775323 0.6007113601824089 0.21134050600780604
+0.20808367136279485 0.5989299073736284 0.20808367136279485 0.5989299073736284 0.21264800232610068
+0.19999209902757958 0.6087296401096592 0.1999920990275796 0.6087296401096592 0.20279320239533474
+0.37868390332017626 0.34997366653719597 0.37868390332017626 0.34997366653719597 0.29297754260017456
+0.37558234139504654 0.35158960075074647 0.37558234139504654 0.35158960075074647 0.28468548242163366
+0.3692422495028314 0.3512323298888456 0.3692422495028314 0.3512323298888456 0.26721988771362465
+0.36611990882131645 0.35297885586243555 0.36611990882131645 0.35297885586243555 0.25841041162882045
+0.3725008549340209 0.3532609510132865 0.3725008549340209 0.3532609510132865 0.2762596521223399
+0.3630164026445566 0.35484780673553645 0.3630164026445566 0.35484780673553645 0.24949413282188973
+0.3566771666612336 0.35515951202208434 0.3566771666612336 0.35515951202208434 0.2315627985859998
+0.3535823958170589 0.35710344674442646 0.3535823958170589 0.35710344674442646 0.22247861222859158
+0.3600159403838533 0.3568406046905348 0.36001594038385326 0.3568406046905348 0.24071980346490007
+0.3503867744415563 0.35893528662481844 0.3503867744415563 0.3589352866248184 0.21312732256963204
+0.34338861819308897 0.3611734653482695 0.34338861819308897 0.3611734653482695 0.19342054351142826
+0.34117193926521394 0.36305793937419123 0.34117193926521394 0.36305793937419123 0.18701813640891754
+0.3468845747582812 0.36092433938058494 0.3468845747582812 0.3609243393805849 0.2029777383509759
+0.33830981961897844 0.3648610163878203 0.33830981961897844 0.3648610163878203 0.17910528872598228
+0.3294200860078838 0.3703010401805451 0.3294200860078838 0.3703010401805451 0.15680287302195087
+0.3353437221293274 0.36671244961032595 0.3353437221293274 0.36671244961032595 0.17121580813514828
+0.33240194733516387 0.3685010112154075 0.33240194733516387 0.3685010112154075 0.16380600895606176
+0.32662718274441505 0.3724007252395404 0.326627182744415 0.3724007252395403 0.15067861032206634
+0.3235703194204686 0.374208342638486 0.3235703194204686 0.37420834263848596 0.14499114038363217
+0.3207120279406018 0.376108020312053 0.3207120279406018 0.376108020312053 0.14043751988204767
+0.3176909545937434 0.37840766068258624 0.3176909545937434 0.3784076606825862 0.1367200717393304
+0.31475801569521733 0.38075557328570975 0.3147580156952174 0.38075557328570975 0.1343671005201957
+0.31177817035226446 0.3834452344870149 0.31177817035226446 0.38344523448701484 0.13348057845661063
+0.30845486715829956 0.3846333734982313 0.30845486715829956 0.3846333734982313 0.13295132769286166
+0.3063743721206451 0.38707885440444767 0.3063743721206451 0.38707885440444767 0.13472804996960155
+0.30373868146517635 0.38960107430064184 0.30373868146517635 0.3896010743006419 0.13756305252027093
+0.3010093363027617 0.3920848936187175 0.3010093363027617 0.3920848936187175 0.1415029142018642
+0.2983313831747924 0.3945367068905786 0.2983313831747924 0.39453670689057857 0.14638812782434
+0.295566746187276 0.39696464940358833 0.295566746187276 0.39696464940358833 0.15211397306400143
+0.29286837947152705 0.3994995383534952 0.29286837947152705 0.3994995383534952 0.15867536507464286
+0.290289199041647 0.40221557520287354 0.290289199041647 0.4022155752028736 0.16609737324435433
+0.2877418141200076 0.40495926558261736 0.2877418141200076 0.40495926558261736 0.17398201972762847
+0.2852256951088255 0.407701839608446 0.2852256951088255 0.407701839608446 0.1821527521646845
+0.28268845739196685 0.4104478462018239 0.28268845739196685 0.4104478462018239 0.1905444653173857
+0.2800944855345053 0.41325452041379457 0.2800944855345053 0.41325452041379457 0.19920240100349254
+0.27736363450832496 0.41619211935463185 0.27736363450832496 0.4161921193546318 0.2082853184161956
+0.27491269415758895 0.4192757089321548 0.27491269415758895 0.41927570893215477 0.21739612225986074
+0.2728605443781218 0.42226054201418123 0.2728605443781218 0.42226054201418123 0.2259499840336173
+0.2707162055045255 0.42520904064932324 0.2707162055045255 0.42520904064932324 0.2342739975418582
+0.2685085106216597 0.4281120735343206 0.26850851062165976 0.4281120735343206 0.2422630921766131
+0.26632160774564845 0.4309214976652744 0.26632160774564845 0.4309214976652744 0.2497133789196493
+0.26397063684732586 0.4328187204649935 0.26397063684732586 0.4328187204649935 0.2546558256049358
+0.2633028653152047 0.43559154143515844 0.2633028653152047 0.4355915414351585 0.2614439439825515
+0.26154171694800643 0.4385282977393342 0.2615417169480065 0.43852829773933427 0.2683599471166738
+0.2597099426438422 0.4414879239375434 0.2597099426438421 0.4414879239375434 0.2749990302077157
+0.2578766931264803 0.4444316771606698 0.25787669312648026 0.4444316771606697 0.28122405172848186
+0.25608423799844526 0.4473480094835771 0.2560842379984453 0.44734800948357717 0.28700967945579686
+0.2543919254191922 0.4502559425290041 0.2543919254191922 0.4502559425290041 0.292413361674471
+0.2528607588327676 0.4531518132576944 0.2528607588327676 0.4531518132576943 0.2974728010151175
+0.25136350769084004 0.45608997617026076 0.25136350769084004 0.45608997617026076 0.3022811277410549
+0.24981725055229553 0.4591160004754418 0.24981725055229553 0.4591160004754418 0.30679355038810247
+0.24826791422313665 0.4621996204079581 0.24826791422313663 0.4621996204079581 0.3109621082045515
+0.24672889253244495 0.4652985685225535 0.24672889253244493 0.4652985685225535 0.31471159675698684
+0.24524954542767563 0.46839717199829844 0.24524954542767566 0.4683971719982985 0.31804725249421745
+0.24384674025896627 0.47151243876069343 0.24384674025896627 0.47151243876069343 0.32101252764982563
+0.24250030056902647 0.47465439588683034 0.24250030056902647 0.4746543958868303 0.3236073357050237
+0.24117610412673635 0.4778453285459064 0.24117610412673637 0.4778453285459064 0.32581615926549157
+0.23989037547221673 0.4810643670226696 0.23989037547221673 0.4810643670226696 0.3276169254719726
+0.23861787355741482 0.48430245693023327 0.23861787355741484 0.48430245693023327 0.3289799222319543
+0.2373773685736439 0.4875779196226397 0.23737736857364392 0.4875779196226397 0.3299321337543594
+0.23617669003601005 0.49088123262345174 0.23617669003601005 0.4908812326234518 0.33047186799825573
+0.23502695475461674 0.49419777539231124 0.23502695475461674 0.4941977753923112 0.33060406872370596
+0.2339192453180343 0.4975388637656706 0.2339192453180343 0.4975388637656706 0.33032776559006577
+0.23284714884179872 0.5009175710886046 0.23284714884179872 0.5009175710886046 0.32963731162006354
+0.23183034080570505 0.504330246468531 0.23183034080570505 0.504330246468531 0.3285471605620271
+0.2308551244599144 0.5077771048205649 0.2308551244599144 0.5077771048205649 0.32705087317480563
+0.2299082658240846 0.5112433218599356 0.2299082658240846 0.5112433218599356 0.3251513923952658
+0.22898053079887573 0.514718089430566 0.22898053079887573 0.514718089430566 0.32286192470415154
+0.2280786218040761 0.5182009003369137 0.2280786218040761 0.5182009003369137 0.320206244291039
+0.22721548839180497 0.5217189890397368 0.22721548839180497 0.5217189890397368 0.31718521869837796
+0.22648144983076826 0.5252845522407322 0.22648144983076826 0.5252845522407322 0.31382452298558844
+0.22588255255631742 0.5288875737613056 0.22588255255631742 0.5288875737613056 0.31015216638121873
+0.22527549241948233 0.5324824606435073 0.22527549241948233 0.5324824606435073 0.30616471907784676
+0.22461061416817607 0.5360536389149763 0.22461061416817607 0.5360536389149763 0.3018986601729083
+0.2238791658798487 0.5396298054007921 0.2238791658798487 0.5396298054007921 0.29735565703074757
+0.2230389006683925 0.5432236051897492 0.22303890066839252 0.5432236051897492 0.29254823470606756
+0.22214869370744228 0.5472204411865063 0.22214869370744234 0.5472204411865063 0.287059414429995
+0.22284632660352022 0.5510275058416692 0.22284632660352025 0.5510275058416693 0.2816842732120662
+0.2225722403549354 0.5546281961483818 0.22257224035493542 0.5546281961483818 0.27641229672178413
+0.22210061927281388 0.5581805147483768 0.22210061927281388 0.5581805147483768 0.271043192669604
+0.22157398555520955 0.5617720279764157 0.22157398555520955 0.5617720279764157 0.2655313775855406
+0.22093094444839695 0.565365113018802 0.22093094444839692 0.5653651130188021 0.2599716194697619
+0.220355348776348 0.5689173379683321 0.22035534877634796 0.5689173379683322 0.25444507898185953
+0.21967030688849726 0.5723474903202275 0.21967030688849729 0.5723474903202276 0.2491458773792656
+0.2198342919799118 0.5753217519927107 0.2198342919799118 0.5753217519927107 0.24434045057435677
+0.3850517172338816 0.3432448231963303 0.3850517172338816 0.3432448231963303 0.3092152144415037
+0.38181131339341373 0.34842138701068553 0.38181131339341373 0.34842138701068553 0.30114301658366044
+0.3849634529161905 0.34693564846432046 0.3849634529161905 0.34693564846432046 0.3091705738429266
+0.3925555371868891 0.3291556967610376 0.3925555371868891 0.3291556967610376 0.3277647752279775
+0.3887313621126636 0.33428650408985167 0.3887313621126636 0.33428650408985167 0.3186077323267789
+0.39210670087362615 0.33294073517574757 0.39210670087362615 0.33294073517574757 0.32651127543900366
+0.38846847017345254 0.3381030210928066 0.3884684701734526 0.3381030210928066 0.3177115946863976
+0.3882617867849641 0.3418349469678316 0.3882617867849641 0.3418349469678316 0.3171440742917974
+0.4017219153677935 0.31514266098486216 0.4017219153677935 0.31514266098486216 0.3458455858700307
+0.3971045886076859 0.3209364065163931 0.3971045886076859 0.3209364065163931 0.3375496021721715
+0.40027214474269307 0.31874732948931617 0.40027214474269307 0.3187473294893162 0.34376087811362577
+0.3965738689054951 0.32442738411297367 0.3965738689054951 0.32442738411297367 0.33656405528531086
+0.39601239850200276 0.32805264531068035 0.39601239850200276 0.3280526453106804 0.3353447752245642
+0.41276652389716667 0.30168661715518674 0.41276652389716667 0.3016866171551867 0.3565153799221685
+0.4071594511927717 0.3081852540594941 0.4071594511927717 0.3081852540594941 0.352629342868826
+0.41166061493745826 0.3048390398002366 0.41166061493745826 0.3048390398002366 0.35715781282982345
+0.4106173157252304 0.3076978809170221 0.41061731572523036 0.3076978809170221 0.3572977355882323
+0.4062021087240073 0.3113047350989143 0.40620210872400725 0.3113047350989144 0.35237291870044535
+0.4052716982124052 0.3145396330951547 0.4052716982124052 0.3145396330951547 0.35184761357712585
+0.4254095487717058 0.2887512718647725 0.4254095487717057 0.2887512718647725 0.3537477302625062
+0.4189363390579492 0.2949587660568885 0.4189363390579492 0.2949587660568885 0.35691235563468954
+0.4239696427584428 0.2918443457182011 0.4239696427584428 0.2918443457182011 0.35666091962688656
+0.42253650486635896 0.2945820575914628 0.42253650486635896 0.2945820575914628 0.3587889521586483
+0.4176521404134179 0.29820195134795263 0.41765214041341797 0.29820195134795263 0.35877836466119023
+0.41643941155624487 0.30138962188506463 0.4164394115562448 0.30138962188506463 0.36020815271767637
+0.44658410215391786 0.27149192928697985 0.44658410215391786 0.2714919292869799 0.32136980653169683
+0.44452143456045534 0.2746516192728237 0.4445214345604553 0.2746516192728237 0.3279959129487367
+0.44240002527230726 0.2778399062621129 0.4424000252723072 0.2778399062621129 0.3344726183746443
+0.4396385779904771 0.281034676366199 0.4396385779904772 0.281034676366199 0.34113173963588667
+0.4306407200296836 0.2856036443577392 0.4306407200296836 0.2856036443577392 0.35051110761769483
+0.4344834262570463 0.2853820591307653 0.4344834262570463 0.28538205913076536 0.3494541949407202
+0.43828670242477497 0.2848390651538316 0.43828670242477497 0.28483906515383156 0.34705664835478767
+0.42905931621248605 0.288711255914103 0.42905931621248605 0.288711255914103 0.3543138131274732
+0.45431364124324475 0.2653796718761739 0.45431364124324475 0.2653796718761739 0.3020714681960545
+0.4523095880581321 0.2685635714113693 0.4523095880581321 0.2685635714113693 0.3094390559532092
+0.458037669786935 0.26556057979586384 0.458037669786935 0.26556057979586384 0.2954251019661553
+0.45027986469911374 0.27173022267646213 0.45027986469911374 0.27173022267646213 0.31672564395120245
+0.4805685072565388 0.2509979350170533 0.4805685072565388 0.2509979350170533 0.22220052999467618
+0.47818005691633264 0.25346840976514334 0.47818005691633264 0.25346840976514334 0.23159803978609997
+0.4757742472423032 0.2558871917635486 0.47577424724230327 0.2558871917635486 0.24093356282289483
+0.4733441334117315 0.25828197488817334 0.4733441334117315 0.25828197488817334 0.2502286182796479
+0.4708691290017477 0.26066105987565596 0.47086912900174765 0.26066105987565596 0.2595258437896058
+0.468366413491607 0.26311760152381003 0.46836641349160696 0.2631176015238101 0.26885863397901827
+0.4618735906904052 0.2657177774095572 0.4618735906904052 0.2657177774095572 0.28760268221476953
+0.4658140996350495 0.2661737400193106 0.4658140996350495 0.26617374001931055 0.2788893189270309
+0.49986397803177085 0.24333948350906642 0.4998639780317708 0.2433394835090664 0.14884250300136226
+0.4886368801928514 0.2467568885886053 0.4886368801928514 0.2467568885886053 0.19231596503915116
+0.49747053044076767 0.2459207059896622 0.49747053044076767 0.2459207059896622 0.1592734056708445
+0.49193512297583913 0.2476564395938996 0.49193512297583913 0.2476564395938996 0.18097897978013935
+0.4951499201055731 0.24852872094256706 0.4951499201055731 0.24852872094256706 0.16943365344323028
+0.4863578487146153 0.24946476715524873 0.48635784871461535 0.24946476715524876 0.20193261005392385
+0.4840373323405071 0.25209474789851605 0.4840373323405071 0.25209474789851605 0.21162895094034262
+0.5199967949369856 0.2367578559340965 0.5199967949369856 0.2367578559340965 0.06984686918470484
+0.5081678667211865 0.23932226942677462 0.5081678667211865 0.23932226942677462 0.11454780991202447
+0.5173083673650368 0.23919947386389862 0.5173083673650368 0.2391994738638986 0.07991072329610933
+0.5114397737705417 0.24047644374920965 0.5114397737705417 0.24047644374920965 0.10220141725523359
+0.5146912169713643 0.24166979459139595 0.5146912169713643 0.24166979459139595 0.09036777664269448
+0.5056212569713467 0.24187914990120554 0.5056212569713469 0.24187914990120554 0.12563107354678693
+0.5031267757439187 0.2444225632646928 0.5031267757439187 0.2444225632646928 0.13653608143034413
+0.5289449447258193 0.23334872370286794 0.5289449447258193 0.23334872370286794 0.05109118125290935
+0.5322477881519266 0.2347771778968155 0.5322477881519266 0.2347771778968155 0.054994734191060636
+0.5260278066512583 0.23574232040442705 0.5260278066512583 0.23574232040442708 0.055105034227365464
+0.5232597609244997 0.23810366268427233 0.5232597609244997 0.23810366268427233 0.06178023724306656
+0.5355167107985593 0.23626132624735563 0.5355167107985593 0.23626132624735563 0.0639242274682602
+0.5384758366864695 0.23398810262476621 0.5384758366864695 0.2339881026247662 0.07122014145202493
+0.5414894273995687 0.23176988689953582 0.5414894273995686 0.23176988689953584 0.08074846106464052
+0.5445622724455009 0.22962563057333377 0.5445622724455009 0.22962563057333377 0.09196453822666191
+0.5476694488052768 0.22753312647841217 0.5476694488052768 0.22753312647841217 0.1042780304130035
+0.5507999042352174 0.22547106779023987 0.5507999042352174 0.22547106779023987 0.11727770190214702
+0.5602267870713716 0.21929805707745928 0.5602267870713716 0.21929805707745928 0.15758627469016898
+0.5570893997927872 0.22136321630365685 0.5570893997927872 0.22136321630365688 0.14415423796504825
+0.5539432183741714 0.22342082894425286 0.5539432183741714 0.22342082894425283 0.1306518552003468
+0.5633587944935136 0.21721169450076824 0.5633587944935136 0.21721169450076824 0.17083471941454523
+0.5691988899980626 0.21280939912882477 0.5691988899980626 0.21280939912882477 0.19434460086673264
+0.5665175489185675 0.21508386584305905 0.5665175489185675 0.21508386584305902 0.18392622064550512
+0.5723883137298655 0.21332604306239625 0.5723883137298654 0.21332604306239625 0.20967511672553818
+0.5757318277239276 0.21274371486589932 0.5757318277239277 0.2127437148658993 0.22437234069730524
+0.5789743814179424 0.2118537094579363 0.5789743814179423 0.21185370945793627 0.2379351152693541
+0.5824285309986851 0.21084069285077647 0.5824285309986851 0.21084069285077647 0.2519191890223122
+0.5860066991789293 0.20956577202827892 0.5860066991789293 0.2095657720282789 0.2656504081888981
+0.5894400996746987 0.20859119248194274 0.5894400996746986 0.20859119248194277 0.27859582565327057
+0.592732229130428 0.20798353276175996 0.5927322291304281 0.20798353276176 0.29105963472057206
+0.5957692142948199 0.20805604012912937 0.5957692142948199 0.20805604012912937 0.3030219881882661
+0.5983083610766902 0.2064275812502685 0.5983083610766902 0.2064275812502685 0.31020654111833196
+0.6015367687005545 0.205368324186311 0.6015367687005545 0.20536832418631104 0.32043222287933854
+0.6047476848846413 0.20394506580698746 0.6047476848846413 0.20394506580698746 0.3294982647661415
+0.607462080895226 0.20241796385917354 0.607462080895226 0.20241796385917352 0.33605187833532
+0.6443514644351314 0.1627383981681092 0.6443514644351315 0.1627383981681092 0.36188252068126797
+0.638075313807516 0.16612878146327814 0.638075313807516 0.16612878146327814 0.35248427086650164
+0.6422594142259263 0.16612878146327814 0.6422594142259263 0.16612878146327814 0.3625867973663641
+0.6359832635983109 0.16951916475844708 0.6359832635983108 0.16951916475844708 0.35331890397576876
+0.6338910783918905 0.17290950695517668 0.6338910783918905 0.17290950695517668 0.35433728409927395
+0.6317982558847557 0.17629941426945692 0.6317982558847558 0.17629941426945692 0.3554965682693789
+0.6255188048639942 0.17968563532027762 0.6255188048639942 0.17968563532027762 0.34583505731481473
+0.6234214841948635 0.18306488757335682 0.6234214841948634 0.18306488757335682 0.3468846921935285
+0.6213223880350062 0.18643203717329002 0.6213223880350062 0.18643203717329002 0.34782103916852364
+0.6192199025467345 0.18978282258848841 0.6192199025467345 0.18978282258848841 0.3485595565134187
+0.617107983489783 0.19311659098522682 0.6171079834897829 0.19311659098522682 0.3490126860096487
+0.610792916098409 0.20270483556672642 0.610792916098409 0.20270483556672644 0.3477460308541727
+0.6149757466766922 0.19643688762507364 0.6149757466766922 0.19643688762507364 0.3490868774629376
+0.6128290952411579 0.19971914362294477 0.6128290952411578 0.19971914362294477 0.3486936404916201
+0.629704217882341 0.17968763379400954 0.629704217882341 0.17968763379400954 0.3567408836981769
+0.6548117154811569 0.15256724828260237 0.6548117154811569 0.15256724828260237 0.3701628145015751
+0.6589958158995671 0.15256724828260237 0.6589958158995671 0.15256724828260237 0.37890832505126415
+0.6527196652719518 0.15595763157777132 0.6527196652719517 0.15595763157777132 0.37047806471726835
+0.6506276150627467 0.15934801487294026 0.6506276150627467 0.15934801487294026 0.370925935262421
+0.6485355648535416 0.1627383981681092 0.6485355648535416 0.1627383981681092 0.37153680079003365
+0.6799163179916182 0.12544418192125084 0.6799163179916182 0.12544418192125084 0.3782524336688104
+0.6778242677824131 0.12883456521641978 0.6778242677824132 0.12883456521641978 0.3798248926130147
+0.675732217573208 0.13222494851158872 0.675732217573208 0.13222494851158872 0.38125610843132635
+0.6736401673640029 0.13561533180675767 0.6736401673640029 0.13561533180675767 0.3825386629822684
+0.6715481171547978 0.1390057151019266 0.6715481171547978 0.1390057151019266 0.3836758845771438
+0.6694560669455927 0.14239609839709555 0.6694560669455926 0.14239609839709555 0.3846814959120679
+0.6673640167363876 0.1457864816922645 0.6673640167363876 0.1457864816922645 0.38557864900660244
+0.6652719665271825 0.14917686498743343 0.6652719665271825 0.14917686498743343 0.3863983923998411
+0.6631799163179773 0.15256724828260237 0.6631799163179773 0.15256724828260237 0.3871776417669861
+0.6861924686192336 0.1220537986260819 0.6861924686192334 0.1220537986260819 0.3808069873118793
+0.6841004184100284 0.12544418192125084 0.6841004184100284 0.12544418192125084 0.3828505978305203
+0.6924686192468489 0.11866341533091296 0.6924686192468489 0.11866341533091296 0.3823101584808524
+0.6903765690376438 0.1220537986260819 0.6903765690376438 0.1220537986260819 0.38462483157832944
+0.6987447698744642 0.11527303203574402 0.6987447698744642 0.11527303203574402 0.38327877928528026
+0.6966527196652591 0.11866341533091296 0.6966527196652591 0.11866341533091296 0.3855870018363529
+0.7050209205020793 0.11188264874057509 0.7050209205020793 0.11188264874057509 0.384337191496416
+0.7029288702928743 0.11527303203574403 0.7029288702928743 0.11527303203574403 0.3863147824469588
+0.711297071129695 0.10849226544540613 0.711297071129695 0.10849226544540613 0.3861404861437699
+0.7092050209204898 0.11188264874057507 0.7092050209204898 0.11188264874057507 0.3874621652084906
+0.7196652719665152 0.10171149885506825 0.7196652719665152 0.10171149885506825 0.38946380146544096
+0.7175732217573101 0.10510188215023719 0.7175732217573101 0.10510188215023719 0.38927583592898557
+0.7154811715481051 0.10849226544540613 0.7154811715481051 0.10849226544540613 0.3896704079616406
+0.7259414225941306 0.09832111555989931 0.7259414225941306 0.09832111555989931 0.3954258540851789
+0.7238493723849255 0.10171149885506825 0.7238493723849255 0.10171149885506825 0.39415857838881
+0.732217573221746 0.09493073226473037 0.732217573221746 0.09493073226473037 0.40322203593254186
+0.7301255230125409 0.09832111555989931 0.7301255230125409 0.09832111555989931 0.40094751401477424
+0.7384937238493613 0.09154034896956142 0.7384937238493613 0.09154034896956142 0.4125599826448955
+0.7364016736401562 0.09493073226473037 0.7364016736401561 0.09493073226473037 0.4095030415190508
+0.7447698744769766 0.08814996567439248 0.7447698744769767 0.08814996567439248 0.4228919610230601
+0.7426778242677715 0.09154034896956142 0.7426778242677715 0.09154034896956142 0.41939977259936284
+0.751046025104592 0.08475958237922354 0.751046025104592 0.08475958237922354 0.43349341305050143
+0.7489539748953868 0.08814996567439248 0.7489539748953868 0.08814996567439248 0.4299877173549875
+0.7573221757322073 0.0813691990840546 0.7573221757322073 0.0813691990840546 0.4435586424551628
+0.7552301255230022 0.08475958237922354 0.7552301255230022 0.08475958237922354 0.44048290879934454
+0.7635983263598226 0.07797881578888566 0.7635983263598226 0.07797881578888566 0.4522940079886059
+0.7615062761506175 0.0813691990840546 0.7615062761506176 0.0813691990840546 0.45006532364021296
+0.771966527196643 0.07119804919854777 0.771966527196643 0.07119804919854777 0.45905214370833214
+0.7698744769874379 0.07458843249371672 0.7698744769874378 0.07458843249371672 0.45899643806808593
+0.7677824267782328 0.07797881578888566 0.7677824267782328 0.07797881578888566 0.4579673884877766
+0.7782426778242584 0.06780766590337883 0.7782426778242585 0.06780766590337883 0.4616128959179182
+0.7761506276150533 0.07119804919854777 0.7761506276150533 0.07119804919854777 0.46311256189983857
+0.7845188284518737 0.06441728260820989 0.7845188284518737 0.06441728260820989 0.4611332918711493
+0.7824267782426686 0.06780766590337883 0.7824267782426686 0.06780766590337883 0.46427852080534704
+0.790794979079489 0.06102689931304095 0.790794979079489 0.06102689931304095 0.4575741648719818
+0.7887029288702839 0.06441728260820989 0.7887029288702839 0.06441728260820989 0.46234246909114507
+0.7970711297071044 0.05763651601787201 0.7970711297071044 0.05763651601787201 0.4511104946979125
+0.7949790794978993 0.06102689931304095 0.7949790794978994 0.06102689931304095 0.4573718987832267
+0.8033472803347197 0.054246132722703067 0.8033472803347196 0.054246132722703067 0.4421182820699033
+0.8012552301255146 0.05763651601787201 0.8012552301255146 0.05763651601787201 0.4496472082074913
+0.809623430962335 0.050855749427534125 0.809623430962335 0.050855749427534125 0.431148494358879
+0.8075313807531299 0.054246132722703067 0.8075313807531298 0.054246132722703067 0.43964199167042645
+0.8158995815899504 0.04746536613236518 0.8158995815899504 0.04746536613236518 0.4188876337637302
+0.8138075313807452 0.050855749427534125 0.8138075313807452 0.050855749427534125 0.4279897071404614
+0.8221757322175657 0.04407498283719624 0.8221757322175657 0.04407498283719624 0.40610452335687647
+0.8200836820083606 0.04746536613236518 0.8200836820083605 0.04746536613236518 0.4154360167896622
+0.828451882845181 0.0406845995420273 0.8284518828451811 0.0406845995420273 0.3935841677076369
+0.8263598326359759 0.04407498283719624 0.8263598326359759 0.04407498283719624 0.40277671376828333
+0.8368200836820014 0.03390383295168942 0.8368200836820013 0.03390383295168942 0.3735782015576981
+0.8347280334727963 0.03729421624685836 0.8347280334727963 0.03729421624685836 0.382052627225356
+0.8326359832635912 0.0406845995420273 0.8326359832635912 0.0406845995420273 0.3907834480266213
+0.8430962343096168 0.030513449656520475 0.8430962343096168 0.030513449656520475 0.3644619412656173
+0.8410041841004117 0.03390383295168942 0.8410041841004116 0.03390383295168942 0.372101719287738
+0.8493723849372321 0.027123066361351533 0.8493723849372321 0.027123066361351533 0.3574371931582412
+0.847280334728027 0.030513449656520475 0.847280334728027 0.030513449656520475 0.3641273844319977
+0.8556485355648474 0.02373268306618259 0.8556485355648474 0.02373268306618259 0.35258567477835595
+0.8535564853556423 0.027123066361351533 0.8535564853556422 0.027123066361351533 0.35829723798173757
+0.8619246861924628 0.02034229977101365 0.8619246861924629 0.02034229977101365 0.3497931161065844
+0.8598326359832577 0.02373268306618259 0.8598326359832577 0.02373268306618259 0.3545577407543939
+0.8682008368200781 0.01695191647584471 0.8682008368200781 0.01695191647584471 0.3488048916295133
+0.866108786610873 0.02034229977101365 0.866108786610873 0.02034229977101365 0.35267979848633774
+0.8744769874476934 0.013561533180675767 0.8744769874476933 0.013561533180675767 0.34929552121834634
+0.8723849372384883 0.01695191647584471 0.8723849372384883 0.01695191647584471 0.3523288301381094
+0.8807531380753088 0.010171149885506825 0.8807531380753088 0.010171149885506825 0.35093190135392005
+0.8786610878661036 0.013561533180675767 0.8786610878661038 0.013561533180675767 0.35313840735406954
+0.8870292887029241 0.006780766590337883 0.887029288702924 0.006780766590337883 0.3534152756371051
+0.884937238493719 0.010171149885506825 0.884937238493719 0.010171149885506825 0.3547684369082271
+0.006780766589863176 0.8953974895407216 0.006780766589863177 0.8953974895407216 0.09165252041937531
+0.010171149885356076 0.8891213389124332 0.010171149885356076 0.8891213389124332 0.09052998617225472
+0.0101711498848992 0.8933054393317493 0.0101711498848992 0.8933054393317493 0.09171451201483143
+0.013561533180632449 0.8828451882845975 0.013561533180632449 0.8828451882845975 0.08918297164024676
+0.013561533180501737 0.8870292887032512 0.013561533180501737 0.8870292887032513 0.09059222660390552
+0.016951916475834394 0.8765690376569188 0.016951916475834394 0.876569037656919 0.08765238649712138
+0.01695191647580446 0.8807531380753826 0.01695191647580446 0.8807531380753826 0.08920601136393169
+0.020342299771012866 0.8702928870292862 0.02034229977101287 0.8702928870292862 0.08601429909518798
+0.020342299771011957 0.8744769874476979 0.020342299771011957 0.874476987447698 0.08760904109434252
+0.023732683066181672 0.864016736401671 0.023732683066181672 0.864016736401671 0.08439135433440899
+0.023732683066180454 0.8682008368200828 0.023732683066180454 0.8682008368200828 0.0858989422285066
+0.027123066361350607 0.857740585774056 0.027123066361350607 0.857740585774056 0.08295777144964396
+0.027123066361349677 0.8619246861924674 0.027123066361349677 0.8619246861924674 0.08422661688169253
+0.03051344965651967 0.8514644351464407 0.03051344965651967 0.8514644351464407 0.08193317082948832
+0.030513449656519157 0.8556485355648517 0.030513449656519153 0.8556485355648517 0.08279665371716431
+0.033903832951688535 0.8451882845188257 0.033903832951688535 0.8451882845188257 0.0815606325705573
+0.0339038329516884 0.849372384937236 0.0339038329516884 0.849372384937236 0.08185430974550224
+0.03729421624685738 0.8389121338912107 0.03729421624685738 0.8389121338912107 0.08206779886520475
+0.037294216246857366 0.8430962343096207 0.037294216246857366 0.8430962343096207 0.08165506450354788
+0.040684599542026224 0.8368200836820057 0.040684599542026224 0.8368200836820057 0.08241809271270517
+0.0440749828371951 0.8305439330543907 0.0440749828371951 0.8305439330543907 0.08427474635662334
+0.0440749828371951 0.8347280334728007 0.0440749828371951 0.8347280334728007 0.08277564119541685
+0.04746536613236394 0.8242677824267757 0.04746536613236394 0.8242677824267757 0.08723108779463029
+0.04746536613236394 0.8284518828451857 0.04746536613236394 0.8284518828451857 0.08494942360600566
+0.05085574942753279 0.8179916317991607 0.05085574942753279 0.8179916317991607 0.09116032653140173
+0.05085574942753279 0.8221757322175707 0.05085574942753279 0.8221757322175707 0.08820271266020023
+0.05424613272270165 0.8117154811715457 0.054246132722701644 0.8117154811715457 0.0958261903233767
+0.05424613272270165 0.8158995815899557 0.054246132722701644 0.8158995815899557 0.09235457425207506
+0.05763651601787049 0.8054393305439307 0.05763651601787049 0.8054393305439307 0.10092403089847801
+0.05763651601787049 0.8096234309623407 0.05763651601787049 0.8096234309623407 0.09712780666570957
+0.06102689931303934 0.7991631799163157 0.06102689931303934 0.7991631799163157 0.10612358352166175
+0.06102689931303934 0.8033472803347257 0.06102689931303934 0.8033472803347257 0.10219511528057336
+0.06441728260820821 0.7928870292887007 0.06441728260820821 0.7928870292887007 0.11110377829318314
+0.06441728260820821 0.7970711297071107 0.06441728260820821 0.7970711297071107 0.10722118287082606
+0.06780766590337706 0.7866108786610857 0.06780766590337706 0.7866108786610857 0.11557758092422481
+0.06780766590337706 0.7907949790794957 0.06780766590337706 0.7907949790794957 0.11189417607376095
+0.0711980491985459 0.7803347280334707 0.0711980491985459 0.7803347280334707 0.1193089180530691
+0.0711980491985459 0.7845188284518807 0.0711980491985459 0.7845188284518807 0.1159470936169147
+0.07458843249371476 0.7782426778242657 0.07458843249371476 0.7782426778242657 0.1191720001654732
+0.07797881578888362 0.7719665271966507 0.07797881578888362 0.7719665271966507 0.12143009409202331
+0.07797881578888362 0.7761506276150607 0.07797881578888362 0.7761506276150607 0.11870039105097896
+0.08136919908405248 0.7656903765690357 0.08136919908405248 0.7656903765690357 0.12265955241995925
+0.08136919908405248 0.7698744769874457 0.08136919908405248 0.7698744769874457 0.12039987000861178
+0.08475958237922132 0.7594142259414207 0.08475958237922132 0.7594142259414207 0.12288206474061837
+0.08475958237922132 0.7635983263598307 0.08475958237922132 0.7635983263598307 0.12108224363952717
+0.08814996567439015 0.7531380753138057 0.08814996567439015 0.7531380753138057 0.12220804667568273
+0.08814996567439015 0.7573221757322157 0.08814996567439015 0.7573221757322157 0.12081465988419617
+0.09154034896955902 0.7468619246861907 0.09154034896955902 0.7468619246861907 0.12083950887227048
+0.09154034896955902 0.7510460251046007 0.09154034896955902 0.7510460251046007 0.1197549935849831
+0.09493073226472787 0.7405857740585757 0.09493073226472787 0.7405857740585757 0.11906817776517155
+0.09493073226472787 0.7447698744769857 0.09493073226472787 0.7447698744769857 0.1181523308055517
+0.09832111555989675 0.7343096234309607 0.09832111555989675 0.7343096234309607 0.11726466398636783
+0.09832111555989675 0.7384937238493707 0.09832111555989675 0.7384937238493707 0.11634076116594201
+0.10171149885506564 0.7280334728033457 0.10171149885506563 0.7280334728033457 0.11585294065640199
+0.10171149885506564 0.7322175732217557 0.10171149885506563 0.7322175732217557 0.11472132439747894
+0.10510188215023453 0.7217573221757307 0.10510188215023453 0.7217573221757307 0.11526521226566379
+0.10510188215023453 0.7259414225941407 0.10510188215023453 0.7259414225941407 0.11372633052194904
+0.10849226544540343 0.7196652719665257 0.10849226544540343 0.7196652719665257 0.11376368188528498
+0.11188264874057234 0.7133891213389107 0.11188264874057234 0.7133891213389107 0.11514862237812935
+0.11188264874057234 0.7175732217573207 0.11188264874057234 0.7175732217573207 0.11271853204924805
+0.11527303203574124 0.7071129707112958 0.11527303203574124 0.7071129707112958 0.1180431984783243
+0.11527303203574124 0.7112970711297057 0.11527303203574124 0.7112970711297057 0.11491358389475374
+0.11866341533091013 0.7008368200836808 0.11866341533091011 0.7008368200836808 0.12242825432237749
+0.11866341533091013 0.7050209205020908 0.11866341533091011 0.7050209205020908 0.11861481916027479
+0.12205379862607901 0.6945606694560658 0.12205379862607901 0.6945606694560658 0.1281199822275673
+0.12205379862607901 0.6987447698744758 0.12205379862607901 0.6987447698744758 0.12370955308555139
+0.12544418192124793 0.6882845188284508 0.12544418192124793 0.6882845188284508 0.13482089730410987
+0.12544418192124793 0.6924686192468608 0.12544418192124793 0.6924686192468608 0.12994720895836986
+0.1288345652164168 0.6820083682008358 0.1288345652164168 0.6820083682008358 0.14218219097980056
+0.1288345652164168 0.6861924686192458 0.1288345652164168 0.6861924686192458 0.13699900676952456
+0.13222494851158573 0.6799163179916308 0.13222494851158573 0.6799163179916308 0.14451694552254424
+0.1356153318067546 0.6778242677824258 0.13561533180675459 0.6778242677824258 0.14685433273969276
+0.1390057151019235 0.6757322175732208 0.1390057151019235 0.6757322175732208 0.1491384483680794
+0.1423960983970924 0.6736401673640158 0.1423960983970924 0.6736401673640158 0.1513218975829178
+0.1457864816922613 0.6715481171548108 0.1457864816922613 0.6715481171548108 0.1533667176953185
+0.1491768649874302 0.6694560669456058 0.1491768649874302 0.6694560669456058 0.15524478980067347
+0.1525672482825991 0.6631799163179908 0.15256724828259907 0.6631799163179908 0.16189378943012336
+0.15595763157776799 0.6610878661087858 0.15595763157776799 0.6610878661087858 0.16330388400505125
+0.1661287814632747 0.6464435146443508 0.1661287814632747 0.6464435146443508 0.1756635598422885
+0.1729094751987449 0.6380753412283874 0.1729094751987449 0.6380753412283874 0.18147732142393466
+0.17629915233361507 0.6359839969139026 0.17629915233361507 0.6359839969139026 0.18206372075665334
+0.1830795571239981 0.6276158427244325 0.18307955712399807 0.6276158427244325 0.1878980754652099
+0.1864709400153677 0.6255233326935968 0.1864709400153677 0.6255233326935968 0.18861586369616679
+0.18986083262936104 0.6234281518981257 0.18986083262936104 0.6234281518981257 0.18939698578453512
+0.19324299472998016 0.6171360546533139 0.19324299472998016 0.6171360546533139 0.1952558837655323
+0.19662897705101764 0.6150336935736211 0.19662897705101764 0.6150336935736211 0.1963088406057372
+0.20005462205900046 0.6129299664756029 0.20005462205900046 0.6129299664756029 0.19743014468314546
+0.19325007058546972 0.6213299232413919 0.19325007058546972 0.6213299232413919 0.19024929509066002
+0.17968748443648078 0.6338925390013843 0.17968748443648078 0.6338925390013843 0.18264675045269166
+0.18307490992852762 0.6318003130232209 0.18307490992852762 0.6318003130232209 0.18324831452126558
+0.16951916475844359 0.6443514644351458 0.16951916475844356 0.6443514644351458 0.17634943137513967
+0.1729093865991055 0.6422594203123484 0.1729093865991055 0.6422594203123485 0.1769612724913814
+0.1593480148729369 0.6548117154811708 0.1593480148729369 0.6548117154811708 0.16927323817123432
+0.1593480148729369 0.6589958158995808 0.1593480148729369 0.6589958158995808 0.16452661181550196
+0.16273839816810579 0.6527196652719658 0.16273839816810579 0.6527196652719658 0.1702499881649533
+0.1661287814632747 0.6506276150627608 0.1661287814632747 0.6506276150627608 0.1710837027676089
+0.1525672482825991 0.6673640167364008 0.15256724828259907 0.6673640167364008 0.1569378258235354
+0.21167008278354907 0.5898673038170948 0.21167008278354907 0.5898673038170948 0.2243356578959208
+0.211409405569848 0.5935521513257249 0.21140940556984802 0.593552151325725 0.21906803807618982
+0.21115915168676494 0.5972151238177952 0.21115915168676494 0.5972151238177953 0.2139064965424193
+0.2225477639108997 0.5740834236464271 0.2225477639108997 0.5740834236464271 0.24580810909332138
+0.21483169415886252 0.5880429329650995 0.21483169415886252 0.5880429329650995 0.22605154208369238
+0.2182608268561595 0.5783919504951275 0.21826082685615947 0.5783919504951275 0.23993244287540796
+0.21819222057899612 0.5822957713947057 0.21819222057899612 0.5822957713947057 0.23384562280930718
+0.21802814702601678 0.5861744005151087 0.21802814702601678 0.5861744005151087 0.22790723264799362
+0.22186191287533868 0.5774430024860258 0.2218619128753387 0.5774430024860258 0.24062713664292476
+0.20515128614345352 0.6036061713384024 0.20515128614345352 0.6036061713384024 0.20734418159550533
+0.2034573365488565 0.6064688724233278 0.20345733654885653 0.6064688724233278 0.2043218226314463
+0.20779966760256013 0.6024267213750513 0.20779966760256016 0.6024267213750513 0.20791684304266447
+0.21086650428966924 0.6008189800188535 0.21086650428966927 0.6008189800188535 0.2089315908324129
+0.20388324898758414 0.610837792924772 0.20388324898758414 0.610837792924772 0.19843627851507503
+0.38184423925642214 0.3520785623060694 0.38184423925642214 0.3520785623060694 0.3017294234978288
+0.3787748986876953 0.3536414334265195 0.3787748986876953 0.3536414334265195 0.29368505265184014
+0.3757275029806708 0.3552677266801098 0.3757275029806708 0.3552677266801098 0.285494115623336
+0.3694414434130033 0.35498464659720214 0.3694414434130033 0.35498464659720214 0.26771286082669193
+0.3663846743825259 0.3567820969358894 0.3663846743825259 0.3567820969358894 0.258996338846539
+0.3727132506029008 0.35695247219128756 0.3727132506029008 0.35695247219128756 0.27719168983224346
+0.36336297264276174 0.35866330363565146 0.3633629726427618 0.35866330363565146 0.250210279508471
+0.35699908735819563 0.3588354759752688 0.35699908735819563 0.3588354759752688 0.23179108885475383
+0.3539339626330134 0.360776335425999 0.3539339626330134 0.360776335425999 0.22266874820034913
+0.3603919696557447 0.36059397513116265 0.3603919696557447 0.36059397513116265 0.2414193758462155
+0.3508136339418162 0.3626943526322376 0.3508136339418162 0.36269435263223754 0.21337631212575
+0.34456495533126147 0.36396687880426903 0.34456495533126147 0.363966878804269 0.19563332297075844
+0.3416897322636962 0.36621119108873446 0.3416897322636962 0.36621119108873446 0.18726902910369594
+0.34794179871687586 0.3650919011636719 0.34794179871687586 0.3650919011636719 0.20463896271661294
+0.33875432111364184 0.3682196480472441 0.33875432111364184 0.3682196480472441 0.1790395737612569
+0.3299107685104081 0.37329512835381684 0.3299107685104081 0.37329512835381684 0.15691759334434122
+0.33293974860111997 0.37160875821645756 0.3329397486011199 0.37160875821645756 0.1640115988325834
+0.3357605538928075 0.3701562793772091 0.3357605538928075 0.3701562793772091 0.171028152966521
+0.3270271749661028 0.3754277612965792 0.32702717496610273 0.37542776129657923 0.15081372297382567
+0.3241952860495274 0.37744456158415685 0.3241952860495274 0.37744456158415685 0.14562690123134178
+0.3213223185154455 0.3795081853975614 0.3213223185154455 0.3795081853975614 0.14130974286308987
+0.31841495771972755 0.3815926944071051 0.31841495771972755 0.3815926944071051 0.13805670133825346
+0.31558707336123165 0.38383800331590534 0.31558707336123165 0.3838380033159053 0.13615976813808525
+0.313722729207058 0.38625547574202407 0.313722729207058 0.38625547574202407 0.13609797042129318
+0.31039464229242325 0.3874709748726823 0.31039464229242325 0.38747097487268223 0.13562372849007553
+0.3075535086604163 0.39035500191123895 0.30755350866041636 0.39035500191123895 0.13796321543080578
+0.304686214658084 0.39301329891994713 0.304686214658084 0.39301329891994713 0.14154188705122042
+0.2964243260877929 0.40005813086939424 0.29642432608779284 0.4000581308693942 0.15717309814166391
+0.3019489668137442 0.39552637263124013 0.3019489668137442 0.39552637263124013 0.14610732528390316
+0.2992077298750998 0.39777419248716084 0.29920772987509986 0.3977741924871609 0.15125742847438484
+0.2940288514899866 0.40282015934983556 0.29402885148998653 0.40282015934983556 0.16446082121556996
+0.29154032008938446 0.40554394660289583 0.29154032008938446 0.40554394660289583 0.17226065067776772
+0.2890209884916178 0.40825843418164426 0.2890209884916178 0.40825843418164426 0.18045620400288678
+0.28650060337614824 0.4109695325626421 0.2865006033761483 0.4109695325626421 0.18891015476058023
+0.2839502996040681 0.41372073201855847 0.2839502996040681 0.41372073201855847 0.19762374485960943
+0.2814400902170121 0.41658158970595316 0.28144009021701205 0.4165815897059532 0.20663052793245182
+0.2789785948311103 0.4195289131617492 0.2789785948311103 0.4195289131617492 0.21576744150499017
+0.276690764485915 0.42252852898074633 0.27669076448591495 0.4225285289807463 0.2248063708388828
+0.27449249808083853 0.42547934735613696 0.27449249808083853 0.42547934735613696 0.233513599743973
+0.2722246809304983 0.4284495358040861 0.2722246809304983 0.4284495358040861 0.24205203617635254
+0.26984345714974844 0.4315124769816819 0.2698434571497485 0.4315124769816819 0.2505418117830827
+0.26689667844905596 0.43474162637829894 0.266896678449056 0.4347416263782989 0.2591945799768233
+0.26525577202040945 0.43828115973125986 0.26525577202040945 0.43828115973125986 0.26791430042545544
+0.2634414239507176 0.441407118242972 0.2634414239507176 0.441407118242972 0.27528850343825345
+0.2615739714450962 0.44442830646578435 0.2615739714450962 0.4444283064657844 0.28200757772225765
+0.25971626808042286 0.4473393801740054 0.25971626808042286 0.4473393801740054 0.28805593222830245
+0.25791099566622006 0.4501982563536705 0.25791099566622006 0.45019825635367056 0.2935852768857004
+0.25629602671359264 0.4530973519197778 0.2562960267135926 0.4530973519197778 0.298840103157616
+0.2551486900334257 0.4558222765720598 0.2551486900334257 0.4558222765720598 0.3036639762454565
+0.25355695810473416 0.45880599454653265 0.25355695810473416 0.45880599454653265 0.3083277385977014
+0.2519817792748712 0.46187256296763257 0.25198177927487114 0.46187256296763257 0.312692801196796
+0.25042229683778133 0.46495619382553094 0.25042229683778133 0.46495619382553094 0.3166217697619449
+0.2489069905324496 0.4680351544181856 0.2489069905324496 0.4680351544181856 0.32009911874996044
+0.24749841671149767 0.4711061052136934 0.24749841671149767 0.4711061052136934 0.32316895467207746
+0.24618487449088214 0.47418913429681186 0.24618487449088214 0.47418913429681186 0.32588398384868755
+0.24488925861744382 0.47732364598312843 0.24488925861744382 0.47732364598312843 0.32821176850398603
+0.24361477205753831 0.480515206576893 0.24361477205753831 0.480515206576893 0.33013314573639757
+0.2423344762125045 0.4837164385054041 0.2423344762125045 0.4837164385054041 0.3315769356393239
+0.2410793699176079 0.4869389213065834 0.2410793699176079 0.4869389213065834 0.3325829078387583
+0.23987222572523215 0.4901953254532189 0.23987222572523215 0.4901953254532189 0.3331791858354076
+0.2387251529203327 0.49346673114579137 0.2387251529203327 0.49346673114579137 0.33336869607770764
+0.23762441850960872 0.49676207280214363 0.23762441850960872 0.49676207280214363 0.3331461883977804
+0.23655360974418008 0.5000950842058703 0.23655360974418008 0.5000950842058703 0.3324993224817802
+0.23552661701882463 0.5034564739499376 0.23552661701882463 0.5034564739499378 0.3314390980246598
+0.23453407011499283 0.50685294706301 0.23453407011499286 0.50685294706301 0.32996130009773594
+0.23357512277504666 0.5102777547188794 0.23357512277504666 0.5102777547188794 0.328073412343397
+0.23265231788565766 0.5137175526750658 0.23265231788565766 0.5137175526750658 0.3257940094822535
+0.23177551101029115 0.5171596283224125 0.23177551101029117 0.5171596283224124 0.32315275570236723
+0.23093852437868367 0.5206246282496528 0.23093852437868367 0.5206246282496528 0.32014681226856506
+0.23014615946543943 0.5241321018948318 0.23014615946543945 0.5241321018948318 0.3167703566224987
+0.22947150861049473 0.52766516748965 0.22947150861049473 0.52766516748965 0.3130878429532131
+0.22883012305363107 0.5312198759513342 0.22883012305363107 0.5312198759513342 0.3090737800166496
+0.22818635910879115 0.5347793075088818 0.22818635910879115 0.5347793075088818 0.3047554755621081
+0.22752347276045193 0.5383454470606742 0.2275234727604519 0.5383454470606742 0.30015588978148955
+0.22683306922994179 0.5419505810976512 0.2268330692299418 0.5419505810976512 0.2952663930484492
+0.22617949584346114 0.5455907821776428 0.22617949584346111 0.5455907821776428 0.2901425937541085
+0.22598710561478141 0.5492627095680255 0.2259871056147814 0.5492627095680255 0.2848201748318689
+0.22582357234716033 0.5529957304590603 0.22582357234716036 0.5529957304590604 0.27922547482578114
+0.22548561553330473 0.5566336753229845 0.22548561553330473 0.5566336753229845 0.27361994365959946
+0.2250546266608816 0.5602488579748965 0.22505462666088158 0.5602488579748965 0.26793560533628963
+0.22454499363120276 0.5638948111592406 0.22454499363120276 0.5638948111592406 0.2621395757494272
+0.22398050055681404 0.5675100020550651 0.22398050055681404 0.5675100020550651 0.2563715472653439
+0.22336509905351504 0.5707768930130455 0.223365099053515 0.5707768930130453 0.2511377996465489
+0.22525966314555745 0.5728831884533272 0.22525966314555745 0.5728831884533272 0.247336821791659
+0.3881100012146516 0.34551414628899885 0.3881100012146516 0.34551414628899885 0.31697447759032077
+0.38492997627258624 0.3505807305545212 0.38492997627258624 0.3505807305545212 0.3096084955887264
+0.3880367341326621 0.3491450732015293 0.3880367341326621 0.3491450732015293 0.31732963751333504
+0.38497462481020034 0.3541730129850255 0.38497462481020034 0.3541730129850255 0.31063803870325635
+0.39550033234274595 0.33175006011391645 0.39550033234274595 0.33175006011391645 0.33414370139861105
+0.3917598951192356 0.33674421458522513 0.3917598951192356 0.33674421458522513 0.3255340188723656
+0.39508035472677766 0.33547698480498306 0.39508035472677766 0.33547698480498306 0.33314818393756446
+0.3914836317302975 0.34047709246147556 0.3914836317302975 0.34047709246147556 0.32487336720060306
+0.3912766162136709 0.3441503468241052 0.3912766162136709 0.3441503468241052 0.3246101664033801
+0.4043304337079302 0.3178853112307156 0.40433043370793026 0.3178853112307156 0.3509932456004807
+0.4000908157067625 0.3231214489651719 0.4000908157067626 0.3231214489651719 0.3436946239755798
+0.40341134230621994 0.3215677536497053 0.40341134230621994 0.3215677536497053 0.34993366113018093
+0.39943932353848083 0.326884388136926 0.39943932353848083 0.32688438813692594 0.3425263025371632
+0.3988834066291583 0.33059379358797125 0.3988834066291583 0.33059379358797125 0.341434577334385
+0.415161549907848 0.3046021627685925 0.415161549907848 0.3046021627685925 0.36116464081115685
+0.40956050108174724 0.3108102376808657 0.4095605010817472 0.3108102376808657 0.3572865984685927
+0.41400167707231755 0.30776999771569574 0.41400167707231755 0.30776999771569574 0.3617717424568166
+0.41224618318945394 0.31002129031983006 0.41224618318945394 0.31002129031983006 0.36060647752133923
+0.4087464509479724 0.3138639826848307 0.4087464509479724 0.3138639826848307 0.35722672818929063
+0.4078952252102057 0.31717599261753365 0.40789522521020577 0.31717599261753365 0.3568952121644082
+0.42751311415289434 0.29184103396369704 0.42751311415289434 0.29184103396369704 0.35774688676617944
+0.4212101344032775 0.2978555677733738 0.4212101344032774 0.2978555677733738 0.3611796938480624
+0.4260376290851541 0.29494258302643245 0.42603762908515413 0.29494258302643245 0.3607352943455117
+0.42428072044046117 0.2972149212006552 0.42428072044046117 0.2972149212006552 0.36225020684876896
+0.42020246847076603 0.3010647804630006 0.420202468470766 0.3010647804630006 0.363266703547285
+0.41873037193364593 0.3042884217393571 0.4187303719336459 0.3042884217393571 0.3645800220221816
+0.44823789178802487 0.27488955953242933 0.4482378917880249 0.2748895595324293 0.32386311646090954
+0.44614725577852504 0.2780669477398467 0.44614725577852504 0.2780669477398467 0.33086595309358463
+0.4439671638644949 0.28126631332852725 0.4439671638644949 0.2812663133285272 0.3376848160213404
+0.4419500952334126 0.28450864211574356 0.4419500952334126 0.2845086421157435 0.34405140279382346
+0.4327761408076652 0.28858455234601255 0.4327761408076652 0.2885845523460126 0.353962490371978
+0.43654753105355404 0.2883014658515573 0.43654753105355404 0.2883014658515573 0.35250051742926675
+0.440223940768844 0.28808328604407507 0.440223940768844 0.288083286044075 0.35021183199407613
+0.4311340957185732 0.29179090877408737 0.4311340957185732 0.29179090877408737 0.35804347003946463
+0.4560094317173036 0.2687979586823162 0.4560094317173036 0.2687979586823162 0.30336486629093146
+0.4539727201005264 0.27197315508406944 0.4539727201005264 0.27197315508406944 0.3111701706569279
+0.4597151043172891 0.26907842068662957 0.4597151043172891 0.2690784206866295 0.29640867965640333
+0.4519427716338291 0.27512829518977616 0.4519427716338291 0.27512829518977616 0.31880879129366374
+0.48166922981497634 0.2546241127525429 0.48166922981497634 0.2546241127525429 0.22139196354175325
+0.47927687382675543 0.2571195779566056 0.47927687382675543 0.2571195779566056 0.23117136949003772
+0.47686154406808606 0.2595880749238335 0.47686154406808606 0.2595880749238335 0.24095011421766974
+0.4744258413105665 0.2620214348449062 0.4744258413105665 0.2620214348449062 0.25068384568332136
+0.47197991824794344 0.26442229749095536 0.47197991824794344 0.26442229749095536 0.26032057516619395
+0.46969158207361317 0.2670472307237478 0.4696915820736132 0.26704723072374786 0.2696763243429991
+0.46344317712937183 0.2695615363270782 0.46344317712937183 0.2695615363270782 0.28870171405503825
+0.46750319540926355 0.2705313109016679 0.4675031954092636 0.2705313109016679 0.2797772946672042
+0.5006973710480954 0.24694483533871114 0.5006973710480954 0.24694483533871114 0.14719779899728055
+0.4897057451426494 0.250364856010402 0.4897057451426495 0.250364856010402 0.19067095970081474
+0.49832116815429756 0.24945530248175005 0.49832116815429756 0.24945530248175005 0.15766796116674756
+0.4929743154801997 0.25130234729137335 0.4929743154801997 0.25130234729137335 0.17916078270844238
+0.4959795579644157 0.25187971858117725 0.4959795579644157 0.25187971858117725 0.16798504199948464
+0.4874610076946865 0.25304780331613363 0.4874610076946864 0.25304780331613363 0.2004203321758765
+0.48515594578220056 0.2556973916242218 0.4851559457822006 0.2556973916242218 0.21038339556571137
+0.5205363477290061 0.24048378672108586 0.5205363477290063 0.24048378672108586 0.07024348983591565
+0.5088764974413278 0.24301628126224617 0.5088764974413279 0.2430162812622462 0.1132234787578147
+0.5178984197983196 0.2428974707026369 0.5178984197983195 0.24289747070263693 0.07966555305818436
+0.5121265482308598 0.24415780104844068 0.5121265482308598 0.24415780104844068 0.10102609762935622
+0.5153337554335696 0.24533619087428524 0.5153337554335696 0.24533619087428524 0.0895977019970076
+0.5063856503832678 0.24554889242759725 0.5063856503832679 0.24554889242759725 0.1240757552590142
+0.503930130493688 0.2480412495702632 0.503930130493688 0.24804124957026322 0.1348577050818495
+0.5293444333129179 0.23713018548685602 0.5293444333129179 0.23713018548685602 0.05448337406459058
+0.5325992116591588 0.2385558199405886 0.5325992116591588 0.2385558199405886 0.05942808012118083
+0.5358328802360461 0.24003404576176368 0.535832880236046 0.2400340457617637 0.06902528939661413
+0.5265106123283679 0.23948564173437192 0.5265106123283679 0.23948564173437195 0.05749473009556159
+0.5237570337489003 0.2418360793824754 0.5237570337489003 0.2418360793824754 0.0632489981504155
+0.538744257178227 0.23777623997462397 0.538744257178227 0.23777623997462397 0.07629513649524382
+0.5635530461285564 0.2210639694339239 0.5635530461285564 0.2210639694339239 0.17534198285821437
+0.5417172119045229 0.23556515933079158 0.5417172119045229 0.23556515933079156 0.08562534739377185
+0.5447631491031943 0.2334195488177058 0.5447631491031943 0.2334195488177058 0.09661693727533482
+0.5478546726550285 0.23131804217217092 0.5478546726550285 0.23131804217217092 0.10873955037402498
+0.5509781633556153 0.22924654584788648 0.5509781633556153 0.22924654584788648 0.1216098454639598
+0.5541224918676194 0.22719301390016788 0.5541224918676194 0.22719301390016788 0.134931820452343
+0.5604254126362981 0.22309852460673582 0.5604254126362981 0.22309852460673582 0.16199363469919892
+0.5572808608377151 0.22514282703245814 0.5572808608377152 0.2251428270324581 0.14848285143147869
+0.566701750084487 0.21902302894339137 0.566701750084487 0.2190230289433914 0.18859039901509986
+0.5703551405656289 0.2167633238834772 0.5703551405656287 0.2167633238834772 0.20378441786723722
+0.5745616447777229 0.2162193047669752 0.5745616447777229 0.21621930476697518 0.22285642414098197
+0.5781044536824681 0.21540238624847516 0.5781044536824681 0.21540238624847516 0.23821614299617747
+0.581536752035108 0.21445718404109593 0.5815367520351079 0.21445718404109596 0.25252703344425903
+0.5850074547754754 0.21339967613097946 0.5850074547754754 0.21339967613097946 0.26644241797319107
+0.5884087939099664 0.21233895283141602 0.5884087939099664 0.212338952831416 0.2795597279068259
+0.5916625742297281 0.21153515719625904 0.5916625742297281 0.21153515719625907 0.2919340137415498
+0.5947276700132038 0.21085948747012737 0.5947276700132038 0.21085948747012737 0.3032766699691098
+0.5980112466767274 0.209952108496834 0.5980112466767274 0.20995210849683402 0.3147642578756806
+0.601196525335888 0.2087363092006173 0.601196525335888 0.20873630920061734 0.32483116512984583
+0.6046387326303021 0.20745041842066658 0.6046387326303021 0.2074504184206666 0.3352193628693971
+0.6082820354151132 0.20575570928407858 0.6082820354151132 0.20575570928407855 0.3450101692168627
+0.6118249284817936 0.20562840383102599 0.6118249284817936 0.20562840383102596 0.35644791239612816
+0.6464435146443365 0.16612878146327814 0.6464435146443365 0.16612878146327814 0.3723310293068625
+0.6401673640167211 0.16951916475844708 0.6401673640167211 0.16951916475844708 0.3634971865747578
+0.6443514644351314 0.16951916475844708 0.6443514644351315 0.16951916475844708 0.37331727489645855
+0.6380752582020904 0.17290953452264782 0.6380752582020904 0.17290953452264782 0.3645976969452867
+0.6359828057975014 0.1762997028373657 0.6359828057975014 0.1762997028373657 0.365858196812539
+0.6338897239736134 0.1796891656348741 0.6338897239736134 0.1796891656348741 0.36723594503889667
+0.6276088662708282 0.18307145870824304 0.6276088662708282 0.18307145870824304 0.358004006049011
+0.6255131967844288 0.1864458550708575 0.6255131967844288 0.1864458550708575 0.3592121589079978
+0.623417739358072 0.18980530576651497 0.623417739358072 0.18980530576651497 0.36028799055877503
+0.621319698993274 0.193144677135246 0.621319698993274 0.193144677135246 0.361147797915518
+0.6192067950560664 0.19645870974071736 0.6192067950560664 0.19645870974071736 0.36168610935847934
+0.6147521984357712 0.20340158339940467 0.6147521984357712 0.2034015833994047 0.36178974113392876
+0.6170435543718977 0.1997931211448102 0.6170435543718976 0.1997931211448102 0.36182886166027656
+0.6317959356192202 0.1830764048217527 0.6317959356192202 0.1830764048217527 0.36867656493041184
+0.656903765690362 0.15595763157777132 0.656903765690362 0.15595763157777132 0.37944148174133185
+0.6610878661087722 0.15595763157777132 0.6610878661087723 0.15595763157777132 0.3879567527805236
+0.6548117154811569 0.15934801487294026 0.6548117154811569 0.15934801487294026 0.3800625839881915
+0.6527196652719518 0.1627383981681092 0.6527196652719517 0.1627383981681092 0.38080727963426714
+0.6506276150627467 0.16612878146327814 0.6506276150627467 0.16612878146327814 0.3817036779849758
+0.6820083682008233 0.12883456521641978 0.6820083682008233 0.12883456521641978 0.38481411879653
+0.6799163179916182 0.13222494851158872 0.6799163179916182 0.13222494851158872 0.3866652472273466
+0.6778242677824131 0.13561533180675767 0.6778242677824132 0.13561533180675767 0.3883819243879832
+0.675732217573208 0.1390057151019266 0.675732217573208 0.1390057151019266 0.3899532497570814
+0.6736401673640029 0.14239609839709555 0.6736401673640029 0.14239609839709555 0.39137972114871505
+0.6715481171547978 0.1457864816922645 0.6715481171547978 0.1457864816922645 0.3926728102970715
+0.6694560669455927 0.14917686498743343 0.6694560669455926 0.14917686498743343 0.393853907060769
+0.6673640167363876 0.15256724828260237 0.6673640167363876 0.15256724828260237 0.3949526890362136
+0.6652719665271825 0.15595763157777132 0.6652719665271825 0.15595763157777132 0.3960049981424174
+0.6882845188284387 0.12544418192125084 0.6882845188284387 0.12544418192125084 0.3869675052166124
+0.6861924686192336 0.12883456521641978 0.6861924686192334 0.12883456521641978 0.38928436688769147
+0.694560669456054 0.1220537986260819 0.6945606694560541 0.1220537986260819 0.3880670604861631
+0.6924686192468489 0.12544418192125084 0.6924686192468489 0.12544418192125084 0.390651625905219
+0.7008368200836692 0.11866341533091299 0.7008368200836692 0.11866341533091297 0.38862405671091294
+0.6987447698744642 0.12205379862608191 0.6987447698744642 0.12205379862608191 0.39119671389479477
+0.7071129707112845 0.11527303203574403 0.7071129707112845 0.11527303203574403 0.3892642633126786
+0.7050209205020793 0.11866341533091297 0.7050209205020793 0.11866341533091297 0.3914934815409103
+0.7133891213389 0.11188264874057507 0.7133891213389 0.11188264874057507 0.39065231886663865
+0.711297071129695 0.11527303203574402 0.711297071129695 0.11527303203574402 0.39219999160892577
+0.7217573221757202 0.10510188215023719 0.7217573221757202 0.10510188215023719 0.39346315675670046
+0.7196652719665152 0.10849226544540612 0.7196652719665152 0.10849226544540612 0.39339249775414126
+0.7175732217573101 0.11188264874057507 0.7175732217573101 0.11188264874057507 0.39397017408597623
+0.7280334728033359 0.10171149885506825 0.7280334728033359 0.10171149885506825 0.39914696356403606
+0.7259414225941305 0.10510188215023719 0.7259414225941305 0.10510188215023719 0.39792208714153315
+0.7343096234309511 0.09832111555989931 0.7343096234309511 0.09832111555989931 0.40674308303456813
+0.732217573221746 0.10171149885506825 0.732217573221746 0.10171149885506825 0.40442215489100924
+0.7405857740585664 0.09493073226473037 0.7405857740585664 0.09493073226473037 0.41597022233215947
+0.7384937238493613 0.09832111555989931 0.7384937238493613 0.09832111555989931 0.4127706190967286
+0.7468619246861817 0.09154034896956142 0.7468619246861817 0.09154034896956142 0.4262819561858118
+0.7447698744769766 0.09493073226473037 0.7447698744769767 0.09493073226473037 0.42255100400482254
+0.7531380753137971 0.08814996567439248 0.753138075313797 0.08814996567439248 0.4369454927220877
+0.751046025104592 0.09154034896956142 0.751046025104592 0.09154034896956142 0.43311218874347207
+0.7594142259414124 0.08475958237922354 0.7594142259414124 0.08475958237922354 0.44713957599504134
+0.7573221757322073 0.08814996567439248 0.7573221757322073 0.08814996567439248 0.4436600967560414
+0.7656903765690277 0.0813691990840546 0.7656903765690277 0.0813691990840546 0.45605086209898044
+0.7635983263598226 0.08475958237922354 0.7635983263598226 0.08475958237922354 0.4533583497187257
+0.7740585774058482 0.07458843249371672 0.7740585774058482 0.07458843249371672 0.4635445323916964
+0.771966527196643 0.07797881578888566 0.771966527196643 0.07797881578888566 0.4629556859198196
+0.7698744769874379 0.0813691990840546 0.7698744769874378 0.0813691990840546 0.4614201113575436
+0.7803347280334635 0.07119804919854777 0.7803347280334635 0.07119804919854777 0.4663257134454803
+0.7782426778242584 0.07458843249371672 0.7782426778242585 0.07458843249371672 0.4672820140793504
+0.7866108786610788 0.06780766590337883 0.7866108786610787 0.06780766590337883 0.46604523393750036
+0.7845188284518737 0.07119804919854777 0.7845188284518737 0.07119804919854777 0.46865148872074697
+0.7928870292886941 0.06441728260820989 0.7928870292886941 0.06441728260820989 0.46265808960122595
+0.790794979079489 0.06780766590337883 0.790794979079489 0.06780766590337883 0.46690357629277973
+0.7991631799163095 0.06102689931304095 0.7991631799163095 0.06102689931304095 0.45634068176468895
+0.7970711297071044 0.06441728260820989 0.7970711297071044 0.06441728260820989 0.46210397232166117
+0.8054393305439248 0.05763651601787201 0.8054393305439248 0.05763651601787201 0.4474777864734895
+0.8033472803347197 0.06102689931304095 0.8033472803347196 0.06102689931304095 0.45453862057180444
+0.8117154811715401 0.054246132722703067 0.8117154811715402 0.054246132722703067 0.4366356959556204
+0.809623430962335 0.05763651601787201 0.809623430962335 0.05763651601787201 0.44469364437864595
+0.8179916317991555 0.050855749427534125 0.8179916317991555 0.050855749427534125 0.42452076062996563
+0.8158995815899504 0.054246132722703067 0.8158995815899504 0.054246132722703067 0.43322055328599923
+0.8242677824267708 0.04746536613236518 0.8242677824267709 0.04746536613236518 0.41192261659081336
+0.8221757322175657 0.050855749427534125 0.8221757322175657 0.050855749427534125 0.42088567907826707
+0.8305439330543861 0.04407498283719624 0.8305439330543861 0.04407498283719624 0.3996428789992739
+0.828451882845181 0.04746536613236518 0.8284518828451811 0.04746536613236518 0.4085035410692331
+0.8389121338912066 0.03729421624685836 0.8389121338912066 0.03729421624685836 0.3801238713903399
+0.8368200836820014 0.0406845995420273 0.8368200836820013 0.0406845995420273 0.3884137234923562
+0.8347280334727963 0.04407498283719624 0.8347280334727963 0.04407498283719624 0.39685656905802297
+0.8451882845188219 0.03390383295168942 0.845188284518822 0.03390383295168942 0.3712885141320806
+0.8430962343096168 0.03729421624685836 0.8430962343096168 0.03729421624685836 0.37881646989253154
+0.8514644351464372 0.030513449656520475 0.8514644351464372 0.030513449656520475 0.3645407643321796
+0.8493723849372321 0.03390383295168942 0.8493723849372321 0.03390383295168942 0.37121597991017324
+0.8577405857740525 0.027123066361351533 0.8577405857740527 0.027123066361351533 0.35990460173904376
+0.8556485355648474 0.030513449656520475 0.8556485355648474 0.030513449656520475 0.3657282447813955
+0.8640167364016679 0.02373268306618259 0.8640167364016679 0.02373268306618259 0.3571952378147994
+0.8619246861924628 0.027123066361351533 0.8619246861924629 0.027123066361351533 0.36223223161265056
+0.8702928870292832 0.02034229977101365 0.8702928870292831 0.02034229977101365 0.3560839300114422
+0.8682008368200781 0.02373268306618259 0.8682008368200781 0.02373268306618259 0.3604237052192291
+0.8765690376568985 0.01695191647584471 0.8765690376568985 0.01695191647584471 0.35617739612027227
+0.8744769874476934 0.02034229977101365 0.8744769874476933 0.02034229977101365 0.359894913653807
+0.8828451882845139 0.013561533180675767 0.8828451882845139 0.013561533180675767 0.3570900388676192
+0.8807531380753088 0.01695191647584471 0.8807531380753088 0.01695191647584471 0.3602173093066256
+0.8912133891213343 0.006780766590337883 0.8912133891213344 0.006780766590337883 0.3569369372924929
+0.8891213389121292 0.010171149885506825 0.8891213389121292 0.010171149885506825 0.358493199351336
+0.8870292887029241 0.013561533180675767 0.887029288702924 0.013561533180675767 0.36100732274903646
+0.8953974895397445 0.006780766590337883 0.8953974895397446 0.006780766590337883 0.3601352051903098
+0.006780766588408233 0.8995815899620934 0.006780766588408233 0.8995815899620933 0.09255103906923993
+0.006780766582655347 0.9037656903921077 0.006780766582655347 0.9037656903921077 0.09324109165322397
+0.010171149883099757 0.8974895397536851 0.010171149883099757 0.8974895397536852 0.09273072318878779
+0.013561533179984278 0.8912133891226074 0.013561533179984278 0.8912133891226074 0.09188446039207494
+0.013561533177970242 0.8953974895446214 0.013561533177970242 0.8953974895446214 0.09302313034653009
+0.016951916475686404 0.8849372384939995 0.016951916475686404 0.8849372384939995 0.09070643622691098
+0.01695191647522813 0.8891213389131943 0.01695191647522813 0.8891213389131943 0.0921092021614756
+0.020342299771008127 0.878661087866115 0.020342299771008127 0.8786610878661151 0.08922790580104019
+0.0203422997709922 0.882845188284553 0.0203422997709922 0.882845188284553 0.09081847387662406
+0.023732683066174737 0.8723849372384996 0.023732683066174737 0.8723849372384996 0.08752117891033147
+0.023732683066148157 0.8765690376569409 0.023732683066148157 0.8765690376569409 0.08919862600774507
+0.02712306636134539 0.8661087866108838 0.02712306636134539 0.8661087866108838 0.08571094424010149
+0.027123066361325793 0.8702928870293215 0.027123066361325793 0.8702928870293215 0.08734706719384155
+0.030513449656517214 0.8598326359832651 0.03051344965651721 0.8598326359832651 0.08397966192426325
+0.030513449656508523 0.8640167364016905 0.030513449656508523 0.8640167364016905 0.08541976824363874
+0.03390383295168773 0.8535564853556473 0.03390383295168773 0.8535564853556473 0.08256245140014445
+0.0339038329516848 0.8577405857740638 0.0339038329516848 0.8577405857740638 0.08363242709433795
+0.03729421624685721 0.8472803347280311 0.03729421624685721 0.8472803347280312 0.08172630766838679
+0.0372942162468565 0.8514644351464428 0.0372942162468565 0.8514644351464428 0.08224887589070172
+0.0406845995420262 0.841004184100416 0.0406845995420262 0.841004184100416 0.08173087039025116
+0.04068459954202605 0.8451882845188271 0.04068459954202605 0.8451882845188271 0.0815517139601022
+0.044074982837195076 0.8389121338912117 0.044074982837195076 0.8389121338912117 0.08179451851877706
+0.047465366132363955 0.8326359832635962 0.047465366132363955 0.8326359832635962 0.08314510946155297
+0.04746536613236396 0.8368200836820087 0.04746536613236396 0.8368200836820087 0.0818556852225244
+0.05085574942753279 0.8263598326359807 0.05085574942753279 0.8263598326359807 0.08564004301928997
+0.05085574942753281 0.8305439330543917 0.05085574942753281 0.8305439330543917 0.08353171786844493
+0.05424613272270165 0.8200836820083657 0.054246132722701644 0.8200836820083657 0.08917041115713065
+0.05424613272270165 0.824267782426776 0.054246132722701644 0.824267782426776 0.0863436363201116
+0.05763651601787049 0.8138075313807507 0.05763651601787049 0.8138075313807507 0.09350376982302701
+0.05763651601787048 0.8179916317991607 0.057636516017870475 0.8179916317991607 0.09012235849266566
+0.06102689931303934 0.8075313807531357 0.06102689931303934 0.8075313807531357 0.0983288804168335
+0.06102689931303934 0.8117154811715457 0.06102689931303934 0.8117154811715457 0.09458924709055339
+0.06441728260820821 0.8012552301255207 0.06441728260820821 0.8012552301255207 0.10330405526504294
+0.06441728260820821 0.8054393305439307 0.06441728260820821 0.8054393305439307 0.0994073809425095
+0.06780766590337706 0.7949790794979057 0.06780766590337706 0.7949790794979057 0.10809661594950591
+0.06780766590337706 0.7991631799163157 0.06780766590337706 0.7991631799163157 0.10422926917469
+0.0711980491985459 0.7887029288702907 0.0711980491985459 0.7887029288702907 0.11241038350667577
+0.0711980491985459 0.7928870292887007 0.0711980491985459 0.7928870292887007 0.10873227130733369
+0.07458843249371476 0.7824267782426757 0.07458843249371476 0.7824267782426757 0.11600353659415642
+0.07458843249371476 0.7866108786610857 0.07458843249371476 0.7866108786610857 0.11264177188998446
+0.07797881578888362 0.7803347280334707 0.07797881578888362 0.7803347280334707 0.11574575506786612
+0.08136919908405248 0.7740585774058557 0.08136919908405248 0.7740585774058557 0.1179044248127419
+0.08136919908405248 0.7782426778242657 0.08136919908405248 0.7782426778242657 0.1151798749539431
+0.08475958237922132 0.7677824267782407 0.08475958237922132 0.7677824267782407 0.11905728649222556
+0.08475958237922132 0.7719665271966507 0.08475958237922132 0.7719665271966507 0.11680255580294928
+0.08814996567439015 0.7615062761506257 0.08814996567439015 0.7615062761506257 0.11922884273755417
+0.08814996567439015 0.7656903765690357 0.08814996567439015 0.7656903765690357 0.11743439288270939
+0.09154034896955902 0.7552301255230107 0.09154034896955902 0.7552301255230107 0.11853297691889673
+0.09154034896955902 0.7594142259414207 0.09154034896955902 0.7594142259414207 0.11714570669679931
+0.09493073226472787 0.7489539748953957 0.09493073226472787 0.7489539748953957 0.11717498046120935
+0.09493073226472787 0.7531380753138057 0.09493073226472787 0.7531380753138057 0.11609761298901024
+0.09832111555989675 0.7426778242677807 0.09832111555989675 0.7426778242677807 0.11544872863768087
+0.09832111555989675 0.7468619246861907 0.09832111555989675 0.7468619246861907 0.1145415354461214
+0.10171149885506564 0.7364016736401657 0.10171149885506563 0.7364016736401657 0.11372467926000061
+0.10171149885506564 0.7405857740585757 0.10171149885506563 0.7405857740585757 0.11281185240405885
+0.10510188215023453 0.7301255230125507 0.10510188215023453 0.7301255230125507 0.11242292702999075
+0.10510188215023453 0.7343096234309607 0.10510188215023453 0.7343096234309607 0.11130646015907462
+0.10849226544540343 0.7238493723849357 0.10849226544540343 0.7238493723849357 0.11196670594284686
+0.10849226544540343 0.7280334728033457 0.10849226544540343 0.7280334728033457 0.11044965622761398
+0.11188264874057234 0.7217573221757307 0.11188264874057234 0.7217573221757307 0.11063565890997533
+0.11527303203574124 0.7154811715481157 0.11527303203574124 0.7154811715481157 0.11216131523845861
+0.11527303203574124 0.7196652719665257 0.11527303203574124 0.7196652719665257 0.10977588962828684
+0.11866341533091013 0.7092050209205008 0.11866341533091011 0.7092050209205008 0.11516898075513553
+0.11866341533091013 0.7133891213389107 0.11866341533091011 0.7133891213389107 0.11210020627090671
+0.12205379862607901 0.7029288702928858 0.12205379862607901 0.7029288702928858 0.1196234671758785
+0.12205379862607901 0.7071129707112958 0.12205379862607901 0.7071129707112958 0.11588762127468001
+0.12544418192124793 0.6966527196652708 0.12544418192124793 0.6966527196652708 0.1253326834932185
+0.12544418192124793 0.7008368200836808 0.12544418192124793 0.7008368200836808 0.12101402173093852
+0.1288345652164168 0.6903765690376558 0.1288345652164168 0.6903765690376558 0.1319999133697085
+0.1288345652164168 0.6945606694560658 0.1288345652164168 0.6945606694560658 0.12722682364086182
+0.13222494851158573 0.6841004184100408 0.13222494851158573 0.6841004184100408 0.13928471319600985
+0.13222494851158573 0.6882845188284508 0.13222494851158573 0.6882845188284508 0.1342039305789651
+0.1356153318067546 0.6820083682008358 0.13561533180675459 0.6820083682008358 0.14161001867382972
+0.1390057151019235 0.6799163179916308 0.1390057151019235 0.6799163179916308 0.14391312517093582
+0.1423960983970924 0.6778242677824258 0.1423960983970924 0.6778242677824258 0.1461403648347647
+0.1457864816922613 0.6757322175732208 0.1457864816922613 0.6757322175732208 0.14824744410818416
+0.1491768649874302 0.6736401673640158 0.1491768649874302 0.6736401673640158 0.15020010248954094
+0.1525672482825991 0.6715481171548108 0.15256724828259907 0.6715481171548108 0.15197428714795128
+0.15595763157776799 0.6652719665271958 0.15595763157776799 0.6652719665271958 0.15843700436790306
+0.1593480148729369 0.6631799163179908 0.1593480148729369 0.6631799163179908 0.1597423143916691
+0.16951916475844359 0.6485355648535558 0.16951916475844356 0.6485355648535558 0.17179812226404526
+0.17629869792444156 0.6401679849170315 0.17629869792444156 0.6401679849170315 0.17752552234240745
+0.17968589368710117 0.6380768535953889 0.17968589368710117 0.6380768535953889 0.17806874797434277
+0.186465202488308 0.6297083171519381 0.186465202488308 0.6297083171519381 0.18388336023040827
+0.1898613037720269 0.6276153945910508 0.1898613037720269 0.6276153945910509 0.18456555866959012
+0.19325257971878318 0.6255198777871982 0.19325257971878318 0.6255198777871982 0.18531273350971922
+0.19663546230199183 0.6192315304005637 0.19663546230199183 0.6192315304005637 0.19117572384365325
+0.20000741427427993 0.6171295376835254 0.20000741427427995 0.6171295376835254 0.19218166901283265
+0.20330938465714038 0.6150506655599061 0.20330938465714035 0.6150506655599061 0.19325742097777263
+0.19664957051341445 0.623422469819118 0.19664957051341445 0.623422469819118 0.18612460303542352
+0.183069833763961 0.6359841340858314 0.183069833763961 0.6359841340858314 0.17861715842186235
+0.1864546303878456 0.6338916431632854 0.1864546303878456 0.6338916431632854 0.1791870182484656
+0.17290934422368356 0.6464435101063778 0.17290934422368356 0.6464435101063778 0.17241952534788355
+0.17629838736723394 0.6443517051777435 0.17629838736723394 0.6443517051777435 0.1729753342293763
+0.16273839816810579 0.6569037656903758 0.16273839816810579 0.6569037656903758 0.16557347547737786
+0.16273839816810579 0.6610878661087858 0.16273839816810579 0.6610878661087858 0.16086165382762127
+0.1661287814632747 0.6548117154811708 0.1661287814632747 0.6548117154811708 0.16646196757223622
+0.16951916475844359 0.6527196652719658 0.16951916475844356 0.6527196652719658 0.16721426573783346
+0.15595763157776799 0.6694560669456058 0.15595763157776799 0.6694560669456058 0.15355593154198896
+0.2145927803115254 0.5917416784869325 0.21459278031152537 0.5917416784869324 0.22062136788750522
+0.2143285730355189 0.5954234533858277 0.2143285730355189 0.5954234533858277 0.21530754018431517
+0.2140579343580396 0.5990195189277049 0.21405793435803958 0.5990195189277049 0.2102096892704068
+0.2252953095225782 0.575728215613226 0.22529530952257823 0.5757282156132258 0.24270457779983287
+0.21779851553167504 0.5899166251192226 0.21779851553167504 0.5899166251192226 0.22226686747910104
+0.22133986503726194 0.5807056939027864 0.22133986503726197 0.5807056939027864 0.2355506351415376
+0.22124067735268083 0.5843858214090614 0.22124067735268085 0.5843858214090614 0.2297437716658173
+0.22102722923289486 0.5880961339754198 0.22102722923289483 0.5880961339754198 0.2239910866944176
+0.2248115943396278 0.5791522905177168 0.2248115943396278 0.5791522905177168 0.23718980372329643
+0.20713373305722568 0.6055965644671445 0.20713373305722568 0.6055965644671445 0.20394602100320533
+0.20631908840407343 0.6083123889364823 0.20631908840407345 0.6083123889364823 0.20063897323166863
+0.2104030431182422 0.6043820993327799 0.2104030431182422 0.6043820993327799 0.20419034554775842
+0.2137009403753113 0.6026763358289191 0.21370094037531126 0.6026763358289191 0.20517051423050645
+0.20736714280634339 0.6106738683769892 0.20736714280634336 0.6106738683769892 0.1970505197212603
+0.2066830694100953 0.613699148591437 0.20668306941009532 0.613699148591437 0.19344707270696326
+0.3819436926819959 0.35568224240182317 0.3819436926819959 0.35568224240182317 0.30287928856881857
+0.3789327381536314 0.3572589243047452 0.3789327381536314 0.3572589243047452 0.294953299543192
+0.3850864497747987 0.35770981919895445 0.3850864497747987 0.35770981919895445 0.3122668433723886
+0.3759559737673088 0.35889920873770237 0.3759559737673088 0.35889920873770237 0.28689926693488504
+0.3696962335430038 0.3586999720956902 0.3696962335430038 0.3586999720956902 0.2686788091860313
+0.3667140580464589 0.3605100351750032 0.3667140580464589 0.3605100351750032 0.2600694008197641
+0.3729770787014412 0.36059991187267176 0.3729770787014412 0.36059991187267176 0.27861119310069277
+0.3637589466690019 0.36237868904762066 0.3637589466690019 0.36237868904762066 0.25135052233091454
+0.35740686899695445 0.36254948245149704 0.35740686899695445 0.36254948245149704 0.23246134555332051
+0.354424859350226 0.36454018864142074 0.354424859350226 0.36454018864142074 0.22341920752366587
+0.36082473767275186 0.3642963485721075 0.36082473767275186 0.3642963485721075 0.2425229259530808
+0.35147911109021096 0.36665773523743206 0.35147911109021096 0.36665773523743206 0.21440120677703603
+0.3451204168163371 0.36746535692971766 0.3451204168163371 0.36746535692971766 0.19611148948769586
+0.34222714651812886 0.3696457203770782 0.34222714651812886 0.3696457203770782 0.1876010535443253
+0.34863129391989905 0.3688900536227144 0.34863129391989905 0.3688900536227144 0.20563684886837255
+0.3392150241225993 0.37169411244615286 0.3392150241225993 0.37169411244615286 0.17907845443504058
+0.3324592992235514 0.3745803535240691 0.3324592992235514 0.3745803535240691 0.16201242310204617
+0.33040179171107376 0.37663544044046593 0.33040179171107376 0.37663544044046593 0.15717403925216455
+0.3359001963041647 0.3740527412062265 0.3359001963041646 0.3740527412062265 0.17017286694512077
+0.3276792584830648 0.3786782558052196 0.3276792584830648 0.3786782558052196 0.15151961895280328
+0.31927565149779924 0.3848513056239731 0.31927565149779924 0.3848513056239731 0.13983564750303837
+0.32486061697148133 0.3807368040550417 0.32486061697148133 0.3807368040550417 0.14654681658352564
+0.32208431842845625 0.3827823648464112 0.32208431842845625 0.3827823648464112 0.1426574288460808
+0.31664216876283646 0.38716476396758687 0.31664216876283646 0.38716476396758687 0.1384620224592714
+0.3137850620966147 0.38920707373027835 0.3137850620966147 0.38920707373027835 0.13817737319968562
+0.31109378645166474 0.391321810335541 0.31109378645166474 0.391321810335541 0.13920534317446956
+0.3083711259964452 0.3938002827545699 0.3083711259964452 0.3938002827545699 0.1418904853715716
+0.3055921239364711 0.3963630857324297 0.3055921239364711 0.3963630857324297 0.14598685861657665
+0.29771245389734513 0.40345234826880916 0.2977124538973452 0.4034523482688091 0.16307390330865115
+0.29957340627920154 0.40081989725034084 0.29957340627920154 0.40081989725034084 0.15651283929924106
+0.3027960870193715 0.39935246495598514 0.3027960870193715 0.39935246495598514 0.15199458905569174
+0.29532698028742116 0.40616929365317567 0.29532698028742116 0.4061692936531757 0.170700953602434
+0.29280170860082727 0.4088624754797095 0.29280170860082727 0.4088624754797095 0.1788831012303003
+0.2902878872197037 0.41152116977600617 0.2902878872197037 0.41152116977600617 0.1873247519638487
+0.2877332781700816 0.41417190673511595 0.2877332781700816 0.41417190673511595 0.19597284048893115
+0.2852424656907775 0.4168987164617075 0.2852424656907775 0.4168987164617075 0.20484671369968874
+0.28289381365675204 0.41984086177085095 0.28289381365675204 0.41984086177085095 0.2142128383402689
+0.280586177519834 0.4227884393198096 0.280586177519834 0.4227884393198096 0.2234732347384564
+0.27831808495499843 0.42573406953362586 0.27831808495499843 0.42573406953362586 0.23254880192131888
+0.2760515598994358 0.42868486153003976 0.2760515598994358 0.42868486153003976 0.24141350585062124
+0.27373397515137193 0.43169932967900665 0.27373397515137193 0.43169932967900665 0.25016425233647327
+0.2713224521312662 0.43484341892415296 0.2713224521312662 0.43484341892415296 0.25892034469674535
+0.26904594594376824 0.4381483066544165 0.26904594594376824 0.4381483066544165 0.26756517575277655
+0.2672242933286934 0.4413001875286844 0.2672242933286934 0.44130018752868433 0.2753939354511284
+0.2653288281027085 0.44441320226066483 0.26532882810270847 0.4444132022606649 0.28268802020506395
+0.26335496552200516 0.4474848853829187 0.26335496552200516 0.4474848853829187 0.2893955800023342
+0.2613572511902277 0.45048113740987217 0.2613572511902276 0.4504811374098722 0.2954250945647155
+0.25917872304209916 0.45263207097309893 0.25917872304209916 0.452632070973099 0.2991055234627779
+0.258782932537279 0.4553857015665206 0.258782932537279 0.4553857015665206 0.3046103505429281
+0.2572829679199729 0.4584190426724725 0.2572829679199729 0.4584190426724725 0.3097096307727298
+0.25569024079275376 0.4615297733455006 0.25569024079275376 0.4615297733455006 0.31441336867776654
+0.2541000993340381 0.4646228325681072 0.2541000993340381 0.4646228325681072 0.3185824372620763
+0.25254544631097847 0.46768748875160554 0.25254544631097847 0.46768748875160554 0.3222223523553481
+0.25101925174489303 0.47074094222552143 0.25101925174489303 0.4707409422255214 0.3253730126211449
+0.24981036311058533 0.47373519721567425 0.24981036311058533 0.4737351972156743 0.3282222320451025
+0.248576231636202 0.4767921829589541 0.248576231636202 0.47679218295895415 0.3307019382989223
+0.2473084982237859 0.47992217244140584 0.2473084982237859 0.47992217244140584 0.33273001134018476
+0.24602351340395337 0.483105552992684 0.24602351340395337 0.48310555299268393 0.33429441327760484
+0.24475819939994325 0.48630077732171473 0.24475819939994325 0.4863007773217147 0.33539024585609484
+0.24354276267627187 0.48951465605124983 0.24354276267627187 0.48951465605124983 0.33605621480521336
+0.24239462954632107 0.49273961969207414 0.24239462954632107 0.4927396196920741 0.33631210435954656
+0.24129971672117612 0.4959880272068249 0.24129971672117612 0.4959880272068249 0.3361556420342117
+0.24023561851707842 0.4992779041283686 0.24023561851707842 0.49927790412836864 0.3355680889563976
+0.23921129948802725 0.5025999541544396 0.23921129948802725 0.5025999541544396 0.33455362434953956
+0.23820493515515784 0.5059453412634016 0.23820493515515784 0.5059453412634016 0.33309997484345005
+0.23723201784812895 0.5093234540974995 0.23723201784812895 0.5093234540974995 0.33122680928515685
+0.2363029547207044 0.5127223909953246 0.23630295472070442 0.5127223909953246 0.32895705174875167
+0.2354306444810821 0.5161236127756617 0.2354306444810821 0.5161236127756617 0.3263242966466495
+0.2346041132742973 0.5195403201392095 0.2346041132742973 0.5195403201392095 0.32332827658625
+0.23381478790684684 0.5229922870001019 0.23381478790684684 0.5229922870001019 0.319959260123174
+0.23308630694361354 0.5264715790953124 0.23308630694361354 0.5264715790953124 0.31624847584669963
+0.23241027905092948 0.5299806803945375 0.23241027905092948 0.5299806803945374 0.3122053311709884
+0.23176093453081167 0.533508474987837 0.23176093453081167 0.533508474987837 0.3078455252475276
+0.23112840000107368 0.5370448858757085 0.23112840000107368 0.5370448858757085 0.3032023432364437
+0.23051871044352515 0.5405902833556632 0.23051871044352515 0.5405902833556632 0.29830721070771077
+0.22995123241581517 0.5441675032831527 0.2299512324158152 0.5441675032831527 0.2931562426445001
+0.22951618760494075 0.5477786062577819 0.22951618760494075 0.5477786062577819 0.28777322975983205
+0.22920749503890855 0.5514164565930663 0.22920749503890855 0.5514164565930663 0.28219053470327937
+0.22888961327334523 0.5550565123550102 0.2288896132733452 0.5550565123550103 0.27644382927333117
+0.22852284071294937 0.558684812749494 0.22852284071294937 0.558684812749494 0.2705924607450521
+0.22809880662139695 0.5623267487790459 0.22809880662139695 0.5623267487790459 0.2646338471808174
+0.22760662398171527 0.5660180170072896 0.2276066239817153 0.5660180170072896 0.2585504011184771
+0.22707999344970614 0.5700878401636806 0.2270799934497061 0.5700878401636807 0.25186496554190224
+0.22801014955192356 0.5737395702055921 0.22801014955192356 0.573739570205592 0.24549927706211108
+0.3911363987687679 0.34777122919455566 0.3911363987687679 0.34777122919455566 0.3248164928999109
+0.3880182976636266 0.35272782801399183 0.3880182976636266 0.35272782801399183 0.3182088428473157
+0.39107920185799033 0.3513401327958154 0.39107920185799033 0.3513401327958154 0.3256004955559888
+0.38808096947612764 0.3562576490312989 0.38808096947612764 0.3562576490312989 0.3197259299056537
+0.3983984407578345 0.3342852456104297 0.3983984407578345 0.3342852456104297 0.3404590772695468
+0.3947272357410514 0.3391833407829073 0.3947272357410514 0.3391833407829073 0.3324046352675149
+0.39799880247090424 0.33795907678468146 0.39799880247090424 0.33795907678468146 0.33972898563369175
+0.3944592598812276 0.3428452313863522 0.3944592598812276 0.3428452313863522 0.3320524787980737
+0.39426057758043376 0.3464567727384668 0.39426057758043376 0.3464567727384668 0.332141506616513
+0.4070308940506862 0.3208114598046668 0.4070308940506862 0.3208114598046668 0.356291701551696
+0.40283742092336455 0.32566274881936447 0.40283742092336455 0.32566274881936447 0.3492469538612466
+0.4062756962038388 0.3245731837113774 0.4062756962038388 0.3245731837113774 0.35559399886336096
+0.40224340868903347 0.3294500701351201 0.40224340868903347 0.3294500701351201 0.3483212466978633
+0.40172477492464137 0.3331451101827174 0.40172477492464137 0.3331451101827174 0.3474641535827608
+0.4173504190461443 0.30763507062673706 0.4173504190461443 0.30763507062673706 0.3655591812530558
+0.4121988256742548 0.3129518805779928 0.4121988256742548 0.3129518805779928 0.36193260016766177
+0.41553537312446653 0.311193149709175 0.4155353731244666 0.31119314970917505 0.3656345197243765
+0.4113718083706943 0.31641840218570333 0.4113718083706943 0.31641840218570333 0.36212033681316885
+0.41053698341094913 0.3200001167645803 0.41053698341094913 0.3200001167645803 0.36194651499216496
+0.4294735139414388 0.29500318693680544 0.4294735139414388 0.29500318693680544 0.36167568842472586
+0.42407851203049807 0.30036213597928607 0.4240785120304981 0.300362135979286 0.365310955413154
+0.4275408218170167 0.29833226163272086 0.4275408218170167 0.2983322616327208 0.3648439634725759
+0.4272093697997996 0.30142570751314 0.4272093697997996 0.30142570751314 0.3676728915542286
+0.42229792061714216 0.30383437599633784 0.42229792061714216 0.30383437599633784 0.3671849386989836
+0.42095478939133424 0.3072998788902657 0.4209547893913342 0.3072998788902657 0.3688004648190892
+0.4499020686166985 0.27828983575168675 0.4499020686166985 0.27828983575168675 0.32628556189628394
+0.44784804291077873 0.28146802393677745 0.4478480429107787 0.28146802393677745 0.3335500096873738
+0.44581898600146913 0.28467968355048423 0.44581898600146913 0.2846796835504843 0.34051652879421107
+0.44392167865866655 0.2879967118975545 0.44392167865866655 0.28799671189755444 0.34711863371715307
+0.43482335051815907 0.29167229953305096 0.43482335051815907 0.29167229953305096 0.3574022297058726
+0.4384936603218591 0.29150881267757955 0.43849366032185916 0.29150881267757955 0.3557942716115661
+0.44215367677548173 0.2913969063510998 0.44215367677548173 0.29139690635109977 0.3533087834879231
+0.43316107366019496 0.294929981000197 0.43316107366019496 0.294929981000197 0.3616816896878566
+0.4576382177282577 0.27224491110184995 0.4576382177282577 0.27224491110184995 0.3047641384887934
+0.4556189209734609 0.2753768223894928 0.4556189209734609 0.2753768223894928 0.31285925377100515
+0.4612437897414359 0.27259571299827684 0.4612437897414359 0.27259571299827684 0.2976466159209547
+0.45361331435296787 0.27851760399949155 0.45361331435296787 0.2785176039994916 0.3207912191335595
+0.48278825844427303 0.2582653946366373 0.48278825844427303 0.2582653946366373 0.2205152681095213
+0.48039633063244064 0.260817692871716 0.48039633063244064 0.260817692871716 0.23071103179131322
+0.47799229295036594 0.2633571389031673 0.4779922929503659 0.2633571389031673 0.24091564715776712
+0.47554375520843556 0.2657805240468736 0.47554375520843556 0.2657805240468736 0.2510780367304146
+0.47320847581530723 0.2681309833796862 0.47320847581530723 0.26813098337968627 0.2607504345261779
+0.47115122756317684 0.27073776055003446 0.4711512275631769 0.27073776055003446 0.26982226440239065
+0.4646907595071638 0.2730954650828387 0.4646907595071638 0.2730954650828387 0.29017403146670556
+0.4673042380983362 0.2738212756473951 0.4673042380983362 0.2738212756473951 0.2843036922830472
+0.4696411347096492 0.27320210487080987 0.46964113470964913 0.2732021048708098 0.2771228257241545
+0.5015036574967167 0.2505124421545454 0.5015036574967167 0.25051244215454543 0.14558515131826513
+0.4908428647849336 0.2539409409734886 0.4908428647849336 0.25394094097348857 0.18869081116239175
+0.4991413575715248 0.25296196448900654 0.4991413575715247 0.2529619644890065 0.15610839947317853
+0.4941808829725072 0.25479088162084673 0.4941808829725072 0.2547908816208468 0.17653284952380097
+0.4969867432780108 0.25466422421364165 0.49698674327801073 0.25466422421364165 0.16547165077747092
+0.4886268710175335 0.2566103141771315 0.4886268710175335 0.2566103141771315 0.19860784429046427
+0.4863028054285025 0.2593046601778223 0.4863028054285025 0.25930466017782233 0.20899373208373798
+0.5210832106949707 0.24418693201423644 0.5210832106949707 0.24418693201423644 0.07084291219678969
+0.5096301213571636 0.24667608505374386 0.5096301213571636 0.24667608505374386 0.11169008780114141
+0.5184894697868737 0.24655590218954085 0.5184894697868737 0.24655590218954085 0.07956058841777923
+0.512834978110373 0.24780979804296546 0.512834978110373 0.24780979804296546 0.09978764759513586
+0.5159788639967846 0.24894137776404526 0.5159788639967847 0.24894137776404526 0.08889786123308895
+0.5071712047245223 0.24918244341733067 0.5071712047245223 0.24918244341733067 0.12238530054622494
+0.5047102179455173 0.251638010368223 0.5047102179455173 0.251638010368223 0.13321758135123862
+0.5297494555001269 0.24088918466595613 0.5297494555001269 0.24088918466595613 0.05825547555475683
+0.53902709067965 0.24153640864138184 0.53902709067965 0.24153640864138184 0.08180449689005026
+0.5329660475501465 0.2423139111206679 0.5329660475501465 0.24231391112066794 0.0642439725343384
+0.5361629944050023 0.24378007354182518 0.5361629944050023 0.24378007354182518 0.07451674833885459
+0.5269512189923653 0.24323897349540222 0.5269512189923652 0.24323897349540222 0.0603279035968873
+0.5242630464442415 0.24554724750082682 0.5242630464442416 0.24554724750082682 0.0650287758001815
+0.5419600775535129 0.23933527180748504 0.5419600775535129 0.23933527180748504 0.0909847805044431
+0.5667524632649297 0.22285029388595617 0.5667524632649297 0.2228502938859562 0.19274679327810415
+0.563755322510243 0.2248471880445522 0.563755322510243 0.2248471880445522 0.18011008054882136
+0.5449750816740974 0.2371937512122636 0.5449750816740974 0.23719375121226358 0.10176412156174859
+0.5480444105857155 0.2350910897908434 0.5480444105857155 0.2350910897908434 0.11367563452918229
+0.5511531020864481 0.23301471919994432 0.5511531020864481 0.23301471919994432 0.1263686602390963
+0.5542898045576999 0.2309543982545963 0.5542898045576999 0.2309543982545963 0.13956715577512188
+0.5574574927339294 0.22890297812512142 0.5574574927339294 0.22890297812512142 0.15311259422822543
+0.5606454083600914 0.2268704332153999 0.5606454083600915 0.2268704332153999 0.1668278550690023
+0.5700793089615173 0.22120067819719164 0.5700793089615174 0.2212006781971916 0.2070850819580037
+0.5694892135018141 0.2243204063080087 0.5694892135018141 0.2243204063080087 0.20765259549957898
+0.5734827022510601 0.2197963013498198 0.5734827022510601 0.21979630134981984 0.22179328299717174
+0.5771823885259402 0.21903443927656552 0.5771823885259401 0.21903443927656552 0.23829510250447675
+0.5806399111395764 0.2181069040359757 0.5806399111395764 0.21810690403597574 0.2530721774028874
+0.5840758973969392 0.21714267223416872 0.5840758973969392 0.21714267223416872 0.2672920819992355
+0.5874970374608335 0.2161521000979585 0.5874970374608335 0.2161521000979585 0.2809605747565062
+0.5908145381650769 0.21523692847697273 0.5908145381650769 0.2152369284769727 0.2938089822863211
+0.5939761077396633 0.21437208720526651 0.5939761077396631 0.21437208720526654 0.30561540155234135
+0.5973651827261801 0.213375475396389 0.59736518272618 0.213375475396389 0.3176802844828757
+0.600700526613584 0.21225775753447232 0.600700526613584 0.21225775753447232 0.32880855111132096
+0.60406467662838 0.2110098529527437 0.60406467662838 0.2110098529527437 0.3392592524464218
+0.6075231048835316 0.20966859545685979 0.6075231048835316 0.20966859545685979 0.349310574970016
+0.614350257707998 0.20724820726029297 0.614350257707998 0.207248207260293 0.3677342230657689
+0.6109848000318879 0.20847468204711073 0.6109848000318879 0.2084746820471107 0.35894487683759957
+0.6485355648535416 0.16951916475844708 0.6485355648535416 0.16951916475844708 0.3827701853254988
+0.6422593954958732 0.17290954407773992 0.6422593954958732 0.17290954407773992 0.37449140744368753
+0.6464435091074441 0.172909546979778 0.646443509107444 0.172909546979778 0.3840138869646949
+0.6401671782802312 0.17629984731489942 0.6401671782802313 0.17629984731489942 0.37583593316075664
+0.6380747247977331 0.17968994780637385 0.6380747247977331 0.17968994780637385 0.3773209127633681
+0.6359820895454539 0.18307867967774116 0.6359820895454539 0.18307867967774116 0.37890357471832875
+0.629702859449745 0.18645690402296464 0.629702859449745 0.18645690402296464 0.3701157918531312
+0.6276117040145577 0.18982818673545224 0.6276117040145577 0.18982818673545224 0.3714882773754798
+0.6255247586977704 0.19318461402153675 0.6255247586977704 0.19318461402153675 0.3727258992363685
+0.6234447168410895 0.19651144536438095 0.6234447168410896 0.19651144536438095 0.3737448200035715
+0.6213501106790794 0.19974724591171678 0.6213501106790794 0.19974724591171678 0.3743099824613678
+0.6175986113270527 0.20631829161416337 0.6175986113270527 0.2063182916141634 0.3760337647020348
+0.6191051822142588 0.20310033706784136 0.6191051822142589 0.20310033706784134 0.374350788579994
+0.6338905159524891 0.18646289804417562 0.6338905159524891 0.18646289804417562 0.3805308939793299
+0.6589958158995671 0.15934801487294026 0.6589958158995671 0.15934801487294026 0.38877682327329405
+0.6631799163179773 0.15934801487294026 0.6631799163179773 0.15934801487294026 0.39705033188714417
+0.656903765690362 0.1627383981681092 0.656903765690362 0.1627383981681092 0.38967687790394484
+0.6548117154811569 0.16612878146327814 0.6548117154811569 0.16612878146327814 0.39069110867370416
+0.6527196652719518 0.16951916475844708 0.6527196652719517 0.16951916475844708 0.39184635431392717
+0.6841004184100283 0.13222494851158872 0.6841004184100283 0.13222494851158872 0.3915289050019041
+0.6820083682008233 0.13561533180675767 0.6820083682008233 0.13561533180675767 0.39366417814127513
+0.6799163179916182 0.1390057151019266 0.6799163179916182 0.1390057151019266 0.3956644051013607
+0.6778242677824131 0.14239609839709555 0.6778242677824132 0.14239609839709555 0.3975158418412683
+0.675732217573208 0.1457864816922645 0.675732217573208 0.1457864816922645 0.3992169425493252
+0.6736401673640029 0.14917686498743343 0.6736401673640029 0.14917686498743343 0.4007778277527742
+0.6715481171547978 0.15256724828260237 0.6715481171547978 0.15256724828260237 0.40221910524064514
+0.6694560669455927 0.15595763157777132 0.6694560669455926 0.15595763157777132 0.40357011187927133
+0.6673640167363876 0.15934801487294026 0.6673640167363876 0.15934801487294026 0.40486666772174856
+0.6903765690376438 0.12883456521641978 0.6903765690376438 0.12883456521641978 0.39327517575390475
+0.6882845188284386 0.13222494851158872 0.6882845188284384 0.13222494851158872 0.3958775828053607
+0.6966527196652591 0.12544418192125087 0.6966527196652591 0.12544418192125087 0.3939584749377824
+0.694560669456054 0.12883456521641978 0.6945606694560541 0.12883456521641978 0.39683368826603177
+0.7029288702928743 0.12205379862608196 0.7029288702928743 0.12205379862608194 0.39408140995477786
+0.7008368200836693 0.1254441819212509 0.7008368200836693 0.12544418192125087 0.39694942166518427
+0.7092050209204896 0.11866341533091297 0.7092050209204896 0.11866341533091297 0.3942680796721836
+0.7071129707112846 0.12205379862608193 0.7071129707112846 0.12205379862608191 0.3967914527191328
+0.7154811715481051 0.11527303203574402 0.7154811715481051 0.11527303203574402 0.3951902101531373
+0.7133891213389 0.11866341533091296 0.7133891213389 0.11866341533091296 0.3970187794400546
+0.7238493723849254 0.10849226544540613 0.7238493723849254 0.10849226544540613 0.3973476569330204
+0.7217573221757202 0.11188264874057507 0.7217573221757202 0.11188264874057507 0.3974680701890918
+0.7196652719665152 0.11527303203574402 0.7196652719665152 0.11527303203574402 0.39829580099230094
+0.7301255230125409 0.10510188215023719 0.7301255230125409 0.10510188215023719 0.40266273882662645
+0.7280334728033359 0.10849226544540613 0.7280334728033359 0.10849226544540613 0.40156171232175725
+0.7364016736401561 0.10171149885506825 0.7364016736401561 0.10171149885506825 0.40995909783480805
+0.734309623430951 0.10510188215023719 0.734309623430951 0.10510188215023719 0.4076773624509628
+0.7426778242677715 0.09832111555989931 0.7426778242677715 0.09832111555989931 0.41897154232777184
+0.7405857740585664 0.10171149885506825 0.7405857740585664 0.10171149885506825 0.41571502060315174
+0.7489539748953868 0.09493073226473037 0.7489539748953868 0.09493073226473037 0.42916025009655706
+0.7468619246861817 0.09832111555989931 0.7468619246861817 0.09832111555989931 0.42527253902690404
+0.7552301255230022 0.09154034896956142 0.7552301255230022 0.09154034896956142 0.4397890282158065
+0.7531380753137971 0.09493073226473037 0.753138075313797 0.09493073226473037 0.4357030434681554
+0.7615062761506175 0.08814996567439248 0.7615062761506176 0.08814996567439248 0.45002503585021986
+0.7594142259414124 0.09154034896956142 0.7594142259414124 0.09154034896956142 0.44620704304980613
+0.7677824267782328 0.08475958237922354 0.7677824267782328 0.08475958237922354 0.4590382734893313
+0.7656903765690277 0.08814996567439248 0.7656903765690277 0.08814996567439248 0.4559355398557953
+0.7761506276150533 0.07797881578888566 0.7761506276150533 0.07797881578888566 0.4671818078652428
+0.7740585774058482 0.0813691990840546 0.7740585774058482 0.0813691990840546 0.4660867364443719
+0.771966527196643 0.08475958237922354 0.771966527196643 0.08475958237922354 0.46408523291812603
+0.7824267782426686 0.07458843249371672 0.7824267782426686 0.07458843249371672 0.4701562905066865
+0.7803347280334635 0.07797881578888566 0.7803347280334635 0.07797881578888566 0.47058139917229375
+0.7887029288702839 0.07119804919854777 0.7887029288702839 0.07119804919854777 0.4700666724553944
+0.7866108786610788 0.07458843249371672 0.7866108786610787 0.07458843249371672 0.47213069164891897
+0.7949790794978993 0.06780766590337883 0.7949790794978994 0.06780766590337883 0.4668631006045529
+0.7928870292886941 0.07119804919854777 0.7928870292886941 0.07119804919854777 0.4705664479075968
+0.8012552301255146 0.06441728260820989 0.8012552301255146 0.06441728260820989 0.46072427221344364
+0.7991631799163095 0.06780766590337883 0.7991631799163095 0.06780766590337883 0.46595348046090335
+0.8075313807531299 0.06102689931304095 0.8075313807531298 0.06102689931304095 0.4520444671261488
+0.8054393305439248 0.06441728260820989 0.8054393305439248 0.06441728260820989 0.45858406877280905
+0.8138075313807452 0.05763651601787201 0.8138075313807452 0.05763651601787201 0.44140576209122
+0.8117154811715401 0.06102689931304095 0.8117154811715402 0.06102689931304095 0.44895746593349056
+0.8200836820083606 0.054246132722703067 0.8200836820083605 0.054246132722703067 0.4295343157833839
+0.8179916317991555 0.05763651601787201 0.8179916317991555 0.05763651601787201 0.4377434738890087
+0.8263598326359759 0.050855749427534125 0.8263598326359759 0.050855749427534125 0.4172397061915634
+0.8242677824267708 0.054246132722703067 0.8242677824267709 0.054246132722703067 0.4257286924007743
+0.8326359832635912 0.04746536613236518 0.8326359832635912 0.04746536613236518 0.4053380936162653
+0.8305439330543861 0.050855749427534125 0.8305439330543861 0.050855749427534125 0.4137449643638917
+0.8410041841004117 0.0406845995420273 0.8410041841004116 0.0406845995420273 0.38660877988501746
+0.8389121338912066 0.04407498283719624 0.8389121338912066 0.04407498283719624 0.3945642763127751
+0.8368200836820014 0.04746536613236518 0.8368200836820013 0.04746536613236518 0.4025827827783564
+0.847280334728027 0.03729421624685836 0.847280334728027 0.03729421624685836 0.3782275203376045
+0.8451882845188219 0.0406845995420273 0.845188284518822 0.0406845995420273 0.38548427963946685
+0.8535564853556423 0.03390383295168942 0.8535564853556422 0.03390383295168942 0.3719317200745533
+0.8514644351464372 0.03729421624685836 0.8514644351464372 0.03729421624685836 0.3784264141591272
+0.8598326359832577 0.030513449656520475 0.8598326359832577 0.030513449656520475 0.3676825376756645
+0.8577405857740525 0.03390383295168942 0.8577405857740527 0.03390383295168942 0.3734499158105811
+0.866108786610873 0.027123066361351533 0.866108786610873 0.027123066361351533 0.36522105161932267
+0.8640167364016679 0.030513449656520475 0.8640167364016679 0.030513449656520475 0.3703624307401458
+0.8723849372384883 0.02373268306618259 0.8723849372384883 0.02373268306618259 0.36414227167141183
+0.8702928870292832 0.027123066361351533 0.8702928870292831 0.027123066361351533 0.368782436853425
+0.8786610878661036 0.02034229977101365 0.8786610878661038 0.02034229977101365 0.3639836788289252
+0.8765690376568985 0.02373268306618259 0.8765690376568985 0.02373268306618259 0.3682280809423217
+0.884937238493719 0.01695191647584471 0.884937238493719 0.01695191647584471 0.36430521112576747
+0.8828451882845139 0.02034229977101365 0.8828451882845139 0.02034229977101365 0.36820785442308335
+0.8933054393305394 0.010171149885506825 0.8933054393305394 0.010171149885506825 0.361964042484062
+0.8912133891213343 0.013561533180675767 0.8912133891213344 0.013561533180675767 0.3647446875380695
+0.8891213389121292 0.01695191647584471 0.8891213389121292 0.01695191647584471 0.36829264913254955
+0.8995815899581547 0.006780766590337883 0.8995815899581547 0.006780766590337883 0.3628771579465995
+0.8974895397489496 0.010171149885506825 0.8974895397489496 0.010171149885506825 0.3650426122920683
+0.903765690376565 0.006780766590337883 0.9037656903765648 0.006780766590337883 0.36503859105587694
+0.006780766560447728 0.9079497908548558 0.006780766560447728 0.9079497908548558 0.09370052435421462
+0.0067807664769672675 0.912133891438 0.0067807664769672675 0.912133891438 0.09391147752156521
+0.010171149876155283 0.901673640185518 0.010171149876155283 0.901673640185518 0.09354953849016812
+0.010171149849941805 0.9058577406538079 0.010171149849941804 0.9058577406538079 0.09414639796424061
+0.013561533170274755 0.8995815899764725 0.013561533170274755 0.8995815899764725 0.09397645447073756
+0.016951916473480995 0.8933054393345206 0.01695191647348099 0.8933054393345206 0.09337473287464702
+0.01695191646695553 0.897489539763523 0.01695191646695553 0.897489539763523 0.09446832806081429
+0.02034229977092672 0.8870292887030763 0.02034229977092672 0.8870292887030763 0.09233297320903755
+0.020342299770660963 0.8912133891219333 0.020342299770660963 0.8912133891219333 0.09372856312303955
+0.023732683066026477 0.8807531380754897 0.023732683066026477 0.8807531380754897 0.09087550370833329
+0.023732683065480164 0.8849372384945041 0.023732683065480164 0.8849372384945041 0.09250053926258539
+0.02712306636123764 0.874476987447855 0.02712306636123764 0.874476987447855 0.08907267675720705
+0.027123066360847724 0.8786610878668039 0.027123066360847724 0.8786610878668039 0.09082859455397184
+0.030513449656470387 0.8682008368201677 0.030513449656470387 0.8682008368201677 0.08705186098652845
+0.030513449656305813 0.8723849372388668 0.030513449656305813 0.8723849372388667 0.08881104171437071
+0.033903832951672354 0.8619246861925013 0.033903832951672354 0.8619246861925013 0.08500314725180415
+0.033903832951619896 0.866108786611027 0.033903832951619896 0.866108786611027 0.08660888081152497
+0.03729421624685344 0.85564853556486 0.03729421624685344 0.8556485355648601 0.08317545112050993
+0.03729421624684066 0.8598326359833007 0.03729421624684066 0.8598326359833007 0.08444772469254452
+0.040684599542025336 0.8493723849372427 0.040684599542025336 0.8493723849372427 0.08185743634773208
+0.040684599542022144 0.8535564853556773 0.040684599542022144 0.8535564853556773 0.08260790045835391
+0.04407498283719499 0.8430962343096259 0.04407498283719499 0.8430962343096259 0.08133896008251205
+0.044074982837194486 0.8472803347280551 0.044074982837194486 0.847280334728055 0.08139687254085416
+0.047465366132364 0.8410041841004285 0.047465366132364 0.8410041841004287 0.08110129854276295
+0.050855749427532855 0.8347280334728059 0.050855749427532855 0.8347280334728059 0.08192598044318528
+0.05085574942753288 0.8389121338912336 0.05085574942753288 0.8389121338912336 0.08085554466283183
+0.05424613272270165 0.8284518828451873 0.054246132722701644 0.8284518828451873 0.08394017464326599
+0.05424613272270166 0.8326359832636033 0.05424613272270166 0.8326359832636033 0.08201764709878291
+0.05763651601787048 0.8221757322175712 0.057636516017870475 0.8221757322175712 0.08705551699162338
+0.05763651601787048 0.8263598326359829 0.057636516017870475 0.826359832635983 0.08437376777892223
+0.06102689931303934 0.8158995815899557 0.06102689931303934 0.8158995815899557 0.09104522408307586
+0.06102689931303933 0.8200836820083662 0.06102689931303933 0.8200836820083662 0.08776900667665438
+0.06441728260820821 0.8096234309623407 0.06441728260820821 0.8096234309623407 0.09559206984930613
+0.06441728260820821 0.8138075313807507 0.06441728260820821 0.8138075313807507 0.09192447312029683
+0.06780766590337706 0.8033472803347257 0.06780766590337706 0.8033472803347257 0.10034271112756556
+0.06780766590337706 0.8075313807531357 0.06780766590337706 0.8075313807531357 0.09649368019690278
+0.0711980491985459 0.7970711297071107 0.0711980491985459 0.7970711297071107 0.10495236946262744
+0.0711980491985459 0.8012552301255207 0.0711980491985459 0.8012552301255207 0.1011164785262872
+0.07458843249371476 0.7907949790794957 0.07458843249371476 0.7907949790794957 0.1091153373951773
+0.07458843249371476 0.7949790794979057 0.07458843249371476 0.7949790794979057 0.10545891024823488
+0.07797881578888362 0.7845188284518807 0.07797881578888362 0.7845188284518807 0.11258388239067112
+0.07797881578888362 0.7887029288702907 0.07797881578888362 0.7887029288702907 0.10923844955458466
+0.08136919908405248 0.7824267782426757 0.08136919908405248 0.7824267782426757 0.1122389343525078
+0.08475958237922132 0.7761506276150607 0.08475958237922132 0.7761506276150607 0.11431964760897025
+0.08475958237922132 0.7803347280334707 0.08475958237922132 0.7803347280334707 0.1116162259183311
+0.08814996567439015 0.7698744769874457 0.08814996567439015 0.7698744769874457 0.11542150950506123
+0.08814996567439015 0.7740585774058557 0.08814996567439015 0.7740585774058557 0.11318666064001513
+0.09154034896955902 0.7635983263598307 0.09154034896955902 0.7635983263598307 0.1155717993793751
+0.09154034896955902 0.7677824267782407 0.09154034896955902 0.7677824267782407 0.11379626038695441
+0.09493073226472787 0.7573221757322157 0.09493073226472787 0.7573221757322157 0.11488756017500724
+0.09493073226472787 0.7615062761506257 0.09493073226472787 0.7615062761506257 0.11351834194678685
+0.09832111555989675 0.7510460251046007 0.09832111555989675 0.7510460251046007 0.11357660965776777
+0.09832111555989675 0.7552301255230107 0.09832111555989675 0.7552301255230107 0.11251670434028917
+0.10171149885506564 0.7447698744769857 0.10171149885506563 0.7447698744769857 0.11193357051779167
+0.10171149885506564 0.7489539748953957 0.10171149885506563 0.7489539748953957 0.11104397613011861
+0.10510188215023453 0.7384937238493707 0.10510188215023453 0.7384937238493707 0.11032651285635293
+0.10510188215023453 0.7426778242677807 0.10510188215023453 0.7426778242677807 0.10943291869195383
+0.10849226544540343 0.7322175732217557 0.10849226544540343 0.7322175732217557 0.10916853231066932
+0.10849226544540343 0.7364016736401657 0.10849226544540343 0.7364016736401657 0.10807549239339444
+0.11188264874057234 0.7259414225941407 0.11188264874057234 0.7259414225941407 0.10887016901646361
+0.11188264874057234 0.7301255230125507 0.11188264874057234 0.7301255230125507 0.10738444949899505
+0.11527303203574124 0.7238493723849357 0.11527303203574124 0.7238493723849357 0.1077366525485
+0.11866341533091013 0.7175732217573207 0.11866341533091011 0.7175732217573207 0.10940777813121437
+0.11866341533091013 0.7217573221757307 0.11866341533091011 0.7217573221757307 0.10708069323859055
+0.12205379862607901 0.7112970711297057 0.12205379862607901 0.7112970711297057 0.11251963715385922
+0.12205379862607901 0.7154811715481157 0.12205379862607901 0.7154811715481157 0.1095278460080077
+0.12544418192124793 0.7050209205020908 0.12544418192124793 0.7050209205020908 0.11702241470834558
+0.12544418192124793 0.7092050209205008 0.12544418192124793 0.7092050209205008 0.11338216522626317
+0.1288345652164168 0.6987447698744758 0.1288345652164168 0.6987447698744758 0.1227188158826097
+0.1288345652164168 0.7029288702928858 0.1288345652164168 0.7029288702928858 0.11851081678739837
+0.13222494851158573 0.6924686192468608 0.13222494851158573 0.6924686192468608 0.12931657868925092
+0.13222494851158573 0.6966527196652708 0.13222494851158573 0.6966527196652708 0.12466287596305463
+0.1356153318067546 0.6861924686192458 0.13561533180675459 0.6861924686192458 0.13648700727072213
+0.1356153318067546 0.6903765690376558 0.13561533180675459 0.6903765690376558 0.1315265249224191
+0.1390057151019235 0.6841004184100408 0.1390057151019235 0.6841004184100408 0.13878202352153557
+0.1423960983970924 0.6820083682008358 0.1423960983970924 0.6820083682008358 0.14102938397034917
+0.1457864816922613 0.6799163179916308 0.1457864816922613 0.6799163179916308 0.14317863529066208
+0.1491768649874302 0.6778242677824258 0.1491768649874302 0.6778242677824258 0.14518941424347032
+0.1525672482825991 0.6757322175732208 0.15256724828259907 0.6757322175732208 0.14703184126692226
+0.15595763157776799 0.6736401673640158 0.15595763157776799 0.6736401673640158 0.14868646408117117
+0.1593480148729369 0.6673640167364008 0.1593480148729369 0.6673640167364008 0.15494040885800484
+0.16273839816810579 0.6652719665271958 0.16273839816810579 0.6652719665271958 0.1561317151385039
+0.17290939671500305 0.6506276116934296 0.17290939671500305 0.6506276116934296 0.16785590866067915
+0.17968455983331397 0.6422606193109026 0.17968455983331397 0.6422606193109025 0.17349279963450628
+0.18306606515033774 0.640167438506782 0.18306606515033774 0.640167438506782 0.1740012172523007
+0.1898481574942359 0.6318020306696778 0.1898481574942359 0.6318020306696778 0.17978769502994274
+0.19324739917360279 0.6297052295875691 0.19324739917360279 0.629705229587569 0.1804443377788493
+0.19664510860763165 0.627608016390162 0.19664510860763165 0.627608016390162 0.18116214773859737
+0.20003261441496367 0.6213389121338908 0.20003261441496364 0.6213389121338908 0.18699633847210298
+0.2033834251615656 0.6191924579575684 0.2033834251615656 0.6191924579575684 0.18802307596380127
+0.20661062311058237 0.6174007665360783 0.2066106231105824 0.6174007665360782 0.18874073138026579
+0.20008344877296327 0.62550295213507 0.20008344877296327 0.62550295213507 0.1819343495875623
+0.18644235012117136 0.638071975060097 0.18644235012117136 0.638071975060097 0.17452374298853623
+0.18982370388277373 0.6359811128655605 0.18982370388277373 0.6359811128655605 0.1750661929292109
+0.17629846814456984 0.6485354988470248 0.17629846814456984 0.6485354988470248 0.1684147798391902
+0.17968426813071703 0.6464437882859903 0.17968426813071703 0.6464437882859903 0.16891922127124667
+0.1661287814632747 0.6589958158995808 0.1661287814632747 0.6589958158995808 0.16180972272347838
+0.1661287814632747 0.6631799163179908 0.1661287814632747 0.6631799163179908 0.15714142533210393
+0.16951916475844359 0.6569037656903758 0.16951916475844356 0.6569037656903758 0.16260674780783127
+0.17290948670012218 0.6548117141152258 0.17290948670012218 0.6548117141152258 0.163277111969752
+0.1593480148729369 0.6715481171548108 0.1593480148729369 0.6715481171548108 0.15014383655603347
+0.2175487199717373 0.5936236523334878 0.21754871997173728 0.5936236523334878 0.21677492734313475
+0.21728197824337175 0.5972507865487167 0.21728197824337173 0.5972507865487167 0.21150053862968102
+0.21700943574463044 0.6007669389032274 0.2170094357446304 0.6007669389032274 0.20649768467134863
+0.22799725666681345 0.5773654820276646 0.22799725666681345 0.5773654820276645 0.23943076219706103
+0.22078815955039444 0.5917975931587196 0.22078815955039444 0.5917975931587196 0.21835315359025467
+0.22454789355619853 0.5827300181731375 0.22454789355619856 0.5827300181731375 0.2314424735627978
+0.22430533882769785 0.5863074530588416 0.22430533882769785 0.5863074530588416 0.2257552821556507
+0.22403818141253984 0.5899372128953568 0.22403818141253984 0.5899372128953568 0.22007205190841958
+0.22782732837957578 0.5809413309034602 0.22782732837957578 0.5809413309034602 0.23348960931939236
+0.20960826719776107 0.6082988127750761 0.20960826719776107 0.6082988127750761 0.19926345263045878
+0.2133114357810088 0.6064732271093176 0.21331143578100883 0.6064732271093175 0.20008173649317254
+0.21661731796652017 0.6044368035098302 0.21661731796652015 0.6044368035098301 0.2014270226509132
+0.2100439857516799 0.612052374044834 0.2100439857516799 0.612052374044834 0.1940350610899677
+0.210017290790937 0.6156417361835329 0.210017290790937 0.6156417361835329 0.1893636267219971
+0.388209587374636 0.3597303201194803 0.388209587374636 0.3597303201194803 0.3218742442610871
+0.3821135574918233 0.35923345935060674 0.3821135574918233 0.35923345935060674 0.3046309138547631
+0.3791747008992867 0.3608289357229781 0.3791747008992867 0.3608289357229781 0.2968523816175385
+0.38524855496870564 0.3611789832406845 0.38524855496870564 0.3611789832406845 0.31446306523906764
+0.37623546950619513 0.36248519952149255 0.37623546950619513 0.36248519952149255 0.2888203482040978
+0.3700299971198837 0.3623557095012136 0.3700299971198837 0.3623557095012136 0.2701877389893484
+0.367105503692599 0.36416712968647963 0.367105503692599 0.36416712968647963 0.2616086505383997
+0.3733235342774213 0.3641908054745681 0.3733235342774213 0.3641908054745681 0.28060790400711294
+0.3642056632653499 0.3660333175036541 0.3642056632653499 0.3660333175036541 0.252892025200963
+0.35791041356189 0.36626280032738884 0.35791041356189 0.36626280032738884 0.2336072721935398
+0.35500516587747094 0.3683004257739697 0.35500516587747094 0.3683004257739697 0.22459887525862696
+0.3613383307959474 0.3679535551154081 0.3613383307959474 0.3679535551154081 0.24408117642115026
+0.352150007075561 0.3704190571233825 0.352150007075561 0.3704190571233825 0.21566083118683207
+0.34578007023854607 0.37111366001389995 0.34578007023854607 0.37111366001389995 0.19693475347200498
+0.34287337049438904 0.3732983670121656 0.342873370494389 0.3732983670121656 0.1882638878300054
+0.3493246272367274 0.37259212354391913 0.3493246272367274 0.37259212354391913 0.20679713453894158
+0.3399932814757368 0.37550614261961845 0.33999328147573676 0.37550614261961845 0.17995465091535476
+0.33386206238598487 0.3772661268208374 0.33386206238598487 0.37726612682083743 0.1644604943412262
+0.3311697062094975 0.3797398917721117 0.33116970620949754 0.3797398917721117 0.15813668117897176
+0.33739225082206026 0.3781106069554766 0.3373922508220603 0.37811060695547655 0.17258993746690723
+0.3283431302801678 0.38195041494237403 0.3283431302801678 0.38195041494237403 0.15240795559599896
+0.3200156191638177 0.3878305824720923 0.3200156191638177 0.3878305824720923 0.14162078362834243
+0.32290977155072564 0.38589942473473776 0.32290977155072564 0.38589942473473776 0.14430943702699614
+0.32558596735141937 0.38414327443519997 0.32558596735141937 0.38414327443519997 0.1477912496781876
+0.3172885751580841 0.3901247259558609 0.3172885751580841 0.3901247259558609 0.14070125715695345
+0.3146777152398302 0.39237508056129583 0.3146777152398302 0.39237508056129583 0.14113978037802574
+0.3119929374834906 0.39467135990760027 0.3119929374834906 0.3946713599076003 0.1428982371094949
+0.3093294752316789 0.3970626710097344 0.3093294752316789 0.3970626710097344 0.14608205625232926
+0.3066297769074027 0.39946438865051315 0.3066297769074027 0.39946438865051315 0.15050216286415852
+0.2991579560686575 0.40661839371869024 0.2991579560686575 0.4066183937186903 0.1688088575194833
+0.3017472886297585 0.40350062711654205 0.3017472886297585 0.40350062711654205 0.16041133803423527
+0.3049425030096259 0.4020154283648806 0.3049425030096259 0.4020154283648806 0.15565394301449784
+0.29660321415673796 0.40947025268311193 0.2966032141567379 0.40947025268311193 0.17733269024655662
+0.2940062753618952 0.412231575231099 0.2940062753618952 0.412231575231099 0.18615263301215576
+0.2914640429550322 0.41469009241998755 0.2914640429550322 0.4146900924199875 0.1944787762828011
+0.28886510518001496 0.41721200815858644 0.2888651051800149 0.41721200815858644 0.2030619567139004
+0.2866830904836979 0.4201605911518278 0.2866830904836979 0.42016059115182786 0.21261116577826053
+0.28443045006086476 0.4230885142427059 0.28443045006086476 0.42308851424270594 0.2221080723525369
+0.282170431220174 0.4260098326108987 0.282170431220174 0.4260098326108987 0.23146737783477067
+0.27990622473386234 0.428912858670407 0.27990622473386234 0.428912858670407 0.24057227379964716
+0.2776272822201792 0.43183353731522034 0.27762728222017913 0.4318335373152204 0.24945547648016972
+0.27533441857710345 0.434872147518859 0.27533441857710345 0.434872147518859 0.25831255961269056
+0.27312651835619195 0.438040163530518 0.27312651835619195 0.438040163530518 0.26708530263229885
+0.27105733164979395 0.44123099855778425 0.27105733164979395 0.4412309985577842 0.27542604962758716
+0.26912413193509893 0.4443573831784951 0.26912413193509893 0.4443573831784951 0.28315275434262593
+0.2670917067352581 0.4475078541029935 0.2670917067352581 0.4475078541029935 0.2904160318226574
+0.26498679840420114 0.45073526438806255 0.26498679840420114 0.4507352643880625 0.2972830689112287
+0.2622550286599502 0.4542539750886934 0.26225502865995015 0.4542539750886934 0.30397113175082974
+0.2609769367290322 0.4578794768717 0.2609769367290322 0.4578794768717 0.3107033060020154
+0.2594189052777065 0.4611451986727046 0.2594189052777065 0.4611451986727046 0.31604315208208883
+0.2577927888277704 0.46431280843055206 0.2577927888277704 0.46431280843055206 0.3205989980621698
+0.2561680439600734 0.4673781680878214 0.2561680439600735 0.46737816808782146 0.32443414245281704
+0.25462525805987 0.470359930148487 0.25462525805987 0.4703599301484869 0.32767773108584164
+0.2532548203033994 0.4733813001451911 0.25325482030339946 0.47338130014519114 0.3305977533530929
+0.25233719935749843 0.47619269250737206 0.2523371993574984 0.47619269250737206 0.33326446133694815
+0.2510038335465382 0.4793052317001009 0.25100383354653827 0.4793052317001009 0.3354051374380464
+0.24969357689560515 0.4824818564889708 0.24969357689560515 0.4824818564889708 0.3371108832979787
+0.24841084810422387 0.485664333390859 0.2484108481042239 0.48566433339085896 0.33832135803054
+0.2471794314331893 0.48884214525084263 0.2471794314331893 0.48884214525084263 0.3390681332473992
+0.24602847185827084 0.49201845920102033 0.24602847185827084 0.49201845920102033 0.3394000832092048
+0.24494303316695956 0.4952152530880918 0.24494303316695956 0.4952152530880918 0.33932638287171724
+0.24388861856135322 0.49845602840004744 0.24388861856135322 0.4984560284000475 0.33881751716654374
+0.24286998699304144 0.5017391727445503 0.24286998699304144 0.5017391727445503 0.3378663668647593
+0.24186574463146196 0.5050497043885444 0.24186574463146196 0.5050497043885444 0.33645634584174205
+0.24087315590211503 0.5083804231079214 0.24087315590211503 0.5083804231079214 0.3345987533001162
+0.23993422704748138 0.5117352868419792 0.23993422704748138 0.5117352868419792 0.3323432507367768
+0.2390579955331945 0.5150941327240351 0.23905799553319448 0.5150941327240351 0.32972065132591993
+0.2382327805506168 0.518465197696812 0.2382327805506168 0.5184651976968119 0.32673291572874724
+0.237441072780903 0.5218679044142439 0.237441072780903 0.5218679044142439 0.3233646036981128
+0.23669505469253008 0.5252957091906448 0.23669505469253008 0.5252957091906448 0.3196423156352704
+0.23599447004010973 0.5287553097638202 0.23599447004010973 0.5287553097638202 0.31557389910688993
+0.23532935428392054 0.5322438726793398 0.23532935428392054 0.5322438726793398 0.3111738228328975
+0.2347000599787531 0.5357461285274209 0.23470005997875312 0.5357461285274209 0.3064818064203265
+0.23411558834423984 0.5392473311832263 0.23411558834423984 0.5392473311832263 0.30154665212355586
+0.23357314173908703 0.542769635663122 0.23357314173908703 0.542769635663122 0.2963592682431937
+0.23308678963393514 0.5463251311470553 0.23308678963393517 0.5463251311470553 0.29092306297461296
+0.23269308253797139 0.5499031969137979 0.23269308253797139 0.5499031969137979 0.28528479795568823
+0.2323384758046861 0.5535020305860443 0.2323384758046861 0.5535020305860443 0.27945696736485987
+0.23198731516994808 0.5571094706510556 0.23198731516994808 0.5571094706510556 0.27348341739912524
+0.2316235041858322 0.5607282097884327 0.2316235041858322 0.5607282097884329 0.267393411541496
+0.23124368050729957 0.5643793942864125 0.23124368050729957 0.5643793942864125 0.26118670181705267
+0.23082508923744793 0.5681356001767198 0.23082508923744793 0.5681356001767198 0.25478656857398496
+0.23099771355283139 0.5717420668171658 0.23099771355283139 0.5717420668171657 0.24851662629962631
+0.23111691469273193 0.5754455552680788 0.2311169146927319 0.5754455552680788 0.2420724783336898
+0.39413331853732786 0.350013727219802 0.39413331853732786 0.350013727219802 0.33275281352642055
+0.39108290700209253 0.35486483684038866 0.39108290700209253 0.35486483684038866 0.326969250621476
+0.39408749897259887 0.35351666572041995 0.39408749897259887 0.35351666572042 0.3339795575298085
+0.39116211450973776 0.35833547847582725 0.39116211450973776 0.35833547847582725 0.32900186216580973
+0.40126093323504763 0.33679598457414456 0.40126093323504763 0.33679598457414456 0.346736784391261
+0.3976588086945956 0.3415998719558299 0.3976588086945956 0.3415998719558299 0.33928500995062943
+0.40088387305320206 0.34041481799660206 0.40088387305320206 0.34041481799660206 0.3463047315549122
+0.39740382765153875 0.34520099992376657 0.39740382765153875 0.34520099992376657 0.3392781343649411
+0.3972170986872066 0.34875057929607706 0.3972170986872066 0.34875057929607706 0.3397539157260078
+0.4097403223838479 0.32366600031135223 0.4097403223838479 0.32366600031135223 0.3615248761725716
+0.40560890825240464 0.32836890385076106 0.40560890825240464 0.32836890385076106 0.3548203394683087
+0.4090252893065092 0.32736223583241464 0.4090252893065092 0.32736223583241464 0.3609783798084087
+0.4050509508485556 0.3320576540054104 0.4050509508485556 0.3320576540054104 0.35411090883059476
+0.4045386097787322 0.3356946664078293 0.4045386097787322 0.3356946664078293 0.3534557665080426
+0.4196527239006726 0.3106669949027924 0.4196527239006726 0.3106669949027924 0.3698571077683293
+0.4148472373011278 0.31538790577596604 0.4148472373011279 0.31538790577596604 0.36669504542726017
+0.41845468600570984 0.3143599894053241 0.41845468600570984 0.3143599894053241 0.37072558680287554
+0.41400612767965606 0.31913053469331665 0.414006127679656 0.31913053469331665 0.3669831073107559
+0.41318388946321755 0.32279752016228475 0.41318388946321755 0.32279752016228475 0.36691314330959246
+0.431500449699923 0.29812453336945516 0.431500449699923 0.29812453336945516 0.3653822683913291
+0.4256173503732469 0.3037560009395832 0.4256173503732468 0.3037560009395832 0.3691955880768347
+0.43009505583554186 0.3010916090473261 0.4300950558355419 0.3010916090473261 0.36837540371253624
+0.4283892791159099 0.3033278310113211 0.4283892791159099 0.3033278310113211 0.3699768075417577
+0.42442076642982673 0.3068081906476936 0.42442076642982673 0.3068081906476936 0.3710916307205286
+0.423295484014957 0.31025403634594967 0.423295484014957 0.31025403634594967 0.3729116931557637
+0.4516044597848204 0.28167820618126505 0.4516044597848204 0.28167820618126505 0.3285484675674097
+0.44960877352500517 0.2848583371996161 0.4496087735250052 0.2848583371996161 0.33604271066392283
+0.447670010848839 0.28810588492950256 0.447670010848839 0.28810588492950256 0.343227196347647
+0.44581952661080715 0.2913884177199721 0.44581952661080715 0.2913884177199721 0.34997360194580424
+0.4368301578032708 0.2948587541128365 0.4368301578032708 0.2948587541128365 0.36080333373416407
+0.440466456191986 0.2947571198175891 0.44046645619198604 0.2947571198175891 0.3589629683398456
+0.44406766489210314 0.2946944210364698 0.44406766489210314 0.29469442103646987 0.3562333028729736
+0.4352062257025815 0.2981277734764496 0.4352062257025815 0.2981277734764496 0.3652236451905682
+0.45923222485226517 0.27565173046691016 0.45923222485226517 0.27565173046691016 0.3061074206263002
+0.4572734875881945 0.27875583176616003 0.4572734875881945 0.27875583176616003 0.3144091927905883
+0.46271886623702846 0.27594540257174344 0.46271886623702846 0.27594540257174344 0.2987198053364514
+0.45530589370572566 0.28189373112718435 0.45530589370572566 0.28189373112718435 0.3226150348152714
+0.4839261062189471 0.26193864511173437 0.4839261062189471 0.2619386451117344 0.21956820567970506
+0.48153804187037097 0.2645829373139997 0.4815380418703709 0.2645829373139997 0.23022278268034932
+0.4791924289920933 0.26733142516541547 0.4791924289920933 0.26733142516541547 0.24086471240800225
+0.47657460164540744 0.2693125618116 0.4765746016454075 0.26931256181160007 0.2515284410009742
+0.47430551744707794 0.271700315959414 0.4743055174470779 0.271700315959414 0.26142755908548504
+0.47253696282645963 0.273896060489725 0.4725369628264597 0.273896060489725 0.26947833477720223
+0.46592068135767917 0.2761198385670039 0.4659206813576792 0.2761198385670039 0.2909940121563173
+0.46876541950792516 0.2761576588146551 0.46876541950792516 0.2761576588146551 0.2833485718586051
+0.47105027020985624 0.2756417613688849 0.47105027020985624 0.2756417613688849 0.27606308752803094
+0.5022148732004013 0.2540085181513088 0.5022148732004013 0.2540085181513088 0.14428287792691366
+0.49216332114370953 0.25744306898508723 0.49216332114370953 0.25744306898508723 0.18588165997988196
+0.4995298290202196 0.2563256212489379 0.49952982902021953 0.25632562124893793 0.15620349779802042
+0.4960836275397933 0.2579674424235008 0.4960836275397932 0.2579674424235008 0.17090783585789174
+0.48983507890273176 0.26022742746023364 0.48983507890273176 0.26022742746023364 0.19659793541617931
+0.4874612648767143 0.2629472883482066 0.4874612648767143 0.26294728834820663 0.20752740636212708
+0.521622936593329 0.24785431165311164 0.521622936593329 0.24785431165311164 0.0717096489432537
+0.5104180684767143 0.2503376924717115 0.5104180684767144 0.2503376924717115 0.11002192870487594
+0.5190578940036464 0.2501512540316601 0.5190578940036464 0.2501512540316601 0.07968382684166732
+0.5135885643451714 0.25146525091567346 0.5135885643451714 0.25146525091567346 0.09844059770591607
+0.5165802013526757 0.25233962200272253 0.5165802013526757 0.25233962200272253 0.0883894770013877
+0.507972452623014 0.2528233803224368 0.5079724526230142 0.25282338032243684 0.12061045279854864
+0.5054715932758002 0.2552598369181627 0.5054715932758002 0.2552598369181627 0.13162582054381758
+0.5422134589166735 0.24308741866893643 0.5422134589166735 0.24308741866893643 0.09680828472029733
+0.5301701096689199 0.24463451930901067 0.5301701096689199 0.24463451930901067 0.06241355805842158
+0.5393190785791864 0.24527117783966512 0.5393190785791865 0.2452711778396651 0.08771820456548017
+0.5333498676495876 0.24605241866348684 0.5333498676495876 0.24605241866348684 0.06944446502600944
+0.5365041703887204 0.24749287638265863 0.5365041703887204 0.24749287638265863 0.0803697763529302
+0.5274350764541091 0.24695063939925244 0.5274350764541093 0.24695063939925244 0.0635060630975174
+0.5247650615043795 0.24922773046905278 0.5247650615043796 0.24922773046905275 0.06716313392365175
+0.5451977330831631 0.24095488117945765 0.5451977330831631 0.24095488117945765 0.10741551527795347
+0.5671568244036809 0.2266028554414075 0.567156824403681 0.22660285544140749 0.1988155036331829
+0.5640333164992732 0.2285743269247315 0.5640333164992732 0.22857432692473154 0.18557423644026635
+0.5482421263441487 0.23885601918910535 0.5482421263441487 0.23885601918910535 0.11912344268907575
+0.5513288964015838 0.23677861298890002 0.5513288964015838 0.23677861298890002 0.1316057635712876
+0.5544471809523225 0.2347130098027327 0.5544471809523225 0.2347130098027327 0.14461180171032775
+0.5575999714803844 0.23265422234090108 0.5575999714803844 0.23265422234090108 0.15799950511102315
+0.5608019841106218 0.23059969842521036 0.5608019841106219 0.23059969842521036 0.17171347360664668
+0.5728314408522762 0.2239002324246006 0.5728314408522762 0.22390023242460064 0.2234843719554945
+0.5710618981970936 0.22765040507111256 0.5710618981970937 0.22765040507111256 0.21946447057004928
+0.5762160596930209 0.2228023729455917 0.5762160596930209 0.2228023729455917 0.23833437535913019
+0.5797260367713576 0.22180526053846883 0.5797260367713576 0.22180526053846883 0.2535787509668807
+0.5831725546484043 0.22083722945256776 0.5831725546484043 0.22083722945256776 0.2681584992868265
+0.5866016743222372 0.21990293964643493 0.5866016743222372 0.21990293964643493 0.2822646498667685
+0.5900122870229616 0.21899355500151937 0.5900122870229616 0.21899355500151937 0.2958688169396255
+0.545423211228944 0.24470385161471195 0.545423211228944 0.24470385161471195 0.11353215213502636
+0.5933628336789437 0.21803179940694287 0.5933628336789437 0.21803179940694287 0.3086599514328499
+0.5967230097896167 0.21698087639274735 0.5967230097896167 0.21698087639274735 0.32083270005139447
+0.600096023781572 0.21584566562624072 0.600096023781572 0.21584566562624072 0.3323834113197505
+0.6034703622439993 0.21462761055418467 0.6034703622439993 0.21462761055418467 0.34323266837469607
+0.6068706514016686 0.21332884720009623 0.6068706514016685 0.21332884720009623 0.3534424670062731
+0.610297736334391 0.2119920718812028 0.610297736334391 0.2119920718812028 0.36305275663468883
+0.6166961788923454 0.2093550075721835 0.6166961788923454 0.2093550075721835 0.3790851147078684
+0.6190182898170057 0.20872109902897285 0.6190182898170057 0.20872109902897282 0.38489706413746483
+0.6136923821462816 0.21064554214522183 0.6136923821462816 0.21064554214522183 0.37192066776223687
+0.650627613567595 0.17290954778150827 0.650627613567595 0.17290954778150827 0.39315999297804277
+0.6443513996702285 0.17629990410962423 0.6443513996702285 0.17629990410962423 0.38542950806674736
+0.6485355446172277 0.17629992329653169 0.6485355446172277 0.17629992329653169 0.394638372704844
+0.6422591982257692 0.17969018143166457 0.6422591982257692 0.17969018143166457 0.3869993592738012
+0.6401671946413017 0.183079570634358 0.6401671946413017 0.183079570634358 0.3886932847962435
+0.638076230869843 0.18646518282495772 0.638076230869843 0.18646518282495772 0.39046783498428717
+0.631800916239677 0.1898410642264069 0.631800916239677 0.1898410642264069 0.3821456336428231
+0.6297138450409779 0.19322377795490203 0.6297138450409779 0.193223777954902 0.383710304580974
+0.627642991990593 0.1965885388488069 0.627642991990593 0.1965885388488069 0.38515567958306146
+0.6187666953900562 0.21058449084474234 0.6187666953900562 0.21058449084474234 0.3877341800428428
+0.625624686344126 0.1999433645207562 0.625624686344126 0.1999433645207562 0.38654167769867115
+0.6235866154544144 0.20322587038665305 0.6235866154544144 0.20322587038665305 0.3875030160674
+0.6212766031474806 0.20668618103200215 0.6212766031474805 0.20668618103200218 0.38777288043823205
+0.6210792039693244 0.20993700080075278 0.6210792039693244 0.2099370008007528 0.3934750623035687
+0.6359869133668729 0.18984397403352052 0.6359869133668729 0.18984397403352052 0.3922699666229404
+0.6610878661087722 0.1627383981681092 0.6610878661087723 0.1627383981681092 0.3981290833428621
+0.6652719665271825 0.1627383981681092 0.6652719665271825 0.1627383981681092 0.40614845840564623
+0.6589958158995671 0.16612878146327814 0.6589958158995671 0.16612878146327814 0.399279687671179
+0.656903765690362 0.16951916475844708 0.656903765690362 0.16951916475844708 0.4005358505011611
+0.654811715103257 0.1729095479879971 0.654811715103257 0.1729095479879971 0.40192403940506166
+0.6861924686192334 0.13561533180675767 0.6861924686192334 0.13561533180675767 0.3984071177494502
+0.6841004184100283 0.1390057151019266 0.6841004184100283 0.1390057151019266 0.40082275976762566
+0.6820083682008233 0.14239609839709555 0.6820083682008233 0.14239609839709555 0.4030957575872493
+0.6799163179916182 0.1457864816922645 0.6799163179916182 0.1457864816922645 0.4052104233403336
+0.6778242677824131 0.14917686498743343 0.6778242677824132 0.14917686498743343 0.4071641721641342
+0.675732217573208 0.15256724828260237 0.675732217573208 0.15256724828260237 0.4089668447274038
+0.6736401673640029 0.15595763157777132 0.6736401673640029 0.15595763157777132 0.41063937088781693
+0.6715481171547978 0.15934801487294026 0.6715481171547978 0.15934801487294026 0.4122118532235584
+0.6694560669455927 0.1627383981681092 0.6694560669455926 0.1627383981681092 0.41372117092361144
+0.6924686192468487 0.13222494851158875 0.6924686192468487 0.13222494851158875 0.3997496260497186
+0.6903765690376436 0.13561533180675767 0.6903765690376434 0.13561533180675767 0.4026402455808657
+0.6987447698744642 0.1288345652164198 0.6987447698744642 0.1288345652164198 0.400013789129997
+0.6966527196652589 0.13222494851158875 0.6966527196652589 0.13222494851158875 0.4031906547134265
+0.7050209205020795 0.12544418192125092 0.7050209205020795 0.12544418192125092 0.39969016093074045
+0.7029288702928744 0.12883456521641984 0.7029288702928743 0.1288345652164198 0.4028749240735117
+0.711297071129695 0.1220537986260819 0.711297071129695 0.1220537986260819 0.3993976275552087
+0.7092050209204898 0.12544418192125084 0.7092050209204898 0.12544418192125084 0.4022488568801233
+0.7175732217573101 0.11866341533091296 0.7175732217573101 0.11866341533091296 0.39981193625660666
+0.7154811715481051 0.1220537986260819 0.7154811715481051 0.1220537986260819 0.40196874444959113
+0.7259414225941305 0.11188264874057507 0.7259414225941305 0.11188264874057507 0.40118558625344153
+0.7238493723849254 0.11527303203574402 0.7238493723849254 0.11527303203574402 0.40156753576670173
+0.7217573221757202 0.11866341533091296 0.7217573221757202 0.11866341533091296 0.40270657931786596
+0.732217573221746 0.10849226544540613 0.732217573221746 0.10849226544540613 0.406043772273782
+0.7301255230125409 0.11188264874057507 0.7301255230125409 0.11188264874057507 0.4051473855099778
+0.7384937238493611 0.10510188215023719 0.7384937238493611 0.10510188215023719 0.4129401347030041
+0.7364016736401561 0.10849226544540613 0.7364016736401561 0.10849226544540613 0.41078528765743677
+0.7447698744769767 0.10171149885506825 0.7447698744769767 0.10171149885506825 0.4216307246418119
+0.7426778242677715 0.10510188215023719 0.7426778242677715 0.10510188215023719 0.4184077408197919
+0.7510460251045918 0.09832111555989931 0.7510460251045918 0.09832111555989931 0.43158800090650346
+0.7489539748953868 0.10171149885506825 0.7489539748953868 0.10171149885506825 0.4276325346393867
+0.7573221757322073 0.09493073226473037 0.7573221757322073 0.09493073226473037 0.44207771876784924
+0.7552301255230022 0.09832111555989931 0.7552301255230022 0.09832111555989931 0.43782285391495984
+0.7635983263598226 0.09154034896956142 0.7635983263598226 0.09154034896956142 0.4522599397290806
+0.7615062761506175 0.09493073226473037 0.7615062761506176 0.09493073226473037 0.44817901526422926
+0.7698744769874379 0.08814996567439248 0.7698744769874378 0.08814996567439248 0.4612914741291605
+0.7677824267782328 0.09154034896956142 0.7677824267782328 0.09154034896956142 0.4578436260024668
+0.7782426778242584 0.0813691990840546 0.7782426778242585 0.0813691990840546 0.46997558848267557
+0.7761506276150533 0.08475958237922354 0.7761506276150533 0.08475958237922354 0.4684145216723536
+0.7740585774058482 0.08814996567439248 0.7740585774058482 0.08814996567439248 0.46600009749645094
+0.7845188284518737 0.07797881578888566 0.7845188284518737 0.07797881578888566 0.47310486031397353
+0.7824267782426686 0.0813691990840546 0.7824267782426686 0.0813691990840546 0.4730249018726948
+0.790794979079489 0.07458843249371672 0.790794979079489 0.07458843249371672 0.47318614148572175
+0.7887029288702839 0.07797881578888566 0.7887029288702839 0.07797881578888566 0.4747191876318699
+0.7970711297071044 0.07119804919854777 0.7970711297071044 0.07119804919854777 0.4701656951652358
+0.7949790794978993 0.07458843249371672 0.7949790794978994 0.07458843249371672 0.4733226350189179
+0.8033472803347197 0.06780766590337883 0.8033472803347196 0.06780766590337883 0.4642253439016053
+0.8012552301255146 0.07119804919854777 0.8012552301255146 0.07119804919854777 0.46890004460258844
+0.809623430962335 0.06441728260820989 0.809623430962335 0.06441728260820989 0.45576955327695484
+0.8075313807531299 0.06780766590337883 0.8075313807531298 0.06780766590337883 0.4617507607130738
+0.8158995815899504 0.06102689931304095 0.8158995815899504 0.06102689931304095 0.44539660965878
+0.8138075313807452 0.06441728260820989 0.8138075313807452 0.06441728260820989 0.45238770373401155
+0.8221757322175657 0.05763651601787201 0.8221757322175657 0.05763651601787201 0.4338524245060445
+0.8200836820083606 0.06102689931304095 0.8200836820083605 0.06102689931304095 0.44149915353759633
+0.828451882845181 0.054246132722703067 0.8284518828451811 0.054246132722703067 0.4219656546098935
+0.8263598326359759 0.05763651601787201 0.8263598326359759 0.05763651601787201 0.4298915341853868
+0.8347280334727963 0.050855749427534125 0.8347280334727963 0.050855749427534125 0.4105649846733192
+0.8326359832635912 0.054246132722703067 0.8326359832635912 0.054246132722703067 0.41841258965055284
+0.8430962343096168 0.04407498283719624 0.8430962343096168 0.04407498283719624 0.39289844311941513
+0.8410041841004117 0.04746536613236518 0.8410041841004116 0.04746536613236518 0.4003844637106376
+0.8389121338912066 0.050855749427534125 0.8389121338912066 0.050855749427534125 0.40785818989240846
+0.8493723849372321 0.0406845995420273 0.8493723849372321 0.0406845995420273 0.3851310658521147
+0.847280334728027 0.04407498283719624 0.847280334728027 0.04407498283719624 0.39197029812576073
+0.8556485355648474 0.03729421624685836 0.8556485355648474 0.03729421624685836 0.37945002395413513
+0.8535564853556423 0.0406845995420273 0.8535564853556422 0.0406845995420273 0.3856092910479431
+0.8619246861924628 0.03390383295168942 0.8619246861924629 0.03390383295168942 0.37574957141711757
+0.8598326359832577 0.03729421624685836 0.8598326359832577 0.03729421624685836 0.3812996067414432
+0.8682008368200781 0.030513449656520475 0.8682008368200781 0.030513449656520475 0.3736942817912361
+0.866108786610873 0.03390383295168942 0.866108786610873 0.03390383295168942 0.378774830554522
+0.8744769874476934 0.027123066361351533 0.8744769874476933 0.027123066361351533 0.37280216594854654
+0.8723849372384883 0.030513449656520475 0.8723849372384883 0.030513449656520475 0.3775752758204278
+0.8807531380753088 0.02373268306618259 0.8807531380753088 0.02373268306618259 0.37254145280072537
+0.8786610878661036 0.027123066361351533 0.8786610878661038 0.027123066361351533 0.3771454161984223
+0.8870292887029241 0.02034229977101365 0.887029288702924 0.02034229977101365 0.3724170198948882
+0.884937238493719 0.02373268306618259 0.884937238493719 0.02373268306618259 0.376931340370042
+0.8953974895397445 0.013561533180675767 0.8953974895397446 0.013561533180675767 0.36815837844458305
+0.8933054393305394 0.01695191647584471 0.8933054393305394 0.01695191647584471 0.37203073479868914
+0.8912133891213343 0.02034229977101365 0.8912133891213344 0.02034229977101365 0.3764577337429211
+0.9016736401673598 0.010171149885506825 0.9016736401673598 0.010171149885506825 0.36759781544907844
+0.8995815899581547 0.013561533180675767 0.8995815899581547 0.013561533180675767 0.37111026792912777
+0.9079497907949752 0.006780766590337883 0.9079497907949751 0.006780766590337883 0.3665067341036019
+0.9058577405857701 0.010171149885506825 0.9058577405857701 0.010171149885506825 0.36950880830425076
+0.9121338912133854 0.006780766590337883 0.9121338912133855 0.006780766590337883 0.36718257195887305
+0.006780766172267073 0.91631799244964 0.006780766172267072 0.91631799244964 0.09386028602919398
+0.006780765095983666 0.9205020949307715 0.006780765095983666 0.9205020949307715 0.0935374204769104
+0.010171149753357476 0.9100418412527104 0.010171149753357476 0.9100418412527104 0.09450112566573356
+0.010171149406827909 0.9142259423052751 0.010171149406827909 0.9142259423052751 0.09459781072843874
+0.01356153314146701 0.9037656904438611 0.01356153314146701 0.9037656904438611 0.09471728963568482
+0.013561533036091299 0.9079497910361893 0.013561533036091299 0.9079497910361894 0.09522298661708785
+0.016951916443160218 0.9016736402194155 0.016951916443160218 0.9016736402194155 0.09536005800600666
+0.02034229976959782 0.8953974895420745 0.02034229976959782 0.8953974895420745 0.0949673924341708
+0.020342299765414327 0.8995815899670622 0.020342299765414327 0.8995815899670622 0.09601652210569285
+0.023732683063085697 0.8891213389154792 0.023732683063085697 0.8891213389154792 0.09402740248047527
+0.023732683052903655 0.8933054393444307 0.023732683052903655 0.8933054393444307 0.09541485357669771
+0.027123066359157205 0.8828451882875167 0.027123066359157205 0.8828451882875167 0.0925599033818205
+0.027123066351993838 0.8870292887155254 0.02712306635199384 0.8870292887155254 0.09421657923238926
+0.030513449655608437 0.8765690376584995 0.030513449655608437 0.8765690376584995 0.09063480426877467
+0.03051344965271305 0.8807531380819693 0.03051344965271305 0.8807531380819693 0.09246451170312288
+0.03390383295140269 0.8702928870299195 0.033903832951402695 0.8702928870299195 0.08838262392327421
+0.033903832950520456 0.8744769874503038 0.033903832950520456 0.8744769874503039 0.09025876093646161
+0.03729421624678831 0.8640167364018368 0.03729421624678831 0.8640167364018368 0.08600044653774293
+0.0372942162465768 0.8682008368207587 0.0372942162465768 0.8682008368207587 0.08776524243037963
+0.04068459954200764 0.857740585774196 0.04068459954200764 0.857740585774196 0.08374931620888794
+0.04068459954194172 0.8619246861930795 0.04068459954194172 0.8619246861930795 0.08521833958545287
+0.044074982837191516 0.8514644351465496 0.044074982837191516 0.8514644351465496 0.08193726302074804
+0.044074982837174925 0.8556485355653276 0.044074982837174925 0.8556485355653276 0.08291285106429401
+0.047465366132363705 0.8451882845188826 0.047465366132363705 0.8451882845188826 0.08088229778523535
+0.047465366132360486 0.8493723849374827 0.047465366132360486 0.8493723849374827 0.08117874749456143
+0.050855749427532244 0.8430962343097184 0.050855749427532244 0.8430962343097184 0.08033408856967185
+0.05424613272270145 0.8368200836820378 0.05424613272270145 0.8368200836820378 0.08062068309085997
+0.05424613272269938 0.8410041841005486 0.05424613272269938 0.8410041841005486 0.07977655593545487
+0.05763651601787038 0.8305439330543999 0.05763651601787038 0.8305439330543999 0.08214231873822014
+0.05763651601786965 0.8347280334728385 0.057636516017869656 0.8347280334728385 0.08041640997896839
+0.061026899313039305 0.824267782426778 0.061026899313039305 0.824267782426778 0.08483368028657508
+0.0610268993130391 0.8284518828451949 0.0610268993130391 0.8284518828451949 0.08230991952919924
+0.06441728260820818 0.8179916317991611 0.06441728260820818 0.8179916317991612 0.08847542442296646
+0.06441728260820816 0.8221757322175723 0.06441728260820816 0.8221757322175723 0.08531857402817461
+0.06780766590337706 0.8117154811715457 0.06780766590337706 0.8117154811715457 0.09274485945152165
+0.06780766590337704 0.8158995815899561 0.06780766590337704 0.8158995815899562 0.08916432737452344
+0.0711980491985459 0.8054393305439307 0.0711980491985459 0.8054393305439307 0.0972766336453555
+0.0711980491985459 0.8096234309623407 0.0711980491985459 0.8096234309623407 0.09349106759663504
+0.07458843249371476 0.7991631799163157 0.07458843249371476 0.7991631799163157 0.10171326899171108
+0.07458843249371476 0.8033472803347257 0.07458843249371476 0.8033472803347257 0.09792537766724742
+0.07797881578888362 0.7928870292887007 0.07797881578888362 0.7928870292887007 0.10573908378916126
+0.07797881578888362 0.7970711297071107 0.07797881578888362 0.7970711297071107 0.1021213900130067
+0.08136919908405248 0.7866108786610857 0.08136919908405248 0.7866108786610857 0.10910025337492159
+0.08136919908405248 0.7907949790794957 0.08136919908405248 0.7907949790794957 0.10578834230700583
+0.08475958237922132 0.7845188284518807 0.08475958237922132 0.7845188284518807 0.10870586457092524
+0.08814996567439015 0.7782426778242657 0.08814996567439015 0.7782426778242657 0.11073240505778896
+0.08814996567439015 0.7824267782426757 0.08814996567439015 0.7824267782426757 0.10806720307466104
+0.09154034896955902 0.7719665271966507 0.09154034896955902 0.7719665271966507 0.11181038470313222
+0.09154034896955902 0.7761506276150607 0.09154034896955902 0.7761506276150607 0.10961158321756588
+0.09493073226472787 0.7656903765690357 0.09493073226472787 0.7656903765690357 0.11196979108762446
+0.09493073226472787 0.7698744769874457 0.09493073226472787 0.7698744769874457 0.11022801632061567
+0.09832111555989675 0.7594142259414207 0.09832111555989675 0.7594142259414207 0.11133043931982999
+0.09832111555989675 0.7635983263598307 0.09832111555989675 0.7635983263598307 0.10999257314933218
+0.10171149885506564 0.7531380753138057 0.10171149885506563 0.7531380753138057 0.11010178142790301
+0.10171149885506564 0.7573221757322157 0.10171149885506563 0.7573221757322157 0.10907105636784391
+0.10510188215023453 0.7468619246861907 0.10510188215023453 0.7468619246861907 0.10857759189070894
+0.10510188215023453 0.7510460251046007 0.10510188215023453 0.7510460251046007 0.10771598825440609
+0.10849226544540343 0.7405857740585757 0.10849226544540343 0.7405857740585757 0.10712110207775027
+0.10849226544540343 0.7447698744769857 0.10849226544540343 0.7447698744769857 0.10625639886577438
+0.11188264874057234 0.7343096234309607 0.11188264874057234 0.7343096234309607 0.10613514175859455
+0.11188264874057234 0.7384937238493707 0.11188264874057234 0.7384937238493707 0.10507535730883898
+0.11527303203574124 0.7280334728033457 0.11527303203574124 0.7280334728033457 0.10601390722594296
+0.11527303203574124 0.7322175732217557 0.11527303203574124 0.7322175732217557 0.10457055737144605
+0.11866341533091013 0.7259414225941407 0.11866341533091011 0.7259414225941407 0.10509818702976474
+0.12205379862607901 0.7196652719665257 0.12205379862607901 0.7196652719665257 0.10691070849358075
+0.12205379862607901 0.7238493723849357 0.12205379862607901 0.7238493723849357 0.10465678203566582
+0.12544418192124793 0.7133891213389107 0.12544418192124793 0.7133891213389107 0.11010946906490147
+0.12544418192124793 0.7175732217573207 0.12544418192124793 0.7175732217573207 0.10721149207110812
+0.1288345652164168 0.7071129707112958 0.1288345652164168 0.7071129707112958 0.11463225201840378
+0.1288345652164168 0.7112970711297057 0.1288345652164168 0.7112970711297057 0.11110575195898809
+0.13222494851158573 0.7008368200836808 0.13222494851158573 0.7008368200836808 0.12028009292935178
+0.13222494851158573 0.7050209205020908 0.13222494851158573 0.7050209205020908 0.11620129194231231
+0.1356153318067546 0.6945606694560658 0.13561533180675459 0.6945606694560658 0.12676892954110439
+0.1356153318067546 0.6987447698744758 0.13561533180675459 0.6987447698744758 0.1222526622093121
+0.1390057151019235 0.6882845188284508 0.1390057151019235 0.6882845188284508 0.133784991210083
+0.1390057151019235 0.6924686192468608 0.1390057151019235 0.6924686192468608 0.1289617440255477
+0.1423960983970924 0.6861924686192458 0.1423960983970924 0.6861924686192458 0.13602696208136603
+0.1457864816922613 0.6841004184100408 0.1457864816922613 0.6841004184100408 0.13819612344629476
+0.1491768649874302 0.6820083682008358 0.1491768649874302 0.6820083682008358 0.14024614842341832
+0.1525672482825991 0.6799163179916308 0.15256724828259907 0.6799163179916308 0.14214134812681614
+0.15595763157776799 0.6778242677824258 0.15595763157776799 0.6778242677824258 0.14385680835963885
+0.1593480148729369 0.6757322175732208 0.1593480148729369 0.6757322175732208 0.14537811397361985
+0.16273839816810579 0.6694560669456058 0.16273839816810579 0.6694560669456058 0.1514037982221291
+0.1661287814632747 0.6673640167364008 0.1661287814632747 0.6673640167364008 0.15247450377178096
+0.17629896692608438 0.6527195475861046 0.17629896692608438 0.6527195475861046 0.16384834211980492
+0.1830645942697731 0.6443505297707829 0.1830645942697731 0.6443505297707829 0.16939919510887727
+0.18643634089489522 0.6422524786023643 0.18643634089489522 0.6422524786023643 0.16988452761217224
+0.19320510995415754 0.6338859067916426 0.19320510995415754 0.6338859067916426 0.17565603130570584
+0.1966087921713449 0.6317681557986583 0.1966087921713449 0.6317681557986584 0.1763144369913725
+0.2000660899097527 0.6296366554274067 0.2000660899097527 0.6296366554274067 0.1770214235058942
+0.2034624227638132 0.6234344667342584 0.20346242276381324 0.6234344667342584 0.18275409442764132
+0.2068387484090256 0.6213802209277896 0.20683874840902564 0.6213802209277896 0.18362334667772776
+0.21009997650588597 0.6194452084613201 0.21009997650588597 0.6194452084613201 0.18444955343988104
+0.20364529249595667 0.6275766499556924 0.20364529249595667 0.6275766499556924 0.177653811377288
+0.18980188879685514 0.6401542193770343 0.18980188879685514 0.6401542193770343 0.1703899650483155
+0.19315737163215196 0.6380523077166235 0.19315737163215196 0.6380523077166235 0.17093882219935372
+0.17968544525771746 0.6506270638032372 0.17968544525771746 0.6506270638032373 0.16434998829225203
+0.18306608609676167 0.6485336897306039 0.18306608609676167 0.6485336897306039 0.1648120254657031
+0.16951916475844359 0.6610878661087858 0.16951916475844356 0.6610878661087858 0.15798745926241972
+0.16951916475844359 0.6652719665271958 0.16951916475844356 0.6652719665271958 0.15337124165494642
+0.17290953753587127 0.6589958156654188 0.17290953753587127 0.6589958156654188 0.15869269970732033
+0.17629954887737986 0.6569037100137275 0.17629954887737986 0.6569037100137275 0.1592837287162221
+0.16273839816810579 0.6736401673640158 0.16273839816810579 0.6736401673640158 0.14670073947446427
+0.22056260487725746 0.5955161352049179 0.22056260487725746 0.5955161352049179 0.2127874513031385
+0.22026390381243266 0.599029874123961 0.22026390381243263 0.599029874123961 0.2076561817516069
+0.21950146400102472 0.6024753324971863 0.2195014640010247 0.6024753324971863 0.2029280562732482
+0.2310653285294101 0.5791010588278777 0.2310653285294101 0.5791010588278777 0.23578570824637815
+0.22376440223349744 0.5936806858121965 0.22376440223349744 0.5936806858121965 0.21432242922273262
+0.2276185612725153 0.584538271283911 0.2276185612725153 0.584538271283911 0.22758860170894699
+0.22701842898342353 0.5917106862481583 0.22701842898342353 0.5917106862481583 0.21615879899100388
+0.22735658064624276 0.5881517311930935 0.22735658064624276 0.5881517311930935 0.2217668445064793
+0.2309441300258316 0.5827235630160542 0.2309441300258316 0.5827235630160542 0.22962826077395307
+0.21317628338173555 0.6101770575152369 0.21317628338173558 0.6101770575152369 0.19509062727142937
+0.21649057001556005 0.6081326252583047 0.21649057001556002 0.6081326252583047 0.1963397625647204
+0.2196900618815857 0.6060963614620264 0.2196900618815857 0.6060963614620264 0.19769743906530413
+0.21329918196681058 0.613771548435772 0.2132991819668106 0.6137715484357721 0.19023512532791367
+0.21338670392515335 0.6174661346728293 0.21338670392515335 0.6174661346728293 0.1853630249017735
+0.39129771033628946 0.3617455591924365 0.3912977103362895 0.3617455591924365 0.3316685775716604
+0.3883634293949685 0.36309097795791834 0.3883634293949685 0.36309097795791834 0.32452226305880044
+0.3823640182735908 0.36273830948603486 0.3823640182735908 0.36273830948603486 0.30703773379598903
+0.37947045818560365 0.3643567967342505 0.37947045818560365 0.3643567967342505 0.2993102858870982
+0.38551734204452054 0.3646045083287183 0.38551734204452054 0.3646045083287183 0.3174142190337852
+0.3765929922743192 0.366016069857874 0.3765929922743192 0.366016069857874 0.29133339333015634
+0.3704316234179135 0.36594787988848276 0.3704316234179135 0.36594787988848276 0.2721977853328748
+0.3675634468948113 0.3677603430896817 0.3675634468948113 0.3677603430896817 0.2636100771946411
+0.37373406378008545 0.36771890630714416 0.37373406378008545 0.36771890630714416 0.28311630864366605
+0.36473140691977757 0.3696289272777331 0.36473140691977757 0.3696289272777331 0.25489784948354327
+0.3584723627857164 0.3699370219236046 0.3584723627857164 0.3699370219236046 0.23510425636606644
+0.35564211090095316 0.371983060524994 0.35564211090095316 0.371983060524994 0.22610453827865307
+0.36190167993158107 0.37156032981262976 0.36190167993158107 0.37156032981262976 0.24597356709655024
+0.35284177909954345 0.37408983763823683 0.35284177909954345 0.37408983763823683 0.21711490066685493
+0.3465080093474136 0.3747901105923091 0.3465080093474136 0.3747901105923091 0.1980339992985509
+0.3437121574578441 0.3770297725180946 0.3437121574578441 0.3770297725180946 0.18950037775202466
+0.35006844623320643 0.3762479091368871 0.35006844623320643 0.3762479091368871 0.20819656025052133
+0.3409595571502549 0.3793973370612234 0.3409595571502549 0.3793973370612234 0.18134151811418622
+0.33473600054095926 0.38074376943890686 0.33473600054095926 0.38074376943890686 0.16564414812847583
+0.3319959938557347 0.3831653431848665 0.3319959938557347 0.3831653431848665 0.1593056732504958
+0.33833080269644306 0.3818588751725683 0.33833080269644306 0.3818588751725683 0.17392266425896954
+0.32914975575951955 0.3854825240566435 0.32914975575951955 0.3854825240566435 0.15371464331741835
+0.32267446368019825 0.388844054235747 0.32267446368019825 0.388844054235747 0.1448118325490048
+0.32089921438152164 0.391072479973583 0.32089921438152164 0.391072479973583 0.14405451848259218
+0.32616821111816563 0.38800811397599133 0.32616821111816563 0.3880081139759914 0.14915995419959713
+0.31826641710458026 0.3933176936740807 0.3182664171045802 0.3933176936740807 0.14359829889031875
+0.3156415111990043 0.39561068552525347 0.3156415111990043 0.39561068552525347 0.14458289666770227
+0.31303308060374946 0.397902808154295 0.3130330806037494 0.397902808154295 0.14691355684604332
+0.31035990723830803 0.40017460284672146 0.31035990723830803 0.4001746028467215 0.15048100647676657
+0.3077200383184786 0.402662698983331 0.3077200383184786 0.402662698983331 0.15551369018618247
+0.30019532480392613 0.4100328569736894 0.30019532480392613 0.41003285697368946 0.17590915225698825
+0.30277650632063524 0.40728255817355 0.3027765063206353 0.40728255817355 0.16769783093020466
+0.30527210781347275 0.4049632990835379 0.30527210781347275 0.4049632990835379 0.16123284298673582
+0.2976670694713568 0.41286229991333867 0.2976670694713568 0.41286229991333867 0.1848658552396731
+0.2951584329266468 0.41599108404025775 0.2951584329266468 0.4159910840402578 0.19501545332596873
+0.29206540450373764 0.4177069722755939 0.29206540450373764 0.4177069722755939 0.2019893188762011
+0.2904256192811455 0.42048609548253935 0.29042561928114546 0.4204860954825394 0.21093895827953216
+0.2882402370158557 0.423447104950634 0.2882402370158557 0.4234471049506339 0.2207605892629508
+0.28148845786896226 0.43201193055468246 0.28148845786896226 0.4320119305546824 0.24866923052718168
+0.2859996159846359 0.4263333227972097 0.2859996159846359 0.42633332279720976 0.23034721704672736
+0.2837379089837688 0.42920267807468665 0.2837379089837688 0.42920267807468665 0.23972871223581585
+0.2791437336472039 0.43482181707040346 0.27914373364720385 0.4348218170704035 0.2573052862256269
+0.27703531578880125 0.4379984987740228 0.27703531578880125 0.4379984987740228 0.2665454422080655
+0.2749636460464182 0.4411476107538727 0.2749636460464182 0.4411476107538727 0.27524049286920205
+0.272956333959963 0.4442847461660605 0.272956333959963 0.44428474616606056 0.2834118560367705
+0.27091091719388155 0.44742417064524687 0.27091091719388155 0.4474241706452469 0.29106926530873833
+0.2688405207340056 0.4506316712198515 0.2688405207340056 0.45063167121985154 0.2983172833865933
+0.26666795577513136 0.45398228517611217 0.2666679557751314 0.4539822851761121 0.3052638037355115
+0.26484685222702664 0.45749608717093193 0.26484685222702664 0.4574960871709319 0.3119659904131726
+0.2632130921225258 0.4607434100250349 0.2632130921225258 0.4607434100250349 0.3175955603543326
+0.2615441456223756 0.46399069773603646 0.26154414562237566 0.46399069773603646 0.3225956293099043
+0.2598206487715177 0.4672117446092823 0.2598206487715177 0.46721174460928233 0.3268889232308538
+0.25808118658738644 0.4703593136343502 0.25808118658738644 0.4703593136343502 0.33043212411994066
+0.25608965486429114 0.4726804795642204 0.25608965486429114 0.47268047956422043 0.3320277382577381
+0.2559240635925991 0.47545644604798926 0.25592406359259906 0.47545644604798926 0.33554481468110015
+0.2546917196950586 0.47861087355445237 0.2546917196950586 0.47861087355445237 0.33805786912152186
+0.2533636697793665 0.48183924841085024 0.2533636697793665 0.4818392484108502 0.3399959041986423
+0.25204483476046213 0.48504711083532753 0.2520448347604622 0.48504711083532753 0.3413618886004653
+0.25077945088931636 0.4881937162344455 0.25077945088931636 0.48819371623444546 0.34218640515122156
+0.24960689158971072 0.49131364459898447 0.24960689158971072 0.49131364459898447 0.34258472049215777
+0.24854068755279926 0.49445117505502995 0.24854068755279926 0.49445117505502995 0.34260926497259486
+0.24751968330962823 0.49762602339135764 0.24751968330962823 0.49762602339135764 0.3422231919930319
+0.24649769276645314 0.5008592098794563 0.24649769276645314 0.5008592098794563 0.3413450395736315
+0.2454827863923061 0.5041393756945197 0.2454827863923061 0.5041393756945197 0.3399842948320257
+0.24448838339563952 0.5074427061980445 0.24448838339563952 0.5074427061980445 0.33816520858242
+0.24353886844354963 0.5107578726228736 0.24353886844354963 0.5107578726228735 0.33592909120493836
+0.24265751364022511 0.5140738439450706 0.24265751364022511 0.5140738439450706 0.3333239257123662
+0.24183359780010769 0.5173989500926143 0.24183359780010769 0.5173989500926143 0.33035376199374783
+0.24104180059668143 0.5207537072071265 0.24104180059668143 0.5207537072071265 0.3269939498182705
+0.2402903648059024 0.5241278177488974 0.2402903648059024 0.5241278177488974 0.32327232263148215
+0.23957102528534693 0.5275392549760672 0.23957102528534693 0.5275392549760672 0.3191810689849304
+0.23888931761932405 0.530983921249087 0.23888931761932405 0.5309839212490869 0.31474558186519636
+0.2382510152914792 0.5344486635239297 0.2382510152914792 0.5344486635239297 0.31000430771038096
+0.23766840949897816 0.5379114801948636 0.23766840949897813 0.5379114801948636 0.3050158323002718
+0.23713214690400317 0.5413884101931365 0.23713214690400317 0.5413884101931367 0.29977701302722765
+0.23663743079846652 0.5448951886191921 0.23663743079846652 0.5448951886191921 0.29428174479149694
+0.23620129818267976 0.5484210451629948 0.23620129818267976 0.5484210451629948 0.28857501700386906
+0.23580990599295895 0.5519738679778241 0.23580990599295895 0.5519738679778241 0.2826639873448033
+0.23544917407451715 0.5555446727768912 0.23544917407451713 0.5555446727768912 0.276587175839425
+0.23510951995920057 0.5591265719243589 0.23510951995920057 0.5591265719243589 0.2703851954453516
+0.2347950193620508 0.5627186058826567 0.2347950193620508 0.5627186058826567 0.26409169144383343
+0.23451605142161733 0.5663451781961993 0.23451605142161733 0.5663451781961993 0.2576917824950826
+0.23437941818105998 0.5699783288103027 0.23437941818105998 0.5699783288103027 0.25122556547879543
+0.23437773741216586 0.573606950035324 0.23437773741216586 0.573606950035324 0.2447501066795613
+0.23436008987461274 0.5772474310608464 0.23436008987461274 0.5772474310608464 0.23827261666451924
+0.39708888857431385 0.352233730749754 0.39708888857431385 0.352233730749754 0.34075650104206895
+0.39412424706542876 0.35700523380653004 0.39412424706542876 0.3570052338065301 0.33590760124303326
+0.397083844587842 0.3556316556520198 0.397083844587842 0.3556316556520198 0.3424882188592997
+0.39425423206204924 0.36037842795568187 0.39425423206204924 0.36037842795568187 0.33854804203996985
+0.4040971166902785 0.3392881361451834 0.4040971166902785 0.3392881361451834 0.3530053893984824
+0.4005642558249845 0.34399888605583123 0.4005642558249845 0.34399888605583123 0.3462032146685761
+0.4037440649155702 0.3428494520522061 0.4037440649155702 0.3428494520522061 0.35290026313532635
+0.40033098736494677 0.3475456627534467 0.4003309873649467 0.3475456627534467 0.3465900359824452
+0.40014911340899006 0.35103311854135877 0.40014911340899006 0.3510331185413587 0.34746242643953323
+0.412416562840803 0.3264492117826874 0.412416562840803 0.3264492117826874 0.36662289790724123
+0.4083831290968684 0.33103458137541053 0.4083831290968684 0.33103458137541053 0.3603768317194423
+0.41173175598016726 0.33008113342016304 0.41173175598016726 0.33008113342016304 0.36624165210649634
+0.40782126155720927 0.33465438227939504 0.40782126155720927 0.33465438227939504 0.35983074215363525
+0.40732803485783053 0.33822662044239316 0.40732803485783053 0.33822662044239316 0.3594259426517898
+0.42211982636956336 0.31380134143297833 0.42211982636956336 0.31380134143297833 0.374267723615868
+0.41748814399342354 0.3182319902504779 0.41748814399342354 0.31823199025047794 0.3714104562176113
+0.42105517081429955 0.3174708941450249 0.42105517081429955 0.3174708941450249 0.3752994292924116
+0.4166176903819221 0.3219461724425693 0.41661769038192203 0.32194617244256923 0.371724483371994
+0.4158105465378763 0.32559034472363885 0.4158105465378763 0.32559034472363885 0.3717609502079707
+0.4335265252495635 0.30126162335491025 0.4335265252495635 0.3012616233549102 0.36899544581294624
+0.4280927641017861 0.3062891138323165 0.42809276410178615 0.3062891138323165 0.37269167700935113
+0.43155019055145916 0.3046086131724023 0.43155019055145916 0.30460861317240223 0.37241535498658423
+0.42689996985184475 0.30970290130215455 0.42689996985184475 0.30970290130215455 0.3750599585704877
+0.42572482814650053 0.31324491089981327 0.42572482814650053 0.31324491089981327 0.3769955112428954
+0.45332995042203095 0.2850570346772609 0.45332995042203095 0.2850570346772609 0.3306486357367419
+0.4513756875837165 0.2882451669580183 0.45137568758371654 0.28824516695801833 0.3383919270814182
+0.44947541271336955 0.29146699225137024 0.4494754127133696 0.29146699225137024 0.345752993251708
+0.44764843022308637 0.2946994232143066 0.44764843022308637 0.2946994232143066 0.35263178193087347
+0.43884442449684524 0.2980824966310068 0.43884442449684524 0.2980824966310068 0.3640772983684437
+0.44240915286235616 0.298001328096542 0.44240915286235616 0.29800132809654206 0.3619726265905803
+0.4459093775222904 0.29792400278612313 0.4459093775222904 0.29792400278612313 0.3589619625544671
+0.43724104313575424 0.3013259907196968 0.43724104313575424 0.3013259907196968 0.36858679322469085
+0.4608605270057482 0.2790036010759872 0.4608605270057482 0.27900360107598715 0.3072042784997962
+0.4589708699977813 0.28211413312996964 0.4589708699977813 0.28211413312996964 0.31572721360964745
+0.4643379715687723 0.2792146804675212 0.4643379715687724 0.2792146804675211 0.2992456195871927
+0.4570138678717682 0.2852689408851217 0.4570138678717682 0.2852689408851217 0.3242852052789396
+0.4850686899835594 0.2656342765660934 0.4850686899835594 0.26563427656609345 0.2185827296035396
+0.48265561333435203 0.2683818946185437 0.48265561333435203 0.2683818946185437 0.22984149316845062
+0.47693415590683486 0.27253290994893753 0.47693415590683486 0.27253290994893753 0.2538577144245605
+0.4800227159616094 0.27136994627829203 0.48002271596160945 0.2713699462782921 0.24220633036639333
+0.4753571308488859 0.27485973897209753 0.4753571308488859 0.27485973897209753 0.2617750180998581
+0.473252328077015 0.27671173472174837 0.47325232807701495 0.2767117347217484 0.27075371624418015
+0.4676175514755197 0.27928374563000985 0.4676175514755197 0.27928374563000985 0.29071531239757803
+0.4708559252623519 0.2784261119352181 0.4708559252623519 0.2784261119352181 0.28026996114595665
+0.5028587309607744 0.2576489718463841 0.5028587309607744 0.2576489718463841 0.14327887507017345
+0.49337820698058193 0.2610931350019549 0.49337820698058193 0.2610931350019549 0.18346537174201852
+0.5000296569097222 0.2599099002808411 0.5000296569097222 0.2599099002808411 0.1559304287047483
+0.4971948696195035 0.2623300715317674 0.4971948696195035 0.2623300715317674 0.16884844599806517
+0.4910143632415533 0.2639099707184022 0.4910143632415533 0.2639099707184022 0.1946490833535467
+0.48860568401237847 0.26660918431830527 0.48860568401237847 0.2666091843183053 0.20605906534448534
+0.5221264841194964 0.2514830546730409 0.5221264841194965 0.2514830546730409 0.07292677555844812
+0.5112391682887594 0.2540162226581212 0.5112391682887595 0.25401622265812124 0.1082551067499331
+0.5195703110525531 0.25374813751077907 0.5195703110525532 0.25374813751077907 0.08016678363526115
+0.5144494292988585 0.2551483194339651 0.5144494292988585 0.25514831943396515 0.09681637518780023
+0.5173485698013052 0.25522145293509685 0.5173485698013052 0.25522145293509685 0.08723924782409434
+0.5088137741008615 0.2564806968993559 0.5088137741008615 0.2564806968993559 0.11867221089530529
+0.5062609924825882 0.25895395081919786 0.5062609924825882 0.25895395081919786 0.12992283970323748
+0.5424660208225535 0.24681880980536333 0.5424660208225535 0.24681880980536333 0.10302972876680168
+0.5306041249839792 0.24838011577125613 0.5306041249839791 0.24838011577125615 0.06698157450188057
+0.5396083605451185 0.24896974395787885 0.5396083605451185 0.24896974395787885 0.09395608413630764
+0.5337561880257965 0.24975975130734376 0.5337561880257965 0.24975975130734376 0.07502593432404249
+0.5368494460124467 0.2511424896850247 0.5368494460124467 0.2511424896850247 0.08650470089810758
+0.5279220995450237 0.2506518369917104 0.5279220995450237 0.2506518369917104 0.06709438895821201
+0.5252436083236339 0.25288259384830447 0.5252436083236339 0.2528825938483044 0.06968109012597823
+0.5484449644724204 0.24261367227203698 0.5484449644724204 0.24261367227203698 0.12507882504009046
+0.5675194561128263 0.23022258999404538 0.5675194561128264 0.23022258999404535 0.20501429475041286
+0.5641874900528294 0.2322482526099503 0.5641874900528294 0.2322482526099503 0.19078359948880533
+0.5515103823560746 0.2405398897308889 0.5515103823560746 0.24053988973088894 0.13736638574325669
+0.5546012972319955 0.23847076653249552 0.5546012972319955 0.23847076653249552 0.15012899151690562
+0.5577165000881302 0.2364072241494686 0.5577165000881302 0.2364072241494686 0.16322709654384618
+0.5608837225993254 0.23434505356298332 0.5608837225993254 0.23434505356298332 0.1766845000302738
+0.5707698413674125 0.23199890715256644 0.5707698413674125 0.2319989071525664 0.22361190434980902
+0.575198097355461 0.22667116108081853 0.575198097355461 0.22667116108081853 0.23837122557864712
+0.5743494336047247 0.23043702460116577 0.5743494336047247 0.23043702460116577 0.23921816038482344
+0.5856866431064115 0.2235519548861524 0.5856866431064115 0.2235519548861524 0.2833429346452689
+0.5788242853702794 0.22555157159727438 0.5788242853702794 0.22555157159727438 0.25426067689599924
+0.5823022502406853 0.22451614575097445 0.5823022502406853 0.22451614575097442 0.26917807721128556
+0.5891585112050706 0.22274660849430106 0.5891585112050706 0.22274660849430106 0.2976634710594294
+0.5926391273056083 0.22189095388650623 0.5926391273056083 0.22189095388650623 0.3115339043444662
+0.5456390174551156 0.2484379356932375 0.5456390174551156 0.2484379356932375 0.12003945656230487
+0.5486479001453963 0.24636431693642183 0.5486479001453963 0.24636431693642183 0.13151697911430638
+0.5960776425250386 0.22073055830046118 0.5960776425250386 0.22073055830046115 0.324163182298769
+0.5994722520597296 0.2195337683134518 0.5994722520597296 0.2195337683134518 0.33599683609990455
+0.6028561284601187 0.2183063362354348 0.6028561284601187 0.2183063362354348 0.34716654862015556
+0.6062388916744623 0.2170199334117103 0.6062388916744624 0.2170199334117103 0.3576337752702035
+0.609640360421862 0.2156684709151613 0.609640360421862 0.2156684709151613 0.36743178793403247
+0.6130744826491131 0.21419087019780447 0.6130744826491131 0.21419087019780444 0.3764902122939781
+0.6167508369656782 0.21261241453970758 0.6167508369656781 0.21261241453970753 0.385515649944809
+0.652719659449224 0.17629992912965564 0.652719659449224 0.17629992912965564 0.4034614035168263
+0.6464434400585662 0.17969027272094137 0.6464434400585662 0.17969027272094137 0.3962759885994172
+0.6506275908573097 0.1796903022680022 0.6506275908573097 0.1796903022680022 0.40515429362434824
+0.6443515668946356 0.18307992732365283 0.6443515668946356 0.18307992732365283 0.3980548357866342
+0.642260381221969 0.18646625465997102 0.642260381221969 0.18646625465997102 0.39994220421362253
+0.6401704608941388 0.18984519497667574 0.6401704608941388 0.18984519497667574 0.40189247237224146
+0.6338998391634726 0.19321747386164365 0.6338998391634726 0.19321747386164365 0.39404989990091094
+0.6318183933422016 0.19659203005080952 0.6318183933422016 0.19659203005080952 0.3957750578928357
+0.6297625715171523 0.20000959784424469 0.6297625715171523 0.20000959784424469 0.3975343179361672
+0.6200765655877912 0.21274951170498052 0.6200765655877912 0.2127495117049805 0.39598504515057487
+0.6277960035304732 0.20373353114463857 0.6277960035304732 0.2037335311446386 0.40000396225385376
+0.6251107476021172 0.2065891760750304 0.6251107476021173 0.20658917607503044 0.3983777874356372
+0.62349754816112 0.20905397253883992 0.62349754816112 0.20905397253883992 0.39866305082851017
+0.6233555162592841 0.21192543887982854 0.6233555162592842 0.21192543887982854 0.4040427749677907
+0.6380823951496826 0.19321437144440454 0.6380823951496826 0.19321437144440454 0.403854936707393
+0.6631799163179773 0.16612878146327814 0.6631799163179773 0.16612878146327814 0.40745618642655174
+0.6673640167363876 0.16612878146327814 0.6673640167363876 0.16612878146327814 0.41520822768648374
+0.6610878661087722 0.16951916475844708 0.6610878661087723 0.16951916475844708 0.4088286537095655
+0.6589958158087431 0.1729095480384033 0.6589958158087431 0.1729095480384033 0.41029995292925836
+0.6569037641186146 0.17629993076999337 0.6569037641186145 0.17629993076999337 0.4118969470465014
+0.6882845188284384 0.1390057151019266 0.6882845188284384 0.1390057151019266 0.40544926177241986
+0.6861924686192333 0.14239609839709552 0.6861924686192333 0.14239609839709552 0.40813244075561483
+0.6841004184100283 0.14578648169226446 0.6841004184100283 0.14578648169226446 0.4106590764607078
+0.6820083682008233 0.1491768649874334 0.6820083682008233 0.1491768649874334 0.4130126511977756
+0.6799163179916182 0.15256724828260235 0.6799163179916182 0.15256724828260235 0.4151907098341811
+0.6778242677824132 0.15595763157777132 0.6778242677824132 0.15595763157777132 0.41720399883808673
+0.675732217573208 0.15934801487294026 0.675732217573208 0.15934801487294026 0.4190749400318515
+0.6736401673640029 0.1627383981681092 0.6736401673640029 0.1627383981681092 0.42083552744543207
+0.6715481171547978 0.16612878146327814 0.6715481171547978 0.16612878146327814 0.4225247559190252
+0.6945606694560538 0.13561533180675772 0.6945606694560538 0.1356153318067577 0.40640055725745977
+0.6924686192468485 0.1390057151019266 0.6924686192468484 0.1390057151019266 0.409572299265263
+0.7008368200836692 0.1322249485115888 0.7008368200836692 0.1322249485115888 0.40625270198853985
+0.6987447698744641 0.13561533180675775 0.6987447698744641 0.13561533180675775 0.40973196484445046
+0.7071129707112846 0.1288345652164198 0.7071129707112846 0.1288345652164198 0.40548059636165673
+0.7050209205020795 0.13222494851158878 0.7050209205020795 0.13222494851158875 0.40899304782507334
+0.7133891213389 0.12544418192125084 0.7133891213389 0.12544418192125084 0.4046939930567253
+0.711297071129695 0.12883456521641976 0.711297071129695 0.12883456521641976 0.4078965540970066
+0.7196652719665152 0.1220537986260819 0.7196652719665152 0.1220537986260819 0.4045690195814721
+0.7175732217573101 0.12544418192125084 0.7175732217573101 0.12544418192125084 0.4070919891316815
+0.7280334728033359 0.11527303203574402 0.7280334728033359 0.11527303203574402 0.40504357831419885
+0.7259414225941305 0.11866341533091296 0.7259414225941305 0.11866341533091296 0.40575175068550856
+0.7238493723849254 0.1220537986260819 0.7238493723849254 0.1220537986260819 0.4072554144760674
+0.734309623430951 0.11188264874057507 0.734309623430951 0.11188264874057507 0.4093616373807971
+0.732217573221746 0.11527303203574402 0.732217573221746 0.11527303203574402 0.4087474074449146
+0.7405857740585664 0.10849226544540613 0.7405857740585664 0.10849226544540613 0.41575988804098457
+0.7384937238493611 0.11188264874057509 0.7384937238493611 0.11188264874057509 0.4138191355649648
+0.7468619246861817 0.10510188215023719 0.7468619246861817 0.10510188215023719 0.4240207056442043
+0.7447698744769767 0.10849226544540613 0.7447698744769767 0.10849226544540613 0.4209240038773056
+0.7531380753137972 0.10171149885506825 0.7531380753137972 0.10171149885506825 0.43363477812407236
+0.7510460251045918 0.10510188215023719 0.7510460251045918 0.10510188215023719 0.42970537723466357
+0.7594142259414124 0.09832111555989931 0.7594142259414124 0.09832111555989931 0.4438756316515522
+0.7573221757322074 0.10171149885506825 0.7573221757322074 0.10171149885506825 0.43954264876575194
+0.7656903765690277 0.09493073226473037 0.7656903765690277 0.09493073226473037 0.4539012409480878
+0.7635983263598226 0.09832111555989931 0.7635983263598226 0.09832111555989931 0.44964166215598106
+0.771966527196643 0.09154034896956142 0.771966527196643 0.09154034896956142 0.46285914983397564
+0.7698744769874379 0.09493073226473037 0.7698744769874378 0.09493073226473037 0.45914136370335373
+0.7803347280334635 0.08475958237922354 0.7803347280334635 0.08475958237922354 0.4719532268009093
+0.7782426778242584 0.08814996567439248 0.7782426778242585 0.08814996567439248 0.4699786425296191
+0.7761506276150533 0.09154034896956142 0.7761506276150533 0.09154034896956142 0.4672154746804967
+0.7866108786610788 0.0813691990840546 0.7866108786610787 0.0813691990840546 0.4751883090537678
+0.7845188284518737 0.08475958237922354 0.7845188284518737 0.08475958237922354 0.47464242644004667
+0.7928870292886941 0.07797881578888566 0.7928870292886941 0.07797881578888566 0.4754096242490918
+0.790794979079489 0.0813691990840546 0.790794979079489 0.0813691990840546 0.47643666578339033
+0.7991631799163095 0.07458843249371672 0.7991631799163095 0.07458843249371672 0.4725604923717029
+0.7970711297071044 0.07797881578888566 0.7970711297071044 0.07797881578888566 0.4751811019224837
+0.8054393305439248 0.07119804919854777 0.8054393305439248 0.07119804919854777 0.4668266290533654
+0.8033472803347197 0.07458843249371672 0.8033472803347196 0.07458843249371672 0.4709413465940226
+0.8117154811715401 0.06780766590337883 0.8117154811715402 0.06780766590337883 0.4586232889260639
+0.809623430962335 0.07119804919854777 0.809623430962335 0.07119804919854777 0.4640244567265796
+0.8179916317991555 0.06441728260820989 0.8179916317991555 0.06441728260820989 0.44856531076006645
+0.8158995815899504 0.06780766590337883 0.8158995815899504 0.06780766590337883 0.45495745974690344
+0.8242677824267708 0.06102689931304095 0.8242677824267709 0.06102689931304095 0.43741822490415716
+0.8221757322175657 0.06441728260820989 0.8221757322175657 0.06441728260820989 0.44444719563439444
+0.8305439330543861 0.05763651601787201 0.8305439330543861 0.05763651601787201 0.4260288363603788
+0.828451882845181 0.06102689931304095 0.8284518828451811 0.06102689931304095 0.4333193676568831
+0.8368200836820014 0.054246132722703067 0.8368200836820013 0.054246132722703067 0.4152362963142791
+0.8347280334727963 0.05763651601787201 0.8347280334727963 0.05763651601787201 0.42243611255677954
+0.8451882845188219 0.04746536613236518 0.845188284518822 0.04746536613236518 0.398872966388562
+0.8430962343096168 0.050855749427534125 0.8430962343096168 0.050855749427534125 0.40577057493585084
+0.8410041841004117 0.054246132722703067 0.8410041841004116 0.054246132722703067 0.4125959571924129
+0.8514644351464372 0.04407498283719624 0.8514644351464372 0.04407498283719624 0.39186311907945864
+0.8493723849372321 0.04746536613236518 0.8493723849372321 0.04746536613236518 0.3981537407207873
+0.8577405857740525 0.0406845995420273 0.8577405857740527 0.0406845995420273 0.38694399612411917
+0.8556485355648474 0.04407498283719624 0.8556485355648474 0.04407498283719624 0.3926265909211896
+0.8640167364016679 0.03729421624685836 0.8640167364016679 0.03729421624685836 0.3839397807059632
+0.8619246861924628 0.0406845995420273 0.8619246861924629 0.0406845995420273 0.3891226477681424
+0.8702928870292832 0.03390383295168942 0.8702928870292831 0.03390383295168942 0.382437298661624
+0.8682008368200781 0.03729421624685836 0.8682008368200781 0.03729421624685836 0.3872996782398792
+0.8765690376568985 0.030513449656520475 0.8765690376568985 0.030513449656520475 0.3818780554069607
+0.8744769874476934 0.03390383295168942 0.8744769874476933 0.03390383295168942 0.3866200702660094
+0.8828451882845139 0.027123066361351533 0.8828451882845139 0.027123066361351533 0.381662325128296
+0.8807531380753088 0.030513449656520475 0.8807531380753088 0.030513449656520475 0.38645623607637075
+0.8891213389121292 0.02373268306618259 0.8891213389121292 0.02373268306618259 0.3812407139394822
+0.8870292887029241 0.027123066361351533 0.887029288702924 0.027123066361351533 0.3861936812340756
+0.8974895397489496 0.01695191647584471 0.8974895397489496 0.01695191647584471 0.375374335997285
+0.8953974895397445 0.02034229977101365 0.8953974895397446 0.02034229977101365 0.3801781411158765
+0.8933054393305394 0.02373268306618259 0.8933054393305394 0.02373268306618259 0.3853116034186442
+0.903765690376565 0.013561533180675767 0.9037656903765648 0.013561533180675767 0.37347116202055436
+0.9016736401673598 0.01695191647584471 0.9016736401673598 0.01695191647584471 0.37818574888190465
+0.9100418410041803 0.010171149885506825 0.9100418410041803 0.010171149885506825 0.3706675504960058
+0.9079497907949752 0.013561533180675767 0.9079497907949751 0.013561533180675767 0.37512363126986537
+0.9163179916317956 0.006780766590337883 0.9163179916317956 0.006780766590337883 0.3669828375529011
+0.9142259414225905 0.010171149885506825 0.9142259414225905 0.010171149885506825 0.37098098741579877
+0.9205020920502058 0.006780766590337883 0.9205020920502057 0.006780766590337883 0.3658417471115914
+0.0067807614308083375 0.9246862022431164 0.0067807614308083375 0.9246862022431163 0.09293747921451782
+0.00678074945096918 0.9288703246854318 0.00678074945096918 0.9288703246854318 0.09205923836373257
+0.010171148199716979 0.918410044879492 0.010171148199716979 0.918410044879492 0.09442472401406882
+0.010171144132589594 0.9225941523574285 0.010171144132589594 0.9225941523574285 0.09397428195369717
+0.0135615326608027 0.9121338920543244 0.0135615326608027 0.9121338920543244 0.0954752536034144
+0.013561531366017612 0.9163179944718317 0.013561531366017612 0.9163179944718317 0.09546004925950397
+0.01695191635885314 0.9058577407664612 0.01695191635885314 0.9058577407664611 0.09602461552300638
+0.016951916070634964 0.9100418416102095 0.016951916070634964 0.9100418416102095 0.09644116420765773
+0.02034229974927544 0.9037656904098853 0.02034229974927544 0.9037656904098853 0.09684778059866778
+0.023732683011271825 0.8974895398044013 0.023732683011271825 0.8974895398044013 0.09662670992417477
+0.02373268284980812 0.9016736403778247 0.02373268284980812 0.9016736403778246 0.09763171407598838
+0.027123066322428734 0.891213389172829 0.027123066322428734 0.891213389172829 0.09575376189168706
+0.02712306620406109 0.8953974897436648 0.027123066204061085 0.8953974897436648 0.09713178768334002
+0.030513449640962306 0.8849372385208256 0.030513449640962306 0.8849372385208255 0.0942462805699733
+0.030513449594464892 0.8891213390196571 0.030513449594464892 0.8891213390196571 0.0959314168269292
+0.03390383294701157 0.8786610878766199 0.03390383294701157 0.8786610878766199 0.0921749582750413
+0.03390383293337235 0.8828451883259447 0.03390383293337235 0.8828451883259447 0.0940733676342821
+0.037294216245735416 0.8723849372412062 0.037294216245735416 0.8723849372412061 0.08967379774570113
+0.037294216242439775 0.876569037667565 0.037294216242439775 0.876569037667565 0.09166023995036075
+0.040684599541639666 0.8661087866135074 0.040684599541639666 0.8661087866135074 0.08694626016462614
+0.040684599540250034 0.8702928870403154 0.040684599540250034 0.8702928870403154 0.08886271757596924
+0.04407498283708459 0.8598326359853091 0.04407498283708459 0.8598326359853091 0.08426395867935411
+0.04407498283660699 0.8640167364102758 0.04407498283660699 0.8640167364102759 0.08592291498450265
+0.04746536613233734 0.8535564853566936 0.04746536613233734 0.8535564853566936 0.0819520340507871
+0.04746536613219551 0.8577405857784108 0.04746536613219551 0.8577405857784107 0.08314821773547805
+0.050855749427525986 0.8472803347284391 0.050855749427525986 0.8472803347284391 0.08035441151659527
+0.05085574942748392 0.8514644351481168 0.05085574942748392 0.8514644351481168 0.08088874860290694
+0.05424613272268592 0.8451882845193648 0.05424613272268592 0.8451882845193648 0.07949203107796056
+0.05763651601786531 0.8389121338913634 0.05763651601786531 0.8389121338913634 0.07923644019234632
+0.05763651601784212 0.8430962343102227 0.05763651601784212 0.8430962343102227 0.07862372028621399
+0.06102689931303797 0.8326359832636316 0.06102689931303797 0.8326359832636318 0.08026169302619092
+0.061026899313032096 0.8368200836821446 0.06102689931303209 0.8368200836821446 0.07874128526912084
+0.06441728260820796 0.8263598326359869 0.06441728260820796 0.8263598326359869 0.08252778385880138
+0.06441728260820696 0.8305439330544132 0.06441728260820696 0.8305439330544132 0.08017344106720102
+0.06780766590337692 0.8200836820083671 0.06780766590337693 0.8200836820083671 0.08582446389754152
+0.0678076659033764 0.8242677824267811 0.0678076659033764 0.8242677824267811 0.08280005780231424
+0.07119804919854585 0.8138075313807512 0.07119804919854585 0.8138075313807512 0.08982397198522284
+0.07119804919854561 0.817991631799163 0.07119804919854561 0.817991631799163 0.08634487854176
+0.07458843249371476 0.8075313807531357 0.07458843249371476 0.8075313807531357 0.09414845541173755
+0.07458843249371469 0.8117154811715467 0.0745884324937147 0.8117154811715467 0.09044194989301912
+0.07797881578888362 0.8012552301255207 0.07797881578888362 0.8012552301255207 0.09842703200172753
+0.0779788157888836 0.805439330543931 0.0779788157888836 0.805439330543931 0.09470384690393824
+0.08136919908405248 0.7949790794979057 0.08136919908405248 0.7949790794979057 0.10233355370451487
+0.08136919908405248 0.7991631799163157 0.08136919908405248 0.7991631799163157 0.09877213197093725
+0.08475958237922132 0.7887029288702907 0.08475958237922132 0.7887029288702907 0.10560792214486915
+0.08475958237922132 0.7928870292887007 0.08475958237922132 0.7928870292887007 0.10234747138853717
+0.08814996567439015 0.7866108786610857 0.08814996567439015 0.7866108786610857 0.1052052463250458
+0.09154034896955902 0.7803347280334707 0.09154034896955902 0.7803347280334707 0.10720317480425283
+0.09154034896955902 0.7845188284518807 0.09154034896955902 0.7845188284518807 0.10459417906861689
+0.09493073226472787 0.7740585774058557 0.09493073226472787 0.7740585774058557 0.1082852559586139
+0.09493073226472785 0.7782426778242657 0.09493073226472785 0.7782426778242657 0.10613966863976725
+0.09832111555989675 0.7677824267782407 0.09832111555989675 0.7677824267782407 0.10848406509120755
+0.09832111555989675 0.7719665271966507 0.09832111555989675 0.7719665271966507 0.10679198560944018
+0.10171149885506564 0.7615062761506257 0.10171149885506563 0.7615062761506257 0.10792169547701506
+0.10171149885506564 0.7656903765690357 0.10171149885506563 0.7656903765690357 0.10662962192323076
+0.10510188215023453 0.7552301255230107 0.10510188215023453 0.7552301255230107 0.10680817852715195
+0.10510188215023453 0.7594142259414207 0.10510188215023453 0.7594142259414207 0.10581955726834104
+0.10849226544540343 0.7489539748953957 0.10849226544540343 0.7489539748953957 0.1054346458079337
+0.10849226544540343 0.7531380753138057 0.10849226544540343 0.7531380753138057 0.10461270862803644
+0.11188264874057234 0.7426778242677807 0.11188264874057234 0.7426778242677807 0.10415686620503924
+0.11188264874057234 0.7468619246861907 0.11188264874057234 0.7468619246861907 0.10333208323910181
+0.11527303203574124 0.7364016736401657 0.11527303203574124 0.7364016736401657 0.10336411180847317
+0.11527303203574124 0.7405857740585757 0.11527303203574124 0.7405857740585757 0.10234884316264665
+0.11866341533091013 0.7301255230125507 0.11866341533091011 0.7301255230125507 0.10343086217002674
+0.11866341533091013 0.7343096234309607 0.11866341533091011 0.7343096234309607 0.10204231675240312
+0.12205379862607901 0.7280334728033457 0.12205379862607901 0.7280334728033457 0.10274528669347471
+0.12544418192124793 0.7217573221757307 0.12544418192124793 0.7217573221757307 0.10468587526137184
+0.12544418192124793 0.7259414225941407 0.12544418192124793 0.7259414225941407 0.10252076766385067
+0.1288345652164168 0.7154811715481157 0.1288345652164168 0.7154811715481157 0.10794602650403055
+0.1288345652164168 0.7196652719665257 0.1288345652164168 0.7196652719665257 0.1051590369162176
+0.13222494851158573 0.7092050209205008 0.13222494851158573 0.7092050209205008 0.11245405035765475
+0.13222494851158573 0.7133891213389107 0.13222494851158573 0.7133891213389107 0.10905925274567861
+0.1356153318067546 0.7029288702928858 0.13561533180675459 0.7029288702928858 0.1180131043321605
+0.1356153318067546 0.7071129707112958 0.13561533180675459 0.7071129707112958 0.11408137529683672
+0.1390057151019235 0.6966527196652708 0.1390057151019235 0.6966527196652708 0.12435094583963002
+0.1390057151019235 0.7008368200836808 0.1390057151019235 0.7008368200836808 0.11998918949912664
+0.1423960983970924 0.6903765690376558 0.1423960983970924 0.6903765690376558 0.13117157817717895
+0.1423960983970924 0.6945606694560658 0.1423960983970924 0.6945606694560658 0.1265013770547239
+0.1457864816922613 0.6882845188284508 0.1457864816922613 0.6882845188284508 0.13333670813643786
+0.1491768649874302 0.6861924686192458 0.1491768649874302 0.6861924686192458 0.13540510306278175
+0.1525672482825991 0.6841004184100408 0.15256724828259907 0.6841004184100408 0.1373353773721833
+0.15595763157776799 0.6820083682008358 0.15595763157776799 0.6820083682008358 0.1390971547802217
+0.1593480148729369 0.6799163179916308 0.1593480148729369 0.6799163179916308 0.14067096336676033
+0.16273839816810579 0.6778242677824258 0.16273839816810579 0.6778242677824258 0.14204775574389336
+0.1661287814632747 0.6715481171548108 0.1661287814632747 0.6715481171548108 0.14782916390550438
+0.16951916475844359 0.6694560669456058 0.16951916475844356 0.6694560669456058 0.14877575333353457
+0.17968748781285904 0.6548110827899226 0.17968748781285904 0.6548110827899226 0.1597902266381269
+0.18643833161740364 0.6464348071001629 0.18643833161740364 0.6464348071001629 0.16526700102621275
+0.18979624056534597 0.6443307374330857 0.18979624056534597 0.6443307374330857 0.1657410544200817
+0.1965255940648117 0.6359217529371936 0.1965255940648117 0.6359217529371936 0.17156031427891497
+0.19993782177408603 0.6337635793962707 0.19993782177408603 0.6337635793962707 0.17224733997498046
+0.20353113480577323 0.6315517977791381 0.2035311348057732 0.631551797779138 0.17297673950337591
+0.20711415008727788 0.6254800509823105 0.20711415008727788 0.6254800509823105 0.17842507564959123
+0.21036189282502854 0.623328374895201 0.21036189282502857 0.623328374895201 0.17944090320734365
+0.21355135842556267 0.6212605747745319 0.21355135842556264 0.6212605747745319 0.1804238560640492
+0.2076017315244109 0.6298603412526793 0.20760173152441092 0.6298603412526793 0.17291771343967022
+0.19313930176006047 0.6422216716763923 0.19313930176006047 0.6422216716763923 0.16625308120539886
+0.1964676489510879 0.6400999500302992 0.1964676489510879 0.6400999500302992 0.1668250583756907
+0.1830703993066248 0.6527172854504045 0.1830703993066248 0.6527172854504045 0.16024316397963356
+0.18644548251012394 0.650619127333704 0.18644548251012394 0.650619127333704 0.1606749475112579
+0.17290954805361247 0.6631799163179908 0.17290954805361247 0.6631799163179908 0.15411507685482786
+0.17290954805361247 0.6673640167364008 0.17290954805361247 0.6673640167364008 0.1495594464844183
+0.1762998638826483 0.661087855628553 0.1762998638826483 0.661087855628553 0.1547314024597546
+0.17968925812169914 0.6589955218186336 0.17968925812169914 0.6589955218186336 0.1552489994139317
+0.1661287814632747 0.6757322175732208 0.1661287814632747 0.6757322175732208 0.14322812361634504
+0.2237284654521115 0.5977142192524263 0.22372846545211147 0.5977142192524264 0.20816466363538025
+0.22240920293680705 0.600932626369306 0.22240920293680705 0.600932626369306 0.20386630963481575
+0.2228232926857574 0.6040560123296856 0.2228232926857574 0.6040560123296856 0.1991670127975618
+0.2342820413130098 0.5808860714817057 0.2342820413130098 0.5808860714817056 0.23186524240237416
+0.22653342109318741 0.5952280960956621 0.2265334210931874 0.5952280960956621 0.21080870908594881
+0.23073285838296978 0.586375099426672 0.23073285838296978 0.586375099426672 0.22353829816655094
+0.2299604258455214 0.5932453380103478 0.22996042584552143 0.5932453380103478 0.2125425167939368
+0.23045756266955228 0.5900210534822931 0.23045756266955228 0.5900210534822931 0.2176061917895622
+0.2341589261658045 0.5845444334474365 0.2341589261658045 0.5845444334474365 0.22552055065318813
+0.22704824848226796 0.5981472732142217 0.22704824848226796 0.5981472732142217 0.20599435071581418
+0.21652946570820542 0.6118066749684988 0.2165294657082054 0.6118066749684988 0.19130318472602134
+0.2197424240825392 0.6097602024792528 0.2197424240825392 0.6097602024792527 0.1925514403572116
+0.22296578960678362 0.6077160410262765 0.22296578960678362 0.6077160410262765 0.19385181265946436
+0.21661861205519398 0.6154716395032703 0.21661861205519398 0.6154716395032703 0.18636856807181099
+0.21671096229678066 0.6191743299364005 0.21671096229678066 0.6191743299364005 0.1814905528450241
+0.39426154279413184 0.36363886469024875 0.39426154279413184 0.3636388646902487 0.34133310394938915
+0.39144807755219546 0.3649093138923024 0.3914480775521954 0.36490931389230236 0.3347082757230195
+0.38846521869799083 0.366377218159463 0.38846521869799083 0.36637721815946295 0.32744084917481425
+0.3826774399861996 0.3662253109688966 0.3826774399861996 0.3662253109688966 0.3100849688704744
+0.37983602085256146 0.367830700287177 0.37983602085256146 0.367830700287177 0.3023680734473913
+0.38599373423349626 0.3680150455544735 0.38599373423349626 0.3680150455544735 0.32151172834669817
+0.3770083577884358 0.36948471923901965 0.3770083577884358 0.36948471923901965 0.2943651398056813
+0.3708977865492409 0.36947425760166935 0.3708977865492409 0.36947425760166935 0.27468118868962565
+0.3680983443543504 0.37129019592117546 0.3680983443543504 0.37129019592117546 0.2660862400444431
+0.37419940681330144 0.3711689314161797 0.37419940681330144 0.3711689314161797 0.28608064818085416
+0.36530228853759467 0.37317298779354285 0.36530228853759467 0.37317298779354285 0.2572363727161869
+0.35910601560270144 0.3735489041103503 0.35910601560270144 0.3735489041103503 0.23696841526472653
+0.35633461074913303 0.37559529857667256 0.35633461074913303 0.37559529857667256 0.22789499414479977
+0.3625381628958328 0.37511189327442773 0.3625381628958328 0.37511189327442773 0.24824493319526394
+0.3535912126061433 0.37769812032923117 0.3535912126061433 0.37769812032923117 0.21882544893931463
+0.34732952427147706 0.3784543406846442 0.34732952427147706 0.3784543406846442 0.19945929246434854
+0.3446092020077933 0.38073233713860666 0.3446092020077933 0.38073233713860666 0.19095465446264256
+0.3508891099771696 0.37985396031964247 0.3508891099771696 0.37985396031964247 0.20987951529221457
+0.3419376339358896 0.3830877456305254 0.34193763393588966 0.38308774563052544 0.18289965198908556
+0.3356662884014203 0.38432175459241563 0.3356662884014203 0.38432175459241563 0.16702792382178386
+0.3329378262153464 0.38675272682584905 0.3329378262153464 0.38675272682584905 0.16083036435094342
+0.33931467984746216 0.3854905648318532 0.33931467984746216 0.3854905648318532 0.1754623378490866
+0.3302421721713574 0.3892101831401924 0.3302421721713574 0.3892101831401924 0.15575029281550432
+0.32436549733503167 0.39140432525819374 0.32436549733503167 0.39140432525819374 0.14770405147329854
+0.3218445958346657 0.394100789513929 0.3218445958346657 0.394100789513929 0.1466512784927478
+0.3278100895018496 0.3919742897163203 0.3278100895018496 0.3919742897163203 0.15231874872946202
+0.3192468908143755 0.39662240051456205 0.3192468908143755 0.39662240051456205 0.1469482604883361
+0.3113408657288873 0.40312370785539203 0.31134086572888725 0.40312370785539203 0.15499331141558967
+0.3166271002961034 0.39898117730343774 0.3166271002961034 0.39898117730343774 0.14860339720629667
+0.3141271537440789 0.4010712065763257 0.3141271537440789 0.4010712065763257 0.15128564683263288
+0.30887207176443815 0.40560549731809176 0.30887207176443815 0.40560549731809176 0.16055385226971206
+0.30138604010858017 0.4130738588352507 0.30138604010858017 0.4130738588352507 0.1824706272627109
+0.3039541803025704 0.41055885104244244 0.3039541803025703 0.41055885104244244 0.17436632205944505
+0.3064316287397783 0.40805267206437495 0.3064316287397783 0.40805267206437495 0.16699754762966013
+0.29898140411927343 0.4157698529328727 0.2989814041192735 0.4157698529328728 0.19142014512632674
+0.29753710327679517 0.4184577358703754 0.29753710327679517 0.4184577358703754 0.19981927624128806
+0.29443872411177996 0.4202073868464445 0.2944387241117799 0.42020738684644454 0.2071876167987967
+0.2920232842162915 0.4235631783055611 0.2920232842162915 0.4235631783055611 0.21855897315536196
+0.2897888748544092 0.4265905078404186 0.28978887485440913 0.4265905078404186 0.2288693513939131
+0.2827292949046808 0.43488972830110406 0.28272929490468085 0.434889728301104 0.2564619157083161
+0.2851823444465512 0.43229653145081853 0.28518234444655116 0.43229653145081853 0.24805421375059808
+0.28748782716712806 0.4296159038820615 0.2874878271671281 0.42961590388206156 0.23907940532492825
+0.280830542398586 0.43799834711877916 0.280830542398586 0.4379983471187792 0.26589954723322173
+0.27881145882071573 0.4411134125394645 0.27881145882071573 0.4411134125394645 0.2749469476144247
+0.276786492480115 0.4442176050824043 0.27678649248011494 0.4442176050824043 0.2834791877964051
+0.2747413405123806 0.44731464007527183 0.2747413405123806 0.44731464007527183 0.2914695728658901
+0.2726954606877381 0.45044638484892235 0.2726954606877381 0.45044638484892235 0.2989738342110253
+0.2706902856078237 0.4536940681577715 0.2706902856078237 0.4536940681577715 0.3061669669986467
+0.2687809164350452 0.4570041628464118 0.2687809164350452 0.4570041628464118 0.3128741877714259
+0.26706594407456624 0.46033815711503107 0.26706594407456624 0.46033815711503107 0.31904753150227977
+0.2653555302236644 0.4636267259493124 0.2653555302236645 0.46362672594931237 0.3244740335733447
+0.26357117117438195 0.46692751896559354 0.26357117117438195 0.46692751896559354 0.3291978386328048
+0.26172930863439864 0.47031066751257933 0.26172930863439864 0.4703106675125794 0.3333128195393888
+0.2592889553975429 0.4740369939219188 0.2592889553975429 0.47403699392191884 0.3367494512090432
+0.2583273495731596 0.47775631057552714 0.25832734957315967 0.4777563105755272 0.34047125243513626
+0.25704913278450175 0.4811478265733971 0.25704913278450175 0.4811478265733971 0.34288579974676286
+0.255696383413643 0.4844420208770665 0.255696383413643 0.4844420208770665 0.34449439925708564
+0.2543269430488153 0.4876585863916706 0.2543269430488153 0.48765858639167053 0.34542518571679737
+0.2531293356463358 0.4906164016040423 0.2531293356463358 0.49061640160404224 0.34582665862533707
+0.25200665700833086 0.49373962362656143 0.25200665700833086 0.4937396236265615 0.3458809434630386
+0.2511508012334386 0.4967830491195636 0.25115080123343864 0.49678304911956367 0.34577507288035886
+0.2501244654938797 0.49996508645395776 0.2501244654938797 0.49996508645395776 0.3449833515436361
+0.2490922583416272 0.5032259753529696 0.2490922583416272 0.5032259753529696 0.34368263553953243
+0.24807813445259308 0.5065104543425143 0.24807813445259308 0.5065104543425143 0.3418979010406122
+0.2471042725646757 0.5097952750985639 0.2471042725646757 0.5097952750985639 0.33967645621381787
+0.24621488019636759 0.5130688683731661 0.24621488019636759 0.513068868373166 0.33709203585247405
+0.24540267539907257 0.5163432435301397 0.24540267539907257 0.5163432435301397 0.3341648499536565
+0.24462246064835266 0.5196495702139989 0.24462246064835266 0.5196495702139989 0.3308344970078147
+0.2438678358256459 0.5229731657161145 0.2438678358256459 0.5229731657161145 0.32712009973678974
+0.2431345814200947 0.5263324383912437 0.2431345814200947 0.5263324383912437 0.32301703847428676
+0.24243638782747132 0.5297293738875403 0.24243638782747132 0.5297293738875403 0.3185531054671818
+0.24178477294394662 0.533152008819861 0.24178477294394662 0.533152008819861 0.31376893962550034
+0.24119471332167688 0.5365767837043991 0.24119471332167688 0.5365767837043992 0.3087259647654737
+0.24065558481985372 0.5400132045657564 0.24065558481985372 0.5400132045657564 0.303428000137737
+0.24015018864914212 0.5434848924433527 0.24015018864914214 0.5434848924433527 0.29785213966286733
+0.2396997611573598 0.5469615957894814 0.23969976115735978 0.5469615957894814 0.29207670045547546
+0.23928267871754771 0.5504659244589619 0.23928267871754771 0.5504659244589619 0.28608278461006836
+0.2389039415414181 0.5539943276582773 0.2389039415414181 0.5539943276582773 0.27990575635686454
+0.2385636824918674 0.5575360274262801 0.2385636824918674 0.5575360274262801 0.27359225196237763
+0.238270141541283 0.5610775941817027 0.23827014154128304 0.5610775941817027 0.2671956554352753
+0.23802061296887755 0.5646372965435505 0.23802061296887755 0.5646372965435505 0.2607074634633108
+0.2378324882729682 0.5682218434775543 0.23783248827296824 0.5682218434775543 0.25413299017862134
+0.2377338468000265 0.5718118707644362 0.2377338468000265 0.5718118707644361 0.24752940413742341
+0.23767844137173275 0.5754164474911144 0.23767844137173275 0.5754164474911144 0.24091039349659385
+0.2376184600194727 0.5790321277858111 0.2376184600194727 0.5790321277858111 0.23431795424502555
+0.4000389107095254 0.3543614670915873 0.4000389107095254 0.3543614670915873 0.3488763873317757
+0.39728201699477966 0.3590512446792541 0.39728201699477966 0.35905124467925414 0.3453141524726107
+0.39988987496701844 0.3576201805349868 0.3998898749670184 0.3576201805349868 0.35063883005349106
+0.3973476402713659 0.3623255484748423 0.3973476402713659 0.3623255484748423 0.3482670868925202
+0.39728189535560526 0.36571783745769704 0.39728189535560526 0.36571783745769704 0.35160762184436684
+0.4069079320683034 0.34175869209048315 0.4069079320683034 0.34175869209048315 0.3592744034712063
+0.403456078711746 0.3463812413091098 0.403456078711746 0.3463812413091098 0.3531929630670407
+0.4065784413422176 0.3452576509155351 0.4065784413422176 0.3452576509155351 0.35951855123796056
+0.4032664104573405 0.34988641170666335 0.4032664104573405 0.34988641170666335 0.3540521281416198
+0.40314599540652885 0.35320757887993937 0.4031459954065289 0.35320757887993937 0.3554178530535492
+0.4150643553421709 0.3291956285202599 0.4150643553421709 0.3291956285202599 0.3716119357683691
+0.4111070961380732 0.3336776578121791 0.4111070961380732 0.3336776578121791 0.3658236284850895
+0.4144058189358671 0.3327670594463262 0.4144058189358671 0.3327670594463262 0.37141456211697826
+0.4105646473324034 0.3372317544725223 0.41056464733240344 0.3372317544725223 0.3655100542291707
+0.4100916397060172 0.34074161176239803 0.4100916397060172 0.34074161176239803 0.3653817862565041
+0.4246022223576449 0.3168333409192596 0.4246022223576449 0.3168333409192596 0.37848756170884146
+0.4200895099963824 0.32115189883423445 0.4200895099963824 0.3211518988342345 0.37597857528354917
+0.4235766361630733 0.3204468040278751 0.42357663616307323 0.3204468040278751 0.3795994224424412
+0.4192130803633103 0.32478333177436997 0.4192130803633103 0.32478333177436997 0.37635234256663624
+0.4184124116098215 0.3283700487676601 0.4184124116098215 0.3283700487676601 0.3764982439307909
+0.4356502032385121 0.30462045299367024 0.4356502032385121 0.30462045299367024 0.3726209926768049
+0.43056409196293505 0.3089789225704086 0.43056409196293505 0.30897892257040865 0.3762647473689842
+0.4341542621447009 0.30820227881738543 0.43415426214470093 0.30820227881738543 0.3763975673513788
+0.4293047240373547 0.3126431177467628 0.4293047240373547 0.3126431177467628 0.3788590261299332
+0.4281337466364799 0.316236838507532 0.4281337466364799 0.316236838507532 0.3809103907718216
+0.45505693331908487 0.288421691167208 0.45505693331908487 0.288421691167208 0.3325920401861966
+0.4531204080245463 0.2915962974074359 0.4531204080245463 0.2915962974074359 0.340579451769391
+0.4512283462012056 0.29478082976414766 0.4512283462012056 0.29478082976414766 0.34813251799260136
+0.4493940383990731 0.29794590632864 0.4493940383990731 0.29794590632864 0.3551434491822861
+0.44085230428337785 0.30132230596838067 0.4408523042833778 0.30132230596838067 0.3671939773710087
+0.4443170395941766 0.3012048288615923 0.4443170395941766 0.3012048288615923 0.3647843521658225
+0.4476300285387168 0.3010091858027084 0.44763002853871686 0.3010091858027084 0.3614534570331868
+0.439328991178491 0.3046276227588855 0.439328991178491 0.3046276227588855 0.37187665388381125
+0.462594730991273 0.2823570848436745 0.462594730991273 0.2823570848436745 0.3079296357607963
+0.4606810452139365 0.2855086379466614 0.46068104521393655 0.2855086379466614 0.3169324500866775
+0.46629571990363694 0.28258699774296014 0.4662957199036369 0.2825869977429601 0.29888248866586214
+0.4587281580672568 0.2886480119943168 0.4587281580672568 0.28864801199431683 0.325806595541323
+0.48621786887647495 0.26929841960162076 0.48621786887647495 0.26929841960162076 0.21748842023351997
+0.48387477711555166 0.2719918501101813 0.48387477711555166 0.2719918501101813 0.22883420264193008
+0.47892138597753875 0.27551028234616837 0.47892138597753864 0.27551028234616837 0.25055705784819243
+0.482007858587718 0.27449283508051664 0.482007858587718 0.27449283508051664 0.2382598000283293
+0.4764070406358435 0.27823453730084374 0.47640704063584355 0.27823453730084374 0.26238550015272577
+0.4792416026388933 0.2788922791054642 0.4792416026388933 0.2788922791054642 0.25324120533246747
+0.47393250976388734 0.28032283119580403 0.4739325097638874 0.2803228311958041 0.27321005885955557
+0.47051747253990817 0.28243893988020674 0.47051747253990817 0.28243893988020674 0.2867815222876491
+0.5036020710349906 0.2613173265969356 0.5036020710349906 0.2613173265969356 0.14185181836705707
+0.49463572978785436 0.26495898281217023 0.49463572978785436 0.2649589828121703 0.18088913361414785
+0.5009057399244116 0.26369041778230345 0.5009057399244116 0.26369041778230345 0.15420396939100803
+0.498286266920099 0.26613997655891386 0.498286266920099 0.26613997655891386 0.1665035615678039
+0.49217704650096283 0.2676089567634874 0.4921770465009629 0.2676089567634874 0.19268921482379978
+0.48974993758459245 0.2702614542417802 0.48974993758459245 0.2702614542417802 0.20451388066843387
+0.522546658284535 0.25503271474013794 0.522546658284535 0.25503271474013794 0.07454651463665195
+0.5122397510950841 0.25762804083000507 0.5122397510950841 0.25762804083000507 0.10584237848468546
+0.5196537780583014 0.2571190876519164 0.5196537780583014 0.2571190876519163 0.08185257732540273
+0.516082134219079 0.2584723635205296 0.516082134219079 0.25847236352052955 0.09272804614497208
+0.5096966563892971 0.26019997953155305 0.5096966563892971 0.26019997953155305 0.11662246188583282
+0.5070953605367309 0.26266329172849673 0.5070953605367309 0.26266329172849673 0.1280368795879331
+0.5426986779980167 0.25052328246884925 0.5426986779980166 0.25052328246884925 0.10953310642000634
+0.5310777054626559 0.25210277416866117 0.531077705462656 0.25210277416866117 0.07197838503906306
+0.5398693245272548 0.252614033377024 0.5398693245272548 0.252614033377024 0.10035671050721907
+0.534192810352801 0.2534191438810212 0.534192810352801 0.2534191438810212 0.0809848560610041
+0.5371836455664968 0.2546132716128814 0.5371836455664968 0.25461327161288144 0.09267506864259727
+0.5284153825828087 0.25434630622176746 0.5284153825828087 0.25434630622176746 0.07109982114110426
+0.5256928324741326 0.2565510114360202 0.5256928324741326 0.25655101143602016 0.07259702861340549
+0.545826179732011 0.25215565020840724 0.545826179732011 0.25215565020840724 0.12682253861420942
+0.5516933387868103 0.2442958547607811 0.5516933387868103 0.2442958547607811 0.14363784571729543
+0.567307573336256 0.23398352617296936 0.5673075733362561 0.23398352617296939 0.20885380379631213
+0.5640687884858352 0.23605764483424263 0.5640687884858352 0.23605764483424263 0.19520234437588743
+0.5547690249506316 0.24222715582019538 0.5547690249506316 0.24222715582019538 0.15622471483196135
+0.5578381398265688 0.2401526943738964 0.5578381398265688 0.24015269437389639 0.16896638282167878
+0.5609245655687894 0.2380995117282093 0.5609245655687894 0.23809951172820928 0.18192447175662887
+0.5703131804319739 0.23604958663915818 0.5703131804319739 0.23604958663915818 0.22702339585197287
+0.5737110844569886 0.23444134244868745 0.5737110844569885 0.23444134244868745 0.2417537019870266
+0.5779755690770843 0.22927157629461745 0.5779755690770844 0.22927157629461745 0.2552897781064695
+0.5772187178139029 0.2330705769006903 0.5772187178139029 0.2330705769006903 0.25708603100175603
+0.588108838140938 0.22616357731759662 0.588108838140938 0.2261635773175966 0.29813509767574103
+0.5847683160306516 0.22715343837712487 0.5847683160306517 0.22715343837712484 0.2843872773501333
+0.5814665904833632 0.22815251993729435 0.5814665904833632 0.22815251993729432 0.2703917360124713
+0.5954278549348506 0.22464611160687722 0.5954278549348507 0.22464611160687722 0.32775122220284286
+0.5916834519554859 0.22608567657706163 0.591683451955486 0.2260856765770616 0.313968727753886
+0.5895721372867259 0.22834523090713982 0.5895721372867259 0.22834523090713982 0.30803017432486623
+0.5488396061101624 0.2501052043463456 0.5488396061101622 0.2501052043463456 0.1383691152355191
+0.5518859496155706 0.24805489677168926 0.5518859496155706 0.24805489677168926 0.15047760265127416
+0.5988595252554075 0.22330000845534104 0.5988595252554075 0.223300008455341 0.3397770799491362
+0.6022482471868514 0.22204838821576675 0.6022482471868514 0.22204838821576675 0.35120797675347576
+0.6056287293521913 0.22077158324624355 0.6056287293521913 0.22077158324624355 0.36197098933213084
+0.6089904150087437 0.21945177705236407 0.6089904150087437 0.21945177705236407 0.37197664076544074
+0.6123510116378642 0.2180915394810541 0.6123510116378642 0.2180915394810541 0.38127944789238205
+0.6156899708444438 0.21668219776062952 0.6156899708444438 0.2166821977606295 0.3898270895735089
+0.6190203420689078 0.21598369061513306 0.6190203420689078 0.2159836906151331 0.3990289352754007
+0.6548117081039664 0.17969031115492815 0.6548117081039663 0.17969031115492815 0.41363721229515277
+0.648535634116041 0.18308022298107776 0.648535634116041 0.18308022298107776 0.4069969974095275
+0.6527196805379155 0.18308051424030655 0.6527196805379155 0.18308051424030655 0.41552739478051187
+0.6464437344237179 0.18646723966165968 0.6464437344237179 0.18646723966165968 0.4089679696897594
+0.6443525586998188 0.18984667474480854 0.6443525586998188 0.18984667474480854 0.4110315231015757
+0.6422638324177655 0.19321437931281504 0.6422638324177655 0.19321437931281504 0.4131450284450842
+0.6359948549240259 0.19657552257511116 0.6359948549240259 0.19657552257511116 0.40577718349300756
+0.6339138893915409 0.1999357172007717 0.6339138893915409 0.19993571720077166 0.40762862076257717
+0.6318616459505135 0.20326530775106988 0.6318616459505134 0.2032653077510699 0.4093213659351283
+0.622539184301126 0.21522755062096732 0.622539184301126 0.21522755062096732 0.40821447332641897
+0.6281184658920329 0.2070931359485132 0.6281184658920329 0.20709313594851322 0.40741871031590976
+0.6305076105102381 0.206009400253872 0.6305076105102381 0.206009400253872 0.4114031989771714
+0.6266656698273938 0.21013206590658562 0.6266656698273937 0.21013206590658567 0.40982419517199103
+0.6260108053708271 0.21411983922474787 0.626010805370827 0.21411983922474787 0.41599538479317255
+0.6401774220838791 0.19656935567804437 0.6401774220838791 0.19656935567804437 0.41526007444899055
+0.6652719665271825 0.16951916475844708 0.6652719665271825 0.16951916475844708 0.41671499044293797
+0.6694560669455926 0.16951916475844708 0.6694560669455926 0.16951916475844708 0.42418571214908113
+0.6631799162969957 0.17290954805020023 0.6631799162969957 0.17290954805020023 0.4182814859025799
+0.6610878657055195 0.17629993120437648 0.6610878657055195 0.17629993120437648 0.4199429346895301
+0.6589958137768942 0.17969031369908506 0.6589958137768942 0.17969031369908506 0.4217272070455094
+0.6903765690376433 0.14239609839709555 0.6903765690376433 0.14239609839709555 0.4126460195442028
+0.6882845188284383 0.1457864816922644 0.6882845188284383 0.1457864816922644 0.4155754040121999
+0.6861924686192333 0.14917686498743338 0.6861924686192333 0.1491768649874334 0.4183290191118572
+0.6841004184100283 0.15256724828260235 0.6841004184100283 0.15256724828260235 0.42089078883738346
+0.6820083682008233 0.1559576315777713 0.6820083682008233 0.1559576315777713 0.4232596614372544
+0.6799163179916182 0.15934801487294023 0.6799163179916182 0.15934801487294023 0.4254485300881781
+0.6778242677824132 0.16273839816810917 0.6778242677824132 0.16273839816810917 0.4274824876328948
+0.675732217573208 0.16612878146327817 0.675732217573208 0.16612878146327817 0.4293965121054812
+0.6736401673640029 0.1695191647584471 0.6736401673640029 0.1695191647584471 0.43123269889392596
+0.6966527196652588 0.1390057151019267 0.6966527196652588 0.1390057151019267 0.41322737150559713
+0.6945606694560537 0.14239609839709563 0.6945606694560537 0.14239609839709563 0.41666366076114786
+0.7029288702928743 0.13561533180675775 0.7029288702928743 0.13561533180675775 0.4126844397457872
+0.7008368200836692 0.13900571510192677 0.7008368200836692 0.1390057151019268 0.4164565076103219
+0.7092050209204899 0.13222494851158872 0.70920502092049 0.13222494851158872 0.4114727465838353
+0.7071129707112846 0.1356153318067577 0.7071129707112846 0.1356153318067577 0.4153128652139309
+0.7154811715481051 0.12883456521641978 0.7154811715481051 0.12883456521641978 0.4101887035850873
+0.7133891213389001 0.13222494851158872 0.7133891213389001 0.13222494851158872 0.4137548648918661
+0.7217573221757202 0.12544418192125084 0.7217573221757202 0.12544418192125084 0.4095046729792466
+0.7196652719665152 0.12883456521641978 0.7196652719665152 0.12883456521641978 0.41242080914714846
+0.7301255230125409 0.11866341533091296 0.7301255230125409 0.11866341533091296 0.4089840987856345
+0.7280334728033359 0.1220537986260819 0.7280334728033359 0.1220537986260819 0.41007507522587267
+0.7259414225941305 0.12544418192125084 0.7259414225941305 0.12544418192125084 0.41198672357466953
+0.7364016736401561 0.11527303203574402 0.7364016736401561 0.11527303203574402 0.4126863094731435
+0.734309623430951 0.11866341533091296 0.734309623430951 0.11866341533091296 0.41242588756887183
+0.7426778242677715 0.11188264874057507 0.7426778242677715 0.11188264874057507 0.4184931795954965
+0.7405857740585663 0.11527303203574403 0.7405857740585663 0.11527303203574403 0.4168505542069303
+0.7489539748953868 0.10849226544540613 0.7489539748953868 0.10849226544540613 0.42621822758527567
+0.7468619246861817 0.11188264874057507 0.7468619246861817 0.11188264874057507 0.4233402294087258
+0.7552301255230022 0.10510188215023719 0.7552301255230022 0.10510188215023719 0.4353764334849532
+0.7531380753137972 0.10849226544540613 0.7531380753137972 0.10849226544540613 0.43156931823941064
+0.7615062761506176 0.10171149885506825 0.7615062761506176 0.10171149885506825 0.44525530832958965
+0.7594142259414125 0.10510188215023719 0.7594142259414126 0.10510188215023719 0.4409397664934666
+0.7677824267782328 0.09832111555989931 0.7677824267782328 0.09832111555989931 0.4550162586745426
+0.7656903765690277 0.10171149885506825 0.7656903765690277 0.10171149885506825 0.4506690960067791
+0.7740585774058482 0.09493073226473037 0.7740585774058482 0.09493073226473037 0.46380196941677704
+0.771966527196643 0.09832111555989931 0.771966527196643 0.09832111555989931 0.4598978299280496
+0.7824267782426686 0.08814996567439248 0.7824267782426686 0.08814996567439248 0.47315670520982817
+0.7803347280334635 0.09154034896956142 0.7803347280334635 0.09154034896956142 0.4708320674727772
+0.7782426778242584 0.09493073226473037 0.7782426778242585 0.09493073226473037 0.4677940474763154
+0.7887029288702839 0.08475958237922354 0.7887029288702839 0.08475958237922354 0.476439194390517
+0.7866108786610788 0.08814996567439248 0.7866108786610787 0.08814996567439248 0.475478436722275
+0.7949790794978993 0.0813691990840546 0.7949790794978994 0.0813691990840546 0.4767596741237403
+0.7928870292886941 0.08475958237922354 0.7928870292886941 0.08475958237922354 0.4773184034390216
+0.8012552301255146 0.07797881578888566 0.8012552301255146 0.07797881578888566 0.474059441940105
+0.7991631799163095 0.0813691990840546 0.7991631799163095 0.0813691990840546 0.4761672809182165
+0.8075313807531299 0.07458843249371672 0.8075313807531298 0.07458843249371672 0.4685288028703091
+0.8054393305439248 0.07797881578888566 0.8054393305439248 0.07797881578888566 0.47209226704180823
+0.8138075313807452 0.07119804919854777 0.8138075313807452 0.07119804919854777 0.46059430170695714
+0.8117154811715401 0.07458843249371672 0.8117154811715402 0.07458843249371672 0.4654086837666777
+0.8200836820083606 0.06780766590337883 0.8200836820083605 0.06780766590337883 0.4508875541600558
+0.8179916317991555 0.07119804919854777 0.8179916317991555 0.07119804919854777 0.45665798164242094
+0.8263598326359759 0.06441728260820989 0.8263598326359759 0.06441728260820989 0.44019345101990565
+0.8242677824267708 0.06780766590337883 0.8242677824267709 0.06780766590337883 0.4465655041250492
+0.8326359832635912 0.06102689931304095 0.8326359832635912 0.06102689931304095 0.4293758952134909
+0.8305439330543861 0.06441728260820989 0.8305439330543861 0.06441728260820989 0.43597554604778826
+0.8389121338912066 0.05763651601787201 0.8389121338912066 0.05763651601787201 0.4192823580748937
+0.8368200836820014 0.06102689931304095 0.8368200836820013 0.06102689931304095 0.4257630023583912
+0.847280334728027 0.050855749427534125 0.847280334728027 0.050855749427534125 0.4044280161233956
+0.8451882845188219 0.054246132722703067 0.845188284518822 0.054246132722703067 0.41063540182018327
+0.8430962343096168 0.05763651601787201 0.8430962343096168 0.05763651601787201 0.4167262714905524
+0.8535564853556423 0.04746536613236518 0.8535564853556422 0.04746536613236518 0.3983011800362042
+0.8514644351464372 0.050855749427534125 0.8514644351464372 0.050855749427534125 0.40392881502564876
+0.8598326359832577 0.04407498283719624 0.8598326359832577 0.04407498283719624 0.3942728865985603
+0.8577405857740525 0.04746536613236518 0.8577405857740527 0.04746536613236518 0.39935332276900715
+0.866108786610873 0.0406845995420273 0.866108786610873 0.0406845995420273 0.3920949188913578
+0.8640167364016679 0.04407498283719624 0.8640167364016679 0.04407498283719624 0.3967749316673284
+0.8723849372384883 0.03729421624685836 0.8723849372384883 0.03729421624685836 0.39127610583811623
+0.8702928870292832 0.0406845995420273 0.8702928870292831 0.0406845995420273 0.3957747125838193
+0.8786610878661036 0.03390383295168942 0.8786610878661038 0.03390383295168942 0.3911829966947828
+0.8765690376568985 0.03729421624685836 0.8765690376568985 0.03729421624685836 0.395738315470693
+0.884937238493719 0.030513449656520475 0.884937238493719 0.030513449656520475 0.39115031264218775
+0.8828451882845139 0.03390383295168942 0.8828451882845139 0.03390383295168942 0.3959686654629937
+0.8912133891213343 0.027123066361351533 0.8912133891213344 0.027123066361351533 0.3905763988057827
+0.8891213389121292 0.030513449656520475 0.8891213389121292 0.030513449656520475 0.39579353159711167
+0.8995815899581547 0.02034229977101365 0.8995815899581547 0.02034229977101365 0.38343205903518646
+0.8974895397489496 0.02373268306618259 0.8974895397489496 0.02373268306618259 0.38898963949627685
+0.8953974895397445 0.027123066361351533 0.8953974895397446 0.027123066361351533 0.3946485458264944
+0.9058577405857701 0.01695191647584471 0.9058577405857701 0.01695191647584471 0.3803378561292336
+0.903765690376565 0.02034229977101365 0.9037656903765648 0.02034229977101365 0.3860825153922554
+0.9121338912133854 0.013561533180675767 0.9121338912133855 0.013561533180675767 0.3759644242699482
+0.9100418410041803 0.01695191647584471 0.9100418410041803 0.01695191647584471 0.381716818805464
+0.9184100418410007 0.010171149885506825 0.9184100418410007 0.010171149885506825 0.3703729334549494
+0.9163179916317956 0.013561533180675767 0.9163179916317956 0.013561533180675767 0.375906535380167
+0.924686192468616 0.006780766590337883 0.9246861924686162 0.006780766590337883 0.3637125460872083
+0.9225941422594109 0.010171149885506825 0.9225941422594109 0.010171149885506825 0.3687857277515631
+0.9288702928870263 0.006780766590337883 0.9288702928870264 0.006780766590337883 0.36056892832437537
+0.00678071206826683 0.9330544918843316 0.00678071206826683 0.9330544918843316 0.09090576439548674
+0.0067806014668711926 0.9372387826696874 0.0067806014668711926 0.9372387826696874 0.0894845902528386
+0.010171130945588365 0.9267782749141587 0.010171130945588365 0.9267782749141587 0.0932430653089059
+0.010171090097152278 0.9309624412798926 0.010171090097152278 0.9309624412798926 0.09223189745114248
+0.013561527069281975 0.9205021012912006 0.013561527069281975 0.9205021012912006 0.0951675192465345
+0.013561513493028936 0.9246862212230974 0.013561513493028936 0.9246862212230974 0.09459198529123018
+0.016951915129331644 0.9142259433707537 0.016951915129331644 0.9142259433707537 0.09659320909242165
+0.016951912233376908 0.9184100477758265 0.01695191223337691 0.9184100477758265 0.09646850672134209
+0.02034229968857246 0.9079497909163546 0.02034229968857246 0.9079497909163546 0.09743760010761764
+0.020342299468078254 0.9121338916405038 0.020342299468078254 0.9121338916405038 0.09776686627437702
+0.023732682269011932 0.905857741330871 0.023732682269011932 0.9058577413308712 0.09840336256726728
+0.02712306574651466 0.8995815907363435 0.02712306574651466 0.8995815907363435 0.09831608336345432
+0.027123064047531068 0.9037656932189146 0.027123064047531068 0.9037656932189148 0.09927699441266881
+0.03051344941557625 0.8933054397448209 0.03051344941557625 0.8933054397448209 0.09747654400310667
+0.030513448748389724 0.8974895412928405 0.030513448748389727 0.8974895412928404 0.09884354157051793
+0.033903832881667616 0.88702928886207 0.033903832881667616 0.88702928886207 0.09590128096593475
+0.033903832690926734 0.8912133897155335 0.033903832690926734 0.8912133897155335 0.09761139291563191
+0.03729421622971857 0.8807531381162964 0.03729421622971857 0.8807531381162964 0.09366273723896563
+0.037294216181249056 0.8849372386475794 0.037294216181249056 0.8849372386475794 0.09562443884178441
+0.040684599533865634 0.8744769874926717 0.040684599533865634 0.8744769874926718 0.09089863615983163
+0.04068459950477794 0.8786610880435249 0.04068459950477794 0.8786610880435249 0.09298830205157037
+0.04407498283415994 0.8682008368553279 0.04407498283415994 0.8682008368553279 0.08781826413561783
+0.044074982822043245 0.8723849373787154 0.044074982822043245 0.8723849373787154 0.089878292997715
+0.04746536613140465 0.86192468621016 0.04746536613140465 0.86192468621016 0.08470241180256623
+0.04746536612728547 0.8661087866809519 0.04746536612728547 0.8661087866809519 0.08654336586919326
+0.05085574942724056 0.8556485355715858 0.05085574942724056 0.8556485355715858 0.08189121281435498
+0.050855749425955186 0.8598326360097097 0.050855749425955186 0.8598326360097097 0.08330181344189813
+0.05424613272261001 0.8493723849393793 0.05424613272261001 0.8493723849393792 0.07975220254504821
+0.05424613272221779 0.8535564853639861 0.05424613272221779 0.8535564853639862 0.0805216612915261
+0.05763651601772663 0.8472803347303545 0.05763651601772663 0.8472803347303545 0.07857780283851057
+0.0610268993130036 0.8410041841009437 0.0610268993130036 0.8410041841009438 0.0777843178757441
+0.06102689931287176 0.8451882845207987 0.06102689931287176 0.8451882845207986 0.0774057386229723
+0.06441728260820231 0.8347280334728842 0.06441728260820233 0.8347280334728842 0.07831776985606208
+0.06441728260818101 0.8389121338915192 0.06441728260818101 0.8389121338915192 0.07700957647128408
+0.06780766590337385 0.8284518828452074 0.06780766590337385 0.8284518828452075 0.08016537775688037
+0.06780766590336151 0.8326359832636824 0.06780766590336151 0.8326359832636824 0.07799009494674534
+0.07119804919854446 0.8221757322175812 0.07119804919854446 0.8221757322175812 0.08312742144857645
+0.07119804919853898 0.826359832636026 0.07119804919853899 0.826359832636026 0.08024720588463947
+0.07458843249371438 0.8158995815899607 0.07458843249371438 0.8158995815899607 0.08687127929480887
+0.07458843249371305 0.8200836820083873 0.07458843249371305 0.8200836820083873 0.08350714181420117
+0.07797881578888359 0.8096234309623426 0.07797881578888359 0.8096234309623426 0.09100594318867113
+0.07797881578888352 0.8138075313807591 0.07797881578888353 0.813807531380759 0.08739368859994935
+0.0813691990840525 0.8033472803347262 0.0813691990840525 0.8033472803347262 0.09514632596522203
+0.08136919908405259 0.8075313807531384 0.08136919908405259 0.8075313807531384 0.09150453988342268
+0.08475958237922133 0.797071129707111 0.08475958237922133 0.797071129707111 0.09895529923254337
+0.08475958237922139 0.8012552301255216 0.08475958237922139 0.8012552301255216 0.09546798505480752
+0.08814996567439015 0.7907949790794957 0.08814996567439015 0.7907949790794957 0.10216633253511868
+0.08814996567439003 0.7949790794979061 0.08814996567439003 0.7949790794979061 0.0989758070299211
+0.09154034896955887 0.788702928870291 0.09154034896955887 0.788702928870291 0.10179914024612313
+0.09493073226472777 0.782426778242676 0.09493073226472777 0.782426778242676 0.10379510183724948
+0.09493073226472744 0.7866108786610869 0.09493073226472744 0.7866108786610869 0.10126087355924356
+0.09832111555989675 0.7761506276150607 0.09832111555989675 0.7761506276150607 0.1049093289806635
+0.09832111555989655 0.7803347280334715 0.09832111555989655 0.7803347280334715 0.10283477542784462
+0.10171149885506564 0.7698744769874457 0.10171149885506563 0.7698744769874457 0.10517679152577956
+0.10171149885506559 0.774058577405856 0.10171149885506559 0.774058577405856 0.10355105706267027
+0.10510188215023453 0.7635983263598307 0.10510188215023453 0.7635983263598307 0.10472123657331374
+0.10510188215023453 0.7677824267782407 0.10510188215023453 0.7677824267782407 0.10349018678495629
+0.10849226544540343 0.7573221757322157 0.10849226544540343 0.7573221757322157 0.10375204484479521
+0.10849226544540343 0.7615062761506257 0.10849226544540343 0.7615062761506257 0.10281933372289066
+0.11188264874057234 0.7510460251046007 0.11188264874057234 0.7510460251046007 0.10255573316546618
+0.11188264874057234 0.7552301255230107 0.11188264874057234 0.7552301255230107 0.10178613710413305
+0.11527303203574124 0.7447698744769857 0.11527303203574124 0.7447698744769857 0.10147789668219782
+0.11527303203574124 0.7489539748953957 0.11527303203574124 0.7489539748953957 0.10070518276663977
+0.11866341533091013 0.7384937238493707 0.11866341533091011 0.7384937238493707 0.10089110071074957
+0.11866341533091013 0.7426778242677807 0.11866341533091011 0.7426778242677807 0.09993279761841861
+0.12205379862607901 0.7322175732217557 0.12205379862607901 0.7322175732217557 0.10114724125565965
+0.12205379862607901 0.7364016736401657 0.12205379862607901 0.7364016736401657 0.09982706098709158
+0.12544418192124793 0.7301255230125507 0.12544418192124793 0.7301255230125507 0.10069542693431845
+0.1288345652164168 0.7238493723849357 0.1288345652164168 0.7238493723849357 0.10274158561739032
+0.1288345652164168 0.7280334728033457 0.1288345652164168 0.7280334728033457 0.10068141091157067
+0.13222494851158573 0.7175732217573207 0.13222494851158573 0.7175732217573207 0.10603006079600998
+0.13222494851158573 0.7217573221757307 0.13222494851158573 0.7217573221757307 0.10337118004584829
+0.1356153318067546 0.7112970711297057 0.13561533180675459 0.7112970711297057 0.11048312924649671
+0.1356153318067546 0.7154811715481157 0.13561533180675459 0.7154811715481157 0.10723743431399778
+0.1390057151019235 0.7050209205020908 0.1390057151019235 0.7050209205020908 0.11590989685086274
+0.1390057151019235 0.7092050209205008 0.1390057151019235 0.7092050209205008 0.11214217447802761
+0.1423960983970924 0.6987447698744758 0.1423960983970924 0.6987447698744758 0.12205326755426217
+0.1423960983970924 0.7029288702928858 0.1423960983970924 0.7029288702928858 0.11786193277790889
+0.1457864816922613 0.6924686192468608 0.1457864816922613 0.6924686192468608 0.128637448099058
+0.1457864816922613 0.6966527196652708 0.1457864816922613 0.6966527196652708 0.12413486470539574
+0.1491768649874302 0.6903765690376558 0.1491768649874302 0.6903765690376558 0.13070182627339919
+0.1525672482825991 0.6882845188284508 0.15256724828259907 0.6882845188284508 0.13264765559355374
+0.15595763157776799 0.6861924686192458 0.15595763157776799 0.6861924686192458 0.1344391879715288
+0.1593480148729369 0.6841004184100408 0.1593480148729369 0.6841004184100408 0.1360518796233384
+0.16273839816810579 0.6820083682008358 0.16273839816810579 0.6820083682008358 0.1374720637134538
+0.1661287814632747 0.6799163179916308 0.1661287814632747 0.6799163179916308 0.13869628209983323
+0.16951916475844359 0.6736401673640158 0.16951916475844356 0.6736401673640158 0.14422125654232185
+0.17290954805361247 0.6715481171548108 0.17290954805361247 0.6715481171548108 0.14504368257396383
+0.18307545319697546 0.6569018903047682 0.18307545319697546 0.6569018903047682 0.15569934573286992
+0.18980732898151342 0.6485137318584798 0.18980732898151342 0.6485137318584798 0.16111675897519637
+0.19314769067040816 0.6464037350585737 0.19314769067040816 0.6464037350585737 0.1615911470279325
+0.19977685879179036 0.6379604893055646 0.19977685879179033 0.6379604893055646 0.1674751715383129
+0.20311846090104313 0.6357426251296632 0.2031184609010431 0.6357426251296632 0.16824356608881208
+0.2061955392017884 0.6337528945121103 0.20619553920178843 0.6337528945121101 0.1689312166483616
+0.20926390007176426 0.6330490736271586 0.20926390007176426 0.6330490736271586 0.1681375167535283
+0.21076210013590502 0.6273049544022611 0.21076210013590502 0.627304954402261 0.17435045079685774
+0.21379318196069533 0.625066448389285 0.21379318196069533 0.625066448389285 0.175537052745814
+0.21686668947504348 0.6229268016224393 0.21686668947504348 0.6229268016224393 0.17662650923656034
+0.21135623238368087 0.6309694112169578 0.21135623238368087 0.6309694112169578 0.1695830080527436
+0.1964623292954557 0.6442859793848555 0.1964623292954557 0.6442859793848555 0.16211955468940506
+0.1997446714767477 0.6421567276565555 0.1997446714767477 0.6421567276565555 0.16271965627047805
+0.18645516099595336 0.6548050642054175 0.18645516099595336 0.6548050642054175 0.15611488522576253
+0.18982488282072316 0.6527007996112472 0.18982488282072316 0.6527007996112472 0.1565286615801961
+0.1762999313487814 0.6652719665271958 0.1762999313487814 0.6652719665271958 0.1502042781253883
+0.1762999313487814 0.6694560669456058 0.1762999313487814 0.6694560669456058 0.14571782406260317
+0.1796901256031415 0.6631798597364499 0.1796901256031415 0.6631798597364499 0.15073794058420584
+0.18307892868901346 0.6610870529483307 0.18307892868901346 0.6610870529483307 0.15119112225270095
+0.16951916475844359 0.6778242677824258 0.16951916475844356 0.6778242677824258 0.13973033481355948
+0.22572888873270885 0.6013876936432706 0.22572888873270888 0.6013876936432706 0.20175016295827233
+0.22595132420451053 0.605287956023929 0.22595132420451056 0.605287956023929 0.19586721153350117
+0.2375464761432695 0.5826657194119754 0.2375464761432695 0.5826657194119754 0.22777390784234272
+0.22952120536309184 0.5966570001305416 0.22952120536309187 0.5966570001305415 0.20719620030466276
+0.23197422048635186 0.5954353828548141 0.23197422048635188 0.5954353828548141 0.20807008293255286
+0.23398436814055312 0.5882717034480037 0.23398436814055312 0.5882717034480037 0.21918674610669187
+0.23369271387802437 0.5923717621402423 0.23369271387802432 0.5923717621402423 0.21246277538205582
+0.23746495880106697 0.5863421564184904 0.23746495880106697 0.5863421564184904 0.22126443641702567
+0.22920549540458096 0.600145810072699 0.229205495404581 0.600145810072699 0.20199410324103226
+0.2197953191118344 0.6134295127346614 0.2197953191118344 0.6134295127346614 0.1875129991877527
+0.2260987372751434 0.6092523195425572 0.22609873727514343 0.6092523195425573 0.19010469472128264
+0.22297700144199184 0.6113765968657735 0.22297700144199184 0.6113765968657735 0.18872154893687965
+0.21986964592983124 0.617108501939397 0.21986964592983124 0.617108501939397 0.1825750462890319
+0.2199662466046406 0.6208020010452068 0.2199662466046406 0.6208020010452068 0.1777282136324093
+0.3941329241705612 0.36702040351091303 0.3941329241705613 0.36702040351091303 0.3444260668349202
+0.3912189824890732 0.3677286815412302 0.3912189824890732 0.3677286815412302 0.336745956801327
+0.3893052140801184 0.3696283884600974 0.38930521408011837 0.36962838846009743 0.3330984732528373
+0.38308258426409064 0.36959240193576565 0.38308258426409064 0.36959240193576565 0.3137868489033233
+0.38026894219951596 0.3712335138179663 0.38026894219951596 0.3712335138179663 0.3059918361476435
+0.3863302393119758 0.37127494583700066 0.3863302393119758 0.37127494583700066 0.32554033169081814
+0.37743385630439913 0.3728366331527213 0.37743385630439913 0.3728366331527213 0.2977001536132425
+0.371436823726591 0.3729318656602542 0.371436823726591 0.3729318656602542 0.27764434928060594
+0.3686809689911715 0.37476902251467764 0.3686809689911715 0.37476902251467764 0.268922203806447
+0.37472944614127496 0.3745378037087863 0.37472944614127496 0.3745378037087863 0.28950643953712923
+0.36594082764799163 0.37666558782730253 0.36594082764799163 0.3766655878273025 0.2599506959721642
+0.35979721658587444 0.3771019354347312 0.35979721658587444 0.3771019354347312 0.23912243798749613
+0.3570843418791156 0.3791448124324759 0.3570843418791156 0.3791448124324759 0.22993820026303222
+0.36323326700591596 0.37861869756553646 0.36323326700591596 0.3786186975655364 0.2508183729532587
+0.3544130664544593 0.38124481148308426 0.3544130664544593 0.38124481148308426 0.22080611881567913
+0.3481990849313803 0.3820708471272933 0.3481990849313803 0.3820708471272933 0.20106053224544954
+0.3455552399906665 0.3843482566009629 0.3455552399906665 0.3843482566009629 0.19259409703905225
+0.3517518903316319 0.3834050655172608 0.3517518903316319 0.3834050655172608 0.21170908866919355
+0.3429450448350375 0.3866838499668881 0.3429450448350375 0.3866838499668881 0.18458958459975636
+0.3366890340048863 0.3879191392894598 0.3366890340048863 0.3879191392894598 0.16870258087231235
+0.33408109260764934 0.39038320865826076 0.33408109260764934 0.39038320865826076 0.162878781624458
+0.34036209443498805 0.38906657575563774 0.34036209443498805 0.38906657575563774 0.17721108721097753
+0.3315201697315057 0.3929439261676871 0.3315201697315057 0.3929439261676871 0.1582566068634678
+0.3254190714054322 0.39477965955625116 0.3254190714054322 0.39477965955625116 0.1504080475310433
+0.3228703812457167 0.3974105418800194 0.3228703812457167 0.3974105418800194 0.1498041028058439
+0.3291011073715559 0.395612806810594 0.3291011073715559 0.395612806810594 0.15521569430916124
+0.3202704739741772 0.3999610041355631 0.32027047397417713 0.3999610041355632 0.15073900008416904
+0.31424655317230654 0.40388105028197974 0.31424655317230654 0.40388105028197974 0.15556080275025128
+0.3124098145689679 0.4061541779117233 0.31240981456896794 0.4061541779117233 0.16010504469180617
+0.3174353894971042 0.40275288376199714 0.3174353894971042 0.40275288376199725 0.15365529248500545
+0.31005795593063945 0.40867687097719446 0.3100579559306395 0.40867687097719446 0.16621885970254638
+0.3029879891123025 0.41628877982902823 0.30298798911230257 0.41628877982902823 0.1895828494444591
+0.30527934858760764 0.4137437872033346 0.3052793485876077 0.41374378720333466 0.18120377514191288
+0.3076569503069139 0.4112289557914334 0.3076569503069139 0.4112289557914334 0.17337817091064614
+0.3005915039590962 0.4188833289958569 0.3005915039590961 0.4188833289958569 0.19854903548753633
+0.29808900331018306 0.42136810397061086 0.29808900331018306 0.4213681039706109 0.20769341391078341
+0.29577222295247996 0.4238785373180839 0.29577222295247996 0.42387853731808395 0.21679101693090067
+0.29347402708207865 0.4267694373952462 0.29347402708207865 0.42676943739524625 0.22703034392902918
+0.2911668291846738 0.42987304705956686 0.2911668291846738 0.4298730470595668 0.23783597687491584
+0.2846118181256051 0.4380521641403845 0.28461181812560504 0.43805216414038456 0.2651776433891317
+0.2859929418358657 0.43519050484301963 0.2859929418358657 0.43519050484301963 0.25619902578806625
+0.2888921478590837 0.4332532817110122 0.28889214785908374 0.4332532817110123 0.249260822477646
+0.28264700210569427 0.4411260227001322 0.2826470021056942 0.4411260227001322 0.27452917869098514
+0.28060240373490747 0.44419581163106187 0.28060240373490747 0.44419581163106187 0.2834242279981756
+0.2785783149822911 0.4472486285942946 0.2785783149822911 0.44724862859429454 0.2917516540041656
+0.27649176466004305 0.45026253821874024 0.27649176466004305 0.45026253821874024 0.2993935977051722
+0.2744938568986462 0.45335067323393147 0.2744938568986462 0.45335067323393147 0.30663459289636313
+0.27267320610863216 0.4566495370400468 0.27267320610863216 0.4566495370400468 0.3138299088984812
+0.27088659325953 0.4599440381561373 0.27088659325952996 0.4599440381561373 0.32033055202815053
+0.26914087647369833 0.4632338748505036 0.2691408764736983 0.46323387485050366 0.32614830336071826
+0.26738028949597353 0.4665319655613444 0.26738028949597353 0.4665319655613444 0.3312684681001383
+0.2655930049213414 0.46989461898529483 0.26559300492134147 0.4698946189852949 0.33575912530004687
+0.26375786603994206 0.47340051138999467 0.26375786603994206 0.47340051138999467 0.3397038676826553
+0.2621616031116788 0.477101186903348 0.26216160311167874 0.4771011869033481 0.34323696931446074
+0.2608085573936062 0.4804322084331676 0.26080855739360626 0.4804322084331676 0.34580277589966263
+0.25940355578539587 0.4838065604135164 0.2594035557853958 0.4838065604135164 0.34767978034401237
+0.2579592718347966 0.4871571045638954 0.25795927183479656 0.4871571045638953 0.34882035505764414
+0.25651437994512577 0.4904000625295134 0.25651437994512577 0.49040006252951335 0.34923943852748596
+0.2547767786766398 0.49286857357173164 0.2547767786766398 0.49286857357173164 0.34844166691274403
+0.2547363440893186 0.49566316570146396 0.2547363440893186 0.495663165701464 0.3493291819878923
+0.2537610966104392 0.49902506588232753 0.25376109661043916 0.4990250658823276 0.3487505267808906
+0.25270928079734944 0.5022909207246504 0.25270928079734944 0.5022909207246505 0.3475300055747003
+0.2516473726813993 0.5055967819482147 0.2516473726813993 0.5055967819482147 0.34576380722174
+0.25062534464330904 0.5088630129251219 0.25062534464330904 0.508863012925122 0.3435420937690958
+0.24969337132907773 0.5120937308602499 0.24969337132907773 0.5120937308602499 0.34095602192700086
+0.24892229684461575 0.5152869610353351 0.24892229684461578 0.5152869610353351 0.3381172880132836
+0.2481769686652604 0.5185680500869733 0.2481769686652604 0.5185680500869733 0.33485144675132833
+0.24744207874482516 0.5218212744076273 0.24744207874482518 0.5218212744076273 0.331189427079784
+0.24668704395834617 0.5251422066847794 0.24668704395834617 0.5251422066847794 0.3270593214269235
+0.24596680596748913 0.5284866003216777 0.24596680596748913 0.5284866003216777 0.3225733667511779
+0.24529830545300746 0.5318595560106735 0.24529830545300743 0.5318595560106735 0.3177583085394686
+0.2446970098597543 0.5352423256959432 0.2446970098597543 0.5352423256959432 0.31266931605206044
+0.24415276806798292 0.5386372360049995 0.24415276806798292 0.5386372360049995 0.3073187508126542
+0.24364646364279133 0.5420674374643494 0.24364646364279133 0.5420674374643494 0.3016799844357252
+0.24318992131317796 0.5455220937574448 0.24318992131317793 0.5455220937574446 0.2957943526174809
+0.2427442637248785 0.5489761471095542 0.24274426372487848 0.5489761471095543 0.28971720087698255
+0.24234653894347258 0.5524572291905723 0.24234653894347255 0.5524572291905723 0.28344526639664197
+0.2419946640320566 0.5559565669457258 0.24199466403205658 0.5559565669457259 0.27702011157314416
+0.2417008272697697 0.5594532705210625 0.24170082726976974 0.5594532705210625 0.2705092053589971
+0.24145662448841052 0.5629613075783808 0.24145662448841052 0.5629613075783809 0.26390981443956724
+0.24125636449319873 0.5664952440566785 0.24125636449319873 0.5664952440566785 0.2572164014061848
+0.24111565072702704 0.5700414007545215 0.24111565072702704 0.5700414007545215 0.25047934106152775
+0.2410193303609979 0.5736063414222512 0.2410193303609979 0.5736063414222512 0.24371354377422785
+0.24095044331416637 0.5771868154414433 0.2409504433141664 0.5771868154414433 0.23695518421465547
+0.24089795222529342 0.5807815178681937 0.24089795222529342 0.5807815178681937 0.23023772601237366
+0.3969410750995545 0.36927055722653823 0.3969410750995545 0.36927055722653823 0.35503249098452644
+0.40297407749423286 0.3564068265921546 0.4029740774942328 0.35640682659215456 0.35706076769263456
+0.40044884031700567 0.3609329252097988 0.40044884031700567 0.3609329252097988 0.3547853524717064
+0.402510724463281 0.35918027735556407 0.402510724463281 0.35918027735556407 0.358118755176684
+0.4005495560258203 0.3642342853270997 0.4005495560258203 0.3642342853270997 0.3584277043309522
+0.4004586337721978 0.3678173655165402 0.4004586337721978 0.3678173655165402 0.36266533664489375
+0.40967910780054884 0.34420239203972525 0.4096791078005488 0.34420239203972525 0.36551936803525087
+0.40632698606553364 0.3487396483399189 0.40632698606553364 0.34873964833991883 0.3602455306863326
+0.4093761555732101 0.3476175332119 0.4093761555732101 0.3476175332119 0.36612387374095895
+0.4061606703677312 0.3521330828014837 0.4061606703677311 0.3521330828014837 0.36152375242382995
+0.4059319514831106 0.3554206862324722 0.4059319514831106 0.3554206862324722 0.36308498128886985
+0.41768951981237695 0.33191793247089474 0.41768951981237695 0.33191793247089474 0.37651620371952227
+0.4138045994197625 0.33630069853909417 0.4138045994197625 0.33630069853909417 0.37121800380384457
+0.4170567248859644 0.3354297974417306 0.4170567248859644 0.3354297974417306 0.376526654578077
+0.41328784828798587 0.3397954326651136 0.41328784828798587 0.3397954326651136 0.3711726651558314
+0.4128354926776529 0.3432413732650641 0.4128354926776529 0.3432413732650641 0.3713444365612342
+0.4270442076510315 0.3198115033802675 0.4270442076510315 0.3198115033802675 0.3825017680971536
+0.4226253778129656 0.32404205242849304 0.42262537781296566 0.32404205242849304 0.38035000369023114
+0.4260521826946553 0.32337382743925575 0.4260521826946553 0.32337382743925575 0.383713848491496
+0.4217679764928654 0.32760620945917335 0.4217679764928654 0.32760620945917335 0.38083905205259105
+0.42099107528755547 0.33113238437448667 0.42099107528755547 0.33113238437448667 0.38114090296593006
+0.43782184386959644 0.3080036643627553 0.43782184386959644 0.3080036643627553 0.37610617586791056
+0.4328762059421829 0.312033425352119 0.43287620594218285 0.3120334253521189 0.37981880347177505
+0.43644407503123567 0.3115545997239521 0.43644407503123567 0.3115545997239521 0.3799417328876451
+0.4316465391779369 0.315667013228653 0.4316465391779369 0.315667013228653 0.3825070771072876
+0.4305168205472023 0.3192326620057753 0.43051682054720236 0.3192326620057753 0.3846605932186143
+0.4567690751680192 0.29178175876049545 0.4567690751680192 0.29178175876049545 0.3344106631600339
+0.45482831809160074 0.2949267071582586 0.4548283180916007 0.2949267071582586 0.3426517862424246
+0.45292397468461787 0.2980868471677307 0.4529239746846178 0.2980868471677307 0.35044284414982907
+0.4510330578123901 0.30118399330064355 0.45103305781239017 0.30118399330064355 0.3576438331000926
+0.4428819100363909 0.3046070364785488 0.44288191003639094 0.30460703647854886 0.37018484140652047
+0.446225027442455 0.3043703530880457 0.446225027442455 0.3043703530880457 0.36738794618098836
+0.4492505592757062 0.30367200347175677 0.4492505592757062 0.30367200347175677 0.3632861553560029
+0.44140715081924325 0.3078059134708153 0.44140715081924325 0.3078059134708153 0.3748484182473359
+0.46436593437104395 0.285768305984348 0.46436593437104395 0.28576830598434805 0.30849000399372445
+0.4624050371402267 0.28891535064402124 0.4624050371402267 0.28891535064402124 0.3179691024807804
+0.46810610365989486 0.28600825785867884 0.46810610365989486 0.28600825785867884 0.29877213693646737
+0.46043198125937845 0.2920256319729732 0.46043198125937845 0.2920256319729732 0.32719515143277594
+0.4873554488522029 0.27289778974633955 0.4873554488522029 0.27289778974633955 0.21632350458927282
+0.4849877149962308 0.27547535931728867 0.4849877149962308 0.27547535931728867 0.22807105838161731
+0.48222548846404667 0.27794245725821787 0.48222548846404667 0.27794245725821787 0.24126199834598225
+0.4807864123285415 0.2807596201750343 0.4807864123285415 0.2807596201750343 0.24979534494441294
+0.4777853527951172 0.2817107183235358 0.47778535279511714 0.2817107183235357 0.26196213277608504
+0.4747424338145976 0.2841968630970973 0.4747424338145976 0.2841968630970973 0.275651225717755
+0.4720951380254768 0.28685000284871104 0.4720951380254768 0.28685000284871104 0.28796461961921344
+0.5044605289017895 0.2650346805347488 0.5044605289017895 0.2650346805347488 0.1399549366460167
+0.495763625464426 0.26867178629849564 0.49576362546442604 0.2686717862984956 0.17864674937344496
+0.5018610461603649 0.2674105511906138 0.5018610461603649 0.2674105511906138 0.1520769606638187
+0.4993545856205168 0.2697767394163367 0.4993545856205168 0.2697767394163367 0.16409220501319563
+0.4932878097818274 0.2712685981505623 0.4932878097818274 0.2712685981505623 0.19083311309915138
+0.49085883420198256 0.2738849788743553 0.49085883420198256 0.2738849788743553 0.2030216083369891
+0.5228626598714277 0.2587000833791772 0.5228626598714277 0.2587000833791772 0.07663612659347989
+0.5131750743488229 0.26135553280107615 0.5131750743488229 0.26135553280107615 0.10389441993831618
+0.5198416584088051 0.26073522079578104 0.5198416584088051 0.2607352207957811 0.08337049581868873
+0.516831895708817 0.262911365859155 0.516831895708817 0.2629113658591549 0.09239197818180576
+0.510577927053176 0.26395620044765633 0.510577927053176 0.26395620044765633 0.1146510351373256
+0.5079504376282323 0.26636924311079774 0.5079504376282323 0.26636924311079774 0.12608181361806967
+0.542872790402838 0.25420025774587657 0.542872790402838 0.25420025774587657 0.11610797074434707
+0.5316159011588829 0.25581841723562626 0.5316159011588829 0.2558184172356262 0.07749865893529202
+0.5400372644693088 0.2562598751377748 0.5400372644693087 0.25625987513777476 0.10668168502323046
+0.5347570728036449 0.2571488274307374 0.5347570728036449 0.2571488274307374 0.08778871155450103
+0.5376657497340931 0.2574921399713763 0.5376657497340931 0.2574921399713763 0.09878085319241446
+0.5289401118290015 0.2580544838460053 0.5289401118290015 0.2580544838460053 0.07556713904258587
+0.5261495712202353 0.26028713187390073 0.5261495712202353 0.2602871318739007 0.0759268669163881
+0.549006724950852 0.25383819738350266 0.549006724950852 0.25383819738350266 0.14554996109888732
+0.5459609519341132 0.2558538262281605 0.5459609519341132 0.2558538262281605 0.13372767791702492
+0.5549487439368994 0.24596116147800962 0.5549487439368993 0.2459611614780096 0.1628726033255812
+0.5670861447559666 0.23785828599248363 0.5670861447559666 0.23785828599248363 0.21324333971831902
+0.5640211651010574 0.23980835171194081 0.5640211651010575 0.23980835171194084 0.20038797688543775
+0.5579946672458616 0.24387437456929958 0.5579946672458616 0.24387437456929958 0.17536809718410248
+0.5610117608260201 0.24181563267126363 0.5610117608260201 0.24181563267126363 0.1878502094152368
+0.5698951946431354 0.23977081883303342 0.5698951946431353 0.23977081883303342 0.23060218153044798
+0.5731092440320839 0.2382446392352087 0.5731092440320839 0.2382446392352087 0.2445618114420073
+0.5765070994684157 0.2368480105295874 0.5765070994684157 0.2368480105295874 0.25940792942880536
+0.5807452810651949 0.23184857744248288 0.5807452810651949 0.2318485774424829 0.2723877029444728
+0.5800259432505217 0.23557840287870668 0.5800259432505217 0.23557840287870668 0.2747337975714064
+0.5982739340666305 0.22704717237577873 0.5982739340666305 0.22704717237577873 0.34370389905005516
+0.5870642292252333 0.22931885153049858 0.5870642292252333 0.2293188515304986 0.298243431691785
+0.5841571347539801 0.2306293927532459 0.5841571347539801 0.2306293927532459 0.28675472958358617
+0.5948990172414121 0.22835348995901847 0.5948990172414121 0.22835348995901847 0.3316020079355866
+0.5919131217321314 0.229761914110588 0.5919131217321314 0.229761914110588 0.32088626294598116
+0.5894986586115164 0.23050000158798017 0.5894986586115164 0.23050000158798017 0.31117093055545997
+0.5520685974149651 0.251797724903583 0.552068597414965 0.251797724903583 0.15774942870494493
+0.5551422945906811 0.24970464961798097 0.5551422945906811 0.24970464961798097 0.1701397318613137
+0.6016740761026386 0.22579003394917416 0.6016740761026386 0.22579003394917416 0.35541535231478466
+0.6050743760668821 0.2245408215035396 0.6050743760668821 0.2245408215035396 0.36655230187028165
+0.6083700111362593 0.22326966033129447 0.6083700111362593 0.22326966033129447 0.376669515198274
+0.6117133477164177 0.22188994716429122 0.6117133477164177 0.22188994716429122 0.386133685473981
+0.6149974931866055 0.22066597379607422 0.6149974931866055 0.22066597379607425 0.395083694073803
+0.6182869113327941 0.21964492616058637 0.6182869113327941 0.21964492616058637 0.4038411703230553
+0.62167059711439 0.21874829649546979 0.62167059711439 0.21874829649546976 0.41257691736948177
+0.6569037631078061 0.18308069681012384 0.6569037631078061 0.18308069681012384 0.42365278277662327
+0.6506269831580319 0.18646813229510575 0.6506269831580319 0.18646813229510575 0.41755706959303224
+0.6548105822994378 0.18646878290499821 0.6548105822994378 0.18646878290499821 0.425721070686707
+0.648534270042256 0.18984868344632486 0.648534270042256 0.18984868344632486 0.41970281920349645
+0.6464444525339487 0.19321726568154554 0.6464444525339487 0.19321726568154554 0.42193364232296454
+0.6443582210069908 0.19657001086829887 0.6443582210069908 0.19657001086829887 0.42420635197191503
+0.6380983940349911 0.1999162230497725 0.6380983940349911 0.1999162230497725 0.4173465188573293
+0.6360624488918123 0.20327182832050938 0.6360624488918124 0.2032718283205094 0.4194799274871875
+0.6339744737195405 0.20676684453014002 0.6339744737195404 0.20676684453014002 0.42173188681195356
+0.6251129096862102 0.21780401759007426 0.6251129096862104 0.21780401759007426 0.4208181342129916
+0.6308368398373634 0.20936407088374992 0.6308368398373635 0.2093640708837499 0.4192865474338205
+0.6295173390952373 0.2131450940735562 0.6295173390952372 0.2131450940735562 0.42345724039419835
+0.6285815545429227 0.21676719018961577 0.6285815545429227 0.21676719018961577 0.4283149353308808
+0.6341117275153507 0.20993159830235014 0.6341117275153507 0.20993159830235014 0.4282710674297764
+0.6422713226241642 0.19990693960953912 0.6422713226241642 0.19990693960953912 0.42646721593680553
+0.6673640167316925 0.17290954805286907 0.6673640167316925 0.17290954805286907 0.42586248099323215
+0.6715481171537743 0.17290954805345635 0.6715481171537743 0.17290954805345635 0.4330371768099119
+0.6652719664279075 0.1762999313140453 0.6652719664279075 0.1762999313140453 0.42759703861770254
+0.6631799157371087 0.17969031439721972 0.6631799157371087 0.17969031439721972 0.4294263156430615
+0.6610877115177874 0.18308058378249745 0.6610877115177874 0.18308058378249745 0.43137914500585856
+0.6924686192468484 0.14578648169226452 0.6924686192468484 0.14578648169226452 0.4199786468531523
+0.6903765690376433 0.14917686498743338 0.6903765690376433 0.1491768649874334 0.4231252793128442
+0.6882845188284383 0.15256724828260224 0.6882845188284383 0.15256724828260224 0.42607277592053894
+0.6861924686192333 0.1559576315777712 0.6861924686192333 0.1559576315777712 0.42880686958532493
+0.6841004184100283 0.15934801487294015 0.6841004184100283 0.15934801487294015 0.4313292302875667
+0.6820083682008233 0.1627383981681091 0.6820083682008233 0.1627383981681091 0.43365613753668203
+0.6799163179916183 0.16612878146327806 0.6799163179916183 0.16612878146327806 0.43581649185941496
+0.6778242677824132 0.16951916475844708 0.6778242677824132 0.16951916475844708 0.43784926894173765
+0.6757322175729898 0.17290954805358258 0.6757322175729898 0.17290954805358258 0.43980053863804675
+0.6987447698744639 0.1423960983970957 0.6987447698744639 0.1423960983970957 0.4202192292227482
+0.6966527196652588 0.14578648169226463 0.6966527196652588 0.14578648169226463 0.42389465000878607
+0.7050209205020795 0.13900571510192672 0.7050209205020795 0.13900571510192672 0.41930741736470073
+0.7029288702928743 0.14239609839709577 0.7029288702928743 0.14239609839709577 0.42335270495246086
+0.711297071129695 0.13561533180675767 0.711297071129695 0.13561533180675767 0.41767560093144146
+0.70920502092049 0.13900571510192666 0.70920502092049 0.13900571510192664 0.42183236748413194
+0.7175732217573101 0.13222494851158872 0.7175732217573101 0.13222494851158872 0.41590246648125
+0.7154811715481051 0.13561533180675767 0.7154811715481051 0.13561533180675767 0.4198327783293056
+0.7238493723849254 0.12883456521641978 0.7238493723849254 0.12883456521641978 0.4146520660746567
+0.7217573221757202 0.13222494851158872 0.7217573221757202 0.13222494851158872 0.4179764042012751
+0.732217573221746 0.1220537986260819 0.732217573221746 0.1220537986260819 0.4130630270349194
+0.7301255230125409 0.12544418192125084 0.7301255230125409 0.12544418192125084 0.41458322128419667
+0.7280334728033359 0.12883456521641978 0.7280334728033359 0.12883456521641978 0.41693465789952994
+0.7384937238493611 0.11866341533091296 0.7384937238493611 0.11866341533091296 0.4160835644842435
+0.7364016736401561 0.1220537986260819 0.7364016736401561 0.1220537986260819 0.41624027784107737
+0.7447698744769767 0.11527303203574402 0.7447698744769767 0.11527303203574402 0.4212133187983877
+0.7426778242677714 0.11866341533091297 0.7426778242677714 0.11866341533091297 0.4199469957716108
+0.7510460251045918 0.11188264874057507 0.7510460251045918 0.11188264874057507 0.4283012861716471
+0.7489539748953868 0.11527303203574402 0.7489539748953868 0.11527303203574402 0.4257313679997507
+0.7573221757322074 0.10849226544540613 0.7573221757322074 0.10849226544540613 0.4368927216574328
+0.7552301255230022 0.11188264874057509 0.7552301255230022 0.11188264874057509 0.43330390566557503
+0.7635983263598227 0.10510188215023719 0.7635983263598227 0.10510188215023719 0.4462956002190665
+0.7615062761506176 0.10849226544540613 0.7615062761506176 0.10849226544540613 0.44209546211529954
+0.7698744769874378 0.10171149885506825 0.7698744769874378 0.10171149885506825 0.45568073557404015
+0.7677824267782328 0.10510188215023719 0.7677824267782328 0.10510188215023719 0.4513417105089998
+0.7761506276150533 0.09832111555989931 0.7761506276150533 0.09832111555989931 0.46419084945389505
+0.7740585774058482 0.10171149885506825 0.7740585774058482 0.10171149885506825 0.46019045561500027
+0.7845188284518737 0.09154034896956142 0.7845188284518737 0.09154034896956142 0.47364128617646467
+0.7824267782426686 0.09493073226473037 0.7824267782426686 0.09493073226473037 0.47103957978067884
+0.7803347280334635 0.09832111555989931 0.7803347280334635 0.09832111555989931 0.4678086440966495
+0.790794979079489 0.08814996567439248 0.790794979079489 0.08814996567439248 0.4769045311754354
+0.7887029288702839 0.09154034896956142 0.7887029288702839 0.09154034896956142 0.4755905591828124
+0.7970711297071044 0.08475958237922354 0.7970711297071044 0.08475958237922354 0.47727431282837657
+0.7949790794978993 0.08814996567439248 0.7949790794978994 0.08814996567439248 0.47741399985735405
+0.8033472803347197 0.0813691990840546 0.8033472803347196 0.0813691990840546 0.47469081628726434
+0.8012552301255146 0.08475958237922354 0.8012552301255146 0.08475958237922354 0.47632191497634174
+0.809623430962335 0.07797881578888566 0.809623430962335 0.07797881578888566 0.46934955598148226
+0.8075313807531299 0.0813691990840546 0.8075313807531298 0.0813691990840546 0.4723838192766982
+0.8158995815899504 0.07458843249371672 0.8158995815899504 0.07458843249371672 0.46168874865399195
+0.8138075313807452 0.07797881578888566 0.8138075313807452 0.07797881578888566 0.4659237478710528
+0.8221757322175657 0.07119804919854777 0.8221757322175657 0.07119804919854777 0.452356866496798
+0.8200836820083606 0.07458843249371672 0.8200836820083605 0.07458843249371672 0.4574977475974505
+0.828451882845181 0.06780766590337883 0.8284518828451811 0.06780766590337883 0.4421577453222412
+0.8263598326359759 0.07119804919854777 0.8263598326359759 0.07119804919854777 0.4478494444613017
+0.8347280334727963 0.06441728260820989 0.8347280334727963 0.06441728260820989 0.4319711839211689
+0.8326359832635912 0.06780766590337883 0.8326359832635912 0.06780766590337883 0.4378408688172257
+0.8410041841004117 0.06102689931304095 0.8410041841004116 0.06102689931304095 0.4226507154257321
+0.8389121338912066 0.06441728260820989 0.8389121338912066 0.06441728260820989 0.4283578947924709
+0.8493723849372321 0.054246132722703067 0.8493723849372321 0.054246132722703067 0.40947517139229733
+0.847280334728027 0.05763651601787201 0.847280334728027 0.05763651601787201 0.4149081578719847
+0.8451882845188219 0.06102689931304095 0.845188284518822 0.06102689931304095 0.4201959398000495
+0.8556485355648474 0.050855749427534125 0.8556485355648474 0.050855749427534125 0.40433719363663306
+0.8535564853556423 0.054246132722703067 0.8535564853556422 0.054246132722703067 0.4092050627940607
+0.8619246861924628 0.04746536613236518 0.8619246861924629 0.04746536613236518 0.4013085433325651
+0.8598326359832577 0.050855749427534125 0.8598326359832577 0.050855749427534125 0.40567845597514757
+0.8682008368200781 0.04407498283719624 0.8682008368200781 0.04407498283719624 0.40006704792445086
+0.866108786610873 0.04746536613236518 0.866108786610873 0.04746536613236518 0.4041246268042165
+0.8744769874476934 0.0406845995420273 0.8744769874476933 0.0406845995420273 0.4000441531721743
+0.8723849372384883 0.04407498283719624 0.8723849372384883 0.04407498283719624 0.4040478658715923
+0.8807531380753088 0.03729421624685836 0.8807531380753088 0.03729421624685836 0.40053385855765594
+0.8786610878661036 0.0406845995420273 0.8786610878661038 0.0406845995420273 0.40475906182629656
+0.8870292887029241 0.03390383295168942 0.887029288702924 0.03390383295168942 0.40080859238682703
+0.884937238493719 0.03729421624685836 0.884937238493719 0.03729421624685836 0.4054949670865701
+0.8933054393305394 0.030513449656520475 0.8933054393305394 0.030513449656520475 0.40021741621053913
+0.8912133891213343 0.03390383295168942 0.8912133891213344 0.03390383295168942 0.4055292236640748
+0.9016736401673598 0.02373268306618259 0.9016736401673598 0.02373268306618259 0.3921280276215786
+0.8995815899581547 0.027123066361351533 0.8995815899581547 0.027123066361351533 0.39825380361971846
+0.8974895397489496 0.030513449656520475 0.8974895397489496 0.030513449656520475 0.4042567528155287
+0.9079497907949752 0.02034229977101365 0.9079497907949751 0.02034229977101365 0.3880047720278057
+0.9058577405857701 0.02373268306618259 0.9058577405857701 0.02373268306618259 0.3945909595289361
+0.9142259414225905 0.01695191647584471 0.9142259414225905 0.01695191647584471 0.38222437082486027
+0.9121338912133854 0.02034229977101365 0.9121338912133855 0.02034229977101365 0.38908889440477074
+0.9205020920502058 0.013561533180675767 0.9205020920502057 0.013561533180675767 0.3748810015634682
+0.9184100418410007 0.01695191647584471 0.9184100418410007 0.01695191647584471 0.3817797931880747
+0.9267782426778212 0.010171149885506825 0.9267782426778212 0.010171149885506825 0.3661817294986744
+0.924686192468616 0.013561533180675767 0.9246861924686162 0.013561533180675767 0.3728385002608204
+0.9330543933054365 0.006780766590337883 0.9330543933054365 0.006780766590337883 0.3564063837061884
+0.9309623430962314 0.010171149885506825 0.9309623430962314 0.010171149885506825 0.36254471301116165
+0.9372384937238467 0.006780766590337883 0.9372384937238466 0.006780766590337883 0.3512435207985245
+0.006780294227939489 0.9414233864422888 0.00678029422793949 0.9414233864422888 0.08780794848057764
+0.006779505109976414 0.9456086987726408 0.006779505109976414 0.9456086987726408 0.08589305356162556
+0.010170970497135261 0.9351467261536067 0.010170970497135263 0.9351467261536067 0.09094598225701479
+0.010170644833236207 0.9393313028490127 0.010170644833236207 0.9393313028490127 0.08939510388415976
+0.013561473225092867 0.9288703775774795 0.013561473225092867 0.9288703775774795 0.09373199172598233
+0.013561363132057191 0.9330546262510612 0.013561363132057191 0.9330546262510612 0.09259041395301343
+0.016951903982005488 0.9225941591539994 0.01695190398200549 0.9225941591539994 0.09605902605183168
+0.016951882281129853 0.9267782873437201 0.016951882281129853 0.9267782873437201 0.09536096876429133
+0.02034229870849076 0.9163179930617863 0.02034229870849076 0.9163179930617863 0.0978208025778171
+0.020342296322465373 0.920502096459043 0.020342296322465373 0.920502096459043 0.09758890279237926
+0.023732680411069736 0.910041843383654 0.023732680411069736 0.910041843383654 0.09891973636238262
+0.023732675612516935 0.9142259478200073 0.023732675612516935 0.9142259478200073 0.09916335999273111
+0.0271230580140248 0.9079498006504552 0.027123058014024804 0.907949800650455 0.09998959866999842
+0.03051344634312071 0.9016736457057922 0.03051344634312071 0.9016736457057922 0.09999938333115
+0.030513437982532577 0.9058577596022369 0.030513437982532577 0.9058577596022369 0.10091593947414444
+0.03390383200770018 0.8953974916886117 0.03390383200770019 0.8953974916886117 0.09916180930394482
+0.0339038296366261 0.89958159745468 0.0339038296366261 0.89958159745468 0.10051591112458337
+0.037294215998506706 0.8891213394751429 0.037294215998506706 0.8891213394751428 0.09749392198819128
+0.03729421531485332 0.8933054413343711 0.03729421531485332 0.8933054413343712 0.0992253050096407
+0.04068459937449534 0.8828451889565071 0.04068459937449534 0.8828451889565071 0.09507066786426673
+0.040684598806869525 0.8870292911227279 0.040684598806869525 0.8870292911227279 0.09709004792301891
+0.04407498276425497 0.8765690381960499 0.04407498276425497 0.8765690381960499 0.0920336688994585
+0.04407498249999669 0.8807531400664602 0.04407498249999669 0.8807531400664602 0.09421919891849978
+0.04746536610702024 0.870292887298877 0.04746536610702024 0.870292887298877 0.08859758386277596
+0.04746536601243332 0.8744769884510245 0.04746536601243332 0.8744769884510245 0.09079259101536737
+0.0508557494196089 0.8640167365028968 0.0508557494196089 0.8640167365028969 0.08505120150610705
+0.050855749390010536 0.8682008371964924 0.050855749390010536 0.8682008371964924 0.0870653048265232
+0.054246132720317954 0.8577405858057577 0.054246132720317954 0.8577405858057577 0.08174774373146292
+0.054246132711600004 0.8619246863098938 0.054246132711600004 0.8619246863098938 0.0833651143596794
+0.057636516017182844 0.8514644351552216 0.057636516017182844 0.8514644351552217 0.07907609264031788
+0.057636516014740784 0.8556485355972797 0.057636516014740784 0.8556485355972797 0.08007588924036745
+0.0610268993122842 0.8493723849444974 0.0610268993122842 0.8493723849444974 0.07759774916446682
+0.06441728260808675 0.8430962343107359 0.06441728260808675 0.8430962343107359 0.07627925740884951
+0.06441728260768079 0.8472803347319955 0.06441728260768077 0.8472803347319955 0.07613514117017511
+0.06780766590330278 0.8368200836823517 0.06780766590330278 0.8368200836823517 0.07633422224333851
+0.0678076659030273 0.8410041841018022 0.0678076659030273 0.8410041841018022 0.07524264239103708
+0.0711980491985133 0.8305439330545847 0.0711980491985133 0.8305439330545848 0.07777854457112467
+0.07119804919839484 0.834728033473629 0.07119804919839484 0.834728033473629 0.07578999213372074
+0.07458843249370696 0.8242677824268695 0.07458843249370696 0.8242677824268695 0.08042412778635871
+0.07458843249367947 0.8284518828455876 0.07458843249367947 0.8284518828455877 0.07769834062852803
+0.07797881578888323 0.8179916317991971 0.07797881578888323 0.8179916317991971 0.08393343489144957
+0.07797881578888197 0.8221757322177242 0.07797881578888198 0.8221757322177242 0.08069675436691133
+0.08136919908405306 0.8117154811715573 0.08136919908405306 0.8117154811715573 0.0879014650917924
+0.0813691990840551 0.8158995815900049 0.0813691990840551 0.8158995815900049 0.08439808701755376
+0.0847595823792216 0.8054393305439342 0.0847595823792216 0.8054393305439342 0.0919280510235848
+0.08475958237922253 0.8096234309623552 0.08475958237922253 0.8096234309623552 0.08838415550882876
+0.08814996567438937 0.7991631799163175 0.08814996567438937 0.7991631799163175 0.09566458691444006
+0.08814996567438632 0.8033472803347331 0.08814996567438632 0.8033472803347331 0.09226927473656012
+0.0915403489695583 0.7928870292887019 0.0915403489695583 0.7928870292887019 0.09883800862200824
+0.09154034896955554 0.7970711297071164 0.09154034896955554 0.7970711297071164 0.09573610131945869
+0.09493073226472593 0.7907949790795009 0.09493073226472593 0.7907949790795009 0.09855159806370441
+0.09832111555989588 0.7845188284518838 0.09832111555989588 0.7845188284518838 0.10057244402707362
+0.09832111555989276 0.7887029288703054 0.09832111555989276 0.7887029288703054 0.0981316721592308
+0.10171149885506531 0.7782426778242671 0.10171149885506532 0.7782426778242671 0.10174594764009459
+0.10171149885506409 0.7824267782426823 0.10171149885506407 0.7824267782426823 0.09976041122630418
+0.10510188215023443 0.7719665271966512 0.10510188215023443 0.7719665271966512 0.1021091892459265
+0.10510188215023403 0.7761506276150629 0.10510188215023404 0.7761506276150629 0.10056666294002935
+0.10849226544540343 0.7656903765690357 0.10849226544540343 0.7656903765690357 0.10178680070809475
+0.1084922654454033 0.7698744769874465 0.10849226544540329 0.7698744769874465 0.1006323014481184
+0.11188264874057235 0.7594142259414207 0.11188264874057237 0.7594142259414207 0.10098611540907722
+0.11188264874057231 0.763598326359831 0.11188264874057231 0.763598326359831 0.10012354106595413
+0.11527303203574124 0.7531380753138057 0.11527303203574124 0.7531380753138057 0.09998694345376609
+0.11527303203574124 0.7573221757322157 0.11527303203574124 0.7573221757322157 0.09928294318492226
+0.11866341533091013 0.7468619246861907 0.11866341533091011 0.7468619246861907 0.0991220365260797
+0.11866341533091013 0.7510460251046007 0.11866341533091011 0.7510460251046007 0.09841427767915682
+0.12205379862607901 0.7405857740585757 0.12205379862607901 0.7405857740585757 0.09874444799135691
+0.12205379862607901 0.7447698744769857 0.12205379862607901 0.7447698744769857 0.09785637880900187
+0.12544418192124793 0.7343096234309607 0.12544418192124793 0.7343096234309607 0.09918135159428282
+0.12544418192124793 0.7384937238493707 0.12544418192124793 0.7384937238493707 0.09794383412623421
+0.1288345652164168 0.7322175732217557 0.1288345652164168 0.7322175732217557 0.09895781517618951
+0.13222494851158573 0.7259414225941407 0.13222494851158573 0.7259414225941407 0.1010785323405028
+0.13222494851158573 0.7301255230125507 0.13222494851158573 0.7301255230125507 0.09913940788817739
+0.1356153318067546 0.7196652719665257 0.13561533180675459 0.7196652719665257 0.10435583732611632
+0.1356153318067546 0.7238493723849357 0.13561533180675459 0.7238493723849357 0.10184172374098975
+0.1390057151019235 0.7133891213389107 0.1390057151019235 0.7133891213389107 0.10870968382441303
+0.1390057151019235 0.7175732217573207 0.1390057151019235 0.7175732217573207 0.10562960655908189
+0.1423960983970924 0.7071129707112958 0.1423960983970924 0.7071129707112958 0.11395877273352419
+0.1423960983970924 0.7112970711297057 0.1423960983970924 0.7112970711297057 0.11037081747085033
+0.1457864816922613 0.7008368200836808 0.1457864816922613 0.7008368200836808 0.11986405844319963
+0.1457864816922613 0.7050209205020908 0.1457864816922613 0.7050209205020908 0.11585774812725867
+0.1491768649874302 0.6945606694560658 0.1491768649874302 0.6945606694560658 0.12617191136242922
+0.1491768649874302 0.6987447698744758 0.1491768649874302 0.6987447698744758 0.1218502100521441
+0.1525672482825991 0.6924686192468608 0.15256724828259907 0.6924686192468608 0.12811244060091356
+0.15595763157776799 0.6903765690376558 0.15595763157776799 0.6903765690376558 0.1299155298200243
+0.1593480148729369 0.6882845188284508 0.1593480148729369 0.6882845188284508 0.13155163401513723
+0.16273839816810579 0.6861924686192458 0.16273839816810579 0.6861924686192458 0.13300243848749657
+0.1661287814632747 0.6841004184100408 0.1661287814632747 0.6841004184100408 0.13426032907888977
+0.16951916475844359 0.6820083682008358 0.16951916475844356 0.6820083682008358 0.13532754958982493
+0.17290954805361247 0.6757322175732208 0.17290954805361247 0.6757322175732208 0.14058808899465203
+0.1762999313487814 0.6736401673640158 0.1762999313487814 0.6736401673640158 0.1412900804947037
+0.18646391938239057 0.6589917108947163 0.18646391938239057 0.6589917108947163 0.1515966100105686
+0.19317453991878583 0.6505911596443305 0.19317453991878583 0.6505911596443305 0.15696718207972296
+0.19649486602513547 0.6484770396621948 0.19649486602513547 0.6484770396621949 0.157452615156389
+0.20299554213336687 0.6400181665659571 0.20299554213336687 0.6400181665659571 0.16339237280381777
+0.20611666950088572 0.6380031674140668 0.20611666950088572 0.6380031674140668 0.1640458255726587
+0.20909418346833164 0.6362580735847815 0.2090941834683316 0.6362580735847815 0.16451287307299742
+0.21184847642549426 0.6342877041965758 0.21184847642549423 0.6342877041965758 0.16538078638340067
+0.2141371410006153 0.6288398624928248 0.2141371410006153 0.6288398624928248 0.17072217009434887
+0.21708214889852956 0.6267298691647192 0.21708214889852953 0.6267298691647191 0.1717816301839948
+0.22009055764735477 0.6245102275246298 0.22009055764735477 0.6245102275246298 0.17297205534648116
+0.21453484324661518 0.6324463783550532 0.21453484324661518 0.6324463783550532 0.1661806261744048
+0.19977665429237426 0.6463542755271852 0.19977665429237426 0.6463542755271852 0.1580069593863771
+0.20301600056252134 0.6442131345784482 0.20301600056252136 0.6442131345784482 0.15864833047570095
+0.1898415286702504 0.6568907806387817 0.1898415286702504 0.6568907806387817 0.15198758270129312
+0.1932061685271594 0.6547829549302174 0.1932061685271594 0.6547829549302174 0.15239353799110933
+0.1796903146439503 0.6673640167364008 0.17969031464395033 0.6673640167364008 0.14627040470058938
+0.1796903146439503 0.6715481171548108 0.17969031464395033 0.6715481171548108 0.141861941102962
+0.18308039126030484 0.6652718097479783 0.18308039126030484 0.6652718097479783 0.14673107696151308
+0.18646897933559103 0.6631782789786176 0.18646897933559103 0.6631782789786175 0.1471318781614358
+0.17290954805361247 0.6799163179916308 0.17290954805361247 0.6799163179916308 0.1362150942101409
+0.22894172076252786 0.6034350018590121 0.22894172076252786 0.6034350018590121 0.19715229250372454
+0.22914696064660037 0.6071397886857991 0.22914696064660037 0.6071397886857991 0.1915879020033824
+0.2408634287118491 0.5843955832182003 0.2408634287118491 0.5843955832182003 0.2235802361590132
+0.23236127734266393 0.5981667070484422 0.23236127734266396 0.5981667070484421 0.20359174889448958
+0.23499701479911528 0.5959775477538428 0.23499701479911525 0.5959775477538428 0.20585013617728462
+0.23737809785087843 0.5901263944938715 0.2373780978508784 0.5901263944938715 0.21471492596395172
+0.23779876841117356 0.593782010347152 0.23779876841117356 0.593782010347152 0.20827100873782325
+0.24085845579404697 0.5880491044914549 0.24085845579404697 0.5880491044914549 0.2169663632132033
+0.23228559997808168 0.6016685555853779 0.2322855999780817 0.6016685555853779 0.19817127564636736
+0.22302058574006198 0.6150442067755505 0.22302058574006198 0.6150442067755505 0.18370435583315128
+0.22924326524258723 0.6108803663947106 0.22924326524258723 0.6108803663947106 0.1861812410774251
+0.2261607207913472 0.6129811507528438 0.2261607207913472 0.6129811507528437 0.18487751957497545
+0.22308436924325084 0.6187067582397361 0.22308436924325084 0.6187067582397362 0.17881869830404387
+0.2231529329901022 0.622348237728758 0.22315293299010222 0.622348237728758 0.17408980841516783
+0.3927434779445003 0.37070808368337516 0.3927434779445003 0.3707080836833751 0.3447873964241109
+0.3967083553671121 0.372973640151274 0.3967083553671121 0.372973640151274 0.3597269607277456
+0.38967948275039754 0.3729141947000944 0.38967948275039754 0.3729141947000944 0.33794892172720875
+0.3833638204418396 0.37284118941954814 0.38336382044183953 0.3728411894195482 0.3174205238574698
+0.3806634986534305 0.37433473435191583 0.3806634986534305 0.37433473435191583 0.30962992206234685
+0.3865508855462378 0.37465674376190344 0.3865508855462378 0.37465674376190344 0.32977886467406176
+0.3778118578754688 0.3760438303748565 0.3778118578754688 0.3760438303748565 0.3010568326993661
+0.3720337282264364 0.3763458191147207 0.3720337282264364 0.3763458191147207 0.28103298598342347
+0.3693385135849139 0.37818842458544727 0.3693385135849139 0.37818842458544727 0.2721798190653298
+0.37548522177237464 0.3778803396227358 0.3754852217723746 0.3778803396227359 0.2940108747797583
+0.3666422934084955 0.3801002687994639 0.36664229340849547 0.3801002687994639 0.2629950149468105
+0.36054178098434186 0.3805879471963056 0.36054178098434186 0.3805879471963056 0.24151838492288677
+0.357906042893384 0.382628718525495 0.357906042893384 0.382628718525495 0.23225268041244104
+0.3639746306650669 0.38200494339242064 0.3639746306650669 0.38200494339242064 0.25361179921393107
+0.35527887970913996 0.3847341514934551 0.35527887970913996 0.3847341514934551 0.22293377793076807
+0.3491342385497713 0.3856183311914694 0.3491342385497713 0.3856183311914694 0.20286709841076253
+0.34655026167427977 0.38788806877051 0.34655026167427977 0.38788806877051 0.1943830495421204
+0.3526856220258993 0.38688900699505724 0.3526856220258993 0.38688900699505724 0.21374979387969176
+0.3439978654515981 0.39021221649715204 0.3439978654515981 0.39021221649715204 0.1864157654405977
+0.33781318487634104 0.39149199251797734 0.33781318487634104 0.39149199251797734 0.17067404262092964
+0.3352841686464589 0.39398128400839894 0.3352841686464589 0.39398128400839894 0.16515852619514834
+0.34148524539060715 0.3925845373119483 0.34148524539060715 0.3925845373119483 0.17917839770908375
+0.33281065538487686 0.3965427178847867 0.33281065538487686 0.3965427178847867 0.16096902352918627
+0.3266534498088164 0.39828312162371843 0.32665344980881633 0.39828312162371843 0.15365058558414701
+0.3241456223285336 0.4009499855592156 0.32414562232853367 0.4009499855592156 0.1536900779129895
+0.33039884735069064 0.39915151186932946 0.33039884735069064 0.39915151186932946 0.15832139974612858
+0.3216977135970069 0.40366664499950095 0.3216977135970069 0.40366664499950095 0.155550640759014
+0.31591954232249464 0.4063032753044603 0.3159195423224946 0.40630327530446037 0.15932050787854887
+0.31367352389383496 0.4091546852043327 0.313673523893835 0.4091546852043327 0.16543645619984873
+0.31946449690639606 0.4066075669068258 0.31946449690639606 0.4066075669068258 0.1593813105614812
+0.3113036765097452 0.4118669961730729 0.3113036765097452 0.4118669961730728 0.17252562566832275
+0.3040329689185605 0.41905779102781704 0.3040329689185605 0.41905779102781704 0.19626971307704244
+0.30659308101230287 0.41675918197451073 0.3065930810123029 0.41675918197451073 0.18801473862842044
+0.308914892284738 0.4144750002551844 0.308914892284738 0.4144750002551844 0.1803550143107098
+0.3017563079104559 0.4217075625324117 0.3017563079104559 0.42170756253241176 0.20573473037013887
+0.2994876194610306 0.4243315642167767 0.2994876194610306 0.4243315642167767 0.21532485562639977
+0.2971942433185951 0.4269915700228396 0.2971942433185952 0.42699157002283966 0.22511248540028514
+0.2949210092570644 0.42973147794639377 0.2949210092570644 0.4297314779463938 0.23509990673084302
+0.2927359628283783 0.4326672610853932 0.2927359628283783 0.4326672610853932 0.2455145532910085
+0.2864435760959489 0.4410099483584529 0.2864435760959489 0.4410099483584529 0.27345698680971786
+0.28854910384340793 0.43746081861177866 0.2885491038434079 0.4374608186117786 0.26216501166221423
+0.29141352127782283 0.43546692249674984 0.29141352127782283 0.43546692249674984 0.2547697967855238
+0.2844058214099588 0.444165473490151 0.2844058214099588 0.444165473490151 0.28307708584138186
+0.28237466219278484 0.44731196712600596 0.2823746621927849 0.44731196712600596 0.2921284694000226
+0.2802939085156839 0.4501493215683128 0.2802939085156839 0.45014932156831283 0.2997561636686
+0.2780946614472918 0.4530540985414172 0.27809466144729184 0.45305409854141715 0.30689310447539303
+0.27646086964549116 0.45632739599769717 0.27646086964549116 0.45632739599769717 0.3145719725744338
+0.27470971750949247 0.45958261082842994 0.2747097175094924 0.45958261082842994 0.3214667488969201
+0.27294392326470757 0.4628568820362462 0.27294392326470757 0.4628568820362462 0.3276780472854337
+0.2711778187158938 0.4661120493594307 0.2711778187158938 0.4661120493594307 0.33312308902203
+0.26942085209440314 0.46940462197114985 0.2694208520944032 0.4694046219711499 0.337905757173883
+0.2676985420889491 0.47279242851110737 0.2676985420889491 0.4727924285111074 0.34212097918050727
+0.26604577439589994 0.47626495610791664 0.26604577439589994 0.4762649561079167 0.3457254077605041
+0.26460216816841003 0.4797265455021551 0.26460216816841003 0.47972654550215504 0.34869549631076024
+0.2631496262583969 0.4831357112739262 0.26314962625839694 0.48313571127392624 0.3508506596975292
+0.26165930812136484 0.4865701559187275 0.2616593081213648 0.4865701559187275 0.352248818500895
+0.26010756714323796 0.49008740162505654 0.26010756714323796 0.49008740162505654 0.3528961855899863
+0.2579735931531109 0.49392588760321804 0.2579735931531109 0.49392588760321804 0.35238708533165436
+0.25730023426333826 0.49782802036785534 0.2573002342633383 0.4978280203678553 0.3524588616991961
+0.2563119695492575 0.5013076414453749 0.2563119695492575 0.5013076414453749 0.35146277105374285
+0.2552336874699455 0.5046922157235053 0.2552336874699455 0.5046922157235053 0.3497647968911113
+0.254131221729929 0.508013488312895 0.254131221729929 0.508013488312895 0.3474970648928682
+0.25306046382645025 0.5111683942395961 0.25306046382645025 0.5111683942395961 0.3448321793337454
+0.25224849369941815 0.5143371555357695 0.2522484936994181 0.5143371555357695 0.3419751495186975
+0.2518056156215532 0.517297210997595 0.2518056156215532 0.517297210997595 0.33928583440087084
+0.25098191683898224 0.5206093743998137 0.25098191683898224 0.5206093743998137 0.3354811751653222
+0.25022219119627864 0.5239405700825914 0.2502221911962787 0.5239405700825914 0.3313107101848733
+0.24947788628317677 0.5272609829953435 0.24947788628317677 0.5272609829953435 0.3267764077209954
+0.24878526795355727 0.5305846673412419 0.2487852679535573 0.5305846673412419 0.3219314274157176
+0.2481666173488246 0.5339151208341967 0.2481666173488246 0.5339151208341967 0.31681286479438
+0.24762095563848083 0.5372610317500167 0.24762095563848083 0.5372610317500167 0.3114309061214033
+0.24711466058274764 0.540645613092157 0.24711466058274764 0.540645613092157 0.3057457379334221
+0.24664453822484209 0.5440627563402429 0.24664453822484209 0.544062756340243 0.29977914497539393
+0.24619628303558638 0.5474893273403786 0.24619628303558638 0.5474893273403786 0.29359112127202586
+0.24577385990835954 0.5509299273382033 0.2457738599083595 0.5509299273382035 0.28720940300499387
+0.24540543664893386 0.5543866074440059 0.24540543664893386 0.5543866074440059 0.28067145388693787
+0.2451022181188001 0.5578393364451819 0.2451022181188001 0.5578393364451819 0.2740438248151112
+0.24485399483384807 0.5613018330099783 0.2448539948338481 0.5613018330099783 0.2673224643101393
+0.24464479310958262 0.5647940683039437 0.24464479310958262 0.5647940683039437 0.2604900664979745
+0.2444862735601736 0.5682949967362193 0.2444862735601736 0.5682949967362193 0.2536134477118504
+0.2443650667117001 0.5718163648492429 0.2443650667117001 0.5718163648492429 0.24669827444966577
+0.24427597572230708 0.5753572165246671 0.24427597572230705 0.5753572165246671 0.23977550248758098
+0.2442213396004558 0.5789104028508175 0.2442213396004558 0.5789104028508175 0.23288730519681478
+0.24420385263364563 0.5824695659147472 0.24420385263364563 0.5824695659147472 0.22607130603401973
+0.40032115816733643 0.3713860132603382 0.40032115816733643 0.3713860132603382 0.36757784600736776
+0.4054758456677622 0.35873221393100224 0.4054758456677621 0.35873221393100224 0.3647039048873155
+0.4037743580813038 0.3622060404198222 0.4037743580813037 0.3622060404198222 0.3642031256613269
+0.403782632290315 0.36633879484130827 0.403782632290315 0.3663387948413082 0.36916245588474456
+0.4038411731795367 0.3699569651370388 0.40384117317953677 0.36995696513703885 0.3746751139991394
+0.4123916869556745 0.3465848465958258 0.4123916869556745 0.34658484659582584 0.37169848156482516
+0.4093127525174525 0.3510803672625271 0.4093127525174525 0.3510803672625271 0.36764010485070026
+0.41197955111037593 0.34984198575751446 0.41197955111037593 0.3498419857575144 0.372357156971397
+0.4090880528818872 0.3543385025697794 0.40908805288188715 0.3543385025697794 0.3691528331028293
+0.4087470670805217 0.35770591262047374 0.4087470670805217 0.35770591262047374 0.3710216240891091
+0.4202934294263983 0.3346187638271411 0.4202934294263983 0.3346187638271411 0.3813510387092354
+0.41648484076424747 0.3389077335770347 0.41648484076424747 0.3389077335770347 0.376587071188552
+0.4196840583116977 0.33806808884712547 0.4196840583116977 0.33806808884712547 0.3815877646931866
+0.4159997608906032 0.34235182825328087 0.4159997608906032 0.34235182825328087 0.37684455689955865
+0.4156037781193628 0.3457678934889347 0.4156037781193627 0.3457678934889347 0.3774112569212948
+0.42945841261901635 0.322765712289545 0.42945841261901635 0.32276571228954504 0.3863563100818666
+0.4251280336972931 0.32690794789566874 0.4251280336972931 0.32690794789566874 0.38458335446053565
+0.4284997828238885 0.3262744197579705 0.4284997828238885 0.3262744197579705 0.38768950701115307
+0.42429932639311624 0.3304116151442302 0.42429932639311624 0.3304116151442302 0.3852239116766539
+0.4235469657422349 0.3338743429239506 0.4235469657422349 0.3338743429239506 0.3857031901326043
+0.43999240799950706 0.31121417424642756 0.43999240799950706 0.31121417424642756 0.37922615493850603
+0.4351596009771446 0.31515648331365825 0.4351596009771446 0.31515648331365825 0.38326078059378577
+0.4386601292542816 0.31471757225136704 0.4386601292542816 0.31471757225136704 0.3831387047458841
+0.4339807086197773 0.31870589113978604 0.4339807086197773 0.31870589113978604 0.38601271949731797
+0.4328737674867291 0.32221950098176994 0.4328737674867291 0.32221950098176994 0.3882610491311968
+0.45845484007577675 0.29512266435253875 0.4584548400757767 0.2951226643525388 0.3361040883911451
+0.4565122663236301 0.2982672427719431 0.4565122663236301 0.2982672427719431 0.34464022748787565
+0.45455727058413814 0.3014308516675432 0.45455727058413814 0.3014308516675432 0.35278798591723864
+0.45240197127738735 0.30479625785727604 0.4524019712773874 0.30479625785727604 0.36102391393162453
+0.4451031260249618 0.3075645246692068 0.44510312602496177 0.30756452466920686 0.37244184327103674
+0.44903508524439284 0.30704967144834383 0.4490350852443928 0.3070496714483438 0.36832813424697264
+0.4435189979335687 0.31087342379261296 0.4435189979335687 0.31087342379261296 0.3775136565193437
+0.4661052307174211 0.28925250382454537 0.4661052307174211 0.2892525038245454 0.3090495643134837
+0.4641098308720119 0.2923348475828132 0.4641098308720119 0.2923348475828132 0.3189036470035269
+0.4698498563375841 0.28977914016297657 0.4698498563375841 0.28977914016297657 0.29912479923505453
+0.46212773579137084 0.2954007544277298 0.46212773579137084 0.2954007544277298 0.3284401573416875
+0.48845619662419587 0.276476191800439 0.48845619662419587 0.276476191800439 0.2152308955490986
+0.48600833016189987 0.2790151670413564 0.48600833016189987 0.2790151670413565 0.2276813053110093
+0.4836285451734736 0.28141631501977865 0.4836285451734736 0.28141631501977865 0.23975703746407231
+0.4810551569051875 0.2838211832994011 0.4810551569051875 0.2838211832994011 0.2525126175498688
+0.47833231347886934 0.2857477140911054 0.47833231347886934 0.2857477140911054 0.26513968588827996
+0.4815566694581677 0.28717836934727103 0.4815566694581677 0.287178369347271 0.2547989265465713
+0.47579142365577826 0.2881100339181901 0.47579142365577826 0.2881100339181901 0.27739303545559085
+0.47356252999536314 0.29056439029500386 0.47356252999536314 0.29056439029500386 0.2884665250526193
+0.5053435368228065 0.26874558070484206 0.5053435368228065 0.26874558070484206 0.13794676843956014
+0.4968380522002179 0.2722797734774009 0.4968380522002179 0.2722797734774009 0.1764907642159056
+0.5028125792051922 0.271073763124827 0.5028125792051922 0.271073763124827 0.14990880273210624
+0.5003914935993519 0.2732015342380817 0.500391493599352 0.27320153423808163 0.16163539976679853
+0.4943382373295253 0.2749148613953476 0.4943382373295253 0.2749148613953476 0.18916351990675936
+0.4919706888336853 0.27750434380420613 0.4919706888336853 0.27750434380420613 0.20145334514796712
+0.5232931037995047 0.2624264935427352 0.5232931037995047 0.2624264935427352 0.07885254856155006
+0.5140887611322437 0.2653020688022695 0.5140887611322437 0.2653020688022694 0.10225975435740005
+0.5204114375744897 0.26457156425446093 0.5204114375744897 0.264571564254461 0.08441063353127874
+0.517611254294149 0.2667894781143949 0.517611254294149 0.2667894781143949 0.09205230644230322
+0.5114291924636941 0.2677124202770309 0.5114291924636941 0.2677124202770309 0.11288610985039736
+0.5087927689103631 0.2700951333710933 0.5087927689103631 0.2700951333710933 0.12423694223507865
+0.5429023439063531 0.25782115970354774 0.5429023439063531 0.25782115970354774 0.1222651528177474
+0.532285917640997 0.2594915140514891 0.532285917640997 0.2594915140514891 0.08370939278400509
+0.5397404263706547 0.2596258666795171 0.5397404263706546 0.2596258666795171 0.11083732803966871
+0.5360771757381155 0.2606448999371226 0.5360771757381154 0.26064489993712264 0.09746097073903656
+0.5294806433814201 0.26182991171099823 0.5294806433814201 0.2618299117109983 0.08059816372178417
+0.5266580725710505 0.26405393266976807 0.5266580725710505 0.2640539326697681 0.07969845761457182
+0.5522322789628987 0.2555420278661737 0.5522322789628987 0.2555420278661737 0.16541371922234108
+0.5491474270259448 0.2575688066026293 0.5491474270259448 0.2575688066026293 0.1530246992482683
+0.5460564300889953 0.25954358506142927 0.5460564300889953 0.2595435850614293 0.14078158381162598
+0.5581964457763248 0.24758940476696004 0.5581964457763248 0.24758940476696004 0.1825268063039106
+0.5669119765141237 0.24148047812980972 0.5669119765141238 0.2414804781298097 0.21796845096086545
+0.564093146542038 0.24347031596345065 0.5640931465420379 0.24347031596345062 0.20655423987326973
+0.5611907085038479 0.2454756939323296 0.5611907085038479 0.24547569393232962 0.1946796741410958
+0.5695479344598678 0.24319136426632962 0.5695479344598678 0.24319136426632962 0.23447076157965388
+0.5724676336448594 0.2418467189185856 0.5724676336448594 0.24184671891858558 0.2472452910762559
+0.57576509113657 0.2405140241028154 0.57576509113657 0.2405140241028154 0.2617589126129685
+0.579220194519186 0.2392445117856836 0.579220194519186 0.2392445117856836 0.2768804714609616
+0.5836304895273093 0.23439099929432525 0.5836304895273093 0.23439099929432525 0.2902118828102233
+0.5828733735987452 0.23809748587176394 0.5828733735987451 0.23809748587176394 0.2928300382329028
+0.6010815926096484 0.22947250242447542 0.6010815926096483 0.22947250242447545 0.35953641931331143
+0.5977095391459967 0.23070733344840919 0.5977095391459967 0.23070733344840919 0.34768651501479014
+0.5872696801931422 0.2329133319123481 0.5872696801931422 0.23291333191234814 0.3050050491859104
+0.594386201613378 0.23187273163539593 0.594386201613378 0.23187273163539593 0.3353946184169055
+0.5910903422357474 0.2329442729960337 0.5910903422357475 0.23294427299603368 0.3225322458803417
+0.555323273288137 0.2534651253487281 0.555323273288137 0.2534651253487281 0.1779038312849728
+0.5554761608347786 0.2572424969939898 0.5554761608347786 0.25724249699398977 0.18606279735097028
+0.558414503828702 0.2513376545002223 0.558414503828702 0.25133765450022233 0.19038501146785325
+0.6045267245130506 0.22827629514729197 0.6045267245130505 0.228276295147292 0.3711723296029455
+0.6079919681977813 0.22706947703315714 0.6079919681977813 0.22706947703315714 0.3822354949070405
+0.611129594513166 0.22559454756165842 0.611129594513166 0.2255945475616584 0.3910258604662455
+0.6144325244384471 0.22429313750881108 0.6144325244384471 0.22429313750881108 0.40005620403141234
+0.6175116821750191 0.2233936006134266 0.6175116821750191 0.22339360061342664 0.408651600685439
+0.6208313826073995 0.22239579768278503 0.6208313826073995 0.22239579768278503 0.41723503391711797
+0.6242334798286605 0.221432829980056 0.6242334798286605 0.221432829980056 0.4255539196498255
+0.6589948082202289 0.18646948402699212 0.6589948082202289 0.18646948402699212 0.4334719928667045
+0.6527168345687829 0.1898513609765062 0.6527168345687829 0.1898513609765062 0.4279231652598858
+0.6569007448174987 0.1898542667479246 0.6569007448174987 0.1898542667479246 0.4357074841218794
+0.6506253850170953 0.19322269102153314 0.6506253850170953 0.19322269102153314 0.4302379328162543
+0.6485393161065264 0.19657716296417013 0.6485393161065264 0.19657716296417013 0.4326340893673735
+0.6464579813116266 0.19991214757792883 0.6464579813116266 0.19991214757792883 0.4350699395620264
+0.64017099759791 0.2032313546695977 0.64017099759791 0.2032313546695977 0.4286406806864896
+0.6380261996506696 0.20649893866503455 0.6380261996506696 0.20649893866503452 0.43047242574246464
+0.6364201353436686 0.20904574380612143 0.6364201353436686 0.20904574380612143 0.4318945464829925
+0.6276763741598013 0.22045136052470196 0.6276763741598012 0.22045136052470196 0.4333385024947793
+0.632944933714783 0.21255693495531214 0.632944933714783 0.2125569349553121 0.4308743453643961
+0.6320647151819732 0.2159344682396848 0.632064715181973 0.2159344682396848 0.4356344622527968
+0.6311507351090548 0.2195088077372368 0.6311507351090548 0.21950880773723683 0.440650758371074
+0.6364891351209574 0.21195361749602604 0.6364891351209573 0.21195361749602606 0.43814178983797175
+0.6443663490355178 0.20323163049149362 0.6443663490355177 0.20323163049149362 0.4374826332642408
+0.6694560669219737 0.1762999313406788 0.6694560669219737 0.1762999313406788 0.4348568668976844
+0.6736401673585428 0.17629993134694186 0.6736401673585428 0.17629993134694186 0.4417201925612146
+0.6673640165841269 0.17969031458160456 0.6673640165841269 0.17969031458160456 0.436736260670254
+0.6652718486091391 0.18308061179203153 0.6652718486091391 0.18308061179203153 0.4387140627453335
+0.6631792747934944 0.18647015788475463 0.6631792747934943 0.18647015788475463 0.44081966037448445
+0.6945606694560534 0.14917686498743354 0.6945606694560534 0.14917686498743354 0.42741972253271604
+0.6924686192468483 0.1525672482826024 0.6924686192468483 0.1525672482826024 0.4307481501100677
+0.6903765690376433 0.15595763157777126 0.6903765690376433 0.1559576315777713 0.43385126758189996
+0.6882845188284383 0.15934801487294006 0.6882845188284383 0.15934801487294006 0.43671801809283545
+0.6861924686192333 0.162738398168109 0.6861924686192333 0.162738398168109 0.4393540996546909
+0.6841004184100283 0.16612878146327792 0.6841004184100283 0.16612878146327792 0.4417803656534888
+0.6820083682008234 0.1695191647584469 0.6820083682008234 0.1695191647584469 0.4440305742165478
+0.6799163179915727 0.172909548053609 0.6799163179915727 0.172909548053609 0.44614859561633063
+0.6778242677811819 0.1762999313483751 0.6778242677811819 0.1762999313483751 0.44818520574039233
+0.7008368200836692 0.1457864816922647 0.7008368200836692 0.1457864816922647 0.4273555126726794
+0.6987447698744641 0.14917686498743368 0.6987447698744641 0.14917686498743368 0.43123677630831964
+0.7071129707112848 0.1423960983970957 0.7071129707112848 0.1423960983970957 0.42610934589267174
+0.7050209205020797 0.1457864816922647 0.7050209205020797 0.1457864816922647 0.43039900714416585
+0.7133891213389001 0.1390057151019266 0.7133891213389001 0.1390057151019266 0.42408678899041646
+0.711297071129695 0.14239609839709555 0.711297071129695 0.14239609839709555 0.4285385929722742
+0.7196652719665152 0.13561533180675767 0.7196652719665152 0.13561533180675767 0.4218443647710343
+0.7175732217573101 0.1390057151019266 0.7175732217573101 0.1390057151019266 0.42612763682390353
+0.7259414225941305 0.13222494851158872 0.7259414225941305 0.13222494851158872 0.4200330035584811
+0.7238493723849254 0.13561533180675767 0.7238493723849254 0.13561533180675767 0.42376805636684206
+0.734309623430951 0.12544418192125084 0.734309623430951 0.12544418192125084 0.4173274532970246
+0.732217573221746 0.12883456521641978 0.732217573221746 0.12883456521641978 0.419311428071695
+0.7301255230125409 0.13222494851158872 0.7301255230125409 0.13222494851158872 0.4221217442477556
+0.7405857740585663 0.12205379862608191 0.7405857740585663 0.12205379862608191 0.41961246704005045
+0.7384937238493611 0.12544418192125084 0.7384937238493611 0.12544418192125084 0.4202391197489077
+0.7468619246861817 0.11866341533091296 0.7468619246861817 0.11866341533091296 0.42398943028737496
+0.7447698744769767 0.1220537986260819 0.7447698744769767 0.1220537986260819 0.4231691621268388
+0.7531380753137972 0.11527303203574402 0.7531380753137972 0.11527303203574402 0.4303464450005475
+0.7510460251045918 0.11866341533091296 0.7510460251045918 0.11866341533091296 0.4281681995832409
+0.7594142259414125 0.11188264874057507 0.7594142259414126 0.11188264874057507 0.43826471827978836
+0.7573221757322074 0.11527303203574403 0.7573221757322074 0.11527303203574403 0.43498728152760907
+0.7656903765690277 0.10849226544540613 0.7656903765690277 0.10849226544540613 0.44707926249440727
+0.7635983263598227 0.11188264874057507 0.7635983263598227 0.11188264874057507 0.44309231419697276
+0.7719665271966429 0.10510188215023719 0.7719665271966428 0.10510188215023719 0.45597663798535937
+0.7698744769874378 0.10849226544540612 0.7698744769874378 0.10849226544540612 0.4517437627499254
+0.7782426778242585 0.10171149885506825 0.7782426778242585 0.10171149885506825 0.4641049619272513
+0.7761506276150533 0.10510188215023719 0.7761506276150533 0.10510188215023719 0.46010280872249637
+0.7866108786610788 0.09493073226473037 0.7866108786610787 0.09493073226473037 0.4734739196933914
+0.7845188284518737 0.09832111555989931 0.7845188284518737 0.09832111555989931 0.47067597726010707
+0.7824267782426686 0.10171149885506825 0.7824267782426686 0.10171149885506825 0.4673402215798097
+0.7928870292886941 0.09154034896956142 0.7928870292886941 0.09154034896956142 0.4766443494115032
+0.790794979079489 0.09493073226473037 0.790794979079489 0.09493073226473037 0.4750479524580246
+0.7991631799163095 0.08814996567439248 0.7991631799163095 0.08814996567439248 0.47700571545747256
+0.7970711297071044 0.09154034896956142 0.7970711297071044 0.09154034896956142 0.4767858922781473
+0.8054393305439248 0.08475958237922354 0.8054393305439248 0.08475958237922354 0.4744980022126571
+0.8033472803347197 0.08814996567439248 0.8033472803347196 0.08814996567439248 0.4756996984949556
+0.8117154811715401 0.0813691990840546 0.8117154811715402 0.0813691990840546 0.4693224760667469
+0.809623430962335 0.08475958237922354 0.809623430962335 0.08475958237922354 0.4718618956833329
+0.8179916317991555 0.07797881578888566 0.8179916317991555 0.07797881578888566 0.4619292758667662
+0.8158995815899504 0.0813691990840546 0.8158995815899504 0.0813691990840546 0.46560557040860834
+0.8242677824267708 0.07458843249371672 0.8242677824267709 0.07458843249371672 0.4529836451785108
+0.8221757322175657 0.07797881578888566 0.8221757322175657 0.07797881578888566 0.4575013817491848
+0.8305439330543861 0.07119804919854777 0.8305439330543861 0.07119804919854777 0.4433077712025116
+0.828451882845181 0.07458843249371672 0.8284518828451811 0.07458843249371672 0.44831083543644284
+0.8368200836820014 0.06780766590337883 0.8368200836820013 0.06780766590337883 0.43379597986356305
+0.8347280334727963 0.07119804919854777 0.8347280334727963 0.07119804919854777 0.4389126597950112
+0.8430962343096168 0.06441728260820989 0.8430962343096168 0.06441728260820989 0.4253054964048671
+0.8410041841004117 0.06780766590337883 0.8410041841004116 0.06780766590337883 0.43020178567067774
+0.8514644351464372 0.05763651601787201 0.8514644351464372 0.05763651601787201 0.4139418362683345
+0.8493723849372321 0.06102689931304095 0.8493723849372321 0.06102689931304095 0.4185340739097006
+0.847280334728027 0.06441728260820989 0.847280334728027 0.06441728260820989 0.4229677532530522
+0.8577405857740525 0.054246132722703067 0.8577405857740527 0.054246132722703067 0.40987791237067744
+0.8556485355648474 0.05763651601787201 0.8556485355648474 0.05763651601787201 0.41390729442646296
+0.8640167364016679 0.050855749427534125 0.8640167364016679 0.050855749427534125 0.4079363907999774
+0.8619246861924628 0.054246132722703067 0.8619246861924629 0.054246132722703067 0.41150533162652086
+0.8702928870292832 0.04746536613236518 0.8702928870292831 0.04746536613236518 0.40772031929189084
+0.8682008368200781 0.050855749427534125 0.8682008368200781 0.050855749427534125 0.4110532253192573
+0.8765690376568985 0.04407498283719624 0.8765690376568985 0.04407498283719624 0.4085851242538688
+0.8744769874476934 0.04746536613236518 0.8744769874476933 0.04746536613236518 0.4119791284416427
+0.8828451882845139 0.0406845995420273 0.8828451882845139 0.0406845995420273 0.40975533627801936
+0.8807531380753088 0.04407498283719624 0.8807531380753088 0.04407498283719624 0.4135217970777482
+0.8891213389121292 0.03729421624685836 0.8891213389121292 0.03729421624685836 0.4104449703544281
+0.8870292887029241 0.0406845995420273 0.887029288702924 0.0406845995420273 0.41485566659283696
+0.8953974895397445 0.03390383295168942 0.8953974895397446 0.03390383295168942 0.40995747182985953
+0.8933054393305394 0.03729421624685836 0.8933054393305394 0.03729421624685836 0.4152043753499273
+0.903765690376565 0.027123066361351533 0.9037656903765648 0.027123066361351533 0.40124532603974844
+0.9016736401673598 0.030513449656520475 0.9016736401673598 0.030513449656520475 0.4077539550531685
+0.8995815899581547 0.03390383295168942 0.8995815899581547 0.03390383295168942 0.4139256350527157
+0.9100418410041803 0.02373268306618259 0.9100418410041803 0.02373268306618259 0.39625651272231116
+0.9079497907949752 0.027123066361351533 0.9079497907949751 0.027123066361351533 0.40348902849806295
+0.9163179916317956 0.02034229977101365 0.9163179916317956 0.02034229977101365 0.38924194546422997
+0.9142259414225905 0.02373268306618259 0.9142259414225905 0.02373268306618259 0.397019112779241
+0.9225941422594109 0.01695191647584471 0.9225941422594109 0.01695191647584471 0.38032164486424974
+0.9205020920502058 0.02034229977101365 0.9205020920502057 0.02034229977101365 0.3883898848668052
+0.9288702928870263 0.013561533180675767 0.9288702928870264 0.013561533180675767 0.3697508139408505
+0.9267782426778212 0.01695191647584471 0.9267782426778212 0.01695191647584471 0.3778093220019993
+0.9351464435146416 0.010171149885506825 0.9351464435146416 0.010171149885506825 0.357881214493863
+0.9330543933054365 0.013561533180675767 0.9330543933054365 0.013561533180675767 0.36561221914922665
+0.9414225941422569 0.006780766590337883 0.9414225941422568 0.006780766590337883 0.34512339988878243
+0.9393305439330518 0.010171149885506825 0.9393305439330518 0.010171149885506825 0.3522218716358991
+0.9456066945606671 0.006780766590337883 0.9456066945606673 0.006780766590337883 0.33811489770397335
+0.006777679035582719 0.9497954107388796 0.006777679035582719 0.9497954107388796 0.08376247477037517
+0.0067740380142489245 0.9539846844146993 0.0067740380142489245 0.9539846844146993 0.08144463304086556
+0.010169840790806224 0.9435165108075138 0.010169840790806224 0.9435165108075138 0.08759388991528189
+0.010168119300993407 0.9477028492473716 0.010168119300993407 0.9477028492473716 0.08556218890155974
+0.013561089788611846 0.937239083382631 0.013561089788611846 0.9372390833826308 0.09117462562461685
+0.01356045259121183 0.9414239658205689 0.01356045259121183 0.9414239658205689 0.08949676663051254
+0.016951836668288405 0.9309624440263056 0.016951836668288405 0.9309624440263056 0.09437485555955427
+0.01695120743336721 0.9351468942962907 0.01695120743336721 0.9351468942962907 0.09310537688454813
+0.02034229020912194 0.9246862039256607 0.02034229020912194 0.9246862039256607 0.09706492179538818
+0.020342270706659924 0.928870325239577 0.020342270706659924 0.928870325239577 0.09624693471039102
+0.02373266862249571 0.9184100537577553 0.02373266862249571 0.9184100537577553 0.09912110800220286
+0.023732681577440323 0.9225941438490597 0.023732681577440323 0.9225941438490598 0.09878417581229033
+0.02712303754560816 0.9121339233545583 0.02712303754560816 0.9121339233545583 0.1004335383588646
+0.0271229706781289 0.9163180893807853 0.0271229706781289 0.9163180893807853 0.1005928878590373
+0.030513410012871695 0.9100419030803405 0.030513410012871695 0.9100419030803405 0.10156978419375752
+0.03390382168122691 0.9037657154850156 0.03390382168122691 0.9037657154850155 0.1016421535138619
+0.03390379593407792 0.9079498710866075 0.03390379593407792 0.9079498710866075 0.10251385322089925
+0.037294212774263084 0.8974895466689325 0.037294212774263084 0.8974895466689325 0.10077815869990746
+0.0372942034446207 0.9016736632877825 0.0372942034446207 0.9016736632877825 0.10211731459822711
+0.040684596432695 0.8912133972968378 0.040684596432695 0.8912133972968378 0.09899638183261204
+0.04068458706487739 0.8953975149992942 0.04068458706487738 0.8953975149992942 0.10074522302654336
+0.044074981348710095 0.8849372455023046 0.044074981348710095 0.8849372455023046 0.0963748521131515
+0.04407497661325071 0.8891213621917372 0.04407497661325071 0.8891213621917372 0.09844623358017422
+0.04746536559351825 0.878661091460461 0.04746536559351825 0.878661091460461 0.09305924404650902
+0.04746536383843745 0.8828452006049711 0.04746536383843745 0.8828452006049711 0.09533317393666553
+0.0508557492590769 0.872384938593544 0.0508557492590769 0.8723849385935442 0.08926925896649036
+0.05085574870956446 0.8765690423595252 0.05085574870956446 0.8765690423595253 0.0915903601707596
+0.05424613267352393 0.866108787033558 0.05424613267352393 0.866108787033558 0.0853007445764477
+0.05424613251506022 0.8702928885029589 0.05424613251506022 0.8702928885029589 0.08747847992039838
+0.05763651600424178 0.8598326361000673 0.05763651600424178 0.8598326361000673 0.08151837659565525
+0.05763651596098108 0.8640167368110795 0.05763651596098108 0.8640167368110795 0.08333364656644715
+0.061026899309750055 0.8535564853818549 0.06102689930975005 0.8535564853818549 0.07833025667561337
+0.061026899299138404 0.857740585866515 0.061026899299138404 0.857740585866515 0.07955377375827373
+0.06441728260596936 0.8514644351604262 0.06441728260596936 0.8514644351604262 0.07656211339799686
+0.06780766590175237 0.8451882845243682 0.06780766590175237 0.8451882845243682 0.07474020169249927
+0.06780766589593577 0.8493723849592739 0.06780766589593577 0.8493723849592739 0.074828514195512
+0.07119804919785612 0.8389121338947058 0.07119804919785612 0.8389121338947058 0.07433894268327934
+0.07119804919544494 0.8430962343241334 0.07119804919544494 0.8430962343241334 0.07346601068341056
+0.07458843249355758 0.8326359832652891 0.07458843249355758 0.8326359832652891 0.07540379430060178
+0.07458843249302458 0.8368200836890106 0.07458843249302459 0.8368200836890106 0.07360757075884782
+0.07797881578887662 0.8263598326366194 0.07797881578887662 0.8263598326366194 0.07775889754325749
+0.0779788157888538 0.8305439330570006 0.0779788157888538 0.8305439330570007 0.07519616177770351
+0.08136919908406386 0.8200836820085673 0.08136919908406386 0.8200836820085673 0.08106139508612902
+0.08136919908410091 0.824267782427588 0.08136919908410091 0.824267782427588 0.07796354621258189
+0.08475958237922633 0.8138075313808106 0.08475958237922633 0.8138075313808105 0.08489126434748683
+0.0847595823792417 0.8179916317994019 0.0847595823792417 0.8179916317994019 0.08151068096471653
+0.088149965674372 0.8075313807531673 0.088149965674372 0.8075313807531673 0.08883235318865758
+0.08814996567430601 0.8117154811716817 0.08814996567430601 0.8117154811716817 0.08540242716850277
+0.0915403489695429 0.8012552301255466 0.0915403489695429 0.8012552301255466 0.09252415807004678
+0.09154034896948575 0.8054393305440493 0.09154034896948575 0.8054393305440491 0.08923849759079139
+0.09493073226471889 0.7949790794979298 0.09493073226471889 0.7949790794979298 0.0956870821322549
+0.09493073226468719 0.7991631799164266 0.09493073226468719 0.7991631799164266 0.09269231362680184
+0.0983211155598787 0.7928870292887669 0.0983211155598787 0.7928870292887669 0.09552685250267855
+0.10171149885505866 0.7866108786611145 0.10171149885505866 0.7866108786611145 0.09759856199959042
+0.101711498855035 0.7907949790796208 0.10171149885503498 0.7907949790796208 0.09526946844350508
+0.1051018821502322 0.780334728033481 0.1051018821502322 0.780334728033481 0.0988564206712126
+0.10510188215022437 0.7845188284519252 0.10510188215022435 0.7845188284519252 0.09697740335342177
+0.10849226544540279 0.7740585774058589 0.10849226544540279 0.7740585774058589 0.09933923232418346
+0.10849226544540051 0.7782426778242796 0.10849226544540051 0.7782426778242796 0.09789633043505654
+0.11188264874057217 0.7677824267782416 0.11188264874057217 0.7677824267782416 0.09917160093428996
+0.11188264874057159 0.7719665271966547 0.11188264874057159 0.7719665271966547 0.09810883226442679
+0.11527303203574123 0.761506276150626 0.11527303203574123 0.761506276150626 0.09855728567899587
+0.11527303203574107 0.7656903765690367 0.11527303203574109 0.7656903765690367 0.09777889565172415
+0.11866341533091013 0.7552301255230107 0.11866341533091011 0.7552301255230107 0.09776727241468695
+0.11866341533091011 0.759414225941421 0.11866341533091011 0.759414225941421 0.09714215603829966
+0.12205379862607901 0.7489539748953957 0.12205379862607901 0.7489539748953957 0.09711900477085546
+0.12205379862607901 0.7531380753138057 0.12205379862607901 0.7531380753138057 0.09648932090821305
+0.12544418192124793 0.7426778242677807 0.12544418192124793 0.7426778242677807 0.09694377011538514
+0.12544418192124793 0.7468619246861907 0.12544418192124793 0.7468619246861907 0.09613953773925545
+0.1288345652164168 0.7364016736401657 0.1288345652164168 0.7364016736401657 0.09754278308086788
+0.1288345652164168 0.7405857740585757 0.1288345652164168 0.7405857740585757 0.09640247818745427
+0.13222494851158573 0.7343096234309607 0.13222494851158573 0.7343096234309607 0.09753311406764571
+0.1356153318067546 0.7280334728033457 0.13561533180675459 0.7280334728033457 0.09969006941283941
+0.1356153318067546 0.7322175732217557 0.13561533180675459 0.7322175732217557 0.09788764489392528
+0.1390057151019235 0.7217573221757307 0.1390057151019235 0.7217573221757307 0.10291180224462744
+0.1390057151019235 0.7259414225941407 0.1390057151019235 0.7259414225941407 0.10055825845041068
+0.1423960983970924 0.7154811715481157 0.1423960983970924 0.7154811715481157 0.10711966931448678
+0.1423960983970924 0.7196652719665257 0.1423960983970924 0.7196652719665257 0.10422055236244639
+0.1457864816922613 0.7092050209205008 0.1457864816922613 0.7092050209205008 0.11214525538196059
+0.1457864816922613 0.7133891213389107 0.1457864816922613 0.7133891213389107 0.1087514738701507
+0.1491768649874302 0.7029288702928858 0.1491768649874302 0.7029288702928858 0.11776996696102283
+0.1491768649874302 0.7071129707112958 0.1491768649874302 0.7071129707112958 0.11396188712379197
+0.1525672482825991 0.6966527196652708 0.15256724828259907 0.6966527196652708 0.12376382020351902
+0.1525672482825991 0.7008368200836808 0.15256724828259907 0.7008368200836808 0.11963493515890895
+0.15595763157776799 0.6945606694560658 0.15595763157776799 0.6945606694560658 0.12555911319457883
+0.1593480148729369 0.6924686192468608 0.1593480148729369 0.6924686192468608 0.1272017138360948
+0.16273839816810579 0.6903765690376558 0.16273839816810579 0.6903765690376558 0.128668711982874
+0.1661287814632747 0.6882845188284508 0.1661287814632747 0.6882845188284508 0.12994829650313847
+0.16951916475844359 0.6861924686192458 0.16951916475844356 0.6861924686192458 0.1310390410599771
+0.17290954805361247 0.6841004184100408 0.17290954805361247 0.6841004184100408 0.1319488976498817
+0.1762999313487814 0.6778242677824258 0.1762999313487814 0.6778242677824258 0.1369413696503057
+0.1796903146439503 0.6757322175732208 0.17969031464395033 0.6757322175732208 0.13753065759469804
+0.18985339363533826 0.6610808011250319 0.18985339363533826 0.6610808011250319 0.1475063377953667
+0.19654629696475825 0.6526719741946548 0.19654629696475825 0.6526719741946548 0.15283722248821127
+0.19984846522824432 0.6505571226281086 0.19984846522824432 0.6505571226281086 0.1533415172063806
+0.20613865442620946 0.6421330133622465 0.20613865442620946 0.6421330133622466 0.15933370922128276
+0.20916271981766024 0.6401061741885724 0.20916271981766024 0.6401061741885724 0.16005972245953615
+0.21206632588287055 0.6380987963085876 0.21206632588287055 0.6380987963085875 0.16085980888499554
+0.21486986448011824 0.6360945959136394 0.21486986448011827 0.6360945959136394 0.16174138992628065
+0.2173621808554825 0.6303795549862194 0.2173621808554825 0.6303795549862193 0.1671980142548226
+0.22026565244966856 0.6282272974328347 0.22026565244966853 0.6282272974328347 0.1682975031830698
+0.2232212839263855 0.6260013738510322 0.2232212839263855 0.6260013738510323 0.16948273810629885
+0.21764742561781603 0.6340897766306061 0.21764742561781603 0.6340897766306061 0.16265964349218784
+0.20309111852445647 0.6484352698456558 0.20309111852445647 0.6484352698456558 0.15392990632449155
+0.20624757997144438 0.6462968067334973 0.2062475799714444 0.6462968067334973 0.15462870305527007
+0.19323029442153797 0.6589772535328424 0.19323029442153797 0.6589772535328424 0.14788525097940716
+0.19659645191794464 0.6568695372990553 0.19659645191794464 0.6568695372990553 0.14829099567040863
+0.18308069793911919 0.6694560669456058 0.18308069793911919 0.6694560669456058 0.1423326916052321
+0.18308069793911919 0.6736401673640158 0.18308069793911919 0.6736401673640158 0.13801141247562557
+0.18647076182779623 0.6673637026140703 0.18647076182779623 0.6673637026140703 0.14273343923579718
+0.18985915280588286 0.6652691622780188 0.18985915280588286 0.6652691622780188 0.14309725073880397
+0.1762999313487814 0.6820083682008358 0.1762999313487814 0.6820083682008358 0.13269393585689662
+0.23227882693915933 0.6051630082756791 0.23227882693915933 0.605163008275679 0.19288503155741168
+0.23234589027428043 0.608809789606619 0.23234589027428046 0.608809789606619 0.18748820356279586
+0.24421341394025026 0.5860610737627268 0.24421341394025028 0.5860610737627266 0.2193049929263802
+0.2353178107278058 0.5995795186407652 0.2353178107278058 0.5995795186407652 0.1999301744436959
+0.2382756761193563 0.5974455131284468 0.2382756761193563 0.5974455131284468 0.2019226167864959
+0.24104465331747435 0.5916937479897428 0.24104465331747435 0.5916937479897428 0.21041807682231015
+0.2413496786433406 0.595324411763464 0.2413496786433406 0.595324411763464 0.20398789317059937
+0.24434029474277283 0.5896428810026202 0.24434029474277283 0.5896428810026202 0.21264541996514338
+0.23544162470904254 0.6031546941372975 0.23544162470904254 0.6031546941372975 0.19427982212517225
+0.22620848621934456 0.6166449579784927 0.22620848621934456 0.6166449579784928 0.17989611111201767
+0.2323809347773764 0.6124958010199971 0.2323809347773764 0.6124958010199971 0.1822200448119051
+0.22930492091287757 0.6145782319175463 0.22930492091287755 0.6145782319175463 0.18102184426433443
+0.22625759265172282 0.6202625126460244 0.22625759265172282 0.6202625126460245 0.17511798387691388
+0.22629677413246363 0.6237917356679081 0.2262967741324636 0.6237917356679081 0.17059985975226677
+0.4002312891457452 0.37491780451041773 0.4002312891457452 0.37491780451041773 0.37339157767127357
+0.3931395713594812 0.37475715090473904 0.3931395713594812 0.3747571509047391 0.35140860306769245
+0.3967717376746135 0.3765484839866151 0.39677173767461354 0.3765484839866151 0.36579097162603835
+0.38990989574699175 0.37647406440307607 0.38990989574699175 0.3764740644030761 0.34323719735228436
+0.38351312747284527 0.3762170798260965 0.3835131274728453 0.3762170798260965 0.32108563991820155
+0.38066814387925546 0.37716395733168245 0.38066814387925546 0.37716395733168245 0.3119135644172262
+0.38650874755337733 0.3782189883856048 0.38650874755337733 0.3782189883856048 0.3337186567845878
+0.3789176532356059 0.3792144661940654 0.37891765323560594 0.37921446619406535 0.30732690575386906
+0.37271549381931096 0.37969443651351736 0.37271549381931096 0.37969443651351736 0.28489955036555853
+0.37003726691111033 0.3815482190885353 0.37003726691111033 0.3815482190885353 0.27570602742754297
+0.3760942039871878 0.3811107744206912 0.3760942039871878 0.3811107744206912 0.2981614868422922
+0.36733617865791335 0.38338100788081303 0.3673361786579133 0.38338100788081303 0.2660615445455252
+0.36135990582233357 0.3839998456345509 0.36135990582233357 0.383999845634551 0.24419806199201174
+0.3587795922886721 0.3860560848962103 0.3587795922886721 0.3860560848962103 0.23474302996752086
+0.3647891408422643 0.3853165034671729 0.3647891408422643 0.3853165034671729 0.25669832465282627
+0.3562130049465886 0.38815823851000114 0.3562130049465886 0.38815823851000114 0.225261498872992
+0.35012609970301106 0.38909542834825345 0.35012609970301106 0.38909542834825345 0.20482522135047984
+0.34760289921523535 0.3913573935587804 0.34760289921523535 0.3913573935587804 0.19631959457208278
+0.35367112311849097 0.39030356459261367 0.35367112311849097 0.39030356459261367 0.2159154634957912
+0.34512113829757424 0.3936716277901731 0.34512113829757424 0.3936716277901731 0.18842605327386838
+0.338985651849222 0.39501524326794474 0.338985651849222 0.39501524326794474 0.1728148107865404
+0.33653258201923103 0.39750069788651277 0.33653258201923103 0.39750069788651277 0.16763862076346667
+0.34264933434496475 0.39604488601827237 0.34264933434496475 0.39604488601827237 0.18126130507167917
+0.3341204937459865 0.40004130274104877 0.3341204937459865 0.4000413027410488 0.16386376617370038
+0.32798672864405615 0.4017936673080121 0.32798672864405615 0.4017936673080121 0.15729050024675154
+0.3256011318154681 0.40447900369095513 0.3256011318154681 0.4044790036909552 0.1580310415034731
+0.33174439291596686 0.4026289383845183 0.33174439291596686 0.40262893838451835 0.16168917093761095
+0.32326916706036224 0.4072494259424486 0.32326916706036224 0.4072494259424486 0.1606356978035666
+0.3173339686934501 0.4095706022601569 0.31733396869345004 0.4095706022601569 0.16490851883003485
+0.3150521362882844 0.41237453418239534 0.3150521362882844 0.4123745341823954 0.1715732363813741
+0.3210735551029048 0.4100941625163728 0.32107355510290475 0.4100941625163728 0.16507244778308414
+0.31262085555491415 0.41513562735524334 0.31262085555491415 0.4151356273552434 0.17942485695955848
+0.30698106078796417 0.41955157637468854 0.30698106078796417 0.41955157637468854 0.1952624018553513
+0.30537077872256674 0.4219954044807005 0.30537077872256674 0.42199540448070044 0.2036309830340199
+0.3100316637472363 0.4181576214924927 0.3100316637472363 0.4181576214924928 0.18909560245105053
+0.30318849951996796 0.42465566189607346 0.303188499519968 0.42465566189607346 0.2133594722043857
+0.296697713071539 0.43276208091542223 0.2966977130715391 0.43276208091542223 0.24345517443206474
+0.3009752840916144 0.4273760524858954 0.3009752840916144 0.4273760524858954 0.2234866630673509
+0.29878501268498087 0.43004949095149975 0.29878501268498087 0.43004949095149975 0.2334914750637074
+0.2945736922798635 0.4355822954890516 0.29457369227986346 0.4355822954890516 0.25355615241579704
+0.2881740659592964 0.44407026529432253 0.2881740659592964 0.44407026529432253 0.2822482676854621
+0.29022440092426977 0.4410237571333034 0.29022440092426977 0.4410237571333034 0.272474073642423
+0.29228545364437336 0.43831056679449937 0.29228545364437336 0.43831056679449937 0.26330511484644775
+0.2861528166098926 0.4472252650415716 0.2861528166098926 0.4472252650415716 0.29181755184277947
+0.2841536226487608 0.450834135403466 0.2841536226487608 0.45083413540346606 0.30207309041419245
+0.2813298141353757 0.45305011689726105 0.2813298141353757 0.45305011689726105 0.30757711297298596
+0.2802379822467072 0.4560491051081056 0.2802379822467072 0.45604910510810553 0.31516252172523584
+0.27855579011488707 0.4592783802589211 0.2785557901148871 0.4592783802589211 0.3224835272245464
+0.27674638718057143 0.46252985942679636 0.2767463871805714 0.46252985942679636 0.3290824116351405
+0.27496870202528356 0.4657483178198986 0.27496870202528356 0.4657483178198986 0.3348783235972283
+0.2731981317417976 0.46890164122709876 0.2731981317417976 0.46890164122709876 0.3398002710402617
+0.27147231962038454 0.47219726955630303 0.27147231962038454 0.47219726955630303 0.34424944867117185
+0.2698973360847032 0.47559389961627324 0.2698973360847032 0.47559389961627324 0.3482211399959043
+0.26838567035663613 0.4790152447895579 0.26838567035663613 0.4790152447895579 0.35146010966043656
+0.26690192199256974 0.48243437677145257 0.26690192199256974 0.48243437677145257 0.3539248827571529
+0.26541825834854077 0.4858639199899552 0.26541825834854077 0.4858639199899552 0.35561850051898863
+0.26391389713202007 0.48937074509132267 0.26391389713202007 0.48937074509132267 0.356572481112766
+0.2623632966003788 0.49307331671015253 0.2623632966003788 0.4930733167101526 0.3568119395184514
+0.26102022670957226 0.49678631155911945 0.26102022670957226 0.4967863115591195 0.3563869501090397
+0.25997759089651423 0.5002706974259222 0.25997759089651423 0.5002706974259222 0.3555170929840136
+0.2588716293859481 0.5037517019847805 0.2588716293859481 0.5037517019847805 0.3539077635117865
+0.2577113566074267 0.5072071038120328 0.2577113566074267 0.5072071038120328 0.3516122223194875
+0.2565038278942091 0.5105575046943556 0.2565038278942091 0.5105575046943556 0.34873138808682347
+0.25495318952637935 0.5132004338870239 0.25495318952637935 0.5132004338870239 0.34542915338285163
+0.25521463870763517 0.5159621966149062 0.2552146387076352 0.5159621966149062 0.3437035378072468
+0.2544895163885648 0.5193124223365052 0.2544895163885648 0.5193124223365052 0.3400002106703713
+0.2537333299303821 0.5227014307117425 0.2537333299303821 0.5227014307117425 0.3357634551733462
+0.2529715390208988 0.5260582864196391 0.2529715390208988 0.5260582864196391 0.33113397051183796
+0.25224522450424736 0.5293389497277851 0.2522452245042474 0.5293389497277851 0.3262453982775973
+0.25158360875179087 0.5326094601899237 0.25158360875179087 0.5326094601899237 0.32109787900566933
+0.25104056680573344 0.5358946401470376 0.25104056680573344 0.5358946401470376 0.3157126960774191
+0.2505655582358129 0.5392141147971367 0.2505655582358129 0.5392141147971367 0.31004764015666253
+0.25008724685579314 0.5425809146636454 0.25008724685579314 0.5425809146636454 0.3040342109749883
+0.24962648559500936 0.5459891988680519 0.24962648559500936 0.5459891988680519 0.29772005976419713
+0.24918218385060775 0.5494083211398538 0.24918218385060778 0.5494083211398538 0.29119787239690975
+0.24879361566488709 0.5528266943783131 0.24879361566488709 0.5528266943783131 0.284538904108898
+0.24847788743353805 0.5562332036786267 0.24847788743353805 0.5562332036786267 0.27779942100057825
+0.24822269054654536 0.5596485955074599 0.24822269054654536 0.5596485955074599 0.2709613416675891
+0.24800757752432534 0.563101124184913 0.24800757752432534 0.563101124184913 0.2639862988936021
+0.24784013726945076 0.5665726678547442 0.24784013726945076 0.5665726678547442 0.256935390828825
+0.24770332929696273 0.5700453170791274 0.24770332929696273 0.5700453170791274 0.24987483900105775
+0.24758973407755513 0.5735416144703437 0.24758973407755516 0.5735416144703437 0.24279133818436047
+0.24752214272424197 0.5770537226703598 0.24752214272424197 0.5770537226703598 0.23572757834929084
+0.24750578997081338 0.5805637436336587 0.24750578997081338 0.5805637436336587 0.22874319625097408
+0.24753418028941818 0.5840893018956507 0.24753418028941818 0.5840893018956507 0.22182720178724313
+0.40370858957872585 0.37339794545960703 0.40370858957872585 0.37339794545960703 0.38035491216037043
+0.4081025975181896 0.3611958555303869 0.4081025975181896 0.3611958555303869 0.3729661612202965
+0.4075200008727068 0.36491009669539853 0.40752000087270673 0.3649100966953985 0.376159791837086
+0.4073162480005735 0.36847672767044926 0.4073162480005735 0.36847672767044926 0.3808992883518309
+0.40717728112633345 0.3719531498217606 0.4071772811263335 0.3719531498217606 0.3866223473894567
+0.4151629165577559 0.34888513100190055 0.4151629165577559 0.34888513100190055 0.3780059957811655
+0.4122714403111817 0.35318795647381535 0.41227144031118174 0.35318795647381535 0.37490571144472634
+0.41446655300002144 0.35161628738545014 0.41446655300002144 0.35161628738545014 0.37813794283407015
+0.412109550844797 0.3564896002848186 0.412109550844797 0.3564896002848186 0.37700364033319955
+0.4117713965762117 0.360058237287067 0.4117713965762117 0.36005823728706693 0.3796358051591256
+0.4228637310880709 0.33728997426646656 0.4228637310880709 0.33728997426646656 0.38610677702938184
+0.41914570971065845 0.3415015526139641 0.4191457097106585 0.34150155261396403 0.3819393590082411
+0.4222791326852506 0.3406617578257622 0.4222791326852506 0.3406617578257622 0.3865808495249959
+0.4186826544511478 0.3448926649053147 0.4186826544511478 0.3448926649053147 0.3825080609866365
+0.41817097430245415 0.3481822016547103 0.41817097430245415 0.3481822016547103 0.3831532924449422
+0.431848458033117 0.32570084111985215 0.43184845803311694 0.32570084111985215 0.39007572826291076
+0.42760987099093284 0.32975213686757426 0.4276098709909329 0.32975213686757426 0.3887098111128782
+0.43092446349626634 0.32915070870280366 0.43092446349626634 0.32915070870280366 0.39154917075951184
+0.42681141273473316 0.3331942541096337 0.42681141273473316 0.3331942541096337 0.38952458206270063
+0.4260721946212588 0.3365912851258101 0.4260721946212587 0.3365912851258101 0.39018588443935537
+0.4421063001633758 0.31433058861265545 0.4421063001633758 0.31433058861265545 0.38210517065221467
+0.4374257560937171 0.3182349501679304 0.4374257560937171 0.3182349501679304 0.38651434840030635
+0.4408335830212967 0.3178148271619023 0.44083358302129666 0.3178148271619023 0.3861294150968751
+0.43627848858985124 0.32172934444910456 0.43627848858985124 0.32172934444910456 0.38936212953881083
+0.43520724799280447 0.32519337123306724 0.43520724799280447 0.32519337123306724 0.3917305088089085
+0.46015668320301145 0.2984889996419971 0.46015668320301145 0.2984889996419971 0.3376533227602168
+0.45821042506699877 0.3016048143081405 0.45821042506699877 0.3016048143081405 0.34645075115819207
+0.4520041587523208 0.30814707833831334 0.4520041587523208 0.30814707833831334 0.3661771969808968
+0.4562662373355015 0.3046515115613145 0.4562662373355015 0.3046515115613145 0.35466061758062345
+0.4546978638571768 0.3074674224497169 0.4546978638571768 0.3074674224497169 0.36140093798094414
+0.44703947347818684 0.3103909808324551 0.4470394734781868 0.31039098083245514 0.37458768358265115
+0.4502064299829766 0.31057522821178263 0.4502064299829766 0.31057522821178263 0.37176553796106243
+0.44546811436599026 0.313934972216791 0.44546811436599026 0.313934972216791 0.38010913600590013
+0.46779290194887485 0.2927386919486641 0.46779290194887485 0.2927386919486641 0.3095756529260001
+0.4657984865779716 0.2957235333455748 0.4657984865779716 0.2957235333455748 0.3196674746964359
+0.47143597767315004 0.29327341690969283 0.47143597767315004 0.29327341690969283 0.2993821069948774
+0.4638169860125048 0.2987404448933881 0.4638169860125048 0.2987404448933881 0.3294910938707048
+0.4895756220145764 0.28008341327004865 0.48957562201457633 0.28008341327004865 0.21403586457473348
+0.48718392188429926 0.2826960905292248 0.4871839218842993 0.2826960905292248 0.22677658607760565
+0.48471714905012425 0.28563823571523667 0.4847171490501242 0.28563823571523667 0.2403315219675468
+0.47906144346608526 0.28946578635599374 0.4790614434660853 0.28946578635599374 0.26739561190726335
+0.48374997743117043 0.28871059678071265 0.4837499774311704 0.28871059678071265 0.24794247624422897
+0.48186454941643414 0.29026901258995386 0.48186454941643414 0.29026901258995386 0.2575916020534737
+0.47692105707542365 0.2917942423321411 0.4769210570754236 0.2917942423321411 0.27854796237636115
+0.4748809577000359 0.293936763039646 0.4748809577000359 0.29393676303964605 0.2888892348810536
+0.5061708182126772 0.27245621676729154 0.5061708182126772 0.27245621676729154 0.13619920133756025
+0.4978882119999632 0.27585885959849926 0.4978882119999632 0.27585885959849926 0.1743711339260804
+0.5035936174194448 0.27479461244202735 0.5035936174194448 0.27479461244202735 0.14851638376430457
+0.5010615508834032 0.27639773906416465 0.5010615508834032 0.27639773906416465 0.1606116710426375
+0.4956544061894341 0.27851716272422855 0.4956544061894341 0.2785171627242286 0.18624215487912735
+0.49312513858063634 0.2811034575519847 0.49312513858063634 0.2811034575519847 0.19963138978047423
+0.5238352430651693 0.2662072428938996 0.5238352430651693 0.2662072428938996 0.08138676495166787
+0.5149072229248032 0.26908741531430386 0.5149072229248032 0.26908741531430386 0.10113511414929159
+0.5210554701704936 0.26835958432079976 0.5210554701704936 0.26835958432079976 0.08566707237256836
+0.5183714260601023 0.2705004138911323 0.5183714260601023 0.2705004138911323 0.09205986101696506
+0.5122491402312647 0.27144118209879714 0.5122491402312647 0.27144118209879714 0.11137361207030705
+0.509599815742519 0.27381469213893567 0.509599815742519 0.27381469213893567 0.12262441239777173
+0.5429010764334427 0.26145207447472363 0.5429010764334427 0.2614520744747236 0.12853970586141203
+0.5328624210455135 0.2633611873087597 0.5328624210455136 0.26336118730875974 0.0905220517703476
+0.5395441646151642 0.2632908792030182 0.5395441646151643 0.2632908792030182 0.11594556802013835
+0.5363065903176146 0.2650487689194315 0.5363065903176146 0.26504876891943147 0.10503032073332226
+0.530018383817442 0.2656602009146249 0.530018383817442 0.2656602009146249 0.08613975837045706
+0.5271930572858943 0.26783411392735157 0.5271930572858943 0.2678341139273516 0.08394209919565725
+0.5523776126958316 0.25930864108314633 0.5523776126958316 0.2593086410831464 0.1734816314095495
+0.5492793040708106 0.2613060010409681 0.5492793040708106 0.26130600104096807 0.16086036825551722
+0.5461678295773805 0.2632561893205939 0.5461678295773805 0.26325618932059397 0.14827380847867813
+0.5614690338417212 0.24915211115353816 0.5614690338417212 0.24915211115353816 0.20259504171015033
+0.566913641650911 0.24489947782598476 0.566913641650911 0.24489947782598476 0.2237360581948216
+0.5643679609617407 0.24693224158348354 0.5643679609617407 0.24693224158348356 0.2139329288412398
+0.56933415595111 0.24591044137831933 0.56933415595111 0.24591044137831936 0.23815859941311923
+0.571796148117368 0.24527086224912853 0.571796148117368 0.24527086224912856 0.24986358498655362
+0.5749431860361564 0.24406773463400408 0.5749431860361564 0.24406773463400408 0.2638842917920161
+0.5783504376664598 0.242837622123394 0.5783504376664598 0.24283762212339396 0.27892434294919616
+0.5819338081592389 0.24166712889191944 0.5819338081592389 0.24166712889191944 0.294594761644535
+0.6038590871739952 0.23180820145953923 0.6038590871739952 0.23180820145953926 0.37502756850048313
+0.585619760868187 0.24060269358808967 0.585619760868187 0.24060269358808964 0.310574076878124
+0.5867219019969208 0.237317247755649 0.5867219019969206 0.23731724775564897 0.30989266814579053
+0.6004891883394855 0.2331080021031334 0.6004891883394855 0.2331080021031334 0.36368415466580534
+0.5971272233783682 0.2343679542930126 0.5971272233783682 0.2343679542930126 0.3517477776146809
+0.5902351893659036 0.236568881017464 0.5902351893659036 0.236568881017464 0.3249698275902621
+0.5937460975750198 0.23557962039605193 0.5937460975750198 0.23557962039605193 0.33911663213613247
+0.5585867410694288 0.25512884204028535 0.5585867410694288 0.25512884204028535 0.19864116104880505
+0.5556177582943796 0.26102355420343787 0.5556177582943796 0.26102355420343787 0.1946460489137721
+0.5587016814926585 0.25893823094107643 0.5587016814926585 0.25893823094107643 0.20714936271901105
+0.561741649993317 0.2529511652990052 0.561741649993317 0.25295116529900513 0.21130879628324725
+0.6074043395333149 0.23049475360891847 0.607404339533315 0.2304947536089185 0.38645483032857797
+0.6111509899466818 0.22951091383780164 0.6111509899466819 0.2295109138378017 0.3985832925683749
+0.6137372723412402 0.22739561037804967 0.6137372723412402 0.22739561037804967 0.4035868357990598
+0.6165934892264995 0.22711923177223786 0.6165934892264994 0.2271192317722379 0.4129223204721469
+0.6199448526281347 0.2260694505649817 0.6199448526281347 0.2260694505649817 0.4217696501988362
+0.6233426201532046 0.2250827878561804 0.6233426201532045 0.22508278785618038 0.43027631615688794
+0.6267710062787676 0.22410897678064634 0.6267710062787676 0.22410897678064634 0.43827475851168124
+0.661085548287829 0.18985700854529394 0.661085548287829 0.18985700854529394 0.44306918543905677
+0.6548073820653136 0.19322968718160138 0.6548073820653136 0.19322968718160138 0.4380757173963879
+0.6589907691626775 0.1932369790822327 0.6589907691626776 0.1932369790822327 0.4454643153364594
+0.6527186608114097 0.19658929489600666 0.6527186608114097 0.19658929489600666 0.4405560547466076
+0.6506430592166362 0.19992576582531887 0.6506430592166362 0.19992576582531887 0.4431240204433013
+0.6485832090542082 0.20324058525427638 0.6485832090542082 0.20324058525427638 0.4457542637877279
+0.6422050906652805 0.20654216111098594 0.6422050906652804 0.20654216111098592 0.4397249616734246
+0.639966133581036 0.2101149569213402 0.6399661335810362 0.21011495692134025 0.442322043690698
+0.630218852499229 0.22315803994131814 0.630218852499229 0.22315803994131814 0.4457378468760805
+0.6355794157136075 0.2151575110318009 0.6355794157136075 0.2151575110318009 0.4425995362263713
+0.6346360749210097 0.21866794622969982 0.6346360749210097 0.21866794622969984 0.4476032098916014
+0.6336794745667912 0.22226136278799638 0.6336794745667912 0.22226136278799638 0.45271940841177577
+0.6391742174158822 0.21403988496839227 0.6391742174158822 0.21403988496839224 0.4485739083499462
+0.6465146630164634 0.20654454591026386 0.6465146630164634 0.20654454591026386 0.44838289584582075
+0.6715481171163278 0.17969031462865415 0.6715481171163278 0.17969031462865415 0.4436585457947704
+0.6757322175637905 0.17969031464029647 0.6757322175637905 0.17969031464029647 0.45019461617427997
+0.6694560096075519 0.1830806563847697 0.6694560096075519 0.1830806563847697 0.4456628383941396
+0.6673637251318122 0.18647070857887185 0.6673637251318122 0.18647070857887185 0.4477738838582978
+0.6652705013589196 0.18985918498689136 0.6652705013589196 0.18985918498689136 0.4500210340495538
+0.6966527196652588 0.1525672482826026 0.6966527196652588 0.1525672482826026 0.434934191780696
+0.6945606694560534 0.15595763157777148 0.6945606694560534 0.1559576315777715 0.4384037848188172
+0.6924686192468483 0.15934801487294034 0.6924686192468483 0.15934801487294034 0.4416204964728225
+0.690376569037643 0.16273839816810903 0.690376569037643 0.162738398168109 0.4445778582735525
+0.688284518828438 0.16612878146327778 0.688284518828438 0.16612878146327778 0.44728684027624727
+0.6861924686192333 0.16951916475844664 0.6861924686192333 0.16951916475844664 0.4497739621387353
+0.6841004184100191 0.17290954805361416 0.6841004184100191 0.17290954805361416 0.452078766603563
+0.6820083682005519 0.17629993134869523 0.6820083682005519 0.17629993134869523 0.4542507690280688
+0.6799163179893752 0.17969031464309948 0.6799163179893752 0.17969031464309948 0.45634601656992135
+0.7029288702928744 0.14917686498743368 0.7029288702928743 0.14917686498743368 0.4346066481757736
+0.7008368200836692 0.15256724828260262 0.7008368200836692 0.15256724828260262 0.4386538180140371
+0.70920502092049 0.14578648169226455 0.70920502092049 0.14578648169226452 0.43306775782359047
+0.7071129707112848 0.14917686498743352 0.7071129707112848 0.14917686498743352 0.43756475009250995
+0.7154811715481051 0.1423960983970955 0.7154811715481051 0.14239609839709552 0.43069272630661765
+0.7133891213389001 0.14578648169226444 0.7133891213389001 0.14578648169226446 0.4354081804888284
+0.7217573221757202 0.1390057151019266 0.7217573221757202 0.1390057151019266 0.4280115409806367
+0.7196652719665152 0.14239609839709555 0.7196652719665152 0.14239609839709555 0.4326252959415013
+0.7280334728033359 0.13561533180675767 0.7280334728033359 0.13561533180675767 0.4256570811291988
+0.7259414225941305 0.1390057151019266 0.7259414225941305 0.1390057151019266 0.4297928082627988
+0.7364016736401561 0.12883456521641978 0.7364016736401561 0.12883456521641978 0.4218138056768503
+0.734309623430951 0.13222494851158872 0.734309623430951 0.13222494851158872 0.4242830628196663
+0.732217573221746 0.13561533180675767 0.732217573221746 0.13561533180675767 0.42755801386881753
+0.7426778242677714 0.12544418192125084 0.7426778242677714 0.12544418192125084 0.4233230687949407
+0.7405857740585663 0.12883456521641978 0.7405857740585663 0.12883456521641978 0.4244601219247513
+0.7489539748953868 0.1220537986260819 0.7489539748953868 0.1220537986260819 0.4268838610562347
+0.7468619246861817 0.12544418192125084 0.7468619246861817 0.12544418192125084 0.4265686572741874
+0.7552301255230022 0.11866341533091297 0.7552301255230022 0.11866341533091297 0.43242610981879975
+0.7531380753137972 0.1220537986260819 0.7531380753137972 0.1220537986260819 0.43071470728977035
+0.7615062761506176 0.11527303203574402 0.7615062761506176 0.11527303203574402 0.4395721044082512
+0.7594142259414125 0.11866341533091296 0.7594142259414126 0.11866341533091296 0.43669343727030924
+0.7677824267782328 0.11188264874057507 0.7677824267782328 0.11188264874057507 0.4476903525368677
+0.7656903765690277 0.11527303203574402 0.7656903765690277 0.11527303203574402 0.44401150037326526
+0.7740585774058482 0.10849226544540613 0.7740585774058482 0.10849226544540613 0.4559897274329287
+0.7719665271966429 0.11188264874057507 0.7719665271966428 0.11188264874057507 0.4519607656248015
+0.7803347280334635 0.10510188215023719 0.7803347280334635 0.10510188215023719 0.463629501239621
+0.7782426778242585 0.10849226544540613 0.7782426778242585 0.10849226544540613 0.45972215690965973
+0.7887029288702839 0.09832111555989931 0.7887029288702839 0.09832111555989931 0.47273141264582436
+0.7866108786610787 0.10171149885506825 0.7866108786610787 0.10171149885506825 0.46982403345051876
+0.7845188284518736 0.10510188215023719 0.7845188284518736 0.10510188215023719 0.4664756184233179
+0.7949790794978993 0.09493073226473037 0.7949790794978994 0.09493073226473037 0.4757300288230821
+0.7928870292886943 0.09832111555989931 0.7928870292886944 0.09832111555989931 0.47392944900688194
+0.8012552301255146 0.09154034896956142 0.8012552301255146 0.09154034896956142 0.47601868879673415
+0.7991631799163095 0.09493073226473037 0.7991631799163095 0.09493073226473037 0.4755076593669312
+0.8075313807531299 0.08814996567439248 0.8075313807531298 0.08814996567439248 0.473538102820442
+0.8054393305439248 0.09154034896956142 0.8054393305439248 0.09154034896956142 0.4743677230471724
+0.8138075313807452 0.08475958237922354 0.8138075313807452 0.08475958237922354 0.46849575558624895
+0.8117154811715401 0.08814996567439248 0.8117154811715402 0.08814996567439248 0.47058583728877573
+0.8200836820083606 0.0813691990840546 0.8200836820083605 0.0813691990840546 0.46135381760409094
+0.8179916317991555 0.08475958237922354 0.8179916317991555 0.08475958237922354 0.4645043651114919
+0.8263598326359759 0.07797881578888566 0.8263598326359759 0.07797881578888566 0.4527940397512191
+0.8242677824267708 0.0813691990840546 0.8242677824267709 0.0813691990840546 0.45670842570153924
+0.8326359832635912 0.07458843249371672 0.8326359832635912 0.07458843249371672 0.4436561765760625
+0.8305439330543861 0.07797881578888566 0.8305439330543861 0.07797881578888566 0.4479768082773736
+0.8389121338912066 0.07119804919854777 0.8389121338912066 0.07119804919854777 0.4348475454470671
+0.8368200836820014 0.07458843249371672 0.8368200836820013 0.07458843249371672 0.43920371752102033
+0.8451882845188219 0.06780766590337883 0.845188284518822 0.06780766590337883 0.42722660436925336
+0.8430962343096168 0.07119804919854777 0.8430962343096168 0.07119804919854777 0.4312910925687165
+0.8535564853556423 0.06102689931304095 0.8535564853556422 0.06102689931304095 0.41777085804189956
+0.8514644351464372 0.06441728260820989 0.8514644351464372 0.06441728260820989 0.421473784448308
+0.8493723849372321 0.06780766590337883 0.8493723849372321 0.06780766590337883 0.42501970210484036
+0.8598326359832577 0.05763651601787201 0.8598326359832577 0.05763651601787201 0.41484488020600546
+0.8577405857740525 0.06102689931304095 0.8577405857740527 0.06102689931304095 0.4179752561857862
+0.866108786610873 0.054246132722703067 0.866108786610873 0.054246132722703067 0.41405591289269844
+0.8640167364016679 0.05763651601787201 0.8640167364016679 0.05763651601787201 0.4167517190516528
+0.8723849372384883 0.050855749427534125 0.8723849372384883 0.050855749427534125 0.4149321074195456
+0.8702928870292832 0.054246132722703067 0.8702928870292831 0.054246132722703067 0.4174561137697084
+0.8786610878661036 0.04746536613236518 0.8786610878661038 0.04746536613236518 0.41675489256898407
+0.8765690376568985 0.050855749427534125 0.8765690376568985 0.050855749427534125 0.4194417750904689
+0.884937238493719 0.04407498283719624 0.884937238493719 0.04407498283719624 0.41868293054636424
+0.8828451882845139 0.04746536613236518 0.8828451882845139 0.04746536613236518 0.42187849466793653
+0.8912133891213343 0.0406845995420273 0.8912133891213344 0.0406845995420273 0.419876114515454
+0.8891213389121292 0.04407498283719624 0.8891213389121292 0.04407498283719624 0.4238826232987933
+0.8974895397489496 0.03729421624685836 0.8974895397489496 0.03729421624685836 0.4195963759998314
+0.8953974895397445 0.0406845995420273 0.8953974895397446 0.0406845995420273 0.4246322222929742
+0.9058577405857701 0.030513449656520475 0.9058577405857701 0.030513449656520475 0.4105628052202445
+0.903765690376565 0.03390383295168942 0.9037656903765648 0.03390383295168942 0.41727565338048
+0.9016736401673598 0.03729421624685836 0.9016736401673598 0.03729421624685836 0.42345168203311284
+0.9121338912133854 0.027123066361351533 0.9121338912133855 0.027123066361351533 0.4048663742162119
+0.9100418410041803 0.030513449656520475 0.9100418410041803 0.030513449656520475 0.4125516256283465
+0.9184100418410007 0.02373268306618259 0.9184100418410007 0.02373268306618259 0.3967916424480236
+0.9163179916317956 0.027123066361351533 0.9163179916317956 0.027123066361351533 0.40527674202967434
+0.924686192468616 0.02034229977101365 0.9246861924686162 0.02034229977101365 0.38647925181743187
+0.9225941422594109 0.02373268306618259 0.9225941422594109 0.02373268306618259 0.3955072815207316
+0.9309623430962314 0.01695191647584471 0.9309623430962314 0.01695191647584471 0.3742245093082454
+0.9288702928870263 0.02034229977101365 0.9288702928870264 0.02034229977101365 0.38347870266964357
+0.9372384937238467 0.013561533180675767 0.9372384937238466 0.013561533180675767 0.3604408488514743
+0.9351464435146416 0.01695191647584471 0.9351464435146416 0.01695191647584471 0.36957257903474283
+0.943514653994737 0.010171144370633893 0.943514653994737 0.010171144370633893 0.34562275629996697
+0.9414226600179334 0.013561506847264058 0.9414226600179333 0.01356150684726406 0.35427990902994483
+0.949790981193173 0.006780644751956971 0.949790981193173 0.006780644751956971 0.33031363153359167
+0.9476989822854422 0.010171025495911742 0.9476989822854422 0.010171025495911742 0.33816627605651983
+0.9539760083771269 0.006780009841155937 0.953976008377127 0.0067800098411559375 0.32184268457500126
+0.006768402811790055 0.9581792985956549 0.006768402811790056 0.9581792985956549 0.07897375447334527
+0.006760292137694889 0.9623742266650842 0.006760292137694889 0.9623742266650842 0.07639679957310645
+0.010165320814738135 0.9518906449227442 0.010165320814738135 0.9518906449227442 0.08332591628143975
+0.010154875474896886 0.9560830552615722 0.010154875474896886 0.9560830552615723 0.08091420436672213
+0.013558706358618992 0.9456098489619164 0.013558706358618994 0.9456098489619164 0.08757383061205237
+0.013556392262164646 0.9497969286316813 0.013556392262164646 0.9497969286316813 0.08542906401884014
+0.01695021340211061 0.9393316860502603 0.01695021340211061 0.9393316860502603 0.09156231664464248
+0.01694844891414732 0.9435171506314664 0.01694844891414732 0.9435171506314664 0.08976019379251678
+0.020340715552501786 0.9330545368828628 0.020340715552501786 0.9330545368828628 0.09513675870079685
+0.020338810128537544 0.9372391466296724 0.020338810128537544 0.9372391466296724 0.09374193962433768
+0.023732676551693272 0.9267782491147408 0.023732676551693272 0.9267782491147408 0.09814805275314466
+0.023730086911692247 0.9309629292900984 0.023730086911692247 0.9309629292900984 0.09721139788960297
+0.027122755074250948 0.9205023684955128 0.027122755074250948 0.9205023684955128 0.10045605463817951
+0.027122048690522746 0.9246869259169851 0.02712204869052275 0.9246869259169851 0.10001567181703076
+0.030513320072163518 0.9142261325410689 0.030513320072163518 0.9142261325410689 0.10194203176596549
+0.030513043016683613 0.9184105913030285 0.030513043016683613 0.9184105913030285 0.1020182008976223
+0.03390371581061271 0.912134134742356 0.03390371581061271 0.912134134742356 0.10310899625803716
+0.03729417032897355 0.9058578149938034 0.03729417032897355 0.9058578149938034 0.10321263732847703
+0.03729406426396332 0.9100420694884611 0.03729406426396332 0.9100420694884611 0.10403880270846506
+0.0406845530675724 0.8995816613539921 0.0406845530675724 0.8995816613539921 0.10229757284068665
+0.04068444409448602 0.9037658659945161 0.04068444409448602 0.9037658659945161 0.10361964241344347
+0.044074958465657184 0.8933055113754089 0.044074958465657184 0.893305511375409 0.10038469221277375
+0.04407489494545718 0.8974897441299893 0.04407489494545718 0.8974897441299893 0.10214720907975754
+0.047465356926026575 0.8870293288168835 0.047465356926026575 0.8870293288168835 0.09755554640530739
+0.047465331585644276 0.8912135120900362 0.047465331585644276 0.8912135120900363 0.09967334419437006
+0.05085574652725813 0.8807531537311742 0.050855746527258126 0.8807531537311742 0.09396003422345321
+0.05085573836831272 0.8849372882082776 0.05085573836831272 0.8849372882082776 0.09631497635458126
+0.05424613188743843 0.8744769924057613 0.05424613188743843 0.8744769924057613 0.0898227048062013
+0.05424612952950997 0.8786611038943963 0.05424612952950997 0.8786611038943963 0.09226094748282386
+0.057636515790246624 0.8682008382129291 0.057636515790246624 0.8682008382129291 0.08544577690900756
+0.05763651514618578 0.8723849418248442 0.05763651514618578 0.8723849418248442 0.08777722545207607
+0.061026899255890256 0.8619246865107275 0.061026899255890256 0.8619246865107275 0.08120405328362594
+0.06102689908391904 0.8661087876785182 0.06102689908391904 0.8661087876785182 0.08320741720016507
+0.06441728259886023 0.8556485356133798 0.06441728259886025 0.8556485356133798 0.07752294308867676
+0.06441728256958319 0.8598326361482616 0.06441728256958319 0.8598326361482617 0.07896198671186998
+0.0678076658698225 0.8535564854421335 0.0678076658698225 0.8535564854421335 0.07548535789253792
+0.07119804918484605 0.847280334787054 0.07119804918484605 0.847280334787054 0.07319030923031399
+0.0711980491392089 0.8514644353803469 0.0711980491392089 0.8514644353803469 0.07350681092280993
+0.07458843249072987 0.8410041841287804 0.07458843249072987 0.8410041841287804 0.07236411680576638
+0.07458843248102014 0.845188284630869 0.07458843248102014 0.845188284630869 0.07170955284788777
+0.07797881578875544 0.8347280334832474 0.07797881578875544 0.8347280334832474 0.07308195157196924
+0.07797881578832615 0.8389121339320673 0.07797881578832615 0.8389121339320674 0.07148157918195121
+0.08136919908425407 0.8284518828483954 0.08136919908425407 0.8284518828483954 0.07518016602095051
+0.08136919908487199 0.8326359832760003 0.08136919908487199 0.8326359832760003 0.072787464726125
+0.08475958237930202 0.8221757322185237 0.08475958237930202 0.8221757322185237 0.07830974393985742
+0.0847595823795332 0.8263598326396724 0.0847595823795332 0.8263598326396725 0.07536091790745214
+0.08814996567400858 0.8158995815905308 0.08814996567400858 0.8158995815905307 0.082034439553686
+0.08814996567270117 0.8200836820107579 0.08814996567270117 0.8200836820107579 0.07878972800738719
+0.09154034896923179 0.8096234309628744 0.09154034896923179 0.8096234309628744 0.08592126341061233
+0.09154034896812552 0.8138075313831181 0.09154034896812552 0.813807531383118 0.08262072022171744
+0.09493073226454664 0.8033472803352278 0.09493073226454664 0.8033472803352278 0.08959755725652563
+0.09493073226393377 0.8075313807553695 0.09493073226393377 0.8075313807553695 0.08643856148676253
+0.09832111555981676 0.7970711297074042 0.09832111555981676 0.7970711297074042 0.09277735402689842
+0.09832111555954816 0.8012552301268009 0.09832111555954816 0.8012552301268009 0.08990754819488929
+0.10171149885493319 0.79497907949844 0.1017114988549332 0.79497907949844 0.09278701307722413
+0.10510188215019102 0.7887029288704785 0.10510188215019102 0.7887029288704785 0.09493343421883081
+0.1051018821500516 0.7928870292894784 0.1051018821500516 0.7928870292894784 0.09273302872302382
+0.10849226544539103 0.7824267782427343 0.10849226544539103 0.7824267782427343 0.09629741923195813
+0.10849226544535207 0.7866108786613251 0.10849226544535207 0.7866108786613251 0.09454114852264538
+0.1118826487405692 0.7761506276150775 0.1118826487405692 0.7761506276150775 0.09691900273941556
+0.11188264874055943 0.7803347280335391 0.11188264874055943 0.7803347280335391 0.095590897597015
+0.1152730320357405 0.7698744769874503 0.1152730320357405 0.7698744769874503 0.09692172567169031
+0.1152730320357382 0.774058577405874 0.1152730320357382 0.774058577405874 0.09596475722422908
+0.11866341533090997 0.7635983263598317 0.11866341533090997 0.7635983263598317 0.0965041817952327
+0.1186634153309095 0.7677824267782447 0.1186634153309095 0.7677824267782447 0.09582313874915621
+0.12205379862607901 0.7573221757322158 0.12205379862607901 0.7573221757322158 0.09592651470518841
+0.12205379862607901 0.7615062761506259 0.12205379862607901 0.7615062761506258 0.09539296219139758
+0.12544418192124793 0.7510460251046007 0.12544418192124793 0.7510460251046007 0.09548877600144505
+0.12544418192124787 0.7552301255230108 0.12544418192124787 0.7552301255230108 0.09494993091037351
+0.1288345652164168 0.7447698744769857 0.1288345652164168 0.7447698744769857 0.09549895916894913
+0.1288345652164168 0.7489539748953957 0.1288345652164168 0.7489539748953957 0.09479194156331351
+0.13222494851158573 0.7384937238493707 0.13222494851158573 0.7384937238493707 0.09623207102924668
+0.13222494851158573 0.7426778242677807 0.13222494851158573 0.7426778242677807 0.0952032428963676
+0.1356153318067546 0.7364016736401657 0.13561533180675459 0.7364016736401657 0.09641367853179976
+0.1390057151019235 0.7301255230125507 0.1390057151019235 0.7301255230125507 0.0985629175548286
+0.1390057151019235 0.7343096234309607 0.1390057151019235 0.7343096234309607 0.09691192813815748
+0.1423960983970924 0.7238493723849357 0.1423960983970924 0.7238493723849357 0.10168156018605727
+0.1423960983970924 0.7280334728033457 0.1423960983970924 0.7280334728033457 0.09950319220611197
+0.1457864816922613 0.7175732217573207 0.1457864816922613 0.7175732217573207 0.10569588168384407
+0.1457864816922613 0.7217573221757307 0.1457864816922613 0.7217573221757307 0.10299167225044126
+0.1491768649874302 0.7112970711297057 0.1491768649874302 0.7112970711297057 0.1104531611340902
+0.1491768649874302 0.7154811715481157 0.1491768649874302 0.7154811715481157 0.10726648873185633
+0.1525672482825991 0.7050209205020908 0.15256724828259907 0.7050209205020908 0.11575713116530702
+0.1525672482825991 0.7092050209205008 0.15256724828259907 0.7092050209205008 0.11215905372741529
+0.15595763157776799 0.6987447698744758 0.15595763157776799 0.6987447698744758 0.12140248459877208
+0.15595763157776799 0.7029288702928858 0.15595763157776799 0.7029288702928858 0.1174770366059662
+0.1593480148729369 0.6966527196652708 0.1593480148729369 0.6966527196652708 0.12303369607140686
+0.16273839816810579 0.6945606694560658 0.16273839816810579 0.6945606694560658 0.12450121000708612
+0.1661287814632747 0.6924686192468608 0.1661287814632747 0.6924686192468608 0.12578905284747843
+0.16951916475844359 0.6903765690376558 0.16951916475844356 0.6903765690376558 0.12689207484578405
+0.17290954805361247 0.6882845188284508 0.17290954805361247 0.6882845188284508 0.12781506497074838
+0.1762999313487814 0.6861924686192458 0.1762999313487814 0.6861924686192458 0.1285715859367028
+0.1796903146439503 0.6799163179916308 0.17969031464395033 0.6799163179916308 0.13329685732885468
+0.18308069793911919 0.6778242677824258 0.18308069793911919 0.6778242677824258 0.13378531612964137
+0.19324326870387332 0.6631704936127436 0.19324326870387332 0.6631704936127436 0.14345602861589582
+0.19993896905839673 0.6547585131277692 0.19993896905839673 0.6547585131277692 0.1487468050831279
+0.2032338089835051 0.6526464235563829 0.2032338089835051 0.6526464235563828 0.14927383705729805
+0.20930189555616138 0.6441451808787775 0.20930189555616138 0.6441451808787776 0.15544294573700104
+0.21227615261887312 0.6419743739362559 0.21227615261887314 0.6419743739362559 0.15636344038252872
+0.21515608404723233 0.639858637317304 0.21515608404723233 0.639858637317304 0.15729877995710725
+0.21799167049124543 0.6377521918533525 0.21799167049124543 0.6377521918533525 0.15826867330645136
+0.22051964985377148 0.6319175521110538 0.2205196498537715 0.6319175521110538 0.16374583928358377
+0.22339253466767298 0.6296857939189525 0.22339253466767298 0.6296857939189525 0.16491257851532234
+0.2261482801146841 0.6274156910939607 0.2261482801146841 0.6274156910939607 0.1661952842828158
+0.22083684903345738 0.635596151560292 0.22083684903345738 0.635596151560292 0.15930271499440918
+0.20642453699364077 0.6505408414577328 0.2064245369936408 0.6505408414577328 0.14989747094529046
+0.20951720590905873 0.6483038591360321 0.20951720590905873 0.6483038591360321 0.15075719411153468
+0.19662782891777783 0.6610687618175414 0.19662782891777783 0.6610687618175414 0.14383102012611668
+0.20001468116653806 0.6589615794548883 0.20001468116653806 0.6589615794548883 0.1442435557430435
+0.18647108123428807 0.6715481171548108 0.18647108123428804 0.6715481171548108 0.1384144423260928
+0.18647108123428807 0.6757322175732208 0.18647108123428804 0.6757322175732208 0.13419008354972004
+0.18986061592980755 0.6694551067222463 0.18986061592980755 0.6694551067222463 0.1387724616258779
+0.19324777770077026 0.6673600894592818 0.19324777770077026 0.6673600894592818 0.13911727252212194
+0.1796903146439503 0.6841004184100408 0.17969031464395033 0.6841004184100408 0.12918255935050585
+0.23551249692585097 0.606761886094927 0.235512496925851 0.606761886094927 0.1887805832274284
+0.23551285711410824 0.6104178871686017 0.23551285711410827 0.6104178871686017 0.18343332792371567
+0.23548127675735644 0.614000663556514 0.23548127675735644 0.614000663556514 0.1783901129452601
+0.2476172525631607 0.5876328997380548 0.24761725256316067 0.5876328997380548 0.214988452157683
+0.2385456714185753 0.601064094191184 0.23854567141857527 0.6010640941911839 0.1959296676591924
+0.24164432298701477 0.5989456583370101 0.2416443229870148 0.5989456583370102 0.1977470634195988
+0.24454338106816434 0.5932392569293091 0.24454338106816434 0.5932392569293091 0.20607724534281466
+0.24479105462648068 0.5968409316384696 0.24479105462648068 0.5968409316384696 0.19965275351893674
+0.2477690190648156 0.5911850785958391 0.2477690190648156 0.5911850785958391 0.20826209293371653
+0.23870586414912978 0.604684469240827 0.23870586414912978 0.604684469240827 0.1901723769243038
+0.2294014314888638 0.618283168503636 0.2294014314888638 0.618283168503636 0.17600837538916322
+0.2324292503413646 0.6161803151472006 0.2324292503413646 0.6161803151472006 0.17712688098257556
+0.22939705620214285 0.6217916649351325 0.22939705620214282 0.6217916649351326 0.17145245312009252
+0.22894003728596118 0.6252933767984888 0.22894003728596116 0.6252933767984888 0.1672873174728203
+0.40362767537738825 0.3768293176084727 0.40362767537738825 0.3768293176084727 0.3870360376271224
+0.40025021870929495 0.3783714265961994 0.40025021870929495 0.3783714265961993 0.3801784005862205
+0.3934380943778358 0.3782967388585441 0.3934380943778358 0.3782967388585441 0.35784640480098523
+0.39691109687608445 0.38002790933533337 0.39691109687608445 0.38002790933533337 0.3726634745640505
+0.3900674554398187 0.38000786854192065 0.3900674554398187 0.38000786854192065 0.34877598056402315
+0.3824345821589268 0.38000967591147816 0.3824345821589268 0.38000967591147816 0.3210194130215968
+0.38656843084774767 0.38194522896832106 0.38656843084774767 0.3819452289683211 0.33858368809091993
+0.37957063186550843 0.38249073597109434 0.3795706318655085 0.38249073597109434 0.3123584433693463
+0.37326523314521665 0.38290949214269376 0.37326523314521665 0.3829094921426938 0.28837580666939117
+0.37069412453064077 0.3846184800940844 0.37069412453064077 0.3846184800940844 0.27908621520829596
+0.37661099008511006 0.3844751760800398 0.37661099008511006 0.3844751760800398 0.3022147959630004
+0.36799312687421337 0.38655711691220535 0.36799312687421337 0.38655711691220535 0.2689840765127994
+0.3622488350943701 0.38737577068417095 0.36224883509437017 0.38737577068417095 0.2471350848703385
+0.3597150240660313 0.38942330499309064 0.35971502406603134 0.38942330499309064 0.23741601182197938
+0.3658237570260353 0.38857973389384326 0.36582375702603537 0.38857973389384326 0.26066824170345954
+0.35719694531989976 0.3915223759851636 0.35719694531989976 0.3915223759851636 0.22770002025244532
+0.35117385731798967 0.3924995757732346 0.35117385731798967 0.3924995757732346 0.206909812367329
+0.34872642589954744 0.39475451932130295 0.34872642589954744 0.39475451932130295 0.1984264065442544
+0.35468322505949956 0.3936351395318561 0.35468322505949956 0.3936351395318561 0.21809921249084954
+0.3462853345847204 0.39707019974293994 0.3462853345847204 0.39707019974293994 0.19052233828929963
+0.34021745574239975 0.3984683710430632 0.34021745574239975 0.3984683710430632 0.17514119216719462
+0.33782099086960854 0.40094323882559113 0.33782099086960854 0.40094323882559113 0.17029240077548935
+0.34387676656645255 0.39943240625052195 0.34387676656645255 0.39943240625052195 0.18350689457446742
+0.33546315270695626 0.40346808392212236 0.33546315270695626 0.40346808392212236 0.166952353645861
+0.3294078938964958 0.40526093330386237 0.3294078938964958 0.40526093330386237 0.16126763141622458
+0.3271011137796305 0.4079529465579666 0.3271011137796305 0.4079529465579666 0.16268892542406552
+0.33315463440454046 0.40604043508704096 0.33315463440454046 0.40604043508704096 0.16532555960495768
+0.3248533678196265 0.4107057783906421 0.3248533678196264 0.4107057783906421 0.16598662161453412
+0.3188629086187832 0.4129335798748776 0.31886290861878314 0.4129335798748776 0.17107817266538738
+0.3165872489544661 0.41575420424865017 0.3165872489544661 0.41575420424865017 0.17845331923141808
+0.32266284618677515 0.4134955629247706 0.32266284618677515 0.4134955629247706 0.1710483718679097
+0.31423041208941743 0.4186065631684144 0.31423041208941743 0.41860656316841444 0.18714247661160524
+0.30887681153915447 0.42178788289792146 0.30887681153915447 0.4217878828979215 0.20010296709582273
+0.30684894744747737 0.424833479051691 0.30684894744747737 0.42483347905169105 0.2108745989368546
+0.3123698221441992 0.42176873094862993 0.3123698221441992 0.42176873094862993 0.19719174338966192
+0.3046920594866627 0.4276899086089654 0.3046920594866627 0.4276899086089654 0.2215206245852784
+0.2980174836291023 0.43550772088319484 0.2980174836291023 0.43550772088319484 0.251382278161516
+0.3003792821748014 0.43301333342449216 0.3003792821748014 0.43301333342449216 0.24185384054867062
+0.3025091592588491 0.4305132092783686 0.3025091592588491 0.4305132092783686 0.2322366628921608
+0.2960182257434408 0.43836794904755855 0.2960182257434408 0.43836794904755855 0.26174814528070023
+0.28987315379143297 0.44696524287362915 0.28987315379143297 0.4469652428736292 0.2906691030603021
+0.29194463094641226 0.4440318794833831 0.29194463094641226 0.444031879483383 0.2812704074126842
+0.2939580420190488 0.4411598904597565 0.2939580420190488 0.4411598904597565 0.2715953566465772
+0.2879279193212899 0.4499962473939353 0.28792791932128997 0.44999624739393523 0.2998125337259599
+0.28691015111377166 0.45289922034232444 0.28691015111377166 0.45289922034232444 0.3079710632304284
+0.28413628454320056 0.45512033285673864 0.28413628454320056 0.45512033285673864 0.313756069679562
+0.28237798836940176 0.45877837859678944 0.28237798836940176 0.45877837859678944 0.32269703070685024
+0.28052647147485776 0.46220091718558387 0.2805264714748578 0.4622009171855838 0.33020410786967774
+0.2787548303436186 0.46551716094965034 0.27875483034361853 0.4655171609496503 0.3366737994980061
+0.2769685562732033 0.46857773166819205 0.2769685562732033 0.46857773166819205 0.3418066729073674
+0.27499556326831276 0.47155711106656584 0.27499556326831276 0.4715571110665659 0.34587777245949397
+0.27362995365132886 0.47495085186204017 0.27362995365132886 0.47495085186204017 0.35045613503310896
+0.2721508497899622 0.47834358168410623 0.27215084978996223 0.47834358168410623 0.35408738954680175
+0.270660060147994 0.48174211521073174 0.270660060147994 0.48174211521073174 0.3568834486268579
+0.2691691754830084 0.48512727028785735 0.2691691754830084 0.48512727028785735 0.3588514873206287
+0.2676838310714748 0.48855045712564377 0.2676838310714748 0.48855045712564377 0.3600621618111628
+0.26625112150712343 0.4920792191783998 0.26625112150712343 0.4920792191783998 0.36060278795531314
+0.2648964007661158 0.49567085757858154 0.2648964007661158 0.49567085757858154 0.3604377621317631
+0.26370056152671345 0.4992345613393012 0.26370056152671345 0.4992345613393012 0.3596303908758054
+0.26255328797686756 0.5027590575012927 0.26255328797686756 0.5027590575012927 0.3581474140390721
+0.2613597630427843 0.5063086938956075 0.26135976304278424 0.5063086938956075 0.3559047256463627
+0.2601114283704707 0.5099437521921503 0.2601114283704707 0.5099437521921503 0.35288890676505164
+0.2582984843792847 0.5139909036523174 0.25829848437928465 0.5139909036523173 0.3484411406863043
+0.25794214544641275 0.5178879124655978 0.25794214544641275 0.5178879124655978 0.3446970445747343
+0.25725511095218406 0.5214156029019086 0.25725511095218406 0.5214156029019086 0.34041815419174665
+0.2564772228739932 0.5248683566768698 0.25647722287399327 0.5248683566768698 0.33564202999892423
+0.25567419175330874 0.5282340340036683 0.25567419175330874 0.5282340340036683 0.3305260107879444
+0.25497854191511105 0.5313459955785171 0.254978541915111 0.5313459955785172 0.32548742970745387
+0.254299214540002 0.5345567043120926 0.254299214540002 0.5345567043120926 0.3200160623428378
+0.2540155329728265 0.5377985194078987 0.2540155329728265 0.5377985194078986 0.31453703545024836
+0.2535322503587591 0.5410745976714809 0.2535322503587591 0.5410745976714809 0.3085536428576359
+0.2530350097627907 0.5444858232521582 0.2530350097627907 0.5444858232521582 0.3020713203042755
+0.2525715281321473 0.547896036786375 0.2525715281321473 0.547896036786375 0.29539116255840697
+0.2521528336517214 0.5512855476065966 0.2521528336517214 0.5512855476065966 0.2885931420345764
+0.25181910829705884 0.5546452297310185 0.25181910829705884 0.5546452297310185 0.28174287609530685
+0.2515629703234917 0.5579994879019851 0.2515629703234917 0.5579994879019851 0.2748224636666355
+0.2513448079318209 0.5613992417543817 0.25134480793182096 0.5613992417543817 0.26773728700304206
+0.25117279425705363 0.5648447643344658 0.25117279425705363 0.5648447643344658 0.2605042071965467
+0.25102880830643887 0.568295956873488 0.25102880830643887 0.568295956873488 0.253239391905736
+0.25088593837946366 0.5717389311979523 0.25088593837946366 0.5717389311979523 0.24601010748515764
+0.25080083735028136 0.5752077375723081 0.2508008373502814 0.575207737572308 0.23877101639700182
+0.25077478041931206 0.5786737838715164 0.25077478041931206 0.5786737838715164 0.23160644602421307
+0.250800242019723 0.5821497975520814 0.250800242019723 0.5821497975520814 0.22451362841065473
+0.2508677920635207 0.5856566568127399 0.2508677920635207 0.5856566568127399 0.2174751962317378
+0.40705284964376337 0.3753454698094208 0.40705284964376337 0.3753454698094208 0.39321272344655395
+0.4069103378051397 0.3787342107319775 0.4069103378051397 0.3787342107319775 0.40070757685279185
+0.4113269168306317 0.363562632228558 0.4113269168306317 0.36356263222855795 0.38277390842731457
+0.4109184479295192 0.36712070685445597 0.4109184479295192 0.36712070685445597 0.38696877206562336
+0.41065795260503013 0.3705806526727335 0.4106579526050301 0.3705806526727335 0.3923100501863095
+0.4104819914097874 0.37397281905492585 0.4104819914097874 0.37397281905492585 0.3987573553107601
+0.4174290473668451 0.35142902740193815 0.4174290473668451 0.3514290274019381 0.3836569256448674
+0.4154898096539482 0.3547373362920824 0.41548980965394827 0.3547373362920823 0.38236429626459856
+0.41520469012368594 0.3589128459120593 0.41520469012368594 0.35891284591205924 0.38537475234243135
+0.41493702855295367 0.3624200581533967 0.4149370285529537 0.3624200581533967 0.38871925762603543
+0.42539801661178156 0.33990476993044727 0.4253980166117816 0.3399047699304472 0.3907769287009493
+0.4218489325149892 0.3441154513318966 0.4218489325149893 0.34411545133189664 0.38739107314957394
+0.4247473274154339 0.34309036981044905 0.4247473274154339 0.34309036981044905 0.3913075692358263
+0.4213738999241088 0.3474256442659841 0.42137389992410873 0.34742564426598405 0.3882201679545431
+0.4207735493955045 0.35069284886418983 0.42077354939550454 0.35069284886418983 0.38905042005275475
+0.4342065912916625 0.32861164407134374 0.43420659129166245 0.32861164407134374 0.3936704311830834
+0.43007624558280444 0.3325718592183024 0.43007624558280444 0.3325718592183024 0.39274725654059134
+0.433328233880695 0.33199573502911234 0.433328233880695 0.33199573502911234 0.3953047381705758
+0.42931607852644604 0.33595477883720765 0.429316078526446 0.33595477883720765 0.3937651190624383
+0.4286260903013853 0.33925951040430113 0.4286260903013854 0.3392595104043012 0.3946554958073733
+0.4441746999343502 0.31743086912208496 0.44417469993435027 0.3174308691220849 0.38483621447085187
+0.4396558283465307 0.32128771483255414 0.43965582834653066 0.32128771483255414 0.38960863595542067
+0.44299928809958544 0.3208918888087785 0.44299928809958544 0.32089188880877856 0.3889695949988771
+0.4385581024878341 0.3247374045777369 0.43855810248783417 0.3247374045777369 0.3925817396485943
+0.4375239685967648 0.32816546757159526 0.43752396859676473 0.32816546757159526 0.39510035958018414
+0.4618536740528911 0.301842585170499 0.4618536740528912 0.30184258517049894 0.339045725571016
+0.4599195476929034 0.3049505728844936 0.4599195476929034 0.3049505728844936 0.3481098222879379
+0.45367944339967065 0.3108468117244473 0.45367944339967065 0.31084681172444734 0.36779022847869053
+0.4582165056815153 0.3079087775558944 0.45821650568151534 0.3079087775558944 0.35601227970524524
+0.456400601793342 0.310189313192858 0.456400601793342 0.310189313192858 0.36259835944092844
+0.4487944477846064 0.31370963562126103 0.44879444778460637 0.31370963562126103 0.3773221262743953
+0.45238210304751636 0.31374520918687726 0.45238210304751636 0.31374520918687726 0.373583725519681
+0.4475677096027095 0.3171575977919901 0.4475677096027095 0.3171575977919901 0.38265000089540896
+0.4694577827217701 0.2961060434086881 0.46945778272177013 0.2961060434086881 0.30981714032841734
+0.4674847326975793 0.2990573836982777 0.4674847326975793 0.2990573836982777 0.32019148617564525
+0.4730689797362278 0.2965349108085261 0.4730689797362278 0.2965349108085262 0.29898719927738515
+0.4655014377238334 0.30209961165663546 0.4655014377238334 0.30209961165663546 0.3304379998671947
+0.49073031299555847 0.28370043121955296 0.49073031299555847 0.28370043121955296 0.21265038950846318
+0.48845033491881545 0.28632078645292763 0.48845033491881545 0.28632078645292763 0.22536391827884183
+0.4865168705592996 0.28878600608975047 0.48651687055929965 0.28878600608975047 0.2365247016437925
+0.47999926870119997 0.29289578516448284 0.47999926870119997 0.29289578516448284 0.2685512799273418
+0.4847939324510089 0.29144641050938536 0.4847939324510088 0.2914464105093853 0.24713920357587302
+0.4826859330315309 0.29317565250478195 0.4826859330315309 0.29317565250478195 0.25816355021015613
+0.47823532248346223 0.29495238619125097 0.4782353224834623 0.2949523861912509 0.2782609228426762
+0.47582248832436663 0.29669352403764987 0.4758224883243666 0.29669352403764987 0.2896406742082754
+0.5068752184994666 0.2762022837680381 0.5068752184994666 0.27620228376803807 0.1350652232853278
+0.49961882391739687 0.27951728783513624 0.49961882391739687 0.27951728783513624 0.16924552897586514
+0.5038037263692952 0.278647928345804 0.503803726369295 0.27864792834580404 0.1498382209497842
+0.5023653948769764 0.28175917792331706 0.5023653948769764 0.28175917792331706 0.15820308511896627
+0.4966412069311066 0.2821074415407713 0.4966412069311065 0.28210744154077133 0.18472183627944838
+0.4941886401565335 0.28470495149913433 0.49418864015653347 0.2847049514991343 0.1981693403199654
+0.5244021299463232 0.2699794317824345 0.5244021299463232 0.2699794317824345 0.08434838067435109
+0.5156878727720702 0.2727744506808054 0.5156878727720703 0.2727744506808054 0.10036310042474017
+0.5217000215432686 0.2721032693121238 0.5217000215432686 0.27210326931212375 0.08734152169702226
+0.5191186318720122 0.27400947836347433 0.5191186318720122 0.27400947836347433 0.09240765689342643
+0.5130670092363161 0.2751574115013907 0.5130670092363161 0.2751574115013908 0.11005634188615003
+0.5104320524508836 0.2775299244202293 0.5104320524508835 0.2775299244202292 0.12102775511151985
+0.5430031963730141 0.2651732182771039 0.5430031963730141 0.2651732182771039 0.13570171750230106
+0.5333946093315031 0.26728552793135535 0.5333946093315031 0.26728552793135535 0.0976324063111642
+0.5398483459914084 0.2670697336178613 0.5398483459914084 0.2670697336178613 0.1237616065053309
+0.5367977449399893 0.269052934745101 0.5367977449399893 0.269052934745101 0.11336786768898753
+0.5305325445919976 0.2694783093472792 0.5305325445919976 0.2694783093472792 0.09203267075295933
+0.527713709178787 0.27161203495780983 0.527713709178787 0.2716120349578098 0.08861136466577448
+0.5525353200570561 0.2630756807650979 0.5525353200570561 0.26307568076509785 0.18204386245315926
+0.5494445961324356 0.26505050774657707 0.5494445961324356 0.26505050774657707 0.16925574601490181
+0.5463382430977434 0.26700724022517325 0.5463382430977434 0.26700724022517325 0.15645859587275923
+0.5557862910273148 0.26480006271871676 0.5557862910273147 0.26480006271871676 0.20381734019084732
+0.5648856804586694 0.25060239749055807 0.5648856804586694 0.25060239749055807 0.2235142855730428
+0.5675547136229958 0.24808943622437796 0.5675547136229958 0.24808943622437796 0.23287997918931605
+0.6065271688640137 0.23420867548174854 0.6065271688640137 0.23420867548174854 0.39013185466877953
+0.5708071546707385 0.24828567556167178 0.5708071546707386 0.24828567556167178 0.25043020528926707
+0.5740915722673067 0.2475238289963014 0.5740915722673067 0.2475238289963014 0.2660665625425694
+0.5773902957453388 0.24641747962877975 0.5773902957453388 0.24641747962877972 0.2808444429908894
+0.5809178345702043 0.245147876636031 0.5809178345702043 0.24514787663603102 0.29616959450221153
+0.584804543804906 0.2443659358866258 0.584804543804906 0.24436593588662575 0.31380781124894236
+0.5871314101036813 0.2427584087358947 0.5871314101036813 0.2427584087358947 0.32174417992570464
+0.6032526799365843 0.23548254184162754 0.6032526799365843 0.23548254184162754 0.37952736664361036
+0.589497984244865 0.2410952657475468 0.589497984244865 0.24109526574754675 0.3299541775404253
+0.5999070786946215 0.23680048441913326 0.5999070786946215 0.2368004844191333 0.3681629347254363
+0.5965252349017081 0.23813955375595197 0.5965252349017081 0.238139553755952 0.3561421977797134
+0.5931147643011171 0.23958069505121843 0.5931147643011171 0.23958069505121846 0.3436655436461385
+0.5618402488738233 0.256806268151676 0.5618402488738233 0.256806268151676 0.21977796459921797
+0.558823389913282 0.2627480946553821 0.558823389913282 0.2627480946553821 0.21618703856985724
+0.5589918409228527 0.266513128459684 0.5589918409228528 0.266513128459684 0.22585046776313208
+0.5618392376830479 0.26064240340547246 0.5618392376830479 0.26064240340547246 0.2281793845294486
+0.5651514710677672 0.25457293447710155 0.5651514710677672 0.25457293447710155 0.23304462031898357
+0.6096944374589165 0.23294127413289079 0.6096944374589165 0.2329412741328908 0.39980149262977066
+0.6126464358138531 0.23269067598022902 0.6126464358138531 0.23269067598022902 0.4100603118242009
+0.6152054126611812 0.23056481256436134 0.6152054126611812 0.23056481256436134 0.41503082893988885
+0.6189640538059081 0.2296937885568943 0.6189640538059081 0.2296937885568943 0.42590129623023776
+0.6224286783795397 0.2287276820606804 0.6224286783795397 0.22872768206068042 0.4349072959520745
+0.6258595194642272 0.22775391776119794 0.6258595194642272 0.22775391776119794 0.44315099203681557
+0.6292962558490786 0.226787178551795 0.6292962558490786 0.226787178551795 0.4507838937854838
+0.6631755841811067 0.19324301277142827 0.6631755841811068 0.19324301277142827 0.45241962577634115
+0.6568984564554892 0.1966034150291176 0.6568984564554893 0.1966034150291176 0.447994869677307
+0.6610808242021591 0.19661645086885202 0.6610808242021591 0.19661645086885202 0.45497152827784765
+0.6548190349584977 0.19994648291349648 0.6548190349584977 0.19994648291349648 0.4506438579186977
+0.6507592586773362 0.20655504593739016 0.6507592586773362 0.20655504593739016 0.4562819859696586
+0.6527645278765678 0.20325969395256696 0.6527645278765678 0.20325969395256696 0.45339399515939943
+0.6444397807402795 0.2098976429737353 0.6444397807402796 0.20989764297373534 0.45108563492080517
+0.64294918791241 0.21344386604863158 0.64294918791241 0.21344386604863155 0.4553113255164467
+0.632733480369596 0.22585736128899866 0.632733480369596 0.22585736128899866 0.4578519822709007
+0.6381674179270405 0.21779221430169038 0.6381674179270406 0.21779221430169038 0.45404016367429717
+0.6371600445701333 0.22141746005323015 0.6371600445701332 0.22141746005323015 0.45926433024782426
+0.6361722842266103 0.22499248475142297 0.6361722842266103 0.22499248475142294 0.4644382534784594
+0.6417713290073628 0.21700878011539418 0.6417713290073629 0.21700878011539418 0.46021308754263873
+0.6487337740458764 0.20979721147822264 0.6487337740458764 0.20979721147822264 0.45906613037555744
+0.6736401452590078 0.18308068201105446 0.6736401452590078 0.18308068201105446 0.45223085736523055
+0.6778242604257221 0.1830806926605875 0.6778242604257221 0.1830806926605875 0.4584233968473797
+0.6715480182787236 0.18647098310065224 0.6715480182787236 0.18647098310065224 0.4543443149968078
+0.6694552733806948 0.18986048383430867 0.6694552733806948 0.18986048383430867 0.4565767584822797
+0.6673610854538744 0.19324719462849835 0.6673610854538744 0.19324719462849835 0.4589580332411
+0.6987447698744639 0.15595763157777162 0.6987447698744639 0.15595763157777162 0.4424806315108563
+0.6966527196652588 0.15934801487294056 0.6966527196652588 0.15934801487294056 0.44604701818612486
+0.6945606694560533 0.1627383981681094 0.6945606694560533 0.1627383981681094 0.44933297978593195
+0.6924686192468479 0.16612878146327814 0.6924686192468479 0.16612878146327814 0.4523379413047129
+0.6903765690376429 0.16951916475844683 0.6903765690376429 0.16951916475844683 0.45507928465701936
+0.688284518828436 0.17290954805361522 0.688284518828436 0.17290954805361522 0.45759015851643353
+0.6861924686191743 0.17629993134876507 0.6861924686191743 0.17629993134876507 0.45991666651291324
+0.6841004184095069 0.1796903146437577 0.6841004184095069 0.1796903146437577 0.4621145511714176
+0.6820083659910335 0.1830806963586699 0.6820083659910335 0.1830806963586699 0.4642455074918101
+0.7050209205020797 0.1525672482826025 0.7050209205020797 0.1525672482826025 0.44193522203618346
+0.7029288702928745 0.15595763157777162 0.7029288702928745 0.15595763157777162 0.44610312216032727
+0.711297071129695 0.14917686498743343 0.711297071129695 0.14917686498743343 0.4401508985649159
+0.70920502092049 0.15256724828260237 0.70920502092049 0.15256724828260237 0.4448113073855737
+0.7175732217573101 0.1457864816922645 0.7175732217573101 0.1457864816922645 0.43746919359271974
+0.7154811715481051 0.14917686498743338 0.7154811715481051 0.1491768649874334 0.44240829395594355
+0.7238493723849254 0.14239609839709555 0.7238493723849254 0.14239609839709555 0.43438936736003914
+0.7217573221757202 0.1457864816922645 0.7217573221757202 0.1457864816922645 0.4393007270618174
+0.7301255230125409 0.1390057151019266 0.7301255230125409 0.1390057151019266 0.43152135341909
+0.7280334728033359 0.14239609839709555 0.7280334728033359 0.14239609839709555 0.4360356398909646
+0.7384937238493611 0.13222494851158872 0.7384937238493611 0.13222494851158872 0.4265464074998175
+0.7364016736401561 0.13561533180675767 0.7364016736401561 0.13561533180675767 0.4295087186492333
+0.734309623430951 0.1390057151019266 0.734309623430951 0.1390057151019266 0.4332406557031745
+0.7447698744769767 0.12883456521641978 0.7447698744769767 0.12883456521641978 0.4272544373373363
+0.7426778242677714 0.13222494851158872 0.7426778242677714 0.13222494851158872 0.4289286725700725
+0.7510460251045918 0.12544418192125084 0.7510460251045918 0.12544418192125084 0.4299497910835716
+0.7489539748953868 0.12883456521641978 0.7489539748953868 0.12883456521641978 0.4301859696504822
+0.7573221757322074 0.12205379862608191 0.7573221757322074 0.12205379862608191 0.4346058748688815
+0.7552301255230022 0.12544418192125087 0.7552301255230022 0.12544418192125087 0.4334256514519676
+0.7635983263598227 0.11866341533091296 0.7635983263598227 0.11866341533091296 0.4408904085902791
+0.7615062761506176 0.1220537986260819 0.7615062761506176 0.1220537986260819 0.43848953893249104
+0.7698744769874378 0.11527303203574402 0.7698744769874378 0.11527303203574402 0.44821150053099906
+0.7677824267782328 0.11866341533091296 0.7677824267782328 0.11866341533091296 0.44493003159157835
+0.7761506276150533 0.11188264874057507 0.7761506276150533 0.11188264874057507 0.45580694961041196
+0.7740585774058482 0.11527303203574402 0.7740585774058482 0.11527303203574402 0.45207675746151077
+0.7824267782426685 0.10849226544540613 0.7824267782426685 0.10849226544540613 0.4628532400640967
+0.7803347280334635 0.11188264874057507 0.7803347280334635 0.11188264874057507 0.45913685583501823
+0.790794979079489 0.10171149885506825 0.790794979079489 0.10171149885506825 0.47149836997795175
+0.7887029288702839 0.10510188215023719 0.7887029288702839 0.10510188215023719 0.46857223814142984
+0.7866108786610786 0.10849226544540613 0.7866108786610786 0.10849226544540613 0.4653051060123419
+0.7970711297071045 0.09832111555989931 0.7970711297071045 0.09832111555989931 0.4742424162977809
+0.7949790794978994 0.10171149885506825 0.7949790794978994 0.10171149885506825 0.4723214793991552
+0.8033472803347197 0.09493073226473037 0.8033472803347196 0.09493073226473037 0.474388948463592
+0.8012552301255146 0.09832111555989931 0.8012552301255146 0.09832111555989931 0.47366211884629533
+0.809623430962335 0.09154034896956142 0.809623430962335 0.09154034896956142 0.47188035687922597
+0.8075313807531299 0.09493073226473037 0.8075313807531298 0.09493073226473037 0.47240373398773344
+0.8158995815899504 0.08814996567439248 0.8158995815899504 0.08814996567439248 0.4669307366074453
+0.8138075313807452 0.09154034896956142 0.8138075313807452 0.09154034896956142 0.4686268339187252
+0.8221757322175657 0.08475958237922354 0.8221757322175657 0.08475958237922354 0.4600142517190408
+0.8200836820083606 0.08814996567439248 0.8200836820083605 0.08814996567439248 0.46268316680232563
+0.828451882845181 0.0813691990840546 0.8284518828451811 0.0813691990840546 0.45182870682996157
+0.8263598326359759 0.08475958237922354 0.8263598326359759 0.08475958237922354 0.4551719827265835
+0.8347280334727963 0.07797881578888566 0.8347280334727963 0.07797881578888566 0.4432304443369253
+0.8326359832635912 0.0813691990840546 0.8326359832635912 0.0813691990840546 0.4468885575706933
+0.8410041841004117 0.07458843249371672 0.8410041841004116 0.07458843249371672 0.4351380823256124
+0.8389121338912066 0.07797881578888566 0.8389121338912066 0.07797881578888566 0.43874117259562967
+0.847280334728027 0.07119804919854777 0.847280334728027 0.07119804919854777 0.42840880201608345
+0.8451882845188219 0.07458843249371672 0.845188284518822 0.07458843249371672 0.4316366320067255
+0.8556485355648474 0.06441728260820989 0.8556485355648474 0.06441728260820989 0.42091996131857207
+0.8535564853556423 0.06780766590337883 0.8535564853556422 0.06780766590337883 0.4237025887242097
+0.8514644351464372 0.07119804919854777 0.8514644351464372 0.07119804919854777 0.4263441041814379
+0.8619246861924628 0.06102689931304095 0.8619246861924629 0.06102689931304095 0.4191741721504147
+0.8598326359832577 0.06441728260820989 0.8598326359832577 0.06441728260820989 0.4213631351488499
+0.8682008368200781 0.05763651601787201 0.8682008368200781 0.05763651601787201 0.4195807991275668
+0.866108786610873 0.06102689931304095 0.866108786610873 0.06102689931304095 0.42134964570043404
+0.8744769874476934 0.054246132722703067 0.8744769874476933 0.054246132722703067 0.4215936764102124
+0.8723849372384883 0.05763651601787201 0.8723849372384883 0.05763651601787201 0.42324281846795114
+0.8807531380753088 0.050855749427534125 0.8807531380753088 0.050855749427534125 0.424422841080514
+0.8786610878661036 0.054246132722703067 0.8786610878661038 0.054246132722703067 0.42632312843224346
+0.8870292887029241 0.04746536613236518 0.887029288702924 0.04746536613236518 0.4271650819719169
+0.884937238493719 0.050855749427534125 0.884937238493719 0.050855749427534125 0.4296950199012826
+0.8933054393305394 0.04407498283719624 0.8933054393305394 0.04407498283719624 0.42893070685751233
+0.8912133891213343 0.04746536613236518 0.8912133891213344 0.04746536613236518 0.43242123921587167
+0.8995815899581547 0.0406845995420273 0.8995815899581547 0.0406845995420273 0.4289444600718724
+0.8974895397489496 0.04407498283719624 0.8974895397489496 0.04407498283719624 0.43363883555758415
+0.9079497907949752 0.03390383295168942 0.9079497907949751 0.03390383295168942 0.4198627299727478
+0.9058577405857701 0.03729421624685836 0.9058577405857701 0.03729421624685836 0.4266126560237565
+0.903765690376565 0.0406845995420273 0.9037656903765648 0.0406845995420273 0.4326429429593654
+0.9142259414225905 0.030513449656520475 0.9142259414225905 0.030513449656520475 0.4136059612313186
+0.9121338912133854 0.03390383295168942 0.9121338912133855 0.03390383295168942 0.4215583902297851
+0.9205020920502058 0.027123066361351533 0.9205020920502057 0.027123066361351533 0.40463946368174725
+0.9184100418410007 0.030513449656520475 0.9184100418410007 0.030513449656520475 0.413630864043693
+0.9267782426778212 0.02373268306618259 0.9267782426778212 0.02373268306618259 0.39312115732687475
+0.9246861908222969 0.02712306030519196 0.9246861908222969 0.02712306030519196 0.40289560027432997
+0.9330544030309623 0.02034229344149689 0.9330544030309623 0.02034229344149689 0.3793804371178722
+0.9309623998284654 0.023732646144001474 0.9309623998284654 0.023732646144001474 0.38961172573466074
+0.9393307406997037 0.016951870097916728 0.9393307406997037 0.016951870097916728 0.363883602039117
+0.937238875710927 0.020342240906401056 0.937238875710927 0.020342240906401052 0.37420110174393995
+0.9456072817514624 0.013561339610428986 0.9456072817514624 0.013561339610428986 0.3471984283180675
+0.943516016461743 0.016951601676229663 0.943516016461743 0.016951601676229663 0.35721270470323413
+0.9518844896081325 0.010170223836261243 0.9518844896081325 0.010170223836261245 0.3299608208996654
+0.9497935482991965 0.013560460233469898 0.9497935482991965 0.013560460233469898 0.3392908393712513
+0.9581625832607336 0.00677808894114967 0.9581625832607336 0.006778088941149671 0.31285383651340976
+0.9560723504761538 0.010167566212630468 0.9560723504761538 0.01016756621263047 0.32114282470285255
+0.9623501996009388 0.006773711433556317 0.9623501996009388 0.006773711433556317 0.3035323963389543
+0.006756544808198092 0.9665706825334516 0.006756544808198092 0.9665706825334516 0.07376648844408314
+0.006756578635041685 0.9707620323404692 0.006756578635041685 0.9707620323404692 0.07114939462455183
+0.010142827477312657 0.960280121748756 0.010142827477312657 0.960280121748756 0.0783685280553429
+0.01012921264816273 0.96449843261268 0.01012921264816273 0.9644984326126799 0.0757273220911655
+0.013542947246328478 0.9539862409161132 0.01354294724632848 0.9539862409161132 0.08308794036192187
+0.013525642214144389 0.9581771171397246 0.013525642214144389 0.9581771171397246 0.08058977218303558
+0.016946199281837538 0.9477031301382 0.016946199281837538 0.9477031301381998 0.0877195403206953
+0.01693042078818698 0.9518903640325198 0.01693042078818698 0.9518903640325199 0.08546141365866054
+0.020336423023410637 0.9414246134956383 0.020336423023410637 0.9414246134956382 0.0920742945309771
+0.02033400728221659 0.9456107024019247 0.020334007282216595 0.9456107024019246 0.09015162243044243
+0.023726942825454043 0.9351475179878898 0.023726942825454043 0.9351475179878898 0.0959797010851191
+0.023722922089482845 0.9393323610097729 0.023722922089482845 0.9393323610097729 0.09446209302895837
+0.027119920174263887 0.9288720177312958 0.02711992017426389 0.9288720177312958 0.0992684740178824
+0.02711546970229348 0.9330576615541184 0.02711546970229348 0.9330576615541183 0.09821568680003402
+0.030512237213105645 0.9225955962309541 0.030512237213105645 0.9225955962309541 0.10178807628877147
+0.030510121450112695 0.9267816917659316 0.030510121450112695 0.9267816917659316 0.10124555540516354
+0.033903477491138 0.9163186866743575 0.033903477491138 0.9163186866743575 0.10341007717387753
+0.03390280795280932 0.9205039402156237 0.03390280795280932 0.9205039402156237 0.1034039477113068
+0.0372938321311719 0.9142265930829764 0.0372938321311719 0.9142265930829764 0.10457512759882874
+0.04068415726841928 0.907950166157586 0.04068415726841928 0.907950166157586 0.10468259983123131
+0.040683620394142764 0.9121346407942296 0.04068362039414276 0.9121346407942296 0.10546238249784821
+0.04407469811179962 0.9016741610215625 0.04407469811179962 0.9016741610215625 0.1036961677549579
+0.04407418499063747 0.9058589056329444 0.04407418499063747 0.9058589056329444 0.10499906884005909
+0.04746524638017613 0.8953978406965022 0.04746524638017613 0.8953978406965021 0.10163934870418663
+0.04746498911580093 0.8995825122185517 0.04746498911580093 0.8995825122185517 0.1034119494668997
+0.05085570987229133 0.8891214885036861 0.05085570987229133 0.8891214885036861 0.0985976783635668
+0.050855617863578804 0.8933058627132922 0.050855617863578804 0.8933058627132923 0.10075655189951195
+0.05424612117036088 0.8828452378297315 0.05424612117036088 0.8828452378297315 0.09472550940613327
+0.05424609340861166 0.8870294343333901 0.05424609340861166 0.8870294343333901 0.09715432585449833
+0.05763651283191603 0.8765690522255136 0.05763651283191603 0.8765690522255136 0.0902521700985654
+0.05763650494949891 0.8807531825430571 0.05763650494949891 0.8807531825430571 0.09279875109041193
+0.06102689841518911 0.8702928905163203 0.06102689841518911 0.8702928905163203 0.08548580688918085
+0.061026895869560636 0.8744769985287665 0.061026895869560636 0.8744769985287665 0.08796091857813393
+0.06441728244908036 0.8640167369517426 0.06441728244908036 0.8640167369517426 0.08081034892508564
+0.06441728194805801 0.8682008386232228 0.06441728194805801 0.8682008386232228 0.08299137859449922
+0.06780766575481421 0.857740586106519 0.06780766575481421 0.8577405861065192 0.07666687247647325
+0.06780766526008515 0.86192468743346 0.06780766526008515 0.86192468743346 0.07831198254506878
+0.07119804894739407 0.8556485364628251 0.07119804894739407 0.8556485364628251 0.07438655746824184
+0.07458843244073539 0.849372385367273 0.07458843244073539 0.849372385367273 0.07165722889739716
+0.07458843227735913 0.8535564869519746 0.07458843227735913 0.8535564869519746 0.07219571389372155
+0.07797881578643424 0.8430962344652921 0.07797881578643424 0.8430962344652922 0.07044630963445177
+0.07797881577806647 0.8472803353039088 0.07797881577806647 0.8472803353039088 0.07000767383073436
+0.08136919908729721 0.8368200837287983 0.08136919908729721 0.8368200837287983 0.07085796896097256
+0.08136919909652587 0.841004184272215 0.08136919909652586 0.841004184272215 0.0694549937782827
+0.08475958238039462 0.8305439330683956 0.08475958238039462 0.8305439330683956 0.07273993824223839
+0.08475958238350996 0.8347280335246978 0.08475958238350996 0.8347280335246978 0.07052267784804477
+0.08814996566711937 0.8242677824365329 0.08814996566711937 0.8242677824365329 0.07573571165417314
+0.08814996564409609 0.8284518828840444 0.08814996564409609 0.8284518828840444 0.07294490938668435
+0.09154034896341369 0.8179916318094755 0.09154034896341369 0.8179916318094754 0.07939151802527282
+0.09154034894385776 0.8221757322615474 0.09154034894385776 0.8221757322615474 0.07629477714617082
+0.09493073226130937 0.8117154811812887 0.09493073226130937 0.8117154811812887 0.08325686204525383
+0.09493073225030095 0.8158995816314775 0.09493073225030095 0.8158995816314775 0.08010013704296017
+0.09832111555840306 0.8054393305494062 0.09832111555840306 0.8054393305494062 0.08694695405120667
+0.09832111555361468 0.8096234309852393 0.09832111555361468 0.8096234309852391 0.08393050366734112
+0.10171149885450226 0.7991631799185558 0.10171149885450226 0.7991631799185558 0.0901698497797609
+0.10171149885271187 0.8033472803439213 0.10171149885271187 0.8033472803439213 0.08744147879844538
+0.10510188214947837 0.7970711297102668 0.10510188214947837 0.7970711297102668 0.09038929047911297
+0.10849226544519404 0.7907949790804571 0.10849226544519404 0.7907949790804571 0.0926307704261103
+0.10849226544456521 0.7949790795016897 0.10849226544456521 0.7949790795016897 0.09057398639943078
+0.11188264874052045 0.7845188284521533 0.11188264874052045 0.7845188284521533 0.09411807012313446
+0.111882648740367 0.7887029288713577 0.111882648740367 0.7887029288713577 0.09249860388372266
+0.11527303203572903 0.7782426778243385 0.11527303203572903 0.7782426778243385 0.09489186490876002
+0.11527303203569284 0.7824267782429599 0.11527303203569284 0.7824267782429599 0.09369160730878501
+0.11866341533090756 0.771966527196667 0.11866341533090756 0.771966527196667 0.09507351608672822
+0.11866341533089997 0.7761506276151238 0.11866341533089997 0.7761506276151238 0.09423448376076841
+0.12205379862607897 0.7656903765690363 0.12205379862607897 0.7656903765690363 0.09485488544233377
+0.12205379862607874 0.7698744769874478 0.12205379862607875 0.7698744769874478 0.09428271770026275
+0.12544418192124776 0.7594142259414213 0.12544418192124776 0.7594142259414213 0.0944834925966128
+0.12544418192124698 0.7635983263598334 0.12544418192124698 0.7635983263598334 0.0940528996172556
+0.12883456521641667 0.7531380753138062 0.12883456521641667 0.7531380753138062 0.09424044797357552
+0.12883456521641604 0.7573221757322176 0.12883456521641604 0.7573221757322176 0.09380423038345086
+0.13222494851158567 0.7468619246861911 0.13222494851158564 0.7468619246861911 0.09440975347791407
+0.13222494851158534 0.7510460251046016 0.13222494851158537 0.7510460251046016 0.0938125255758676
+0.1356153318067546 0.7405857740585757 0.13561533180675459 0.7405857740585757 0.09524092286774587
+0.13561533180675447 0.7447698744769861 0.13561533180675447 0.7447698744769861 0.09433701492043257
+0.1390057151019235 0.7384937238493707 0.1390057151019235 0.7384937238493707 0.09558431711315601
+0.1423960983970924 0.7322175732217557 0.1423960983970924 0.7322175732217557 0.09767825088377534
+0.1423960983970924 0.7364016736401657 0.1423960983970924 0.7364016736401657 0.09619213546387441
+0.1457864816922613 0.7259414225941407 0.1457864816922613 0.7259414225941407 0.10064508849640687
+0.1457864816922613 0.7301255230125507 0.1457864816922613 0.7301255230125507 0.09865504120803004
+0.1491768649874302 0.7196652719665257 0.1491768649874302 0.7196652719665257 0.10441915897955033
+0.1491768649874302 0.7238493723849357 0.1491768649874302 0.7238493723849357 0.10192225949377086
+0.1525672482825991 0.7133891213389107 0.15256724828259907 0.7133891213389107 0.10886571250440534
+0.1525672482825991 0.7175732217573207 0.15256724828259907 0.7175732217573207 0.10589755728459128
+0.15595763157776799 0.7071129707112958 0.15595763157776799 0.7071129707112958 0.11381217663981093
+0.15595763157776799 0.7112970711297057 0.15595763157776799 0.7112970711297057 0.11043444799601611
+0.1593480148729369 0.7008368200836808 0.1593480148729369 0.7008368200836808 0.11907855396335167
+0.1593480148729369 0.7050209205020908 0.1593480148729369 0.7050209205020908 0.11536589846737884
+0.16273839816810579 0.6987447698744758 0.16273839816810579 0.6987447698744758 0.12053012625883493
+0.1661287814632747 0.6966527196652708 0.1661287814632747 0.6966527196652708 0.12181173846394096
+0.16951916475844359 0.6945606694560658 0.16951916475844356 0.6945606694560658 0.12291453365570408
+0.17290954805361247 0.6924686192468608 0.17290954805361247 0.6924686192468608 0.12384007209361723
+0.1762999313487814 0.6903765690376558 0.1762999313487814 0.6903765690376558 0.12459928275070316
+0.1796903146439503 0.6882845188284508 0.17969031464395033 0.6882845188284508 0.1252111393174197
+0.18308069793911919 0.6820083682008358 0.18308069793911919 0.6820083682008358 0.12967462771903895
+0.18647108123428807 0.6799163179916308 0.18647108123428804 0.6799163179916308 0.1300783294601384
+0.19663127199076033 0.6652612741208833 0.19663127199076033 0.6652612741208833 0.13947813234224116
+0.20338471279884154 0.6568465642436933 0.20338471279884154 0.6568465642436933 0.14471978033515165
+0.20671257665576637 0.6547398506280463 0.20671257665576634 0.6547398506280463 0.14526128955834808
+0.21252832031727342 0.6459407505493426 0.21252832031727342 0.6459407505493426 0.15184665798180264
+0.2154475916582926 0.6436884116112084 0.2154475916582926 0.6436884116112084 0.15288886196309057
+0.21831801766023576 0.6414989762625704 0.21831801766023576 0.6414989762625704 0.15390566201016478
+0.22117492290418203 0.6393066381802794 0.22117492290418203 0.6393066381802796 0.1549442422306548
+0.22369736427067508 0.6333775029201286 0.22369736427067508 0.6333775029201286 0.1604118935183766
+0.2265517179334664 0.6311117976215687 0.2265517179334664 0.6311117976215687 0.16158293944233304
+0.22941655313391543 0.6288571387717258 0.22941655313391543 0.6288571387717258 0.1627384001550234
+0.22403879222388412 0.6370756672621821 0.2240387922238841 0.6370756672621821 0.15602702499407936
+0.2097426737503557 0.6526016387387236 0.20974267375035574 0.6526016387387236 0.14602539244996293
+0.21285500712202515 0.6499865254252714 0.21285500712202518 0.6499865254252714 0.14732589853824543
+0.20001438707171706 0.663158866358799 0.20001438707171706 0.663158866358799 0.139875311854853
+0.20340919457055406 0.6610544110804917 0.20340919457055406 0.6610544110804916 0.14031820556566166
+0.18986064443531248 0.6736393769737793 0.18986064443531248 0.6736393769737793 0.13454434171775856
+0.18986070364873586 0.6778233185389991 0.18986070364873586 0.6778233185389991 0.13042742704020635
+0.1932482389950165 0.6715456268526202 0.1932482389950165 0.6715456268526202 0.13488004295250056
+0.19663153161155136 0.6694497129913559 0.19663153161155136 0.6694497129913559 0.13522814481466391
+0.18308069793911919 0.6861924686192458 0.18308069793911919 0.6861924686192458 0.12570108577273412
+0.235352279787423 0.6174039577051613 0.235352279787423 0.6174039577051613 0.1738439455261834
+0.23879759739654557 0.6083387492792833 0.23879759739654557 0.6083387492792833 0.1846040478960547
+0.2387844539333901 0.6153445187952982 0.2387844539333901 0.6153445187952982 0.17461582634206993
+0.2388354988779053 0.6120087354539857 0.2388354988779053 0.6120087354539857 0.17926598692571274
+0.2509921665840278 0.5891630005922441 0.2509921665840278 0.5891630005922441 0.2105700493974776
+0.24187952919235786 0.6025709867079266 0.24187952919235786 0.6025709867079266 0.1917244594400659
+0.24504149684201418 0.6004461425030645 0.24504149684201418 0.6004461425030644 0.19341783722497344
+0.24796925740115228 0.5947531805260757 0.24796925740115228 0.5947531805260757 0.20166143304554804
+0.2482024729673532 0.5983303390868867 0.24820247296735323 0.5983303390868867 0.19522897253478474
+0.2511565723529718 0.59268834847683 0.2511565723529718 0.59268834847683 0.2037898861121046
+0.24205868096177385 0.606215199050625 0.24205868096177383 0.606215199050625 0.18591301779133437
+0.23274136638163578 0.6201888619860292 0.23274136638163578 0.6201888619860291 0.1716654513686095
+0.23168996826565486 0.6235141003544868 0.23168996826565486 0.6235141003544868 0.16797260891819796
+0.23235485770448966 0.6266033630958254 0.23235485770448963 0.6266033630958255 0.16385883051007946
+0.23608520907912778 0.620352274936702 0.2360852090791278 0.620352274936702 0.16948672147463167
+0.4036121947994412 0.38021202023974504 0.40361219479944127 0.38021202023974504 0.3946887459224461
+0.4068271479627015 0.3820532612127137 0.4068271479627015 0.3820532612127137 0.40917955942354906
+0.4003601780628161 0.3817581844137522 0.4003601780628161 0.38175818441375226 0.3879033244883337
+0.3935870960436579 0.38175776512609483 0.3935870960436579 0.38175776512609483 0.36427791707130047
+0.3970598090043336 0.38343592059181475 0.3970598090043336 0.38343592059181475 0.38010454986405223
+0.39025711399325075 0.3835779587353681 0.39025711399325075 0.3835779587353681 0.3549352000935484
+0.38318587152877215 0.3840743154612263 0.38318587152877215 0.3840743154612263 0.32795858881540974
+0.3869618329796188 0.38551673955673693 0.3869618329796188 0.38551673955673693 0.34478134018729084
+0.38017356810479574 0.38605737262186907 0.38017356810479574 0.38605737262186907 0.31768191245208494
+0.3736891000019213 0.3862592080197975 0.3736891000019213 0.3862592080197975 0.29147268565928014
+0.3709325607468991 0.38743776532604324 0.3709325607468991 0.38743776532604324 0.28072629520806414
+0.3768731998111086 0.3880234719768256 0.3768731998111086 0.3880234719768256 0.30538449981770116
+0.3693571706265329 0.38962571701188065 0.3693571706265329 0.38962571701188065 0.2747903485477589
+0.363215259997234 0.39061533963095313 0.363215259997234 0.39061533963095313 0.25033827755720545
+0.3606848246488714 0.39266511902938384 0.3606848246488714 0.3926651190293838 0.24015831114908606
+0.36669514488550004 0.39174391248919577 0.36669514488550004 0.39174391248919577 0.26397498625652777
+0.3581685692679224 0.3947060212197746 0.3581685692679224 0.3947060212197746 0.23004574195466088
+0.3522968369027855 0.3958278507060092 0.3522968369027855 0.3958278507060092 0.20917183370831013
+0.34989771277412096 0.39809404203314785 0.34989771277412096 0.39809404203314785 0.20061717597174047
+0.3558041294368579 0.3968610949065432 0.3558041294368579 0.3968610949065432 0.2205832511689743
+0.34750343331287875 0.40039733132989874 0.34750343331287875 0.4003973313298987 0.1927300322834273
+0.3414963426374639 0.40185421720568604 0.3414963426374639 0.40185421720568604 0.1776132640272382
+0.3391566922242691 0.40430965114748063 0.3391566922242691 0.4043096511474806 0.17312231361283462
+0.3451414701002222 0.40274488512033574 0.3451414701002222 0.40274488512033574 0.18583974501136893
+0.3368667139570101 0.40682157736220664 0.3368667139570101 0.40682157736220664 0.17026645971972357
+0.33086699280588533 0.40866865470522157 0.33086699280588533 0.40866865470522157 0.16551991697516855
+0.32863532506099 0.41134671296558284 0.32863532506098997 0.41134671296558284 0.16762572262842876
+0.3345952969630674 0.4093900383216602 0.3345952969630674 0.4093900383216602 0.16918732993485694
+0.32644601298197123 0.41407495022433144 0.32644601298197123 0.41407495022433144 0.17160484525844244
+0.3204723257627838 0.41630994245085584 0.3204723257627838 0.4163099424508559 0.17770069806123656
+0.3182906259786875 0.41916167053687015 0.3182906259786875 0.4191616705368702 0.1857767775512121
+0.32428973417986806 0.4168451673214246 0.32428973417986806 0.4168451673214246 0.17734210058663347
+0.31620194571741916 0.4221176744586405 0.31620194571741916 0.4221176744586405 0.1951478074459658
+0.31051337521988115 0.42493236538674395 0.31051337521988115 0.424932365386744 0.2080713451606738
+0.30846648942425486 0.4279185128075785 0.30846648942425486 0.4279185128075785 0.21909417358310632
+0.31426532743708924 0.4251440172460008 0.31426532743708924 0.42514401724600076 0.20551385680028525
+0.3062972075496299 0.4308369397094032 0.3062972075496299 0.4308369397094031 0.23029196748980385
+0.30099637935086415 0.4357764715087457 0.30099637935086415 0.4357764715087457 0.2503753806169507
+0.29958115798842266 0.43839345848971145 0.29958115798842266 0.4383934584897115 0.2599223122475624
+0.30392556593182934 0.4341204789772699 0.30392556593182934 0.4341204789772699 0.24297710918821241
+0.2976672777552111 0.44119070510112257 0.2976672777552111 0.44119070510112257 0.27010552184509656
+0.29187042177832045 0.4498450637711416 0.2918704217783205 0.4498450637711416 0.29909879891026575
+0.29373759452754344 0.4469478332157293 0.2937375945275434 0.44694783321572923 0.28990936432373543
+0.29570058198770566 0.4440809184797529 0.29570058198770566 0.4440809184797529 0.2802659547725706
+0.28997095521700256 0.4528248673856664 0.2899709552170026 0.45282486738566646 0.3079278303656794
+0.28790051742855005 0.4556740389946558 0.28790051742855005 0.4556740389946558 0.31588142088170157
+0.28604391585983685 0.4585573346545688 0.28604391585983685 0.4585573346545688 0.3232356177894966
+0.28426311531882403 0.461768990412136 0.28426311531882403 0.461768990412136 0.3307584226081939
+0.2824645471414123 0.46510855603851015 0.2824645471414123 0.46510855603851015 0.33777276796919353
+0.2807752523631765 0.4689101782114414 0.2807752523631765 0.4689101782114414 0.3449588147773639
+0.2782455286738767 0.47129739330984305 0.2782455286738767 0.47129739330984305 0.3477520059118964
+0.27735868141454445 0.47434247297741716 0.2773586814145444 0.4743424729774172 0.3525184949522473
+0.27590665105949524 0.47767590868397103 0.27590665105949524 0.4776759086839711 0.35649635392886087
+0.27441383961131105 0.48108905522813505 0.2744138396113111 0.481089055228135 0.35970098181597626
+0.2729145253651976 0.4844457389058166 0.2729145253651976 0.4844457389058166 0.36198024837149895
+0.2714109441715805 0.4877301729899393 0.27141094417158046 0.4877301729899393 0.36337230191069153
+0.2699359175607749 0.4911319226616951 0.2699359175607749 0.4911319226616951 0.3640830865664591
+0.26866571454460136 0.49467469457198104 0.26866571454460136 0.49467469457198104 0.3642991281396793
+0.267434739119395 0.4982132228624299 0.267434739119395 0.4982132228624299 0.3637178103481556
+0.26625197132637013 0.50173602186495 0.2662519713263701 0.50173602186495 0.3624009289254558
+0.2650530422155443 0.5052875133912291 0.2650530422155443 0.5052875133912291 0.3603194622375361
+0.2638517783089685 0.5089052210277404 0.2638517783089685 0.5089052210277404 0.3574939803223422
+0.2626360035049714 0.5126938600576246 0.26263600350497146 0.5126938600576246 0.3538724734668854
+0.2615591386729025 0.5165709410224666 0.26155913867290254 0.5165709410224667 0.34954470780038194
+0.2608394065103588 0.5200886952107451 0.2608394065103588 0.5200886952107452 0.34528291410968076
+0.2600473723588021 0.5236333259816561 0.2600473723588021 0.5236333259816561 0.340383597096613
+0.2591744086054842 0.5271882037886519 0.2591744086054842 0.5271882037886519 0.3349022085997722
+0.2583289282916975 0.5306702151960627 0.25832892829169746 0.5306702151960626 0.329110911030289
+0.25697921959225123 0.5332973492603761 0.25697921959225123 0.5332973492603761 0.3239141607724917
+0.25737859184078904 0.5361802389719076 0.257378591840789 0.5361802389719076 0.31950896450268407
+0.25693530354386895 0.5395422856376257 0.256935303543869 0.5395422856376256 0.313291887871445
+0.25644685969721387 0.5429677907170165 0.25644685969721387 0.5429677907170164 0.3066564907755173
+0.2559456879378217 0.5464064008063796 0.2559456879378217 0.5464064008063795 0.29974531977631486
+0.25547983021878123 0.5497837445598667 0.25547983021878123 0.5497837445598667 0.2927717350603087
+0.2550964084479656 0.5531114228818842 0.2550964084479656 0.5531114228818842 0.2857793011228668
+0.2548586113330465 0.5563755410745727 0.2548586113330465 0.5563755410745727 0.2788412795597051
+0.2546677181899033 0.5596771394466995 0.2546677181899033 0.5596771394466994 0.27176562571565666
+0.2544690878477045 0.563075795796119 0.2544690878477045 0.5630757957961191 0.26439451023884847
+0.25430146323431874 0.5665072723341068 0.25430146323431874 0.5665072723341068 0.2569214911451358
+0.254155237946425 0.5699400509935856 0.2541552379464251 0.5699400509935856 0.24945176246082915
+0.25405277108649166 0.5733717566674462 0.25405277108649166 0.5733717566674462 0.24202202411376428
+0.25401434002060325 0.5767934920337402 0.25401434002060325 0.5767934920337402 0.23467588144590232
+0.2540321199039461 0.5802222794342925 0.2540321199039461 0.5802222794342925 0.2274014600653558
+0.2540933771777714 0.5836847758755649 0.2540933771777714 0.5836847758755649 0.2201676704881714
+0.25421160659074366 0.587171901002664 0.25421160659074366 0.587171901002664 0.21301246840930946
+0.4099175792109398 0.3806102782371827 0.4099175792109398 0.3806102782371827 0.4138880759725277
+0.410427320125187 0.37736626140481677 0.41042732012518707 0.37736626140481677 0.406599195132348
+0.4145250171954981 0.3658762610085476 0.4145250171954981 0.3658762610085476 0.39261959075628633
+0.4141645081516882 0.3693183652365465 0.4141645081516882 0.36931836523654654 0.39758031004211275
+0.4138831370425067 0.37271205265267104 0.4138831370425066 0.37271205265267104 0.4036884917036581
+0.4137049540078646 0.37609213614840376 0.4137049540078646 0.37609213614840376 0.41115393738405465
+0.41986120565530616 0.3540882686950692 0.41986120565530616 0.3540882686950692 0.3897504473924252
+0.41901886285313855 0.3576810232942765 0.41901886285313855 0.3576810232942765 0.3913042812414773
+0.4185109940978915 0.36123067310920987 0.4185109940978915 0.36123067310920987 0.3940753995700683
+0.41809739759460285 0.364721180740537 0.4180973975946029 0.364721180740537 0.3978110227271748
+0.4279944562281059 0.3423784046908014 0.4279944562281059 0.3423784046908014 0.39543723797805175
+0.42457381599007316 0.3465323012210071 0.4245738159900732 0.3465323012210071 0.392783853262682
+0.42700034269790255 0.34495652188788484 0.42700034269790255 0.34495652188788484 0.39538868475752237
+0.42421713165891234 0.3497704306448688 0.42421713165891234 0.3497704306448688 0.3940690566516776
+0.4235889690321819 0.35326138350465996 0.42358896903218196 0.3532613835046599 0.39540334390704635
+0.43655203136341614 0.3314643972015453 0.43655203136341614 0.33146439720154536 0.3971452896795013
+0.4325333573887964 0.33537958048206434 0.43253335738879634 0.33537958048206434 0.39672384405695155
+0.43569478691088886 0.33479716659639175 0.43569478691088886 0.33479716659639175 0.3989491572256923
+0.4318124023997397 0.33872534877554156 0.43181240239973967 0.33872534877554156 0.3979838082722258
+0.4310492151560436 0.34189781956577414 0.4310492151560436 0.3418978195657742 0.3989651879611698
+0.44635768449707697 0.32057070069223953 0.44635768449707697 0.32057070069223953 0.38743687542895194
+0.4418921756041971 0.32432331336194575 0.4418921756041971 0.3243233133619458 0.3925735388645593
+0.44522502523713936 0.32396523700792035 0.4452250252371393 0.3239652370079203 0.39167991653085327
+0.44084322497487766 0.3277242010036612 0.44084322497487766 0.3277242010036612 0.39568935742594746
+0.439838762021084 0.3310830177884252 0.439838762021084 0.3310830177884252 0.398353042805021
+0.4635121408480189 0.30517819405345653 0.4635121408480189 0.30517819405345653 0.34037413876448014
+0.46147986996039103 0.3082518337956178 0.46147986996039103 0.30825183379561777 0.3499374082972278
+0.4562429956910798 0.3135058370410245 0.4562429956910798 0.3135058370410246 0.36789152326812175
+0.4591627465758712 0.31121358602293236 0.45916274657587125 0.31121358602293236 0.35930225793759174
+0.4509938096880087 0.3169901902528561 0.4509938096880087 0.3169901902528561 0.37952569344391424
+0.4543907578246465 0.3168188312406507 0.4543907578246465 0.31681883124065063 0.37533090544966136
+0.45738621901990656 0.31677934415576237 0.45738621901990656 0.31677934415576237 0.3707669382465152
+0.4497398425954932 0.3203346076321961 0.4497398425954932 0.32033460763219607 0.38496698080203756
+0.47115998580298873 0.29933792481713584 0.47115998580298873 0.2993379248171358 0.3095672859913395
+0.46916813432457166 0.30235685857406264 0.46916813432457166 0.30235685857406264 0.32051694159525135
+0.47492398748429754 0.2994393163104306 0.4749239874842975 0.2994393163104306 0.2971026466229026
+0.4671685280165855 0.3054291832036292 0.46716852801658554 0.3054291832036293 0.3312490353890892
+0.4918822102721148 0.28728560299276856 0.4918822102721148 0.28728560299276856 0.2112012435490702
+0.4896772899160533 0.2898160235424301 0.4896772899160533 0.2898160235424301 0.22391440167621476
+0.48760275902563716 0.29229324173068916 0.48760275902563716 0.29229324173068916 0.2361192936956976
+0.4814698040732267 0.29621618243480485 0.48146980407322676 0.29621618243480485 0.2675036418375453
+0.4853021105157852 0.29505087182528283 0.48530211051578526 0.29505087182528283 0.249802379521193
+0.4787061569432972 0.2989422298423935 0.47870615694329727 0.29894222984239344 0.2824945705118564
+0.50775222098174 0.2798644884262757 0.50775222098174 0.2798644884262757 0.13320260377233165
+0.4998550520336072 0.28331858425181633 0.4998550520336072 0.2833185842518163 0.1708890603830645
+0.505387304338526 0.28213153184095907 0.5053873043385259 0.282131531840959 0.1448067677184058
+0.5030791392885322 0.28478939610352694 0.5030791392885322 0.2847893961035269 0.15703255490630988
+0.49755368656908294 0.28573955935934553 0.4975536865690829 0.28573955935934553 0.18356234674730154
+0.49525059052746656 0.2882706904559842 0.4952505905274665 0.2882706904559842 0.19666953393292028
+0.5249164391383654 0.27373649978759634 0.5249164391383654 0.27373649978759634 0.08774632163943791
+0.516405216389202 0.27645134108853386 0.516405216389202 0.27645134108853386 0.10009526993219246
+0.5221785837867303 0.2758605678319028 0.5221785837867303 0.2758605678319028 0.08961349546208967
+0.5195194307839751 0.2772439586237271 0.5195194307839751 0.2772439586237271 0.09357875372282935
+0.5140165079910934 0.2789371975132632 0.5140165079910934 0.2789371975132631 0.10857738660144634
+0.5113366190549835 0.2811877743471079 0.5113366190549834 0.2811877743471079 0.1193105732822166
+0.5432405469611489 0.2689512298838204 0.5432405469611489 0.2689512298838204 0.14393907072438752
+0.5338907001928822 0.2711480115527517 0.5338907001928822 0.27114801155275176 0.10493578165509786
+0.5401978327415186 0.27090137067869313 0.5401978327415186 0.27090137067869313 0.13216791080455878
+0.5372271385119747 0.2728933158405705 0.5372271385119748 0.27289331584057047 0.12151069659934026
+0.5310389831296966 0.27326023277305295 0.5310389831296966 0.27326023277305295 0.09825968222390136
+0.5282007990426162 0.2753632903499739 0.5282007990426162 0.2753632903499739 0.0936176593696013
+0.5527219221525377 0.26683493990225643 0.5527219221525376 0.26683493990225643 0.19115030717519851
+0.5496386402890824 0.2688106156352124 0.5496386402890824 0.2688106156352124 0.1781943658633671
+0.5465618430761835 0.27078222228396814 0.5465618430761835 0.27078222228396814 0.16529056017323637
+0.5560101276964625 0.26853786263822294 0.5560101276964625 0.26853786263822294 0.21363267943660658
+0.6089537119133631 0.23670353661464227 0.6089537119133631 0.2367035366146423 0.4044341514446262
+0.569019688044805 0.25190638350625033 0.569019688044805 0.25190638350625033 0.24829200559070633
+0.605985519690995 0.23783656434882625 0.605985519690995 0.23783656434882625 0.395131543379502
+0.5730030971917142 0.25108213073547886 0.5730030971917142 0.25108213073547886 0.2675809251800228
+0.576481020778527 0.2500319174787176 0.576481020778527 0.2500319174787176 0.283484478798998
+0.579816046627639 0.24887692876149253 0.5798160466276389 0.2488769287614925 0.2981303058105756
+0.5832079175514682 0.24774788609455511 0.5832079175514683 0.2477478860945551 0.3127674662469579
+0.586242973085463 0.2472078059502026 0.586242973085463 0.2472078059502026 0.32647297388409335
+0.5886598039907135 0.24494476313337907 0.5886598039907135 0.24494476313337904 0.3335721745051878
+0.6027128724900551 0.23916636833697122 0.6027128724900551 0.23916636833697122 0.38452351345154406
+0.5923808569833927 0.24340447112960115 0.5923808569833927 0.24340447112960115 0.3478375193306351
+0.5993317827399073 0.24054036007346588 0.5993317827399073 0.24054036007346588 0.3730183906315803
+0.5959310550227469 0.24195920247317682 0.5959310550227469 0.24195920247317684 0.3609904410578518
+0.5649963433019295 0.25857556956183797 0.5649963433019295 0.25857556956183797 0.24089090906662083
+0.5618780637265578 0.2643989384581998 0.5618780637265578 0.2643989384581998 0.23711485186331596
+0.5593782872115951 0.2702130899717795 0.5593782872115951 0.27021308997177945 0.23703322701764204
+0.5620737500941336 0.26806889228301545 0.5620737500941336 0.26806889228301545 0.24718366959036978
+0.5647822630242372 0.26236907648234553 0.5647822630242372 0.2623690764823455 0.2484758536957876
+0.5684179052371096 0.2565885638599292 0.5684179052371096 0.2565885638599292 0.2550592007968369
+0.6120095676156223 0.23558549473743 0.6120095676156224 0.23558549473743004 0.4135084055575117
+0.6151475179733009 0.23434912163777852 0.6151475179733009 0.23434912163777852 0.4224105760063332
+0.6181306016826382 0.23330490647972346 0.6181306016826382 0.23330490647972346 0.4304620422116207
+0.6215328109033106 0.23236161440180655 0.6215328109033106 0.23236161440180655 0.43957021865384727
+0.624946695944921 0.23139866128448067 0.6249466959449209 0.2313986612844807 0.4480205344292078
+0.6283855027886068 0.23042754129736456 0.6283855027886068 0.23042754129736456 0.45588010015141517
+0.631808596911287 0.22945721499229021 0.631808596911287 0.22945721499229021 0.4630431257945154
+0.6652655788997904 0.19662635092614933 0.6652655788997904 0.19662635092614933 0.46150287988251987
+0.6589925308795604 0.1999707337874105 0.6589925308795604 0.1999707337874105 0.45766585308764623
+0.6631716638010416 0.19999071531495247 0.6631716638010418 0.19999071531495247 0.46421198766514893
+0.6569182747525301 0.20329847905492934 0.6569182747525301 0.20329847905492934 0.46048160561609336
+0.6529176729084321 0.2097184054739224 0.6529176729084321 0.20971840547392243 0.4662382193643051
+0.6548744738124684 0.20657744266012715 0.6548744738124684 0.20657744266012715 0.4633722081315102
+0.6468799689679523 0.21315619564062682 0.6468799689679523 0.21315619564062685 0.4624076085901441
+0.6454887922058499 0.2165122381447274 0.6454887922058498 0.2165122381447274 0.46661558525736807
+0.6352145154510992 0.2285521626315036 0.6352145154510992 0.2285521626315036 0.46965368443007754
+0.6406762948193769 0.2206157629695208 0.6406762948193769 0.22061576296952082 0.46538173873312155
+0.6396281442909987 0.22419435988682004 0.6396281442909987 0.22419435988682004 0.4706035328791714
+0.6386127935385347 0.227740086143291 0.6386127935385347 0.227740086143291 0.47583705373993634
+0.6442332309712542 0.21990796785850514 0.6442332309712543 0.21990796785850517 0.47118771860420144
+0.6508919627124492 0.2129122082758631 0.6508919627124491 0.21291220827586307 0.46913029340881424
+0.6757321813568594 0.18647105078298465 0.6757321813568594 0.18647105078298465 0.4605409108708783
+0.6799163054145833 0.18647107149846262 0.6799163054145833 0.18647107149846262 0.46637329704221536
+0.673639814529244 0.18986111256226748 0.673639814529244 0.18986111256226748 0.4627513822166304
+0.6715465258687138 0.19324973026885914 0.6715465258687138 0.19324973026885914 0.46509813344027334
+0.6694513732402506 0.19663282513110925 0.6694513732402506 0.19663282513110925 0.4676089066047106
+0.7008368200836693 0.15934801487294062 0.7008368200836693 0.15934801487294062 0.45001266197928463
+0.6987447698744639 0.16273839816810962 0.6987447698744639 0.16273839816810962 0.4536292096703612
+0.6966527196652583 0.16612878146327856 0.6966527196652583 0.16612878146327856 0.45693919767972163
+0.6945606694560528 0.1695191647584474 0.6945606694560528 0.1695191647584474 0.45994913555611383
+0.6924686192468469 0.17290954805361594 0.6924686192468469 0.17290954805361594 0.46268381974705247
+0.6903765690376295 0.17629993134878044 0.6903765690376295 0.17629993134878044 0.46518383503037253
+0.6882845188283184 0.17969031464390903 0.6882845188283184 0.17969031464390903 0.4675024515049695
+0.6861924680039336 0.183080697500166 0.6861924680039336 0.183080697500166 0.4697020366340389
+0.6841004143674853 0.18647107822730494 0.6841004143674853 0.18647107822730494 0.4718501270090229
+0.707112970711285 0.15595763157777137 0.707112970711285 0.15595763157777134 0.4492973147940074
+0.7050209205020797 0.1593480148729404 0.7050209205020797 0.1593480148729404 0.45353704683840407
+0.7133891213389001 0.1525672482826023 0.7133891213389001 0.1525672482826023 0.4473189145433389
+0.7112970711296951 0.15595763157777115 0.7112970711296951 0.15595763157777112 0.4520934596953307
+0.7196652719665152 0.14917686498743343 0.7196652719665152 0.14917686498743343 0.4443822934666776
+0.7175732217573101 0.15256724828260232 0.7175732217573101 0.15256724828260235 0.44949784656602004
+0.7259414225941305 0.1457864816922645 0.7259414225941305 0.1457864816922645 0.44095206946823184
+0.7238493723849254 0.14917686498743343 0.7238493723849254 0.14917686498743343 0.44611900506174695
+0.732217573221746 0.14239609839709555 0.732217573221746 0.14239609839709555 0.43761051357326003
+0.7301255230125409 0.1457864816922645 0.7301255230125409 0.1457864816922645 0.44247011046141377
+0.7405857740585663 0.13561533180675767 0.7405857740585663 0.13561533180675767 0.43153654081043985
+0.7384937238493611 0.1390057151019266 0.7384937238493611 0.1390057151019266 0.43498584904170595
+0.7364016736401561 0.14239609839709555 0.7364016736401561 0.14239609839709555 0.4391541948655014
+0.7468619246861817 0.13222494851158872 0.7468619246861817 0.13222494851158872 0.43143312344225254
+0.7447698744769767 0.13561533180675767 0.7447698744769767 0.13561533180675767 0.4336568662690959
+0.7531380753137972 0.12883456521641978 0.7531380753137972 0.12883456521641978 0.4332291725614464
+0.7510460251045918 0.13222494851158872 0.7510460251045918 0.13222494851158872 0.4340488954017014
+0.7594142259414125 0.12544418192125084 0.7594142259414126 0.12544418192125084 0.4369420664366453
+0.7573221757322074 0.12883456521641978 0.7573221757322074 0.12883456521641978 0.4363444706252108
+0.7656903765690277 0.1220537986260819 0.7656903765690277 0.1220537986260819 0.4422883174953031
+0.7635983263598227 0.12544418192125084 0.7635983263598227 0.12544418192125084 0.4404334471523182
+0.7719665271966429 0.11866341533091296 0.7719665271966428 0.11866341533091296 0.44872114135115654
+0.7698744769874378 0.1220537986260819 0.7698744769874378 0.1220537986260819 0.445918054996345
+0.7782426778242585 0.11527303203574402 0.7782426778242585 0.11527303203574402 0.45551370693682675
+0.7761506276150533 0.11866341533091296 0.7761506276150533 0.11866341533091296 0.452171536894631
+0.7845188284518736 0.11188264874057507 0.7845188284518736 0.11188264874057507 0.4618659198824821
+0.7824267782426685 0.11527303203574402 0.7824267782426685 0.11527303203574402 0.4584336285085228
+0.7928870292886943 0.10510188215023719 0.7928870292886944 0.10510188215023719 0.4698649259974383
+0.790794979079489 0.10849226544540613 0.790794979079489 0.10849226544540613 0.46701234723487656
+0.7887029288702839 0.11188264874057507 0.7887029288702839 0.11188264874057507 0.46391978453563903
+0.7991631799163095 0.10171149885506825 0.7991631799163095 0.10171149885506825 0.47226973724448423
+0.7970711297071045 0.10510188215023719 0.7970711297071045 0.10510188215023719 0.4703157979584009
+0.8054393305439248 0.09832111555989931 0.8054393305439248 0.09832111555989931 0.47220120200214905
+0.8033472803347196 0.10171149885506825 0.8033472803347196 0.10171149885506825 0.47133923065036093
+0.8117154811715401 0.09493073226473037 0.8117154811715402 0.09493073226473037 0.4696043816019993
+0.809623430962335 0.09832111555989931 0.809623430962335 0.09832111555989931 0.4698942051459171
+0.8179916317991555 0.09154034896956142 0.8179916317991555 0.09154034896956142 0.46470029994541934
+0.8158995815899504 0.09493073226473037 0.8158995815899504 0.09493073226473037 0.4660661607834447
+0.8242677824267708 0.08814996567439248 0.8242677824267709 0.08814996567439248 0.45797492207140184
+0.8221757322175657 0.09154034896956142 0.8221757322175657 0.09154034896956142 0.4602162187203667
+0.8305439330543861 0.08475958237922354 0.8305439330543861 0.08475958237922354 0.4501414547695463
+0.828451882845181 0.08814996567439248 0.8284518828451811 0.08814996567439248 0.45295724481653915
+0.8368200836820014 0.0813691990840546 0.8368200836820013 0.0813691990840546 0.44207165348036187
+0.8347280334727963 0.08475958237922354 0.8347280334727963 0.08475958237922354 0.4450999995079732
+0.8430962343096168 0.07797881578888566 0.8430962343096168 0.07797881578888566 0.4346936129599395
+0.8410041841004117 0.0813691990840546 0.8410041841004116 0.0813691990840546 0.43756527478957
+0.8493723849372321 0.07458843249371672 0.8493723849372321 0.07458843249371672 0.42886073187156987
+0.847280334728027 0.07797881578888566 0.847280334728027 0.07797881578888566 0.431262543873466
+0.8577405857740525 0.06780766590337883 0.8577405857740527 0.06780766590337883 0.4233610776241569
+0.8556485355648474 0.07119804919854777 0.8556485355648474 0.07119804919854777 0.42520964519228405
+0.8535564853556423 0.07458843249371672 0.8535564853556422 0.07458843249371672 0.4269466891063209
+0.8640167364016679 0.06441728260820989 0.8640167364016679 0.06441728260820989 0.4228159887912815
+0.8619246861924628 0.06780766590337883 0.8619246861924629 0.06780766590337883 0.4240389765496558
+0.8702928870292832 0.06102689931304095 0.8702928870292831 0.06102689931304095 0.424438875719555
+0.8682008368200781 0.06441728260820989 0.8682008368200781 0.06441728260820989 0.4252450936243295
+0.8765690376568985 0.05763651601787201 0.8765690376568985 0.05763651601787201 0.42761052601808663
+0.8744769874476934 0.06102689931304095 0.8744769874476933 0.06102689931304095 0.42833704071506107
+0.8828451882845139 0.054246132722703067 0.8828451882845139 0.054246132722703067 0.43147271566436046
+0.8807531380753088 0.05763651601787201 0.8807531380753088 0.05763651601787201 0.4325249995876082
+0.8891213389121292 0.050855749427534125 0.8891213389121292 0.050855749427534125 0.43506465162389557
+0.8870292887029241 0.054246132722703067 0.887029288702924 0.054246132722703067 0.4368520610875725
+0.8953974895397445 0.04746536613236518 0.8953974895397446 0.04746536613236518 0.43745171059617016
+0.8933054393305394 0.050855749427534125 0.8933054393305394 0.050855749427534125 0.44033199733204303
+0.9016736401673598 0.04407498283719624 0.9016736401673598 0.04407498283719624 0.4378258400137744
+0.8995815899581547 0.04746536613236518 0.8995815899581547 0.04746536613236518 0.44206542701141016
+0.9100418410041803 0.03729421624685836 0.9100418410041803 0.03729421624685836 0.42893681343229045
+0.9079497907949752 0.0406845995420273 0.9079497907949751 0.0406845995420273 0.43557143857159236
+0.9058577500627646 0.044074976513796583 0.9058577500627646 0.044074976513796583 0.44132230551937296
+0.9163179916317956 0.03390383295168942 0.9163179916317956 0.03390383295168942 0.4222530706254292
+0.9142259414225905 0.03729421624685836 0.9142259414225905 0.03729421624685836 0.4302997775045974
+0.9225941423809602 0.030513407996752246 0.9225941423809602 0.030513407996752246 0.41255275272216085
+0.9205021347065737 0.03390371255147675 0.9205021347065737 0.03390371255147675 0.42185800240378235
+0.9288704251140811 0.027122938728301238 0.928870425114081 0.027122938728301238 0.40000920693112324
+0.9267784552461366 0.030513093353255073 0.9267784552461366 0.030513093353255073 0.4103206356507279
+0.9351470779338596 0.023732518459375185 0.9351470779338596 0.023732518459375185 0.38498178635274677
+0.9330553379050249 0.02712255167389721 0.9330553379050249 0.02712255167389721 0.39596855603301645
+0.9414248061008449 0.02034192180505048 0.9414248061008449 0.02034192180505048 0.36798184867703737
+0.9393333816079105 0.023732019808658408 0.9393333816079105 0.023732019808658408 0.3792585590308653
+0.9477033370644127 0.016950555606395308 0.9477033370644127 0.016950555606395305 0.3496409804739526
+0.9456130079426462 0.020340557508317644 0.9456130079426462 0.020340557508317644 0.360790049379599
+0.9539823773888393 0.013557344832412001 0.9539823773888393 0.013557344832412001 0.33067927250737833
+0.9518927783610976 0.01694717292148039 0.9518927783610976 0.01694717292148039 0.3412784984041986
+0.9602616471899381 0.01016152613184835 0.9602616471899381 0.01016152613184835 0.311883234357676
+0.9581724381720709 0.013549429487405326 0.9581724381720708 0.013549429487405326 0.32152103271680593
+0.9665359554764971 0.006764724753687424 0.9665359554764971 0.006764724753687424 0.29409874434087785
+0.9644455361526755 0.010147818098212495 0.9644455361526755 0.010147818098212495 0.30239692142577157
+0.9707245194975905 0.006757549501464413 0.9707245194975905 0.006757549501464413 0.28479279096720495
+0.006780743552500678 0.974929682109221 0.006780743552500677 0.974929682109221 0.06862848295857545
+0.010131541843706121 0.9686983470643061 0.010131541843706121 0.9686983470643061 0.07307631386491299
+0.01010844667814648 0.9729136381144599 0.010108446678146478 0.97291363811446 0.07045414631789049
+0.013510972002829934 0.9623688662623338 0.013510972002829936 0.9623688662623336 0.07798152876135594
+0.013471011965650705 0.9665474661250973 0.013471011965650705 0.9665474661250973 0.07531765023234714
+0.01690797055834741 0.9560777293242536 0.016907970558347415 0.9560777293242536 0.08302229106609806
+0.016877285266137035 0.9602659461390418 0.016877285266137035 0.9602659461390418 0.08044175495159901
+0.02031837932986533 0.9497976128206136 0.02031837932986533 0.9497976128206137 0.08799161553445044
+0.020296420315680526 0.9539813315057009 0.020296420315680522 0.9539813315057009 0.08562954263842676
+0.02372053001868322 0.9435181025536586 0.02372053001868322 0.9435181025536586 0.09267405843779941
+0.023707068040493495 0.9477065956186036 0.023707068040493495 0.9477065956186036 0.09062924021039824
+0.02710920476290554 0.9372432723375126 0.02710920476290554 0.9372432723375127 0.09686421826410911
+0.02710266323521239 0.9414280165848536 0.027102663235212387 0.9414280165848536 0.09522684673014482
+0.030505396189116723 0.9309694240862437 0.030505396189116723 0.9309694240862437 0.10038866005119455
+0.0304969995325463 0.9351583401199716 0.0304969995325463 0.9351583401199716 0.09922040297710845
+0.03390106669683122 0.9246907123780113 0.03390106669683122 0.9246907123780111 0.10308160799853117
+0.03389696356382319 0.92888029047544 0.03389696356382319 0.92888029047544 0.10243795520147723
+0.037293396448690626 0.9184117853665544 0.037293396448690626 0.9184117853665544 0.10480543914802654
+0.03729230919930702 0.9225985882830025 0.03729230919930702 0.9225985882830025 0.1047178252921057
+0.04068297145942577 0.9163195879785725 0.04068297145942577 0.9163195879785725 0.10593961834009379
+0.04407315041520182 0.9100440739273532 0.04407315041520182 0.9100440739273532 0.10602825831211414
+0.04407169808743482 0.9142294837906508 0.04407169808743482 0.9142294837906508 0.10676079820460316
+0.04746431222874605 0.9037678832988778 0.04746431222874605 0.9037678832988778 0.10495485424390405
+0.047462822022007946 0.9079544118459744 0.047462822022007946 0.9079544118459744 0.1062367377208238
+0.050855346814629915 0.8974906577546964 0.05085534681462991 0.8974906577546964 0.10274581139167416
+0.05085462921686585 0.9016763709942789 0.05085462921686585 0.9016763709942789 0.10452521676108918
+0.05424600784214014 0.89121379366755 0.05424600784214014 0.89121379366755 0.09949129244059988
+0.05424576585269295 0.8953985446363398 0.05424576585269295 0.8953985446363398 0.10168625989078493
+0.05763647966727803 0.8849373682700351 0.05763647966727803 0.8849373682700351 0.09535037644426585
+0.05763640396019865 0.8891216985971905 0.05763640396019865 0.8891216985971905 0.09784633487625692
+0.061026886418502936 0.8786611221020558 0.061026886418502936 0.8786611221020558 0.09055718229395664
+0.06102685278818662 0.8828452908732275 0.06102685278818663 0.8828452908732275 0.09320364631207041
+0.06441727981623417 0.8723849430873346 0.06441727981623417 0.8723849430873346 0.08542557971968824
+0.0644172704004878 0.8765690566675716 0.0644172704004878 0.8765690566675716 0.08803442571098212
+0.0678076631942383 0.8661087910647329 0.0678076631942383 0.8661087910647328 0.08034795139711094
+0.06780765489439013 0.8702929022115521 0.06780765489439013 0.8702929022115521 0.08269591540566192
+0.07119804816407338 0.859832639299886 0.07119804816407338 0.859832639299886 0.07577969002087075
+0.07119804507523665 0.8640167480873299 0.07119804507523665 0.8640167480873299 0.07762048234717499
+0.07458843163230772 0.8577405914733282 0.07458843163230772 0.8577405914733282 0.07328982675443885
+0.07797881574124221 0.8514644372065914 0.07797881574124221 0.8514644372065913 0.07017338291118712
+0.07797881558164194 0.855648542658801 0.07797881558164194 0.855648542658801 0.07092599007535684
+0.08136919913043476 0.8451882851308073 0.08136919913043476 0.8451882851308073 0.06862649040664316
+0.08136919925014259 0.8493723870446263 0.08136919925014259 0.8493723870446263 0.06839943669907654
+0.08475958239443511 0.8389121340784814 0.08475958239443511 0.8389121340784814 0.0687805656756994
+0.0847595824316368 0.8430962349650669 0.0847595824316368 0.8430962349650669 0.06757476552907417
+0.08814996555299737 0.8326359834138315 0.08814996555299737 0.8326359834138316 0.07049292887195757
+0.08814996521056624 0.8368200842415624 0.08814996521056624 0.8368200842415624 0.06845509122052473
+0.09154034886511238 0.8263598328185232 0.09154034886511238 0.8263598328185232 0.0733977631446483
+0.09154034855924374 0.830543933787117 0.09154034855924374 0.8305439337871171 0.07077283043780801
+0.09493073220520905 0.8200836821805432 0.09493073220520905 0.8200836821805432 0.07702252104978581
+0.09493073202555624 0.8242677831178065 0.09493073202555624 0.8242677831178064 0.07408471635836693
+0.09832111553403178 0.813807531474075 0.09832111553403178 0.813807531474075 0.0808989090382235
+0.09832111545597932 0.8179916321683364 0.09832111545597932 0.8179916321683364 0.07789907825817839
+0.1017114988454274 0.8075313807899879 0.1017114988454274 0.8075313807899879 0.08463045103956975
+0.10171149881648865 0.8117154813152765 0.10171149881648865 0.8117154813152766 0.08177069957068885
+0.10510188214716798 0.8012552301380569 0.10510188214716798 0.801255230138057 0.08791991804666487
+0.10510188213805687 0.8054393305925491 0.10510188213805687 0.805439330592549 0.08534734068597903
+0.1084922654421125 0.7991631799308839 0.1084922654421125 0.7991631799308839 0.08838289443913826
+0.11188264873977392 0.7928870292927958 0.11188264873977392 0.7928870292927958 0.09073492745449728
+0.11188264873752467 0.7970711297224908 0.11188264873752467 0.7970711297224908 0.08883371536784891
+0.11527303203555178 0.7866108786621745 0.11527303203555177 0.7866108786621745 0.09235700026316895
+0.1152730320350082 0.7907949790835863 0.1152730320350082 0.7907949790835863 0.09088531982018526
+0.11866341533087037 0.7803347280337111 0.11866341533087037 0.7803347280337111 0.09328975825658824
+0.11866341533075579 0.7845188284527812 0.11866341533075579 0.7845188284527812 0.0922274161578054
+0.12205379862607792 0.7740585774058643 0.12205379862607792 0.7740585774058643 0.09365123999037102
+0.12205379862607464 0.7782426778243002 0.12205379862607464 0.7782426778243002 0.09293955901644245
+0.12544418192124354 0.7677824267782524 0.12544418192124354 0.7677824267782524 0.09362512999941208
+0.1254441819212276 0.7719665271967018 0.1254441819212276 0.7719665271967018 0.0931710278121224
+0.12883456521641312 0.761506276150634 0.12883456521641312 0.761506276150634 0.09344489969734894
+0.12883456521639972 0.765690376569073 0.12883456521639972 0.765690376569073 0.09312674730124536
+0.13222494851158378 0.755230125523015 0.1322249485115838 0.755230125523015 0.09337180248069209
+0.13222494851157704 0.759414225941439 0.13222494851157704 0.759414225941439 0.09304845038889144
+0.13561533180675395 0.7489539748953972 0.13561533180675392 0.7489539748953972 0.09366598830544727
+0.13561533180675156 0.753138075313812 0.13561533180675156 0.753138075313812 0.09318979054405128
+0.13900571510192342 0.7426778242677811 0.13900571510192342 0.7426778242677811 0.09455302270714272
+0.139005715101923 0.7468619246861917 0.13900571510192303 0.7468619246861917 0.09378618190639788
+0.14239609839709233 0.7405857740585761 0.14239609839709233 0.7405857740585761 0.09502351933168328
+0.1457864816922613 0.7343096234309607 0.1457864816922613 0.7343096234309607 0.09701307208980124
+0.14578648169226116 0.7384937238493712 0.14578648169226116 0.7384937238493712 0.09570368595777695
+0.1491768649874302 0.7280334728033457 0.1491768649874302 0.7280334728033457 0.09978009331001116
+0.14917686498743016 0.7322175732217561 0.14917686498743013 0.7322175732217561 0.09798987505147207
+0.1525672482825991 0.7217573221757307 0.15256724828259907 0.7217573221757307 0.10326962341741285
+0.1525672482825991 0.7259414225941407 0.15256724828259907 0.7259414225941407 0.10099081626290295
+0.15595763157776799 0.7154811715481157 0.15595763157776799 0.7154811715481157 0.10736663176858585
+0.15595763157776799 0.7196652719665257 0.15595763157776799 0.7196652719665257 0.10462687316460477
+0.1593480148729369 0.7092050209205008 0.1593480148729369 0.7092050209205008 0.11192316286500663
+0.1593480148729369 0.7133891213389107 0.1593480148729369 0.7133891213389107 0.10877474856098303
+0.16273839816810579 0.7029288702928858 0.16273839816810579 0.7029288702928858 0.11678483264455142
+0.16273839816810579 0.7071129707112958 0.16273839816810579 0.7071129707112958 0.1132931290340445
+0.1661287814632747 0.7008368200836808 0.1661287814632747 0.7008368200836808 0.11804514013968971
+0.16951916475844359 0.6987447698744758 0.16951916475844356 0.6987447698744758 0.11913435166022758
+0.17290954805361247 0.6966527196652708 0.17290954805361247 0.6966527196652708 0.12005079568312761
+0.1762999313487814 0.6945606694560658 0.1762999313487814 0.6945606694560658 0.12080268914599991
+0.1796903146439503 0.6924686192468608 0.17969031464395033 0.6924686192468608 0.12140692595993541
+0.18308069793911919 0.6903765690376558 0.18308069793911919 0.6903765690376558 0.12188758721366855
+0.18647103934978085 0.6841003523496604 0.18647103934978085 0.6841003523496604 0.1260993196538995
+0.18986094697979738 0.6820076073456796 0.18986094697979738 0.6820076073456796 0.12643936461117303
+0.2000105615439829 0.667351724370517 0.2000105615439829 0.667351724370517 0.135612416945037
+0.20684465806244956 0.6589459559637608 0.2068446580624496 0.6589459559637608 0.14080817391310577
+0.2106138593755849 0.6568438308503357 0.21061385937558488 0.6568438308503356 0.14121316289955146
+0.21577206903922938 0.6475461523085111 0.21577206903922938 0.647546152308511 0.14854772543736716
+0.21865935517792875 0.6452783760267523 0.21865935517792875 0.6452783760267523 0.14962039626288057
+0.22152841953813548 0.643045623410397 0.22152841953813548 0.643045623410397 0.15067690276902232
+0.22440104665918478 0.640792305304391 0.22440104665918478 0.640792305304391 0.15175409233568846
+0.22691516440806278 0.6347963205355301 0.22691516440806278 0.6347963205355301 0.15715537817056743
+0.22978321998062357 0.6324996095414723 0.22978321998062357 0.6324996095414724 0.1582998940012559
+0.23279192882216992 0.6301969821713136 0.23279192882216995 0.6301969821713137 0.1593673506650153
+0.22727861934690516 0.638503327127891 0.22727861934690516 0.638503327127891 0.152858650649376
+0.21315986866342068 0.6536496907048981 0.21315986866342065 0.6536496907048982 0.14332329307032407
+0.21613033415424465 0.6513184595726534 0.21613033415424465 0.6513184595726534 0.1443901825159525
+0.2033884408310286 0.6652560577590355 0.2033884408310286 0.6652560577590355 0.1360448664696767
+0.20677260384086915 0.6631652415517257 0.20677260384086918 0.6631652415517256 0.13652999456266887
+0.19324816712524714 0.6757289626148242 0.19324816712524714 0.6757289626148242 0.13075542945511007
+0.1932488516708107 0.6799127029124472 0.1932488516708107 0.6799127029124472 0.12675686163862873
+0.19663233490014323 0.6736341200173853 0.19663233490014323 0.6736341200173853 0.1310923147805507
+0.20000879147098535 0.6715387830539544 0.20000879147098535 0.6715387830539544 0.13146623902672497
+0.1864710749160529 0.6882845091177199 0.1864710749160529 0.6882845091177199 0.12227420822097805
+0.23851299633317008 0.6187099754047312 0.23851299633317005 0.6187099754047312 0.1701790691237829
+0.2409724713851765 0.6171077439461223 0.2409724713851765 0.6171077439461223 0.17083737499426652
+0.2421773089935681 0.6099234179316957 0.24217730899356812 0.6099234179316957 0.180267174034724
+0.24225949907246347 0.6140271759925217 0.24225949907246352 0.6140271759925217 0.17436950406337481
+0.2543456681286469 0.5906536230993213 0.2543456681286469 0.5906536230993212 0.20604162541642698
+0.2452794637109551 0.6040620243965228 0.24527946371095508 0.6040620243965228 0.18738988764373096
+0.24845773819915826 0.6019121935829101 0.24845773819915826 0.6019121935829101 0.18899884043556103
+0.2513611768560157 0.5962288899091076 0.2513611768560157 0.5962288899091076 0.19716579163402903
+0.2516070225175046 0.5997756686992203 0.2516070225175046 0.5997756686992203 0.19073457428329407
+0.2545116323535665 0.5941431315873066 0.2545116323535665 0.5941431315873066 0.19924545920590855
+0.24551100770571554 0.6077033559450796 0.24551100770571557 0.6077033559450796 0.18156249467669236
+0.23503859302325675 0.6236955559953258 0.23503859302325678 0.6236955559953258 0.16591817056007693
+0.23558313517981777 0.6275736482320192 0.23558313517981774 0.6275736482320192 0.16089078790774422
+0.23840050850954786 0.6221682107374163 0.23840050850954783 0.6221682107374163 0.1658642604851608
+0.4098762540702025 0.38393974536764996 0.4098762540702025 0.38393974536765 0.4237559161701357
+0.4037152087461817 0.383572689466529 0.4037152087461817 0.383572689466529 0.4035529398159577
+0.40700230616831756 0.38531512361234377 0.4070023061683176 0.38531512361234377 0.41923589342434414
+0.40057169123012387 0.3851980800023518 0.40057169123012387 0.3851980800023518 0.3968824846159485
+0.3937893908324755 0.38520095560458695 0.3937893908324755 0.38520095560458695 0.3713814948354959
+0.39721116574545917 0.3868287418254222 0.39721116574545917 0.3868287418254222 0.3880964754110257
+0.3905684778161858 0.38703919461454833 0.3905684778161858 0.38703919461454833 0.361768326548122
+0.3838434472851022 0.38754896862527666 0.3838434472851022 0.38754896862527666 0.3343537126463783
+0.3874026534859688 0.3889575260614144 0.38740265348596875 0.3889575260614144 0.35129634008448735
+0.3805600178255915 0.3895618185406972 0.3805600178255915 0.3895618185406972 0.32217697099727255
+0.37292928170118755 0.390128304592248 0.3729292817011875 0.39012830459224807 0.28976021516659545
+0.3772002743905806 0.3917110420444219 0.3772002743905806 0.3917110420444219 0.308810263087884
+0.37026572262351104 0.3928179609876492 0.37026572262351104 0.3928179609876492 0.27881267244942465
+0.36402926352310117 0.39377354460253466 0.3640292635231011 0.3937735446025346 0.2528796072672134
+0.36160795286645897 0.39569054626941563 0.3616079528664589 0.39569054626941563 0.24268656856165058
+0.3674788166461427 0.3950511734462249 0.3674788166461427 0.3950511734462249 0.2668040728309826
+0.35907618957345055 0.3978453324436837 0.3590761895734506 0.3978453324436837 0.23201392621411543
+0.3535116977055519 0.39911630283010663 0.3535116977055519 0.39911630283010663 0.2116496990282086
+0.351113721903213 0.4013690589775456 0.351113721903213 0.40136905897754555 0.20286419935410435
+0.35709842555919036 0.4000313151419169 0.3570984255591903 0.40003131514191687 0.22362062912439762
+0.3487408203018233 0.40365579426942544 0.34874082030182324 0.40365579426942544 0.19494347232727272
+0.3428233924605792 0.40514509823462425 0.3428233924605792 0.40514509823462425 0.18022603181121966
+0.3405531571983314 0.4076011882172496 0.3405531571983314 0.4076011882172496 0.1761440546302592
+0.3464309394578686 0.40597543202414266 0.3464309394578686 0.4059754320241426 0.18822118877892904
+0.3382997414288984 0.41011386585259785 0.3382997414288984 0.41011386585259785 0.17376202814089134
+0.332376849506977 0.4120033790838975 0.332376849506977 0.4120033790838975 0.1700350822683833
+0.3302007502642908 0.41466605650124694 0.3302007502642908 0.41466605650124694 0.17282482090461057
+0.33609080812975495 0.4126677041850472 0.33609080812975495 0.4126677041850472 0.1732851990178259
+0.32806509555799385 0.41737767238307155 0.32806509555799385 0.41737767238307155 0.17749823720258504
+0.32216932546403204 0.41965344516079134 0.32216932546403204 0.41965344516079134 0.1846505623263498
+0.32008249788400644 0.42252819373386863 0.32008249788400644 0.4225281937338687 0.1933804028802875
+0.32597515379862707 0.42013118144255274 0.32597515379862707 0.42013118144255274 0.1839003954567978
+0.31807245989627814 0.42546202177593895 0.31807245989627814 0.4254620217759389 0.20326949308299555
+0.3123094936104546 0.4281641996207584 0.3123094936104546 0.4281641996207584 0.2165568593497855
+0.31028515710758864 0.431166210859368 0.31028515710758864 0.43116621085936796 0.22804056878349585
+0.3161379050981368 0.42842026839388253 0.3161379050981368 0.42842026839388253 0.21399195691351422
+0.30825216975065683 0.434186634761582 0.30825216975065683 0.434186634761582 0.23982881548836746
+0.303078407030165 0.4378473657690605 0.3030784070301649 0.4378473657690605 0.25592651294595803
+0.3013241691002851 0.44104580808560595 0.3013241691002851 0.44104580808560595 0.26774365750109747
+0.30664496148351406 0.4374868731365873 0.30664496148351406 0.4374868731365873 0.2522220361569054
+0.2994228557388856 0.44407891895623286 0.2994228557388856 0.4440789189562329 0.27878229219547324
+0.2933878983738327 0.45241958515673253 0.2933878983738327 0.4524195851567326 0.3066595355043376
+0.29552930983660264 0.44972619111874307 0.2955293098366027 0.44972619111874307 0.298196830577502
+0.2974733186135526 0.44707340248094035 0.2974733186135526 0.44707340248094035 0.2892929954856374
+0.2916183830792422 0.45543188680451246 0.2916183830792422 0.45543188680451246 0.3155558243436876
+0.2861864830133066 0.4645291321895202 0.28618648301330657 0.46452913218952024 0.33815368212394953
+0.28978976483119095 0.4583918882784575 0.28978976483119095 0.4583918882784575 0.3236249615468117
+0.28800354798583844 0.46142462688161084 0.28800354798583844 0.46142462688161084 0.33118197157962964
+0.2844762212436907 0.46769142799315877 0.2844762212436907 0.4676914279931587 0.3445236005892163
+0.2836359240619109 0.4706774478242436 0.2836359240619109 0.4706774478242436 0.35015145680781684
+0.2811493206577476 0.47311731208436514 0.2811493206577476 0.4731173120843652 0.3532712592808806
+0.27972181520410866 0.47689218544482537 0.2797218152041086 0.4768921854448253 0.3585003574389383
+0.27816605782422554 0.48044636588615297 0.27816605782422554 0.480446365886153 0.3623000530803154
+0.27667018185592857 0.4838881682856297 0.27667018185592857 0.4838881682856297 0.36506213740174914
+0.27513551304679673 0.4871029261925659 0.27513551304679673 0.4871029261925659 0.3666699801441884
+0.2733942313113375 0.49021872507738795 0.2733942313113375 0.49021872507738795 0.3671774179012621
+0.2723317824416801 0.4937260249529982 0.27233178244168016 0.4937260249529983 0.36793557133399735
+0.27114272007745444 0.49723308473371913 0.2711427200774544 0.49723308473371913 0.36767763176687285
+0.2699392485881606 0.500740064722851 0.2699392485881606 0.500740064722851 0.36657689076559524
+0.2687357544689493 0.5042419705866769 0.2687357544689493 0.5042419705866769 0.3646951927626357
+0.26754085521833637 0.5077827133345062 0.2675408552183364 0.5077827133345062 0.3620684359924102
+0.266409577501704 0.5114147932953249 0.2664095775017041 0.5114147932953249 0.35874850915956275
+0.26537996409771 0.5151280024438465 0.26537996409771 0.5151280024438466 0.3547593521014001
+0.2645141773906024 0.5188324191229612 0.2645141773906024 0.5188324191229611 0.35022779192071957
+0.2636762711997055 0.522347145090383 0.26367627119970555 0.522347145090383 0.34533805282164476
+0.26274165996471455 0.5259940527559089 0.26274165996471455 0.5259940527559089 0.3396495520359459
+0.26177432229941416 0.5297308929058783 0.26177432229941416 0.5297308929058783 0.33329750602321034
+0.2602964039810308 0.5338719829141159 0.26029640398103077 0.5338719829141159 0.3255426608282624
+0.2602687544216613 0.5378388166928225 0.2602687544216613 0.5378388166928225 0.318462595247427
+0.25985152031493447 0.5414135051025045 0.25985152031493447 0.5414135051025045 0.3114821487740411
+0.259339089183089 0.5449277435787897 0.25933908918308907 0.5449277435787897 0.3042688202488699
+0.25880015104819326 0.5483791606321878 0.25880015104819326 0.5483791606321878 0.2969420266164606
+0.2582947112177866 0.5516394374219434 0.25829471121778663 0.5516394374219434 0.28985328316354225
+0.25798642341573147 0.5549195977345021 0.25798642341573147 0.554919597734502 0.28266324216751765
+0.2580279290514717 0.5578874028926272 0.2580279290514717 0.5578874028926272 0.2761775580102675
+0.2577656533546569 0.5612909936584477 0.2577656533546569 0.5612909936584477 0.26854799421289527
+0.25757049202132715 0.5647203539164528 0.25757049202132715 0.5647203539164528 0.26083000833493225
+0.25740264855004963 0.5681453238024843 0.25740264855004963 0.5681453238024843 0.2531127704496609
+0.25727135172462356 0.571555324601544 0.2572713517246235 0.571555324601544 0.24545990614128102
+0.25721583072158594 0.5749325819625043 0.25721583072158594 0.5749325819625043 0.23793153613212334
+0.2572316206721308 0.5783022374272624 0.2572316206721308 0.5783022374272625 0.23050142164243195
+0.2572864947979409 0.5817135307230425 0.2572864947979409 0.5817135307230425 0.2230861991757502
+0.2573801655388081 0.5851567918931955 0.2573801655388081 0.5851567918931955 0.21573262626368786
+0.25749387983387123 0.5886059984703674 0.25749387983387123 0.5886059984703674 0.20853336139754472
+0.41223086176906987 0.38265495682665157 0.41223086176906987 0.38265495682665157 0.4261056884678857
+0.413623227874964 0.3798342016881527 0.41362322787496403 0.3798342016881527 0.42116815085493975
+0.41770060183539737 0.36814382022162784 0.4177006018353974 0.36814382022162784 0.4024659263565585
+0.4172947081030899 0.3715245999845618 0.41729470810308994 0.3715245999845618 0.4080956330827475
+0.41699418216591144 0.3747878598434652 0.4169941821659115 0.37478785984346524 0.41483131279012736
+0.41682785183802457 0.37802475891428294 0.41682785183802457 0.37802475891428294 0.42296125306872173
+0.422866585030909 0.356727170705818 0.422866585030909 0.356727170705818 0.3970175792859298
+0.42220965297753343 0.3602021318906985 0.42220965297753343 0.3602021318906985 0.39936319115460095
+0.42166505171909674 0.3636513775589818 0.4216650517190967 0.3636513775589818 0.40262976622813434
+0.42120289200166444 0.36707528576585036 0.42120289200166444 0.36707528576585036 0.4069341889988864
+0.4299979089246393 0.34517619189060744 0.4299979089246393 0.3451761918906074 0.3995941308361148
+0.4277949311405266 0.3482655197009226 0.4277949311405265 0.3482655197009227 0.3985545723162795
+0.42718775030911715 0.35238299483082314 0.4271877503091171 0.3523829948308231 0.40031822908667775
+0.4265963178513727 0.355861703311303 0.4265963178513727 0.355861703311303 0.40213090345902974
+0.4388836950003367 0.334278198954388 0.4388836950003367 0.334278198954388 0.40052303340670964
+0.4350081584526794 0.3382349786611357 0.4350081584526794 0.33823497866113567 0.40071242090387255
+0.43787366730339417 0.3374306120099654 0.4378736673033941 0.3374306120099653 0.4023022209722343
+0.43432096176296575 0.3414772383697055 0.43432096176296575 0.3414772383697055 0.4021821916196144
+0.4333614525896635 0.3447149601053294 0.4333614525896636 0.3447149601053294 0.403241105079477
+0.44856035366319214 0.3236727070106969 0.44856035366319214 0.3236727070106969 0.38986385102367827
+0.4441432452661891 0.3273396754531838 0.4441432452661891 0.3273396754531838 0.39542386798550083
+0.4474329715851611 0.3270025859635778 0.4474329715851611 0.32700258596357784 0.3942544681887031
+0.4431158871150931 0.33069651151112867 0.4431158871150931 0.33069651151112867 0.39870506599934713
+0.442157164904644 0.33391435000421094 0.442157164904644 0.33391435000421094 0.40146536717836384
+0.46510136921863626 0.308530617499809 0.46510136921863626 0.308530617499809 0.34179253969974366
+0.462904382064778 0.3116105076140641 0.462904382064778 0.3116105076140641 0.3520798889120171
+0.46029468910505983 0.31494527268321215 0.46029468910505983 0.3149452726832122 0.3629470660940601
+0.4530879968131814 0.3201752590024142 0.4530879968131814 0.3201752590024142 0.38155529135538085
+0.45974971028981826 0.3189079839690832 0.4597497102898183 0.3189079839690832 0.3700068173720074
+0.4562514226881864 0.31971714780496974 0.45625142268818647 0.3197171478049698 0.3768650561994033
+0.45189785399960775 0.3234436430103167 0.45189785399960775 0.3234436430103167 0.3870776807607607
+0.47284782598546626 0.30254894876539223 0.4728478259854663 0.30254894876539223 0.30917140782714014
+0.4708347283674657 0.30568357211746994 0.4708347283674657 0.30568357211746994 0.32079279132200295
+0.47650308748961173 0.3025600343428532 0.47650308748961173 0.3025600343428532 0.29636632485110287
+0.46881756925237195 0.3087850575533403 0.46881756925237195 0.30878505755334024 0.33202443470076554
+0.4929899395367122 0.29081717916940764 0.49298993953671216 0.29081717916940764 0.20987528337483466
+0.4906751774108574 0.29343029337522325 0.4906751774108575 0.29343029337522325 0.22361750774577183
+0.48861046766760624 0.2953121249786551 0.48861046766760624 0.2953121249786551 0.23538626881231534
+0.4843831878527188 0.298329107150377 0.4843831878527188 0.298329107150377 0.258230667790461
+0.48202747974998705 0.30027191064658093 0.482027479749987 0.30027191064658093 0.27111807668347193
+0.4876825395953622 0.2985665568173771 0.4876825395953622 0.29856655681737715 0.24402755701460221
+0.4799681018477949 0.30310333681368495 0.479968101847795 0.303103336813685 0.28388764166979796
+0.5087785993166255 0.28354353727950543 0.5087785993166255 0.28354353727950543 0.1308750427909439
+0.5008544987028879 0.2869023349374298 0.5008544987028879 0.2869023349374298 0.16900375435644624
+0.506490053439922 0.28596329379798746 0.506490053439922 0.28596329379798746 0.14226454348251708
+0.5042400168693622 0.287988812215328 0.5042400168693622 0.287988812215328 0.1539299718443672
+0.49859708452845136 0.2892884898608081 0.49859708452845136 0.2892884898608081 0.18176525505585414
+0.4963129511237457 0.2917960567611506 0.4963129511237457 0.2917960567611506 0.19514236028192788
+0.5253054334696979 0.27748149881297773 0.5253054334696979 0.27748149881297773 0.09146637606861362
+0.517830784319606 0.28023479922927425 0.517830784319606 0.28023479922927425 0.0986513130336878
+0.5220456866983131 0.27970515177189037 0.5220456866983131 0.2797051517718904 0.09258620001886354
+0.520375958866534 0.2826858177297274 0.520375958866534 0.2826858177297274 0.0959241386869446
+0.5147029103034128 0.2825789504597449 0.5147029103034128 0.2825789504597449 0.10826633386543814
+0.5120897050555245 0.2848997546295869 0.5120897050555245 0.2848997546295869 0.11844741373434366
+0.5435231749525302 0.2727417457815626 0.5435231749525302 0.2727417457815626 0.15271724354834093
+0.5343666593952053 0.2749388039044506 0.5343666593952053 0.27493880390445063 0.11240319544981374
+0.5405541436521966 0.27469449496587856 0.5405541436521966 0.27469449496587856 0.14081415635784944
+0.5376646389365123 0.27666427445182334 0.5376646389365122 0.27666427445182334 0.1298722098035965
+0.5315363257346423 0.27700375571707564 0.5315363257346423 0.27700375571707564 0.10477621628851501
+0.5286953546031641 0.2790724514076489 0.5286953546031641 0.27907245140764886 0.09895870161836008
+0.5529309110596472 0.27058555775583615 0.5529309110596472 0.2705855577558362 0.20074904334236598
+0.5498522417153218 0.27258350666516706 0.5498522417153219 0.2725835066651671 0.1876108310235146
+0.5468053986906755 0.2745587238369212 0.5468053986906755 0.2745587238369212 0.17453379150610382
+0.5562536157846188 0.2722563272841249 0.5562536157846188 0.2722563272841249 0.22394028573380229
+0.6112544284558562 0.23826364162567948 0.6112544284558562 0.2382636416256795 0.41619256236857505
+0.6088464411625901 0.24006526152024926 0.6088464411625901 0.24006526152024923 0.41082220800936126
+0.5721192703198433 0.2549600655317944 0.5721192703198433 0.25496006553179434 0.27122440051718794
+0.6056200946399071 0.24146724489362956 0.6056200946399071 0.24146724489362956 0.40106717151736904
+0.5755860487101015 0.2537383519383258 0.5755860487101015 0.2537383519383258 0.28680103620318337
+0.5789990641290628 0.25255278481192767 0.5789990641290627 0.2525527848119276 0.3018507460181337
+0.5823763061605537 0.2513832697959614 0.5823763061605537 0.2513832697959613 0.31639600669905293
+0.5857104733858067 0.25033866080035044 0.5857104733858067 0.25033866080035044 0.33060186327186547
+0.5888401207444587 0.2486321886142509 0.5888401207444587 0.24863218861425088 0.34210903559171985
+0.5918046926919327 0.2471276195886669 0.5918046926919328 0.2471276195886669 0.3528656512364299
+0.6021770254916854 0.24287287209340783 0.6021770254916854 0.24287287209340783 0.38986384295005455
+0.5952973692946716 0.24571240437140474 0.5952973692946716 0.24571240437140474 0.36587905339570476
+0.5987447221002669 0.2442942031527595 0.5987447221002667 0.2442942031527595 0.37817268666386195
+0.5679461910485396 0.2605844230638458 0.5679461910485396 0.2605844230638458 0.2616759839430341
+0.564640796049985 0.2658295338367569 0.564640796049985 0.2658295338367569 0.2561070974727562
+0.5647786147216337 0.26873198457301484 0.5647786147216337 0.26873198457301484 0.2642324014225844
+0.5596365914431645 0.27382666371993225 0.5596365914431645 0.27382666371993225 0.24775197555258943
+0.563102095384226 0.2715633275514749 0.563102095384226 0.2715633275514749 0.26210572072773525
+0.5675372889274133 0.26428323937443043 0.5675372889274133 0.2642832393744304 0.2684380107515794
+0.5712679706268204 0.2589243198700891 0.5712679706268204 0.25892431987008907 0.2757834909809324
+0.6141281228300675 0.2382048135877648 0.6141281228300675 0.2382048135877648 0.42672964563106097
+0.6173604420581111 0.2369948976116268 0.6173604420581111 0.23699489761162676 0.4354924276049558
+0.6206741105544079 0.23600152913998984 0.6206741105544079 0.23600152913998987 0.4443991606080561
+0.6240729828485825 0.235044009376475 0.6240729828485825 0.235044009376475 0.45303508561769634
+0.6275002051982072 0.23410133765726768 0.6275002051982072 0.23410133765726768 0.46112802834321925
+0.6309129207616867 0.2330909527730677 0.6309129207616867 0.2330909527730677 0.46838951026025605
+0.6343072047110953 0.23207729576444328 0.6343072047110953 0.23207729576444328 0.474934668694376
+0.667355166913489 0.20000360868593847 0.667355166913489 0.20000360868593847 0.4702963956593634
+0.661081100119105 0.20333882028616634 0.6610811001191051 0.20333882028616634 0.46707900489371296
+0.6652602888479023 0.20335976172273365 0.6652602888479023 0.20335976172273365 0.47316850384053083
+0.6589953245943762 0.2066655649220677 0.6589953245943762 0.2066655649220677 0.47007451455602406
+0.6548072503661494 0.2128162483572254 0.6548072503661494 0.21281624835722537 0.4753781214504382
+0.6569048923472004 0.20994433896357598 0.6569048923472004 0.20994433896357598 0.4730905708436664
+0.6492276822972963 0.21613562674036044 0.6492276822972963 0.21613562674036044 0.4727371375984087
+0.6478714889951884 0.21942135000502017 0.6478714889951885 0.21942135000502017 0.47703745477308795
+0.6376462231361923 0.2312531252015848 0.6376462231361923 0.2312531252015848 0.4811151642007059
+0.6431116488251886 0.2234416300179167 0.6431116488251886 0.2234416300179167 0.47632946795519
+0.6420356802988899 0.22698710313800274 0.6420356802988899 0.22698710313800277 0.4816094660566273
+0.6409799487229032 0.23052117224105667 0.6409799487229032 0.2305211722410567 0.4869239923132847
+0.6466191539127496 0.22277185933149607 0.6466191539127496 0.22277185933149604 0.4816969231173256
+0.6527854276889878 0.21584956196482083 0.6527854276889878 0.21584956196482083 0.47818642622672497
+0.6778241356614374 0.1898613510522683 0.6778241356614374 0.1898613510522683 0.4685596236474105
+0.6820083246463925 0.1898614306315628 0.6820083246463925 0.1898614306315628 0.4740152659281593
+0.6757315141117884 0.19325107260558627 0.6757315141117884 0.19325107260558627 0.4708598478171206
+0.6736365346937446 0.19663680338322173 0.6736365346937446 0.19663680338322173 0.4733139713433183
+0.6715395249679704 0.20001236554059476 0.6715395249679704 0.20001236554059476 0.4759487137975786
+0.7029288702928745 0.1627383981681095 0.7029288702928745 0.1627383981681095 0.45748043077684225
+0.7008368200836692 0.16612878146327856 0.7008368200836692 0.16612878146327856 0.4610997117868538
+0.6987447698744637 0.16951916475844767 0.6987447698744637 0.16951916475844767 0.4643889984365459
+0.6966527196652575 0.17290954805361666 0.6966527196652575 0.17290954805361666 0.46736293042453037
+0.6945606694560492 0.17629993134878455 0.6945606694560492 0.17629993134878455 0.470054559970615
+0.6924686192468195 0.17969031464394403 0.6924686192468195 0.17969031464394403 0.47251254117219915
+0.6903765688760425 0.1830806978240704 0.6903765688760425 0.1830806978240704 0.4747977323628762
+0.6882845176181357 0.18647108035206925 0.6882845176181357 0.18647108035206925 0.47697933616933735
+0.6861924555181341 0.1898614549671126 0.6861924555181341 0.1898614549671126 0.479130710058479
+0.70920502092049 0.1593480148729401 0.70920502092049 0.15934801487294006 0.45664397511999005
+0.707112970711285 0.1627383981681091 0.707112970711285 0.1627383981681091 0.46090447152437336
+0.7154811715481051 0.15595763157777118 0.7154811715481051 0.15595763157777118 0.4545252584675002
+0.7133891213389001 0.15934801487293984 0.7133891213389001 0.15934801487293984 0.4593609012502176
+0.7217573221757202 0.15256724828260237 0.7217573221757202 0.15256724828260237 0.45138971069994865
+0.7196652719665152 0.15595763157777132 0.7196652719665152 0.15595763157777132 0.4566289427903279
+0.7280334728033359 0.14917686498743343 0.7280334728033359 0.14917686498743343 0.4476637435380307
+0.7259414225941305 0.15256724828260237 0.7259414225941305 0.15256724828260237 0.4530366046991184
+0.734309623430951 0.1457864816922645 0.734309623430951 0.1457864816922645 0.4438975505040789
+0.732217573221746 0.14917686498743343 0.732217573221746 0.14917686498743343 0.44905940403864836
+0.7426778242677714 0.1390057151019266 0.7426778242677714 0.1390057151019266 0.43678205853712565
+0.7405857740585663 0.14239609839709555 0.7405857740585663 0.14239609839709555 0.4406989415377924
+0.7384937238493611 0.1457864816922645 0.7384937238493611 0.1457864816922645 0.44527116242245945
+0.7489539748953868 0.13561533180675767 0.7489539748953868 0.13561533180675767 0.4358721500610839
+0.7468619246861817 0.1390057151019266 0.7468619246861817 0.1390057151019266 0.4386430910492563
+0.7552301255230022 0.13222494851158875 0.7552301255230022 0.13222494851158875 0.43675111185654064
+0.7531380753137972 0.13561533180675767 0.7531380753137972 0.13561533180675767 0.43817148972693415
+0.7615062761506176 0.12883456521641978 0.7615062761506176 0.12883456521641978 0.43947961169806904
+0.7594142259414125 0.13222494851158872 0.7594142259414126 0.13222494851158872 0.43950162632662676
+0.7677824267782328 0.12544418192125084 0.7677824267782328 0.12544418192125084 0.44382517979555763
+0.7656903765690277 0.12883456521641978 0.7656903765690277 0.12883456521641978 0.4425715608189253
+0.7740585774058482 0.1220537986260819 0.7740585774058482 0.1220537986260819 0.44929081645361263
+0.7719665271966429 0.12544418192125084 0.7719665271966428 0.12544418192125084 0.44703634936126146
+0.7803347280334635 0.11866341533091296 0.7803347280334635 0.11866341533091296 0.4551911015808144
+0.7782426778242585 0.1220537986260819 0.7782426778242585 0.1220537986260819 0.4523179703433698
+0.7866108786610786 0.11527303203574402 0.7866108786610786 0.11527303203574402 0.4607555409707294
+0.7845188284518736 0.11866341533091296 0.7845188284518736 0.11866341533091296 0.45769482140917966
+0.7949790794978994 0.10849226544540613 0.7949790794978994 0.10849226544540613 0.4679242959888416
+0.7928870292886943 0.11188264874057507 0.7928870292886944 0.11188264874057507 0.46523678740914304
+0.790794979079489 0.11527303203574402 0.790794979079489 0.11527303203574402 0.46240888742290914
+0.8012552301255146 0.10510188215023719 0.8012552301255146 0.10510188215023719 0.4699053197698639
+0.7991631799163095 0.10849226544540613 0.7991631799163095 0.10849226544540613 0.46800703990725934
+0.8075313807531296 0.10171149885506825 0.8075313807531296 0.10171149885506825 0.4695470493213702
+0.8054393305439247 0.10510188215023719 0.8054393305439246 0.10510188215023719 0.46863382445792806
+0.8138075313807452 0.09832111555989931 0.8138075313807452 0.09832111555989931 0.4667982459121802
+0.8117154811715399 0.10171149885506825 0.8117154811715398 0.10171149885506825 0.4669322427722455
+0.8200836820083606 0.09493073226473037 0.8200836820083605 0.09493073226473037 0.46188710410693085
+0.8179916317991553 0.09832111555989931 0.8179916317991553 0.09832111555989931 0.4629932581160972
+0.8263598326359759 0.09154034896956142 0.8263598326359759 0.09154034896956142 0.45531103427697567
+0.8242677824267708 0.09493073226473037 0.8242677824267709 0.09493073226473037 0.45718722329841827
+0.8326359832635912 0.08814996567439248 0.8326359832635912 0.08814996567439248 0.4477977875245533
+0.8305439330543861 0.09154034896956142 0.8305439330543861 0.09154034896956142 0.4501399081560206
+0.8389121338912066 0.08475958237922354 0.8389121338912066 0.08475958237922354 0.4402331654243817
+0.8368200836820014 0.08814996567439248 0.8368200836820013 0.08814996567439248 0.4426763459448982
+0.8451882845188219 0.0813691990840546 0.845188284518822 0.0813691990840546 0.43355281081977687
+0.8430962343096168 0.08475958237922354 0.8430962343096168 0.08475958237922354 0.4357281231751462
+0.8514644351464372 0.07797881578888566 0.8514644351464372 0.07797881578888566 0.428603902686512
+0.8493723849372321 0.0813691990840546 0.8493723849372321 0.0813691990840546 0.4302051824964482
+0.8598326359832577 0.07119804919854777 0.8598326359832577 0.07119804919854777 0.4250796251228333
+0.8577405857740525 0.07458843249371672 0.8577405857740527 0.07458843249371672 0.42599713829459596
+0.8556485355648474 0.07797881578888566 0.8556485355648474 0.07797881578888566 0.4268456648180991
+0.866108786610873 0.06780766590337883 0.866108786610873 0.06780766590337883 0.4257341750368772
+0.8640167364016679 0.07119804919854777 0.8640167364016679 0.07119804919854777 0.4259840633386944
+0.8723849372384883 0.06441728260820989 0.8723849372384883 0.06441728260820989 0.4285719087499608
+0.8702928870292832 0.06780766590337883 0.8702928870292831 0.06780766590337883 0.4283976262438995
+0.8786610878661036 0.06102689931304095 0.8786610878661038 0.06102689931304095 0.4329025262759754
+0.8765690376568985 0.06441728260820989 0.8765690376568985 0.06441728260820989 0.4326765635188498
+0.884937238493719 0.05763651601787201 0.884937238493719 0.05763651601787201 0.43780314834798023
+0.8828451882845139 0.06102689931304095 0.8828451882845139 0.06102689931304095 0.4379639107022551
+0.8912133891213343 0.054246132722703067 0.8912133891213344 0.054246132722703067 0.44225991317002705
+0.8891213389121292 0.05763651601787201 0.8891213389121292 0.05763651601787201 0.44324571848425093
+0.8974895397489496 0.050855749427534125 0.8974895397489496 0.050855749427534125 0.44529794596490113
+0.8953974895397445 0.054246132722703067 0.8953974895397446 0.054246132722703067 0.4474914950199876
+0.9037657456590343 0.04746532924586724 0.9037657456590343 0.04746532924586724 0.4460807136944154
+0.9016737879790578 0.05085565096312569 0.9016737879790578 0.0508556509631257 0.44976992461545523
+0.9121338912133854 0.0406845995420273 0.9121338912133855 0.0406845995420273 0.4375907462078182
+0.9100419061160018 0.04407493996257302 0.9100419061160018 0.04407493996257302 0.44397441292775003
+0.9079501414659285 0.047465133807288645 0.9079501414659285 0.047465133807288645 0.4493296245621457
+0.9184101943142841 0.03729402336571211 0.9184101943142841 0.03729402336571211 0.43059730070805774
+0.9163182371943351 0.04068440954354774 0.9163182371943351 0.04068440954354774 0.4385811640502731
+0.9246866178128874 0.03390307272758429 0.9246866178128874 0.0339030727275843 0.4203065304819
+0.9225950609011484 0.03729304031911553 0.9225950609011484 0.03729304031911553 0.4297465608131454
+0.9309636231400774 0.03051222677433636 0.9309636231400774 0.03051222677433636 0.4069076114051064
+0.9288721272165524 0.03390151259257656 0.9288721272165524 0.03390151259257656 0.41755607005802114
+0.9372419519002887 0.02712145827465352 0.9372419519002887 0.02712145827465352 0.39078633770069443
+0.9351507366710538 0.030510126600583835 0.9351507366710538 0.030510126600583835 0.40231089870630937
+0.9435219491322449 0.02373009930122533 0.943521949132245 0.02373009930122533 0.372495161591915
+0.9414307086199428 0.027118682456353262 0.9414307086199428 0.027118682456353262 0.3845017551922643
+0.9498033820195211 0.020337333504196534 0.9498033820195211 0.020337333504196534 0.3527238425243842
+0.9477120756168688 0.023725440223868285 0.9477120756168688 0.023725440223868285 0.36477586696960396
+0.9560821341398505 0.016942846884701716 0.9560821341398505 0.016942846884701716 0.3322769244018718
+0.9539909156002756 0.02032851339418189 0.9539909156002756 0.02032851339418189 0.343916164380035
+0.9623642652542285 0.013541827660409329 0.9623642652542285 0.013541827660409329 0.3120129708277983
+0.9602718545834145 0.016925465202430108 0.9602718545834145 0.016925465202430105 0.32278997590601244
+0.9686234775867671 0.010128470591457009 0.9686234775867671 0.010128470591457009 0.2929180114123307
+0.9665243729931049 0.013503362138604027 0.9665243729931049 0.013503362138604027 0.3024034710594059
+0.9728093340800512 0.010111798130913913 0.9728093340800513 0.010111798130913912 0.2836902502955912
+0.9749083222833773 0.006741000949358886 0.9749083222833773 0.006741000949358886 0.27589597919024017
+0.006805936538097836 0.9791850838085621 0.006805936538097836 0.9791850838085621 0.06622532485219546
+0.007255208356672316 0.9836588105870494 0.007255208356672316 0.9836588105870493 0.06404176283408368
+0.010241357790137226 0.97705982199715 0.010241357790137226 0.97705982199715 0.06802463016938266
+0.013445541987962906 0.9707057806944185 0.013445541987962906 0.9707057806944185 0.0726759104532203
+0.013432123358520287 0.974932307365383 0.013432123358520287 0.9749323073653829 0.0700716247239292
+0.016836498228889645 0.9644443328801998 0.016836498228889645 0.9644443328801998 0.07777599414388202
+0.016774070047648176 0.9685739640376974 0.016774070047648176 0.9685739640376972 0.07510768691966095
+0.020255091181271306 0.9581640244476087 0.020255091181271306 0.9581640244476087 0.08309553189330655
+0.020211354728944746 0.9623624184650567 0.02021135472894475 0.9623624184650567 0.08043186342803971
+0.02368675127382367 0.9518929282964738 0.023686751273823668 0.9518929282964738 0.08835896435407632
+0.023640112859762436 0.9560666397927874 0.023640112859762436 0.9560666397927874 0.08589479777957547
+0.02709634070531515 0.9456144126846626 0.027096340705315147 0.9456144126846625 0.09332038804590843
+0.027085626410153756 0.9498065620124221 0.027085626410153756 0.9498065620124221 0.09116352777249632
+0.03048622272658356 0.939344988903918 0.03048622272658356 0.939344988903918 0.0977511541831635
+0.03047900691449549 0.9435245367520071 0.030479006914495486 0.9435245367520072 0.0960006966420799
+0.03388835458709921 0.9330738267532711 0.03388835458709921 0.9330738267532711 0.10147183128044092
+0.03387251589199381 0.9372693503102628 0.03387251589199381 0.9372693503102628 0.10018754949733165
+0.03728953158688821 0.9267886215887201 0.03728953158688821 0.9267886215887201 0.10430429101247553
+0.037283354850463406 0.9309842932310043 0.037283354850463406 0.9309842932310043 0.10356049839718713
+0.04068242552751726 0.9205057901973875 0.04068242552751727 0.9205057901973875 0.10609950360716654
+0.04068149723793268 0.9246946365474207 0.04068149723793268 0.9246946365474207 0.10593143703403739
+0.04407074495612939 0.9184143903617765 0.04407074495612939 0.9184143903617766 0.10717863453969499
+0.04746022307524538 0.9121422196922341 0.04746022307524538 0.9121422196922341 0.10723090083733634
+0.04745720399333922 0.9163299949354656 0.04745720399333922 0.9163299949354656 0.10791527758676012
+0.05085294743082116 0.9058638519066479 0.05085294743082116 0.9058638519066479 0.1060597162542043
+0.05084951956963815 0.910054197154749 0.050849519569638145 0.910054197154749 0.10731900998270816
+0.05424514516324353 0.899584157099929 0.05424514516324353 0.8995841570999289 0.10369483476099707
+0.05424370724023844 0.9037714927370297 0.054243707240238435 0.9037714927370297 0.10547805528224997
+0.0576361946710911 0.8933063765939891 0.0576361946710911 0.8933063765939891 0.10023195746654627
+0.057635667980186545 0.8974918022470758 0.057635667980186545 0.8974918022470758 0.1024585024436704
+0.061026744569344205 0.8870295839812282 0.061026744569344205 0.8870295839812282 0.0958349874327279
+0.06102649568311227 0.8912141759605405 0.06102649568311227 0.8912141759605404 0.09839189639512691
+0.0644172266534119 0.8807532014043412 0.06441722665341189 0.8807532014043412 0.0907429673577187
+0.06441701071012824 0.8849374623738949 0.06441701071012824 0.8849374623738949 0.09348141646667275
+0.06780762324533825 0.8744770358535471 0.06780762324533825 0.8744770358535471 0.08527557096176448
+0.06780751137118513 0.8786612294268307 0.06780751137118513 0.8786612294268307 0.08800864215550132
+0.07119803341438015 0.8682008756714122 0.07119803341438015 0.8682008756714122 0.07983315415334324
+0.07119799178336152 0.8723850573799671 0.07119799178336152 0.8723850573799671 0.08233733765270468
+0.07458842916609107 0.8619247056299747 0.07458842916609108 0.8619247056299747 0.0748844287370821
+0.07458842010038966 0.8661088494018382 0.07458842010038967 0.8661088494018382 0.07690994415607633
+0.07797881490772025 0.8598326593670415 0.07797881490772025 0.8598326593670415 0.07222471706040391
+0.08136919965367773 0.8535564923416136 0.08136919965367773 0.8535564923416136 0.06877617245262568
+0.0813692009423611 0.8577406079623621 0.0813692009423611 0.8577406079623621 0.06973374721827147
+0.0847595825552882 0.8472803369415743 0.0847595825552882 0.8472803369415743 0.06694988423082897
+0.08475958296088772 0.8514644423097923 0.08475958296088772 0.8514644423097923 0.06692850484439566
+0.08814996400476978 0.8410041860874498 0.08814996400476978 0.8410041860874496 0.06690155720342444
+0.08814996011060565 0.8451882911504219 0.08814996011060565 0.8451882911504219 0.06589125468069036
+0.09154034742204048 0.8347280362907025 0.09154034742204048 0.8347280362907025 0.06849525577678854
+0.09154034341882407 0.838912144138891 0.09154034341882407 0.838912144138891 0.06663962971606718
+0.09493073133296431 0.8284518855112494 0.09493073133296431 0.8284518855112494 0.07135365085810556
+0.09493072876732138 0.8326359930628615 0.09493072876732138 0.8326359930628616 0.06890134033699048
+0.09832111515413984 0.8221757336280681 0.09832111515413984 0.8221757336280681 0.07498447727044842
+0.09832111402808301 0.8263598378089227 0.09832111402808301 0.8263598378089227 0.07221525988061152
+0.10171149870463615 0.8158995821334628 0.10171149870463615 0.8158995821334628 0.07890197373625928
+0.10171149828583936 0.820083683992043 0.10171149828583936 0.820083683992043 0.07607031502948249
+0.1051018821029933 0.8096234311459088 0.1051018821029933 0.8096234311459088 0.0826989914639815
+0.10510188197168842 0.8138075320532656 0.10510188197168842 0.8138075320532657 0.08000771067387956
+0.10849226543275252 0.8033472803894592 0.10849226543275252 0.8033472803894594 0.0860740592603646
+0.10849226539786683 0.8075313809532827 0.10849226539786683 0.8075313809532826 0.08366872043949092
+0.11188264872916183 0.8012552301819423 0.11188264872916183 0.8012552301819423 0.08680590221836125
+0.11527303203293349 0.7949790795129559 0.11527303203293349 0.7949790795129559 0.08927797395681492
+0.11527303202508125 0.799163179970466 0.11527303202508125 0.799163179970466 0.08754047437987551
+0.11866341533031659 0.7887029288736004 0.11866341533031659 0.7887029288736004 0.09103970976837837
+0.11866341532864748 0.7928870293006072 0.11866341532864748 0.7928870293006072 0.08972292998823773
+0.12205379862606142 0.7824267782428121 0.12205379862606143 0.7824267782428121 0.09213099394452239
+0.12205379862600878 0.7866108786616172 0.12205379862600878 0.7866108786616172 0.0912129327929163
+0.12544418192115483 0.7761506276152838 0.12544418192115483 0.7761506276152838 0.09266542945666566
+0.12544418192082715 0.7803347280344344 0.12544418192082715 0.7803347280344344 0.09208715815834739
+0.12883456521633987 0.7698744769876108 0.12883456521633987 0.7698744769876108 0.09281728300052706
+0.12883456521607656 0.7740585774065741 0.12883456521607653 0.7740585774065741 0.09248753968598152
+0.1322249485115475 0.7635983263599112 0.1322249485115475 0.7635983263599112 0.09280498896048302
+0.13222494851142028 0.767782426778588 0.13222494851142028 0.767782426778588 0.09260634282677965
+0.1356153318067412 0.7573221757322433 0.1356153318067412 0.7573221757322433 0.0928696804509258
+0.13561533180669733 0.7615062761507426 0.1356153318066973 0.7615062761507426 0.09266741944925018
+0.13900571510192117 0.7510460251046056 0.13900571510192117 0.7510460251046056 0.09324854040333828
+0.13900571510191348 0.755230125523031 0.13900571510191348 0.755230125523031 0.09290285326593095
+0.1423960983970919 0.7447698744769867 0.1423960983970919 0.7447698744769867 0.09414534792209255
+0.1423960983970901 0.7489539748954007 0.1423960983970901 0.7489539748954007 0.09352605492222076
+0.14578648169226038 0.742677824267783 0.14578648169226038 0.742677824267783 0.09470503120591016
+0.1491768649874298 0.7364016736401667 0.1491768649874298 0.7364016736401667 0.09654175588732772
+0.14917686498742821 0.7405857740585806 0.14917686498742821 0.7405857740585806 0.09541919140948851
+0.15256724828259896 0.7301255230125511 0.15256724828259896 0.7301255230125511 0.09906340717338515
+0.15256724828259835 0.7343096234309625 0.15256724828259835 0.7343096234309625 0.0974828037647718
+0.15595763157776796 0.7238493723849359 0.15595763157776796 0.7238493723849359 0.10222788972298025
+0.15595763157776774 0.7280334728033465 0.15595763157776774 0.7280334728033465 0.1001763281118052
+0.1593480148729369 0.7175732217573207 0.1593480148729369 0.7175732217573207 0.10594116286477072
+0.15934801487293684 0.7217573221757309 0.15934801487293684 0.7217573221757309 0.10343819364363536
+0.16273839816810579 0.7112970711297057 0.16273839816810579 0.7112970711297057 0.11008044249936892
+0.16273839816810579 0.7154811715481157 0.16273839816810579 0.7154811715481157 0.10716899632533712
+0.1661287814632747 0.7050209205020908 0.1661287814632747 0.7050209205020908 0.11451700473132274
+0.1661287814632747 0.7092050209205008 0.1661287814632747 0.7092050209205008 0.1112532961817728
+0.16951916475844359 0.7029288702928858 0.16951916475844356 0.7029288702928858 0.11557888957119346
+0.17290954805361247 0.7008368200836808 0.17290954805361247 0.7008368200836808 0.11647394704169924
+0.1762999313487814 0.6987447698744758 0.1762999313487814 0.6987447698744758 0.1172076583650742
+0.1796903146439503 0.6966527196652708 0.17969031464395033 0.6966527196652708 0.11779474676010003
+0.18308069793911919 0.6945606694560658 0.18308069793911919 0.6945606694560658 0.11825779561517986
+0.18647108123428807 0.6924686192468608 0.18647108123428804 0.6924686192468608 0.11862557984898757
+0.189861219149579 0.6861920857617658 0.189861219149579 0.6861920857617658 0.12260020741554857
+0.19325010656866373 0.6840979427542083 0.19325010656866373 0.6840979427542083 0.12290163855493617
+0.2033765455562665 0.6694456516151014 0.20337654555626647 0.6694456516151014 0.13189483937681876
+0.21015152757530997 0.6610361075621957 0.21015152757530994 0.6610361075621957 0.13711286778742696
+0.21429709355225424 0.6566984676368146 0.2142970935522542 0.6566984676368146 0.1396340769345157
+0.2134054629693516 0.6597254000319258 0.2134054629693516 0.6597254000319258 0.13700111442206422
+0.2190207164743304 0.6490521913671708 0.21902071647433044 0.6490521913671708 0.145453372296818
+0.22190142480768085 0.6467964187747592 0.22190142480768085 0.6467964187747591 0.14652050844720818
+0.22476593831498748 0.6445371705745027 0.2247659383149875 0.6445371705745027 0.14759536385883254
+0.22766702882153367 0.6422301079011967 0.22766702882153367 0.6422301079011968 0.14869000324271398
+0.23017921091732954 0.6361756366408322 0.23017921091732954 0.6361756366408322 0.15397834345080422
+0.23315211196416924 0.633805612660937 0.23315211196416927 0.6338056126609369 0.15507817782661545
+0.23605047227651568 0.6314454829727487 0.23605047227651568 0.6314454829727487 0.15616606713114023
+0.2305733785038853 0.6398684069656344 0.2305733785038853 0.6398684069656344 0.1498114836654049
+0.2165860040720516 0.6548772238784784 0.2165860040720516 0.6548772238784784 0.14051266911510496
+0.2193888210714885 0.652798322662436 0.2193888210714885 0.652798322662436 0.14143617804612504
+0.20673719868323392 0.6673671560472006 0.2067371986832339 0.6673671560472006 0.13237734452145342
+0.21010460332263903 0.6653317608976707 0.21010460332263903 0.6653317608976707 0.1328839769597786
+0.1966335634231666 0.6778159950312691 0.1966335634231666 0.6778159950312691 0.12708396220139043
+0.19663595612795526 0.6820007758347634 0.19663595612795526 0.6820007758347634 0.1232140126257343
+0.20001098083773064 0.6757214258076564 0.20001098083773064 0.6757214258076564 0.127447014333844
+0.20337629130935467 0.6736280863242979 0.20337629130935467 0.6736280863242979 0.12787201082492153
+0.18986142767308503 0.6903765123917257 0.18986142767308503 0.6903765123917257 0.11893120034247141
+0.24150589530402872 0.6199102898862228 0.24150589530402874 0.6199102898862227 0.16686313039408507
+0.2438544627219012 0.6175017386349227 0.24385446272190123 0.6175017386349227 0.16852815036521762
+0.24574853004885722 0.6114178498657129 0.2457485300488572 0.6114178498657129 0.17588342422006595
+0.24646098850865084 0.6150154687734193 0.24646098850865084 0.6150154687734193 0.1702882419645909
+0.25764343863135336 0.5920693906927027 0.25764343863135336 0.5920693906927027 0.2014942851449861
+0.24873921138071628 0.6054951763767179 0.24873921138071628 0.6054951763767179 0.1829923956528592
+0.2518973631663132 0.6033120496409158 0.2518973631663132 0.6033120496409158 0.18454037924486275
+0.2547358447278844 0.5976508202960297 0.2547358447278844 0.5976508202960297 0.19261302147085493
+0.2550161850838791 0.6011462084015063 0.2550161850838791 0.6011462084015063 0.18621954130806342
+0.2578438270514769 0.5955371320167971 0.2578438270514769 0.5955371320167971 0.1946521577211919
+0.249064862372266 0.6091013574536925 0.249064862372266 0.6091013574536924 0.17717787729802736
+0.23841605995094045 0.6254808877371842 0.23841605995094042 0.6254808877371842 0.1617872242822083
+0.23893275105909845 0.6291405775341226 0.23893275105909842 0.6291405775341224 0.1571890444169829
+0.24161923935986057 0.623437811990522 0.2416192393598606 0.623437811990522 0.16235305756293236
+0.4127946480795901 0.38552864472962367 0.41279464807959004 0.3855286447296237 0.43735612617442143
+0.4100376611771263 0.38708589565332496 0.4100376611771263 0.38708589565332496 0.43472305800058725
+0.40401248453190086 0.387414671891113 0.40401248453190075 0.38741467189111306 0.4154361022497391
+0.40732394852712783 0.3880838760039437 0.40732394852712783 0.3880838760039437 0.4290965532379256
+0.40036615589306135 0.38845697187827566 0.4003661558930613 0.3884569718782757 0.4044444828068244
+0.39405410889887377 0.38856891567872587 0.39405410889887377 0.3885689156787259 0.3790363625690443
+0.39742710193993736 0.39011417062931886 0.39742710193993736 0.3901141706293188 0.39662009516516106
+0.39094615096877855 0.39041383296145665 0.39094615096877855 0.39041383296145665 0.36906368269864925
+0.38422926411515207 0.39097639630673703 0.38422926411515207 0.39097639630673703 0.339740714615014
+0.38782964679186027 0.39235129201096336 0.38782964679186027 0.39235129201096336 0.3578925496325682
+0.3810374074306007 0.39305667577408304 0.3810374074306007 0.39305667577408304 0.3270306616536333
+0.37399931804731384 0.394050807642697 0.37399931804731384 0.394050807642697 0.295300636762325
+0.3779031815104456 0.39523599714267094 0.3779031815104456 0.39523599714267094 0.31362313183008683
+0.3711196238730512 0.39630635704211453 0.3711196238730512 0.39630635704211453 0.2825129047721486
+0.3647278647657248 0.3970784179379441 0.3647278647657248 0.3970784179379441 0.2547278358930161
+0.3620787243807764 0.3984808143495731 0.3620787243807764 0.3984808143495731 0.2433384181109069
+0.36803528020596826 0.39858684761791124 0.36803528020596826 0.39858684761791124 0.26835401455352553
+0.36068918294664215 0.4007908422127743 0.36068918294664215 0.40079084221277433 0.23671102295494903
+0.35468485720573795 0.4022704952606065 0.35468485720573795 0.4022704952606065 0.21392116483555315
+0.35237995647047027 0.40452980322238985 0.3523799564704703 0.4045298032223899 0.2052079458115764
+0.3582330561773672 0.40314631603278883 0.3582330561773672 0.40314631603278883 0.2259421904331047
+0.34994757733108284 0.40679732867329366 0.3499475773310828 0.4067973286732936 0.1970288954929418
+0.34420683770336363 0.408373403865141 0.34420683770336363 0.408373403865141 0.18299016540915483
+0.3419879294873573 0.4108371787036514 0.3419879294873573 0.4108371787036514 0.17932283650815306
+0.3477838753999169 0.4091184495562176 0.3477838753999169 0.4091184495562176 0.190745964733841
+0.3397863832297243 0.4133393866356873 0.3397863832297243 0.4133393866356873 0.17746218160462288
+0.33392558461984545 0.41526517392564677 0.33392558461984545 0.4152651739256468 0.17478822496914148
+0.3318067929156176 0.41791185862476427 0.3318067929156176 0.41791185862476427 0.17826883242316963
+0.337620268348709 0.4158729829316157 0.337620268348709 0.4158729829316156 0.1775881254327452
+0.32973730807249185 0.4206056188036225 0.32973730807249185 0.4206056188036225 0.18362522730780206
+0.3239113857462932 0.42294120755593206 0.3239113857462932 0.42294120755593206 0.19187392841171524
+0.3219056845936657 0.42579646334310967 0.3219056845936657 0.42579646334310967 0.20114969026038956
+0.32769098406698965 0.42335619018054627 0.32769098406698965 0.4233561901805462 0.19071718636045484
+0.3199529392613132 0.42869755316781455 0.3199529392613132 0.4286975531678145 0.2114921677950262
+0.31420026673939205 0.43140623941012496 0.314200266739392 0.43140623941012496 0.2253867683425673
+0.3122788198618609 0.43442304378521873 0.3122788198618609 0.43442304378521873 0.23722783816966794
+0.31804227156869885 0.43163592299638065 0.31804227156869885 0.43163592299638065 0.22265050089644692
+0.31043752516152645 0.4375226873352517 0.3104375251615265 0.43752268733525174 0.24942594117717629
+0.3050000948226082 0.4408177829116963 0.3050000948226082 0.4408177829116963 0.26476428220754555
+0.30321460636921604 0.44395210550304565 0.30321460636921604 0.4439521055030457 0.27650790843478723
+0.30876037024280295 0.44073149082141055 0.30876037024280295 0.44073149082141055 0.261896321253648
+0.3012907084168497 0.447072182738661 0.3012907084168497 0.447072182738661 0.28789931390606455
+0.29637516437004313 0.4524305228641586 0.29637516437004313 0.4524305228641586 0.30635840447534896
+0.2951815058334538 0.4551509871875425 0.29518150583345376 0.4551509871875425 0.3147835092515763
+0.2991588611737287 0.4505343703765231 0.29915886117372864 0.45053437037652305 0.29998200509527123
+0.29348152871495503 0.45810119934355287 0.29348152871495503 0.45810119934355287 0.3233260215189819
+0.2884063514877006 0.4671451051224694 0.2884063514877006 0.4671451051224694 0.34521606231729335
+0.2900303116768659 0.4641685429079656 0.2900303116768659 0.4641685429079656 0.3387568955997871
+0.2917354667341576 0.46114715334930245 0.2917354667341576 0.4611471533493025 0.331443221043892
+0.2867734193222302 0.47027249870073906 0.2867734193222302 0.470272498700739 0.3511874983412841
+0.28496495227503116 0.4733412514000769 0.2849649522750312 0.4733412514000768 0.3562426172305084
+0.28336108632560975 0.47638043367015687 0.28336108632560975 0.47638043367015687 0.36050161696380073
+0.28186108635892587 0.47971762897909825 0.28186108635892587 0.47971762897909825 0.36447005018174344
+0.2803571702776485 0.48319222551684154 0.28035717027764845 0.48319222551684154 0.367693216180786
+0.2790062518258186 0.4870565981693978 0.2790062518258187 0.48705659816939784 0.37049087715570994
+0.27664345816225666 0.489689393959977 0.27664345816225666 0.489689393959977 0.3701232587804879
+0.27601183430762644 0.4928060081913964 0.2760118343076265 0.49280600819139636 0.37144219092555103
+0.2748419866741738 0.49629341239588115 0.2748419866741738 0.49629341239588115 0.37149034132961023
+0.27363508472726195 0.49978444812177136 0.27363508472726195 0.4997844481217713 0.37064906644585754
+0.272412776152112 0.503250847542619 0.272412776152112 0.5032508475426188 0.368969160251545
+0.2711827273729828 0.5066717105083192 0.2711827273729828 0.5066717105083192 0.3665272741083607
+0.2700047586574418 0.51017822354718 0.27000475865744183 0.51017822354718 0.3633780464181308
+0.26903834228671925 0.5138064036451707 0.26903834228671925 0.5138064036451707 0.35967595690873616
+0.26812254522936013 0.5174495975195312 0.26812254522936013 0.5174495975195312 0.3552824346741282
+0.2672731015034724 0.5210429469250014 0.2672731015034724 0.5210429469250014 0.3503411647842389
+0.26634503743198346 0.5246795472854294 0.2663450374319835 0.5246795472854294 0.34468639987468297
+0.26543016971424643 0.5283865264427435 0.26543016971424643 0.5283865264427435 0.33839772661627193
+0.2645134480978219 0.5322617507681024 0.2645134480978219 0.5322617507681024 0.33135560242576
+0.2637517575894191 0.5362081023666988 0.2637517575894191 0.5362081023666988 0.32375733478346524
+0.2633209978639684 0.5398070295879703 0.2633209978639684 0.5398070295879703 0.31660732992598484
+0.2627871910035327 0.5434086881021748 0.2627871910035327 0.5434086881021748 0.30905688836504175
+0.26219003556088 0.5470062782776248 0.26219003556088 0.5470062782776247 0.3012202436763072
+0.2615477306603168 0.5505166574912178 0.26154773066031684 0.5505166574912178 0.2933604195776131
+0.2604308058891477 0.5533549746749199 0.2604308058891477 0.5533549746749199 0.28669768990504174
+0.261127472265799 0.5560080557702639 0.261127472265799 0.5560080557702639 0.28095670937057887
+0.26102139100112803 0.5594655858822214 0.26102139100112803 0.5594655858822214 0.2730139860388856
+0.26084064318977007 0.5629197589135443 0.26084064318977007 0.5629197589135443 0.26498972767754353
+0.2606444445156461 0.5663821485427462 0.2606444445156461 0.5663821485427462 0.25692333375620696
+0.26046755733648824 0.5697734095407786 0.26046755733648824 0.5697734095407786 0.24903730113773195
+0.26034691526387194 0.5731347405574546 0.26034691526387194 0.5731347405574546 0.24127868069611336
+0.2603906897235156 0.5764015933100664 0.2603906897235156 0.5764015933100665 0.23378441422090238
+0.26045750627200526 0.5797327098668268 0.2604575062720053 0.5797327098668267 0.22625686736699632
+0.26053924127488887 0.5831272407562749 0.26053924127488887 0.5831272407562748 0.21870441017281436
+0.2606316329338163 0.5865661878481881 0.2606316329338163 0.5865661878481881 0.2112219990190852
+0.26075178217732725 0.5900053717806736 0.26075178217732725 0.5900053717806736 0.20393340209980712
+0.4153292950003532 0.3832615830627851 0.41532929500035326 0.3832615830627852 0.43601263444815347
+0.41692473317330914 0.3808294372229465 0.41692473317330914 0.3808294372229465 0.43149766847561943
+0.41681367651895385 0.3869461098438507 0.41681367651895396 0.38694610984385075 0.4533620544159972
+0.4202373232066035 0.37378136979191234 0.4202373232066035 0.37378136979191234 0.4184670783903302
+0.4207762277723151 0.3705187762729752 0.4207762277723151 0.3705187762729752 0.412416021731047
+0.419874786616119 0.3770172835457561 0.419874786616119 0.3770172835457561 0.4260722200806306
+0.41972132714829447 0.3800149060007819 0.4197213271482944 0.38001490600078197 0.43462834088543056
+0.425923271723961 0.35926591840986566 0.425923271723961 0.35926591840986566 0.4042975193244413
+0.425271617891325 0.3626550989458859 0.425271617891325 0.3626550989458859 0.40714345043516936
+0.4246966896344144 0.3660246662943334 0.4246966896344144 0.3660246662943334 0.41092101909323914
+0.4242727119097635 0.369419430803726 0.4242727119097635 0.369419430803726 0.41600504550894507
+0.43218732459912657 0.34799432698843963 0.43218732459912657 0.34799432698843963 0.4039872053072074
+0.4310476127592155 0.3514834986001131 0.4310476127592155 0.35148349860011313 0.40498853879570645
+0.43027488622595417 0.35499224203064256 0.43027488622595417 0.35499224203064256 0.4066482176442722
+0.4295785416044726 0.3583906209791437 0.4295785416044726 0.3583906209791437 0.4087287213217014
+0.4412066422220158 0.3370001247856689 0.4412066422220158 0.3370001247856689 0.40375637903211353
+0.4374935460135684 0.3409039177323343 0.43749354601356844 0.3409039177323343 0.4045427732193712
+0.43999826607655035 0.33955704359364947 0.43999826607655035 0.33955704359364947 0.4051462434966152
+0.4369262346165135 0.34402569252637843 0.4369262346165135 0.34402569252637843 0.40627645572059734
+0.4359580192166331 0.3474563553847814 0.4359580192166331 0.3474563553847814 0.4077911496134385
+0.4507190099325929 0.3267224192696729 0.4507190099325929 0.3267224192696729 0.39214683719106574
+0.446370926928602 0.3303285386230233 0.446370926928602 0.3303285386230233 0.3981683467545125
+0.44958389666502413 0.3299881369294448 0.44958389666502413 0.3299881369294448 0.3967098618298084
+0.445364675981576 0.33360159593176403 0.445364675981576 0.33360159593176403 0.4016012214941309
+0.44432499543638704 0.3367354152363032 0.44432499543638704 0.3367354152363032 0.40450787967363216
+0.4667448678353554 0.31185640833223105 0.4667448678353554 0.31185640833223105 0.3429150781071364
+0.464642749693354 0.31486532735058254 0.464642749693354 0.31486532735058254 0.3532086663142708
+0.46322941165547277 0.3181420169934932 0.46322941165547277 0.3181420169934932 0.361770726167527
+0.46205843957156 0.3210345200619909 0.46205843957156 0.3210345200619909 0.3687877129256811
+0.45530618701501985 0.3232489825883972 0.45530618701501985 0.32324898258839724 0.3831549311076438
+0.45927807969872403 0.32282960211507056 0.459278079698724 0.32282960211507056 0.37685996614475264
+0.454080213829757 0.3265344852462147 0.454080213829757 0.3265344852462147 0.3890331409128085
+0.47448812144490976 0.30592808722960924 0.47448812144490976 0.30592808722960924 0.3090512298988504
+0.472507481619858 0.309066539900263 0.472507481619858 0.309066539900263 0.3210038809573919
+0.4780512272314555 0.30632373953117775 0.4780512272314555 0.30632373953117775 0.2965917604654862
+0.47051056136659763 0.31215437600650964 0.47051056136659763 0.3121543760065096 0.3325782319519938
+0.4940216157624509 0.2943813952697944 0.4940216157624509 0.2943813952697944 0.2089611094198367
+0.49136816714083514 0.2970697269962837 0.4913681671408351 0.2970697269962837 0.22490011109377847
+0.4903877714978447 0.3003345629057044 0.4903877714978447 0.3003345629057044 0.23372404434159882
+0.48545226383626394 0.30152591857233735 0.48545226383626394 0.30152591857233735 0.2582376844814736
+0.4834664280847359 0.30395544684310755 0.4834664280847359 0.30395544684310755 0.27061845103217147
+0.4882857496701418 0.3023201763241269 0.4882857496701418 0.30232017632412683 0.24646348359251036
+0.48183522740172535 0.30690548056846106 0.4818352274017253 0.30690548056846106 0.28228273401157433
+0.5096089637625165 0.2872199247468321 0.5096089637625165 0.2872199247468321 0.12956434810385678
+0.5018517909509002 0.2903034426018687 0.5018517909509002 0.2903034426018687 0.1670288942385272
+0.5071687558191713 0.289533355500023 0.5071687558191713 0.289533355500023 0.14160974973965398
+0.5047532702968988 0.29089407168849324 0.5047532702968988 0.29089407168849324 0.1536761514305297
+0.49975978863030884 0.2927194471615999 0.49975978863030884 0.2927194471615999 0.1793116429574623
+0.497527834756658 0.2952889160479503 0.497527834756658 0.2952889160479503 0.1928567163877026
+0.5257503314459661 0.2811209110772789 0.5257503314459661 0.28112091107727893 0.09538752196400378
+0.5177490431820617 0.2840466088063223 0.5177490431820617 0.2840466088063223 0.10101742659000855
+0.5233592842156825 0.28330850909834426 0.5233592842156823 0.28330850909834426 0.09531464312861483
+0.5208384109068414 0.2857784735761254 0.5208384109068414 0.28577847357612546 0.09773938397725744
+0.515288641415255 0.2862610620941904 0.515288641415255 0.2862610620941904 0.10853502216347029
+0.5127747322567621 0.28855126841986606 0.5127747322567621 0.28855126841986606 0.1180739524046686
+0.5438132354251062 0.27651421183844077 0.5438132354251062 0.27651421183844077 0.16176766118555105
+0.534842795730018 0.2786636018981906 0.534842795730018 0.27866360189819067 0.12008742398659268
+0.540905279011083 0.27844464603362357 0.540905279011083 0.27844464603362357 0.14961520605495315
+0.5381019848734636 0.28034433902788236 0.5381019848734637 0.28034433902788236 0.13836174063882398
+0.5320773652072412 0.28072486674933506 0.5320773652072414 0.2807248667493351 0.11177076015975902
+0.5292872573184566 0.28282354568111534 0.5292872573184565 0.2828235456811154 0.10501404453178555
+0.5531295503998597 0.27435796873215357 0.5531295503998597 0.27435796873215357 0.2107060728382881
+0.5500666087023652 0.2763538257596834 0.5500666087023652 0.2763538257596834 0.19734165685934416
+0.5470449375880915 0.27832614832250374 0.5470449375880914 0.27832614832250374 0.18400944466576152
+0.5564385320673328 0.2759971146718305 0.5564385320673328 0.2759971146718305 0.23434645229231107
+0.5597113137263299 0.27760205879898214 0.5597113137263299 0.2776020587989821 0.25814889549899656
+0.612424066018536 0.24156289690442623 0.6124240660185362 0.24156289690442628 0.42767886136490285
+0.6086804875125862 0.24360474722186987 0.6086804875125863 0.24360474722186987 0.41774372509282104
+0.5747450047345976 0.2575394823581309 0.5747450047345976 0.2575394823581309 0.29108359745213436
+0.6050748688368909 0.24513224618879112 0.6050748688368909 0.24513224618879112 0.40665798740640424
+0.5781700349254377 0.256262304858398 0.5781700349254377 0.256262304858398 0.3060394794597434
+0.5815710844987847 0.25501656421612057 0.5815710844987847 0.25501656421612057 0.3205850846988745
+0.5849532507705609 0.2537667940913221 0.5849532507705609 0.25376679409132213 0.33464052327676436
+0.5883087979627858 0.2524299842428604 0.5883087979627858 0.2524299842428604 0.34800342133042084
+0.5915602427487548 0.2508667933947547 0.5915602427487548 0.25086679339475465 0.3599369075859616
+0.5947694543624896 0.24944892441703326 0.5947694543624896 0.24944892441703326 0.3715936361532937
+0.6015906262504828 0.24659259386073848 0.6015906262504828 0.24659259386073848 0.39533506549981956
+0.5981534346072009 0.24804000546719077 0.5981534346072009 0.24804000546719077 0.3836416532535827
+0.5706753751737279 0.26276576923444267 0.570675375173728 0.26276576923444267 0.28193197744836196
+0.567117514593583 0.26775585150231085 0.567117514593583 0.26775585150231085 0.2749646716749203
+0.5663467275927663 0.2707898404268165 0.5663467275927663 0.2707898404268165 0.27864133397964336
+0.5629355012943273 0.2753237005194564 0.5629355012943273 0.2753237005194564 0.27111987543413263
+0.5654640959572061 0.273488193252959 0.5654640959572061 0.273488193252959 0.28087747093988824
+0.5629255966246147 0.2791105915220767 0.5629255966246146 0.2791105915220767 0.28166908515220873
+0.5700691394068692 0.2664007524337513 0.5700691394068692 0.2664007524337513 0.2879273077893483
+0.5739715811855467 0.2613418552239146 0.5739715811855467 0.2613418552239146 0.29621766219787665
+0.6162756278640819 0.2406934113835958 0.6162756278640819 0.24069341138359582 0.4396041380278099
+0.6197795329103375 0.23962413057540305 0.6197795329103375 0.23962413057540302 0.44917027134738
+0.6231727540822597 0.23868168218472208 0.6231727540822597 0.2386816821847221 0.4580113726323857
+0.6266270829691841 0.2377233501094829 0.6266270829691841 0.2377233501094829 0.4663549249631554
+0.6301207569833065 0.23677624009737216 0.6301207569833065 0.23677624009737216 0.4741480970484065
+0.6333931981397148 0.23572258203281382 0.6333931981397148 0.23572258203281385 0.48050358666060466
+0.6368297932073146 0.23463242974764442 0.6368297932073146 0.23463242974764445 0.48644716344249866
+0.6694441629876842 0.20337284459667693 0.6694441629876842 0.20337284459667693 0.47878227496214826
+0.663164243339579 0.2067104282739051 0.6631642433395789 0.2067104282739051 0.47623532995224993
+0.6673522365055954 0.20671872691943538 0.6673522365055954 0.20671872691943535 0.48182399125163305
+0.6610373856346912 0.21010623344444376 0.6610373856346912 0.21010623344444376 0.47954058204938615
+0.6558092041539455 0.21583442245295403 0.6558092041539455 0.21583442245295403 0.48280370765583563
+0.6587999771169457 0.213776911615765 0.6587999771169457 0.21377691161576504 0.4834106930809775
+0.6514515387709695 0.21896944857235554 0.6514515387709695 0.21896944857235554 0.48229879477794085
+0.6502154509891859 0.22224507647173544 0.6502154509891859 0.22224507647173544 0.4869616415885723
+0.6399358255908701 0.2340337172546736 0.6399358255908701 0.2340337172546736 0.49223633461314625
+0.6455022688486255 0.22628251657450282 0.6455022688486255 0.22628251657450282 0.4869793968777429
+0.6443978841826045 0.22981892590078298 0.6443978841826045 0.22981892590078298 0.49237082824069484
+0.6432783400216379 0.23334744618040074 0.6432783400216379 0.23334744618040074 0.4977399747889662
+0.6490306539830342 0.2256300532302721 0.6490306539830342 0.2256300532302721 0.4919876550460986
+0.6548738765402836 0.21850550083591105 0.6548738765402836 0.21850550083591105 0.4867703416523898
+0.6799158766360295 0.19325157038506025 0.6799158766360295 0.19325157038506025 0.4762624311176343
+0.6841000096743329 0.19325169167052716 0.6841000096743329 0.19325169167052716 0.4813244817493573
+0.6778210553439723 0.1966392472381533 0.6778210553439723 0.1966392472381533 0.4786447795264696
+0.6757241752213715 0.2000200025985929 0.6757241752213715 0.2000200025985929 0.4812047883241775
+0.6736279005000615 0.20338778682194572 0.6736279005000615 0.20338778682194572 0.48397161676356354
+0.7050209205020798 0.16612878146327817 0.7050209205020798 0.16612878146327817 0.46483210183637463
+0.7029288702928747 0.16951916475844733 0.7029288702928747 0.16951916475844733 0.4684072905744818
+0.7008368200836691 0.1729095480536166 0.7008368200836691 0.1729095480536166 0.4716329130905134
+0.6987447698744628 0.17629993134878624 0.6987447698744628 0.17629993134878627 0.4745326166904606
+0.6966527196652509 0.17969031464395277 0.6966527196652509 0.17969031464395277 0.4771483725475947
+0.694560669415536 0.18308069791032652 0.694560669415536 0.18308069791032652 0.47953735169354134
+0.6924686189055236 0.18647108098822793 0.6924686189055236 0.18647108098822793 0.48176823266131974
+0.6903765653524413 0.18986146194910944 0.6903765653524413 0.18986146194910944 0.48391706833082876
+0.6882842623913611 0.19325176955573362 0.6882842623913611 0.19325176955573362 0.4860625260932711
+0.711297071129695 0.16273839816810878 0.711297071129695 0.16273839816810878 0.46392275757673
+0.70920502092049 0.16612878146327767 0.70920502092049 0.16612878146327767 0.4681523076510367
+0.7175732217573101 0.15934801487294 0.7175732217573101 0.15934801487294 0.46171822973075355
+0.7154811715481049 0.16273839816810876 0.715481171548105 0.16273839816810876 0.4665598065067124
+0.7238493723849254 0.15595763157777132 0.7238493723849254 0.15595763157777132 0.45844219200575465
+0.7217573221757202 0.15934801487294017 0.7217573221757202 0.15934801487294017 0.4637484543364923
+0.7301255230125409 0.15256724828260237 0.7301255230125409 0.15256724828260237 0.45447968899924956
+0.7280334728033359 0.15595763157777132 0.7280334728033359 0.15595763157777132 0.46000291931016307
+0.7364016736401561 0.14917686498743343 0.7364016736401561 0.14917686498743343 0.45034482125086744
+0.734309623430951 0.15256724828260237 0.734309623430951 0.15256724828260237 0.4557576981002372
+0.7447698744769767 0.14239609839709555 0.7447698744769767 0.14239609839709555 0.4422675500078004
+0.7426778242677714 0.1457864816922645 0.7426778242677714 0.1457864816922645 0.44662019709203854
+0.7405857740585663 0.14917686498743343 0.7405857740585663 0.14917686498743343 0.4515531927059417
+0.7510460251045918 0.1390057151019266 0.7510460251045918 0.1390057151019266 0.44057057240314806
+0.7489539748953868 0.14239609839709555 0.7489539748953868 0.14239609839709555 0.4438721827579833
+0.7573221757322074 0.13561533180675767 0.7573221757322074 0.13561533180675767 0.4405307847815316
+0.7552301255230022 0.13900571510192664 0.7552301255230022 0.13900571510192664 0.44255359918892184
+0.7635983263598227 0.13222494851158872 0.7635983263598227 0.13222494851158872 0.44225035162051646
+0.7615062761506176 0.13561533180675767 0.7615062761506176 0.13561533180675767 0.44291348520321266
+0.7698744769874378 0.12883456521641978 0.7698744769874378 0.12883456521641978 0.44554883228231895
+0.7677824267782328 0.13222494851158872 0.7677824267782328 0.13222494851158872 0.4449371046109332
+0.7761506276150533 0.12544418192125084 0.7761506276150533 0.12544418192125084 0.4499826685614692
+0.7740585774058482 0.12883456521641978 0.7740585774058482 0.12883456521641978 0.4483341417285924
+0.7824267782426685 0.1220537986260819 0.7824267782426685 0.1220537986260819 0.4549132548100468
+0.7803347280334635 0.12544418192125084 0.7803347280334635 0.12544418192125084 0.45257949346677634
+0.7887029288702839 0.11866341533091296 0.7887029288702839 0.11866341533091296 0.45960563630570456
+0.7866108786610786 0.1220537986260819 0.7866108786610786 0.1220537986260819 0.4569957416059181
+0.7970711297071045 0.11188264874057507 0.7970711297071045 0.11188264874057507 0.46577019323400703
+0.7949790794978994 0.11527303203574402 0.7949790794978994 0.11527303203574402 0.46333597880789806
+0.7928870292886943 0.11866341533091296 0.7928870292886944 0.11866341533091296 0.4608570774645477
+0.8033472803347196 0.10849226544540613 0.8033472803347196 0.10849226544540613 0.4672451615898931
+0.8012552301255145 0.11188264874057507 0.8012552301255145 0.11188264874057507 0.4654901545861812
+0.8096234309623349 0.10510188215023719 0.8096234309623348 0.10510188215023719 0.46652271901244097
+0.8075313807531297 0.10849226544540613 0.8075313807531296 0.10849226544540613 0.46564318103737284
+0.8158995815899502 0.10171149885506825 0.8158995815899502 0.10171149885506825 0.46355638483739486
+0.813807531380745 0.10510188215023719 0.813807531380745 0.10510188215023719 0.4636153366446955
+0.8221757322175657 0.09832111555989931 0.8221757322175657 0.09832111555989931 0.4585816799141063
+0.8200836820083606 0.10171149885506825 0.8200836820083605 0.10171149885506825 0.45950366364654566
+0.828451882845181 0.09493073226473037 0.8284518828451811 0.09493073226473037 0.4521069287265365
+0.8263598326359759 0.09832111555989931 0.8263598326359759 0.09832111555989931 0.4536874611981429
+0.8347280334727963 0.09154034896956142 0.8347280334727963 0.09154034896956142 0.4448733522183435
+0.8326359832635912 0.09493073226473037 0.8326359832635912 0.09493073226473037 0.44680447973693643
+0.8410041841004117 0.08814996567439248 0.8410041841004116 0.08814996567439248 0.437779242788697
+0.8389121338912066 0.09154034896956142 0.8389121338912066 0.09154034896956142 0.4396925974663997
+0.847280334728027 0.08475958237922354 0.847280334728027 0.08475958237922354 0.43176579084372196
+0.8451882845188219 0.08814996567439248 0.845188284518822 0.08814996567439248 0.4332923449808496
+0.8535564853556423 0.0813691990840546 0.8535564853556422 0.0813691990840546 0.42767165870518214
+0.8514644351464372 0.08475958237922354 0.8514644351464372 0.08475958237922354 0.4285119838825051
+0.8619246861924628 0.07458843249371672 0.8619246861924629 0.07458843249371672 0.42607377310165034
+0.8598326359832577 0.07797881578888566 0.8598326359832577 0.07797881578888566 0.42607944047327634
+0.8577405857740525 0.0813691990840546 0.8577405857740527 0.0813691990840546 0.42607078034336426
+0.8682008368200781 0.07119804919854777 0.8682008368200781 0.07119804919854777 0.42790570785015664
+0.866108786610873 0.07458843249371672 0.866108786610873 0.07458843249371672 0.4271922880487187
+0.8744769874476934 0.06780766590337883 0.8744769874476933 0.06780766590337883 0.4319353378606586
+0.8723849372384883 0.07119804919854777 0.8723849372384883 0.07119804919854777 0.4307799853577155
+0.8807531380753088 0.06441728260820989 0.8807531380753088 0.06441728260820989 0.43740391739300444
+0.8786610878661036 0.06780766590337883 0.8786610878661038 0.06780766590337883 0.4362130834859225
+0.8870292887029241 0.06102689931304095 0.887029288702924 0.06102689931304095 0.44332795091707405
+0.884937238493719 0.06441728260820989 0.884937238493719 0.06441728260820989 0.44257117182438727
+0.8933054393305394 0.05763651601787201 0.8933054393305394 0.05763651601787201 0.4486451879727907
+0.8912133891213343 0.06102689931304095 0.8912133891213344 0.06102689931304095 0.44878784853521364
+0.8995818406503392 0.05424595367617491 0.8995818406503392 0.05424595367617491 0.4523451777504426
+0.8974898608670704 0.057636229117416365 0.8974898608670704 0.05763622911741637 0.45379318267973384
+0.9058586348376928 0.050855164081374686 0.9058586348376928 0.050855164081374686 0.45356680882202466
+0.9037672055239323 0.054245104448674614 0.9037672055239323 0.05424510444867461 0.4566281082608081
+0.9142262163586937 0.04407481578400577 0.9142262163586937 0.04407481578400577 0.4456471713902152
+0.9121347251533239 0.04746483232290589 0.9121347251533239 0.04746483232290589 0.45166182553341727
+0.9100442713720313 0.05085419942413733 0.9100442713720313 0.05085419942413733 0.4565230848071447
+0.920503585452233 0.040683276377448375 0.9205035854522329 0.040683276377448375 0.43844360055470805
+0.9184117835225858 0.044073867053304405 0.9184117835225859 0.044073867053304405 0.4462257038609811
+0.9267812677275895 0.03729065423350617 0.9267812677275895 0.03729065423350617 0.42768849243077084
+0.924691051395181 0.040680257158727216 0.924691051395181 0.040680257158727216 0.4371017136731851
+0.9330597277542544 0.03389814775058068 0.9330597277542544 0.03389814775058068 0.4135880021973433
+0.9309695092716191 0.03728586316373782 0.9309695092716191 0.037285863163737824 0.42438846940258373
+0.9393396783913531 0.030505983141136894 0.9393396783913531 0.030505983141136894 0.39655606253373876
+0.9372488378993107 0.03389223962644382 0.9372488378993108 0.033892239626443825 0.4084133402383556
+0.9456198699828514 0.027112516693633737 0.9456198699828514 0.027112516693633737 0.37718578340389186
+0.9435289852369749 0.03050013208487501 0.9435289852369749 0.03050013208487501 0.38970396076709496
+0.9518954259532709 0.023710893440785332 0.9518954259532709 0.023710893440785332 0.3562186682193256
+0.949800389942662 0.027094072134064433 0.949800389942662 0.027094072134064433 0.3689394071939271
+0.958173508648164 0.02031100051270452 0.958173508648164 0.020311000512704517 0.33453081007948526
+0.9560663116868668 0.02368312550168167 0.9560663116868667 0.02368312550168167 0.3469822389705181
+0.9644320675964585 0.016881832108304035 0.9644320675964585 0.016881832108304035 0.31307507993044276
+0.9623319943612679 0.0202599630830224 0.9623319943612679 0.0202599630830224 0.3247612877546943
+0.9706818868304975 0.013468950364253949 0.9706818868304975 0.013468950364253949 0.292929863851608
+0.9685583062335011 0.016823908101595928 0.9685583062335011 0.016823908101595928 0.303402986890795
+0.9790931043417964 0.006733825444755375 0.9790931043417964 0.006733825444755375 0.2676988746601055
+0.9748538166973804 0.013431825914097894 0.9748538166973804 0.013431825914097894 0.28382562898894137
+0.9770003978461052 0.010083804315681042 0.9770003978461052 0.01008380431568104 0.27498933593053154
+0.983269192250611 0.006739015151060782 0.983269192250611 0.006739015151060782 0.2605185751725667
+0.006684210716231561 0.9875226476924398 0.006684210716231562 0.9875226476924398 0.0622925244043017
+0.00646846878923318 0.9905459589169685 0.006468468789233181 0.9905459589169684 0.0612538538720494
+0.010348662954677068 0.9810775791571815 0.010348662954677068 0.9810775791571816 0.06586060966521688
+0.010597984232245339 0.9841711054162281 0.010597984232245339 0.9841711054162282 0.06436002302782731
+0.009394198113984413 0.9863647070294288 0.009394198113984413 0.9863647070294288 0.06316522077974752
+0.01399584243466867 0.9793098658823214 0.01399584243466867 0.9793098658823213 0.06772261373249461
+0.01675796849836632 0.9725746820153889 0.01675796849836632 0.9725746820153889 0.07256857258391619
+0.016970225287540795 0.9763038398681897 0.0169702252875408 0.9763038398681897 0.07036508781764346
+0.020178880053796578 0.9665822899589859 0.020178880053796578 0.9665822899589859 0.07769369885695164
+0.019954483750822368 0.9705905027346393 0.019954483750822368 0.9705905027346393 0.0750236542702377
+0.02358584695214429 0.9602305987782692 0.02358584695214429 0.9602305987782692 0.08328405597086495
+0.023525230896232263 0.9644867548102292 0.023525230896232263 0.9644867548102293 0.08051237036967972
+0.02704698640770727 0.9539963112900883 0.02704698640770727 0.9539963112900883 0.08878014393663049
+0.026961817094557403 0.9581338473248456 0.026961817094557406 0.9581338473248456 0.08623148104601554
+0.03047814585237527 0.9477135201999557 0.03047814585237527 0.9477135201999557 0.09398410118199385
+0.03047902090872172 0.9519150538284323 0.030479020908721722 0.9519150538284323 0.0917221591709969
+0.033856802006938545 0.9456186496932056 0.033856802006938545 0.9456186496932056 0.09675383318088404
+0.03385399721362579 0.9414530712361433 0.03385399721362579 0.9414530712361433 0.09860327043420385
+0.03727016487803561 0.9351889452123662 0.03727016487803561 0.9351889452123662 0.10248511251184976
+0.03723608079791959 0.9394024285747338 0.03723608079791959 0.9394024285747339 0.10107760713538205
+0.0406781303630892 0.9288890021983817 0.0406781303630892 0.9288890021983817 0.10542798404452171
+0.04066983911851779 0.9330939238998556 0.04066983911851779 0.9330939238998556 0.10458498523216346
+0.04407199742627054 0.9225988351159673 0.04407199742627054 0.9225988351159673 0.10726899510068304
+0.04407093192829779 0.9267915540131888 0.04407093192829779 0.9267915540131888 0.10702122172874994
+0.04745664087292435 0.9205126806475297 0.047456640872924345 0.9205126806475298 0.10827325108469128
+0.05084381613961012 0.9142477835990928 0.05084381613961012 0.9142477835990928 0.10827704481098978
+0.05083755627602865 0.9184416123961324 0.05083755627602865 0.9184416123961324 0.10891220219988233
+0.0542405968442938 0.9079620251148994 0.0542405968442938 0.9079620251148995 0.10700199006761
+0.05423330320475959 0.9121586887901844 0.05423330320475959 0.9121586887901844 0.10823738187653288
+0.05763447760545894 0.9016786151836929 0.05763447760545894 0.9016786151836929 0.10448284192056063
+0.057632041737440055 0.9058677467415416 0.057632041737440055 0.9058677467415416 0.10626705289798481
+0.061026013950313596 0.8953994113252044 0.061026013950313596 0.8953994113252044 0.1008210987942496
+0.06102497386861765 0.8995858776220168 0.06102497386861765 0.8995858776220168 0.10307517519841201
+0.06441654157597239 0.889121966469533 0.06441654157597239 0.889121966469533 0.09618577322344807
+0.0644158705629839 0.8933069571296768 0.06441587056298391 0.8933069571296768 0.09879802036715542
+0.06780716259296571 0.8828455580605082 0.06780716259296571 0.8828455580605082 0.09082112824446738
+0.06780633956636545 0.8870301063697325 0.06780633956636545 0.8870301063697325 0.09364445612759666
+0.07119785378920256 0.8765693765256009 0.07119785378920256 0.8765693765256009 0.08505249095608841
+0.07119744117271731 0.8807539870454 0.07119744117271731 0.8807539870454001 0.08790100982998132
+0.07458838836289984 0.8702930770931054 0.07458838836289984 0.8702930770931054 0.07928831091260245
+0.07458828386257772 0.8744775190148341 0.07458828386257772 0.8744775190148341 0.08193830079700265
+0.0779788121656593 0.864016809713799 0.07797881216565929 0.8640168097137991 0.07400991339815098
+0.07797880153441408 0.8682010537869717 0.07797880153441407 0.8682010537869717 0.07620893811479947
+0.08136920479942185 0.8619247533586645 0.08136920479942185 0.8619247533586645 0.07122648499054463
+0.08475958429504273 0.8556485575742894 0.08475958429504273 0.8556485575742894 0.06750798401973578
+0.08475958875603283 0.8598326994225692 0.08475958875603283 0.8598326994225692 0.06866046933305568
+0.08814994897001875 0.8493724053104935 0.08814994897001875 0.8493724053104935 0.0654655071682478
+0.08814992251007207 0.8535565411708513 0.08814992251007207 0.8535565411708513 0.06564276735479165
+0.09154033028658738 0.8430962688799687 0.09154033028658738 0.8430962688799687 0.06527471716391936
+0.0915402911102104 0.8472804398089547 0.0915402911102104 0.8472804398089547 0.06445718532111694
+0.09493071972282674 0.8368201175844887 0.09493071972282674 0.8368201175844888 0.06680256350299409
+0.09493068980036075 0.8410042927027795 0.09493068980036075 0.8410042927027795 0.0651310309751132
+0.09832111000542654 0.83054395112501 0.09832111000542654 0.83054395112501 0.06965789640175875
+0.09832109637793385 0.8347280930182354 0.09832109637793385 0.8347280930182354 0.0673839410947994
+0.10171149677493464 0.8242677893768869 0.10171149677493464 0.8242677893768869 0.07332845855421373
+0.10171149155672703 0.8284519060690623 0.10171149155672703 0.8284519060690624 0.07073596652686542
+0.1051018814947897 0.81799163418028 0.1051018814947897 0.81799163418028 0.0773122475797232
+0.1051018798209259 0.8221757403261479 0.1051018798209259 0.8221757403261479 0.07465778908467692
+0.10849226527112088 0.8117154818818206 0.10849226527112088 0.8117154818818207 0.0811931422626921
+0.10849226482307578 0.8158995840284975 0.10849226482307577 0.8158995840284975 0.07867909154551535
+0.11188264869870901 0.8054393307456956 0.11188264869870901 0.8054393307456956 0.0846668295613112
+0.11188264859019438 0.8096234316642626 0.11188264859019438 0.8096234316642626 0.0824365360744278
+0.11527303199557304 0.8033472805249892 0.11527303199557304 0.8033472805249892 0.0856825320325319
+0.11866341532236137 0.7970711297489467 0.11866341532236137 0.7970711297489467 0.08827735274991856
+0.11866341529893282 0.8012552302687187 0.1186634152989328 0.8012552302687187 0.08670729674237909
+0.12205379862580075 0.7907949790815252 0.12205379862580075 0.7907949790815252 0.09017671005676718
+0.12205379862498182 0.7949790795054973 0.12205379862498182 0.7949790795054973 0.08901754747117026
+0.12544418191937712 0.7845188284559937 0.12544418191937712 0.7845188284559937 0.09141895184014498
+0.12544418191309134 0.788702928887567 0.12544418191309134 0.788702928887567 0.09064738184121533
+0.12883456521493822 0.7782426778273432 0.12883456521493822 0.7782426778273432 0.09211220800824317
+0.1288345652101207 0.7824267782556116 0.1288345652101207 0.7824267782556116 0.09166966690217447
+0.13222494851088235 0.7719665271981196 0.13222494851088237 0.7719665271981196 0.09242034227321551
+0.13222494850865396 0.7761506276211546 0.13222494850865396 0.7761506276211546 0.09221802380772116
+0.13561533180651344 0.7656903765695234 0.13561533180651344 0.7656903765695234 0.09254621566244313
+0.13561533180575527 0.7698744769894453 0.13561533180575527 0.7698744769894453 0.09247142071550069
+0.13900571510188134 0.7594142259415048 0.13900571510188134 0.7594142259415048 0.09271116754318554
+0.1390057151017492 0.7635983263601739 0.1390057151017492 0.7635983263601739 0.09263591525271797
+0.14239609839708212 0.7531380753138278 0.14239609839708212 0.7531380753138278 0.09313087558098214
+0.14239609839704695 0.7573221757323111 0.14239609839704695 0.7573221757323111 0.09292314028833361
+0.14578648169225703 0.7468619246862009 0.14578648169225703 0.7468619246862009 0.09398986350826864
+0.14578648169224132 0.7510460251046477 0.14578648169224132 0.7510460251046477 0.09352669551829178
+0.149176864987421 0.7447698744770076 0.149176864987421 0.7447698744770076 0.09459962484390318
+0.15256724828259546 0.7384937238493791 0.15256724828259546 0.7384937238493791 0.0962376336555194
+0.15256724828258258 0.742677824267818 0.15256724828258258 0.742677824267818 0.09531014652700363
+0.15595763157776674 0.7322175732217584 0.15595763157776674 0.7322175732217584 0.09847233610028439
+0.15595763157776235 0.7364016736401777 0.15595763157776235 0.7364016736401777 0.09710940394541655
+0.1593480148729365 0.7259414225941415 0.1593480148729365 0.7259414225941415 0.10127617808087251
+0.15934801487293518 0.7301255230125543 0.15934801487293518 0.7301255230125543 0.09945942937295528
+0.16273839816810573 0.7196652719665259 0.16273839816810573 0.7196652719665259 0.1045769818704629
+0.16273839816810537 0.7238493723849365 0.1627383981681054 0.7238493723849365 0.10231777967834256
+0.1661287814632747 0.7133891213389107 0.1661287814632747 0.7133891213389107 0.10827740788433694
+0.16612878146327456 0.7175732217573209 0.16612878146327456 0.7175732217573209 0.10560935314344654
+0.16951916475844359 0.7071129707112958 0.16951916475844356 0.7071129707112958 0.11227425079579613
+0.16951916475844359 0.7112970711297057 0.16951916475844356 0.7112970711297057 0.10924454427434371
+0.17290954805361247 0.7050209205020908 0.17290954805361247 0.7050209205020908 0.11313544728803514
+0.1762999313487814 0.7029288702928858 0.1762999313487814 0.7029288702928858 0.1138396675318689
+0.1796903146439503 0.7008368200836808 0.17969031464395033 0.7008368200836808 0.11439941838869004
+0.18308069793911919 0.6987447698744758 0.18308069793911919 0.6987447698744758 0.11483568249994656
+0.18647108123428807 0.6966527196652708 0.18647108123428804 0.6966527196652708 0.11517635129978034
+0.18986146452945696 0.6945606694560658 0.18986146452945696 0.6945606694560658 0.11545435944286896
+0.19325121009989502 0.6882835567498322 0.19325121009989502 0.6882835567498322 0.11921072253733765
+0.19663895962964595 0.6861882388361975 0.19663895962964595 0.6861882388361975 0.11950110817221293
+0.20672336592941185 0.6715427698563036 0.20672336592941185 0.6715427698563036 0.12836904133457752
+0.21344202336057594 0.6635435966845076 0.2134420233605759 0.6635435966845077 0.1332492716419419
+0.21679995534893487 0.6583254060447647 0.21679995534893484 0.6583254060447646 0.13699001844486972
+0.21670520184137135 0.6617003327122054 0.21670520184137135 0.6617003327122054 0.13374701034859218
+0.22228408548215622 0.6505598205346146 0.2222840854821562 0.6505598205346147 0.14248575943805594
+0.22517509023222723 0.6482674761862135 0.22517509023222723 0.6482674761862136 0.1435855521769147
+0.22806114431390945 0.6459021024472172 0.22806114431390948 0.6459021024472172 0.14473851037351967
+0.23095794058951957 0.6435400713455492 0.2309579405895196 0.6435400713455492 0.14584754949354062
+0.23932396340595632 0.6328427288539552 0.23932396340595632 0.6328427288539552 0.15284693265189664
+0.2334989559317808 0.6375266133392529 0.2334989559317808 0.6375266133392529 0.15086413700016574
+0.2364295894564306 0.6351873823203176 0.23642958945643058 0.6351873823203177 0.15186613850470376
+0.23387557448027707 0.6412004252606262 0.23387557448027704 0.6412004252606262 0.14688080529612654
+0.21973995164196652 0.6564729966493028 0.2197399516419665 0.6564729966493027 0.1376410885321653
+0.22266302714558328 0.6543177879558038 0.2226630271455833 0.6543177879558036 0.1386037571134653
+0.21006189220843433 0.6694738564797172 0.21006189220843433 0.6694738564797172 0.12893440955286564
+0.21346038224746822 0.6674214686358291 0.21346038224746824 0.667421468635829 0.12954764047541675
+0.20001641897303987 0.6799043786044009 0.20001641897303987 0.6799043786044009 0.12356544775473073
+0.20002258809987397 0.6840911283100136 0.20002258809987397 0.6840911283100136 0.11983531423052436
+0.20339031591962564 0.6778046292189166 0.20339031591962567 0.6778046292189166 0.12398502966001686
+0.20673676719725745 0.6757256788801823 0.20673676719725745 0.6757256788801823 0.12447816378442726
+0.19325175691224183 0.6924684795202335 0.19325175691224183 0.6924684795202335 0.11570570532921452
+0.24447952011283403 0.6210960229232547 0.24447952011283403 0.6210960229232548 0.1634924662578852
+0.24722691756816043 0.618688826797573 0.24722691756816043 0.6186888267975731 0.1648186978841997
+0.24952372217376528 0.6127105757436794 0.24952372217376526 0.6127105757436794 0.1715283692418326
+0.25011595536032144 0.616312286639879 0.25011595536032144 0.616312286639879 0.16607890217214683
+0.2609249866154518 0.5934363293855879 0.26092498661545177 0.5934363293855879 0.1968674669605696
+0.25223382416752943 0.6068572091110543 0.25223382416752943 0.6068572091110543 0.17856301270010658
+0.255346394065702 0.6046435887243946 0.255346394065702 0.6046435887243947 0.180057309751843
+0.25810662748033064 0.5989913375691928 0.2581066274803306 0.5989913375691928 0.18805193675891066
+0.25842474909205126 0.602446173140191 0.25842474909205126 0.602446173140191 0.18168668368262594
+0.2611675092384466 0.5968474214316365 0.2611675092384466 0.5968474214316365 0.1900557373948459
+0.2526328787570123 0.6104239776799115 0.2526328787570123 0.6104239776799115 0.17278378651409423
+0.24189644526827725 0.6269363580046582 0.24189644526827725 0.6269363580046582 0.15800950718130483
+0.24224774325517176 0.6305448533369037 0.24224774325517176 0.6305448533369037 0.15371961725545977
+0.2448678513717935 0.6246891846654692 0.24486785137179348 0.6246891846654692 0.1588413403860518
+0.4133494669791818 0.38890003910350296 0.4133494669791818 0.38890003910350296 0.4516677541577989
+0.41692902325599046 0.39085159155742877 0.4169290232559905 0.3908515915574288 0.4703190266048875
+0.40290078286728215 0.3902936317339072 0.4029007828672821 0.3902936317339072 0.4196014182844817
+0.4098793432383382 0.3907479451028856 0.40987934323833825 0.3907479451028855 0.4476735656401559
+0.4059441838235667 0.390666813354442 0.40594418382356673 0.390666813354442 0.43282706375825714
+0.40064024696822514 0.3917968234070439 0.40064024696822514 0.3917968234070439 0.41467733863097606
+0.3944105804811733 0.3918785968137828 0.3944105804811733 0.3918785968137828 0.3873616737564373
+0.3978859483373103 0.3933778375571887 0.3978859483373103 0.39337783755718864 0.40661608302045016
+0.39147746969934366 0.3937757239398309 0.39147746969934366 0.3937757239398309 0.37731632558094924
+0.3847004299480596 0.39438421644890775 0.3847004299480596 0.39438421644890775 0.3454999593255423
+0.3882405516576206 0.3957228704691223 0.3882405516576206 0.3957228704691223 0.3644356132520658
+0.38163127679377523 0.39647058416106323 0.38163127679377523 0.39647058416106323 0.33226293176055394
+0.37492035825046177 0.39750715333756 0.3749203582504617 0.39750715333756 0.30006542971133515
+0.3786277639433493 0.39862471005886285 0.3786277639433493 0.39862471005886285 0.31834670602293547
+0.3718426660272511 0.3998053840880322 0.3718426660272511 0.3998053840880322 0.2853839659164468
+0.3642924317516055 0.40099893288404787 0.36429243175160547 0.4009989328840478 0.251270341702885
+0.3687344760921648 0.40228004440739873 0.36873447609216475 0.4022800444073988 0.27010838654642716
+0.36188646676992664 0.4039543988682273 0.36188646676992664 0.4039543988682273 0.23951776410129133
+0.3557730696759722 0.40542306170849524 0.3557730696759722 0.40542306170849524 0.2157384124389138
+0.35347201701815334 0.4074928270870213 0.35347201701815334 0.40749282708702134 0.20699833061244313
+0.35926579732763747 0.4064042838389326 0.35926579732763747 0.4064042838389326 0.22757554101928432
+0.3511224096819339 0.40983141748853213 0.3511224096819339 0.4098314174885322 0.1989770239904084
+0.34567890032876075 0.4115584375824882 0.34567890032876075 0.4115584375824883 0.18598081093594962
+0.3434607251290644 0.41401799857128796 0.3434607251290644 0.414017998571288 0.18264884442802587
+0.34932594514265264 0.4121726338714744 0.34932594514265264 0.4121726338714744 0.19374586267896157
+0.3413091529879262 0.41650611849700997 0.3413091529879262 0.41650611849700997 0.1813459993980088
+0.3355107852196568 0.41844874691824935 0.3355107852196568 0.41844874691824935 0.17975286635722168
+0.33346457327426093 0.4210787785709544 0.33346457327426093 0.4210787785709544 0.18392821904624615
+0.3391462354739678 0.41898820861506875 0.3391462354739678 0.41898820861506875 0.1820346625862723
+0.33143758602647344 0.4237679158081768 0.3314375860264734 0.4237679158081768 0.1899893569164499
+0.32569456537567715 0.4261478392106946 0.32569456537567715 0.4261478392106946 0.19928579356483114
+0.3237457487030895 0.4289842586272232 0.3237457487030895 0.4289842586272233 0.2090944499713148
+0.32945151647582077 0.42649814128105756 0.32945151647582077 0.42649814128105756 0.19770885282011216
+0.321844179054348 0.43186443408283487 0.321844179054348 0.43186443408283487 0.2198930118034139
+0.31616849516118 0.4346081770062596 0.31616849516118 0.4346081770062596 0.2343841331055739
+0.3143293052508214 0.4376483133387262 0.3143293052508214 0.4376483133387263 0.24659778940635246
+0.3199928771572385 0.43477930014687155 0.3199928771572385 0.43477930014687155 0.23140595423493673
+0.3125682209554344 0.44074228816467537 0.3125682209554344 0.44074228816467537 0.25902816101271847
+0.3070580870569318 0.44389447246425223 0.3070580870569319 0.44389447246425223 0.2740927189001941
+0.3052926652035659 0.4470462324141418 0.3052926652035659 0.4470462324141418 0.2859911976422777
+0.3108853177199085 0.4438424977591535 0.3108853177199085 0.4438424977591535 0.27135851268021677
+0.3034711871289165 0.4502380469699607 0.30347118712891646 0.4502380469699608 0.29761705505972774
+0.298618246632598 0.4543214804812515 0.298618246632598 0.4543214804812515 0.3119529396857445
+0.29711499757009996 0.45765626211843885 0.29711499757009996 0.45765626211843885 0.3221965045766933
+0.30217525582981153 0.453646778014696 0.3021752558298116 0.45364677801469605 0.30916462523543503
+0.29544905424158563 0.46082901832306383 0.2954490542415856 0.46082901832306383 0.33121918328830596
+0.29016607592702526 0.46963020541343947 0.29016607592702526 0.4696302054134395 0.3515708854345117
+0.29207569338631384 0.4667821117674782 0.29207569338631384 0.4667821117674782 0.34587406156991557
+0.29377432745387844 0.46398312813741266 0.29377432745387844 0.46398312813741266 0.3394095136043644
+0.2886521897996874 0.47278512416179114 0.2886521897996874 0.47278512416179114 0.35743248313456716
+0.2840180252868232 0.48231260905054074 0.2840180252868232 0.4823126090505408 0.369789345607265
+0.2870770973655207 0.4758987441838695 0.2870770973655206 0.4758987441838695 0.36230978264310704
+0.2855445679656752 0.47908086949308615 0.2855445679656752 0.47908086949308615 0.36645418478745206
+0.28254954993253467 0.4855978275441397 0.2825495499325346 0.4855978275441397 0.37235662890768045
+0.2820396923100982 0.4886172707040456 0.2820396923100982 0.4886172707040456 0.3746053527053541
+0.27967892185223797 0.4912656463709798 0.27967892185223797 0.49126564637097975 0.37437234439157313
+0.2785004871937438 0.49522253427622887 0.2785004871937438 0.4952225342762288 0.37502547355844223
+0.2773124802230936 0.498809049299786 0.27731248022309357 0.49880904929978603 0.37453765784269755
+0.27611408659720704 0.5023749605498117 0.276114086597207 0.5023749605498117 0.37313169818315844
+0.27483848279830897 0.5057160526552176 0.27483848279830897 0.5057160526552176 0.37084308436445385
+0.2733727582937978 0.5089731450158442 0.27337275829379776 0.5089731450158442 0.36765923567886244
+0.2726025218326743 0.5125459276869823 0.27260252183267436 0.5125459276869823 0.3643953831294886
+0.27171248392712594 0.5161448742751841 0.27171248392712594 0.5161448742751841 0.36020589853110413
+0.270817494625934 0.5197464164535611 0.270817494625934 0.5197464164535611 0.3552989141935081
+0.26991558550044165 0.5233413854927876 0.26991558550044165 0.5233413854927876 0.34976066805965633
+0.26902179362781276 0.526972085500401 0.26902179362781276 0.5269720855004011 0.34360112122286623
+0.2681847568637314 0.5306808294407406 0.2681847568637314 0.5306808294407405 0.3368410918160962
+0.26743735874853564 0.5344473161748078 0.26743735874853564 0.5344473161748078 0.3295429095313671
+0.2668320383757506 0.5381643222723574 0.2668320383757506 0.5381643222723574 0.3219571690136547
+0.26626634229499285 0.541828188029181 0.26626634229499285 0.541828188029181 0.31413152347553397
+0.2656461672929564 0.5455214180915943 0.2656461672929564 0.5455214180915943 0.3059032874446003
+0.26498468793751534 0.5493124166602721 0.26498468793751534 0.5493124166602721 0.2971939000023461
+0.2638570746247174 0.55361726910237 0.26385707462471736 0.5536172691023699 0.287094948682497
+0.2642084866018912 0.5574820119287002 0.2642084866018912 0.5574820119287002 0.27803846724501763
+0.2641155961074259 0.5610839454140913 0.2641155961074259 0.5610839454140913 0.26943427343704135
+0.2639085124557216 0.5646306879854673 0.2639085124557216 0.5646306879854673 0.2609040015169211
+0.2636760211013395 0.5681083481595846 0.26367602110133953 0.5681083481595844 0.25255164924441725
+0.2634815701688741 0.5713461508593862 0.263481570168874 0.5713461508593863 0.24480449378009347
+0.26345246804064615 0.5746246303204054 0.2634524680406462 0.5746246303204056 0.23701345066998122
+0.26364344049182786 0.5776711688653995 0.2636434404918279 0.5776711688653995 0.22983528279128684
+0.26366508664888766 0.5810764595756146 0.26366508664888766 0.5810764595756145 0.2219614912215854
+0.2637409412931102 0.5845130383058531 0.2637409412931102 0.5845130383058531 0.21417019172865145
+0.26383370476565526 0.5879510243825452 0.2638337047656552 0.5879510243825452 0.20657339289471535
+0.2639731934054929 0.5913587999024092 0.2639731934054929 0.5913587999024092 0.19925373789079145
+0.41925052141858915 0.3836671066016813 0.41925052141858915 0.3836671066016813 0.4461889684613457
+0.4194258986230462 0.3893466176456465 0.41942589862304624 0.3893466176456465 0.46965049854378205
+0.4202251341793102 0.38696196326227306 0.4202251341793102 0.38696196326227306 0.4609597263939696
+0.4223580062740686 0.3759401472789058 0.42235800627406855 0.3759401472789058 0.42735938191799655
+0.4239037348759565 0.37321845651378593 0.42390373487595656 0.37321845651378593 0.42333183316594475
+0.42277587705439684 0.37875069951560353 0.42277587705439684 0.37875069951560353 0.43600429574682
+0.4228875971071739 0.38216520742964416 0.4228875971071739 0.38216520742964416 0.44736657682954917
+0.4289268767136245 0.3617184798704839 0.4289268767136245 0.36171847987048394 0.41136679426531714
+0.428205905517683 0.36507221421894126 0.42820590551768306 0.36507221421894126 0.4146440293319433
+0.4275614678473874 0.36834856040042707 0.4275614678473874 0.36834856040042707 0.41884520445662315
+0.4272060968703382 0.3716088660666998 0.4272060968703382 0.3716088660666998 0.4244569526904938
+0.43494975343052666 0.3508447001639476 0.4349497534305266 0.3508447001639476 0.40917858318346273
+0.4340197143114097 0.35424046401633413 0.4340197143114097 0.35424046401633413 0.4107613464009196
+0.4332176511216707 0.35759253323832885 0.4332176511216707 0.3575925332383289 0.4127099730995303
+0.4325283010800339 0.3609093779524597 0.4325283010800339 0.3609093779524597 0.4152000358699133
+0.44300850196728403 0.3399008791616224 0.44300850196728403 0.3399008791616224 0.4069938564868805
+0.4405739159813703 0.34281549255779076 0.44057391598137036 0.3428154925577908 0.4082474316776215
+0.43960279113375467 0.3468688669534748 0.4396027911337547 0.3468688669534748 0.4106544765078021
+0.43871908592372616 0.35028655073597414 0.43871908592372616 0.3502865507359742 0.41255112711348035
+0.45279509929319783 0.32971023557067136 0.4527950992931978 0.32971023557067136 0.39432871611721315
+0.4485961363582627 0.3333465722125855 0.4485961363582627 0.3333465722125855 0.4008827835186272
+0.4515924456165168 0.33281968476139123 0.4515924456165168 0.3328196847613913 0.3989853394427609
+0.4476137780225746 0.33646160296986616 0.4476137780225747 0.33646160296986616 0.4043957655479411
+0.4464390766079543 0.33965083322623135 0.4464390766079543 0.33965083322623135 0.4075995891157813
+0.46848740480919987 0.3151932892142256 0.46848740480919987 0.3151932892142257 0.34369173679370774
+0.46654691683864125 0.3181974657196356 0.4665469168386412 0.3181974657196356 0.3539797346254007
+0.464942622830965 0.32125190709287943 0.46494262283096505 0.32125190709287943 0.36297169208461527
+0.4629767459129769 0.3239263325481937 0.46297674591297694 0.32392633254819364 0.37160393906909533
+0.4575695924316667 0.3264305629314954 0.4575695924316667 0.3264305629314954 0.3847252168445268
+0.4610344331582061 0.32654167728676625 0.4610344331582061 0.32654167728676625 0.37944858467164305
+0.45623189665564434 0.3296778770612633 0.4562318966556443 0.32967787706126334 0.3909927546304741
+0.47617892024396347 0.3093926883544519 0.4761789202439635 0.30939268835445194 0.30875000881700704
+0.4742050616440627 0.3124613143774376 0.4742050616440627 0.3124613143774377 0.32103520185906415
+0.47993154172867075 0.30976525801185484 0.47993154172867075 0.30976525801185484 0.2949009868005397
+0.4722290746178821 0.3155168910144913 0.4722290746178821 0.31551689101449126 0.3329439322728536
+0.4952585960240771 0.29788607502433867 0.4952585960240771 0.29788607502433867 0.20698549513900913
+0.4933258911632679 0.3004118136018127 0.4933258911632679 0.3004118136018126 0.21963039688563102
+0.4912765099196161 0.3033045407889219 0.4912765099196161 0.3033045407889219 0.23358034351195744
+0.4867359944859775 0.3050278729656127 0.4867359944859775 0.3050278729656127 0.257677286093317
+0.48477950118666735 0.306898161491968 0.48477950118666735 0.306898161491968 0.26943581433589947
+0.48954517443892925 0.30560489742955294 0.48954517443892925 0.30560489742955294 0.24532804184593693
+0.4839415323238929 0.3100673823978106 0.48394153232389303 0.3100673823978107 0.27846614397449065
+0.510200412913208 0.2908828323306393 0.510200412913208 0.29088283233063933 0.1294895340472205
+0.5033498670562759 0.29346779086418817 0.5033498670562758 0.2934677908641881 0.1625059344573698
+0.5071559207887842 0.2931769572610584 0.5071559207887842 0.29317695726105836 0.1443932003923997
+0.5010582771011243 0.2961223935207363 0.5010582771011243 0.2961223935207364 0.17620747041989857
+0.4987634555568834 0.29882738214551907 0.49876345555688334 0.298827382145519 0.19054643471509738
+0.5265694725624103 0.28496185484791947 0.5265694725624103 0.2849618548479195 0.10065699500233594
+0.5184444536649285 0.28769688432693274 0.5184444536649285 0.28769688432693274 0.10201132742672048
+0.5240304629004795 0.2872237784809959 0.5240304629004795 0.2872237784809959 0.09915223416530439
+0.5216546925336298 0.2890741042214273 0.5216546925336298 0.2890741042214273 0.09988187712947828
+0.5159990126339109 0.2898747191976057 0.5159990126339108 0.2898747191976057 0.10878681818367343
+0.5135129260895341 0.2921937647623726 0.5135129260895342 0.29219376476237263 0.11781880562939716
+0.5440841884803291 0.2802680937278779 0.544084188480329 0.2802680937278779 0.17092084081946138
+0.5353233285712302 0.28236497830393475 0.5353233285712302 0.28236497830393475 0.12806406064668818
+0.5412251968236222 0.282173156360293 0.5412251968236222 0.282173156360293 0.15844343604577724
+0.5385997802863736 0.2838011901011891 0.5385997802863737 0.28380119010118904 0.14704353294441216
+0.5325475603898833 0.28452465653285897 0.5325475603898832 0.28452465653285897 0.11898097650816682
+0.5298499773834772 0.2865925396276305 0.5298499773834772 0.2865925396276305 0.11147701749936624
+0.553318383438153 0.27812571500872973 0.5533183834381531 0.27812571500872973 0.22092343663137334
+0.5502731253968409 0.28012503691561785 0.550273125396841 0.28012503691561785 0.20731276110278649
+0.5472596208776329 0.28208821962334735 0.5472596208776329 0.28208821962334735 0.1935773667345179
+0.5565855009440169 0.2797977775387912 0.5565855009440169 0.2797977775387912 0.24501112366942338
+0.559762168499618 0.28147421157985814 0.559762168499618 0.28147421157985814 0.2690290573509089
+0.5626249004408954 0.28304583668509525 0.5626249004408955 0.28304583668509525 0.29107984250051283
+0.6151917467465393 0.24443381217414537 0.6151917467465394 0.24443381217414537 0.4438519553258243
+0.6115820050177212 0.2457489645521253 0.6115820050177212 0.24574896455212533 0.4335604066436343
+0.6079562366861059 0.24737860626806243 0.6079562366861059 0.24737860626806243 0.42317430950674223
+0.5773597408912657 0.26000774759273276 0.5773597408912657 0.26000774759273276 0.31088789358133767
+0.6044247424405778 0.2488774127950383 0.6044247424405778 0.2488774127950383 0.4122860860660937
+0.5807741320887295 0.2587024527664373 0.5807741320887295 0.2587024527664373 0.32539855317931043
+0.5841838525057569 0.2573901248525992 0.5841838525057569 0.2573901248525992 0.33947380141528166
+0.5875707632029112 0.2560397199174386 0.5875707632029111 0.2560397199174386 0.3529419061392534
+0.5909176506846304 0.2546139016603715 0.5909176506846304 0.2546139016603715 0.36563041673108326
+0.5942342700490353 0.25316716206032275 0.5942342700490353 0.2531671620603228 0.37768724184291474
+0.5975728430854064 0.25177596349161147 0.5975728430854064 0.25177596349161147 0.38953715073384165
+0.6009687276198941 0.2503327343510171 0.6009687276198941 0.2503327343510171 0.40105294364904415
+0.5732633849861276 0.26506277945458667 0.5732633849861276 0.2650627794545866 0.3019595555229091
+0.5693216378060966 0.26986503219793184 0.5693216378060965 0.26986503219793184 0.2930574670234182
+0.5682964070938525 0.2733346534832077 0.5682964070938525 0.2733346534832077 0.2968874846122848
+0.5666377624444975 0.2765659730688982 0.5666377624444975 0.27656597306889813 0.29654381137203306
+0.5659688598486046 0.2810895167885158 0.5659688598486046 0.28108951678851574 0.30570883973746515
+0.5653988374165712 0.28492700734465093 0.5653988374165712 0.2849270073446509 0.3137195269655151
+0.572502136272773 0.2686738329752199 0.572502136272773 0.2686738329752199 0.3075296314401293
+0.5765497303906213 0.26374829474068123 0.5765497303906213 0.26374829474068123 0.3161971263968714
+0.618769856620899 0.2433399174482086 0.618769856620899 0.24333991744820863 0.45385915459987664
+0.6222413156411551 0.24232928422752584 0.6222413156411551 0.24232928422752584 0.462992526604375
+0.6256516886172171 0.24136031475153438 0.6256516886172171 0.24136031475153438 0.47137298144058853
+0.6292457986751342 0.24037757839363516 0.6292457986751342 0.2403775783936352 0.4795980919336165
+0.6330992045047872 0.2396300168332497 0.6330992045047871 0.2396300168332497 0.4882735983348426
+0.6358194608907703 0.2376980807913188 0.6358194608907703 0.2376980807913188 0.4906421996902145
+0.6387245013423298 0.23753683593871677 0.6387245013423298 0.2375368359387168 0.49718396731209724
+0.6715346298064121 0.20673741610484467 0.6715346298064121 0.20673741610484467 0.4869582973475031
+0.6652639059285081 0.21006191451301615 0.6652639059285081 0.21006191451301612 0.48508670482918265
+0.6694481105302734 0.2100634697494448 0.6694481105302734 0.2100634697494448 0.4901605738571965
+0.6630959704815373 0.21347824237833252 0.6630959704815372 0.21347824237833254 0.4885760174403561
+0.6582229822992477 0.21766146031514857 0.6582229822992477 0.21766146031514857 0.49008014241933934
+0.6617739309966144 0.2169065194658721 0.6617739309966143 0.2169065194658721 0.49333956010427743
+0.6537456898514395 0.22168929390757838 0.6537456898514397 0.22168929390757838 0.49151337448678517
+0.6525812651617569 0.2250321598919501 0.652581265161757 0.2250321598919501 0.49658635393570366
+0.6421127711356739 0.23687474705750888 0.6421127711356739 0.2368747470575089 0.5030326938098987
+0.6478790498392895 0.2291319756922374 0.6478790498392896 0.2291319756922374 0.49736815676646223
+0.6467188462440393 0.23265631067628567 0.6467188462440393 0.23265631067628564 0.5028179801882703
+0.6455437538780294 0.23619432448557562 0.6455437538780294 0.23619432448557562 0.5082965379701219
+0.6514094256478765 0.22847391403250442 0.6514094256478765 0.22847391403250442 0.5019207729208937
+0.6572284164771116 0.22102881780260927 0.6572284164771115 0.22102881780260927 0.49532519779800216
+0.6820059631404706 0.19664091002116857 0.6820059631404706 0.19664091002116857 0.48362695894735247
+0.6861910237675691 0.1966418543556192 0.6861910237675691 0.1966418543556192 0.48828120345770337
+0.6799095476678789 0.20002673632673085 0.6799095476678789 0.20002673632673088 0.4860946012222411
+0.677811560724714 0.20340509189889336 0.677811560724714 0.20340509189889336 0.4887711938659774
+0.6757161262418835 0.20676859789244625 0.6757161262418835 0.20676859789244625 0.4916844861063094
+0.7071129707112851 0.1695191647584466 0.7071129707112851 0.1695191647584466 0.4720152917722657
+0.7050209205020801 0.17290954805361577 0.7050209205020801 0.17290954805361577 0.4755014511852343
+0.7029288702928748 0.17629993134878516 0.7029288702928748 0.17629993134878516 0.4786233429216669
+0.7008368200836679 0.17969031464395427 0.7008368200836679 0.17969031464395427 0.4814143162632245
+0.6987447698646821 0.18308069793218204 0.6987447698646821 0.18308069793218204 0.48392573606947503
+0.6966527195736587 0.1864710811686869 0.6966527195736587 0.1864710811686869 0.4862235457401187
+0.6945606684705635 0.18986146385742342 0.6945606684705635 0.18986146385742342 0.48838428072956636
+0.6924685008286254 0.19325181565911967 0.6924685008286254 0.19325181565911967 0.49049052699262735
+0.6903758678644479 0.19664220624718945 0.6903758678644479 0.19664220624718945 0.49262636679253674
+0.7133891213388999 0.1661287814632773 0.7133891213389 0.16612878146327728 0.4710792560987546
+0.711297071129695 0.16951916475844617 0.711297071129695 0.16951916475844617 0.4752269518657841
+0.7196652719665151 0.16273839816810898 0.7196652719665151 0.16273839816810898 0.46884257183680395
+0.71757322175731 0.1661287814632776 0.71757322175731 0.1661287814632776 0.473634388310373
+0.7259414225941305 0.15934801487294026 0.7259414225941305 0.15934801487294026 0.4654851594057728
+0.7238493723849254 0.16273839816810914 0.7238493723849254 0.16273839816810917 0.47079965050648115
+0.732217573221746 0.15595763157777132 0.732217573221746 0.15595763157777132 0.46134796723677735
+0.7301255230125409 0.15934801487294026 0.7301255230125409 0.15934801487294026 0.46696191360426403
+0.7384937238493611 0.15256724828260237 0.7384937238493611 0.15256724828260237 0.45690545528758936
+0.7364016736401561 0.15595763157777132 0.7364016736401561 0.15595763157777132 0.4625117634349795
+0.7468619246861817 0.1457864816922645 0.7468619246861817 0.1457864816922645 0.4479650269710285
+0.7447698744769767 0.14917686498743343 0.7447698744769767 0.14917686498743343 0.4527106503781866
+0.7426778242677714 0.15256724828260237 0.7426778242677714 0.15256724828260237 0.45795246282574187
+0.7531380753137972 0.14239609839709555 0.7531380753137972 0.14239609839709555 0.4455136188253938
+0.7510460251045918 0.1457864816922645 0.7510460251045918 0.1457864816922645 0.4493161149794624
+0.7594142259414125 0.1390057151019266 0.7594142259414126 0.1390057151019266 0.4445689415367306
+0.7573221757322074 0.14239609839709555 0.7573221757322074 0.14239609839709555 0.4471809875306035
+0.7656903765690277 0.13561533180675767 0.7656903765690277 0.13561533180675767 0.4452718943114798
+0.7635983263598227 0.1390057151019266 0.7635983263598227 0.1390057151019266 0.4465817982496079
+0.7719665271966429 0.13222494851158872 0.7719665271966428 0.13222494851158872 0.44749386934834895
+0.7698744769874378 0.13561533180675767 0.7698744769874378 0.13561533180675767 0.4475489589637504
+0.7782426778242585 0.12883456521641978 0.7782426778242585 0.12883456521641978 0.4508472570031224
+0.7761506276150533 0.13222494851158872 0.7761506276150533 0.13222494851158872 0.4498473666801916
+0.7845188284518736 0.12544418192125084 0.7845188284518736 0.12544418192125084 0.4547448223699577
+0.7824267782426685 0.12883456521641978 0.7824267782426685 0.12883456521641978 0.45300793323023164
+0.790794979079489 0.1220537986260819 0.790794979079489 0.1220537986260819 0.4584926318957167
+0.7887029288702839 0.12544418192125084 0.7887029288702839 0.12544418192125084 0.45640219269539223
+0.7991631799163095 0.11527303203574402 0.7991631799163095 0.11527303203574402 0.46349417372638696
+0.7970711297071045 0.11866341533091296 0.7970711297071045 0.11866341533091296 0.46139565749956507
+0.7949790794978994 0.1220537986260819 0.7949790794978994 0.1220537986260819 0.459341835262384
+0.8054393305439246 0.11188264874057507 0.8054393305439246 0.11188264874057507 0.4643853835057546
+0.8033472803347195 0.11527303203574402 0.8033472803347195 0.11527303203574402 0.46285777592570226
+0.8117154811715399 0.10849226544540613 0.8117154811715398 0.10849226544540613 0.4632266691994809
+0.8096234309623347 0.11188264874057507 0.8096234309623346 0.11188264874057507 0.462464510232159
+0.8179916317991552 0.10510188215023719 0.8179916317991552 0.10510188215023719 0.4599773719605003
+0.81589958158995 0.10849226544540613 0.81589958158995 0.10849226544540613 0.4600429858728327
+0.8242677824267708 0.10171149885506825 0.8242677824267709 0.10171149885506825 0.45488038937444086
+0.8221757322175655 0.10510188215023719 0.8221757322175655 0.10510188215023719 0.45569681348566454
+0.8305439330543861 0.09832111555989931 0.8305439330543861 0.09832111555989931 0.4484542342788424
+0.8284518828451812 0.10171149885506825 0.8284518828451812 0.10171149885506825 0.4498137855746638
+0.8368200836820014 0.09493073226473037 0.8368200836820013 0.09493073226473037 0.44145229163226835
+0.8347280334727963 0.09832111555989931 0.8347280334727963 0.09832111555989931 0.44304247677465325
+0.8430962343096168 0.09154034896956142 0.8430962343096168 0.09154034896956142 0.4347836021985651
+0.8410041841004117 0.09493073226473037 0.8410041841004116 0.09493073226473037 0.4362319548481796
+0.8493723849372321 0.08814996567439248 0.8493723849372321 0.08814996567439248 0.4293928639409503
+0.847280334728027 0.09154034896956142 0.847280334728027 0.09154034896956142 0.4303297228011241
+0.8556485355648474 0.08475958237922354 0.8556485355648474 0.08475958237922354 0.426108138749044
+0.8535564853556423 0.08814996567439248 0.8535564853556422 0.08814996567439248 0.4262403105969132
+0.8640167364016679 0.07797881578888566 0.8640167364016679 0.07797881578888566 0.4263537101272293
+0.8619246861924628 0.0813691990840546 0.8619246861924629 0.0813691990840546 0.4254822798609241
+0.8598326359832577 0.08475958237922354 0.8598326359832577 0.08475958237922354 0.424662388689039
+0.8702928870292832 0.07458843249371672 0.8702928870292831 0.07458843249371672 0.4293201784710545
+0.8682008368200781 0.07797881578888566 0.8682008368200781 0.07797881578888566 0.4276695314523224
+0.8765690376568985 0.07119804919854777 0.8765690376568985 0.07119804919854777 0.43449797621067193
+0.8744769874476934 0.07458843249371672 0.8744769874476933 0.07458843249371672 0.43237767998703797
+0.8828451882845139 0.06780766590337883 0.8828451882845139 0.06780766590337883 0.4410632245116998
+0.8807531380753088 0.07119804919854777 0.8807531380753088 0.07119804919854777 0.43891199978774287
+0.8891213579385225 0.06441728173060492 0.8891213579385225 0.06441728173060492 0.4479762722123592
+0.8870293922480661 0.06780765700123241 0.8870293922480661 0.06780765700123241 0.4462929878999347
+0.8953978421355151 0.06102647851769477 0.8953978421355151 0.06102647851769477 0.4541313395209076
+0.893305904116611 0.06441676650554476 0.893305904116611 0.06441676650554475 0.4534065960100135
+0.9016756577787137 0.057634908442782296 0.9016756577787138 0.057634908442782296 0.4584869995184961
+0.8995838687473113 0.06102458938980593 0.8995838687473113 0.06102458938980593 0.45914817953414394
+0.9079543133591365 0.054243125366779686 0.9079543133591365 0.054243125366779686 0.4601605160364493
+0.905863973098968 0.05763169437305531 0.905863973098968 0.05763169437305531 0.4625341553312439
+0.9163203563697276 0.04746409387054503 0.9163203563697276 0.04746409387054503 0.45294722508828406
+0.9142306161941766 0.05085301306497206 0.9142306161941766 0.05085301306497205 0.45849294558461634
+0.9121428522987696 0.054240228080206794 0.9121428522987696 0.054240228080206794 0.46278001844242844
+0.9226004800592319 0.044070853595399306 0.9226004800592319 0.044070853595399306 0.4456164444416784
+0.9205088705749046 0.04746196368975349 0.9205088705749046 0.04746196368975349 0.4530768738341325
+0.9288808134510566 0.04067413056871859 0.9288808134510566 0.040674130568718596 0.43450380412857253
+0.9267921696192668 0.0440639739398844 0.9267921696192668 0.0440639739398844 0.4437493443055676
+0.9351589758303107 0.037278079546032704 0.9351589758303106 0.037278079546032704 0.41984209287697594
+0.9330710339322787 0.04066427892516435 0.9330710339322789 0.04066427892516435 0.4306292381396381
+0.9414380225501263 0.03388509925608665 0.9414380225501263 0.03388509925608665 0.4020802602598814
+0.9393484550139961 0.03726857132492383 0.9393484550139961 0.03726857132492383 0.4140816002810322
+0.9477058817802946 0.030477465489477207 0.9477058817802945 0.030477465489477207 0.3818295144371407
+0.9456116469351415 0.03385972647809111 0.9456116469351415 0.03385972647809111 0.39464857982746837
+0.9539624590717458 0.02705643415655978 0.9539624590717458 0.02705643415655978 0.3599090823738494
+0.9518611235771073 0.030429013065249953 0.9518611235771072 0.030429013065249953 0.3730659234346545
+0.9602186608832647 0.023629469871534355 0.9602186608832647 0.023629469871534355 0.33723938960595484
+0.9581016008259874 0.026995346516294042 0.9581016008259874 0.026995346516294042 0.35027236259407024
+0.9664609966222032 0.0201811923933034 0.9664609966222032 0.0201811923933034 0.314867649810665
+0.9643501211544946 0.023537442162511826 0.9643501211544946 0.023537442162511826 0.32719524605805267
+0.9726895800626527 0.0167941182829639 0.9726895800626528 0.0167941182829639 0.29401597776097144
+0.9705543652133612 0.020110361350822226 0.9705543652133614 0.020110361350822226 0.30518411169818
+0.9767429743355551 0.016717423049497415 0.9767429743355551 0.016717423049497415 0.28525124763756
+0.9811612349687716 0.010073631727211407 0.9811612349687716 0.010073631727211407 0.2672064590884069
+0.9790105903416831 0.013384381704115496 0.9790105903416831 0.013384381704115494 0.2754303158870723
+0.985232340652972 0.010104791589782955 0.985232340652972 0.010104791589782955 0.2607617308489398
+0.9874932422440109 0.00674355051314348 0.9874932422440109 0.00674355051314348 0.2545357030443213
+0.9916606383147535 0.006400733248559998 0.9916606383147535 0.006400733248559998 0.25003735273600797
+0.008260801431857534 0.9935360931986082 0.008260801431857534 0.9935360931986082 0.06077797873482077
+0.009954485372195343 0.9896694814646556 0.009954485372195343 0.9896694814646557 0.06210646340148429
+0.013304423362408816 0.9832216021550764 0.013304423362408816 0.9832216021550764 0.06546414476698736
+0.012397697166539039 0.9866606141079801 0.012397697166539039 0.9866606141079801 0.0637340626220122
+0.01619030231514723 0.9821995710995628 0.01619030231514723 0.9821995710995628 0.06681222543497876
+0.017949049256585362 0.9796546805150387 0.017949049256585362 0.9796546805150387 0.06875401947688854
+0.01985771978024013 0.9742585970689696 0.01985771978024013 0.9742585970689696 0.07265128522173227
+0.01980272291107843 0.9772904057283419 0.01980272291107843 0.9772904057283419 0.07079645876968566
+0.02243535739428594 0.9725781553708907 0.02243535739428594 0.9725781553708905 0.07475430599977498
+0.023768837601928272 0.9690358539101813 0.023768837601928272 0.9690358539101814 0.07766536526054783
+0.026914368396421588 0.9621705810634552 0.026914368396421588 0.9621705810634552 0.08363451434623072
+0.02706743421473974 0.9659897412616439 0.027067434214739738 0.9659897412616439 0.08120784543575026
+0.03042858989922465 0.9561628364855684 0.03042858989922465 0.9561628364855684 0.08920223645873514
+0.03015208212694433 0.9601753463452448 0.03015208212694433 0.9601753463452448 0.08655371709518454
+0.03387162895193648 0.9498126774035965 0.03387162895193648 0.9498126774035965 0.09463671539805274
+0.033905750175768475 0.9540065989068621 0.033905750175768475 0.9540065989068621 0.09229736588123337
+0.03725478961579224 0.947796824595751 0.03725478961579224 0.947796824595751 0.09742405271582656
+0.037219568715824054 0.9436347801122658 0.037219568715824054 0.9436347801122658 0.09936280082546856
+0.04065291902473976 0.9373246623108423 0.04065291902473977 0.9373246623108423 0.10339801166630848
+0.040620491705371964 0.9416375472898793 0.040620491705371964 0.9416375472898793 0.10184714984517107
+0.0440680667337934 0.9309880514040315 0.0440680667337934 0.9309880514040315 0.10643020234363369
+0.044059232559672416 0.9351959596800734 0.044059232559672416 0.9351959596800734 0.10549266347394519
+0.04746179499653199 0.9246924262868236 0.04746179499653199 0.9246924262868236 0.10829495964266518
+0.04746410481216895 0.9288863725265065 0.04746410481216895 0.9288863725265065 0.10797000693604764
+0.05083843548340813 0.9226308313095916 0.05083843548340813 0.9226308313095916 0.10920969820290947
+0.054220940696624455 0.9163647058083302 0.054220940696624455 0.9163647058083303 0.10915872593762659
+0.054206284811891894 0.9205718897868653 0.05420628481189189 0.9205718897868653 0.10974345780271948
+0.05762706446862475 0.9100611456333514 0.05762706446862475 0.9100611456333514 0.10777818605090113
+0.05761321064416248 0.9142661587426132 0.05761321064416248 0.9142661587426132 0.10898854795240032
+0.06102260340825868 0.9037742210109485 0.06102260340825868 0.9037742210109485 0.1051121044736031
+0.06101759879883959 0.9079646907996629 0.06101759879883959 0.9079646907996629 0.10689463074827592
+0.06441486123056225 0.8974930068316533 0.06441486123056227 0.8974930068316533 0.1012662299657874
+0.06441288517126281 0.9016808205107294 0.06441288517126281 0.9016808205107294 0.10354417423791
+0.06780480828189539 0.8912150108524909 0.06780480828189539 0.8912150108524909 0.09641592275080842
+0.06780273012940727 0.8954007070128901 0.06780273012940728 0.8954007070128901 0.09907870614973856
+0.07119637669304808 0.884939066679959 0.07119637669304808 0.8849390666799589 0.0908100677543595
+0.07119409437234893 0.8891246797130768 0.07119409437234893 0.8891246797130768 0.09371238214524795
+0.07458796520084711 0.8786624359519212 0.07458796520084711 0.8786624359519212 0.08477963058842142
+0.07458707921527936 0.8828482072045324 0.07458707921527936 0.8828482072045324 0.08773569204759567
+0.07797876270380318 0.8723855380922932 0.07797876270380318 0.8723855380922932 0.07874213933114617
+0.0779786306109703 0.8765705789564447 0.07797863061097031 0.8765705789564447 0.08152796844168274
+0.08136921544854164 0.8661089793106346 0.08136921544854164 0.8661089793106346 0.07319099763920019
+0.08136924184230433 0.8702934082169365 0.08136924184230433 0.8702934082169363 0.0755522968802128
+0.08475960386037136 0.8640169055529615 0.08475960386037136 0.8640169055529615 0.07033611846827359
+0.08814987789337429 0.857740715161639 0.08814987789337429 0.857740715161639 0.06641589204324201
+0.08814985557662529 0.8619249156828719 0.08814985557662529 0.8619249156828719 0.06775274946784177
+0.09154018893613848 0.8514647104525919 0.09154018893613848 0.8514647104525919 0.06422522526489005
+0.09153997085658211 0.8556491224720174 0.09153997085658211 0.8556491224720174 0.06459353409027573
+0.09493059881362499 0.8451885994435795 0.09493059881362499 0.8451885994435795 0.06395402023641344
+0.09493035273244438 0.8493731871509972 0.09493035273244438 0.8493731871509972 0.063325985666161
+0.09832105314741496 0.8389123167248059 0.09832105314741496 0.8389123167248059 0.06546754243838997
+0.09832092672349017 0.8430967496594112 0.09832092672349017 0.8430967496594112 0.06398140659551409
+0.10171147443837285 0.8326360567006489 0.10171147443837285 0.8326360567006489 0.06835880662388777
+0.10171142157619574 0.8368203014360523 0.10171142157619574 0.8368203014360523 0.06626800375882352
+0.1051018741656116 0.8263598590385728 0.1051018741656116 0.8263598590385728 0.07209638500517464
+0.10510185585037068 0.8305440146671548 0.10510185585037068 0.8305440146671547 0.06968705958468922
+0.10849226328481837 0.8200836900817916 0.10849226328481838 0.8200836900817915 0.07616440206898047
+0.10849225816418745 0.824267808119625 0.10849225816418744 0.824267808119625 0.07369354163786797
+0.11188264821213789 0.8138075337516119 0.11188264821213789 0.8138075337516119 0.08014018841330715
+0.11188264692571061 0.8179916395584139 0.11188264692571061 0.817991639558414 0.07780863036888729
+0.11527303188538797 0.8075313814050511 0.11527303188538797 0.807531381405051 0.08371829144741806
+0.11527303147692942 0.8117154833467405 0.11527303147692942 0.8117154833467405 0.08166670837071331
+0.11866341521273609 0.8054393310197218 0.11866341521273609 0.8054393310197218 0.08502131147420018
+0.12205379862177201 0.7991631799440605 0.12205379862177201 0.7991631799440605 0.08773459021051798
+0.1220537986092894 0.8033472804334232 0.1220537986092894 0.8033472804334231 0.08633106144874424
+0.12544418188649215 0.7928870293597933 0.12544418188649217 0.7928870293597933 0.08976281016795451
+0.12544418177706038 0.7970711299921049 0.12544418177706038 0.7970711299921049 0.08875942259016346
+0.128834565190218 0.7866108787142666 0.128834565190218 0.7866108787142666 0.09114197133054207
+0.1288345651102226 0.790794979292507 0.1288345651102226 0.790794979292507 0.09051485008672809
+0.13222494849963082 0.7803347280582179 0.13222494849963082 0.7803347280582179 0.09197379163646124
+0.13222494846402072 0.7845188285499632 0.13222494846402075 0.7845188285499632 0.09166550185459112
+0.13561533180268606 0.7740585774138925 0.13561533180268606 0.7740585774138925 0.09241101017029829
+0.13561533179050136 0.7782426778558679 0.13561533179050136 0.7782426778558679 0.09233589735047508
+0.13900571510121373 0.7677824267796174 0.13900571510121373 0.7677824267796174 0.09264078629402367
+0.13900571509907597 0.7719665272020726 0.13900571509907597 0.7719665272020726 0.0926913871433057
+0.1423960983968924 0.7615062761510364 0.1423960983968924 0.7615062761510364 0.09286545542089454
+0.14239609839621503 0.7656903765707934 0.14239609839621503 0.7656903765707934 0.09292071347072567
+0.1457864816921692 0.7552301255232218 0.1457864816921692 0.7552301255232218 0.09328102244703024
+0.1457864816918409 0.7594142259423614 0.1457864816918409 0.7594142259423614 0.0932165212159047
+0.14917686498738825 0.7489539748954938 0.14917686498738825 0.7489539748954938 0.09405541967860002
+0.1491768649872407 0.753138075314239 0.1491768649872407 0.753138075314239 0.0937549501218638
+0.15256724828252588 0.7468619246863524 0.15256724828252588 0.7468619246863524 0.09467690135190672
+0.15595763157774328 0.7405857740586272 0.1559576315777433 0.7405857740586272 0.09607450479239697
+0.15595763157766204 0.7447698744772024 0.15595763157766204 0.7447698744772024 0.09534853066852979
+0.15934801487292952 0.7343096234309753 0.15934801487292952 0.7343096234309753 0.09798588220030581
+0.15934801487290565 0.7384937238494311 0.15934801487290565 0.7384937238494311 0.0968470030893185
+0.16273839816810381 0.7280334728033493 0.16273839816810384 0.7280334728033493 0.10039928685115462
+0.16273839816809743 0.7322175732217708 0.16273839816809743 0.7322175732217708 0.09882341172880103
+0.16612878146327423 0.7217573221757317 0.16612878146327423 0.7217573221757317 0.10326496929382216
+0.16612878146327256 0.7259414225941457 0.16612878146327256 0.7259414225941457 0.10125518354373629
+0.1695191647584435 0.7154811715481161 0.1695191647584435 0.7154811715481161 0.10651110810400662
+0.16951916475844309 0.719665271966527 0.16951916475844309 0.719665271966527 0.10409171943536093
+0.17290954805361247 0.7092050209205008 0.17290954805361247 0.7092050209205008 0.1100597447568936
+0.17290954805361244 0.7133891213389112 0.17290954805361244 0.7133891213389112 0.10726908170471217
+0.1762999313487814 0.7071129707112959 0.1762999313487814 0.7071129707112959 0.11072319204852754
+0.17969031464395036 0.7050209205020911 0.17969031464395036 0.7050209205020911 0.11124517981965386
+0.18308069793911932 0.7029288702928862 0.18308069793911932 0.7029288702928862 0.11164502098968714
+0.1864710812342882 0.7008368200836812 0.1864710812342882 0.7008368200836812 0.11194960904019978
+0.18986146452945715 0.6987447698744762 0.18986146452945715 0.6987447698744762 0.11219164477130285
+0.19325184782462604 0.6966527196652712 0.19325184782462604 0.6966527196652712 0.11240755436021364
+0.19664119062700236 0.6903751403908469 0.19664119062700236 0.6903751403908469 0.1159679728295663
+0.20002817320514443 0.6882798600144692 0.20002817320514446 0.6882798600144692 0.11627706297276634
+0.21006096879680466 0.6736517519696129 0.21006096879680466 0.6736517519696129 0.12506169326966762
+0.21714618366316896 0.6655558079699776 0.21714618366316896 0.6655558079699776 0.12998466989840365
+0.21995226405974855 0.6600210891117958 0.21995226405974852 0.6600210891117958 0.1341538927191295
+0.2194853216464483 0.6630306964302611 0.2194853216464483 0.6630306964302611 0.13147612621856392
+0.22556716092185292 0.651994183640924 0.22556716092185294 0.651994183640924 0.13974045339864957
+0.22845926696676502 0.6496104953433064 0.22845926696676502 0.6496104953433064 0.14091462559289988
+0.2313394776876789 0.6472058076250362 0.2313394776876789 0.6472058076250362 0.142072647246649
+0.23422587405324455 0.6448087303335326 0.23422587405324455 0.6448087303335326 0.14316556794268984
+0.24258643531747903 0.6341955322942175 0.24258643531747906 0.6341955322942175 0.14962750401155003
+0.23969561247332097 0.6365379478400816 0.23969561247332097 0.6365379478400816 0.14876056930188472
+0.23679598461387535 0.6388794176908841 0.23679598461387538 0.638879417690884 0.14783908584446695
+0.23713733330323972 0.6424696313671108 0.23713733330323974 0.6424696313671108 0.1441305259404708
+0.2230221643503009 0.6582125932543008 0.2230221643503009 0.6582125932543007 0.1347536699831097
+0.22594855256636417 0.6558246024710432 0.22594855256636417 0.6558246024710432 0.13596480824896182
+0.21331720155832823 0.6715426138739284 0.21331720155832823 0.6715426138739283 0.12578879523643252
+0.21650483332317133 0.6693309636094639 0.21650483332317136 0.6693309636094639 0.126692097199102
+0.2034007125455866 0.6819946201565212 0.2034007125455866 0.6819946201565212 0.12023948486794404
+0.20341263609218424 0.6861845096180482 0.2034126360921842 0.6861845096180482 0.11666159933809674
+0.2067668809970811 0.6798978636996952 0.2067668809970811 0.6798978636996952 0.1207387575954028
+0.21010620426846757 0.6778588062878357 0.21010620426846757 0.6778588062878357 0.12130014144346761
+0.19664210172396648 0.6945604700949293 0.19664210172396648 0.6945604700949293 0.11263535429920003
+0.24778795612272397 0.622315209398716 0.24778795612272395 0.622315209398716 0.15985373564511776
+0.250699065935795 0.6199182359758487 0.250699065935795 0.6199182359758487 0.1609233786766239
+0.2531245300825838 0.6139840496452523 0.2531245300825838 0.6139840496452523 0.16724048460434704
+0.25366050789297356 0.617556562903501 0.2536605078929735 0.617556562903501 0.16195401720696226
+0.26418961551063835 0.5947267401942954 0.2641896155106384 0.5947267401942954 0.1922276017335639
+0.25572424649701014 0.6081619941951819 0.25572424649701014 0.608161994195182 0.17411138354912362
+0.25878664089126063 0.6059261875343008 0.25878664089126063 0.6059261875343008 0.17553867156505898
+0.2614728969696584 0.6002562457781276 0.2614728969696584 0.6002562457781276 0.18348310472756535
+0.2618262143749936 0.6036958342455977 0.2618262143749936 0.6036958342455977 0.17711766831823775
+0.2644844330094905 0.5980775600975005 0.2644844330094905 0.5980775600975005 0.18546266635503372
+0.25616257482962373 0.6116827554443754 0.25616257482962373 0.6116827554443754 0.16841949254383334
+0.245233977152338 0.6282555470329158 0.245233977152338 0.6282555470329158 0.15449537668260724
+0.2455124071008533 0.6318884624589287 0.24551240710085329 0.6318884624589288 0.15038788342460827
+0.24579392078461543 0.6354612615426317 0.2457939207846154 0.6354612615426317 0.14659263111033372
+0.24824380387618936 0.6259185778520865 0.24824380387618936 0.6259185778520865 0.15527142884968773
+0.42053757062477654 0.39251426927624317 0.4205375706247766 0.3925142692762432 0.4878101619952354
+0.4136577839593051 0.39222473687630277 0.41365778395930514 0.39222473687630277 0.4665782457591226
+0.4172274879240538 0.39426244900255897 0.4172274879240538 0.39426244900255897 0.48762518986284603
+0.41114726776003535 0.393996335973774 0.41114726776003535 0.393996335973774 0.46524028010285495
+0.4037911057711156 0.39307789100062657 0.4037911057711156 0.39307789100062657 0.4320483816521969
+0.4077574380056352 0.39438286439417625 0.40775743800563513 0.3943828643941763 0.453543950270063
+0.40105512591537035 0.3948699850467139 0.40105512591537035 0.3948699850467139 0.42536575984033353
+0.39506440214858957 0.39563943536071566 0.39506440214858957 0.3956394353607156 0.39846228489549607
+0.3984364006116914 0.39608488765604866 0.3984364006116914 0.39608488765604866 0.4160552867563426
+0.3914952911688253 0.39706566938869337 0.39149529116882537 0.39706566938869337 0.38296861663225684
+0.38523077880027606 0.3977333666182496 0.38523077880027606 0.3977333666182496 0.35142700425644646
+0.3887152032511663 0.3990356097186934 0.3887152032511663 0.3990356097186934 0.3711908211833674
+0.38228611720619105 0.3997906585445256 0.38228611720619105 0.3997906585445256 0.337595136248027
+0.37562301382766256 0.40089785908878267 0.37562301382766256 0.40089785908878267 0.3035790311436895
+0.3793365640978065 0.40194874666065283 0.37933656409780653 0.40194874666065283 0.32274470561256224
+0.37262324391419804 0.4032540430344254 0.37262324391419804 0.4032540430344254 0.28816987272481714
+0.36568188592303713 0.40485864114262693 0.36568188592303713 0.40485864114262693 0.25486641392865206
+0.3696663086499667 0.40570248824316196 0.3696663086499667 0.40570248824316196 0.2725669211604413
+0.36295481391821754 0.4073425178668205 0.36295481391821754 0.40734251786682046 0.24138832156092863
+0.35660233955442905 0.4086911988537274 0.35660233955442905 0.4086911988537274 0.216391412632257
+0.35406906347490164 0.41018003449266177 0.35406906347490164 0.41018003449266177 0.2072774720754051
+0.36005826386411177 0.40985524610459534 0.3600582638641118 0.4098552461045953 0.22788545174162503
+0.35297267510580993 0.4126339098237898 0.35297267510580993 0.4126339098237897 0.2028787638564176
+0.3471085366159083 0.4145877159116326 0.3471085366159083 0.4145877159116326 0.18890849455129236
+0.34495534954349505 0.4170392125933837 0.3449553495434951 0.4170392125933837 0.1860565972870649
+0.35073978900557223 0.4151448676715732 0.3507397890055723 0.41514486767157327 0.19639896577953497
+0.34278181162383975 0.4194809044077073 0.34278181162383975 0.4194809044077073 0.18521443495401066
+0.3371540296665063 0.4215493901725295 0.3371540296665063 0.4215493901725295 0.18491646656391222
+0.3351564717000599 0.42418044339833627 0.3351564717000599 0.4241804433983363 0.1898119040823871
+0.3407867955329487 0.42199567212643657 0.3407867955329487 0.42199567212643657 0.1866601783051813
+0.33317565848326 0.4268482992058771 0.33317565848326 0.4268482992058771 0.1965282562303039
+0.32750922703804647 0.4292715980456639 0.32750922703804647 0.4292715980456639 0.2068514017216074
+0.3256154656653319 0.4320904009879596 0.3256154656653319 0.43209040098795964 0.2171643614730334
+0.3312384543661707 0.4295564964415434 0.3312384543661708 0.4295564964415434 0.20485072265119042
+0.32377541182950437 0.43494644855078096 0.32377541182950437 0.43494644855078096 0.22835921609951323
+0.3181719233913614 0.43775147113930274 0.3181719233913614 0.43775147113930274 0.24350069196126725
+0.3164089824892446 0.44076227835678666 0.3164089824892446 0.44076227835678666 0.2558833438532649
+0.3219653145746118 0.43785847445735665 0.3219653145746118 0.43785847445735665 0.24027761634751962
+0.3147015321595074 0.4438107362546986 0.3147015321595074 0.4438107362546986 0.2683735914285312
+0.3091984845875007 0.4469738282112865 0.3091984845875007 0.4469738282112865 0.28357990290359836
+0.3075279726888468 0.4501414958263387 0.30752797268884674 0.4501414958263387 0.2955474394072624
+0.31303723978251863 0.44689098192890575 0.3130372397825187 0.4468909819289058 0.28080078490943766
+0.30596549405370793 0.4534003073791654 0.30596549405370793 0.4534003073791654 0.3072521913502009
+0.300766182414062 0.4571235322730321 0.300766182414062 0.4571235322730321 0.32038694391971756
+0.29920250043032814 0.46040741581859934 0.2992025004303281 0.4604074158185993 0.33030899517546647
+0.3045327115715036 0.45670610493240216 0.3045327115715036 0.4567061049324021 0.31849001064349775
+0.2975921596114106 0.46368703449308424 0.2975921596114106 0.4636870344930842 0.3394077418032208
+0.2931420814079093 0.4694029730076904 0.2931420814079093 0.4694029730076904 0.35235380768882546
+0.2921706326868745 0.4722091357145067 0.2921706326868745 0.4722091357145067 0.3581627528255465
+0.2957640200252794 0.46728536874472326 0.2957640200252794 0.4672853687447232 0.3484173373615183
+0.29072506977142804 0.4753049491256794 0.29072506977142804 0.4753049491256794 0.36355997693917064
+0.28645186714116333 0.48478027083801484 0.28645186714116333 0.48478027083801484 0.3748519560830044
+0.2878192563120926 0.48164440032518674 0.28781925631209265 0.4816444003251867 0.3719749718309471
+0.2892234548275696 0.47848583860425525 0.2892234548275696 0.47848583860425525 0.36820326855743746
+0.28505166556049566 0.4880325789251819 0.2850516655604957 0.488032578925182 0.3769065633718301
+0.2834975384469842 0.4911891025749848 0.2834975384469842 0.4911891025749848 0.3779942226427206
+0.28213232458647375 0.49432571845098017 0.28213232458647375 0.4943257184509802 0.37837260438857306
+0.2809205108128747 0.49778838908086004 0.2809205108128747 0.49778838908086004 0.3781515705479126
+0.2797324193110258 0.5013570058519043 0.2797324193110258 0.5013570058519043 0.37704761414878446
+0.2786859715890841 0.5053427988353004 0.2786859715890841 0.5053427988353004 0.37506352647515
+0.27655849283418 0.5081655602326489 0.27655849283418 0.5081655602326489 0.37139717914098375
+0.2761890282719925 0.5113154864302504 0.2761890282719925 0.5113154864302504 0.36903464745389614
+0.2752985139323257 0.5148624996932724 0.2752985139323257 0.5148624996932724 0.36503800044455376
+0.2743923612157709 0.5184822962500274 0.2743923612157709 0.5184822962500274 0.36021159080129855
+0.273482311255848 0.5220403644606213 0.273482311255848 0.5220403644606213 0.35477165405016325
+0.27254341947742067 0.5255725291545587 0.2725434194774206 0.5255725291545587 0.34873676665850234
+0.2717082546996486 0.5291737382901872 0.2717082546996486 0.5291737382901872 0.34214015090693856
+0.2709951381156718 0.5328448844274898 0.27099513811567183 0.5328448844274898 0.33501006626817365
+0.2703527342655367 0.5365287017326009 0.2703527342655367 0.5365287017326009 0.3274084497954312
+0.26973226377554843 0.5402166470593626 0.26973226377554843 0.5402166470593626 0.31938654024782753
+0.26912625418723973 0.5439072149659963 0.26912625418723973 0.5439072149659961 0.31102123537948717
+0.26851859867488587 0.547667304430116 0.26851859867488587 0.547667304430116 0.30221664333989323
+0.2679127753983659 0.551601167972214 0.2679127753983659 0.551601167972214 0.2928114793280047
+0.2676229866190285 0.5555634699886766 0.2676229866190285 0.5555634699886766 0.2831693558392087
+0.2674750272024158 0.55918448887384 0.2674750272024158 0.5591844888738401 0.2742426346321933
+0.2672358357267513 0.5628249780101809 0.2672358357267513 0.5628249780101809 0.2651939483606443
+0.2669333126505364 0.5664913257629447 0.2669333126505364 0.5664913257629447 0.2560894337151232
+0.266592824829697 0.570118116463024 0.266592824829697 0.570118116463024 0.24716601828674545
+0.26580062953050454 0.5729326499548438 0.26580062953050454 0.5729326499548438 0.24040935885917175
+0.26664437103377436 0.5755370973053751 0.2666443710337743 0.5755370973053751 0.23388841100692814
+0.2667558030993127 0.5789711177095106 0.2667558030993127 0.5789711177095106 0.2255925538440888
+0.26683932876768096 0.5824528704771278 0.26683932876768096 0.5824528704771278 0.21736066719099803
+0.2669062907160053 0.5859152595817533 0.2669062907160053 0.5859152595817533 0.20939185838511595
+0.26699821245974475 0.5893187766267322 0.26699821245974475 0.5893187766267322 0.20177794701168802
+0.2671595879408683 0.5926610117220891 0.2671595879408683 0.5926610117220891 0.19452159948559966
+0.4228518868027293 0.3854905393894877 0.4228518868027293 0.3854905393894877 0.4599560133457092
+0.42277512890157426 0.3893920367612409 0.4227751289015743 0.38939203676124085 0.4770666554018112
+0.42374051530921375 0.3924723142374577 0.4237405153092137 0.3924723142374577 0.49432600616442024
+0.42311261850390064 0.39499771493069696 0.42311261850390064 0.39499771493069696 0.5072894910864899
+0.4252983391519714 0.3767361923037096 0.4252983391519714 0.3767361923037096 0.4340799212902131
+0.4270865592034837 0.37443926416993295 0.4270865592034837 0.37443926416993295 0.43052877163249226
+0.42651520602875426 0.3806304605348233 0.42651520602875426 0.38063046053482325 0.4474661396867453
+0.4262108233236348 0.38443763224042715 0.4262108233236348 0.3844376322404272 0.46076846164733926
+0.43197972411548224 0.3642936284188744 0.4319797241154823 0.3642936284188744 0.4185720310804717
+0.4307970864751258 0.3674115160011393 0.4307970864751258 0.3674115160011393 0.4215217479005375
+0.4301968671086964 0.370632239337832 0.4301968671086964 0.370632239337832 0.4263576784230087
+0.42988790482603967 0.37385438828800144 0.4298879048260397 0.37385438828800144 0.4326898031001853
+0.43776676377304896 0.35360700525804295 0.43776676377304896 0.35360700525804295 0.4143252876195231
+0.43685860518165437 0.35692007369285955 0.43685860518165437 0.35692007369285955 0.41626583193246575
+0.43601221762806475 0.3601956420182677 0.43601221762806475 0.3601956420182677 0.4185332647164272
+0.43529436782286823 0.36358448081167677 0.4352943678228682 0.36358448081167677 0.4215735257750834
+0.44498885074599664 0.3428887041402678 0.44498885074599664 0.3428887041402678 0.41033339110090633
+0.44356901585268155 0.3462669518112 0.44356901585268155 0.3462669518112 0.4127660212619269
+0.4424755444074708 0.3497078835459213 0.4424755444074708 0.3497078835459213 0.41506525587111115
+0.4415000829495956 0.35304121409564915 0.4415000829495956 0.35304121409564915 0.41720904186596824
+0.4548820149335965 0.33258661127449834 0.45488201493359653 0.33258661127449834 0.39627814655327737
+0.450966198034703 0.33614963570725065 0.450966198034703 0.33614963570725065 0.40323314199634464
+0.4535051677294848 0.3350834643199548 0.4535051677294848 0.3350834643199548 0.4005167160987325
+0.45000702049449454 0.33928417916333914 0.45000702049449454 0.33928417916333914 0.4070722527604394
+0.44879961074436814 0.3426507751172226 0.44879961074436814 0.3426507751172226 0.41079170360548645
+0.47025014538628757 0.31856923897359696 0.47025014538628757 0.31856923897359696 0.34439630727054604
+0.4683710257950999 0.3215922280213109 0.46837102579509987 0.3215922280213109 0.3549747694644289
+0.4664670423583146 0.32462084960693005 0.46646704235831465 0.32462084960693005 0.36503426589968346
+0.4643424414728039 0.32714862154710583 0.4643424414728039 0.32714862154710583 0.3740421095042077
+0.459528203464044 0.3297175408888736 0.459528203464044 0.3297175408888737 0.3867417690308849
+0.4625113750272165 0.329197358002274 0.4625113750272165 0.329197358002274 0.38091512436303204
+0.4583253634700336 0.3327493941092105 0.45832536347003355 0.3327493941092105 0.39286441297795177
+0.4778753842619488 0.31278867193127874 0.4778753842619488 0.31278867193127874 0.3082022024690341
+0.47586615652860004 0.31585975814544137 0.47586615652860004 0.31585975814544137 0.3211105230346731
+0.4815547269060334 0.31311244061018856 0.48155472690603335 0.31311244061018856 0.2939453326992805
+0.473896278170307 0.31891864360612393 0.47389627817030705 0.31891864360612393 0.3334753337398599
+0.49655186690449205 0.30133641390607613 0.496551866904492 0.30133641390607613 0.20468350343663058
+0.494293748051673 0.30427588403178174 0.494293748051673 0.3042758840317817 0.21993151587356355
+0.49221350011559545 0.3059050746957307 0.49221350011559545 0.3059050746957307 0.23263867947672043
+0.4876026615582193 0.3084520599369396 0.48760266155821924 0.3084520599369395 0.2590497475371277
+0.49112776609431386 0.30858867972120296 0.49112776609431386 0.30858867972120296 0.2421068782843758
+0.4868267568343903 0.31163524158843836 0.4868267568343903 0.31163524158843836 0.26779952406093993
+0.48473149004147154 0.31363955481281997 0.4847314900414715 0.31363955481281997 0.28093695068676
+0.5109811787624796 0.2946217232936834 0.5109811787624796 0.2946217232936834 0.1289240167956379
+0.5047117665519201 0.29657959043494225 0.5047117665519201 0.29657959043494225 0.15870724010702134
+0.5082509446671923 0.29731878071379525 0.5082509446671923 0.2973187807137952 0.14270875385010418
+0.5022502001742258 0.29960964978630694 0.5022502001742258 0.29960964978630694 0.17380156303572367
+0.49991183802130595 0.3023935995625504 0.49991183802130595 0.3023935995625504 0.1887901464747326
+0.527140994003651 0.28870490655158454 0.527140994003651 0.28870490655158454 0.10595219553357106
+0.5191726303990298 0.29114484904137317 0.5191726303990299 0.2911448490413732 0.10331723135983116
+0.5245241621150695 0.2908445881765143 0.5245241621150695 0.2908445881765143 0.10311240990013724
+0.5220143849366998 0.2919876740306494 0.5220143849366998 0.2919876740306494 0.10225196822165425
+0.5168597683373286 0.2934132374604324 0.5168597683373286 0.2934132374604324 0.10907617650255037
+0.5143716373360682 0.29588616031163745 0.5143716373360682 0.29588616031163745 0.11761714020062496
+0.544287304181248 0.2840211753841549 0.544287304181248 0.2840211753841549 0.1799019817930738
+0.5357621964918369 0.2861481330667899 0.535762196491837 0.2861481330667899 0.13629471890477338
+0.5413833747726083 0.2859341858032162 0.5413833747726083 0.2859341858032162 0.16662138952657599
+0.538743452190732 0.2870397976136013 0.538743452190732 0.2870397976136013 0.15359508847995731
+0.5332333479266205 0.28830296108641507 0.5332333479266205 0.2883029610864151 0.1274472341650732
+0.5303212320998417 0.2902373130658894 0.5303212320998417 0.29023731306588946 0.117898771078205
+0.5535035070491616 0.2819277909687642 0.5535035070491617 0.28192779096876425 0.2314933840175403
+0.5504659928058936 0.283898194186948 0.5504659928058936 0.283898194186948 0.21746287972254794
+0.547431977096085 0.2858490682649067 0.547431977096085 0.2858490682649067 0.2031104874393461
+0.5567789182165506 0.28365931097041613 0.5567789182165505 0.28365931097041613 0.25642118364562266
+0.5600904003440453 0.2854293357235459 0.5600904003440453 0.28542933572354595 0.28214970650902765
+0.5627938841621051 0.28603358849165617 0.5627938841621051 0.28603358849165617 0.30083507881800364
+0.5646192027412897 0.28817797107731735 0.5646192027412898 0.28817797107731735 0.3188216345227048
+0.6178288466024906 0.24711909693466663 0.6178288466024906 0.24711909693466663 0.45905037361341444
+0.6142876622931465 0.24835187565204556 0.6142876622931465 0.24835187565204556 0.44936393563081295
+0.6107606563092469 0.24972231561750113 0.6107606563092469 0.24972231561750116 0.4393934702068281
+0.6072144235932319 0.25117986211682247 0.6072144235932319 0.25117986211682247 0.42891807425704
+0.5799703693945686 0.2624272736960729 0.5799703693945686 0.2624272736960729 0.33074700025655573
+0.6037425908201124 0.2526282582634061 0.6037425908201124 0.2526282582634061 0.4181510671989746
+0.5834093491737666 0.2610844731005769 0.5834093491737667 0.26108447310057686 0.34491577899065534
+0.5868341234245036 0.2597166428077567 0.5868341234245036 0.2597166428077567 0.3585203892871717
+0.5902299831450945 0.2583161912150858 0.5902299831450945 0.2583161912150858 0.37146898153002855
+0.5936039650219238 0.2568747332469663 0.5936039650219237 0.2568747332469663 0.3837700284040492
+0.5969520077464742 0.25547806610911844 0.5969520077464742 0.25547806610911844 0.39560874606481417
+0.600326019036808 0.2540627755906759 0.600326019036808 0.2540627755906759 0.40705663380547324
+0.5758009628695945 0.2674207368600925 0.5758009628695945 0.2674207368600925 0.32209593534186115
+0.5716000613064487 0.27223695696902056 0.5716000613064488 0.27223695696902056 0.31251830586649926
+0.5705131031132279 0.2757895824634409 0.5705131031132279 0.2757895824634409 0.316696628564959
+0.5695590959755129 0.27952092942723017 0.5695590959755129 0.2795209294272301 0.32226112820048924
+0.5679231444844908 0.2868839685486762 0.5679231444844907 0.2868839685486762 0.33529342912091936
+0.5686599726099949 0.28340274022571904 0.5686599726099949 0.28340274022571904 0.3288402143654175
+0.5749612467966858 0.2710593286797836 0.5749612467966858 0.2710593286797836 0.32779853431164624
+0.5791684825863076 0.2661529065507879 0.5791684825863076 0.2661529065507879 0.3365712335083519
+0.6213222849336635 0.24601358572179763 0.6213222849336635 0.24601358572179763 0.46820695918419947
+0.6247474007548461 0.24496302247511706 0.6247474007548462 0.24496302247511706 0.4766037744983776
+0.628104490854639 0.2439661723011062 0.628104490854639 0.2439661723011062 0.4842691797544552
+0.6314096227571595 0.24295544960080517 0.6314096227571594 0.2429554496008052 0.49114417846486497
+0.6343262675824153 0.2429021478226161 0.6343262675824153 0.2429021478226161 0.49842632467236936
+0.6370506072597051 0.24096853940416926 0.6370506072597051 0.24096853940416924 0.5009249190772436
+0.6408586995573234 0.2403983508834475 0.6408586995573234 0.2403983508834475 0.5081489693375092
+0.6736207516317249 0.21010871821777244 0.6736207516317249 0.2101087182177724 0.4948340833862928
+0.6673592270614769 0.2133617850969995 0.6673592270614769 0.21336178509699952 0.49353370553955184
+0.6715579122479232 0.21339225764460057 0.6715579122479233 0.21339225764460057 0.4981915054334211
+0.6655962256952795 0.2165980468726504 0.6655962256952795 0.2165980468726504 0.4973836168858888
+0.6607201537007898 0.22029683303176292 0.6607201537007898 0.22029683303176292 0.4985438775867133
+0.664202443825567 0.21963583991962332 0.664202443825567 0.21963583991962335 0.5014801505177554
+0.6561233403305421 0.2243823600035586 0.6561233403305421 0.2243823600035586 0.5005343190345682
+0.6549564680241978 0.2278183076400774 0.6549564680241978 0.2278183076400774 0.5059382273772144
+0.6443529195341066 0.23974438123497824 0.6443529195341066 0.23974438123497824 0.513788566498933
+0.6502272858287399 0.23197531345963632 0.6502272858287399 0.23197531345963632 0.5074267701283562
+0.6490374309629089 0.23551339642262217 0.6490374309629089 0.23551339642262217 0.5130416301687645
+0.6478431947887842 0.23906773724790822 0.6478431947887842 0.23906773724790822 0.5187116931868078
+0.6537629791207381 0.23130883664837987 0.6537629791207381 0.23130883664837984 0.5115109873913251
+0.6596833525984516 0.2236451962207315 0.6596833525984516 0.2236451962207315 0.5038320867254392
+0.6840958557799822 0.2000313231296695 0.6840958557799822 0.2000313231296695 0.4906432211369855
+0.6882821843890775 0.20003314576706374 0.6882821843890775 0.20003314576706374 0.4948732153584124
+0.681998185102087 0.20342017310933355 0.681998185102087 0.20342017310933355 0.4932098549008043
+0.6798943715095194 0.20680473751062928 0.6798943715095193 0.20680473751062925 0.49602051762630456
+0.677807543278869 0.21016783680059192 0.677807543278869 0.21016783680059192 0.4991038190959492
+0.7092050209204903 0.1729095480536148 0.7092050209204902 0.1729095480536148 0.47897840710253053
+0.7071129707112854 0.17629993134878372 0.7071129707112854 0.17629993134878372 0.48233363282209746
+0.7050209205020802 0.17969031464395288 0.7050209205020802 0.17969031464395288 0.48531559369983274
+0.7029288702905873 0.18308069793750045 0.7029288702905873 0.18308069793750045 0.48796784353971306
+0.7008368200600844 0.1864710812174689 0.7008368200600844 0.1864710812174689 0.4903514215568085
+0.6987447696210967 0.18986146435946494 0.6987447696210967 0.18986146435946494 0.4925411029192955
+0.6966526749021874 0.19325183650054245 0.6966526749021874 0.19325183650054245 0.4946210632752543
+0.6945603884918902 0.19664225429431467 0.6945603884918902 0.19664225429431467 0.4966802744942685
+0.6924676881602627 0.20003310529949456 0.6924676881602627 0.20003310529949456 0.49880808636531476
+0.7154811715481048 0.16951916475844622 0.7154811715481048 0.16951916475844622 0.47805857568051907
+0.7133891213388996 0.17290954805361458 0.7133891213388996 0.17290954805361458 0.48207563604070697
+0.7217573221757202 0.1661287814632779 0.7217573221757202 0.1661287814632779 0.4758410574164193
+0.719665271966515 0.16951916475844656 0.719665271966515 0.16951916475844656 0.48052838996235664
+0.7280334728033359 0.1627383981681092 0.7280334728033359 0.1627383981681092 0.47246037598187113
+0.7259414225941305 0.16612878146327809 0.7259414225941305 0.1661287814632781 0.477723812605294
+0.734309623430951 0.15934801487294026 0.734309623430951 0.15934801487294026 0.4682110959068417
+0.732217573221746 0.1627383981681092 0.732217573221746 0.1627383981681092 0.47385382748033805
+0.7405857740585663 0.15595763157777132 0.7405857740585663 0.15595763157777132 0.4635249964602179
+0.7384937238493611 0.15934801487294026 0.7384937238493611 0.15934801487294026 0.46926270203580606
+0.7489539748953868 0.14917686498743343 0.7489539748953868 0.14917686498743343 0.4538350647442471
+0.7468619246861817 0.15256724828260237 0.7468619246861817 0.15256724828260237 0.45892164363943805
+0.7447698744769767 0.15595763157777132 0.7447698744769767 0.15595763157777132 0.4644133772499304
+0.7552301255230022 0.14578648169226452 0.7552301255230022 0.14578648169226452 0.45067338213546043
+0.7531380753137972 0.14917686498743343 0.7531380753137972 0.14917686498743343 0.45493515873101614
+0.7615062761506176 0.14239609839709555 0.7615062761506176 0.14239609839709555 0.4488520167594849
+0.7594142259414125 0.1457864816922645 0.7594142259414126 0.1457864816922645 0.4520260262503499
+0.7677824267782328 0.1390057151019266 0.7677824267782328 0.1390057151019266 0.44854707137515426
+0.7656903765690277 0.14239609839709555 0.7656903765690277 0.14239609839709555 0.45049379537520146
+0.7740585774058482 0.13561533180675767 0.7740585774058482 0.13561533180675767 0.4496804559380423
+0.7719665271966429 0.1390057151019266 0.7719665271966428 0.1390057151019266 0.45041109754261427
+0.7803347280334635 0.13222494851158872 0.7803347280334635 0.13222494851158872 0.45192181484710386
+0.7782426778242585 0.13561533180675767 0.7782426778242585 0.13561533180675767 0.451597469283791
+0.7866108786610786 0.12883456521641978 0.7866108786610786 0.12883456521641978 0.45473883092030193
+0.7845188284518736 0.13222494851158872 0.7845188284518736 0.13222494851158872 0.4536417709071947
+0.7928870292886943 0.12544418192125084 0.7928870292886944 0.12544418192125084 0.457483409264245
+0.790794979079489 0.12883456521641978 0.790794979079489 0.12883456521641978 0.45596833265218084
+0.8012552301255145 0.11866341533091296 0.8012552301255145 0.11866341533091296 0.4611829887734869
+0.7991631799163095 0.1220537986260819 0.7991631799163095 0.1220537986260819 0.45949429637127664
+0.7970711297071045 0.12544418192125084 0.7970711297071045 0.12544418192125084 0.45793105348055585
+0.8075313807531296 0.11527303203574402 0.8075313807531296 0.11527303203574402 0.4614196293081316
+0.8054393305439246 0.11866341533091296 0.8054393305439246 0.11866341533091296 0.4601976086507216
+0.813807531380745 0.11188264874057509 0.813807531380745 0.11188264874057509 0.45975709444971274
+0.8117154811715398 0.11527303203574402 0.8117154811715398 0.11527303203574402 0.4591923838882694
+0.8200836820083603 0.10849226544540613 0.8200836820083603 0.10849226544540613 0.45616157597503587
+0.8179916317991553 0.11188264874057507 0.8179916317991553 0.11188264874057507 0.4563142392772586
+0.8263598326359759 0.10510188215023719 0.8263598326359759 0.10510188215023719 0.45088326260921585
+0.8242677824267708 0.10849226544540613 0.8242677824267709 0.10849226544540613 0.45167373556655716
+0.8326359832635912 0.10171149885506825 0.8326359832635912 0.10171149885506825 0.444449907608957
+0.8305439330543862 0.10510188215023719 0.8305439330543862 0.10510188215023719 0.4456665031810972
+0.8389121338912066 0.09832111555989931 0.8389121338912066 0.09832111555989931 0.43762550118220317
+0.8368200836820013 0.10171149885506825 0.8368200836820013 0.10171149885506825 0.43895052152307334
+0.8451882845188219 0.09493073226473037 0.845188284518822 0.09493073226473037 0.43132789837326696
+0.8430962343096168 0.09832111555989931 0.8430962343096168 0.09832111555989931 0.4323841460407953
+0.8514644351464372 0.09154034896956142 0.8514644351464372 0.09154034896956142 0.426503252919661
+0.849372384937232 0.09493073226473037 0.849372384937232 0.09493073226473037 0.426919765012202
+0.8577405857740525 0.08814996567439248 0.8577405857740527 0.08814996567439248 0.42396722384131097
+0.8556485355648474 0.09154034896956142 0.8556485355648474 0.09154034896956142 0.42345626911952333
+0.866108786610873 0.0813691990840546 0.866108786610873 0.0813691990840546 0.4259409222948812
+0.8640167364016679 0.08475958237922354 0.8640167364016679 0.08475958237922354 0.4242419140871237
+0.8619246861924628 0.08814996567439248 0.8619246861924629 0.08814996567439248 0.42267050539044376
+0.8723849372384883 0.07797881578888566 0.8723849372384883 0.07797881578888566 0.42997927927560076
+0.8702928870292832 0.0813691990840546 0.8702928870292831 0.0813691990840546 0.4274330498209938
+0.8786611353017492 0.07458842061805891 0.8786611353017492 0.07458842061805891 0.43624174306805424
+0.8765692048804689 0.0779787656888792 0.8765692048804689 0.0779787656888792 0.4331887319778387
+0.8849375055016067 0.0711980075900668 0.8849375055016067 0.0711980075900668 0.44384343854683067
+0.8828457982200378 0.07458824964811224 0.8828457982200378 0.07458824964811224 0.4407528994371938
+0.891214284134814 0.0678071464516365 0.891214284134814 0.0678071464516365 0.45169358185644376
+0.8891229278260392 0.07119751315293317 0.8891229278260392 0.07119751315293317 0.44909180012643096
+0.8974920717548752 0.06441445442927145 0.8974920717548752 0.06441445442927145 0.4586471140302277
+0.8954009061980477 0.06780480272512537 0.8954009061980477 0.06780480272512536 0.45704848249791824
+0.9037727659117215 0.06102002054732906 0.9037727659117215 0.06102002054732906 0.46363514031980685
+0.9016814079453236 0.06440873734629236 0.9016814079453236 0.06440873734629236 0.4634864867126713
+0.9100549635509124 0.0576262958000443 0.9100549635509124 0.0576262958000443 0.4657566327823421
+0.9079650700230885 0.061011920119438456 0.9079650700230885 0.061011920119438456 0.4674004493206762
+0.9184184328996486 0.050851498881916736 0.9184184328996486 0.050851498881916736 0.4593525669019694
+0.9163323960060289 0.054237300349703914 0.9163323960060289 0.054237300349703914 0.46434671685946866
+0.9142486633968824 0.057619781432701224 0.9142486633968824 0.057619781432701224 0.46799721853422543
+0.9247011997456949 0.04745599408963255 0.9247011997456948 0.04745599408963255 0.4519624163153175
+0.9226086127204742 0.05084840333695226 0.9226086127204741 0.050848403336952265 0.45900106358912174
+0.9309839321327719 0.044051555506057626 0.9309839321327719 0.044051555506057626 0.4405841320593044
+0.9288950870120863 0.047441263800582355 0.9288950870120863 0.047441263800582355 0.4495395912151849
+0.9372601007510591 0.04065243361475516 0.9372601007510591 0.04065243361475516 0.4254952676730644
+0.935172421218089 0.044035056882009364 0.9351724212180891 0.044035056882009364 0.4361208781451718
+0.9435198079623515 0.037241169441199484 0.9435198079623515 0.037241169441199484 0.40715723597699466
+0.9414284732732433 0.040620112028709986 0.9414284732732433 0.040620112028709986 0.4191348506649016
+0.9497781142101663 0.03382610972816666 0.9497781142101663 0.03382610972816666 0.38624340039040916
+0.9476711112804369 0.03719731413757995 0.9476711112804369 0.03719731413757995 0.3991804144798441
+0.9559899696518053 0.030355385103562973 0.9559899696518052 0.030355385103562973 0.36358916446633605
+0.9538965817318591 0.03372654709993332 0.9538965817318591 0.03372654709993333 0.3769668456381407
+0.9622447675912436 0.026935215544730884 0.9622447675912437 0.026935215544730884 0.3402286940552491
+0.9600993289391072 0.030280806214824544 0.9600993289391072 0.030280806214824544 0.35363875371488035
+0.9684603847807045 0.023409916937816307 0.9684603847807045 0.023409916937816303 0.3171057677953906
+0.966378047430957 0.026805287715128547 0.966378047430957 0.026805287715128547 0.3298906580602057
+0.9745887170109137 0.020120423422325825 0.9745887170109137 0.020120423422325825 0.2961586442084653
+0.9725218281360375 0.023306604380894845 0.9725218281360375 0.02330660438089485 0.3074157143869847
+0.9784933827469968 0.02007054854291799 0.9784933827469969 0.020070548542917985 0.2879851996837241
+0.9810838483348874 0.016569315056660705 0.9810838483348875 0.016569315056660705 0.27663901045296546
+0.9832212698673997 0.013430290161544511 0.9832212698673998 0.013430290161544511 0.26803208700151954
+0.9866682951619122 0.013167315687798881 0.9866682951619122 0.013167315687798881 0.262545570046268
+0.9896199813355704 0.010525765387559902 0.9896199813355704 0.010525765387559904 0.2557404002463151
+0.993487771835215 0.009452744829298733 0.993487771835215 0.009452744829298733 0.2511634618934554
+0.012346661619539267 0.9932640113501913 0.012346661619539267 0.9932640113501913 0.06162489508748357
+0.014350490200506827 0.9898242907560372 0.014350490200506827 0.9898242907560372 0.06310457913824273
+0.016296051071175544 0.9859108772671833 0.016296051071175544 0.9859108772671832 0.06515601353422569
+0.01920189227423491 0.9831156583506104 0.01920189227423491 0.9831156583506103 0.0674268695397901
+0.021533310316842136 0.9797087421612058 0.021533310316842136 0.9797087421612058 0.07012448129583225
+0.023225560839346904 0.9762139966963665 0.023225560839346904 0.9762139966963667 0.07287282290683568
+0.025732552592093002 0.9727756381466149 0.025732552592093002 0.9727756381466149 0.0761264866805828
+0.028043826881797 0.9695387225589481 0.028043826881797 0.9695387225589481 0.07932904917741479
+0.030076783349801822 0.9638975402229257 0.030076783349801822 0.9638975402229256 0.08407465508878936
+0.030104798616522634 0.9669772974270078 0.030104798616522634 0.9669772974270078 0.08204085542545182
+0.032653398496726424 0.9621989754936289 0.032653398496726424 0.9621989754936289 0.086501493980706
+0.03398245470474079 0.9585821569637037 0.03398245470474079 0.9585821569637039 0.08956690996874839
+0.03725526165515148 0.9518254194259986 0.03725526165515148 0.9518254194259986 0.09528495165250785
+0.03741752395360881 0.9557414627056329 0.03741752395360881 0.9557414627056328 0.0930950713765367
+0.040551341832377186 0.9498926790058839 0.040551341832377186 0.9498926790058838 0.09800314683618365
+0.04077413453252571 0.9459967419335553 0.04077413453252571 0.9459967419335554 0.100042027267764
+0.044051209044533024 0.9394379186409866 0.044051209044533024 0.9394379186409866 0.10420741434385357
+0.04405810166471248 0.943790944451752 0.044058101664712475 0.9437909444517522 0.102555621505495
+0.047463843112846425 0.9330746421795703 0.047463843112846425 0.9330746421795703 0.10729638990099173
+0.04744764097839741 0.9372585851083793 0.04744764097839741 0.9372585851083793 0.10627283987420487
+0.05085244764170496 0.9268054310433445 0.050852447641704955 0.9268054310433446 0.10916288002699963
+0.050857033643133376 0.930990033732598 0.050857033643133376 0.9309900337325981 0.10876138530615777
+0.0542157673906942 0.9247676359708735 0.054215767390694204 0.9247676359708735 0.10997896052051855
+0.05758910480239623 0.9185036727728736 0.05758910480239623 0.9185036727728736 0.10987471562606017
+0.057541784441019525 0.9227965097645309 0.05754178444101953 0.9227965097645309 0.11041069584555045
+0.06100751357563718 0.9121578679929772 0.06100751357563718 0.9121578679929773 0.1083902067893464
+0.0609854047284584 0.9163588881200843 0.06098540472845839 0.9163588881200843 0.10957175710191101
+0.06440774413966473 0.9058707755078297 0.06440774413966473 0.9058707755078297 0.10559088510777696
+0.06439734231091873 0.9100609696266454 0.06439734231091875 0.9100609696266454 0.10736922510068138
+0.0678001291891725 0.8995875043839291 0.0678001291891725 0.8995875043839291 0.10158173375680853
+0.06779574934238168 0.9037760287207307 0.06779574934238168 0.9037760287207307 0.10387981386488511
+0.07119052518685767 0.8933109561738686 0.07119052518685766 0.8933109561738686 0.09654627955983296
+0.07118695075983875 0.8974959467210533 0.07118695075983873 0.8974959467210532 0.09925379365802019
+0.07458484910083148 0.8870350208058158 0.07458484910083148 0.8870350208058158 0.09073490009873564
+0.07457985032177065 0.8912221326797082 0.07457985032177065 0.8912221326797082 0.09371085250840429
+0.07797821631194589 0.8807567537281473 0.07797821631194589 0.8807567537281473 0.08448677612219112
+0.0779770214026367 0.8849448252181104 0.0779770214026367 0.8849448252181104 0.08754316395230527
+0.0813692972399563 0.8744783111835012 0.0813692972399563 0.8744783111835012 0.07822969923641855
+0.08136937939943882 0.87866424436828 0.08136937939943882 0.87866424436828 0.08114168564544201
+0.08475965393181716 0.8682012495723265 0.08475965393181716 0.8682012495723265 0.07246854012439195
+0.08475980682775237 0.8723858688115506 0.08475980682775237 0.8723858688115506 0.07498096375483171
+0.08814998990381029 0.866109017602417 0.08814998990381029 0.866109017602417 0.06959988698735371
+0.09153962788742909 0.8598336656478076 0.09153962788742909 0.8598336656478075 0.06555101534293468
+0.09153932498618712 0.8640183121837602 0.09153932498618712 0.8640183121837602 0.06706188518853486
+0.09492979199939293 0.8535582207623623 0.09492979199939293 0.8535582207623623 0.06328225893654404
+0.09492880830634516 0.8577437235483268 0.09492880830634516 0.8577437235483268 0.06383423724956012
+0.0983205914660561 0.847281645724696 0.0983205914660561 0.847281645724696 0.06299126383317821
+0.09831979132167301 0.8514673967862595 0.09831979132167301 0.8514673967862595 0.06254944818820397
+0.10171126935777518 0.8410047833876305 0.10171126935777518 0.8410047833876305 0.06453697781256446
+0.10171086389820456 0.8451897992795971 0.10171086389820456 0.845189799279597 0.06323732317388592
+0.1051017992543765 0.8347282708437843 0.1051017992543765 0.8347282708437843 0.06749530787296833
+0.10510163336293131 0.8389127765893284 0.10510163336293131 0.8389127765893284 0.06559160419588943
+0.1084922416637592 0.8284519611728803 0.10849224166375922 0.8284519611728803 0.07131803541083782
+0.10849219029035832 0.8326362108711557 0.10849219029035832 0.8326362108711557 0.06909651716475251
+0.11188264265681792 0.8221757567652532 0.11188264265681792 0.8221757567652531 0.07547899742721516
+0.11188262887692162 0.8263599074384227 0.11188262887692162 0.8263599074384228 0.07319529805035879
+0.1152730299796252 0.8158995886462841 0.1152730299796252 0.815899588646284 0.07955205994575233
+0.11527302460052406 0.8200837042119624 0.11527302460052406 0.8200837042119623 0.0774045541552615
+0.1186634149007492 0.8096234324896109 0.1186634149007492 0.8096234324896109 0.08323250501678216
+0.11866341379265483 0.8138075360873523 0.11866341379265481 0.8138075360873523 0.0813590084020175
+0.12205379856154741 0.8075313810928432 0.12205379856154741 0.8075313810928432 0.08481454864559906
+0.1254441813413882 0.8012552312308578 0.1254441813413882 0.8012552312308578 0.0876353645924385
+0.12544417967162536 0.8054393346562025 0.12544417967162536 0.8054393346562027 0.08639299696640013
+0.12883456479866326 0.7949790803253123 0.12883456479866326 0.7949790803253123 0.08977775608547632
+0.12883456362837892 0.7991631830157387 0.12883456362837895 0.7991631830157387 0.08892400056767726
+0.13222494832749718 0.7887029292484072 0.13222494832749718 0.7887029292484072 0.09127452555771755
+0.13222494782098151 0.7928870307009045 0.13222494782098151 0.7928870307009045 0.09078583782731119
+0.1356153317431374 0.782426778363957 0.13561533174313742 0.782426778363957 0.09222013797743556
+0.13561533156320404 0.7866108791140848 0.13561533156320404 0.7866108791140848 0.09204108211898993
+0.1390057150906726 0.7761506276359887 0.1390057150906726 0.7761506276359887 0.09275571764432583
+0.13900571505813522 0.7803347281125279 0.13900571505813522 0.7803347281125279 0.09280451340630332
+0.14239609839325668 0.7698744769949019 0.14239609839325665 0.7698744769949019 0.09305291138525773
+0.14239609838040565 0.7740585774371275 0.14239609838040565 0.7740585774371275 0.09322778750525908
+0.1457864816903649 0.7635983263639646 0.1457864816903649 0.7635983263639646 0.09329614493634776
+0.14578648168382913 0.7677824267961074 0.14578648168382913 0.7677824267961074 0.09348306688717282
+0.14917686498658714 0.757322175734099 0.14917686498658714 0.757322175734099 0.09366375026378136
+0.14917686498374463 0.7615062761586661 0.14917686498374463 0.7615062761586661 0.09374563335039628
+0.15256724828227985 0.7510460251052907 0.15256724828227985 0.7510460251052907 0.09430967292182092
+0.1525672482812306 0.755230125525905 0.1525672482812306 0.755230125525905 0.09417649210188651
+0.1559576315773212 0.7489539748962893 0.1559576315773212 0.7489539748962893 0.09490698638791294
+0.15934801487280678 0.7426778242680264 0.15934801487280678 0.7426778242680264 0.09602798638144955
+0.15934801487240496 0.7468619246871729 0.15934801487240494 0.7468619246871729 0.09550822503196514
+0.16273839816807098 0.7364016736402267 0.16273839816807098 0.7364016736402267 0.09758579109067901
+0.16273839816796326 0.7405857740588179 0.1627383981679633 0.7405857740588179 0.09667576823260308
+0.16612878146326568 0.7301255230125724 0.16612878146326568 0.7301255230125724 0.09958539740986165
+0.16612878146323704 0.7343096234310513 0.16612878146323704 0.7343096234310513 0.09825504803704686
+0.1695191647584415 0.7238493723849415 0.1695191647584415 0.7238493723849415 0.10199982895410657
+0.1695191647584349 0.728033472803371 0.1695191647584349 0.728033472803371 0.10024386987443058
+0.17290954805361233 0.7175732217573231 0.17290954805361233 0.7175732217573231 0.10478272686492172
+0.17290954805361183 0.7217573221757415 0.17290954805361183 0.7217573221757415 0.10261620243137355
+0.17629993134878152 0.7112970711297066 0.17629993134878152 0.7112970711297066 0.10788102234656997
+0.17629993134878197 0.7154811715481205 0.17629993134878197 0.7154811715481205 0.1053335318540416
+0.17969031464395066 0.7092050209205022 0.17969031464395066 0.7092050209205022 0.10835506441281732
+0.18308069793911977 0.7071129707112979 0.18308069793911977 0.7071129707112979 0.10870881813969584
+0.18647108123428882 0.7050209205020931 0.18647108123428882 0.7050209205020931 0.10896808564631393
+0.18986146452945774 0.702928870292888 0.18986146452945774 0.702928870292888 0.10916520844149045
+0.1932518478246266 0.7008368200836825 0.1932518478246266 0.7008368200836825 0.10933706273277495
+0.1966422311197952 0.698744769874477 0.1966422311197952 0.698744769874477 0.10952274568476507
+0.2000313899057796 0.6924671723913031 0.2000313899057796 0.6924671723913031 0.1129127228705308
+0.20342010690622178 0.6903737035283419 0.20342010690622178 0.6903737035283419 0.11327174271984848
+0.21347189258462082 0.675799132432329 0.21347189258462082 0.675799132432329 0.12196668640182999
+0.21928782922982537 0.6681735822812189 0.21928782922982534 0.6681735822812189 0.12685352253499702
+0.22094307458845586 0.6656907134501041 0.22094307458845588 0.6656907134501041 0.12861755244114223
+0.22300739347350204 0.6623869509512387 0.223007393473502 0.6623869509512387 0.1309620881339474
+0.2288657167650906 0.6533719799933893 0.22886571676509063 0.6533719799933894 0.13721274010082604
+0.23174269844248807 0.6509118270756252 0.23174269844248804 0.6509118270756252 0.13843380451181006
+0.2345904914718926 0.6484465032690715 0.2345904914718926 0.6484465032690715 0.13961039721569593
+0.2374556966798999 0.6459734622607838 0.23745569667989994 0.6459734622607839 0.1407124944015745
+0.24294350082853644 0.6378912836649541 0.2429435008285364 0.6378912836649541 0.14572784864425967
+0.24008933740740956 0.6402258441695059 0.24008933740740956 0.6402258441695059 0.14491184002203092
+0.24038022307521378 0.6437241078426893 0.2403802230752138 0.6437241078426893 0.1415014443481792
+0.2262756895179009 0.6598298929392106 0.22627568951790086 0.6598298929392107 0.13223411666383503
+0.22929755669745622 0.657221177042631 0.22929755669745622 0.657221177042631 0.1336098722272667
+0.21653744391314814 0.6736648045300684 0.21653744391314814 0.6736648045300684 0.12288130611959706
+0.21952816717197518 0.6712600347027567 0.21952816717197518 0.6712600347027567 0.12414419969916148
+0.2067909195961347 0.6840913644270487 0.2067909195961347 0.6840913644270487 0.11714478038283395
+0.20680747699535343 0.6882798598305534 0.20680747699535343 0.6882798598305534 0.11373940345811694
+0.2101468338241695 0.6820328726876267 0.21014683382416946 0.6820328726876267 0.11772414789972481
+0.21347313646608723 0.6800741651056309 0.21347313646608726 0.6800741651056309 0.11835627704359376
+0.2000324920424922 0.6966525298789144 0.2000324920424922 0.6966525298789144 0.1097612197693355
+0.245958510007969 0.6388580322554666 0.245958510007969 0.6388580322554666 0.14328204197278846
+0.2512292259873504 0.6235341984798098 0.2512292259873505 0.6235341984798098 0.15610552841372868
+0.2542023130362258 0.6211429818345937 0.2542023130362258 0.6211429818345938 0.15696949965859833
+0.25665164106394484 0.6152182894933563 0.25665164106394484 0.6152182894933563 0.16298762791987131
+0.2571743451798117 0.6187673215012378 0.2571743451798117 0.6187673215012378 0.15784907468727638
+0.26744047989758934 0.5959348611691011 0.26744047989758934 0.5959348611691011 0.18760107664358835
+0.25919554096816455 0.6094090845057404 0.25919554096816455 0.6094090845057404 0.16966264267837913
+0.2622219161730245 0.6071437412494219 0.2622219161730244 0.6071437412494219 0.17102395765706346
+0.2648344029617193 0.6014590841718289 0.2648344029617193 0.6014590841718289 0.17889829788088507
+0.26523013908504706 0.6048781203702853 0.26523013908504706 0.6048781203702854 0.17255176015853133
+0.2678071797772572 0.5992218608938797 0.2678071797772572 0.5992218608938797 0.1808982317483557
+0.25964902906188553 0.6129001180477213 0.25964902906188553 0.6129001180477213 0.16406961730508443
+0.24863539059922501 0.6295541696465748 0.24863539059922504 0.6295541696465748 0.15099109003120284
+0.24897408410477848 0.6332004572387473 0.24897408410477848 0.6332004572387473 0.14703821491196023
+0.2492042598683703 0.6365250795816912 0.24920425986837033 0.6365250795816912 0.14369678973582475
+0.2517082796971666 0.6271625600042136 0.2517082796971666 0.6271625600042136 0.1516297188270759
+0.420552321855657 0.3962771607986717 0.420552321855657 0.3962771607986717 0.5083748953691368
+0.4176484236307522 0.3975578909045039 0.4176484236307522 0.3975578909045039 0.5065287030117425
+0.4138938397923954 0.3961632269385523 0.4138938397923954 0.3961632269385524 0.48571290169120396
+0.4105479338045026 0.3964629065569528 0.41054793380450255 0.3964629065569528 0.47354267209342826
+0.4150513243418953 0.3991157218996448 0.4150513243418953 0.3991157218996448 0.5051244302820929
+0.404508881625083 0.39646509488277565 0.404508881625083 0.39646509488277565 0.44668709177223803
+0.40819613702266366 0.3981585084390336 0.40819613702266366 0.3981585084390336 0.47043226583294606
+0.39415683643956 0.3986755753620654 0.39415683643956 0.3986755753620654 0.39983162991514953
+0.40119388077286106 0.39855419364975175 0.40119388077286106 0.3985541936497517 0.43707720190432914
+0.3972695887679693 0.39879007449193493 0.3972695887679693 0.3987900744919349 0.41688878655273837
+0.39204436215997734 0.40035924700448544 0.39204436215997734 0.4003592470044854 0.3913203149763497
+0.3859109122733943 0.40110499024189333 0.3859109122733943 0.40110499024189333 0.3580460121711569
+0.3893938594848007 0.40224844585246405 0.3893938594848007 0.40224844585246405 0.37884573064198296
+0.38307794984739474 0.4031000122928414 0.3830779498473947 0.4031000122928415 0.3434561111488132
+0.37638412940632476 0.4042484847234015 0.37638412940632476 0.4042484847234015 0.3070239766346552
+0.38002734938138016 0.40528019735808124 0.38002734938138016 0.40528019735808124 0.3266710999278614
+0.37348642946270316 0.40659009465711815 0.37348642946270316 0.40659009465711815 0.2909818769493595
+0.3668326800042616 0.4082187983393293 0.3668326800042616 0.40821879833932934 0.2574739842163904
+0.37063913650343544 0.4090133078780731 0.37063913650343544 0.4090133078780731 0.2748833454751924
+0.36394698177082985 0.4107515692418516 0.36394698177082985 0.4107515692418516 0.24258634052865838
+0.35653370351494074 0.4124685870724965 0.35653370351494074 0.4124685870724965 0.21363290063289722
+0.3609980021562564 0.4134580780865863 0.3609980021562564 0.41345807808658636 0.22834564897866902
+0.3544100367990714 0.41556041875754907 0.3544100367990714 0.41556041875754907 0.20543061979323288
+0.34848520517345455 0.41757497311470704 0.34848520517345455 0.4175749731147071 0.19176686602525736
+0.3463313532188655 0.41990484328691347 0.3463313532188655 0.41990484328691347 0.18935013530230002
+0.3520174419180038 0.4182900838697428 0.3520174419180038 0.4182900838697428 0.1986873951834853
+0.34418491366078474 0.42243327323717034 0.3441849136607847 0.42243327323717034 0.18917809993114387
+0.33887212934860356 0.4245977109151979 0.3388721293486036 0.4245977109151979 0.19031828951104177
+0.3368748266518117 0.42721617401031 0.33687482665181173 0.4272161740103099 0.19589657722743417
+0.3425884759498007 0.4249205952870806 0.34258847594980063 0.42492059528708065 0.19151997608271218
+0.3349249865310959 0.4298471952424401 0.3349249865310959 0.4298471952424401 0.2032275401207024
+0.3293540061031023 0.43231209786350916 0.32935400610310234 0.43231209786350916 0.2145361946436002
+0.32752426389842765 0.4351098338427739 0.32752426389842765 0.43510983384277396 0.22529986482087616
+0.3330461017745504 0.43252991507804206 0.33304610177455046 0.432529915078042 0.21211175950482666
+0.32572495618114994 0.4379610683382585 0.32572495618114994 0.4379610683382585 0.23694002374611103
+0.3202081932592706 0.44080303827635275 0.3202081932592706 0.44080303827635275 0.25259158641470575
+0.3184993729930086 0.44378762060083865 0.3184993729930086 0.44378762060083865 0.2651301707571552
+0.3239736738651022 0.4408443802365198 0.3239736738651022 0.4408443802365198 0.2491188986160591
+0.31683868248892205 0.4468097777301035 0.31683868248892205 0.4468097777301035 0.2777059410976937
+0.3114122817042587 0.45000481282070953 0.3114122817042588 0.45000481282070953 0.2930194874051268
+0.309827723455131 0.4531857471627684 0.309827723455131 0.45318574716276844 0.30500406856550644
+0.3152308921503884 0.44986186757290964 0.3152308921503884 0.44986186757290964 0.2901255787675349
+0.3083303532077757 0.45640187976679436 0.3083303532077757 0.4564018797667943 0.31651024737612127
+0.3030715761942969 0.46001784877879387 0.30307157619429687 0.46001784877879387 0.32906879284820895
+0.30157400587824873 0.46331346222560277 0.30157400587824873 0.4633134622256028 0.3388160524762118
+0.306892575103488 0.4596420398805386 0.30689257510348794 0.4596420398805386 0.3274277028316775
+0.30004828347871765 0.4666382745880037 0.30004828347871765 0.4666382745880037 0.34778666186578505
+0.2955339850140536 0.4711080433983048 0.29553398501405365 0.47110804339830475 0.35728282721164467
+0.294321196376681 0.4745695961948882 0.294321196376681 0.4745695961948882 0.36413795951105626
+0.29902267487973744 0.47014133323838203 0.2990226748797374 0.4701413332383821 0.3563334539188929
+0.2929058475722348 0.4778812558947655 0.2929058475722348 0.47788125589476543 0.3695930575199003
+0.28836906526539385 0.4870691501914407 0.28836906526539385 0.48706915019144065 0.3788935867165435
+0.29004157436582073 0.48406801565420987 0.29004157436582073 0.4840680156542099 0.3769155437419465
+0.29150572097372657 0.48114202698995384 0.29150572097372657 0.48114202698995384 0.3739923382992227
+0.2871255964457718 0.4903256457811858 0.2871255964457718 0.4903256457811858 0.3807218663155219
+0.28582128857853456 0.49354590305130436 0.28582128857853456 0.49354590305130436 0.3815599445638334
+0.2845534564192159 0.49682805488592635 0.284553456419216 0.49682805488592635 0.3815667748530886
+0.2832918971436952 0.5001879717203342 0.2832918971436951 0.5001879717203342 0.38070701433149406
+0.28212553217916136 0.5036019815411301 0.28212553217916136 0.50360198154113 0.37907505854835305
+0.28184684830349616 0.5066500592806041 0.28184684830349616 0.5066500592806041 0.3775425550757479
+0.2797263492009725 0.5094850192662801 0.2797263492009725 0.50948501926628 0.3739418948508323
+0.27892713455377166 0.5134571687957992 0.27892713455377166 0.5134571687957993 0.3699053732544726
+0.27797009028923964 0.5172385607248938 0.27797009028923964 0.5172385607248938 0.36501666862756416
+0.2770674614100506 0.5208687759549651 0.2770674614100506 0.5208687759549652 0.3595814225021671
+0.2760795693436043 0.5242902578538484 0.2760795693436043 0.5242902578538483 0.35369345504352956
+0.27504944060956626 0.5276869815989584 0.27504944060956626 0.5276869815989585 0.3472548442738849
+0.274455005597437 0.5312949892596722 0.274455005597437 0.5312949892596722 0.3403457491071156
+0.2738315586183877 0.5349444498116814 0.2738315586183877 0.5349444498116814 0.3327849148288439
+0.27321216364545037 0.5386101013963274 0.27321216364545037 0.5386101013963273 0.3247242473560155
+0.27259299169804946 0.5422653844986881 0.27259299169804946 0.5422653844986881 0.3162958907406237
+0.27198741441649127 0.5459499062118397 0.27198741441649127 0.5459499062118397 0.30749676712282964
+0.2714542928167467 0.54971170267878 0.2714542928167467 0.54971170267878 0.29829194951059795
+0.27103837154957605 0.5535102196762676 0.27103837154957605 0.5535102196762676 0.28881151279455164
+0.2708012782237762 0.5572695946215189 0.27080127822377614 0.5572695946215189 0.27927678111580234
+0.27054237600888886 0.5609795512664286 0.2705423760088888 0.5609795512664286 0.26977592924884425
+0.2702466397965344 0.56471943911665 0.2702466397965344 0.56471943911665 0.26017568933788177
+0.26991050327769534 0.5685673786760538 0.26991050327769534 0.5685673786760538 0.2503492162281453
+0.2691370728803678 0.5729511873177923 0.26913707288036776 0.5729511873177923 0.23951071945362482
+0.26977370886620977 0.5767567284892196 0.26977370886620977 0.5767567284892196 0.22974371560601847
+0.269948995319021 0.5803493547397641 0.269948995319021 0.5803493547397641 0.22086818124378713
+0.2700089300890169 0.5838969977126627 0.2700089300890169 0.5838969977126628 0.2123609857490875
+0.27001404686537384 0.5873559058923675 0.27001404686537384 0.5873559058923675 0.20434772076881266
+0.2701109704514983 0.5906459120909514 0.2701109704514983 0.5906459120909514 0.1969136604996886
+0.2702525222792829 0.5939569587150105 0.2702525222792829 0.5939569587150105 0.18969742570322243
+0.42375372207619705 0.39827465529270645 0.42375372207619705 0.3982746552927065 0.5291470892556555
+0.4256697236832886 0.3966114949225006 0.4256697236832886 0.3966114949225006 0.52240305266466
+0.42620887531606 0.3878090590217555 0.42620887531606 0.3878090590217555 0.47511744066435085
+0.42635644193357713 0.3911389089633812 0.4263564419335771 0.3911389089633812 0.4916984284933145
+0.4261374146149097 0.39437315402439443 0.4261374146149097 0.39437315402439443 0.5094339136512436
+0.4291506903509106 0.3774381913332254 0.4291506903509106 0.3774381913332254 0.44087609800939187
+0.42985535055511404 0.38080887822868875 0.42985535055511404 0.38080887822868875 0.4515935722545831
+0.4288798488227902 0.38312156157852445 0.4288798488227902 0.38312156157852445 0.45868238566751335
+0.42966198548974016 0.3863350446801716 0.4296619854897402 0.38633504468017155 0.47244452506099405
+0.4328096321011521 0.36980493299753364 0.4328096321011521 0.36980493299753364 0.4277781476338701
+0.43459486183369705 0.36726011716747603 0.43459486183369705 0.36726011716747603 0.425815675163879
+0.43279881291053846 0.37274264346481206 0.43279881291053846 0.37274264346481206 0.4333950779950116
+0.43285356512721207 0.37618558926335155 0.4328535651272121 0.3761855892633515 0.44124476582534405
+0.44054978477920215 0.35630463646992544 0.4405497847792022 0.35630463646992544 0.4193154670460726
+0.4395818522054809 0.35957781948592243 0.4395818522054809 0.35957781948592243 0.4215505862981968
+0.4386751395960851 0.3628157723700834 0.4386751395960851 0.3628157723700834 0.42413783931061905
+0.43797689921517624 0.36603485080076986 0.4379768992151762 0.36603485080076986 0.4274092547901027
+0.44750109307821045 0.3459479589196471 0.44750109307821045 0.3459479589196471 0.41395742593951584
+0.44627274107354914 0.3492596281199459 0.44627274107354914 0.3492596281199459 0.4167518855881374
+0.4451888743696653 0.35252195198424024 0.4451888743696653 0.35252195198424024 0.4192744875560496
+0.44425250304463226 0.3557846362676589 0.44425250304463226 0.3557846362676589 0.4217547216930962
+0.4565117011291947 0.3356437822221902 0.45651170112919465 0.3356437822221902 0.3989504919805367
+0.45374776256646726 0.33840754840218856 0.45374776256646726 0.3384075484021886 0.40473091582859405
+0.4524756969908992 0.34238467955727536 0.45247569699089923 0.34238467955727536 0.41003211301553194
+0.4512845810946682 0.3457058170935772 0.4512845810946682 0.3457058170935772 0.41402654262496347
+0.4719285252771424 0.3220027761233863 0.4719285252771424 0.3220027761233863 0.34540850323725
+0.4698825027323159 0.32514945190331357 0.4698825027323159 0.32514945190331357 0.3571021290001371
+0.46517037567715586 0.3303707938037564 0.46517037567715586 0.3303707938037564 0.37771011752010214
+0.4677739964565722 0.3281974283183793 0.4677739964565722 0.3281974283183793 0.3680574323756111
+0.4621452180438848 0.3324539579688349 0.4621452180438848 0.332453957968835 0.3869116653213501
+0.46518041898876444 0.33335149073844866 0.46518041898876444 0.33335149073844866 0.3826582829153519
+0.4601338250676344 0.33575364553508685 0.4601338250676344 0.33575364553508685 0.3949934655448703
+0.4794775229604127 0.3162086045650334 0.47947752296041274 0.3162086045650334 0.30797204534700473
+0.47751270381317834 0.3192660431991577 0.47751270381317834 0.3192660431991577 0.32119222074693227
+0.4829521193532438 0.3166043798382752 0.4829521193532438 0.3166043798382752 0.2941280581944748
+0.4755427314950578 0.32234569920192185 0.4755427314950578 0.32234569920192185 0.33409427506246353
+0.4975455029174505 0.30512796682456234 0.4975455029174505 0.30512796682456234 0.20442690993981152
+0.4948098550977645 0.3077525806189181 0.49480985509776454 0.3077525806189181 0.22226248488721229
+0.4897467666483505 0.3115283654401677 0.48974676664835043 0.3115283654401677 0.25361690183588226
+0.49295261087601955 0.3116961597634854 0.49295261087601955 0.31169615976348547 0.2377778933126069
+0.4881098595948176 0.3144885632860822 0.4881098595948176 0.31448856328608216 0.26659451935161615
+0.4862868975447329 0.3171107309310419 0.4862868975447329 0.3171107309310419 0.2799279339012673
+0.5117927526743599 0.29851061768529924 0.5117927526743599 0.29851061768529924 0.1287222866703608
+0.505717229110641 0.3004220652319507 0.505717229110641 0.3004220652319507 0.15741536028618672
+0.5092306195634433 0.30130906596111334 0.5092306195634433 0.30130906596111334 0.1418214021524453
+0.5033386347034798 0.3033128678221428 0.5033386347034798 0.3033128678221428 0.17227099655015124
+0.501021359564797 0.3061472926591001 0.5010213595647971 0.3061472926591002 0.1875864101560487
+0.5274927696227276 0.2923964437446105 0.5274927696227277 0.2923964437446105 0.11110469919738075
+0.5203610439240633 0.294429786555676 0.5203610439240633 0.294429786555676 0.10468976248433688
+0.5242110948066245 0.29447489779220526 0.5242110948066245 0.2944748977922052 0.10632139495301694
+0.5178387659844106 0.29697118307609544 0.5178387659844105 0.29697118307609544 0.10981374538109327
+0.515251581699866 0.29961028223269065 0.5152515816998661 0.29961028223269065 0.11792477404565087
+0.5443597907066438 0.28778669882583413 0.5443597907066438 0.28778669882583413 0.1883164963264873
+0.536970692723284 0.28967133444593307 0.5369706927232841 0.289671334445933 0.1485290495925947
+0.5410020076475219 0.2896444849339078 0.5410020076475219 0.28964448493390776 0.17163433384190063
+0.5391576520999943 0.2921672595934322 0.5391576520999943 0.2921672595934322 0.1653369198017906
+0.5336525388319774 0.29181416537032584 0.5336525388319774 0.29181416537032584 0.1347566432768885
+0.5307858913130763 0.29395653204821054 0.5307858913130764 0.29395653204821054 0.12471326414752111
+0.5536989819508877 0.2857078951513067 0.5536989819508876 0.28570789515130673 0.2423416080145416
+0.5506477701903812 0.2876643891694184 0.5506477701903812 0.2876643891694184 0.22776102086394154
+0.5475973090685667 0.28960291091348417 0.5475973090685667 0.28960291091348417 0.2127648760025703
+0.5571247678298676 0.28747685198954454 0.5571247678298676 0.28747685198954454 0.2689769971890878
+0.5609845761246041 0.2889585837646312 0.5609845761246041 0.2889585837646312 0.29809749616266407
+0.563734780670523 0.29148250944319476 0.563734780670523 0.29148250944319476 0.3233239019144443
+0.567004925951764 0.2904483607704402 0.567004925951764 0.2904483607704402 0.34094041706619144
+0.6204493922786704 0.24973374868633363 0.6204493922786704 0.2497337486863336 0.4738229957705107
+0.61693679139222 0.2509109497127294 0.61693679139222 0.2509109497127295 0.4646726336072722
+0.61342592769066 0.25217611492110564 0.6134259276906598 0.25217611492110564 0.455090430759082
+0.6099314958665649 0.2535248434683075 0.609931495866565 0.2535248434683075 0.44514533801115513
+0.6064668815950965 0.25493674401054667 0.6064668815950965 0.2549367440105467 0.43488880215206066
+0.582636475470682 0.2647972106334475 0.582636475470682 0.2647972106334475 0.3508874977936402
+0.6030472850063892 0.2563567418891602 0.6030472850063892 0.2563567418891602 0.42430073804883844
+0.58609571304994 0.2634230421198525 0.5860957130499401 0.2634230421198525 0.36464616515119935
+0.5895251094809105 0.2620311198614574 0.5895251094809105 0.2620311198614574 0.3777475231013588
+0.5929333195757777 0.26061536750345815 0.5929333195757777 0.26061536750345815 0.3902218818083476
+0.5963011403396148 0.25919691857911487 0.5963011403396149 0.2591969185791148 0.4020366413518886
+0.5996632604170008 0.2577781813596289 0.5996632604170008 0.2577781813596289 0.4133627985236639
+0.5783632100837589 0.2698287645805843 0.5783632100837589 0.2698287645805843 0.3426744696244048
+0.5702270705730842 0.2894939863422393 0.5702270705730842 0.2894939863422393 0.357792397344038
+0.5740099950467948 0.27470204651366825 0.5740099950467948 0.27470204651366825 0.33322331158056345
+0.5729778395082366 0.2783781095517998 0.5729778395082366 0.2783781095517998 0.3385361314879965
+0.5720091321975629 0.282134397500035 0.5720091321975628 0.282134397500035 0.34464796251858903
+0.5711169798675343 0.2858791070114708 0.5711169798675343 0.2858791070114708 0.35139121082356733
+0.5774972370887879 0.2734969159608322 0.5774972370887879 0.2734969159608322 0.3488171737424921
+0.581861637828404 0.26850319477329476 0.5818616378284042 0.26850319477329476 0.35729289265885317
+0.6239026159194755 0.24859156899978252 0.6239026159194755 0.24859156899978255 0.4822106649138133
+0.6272644654406051 0.2475181135021252 0.6272644654406051 0.2475181135021252 0.48983237861295176
+0.6303346542279137 0.2466020928893255 0.6303346542279137 0.24660209288932552 0.4963990978625383
+0.6334508916919053 0.2457182914815238 0.6334508916919052 0.24571829148152383 0.5024907233123602
+0.6366795660476041 0.24477900128440996 0.6366795660476042 0.24477900128440996 0.508510391848895
+0.6397532982540448 0.24397836105052317 0.6397532982540448 0.24397836105052315 0.5136905856662192
+0.6431980997139873 0.2433054716720833 0.6431980997139873 0.2433054716720833 0.5193839449079793
+0.6757301805281765 0.2134696583793162 0.6757301805281765 0.21346965837931622 0.5024089951375615
+0.6695814807666453 0.21665879260038381 0.6695814807666453 0.21665879260038381 0.5018376280442172
+0.6736776595501475 0.2167213817929319 0.6736776595501475 0.2167213817929319 0.5059635405387651
+0.667566531911653 0.21954693761220778 0.6675665319116532 0.21954693761220775 0.5049613020059535
+0.6632097960077471 0.22290316446659253 0.6632097960077471 0.2229031644665925 0.5065892056907507
+0.6659493475218567 0.22186367163778337 0.6659493475218567 0.22186367163778337 0.5075384890024677
+0.6585389214338874 0.22710420279816415 0.6585389214338874 0.22710420279816415 0.509346003348369
+0.657312059552122 0.23064885817978573 0.657312059552122 0.23064885817978573 0.5150566561538467
+0.6466474011063421 0.2426407882892281 0.6466474011063421 0.2426407882892281 0.5244335561254481
+0.6525567708563075 0.2348384848728191 0.6525567708563075 0.2348384848728191 0.5172144954077355
+0.6513491783787546 0.23838464978240506 0.6513491783787546 0.23838464978240506 0.5229990755377701
+0.650141212269655 0.24194930903670636 0.6501412122696549 0.2419493090367064 0.5288514474675289
+0.6560842576696259 0.23418613775800393 0.6560842576696259 0.23418613775800393 0.5208437581971862
+0.6622052086448462 0.22628787213581725 0.6622052086448463 0.22628787213581725 0.5121500752064191
+0.6861868580820579 0.20342640850890018 0.6861868580820579 0.20342640850890018 0.4973064276000175
+0.6903747704991868 0.20342524941335263 0.6903747704991868 0.20342524941335263 0.5010902007547776
+0.68408920620324 0.20682437985036936 0.68408920620324 0.20682437985036936 0.4999915304459625
+0.6819879530256974 0.2102243685173688 0.6819879530256974 0.2102243685173688 0.5029722937106778
+0.6799236378499703 0.21361333233624505 0.6799236378499703 0.21361333233624505 0.506285117936101
+0.7112970711296949 0.17629993134878263 0.711297071129695 0.17629993134878263 0.48567184740938435
+0.7092050209204903 0.17969031464395108 0.7092050209204902 0.17969031464395105 0.48885824792103155
+0.7071129707107645 0.18308069793875062 0.7071129707107645 0.18308069793875062 0.49166874004474087
+0.7050209204962162 0.18647108123011738 0.7050209204962162 0.18647108123011738 0.4941573889283724
+0.7029288702297594 0.1898614644875046 0.7029288702297594 0.1898614644875046 0.4963949922791043
+0.7008368150244632 0.19325183784627584 0.7008368150244632 0.19325183784627584 0.4984650064783622
+0.6987447278256674 0.19664220348141867 0.6987447278256674 0.19664220348141867 0.5004589423421519
+0.6966525322642315 0.20003265879648993 0.6966525322642315 0.20003265879648993 0.502471539393116
+0.6945603854527422 0.20342311727855703 0.6945603854527422 0.20342311727855703 0.5045958112092804
+0.7175732217573096 0.17290954805361503 0.7175732217573096 0.17290954805361503 0.48480669678063887
+0.7154811715481043 0.17629993134878322 0.7154811715481043 0.17629993134878322 0.48864763989188625
+0.7238493723849254 0.16951916475844686 0.7238493723849254 0.16951916475844686 0.48265600301834954
+0.72175732217572 0.1729095480536155 0.72175732217572 0.1729095480536155 0.4871864660226451
+0.7301255230125409 0.16612878146327814 0.7301255230125409 0.16612878146327814 0.47930759251994853
+0.7280334728033359 0.16951916475844708 0.7280334728033359 0.16951916475844708 0.48446177415824715
+0.7364016736401561 0.1627383981681092 0.7364016736401561 0.1627383981681092 0.47500779359964357
+0.734309623430951 0.16612878146327814 0.734309623430951 0.16612878146327814 0.4806168579807116
+0.7426778242677714 0.15934801487294026 0.7426778242677714 0.15934801487294026 0.4701431863411725
+0.7405857740585663 0.1627383981681092 0.7405857740585663 0.1627383981681092 0.475947735376303
+0.7510460251045918 0.15256724828260237 0.7510460251045918 0.15256724828260237 0.45982830916536704
+0.7489539748953868 0.15595763157777132 0.7489539748953868 0.15595763157777132 0.46519655410964605
+0.7468619246861817 0.15934801487294026 0.7468619246861817 0.15934801487294026 0.4708743981927994
+0.7573221757322074 0.14917686498743343 0.7573221757322074 0.14917686498743343 0.4560099954679861
+0.7552301255230022 0.1525672482826024 0.7552301255230022 0.1525672482826024 0.46067942089444974
+0.7635983263598227 0.1457864816922645 0.7635983263598227 0.1457864816922645 0.4533528177825105
+0.7615062761506176 0.14917686498743343 0.7615062761506176 0.14917686498743343 0.4570488843137604
+0.7698744769874378 0.14239609839709555 0.7698744769874378 0.14239609839709555 0.4520640182893363
+0.7677824267782328 0.1457864816922645 0.7677824267782328 0.1457864816922645 0.4546228703904715
+0.7761506276150533 0.1390057151019266 0.7761506276150533 0.1390057151019266 0.4521137510546723
+0.7740585774058482 0.14239609839709555 0.7740585774058482 0.14239609839709555 0.45351265568932586
+0.7824267782426685 0.13561533180675767 0.7824267782426685 0.13561533180675767 0.4532290492002038
+0.7803347280334635 0.1390057151019266 0.7803347280334635 0.1390057151019266 0.45359082025744896
+0.7887029288702839 0.13222494851158872 0.7887029288702839 0.13222494851158872 0.45493495455010896
+0.7866108786610786 0.13561533180675767 0.7866108786610786 0.13561533180675767 0.45450494711124995
+0.7949790794978994 0.12883456521641978 0.7949790794978994 0.12883456521641978 0.45663319097046434
+0.7928870292886943 0.13222494851158872 0.7928870292886944 0.13222494851158872 0.45573497088701265
+0.8033472803347195 0.1220537986260819 0.8033472803347195 0.1220537986260819 0.4589160420197244
+0.8012552301255145 0.12544418192125084 0.8012552301255145 0.12544418192125084 0.4577007354944331
+0.7991631799163095 0.12883456521641978 0.7991631799163095 0.12883456521641978 0.4566809553273496
+0.8096234309623347 0.11866341533091296 0.8096234309623346 0.11866341533091296 0.45843648868377523
+0.8075313807531296 0.1220537986260819 0.8075313807531296 0.1220537986260819 0.45758992445763674
+0.81589958158995 0.11527303203574402 0.81589958158995 0.11527303203574402 0.45620939519466974
+0.8138075313807449 0.11866341533091296 0.8138075313807448 0.11866341533091296 0.455916198185323
+0.8221757322175655 0.11188264874057507 0.8221757322175655 0.11188264874057507 0.4522087391895779
+0.8200836820083603 0.11527303203574402 0.8200836820083603 0.11527303203574402 0.4525252046109282
+0.8284518828451812 0.10849226544540613 0.8284518828451812 0.10849226544540613 0.4466917346385122
+0.8263598326359759 0.11188264874057507 0.8263598326359759 0.11188264874057507 0.44753467104534456
+0.8347280334727963 0.10510188215023719 0.8347280334727963 0.10510188215023719 0.44019416716572374
+0.8326359832635912 0.10849226544540613 0.8326359832635912 0.10849226544540613 0.4413471612587701
+0.8410041841004113 0.10171149885506825 0.8410041841004113 0.10171149885506825 0.43348879020707626
+0.8389121338912064 0.10510188215023719 0.8389121338912063 0.10510188215023719 0.4346283373586433
+0.8472803347280269 0.09832111555989931 0.847280334728027 0.09832111555989931 0.4275001338549788
+0.8451882845188217 0.10171149885506825 0.8451882845188216 0.10171149885506825 0.4282436653068668
+0.8535564853556422 0.09493073226473037 0.8535564853556422 0.09493073226473037 0.42317376208496055
+0.8514644351464372 0.09832111555989931 0.8514644351464372 0.09832111555989931 0.4231482107705226
+0.8598326359832577 0.09154034896956142 0.8598326359832577 0.09154034896956142 0.42131146535185815
+0.8577405857740525 0.09493073226473037 0.8577405857740527 0.09493073226473037 0.42023348922843645
+0.8682008368200781 0.08475958237922354 0.8682008368200781 0.08475958237922354 0.4248674781274409
+0.866108786610873 0.08814996567439248 0.866108786610873 0.08814996567439248 0.42240430294368414
+0.8640167364016679 0.09154034896956142 0.8640167364016679 0.09154034896956142 0.42015385063182115
+0.8744772339879359 0.0813691142955506 0.8744772339879358 0.0813691142955506 0.4298965080214993
+0.8723851345144049 0.08475950959302363 0.8723851345144048 0.08475950959302363 0.42651101769134
+0.8807543022719875 0.077978311821084 0.8807543022719875 0.077978311821084 0.4371624877235307
+0.8786627720920746 0.08136837356358609 0.8786627720920744 0.08136837356358607 0.4332244501281153
+0.8870315982080808 0.074587595703164 0.8870315982080808 0.07458759570316399 0.4457232823833978
+0.8849405466924938 0.07797716007637766 0.8849405466924939 0.07797716007637766 0.4417302454255582
+0.8933102266294842 0.07119528369870734 0.8933102266294842 0.07119528369870733 0.4544429087535187
+0.8912192500861948 0.07458534270296623 0.8912192500861948 0.07458534270296623 0.45094554090689415
+0.8995909686651631 0.06779848779577541 0.8995909686651631 0.06779848779577541 0.46214094144616563
+0.8975007604682327 0.07118855746188811 0.8975007604682327 0.07118855746188811 0.45967753622430024
+0.9058746664427294 0.06439814705910658 0.9058746664427294 0.06439814705910658 0.46772137177627654
+0.903784546102255 0.06778544350342094 0.903784546102255 0.06778544350342096 0.46675766024695803
+0.9121615195308453 0.0610008872732459 0.9121615195308453 0.06100088727324591 0.47027042873435104
+0.9100709356775979 0.06438255127052443 0.9100709356775979 0.06438255127052443 0.4711614276877432
+0.9205163150257679 0.05423900503089372 0.9205163150257679 0.05423900503089372 0.4647510796973249
+0.9184412414280273 0.057616317660028955 0.9184412414280273 0.057616317660028955 0.4691249194320127
+0.916364116215629 0.06098981150574098 0.916364116215629 0.06098981150574099 0.4720944930829328
+0.9268032579709553 0.05084193904733114 0.9268032579709553 0.05084193904733114 0.4573609265273531
+0.9247072454663717 0.054233485624061294 0.9247072454663717 0.054233485624061294 0.4638891888283197
+0.9330873950725221 0.04741777754368783 0.9330873950725221 0.04741777754368783 0.4457836521883796
+0.9309995118913585 0.05080766775779232 0.9309995118913585 0.05080766775779232 0.45434590255410107
+0.93934451041298 0.04400206814515207 0.93934451041298 0.04400206814515207 0.4303811841326866
+0.937270662158402 0.047387425425216144 0.937270662158402 0.047387425425216144 0.44071714149219926
+0.9455701063851882 0.04056822701693806 0.9455701063851883 0.04056822701693807 0.4116529645341722
+0.9434875687831538 0.04394397525305324 0.9434875687831538 0.04394397525305324 0.42344571440449935
+0.9518297673229694 0.037151704770724533 0.9518297673229695 0.03715170477072454 0.3902637248303548
+0.9496942170467468 0.040517114036444084 0.9496942170467468 0.040517114036444084 0.4032048988091143
+0.9559199033434799 0.036974123198688494 0.9559199033434799 0.03697412319868849 0.38044359257658306
+0.9579868663652694 0.03360726346457751 0.9579868663652694 0.03360726346457751 0.367072476659045
+0.9642317675223532 0.030253001000427507 0.9642317675223532 0.030253001000427503 0.3434409313282591
+0.9620328645172672 0.033529414780494766 0.9620328645172672 0.033529414780494766 0.356973706563503
+0.9683087662522049 0.029998620580206563 0.9683087662522049 0.029998620580206563 0.33284288740136314
+0.9703911954952856 0.026453679892606254 0.9703911954952856 0.02645367989260625 0.31940524287685806
+0.9736648850712915 0.02617918174753761 0.9736648850712915 0.02617918174753761 0.311124944633595
+0.976530171570879 0.02372348492685858 0.9765301715708788 0.02372348492685858 0.29948203263092016
+0.9800488826554838 0.022710755656640026 0.9800488826554838 0.022710755656640026 0.2901364435331839
+0.982381592547751 0.020048538768484808 0.9823815925477511 0.020048538768484808 0.2806157765455046
+0.9856424330304376 0.016847329313375143 0.9856424330304376 0.016847329313375143 0.26975115766983904
+0.9896254509231803 0.014928401986731885 0.9896254509231802 0.014928401986731885 0.26161813344501206
+0.9931716994272368 0.012883010106375324 0.9931716994272367 0.012883010106375324 0.2554262981099807
+0.016570271751118498 0.9932223471500222 0.016570271751118498 0.9932223471500222 0.06278939320823455
+0.01858664487601981 0.9897787238857201 0.01858664487601981 0.9897787238857202 0.06441608160723417
+0.020676287595831174 0.9865560144953822 0.020676287595831174 0.9865560144953821 0.06640528622073567
+0.023153729931053718 0.9831120387082063 0.023153729931053718 0.9831120387082063 0.06897989868025346
+0.025258038360803366 0.979695346654762 0.025258038360803366 0.9796953466547621 0.07171343666762177
+0.027458558803605024 0.9762519734134828 0.027458558803605027 0.9762519734134828 0.07475944029417113
+0.029715774590182376 0.9728813157050346 0.029715774590182376 0.9728813157050346 0.0779799972447638
+0.03187356367531596 0.969572488903206 0.03187356367531596 0.9695724889032061 0.08124506279272992
+0.03353339245528425 0.9658342726340392 0.03353339245528425 0.9658342726340391 0.0845985188351318
+0.035997271462217206 0.9623894287908288 0.035997271462217206 0.9623894287908287 0.08814067714881245
+0.03836171121199755 0.9593793397226964 0.03836171121199755 0.9593793397226964 0.09131537115789258
+0.04051082667727235 0.9537348357925847 0.04051082667727235 0.9537348357925847 0.09584272905348717
+0.04035343599549507 0.9568412087966868 0.04035343599549507 0.9568412087966868 0.09390850982976945
+0.04314928758841842 0.9520457565122498 0.04314928758841842 0.9520457565122499 0.09807734679847101
+0.044554173421681276 0.9484137452158421 0.044554173421681276 0.9484137452158422 0.10068986923168158
+0.04746536613236396 0.9414225941422556 0.04746536613236396 0.9414225941422556 0.1049342171824272
+0.0475533198699944 0.9454712953986169 0.0475533198699944 0.945471295398617 0.10335864449274688
+0.05083935168328461 0.9351677938766212 0.05083935168328461 0.9351677938766212 0.10800006454857729
+0.05079074193280717 0.9392643177016101 0.05079074193280717 0.9392643177016101 0.1069027914670394
+0.05425518603246221 0.9289501103557947 0.05425518603246221 0.9289501103557946 0.1098657486703913
+0.054232681117666263 0.9331048371367343 0.054232681117666263 0.9331048371367343 0.10938221578104886
+0.057650865451222 0.9269697860673985 0.057650865451222 0.9269697860673985 0.11058886850967085
+0.0609329251020434 0.9205800162226114 0.0609329251020434 0.9205800162226115 0.11041477146914673
+0.06085937437032969 0.9249205094146168 0.060859374370329684 0.9249205094146168 0.11090388081849349
+0.0643843413826383 0.9142432074180713 0.06438434138263828 0.9142432074180712 0.10884433121712293
+0.06434485975789613 0.9184099658598108 0.06434485975789613 0.9184099658598107 0.10999074014988962
+0.06778718270287301 0.9079683270884229 0.067787182702873 0.9079683270884228 0.10593374826789935
+0.06776605207570499 0.9121598266270529 0.06776605207570498 0.9121598266270529 0.10770703555463369
+0.07118089956461483 0.9016817851197986 0.07118089956461483 0.9016817851197986 0.10178700095425235
+0.0711728666333186 0.905866779966732 0.07117286663331858 0.905866779966732 0.10409972312456874
+0.07457260222350322 0.8954121915631422 0.07457260222350322 0.8954121915631422 0.09660423402250944
+0.07456732191099584 0.8995946737299275 0.07456732191099584 0.8995946737299275 0.09935045520209461
+0.07797372403428682 0.8891346434835437 0.07797372403428682 0.8891346434835438 0.09062655614323145
+0.07796242052693314 0.893317899470357 0.07796242052693314 0.8933178994703571 0.09366824096902894
+0.08136938104845258 0.8828522989973681 0.08136938104845258 0.8828522989973681 0.0842094793208915
+0.08136894149850213 0.8870446157275235 0.08136894149850214 0.8870446157275235 0.08735951529713971
+0.0847602094638546 0.8765710981648486 0.0847602094638546 0.8765710981648486 0.07779200324723994
+0.08476113171138515 0.8807576486759491 0.08476113171138515 0.8807576486759491 0.08082019142721021
+0.08815010868640831 0.8702935684775666 0.08815010868640831 0.8702935684775666 0.07188888333911446
+0.08815054333772376 0.8744782654892117 0.08815054333772376 0.8744782654892117 0.07454141454960898
+0.09153938886900226 0.8682029774887772 0.09153938886900226 0.8682029774887772 0.06906985316215504
+0.09492761303940435 0.8619294342136984 0.09492761303940435 0.8619294342136984 0.06496730505272817
+0.09492695732166423 0.8661149446170997 0.09492695732166423 0.8661149446170997 0.0666422382179363
+0.09831805289928504 0.8556544059055523 0.09831805289928504 0.8556544059055523 0.06268876209399556
+0.09831524414783051 0.8598424926931044 0.09831524414783051 0.8598424926931044 0.06341779015199535
+0.1017098700981371 0.8493758687708078 0.1017098700981371 0.8493758687708078 0.062433162610405664
+0.10170766355282712 0.8535637202444076 0.10170766355282712 0.8535637202444076 0.06217477595013266
+0.10510117668309395 0.8430978350372161 0.10510117668309395 0.8430978350372161 0.06404856051333317
+0.10510001993963479 0.847283965201997 0.10510001993963479 0.8472839652019971 0.06293654828416394
+0.10849203619466062 0.8368207075331208 0.10849203619466062 0.8368207075331208 0.06709410028769007
+0.10849159417586172 0.8410057735511601 0.10849159417586172 0.8410057735511601 0.06538070710542356
+0.1118825857956557 0.8305441511333007 0.1118825857956557 0.8305441511333008 0.07100879730832312
+0.1118824563041162 0.8347286343425647 0.1118824563041162 0.8347286343425647 0.06897795182113992
+0.11527300597959882 0.8242678499188054 0.11527300597959882 0.8242678499188054 0.07526097138757547
+0.11527294568481043 0.8284520795311109 0.11527294568481043 0.8284520795311109 0.07316522347647879
+0.11866340989788278 0.817991645721526 0.11866340989788278 0.817991645721526 0.07942455619348336
+0.11866339586856006 0.8221757725759984 0.11866339586856008 0.8221757725759984 0.07745913663492217
+0.12205379838533727 0.811715482290473 0.12205379838533727 0.811715482290473 0.08319742412742447
+0.12205379780006881 0.8158995849463128 0.12205379780006882 0.8158995849463128 0.08149738861587978
+0.12544417354406 0.8096234454801206 0.12544417354406 0.8096234454801206 0.08503927703624425
+0.128834559412055 0.8033472914557743 0.128834559412055 0.8033472914557743 0.08795099147661208
+0.12883454493226595 0.8075314186600235 0.12883454493226595 0.8075314186600234 0.08686058445865062
+0.1322249460105737 0.7970711347930289 0.1322249460105737 0.7970711347930289 0.09018816856261452
+0.1322249398091722 0.8012552476900506 0.1322249398091722 0.8012552476900506 0.08947423937973122
+0.1356153308968058 0.7907949807209121 0.1356153308968058 0.7907949807209121 0.091779523350477
+0.13561532849961494 0.7949790852460219 0.1356153284996149 0.7949790852460219 0.09141988516065985
+0.1390057149339035 0.7845188287437318 0.13900571493390348 0.7845188287437318 0.09281150646398274
+0.139005714464973 0.7887029299220095 0.139005714464973 0.7887029299220095 0.09275365442497534
+0.14239609832504035 0.7782426779535432 0.14239609832504033 0.7782426779535432 0.09341330949203085
+0.14239609808945908 0.7824267787672025 0.14239609808945908 0.7824267787672025 0.09358005738120861
+0.14578648165542182 0.7719665272723532 0.14578648165542182 0.7719665272723532 0.09374146076200186
+0.14578648153472185 0.7761506279282947 0.14578648153472185 0.7761506279282947 0.09403713066628062
+0.14917686497163593 0.7656903766026631 0.14917686497163593 0.7656903766026631 0.09396371629586303
+0.14917686492127893 0.7698744771248087 0.14917686492127893 0.7698744771248087 0.09428131410966939
+0.152567248276846 0.7594142259533195 0.152567248276846 0.7594142259533195 0.0942427312788265
+0.15256724825893864 0.7635983264076677 0.15256724825893864 0.7635983264076677 0.09447215900958877
+0.15595763157591871 0.753138075317425 0.15595763157591871 0.753138075317425 0.09472087627931773
+0.1559576315702684 0.7573221757465678 0.1559576315702684 0.7573221757465678 0.09475770429065822
+0.15934801487080297 0.7510460251084518 0.15934801487080297 0.7510460251084518 0.09526201491684155
+0.16273839816753058 0.7447698744779322 0.16273839816753058 0.7447698744779322 0.09607664437678054
+0.16273839816581712 0.7489539748990284 0.16273839816581712 0.7489539748990284 0.09576618608025467
+0.16612878146311877 0.7384937238497479 0.16612878146311874 0.7384937238497479 0.09725739610833462
+0.16612878146263366 0.7426778242693368 0.16612878146263366 0.7426778242693368 0.09657957122584472
+0.16951916475840734 0.7322175732218626 0.16951916475840734 0.7322175732218626 0.09882669825615396
+0.16951916475829307 0.7364016736406138 0.16951916475829307 0.7364016736406138 0.09774522020440558
+0.17290954805361022 0.7259414225941875 0.17290954805361022 0.7259414225941875 0.10078054686668404
+0.1729095480536047 0.7301255230127501 0.1729095480536047 0.7301255230127501 0.09928166556511446
+0.17629993134878397 0.7196652719665461 0.17629993134878397 0.7196652719665461 0.10309791556743074
+0.176299931348793 0.7238493723850218 0.176299931348793 0.7238493723850218 0.10118743131732832
+0.17969031464395183 0.713389121338918 0.17969031464395183 0.713389121338918 0.10575021327144306
+0.17969031464395704 0.7175732217573513 0.17969031464395704 0.7175732217573513 0.10344914107157287
+0.18308069793912166 0.711297071129715 0.18308069793912166 0.711297071129715 0.10604868185375514
+0.18647108123429115 0.7092050209205105 0.18647108123429115 0.7092050209205105 0.10625357658633532
+0.1898614645294602 0.7071129707113047 0.1898614645294602 0.7071129707113047 0.10639676174231318
+0.19325184782462881 0.705020920502098 0.19325184782462881 0.705020920502098 0.106515429046895
+0.19664223111979642 0.7029288702928899 0.19664223111979642 0.7029288702928899 0.10664983432508003
+0.20003261441496387 0.7008368200836813 0.20003261441496387 0.7008368200836813 0.10684074322672261
+0.20342274662637064 0.6945602767258855 0.20342274662637064 0.6945602767258855 0.11008809401958135
+0.2068130018461907 0.6924680160125094 0.2068130018461907 0.6924680160125094 0.11053341042569272
+0.2173687677921688 0.6780170352291395 0.21736876779216877 0.6780170352291394 0.11905343845998884
+0.22208090901484434 0.6689317752031136 0.22208090901484434 0.6689317752031138 0.12545614953754003
+0.22439064760050825 0.6662118915781716 0.22439064760050823 0.6662118915781717 0.12718850612533605
+0.2270044093387644 0.6635584705602334 0.2270044093387644 0.6635584705602334 0.1287971808606587
+0.23217762425336222 0.6546668436011075 0.23217762425336222 0.6546668436011075 0.13493319706021215
+0.23502410638369597 0.6521274806677552 0.23502410638369597 0.6521274806677552 0.13618560931957704
+0.23776264106303058 0.6496454689646641 0.2377626410630306 0.6496454689646641 0.13734123199047962
+0.24019538679811858 0.647249006811113 0.24019538679811858 0.647249006811113 0.13845574009994818
+0.24358168319455556 0.6418501921093096 0.2435816831945556 0.6418501921093096 0.14173479228295374
+0.24279560323540328 0.6452558762763176 0.24279560323540328 0.6452558762763176 0.13907355506340938
+0.24692663311040058 0.6417366139382951 0.24692663311040058 0.6417366139382951 0.140194917243145
+0.2298825842614921 0.6609544323382363 0.22988258426149208 0.6609544323382363 0.13024568172495155
+0.23274500207277826 0.6583693107158008 0.2327450020727783 0.658369310715801 0.13163258775469244
+0.21992513152004467 0.6749751404768329 0.21992513152004464 0.6749751404768328 0.12095149060925091
+0.22273048523052238 0.672485273489623 0.22273048523052238 0.672485273489623 0.12236854037415952
+0.21019324163786263 0.6861886554219676 0.21019324163786265 0.6861886554219677 0.11433098728830228
+0.21020376430047033 0.6903765690376558 0.21020376430047036 0.6903765690376558 0.11111797963802329
+0.21661797111371062 0.6824002680651238 0.21661797111371062 0.6824002680651238 0.11567950834337291
+0.2135013446690092 0.6842331235692063 0.2135013446690092 0.6842331235692063 0.11497053398655953
+0.20342128247128347 0.698743927828541 0.20342128247128347 0.698743927828541 0.10712784774974259
+0.24921253912583113 0.6399005471341443 0.2492125391258311 0.6399005471341442 0.14061645692224167
+0.2547356843871021 0.624741550663208 0.2547356843871021 0.624741550663208 0.1523163528074628
+0.2577203727900761 0.6223248964915556 0.2577203727900761 0.6223248964915556 0.1530364476173891
+0.26014358218873174 0.6164099833961356 0.26014358218873174 0.6164099833961356 0.15876636081267737
+0.2606779333086637 0.6199268800199048 0.2606779333086637 0.6199268800199048 0.1537904691645869
+0.27075317263567444 0.5969510348604459 0.27075317263567444 0.5969510348604459 0.1831964901914318
+0.2626431820744617 0.6106005081776257 0.2626431820744617 0.6106005081776257 0.16523441684094828
+0.26563504116809994 0.6083133642508686 0.26563504116809994 0.6083133642508686 0.16651652798030106
+0.26819814958054666 0.6025770356514183 0.2681981495805466 0.6025770356514183 0.17435312614871776
+0.2685819886860463 0.6060047880957434 0.2685819886860463 0.6060047880957434 0.16803066544169842
+0.27114057525784124 0.6002653516371859 0.27114057525784124 0.6002653516371859 0.1763996008856954
+0.26310569362346703 0.6140708083033096 0.26310569362346703 0.6140708083033096 0.1597520932265062
+0.25153224357722914 0.6380976189062548 0.25153224357722914 0.6380976189062548 0.14095612839627944
+0.25213986499257446 0.630848650315188 0.2521398649925745 0.6308486503151879 0.14745157629161373
+0.2525586612830322 0.634925119887469 0.2525586612830322 0.6349251198874689 0.14329192940678173
+0.2552666782039541 0.6283754127318155 0.2552666782039541 0.6283754127318155 0.14798011814294657
+0.4247421338956192 0.4012600743398202 0.4247421338956192 0.4012600743398202 0.5524281590116171
+0.42102493945492864 0.40005101757959993 0.42102493945492864 0.40005101757959993 0.5330460192951912
+0.41761694474172345 0.4007448027468034 0.41761694474172345 0.4007448027468034 0.5248044277974216
+0.4119112700339315 0.3994673118081956 0.4119112700339315 0.39946731180819567 0.49354669238993853
+0.4146610950366497 0.401700559301732 0.4146610950366498 0.401700559301732 0.5175529722993187
+0.4050596034127511 0.39974712766756354 0.4050596034127511 0.39974712766756354 0.46106889290639597
+0.40877930995002937 0.40147784488418825 0.40877930995002937 0.40147784488418825 0.4874018370669062
+0.40270432613315277 0.4016535700190388 0.40270432613315277 0.4016535700190388 0.45469333649012283
+0.3952896258455318 0.4013592643689712 0.3952896258455318 0.40135926436897124 0.4115411339487341
+0.39932323894400923 0.4022686157841872 0.3993232389440093 0.40226861578418716 0.4372095654044768
+0.3927124802661304 0.40339495189493063 0.3927124802661304 0.40339495189493063 0.39997121874382174
+0.3867671542798075 0.4047275663082538 0.3867671542798075 0.40472756630825385 0.36571095793409863
+0.390215760443341 0.40486951773930135 0.390215760443341 0.40486951773930135 0.3866000274844634
+0.3833656594588867 0.40637745694798866 0.3833656594588866 0.4063774569479887 0.3459811117875488
+0.3772026800717959 0.40752249044402966 0.37720268007179586 0.4075224904440296 0.3103694173877622
+0.3807931282710201 0.4084962583896041 0.38079312827102013 0.4084962583896042 0.33058834444627067
+0.3743791001544805 0.4098298044117581 0.3743791001544805 0.40982980441175804 0.293547525959041
+0.36781836092769166 0.4115255583006769 0.36781836092769166 0.4115255583006769 0.258984086219256
+0.371608758587803 0.41226111328606413 0.371608758587803 0.41226111328606413 0.2767796292907379
+0.365016502290945 0.41411254309802814 0.365016502290945 0.41411254309802814 0.24375395054320856
+0.35820813222148384 0.4162663761943918 0.35820813222148384 0.41626637619439183 0.21622433701917124
+0.3622807283014633 0.41678140020727844 0.3622807283014633 0.41678140020727844 0.22995368393372165
+0.3557873918198604 0.41893075692325205 0.3557873918198604 0.41893075692325205 0.20750845401470538
+0.3495853927502087 0.4208330992102819 0.34958539275020867 0.42083309921028184 0.1943060663737359
+0.3472319429054507 0.4225724090675424 0.3472319429054507 0.4225724090675424 0.19209274747560157
+0.35309683595985586 0.4216963875410937 0.35309683595985586 0.4216963875410937 0.20061966895418396
+0.3462604745100894 0.4250738627259669 0.3462604745100894 0.4250738627259669 0.19358131390314867
+0.3405567228401958 0.42752752689068396 0.3405567228401958 0.42752752689068396 0.19579386107851562
+0.3385855906031597 0.43013145846903517 0.3385855906031597 0.43013145846903517 0.2020540932120565
+0.34423165220901897 0.4278010354614199 0.34423165220901897 0.42780103546141995 0.19645159454755104
+0.3366734815776952 0.43274502194570524 0.3366734815776952 0.43274502194570524 0.21002202450556262
+0.3312362834960668 0.4352709154067145 0.33123628349606676 0.4352709154067145 0.2223083476121381
+0.329454560278436 0.4380632534396951 0.329454560278436 0.4380632534396951 0.23356047397172466
+0.33489180558340986 0.43541344097288204 0.33489180558340986 0.435413440972882 0.21942659049555155
+0.327708170238157 0.4408816576328201 0.327708170238157 0.4408816576328201 0.24549696483804653
+0.32226847269338166 0.4437661075104345 0.3222684726933816 0.4437661075104345 0.2616381983193827
+0.32061202442468634 0.4467280145418246 0.32061202442468634 0.4467280145418246 0.2743041834353442
+0.3260071600339188 0.4437391983217676 0.3260071600339188 0.4437391983217676 0.25791152018910296
+0.31901115550302456 0.4497199891705277 0.31901115550302456 0.4497199891705277 0.2868954221127471
+0.31365643258803266 0.45296969345074195 0.31365643258803266 0.45296969345074195 0.3023476816344939
+0.31214553199387235 0.4561127900398542 0.31214553199387235 0.4561127900398542 0.31414997866848715
+0.31744066442029123 0.4527648314657235 0.31744066442029123 0.4527648314657235 0.2993559049940821
+0.31069159256872475 0.45929270680734874 0.31069159256872475 0.45929270680734874 0.325436363651085
+0.30546512042195056 0.4629112437601394 0.30546512042195056 0.4629112437601394 0.3376842267164171
+0.3040700155677701 0.4662129419959538 0.3040700155677701 0.4662129419959538 0.3471948318670428
+0.30928403183680625 0.4625057009560378 0.30928403183680625 0.4625057009560378 0.33609976112835094
+0.30279544835932193 0.4696065730341771 0.3027954483593219 0.46960657303417713 0.35602858744332555
+0.29793784056140177 0.4737394364859881 0.29793784056140177 0.4737394364859881 0.36413246281061734
+0.29668356376601285 0.47716353379249443 0.29668356376601285 0.4771635337924945 0.3704577232762609
+0.3016230972144909 0.4730138531262589 0.3016230972144909 0.4730138531262589 0.3639519032633674
+0.295279855091796 0.4805120143055499 0.29527985509179594 0.48051201430554985 0.37551791590090916
+0.2913223131709683 0.48659033995672807 0.2913223131709683 0.48659033995672807 0.3807690380349325
+0.2905900522080468 0.4894621065986049 0.29059005220804673 0.48946210659860495 0.3830364562948245
+0.2937643376728457 0.48426063715575557 0.29376433767284565 0.48426063715575557 0.38004133370051335
+0.2894239686151756 0.4926550333455979 0.2894239686151756 0.4926550333455979 0.3843597289310367
+0.28821731957426666 0.4959360600928888 0.2882173195742666 0.4959360600928888 0.3847872711943037
+0.2870138017261978 0.4991870671571763 0.2870138017261978 0.4991870671571763 0.38429420002442877
+0.2858731231004056 0.502461662431725 0.2858731231004055 0.502461662431725 0.3829802592312234
+0.2847989789210498 0.5058139239195052 0.28479897892104983 0.5058139239195052 0.38082839724747614
+0.28350950242166706 0.5090978918415006 0.283509502421667 0.5090978918415007 0.3778186671491866
+0.2824229308027755 0.5123420845433948 0.2824229308027755 0.5123420845433948 0.37425401336410036
+0.28150743940969675 0.5159037782743907 0.28150743940969675 0.5159037782743906 0.3697812109829162
+0.28057492273673823 0.5195766014526285 0.28057492273673823 0.5195766014526285 0.36438233184878904
+0.2798977785319932 0.5235955677243386 0.2798977785319932 0.5235955677243386 0.35793339767365806
+0.2780163202719057 0.5265841241765112 0.2780163202719057 0.5265841241765112 0.35137273156520193
+0.2778637457159786 0.5297583218978648 0.27786374571597866 0.5297583218978649 0.3456329840995267
+0.27728196189604865 0.5333627643281175 0.27728196189604865 0.5333627643281175 0.33815891553003463
+0.2766791431395654 0.537041282063864 0.2766791431395654 0.537041282063864 0.3300156669221512
+0.2760517845202602 0.5406746731783454 0.2760517845202602 0.5406746731783453 0.32152150959209674
+0.27540812042169355 0.5442473701077267 0.27540812042169355 0.5442473701077267 0.31281664758722166
+0.2748178810675812 0.5479035268523438 0.2748178810675812 0.5479035268523438 0.3036598521915789
+0.27444682169488815 0.5516396728456971 0.27444682169488815 0.5516396728456971 0.29414559088074105
+0.2741332082450409 0.5553749338593917 0.2741332082450409 0.5553749338593917 0.28443451252729274
+0.2738521385333821 0.5590955831382863 0.2738521385333821 0.5590955831382863 0.2746355665417439
+0.27356843603625536 0.5628263682047752 0.27356843603625536 0.5628263682047753 0.2647609152506952
+0.27328725036134 0.5666288717984581 0.27328725036134 0.5666288717984581 0.25472057002769305
+0.27302550554739974 0.5706037167691494 0.27302550554739974 0.5706037167691494 0.24434436209324595
+0.2730051986933558 0.5745935093108481 0.2730051986933559 0.574593509310848 0.23395957560137284
+0.27313673009383144 0.5781893403205736 0.27313673009383144 0.5781893403205736 0.22471392498778187
+0.27316579600124374 0.5818411165389282 0.27316579600124374 0.5818411165389282 0.2155933765631368
+0.27316429633127676 0.585476412793644 0.27316429633127676 0.585476412793644 0.20680976508032442
+0.27308314205177747 0.5890583692280783 0.27308314205177747 0.5890583692280783 0.19853579379428446
+0.2725020700702157 0.5920575320858418 0.2725020700702157 0.5920575320858418 0.19218448675870975
+0.27366917489079645 0.594647868213274 0.27366917489079645 0.594647868213274 0.1858175322231209
+0.4271792952754846 0.39943113135622943 0.42717929527548465 0.3994311313562294 0.54467640459412
+0.4282632038844269 0.3967212736438879 0.4282632038844269 0.3967212736438879 0.5274596635147715
+0.4298081001677474 0.3987981909352041 0.4298081001677474 0.3987981909352041 0.5439087578707446
+0.4293680516964809 0.39007943087358504 0.4293680516964809 0.39007943087358504 0.48973550000359056
+0.4295749006344547 0.39389069797558196 0.4295749006344547 0.393890697975582 0.5111877002633117
+0.43256943702282447 0.3794760169084595 0.4325694370228245 0.3794760169084595 0.4499742582013852
+0.43199550608308246 0.38899227494595223 0.4319955060830825 0.38899227494595223 0.4861336742705314
+0.43215587871670735 0.38339579220851155 0.4321558787167073 0.3833957922085115 0.4626562753582571
+0.43281491122687143 0.3865095647803978 0.43281491122687143 0.3865095647803978 0.4751910083452563
+0.435653632723855 0.37094321303173206 0.435653632723855 0.37094321303173206 0.4327967911476382
+0.43765340211616666 0.36874987485111727 0.43765340211616666 0.36874987485111727 0.4309222032825183
+0.43655628535038293 0.3747959964682278 0.4365562853503829 0.37479599646822775 0.4411733069462072
+0.43602384492540164 0.3786649985837688 0.43602384492540164 0.37866499858376873 0.45006542956838386
+0.44336294427741635 0.359124630369886 0.44336294427741635 0.359124630369886 0.42436524019792204
+0.44203168172152535 0.36210952408576536 0.44203168172152535 0.3621095240857653 0.4263678448921216
+0.4411553686335413 0.36539896201558053 0.44115536863354127 0.3653989620155805 0.4294652758489372
+0.4405177725438959 0.3684175200943346 0.44051777254389585 0.36841752009433465 0.43297698704744164
+0.4500450087740841 0.3489397386028253 0.4500450087740841 0.3489397386028253 0.4174926477549304
+0.44886184824450126 0.35216592831413013 0.44886184824450126 0.35216592831413013 0.4205755868193471
+0.4477689103517606 0.3553651415690443 0.4477689103517606 0.35536514156904436 0.423392894431982
+0.4467879643738279 0.3586795776400275 0.4467879643738279 0.3586795776400275 0.4262670392917313
+0.45820382168137236 0.3388509445756663 0.45820382168137236 0.3388509445756663 0.4017527081522796
+0.4562831828176238 0.34205833553932113 0.45628318281762376 0.34205833553932113 0.4077656172648784
+0.4550031076334434 0.3454924086665362 0.4550031076334435 0.34549240866653624 0.41288237536719635
+0.45377304812298486 0.34870859041530217 0.45377304812298486 0.34870859041530217 0.417169905985361
+0.4734674396091849 0.32556007434403184 0.4734674396091849 0.32556007434403184 0.34710336525155894
+0.4712869868975812 0.328923355005843 0.47128698689758114 0.328923355005843 0.36004299131283396
+0.4685393055062275 0.3322004462881828 0.4685393055062276 0.33220044628818274 0.3733936716414656
+0.46351663727972625 0.33582228059636476 0.4635166372797262 0.3358222805963647 0.38990277208354707
+0.4669782793366077 0.33567414718346766 0.4669782793366077 0.33567414718346766 0.3830465342681389
+0.4621002088015955 0.3390015137382541 0.4621002088015955 0.3390015137382541 0.3972393590258539
+0.48110188208956256 0.3196242499993757 0.48110188208956256 0.3196242499993757 0.3075962320568703
+0.4791890121898852 0.3226449968552353 0.47918901218988524 0.32264499685523523 0.32107531073828954
+0.4845933848723338 0.3200634715976539 0.4845933848723338 0.32006347159765397 0.2932035794732422
+0.477169563491318 0.325813877022068 0.477169563491318 0.325813877022068 0.33486394236046674
+0.4986843000256287 0.3088618847793764 0.4986843000256287 0.3088618847793764 0.20348825266929862
+0.4964114924746171 0.3120646546576525 0.4964114924746171 0.3120646546576525 0.2202290268423476
+0.4912889457193723 0.3149604520811943 0.49128894571937226 0.31496045208119433 0.25164403758416903
+0.4943308392216995 0.3152822260617771 0.49433083922169946 0.3152822260617771 0.23642299740890813
+0.4897380911675287 0.31796313258327424 0.4897380911675287 0.3179631325832743 0.26472667668161926
+0.48759016751725254 0.31989017681018805 0.4875901675172526 0.31989017681018805 0.2787902735709716
+0.5126812981306289 0.3023230125509125 0.5126812981306289 0.3023230125509125 0.12863775798702384
+0.5067635004618297 0.30417882983875727 0.5067635004618297 0.30417882983875727 0.15613334890064667
+0.5101779923360077 0.30510108974596517 0.5101779923360077 0.30510108974596517 0.14133610544563133
+0.504388839251736 0.307031006247265 0.504388839251736 0.307031006247265 0.1711857031282619
+0.502135816603237 0.30983323201567237 0.502135816603237 0.3098332320156723 0.18648079101078
+0.5279732433981025 0.296160424833259 0.5279732433981025 0.296160424833259 0.11696022268085636
+0.5214780100786193 0.2979123568030087 0.5214780100786193 0.2979123568030087 0.10752349664157364
+0.525074036315124 0.29877924622797014 0.525074036315124 0.29877924622797014 0.11218923763515874
+0.5187320497767317 0.3006396917821496 0.5187320497767317 0.3006396917821496 0.11158044568132124
+0.5161057035640592 0.30334749310762765 0.5161057035640592 0.30334749310762765 0.11894756455204585
+0.5445562504463091 0.2915250273954815 0.5445562504463091 0.2915250273954815 0.19752324381769018
+0.536629035270938 0.2933786039190284 0.5366290352709379 0.2933786039190284 0.1529076897367372
+0.541951983359837 0.29340316364263475 0.5419519833598371 0.2934031636426347 0.1849203831505437
+0.5391720221330891 0.29452929807806616 0.5391720221330891 0.29452929807806616 0.16980498843298078
+0.5340115005893638 0.29541597606041925 0.5340115005893638 0.2954159760604193 0.14203948804821823
+0.5312820902225245 0.29771473287154604 0.5312820902225245 0.2977147328715461 0.13206259054252853
+0.553959287869304 0.2894451359832344 0.5539592878693042 0.2894451359832344 0.2537754937751784
+0.5508488379199874 0.29140344859219675 0.5508488379199874 0.29140344859219675 0.2383479736187458
+0.5477598529384132 0.2933727424892824 0.5477598529384132 0.2933727424892824 0.2226431620807345
+0.5573634992961083 0.29112977118941863 0.5573634992961082 0.2911297711894187 0.2807736839316213
+0.5605524935271038 0.2928840754773511 0.5605524935271039 0.2928840754773511 0.3068838887627234
+0.5631166095025316 0.2944006115961346 0.5631166095025316 0.2944006115961346 0.3283445248557226
+0.5661029825090473 0.29409026179365105 0.5661029825090473 0.294090261793651 0.3469420895622563
+0.5693305850995027 0.2931354737251797 0.5693305850995029 0.2931354737251797 0.3643054658510034
+0.6230784898938769 0.25224705210820736 0.6230784898938769 0.25224705210820736 0.4881279120909556
+0.6195657802021567 0.25343162251319445 0.6195657802021567 0.25343162251319445 0.47957435818030386
+0.6160630649107858 0.25465368529270954 0.6160630649107858 0.25465368529270954 0.47050234006425845
+0.61258307894789 0.2559383733517855 0.61258307894789 0.2559383733517855 0.46104688065986504
+0.6091346289188424 0.2572807749680129 0.6091346289188424 0.2572807749680129 0.45126946282507596
+0.6057239486921111 0.2586519432256822 0.605723948692111 0.2586519432256822 0.4411658694903657
+0.5853584871821796 0.2671350945674648 0.5853584871821796 0.2671350945674648 0.3712726720008656
+0.6023451556522555 0.26006541709728787 0.6023451556522555 0.26006541709728787 0.4307923147431483
+0.588825436109589 0.2657471600650412 0.5888254361095892 0.2657471600650412 0.38454323465413803
+0.5922441709442511 0.2643322583560047 0.5922441709442511 0.26433225835600466 0.3970134648164661
+0.5956274480077001 0.26290988872739074 0.5956274480077001 0.2629098887273908 0.4088192068516266
+0.5989866966260639 0.2614858710944303 0.5989866966260639 0.2614858710944303 0.4200391463715107
+0.5810435190531477 0.2722043328150807 0.5810435190531477 0.2722043328150807 0.3638952296122737
+0.5734314607887832 0.28848680436851315 0.5734314607887833 0.28848680436851315 0.3737035964798365
+0.5725686443425032 0.2921669714914135 0.5725686443425032 0.2921669714914135 0.38097223811257624
+0.5765203972304292 0.2772549263583739 0.5765203972304292 0.2772549263583739 0.3549503660578477
+0.5754226217718892 0.28093996468973725 0.5754226217718892 0.28093996468973725 0.36043107407076463
+0.5744512514716434 0.2848729408561625 0.5744512514716434 0.2848729408561625 0.36769168997645446
+0.5801423403719778 0.2759354091034454 0.5801423403719778 0.2759354091034454 0.3705455403702953
+0.5846071900411958 0.27086412142776994 0.5846071900411958 0.27086412142777 0.3783425278211083
+0.62655520555977 0.25107017076073657 0.62655520555977 0.25107017076073657 0.49592268623793606
+0.6299443692499954 0.2499134092224965 0.6299443692499954 0.24991340922249652 0.5028182662417695
+0.6324907038791967 0.24834358583860033 0.6324907038791967 0.24834358583860033 0.5059837677849475
+0.635355436373161 0.24852786582938602 0.6353554363731612 0.24852786582938605 0.5137984503569886
+0.638681273408203 0.24758701691678098 0.6386812734082029 0.247587016916781 0.5194230662643872
+0.6420614841965341 0.24687002664260102 0.6420614841965341 0.24687002664260102 0.5250439425837649
+0.645515413274378 0.24620081361079094 0.645515413274378 0.24620081361079094 0.5302645769044311
+0.6777780234513711 0.21680759845927725 0.6777780234513711 0.21680759845927725 0.5095559826369733
+0.6716245546121582 0.22028097863053397 0.6716245546121583 0.22028097863053397 0.5103645661242276
+0.6757569386167126 0.2197958824350329 0.6757569386167126 0.21979588243503292 0.5128570554686757
+0.6687609762738376 0.2227040578801046 0.6687609762738376 0.22270405788010458 0.5121084079542602
+0.6660595263578086 0.22528479039822152 0.6660595263578086 0.22528479039822155 0.5144162355661682
+0.6608902751242282 0.22995887301263096 0.6608902751242282 0.22995887301263096 0.5180396704972486
+0.6596174572025036 0.23355892474422812 0.6596174572025036 0.23355892474422815 0.5239639407291699
+0.6489894922545146 0.24555346667778447 0.6489894922545146 0.24555346667778447 0.5348899361876408
+0.6548587791173041 0.23772256247623538 0.6548587791173041 0.23772256247623538 0.5267030030034182
+0.6536493216769588 0.2412562723694805 0.6536493216769587 0.24125627236948047 0.5326312871200755
+0.6524418008097295 0.2448288596523507 0.6524418008097294 0.2448288596523507 0.5386811591433166
+0.6583588755425663 0.23710671419432486 0.6583588755425663 0.23710671419432486 0.5298921686466905
+0.6644993570249524 0.22919452912564042 0.6644993570249524 0.2291945291256404 0.5204291699985185
+0.6715688488721443 0.22362490679989266 0.6715688488721443 0.22362490679989264 0.5160904254887274
+0.6882798960124904 0.20682627002102247 0.6882798960124904 0.20682627002102247 0.5036098280175025
+0.6924681266456328 0.20681495624488222 0.6924681266456328 0.20681495624488222 0.50691953307126
+0.6861871192982841 0.21024607657386019 0.6861871192982841 0.2102460765738602 0.5064488658008354
+0.6841133734341804 0.21371730860405816 0.6841133734341804 0.21371730860405816 0.5097317580006892
+0.6820341314089734 0.2174962155362071 0.6820341314089734 0.21749621553620707 0.5138967287941915
+0.713389121338899 0.17969031464395085 0.7133891213388991 0.17969031464395083 0.4920490503388741
+0.7112970711295783 0.1830806979390364 0.7112970711295783 0.1830806979390364 0.4950335499981479
+0.7092050209190743 0.18647108123328168 0.7092050209190743 0.18647108123328168 0.4976463114558744
+0.7071129706959663 0.18986146451932007 0.7071129706959663 0.18986146451932007 0.49995202244364695
+0.7050209204847607 0.19325184781364294 0.7050209204847607 0.19325184781364294 0.5020311262735685
+0.7029290274153951 0.19664210962218256 0.7029290274153951 0.19664210962218256 0.5039754614471668
+0.7008373440516302 0.20003213694868197 0.7008373440516302 0.20003213694868197 0.5058831571142982
+0.6987455089708289 0.20342189417799364 0.6987455089708289 0.20342189417799364 0.5078534740108211
+0.6966531799226158 0.206811410574416 0.6966531799226158 0.20681141057441596 0.5099819388819556
+0.7196652719665145 0.17629993134878394 0.7196652719665145 0.17629993134878394 0.491271699025068
+0.7175732217573088 0.1796903146439518 0.7175732217573088 0.1796903146439518 0.49489534309587285
+0.7259414225941305 0.17290954805361589 0.7259414225941305 0.17290954805361589 0.4892306686701699
+0.723849372384925 0.1762999313487845 0.723849372384925 0.1762999313487845 0.4935554190268066
+0.732217573221746 0.16951916475844708 0.732217573221746 0.16951916475844708 0.4859661161635853
+0.7301255230125409 0.17290954805361602 0.7301255230125409 0.17290954805361602 0.4909553419172628
+0.7384937238493611 0.16612878146327814 0.7384937238493611 0.16612878146327814 0.4816747003072271
+0.7364016736401561 0.16951916475844708 0.7364016736401561 0.16951916475844708 0.48718875962886893
+0.7447698744769767 0.1627383981681092 0.7447698744769767 0.1627383981681092 0.4766957987269405
+0.7426778242677714 0.16612878146327814 0.7426778242677714 0.16612878146327814 0.4825019665936972
+0.7531380753137972 0.15595763157777132 0.7531380753137972 0.15595763157777132 0.4658872465521449
+0.7510460251045918 0.15934801487294026 0.7510460251045918 0.15934801487294026 0.47147267255148506
+0.7489539748953868 0.1627383981681092 0.7489539748953868 0.1627383981681092 0.4772699286209309
+0.7594142259414125 0.15256724828260237 0.7594142259414126 0.15256724828260237 0.46147320020685045
+0.7573221757322074 0.15595763157777132 0.7573221757322074 0.15595763157777132 0.46649065584348565
+0.7656903765690277 0.14917686498743343 0.7656903765690277 0.14917686498743343 0.45803172597283054
+0.7635983263598227 0.15256724828260237 0.7635983263598227 0.15256724828260237 0.46219912326335405
+0.7719665271966429 0.1457864816922645 0.7719665271966428 0.1457864816922645 0.45579685586969204
+0.7698744769874378 0.14917686498743343 0.7698744769874378 0.14917686498743343 0.4589297920135816
+0.7782426778242585 0.14239609839709555 0.7782426778242585 0.14239609839709555 0.45478396739631893
+0.7761506276150533 0.1457864816922645 0.7761506276150533 0.1457864816922645 0.45682860883905757
+0.7845188284518736 0.1390057151019266 0.7845188284518736 0.1390057151019266 0.4547765540796252
+0.7824267782426685 0.14239609839709555 0.7824267782426685 0.14239609839709555 0.4558187706012911
+0.790794979079489 0.13561533180675767 0.790794979079489 0.13561533180675767 0.4553583316444871
+0.7887029288702839 0.1390057151019266 0.7887029288702839 0.1390057151019266 0.4556062785518031
+0.7970711297071045 0.13222494851158872 0.7970711297071045 0.13222494851158872 0.45598386438569866
+0.7949790794978994 0.13561533180675767 0.7949790794978994 0.13561533180675767 0.4557284034847107
+0.8054393305439246 0.12544418192125084 0.8054393305439246 0.12544418192125084 0.45676305931647293
+0.8033472803347196 0.12883456521641978 0.8033472803347196 0.12883456521641978 0.4560721377087158
+0.8012552301255145 0.13222494851158872 0.8012552301255145 0.13222494851158872 0.4556344501171125
+0.8117154811715398 0.1220537986260819 0.8117154811715398 0.1220537986260819 0.45551703492590984
+0.8096234309623347 0.12544418192125084 0.8096234309623346 0.12544418192125084 0.45510527381874993
+0.8179916317991552 0.11866341533091296 0.8179916317991552 0.11866341533091296 0.4526736817667855
+0.81589958158995 0.1220537986260819 0.81589958158995 0.1220537986260819 0.4527177546117957
+0.8242677824267708 0.11527303203574402 0.8242677824267709 0.11527303203574402 0.448215529697838
+0.8221757322175655 0.11866341533091296 0.8221757322175655 0.11866341533091296 0.44876659604550523
+0.8305439330543862 0.11188264874057507 0.8305439330543862 0.11188264874057507 0.44240631452458673
+0.8284518828451812 0.11527303203574402 0.8284518828451812 0.11527303203574402 0.44337667250417395
+0.8368200836820013 0.10849226544540613 0.8368200836820013 0.10849226544540613 0.4357883373027676
+0.8347280334727962 0.11188264874057507 0.8347280334727962 0.11188264874057507 0.4369562691886882
+0.8430962343096167 0.10510188215023719 0.8430962343096166 0.10510188215023719 0.42914094995521507
+0.8410041841004114 0.10849226544540613 0.8410041841004113 0.10849226544540613 0.43017665795071114
+0.849372384937232 0.10171149885506825 0.849372384937232 0.10171149885506825 0.42339298741234793
+0.8472803347280268 0.10510188215023719 0.8472803347280268 0.10510188215023719 0.4239079227767654
+0.8556485355648475 0.09832111555989931 0.8556485355648477 0.09832111555989931 0.41948738891802556
+0.8535564853556422 0.10171149885506825 0.8535564853556422 0.10171149885506825 0.4191054589791961
+0.8619246861924628 0.09493073226473037 0.8619246861924629 0.09493073226473037 0.41821098108666804
+0.8598326359832579 0.09832111555989931 0.8598326359832579 0.09832111555989931 0.4166518507773144
+0.8702929693068153 0.08814993508200714 0.8702929693068153 0.08814993508200714 0.42317536519370685
+0.8682008368200781 0.09154034896956142 0.8682008368200781 0.09154034896956142 0.42002427129453695
+0.8661089163986131 0.09493079973269815 0.866108916398613 0.09493079973269815 0.41717879532625163
+0.8765709628928922 0.08475874257073983 0.876570962892892 0.08475874257073983 0.4290976315573191
+0.8744789004478579 0.08814943804970547 0.874478900447858 0.08814943804970547 0.42494268751067127
+0.88285008824377 0.0813663716900626 0.88285008824377 0.0813663716900626 0.43727012251696534
+0.880759548441936 0.08475595123042805 0.880759548441936 0.08475595123042805 0.4325094642442107
+0.8891287771047893 0.07797448101356065 0.8891287771047892 0.07797448101356065 0.4466963404916888
+0.8870400273963769 0.08136225445396021 0.8870400273963769 0.08136225445396021 0.44185480497862345
+0.8954099877258838 0.0745782702274247 0.8954099877258838 0.0745782702274247 0.4562025174935906
+0.8933197661204862 0.07796710966490751 0.8933197661204862 0.07796710966490751 0.45184935652023794
+0.9016933321875736 0.0711730239782117 0.9016933321875736 0.0711730239782117 0.4645747569174005
+0.8996015068510511 0.07456116296799552 0.8996015068510511 0.07456116296799552 0.46127008545648435
+0.9079778591078242 0.06776346244614752 0.9079778591078241 0.06776346244614752 0.47069350264993653
+0.9058836375062365 0.07114526432175806 0.9058836375062365 0.07114526432175806 0.4689207050675042
+0.9142714768845995 0.06436499697229023 0.9142714768845995 0.06436499697229024 0.4736398998553956
+0.9121716734105458 0.06773787205821626 0.9121716734105458 0.06773787205821626 0.4737661568674401
+0.918485639904327 0.06435211649023367 0.918485639904327 0.06435211649023366 0.4750169107696367
+0.9226089755154655 0.05762904773017258 0.9226089755154655 0.05762904773017258 0.46905374992288623
+0.920578525093125 0.06098033565089639 0.920578525093125 0.06098033565089639 0.47274390556204343
+0.9289022665792079 0.054217314932329785 0.9289022665792078 0.054217314932329785 0.46169193835906913
+0.926804044986359 0.057625203666688246 0.9268040449863592 0.05762520366668824 0.4676661564642326
+0.9331097304007807 0.054153900603401146 0.9331097304007807 0.054153900603401146 0.45806034843492444
+0.9352011251186735 0.050765293930491735 0.9352011251186735 0.050765293930491735 0.4499700612227934
+0.9414331606040648 0.04735380450208273 0.9414331606040648 0.04735380450208273 0.4344170302875828
+0.939386786668892 0.050741654191408504 0.939386786668892 0.050741654191408504 0.4443301340028826
+0.9475928130782638 0.04386901962334935 0.9475928130782637 0.04386901962334935 0.41545567526749455
+0.9455452710713019 0.04724336561133597 0.9455452710713018 0.04724336561133597 0.42689414583273416
+0.9538663238864037 0.04049747954012852 0.9538663238864037 0.04049747954012852 0.39385414089513754
+0.9516274727803239 0.04381424794716565 0.9516274727803239 0.04381424794716565 0.40672851569637863
+0.9579613628907057 0.04008911690803496 0.9579613628907057 0.04008911690803496 0.38313827649330395
+0.9599785178636719 0.0367726274087321 0.9599785178636718 0.0367726274087321 0.37005204064842007
+0.9633750379517336 0.036453979361230085 0.9633750379517336 0.036453979361230085 0.36071060679704803
+0.966220673343435 0.033818704641341846 0.966220673343435 0.033818704641341846 0.34726633780134925
+0.9700457062645593 0.032795652142404944 0.9700457062645593 0.032795652142404944 0.335188921347137
+0.9725852074566393 0.029865398089330298 0.9725852074566392 0.0298653980893303 0.3222375334740138
+0.9763846585413857 0.027929234604397828 0.9763846585413857 0.02792923460439783 0.3091448650161359
+0.9798392432494063 0.025886247442037165 0.9798392432494064 0.02588624744203716 0.29736367305718486
+0.9830000231623858 0.023824958602901597 0.9830000231623858 0.023824958602901597 0.28714444424222324
+0.9862022542119415 0.021287957727949322 0.9862022542119416 0.021287957727949322 0.27693308919908516
+0.9895770951170841 0.019007113946567296 0.9895770951170842 0.019007113946567292 0.26835661392031745
+0.9931209805765783 0.016902121606349945 0.9931209805765783 0.016902121606349945 0.26146593868912665
+0.020788400110375582 0.9932280039037248 0.020788400110375582 0.9932280039037248 0.064219074314822
+0.022830743090744503 0.9898961319542019 0.022830743090744506 0.989896131954202 0.06596502024809253
+0.025045145419323997 0.986500270603719 0.025045145419324 0.986500270603719 0.06819313732598235
+0.027224409054030195 0.9830822090075924 0.0272244090540302 0.9830822090075922 0.07077212030291624
+0.02937513342502582 0.9796614967350917 0.02937513342502582 0.9796614967350917 0.07363931424012693
+0.03152784228912959 0.9762663089376064 0.03152784228912959 0.9762663089376064 0.07672811104389952
+0.0337023266509363 0.9728777462026125 0.0337023266509363 0.9728777462026125 0.07999244678694796
+0.03575192482581719 0.9694300445984161 0.03575192482581719 0.9694300445984162 0.0833276221038765
+0.03783049031764414 0.9659876718792839 0.037830490317644135 0.9659876718792839 0.08671675352391185
+0.03996768141249714 0.9627329734305137 0.03996768141249713 0.9627329734305138 0.08998631267595146
+0.04215793870534118 0.9594444058029781 0.04215793870534118 0.9594444058029782 0.09323105564828936
+0.04399523237148299 0.9557480642478527 0.043995232371483 0.9557480642478529 0.09642179277057769
+0.04651586880717929 0.9522808938424371 0.04651586880717929 0.9522808938424371 0.09955612226416895
+0.04867204506880039 0.9491065866047677 0.0486720450688004 0.9491065866047678 0.10214232647027356
+0.050788954117640374 0.9432557471766261 0.050788954117640374 0.9432557471766261 0.10553275652467746
+0.05058366816550211 0.9466165029945847 0.0505836681655021 0.9466165029945847 0.10405578351549319
+0.054141962482199914 0.9372153554035539 0.054141962482199914 0.9372153554035539 0.10853112847682146
+0.054032681579417985 0.9412918519522651 0.054032681579417985 0.941291851952265 0.10733956559171172
+0.05769769794094868 0.9311255285574928 0.05769769794094868 0.9311255285574928 0.11040571892235494
+0.057560505800349916 0.9352301497708231 0.057560505800349916 0.9352301497708231 0.10982154211637192
+0.061460123895445404 0.9291486691826903 0.06146012389544541 0.9291486691826903 0.1110856737312029
+0.06423540743879863 0.9263640858170564 0.06423540743879863 0.9263640858170564 0.11119858847969745
+0.0642922822892819 0.9225207858719761 0.0642922822892819 0.9225207858719761 0.11078211029190956
+0.0677311541285454 0.916331759293277 0.0677311541285454 0.916331759293277 0.1091617847965388
+0.06768780592393302 0.9204060698964606 0.06768780592393302 0.9204060698964606 0.1102577073585056
+0.0711623332694214 0.9100656799272484 0.0711623332694214 0.9100656799272483 0.10615954532699502
+0.0711173468153861 0.9142779027183047 0.0711173468153861 0.9142779027183047 0.10793569695443617
+0.07455776174935708 0.9037710182092127 0.07455776174935708 0.9037710182092127 0.10190460352252183
+0.07454257516781711 0.9079358971932607 0.07454257516781711 0.9079358971932606 0.10422069684830441
+0.07794782032932997 0.8975334710191033 0.07794782032932997 0.8975334710191033 0.09663209617661238
+0.0779360417238388 0.9017024421886758 0.07793604172383882 0.9017024421886758 0.09940653490452166
+0.0813690754888234 0.8912454165430109 0.0813690754888234 0.8912454165430109 0.09052411306475482
+0.0813383985787854 0.8954755118908516 0.0813383985787854 0.8954755118908516 0.09366813515386292
+0.08476260577651923 0.8849471765253095 0.08476260577651923 0.8849471765253095 0.08398767388590243
+0.08476286196758699 0.889144751161223 0.08476286196758699 0.889144751161223 0.08722463457254816
+0.08815186670573825 0.8786633126663639 0.08815186670573825 0.8786633126663638 0.0774753412206093
+0.0881552574925814 0.8828487068520677 0.0881552574925814 0.8828487068520677 0.08060833680201575
+0.09154023310537929 0.8723862874242295 0.09154023310537929 0.8723862874242295 0.07150328310528244
+0.09154096886405749 0.8765701269401317 0.09154096886405749 0.8765701269401317 0.07428456938191332
+0.09492808083397397 0.8702991634119321 0.09492808083397397 0.8702991634119321 0.06879939537341445
+0.09831251657411766 0.8640305746436718 0.09831251657411766 0.8640305746436718 0.0647185696305817
+0.0983122925700455 0.8682163883018881 0.09831229257004549 0.868216388301888 0.06654766560208236
+0.10170363331933656 0.8577539729374074 0.10170363331933656 0.8577539729374074 0.06249263149560175
+0.10169777085376969 0.8619465802249012 0.10169777085376967 0.8619465802249012 0.06339296153319772
+0.10509743043222525 0.851471923502655 0.10509743043222523 0.851471923502655 0.06231797138225953
+0.10509254886426049 0.8556626799713288 0.10509254886426049 0.8556626799713288 0.06224095508894293
+0.10849040498324874 0.8451919804247772 0.10849040498324873 0.8451919804247773 0.06402803756965268
+0.10848753725406073 0.8493800636162289 0.10848753725406073 0.8493800636162289 0.0631050787123477
+0.11188208666984643 0.8389136709515328 0.11188208666984643 0.8389136709515327 0.06716761930235343
+0.11188110165158562 0.8430997996848947 0.11188110165158562 0.8430997996848947 0.06564720474285736
+0.11527277218020741 0.8326365256038892 0.11527277218020741 0.8326365256038892 0.07116865300323276
+0.11527236068258027 0.8368214714840705 0.11527236068258027 0.8368214714840704 0.0693297659327785
+0.11866334526521677 0.8263599449696359 0.11866334526521678 0.8263599449696359 0.07549962754689611
+0.11866316321943092 0.8305442213950261 0.11866316321943092 0.8305442213950261 0.07359028868374039
+0.12205379628059435 0.8200836904460567 0.12205379628059433 0.8200836904460566 0.07973810694865104
+0.12205378972783329 0.8242678069171243 0.1220537897278333 0.8242678069171242 0.07794987266098348
+0.12544415210922352 0.8138075793527833 0.12544415210922352 0.8138075793527833 0.08358625825310813
+0.12544408068258706 0.8179917777753882 0.12544408068258706 0.8179917777753882 0.08205168104220957
+0.1288344978504255 0.8117156026838833 0.12883449785042547 0.8117156026838833 0.08565954160968786
+0.13222491957299334 0.8054393883357299 0.13222491957299334 0.8054393883357299 0.08864109814275635
+0.13222485708987525 0.8096236107480763 0.13222485708987522 0.8096236107480763 0.0876905474420935
+0.1356153201764013 0.7991631992844268 0.1356153201764013 0.7991631992844268 0.09095047297063373
+0.13561529260112595 0.8033473427873142 0.13561529260112595 0.8033473427873142 0.09036380692624126
+0.1390057127064946 0.7928870329873855 0.13900571270649456 0.7928870329873855 0.09261138093621739
+0.1390057060988976 0.7970711424227642 0.1390057060988976 0.7970711424227642 0.09236885983921715
+0.14239609710518036 0.7866108807376252 0.14239609710518034 0.7866108807376252 0.09370154873458049
+0.14239609309941592 0.7907949870364431 0.14239609309941592 0.7907949870364431 0.09375454896857405
+0.1457864810359134 0.7803347292930661 0.1457864810359134 0.7803347292930661 0.09433802213658558
+0.14578647904364342 0.7845188333447021 0.14578647904364342 0.7845188333447021 0.09461465401911519
+0.1491768647176198 0.7740585779519286 0.1491768647176198 0.7740585779519286 0.09466269724351993
+0.1491768639204286 0.778242679927815 0.1491768639204286 0.778242679927815 0.09507372706953748
+0.15256724818767356 0.7677824269657751 0.15256724818767356 0.7677824269657751 0.09482791078336485
+0.152567247912329 0.7719665279111713 0.152567247912329 0.7719665279111713 0.09527334936221053
+0.1559576315480353 0.76150627620623 0.1559576315480353 0.76150627620623 0.094982508887058
+0.15595763146283678 0.765690376778958 0.15595763146283678 0.765690376778958 0.09535886805977932
+0.15934801486455044 0.7552301255377909 0.15934801486455044 0.7552301255377909 0.0952594288722024
+0.1593480148407146 0.7594142259968293 0.1593480148407146 0.7594142259968293 0.09546728704646339
+0.16273839815912916 0.7531380753274893 0.16273839815912916 0.7531380753274893 0.09571734440878892
+0.16612878146065532 0.7468619246925332 0.16612878146065532 0.7468619246925332 0.09620287949220434
+0.16612878145263985 0.7510460251300574 0.16612878145263985 0.7510460251300574 0.09610335006933456
+0.16951916475782178 0.740585774060435 0.16951916475782178 0.740585774060435 0.09699025019400155
+0.16951916475589182 0.7447698744846 0.16951916475589182 0.7447698744846 0.09654662413565686
+0.1729095480535866 0.7343096234318024 0.1729095480535866 0.7343096234318024 0.0981198262262518
+0.17290954805352765 0.7384937238528692 0.17290954805352765 0.7384937238528692 0.09728935174191909
+0.1762999313488324 0.7280334728037058 0.1762999313488324 0.7280334728037058 0.09961068862039962
+0.17629993134900013 0.732217573223236 0.17629993134900013 0.732217573223236 0.09837103956417914
+0.17969031464397892 0.7217573221758565 0.17969031464397892 0.7217573221758565 0.10146697700103409
+0.17969031464406937 0.7259414225946498 0.17969031464406937 0.7259414225946498 0.09981471686342482
+0.1830806979391296 0.715481171548153 0.1830806979391296 0.715481171548153 0.10368412710518769
+0.18308069793916162 0.7196652719666742 0.18308069793916162 0.7196652719666742 0.10163183538755215
+0.18647108123430053 0.7133891213389489 0.18647108123430053 0.7133891213389489 0.10382629743244016
+0.1898614645294696 0.7112970711297398 0.1898614645294696 0.7112970711297398 0.10390692683566798
+0.19325184782463703 0.7092050209205277 0.19325184782463703 0.7092050209205277 0.10396338326649472
+0.1966422311198002 0.7071129707113085 0.1966422311198002 0.7071129707113085 0.10403694759921299
+0.20003261123614102 0.7050209161328137 0.20003261123614102 0.7050209161328137 0.1041702672444529
+0.2034209579180114 0.7029274956912407 0.20342095791801143 0.7029274956912407 0.10440601513012492
+0.20680944642381127 0.696651744596437 0.20680944642381127 0.696651744596437 0.10754323011293614
+0.2102036892801574 0.6945631084762475 0.2102036892801574 0.6945631084762475 0.10810967551759511
+0.22006203154196968 0.6808803732859777 0.22006203154196968 0.6808803732859777 0.11624202182674308
+0.2209891914841774 0.6779284516458387 0.22098919148417737 0.6779284516458387 0.1183414761851446
+0.2252944262499531 0.6699039365646481 0.22529442624995308 0.6699039365646481 0.12393089903164768
+0.22788444279380168 0.667291700436886 0.22788444279380168 0.667291700436886 0.12552243090428686
+0.23058583505943137 0.664675958925937 0.2305858350594314 0.6646759589259369 0.12706646286012838
+0.23556012446870775 0.655810171261004 0.23556012446870775 0.6558101712610042 0.13293664505244193
+0.23832207415250248 0.6532789576009888 0.23832207415250248 0.6532789576009889 0.13414564201321907
+0.24101222350277438 0.6507785813231202 0.24101222350277438 0.6507785813231202 0.13525646142274772
+0.24371254274232002 0.6482815128302537 0.24371254274232 0.6482815128302537 0.13627006807749384
+0.24610818036680845 0.6451745617882231 0.24610818036680843 0.6451745617882231 0.13776608562519851
+0.24938265954755062 0.6433549507951248 0.2493826595475506 0.6433549507951248 0.13775132413375948
+0.23338786796423025 0.6620716491707177 0.23338786796423025 0.6620716491707177 0.1285230843070774
+0.2361746883688823 0.6594880279950991 0.2361746883688823 0.6594880279950991 0.12988999960553474
+0.22339712949840412 0.67616613928946 0.2233971294984041 0.6761661392894601 0.11932324437653317
+0.22599831617099567 0.673622779092984 0.22599831617099567 0.673622779092984 0.12090111001311286
+0.2136026279403278 0.6883365068617231 0.2136026279403278 0.688336506861723 0.11181506685037286
+0.2136217936275107 0.6924813608700185 0.2136217936275107 0.6924813608700185 0.10884055901922508
+0.21971559428961862 0.6842839188890293 0.21971559428961865 0.6842839188890294 0.11370585716614219
+0.22209971965064734 0.6827541139853094 0.22209971965064734 0.6827541139853094 0.11455223086026625
+0.21695736625529233 0.686422658226419 0.21695736625529236 0.686422658226419 0.11257819598349482
+0.20680598456524257 0.7008336766570915 0.20680598456524257 0.7008336766570915 0.104780670937602
+0.2522917499367412 0.6408480345259564 0.2522917499367412 0.6408480345259564 0.1383154309400576
+0.2582936415395218 0.625891300458105 0.2582936415395218 0.6258913004581049 0.14856386500135157
+0.26125688397954594 0.6234380676190927 0.26125688397954594 0.6234380676190927 0.1491706142303191
+0.2636173906302474 0.6175481850903976 0.2636173906302474 0.6175481850903976 0.15460088669206706
+0.2641845763573047 0.6210120267568425 0.2641845763573047 0.6210120267568425 0.14981950508185451
+0.2740528136696759 0.5979078429642253 0.2740528136696759 0.5979078429642253 0.17878382928483472
+0.26605970474791457 0.6117532026778867 0.26605970474791457 0.6117532026778867 0.16082971260925158
+0.2689898249031334 0.6094398568326704 0.26898982490313333 0.6094398568326705 0.16206466153620727
+0.27151417468874267 0.6037005105069752 0.27151417468874267 0.6037005105069752 0.1697402647942137
+0.27190113158104173 0.6071275976726884 0.27190113158104173 0.6071275976726884 0.16348564049038525
+0.2744389019226998 0.6013916994641654 0.2744389019226998 0.6013916994641654 0.17167288271451853
+0.26654015324477504 0.6151896734870906 0.26654015324477504 0.6151896734870906 0.1554953277278545
+0.2544334221623793 0.638253310631712 0.25443342216237935 0.638253310631712 0.13924048562378058
+0.25582005505180466 0.6320995163666756 0.25582005505180466 0.6320995163666757 0.14391698102893488
+0.2568175766382642 0.635659199378175 0.25681757663826416 0.6356591993781749 0.14008968373737937
+0.2589092001202812 0.6294919903232639 0.25890920012028124 0.629491990323264 0.1444097810584527
+0.42792710759410163 0.40285637259721274 0.42792710759410163 0.4028563725972127 0.5725388640785712
+0.42292049161761947 0.40330184113069306 0.42292049161761947 0.40330184113069306 0.5618191957742095
+0.42594812661350484 0.40450090405409483 0.42594812661350484 0.40450090405409483 0.5810042614665166
+0.4199405451467795 0.4029407278079121 0.41994054514677953 0.4029407278079122 0.5480756760276271
+0.41737534083933525 0.4031028989874279 0.41737534083933525 0.40310289898742796 0.538095989081776
+0.42168238071510544 0.4050362658457675 0.42168238071510544 0.40503626584576746 0.5698996454715032
+0.4156086915325726 0.4049029045485053 0.4156086915325727 0.4049029045485053 0.5406396776346756
+0.4122492502893848 0.40319241463726535 0.4122492502893848 0.40319241463726535 0.5136814607865903
+0.4094734138104523 0.40472106829857024 0.4094734138104523 0.40472106829857024 0.5056579083311495
+0.405617237085196 0.403611843625364 0.4056172370851959 0.403611843625364 0.4785126275486263
+0.4023118831601763 0.40411783942059254 0.4023118831601763 0.40411783942059254 0.460172516686418
+0.40707309901162425 0.4064928525413059 0.40707309901162425 0.4064928525413059 0.49842299425805325
+0.396280839152396 0.4046595812137565 0.396280839152396 0.4046595812137565 0.4241647348642224
+0.4001169000896597 0.4060506093126626 0.4001169000896598 0.4060506093126626 0.45188026199019565
+0.38614452656358783 0.4077741060383206 0.38614452656358783 0.40777410603832054 0.3632133284555485
+0.3931655851897471 0.40702724261656636 0.3931655851897471 0.4070272426165663 0.4080811522589417
+0.3892626249059975 0.40761918420631527 0.38926262490599756 0.4076191842063153 0.3831120864939815
+0.38418658100412995 0.40962592377480467 0.3841865810041299 0.4096259237748047 0.35114343956316546
+0.37814318460973745 0.41080894433634424 0.37814318460973745 0.41080894433634424 0.3139206667504341
+0.3817145477673695 0.411648242284715 0.3817145477673695 0.411648242284715 0.33496941570088046
+0.3754769649576275 0.41308615109515284 0.3754769649576275 0.41308615109515284 0.29672525146170387
+0.3688654567784924 0.4147976214705215 0.3688654567784924 0.4147976214705215 0.26033986451921304
+0.37259075694208826 0.4155271863907147 0.37259075694208826 0.4155271863907147 0.27815262739950497
+0.36618948381093674 0.41736103128125435 0.36618948381093674 0.4173610312812544 0.2450566805982948
+0.35968239678706215 0.4195172078495346 0.35968239678706215 0.41951720784953467 0.218420907581133
+0.3635849644104136 0.4199904105715376 0.3635849644104136 0.4199904105715376 0.23146265353012022
+0.3570468423194577 0.4222704866153129 0.3570468423194577 0.4222704866153129 0.20927618851890353
+0.3497975803873051 0.4246169668773796 0.3497975803873051 0.4246169668773795 0.19645015915087669
+0.35432839629060076 0.425231170100565 0.35432839629060076 0.42523117010056494 0.20318254628183305
+0.347974578283629 0.4279354017411034 0.347974578283629 0.4279354017411034 0.19800496360433137
+0.3421727839813999 0.4304729074365155 0.3421727839813999 0.4304729074365155 0.2016277058943544
+0.34030348480435035 0.4329713047273169 0.3403034848043504 0.4329713047273169 0.20837465258422397
+0.34581227405230086 0.4308463259285799 0.34581227405230086 0.4308463259285799 0.2019353793457492
+0.33831591779984294 0.4355663228601166 0.33831591779984294 0.4355663228601166 0.21699554232931514
+0.33315904610290986 0.4381860645234754 0.33315904610290986 0.4381860645234754 0.23028166667134722
+0.33141584360186643 0.44092633417582056 0.33141584360186643 0.44092633417582056 0.24182287046998038
+0.33692647208008075 0.43817668039564706 0.3369264720800808 0.438176680395647 0.22659198939719613
+0.3297086507100489 0.4437120861171722 0.3297086507100489 0.4437120861171722 0.25402458278492296
+0.324357907409394 0.4466401343079984 0.324357907409394 0.4466401343079984 0.27059942717208735
+0.32276349240227414 0.4495770970423482 0.32276349240227414 0.4495770970423482 0.28333537964774264
+0.32806627067943467 0.446542285532937 0.32806627067943467 0.446542285532937 0.26661816154745993
+0.3211969716482914 0.4525630108279998 0.3211969716482914 0.4525630108279998 0.2960125078581312
+0.3159286574368949 0.45584010891601623 0.3159286574368949 0.4558401089160162 0.3114389958150192
+0.3144698248146749 0.4589546847759272 0.3144698248146749 0.4589546847759272 0.32306036321885784
+0.3196829878880197 0.4555744546300117 0.3196829878880197 0.4555744546300117 0.30836137851959977
+0.31306353919259683 0.462106398743809 0.31306353919259683 0.462106398743809 0.3341049395743712
+0.3079245034554185 0.4657500145246198 0.3079245034554185 0.4657500145246198 0.3460406559774389
+0.3066127318129631 0.4690580838431804 0.30661273181296306 0.4690580838431804 0.3552624821255335
+0.311715340562109 0.46528657166074433 0.311715340562109 0.46528657166074433 0.3444469854345264
+0.3053962435880014 0.4723790033060346 0.3053962435880014 0.4723790033060346 0.3635650129858698
+0.300449710899059 0.4764363991853728 0.300449710899059 0.4764363991853728 0.37089224696262657
+0.29920693209490445 0.47984250068840256 0.29920693209490445 0.47984250068840256 0.3767086159683284
+0.3042195206659856 0.47573602459023095 0.3042195206659856 0.47573602459023095 0.37095591683749035
+0.29794835534392383 0.4832600908565365 0.2979483553439239 0.4832600908565365 0.38145075969744663
+0.2938465363427345 0.48809179018362936 0.2938465363427345 0.4880917901836294 0.38437696995332593
+0.29294266918937345 0.49162858979220386 0.29294266918937345 0.49162858979220386 0.3866941876012305
+0.29721068605045103 0.48686502886804917 0.29721068605045103 0.48686502886804917 0.38560233051781206
+0.29184689286756743 0.4950319015871131 0.29184689286756743 0.495031901587113 0.3876899186212015
+0.2880235003776729 0.5045898537991523 0.28802350037767294 0.5045898537991523 0.3843521866273236
+0.29069610739672386 0.49841432737792885 0.29069610739672386 0.49841432737792885 0.3876236663187113
+0.2894430267446885 0.5014579526897777 0.2894430267446885 0.5014579526897777 0.3864819444712411
+0.2870525524732276 0.5079366636544337 0.28705255247322764 0.5079366636544337 0.3818538808726608
+0.28600964032678855 0.5112567524779804 0.2860096403267885 0.5112567524779804 0.3784754201608315
+0.28505717683702053 0.5146420492279562 0.28505717683702053 0.5146420492279562 0.3743312079838799
+0.28414161965294693 0.5180993164124189 0.28414161965294693 0.5180993164124189 0.3693662533023408
+0.28314502475097636 0.5215707469629496 0.28314502475097636 0.5215707469629497 0.3636196732955254
+0.2831418583243725 0.5246419776182154 0.2831418583243725 0.5246419776182154 0.35852973222613543
+0.2812592928863044 0.527636490051251 0.2812592928863044 0.527636490051251 0.3519896473774113
+0.2807289444493949 0.5316715189940323 0.28072894444939495 0.5316715189940323 0.3437258023431238
+0.28013045778638673 0.5354711182957607 0.28013045778638673 0.5354711182957607 0.33529870187367067
+0.2795528657993543 0.5391911206856737 0.2795528657993543 0.5391911206856737 0.3265556055714696
+0.2788503104336306 0.542698614694983 0.2788503104336306 0.542698614694983 0.3178346346526378
+0.2779333697838433 0.5461500405021795 0.2779333697838433 0.5461500405021794 0.3089052778833794
+0.27775668286806904 0.5498224977726002 0.27775668286806904 0.5498224977726002 0.29944479426910847
+0.2774744490699629 0.5535209060229954 0.2774744490699628 0.5535209060229954 0.28962136690375934
+0.27717990821440947 0.5572185169115907 0.27717990821440947 0.5572185169115907 0.2796293944306638
+0.2768795429944557 0.5609100289795099 0.2768795429944557 0.56091002897951 0.26957488201003926
+0.27659346423303105 0.5646323156888639 0.27659346423303105 0.5646323156888639 0.25943361519250946
+0.27637895327712403 0.568424012335256 0.2763789532771241 0.5684240123352559 0.24916023506382132
+0.27626728051120686 0.5722480889198959 0.2762672805112069 0.5722480889198959 0.2388812919414471
+0.27631785866379927 0.5760031106397501 0.27631785866379927 0.57600311063975 0.22887053690288806
+0.27636902406454145 0.5796971246490081 0.2763690240645414 0.579697124649008 0.21924553192809768
+0.2763568210698245 0.5834486313722228 0.27635682106982445 0.5834486313722228 0.2097852114289456
+0.27632956577421736 0.5872937212761026 0.27632956577421736 0.5872937212761026 0.20045285386855727
+0.2758621269829553 0.5917479242331173 0.2758621269829553 0.5917479242331173 0.19056688376030834
+0.2768804312475402 0.5955086529866056 0.2768804312475402 0.5955086529866057 0.1815481465866364
+0.4300892112372041 0.4014385949308492 0.43008921123720417 0.4014385949308492 0.5647407418389657
+0.4304996669909956 0.4041315656218397 0.4304996669909956 0.4041315656218397 0.5882803116605746
+0.43120090977810444 0.39725041315555326 0.43120090977810444 0.39725041315555326 0.5342626543731228
+0.4322294696966261 0.4000727963151944 0.43222946969662607 0.4000727963151944 0.5559463483261516
+0.43241058450920233 0.39231061409442697 0.43241058450920233 0.39231061409442697 0.5037628350566791
+0.43327614008952997 0.39537625896303225 0.43327614008952997 0.39537625896303225 0.5226961910328963
+0.43444901431419425 0.39082625442320595 0.43444901431419425 0.39082625442320595 0.4961263233966461
+0.4357293478078172 0.3821325597041129 0.4357293478078172 0.3821325597041129 0.46018385064799894
+0.4350588255655005 0.3885323649070304 0.4350588255655005 0.3885323649070304 0.4849611427814642
+0.43555942738356 0.38542328941618365 0.43555942738356007 0.3854232894161837 0.4719069555080773
+0.4395025013536926 0.3719878458452207 0.43950250135369273 0.37198784584522077 0.43785710748554285
+0.43991749096767246 0.3753859843940308 0.43991749096767246 0.3753859843940308 0.44438505161268543
+0.4387377680989535 0.3775937224616627 0.4387377680989535 0.3775937224616627 0.44866759828474556
+0.4392937779361646 0.3809056757770985 0.4392937779361646 0.3809056757770985 0.4576900071588011
+0.44375287630573196 0.364713145508365 0.443752876305732 0.364713145508365 0.43061941197850573
+0.4457795872315779 0.3624044058664609 0.4457795872315779 0.36240440586646094 0.4296375693330408
+0.443645052158305 0.36774316378365457 0.443645052158305 0.36774316378365457 0.434367686448838
+0.44326675814442384 0.3710753829930181 0.4432667581444239 0.37107538299301807 0.4388774712202279
+0.4525610756665481 0.3518696200396718 0.4525610756665481 0.3518696200396718 0.4209299898490126
+0.45133533963142053 0.35505779450594877 0.45133533963142053 0.35505779450594877 0.4243186554142359
+0.4501988334078344 0.35820843255276386 0.45019883340783445 0.35820843255276386 0.4273883476753828
+0.4492810025448881 0.36137014467594714 0.44928100254488806 0.36137014467594714 0.4304045691568403
+0.4605043741330324 0.34214330068817106 0.4605043741330324 0.34214330068817106 0.40410418999868414
+0.4589143048206205 0.34536441289773673 0.4589143048206205 0.34536441289773673 0.41033383562385756
+0.45750712615684797 0.34854770295462206 0.457507126156848 0.34854770295462206 0.4156641158057895
+0.45623738941231706 0.3516962551345803 0.4562373894123171 0.3516962551345803 0.4202930009310311
+0.47499445685065017 0.32912601878485526 0.47499445685065017 0.32912601878485526 0.34892915602746827
+0.47283617354443747 0.33282777475717645 0.47283617354443747 0.33282777475717645 0.3629517770782575
+0.4701206430365943 0.3354408119311433 0.4701206430365943 0.33544081193114333 0.37528202433641783
+0.47276212351551267 0.33625251369689907 0.47276212351551267 0.33625251369689907 0.3696623386096625
+0.46583554447024883 0.33899317016749475 0.46583554447024883 0.3389931701674947 0.39107279202969997
+0.46856156349927663 0.3380807693154817 0.46856156349927663 0.3380807693154817 0.38380405729347405
+0.46464528865372967 0.3422315558109824 0.4646452886537297 0.34223155581098247 0.39866730881578544
+0.4828829517754036 0.3229671702496904 0.4828829517754036 0.3229671702496904 0.30639590010997847
+0.48093543942868916 0.3260435247831852 0.48093543942868916 0.3260435247831852 0.3206919809877618
+0.486804809900001 0.3231425479849353 0.486804809900001 0.3231425479849353 0.2889318003131984
+0.4788891073305529 0.32917289234141855 0.47888910733055295 0.32917289234141855 0.33508270439108245
+0.49976674804733356 0.3128131305648865 0.49976674804733356 0.3128131305648865 0.20334958814675438
+0.4976526478653195 0.31586738909545775 0.49765264786531954 0.31586738909545775 0.2195343328327883
+0.49274949405984864 0.3185036600130533 0.49274949405984864 0.3185036600130533 0.25028933247017365
+0.4956620072268002 0.3179302065271336 0.4956620072268002 0.3179302065271336 0.23375209103714023
+0.4906365484702317 0.32155065190569193 0.4906365484702317 0.32155065190569193 0.2669302638343209
+0.5135593383309905 0.3060728424293168 0.5135593383309905 0.3060728424293168 0.12909122717378008
+0.5077462517095174 0.3079020549631452 0.5077462517095174 0.3079020549631452 0.15547611995111885
+0.5110929323834742 0.3088227898702069 0.5110929323834742 0.3088227898702069 0.1414032349128751
+0.5054017726259288 0.31070379248852265 0.5054017726259287 0.3107037924885226 0.17054163031418204
+0.5030614288090007 0.3135153010634211 0.5030614288090006 0.3135153010634211 0.186636973284808
+0.5284525582439646 0.30015532654450194 0.5284525582439646 0.3001553265445019 0.12356480941117236
+0.5222234402359871 0.30163940702667585 0.5222234402359871 0.30163940702667585 0.11135538968983484
+0.5256566695203274 0.3027819321527437 0.5256566695203274 0.3027819321527437 0.11802047936564906
+0.5195037193209484 0.3043726917685702 0.5195037193209484 0.30437269176857024 0.11429688995251021
+0.516927042360562 0.3070800553216256 0.516927042360562 0.3070800553216256 0.12073406298203294
+0.5446708185875223 0.2953363276735634 0.5446708185875223 0.2953363276735634 0.2066460224286463
+0.5373886592449407 0.2967851721439156 0.5373886592449407 0.2967851721439156 0.16317695652165065
+0.5411571829956209 0.2972566865650591 0.5411571829956209 0.29725668656505905 0.1876894028093454
+0.5346478822430781 0.2990892528969894 0.5346478822430781 0.29908925289698945 0.15130990628074167
+0.5318238184267624 0.30151427042927276 0.5318238184267624 0.30151427042927276 0.14013330244110114
+0.5541423341368996 0.2931527281980388 0.5541423341368996 0.2931527281980388 0.2648777571339073
+0.5510056212826214 0.2951675352268846 0.5510056212826214 0.2951675352268846 0.24891636931840347
+0.5478911181325129 0.2971904807068893 0.5478911181325129 0.2971904807068893 0.23260425450248556
+0.5574201726109517 0.29485420436931353 0.5574201726109517 0.2948542043693135 0.2917113105944915
+0.5606911657681648 0.29646694930939654 0.5606911657681648 0.29646694930939654 0.3185589984195523
+0.564591955827918 0.2976714650186712 0.5645919558279181 0.2976714650186712 0.34874932462699826
+0.5683665108562442 0.29676693004653854 0.5683665108562442 0.29676693004653854 0.370394162316717
+0.5717120676500722 0.29585549636930447 0.5717120676500721 0.29585549636930447 0.3884045308010205
+0.4374937591620401 0.41300070684895523 0.4374937591620401 0.41300070684895523 0.6954623970244088
+0.6257420584817511 0.25471008889158786 0.6257420584817511 0.25471008889158786 0.5021106185858396
+0.6221904878393938 0.25592024184412004 0.6221904878393937 0.25592024184412004 0.4940967095283469
+0.6186760086455317 0.2571267317771392 0.6186760086455317 0.25712673177713924 0.4855472451720247
+0.6151933592571993 0.2583593561211766 0.6151933592571993 0.2583593561211766 0.47655190567402034
+0.6117515121187755 0.25964765979427834 0.6117515121187757 0.25964765979427834 0.46725735841173094
+0.608350856292616 0.2609850859574769 0.608350856292616 0.2609850859574769 0.45769459520480266
+0.6049858416442591 0.2623527078783012 0.6049858416442592 0.2623527078783012 0.4478369845910008
+0.5881258647167589 0.26947283177366627 0.5881258647167589 0.26947283177366627 0.39185096679514103
+0.6016495715049515 0.26376208955492825 0.6016495715049515 0.26376208955492825 0.43772232434887054
+0.5915749440483035 0.2680558902919035 0.5915749440483035 0.2680558902919035 0.40440843970733303
+0.5949690813114678 0.26662695481399395 0.5949690813114678 0.26662695481399395 0.4161644724210101
+0.5983200114134991 0.2651926552186486 0.5983200114134991 0.2651926552186486 0.42722214777862755
+0.5838002730017231 0.27457945152953744 0.5838002730017231 0.27457945152953744 0.3855301035201069
+0.5765617614227696 0.28762518679810956 0.5765617614227696 0.2876251867981096 0.38899014840030793
+0.5757286549890286 0.2911605732857851 0.5757286549890286 0.2911605732857851 0.39629894397820004
+0.5749820269545486 0.29486949485745995 0.5749820269545486 0.29486949485745995 0.404882414212068
+0.5792034001006344 0.279779155341551 0.5792034001006344 0.279779155341551 0.3777206923214073
+0.5781655527813208 0.2841721847691092 0.5781655527813206 0.2841721847691092 0.38648809426770947
+0.5794799763688989 0.287423237032446 0.5794799763688989 0.287423237032446 0.4045989641118509
+0.5829412049538637 0.27828961982606415 0.5829412049538637 0.2782896198260642 0.39282536084644226
+0.5874217553848976 0.27321370133309697 0.5874217553848976 0.273213701333097 0.399651208166698
+0.6293966387614979 0.2534348224871345 0.6293966387614979 0.2534348224871345 0.5095992242627992
+0.6333817062834377 0.2517222759261727 0.6333817062834378 0.25172227592617263 0.5163172298717602
+0.6373145629297928 0.2511851987408456 0.6373145629297928 0.2511851987408456 0.5245428342319648
+0.6408841281226405 0.25040563547665184 0.6408841281226404 0.2504056354766519 0.530593435333381
+0.64434368209527 0.24974178128197103 0.64434368209527 0.24974178128197103 0.5360008015619274
+0.6478560261124449 0.24909269717549254 0.6478560261124447 0.24909269717549254 0.5408606163054208
+0.6793069940787998 0.22026591477461444 0.6793069940787998 0.22026591477461444 0.5162326467598685
+0.6744110089109334 0.22283125101891532 0.6744110089109334 0.2228312510189153 0.516947653983083
+0.6773882935803899 0.22235236053613683 0.6773882935803899 0.22235236053613683 0.5182144543515579
+0.6699385815915653 0.2258769735807604 0.6699385815915653 0.2258769735807604 0.518941231324916
+0.6681225701643547 0.22896455242141375 0.6681225701643547 0.22896455242141375 0.5232809644587492
+0.6631686468870573 0.23295885109214998 0.6631686468870573 0.23295885109215 0.5266232926159703
+0.6618612714414732 0.23654150397172247 0.6618612714414732 0.23654150397172247 0.5326236401869733
+0.6514584229334244 0.2485643340294444 0.6514584229334243 0.24856433402944436 0.5454103904363118
+0.6571226527699361 0.24062507571664252 0.6571226527699361 0.24062507571664252 0.5358578577131509
+0.6559324546917549 0.24411132110789058 0.6559324546917549 0.2441113211078906 0.5418637129379862
+0.6547480703158263 0.24764304368934675 0.6547480703158263 0.24764304368934678 0.5480226778435883
+0.66057521608153 0.24006593565992582 0.66057521608153 0.24006593565992582 0.5386305035720717
+0.6667501760523827 0.23248607157750545 0.6667501760523827 0.23248607157750545 0.5290023113922522
+0.6732505679154275 0.22583577488041257 0.6732505679154275 0.22583577488041254 0.5214901893121868
+0.6822013472078492 0.22101106494436742 0.6822013472078492 0.22101106494436742 0.519145211034929
+0.6903727944764969 0.2102216519829555 0.6903727944764969 0.21022165198295548 0.5095316814683346
+0.6945606694558385 0.21020376430020427 0.6945606694558385 0.2102037643002043 0.5123595669908227
+0.6882793099735336 0.21366289305574138 0.6882793099735336 0.21366289305574138 0.512513472409802
+0.6862654873451983 0.21708164215735049 0.6862654873451984 0.21708164215735049 0.5158414077876864
+0.6846500565175363 0.21997664748738593 0.6846500565175363 0.21997664748738593 0.5189602904166047
+0.7154811715480781 0.1830806979391013 0.7154811715480781 0.1830806979391013 0.49806736395633816
+0.7133891213385654 0.18647108123405057 0.7133891213385654 0.18647108123405057 0.5008223225978216
+0.7112970711260562 0.18986146452705147 0.7112970711260562 0.18986146452705147 0.5032167979948095
+0.7092050209151703 0.1932518478212033 0.7092050209151703 0.1932518478212033 0.5053260229390889
+0.7071129707082285 0.1966422311179058 0.7071129707082285 0.1966422311179058 0.5072398026107124
+0.7050219108691009 0.20003162270579922 0.7050219108691009 0.20003162270579922 0.5090574355029194
+0.7029311022929347 0.2034196419573939 0.7029311022929347 0.2034196419573939 0.5108821565789904
+0.700839785244087 0.2068057771369035 0.700839785244087 0.20680577713690348 0.5128161208938674
+0.6987476404176847 0.21018982755998608 0.6987476404176847 0.21018982755998608 0.5149554338138036
+0.7217573221757193 0.17969031464395283 0.7217573221757193 0.17969031464395283 0.49740482198961505
+0.7196652719665083 0.18308069793911688 0.7196652719665083 0.18308069793911688 0.5007751035430102
+0.7280334728033355 0.17629993134878488 0.7280334728033355 0.17629993134878488 0.49551050981604344
+0.72594142259413 0.1796903146439535 0.72594142259413 0.1796903146439535 0.49958527060947117
+0.734309623430951 0.17290954805361602 0.734309623430951 0.17290954805361602 0.49237625585668704
+0.7322175732217459 0.17629993134878497 0.7322175732217459 0.17629993134878497 0.497148565536544
+0.7405857740585663 0.16951916475844708 0.7405857740585663 0.16951916475844708 0.488148012825377
+0.7384937238493611 0.17290954805361602 0.7384937238493611 0.17290954805361602 0.4935083175386044
+0.7468619246861817 0.16612878146327814 0.7468619246861817 0.16612878146327814 0.4831164465791859
+0.7447698744769767 0.16951916475844708 0.7447698744769767 0.16951916475844708 0.488860054327434
+0.7552301255230022 0.15934801487294029 0.7552301255230022 0.15934801487294029 0.47194813092274046
+0.7531380753137972 0.1627383981681092 0.7531380753137972 0.1627383981681092 0.4776831365780108
+0.7510460251045918 0.16612878146327814 0.7510460251045918 0.16612878146327814 0.4835321666699575
+0.7615062761506176 0.15595763157777132 0.7615062761506176 0.15595763157777132 0.4670041978114949
+0.7594142259414125 0.15934801487294026 0.7594142259414126 0.15934801487294026 0.47230424119006603
+0.7677824267782328 0.15256724828260237 0.7677824267782328 0.15256724828260237 0.4628383164921884
+0.7656903765690277 0.15595763157777132 0.7656903765690277 0.15595763157777132 0.46741758718227183
+0.7740585774058482 0.14917686498743343 0.7740585774058482 0.14917686498743343 0.45970690933032793
+0.7719665271966429 0.15256724828260237 0.7719665271966428 0.15256724828260237 0.46336434561083556
+0.7803347280334635 0.1457864816922645 0.7803347280334635 0.1457864816922645 0.4576670478855101
+0.7782426778242585 0.14917686498743343 0.7782426778242585 0.14917686498743343 0.4603209984328009
+0.7866108786610786 0.14239609839709555 0.7866108786610786 0.14239609839709555 0.4565568643100903
+0.7845188284518736 0.1457864816922645 0.7845188284518736 0.1457864816922645 0.4582583279889592
+0.7928870292886943 0.1390057151019266 0.7928870292886944 0.1390057151019266 0.4560189915204564
+0.790794979079489 0.14239609839709555 0.790794979079489 0.14239609839709555 0.4569395156626889
+0.7991631799163095 0.13561533180675767 0.7991631799163095 0.13561533180675767 0.45556284101785155
+0.7970711297071045 0.1390057151019266 0.7970711297071045 0.1390057151019266 0.45595985527423794
+0.8075313807531297 0.12883456521641978 0.8075313807531296 0.12883456521641978 0.454782084248388
+0.8054393305439246 0.13222494851158872 0.8054393305439246 0.13222494851158872 0.45465237958975374
+0.8033472803347195 0.13561533180675767 0.8033472803347195 0.13561533180675767 0.4548200212510117
+0.813807531380745 0.12544418192125087 0.813807531380745 0.12544418192125087 0.452732580261403
+0.8117154811715399 0.1288345652164198 0.8117154811715398 0.1288345652164198 0.4528025230856026
+0.8200836820083603 0.1220537986260819 0.8200836820083603 0.1220537986260819 0.4492323995575304
+0.8179916317991552 0.12544418192125084 0.8179916317991552 0.12544418192125084 0.4496690596406225
+0.8263598326359759 0.11866341533091296 0.8263598326359759 0.11866341533091296 0.4442731336288613
+0.8242677824267708 0.1220537986260819 0.8242677824267709 0.1220537986260819 0.4451214032691057
+0.8326359832635912 0.11527303203574402 0.8326359832635912 0.11527303203574402 0.4381242324505317
+0.8305439330543862 0.11866341533091296 0.8305439330543862 0.11866341533091296 0.4392912424180136
+0.8389121338912063 0.11188264874057507 0.8389121338912063 0.11188264874057507 0.43133262733701533
+0.8368200836820012 0.11527303203574402 0.8368200836820012 0.11527303203574402 0.43259099615353874
+0.8451882845188217 0.10849226544540613 0.8451882845188216 0.10849226544540613 0.4246817361555964
+0.8430962343096164 0.11188264874057507 0.8430962343096163 0.11188264874057507 0.4256950701421947
+0.8514644351464371 0.10510188215023719 0.8514644351464371 0.10510188215023719 0.4191020545662539
+0.849372384937232 0.10849226544540613 0.849372384937232 0.10849226544540613 0.41947530675761396
+0.8577405857740527 0.10171149885506825 0.8577405857740527 0.10171149885506825 0.4155318642343256
+0.8556485355648474 0.10510188215023719 0.8556485355648474 0.10510188215023719 0.4148849101929848
+0.864016809868358 0.09832115405153267 0.8640168098683582 0.09832115405153267 0.41474223136488103
+0.8619247070761445 0.1017115098115025 0.8619247070761445 0.1017115098115025 0.41279611972283076
+0.872386751278762 0.09154012699590731 0.8723867512787621 0.09154012699590731 0.4209163241209101
+0.8702945829946359 0.09493051691293104 0.8702945829946359 0.09493051691293104 0.4171649893434271
+0.8682027695142591 0.0983208016958142 0.868202769514259 0.0983208016958142 0.4138187539035849
+0.8786680302597444 0.08814631244164066 0.8786680302597444 0.08814631244164066 0.42762074754016205
+0.8765756585600019 0.09153693608937967 0.8765756585600019 0.09153693608937967 0.42277888383868856
+0.8849512779204124 0.08474940225410175 0.8849512779204124 0.08474940225410175 0.43659062456113856
+0.8828601889812421 0.08813766556937576 0.8828601889812421 0.08813766556937576 0.43108197610462434
+0.8912309593291474 0.08135357649471484 0.8912309593291475 0.08135357649471485 0.4467745638865885
+0.889141020718713 0.0847377811353589 0.889141020718713 0.0847377811353589 0.4411484555008931
+0.8975090919135056 0.07794884122089461 0.8975090919135056 0.07794884122089461 0.4569651842118248
+0.8954156057418694 0.0813337962784995 0.8954156057418693 0.0813337962784995 0.4518077963513882
+0.9037918943728908 0.07453586862701084 0.9037918943728908 0.07453586862701084 0.4659262536735806
+0.9016922706857878 0.07791672229687037 0.9016922706857878 0.07791672229687037 0.461816890843399
+0.9100698122292871 0.07110740481844123 0.9100698122292871 0.07110740481844123 0.4725192613362001
+0.907974633399841 0.0744884991414198 0.907974633399841 0.0744884991414198 0.4699653169719262
+0.9163712163692576 0.06771582110358502 0.9163712163692576 0.06771582110358502 0.4758205588192546
+0.9142637244823842 0.07108359888152907 0.9142637244823842 0.07108359888152906 0.47519599763183695
+0.9206144186815813 0.0676992822333361 0.9206144186815813 0.0676992822333361 0.47672382597312796
+0.922713045863468 0.06435984115863146 0.9227130458634679 0.06435984115863146 0.47517491121341654
+0.9247460417778405 0.06100462346966834 0.9247460417778405 0.06100462346966834 0.4721578447456161
+0.9310111797730783 0.05758338764206816 0.9310111797730783 0.05758338764206816 0.4648736442908575
+0.9289199520761592 0.061035930100065645 0.9289199520761592 0.061035930100065645 0.47026849018824723
+0.9351916508888486 0.05746988528477312 0.9351916508888486 0.05746988528477313 0.4606485573555799
+0.9373528191441992 0.05407863036998148 0.9373528191441992 0.054078630369981485 0.4529999788757026
+0.9435412927134709 0.05073890406380613 0.9435412927134709 0.05073890406380612 0.43753492841767727
+0.9415216602745401 0.05412586685687282 0.9415216602745401 0.05412586685687282 0.4469183971894725
+0.9476341644543458 0.0504580128552089 0.9476341644543459 0.0504580128552089 0.42925519456941447
+0.9495826267945123 0.04709647737051551 0.9495826267945123 0.04709647737051551 0.41837508543351215
+0.9530268267329932 0.046793241016162904 0.9530268267329932 0.046793241016162904 0.4099947582419448
+0.9559390889236634 0.044159742877822095 0.9559390889236636 0.044159742877822095 0.3975304235475204
+0.9598511305141666 0.04298961634591951 0.9598511305141667 0.04298961634591951 0.3850483559106207
+0.9623978829111028 0.040018644138823056 0.9623978829111027 0.040018644138823056 0.3718786524259902
+0.9662452511231913 0.03813050583675868 0.9662452511231913 0.03813050583675868 0.3575788516352883
+0.969673286997612 0.03610257612134937 0.969673286997612 0.03610257612134937 0.34405610355964883
+0.9729884407942243 0.03398682388731738 0.9729884407942243 0.03398682388731738 0.33098521207387455
+0.9762837304554998 0.03184791725202485 0.9762837304554998 0.03184791725202485 0.31835595026147745
+0.9797401403601516 0.029739757538027562 0.9797401403601516 0.029739757538027562 0.3061903976083649
+0.983096230830371 0.027636923571634327 0.9830962308303711 0.027636923571634327 0.2951725989014331
+0.9864312522820334 0.025380050989337655 0.9864312522820334 0.025380050989337655 0.28494236588602845
+0.9897186102455251 0.023201485890068495 0.9897186102455251 0.023201485890068495 0.2762020494659623
+0.9931225142728635 0.021042158368035593 0.9931225142728636 0.021042158368035593 0.2687778972330929
+0.025018871278659233 0.9932403453544443 0.025018871278659233 0.9932403453544442 0.06589011245910015
+0.027119001757092535 0.9898584347538764 0.027119001757092535 0.9898584347538764 0.06778638892788776
+0.02925452083276949 0.986453230791238 0.029254520832769495 0.986453230791238 0.07009701447540871
+0.03138075313807559 0.9830480835241554 0.03138075313807559 0.9830480835241554 0.07274401333369535
+0.03349999613917185 0.9796530318248567 0.03349999613917185 0.9796530318248567 0.07566215796544802
+0.035618415645678796 0.9762581949507921 0.035618415645678796 0.9762581949507921 0.07879258450512401
+0.03772695053843069 0.9728580258800998 0.03772695053843069 0.9728580258801 0.08206491506312885
+0.03984482531729184 0.9694500620912553 0.03984482531729184 0.9694500620912553 0.08542722007485375
+0.0419045813768926 0.9660860396720887 0.0419045813768926 0.9660860396720886 0.0887457167666942
+0.044021460214112344 0.962735927255331 0.044021460214112344 0.962735927255331 0.09203407499981898
+0.04612606264089486 0.959295895547629 0.04612606264089486 0.959295895547629 0.09526107688489606
+0.04826068864111078 0.9558749931061375 0.04826068864111078 0.9558749931061375 0.09832524847188961
+0.050471831062570645 0.9524882685997368 0.050471831062570645 0.9524882685997368 0.10117750844481209
+0.052508031879819304 0.9492192707094943 0.052508031879819304 0.9492192707094943 0.1036401068329877
+0.05431998512588291 0.9454605286889507 0.054319985125882916 0.9454605286889508 0.10594252079126842
+0.05739827326414937 0.9392322181262815 0.05739827326414937 0.9392322181262817 0.10890381572741847
+0.05702313941356143 0.9425999716657094 0.05702313941356143 0.9425999716657094 0.10778455315510369
+0.06102436150834523 0.9333523937690994 0.06102436150834523 0.9333523937690994 0.11072677795380294
+0.06086580445144258 0.9373531664785948 0.06086580445144258 0.9373531664785947 0.11011027954321233
+0.06384688653622367 0.9318326977473936 0.06384688653622367 0.9318326977473937 0.111166898018574
+0.06494109115900362 0.9293715831194737 0.06494109115900362 0.9293715831194737 0.11130725927722282
+0.06777233732253951 0.9278207123537946 0.06777233732253951 0.9278207123537946 0.11134537328251769
+0.06770458105523061 0.9242881068685439 0.0677045810552306 0.9242881068685439 0.11097601832531112
+0.07107835864760564 0.9184903885131068 0.07107835864760564 0.9184903885131067 0.10937713507540503
+0.07091226471824597 0.9223728435093039 0.07091226471824597 0.922372843509304 0.11040520299251157
+0.07443215059731034 0.9164796585332466 0.07443215059731034 0.9164796585332465 0.10810722991701031
+0.07452171318334336 0.9121292190302599 0.07452171318334334 0.9121292190302599 0.10628082134951185
+0.07792187872367688 0.9058436383259422 0.07792187872367688 0.9058436383259422 0.10196187484065301
+0.07791074224377055 0.9099373174105502 0.07791074224377055 0.9099373174105502 0.10424825844961098
+0.08131013701192343 0.8996981072716652 0.08131013701192343 0.8996981072716652 0.09668562155575823
+0.08128449505547491 0.9038372259328833 0.08128449505547491 0.9038372259328833 0.09947353125387658
+0.08474990551736346 0.8933647282340504 0.08474990551736346 0.8933647282340506 0.09047889126484134
+0.08472434863144403 0.8976304943958269 0.08472434863144403 0.8976304943958269 0.09369944188519463
+0.0881609779578396 0.8870352377062546 0.0881609779578396 0.8870352377062546 0.08386234865703618
+0.08816755432196471 0.8912313331846416 0.08816755432196471 0.8912313331846416 0.08717105191421144
+0.09154365609590764 0.8807545874844762 0.09154365609590764 0.8807545874844763 0.07733093157034848
+0.091552266184515 0.8849349170799994 0.091552266184515 0.8849349170799993 0.08055519765756823
+0.09492941875862637 0.8744847418708265 0.09492941875862637 0.8744847418708265 0.07136888688123876
+0.09493155410719675 0.8786642637443254 0.09493155410719677 0.8786642637443255 0.07426586519686439
+0.09831590080689531 0.8724026979958861 0.09831590080689533 0.8724026979958861 0.06884507026498067
+0.10169266027049563 0.8661397001108874 0.10169266027049563 0.8661397001108874 0.06485505496173284
+0.10169387261968961 0.8703313662119746 0.10169387261968961 0.8703313662119746 0.06683278302132895
+0.10508485145634883 0.8598574323305597 0.10508485145634883 0.8598574323305597 0.06273368763640115
+0.10507431343551842 0.8640570160502469 0.10507431343551842 0.8640570160502469 0.06380085348379667
+0.10848181594946645 0.8535706959599877 0.10848181594946645 0.8535706959599877 0.06267230516452617
+0.1084728490777338 0.8577645320878053 0.1084728490777338 0.8577645320878053 0.06277548355511725
+0.11187865963570537 0.8472876938004252 0.11187865963570535 0.8472876938004251 0.06448742736279854
+0.11187216347211675 0.8514787239090902 0.11187216347211675 0.8514787239090902 0.06375508032036016
+0.11527143861122353 0.841007434004152 0.11527143861122353 0.841007434004152 0.06771334003751363
+0.11526907091050866 0.8451952465885806 0.11526907091050866 0.8451952465885807 0.06638807572854516
+0.11866177904875409 0.8347292034230445 0.11866177904875409 0.8347292034230446 0.07178228101464468
+0.11866029750252594 0.8389148978706155 0.11866029750252594 0.8389148978706155 0.07013526408924943
+0.12205375992361774 0.8284519560412903 0.12205375992361774 0.8284519560412903 0.07617019789343127
+0.1220522507380764 0.8326365186055987 0.12205225073807639 0.8326365186055987 0.07444329723546449
+0.1254438520731919 0.8221761349015845 0.1254438520731919 0.8221761349015845 0.08045959527679326
+0.12544313897015932 0.8263608270748319 0.12544313897015932 0.8263608270748319 0.07884089978612509
+0.12883435386012865 0.8158999435310066 0.12883435386012865 0.8158999435310065 0.0843600753454965
+0.12883394203193843 0.820084670250088 0.12883394203193843 0.820084670250088 0.08298042741646759
+0.13222467587652978 0.8138080556234012 0.13222467587652978 0.8138080556234012 0.08662964855655651
+0.1356152072982706 0.8075315721388737 0.1356152072982706 0.8075315721388737 0.08965703530274939
+0.1356149708272724 0.8117160334474104 0.1356149708272724 0.8117160334474104 0.08883240657516368
+0.13900568087679652 0.8012552731050083 0.13900568087679652 0.8012552731050083 0.09201436187388445
+0.1390055823155389 0.8054394739476924 0.13900558231553892 0.8054394739476924 0.09154066084038287
+0.14239607739817942 0.7949791086808253 0.14239607739817942 0.7949791086808253 0.09371940106335828
+0.14239601911711106 0.7991632807325156 0.14239601911711106 0.7991632807325156 0.09358039500264587
+0.14578647141615833 0.7887029470865762 0.14578647141615833 0.7887029470865762 0.09484051163222564
+0.14578644372929714 0.7928870936260971 0.14578644372929714 0.7928870936260971 0.09499243560327529
+0.14917686091803792 0.7824267860530559 0.14917686091803792 0.7824267860530559 0.09548239861535245
+0.1491768501191387 0.7866109064303412 0.1491768501191387 0.7866109064303412 0.0958593252719356
+0.15256724688404535 0.7761506302504788 0.15256724688404535 0.7761506302504788 0.09577281238350695
+0.1525672431922018 0.7803347373992726 0.1525672431922018 0.7803347373992726 0.09629226294110492
+0.15595763114594152 0.7698744777573263 0.15595763114594152 0.7698744777573263 0.09584983150430505
+0.15595763000643528 0.7740585801388203 0.15595763000643528 0.7740585801388203 0.09641876056484901
+0.15934801475218136 0.7635983265622263 0.15934801475218133 0.7635983265622263 0.09585015413206417
+0.15934801443271873 0.7677824274965945 0.15934801443271873 0.7677824274965945 0.09637130876128658
+0.16273839813340904 0.7573221757827553 0.16273839813340904 0.7573221757827553 0.09589912375747899
+0.16273839803600035 0.7615062763334671 0.16273839803600035 0.7615062763334671 0.09627753266545452
+0.1661287814204235 0.7552301256232415 0.1661287814204235 0.7552301256232415 0.09625247413767625
+0.16951916474805462 0.7489539749260693 0.16951916474805462 0.7489539749260693 0.09639356460571837
+0.16951916471658457 0.7531380754349574 0.16951916471658457 0.7531380754349574 0.09650526966393237
+0.172909548053333 0.7426778242820585 0.172909548053333 0.7426778242820585 0.09677854934593265
+0.17290954805264516 0.7468619247432526 0.17290954805264516 0.7468619247432526 0.09656989248682801
+0.17629993134969538 0.7364016736461387 0.17629993134969538 0.7364016736461387 0.09746612874074283
+0.17629993135249541 0.7405857740821666 0.17629993135249541 0.7405857740821666 0.09688765219668082
+0.17969031464443538 0.7301255230145706 0.17969031464443538 0.7301255230145706 0.09849853528740583
+0.1796903146458825 0.7343096234388055 0.1796903146458825 0.7343096234388055 0.09751921534755857
+0.18308069793928905 0.7238493723855147 0.18308069793928905 0.7238493723855147 0.09990489340887622
+0.183080697939785 0.7280334728055565 0.183080697939785 0.7280334728055565 0.09851205164074062
+0.1864710812343372 0.7175732217574676 0.1864710812343372 0.7175732217574676 0.10170417868045094
+0.1864710812344781 0.7217573221762813 0.1864710812344781 0.7217573221762813 0.09990211369706085
+0.18986146452950517 0.7154811715482418 0.18986146452950517 0.7154811715482418 0.10171458037439667
+0.19325184782466734 0.713389121339007 0.19325184782466734 0.713389121339007 0.10170043189011459
+0.19664223111980958 0.7112970711297395 0.19664223111980958 0.7112970711297395 0.10170388770894843
+0.20003261441496797 0.7092050209205105 0.20003261441496797 0.7092050209205105 0.10176936321192225
+0.20342098354899427 0.7071111189027279 0.20342098354899427 0.7071111189027279 0.10194226829905818
+0.20680505812446137 0.7050152042583439 0.20680505812446137 0.7050152042583439 0.10226328243682974
+0.2101913229457343 0.6987429051071127 0.2101913229457343 0.6987429051071127 0.10532072523331297
+0.21358303396175574 0.6966585305746268 0.21358303396175574 0.6966585305746268 0.10604368566451412
+0.22255639639116015 0.6850485994665888 0.22255639639116015 0.6850485994665888 0.11289193001343727
+0.22358182370430185 0.6798990965521289 0.22358182370430188 0.6798990965521289 0.11652829732282076
+0.2248830677352534 0.6834089592666561 0.22488306773525338 0.6834089592666562 0.11389581440388659
+0.22866802201416714 0.6710109902502065 0.22866802201416717 0.6710109902502065 0.12251236640410414
+0.23136327295180648 0.6683889596229622 0.23136327295180648 0.6683889596229622 0.12410037636329428
+0.2340956542640373 0.665773251521978 0.2340956542640373 0.665773251521978 0.12562444172978715
+0.23893548331420122 0.6569230175956098 0.23893548331420122 0.6569230175956098 0.13115333341323368
+0.24166709950573048 0.6543734087545932 0.24166709950573048 0.6543734087545933 0.13230351085802347
+0.24443946923788484 0.6518316368152205 0.24443946923788484 0.6518316368152205 0.13331727796482049
+0.24702652392207913 0.649177153446526 0.2470265239220791 0.649177153446526 0.13433462367372354
+0.24965400754638464 0.6466305629069009 0.24965400754638464 0.6466305629069008 0.13517292534895795
+0.2526636061478347 0.6443229928420718 0.2526636061478347 0.6443229928420718 0.13551572011947488
+0.2368469986842153 0.6631678626222014 0.2368469986842153 0.6631678626222014 0.12705907139590766
+0.23959077530304249 0.6605778163251469 0.23959077530304249 0.6605778163251469 0.1283833659749659
+0.22654705989470808 0.6774193344217252 0.2265470598947081 0.6774193344217253 0.11803831222939269
+0.2293527305900402 0.6747510054230842 0.22935273059004022 0.6747510054230842 0.11972252964338918
+0.21712212539010345 0.6903739180467985 0.21712212539010345 0.6903739180467986 0.10976458531715187
+0.2170154341623477 0.6945798399865093 0.21701543416234773 0.6945798399865093 0.10695442053711333
+0.22086825865007348 0.6880926995962995 0.22086825865007345 0.6880926995962994 0.11098292981567315
+0.2101850710558412 0.7029201321784319 0.2101850710558412 0.7029201321784319 0.10276370826651894
+0.25534291817370053 0.6417626887085923 0.25534291817370053 0.6417626887085923 0.1360781123399549
+0.26187339956532296 0.6269749455719038 0.261873399565323 0.6269749455719039 0.14489241055645222
+0.26480054906782674 0.624480446580817 0.26480054906782674 0.624480446580817 0.14540458205849147
+0.26708693485048346 0.6186096764084702 0.26708693485048346 0.6186096764084702 0.15053796765483088
+0.2676892833219964 0.6220280709847233 0.2676892833219964 0.6220280709847233 0.1459602512650625
+0.2773687279337264 0.5990553845280682 0.2773687279337264 0.5990553845280681 0.17387656269954135
+0.26944016184230624 0.6128488480079471 0.2694401618423062 0.6128488480079471 0.15651092347880358
+0.2723131457210249 0.6105359461141465 0.2723131457210249 0.6105359461141465 0.15766456060646517
+0.2748093356203481 0.6048442632145993 0.2748093356203481 0.6048442632145993 0.16505712707287226
+0.2751811716527462 0.6082441701424233 0.2751811716527462 0.6082441701424233 0.15896785073306416
+0.2777440117135928 0.6025788906248573 0.2777440117135928 0.6025788906248573 0.16678374220652079
+0.26996452057347436 0.6162283065320283 0.26996452057347436 0.6162283065320283 0.15136003872058942
+0.2578922095145959 0.6391764080059431 0.2578922095145959 0.6391764080059431 0.13665044011828972
+0.25967792757769265 0.6330542659756009 0.25967792757769265 0.633054265975601 0.14058178276986696
+0.26056828052811404 0.6365846264717546 0.26056828052811404 0.6365846264717546 0.13711212804328396
+0.26258256469198044 0.6304882762417531 0.26258256469198044 0.6304882762417531 0.14098109626736222
+0.25602927688679084 0.6452747490736385 0.25602927688679084 0.6452747490736385 0.13336925720381124
+0.42898984589970013 0.40618705022164725 0.42898984589970013 0.4061870502216473 0.604102037641259
+0.42418486455886284 0.4060222369404307 0.4241848645588629 0.40602223694043077 0.5875310701287225
+0.42662267794204156 0.40714562726635195 0.42662267794204156 0.40714562726635195 0.6058725709803053
+0.41909886215083325 0.40589630470963495 0.4190988621508333 0.405896304709635 0.5646435697679051
+0.42216223138947356 0.40758959986515947 0.42216223138947356 0.40758959986515947 0.5916694813093711
+0.41693105418375614 0.4077053759713573 0.41693105418375614 0.4077053759713573 0.565329417575943
+0.4130617211017568 0.4068847990388094 0.4130617211017568 0.4068847990388095 0.537842834273066
+0.40971288481653584 0.40787428015254384 0.40971288481653584 0.40787428015254384 0.5215816534055263
+0.40391902411818564 0.4070726025462888 0.4039190241181857 0.4070726025462888 0.4800775953355406
+0.4068550787805686 0.40910017713026237 0.40685507878056854 0.4091001771302624 0.5072787891213338
+0.39707720457929796 0.40785680330522045 0.3970772045792979 0.4078568033052204 0.4355637265489963
+0.40090522349671204 0.4093427372879912 0.40090522349671204 0.4093427372879912 0.46564976737576796
+0.39500709975502935 0.41000351344401986 0.39500709975502935 0.41000351344401986 0.4243912073439356
+0.3875303363780373 0.4103607221630221 0.3875303363780373 0.4103607221630221 0.37292301149460405
+0.39173697981119204 0.41095488984079187 0.39173697981119204 0.4109548898407919 0.40226370430853725
+0.3851089935801774 0.4125968404727545 0.3851089935801774 0.4125968404727545 0.356554175499165
+0.3792873284503718 0.4143872656162056 0.37928732845037183 0.4143872656162056 0.31790046213684536
+0.38273632873201163 0.41426793193139555 0.38273632873201163 0.4142679319313956 0.33982665437930387
+0.3760327263961117 0.4163288377791439 0.3760327263961117 0.4163288377791439 0.29615063907772815
+0.36996624184632265 0.4180017580298213 0.3699662418463227 0.41800175802982137 0.2615315252200099
+0.3736082093897945 0.418710175257087 0.3736082093897945 0.418710175257087 0.2792360897450316
+0.3674328703027945 0.4205128694912542 0.3674328703027945 0.42051286949125416 0.24637507542734968
+0.3609710247176743 0.42274094381563593 0.3609710247176743 0.42274094381563593 0.21987421247100072
+0.3648371463249203 0.4231813167790603 0.3648371463249203 0.4231813167790603 0.23249800378333554
+0.3583896434236775 0.42555604473027026 0.3583896434236775 0.42555604473027026 0.21128724171824118
+0.35182797448083963 0.4282949145901978 0.35182797448083963 0.4282949145901978 0.2012307612169805
+0.3558872999220836 0.42843829555513885 0.3558872999220836 0.42843829555513885 0.2063932789938088
+0.34958659087547944 0.4311560179718044 0.34958659087547944 0.4311560179718044 0.20308889382740267
+0.3435469793793735 0.4335597931420575 0.3435469793793735 0.43355979314205756 0.2082180965275355
+0.34125622699206426 0.43543032664903153 0.34125622699206426 0.4354303266490315 0.2144456634187887
+0.3471369934542403 0.4341205203437339 0.3471369934542403 0.4341205203437339 0.2083843933988596
+0.34059845989057685 0.4380257611953741 0.34059845989057685 0.4380257611953741 0.22279483500623196
+0.3351152524213648 0.44097257367885273 0.3351152524213648 0.44097257367885273 0.2381226397644749
+0.3333748974034871 0.44370374863088635 0.3333748974034871 0.44370374863088635 0.2501011346195143
+0.3388151799495268 0.4409645462547542 0.33881517994952676 0.4409645462547542 0.23428081024977046
+0.3317129031948664 0.446440495945531 0.3317129031948664 0.446440495945531 0.2624593019580895
+0.32648750105201507 0.44942948484049766 0.3264875010520151 0.44942948484049766 0.27945365044844417
+0.32493270588868767 0.452365346664493 0.32493270588868767 0.452365346664493 0.2923359280380882
+0.3301666394294394 0.44924999193895904 0.3301666394294394 0.44924999193895904 0.2751760070898271
+0.32341432424730887 0.45531419545202795 0.32341432424730887 0.45531419545202795 0.30492548385659446
+0.31822119905787793 0.45862325172228213 0.318221199057878 0.4586232517222822 0.32029468650936493
+0.3168145924181994 0.4617112591031134 0.31681459241819937 0.4617112591031134 0.3317004378735567
+0.32194610005180496 0.4582949864926602 0.32194610005180496 0.45829498649266026 0.3171393816398362
+0.3154686770477018 0.46482849200833637 0.3154686770477018 0.46482849200833637 0.34243884274107766
+0.31040540096589364 0.4685195310126203 0.31040540096589364 0.4685195310126203 0.3540729786107036
+0.3091631683871277 0.4717789789060687 0.3091631683871277 0.4717789789060687 0.3628252409212727
+0.3141574499156603 0.46799738972263666 0.3141574499156603 0.46799738972263666 0.35249079855260074
+0.307977487549677 0.4750689843391454 0.307977487549677 0.4750689843391454 0.3706605245770049
+0.30305736337935285 0.4791126294534573 0.3030573633793528 0.4791126294534573 0.3773335473506095
+0.3019205099112741 0.48250983051017715 0.3019205099112741 0.4825098305101772 0.3826582685768276
+0.3068354513848282 0.4783894708866989 0.3068354513848282 0.4783894708866989 0.37752096610737923
+0.3008755581778161 0.4859786041756774 0.300875558177816 0.48597860417567734 0.386991269182312
+0.2964291549696642 0.4904975816859126 0.2964291549696642 0.4904975816859127 0.38859942321884183
+0.2954898761238484 0.4940027578410794 0.2954898761238484 0.49400275784107933 0.3902411225266283
+0.30004976062763367 0.4895001837557905 0.3000497606276337 0.4895001837557906 0.390365078101208
+0.29438245289381093 0.49748727591145664 0.294382452893811 0.49748727591145664 0.39063409374641717
+0.29092937534790947 0.5038671505907706 0.29092937534790947 0.5038671505907706 0.3871757169935989
+0.29043954571766173 0.5067881232492366 0.2904395457176618 0.5067881232492367 0.3855522563709249
+0.29317335629633146 0.5013429388113452 0.29317335629633146 0.5013429388113452 0.3898902881472957
+0.28953414707452513 0.5100734366392267 0.28953414707452513 0.5100734366392267 0.3825554589269155
+0.2886025919790474 0.5134426524230737 0.2886025919790474 0.5134426524230737 0.3786465913276425
+0.287691586653128 0.516795001878691 0.287691586653128 0.516795001878691 0.3739775676522074
+0.28689190227384953 0.5201232915610656 0.2868919022738496 0.5201232915610657 0.36869365313825503
+0.2860414169941565 0.5235466659024955 0.2860414169941565 0.5235466659024955 0.3625064658644576
+0.2850001677678043 0.5269444901973445 0.2850001677678043 0.5269444901973445 0.3557394005581788
+0.2841662354435292 0.5302594293903804 0.2841662354435292 0.5302594293903803 0.34870058867342163
+0.2835386456917482 0.5338493280416944 0.2835386456917482 0.5338493280416944 0.34066091028601914
+0.2829663342069281 0.5375660660167066 0.2829663342069281 0.5375660660167066 0.3318474043619966
+0.28258673119359884 0.5416924395083749 0.28258673119359884 0.5416924395083749 0.3216498732966034
+0.2809383540945732 0.544838299936593 0.2809383540945732 0.544838299936593 0.3130235801156859
+0.28105971260263257 0.548036619134358 0.28105971260263257 0.5480366191343579 0.3047611784133409
+0.28080702923155976 0.5516936326060745 0.2808070292315597 0.5516936326060745 0.2948393794879243
+0.2805132451533058 0.5553905780978384 0.2805132451533057 0.5553905780978384 0.28461366922533
+0.28020911354791556 0.5590338034452162 0.2802091135479156 0.5590338034452164 0.27442004946105686
+0.2798584746062332 0.5626660935627045 0.2798584746062332 0.5626660935627045 0.2642353772932093
+0.27958495714344006 0.56634213186231 0.27958495714344006 0.56634213186231 0.2539627304881043
+0.2795131371485874 0.5700907879917992 0.27951313714858733 0.5700907879917992 0.24353143436693417
+0.27949849245850794 0.5738281475917196 0.27949849245850794 0.5738281475917196 0.23323714153879163
+0.27951687843893885 0.5775522080923037 0.27951687843893885 0.5775522080923037 0.2231644519803
+0.27953376852964235 0.5812902198590438 0.27953376852964235 0.5812902198590438 0.21333042230870555
+0.27956899413592895 0.5851060098998079 0.27956899413592895 0.5851060098998079 0.20362846887681293
+0.2796771409983873 0.5891115196066177 0.2796771409983873 0.5891115196066177 0.19386282312754663
+0.2799428179481677 0.5931409942352641 0.2799428179481677 0.593140994235264 0.18438229975277554
+0.280354461869902 0.5966912078176753 0.2803544618699019 0.5966912078176753 0.1763474902129133
+0.433957180540812 0.41566360802078356 0.433957180540812 0.41566360802078356 0.7259799691072625
+0.43328239574160526 0.4113680362411798 0.43328239574160526 0.4113680362411798 0.669063796775168
+0.43260051094098234 0.4068341841230895 0.43260051094098234 0.4068341841230895 0.6177998308432322
+0.432891627698269 0.4033415127594152 0.432891627698269 0.40334151275941516 0.5840852123940544
+0.43404537195031295 0.398672379575244 0.43404537195031295 0.398672379575244 0.5458911159353245
+0.4345140401523257 0.40138660753246364 0.4345140401523257 0.40138660753246364 0.5675565978205144
+0.4356413237414306 0.39390228569875463 0.43564132374143055 0.39390228569875463 0.5135555182311439
+0.4361476617415925 0.39724735943482536 0.4361476617415924 0.39724735943482536 0.5352097029618692
+0.4370004929927826 0.3910606975689348 0.4370004929927826 0.3910606975689348 0.4972288980851208
+0.4383587763676232 0.3934673754308173 0.4383587763676232 0.3934673754308173 0.5096749805459093
+0.4386703886145457 0.38462258699524493 0.4386703886145457 0.38462258699524493 0.46936543325983154
+0.43852985229344743 0.388417367249262 0.4385298522934474 0.38841736724926207 0.4844009976206473
+0.4427484366203193 0.37435729307250354 0.4427484366203193 0.3743572930725035 0.4440613423900525
+0.44204246341501374 0.37819506412253945 0.44204246341501374 0.3781950641225395 0.4515633900990271
+0.44137401825559974 0.38374336344252785 0.4413740182555998 0.38374336344252785 0.4662137657129391
+0.4424786144358206 0.38138743512983303 0.44247861443582065 0.38138743512983303 0.4593023889292861
+0.44656549691758496 0.3661071176653823 0.44656549691758496 0.3661071176653823 0.4343342434008915
+0.4487475171644396 0.36415070192358223 0.4487475171644396 0.36415070192358223 0.43319136151965953
+0.4471773070579879 0.3701921004085663 0.4471773070579879 0.37019210040856626 0.4400057581848841
+0.44626550045159036 0.3737596632116962 0.44626550045159036 0.3737596632116962 0.4447125833984032
+0.45505795401181925 0.35492073445935013 0.4550579540118193 0.35492073445935013 0.42450289169105876
+0.4535640772705777 0.35782954742576045 0.4535640772705776 0.35782954742576045 0.4278594000093788
+0.45245641401626 0.36096388421911785 0.4524564140162601 0.36096388421911785 0.4312234206677496
+0.451650527723705 0.3639675108162509 0.451650527723705 0.36396751081625084 0.4344255475960746
+0.4628794380232526 0.34535304156706553 0.46287943802325254 0.34535304156706553 0.4062742922701547
+0.46127983490674845 0.3484853078161865 0.46127983490674845 0.3484853078161865 0.41286332600686354
+0.4598427242042933 0.35158203143970823 0.45984272420429323 0.35158203143970823 0.41852572894392176
+0.45856540977339205 0.3547868299024257 0.45856540977339205 0.3547868299024257 0.42363511728131426
+0.47685633646643344 0.3323120942900908 0.4768563364664335 0.3323120942900908 0.34887144908609485
+0.4753910291351635 0.33549893999746055 0.47539102913516357 0.33549893999746055 0.36025057029952195
+0.4711660102046989 0.33876867407335326 0.4711660102046989 0.33876867407335326 0.37893783367748807
+0.474296761656669 0.3387263677253618 0.47429676165666906 0.3387263677253618 0.37025621534596714
+0.4687073404482332 0.3415270432219498 0.46870734044823326 0.34152704322194977 0.39000248027144796
+0.4667428540367349 0.34523254348857074 0.4667428540367348 0.34523254348857074 0.4004327424265592
+0.4846728891057156 0.3262999929284153 0.48467288910571554 0.3262999929284152 0.3050761877878622
+0.48281014032467456 0.32937551999759124 0.48281014032467456 0.32937551999759124 0.319628332562333
+0.48966460706031495 0.32483758945041824 0.48966460706031495 0.32483758945041824 0.2781298450531608
+0.4875932140534238 0.3263915511616579 0.4875932140534238 0.3263915511616579 0.2915016153618832
+0.48068721254081526 0.33246683460050686 0.48068721254081526 0.33246683460050686 0.3348954489699802
+0.5007165714164666 0.3164267403626136 0.5007165714164666 0.3164267403626136 0.20373597292808163
+0.49828063751048 0.31924397441812125 0.4982806375104801 0.31924397441812125 0.22182267426878124
+0.49510346976399794 0.3214920326962127 0.4951034697639979 0.3214920326962127 0.2432907095503389
+0.49281204968787556 0.32500312991269514 0.49281204968787556 0.32500312991269514 0.2622728130308905
+0.5144172310234569 0.30978156914648897 0.514417231023457 0.30978156914648897 0.13019428895973925
+0.5086850801288313 0.31158379643179335 0.5086850801288313 0.31158379643179335 0.15540311855154762
+0.5119842781120496 0.31249850030590914 0.5119842781120497 0.31249850030590914 0.14206900094474895
+0.5063273209467445 0.3143594676701382 0.5063273209467445 0.3143594676701382 0.170688981240904
+0.5039697796465569 0.3171604552355377 0.5039697796465569 0.31716045523553765 0.1871913725602583
+0.5290155692964587 0.3040345837366551 0.5290155692964587 0.3040345837366551 0.13085669327416627
+0.5229041071895975 0.3054572723008224 0.5229041071895973 0.3054572723008224 0.11598393008454234
+0.526270305840833 0.3066257570798366 0.526270305840833 0.3066257570798366 0.12439563721249654
+0.5202742832242581 0.30812931950573336 0.5202742832242581 0.30812931950573336 0.11781038564223388
+0.5177294736231887 0.3107905770710729 0.5177294736231887 0.3107905770710729 0.12328728204475455
+0.5447387867616102 0.2992400742062745 0.5447387867616102 0.2992400742062746 0.21568649738404874
+0.538175691319821 0.3003129880473453 0.5381756913198209 0.30031298804734524 0.17447576420169716
+0.541669658710387 0.30148691304632885 0.541669658710387 0.30148691304632885 0.19958729572655176
+0.5352081912178175 0.3027939491428176 0.5352081912178175 0.3027939491428176 0.16067320260203935
+0.5323480854260186 0.3053039944111191 0.5323480854260186 0.3053039944111191 0.14856879367829476
+0.5542624562579369 0.29690791368311314 0.5542624562579369 0.29690791368311314 0.2758905533117011
+0.5511412297932917 0.29896399363713194 0.5511412297932917 0.29896399363713194 0.25961876089246355
+0.5480406531811953 0.3010503992457038 0.5480406531811953 0.3010503992457038 0.24295749066100178
+0.5575116883778257 0.2985794757290588 0.5575116883778257 0.2985794757290588 0.3031592700377546
+0.5607882000545978 0.3001906399822133 0.5607882000545978 0.30019063998221324 0.3308223019165197
+0.5639545820026575 0.30200115084287116 0.5639545820026575 0.3020011508428712 0.3584757484390045
+0.5674472107552406 0.30056722991659846 0.5674472107552405 0.30056722991659846 0.377236350412441
+0.5708249439603161 0.299583098863809 0.5708249439603161 0.299583098863809 0.3957975521004717
+0.574195643663353 0.2986328679715069 0.574195643663353 0.2986328679715069 0.4135290952476956
+0.4369913062599884 0.4086759712888566 0.4369913062599884 0.4086759712888566 0.6406204818899667
+0.44114196821336044 0.4104912713984052 0.44114196821336044 0.4104912713984052 0.6587661502532437
+0.6284222346832901 0.2571836590062599 0.6284222346832901 0.2571836590062599 0.5157963849293993
+0.624808721526594 0.25840438019341977 0.624808721526594 0.25840438019341977 0.5082488860804033
+0.6212688335254049 0.2596038771333515 0.6212688335254049 0.2596038771333515 0.5002193755020733
+0.6177754741045921 0.26080910141792607 0.6177754741045921 0.26080910141792607 0.4917331871494485
+0.6143264319839025 0.26204047546529996 0.6143264319839025 0.2620404754652999 0.4828746537470466
+0.6109300816269345 0.2633273834261573 0.6109300816269344 0.2633273834261573 0.4737952318188294
+0.6075806398302613 0.26466224090730683 0.6075806398302613 0.2646622409073069 0.4645022093347431
+0.6042677211793968 0.26603082215232293 0.6042677211793968 0.26603082215232293 0.4549595177710974
+0.5909225013227853 0.2717894977273914 0.5909225013227853 0.2717894977273914 0.4123983029947728
+0.6009806385658328 0.267454041067154 0.6009806385658328 0.267454041067154 0.44521023481894234
+0.5943361373624442 0.2703508363609036 0.5943361373624442 0.2703508363609037 0.42413154041222717
+0.5976820415814286 0.26890147084344407 0.5976820415814287 0.26890147084344407 0.43501427757782896
+0.5866425097812112 0.27691203634140504 0.5866425097812112 0.27691203634140504 0.40739306420014204
+0.5786700275854182 0.290341580516138 0.5786700275854182 0.290341580516138 0.41029177233325603
+0.5781499772157424 0.2938304622315463 0.5781499772157424 0.29383046223154624 0.41974827686562594
+0.5775358651522916 0.2975797622577128 0.5775358651522916 0.2975797622577128 0.42977954090860065
+0.5820410913641907 0.2820275689198946 0.5820410913641907 0.2820275689198946 0.4003400433826063
+0.5820401081361727 0.28550082656704634 0.5820401081361727 0.2855008265670463 0.41199127173349087
+0.5820076683499615 0.289226989417013 0.5820076683499615 0.289226989417013 0.4248715535139011
+0.5858817762010899 0.2805433802594781 0.5858817762010898 0.2805433802594781 0.41540237096994265
+0.5903094427470658 0.2755433361411752 0.5903094427470658 0.2755433361411752 0.421114753722516
+0.6321745172764045 0.25589789660191486 0.6321745172764045 0.2558978966019149 0.5228932274800541
+0.6359975514538279 0.25481885282399314 0.635997551453828 0.25481885282399314 0.5298035010294401
+0.6395872819374869 0.2540495454720892 0.6395872819374869 0.2540495454720892 0.5361514227516673
+0.6431220883866225 0.25329604378957665 0.6431220883866225 0.25329604378957665 0.5416714455343171
+0.6466283451918688 0.25258513495304 0.6466283451918687 0.2525851349530401 0.5465420418660557
+0.6502964915009369 0.25186357994047626 0.6502964915009369 0.25186357994047626 0.5509720071346339
+0.6803619477996896 0.22385452064620986 0.6803619477996897 0.2238545206462099 0.5228382356350619
+0.676876849868768 0.22509760283148286 0.676876849868768 0.22509760283148286 0.5226659172735735
+0.6718689999658186 0.22884775910451724 0.6718689999658186 0.22884775910451724 0.5260212932667329
+0.6703683562852725 0.23216046452556074 0.6703683562852724 0.23216046452556074 0.5312226516593466
+0.6653844138531008 0.2360268003801943 0.6653844138531008 0.23602680038019433 0.5349272206921011
+0.6640457124670783 0.23956282378029872 0.6640457124670783 0.23956282378029872 0.5409846881845218
+0.6541225435763703 0.2514816730643864 0.6541225435763703 0.25148167306438646 0.5556241834914091
+0.659332596702973 0.24353412947134098 0.659332596702973 0.24353412947134098 0.5446198383874613
+0.6582761379909848 0.2468380400144684 0.6582761379909848 0.24683804001446844 0.5504799580386468
+0.6569905025437053 0.24981177027859336 0.6569905025437053 0.24981177027859336 0.5553632476294772
+0.6627106088727165 0.2430587030835015 0.6627106088727165 0.2430587030835015 0.5470501363386941
+0.6689619385269004 0.23561967727911537 0.6689619385269004 0.23561967727911534 0.5369658375730416
+0.675490641653754 0.22844666214507647 0.675490641653754 0.22844666214507647 0.5277294232564876
+0.6846625955148775 0.2234677200863948 0.6846625955148776 0.2234677200863948 0.5245559779399422
+0.6924452057071462 0.2136130846539417 0.6924452057071462 0.2136130846539417 0.5150691393892352
+0.6966430899858711 0.2135738319761182 0.6966430899858711 0.2135738319761182 0.5173798744306964
+0.6902849613284315 0.21710682414118576 0.6902849613284315 0.21710682414118576 0.5182683280058287
+0.6880867211107828 0.22082659471260985 0.6880867211107828 0.22082659471260982 0.5222986055355956
+0.7175732217572314 0.18647108123423414 0.7175732217572314 0.18647108123423414 0.5036887401760226
+0.7154811715472547 0.18986146452889563 0.7154811715472547 0.18986146452889563 0.5061923880158332
+0.7133891213371072 0.19325184782346103 0.7133891213371072 0.19325184782346103 0.5083539752229345
+0.7112971249918173 0.19664216354629116 0.7112971249918173 0.19664216354629116 0.5102589663198432
+0.7092063161291434 0.20003090857701675 0.7092063161291434 0.20003090857701675 0.5120053868364197
+0.7071163755281166 0.203416668951393 0.7071163755281166 0.203416668951393 0.5136983676370962
+0.7050271018338311 0.20679854148484753 0.7050271018338311 0.20679854148484753 0.5154459024638368
+0.7029414275366775 0.21017635588508587 0.7029414275366775 0.2101763558850859 0.5173547925550864
+0.7008600065374794 0.2135530791196956 0.7008600065374794 0.2135530791196956 0.5195236586523225
+0.7238493723849233 0.18308069793912116 0.7238493723849233 0.18308069793912116 0.5031613506248253
+0.7217573221757014 0.1864710812342778 0.7217573221757014 0.1864710812342778 0.5062479567270194
+0.7301255230125406 0.17969031464395382 0.7301255230125406 0.17969031464395382 0.5014442606608102
+0.728033472803335 0.18308069793912238 0.728033472803335 0.18308069793912238 0.5052301552225188
+0.7364016736401561 0.17629993134878497 0.7364016736401561 0.17629993134878497 0.49848061259434834
+0.734309623430951 0.1796903146439539 0.734309623430951 0.1796903146439539 0.5029888353788947
+0.7426778242677714 0.17290954805361602 0.7426778242677714 0.17290954805361602 0.494364988882295
+0.7405857740585663 0.17629993134878497 0.7405857740585663 0.17629993134878497 0.49951666132384215
+0.7489539748953868 0.16951916475844708 0.7489539748953868 0.16951916475844708 0.489338297502899
+0.7468619246861817 0.17290954805361602 0.7468619246861817 0.17290954805361602 0.4949577511882464
+0.7573221757322074 0.1627383981681092 0.7573221757322074 0.1627383981681092 0.47794296881113124
+0.7552301255230022 0.16612878146327814 0.7552301255230022 0.16612878146327814 0.48375883477102405
+0.7531380753137972 0.16951916475844708 0.7531380753137972 0.16951916475844708 0.4895928656266408
+0.7635983263598227 0.15934801487294026 0.7635983263598227 0.15934801487294026 0.47253767317293244
+0.7615062761506176 0.1627383981681092 0.7615062761506176 0.1627383981681092 0.47805121451888005
+0.7698744769874378 0.15595763157777132 0.7698744769874378 0.15595763157777132 0.46771328378654525
+0.7677824267782328 0.15934801487294026 0.7677824267782328 0.15934801487294026 0.4726384719502681
+0.7761506276150533 0.15256724828260237 0.7761506276150533 0.15256724828260237 0.46374436930373514
+0.7740585774058482 0.15595763157777132 0.7740585774058482 0.15595763157777132 0.46786729112210573
+0.7824267782426685 0.14917686498743343 0.7824267782426685 0.14917686498743343 0.46072589766695377
+0.7803347280334635 0.15256724828260237 0.7803347280334635 0.15256724828260237 0.4639406095798055
+0.7887029288702839 0.1457864816922645 0.7887029288702839 0.1457864816922645 0.45854813396400296
+0.7866108786610786 0.14917686498743343 0.7866108786610786 0.14917686498743343 0.4608733945036661
+0.7949790794978994 0.14239609839709555 0.7949790794978994 0.14239609839709555 0.45691192015845244
+0.7928870292886943 0.1457864816922645 0.7928870292886944 0.1457864816922645 0.45848402549126915
+0.8012552301255145 0.1390057151019266 0.8012552301255145 0.1390057151019266 0.4553825189732203
+0.7991631799163095 0.14239609839709555 0.7991631799163095 0.14239609839709555 0.4564255577490937
+0.8096234309623348 0.13222494851158872 0.8096234309623348 0.13222494851158872 0.453017906320965
+0.8075313807531296 0.13561533180675767 0.8075313807531296 0.13561533180675767 0.45347097076972354
+0.8054393305439246 0.1390057151019266 0.8054393305439246 0.1390057151019266 0.45425121318045086
+0.81589958158995 0.12883456521641978 0.81589958158995 0.12883456521641978 0.4501427554284087
+0.813807531380745 0.13222494851158875 0.813807531380745 0.13222494851158875 0.45072732040481117
+0.8221757322175655 0.12544418192125084 0.8221757322175655 0.12544418192125084 0.44595817255777365
+0.8200836820083603 0.12883456521641978 0.8200836820083603 0.12883456521641978 0.44683044740914774
+0.8284518828451812 0.1220537986260819 0.8284518828451812 0.1220537986260819 0.4404649672349268
+0.8263598326359759 0.12544418192125084 0.8263598326359759 0.12544418192125084 0.4416627755041404
+0.8347280431983394 0.11866340900147902 0.8347280431983394 0.11866340900147902 0.43393711323731116
+0.8326360399959262 0.12205376170438399 0.8326360399959262 0.12205376170438399 0.43536202374769545
+0.8410041841004113 0.11527303203574402 0.8410041841004113 0.11527303203574402 0.42692388104995366
+0.8389121892294669 0.11866339179417602 0.8389121892294668 0.11866339179417602 0.42834283133847534
+0.8472803347280268 0.11188264874057509 0.8472803347280268 0.11188264874057509 0.4202097842421053
+0.8451883712563989 0.1152730231907479 0.8451883712563989 0.1152730231907479 0.42127971071327436
+0.8535564853556421 0.10849226544540613 0.8535564853556421 0.10849226544540613 0.41472399545860145
+0.8514644351464371 0.11188264874057507 0.8514644351464371 0.11188264874057507 0.41504316652893897
+0.8598326406980478 0.10510188462504699 0.8598326406980478 0.10510188462504699 0.4113981011904828
+0.857740586559851 0.10849226585787443 0.857740586559851 0.10849226585787443 0.4105812100066122
+0.8661109410448234 0.10171102548629624 0.8661109410448234 0.10171102548629625 0.4109868493827315
+0.8640187398778031 0.10510101842879495 0.8640187398778031 0.10510101842879495 0.40875428401440184
+0.8703017744958204 0.10170693770325741 0.8703017744958202 0.10170693770325741 0.4101558257122772
+0.8744839347119343 0.09492736079561503 0.8744839347119343 0.09492736079561503 0.4181535186463368
+0.8723932373894012 0.09831746300456617 0.8723932373894012 0.09831746300456617 0.4139001921333753
+0.880768048883558 0.09152748601520766 0.880768048883558 0.09152748601520766 0.425516579200838
+0.8786774680022659 0.09491755483425623 0.8786774680022659 0.09491755483425623 0.4200837233492383
+0.8870502557903497 0.0881224469727697 0.8870502557903496 0.0881224469727697 0.4351554007175018
+0.8849602266357423 0.0915086245268049 0.8849602266357423 0.0915086245268049 0.42899011630256606
+0.8933217441261743 0.08471645702331321 0.8933217441261743 0.08471645702331321 0.4459696216255045
+0.8912324573173825 0.08809855386769361 0.8912324573173825 0.08809855386769361 0.4396410517454665
+0.8995883363828542 0.08129680964280266 0.8995883363828542 0.08129680964280266 0.45673249101993146
+0.8974949068657665 0.0846863584730571 0.8974949068657665 0.0846863584730571 0.4508354328002558
+0.9058710748183164 0.07786689409594949 0.9058710748183164 0.07786689409594949 0.46619459421817383
+0.9037546230866051 0.08124582599775194 0.9037546230866053 0.08124582599775194 0.4613305518735142
+0.9121416410378127 0.0744166769237763 0.9121416410378128 0.0744166769237763 0.47319938148299284
+0.9100490187436381 0.07779696457073802 0.9100490187436382 0.07779696457073802 0.4699104082692657
+0.9184203648521078 0.07105705998590478 0.9184203648521078 0.07105705998590478 0.4767837219949012
+0.9162990749892149 0.074366886686204 0.9162990749892149 0.074366886686204 0.47544456485598124
+0.9225269914215909 0.07099283550699582 0.9225269914215909 0.07099283550699582 0.47721285733892166
+0.9249136437722836 0.06765077468213969 0.9249136437722836 0.06765077468213969 0.4763133513871965
+0.9269054551886503 0.06444474938551577 0.9269054551886503 0.06444474938551577 0.474065478417009
+0.9310101535894227 0.06447469787975149 0.9310101535894227 0.06447469787975148 0.47168078583992656
+0.9331394952261688 0.06099760737730325 0.9331394952261688 0.06099760737730325 0.4669024329244234
+0.9372788178883665 0.060680837224569406 0.9372788178883665 0.060680837224569406 0.4620010781968423
+0.9392578629004982 0.05732494849131525 0.9392578629004982 0.05732494849131525 0.4551510798987701
+0.9427651604457937 0.05710544524350829 0.9427651604457937 0.05710544524350829 0.4492501758630844
+0.945684008517345 0.05448860469856821 0.945684008517345 0.054488604698568206 0.44022356241638416
+0.9495162169594631 0.053372250157408485 0.9495162169594631 0.053372250157408485 0.4304368530378032
+0.9520457523914116 0.050387070077730634 0.9520457523914115 0.050387070077730634 0.41965659000240313
+0.955939192775055 0.04850866680758061 0.955939192775055 0.04850866680758061 0.4067728876730758
+0.959468208925744 0.04642966767222462 0.9594682089257439 0.04642966767222462 0.39364562561086824
+0.9629014977129395 0.04420014901013987 0.9629014977129396 0.04420014901013986 0.3800689607247301
+0.9661379855452911 0.04210073452067047 0.9661379855452911 0.04210073452067047 0.36701289759572603
+0.9695591728049656 0.04004048052440345 0.9695591728049656 0.04004048052440345 0.3535760135111205
+0.9729568480657106 0.037973772016099964 0.9729568480657106 0.037973772016099964 0.3403852530153763
+0.9763144526837211 0.03585348372690578 0.9763144526837211 0.03585348372690578 0.3276027314397629
+0.9796894828968767 0.03371280566617024 0.9796894828968767 0.03371280566617024 0.315371304872752
+0.9830815300788128 0.031597363118661216 0.9830815300788128 0.031597363118661216 0.30404131837981346
+0.9864555565488345 0.02943625842597512 0.9864555565488345 0.02943625842597512 0.29369050356833876
+0.9898077693887253 0.027298891742734782 0.9898077693887252 0.027298891742734782 0.2846372856055294
+0.9931707762005018 0.025192742565786314 0.9931707762005019 0.025192742565786314 0.2769753587477679
+0.029245375944507924 0.9932289104387763 0.029245375944507924 0.9932289104387763 0.06773937514715778
+0.03134742601612821 0.9898272665169519 0.031347426016128214 0.9898272665169517 0.06972984457771249
+0.03345555638798431 0.9864419868076272 0.03345555638798431 0.9864419868076272 0.07209826655941733
+0.03556911485379543 0.9830474310895466 0.03556911485379543 0.9830474310895466 0.07479819766183941
+0.03767883096381099 0.9796533724612636 0.03767883096381099 0.9796533724612636 0.07775742106325206
+0.0397845028548122 0.9762584107468113 0.0397845028548122 0.9762584107468113 0.0809082718706894
+0.04188500741971005 0.9728629108787922 0.04188500741971005 0.9728629108787922 0.08418121016127024
+0.04397183285155013 0.9694753790692797 0.04397183285155013 0.9694753790692797 0.08749824278506478
+0.04603741887666495 0.9660965911032586 0.04603741887666495 0.9660965911032587 0.09078795732634161
+0.04816123171735445 0.9627037058217377 0.04816123171735445 0.9627037058217377 0.0940382404896566
+0.05027965521612807 0.9592978849232581 0.05027965521612807 0.959297884923258 0.09715914731423357
+0.05239092205932302 0.955907684605517 0.05239092205932302 0.955907684605517 0.10007511394451966
+0.05449661542358628 0.952528753793829 0.05449661542358628 0.9525287537938291 0.102740017678567
+0.0565100076921517 0.9491113120499717 0.0565100076921517 0.9491113120499718 0.10510106628298292
+0.05873223765158217 0.9456004769456916 0.05873223765158218 0.9456004769456916 0.10724331734000316
+0.06077479670584556 0.9417021965417012 0.06077479670584556 0.9417021965417013 0.10904979986143706
+0.06375184874799766 0.9392139085219267 0.06375184874799766 0.9392139085219267 0.11019736999256227
+0.0647372235607941 0.9354228181545764 0.0647372235607941 0.9354228181545763 0.11102915137094037
+0.06740636426999204 0.931699109011933 0.06740636426999204 0.931699109011933 0.11147270807086007
+0.07023166048738155 0.9295190216405047 0.07023166048738155 0.9295190216405047 0.11141215518013955
+0.07132738859546361 0.9262441436370656 0.07132738859546361 0.9262441436370655 0.11106625354610512
+0.07302532741244327 0.9237299229920051 0.07302532741244327 0.9237299229920051 0.1104110004095388
+0.07465012667479964 0.9210784291486422 0.07465012667479964 0.9210784291486424 0.10959155507469695
+0.07805146781174066 0.9179616034459239 0.07805146781174066 0.917961603445924 0.10789367665750595
+0.07796018320052925 0.9140754061759531 0.07796018320052923 0.914075406175953 0.10627408980697005
+0.08124309577053847 0.9078665310966437 0.08124309577053847 0.9078665310966437 0.10198367302719825
+0.08127191011560186 0.9117724402463291 0.08127191011560186 0.9117724402463291 0.10416214589573869
+0.08471754802030917 0.9019676919399381 0.08471754802030917 0.9019676919399381 0.09682355994220919
+0.08457826908256277 0.9059449447744345 0.08457826908256277 0.9059449447744345 0.09957025972809697
+0.08813754381976108 0.8954610532427449 0.08813754381976108 0.8954610532427448 0.09050134237067907
+0.08809262388884342 0.899815944473404 0.08809262388884342 0.8998159444734039 0.0938432451403402
+0.0915677272838522 0.8891044998486719 0.0915677272838522 0.889104499848672 0.08387372643011205
+0.09158612595505969 0.8932614293975235 0.09158612595505967 0.8932614293975235 0.08721563632353922
+0.0949373805329394 0.8828499480106544 0.09493738053293942 0.8828499480106543 0.0774152801322241
+0.09495690285514206 0.8870167564158926 0.09495690285514206 0.8870167564158926 0.080712609701154
+0.09832172612543297 0.8765958788044117 0.09832172612543298 0.8765958788044116 0.07154287246785296
+0.09833133627726055 0.8807949019865084 0.09833133627726055 0.8807949019865084 0.07456174048581389
+0.10170810384786783 0.8745214169608402 0.10170810384786781 0.8745214169608403 0.06926176528569856
+0.10506413710648059 0.8682590294647393 0.10506413710648059 0.8682590294647393 0.0654196621528129
+0.10506905452318958 0.8724550383930775 0.10506905452318958 0.8724550383930775 0.0675381898688641
+0.10846300561672273 0.861963472544983 0.10846300561672273 0.861963472544983 0.06344039607678677
+0.10844157218320905 0.8661842942093216 0.10844157218320905 0.8661842942093215 0.06467433040529012
+0.11186064292274846 0.8556727269842765 0.11186064292274846 0.8556727269842765 0.06350870382923762
+0.11184581162235159 0.8598673390080407 0.11184581162235159 0.8598673390080407 0.06379144715642693
+0.1152634857161567 0.8493859722118188 0.1152634857161567 0.8493859722118188 0.06542343013260522
+0.11525069197898535 0.8535802601433623 0.11525069197898534 0.8535802601433623 0.06488339214966622
+0.11865848591361483 0.8431020339453995 0.11865848591361483 0.8431020339453995 0.06871424044503051
+0.11865752010860753 0.8472906303014746 0.11865752010860753 0.8472906303014746 0.06758877755177643
+0.12204717861931613 0.8368223150122301 0.12204717861931613 0.8368223150122301 0.07282035863857195
+0.12204270135762553 0.8410092628730291 0.12204270135762553 0.8410092628730291 0.07136373609313522
+0.12544094722799268 0.8305461675928109 0.12544094722799268 0.8305461675928109 0.07723356714526704
+0.12543596379462998 0.83473250776394 0.12543596379462998 0.83473250776394 0.07568304581042647
+0.1288328469397483 0.824270221018207 0.1288328469397483 0.824270221018207 0.0815454008815138
+0.1288301803406012 0.8284572500826508 0.1288301803406012 0.8284572500826508 0.080086775515322
+0.13222418611684186 0.8179930509758037 0.13222418611684186 0.8179930509758037 0.08547126568335217
+0.1322229634741759 0.8221792627505314 0.13222296347417586 0.8221792627505314 0.08423459048389272
+0.13561442174507088 0.8159010649836875 0.13561442174507088 0.8159010649836876 0.08789780824250641
+0.13900517249650748 0.8096239203105755 0.13900517249650748 0.8096239203105755 0.09094543421721933
+0.13900429563690564 0.8138088828554357 0.13900429563690564 0.8138088828554357 0.09023191772100746
+0.14239581994804404 0.8033476005659859 0.14239581994804404 0.8033476005659859 0.0933261768372343
+0.14239522596130832 0.8075322820378789 0.14239522596130835 0.8075322820378789 0.09295018207397238
+0.14578634987619113 0.7970713422992682 0.14578634987619113 0.7970713422992682 0.09505102821037024
+0.1457860591651106 0.8012558749240117 0.1457860591651106 0.8012558749240117 0.09500107970481347
+0.14917681337724717 0.7907950728559426 0.14917681337724717 0.7907950728559426 0.0961781982309453
+0.1491766965664967 0.7949793772566016 0.1491766965664967 0.7949793772566016 0.0964162439485234
+0.15256723053391003 0.7845188603430717 0.15256723053391005 0.7845188603430717 0.09679986919831628
+0.15256718942811032 0.7887030322287019 0.15256718942811032 0.7887030322287019 0.09726654175477094
+0.15595762606409647 0.7782426871751763 0.15595762606409647 0.7782426871751763 0.09703007688084754
+0.15595761301717895 0.7824268089279857 0.15595761301717895 0.7824268089279857 0.09764993480866573
+0.15934801331660683 0.7719665296660577 0.15934801331660683 0.7719665296660577 0.09699365069484382
+0.1593480095560509 0.7761506358063383 0.1593480095560509 0.7761506358063383 0.09768053202737896
+0.16273839767314083 0.7656903772162152 0.16273839767314083 0.7656903772162152 0.09681655545843838
+0.16273839634747794 0.7698744792248587 0.16273839634747797 0.7698744792248587 0.09747909865473714
+0.16612878129238356 0.7594142263265251 0.16612878129238354 0.7594142263265251 0.09661807598107496
+0.1661287807918822 0.7635983277937477 0.1661287807918822 0.7635983277937477 0.09716525394717858
+0.169519164592122 0.7573221761994371 0.169519164592122 0.7573221761994371 0.09685167676302063
+0.1729095480499093 0.7510460253272001 0.1729095480499093 0.7510460253272001 0.09664044584522737
+0.17290954803755695 0.755230126367375 0.17290954803755695 0.755230126367375 0.09696249999501179
+0.17629993136341696 0.7447698745679467 0.17629993136341696 0.7447698745679467 0.09662135852086261
+0.17629993140451253 0.7489539752367732 0.17629993140451253 0.7489539752367732 0.09664730136336074
+0.17969031465146054 0.7384937238791314 0.17969031465146054 0.7384937238791314 0.09687175290232532
+0.1796903146723583 0.7426778243777771 0.1796903146723583 0.7426778243777771 0.0965451825987065
+0.18308069794167045 0.7322175732300029 0.18308069794167045 0.7322175732300029 0.09745705659393923
+0.18308069794865234 0.7364016736701475 0.18308069794865234 0.7364016736701475 0.09673811763609673
+0.18647108123500747 0.7259414225961566 0.18647108123500747 0.7259414225961566 0.09843118905339993
+0.18647108123694792 0.7301255230197357 0.18647108123694792 0.7301255230197357 0.09729794366358614
+0.1898614645296377 0.7196652719669795 0.1898614645296377 0.7196652719669795 0.09983613327792595
+0.18986146453011965 0.7238493723865266 0.18986146453011965 0.7238493723865266 0.0982847603163569
+0.19325184782477622 0.7175732217576543 0.19325184782477622 0.7175732217576543 0.09974419099354505
+0.1966422311198229 0.7154811715481775 0.1966422311198229 0.7154811715481775 0.0996691216464778
+0.20003261441496742 0.7133891213389191 0.20003261441496742 0.7133891213389191 0.0996569647140897
+0.20342135876534354 0.7112952655063979 0.20342135876534354 0.7112952655063979 0.09975540008844351
+0.20680580667934165 0.7091978837831202 0.20680580667934165 0.7091978837831202 0.10000934780333663
+0.21018590907709214 0.7070982335401069 0.21018590907709214 0.7070982335401069 0.10045508065901475
+0.21356247882919085 0.7008316946041053 0.21356247882919085 0.7008316946041053 0.10346351244816303
+0.2169382615054941 0.6987632101797667 0.21693826150549408 0.6987632101797666 0.10436727413080595
+0.22515060182939728 0.6872172861388197 0.22515060182939722 0.6872172861388197 0.11145843302166145
+0.2272852619939588 0.6808761931726101 0.2272852619939588 0.6808761931726101 0.11558430595245907
+0.22802041747271284 0.6843614999015742 0.22802041747271282 0.6843614999015742 0.11331211406159485
+0.23211494332840563 0.6721075603606746 0.23211494332840563 0.6721075603606746 0.12136683308537839
+0.23483083337686642 0.6694743049312138 0.23483083337686642 0.6694743049312138 0.12295579538710687
+0.2375560389942719 0.6668518714296142 0.2375560389942719 0.6668518714296142 0.12445852177732875
+0.24232312944716752 0.6579974761194382 0.24232312944716752 0.6579974761194382 0.12958494429662956
+0.24504486257667174 0.6554075528162859 0.2450448625766717 0.6554075528162859 0.13066205492307428
+0.24777623019659378 0.652854236314227 0.24777623019659378 0.652854236314227 0.1315677433904117
+0.2504566351752653 0.6502905262915134 0.2504566351752653 0.6502905262915134 0.13236068541116522
+0.2532337062559964 0.647786678286981 0.2532337062559964 0.6477866782869811 0.13294253857462743
+0.24027748074260225 0.664240081193117 0.24027748074260225 0.664240081193117 0.1258507323626479
+0.2429941159892833 0.6616410446863031 0.2429941159892833 0.6616410446863031 0.12711029151420913
+0.23003843671090748 0.6783452578986265 0.23003843671090748 0.6783452578986265 0.11723667620343108
+0.23282966701007612 0.6757752894166084 0.23282966701007615 0.6757752894166084 0.11889358453863048
+0.2205243661110244 0.6925239008864735 0.2205243661110244 0.6925239008864735 0.10803830371194989
+0.2203479990483117 0.696692632440985 0.2203479990483117 0.696692632440985 0.10548637805361503
+0.22402562350909405 0.690809029469976 0.22402562350909405 0.690809029469976 0.10909757933399437
+0.21355925554384392 0.7049990656883338 0.21355925554384392 0.7049990656883338 0.10111913818629625
+0.2587454668428792 0.6427010370627344 0.2587454668428792 0.6427010370627344 0.13375787422980248
+0.26546464782213747 0.6279644874048549 0.26546464782213747 0.6279644874048548 0.14136026930855725
+0.2683345033606529 0.625465081147485 0.26833450336065295 0.625465081147485 0.14176547634575018
+0.2705513797431293 0.6195994488645885 0.2705513797431293 0.6195994488645885 0.14660383618730274
+0.27118327908767037 0.6229918391462992 0.2711832790876704 0.6229918391462991 0.14223678967820863
+0.2807355787023254 0.6002621829124668 0.2807355787023254 0.6002621829124668 0.1687781184246987
+0.2728073380031768 0.6138803398957206 0.2728073380031768 0.6138803398957206 0.15230632474283834
+0.2755971159820661 0.611602028094442 0.2755971159820661 0.611602028094442 0.15336613291506088
+0.27807376412756407 0.6060233690215568 0.27807376412756407 0.6060233690215568 0.16034031109275285
+0.2783800488973154 0.6093314233546294 0.2783800488973154 0.6093314233546295 0.1545957590868348
+0.2810306548026012 0.6039020692345765 0.2810306548026012 0.6039020692345765 0.16166555861498197
+0.27338271903231 0.6171933264394477 0.27338271903231 0.6171933264394477 0.14737218556689266
+0.26144547178432936 0.6400998928843334 0.26144547178432936 0.6400998928843334 0.13408601705764386
+0.2633706274766984 0.6340027016997641 0.2633706274766984 0.6340027016997641 0.13743820956718109
+0.26420677649095015 0.6375170325200762 0.26420677649095015 0.6375170325200762 0.13430483814707925
+0.26620156094477515 0.6314429182634665 0.26620156094477515 0.6314429182634665 0.1377104322709355
+0.25668873187632574 0.6488262107043078 0.25668873187632574 0.6488262107043078 0.131001876138554
+0.2594981762050736 0.6462484487140335 0.2594981762050736 0.6462484487140335 0.13129814839468015
+0.42885977960939137 0.40976359843744425 0.42885977960939137 0.4097635984374443 0.6391820283346287
+0.42513077302874885 0.40925434667814276 0.42513077302874885 0.4092543466781428 0.6192288763477681
+0.4201040431802355 0.4091186168585577 0.4201040431802355 0.4091186168585577 0.5930333078929869
+0.42277246470305574 0.41020982815842244 0.42277246470305574 0.41020982815842244 0.6161341908959506
+0.41524678107316315 0.4099404727474746 0.4152467810731632 0.40994047274747464 0.5690716133200473
+0.41828754749729374 0.4109287312057268 0.41828754749729374 0.4109287312057268 0.5954023282317306
+0.41220709903435393 0.4098595694971528 0.412207099034354 0.4098595694971528 0.5481290971526186
+0.4096131342192092 0.4102137152017629 0.4096131342192092 0.410213715201763 0.5314785529686357
+0.41410757230641376 0.4117873993188641 0.4141075723064137 0.4117873993188641 0.5720980653959369
+0.4045346558554508 0.41079266872805426 0.4045346558554508 0.41079266872805426 0.49639520845506985
+0.4080512089529573 0.4122107869620293 0.4080512089529574 0.4122107869620293 0.5283253564976179
+0.40180764371546696 0.41257489447617823 0.40180764371546696 0.41257489447617823 0.4802222510690621
+0.397975912622211 0.41170884535954316 0.39797591262221094 0.41170884535954316 0.44893102917527583
+0.39472790946151975 0.41251258539513735 0.39472790946151975 0.41251258539513735 0.4251908525226792
+0.39967768974855067 0.4144639380724017 0.39967768974855067 0.4144639380724017 0.46668508629499
+0.3887942277935637 0.41357994891260225 0.3887942277935637 0.41357994891260225 0.38196466044326943
+0.3926904243522149 0.4146523819734172 0.3926904243522149 0.4146523819734172 0.41110930758279435
+0.3788954489973074 0.4174914450668381 0.3788954489973074 0.4174914450668381 0.31176787986802135
+0.38584192223595315 0.41617647865911156 0.3858419222359531 0.41617647865911156 0.3598156894889622
+0.38201209769243677 0.4170793068198492 0.38201209769243677 0.4170793068198492 0.3324631516422966
+0.3770870582264048 0.41947785559941664 0.3770870582264048 0.4194778555994167 0.2978908482142082
+0.3711885163590865 0.42120398115296515 0.3711885163590865 0.42120398115296515 0.2627983047439543
+0.37479872899419087 0.42174088353946193 0.3747987289941909 0.4217408835394619 0.2808804087287365
+0.3687170157411973 0.4236742068772551 0.36871701574119736 0.42367420687725504 0.24744029257517752
+0.3622860793785277 0.425933186576533 0.3622860793785277 0.425933186576533 0.22126734676499213
+0.3660617544073452 0.4263557585388304 0.3660617544073452 0.4263557585388304 0.23312293692063624
+0.3598182179137209 0.428722185718436 0.3598182179137209 0.42872218571843596 0.21354969628243783
+0.3535660510875641 0.4313851156029864 0.35356605108756417 0.4313851156029864 0.20558516488611248
+0.357427210275602 0.4315650861080034 0.357427210275602 0.4315650861080034 0.20974641889884693
+0.35112977767788345 0.4343635728179161 0.35112977767788345 0.4343635728179161 0.20864241255268132
+0.3440878654216293 0.4372793725551738 0.3440878654216292 0.4372793725551737 0.21784425086875522
+0.34865483790419455 0.4375176608623782 0.34865483790419455 0.43751766086237825 0.21588206499271087
+0.34255560425133896 0.4407920663368057 0.34255560425133896 0.4407920663368056 0.23001113868495762
+0.33698590016794877 0.4437606211885487 0.33698590016794877 0.4437606211885487 0.24640407110449922
+0.3353252246221095 0.4463758566735892 0.3353252246221095 0.4463758566735892 0.2583153265133871
+0.3406348921663988 0.44384773306666736 0.3406348921663988 0.4438477330666673 0.24273933193918
+0.3336592637452947 0.4490276507243775 0.3336592637452947 0.4490276507243775 0.27064621633983815
+0.32865316777845954 0.45218792079609926 0.3286531677784596 0.45218792079609926 0.28840837633014477
+0.3271279357354114 0.4550684966335716 0.3271279357354114 0.4550684966335716 0.30118004235930634
+0.3324310065940772 0.4518626436457328 0.3324310065940772 0.45186264364573286 0.2834952381214848
+0.3256388539078338 0.4579736481065068 0.3256388539078338 0.4579736481065068 0.31362607024887934
+0.3205392827413265 0.4613164001252667 0.3205392827413265 0.4613164001252667 0.3288787595575538
+0.31919499833669157 0.46437261600991375 0.31919499833669157 0.46437261600991375 0.34001145580152414
+0.3242265562948911 0.46092014716933716 0.3242265562948911 0.4609201471693371 0.32564641022216284
+0.31788189346599766 0.4674813206515853 0.31788189346599766 0.4674813206515854 0.3504979181694328
+0.31290790524567597 0.47119204721660773 0.31290790524567597 0.47119204721660773 0.36168487921152187
+0.3117134744237634 0.474419299732759 0.31171347442376346 0.4744192997327589 0.36997705449792123
+0.31662456280531104 0.4706140045273359 0.31662456280531104 0.470614004527336 0.36014014862673654
+0.31057305871156743 0.4776774175788958 0.31057305871156743 0.4776774175788958 0.37730478874925705
+0.3057397856250738 0.481733816824486 0.3057397856250738 0.481733816824486 0.3833459445988509
+0.30469506484657366 0.48513134106250316 0.30469506484657366 0.48513134106250316 0.3881409939931518
+0.30948953919670324 0.48095953311727585 0.30948953919670324 0.48095953311727585 0.3836048916298403
+0.30374286285085883 0.4885766155405971 0.3037428628508589 0.4885766155405971 0.39187616984684087
+0.29918196628140453 0.4929879760122981 0.29918196628140453 0.4929879760122981 0.3925192165847488
+0.29824835648637343 0.4964736164993879 0.29824835648637343 0.4964736164993879 0.393485268349091
+0.3028720182743309 0.49200110561331184 0.3028720182743309 0.49200110561331184 0.3944674766951101
+0.29727516496802553 0.4999882394389204 0.2972751649680255 0.4999882394389204 0.39330367350184764
+0.29356744760319253 0.5051568844043409 0.2935674476031926 0.5051568844043409 0.3890201816981151
+0.2929597518088012 0.5087627769288103 0.2929597518088012 0.5087627769288102 0.38643131792497315
+0.296846068567452 0.5036185587921678 0.29684606856745205 0.5036185587921677 0.39234872934730675
+0.2921408616706249 0.5122536541188932 0.2921408616706249 0.5122536541188932 0.3827541740774441
+0.28912829927434147 0.52207082370792 0.2891282992743415 0.52207082370792 0.36715727357205447
+0.2912841847907434 0.5157153621953778 0.2912841847907434 0.5157153621953778 0.37818484028809524
+0.29028205284752795 0.5188407647512626 0.290282052847528 0.5188407647512626 0.3731260474364599
+0.2884300875140298 0.5254918734677313 0.2884300875140298 0.5254918734677313 0.3606485963399706
+0.28764777784430073 0.5288859292048461 0.28764777784430073 0.5288859292048461 0.3535114046303187
+0.28695839366915504 0.5323186713041058 0.28695839366915504 0.5323186713041058 0.3457807997923004
+0.2862814671840387 0.5358091413540004 0.28628146718403874 0.5358091413540004 0.3374103875429922
+0.2857010754936873 0.5393818588999131 0.2857010754936873 0.5393818588999131 0.3284472368409154
+0.28591991959384927 0.5424651932095187 0.28591991959384927 0.5424651932095187 0.32046144494380396
+0.28427477450617916 0.5456215321732525 0.28427477450617916 0.5456215321732526 0.3118267219757203
+0.2840939839179306 0.549770188181785 0.2840939839179306 0.549770188181785 0.300380644831803
+0.28383286487114834 0.5535725245167304 0.28383286487114834 0.5535725245167304 0.2896499627620499
+0.2835704092317677 0.5573165163722686 0.2835704092317677 0.5573165163722686 0.27892430153739006
+0.283131479595513 0.5608147209260713 0.28313147959551305 0.5608147209260713 0.2688561414964303
+0.28262839223489755 0.5643541152161415 0.28262839223489755 0.5643541152161414 0.258708609752512
+0.2826762159155742 0.5680007977737519 0.2826762159155742 0.5680007977737519 0.24822459447290127
+0.28267187732407234 0.5717033230587526 0.28267187732407234 0.5717033230587526 0.23767650585265257
+0.28267065399185315 0.5754098526624417 0.28267065399185315 0.5754098526624417 0.22729305151693938
+0.2826735362315976 0.5791127690457357 0.2826735362315976 0.5791127690457357 0.2171726877366015
+0.282700600694495 0.5828420592010012 0.282700600694495 0.5828420592010012 0.20729252740811008
+0.2828160677490071 0.5866499080838599 0.2828160677490071 0.58664990808386 0.1975534938102791
+0.28304322472036564 0.5905167570096216 0.28304322472036564 0.5905167570096216 0.18803578778033112
+0.2833993880253132 0.5943467150669406 0.2833993880253132 0.5943467150669406 0.17899633137086804
+0.2837412811604917 0.597902450276821 0.28374128116049174 0.597902450276821 0.17110236646222085
+0.42970853588509 0.41422683038794145 0.42970853588509 0.41422683038794145 0.6912635530214558
+0.4305314851611997 0.41846693652008793 0.4305314851611997 0.4184669365200879 0.7478741278621217
+0.4364722410496876 0.4041155180771693 0.43647224104968757 0.4041155180771692 0.5924465170282868
+0.4368757335458935 0.4006474475319587 0.4368757335458935 0.40064744753195874 0.5608823219414427
+0.43841096963262144 0.39607689991338896 0.43841096963262144 0.39607689991338896 0.5257991156326262
+0.43861340939737997 0.3987616384703957 0.43861340939737997 0.3987616384703957 0.5444531565754076
+0.4398638538298015 0.3919492038714443 0.4398638538298015 0.3919492038714443 0.5004338203842086
+0.44063052717622936 0.3949060636178273 0.44063052717622936 0.39490606361782726 0.5161977101355576
+0.4415359068343588 0.38711326865156764 0.4415359068343588 0.38711326865156764 0.4778491171676719
+0.442020062599296 0.39022017521940794 0.442020062599296 0.39022017521940794 0.49040052471954393
+0.4437060202776808 0.38574892476374545 0.44370602027768075 0.38574892476374545 0.471983230522096
+0.4457161127573926 0.37717861352219817 0.4457161127573926 0.37717861352219817 0.45044612250005384
+0.445278763945704 0.3805235587293375 0.44527876394570404 0.3805235587293376 0.4573796382025787
+0.44451342862722926 0.38353800913832153 0.44451342862722926 0.38353800913832153 0.4650381342685554
+0.4502906415874672 0.36743918850166457 0.4502906415874671 0.36743918850166457 0.43799944609499736
+0.4504360736067065 0.3708899897835831 0.4504360736067065 0.3708899897835831 0.44224546865797587
+0.44910463313278637 0.3729923258373915 0.44910463313278637 0.3729923258373915 0.444607826576373
+0.4493454115125661 0.3762858680292883 0.449345411512566 0.37628586802928826 0.44990727833101485
+0.4550838377422069 0.3605088934466567 0.45508383774220695 0.3605088934466567 0.431181450553492
+0.45730075118372576 0.3582986970837898 0.4573007511837258 0.3582986970837898 0.42863632138438945
+0.4546980542722641 0.3633691402494451 0.4546980542722641 0.36336914024944506 0.43463512023527434
+0.45413913895002406 0.36680158656225803 0.45413913895002406 0.36680158656225803 0.43869255849007605
+0.46504999247543416 0.3484935521732914 0.46504999247543416 0.3484935521732914 0.40863593268321535
+0.4634854237600429 0.3515711058646951 0.4634854237600429 0.3515711058646951 0.4155431243540582
+0.46206372913979693 0.3545943078738414 0.46206372913979693 0.3545943078738414 0.4214671009521714
+0.4608918645970529 0.3576334228211957 0.46089186459705284 0.3576334228211957 0.4266301334449109
+0.47885339521294723 0.33559740863996723 0.47885339521294723 0.3355974086399672 0.3485675383057134
+0.47726846897142994 0.33873930938220403 0.47726846897143 0.33873930938220403 0.3608853953386719
+0.47242409154792614 0.3418542088925369 0.47242409154792614 0.3418542088925369 0.3818208097166856
+0.47570418298837214 0.34189195116787874 0.4757041829883722 0.3418919511678787 0.3726644532656092
+0.47045014269729063 0.34513622352942863 0.47045014269729063 0.34513622352942863 0.393033332245102
+0.4687144081968937 0.3485013539371534 0.46871440819689364 0.3485013539371535 0.40292630165468196
+0.4866979374906424 0.32952872239421416 0.4866979374906424 0.3295287223942141 0.30248594693032466
+0.4843350512918438 0.33273472356277495 0.4843350512918438 0.33273472356277495 0.32016251135435914
+0.49047703130717224 0.3281016527864286 0.49047703130717224 0.3281016527864286 0.28083565776498315
+0.4896366688802405 0.3312082598411073 0.4896366688802405 0.3312082598411073 0.2916178443824765
+0.48240793697608647 0.33584395550567486 0.48240793697608647 0.33584395550567486 0.33525908080289885
+0.5015681866201097 0.3199601917982573 0.5015681866201097 0.3199601917982573 0.204855148217415
+0.4989927292369309 0.32268260694332485 0.4989927292369309 0.32268260694332485 0.2240065038229239
+0.496590822155818 0.3255299991534687 0.496590822155818 0.32552999915346875 0.24278861645648178
+0.4943995059423156 0.3285063944824124 0.4943995059423156 0.3285063944824124 0.2608901631881761
+0.5152581373257645 0.31345108441150915 0.5152581373257644 0.3134510844115091 0.13199866982539266
+0.5095999231377192 0.3152249713628638 0.5095999231377192 0.3152249713628638 0.15587647732713228
+0.5128650469762467 0.3161318529320678 0.5128650469762467 0.3161318529320678 0.1433491970933838
+0.5072513938287379 0.3179734455610941 0.5072513938287379 0.3179734455610941 0.17122044054523897
+0.5048971219462242 0.32073112388409675 0.5048971219462243 0.3207311238840967 0.18792380998774513
+0.5295733153334798 0.30784285826574526 0.5295733153334798 0.30784285826574526 0.13858168593541198
+0.5235937881834677 0.30923557150560804 0.5235937881834677 0.30923557150560804 0.12134823336796242
+0.5268851161803468 0.3104056508738472 0.5268851161803468 0.31040565087384714 0.13135335037529938
+0.5210161038184592 0.3118530738638668 0.5210161038184592 0.3118530738638668 0.12211865433512169
+0.5185232535057345 0.3144716401229191 0.5185232535057346 0.3144716401229191 0.12663035662363276
+0.544967851144043 0.3032203938429974 0.544967851144043 0.3032203938429974 0.22623544553089614
+0.5386146084473489 0.30399154585455757 0.5386146084473489 0.3039915458545575 0.1841470687822606
+0.5419441264172259 0.30553170345279856 0.5419441264172259 0.3055317034527985 0.20990229423582338
+0.5356483846338481 0.30655725428145686 0.5356483846338481 0.3065572542814569 0.16979531155659264
+0.5328449861339152 0.30909640147198625 0.5328449861339152 0.3090964014719862 0.1573139851275823
+0.5543715372104353 0.30068158768011705 0.5543715372104353 0.30068158768011705 0.2871069228170617
+0.5512867423054779 0.30277343822452796 0.5512867423054778 0.30277343822452796 0.2706311220692757
+0.5482269253970508 0.3049014192196921 0.5482269253970508 0.3049014192196921 0.2537762085392717
+0.5575369086753902 0.30237353808955986 0.5575369086753902 0.30237353808955986 0.31458783359331005
+0.5604421498085584 0.3040480947850248 0.5604421498085584 0.3040480947850248 0.3404299439176517
+0.5633213677528931 0.3061870252663067 0.5633213677528931 0.30618702526630676 0.3678440682826771
+0.5666049272845298 0.3044995074905957 0.5666049272845298 0.3044995074905957 0.38501917139832936
+0.5699224160916421 0.30326726444453583 0.5699224160916421 0.30326726444453583 0.40294879538018297
+0.5768161190150879 0.30149576696354125 0.5768161190150879 0.30149576696354125 0.43996332848682235
+0.5732991943045928 0.302424185146345 0.5732991943045928 0.302424185146345 0.42164255039025994
+0.440813728566754 0.4061555497283218 0.440813728566754 0.40615554972832174 0.6081896797732389
+0.4448930912158557 0.40813956019351644 0.4448930912158557 0.40813956019351644 0.6186743722175492
+0.6310192581279084 0.2597388636371447 0.6310192581279085 0.2597388636371447 0.5290177322269426
+0.6273897478555756 0.260915210456916 0.6273897478555756 0.26091521045691607 0.5219675562195562
+0.6238316013736624 0.2620927448455847 0.6238316013736624 0.2620927448455847 0.5144647136815713
+0.6203255946844205 0.2632772533512057 0.6203255946844205 0.2632772533512057 0.5065160641027507
+0.6168690591182525 0.2644759413901608 0.6168690591182525 0.2644759413901608 0.4981715637754018
+0.6134655140027682 0.2657032650491411 0.6134655140027682 0.2657032650491411 0.4895228576665844
+0.6101221428384026 0.26698455766485735 0.6101221428384026 0.26698455766485735 0.48070932530460103
+0.6068314730247596 0.26831081545690677 0.6068314730247596 0.26831081545690677 0.4717269766453674
+0.6035859634320746 0.26969231335019134 0.6035859634320745 0.26969231335019134 0.4626282971085523
+0.5937327587437561 0.2740845167209171 0.5937327587437561 0.2740845167209171 0.43274504880444825
+0.6003604399283229 0.2711460254765817 0.6003604399283229 0.2711460254765817 0.4533744891672234
+0.5970901416825115 0.2726224050461215 0.5970901416825115 0.2726224050461215 0.4435236853429129
+0.5895851134693647 0.2792128673752127 0.5895851134693647 0.2792128673752127 0.42946784238195596
+0.5814355681806923 0.2927841286778989 0.5814355681806923 0.2927841286778989 0.43446973723554244
+0.5808628410546524 0.29645040874341183 0.5808628410546524 0.29645040874341183 0.44470947343171435
+0.5802383902635787 0.3002341019048759 0.5802383902635787 0.3002341019048759 0.45530563616234593
+0.5854637835345117 0.28424475243948544 0.5854637835345117 0.2842447524394855 0.4257244752455092
+0.5851989493531999 0.28789796697605147 0.5851989493531998 0.28789796697605147 0.4370817664101669
+0.5847253379807382 0.29158394793106795 0.5847253379807382 0.29158394793106795 0.44784055545537654
+0.5890106576955426 0.28290804416290644 0.5890106576955426 0.28290804416290644 0.43902915107927637
+0.5931343737615551 0.2778156818665799 0.5931343737615551 0.27781568186657996 0.44185134189703673
+0.6346718870582172 0.2586277097872512 0.6346718870582172 0.2586277097872512 0.5355735045329516
+0.6383246462643888 0.2577154936657194 0.6383246462643887 0.2577154936657194 0.5418563032051426
+0.6418929924267501 0.256888074225587 0.6418929924267501 0.256888074225587 0.5474373690774152
+0.6453952646167688 0.2561094071865496 0.6453952646167688 0.2561094071865497 0.5522913074687007
+0.6488345729481457 0.25537770235484325 0.6488345729481457 0.2553777023548433 0.5564599584319142
+0.652227724517001 0.2546190523685925 0.652227724517001 0.2546190523685925 0.5598722619752867
+0.6551013057690127 0.25480756439522323 0.6551013057690127 0.25480756439522323 0.5639382952624885
+0.6881044409914554 0.22439750839675987 0.6881044409914554 0.2243975083967599 0.5270410525541048
+0.6827925908637212 0.22711816042060373 0.6827925908637212 0.22711816042060376 0.5292879542516199
+0.6792122449674773 0.227729255143176 0.6792122449674772 0.227729255143176 0.5286275083946133
+0.6740434501821647 0.231802033108635 0.6740434501821647 0.231802033108635 0.5329808319313769
+0.6725756571512084 0.23522562050391269 0.6725756571512084 0.23522562050391269 0.5385697332958634
+0.6675654690410154 0.2391181501276729 0.6675654690410154 0.2391181501276729 0.5429486817201221
+0.6661763545565794 0.24261266625674627 0.6661763545565794 0.24261266625674627 0.5490457756508378
+0.6579258260836452 0.25314515524451847 0.6579258260836452 0.25314515524451847 0.5638121328856994
+0.6613647592651951 0.2465274931291639 0.6613647592651951 0.2465274931291639 0.5531076458719567
+0.6598799347516993 0.2499509393802466 0.6598799347516993 0.2499509393802466 0.558953120287578
+0.6647761750188502 0.24608589458361887 0.6647761750188502 0.24608589458361887 0.5551674431508067
+0.6711302170247425 0.2387005634796845 0.6711302170247425 0.23870056347968446 0.5444774674034828
+0.6777328140272565 0.23134695361345248 0.6777328140272565 0.23134695361345248 0.5341546819826745
+0.6863783959160019 0.2269952186912118 0.6863783959160018 0.22699521869121184 0.5303523160422577
+0.694483469740879 0.21694138357622506 0.694483469740879 0.21694138357622506 0.5201206089325553
+0.6987678229317432 0.2169368526582194 0.6987678229317432 0.2169368526582194 0.5220354772399185
+0.6924170355157494 0.22028313617253764 0.6924170355157494 0.22028313617253767 0.5232833738922597
+0.6911451753278007 0.22348052802102114 0.6911451753278007 0.2234805280210211 0.5269166932702819
+0.7196652719663182 0.1898614645293294 0.7196652719663182 0.1898614645293294 0.5088802502883921
+0.7175732217568019 0.19325184782429727 0.7175732217568019 0.19325184782429727 0.5111169409647339
+0.7154812846598192 0.19664206240426682 0.7154812846598192 0.19664206240426682 0.5130369584778772
+0.7133902466516293 0.200030443812005 0.7133902466516293 0.200030443812005 0.5147347278443325
+0.7113002553540669 0.20341453761831574 0.7113002553540669 0.2034145376183157 0.516315170539491
+0.7092118801598137 0.20679242998950623 0.7092118801598137 0.20679242998950623 0.5178897901679217
+0.707130838724174 0.2101641888640374 0.707130838724174 0.2101641888640374 0.5195739407035695
+0.7050655947382157 0.21353217178458325 0.7050655947382157 0.21353217178458325 0.5214782285137479
+0.7030178358663117 0.21690136256083628 0.7030178358663117 0.21690136256083628 0.5236999286091174
+0.725941422594126 0.18647108123428832 0.725941422594126 0.18647108123428832 0.5085013209892474
+0.7238493723848798 0.1898614645294304 0.7238493723848798 0.1898614645294304 0.5112801383350166
+0.7322175732217456 0.18308069793912274 0.7322175732217456 0.18308069793912274 0.5069848375798306
+0.7301255230125396 0.1864710812342909 0.7301255230125396 0.1864710812342909 0.5104490323583155
+0.7384937238493611 0.1796903146439539 0.7384937238493611 0.1796903146439539 0.504225194326136
+0.736401673640156 0.18308069793912285 0.736401673640156 0.18308069793912285 0.5084277976109431
+0.7447698744769767 0.17629993134878497 0.7447698744769767 0.17629993134878497 0.5002652878863573
+0.7426778242677714 0.1796903146439539 0.7426778242677714 0.1796903146439539 0.5051583999827193
+0.7510460251045918 0.17290954805361602 0.7510460251045918 0.17290954805361602 0.49529564967519074
+0.7489539748953868 0.17629993134878497 0.7489539748953868 0.17629993134878497 0.5007332744374268
+0.7594142259414125 0.16612878146327814 0.7594142259414126 0.16612878146327814 0.48380147467025564
+0.7573221757322074 0.16951916475844708 0.7573221757322074 0.16951916475844708 0.48963021353168706
+0.7552301255230022 0.17290954805361602 0.7552301255230022 0.17290954805361602 0.4953849500693452
+0.7656903765690277 0.1627383981681092 0.7656903765690277 0.1627383981681092 0.47800388284594725
+0.7635983263598227 0.16612878146327814 0.7635983263598227 0.16612878146327814 0.4836602808919072
+0.7719665271966429 0.15934801487294026 0.7719665271966428 0.15934801487294026 0.4725905542374978
+0.7698744769874378 0.1627383981681092 0.7698744769874378 0.1627383981681092 0.4777914636389738
+0.7782426778242585 0.15595763157777132 0.7782426778242585 0.15595763157777132 0.46785027872941004
+0.7761506276150533 0.15934801487294026 0.7761506276150533 0.15934801487294026 0.47237251584143664
+0.7845188284518736 0.15256724828260237 0.7845188284518736 0.15256724828260237 0.46391207590650024
+0.7824267782426685 0.15595763157777132 0.7824267782426685 0.15595763157777132 0.4676289831547509
+0.790794979079489 0.14917686498743343 0.790794979079489 0.14917686498743343 0.4607153798649299
+0.7887029288702839 0.15256724828260237 0.7887029288702839 0.15256724828260237 0.463616470266575
+0.7970711297071045 0.1457864816922645 0.7970711297071045 0.1457864816922645 0.4580177497881797
+0.7949790794978994 0.14917686498743343 0.7949790794978994 0.14917686498743343 0.46020604119823266
+0.8033472803347196 0.14239609839709555 0.8033472803347196 0.14239609839709555 0.4554403772375369
+0.8012552301255145 0.1457864816922645 0.8012552301255145 0.1457864816922645 0.45710744720326707
+0.8117154811715399 0.13561533180675767 0.8117154811715398 0.13561533180675767 0.45150101110297575
+0.8096234406978798 0.13900570883327032 0.8096234406978798 0.13900570883327032 0.4525425599103637
+0.8075314375438097 0.14239606182993383 0.8075314375438097 0.14239606182993383 0.4539267079994372
+0.8179916317991552 0.13222494851158872 0.8179916317991552 0.13222494851158872 0.44779401394531787
+0.81589958158995 0.13561533180675767 0.81589958158995 0.13561533180675767 0.44891107567638006
+0.8242677921518554 0.1288345588842757 0.8242677921518554 0.12883455888427567 0.4429119576729558
+0.8221757988848987 0.13222491642780887 0.8221757988848987 0.13222491642780887 0.444249064141135
+0.8305440723473719 0.12544409866460976 0.8305440723473719 0.12544409866460973 0.43686444598005375
+0.8284521322145878 0.1288344445094803 0.8284521322145878 0.1288344445094803 0.43845196237221246
+0.8368203843845007 0.12205363331223046 0.8368203843845007 0.12205363331223044 0.4299284652229502
+0.8347287612695813 0.12544374705857883 0.8347287612695812 0.12544374705857883 0.4316622150926693
+0.8430966905640879 0.11866332877677631 0.8430966905640879 0.11866332877677631 0.4226527509610292
+0.8410054261448318 0.12205327960676422 0.8410054261448318 0.12205327960676422 0.4242941765677763
+0.8493729280340837 0.11527287700513618 0.8493729280340837 0.11527287700513618 0.4158198559074198
+0.8472822213351153 0.11866275688736268 0.8472822213351153 0.11866275688736268 0.41701932664002433
+0.8556485355648474 0.11188264874057507 0.8556485355648474 0.11188264874057507 0.41035458701427135
+0.8535582859119456 0.11527236676578682 0.8535582859119456 0.11527236676578682 0.41070388234930794
+0.8619272089624856 0.10849134774963869 0.8619272089624858 0.10849134774963869 0.4071775880975697
+0.8598365813279997 0.11188231363708906 0.8598365813279997 0.11188231363708905 0.40628532486550933
+0.8682077702640414 0.10509517523923113 0.8682077702640413 0.10509517523923113 0.4070351983362816
+0.866113505679127 0.10848342909657734 0.866113505679127 0.10848342909657734 0.4046226705925193
+0.8723979947438444 0.10507832942488421 0.8723979947438444 0.10507832942488422 0.4062859117257593
+0.8744969625149182 0.10169409148784568 0.8744969625149182 0.10169409148784568 0.41031479699536355
+0.8765885101767049 0.09830681230358011 0.8765885101767049 0.09830681230358011 0.41496220554065727
+0.8828710822453095 0.09489757626565347 0.8828710822453095 0.09489757626565347 0.42284828355940146
+0.8807839116093833 0.09828623332013742 0.8807839116093833 0.09828623332013742 0.4169302779585086
+0.8891477024154996 0.09148023356304073 0.8891477024154996 0.09148023356304073 0.433019549314496
+0.8870605327086251 0.0948647083841155 0.8870605327086251 0.0948647083841155 0.42629829013074744
+0.895403914731608 0.08807036536321072 0.8954039147316079 0.08807036536321072 0.4443160619978595
+0.8933229406036673 0.09144942088818564 0.8933229406036673 0.09144942088818564 0.4373846133336989
+0.8995584350006199 0.08802535302350711 0.8995584350006199 0.08802535302350711 0.44897426795781964
+0.9016380314991693 0.08462102015018869 0.9016380314991693 0.08462102015018869 0.4555340442838535
+0.9079464144964876 0.08119936422353025 0.9079464144964876 0.08119936422353025 0.4654000365788122
+0.9057725807949821 0.08455543019016232 0.9057725807949822 0.08455543019016232 0.45983159726901185
+0.9141918439114174 0.07765403063875387 0.9141918439114175 0.07765403063875387 0.4727938881688141
+0.9120906647698666 0.08104010464026479 0.9120906647698667 0.08104010464026479 0.46881191860022614
+0.9204168250340151 0.0743704081243061 0.9204168250340151 0.0743704081243061 0.4765575065347049
+0.9183323107625403 0.07759221985439879 0.9183323107625404 0.07759221985439879 0.474596574003058
+0.92444164241689 0.07416217643205869 0.9244416424168901 0.07416217643205869 0.4766126624526637
+0.9263550537726685 0.07101731158422958 0.9263550537726685 0.07101731158422958 0.47642273554143927
+0.9291282747001981 0.06817092575760648 0.9291282747001981 0.06817092575760648 0.474770525194491
+0.9290405354395819 0.07112240042781302 0.9290405354395819 0.07112240042781302 0.4750623168246996
+0.932574502335157 0.06750579281677965 0.932574502335157 0.06750579281677965 0.47192753848660063
+0.9353698560379045 0.06472619158772105 0.9353698560379043 0.06472619158772107 0.4678629964989458
+0.9391138307398539 0.06367895794336433 0.9391138307398539 0.06367895794336433 0.46221090554899413
+0.9417326362244899 0.060777661276246606 0.9417326362244899 0.06077766127624661 0.45572002074304224
+0.9456658601081877 0.05886265323355617 0.9456658601081877 0.05886265323355617 0.4465487161816326
+0.9491894794032535 0.05679447737064533 0.9491894794032535 0.05679447737064534 0.4366272954509908
+0.9525873579348095 0.054569287545192746 0.9525873579348095 0.054569287545192746 0.4257391048004823
+0.9558647288429751 0.052464319613332824 0.9558647288429752 0.05246431961333282 0.4144029801811286
+0.9593572207559738 0.05043008713857127 0.9593572207559738 0.05043008713857127 0.4019724144251469
+0.9628227093369218 0.0482897803180716 0.9628227093369218 0.0482897803180716 0.3888657133164734
+0.9661802018097279 0.04616710524011351 0.9661802018097277 0.04616710524011352 0.375765846547361
+0.9695354095556145 0.04410138008214461 0.9695354095556145 0.04410138008214461 0.36268178813936824
+0.9729144741191124 0.04199550373712546 0.9729144741191124 0.04199550373712546 0.34958625451691067
+0.976296445428248 0.039885183996767375 0.976296445428248 0.039885183996767375 0.3368276113242962
+0.9796766124265307 0.03776210455281724 0.9796766124265307 0.03776210455281725 0.32462083623988375
+0.9830624916434406 0.035644418374116804 0.9830624916434406 0.035644418374116804 0.3132112688689181
+0.9864489554225835 0.03353649354453659 0.9864489554225834 0.03353649354453659 0.3028224673021398
+0.9898265860907793 0.03143122452423566 0.9898265860907793 0.03143122452423566 0.2936186632623859
+0.9932030069533111 0.02933788690757204 0.9932030069533111 0.029337886907572042 0.28574102135868307
+0.033453125965389297 0.9932215118463538 0.033453125965389297 0.9932215118463538 0.06969690317426436
+0.035550064336720644 0.9898308138238312 0.035550064336720644 0.9898308138238311 0.07173922932699556
+0.0376501917353238 0.9864399635689282 0.0376501917353238 0.9864399635689282 0.07415273388033332
+0.03975216528871326 0.98304752381509 0.03975216528871326 0.98304752381509 0.07687896114061622
+0.04185245943478286 0.979654849225296 0.04185245943478286 0.979654849225296 0.07984922593194653
+0.043949941059510285 0.9762622223417309 0.043949941059510285 0.9762622223417309 0.08299268993743635
+0.0460406544059983 0.9728719457598185 0.0460406544059983 0.9728719457598185 0.08623482511904816
+0.04812657533742168 0.9694840779554076 0.04812657533742168 0.9694840779554076 0.08950612247907043
+0.050212328852415083 0.9660957682667988 0.05021232885241509 0.9660957682667988 0.0927428177095191
+0.05231451484531567 0.9627003762554286 0.05231451484531568 0.9627003762554286 0.09589204946086173
+0.0544245113927697 0.9593046542030985 0.05442451139276971 0.9593046542030984 0.0988851277181909
+0.05653145279343067 0.9559127264110175 0.05653145279343067 0.9559127264110175 0.10165896205438875
+0.05861150015365094 0.9525099910779894 0.05861150015365094 0.9525099910779894 0.10416258726277354
+0.06068744773674691 0.9490774191086585 0.06068744773674691 0.9490774191086585 0.10637022779489365
+0.06273680789854828 0.9455931418338035 0.06273680789854828 0.9455931418338036 0.1082300848238225
+0.06493696922677972 0.94232515344192 0.06493696922677972 0.94232515344192 0.10967396542839065
+0.06716433812478478 0.9389715838720046 0.06716433812478478 0.9389715838720046 0.11071830030484305
+0.0691009630371484 0.9355368685033779 0.0691009630371484 0.9355368685033779 0.11134202202879458
+0.0712143881369286 0.9323900617288688 0.0712143881369286 0.9323900617288688 0.11152264409846473
+0.07343782411198402 0.9294410814708617 0.07343782411198402 0.9294410814708617 0.11130336235855175
+0.07544186359610909 0.9252746658261872 0.07544186359610909 0.9252746658261871 0.11053150116170875
+0.07845876545708338 0.9219529530389262 0.0784587654570834 0.9219529530389262 0.1091582383769477
+0.08089240564788336 0.919605866827718 0.08089240564788336 0.919605866827718 0.10781986557307936
+0.0818045990618216 0.9158814929562892 0.0818045990618216 0.9158814929562891 0.10607077529075827
+0.08441962094107358 0.909789884432323 0.08441962094107358 0.909789884432323 0.10199839374613094
+0.08428994172030546 0.912952161641097 0.08428994172030546 0.912952161641097 0.10382934273591704
+0.08703609445659329 0.9081059832034741 0.08703609445659329 0.9081059832034741 0.10001735553723903
+0.088465044668132 0.9043879473717692 0.088465044668132 0.9043879473717692 0.09702976528434297
+0.09158892080111077 0.8974023784887447 0.09158892080111077 0.8974023784887447 0.09051979326182469
+0.09175338365554812 0.9014157614152555 0.09175338365554812 0.9014157614152555 0.09356495128713589
+0.09498273819279086 0.8911472963954222 0.09498273819279086 0.8911472963954222 0.08406681502124413
+0.09499045410141137 0.8952336534263688 0.09499045410141137 0.8952336534263688 0.08741642880981502
+0.09835074726583336 0.884967132071223 0.09835074726583336 0.884967132071223 0.07779077468495327
+0.09835055767092149 0.8890967450893852 0.09835055767092149 0.8890967450893852 0.08114236189049984
+0.10174045631806487 0.8787276878567384 0.10174045631806487 0.8787276878567384 0.07207871970082284
+0.10177553122882421 0.8829733531311551 0.10177553122882421 0.8829733531311551 0.0752274475225413
+0.10510516568501656 0.8766452405199381 0.10510516568501656 0.8766452405199381 0.07008930985852159
+0.10841325704415387 0.8703873933916562 0.10841325704415387 0.8703873933916562 0.06644101869240114
+0.10842944601487646 0.8745879397490032 0.10842944601487646 0.8745879397490032 0.06869444480704946
+0.11183288327220564 0.8640591910195153 0.11183288327220564 0.8640591910195153 0.06462432782421988
+0.11177494723215407 0.8682680958330907 0.11177494723215407 0.8682680958330907 0.0660006367694914
+0.11522979732129267 0.8577779460508559 0.11522979732129267 0.8577779460508559 0.06482401323307525
+0.11520533529739396 0.8619701395466967 0.11520533529739396 0.8619701395466967 0.06528520462468627
+0.11864020558028354 0.8514857974391541 0.11864020558028354 0.8514857974391541 0.06681734962267089
+0.11861796500204382 0.8556845393349489 0.11861796500204382 0.8556845393349489 0.06647166229616451
+0.12203814692077197 0.8451984521619041 0.12203814692077197 0.8451984521619041 0.07013837268705579
+0.12202855398983525 0.8493907461898974 0.12202855398983525 0.8493907461898974 0.06920984555977304
+0.12542782955733492 0.8389196964109567 0.12542782955733492 0.8389196964109565 0.07424303325352061
+0.125419321334771 0.8431067375742409 0.125419321334771 0.8431067375742408 0.07297647881988957
+0.1288245774974715 0.8326463257323317 0.12882457749747148 0.8326463257323317 0.07864377134985445
+0.12881490009495247 0.8368369742871166 0.12881490009495247 0.8368369742871166 0.077263909639537
+0.13222017733728456 0.826367815261114 0.13222017733728456 0.826367815261114 0.08294557802063894
+0.13221448176147488 0.8305600995244964 0.13221448176147488 0.8305600995244964 0.08163738711427242
+0.13561328215422244 0.8200873743781193 0.13561328215422244 0.8200873743781193 0.08686733402924855
+0.13561092552453566 0.8242762938942322 0.13561092552453566 0.8242762938942322 0.08576173095700901
+0.13900307188919703 0.8179948026885328 0.13900307188919703 0.8179948026885328 0.08940962298913603
+0.14239391126804454 0.8117175683376724 0.14239391126804454 0.8117175683376724 0.0924511970881115
+0.1423917775925231 0.8159035047910526 0.1423917775925231 0.8159035047910524 0.09183412527799185
+0.1457852624574357 0.8054410788161698 0.1457852624574357 0.8054410788161698 0.09483200277563453
+0.14578342157881355 0.809627518952229 0.14578342157881355 0.809627518952229 0.09453831419253285
+0.14917635496869433 0.7991640578486604 0.14917635496869433 0.7991640578486604 0.09655468547919678
+0.14917545361655524 0.8033496483973979 0.14917545361655524 0.8033496483973979 0.09657919399344474
+0.1525670643152294 0.7928873456672813 0.1525670643152294 0.7928873456672813 0.09766645253722138
+0.15256671203316943 0.7970720364162505 0.15256671203316943 0.7970720364162505 0.09797754573807271
+0.15595757200620788 0.7866109746781541 0.15595757200620788 0.7866109746781541 0.09824683957708831
+0.15595745062996266 0.7907952636554074 0.15595745062996266 0.7907952636554074 0.09879223296477851
+0.15934799739378083 0.7803347541398495 0.15934799739378083 0.7803347541398495 0.09839651528714781
+0.15934795985056513 0.7845189079941427 0.15934795985056513 0.7845189079941427 0.09910807156174896
+0.16273839162740913 0.7740585849378133 0.16273839162740913 0.7740585849378133 0.098227884853431
+0.1627383754531875 0.7782427023621689 0.1627383754531875 0.7782427023621689 0.09902628440662732
+0.1661287788836398 0.7677824319052569 0.16612877888363983 0.7677824319052569 0.09785733750795839
+0.16612877187425276 0.7719665445878351 0.16612877187425276 0.7719665445878351 0.0986568218303757
+0.1695191641097914 0.76150627790107 0.1695191641097914 0.76150627790107 0.09739934338294311
+0.16951916229028996 0.7656903829001239 0.16951916229028996 0.7656903829001239 0.09811238712876393
+0.17290954797718808 0.7594142290415159 0.17290954797718808 0.7594142290415159 0.09750436564545663
+0.1762999315529 0.7531380765565435 0.1762999315529 0.7531380765565435 0.09694032702002293
+0.17629993206343522 0.757322180102863 0.17629993206343522 0.757322180102863 0.0974707590389189
+0.17969031474819067 0.7468619250811067 0.17969031474819067 0.7468619250811067 0.09652265275035493
+0.1796903150135979 0.7510460264772707 0.1796903150135979 0.7510460264772707 0.09678175108070174
+0.1830806979737564 0.7405857741644861 0.1830806979737564 0.7405857741644861 0.09634756602763285
+0.18308069806105773 0.7447698748392643 0.18308069806105773 0.7447698748392643 0.096271749710813
+0.18647108124386125 0.7343096234557888 0.18647108124386125 0.7343096234557888 0.09650371706725004
+0.18647108126768652 0.7384937239321213 0.18647108126768652 0.7384937239321213 0.09604415203458606
+0.18986146453182737 0.7280334728087506 0.18986146453182737 0.7280334728087506 0.09706961329266824
+0.18986146453770592 0.7322175732394531 0.18986146453770592 0.7322175732394531 0.09619507277519458
+0.19325184782515734 0.7217573221768495 0.19325184782515734 0.7217573221768495 0.09810964698105817
+0.1932518478264517 0.7259414225977593 0.1932518478264517 0.7259414225977593 0.09680835608344883
+0.1966422247962004 0.7196652622578738 0.1966422247962004 0.7196652622578738 0.09794912456859817
+0.2000324859977064 0.7175730286477594 0.20003248599770637 0.7175730286477594 0.09785070723014283
+0.2034217554145229 0.7154796782697028 0.20342175541452293 0.7154796782697028 0.0978637998903758
+0.20680729657336314 0.7133825972477444 0.20680729657336314 0.7133825972477444 0.09803700155781224
+0.2101889333397693 0.7112810147203986 0.2101889333397693 0.7112810147203986 0.0984120406096925
+0.21356973887211902 0.709175507405277 0.21356973887211902 0.709175507405277 0.09902061061352359
+0.21692197842621852 0.7029084303711257 0.2169219784262185 0.7029084303711257 0.10201335543638702
+0.2202666361505472 0.7008530660796504 0.2202666361505472 0.7008530660796505 0.10312534703838509
+0.22697422998795488 0.6898767299171569 0.22697422998795486 0.6898767299171569 0.10982166106974174
+0.22888160138215713 0.6874983367128978 0.2288816013821571 0.6874983367128978 0.11143345024260431
+0.23069498595951832 0.6818268452613869 0.2306949859595183 0.681826845261387 0.11502510682720035
+0.23143236232015008 0.6850332418800651 0.2314323623201501 0.6850332418800651 0.11315144998912997
+0.23556499774965037 0.673178836625843 0.23556499774965037 0.673178836625843 0.1205200567185918
+0.23828283622387317 0.6705451065180345 0.23828283622387317 0.6705451065180345 0.12209472569613337
+0.24098505266540607 0.6679086462828904 0.24098505266540607 0.6679086462828904 0.12356489449792198
+0.245711712070152 0.65905479234444 0.245711712070152 0.65905479234444 0.1282202375764969
+0.2484336657342234 0.6564837073134678 0.2484336657342234 0.6564837073134678 0.12916659083733362
+0.25115267056293783 0.653921169829467 0.25115267056293783 0.653921169829467 0.12994960827782595
+0.25389215569063134 0.651371417556366 0.25389215569063134 0.651371417556366 0.13056688341814204
+0.24367483500800038 0.6652854570231809 0.24367483500800038 0.6652854570231809 0.12489744754700087
+0.246367270192813 0.6626834084574386 0.246367270192813 0.6626834084574386 0.12606975208855187
+0.23352091481714343 0.6794228796963441 0.2335209148171434 0.6794228796963441 0.11665325997278857
+0.2363003223122193 0.6769075768359344 0.2363003223122193 0.6769075768359344 0.11830496784172019
+0.22375351215838418 0.6946401801523736 0.2237535121583842 0.6946401801523736 0.10680226042024844
+0.2235974245686435 0.6987512869322134 0.22359742456864354 0.6987512869322136 0.10449525514666948
+0.22695833670640397 0.6927476225232909 0.22695833670640395 0.6927476225232909 0.10817909699960182
+0.21694240254391373 0.7070661358569316 0.21694240254391373 0.7070661358569316 0.09988430334164579
+0.257279549332735 0.6524256357287088 0.25727954933273495 0.6524256357287088 0.12898341895145962
+0.26226285792630755 0.6436454385337654 0.26226285792630755 0.6436454385337654 0.13150669651645483
+0.26902880337845203 0.6289078672507707 0.26902880337845203 0.6289078672507707 0.13798313078377566
+0.271854290440873 0.6263915851748666 0.271854290440873 0.6263915851748666 0.13829898581819589
+0.27400985201279043 0.6205291903378215 0.27400985201279043 0.6205291903378215 0.14282767122017667
+0.27468197126385563 0.6238973521483311 0.2746819712638557 0.6238973521483312 0.13869068606967058
+0.28402099403524805 0.601629444592888 0.28402099403524805 0.6016294445928879 0.16345127553691527
+0.27616273760083576 0.6148363004465808 0.27616273760083576 0.6148363004465808 0.14827191519820995
+0.2787698117178789 0.6127270013881012 0.2787698117178789 0.6127270013881012 0.14914001060782142
+0.28128240962423545 0.6074816857909271 0.28128240962423545 0.6074816857909271 0.15526752004743105
+0.28092470634446665 0.6105080263931091 0.28092470634446665 0.6105080263931091 0.15069584355721566
+0.28431623554041424 0.6054572415850745 0.28431623554041424 0.6054572415850745 0.15621948322447013
+0.2768072556678093 0.6180705870157308 0.27680725566780934 0.6180705870157307 0.1435911382207993
+0.2650395810425984 0.641027837326762 0.26503958104259834 0.641027837326762 0.13162818432619453
+0.26698814230102424 0.6349306774410218 0.26698814230102424 0.6349306774410218 0.13447455830357155
+0.26780689960256104 0.6384214609386981 0.26780689960256104 0.6384214609386981 0.13168598916796717
+0.26977750888897445 0.6323625911367196 0.26977750888897445 0.6323625911367196 0.13462355187804434
+0.26019506415064203 0.6498492534864213 0.26019506415064203 0.6498492534864213 0.12923023624271393
+0.2630538586868141 0.6472154864745623 0.2630538586868141 0.6472154864745622 0.129358640663242
+0.42509659404072503 0.41271262989217883 0.42509659404072503 0.41271262989217883 0.6519537579365563
+0.42136864840016164 0.41237387125487257 0.4213686484001617 0.4123738712548725 0.6261700243788674
+0.4166753463308456 0.4126654331345239 0.4166753463308455 0.4126654331345239 0.5962558347506505
+0.4191678789985701 0.41352487974899016 0.4191678789985701 0.41352487974899016 0.6202806692918581
+0.4116036168600768 0.4127879768249453 0.4116036168600768 0.4127879768249452 0.5587152703892243
+0.41483529299704264 0.4143938120722181 0.41483529299704264 0.4143938120722181 0.5929778343666056
+0.4095170198818543 0.41499332125326993 0.40951701988185435 0.41499332125327 0.5515687136552726
+0.40562355868922895 0.4144154322419099 0.40562355868922895 0.41441543224190985 0.5164394849399092
+0.40238775223989964 0.4156582304135903 0.4023877522398997 0.41565823041359024 0.4918121382166573
+0.3965747813126851 0.41531147398532703 0.39657478131268503 0.41531147398532703 0.44245468645077823
+0.399642250662829 0.41705774120328043 0.399642250662829 0.4170577412032804 0.4701106357483204
+0.38985671040380765 0.4167383803665161 0.3898567104038077 0.4167383803665161 0.38917282660821634
+0.39380692865891165 0.4178560548845342 0.39380692865891165 0.4178560548845342 0.42057343385196827
+0.38783932614304806 0.41901005402604463 0.38783932614304806 0.41901005402604463 0.372006642679519
+0.38044215903205186 0.4199447840398809 0.38044215903205186 0.41994478403988095 0.31818273195578467
+0.3846103841288721 0.42017226496560867 0.3846103841288721 0.4201722649656086 0.346681120762744
+0.37827126271811773 0.42238835983351164 0.37827126271811773 0.42238835983351164 0.30013087379257636
+0.372630278617866 0.4246581781360668 0.3726302786178661 0.4246581781360668 0.2641683645711776
+0.37604809358801883 0.42423031119902155 0.37604809358801883 0.4242303111990216 0.2832592579353689
+0.3695691016414484 0.42687952693595904 0.3695691016414484 0.42687952693595904 0.2460405072780216
+0.3636428524003026 0.42905609470243083 0.3636428524003026 0.42905609470243083 0.2227123236518965
+0.3673288308992795 0.4294373181072631 0.3673288308992795 0.4294373181072631 0.23377498916568915
+0.3612776906087891 0.4317909285845437 0.3612776906087891 0.43179092858454377 0.2159686735344046
+0.35507922684780463 0.4344999120306034 0.35507922684780463 0.4344999120306034 0.21010839251338223
+0.3589432518821747 0.43462114108929795 0.3589432518821747 0.43462114108929795 0.21329325288483378
+0.35275085676897616 0.4375086928911512 0.35275085676897616 0.4375086928911512 0.21463155381253804
+0.3466656329314574 0.4407908624948357 0.3466656329314574 0.44079086249483573 0.22628484452058736
+0.3505387909700432 0.4405972937836114 0.3505387909700432 0.4405972937836114 0.22291655960286547
+0.34452139593456044 0.4438433028236416 0.3445213959345605 0.44384330282364154 0.23854007846789463
+0.33859184636304984 0.44674993222266424 0.3385918463630499 0.4467499322226642 0.25608841887583894
+0.33649518829734604 0.448699946470418 0.33649518829734604 0.448699946470418 0.2662403248223147
+0.3422744592918256 0.4469713479981167 0.3422744592918256 0.4469713479981167 0.2527874325616806
+0.3360253917436866 0.45140084367310485 0.3360253917436866 0.4514008436731048 0.2779012165485361
+0.33083304339958275 0.4548026755715199 0.33083304339958275 0.45480267557151993 0.2969950246454331
+0.3292934914185585 0.4576766620565398 0.3292934914185585 0.45767666205653973 0.3098399108792799
+0.3344988637852662 0.454427637788561 0.3344988637852662 0.454427637788561 0.2920402261232801
+0.3278482936357688 0.4605296788448892 0.3278482936357688 0.4605296788448892 0.3220639238025875
+0.32289380743780216 0.46391495434937374 0.3228938074378021 0.46391495434937374 0.3371539634226494
+0.32158914578167824 0.4669659915988668 0.32158914578167824 0.4669659915988668 0.3480804699403994
+0.32653113108489845 0.4634453612669722 0.32653113108489845 0.46344536126697217 0.33384341402054757
+0.32031700381309347 0.470041352796062 0.3203170038130935 0.470041352796062 0.3581884575201495
+0.3154236264113708 0.473778002819268 0.3154236264113708 0.473778002819268 0.3688908563407383
+0.31428098027570955 0.4769730315254885 0.31428098027570955 0.4769730315254885 0.3766884171341434
+0.319101815368863 0.47314452630974296 0.319101815368863 0.47314452630974296 0.3674068051994972
+0.31319883118645647 0.48019143480682386 0.31319883118645647 0.48019143480682386 0.38346373219556185
+0.3084461658129685 0.4842922733546873 0.3084461658129685 0.4842922733546873 0.3888734515849634
+0.3074709292488209 0.48765269171633513 0.3074709292488209 0.48765269171633513 0.39304152291369626
+0.31215444663223973 0.48345882965229126 0.31215444663223973 0.4834588296522913 0.3892111356180894
+0.3065620037245661 0.49103247111693865 0.30656200372456605 0.49103247111693865 0.39608126381798886
+0.30200614474483006 0.495447364439874 0.30200614474483006 0.4954473644398741 0.39591474193889337
+0.3011597672202569 0.4989204840111019 0.3011597672202569 0.4989204840111019 0.39622404389188265
+0.3057047320934742 0.49442626553319813 0.3057047320934742 0.4944262655331981 0.3979789576106623
+0.3004021133023014 0.5024737960434627 0.3004021133023014 0.5024737960434625 0.39542301807148816
+0.2963780256348521 0.5073533613213208 0.2963780256348521 0.5073533613213207 0.3901492887672517
+0.2957234042667101 0.5109470664462388 0.2957234042667101 0.5109470664462387 0.3867987185807409
+0.29987810389840025 0.5060271267163624 0.29987810389840025 0.5060271267163624 0.39363185898343583
+0.29490316737524935 0.5145338414145137 0.29490316737524935 0.5145338414145137 0.3823182580520011
+0.29195629676505924 0.5211211208095119 0.29195629676505924 0.5211211208095119 0.3705936324353931
+0.29170018979348467 0.5240741114477678 0.2917001897934846 0.5240741114477679 0.3653004900053727
+0.29399521378068716 0.5184164615356275 0.29399521378068716 0.5184164615356276 0.3764568698564507
+0.29106267341009134 0.5274292203460138 0.29106267341009134 0.5274292203460139 0.3583801132717382
+0.2903841223868319 0.5308666092960532 0.2903841223868319 0.5308666092960532 0.35066330836670895
+0.28973186499814124 0.5342414531665777 0.28973186499814124 0.5342414531665777 0.34254923484529737
+0.2891240124522653 0.5375200998195563 0.2891240124522653 0.5375200998195563 0.33422143072097804
+0.28869551069041954 0.5411474495737214 0.2886955106904195 0.5411474495737214 0.32461433433167125
+0.2879598807605897 0.5446073058671955 0.2879598807605897 0.5446073058671955 0.31512986729821074
+0.2874310832325209 0.5479817007107776 0.2874310832325209 0.5479817007107776 0.30564031985606605
+0.28708939148709994 0.5516961833522217 0.28708939148709994 0.5516961833522217 0.29492417428204204
+0.28682910205267886 0.5555759777574347 0.2868291020526788 0.5555759777574347 0.28354532939678184
+0.2867905309851853 0.5595293425732834 0.2867905309851853 0.5595293425732834 0.27182737286816344
+0.2854131822413653 0.5627704618382083 0.2854131822413653 0.5627704618382083 0.26246359227782434
+0.2858224183108982 0.565921639344775 0.2858224183108982 0.5659216393447749 0.2530773431267736
+0.2858416799266049 0.5696000421718228 0.28584167992660486 0.5696000421718228 0.24223986367795236
+0.28582735022536643 0.5733009204020753 0.2858273502253664 0.5733009204020753 0.23152373648683752
+0.2858208482090741 0.5769734842106429 0.2858208482090741 0.5769734842106429 0.22111939716465126
+0.2857781050869737 0.5806240209525295 0.2857781050869737 0.5806240209525296 0.21110631006567515
+0.28582726302766065 0.5842757550125873 0.28582726302766065 0.5842757550125873 0.2013995412662711
+0.2860748914709314 0.5880520721048473 0.2860748914709314 0.5880520721048473 0.1916669347256623
+0.28634904213038676 0.5917993329601998 0.28634904213038676 0.5917993329601998 0.1824623265774138
+0.28671248000450633 0.5955303668283355 0.2867124800045064 0.5955303668283355 0.17374902556526292
+0.2869958379067751 0.5992328167995461 0.28699583790677513 0.5992328167995461 0.16576061227919528
+0.42620898553346565 0.4171923378563087 0.4262089855334656 0.4171923378563087 0.7043223674037065
+0.4272169669086603 0.42140452781026166 0.4272169669086603 0.42140452781026166 0.7592543567536759
+0.44048261933858446 0.4015964731568558 0.44048261933858435 0.40159647315685587 0.565108368243235
+0.4410741193714729 0.3981766768277135 0.44107411937147295 0.3981766768277135 0.5370624882403437
+0.4426416460804719 0.3936335684277232 0.4426416460804719 0.3936335684277232 0.506483691082278
+0.4428559904088316 0.39635144481247675 0.4428559904088316 0.39635144481247675 0.5218335303371489
+0.44467028685793397 0.3889887155714248 0.4446702868579341 0.3889887155714247 0.48303731524500904
+0.44484055269616585 0.39233486377654286 0.44484055269616585 0.39233486377654286 0.4970063135236979
+0.44624363301574604 0.38614857230086874 0.44624363301574604 0.3861485723008688 0.4720135144896303
+0.44736382553456033 0.38879720406517904 0.44736382553456033 0.38879720406517904 0.47964180370551973
+0.4484352775205469 0.37994009695220493 0.4484352775205469 0.37994009695220493 0.45626037966888405
+0.4479983508623761 0.383682626999794 0.4479983508623761 0.38368262699979405 0.4646103015147469
+0.45332347919582705 0.37001376069974184 0.4533234791958271 0.37001376069974184 0.4423996828144876
+0.45120331115457984 0.3793170761024909 0.45120331115457984 0.3793170761024909 0.4551311617758175
+0.4522843070594642 0.37381257347055147 0.4522843070594642 0.37381257347055147 0.44708052671630766
+0.45241106648314583 0.376999154070027 0.4524110664831459 0.376999154070027 0.45151363823817403
+0.4578216708058926 0.3620943540364992 0.4578216708058926 0.3620943540364992 0.43346490885639133
+0.4601209685519755 0.36031832230622507 0.4601209685519755 0.36031832230622507 0.43065802569991873
+0.4580525269973569 0.3661539061299367 0.4580525269973568 0.36615390612993665 0.438853284992018
+0.45685630693027635 0.36978136957445235 0.4568563069302764 0.36978136957445235 0.44316857363999324
+0.4654806939312861 0.3544616873739737 0.4654806939312861 0.3544616873739737 0.4182134508259722
+0.4671984996889069 0.3518195665619124 0.4671984996889069 0.3518195665619124 0.41145252232595325
+0.46411933148181417 0.3575378893706491 0.46411933148181417 0.3575378893706491 0.42454500475067075
+0.4630263310826561 0.360441269986239 0.4630263310826561 0.360441269986239 0.4298328540879837
+0.48063287931903353 0.33892722193924546 0.48063287931903353 0.33892722193924546 0.3492298162202884
+0.47896892791895546 0.34210386783127494 0.47896892791895546 0.34210386783127494 0.36250039861346867
+0.47390065092127504 0.34521086633623627 0.47390065092127504 0.34521086633623627 0.38485092078316213
+0.47717081218356017 0.34534096277136145 0.4771708121835601 0.34534096277136145 0.3757358576913479
+0.4722115110326812 0.3484913253001248 0.4722115110326812 0.3484913253001248 0.39583088112697823
+0.4706738837828136 0.3517922133161583 0.47067388378281366 0.35179221331615823 0.4056965716389839
+0.48757852162665805 0.33320260351046466 0.487578521626658 0.33320260351046466 0.30618885363490306
+0.48584817137556224 0.3361593858864987 0.4858481713755623 0.3361593858864987 0.3210257942900072
+0.4925342755435912 0.33123443542367226 0.49253427554359114 0.33123443542367226 0.2767407866866067
+0.4908955784331386 0.33397388509075704 0.49089557843313864 0.33397388509075704 0.2914732004543457
+0.48409091211631655 0.3391781584050557 0.48409091211631655 0.3391781584050557 0.33582506573783316
+0.502555021617974 0.32351909548430624 0.502555021617974 0.3235190954843063 0.20561667573479772
+0.5002293966924273 0.32632326754390073 0.5002293966924273 0.32632326754390073 0.22396554889183415
+0.49800688331704873 0.32917100344558253 0.49800688331704873 0.32917100344558253 0.24229043997133728
+0.49597389688549387 0.33199425186505716 0.4959738968854939 0.33199425186505716 0.25976727947023764
+0.5161032362914759 0.31709187512861303 0.5161032362914759 0.3170918751286131 0.134522593224238
+0.510508082107354 0.3188224090506386 0.510508082107354 0.3188224090506386 0.15687779034762683
+0.5137773562584123 0.319740302073683 0.5137773562584123 0.3197403020736829 0.1451917108300078
+0.5082410413296559 0.32158025428218084 0.508241041329656 0.32158025428218084 0.17191882017957846
+0.5059839706239111 0.3243386852151353 0.5059839706239111 0.3243386852151353 0.18832075676720547
+0.5301242173278737 0.31161801082721213 0.5301242173278737 0.31161801082721213 0.14678417766487462
+0.5242680145986311 0.31297106767314603 0.524268014598631 0.31297106767314603 0.12741014197213382
+0.5274939597667418 0.31414761428090515 0.5274939597667418 0.31414761428090515 0.13891167433091908
+0.5217485275895736 0.3155457355992563 0.5217485275895736 0.3155457355992563 0.12722927535203168
+0.5193162267937962 0.31812118607532197 0.5193162267937962 0.31812118607532197 0.13079951608582208
+0.5451996333642035 0.30711472689534547 0.5451996333642035 0.3071147268953455 0.23686271186682142
+0.5389765803807832 0.30794979093475194 0.5389765803807832 0.30794979093475194 0.19417929913970658
+0.5422364264565898 0.3094268501428102 0.5422364264565899 0.3094268501428102 0.22033674155162197
+0.5361085814662829 0.3104130491214521 0.5361085814662828 0.3104130491214521 0.17959534787680687
+0.5333404992777585 0.3128847037295546 0.5333404992777585 0.3128847037295546 0.16652768919458952
+0.5544925241555535 0.30448165370809827 0.5544925241555535 0.30448165370809827 0.29869357673475233
+0.5514548680666531 0.3065484674144424 0.551454868066653 0.30654846741444247 0.2819396305448913
+0.548424192247743 0.30869851341114635 0.548424192247743 0.30869851341114635 0.26479274609849185
+0.5576140548278301 0.30625166729680414 0.5576140548278302 0.30625166729680414 0.3268132638717302
+0.5603423404987732 0.3071631184122872 0.5603423404987732 0.3071631184122872 0.34953580690501546
+0.5622367228312095 0.3096962772887749 0.5622367228312095 0.30969627728877486 0.3717578398558139
+0.5795750792523567 0.30410108847378875 0.5795750792523567 0.30410108847378875 0.46617626620137104
+0.5658350275301139 0.30824308558836 0.5658350275301139 0.30824308558836 0.3926324190518064
+0.569024052611033 0.306893853573569 0.569024052611033 0.306893853573569 0.4098955766733023
+0.5721709122327302 0.30587331182987904 0.5721709122327302 0.30587331182987904 0.42706489639231976
+0.575860330916176 0.3057040721259957 0.5758603309161759 0.30570407212599576 0.44993389625510577
+0.5737072952715744 0.30813032766701165 0.5737072952715744 0.30813032766701165 0.44529241046679946
+0.44473150834875674 0.4037949781523051 0.4447315083487568 0.4037949781523051 0.5743135165033064
+0.4487387741396726 0.4059464396654973 0.4487387741396726 0.4059464396654973 0.5783916792190178
+0.6334939330594612 0.2623965028862883 0.6334939330594612 0.2623965028862883 0.5417202466105379
+0.6299022454365726 0.26346798283832523 0.6299022454365727 0.26346798283832523 0.5351734153598865
+0.6263464572047568 0.2645998674190579 0.6263464572047567 0.2645998674190579 0.5282106361820088
+0.6228377338528351 0.2657548076368169 0.6228377338528351 0.26575480763681686 0.5208221098295011
+0.619367433156177 0.26693513265303936 0.619367433156177 0.26693513265303936 0.5130250627372926
+0.6061075529860811 0.27190263908434326 0.6061075529860811 0.27190263908434326 0.47930069748374393
+0.6159657468263666 0.26812750000892205 0.6159657468263666 0.26812750000892205 0.5049202980651489
+0.6126144419443115 0.26935003793087026 0.6126144419443115 0.26935003793087026 0.49653768283816596
+0.609330635289818 0.27061100372824437 0.609330635289818 0.27061100372824437 0.48799907405691906
+0.6029671257123861 0.27333412195536344 0.602967125712386 0.2733341219553634 0.4709545712189212
+0.5965460609108705 0.27635799384156096 0.5965460609108705 0.27635799384156096 0.4527661952982349
+0.5998289337212949 0.2748638975931437 0.5998289337212949 0.2748638975931437 0.4624608316353172
+0.5925230103208972 0.2815521876718457 0.592523010320897 0.2815521876718457 0.4513504050658476
+0.5841975568976412 0.29527138322821644 0.5841975568976413 0.2952713832282164 0.4585901352792647
+0.5836208733891626 0.2990012070916727 0.5836208733891626 0.2990012070916727 0.4694945730166263
+0.5830231530913712 0.30277231877649396 0.5830231530913713 0.30277231877649396 0.4806712315937461
+0.5886087282628167 0.28660144193187304 0.5886087282628168 0.28660144193187304 0.44983384834702417
+0.5880834567908041 0.2903265439801012 0.5880834567908041 0.2903265439801012 0.46052557320233806
+0.5875523345679634 0.2940413873498023 0.5875523345679633 0.2940413873498023 0.4714831533349732
+0.5919929652650583 0.2853039200824935 0.5919929652650583 0.28530392008249356 0.46170692752952963
+0.5959847577714649 0.28012849848392346 0.5959847577714649 0.28012849848392346 0.4625213924010639
+0.6371028403804032 0.2614043362547062 0.6371028403804032 0.2614043362547062 0.5478015042399584
+0.6406965150356508 0.2605047580622309 0.6406965150356508 0.2605047580622309 0.5533693936845205
+0.6442331780905597 0.25965303707452264 0.6442331780905598 0.25965303707452264 0.5582344196540979
+0.6476647512467055 0.25885573916125665 0.6476647512467055 0.25885573916125665 0.5623602014786223
+0.6508179566474156 0.25822335897864734 0.6508179566474156 0.25822335897864734 0.5658090646679219
+0.6539748028903941 0.25754358787362025 0.6539748028903941 0.25754358787362025 0.5684448549095452
+0.6572186059695504 0.25680774648357496 0.6572186059695504 0.25680774648357496 0.570930972946322
+0.6900613900331113 0.22688898781497152 0.6900613900331113 0.22688898781497155 0.5313025545313708
+0.6850437239332638 0.23022435137320985 0.6850437239332638 0.23022435137320985 0.5350045343303725
+0.6814250499532675 0.23072676270058978 0.6814250499532674 0.23072676270058978 0.5346561473308094
+0.6762278982417608 0.23478378188766083 0.6762278982417608 0.23478378188766083 0.5396549008781731
+0.6747373328529086 0.23827585164715812 0.6747373328529086 0.23827585164715812 0.5455254987016236
+0.6697006009417064 0.24218562392064016 0.6697006009417064 0.24218562392064016 0.5505709094450442
+0.6682706149504383 0.24566530891933216 0.6682706149504383 0.24566530891933216 0.5567635738524178
+0.6603565546939086 0.2563375690393495 0.6603565546939086 0.2563375690393495 0.5730661523916184
+0.6617602917696656 0.25291897134943303 0.6617602917696656 0.25291897134943303 0.5670769893829873
+0.6633227830936134 0.24952794415905818 0.6633227830936134 0.24952794415905818 0.5612190953300357
+0.6668213400215962 0.24912395398038267 0.6668213400215962 0.24912395398038267 0.5629629949201679
+0.6732768225568915 0.24176203616803546 0.6732768225568915 0.24176203616803546 0.5516063916789871
+0.6798952546227816 0.2342606094000281 0.6798952546227816 0.2342606094000281 0.540187696310492
+0.6888639950044566 0.22985021150358187 0.6888639950044566 0.22985021150358187 0.5353810196073184
+0.6967564099806071 0.22029718238690502 0.6967564099806071 0.22029718238690502 0.524950948542391
+0.7009863488229419 0.22027592979106356 0.7009863488229419 0.22027592979106356 0.526326015453844
+0.6949663429126552 0.2236678714662212 0.6949663429126552 0.22366787146622122 0.5283139726523752
+0.6930243772491729 0.22613864419110827 0.6930243772491729 0.22613864419110827 0.5308862884556058
+0.7217573221755869 0.19325184782454288 0.7217573221755869 0.19325184782454288 0.5136144311792497
+0.7196653603122393 0.19664206877422333 0.7196653603122393 0.19664206877422333 0.5155746454333404
+0.7175738217318535 0.20003068342686536 0.7175738217318535 0.20003068342686534 0.5172495689256477
+0.715482856219381 0.2034145921358015 0.715482856219381 0.2034145921358015 0.5187415671432949
+0.713393807028499 0.20679062071820145 0.713393807028499 0.20679062071820145 0.52016327400479
+0.7113139475776508 0.2101575223050091 0.7113139475776508 0.2101575223050091 0.5216346879298791
+0.7092554889913206 0.2135158372924221 0.7092554889913206 0.2135158372924221 0.5232741614602645
+0.7072291456112446 0.2168698831531747 0.7072291456112446 0.2168698831531747 0.525189325559729
+0.705233752205095 0.22023012989994198 0.705233752205095 0.22023012989994198 0.5274727119970047
+0.728033472803325 0.18986146452945366 0.728033472803325 0.18986146452945366 0.5133900481151131
+0.725941422594096 0.1932518478246075 0.725941422594096 0.1932518478246075 0.5158434372408115
+0.7343096234309506 0.18647108123429157 0.7343096234309506 0.18647108123429157 0.5120900587952693
+0.7322175732217434 0.18986146452945907 0.7322175732217434 0.18986146452945907 0.5152062186783053
+0.7405857740585663 0.18308069793912285 0.7405857740585663 0.18308069793912285 0.5095603452469271
+0.7384937238493611 0.1864710812342918 0.7384937238493611 0.1864710812342918 0.5134220833863123
+0.7468619246861817 0.1796903146439539 0.7468619246861817 0.1796903146439539 0.5057921287009847
+0.7447698744769767 0.18308069793912285 0.7447698744769767 0.18308069793912285 0.5103825680741623
+0.7531380753137972 0.17629993134878497 0.7531380753137972 0.17629993134878497 0.5009253352897454
+0.7510460251045918 0.1796903146439539 0.7510460251045918 0.1796903146439539 0.5061284893850758
+0.7615062761506176 0.16951916475844708 0.7615062761506176 0.16951916475844708 0.48945292631845566
+0.7594142259414125 0.17290954805361602 0.7594142259414126 0.17290954805361602 0.4952289356679935
+0.7573221757322074 0.17629993134878497 0.7573221757322074 0.17629993134878497 0.5008439544913817
+0.7677824267782328 0.16612878146327814 0.7677824267782328 0.16612878146327814 0.4833307146112766
+0.7656903765690277 0.16951916475844708 0.7656903765690277 0.16951916475844708 0.4890597178864036
+0.7740585774058482 0.1627383981681092 0.7740585774058482 0.1627383981681092 0.47739947242011277
+0.7719665271966429 0.16612878146327814 0.7719665271966428 0.16612878146327814 0.4828038491402546
+0.7803347280334635 0.15934801487294026 0.7803347280334635 0.15934801487294026 0.4719587218212304
+0.7782426778242585 0.1627383981681092 0.7782426778242585 0.1627383981681092 0.47680926524730866
+0.7866108786610786 0.15595763157777132 0.7866108786610786 0.15595763157777132 0.4671678291138593
+0.7845188284518736 0.15934801487294026 0.7845188284518736 0.15934801487294026 0.4713206364427549
+0.7928870292886943 0.15256724828260237 0.7928870292886944 0.15256724828260237 0.46301219514068287
+0.790794979079489 0.15595763157777132 0.790794979079489 0.15595763157777132 0.46643070387587743
+0.7991631799163095 0.14917686498743343 0.7991631799163095 0.14917686498743343 0.4593040139046067
+0.7970711297071045 0.15256724828260237 0.7970711297071045 0.15256724828260237 0.4620603842013624
+0.8054394706276025 0.14578639149326558 0.8054394706276025 0.14578639149326558 0.45571958939978824
+0.8033474690059794 0.14917674350319618 0.8033474690059794 0.14917674350319618 0.45797428906352783
+0.813807531380745 0.13900571510192664 0.813807531380745 0.13900571510192664 0.45024711443764337
+0.8117156693920801 0.14239597720307387 0.8117156693920801 0.14239597720307387 0.45186695213931466
+0.8096240433327186 0.1457860571376245 0.8096240433327185 0.1457860571376245 0.4538307368457181
+0.8200838683173286 0.13561526334496746 0.8200838683173286 0.13561526334496746 0.44571848673285513
+0.8179919072223298 0.13900563485743342 0.81799190722233 0.13900563485743342 0.4473702967200461
+0.8263603998335184 0.13222473132781284 0.8263603998335184 0.13222473132781284 0.4401411029646389
+0.8242690260125896 0.13561487597425992 0.8242690260125896 0.13561487597425992 0.4419570033048768
+0.8326372053247036 0.1288338652785598 0.8326372053247036 0.1288338652785598 0.43353254007521674
+0.8305460972096236 0.1322238292629106 0.8305460972096236 0.13222382926291057 0.4355357808388986
+0.838914495973366 0.1254426901458571 0.838914495973366 0.1254426901458571 0.4261704340587215
+0.8368237163582227 0.12883181397527577 0.8368237163582227 0.12883181397527577 0.42825200651833467
+0.8451919801204671 0.12205192813538436 0.8451919801204671 0.12205192813538436 0.4185999347718992
+0.8431019921277397 0.1254399836478837 0.8431019921277397 0.1254399836478837 0.42051638039394984
+0.8514683904111843 0.11866075492186999 0.8514683904111843 0.11866075492186999 0.4115998172514405
+0.8493795712345373 0.12204797152397041 0.8493795712345374 0.12204797152397041 0.41299553344677403
+0.8577446689188397 0.11527167549783213 0.8577446689188397 0.11527167549783213 0.4060830394933474
+0.8556534906698291 0.11865768577269091 0.8556534906698291 0.11865768577269091 0.40654816416208334
+0.8640185498360532 0.11187135354545981 0.8640185498360532 0.11187135354545981 0.40297296190919146
+0.86192177064459 0.11525603176636436 0.86192177064459 0.11525603176636436 0.4021114507613972
+0.8702938238047685 0.10846117209572172 0.8702938238047685 0.10846117209572172 0.4029915538955186
+0.8681871054637232 0.11184130404501767 0.8681871054637232 0.11184130404501767 0.4005174067400477
+0.8744737420388885 0.10842516541932966 0.8744737420388885 0.10842516541932966 0.40230803090709005
+0.8765902600184857 0.10504886453480022 0.8765902600184857 0.10504886453480022 0.4065029951918278
+0.8786929207244182 0.10166993886391414 0.8786929207244182 0.10166993886391414 0.41142583626923196
+0.8849728568775349 0.09825166187187262 0.8849728568775349 0.09825166187187262 0.41968526495630504
+0.8828877896218629 0.10163761727729892 0.8828877896218629 0.10163761727729892 0.41339699653127715
+0.8912557693915489 0.09482785658852919 0.8912557693915489 0.0948278565885292 0.4302469176091863
+0.8891528956254199 0.09820738623248255 0.8891528956254199 0.09820738623248255 0.42306383960211447
+0.895415898221315 0.09479391966925226 0.895415898221315 0.09479391966925226 0.43443284627759476
+0.8974800976157907 0.09141760059646228 0.8974800976157907 0.0914176005964623 0.44185852288405725
+0.9016060797396321 0.09133326690158769 0.901606079739632 0.0913332669015877 0.4463080434267051
+0.9036517149357719 0.08790865586371 0.9036517149357719 0.08790865586371 0.4534309904420933
+0.9099326822679288 0.08452650445744106 0.9099326822679288 0.08452650445744105 0.4635116586369921
+0.9077096508839443 0.08782872320497008 0.9077096508839443 0.08782872320497008 0.45737078941944714
+0.9140149754837804 0.08428188858368979 0.9140149754837804 0.08428188858368979 0.466689865097546
+0.9160660645951049 0.08067323526993003 0.916066064595105 0.08067323526993003 0.4714068961166053
+0.9193742527666717 0.08052062233302959 0.9193742527666717 0.08052062233302959 0.4726285798989637
+0.9223860503280636 0.07799074963239785 0.9223860503280638 0.07799074963239784 0.4750805199997172
+0.9261211397926481 0.076944996272022 0.9261211397926481 0.076944996272022 0.47505946106268115
+0.9288535106992872 0.07393629852104822 0.9288535106992873 0.07393629852104822 0.47526166648023527
+0.9319195917044062 0.07126029410696459 0.9319195917044062 0.07126029410696459 0.4735319450857624
+0.9355591864758224 0.06903968547136652 0.9355591864758225 0.06903968547136652 0.4697508726434773
+0.9389315982571995 0.06713160095827213 0.9389315982571995 0.06713160095827213 0.4648455715195004
+0.9422562273121692 0.06507856530224583 0.9422562273121692 0.06507856530224583 0.45868678439790816
+0.9455977668298394 0.06287841683766693 0.9455977668298395 0.06287841683766693 0.4510692583863574
+0.949116918092428 0.0608034943028417 0.949116918092428 0.0608034943028417 0.44197903869680405
+0.9525665148072867 0.0586705742863047 0.9525665148072867 0.0586705742863047 0.43181371921417827
+0.9559265210882554 0.056548570006900944 0.9559265210882554 0.056548570006900944 0.42090636473598114
+0.9593177607312224 0.05450056583441718 0.9593177607312224 0.05450056583441718 0.40924231029791985
+0.9627361333727252 0.05240776935825862 0.9627361333727252 0.05240776935825862 0.3968490268057688
+0.9661381455227138 0.05029384854302671 0.9661381455227138 0.05029384854302671 0.38406800761975823
+0.9695224836576468 0.04820373663405737 0.9695224836576468 0.048203736634057366 0.371198377938772
+0.9728985802320084 0.0461024604018333 0.9728985802320084 0.0461024604018333 0.35837719043434985
+0.9762800260934809 0.04399584641445332 0.9762800260934809 0.04399584641445332 0.34581460436362893
+0.9796668571568787 0.04188766937091775 0.9796668571568787 0.04188766937091775 0.3337474392546084
+0.983054350275438 0.039784302520582654 0.983054350275438 0.039784302520582654 0.32242264044944463
+0.9864427470101903 0.037684229435177415 0.9864427470101903 0.037684229435177415 0.3120436614023081
+0.989829634537144 0.03558555255864199 0.989829634537144 0.03558555255864199 0.30278863284304686
+0.9932150728921556 0.033495164064231885 0.9932150728921556 0.033495164064231885 0.29481226612255357
+0.03764872438429453 0.9932206563469191 0.03764872438429453 0.9932206563469191 0.0717105413508128
+0.03974272286278246 0.9898302674742557 0.03974272286278246 0.9898302674742557 0.07378110433974285
+0.04183826759937479 0.986439181500301 0.04183826759937479 0.986439181500301 0.07621188861327816
+0.0439334863346744 0.9830480281385414 0.0439334863346744 0.9830480281385414 0.07894002662789266
+0.046028089860692234 0.9796568122196706 0.046028089860692234 0.9796568122196706 0.0818965129127585
+0.04812139322246451 0.9762658517803869 0.04812139322246451 0.9762658517803869 0.08500847142154182
+0.05020920502092043 0.9728769336386488 0.05020920502092043 0.9728769336386488 0.08819967138704558
+0.05230125523012545 0.96948655034348 0.05230125523012546 0.96948655034348 0.0914052449855683
+0.05439330543933048 0.9660961670483111 0.05439330543933047 0.9660961670483111 0.09455364907513485
+0.05649319695893925 0.9627015663032159 0.05649319695893925 0.9627015663032159 0.09758616708576338
+0.058591398051211656 0.9593079771972639 0.058591398051211656 0.959307977197264 0.10043534050339593
+0.06068465641088704 0.955912772136504 0.06068465641088704 0.955912772136504 0.1030468019023258
+0.06276954641528136 0.9525137364436252 0.06276954641528136 0.9525137364436252 0.1053724995596614
+0.06484513321053176 0.9491331616472163 0.06484513321053176 0.9491331616472163 0.10736039594609238
+0.0669062164128306 0.9457577229035038 0.06690621641283058 0.9457577229035038 0.10898673303905528
+0.06906693521731294 0.9423587437293552 0.06906693521731294 0.9423587437293551 0.1102366846974515
+0.07118707151856962 0.9389857097976013 0.07118707151856962 0.9389857097976012 0.11105488977847915
+0.07323586362017452 0.9356576019070678 0.07323586362017452 0.9356576019070678 0.11144423282282463
+0.07532443801668186 0.9323942971332279 0.07532443801668186 0.9323942971332279 0.11140405750780956
+0.07742418995222247 0.9289790787151384 0.07742418995222246 0.9289790787151384 0.11090609826803734
+0.07985713848085806 0.9255033818362586 0.07985713848085806 0.9255033818362586 0.10990721412502112
+0.08221269724553633 0.9223322578611248 0.08221269724553633 0.9223322578611249 0.10854212392203465
+0.08413135339868565 0.9191169608727613 0.08413135339868565 0.9191169608727613 0.10686399213356933
+0.08603493153800508 0.9156860114842414 0.08603493153800508 0.9156860114842414 0.10477770889057146
+0.08785066378904698 0.9118461774722184 0.08785066378904696 0.9118461774722186 0.10211409519295625
+0.09044751546732455 0.9083167143258479 0.09044751546732455 0.9083167143258478 0.09898405262698813
+0.0927225444381174 0.905069635460923 0.0927225444381174 0.905069635460923 0.09591736871905705
+0.09497339338604094 0.8992264289771709 0.09497339338604094 0.8992264289771709 0.09064444505228365
+0.09467796757400437 0.9025920799258108 0.09467796757400437 0.9025920799258108 0.09336887893161644
+0.09846411203097931 0.8931588815011969 0.09846411203097931 0.8931588815011969 0.08447161192013998
+0.09836288062876541 0.8971114907528435 0.09836288062876541 0.8971114907528435 0.08780139744006767
+0.10179546912935326 0.8870887261094339 0.10179546912935326 0.8870887261094339 0.07850069154640131
+0.10172909480275927 0.8910596284735492 0.10172909480275927 0.8910596284735491 0.08178800783426071
+0.10520496342259705 0.8808616671316875 0.10520496342259707 0.8808616671316875 0.07301829986154125
+0.10558129804586361 0.8852525280689117 0.1055812980458636 0.8852525280689117 0.07634078558808542
+0.10852533082321891 0.8787553057052284 0.10852533082321891 0.8787553057052283 0.07135032626340831
+0.11170036977790893 0.8725700679638255 0.11170036977790891 0.8725700679638254 0.06794474878508551
+0.11176056092136538 0.8767252428160606 0.1117605609213654 0.8767252428160607 0.07031088198604546
+0.11517636440847097 0.8661255847669316 0.11517636440847097 0.8661255847669317 0.06627248451306521
+0.11508523670697596 0.8702820436472929 0.11508523670697594 0.870282043647293 0.06776640504549485
+0.11858751645357095 0.8598928661598619 0.11858751645357095 0.859892866159862 0.06660229055746035
+0.11855026108636053 0.8640980190781873 0.11855026108636053 0.8640980190781873 0.06724476292285275
+0.12201201444226188 0.8535851687083843 0.12201201444226188 0.8535851687083843 0.06864388373846964
+0.1219735160067059 0.8577862894864414 0.1219735160067059 0.8577862894864413 0.0684919501928679
+0.12541171748690882 0.8472971468195221 0.12541171748690882 0.8472971468195221 0.07194932514715151
+0.12539745120099022 0.8514920660929034 0.12539745120099022 0.8514920660929034 0.07122373649058665
+0.12880282425158757 0.8410262202593018 0.12880282425158754 0.8410262202593018 0.07600480653911808
+0.12879392557813452 0.8452115923930394 0.12879392557813452 0.8452115923930394 0.0749326816160349
+0.13220410984086392 0.8347566710696764 0.13220410984086392 0.8347566710696764 0.08035106132036446
+0.13218775150504772 0.838954233382346 0.13218775150504772 0.838954233382346 0.0791369017394754
+0.1356061406901525 0.8284699644911887 0.1356061406901525 0.8284699644911887 0.08460863507396398
+0.13559718546483882 0.8326708554950296 0.13559718546483882 0.8326708554950296 0.08344310254637875
+0.13900159312768065 0.8221825701417719 0.13900159312768065 0.8221825701417719 0.08849485911877579
+0.1389984849137145 0.8263750111618001 0.1389984849137145 0.8263750111618001 0.08751011318206121
+0.1423898944621453 0.8200896947513173 0.1423898944621453 0.8200896947513173 0.0911112741745478
+0.14577998283435642 0.8138154645335819 0.14577998283435642 0.8138154645335819 0.0941203597953757
+0.14577568242259747 0.8180036397320022 0.1457756824225975 0.8180036397320022 0.09358584540832672
+0.14917334994776785 0.8075371249135398 0.14917334994776785 0.8075371249135398 0.09648032467725424
+0.14916904533330516 0.8117277678991758 0.1491690453333052 0.8117277678991758 0.0962540129483661
+0.15256580909762055 0.8012576410957598 0.15256580909762055 0.8012576410957598 0.09818203337703463
+0.15256374115466234 0.8054452321142898 0.15256374115466234 0.8054452321142896 0.09826686524936566
+0.15595711606503934 0.7949798723618405 0.15595711606503934 0.7949798723618405 0.0992610606508778
+0.1559562688878214 0.7991652399501565 0.1559562688878214 0.7991652399501565 0.09963232046873939
+0.15934785001641835 0.78870315919264 0.15934785001641835 0.78870315919264 0.09978423483899501
+0.15934754826083083 0.7928876586162463 0.15934754826083083 0.7928876586162463 0.10039722672624847
+0.1627383233667088 0.7824268546550556 0.1627383233667088 0.7824268546550556 0.09983908776771934
+0.1627381724113373 0.7866111008651208 0.16273817241133728 0.7866111008651208 0.10063322769212206
+0.16612874750841747 0.776150682682906 0.16612874750841747 0.776150682682906 0.09952625826770244
+0.16612866941088858 0.7803348873860482 0.16612866941088858 0.7803348873860482 0.10042909291511114
+0.16951915566401543 0.7698744989181727 0.16951915566401543 0.7698744989181727 0.09895343814975453
+0.16951913260807785 0.7740586494110223 0.16951913260807785 0.7740586494110223 0.0998845719782759
+0.1729095476770217 0.7635983373156267 0.1729095476770217 0.7635983373156267 0.09823127111355123
+0.1729095462259399 0.767782463791885 0.1729095462259399 0.767782463791885 0.09910631067921073
+0.1762999337208526 0.7615062909316213 0.1762999337208526 0.7615062909316213 0.09820522864325403
+0.17969031590491624 0.755230130124639 0.17969031590491624 0.755230130124639 0.09729505833152764
+0.17969031875911326 0.75941424075631 0.17969031875911326 0.75941424075631 0.09803088752924262
+0.18308069835330557 0.7489539760904734 0.18308069835330557 0.7489539760904734 0.09649118464184507
+0.18308069928982762 0.7531380790973276 0.18308069928982762 0.7531380790973276 0.09698095708705823
+0.18647108134650456 0.7426778245318619 0.18647108134650456 0.7426778245318619 0.09590890931977868
+0.18647108159339354 0.7468619254840959 0.18647108159339354 0.7468619254840959 0.09608163388186002
+0.18986146455728029 0.7364016736955992 0.18986146455728029 0.7364016736955992 0.09566010774505652
+0.18986146462001185 0.7405857742228205 0.18986146462001185 0.7405857742228205 0.09545781336134616
+0.1932518478306963 0.7301255230237591 0.1932518478306963 0.7301255230237591 0.09584762768050416
+0.1932518478440486 0.734309623463879 0.1932518478440486 0.734309623463879 0.09522975732599735
+0.19664223112105114 0.7238493723871565 0.19664223112105114 0.7238493723871565 0.09655757532249921
+0.1966422311237808 0.7280334728098777 0.1966422311237808 0.7280334728098777 0.09550456788857052
+0.20003257752556433 0.7217572655385364 0.20003257752556433 0.7217572655385364 0.09636577947374458
+0.20342212010359717 0.7196641492144308 0.20342212010359714 0.7196641492144308 0.09628439213479206
+0.20680883988840504 0.71756850933533 0.20680883988840507 0.71756850933533 0.09636451660780353
+0.21019103636652367 0.7154674759865233 0.21019103636652367 0.7154674759865233 0.09665315428412137
+0.213572756566664 0.7133627302760446 0.213572756566664 0.7133627302760446 0.09718718868375449
+0.21696697761178393 0.7112429366166141 0.21696697761178393 0.7112429366166141 0.0979984921422432
+0.2202884722121322 0.7049708295856479 0.22028847221213219 0.7049708295856479 0.10100060324813527
+0.22351735976664178 0.7028232247735862 0.22351735976664178 0.702823224773586 0.10237316379772111
+0.22658984286163597 0.7007557623317204 0.22658984286163597 0.7007557623317204 0.10388939005382657
+0.22969181996491317 0.690700230605969 0.22969181996491317 0.690700230605969 0.10970319316287215
+0.23214018890727983 0.6882642469700965 0.23214018890727983 0.6882642469700965 0.11143806210340453
+0.2341730897828482 0.6829401699983931 0.2341730897828482 0.6829401699983931 0.11469355859801524
+0.2341329409667842 0.6859940601354431 0.2341329409667842 0.6859940601354431 0.11300398521429797
+0.23901878348769579 0.6742645818542098 0.23901878348769579 0.6742645818542098 0.11996155790812657
+0.241708288334496 0.6715902726560249 0.241708288334496 0.6715902726560249 0.12152590233898376
+0.24436872016325994 0.6689296319369565 0.24436872016325992 0.6689296319369565 0.12294607323770769
+0.24908493928880163 0.6601128352161357 0.24908493928880163 0.6601128352161357 0.12706205687889757
+0.25181283755706374 0.6575501613354612 0.2518128375570638 0.6575501613354612 0.12787160436992726
+0.25453267806287955 0.6549737450031766 0.25453267806287955 0.6549737450031766 0.12851846785926077
+0.25786378418410993 0.6559642120582836 0.25786378418411 0.6559642120582837 0.12732378078979154
+0.24701222571144274 0.6662958423362215 0.24701222571144274 0.6662958423362215 0.12419876254612604
+0.2496797978329449 0.6636976293217994 0.2496797978329449 0.6636976293217994 0.12526640267442232
+0.23708681122762 0.6807435430607541 0.23708681122761996 0.6807435430607541 0.11626959394139925
+0.23977706082295017 0.6780615824313344 0.23977706082295017 0.6780615824313344 0.11803828578629816
+0.22710957948533506 0.6967259162130596 0.22710957948533506 0.6967259162130597 0.10608317143672277
+0.23020897552202327 0.6937321325225275 0.23020897552202327 0.6937321325225275 0.10821254898244094
+0.22038128671128607 0.7091162232159883 0.22038128671128607 0.7091162232159883 0.0991004994441076
+0.26083547530773865 0.6534616424863154 0.26083547530773865 0.6534616424863154 0.12757246660198082
+0.2658692211945029 0.6445594102362373 0.2658692211945029 0.6445594102362372 0.12939833461828443
+0.2725650546498539 0.6298116580307588 0.2725650546498539 0.6298116580307588 0.13479916491658753
+0.2753498715844942 0.6272771744148039 0.2753498715844942 0.6272771744148039 0.13504441249144586
+0.27746509224134597 0.6213796982732867 0.27746509224134597 0.6213796982732865 0.1392784894177368
+0.278126932067494 0.6247500160331142 0.278126932067494 0.6247500160331142 0.13541063414164525
+0.2873021385408549 0.6030257326587702 0.2873021385408549 0.6030257326587702 0.15820964692249193
+0.2796166131721921 0.6155334868106761 0.27961661317219205 0.6155334868106762 0.14463662606340774
+0.2822445432867361 0.6129458320915367 0.28224454328673604 0.6129458320915367 0.1461160000739092
+0.28425545662777535 0.609920406218779 0.28425545662777535 0.609920406218779 0.14901704438627808
+0.2875919213748507 0.6070205996068105 0.2875919213748506 0.6070205996068107 0.15105888923792254
+0.2802151226001653 0.6188581501254449 0.2802151226001653 0.6188581501254449 0.14007365354241016
+0.26864686889308537 0.6419145645106218 0.26864686889308537 0.6419145645106218 0.12936327211470566
+0.2705672692503801 0.6358254901122412 0.27056726925038005 0.6358254901122412 0.1317177176167824
+0.27139460854937264 0.6392865344307161 0.27139460854937264 0.639286534430716 0.12928848289711337
+0.2733201466094271 0.6332421821613955 0.2733201466094271 0.6332421821613955 0.13176386622701097
+0.26379521382030563 0.6508638503935658 0.26379521382030563 0.6508638503935656 0.12762490513714272
+0.2667038122643721 0.6481208391169941 0.2667038122643721 0.6481208391169941 0.1276149576869833
+0.4215882474379154 0.4159077249199764 0.4215882474379154 0.41590772491997635 0.6580003468722432
+0.4179196053266341 0.415748638229851 0.4179196053266341 0.415748638229851 0.6269161873105404
+0.4128939906287068 0.41605723346932016 0.41289399062870674 0.41605723346932016 0.5858279776349202
+0.415733972552473 0.4169430509664017 0.415733972552473 0.4169430509664017 0.6159387887995064
+0.40803795171786933 0.41731770585518696 0.40803795171786933 0.41731770585518696 0.5469922211518307
+0.4112103638886487 0.41801272982577764 0.4112103638886487 0.41801272982577764 0.5795713677530118
+0.4050289027459639 0.4173591762272202 0.4050289027459639 0.4173591762272202 0.5192429039440664
+0.4025461168829175 0.4179845523351684 0.4025461168829175 0.4179845523351684 0.49752725707604084
+0.40710683182360186 0.41926508648387095 0.40710683182360186 0.41926508648387095 0.5439179830998344
+0.40110854603718776 0.42008907725914585 0.40110854603718776 0.42008907725914585 0.4868570219382747
+0.397496267190313 0.4189337758851681 0.397496267190313 0.4189337758851681 0.45262997978314085
+0.39493983546516964 0.42087325597506753 0.39493983546516964 0.4208732559750676 0.4296467630616128
+0.39102507121992813 0.42045867211898674 0.39102507121992813 0.42045867211898674 0.3962394829240284
+0.3878817918355113 0.4215162494048094 0.3878817918355113 0.4215162494048094 0.3693848343454051
+0.3929492872348913 0.42306301604080443 0.3929492872348913 0.4230630160408044 0.40998137343531676
+0.38199969358860164 0.4230457322901357 0.38199969358860164 0.4230457322901357 0.3232967811230752
+0.3860164289871569 0.42377146631006773 0.3860164289871569 0.42377146631006773 0.3512052718245788
+0.37252293310233564 0.4277724343461087 0.37252293310233564 0.4277724343461086 0.25768746088404415
+0.3793153479673577 0.4259018874927811 0.3793153479673577 0.4259018874927811 0.2995168726510881
+0.37556756089878424 0.42710590290169664 0.37556756089878424 0.42710590290169664 0.2746761402303974
+0.37088852821715684 0.4299171417457881 0.37088852821715684 0.4299171417457881 0.24657024976764577
+0.36509086146563696 0.43211679140201725 0.36509086146563696 0.43211679140201725 0.22437155717567955
+0.3687657251095984 0.4323383020010705 0.3687657251095984 0.4323383020010705 0.23498233113873176
+0.36280760284613245 0.43484351316246705 0.36280760284613245 0.43484351316246705 0.21864686707705147
+0.35665648189176996 0.43755825983062174 0.35665648189176996 0.43755825983062174 0.2149999277057264
+0.36044540990651286 0.4376810337260355 0.36044540990651286 0.43768103372603556 0.2171166049148754
+0.35444523366310077 0.44051634655316557 0.35444523366310077 0.44051634655316557 0.22081804116597326
+0.34841492806969904 0.4437164855962173 0.34841492806969904 0.4437164855962173 0.23420629325780287
+0.35230125648283106 0.4435337143039205 0.3523012564828311 0.44353371430392047 0.23021867636857538
+0.34626307712407106 0.44687017308613425 0.34626307712407106 0.44687017308613425 0.24784827095276377
+0.33957871104576104 0.45035428562654933 0.339578711045761 0.4503542856265494 0.2696636773139391
+0.344054675677414 0.4501647210166254 0.34405467567741393 0.45016472101662547 0.2636155490411434
+0.3382199212559352 0.45392675770277024 0.3382199212559352 0.4539267577027703 0.28613418950229624
+0.3328260373249299 0.4573984480836036 0.3328260373249299 0.4573984480836036 0.305871664727329
+0.3314515323919709 0.46015522631849254 0.3314515323919709 0.46015522631849254 0.31816318727935405
+0.3365155708882145 0.45717331209295975 0.33651557088821443 0.4571733120929597 0.3016123092795077
+0.32996057335512896 0.46298550069560607 0.32996057335512896 0.46298550069560607 0.3302459792274335
+0.32529684224537797 0.4664530423483514 0.32529684224537797 0.46645304234835144 0.3452390125725299
+0.3239946166893298 0.46946963085367255 0.3239946166893298 0.46946963085367255 0.3558146777384641
+0.32896966660540694 0.4658580261817552 0.32896966660540694 0.46585802618175526 0.3416723800436639
+0.3227448588626566 0.472520286451102 0.32274485886265664 0.47252028645110206 0.365537990048503
+0.3179566080910481 0.4762746286413863 0.3179566080910481 0.4762746286413863 0.37567231030569476
+0.3168770422152971 0.47942929661095857 0.3168770422152971 0.47942929661095857 0.3829308245527036
+0.3215817116487243 0.4755869102755784 0.3215817116487243 0.47558691027557837 0.37427272369646675
+0.3158308570219659 0.4826347767070347 0.3158308570219659 0.4826347767070347 0.38917375945521465
+0.3111693769707699 0.48675031799863283 0.3111693769707699 0.48675031799863283 0.39384591211662373
+0.3102417917610882 0.49006998881818303 0.3102417917610882 0.49006998881818303 0.3973503462174927
+0.31483594797520886 0.4858629765185898 0.3148359479752089 0.48586297651858973 0.3942934887019274
+0.3093727865694483 0.493411189058895 0.3093727865694483 0.493411189058895 0.3997036738763524
+0.30489368170402237 0.49783793040712415 0.30489368170402237 0.49783793040712415 0.398733962102173
+0.30413314211598874 0.5013019572378421 0.30413314211598874 0.5013019572378421 0.3983491632685936
+0.3085641588519041 0.49676329955706505 0.3085641588519041 0.49676329955706505 0.40089932652261284
+0.3034607052545007 0.5048085069593928 0.3034607052545007 0.5048085069593928 0.3968364960253196
+0.2993027955690783 0.5096043843579726 0.2993027955690783 0.5096043843579726 0.39066122604632225
+0.2986558235416551 0.5131743805359225 0.29865582354165504 0.5131743805359225 0.38657737740765824
+0.3028862747197707 0.508297364245094 0.3028862747197707 0.508297364245094 0.39425543595241463
+0.2979587272237321 0.516774397005753 0.2979587272237321 0.516774397005753 0.3814159824983005
+0.294675728129255 0.5222034426049814 0.29467572812925497 0.5222034426049814 0.37046104460113854
+0.29437118997152617 0.5258558032688535 0.29437118997152617 0.5258558032688535 0.3633142800446721
+0.29781676732235646 0.5204351998360015 0.29781676732235646 0.5204351998360015 0.37546764509114966
+0.29384131128970886 0.529402232483576 0.29384131128970886 0.529402232483576 0.35548986135169186
+0.29162784875545 0.539341876823789 0.29162784875545 0.539341876823789 0.3300693927533369
+0.2932481658275925 0.5328933820362521 0.2932481658275925 0.5328933820362521 0.3471292813842605
+0.2925535676176597 0.5360950094913811 0.29255356761765977 0.5360950094913811 0.3388803044038746
+0.2912541002353733 0.5428791359547641 0.2912541002353733 0.5428791359547641 0.32033576233046174
+0.29079253547580414 0.5463345082233729 0.29079253547580414 0.5463345082233729 0.3104743907558644
+0.29038104242848534 0.5498414488338443 0.29038104242848534 0.5498414488338444 0.3002017323801309
+0.2899682724198358 0.5534352601127585 0.2899682724198358 0.5534352601127585 0.28947769123937617
+0.28966512041251347 0.5569565166672453 0.2896651204125135 0.5569565166672453 0.2788502084307178
+0.29014306948294566 0.5600043152821186 0.29014306948294566 0.5600043152821186 0.269293434637146
+0.28877262488689726 0.5632714735730094 0.2887726248868972 0.5632714735730094 0.25989430944535785
+0.2889528929776561 0.5674263268560237 0.2889528929776561 0.5674263268560237 0.24718829543790652
+0.2889799844034492 0.5712294716998398 0.28897998440344924 0.5712294716998398 0.23580662949353284
+0.28901015972408467 0.5749513673967374 0.28901015972408467 0.5749513673967374 0.2249030652201621
+0.28889377073815636 0.5785154468790934 0.2888937707381563 0.5785154468790933 0.2148077029729061
+0.2886639312540157 0.5821007852797321 0.28866393125401574 0.5821007852797321 0.20508374887281097
+0.28905440853389397 0.5856937369526178 0.28905440853389397 0.585693736952618 0.19534799353733132
+0.28935747797627065 0.5893801412493483 0.28935747797627065 0.5893801412493483 0.18586847732518394
+0.2896524581941815 0.5931044717720896 0.2896524581941815 0.5931044717720896 0.1768251191478287
+0.2899448254351499 0.5968011359848772 0.2899448254351498 0.5968011359848772 0.16843920330718198
+0.29025036357830936 0.6005129053195029 0.29025036357830936 0.600512905319503 0.16066347990659813
+0.4228360533295637 0.4203119440304912 0.4228360533295637 0.42031194403049116 0.7075181406187846
+0.4240304695478445 0.4244800640530278 0.42403046954784446 0.4244800640530278 0.7590175487849528
+0.4446178970373685 0.39925912476858005 0.4446178970373685 0.3992591247685801 0.5379022375858629
+0.44531576237861537 0.39578179042053974 0.4453157623786153 0.3957817904205397 0.5139824195487163
+0.4471967885924919 0.3913502367994686 0.44719678859249185 0.3913502367994686 0.48938795877642605
+0.4471987696681861 0.394034696220693 0.4471987696681861 0.394034696220693 0.501115497594943
+0.44899208543122743 0.38733128899576547 0.44899208543122743 0.38733128899576547 0.47368561969973527
+0.4494122741138693 0.3903683829249012 0.44941227411386925 0.3903683829249012 0.4828093858847026
+0.4510687079230497 0.3826521096121166 0.4510687079230497 0.38265210961211654 0.4613337462717433
+0.4513054812530913 0.385781613737548 0.4513054812530913 0.385781613737548 0.4680536552842169
+0.4532912420475744 0.38152482167789614 0.4532912420475744 0.38152482167789614 0.45883684602493047
+0.45603129495895073 0.37311844370598446 0.45603129495895073 0.37311844370598446 0.44720059342359475
+0.45431729291344397 0.3793604577871801 0.45431729291344397 0.3793604577871801 0.4554041794842126
+0.45533819089549277 0.3763884719183528 0.4553381908954927 0.3763884719183528 0.451341642367827
+0.4614079368436486 0.36376459232245456 0.46140793684364867 0.3637645923224545 0.4354159391513592
+0.4597205006769706 0.36917995446418844 0.4597205006769706 0.36917995446418844 0.4427622132740584
+0.4613021009481509 0.3672248985547121 0.4613021009481509 0.3672248985547121 0.4401274403004606
+0.4597254186367259 0.3725346403888283 0.4597254186367259 0.3725346403888282 0.44742293851646675
+0.46680895406851425 0.35727186083369034 0.4668089540685142 0.35727186083369034 0.42156571331727644
+0.46917609430801593 0.3552424326066787 0.469176094308016 0.35524243260667865 0.41499481056654997
+0.4663111136672971 0.36015133891442525 0.4663111136672971 0.36015133891442525 0.4271313996566711
+0.46532550000210143 0.36346838478298854 0.46532550000210143 0.36346838478298854 0.43346496242360827
+0.4823595595324903 0.34227594305751874 0.4823595595324903 0.3422759430575187 0.3503015601088943
+0.4806776645188466 0.34544781866944113 0.4806776645188466 0.34544781866944113 0.36427030927713216
+0.4755454316329968 0.34861129018510595 0.4755454316329968 0.34861129018510595 0.38780870621332447
+0.4791148649332578 0.34901136058793497 0.47911486493325783 0.34901136058793497 0.37820513215570123
+0.4739970690313379 0.35171793754854097 0.4739970690313379 0.3517179375485409 0.39853719490824263
+0.47280812473364453 0.35479703032914334 0.4728081247336445 0.3547970303291433 0.40772602237714484
+0.48920335857479597 0.3366719080971042 0.48920335857479597 0.3366719080971042 0.3062613357905383
+0.48753071140111537 0.3394167684414489 0.48753071140111537 0.3394167684414489 0.3209540113641007
+0.49425654410015796 0.33479185503009606 0.4942565441001579 0.33479185503009606 0.27556040744376786
+0.49204540602668195 0.3366149166225386 0.49204540602668195 0.3366149166225386 0.29162741763854966
+0.4858027145800781 0.3425006925130137 0.4858027145800781 0.3425006925130137 0.33645316944245535
+0.5037276928924711 0.32712053948220693 0.5037276928924711 0.32712053948220693 0.205852554834786
+0.5015020680800553 0.3299154095684446 0.5015020680800553 0.3299154095684446 0.22404677254351188
+0.49934625742853234 0.3327085422273007 0.49934625742853234 0.3327085422273007 0.2423936325926879
+0.4972962584786889 0.33554173593206577 0.4972962584786889 0.33554173593206577 0.26055460153889914
+0.5169688462304023 0.32069908113999734 0.5169688462304024 0.3206990811399973 0.13780235404525285
+0.5115280562252434 0.32243280889258946 0.5115280562252434 0.32243280889258946 0.1580615412477948
+0.5147376437782336 0.3233015352271551 0.5147376437782336 0.3233015352271551 0.14762328530001886
+0.5093534868510793 0.32518140552940267 0.5093534868510793 0.32518140552940267 0.1726139699095175
+0.5071494268906894 0.32792386216064295 0.5071494268906894 0.327923862160643 0.18882651276015025
+0.5306674121288766 0.3153639625987552 0.5306674121288766 0.3153639625987552 0.15548562052479278
+0.5249363491799482 0.31667702101519746 0.5249363491799482 0.31667702101519746 0.13420546186754165
+0.5280999618798028 0.3178598329789318 0.5280999618798027 0.3178598329789318 0.14711078038759928
+0.5224769220590173 0.3192096472489992 0.5224769220590173 0.3192096472489992 0.13316913404970407
+0.5201176348628415 0.3217337660864435 0.5201176348628415 0.3217337660864435 0.13583115280525185
+0.5454380954633707 0.310932978111187 0.5454380954633707 0.310932978111187 0.2476534291809904
+0.5393336372224843 0.31179590929462625 0.5393336372224843 0.31179590929462625 0.2043424970825435
+0.5425349520787244 0.31324149793079936 0.5425349520787243 0.31324149793079936 0.23098599368544
+0.5365279793044914 0.3142067750535056 0.5365279793044914 0.3142067750535056 0.18946771968673823
+0.533817567396265 0.31663616641686393 0.533817567396265 0.31663616641686393 0.17608692490851022
+0.5547214397422278 0.3082066441610966 0.5547214397422278 0.3082066441610966 0.3110892918743238
+0.5516299340336609 0.31025173390565136 0.5516299340336609 0.31025173390565136 0.29337278417548524
+0.5486182219527643 0.31245503933042384 0.5486182219527643 0.3124550393304238 0.27596757025555557
+0.5583082304045104 0.30983102416446406 0.5583082304045104 0.3098310241644641 0.3430545037590255
+0.5824503389434125 0.3065309036642675 0.5824503389434125 0.30653090366426744 0.49214272573970813
+0.5602287360842444 0.31222261243117233 0.5602287360842444 0.31222261243117233 0.36502531303613106
+0.5627601946407379 0.31312164839158846 0.562760194640738 0.31312164839158846 0.387075944433404
+0.5653500104310092 0.31174074902698634 0.5653500104310093 0.31174074902698634 0.4013222389084011
+0.5790681675544062 0.3078628239322071 0.5790681675544062 0.30786282393220704 0.4777062863174976
+0.5684731150776278 0.31044119408924226 0.5684731150776278 0.31044119408924226 0.4188366327267827
+0.5711379174495543 0.309038757998801 0.5711379174495543 0.309038757998801 0.4318778639454252
+0.5760447232786182 0.3091738885928397 0.5760447232786182 0.3091738885928397 0.46424742904283695
+0.5735121581333067 0.31030094562203336 0.5735121581333067 0.31030094562203336 0.4522183909675107
+0.4487594885949533 0.4015988176768974 0.4487594885949533 0.4015988176768975 0.5418982981474602
+0.45266891206478727 0.4039098539285788 0.45266891206478727 0.40390985392857887 0.5414163644646278
+0.6359199768222706 0.2650661547470626 0.6359199768222706 0.2650661547470626 0.5538843215421557
+0.6323473905313958 0.2660739700532399 0.6323473905313958 0.2660739700532399 0.5478827314295803
+0.6288059294858037 0.26714305333451643 0.6288059294858037 0.26714305333451643 0.5414597803322235
+0.6053859054258821 0.2753017609437947 0.605385905425882 0.2753017609437947 0.48669247762061446
+0.6253013917766823 0.2682413381896828 0.6253013917766824 0.2682413381896828 0.5345883734330527
+0.6218367855262477 0.26939215493240665 0.6218367855262477 0.2693921549324067 0.5273816170117228
+0.6184282115764298 0.27057038461741617 0.6184282115764298 0.27057038461741617 0.5198629622106393
+0.6085489300639848 0.2741785567888984 0.6085489300639848 0.2741785567888984 0.4955622691482137
+0.615067545400967 0.2717677367441118 0.615067545400967 0.2717677367441118 0.512019878929368
+0.6117756644375049 0.27297836284800436 0.6117756644375049 0.2729783628480043 0.5039372366711187
+0.6025178413728224 0.27709519165280094 0.6025178413728224 0.2770951916528009 0.4808049803609445
+0.5994468930362081 0.27860122018886874 0.5994468930362081 0.27860122018886874 0.4727119288940988
+0.5954054244762766 0.2839460774047149 0.5954054244762766 0.2839460774047149 0.4727983610492661
+0.5869931603572835 0.29776175338426275 0.5869931603572835 0.29776175338426275 0.4826094774695195
+0.5864250181906258 0.30149779140895955 0.5864250181906258 0.30149779140895955 0.4940137573257299
+0.5858590745665146 0.30523626255353564 0.5858590745665148 0.30523626255353564 0.5056815307187078
+0.5914507755269475 0.2890571000687057 0.5914507755269475 0.2890571000687057 0.47242268728794373
+0.590902944423145 0.2927962109123913 0.590902944423145 0.2927962109123912 0.4834305435542287
+0.5903541868449932 0.2965196644158075 0.5903541868449932 0.2965196644158075 0.4947057187346707
+0.594833293027584 0.2877669645105312 0.594833293027584 0.2877669645105312 0.48355689540420527
+0.5988309276771021 0.2824942418466222 0.5988309276771021 0.28249424184662214 0.48297370919236243
+0.6049832090309952 0.27833993793958384 0.6049832090309952 0.27833993793958384 0.49457404147897777
+0.6395134523241662 0.26413050066468635 0.6395134523241662 0.26413050066468635 0.5594308204194105
+0.64311412163995 0.2632387790144019 0.64311412163995 0.2632387790144019 0.564403172014987
+0.6466822948518732 0.26237067664269254 0.6466822948518732 0.26237067664269254 0.5686630372370004
+0.6501505177006803 0.26150805935550403 0.6501505177006804 0.2615080593555041 0.572054462930335
+0.6528198684625028 0.26014410798594045 0.6528198684625028 0.26014410798594045 0.5726855547114496
+0.655660006484879 0.2605646812775049 0.655660006484879 0.2605646812775049 0.5773017524204338
+0.6590450590168587 0.25987215245103334 0.6590450590168587 0.2598721524510333 0.5793420957905239
+0.692748229284637 0.22957220914861748 0.6927482292846369 0.22957220914861745 0.5357622385757957
+0.6871854600280096 0.23298514247464258 0.6871854600280097 0.23298514247464255 0.539844266812036
+0.6835600010853059 0.2336762445285432 0.6835600010853059 0.2336762445285432 0.5402403610970953
+0.6783860408843814 0.23778673049731372 0.6783860408843814 0.23778673049731372 0.5460170476953566
+0.6768896331539523 0.24131703454241016 0.6768896331539523 0.24131703454241019 0.5521213147577013
+0.6718200977841837 0.2452529376898261 0.6718200977841837 0.24525293768982606 0.5578493237202368
+0.6703568900270471 0.24872292396481796 0.6703568900270471 0.24872292396481796 0.5641429946537385
+0.6624439294167512 0.25944106321067645 0.6624439294167512 0.25944106321067645 0.5813632219630271
+0.663874979311105 0.2559909445192046 0.663874979311105 0.2559909445192046 0.5752360617844636
+0.6653423241112931 0.252560227836514 0.6653423241112931 0.252560227836514 0.5691154463919962
+0.6688848027809366 0.25217500019054034 0.6688848027809366 0.25217500019054034 0.5704391235574667
+0.6754019845108572 0.24482921220987075 0.6754019845108572 0.24482921220987075 0.5583939928395868
+0.6820397235447169 0.2372431831726085 0.682039723544717 0.2372431831726085 0.546008584593478
+0.6905998369278228 0.2324246037221851 0.6905998369278228 0.2324246037221851 0.5394661662112791
+0.6989247017212952 0.22367616169882354 0.6989247017212952 0.2236761616988235 0.5294504330998354
+0.7032361185931911 0.2236082547569754 0.7032361185931911 0.2236082547569754 0.5302017522575447
+0.6965357222934662 0.22740655025748857 0.696535722293466 0.22740655025748863 0.5335254047356445
+0.7238494063318628 0.1966421597165816 0.7238494063318628 0.1966421597165816 0.5178694531779692
+0.7217574905413215 0.2000313854853505 0.7217574905413215 0.20003138548535046 0.5195493755233614
+0.7196654291589383 0.2034164709986653 0.7196654291589383 0.2034164709986653 0.5209808675089946
+0.7175745137104563 0.20679321499782488 0.7175745137104563 0.20679321499782488 0.5222748971864496
+0.7154915372066676 0.210157978756492 0.7154915372066676 0.210157978756492 0.5235523395967401
+0.7134299136705716 0.21350822084884138 0.7134299136705716 0.21350822084884138 0.5249362908230873
+0.7114055299027072 0.21684453156043734 0.7114055299027072 0.21684453156043734 0.5265425842831003
+0.7094342119259521 0.22017787857895546 0.7094342119259521 0.22017787857895546 0.5284757483491848
+0.7075238954880425 0.22353589921335645 0.7075238954880425 0.22353589921335645 0.5308259938201961
+0.7301255230125318 0.1932518478246238 0.7301255230125318 0.1932518478246238 0.5177984817397802
+0.728033472803331 0.19664223111979592 0.728033472803331 0.19664223111979592 0.519915392101622
+0.7364016736401556 0.18986146452946037 0.7364016736401556 0.18986146452946037 0.516723181945498
+0.7343096234309487 0.1932518478246281 0.7343096234309487 0.1932518478246281 0.5194717442364887
+0.7426778242677714 0.1864710812342918 0.7426778242677714 0.1864710812342918 0.5144414870686181
+0.7405857740585663 0.18986146452946073 0.7405857740585663 0.18986146452946073 0.5179338547372542
+0.7489539748953868 0.18308069793912285 0.7489539748953868 0.18308069793912285 0.5108932552760975
+0.7468619246861817 0.1864710812342918 0.7468619246861817 0.1864710812342918 0.5151433815489632
+0.7552301255230022 0.1796903146439539 0.7552301255230022 0.1796903146439539 0.5061679319661608
+0.7531380753137972 0.18308069793912285 0.7531380753137972 0.18308069793912285 0.5110898967457689
+0.7635983263598227 0.17290954805361602 0.7635983263598227 0.17290954805361602 0.4948278675828331
+0.7615062761506176 0.17629993134878497 0.7615062761506176 0.17629993134878497 0.5004893560495828
+0.7594142259414125 0.1796903146439539 0.7594142259414126 0.1796903146439539 0.5059092646049094
+0.7698744769874378 0.16951916475844708 0.7698744769874378 0.16951916475844708 0.48844564231438997
+0.7677824267782328 0.17290954805361602 0.7677824267782328 0.17290954805361602 0.49417912326782903
+0.7761506276150533 0.16612878146327814 0.7761506276150533 0.16612878146327814 0.4820669607140502
+0.7740585774058482 0.16951916475844708 0.7740585774058482 0.16951916475844708 0.48760252014723077
+0.7824267782426685 0.1627383981681092 0.7824267782426685 0.1627383981681092 0.4759990953243551
+0.7803347280334635 0.16612878146327814 0.7803347280334635 0.16612878146327814 0.48110434824975695
+0.7887029288702839 0.15934801487294026 0.7887029288702839 0.15934801487294026 0.4704283382030763
+0.7866108786610786 0.1627383981681092 0.7866108786610786 0.1627383981681092 0.47494537014947563
+0.7949790794978994 0.15595763157777132 0.7949790794978994 0.15595763157777132 0.4653828135412669
+0.7928870292886943 0.15934801487294026 0.7928870292886944 0.15934801487294026 0.4692521594682737
+0.8012553774657794 0.15256715341113283 0.8012553774657792 0.15256715341113283 0.4607267667976895
+0.799163255755272 0.15595758277956961 0.799163255755272 0.15595758277956961 0.46399248187889447
+0.8075323006947395 0.14917620205201312 0.8075323006947395 0.14917620205201312 0.45618998326922894
+0.8054400960632869 0.15256670242639694 0.8054400960632869 0.15256670242639694 0.45898342594410585
+0.8159002213640171 0.14239577728192473 0.8159002213640171 0.14239577728192473 0.4492567806657172
+0.8138091258225898 0.145785328547219 0.8138091258225898 0.145785328547219 0.45142904008325374
+0.8117180167563666 0.14917471423483689 0.8117180167563666 0.14917471423483689 0.45393387165757865
+0.8221776234528416 0.13900500343405486 0.8221776234528416 0.13900500343405486 0.44393256347514226
+0.8200862523873415 0.1423949479074411 0.8200862523873415 0.1423949479074411 0.44610548253093724
+0.8284558452930476 0.13561332367967344 0.8284558452930476 0.13561332367967346 0.43767685917165894
+0.8263657814956096 0.13900268581598843 0.8263657814956096 0.13900268581598843 0.4399700352720788
+0.8347334555580116 0.13222064668820227 0.8347334555580116 0.1322206466882023 0.430515185097568
+0.832644239972313 0.1356088898099954 0.832644239972313 0.1356088898099954 0.432945343183708
+0.8410121483226659 0.12882710428704022 0.8410121483226659 0.12882710428704022 0.42272313415605584
+0.838922556711692 0.13221360799369844 0.838922556711692 0.13221360799369844 0.4251781228033417
+0.8472907631482514 0.12543471480830895 0.8472907631482514 0.12543471480830895 0.4148388470670727
+0.8452015850900593 0.12882014458987504 0.8452015850900593 0.12882014458987504 0.4170719747326331
+0.8535643851234199 0.12203898900599223 0.8535643851234199 0.12203898900599223 0.40763714481915564
+0.8514797729476528 0.12542609594443677 0.8514797729476528 0.12542609594443677 0.4092828787697167
+0.8598264265581879 0.11863688572961413 0.8598264265581879 0.11863688572961413 0.4020267070067587
+0.8577349586969557 0.12201683198662987 0.8577349586969557 0.12201683198662987 0.4026830796913898
+0.866082137257576 0.11521662586912318 0.8660821372575761 0.11521662586912318 0.39890937155886413
+0.8639779030864722 0.11858274349311804 0.8639779030864722 0.11858274349311804 0.39817683337124293
+0.8723477384084498 0.11179890561181145 0.8723477384084498 0.11179890561181145 0.3989597917668126
+0.8702255357608216 0.11516366323652832 0.8702255357608216 0.11516366323652831 0.3965414708246622
+0.87651596660511 0.11175112030604811 0.87651596660511 0.11175112030604813 0.39830524652166527
+0.8786696416331643 0.10838200765737632 0.8786696416331644 0.10838200765737631 0.40254897182723964
+0.8807910109940965 0.10501475924974574 0.8807910109940965 0.10501475924974572 0.40762659042344124
+0.8870741102249373 0.10160251198082804 0.8870741102249372 0.10160251198082804 0.4160797067654678
+0.8850055286328885 0.10498842812891358 0.8850055286328885 0.10498842812891358 0.40955228850810727
+0.8933173044304294 0.09814351042834475 0.8933173044304293 0.09814351042834475 0.42688058475510565
+0.8912230922733656 0.10151878351519827 0.8912230922733656 0.10151878351519827 0.41938329787585354
+0.897553736495694 0.09812888129281572 0.897553736495694 0.09812888129281572 0.43090165069235153
+0.8995654425015335 0.09479589517041152 0.8995654425015335 0.09479589517041152 0.4386055712820474
+0.9036396549984405 0.09456354165671738 0.9036396549984405 0.09456354165671738 0.4430275965792934
+0.9056255116962841 0.09108814171184404 0.9056255116962841 0.09108814171184404 0.45058021156566497
+0.9090448702411371 0.09080314579715776 0.9090448702411372 0.09080314579715776 0.4539273785324077
+0.9119655757094404 0.08820197539856107 0.9119655757094404 0.08820197539856109 0.46025544732104195
+0.9157354773138269 0.0870939482695335 0.915735477313827 0.0870939482695335 0.4638926158732993
+0.9182993882465149 0.08415556346640832 0.918299388246515 0.0841555634664083 0.4688429729504899
+0.9221585052905276 0.08218384891380115 0.9221585052905276 0.08218384891380115 0.4717035796683904
+0.9258576762331512 0.08016097549716857 0.9258576762331511 0.08016097549716857 0.4731597334012307
+0.9290442885847517 0.07801559285333935 0.9290442885847517 0.07801559285333935 0.47351673868748906
+0.932161575381383 0.07551395799960989 0.9321615753813831 0.0755139579996099 0.47277805739306616
+0.9355230381207799 0.07329300813206328 0.9355230381207799 0.07329300813206328 0.4702449352458568
+0.9389663490753737 0.0711387944227434 0.9389663490753737 0.0711387944227434 0.46614382337949695
+0.9423241399020728 0.0691274110221916 0.9423241399020729 0.0691274110221916 0.4607696347534245
+0.9456973379877859 0.06702299701677235 0.9456973379877859 0.06702299701677235 0.45402485799225717
+0.9490966851559007 0.06492489345482255 0.9490966851559007 0.06492489345482255 0.4459644631473734
+0.9525277938930751 0.06279627105690809 0.9525277938930751 0.06279627105690809 0.4366515778316083
+0.9559271207177176 0.06068761861356918 0.9559271207177176 0.06068761861356919 0.42639882137021184
+0.9593155429082145 0.05861981326833168 0.9593155429082145 0.058619813268331676 0.4153661021607928
+0.9627064174191895 0.056532835621107794 0.9627064174191896 0.05653283562110779 0.4036389317948967
+0.9661050645707445 0.05443961773882933 0.9661050645707444 0.05443961773882933 0.391420350510399
+0.9695025451838352 0.05234522526004568 0.9695025451838352 0.05234522526004568 0.3789552155486582
+0.9728903049939955 0.0502484454344669 0.9728903049939955 0.0502484454344669 0.3664899064289251
+0.9762751167909962 0.04814822219872433 0.9762751167909961 0.04814822219872433 0.35423802311232905
+0.9796621409812601 0.04604819237247897 0.9796621409812601 0.04604819237247897 0.34242841572266797
+0.9830510355344969 0.04394909368732438 0.9830510355344969 0.04394909368732438 0.3312907015533979
+0.9864403426054871 0.04185300658630847 0.9864403426054871 0.04185300658630847 0.3210431682630533
+0.9898295578893214 0.03975829417309098 0.9898295578893214 0.03975829417309098 0.3118681241135237
+0.9932184154451139 0.03766492028334203 0.9932184154451139 0.03766492028334203 0.3039135904094829
+0.041838007614895735 0.9932202620893958 0.041838007614895735 0.9932202620893958 0.07373451203731453
+0.04393062952512938 0.9898297850293324 0.04393062952512938 0.9898297850293324 0.07580969202162806
+0.046024053104812605 0.9864389058809785 0.046024053104812605 0.9864389058809785 0.0782343631836971
+0.04811715481171539 0.9830480835241555 0.04811715481171539 0.9830480835241556 0.08094322038095893
+0.05020920502092043 0.9796577002289867 0.05020920502092043 0.9796577002289867 0.08386432636132073
+0.05230125523012546 0.9762673169338179 0.05230125523012546 0.9762673169338179 0.08692391963788487
+0.05439330543933047 0.9728769336386488 0.05439330543933047 0.9728769336386488 0.0900473388168332
+0.05648535564853545 0.96948655034348 0.056485355648535455 0.96948655034348 0.09316193869531385
+0.05857740585774026 0.9660961670483109 0.05857740585774026 0.9660961670483109 0.09619873772254628
+0.06067130767725956 0.9627034092602974 0.06067130767725957 0.9627034092602974 0.09909545888905259
+0.06276414627120219 0.9593108862392441 0.06276414627120219 0.9593108862392441 0.10179009501241532
+0.06485536373647925 0.9559179645573738 0.06485536373647925 0.9559179645573738 0.10422984525448488
+0.06694228804642134 0.9525295118004743 0.06694228804642134 0.9525295118004743 0.10636543098339703
+0.06902500987205133 0.9491510877435193 0.06902500987205133 0.9491510877435193 0.10815629197519318
+0.07111495224263657 0.9457618439768614 0.07111495224263657 0.9457618439768612 0.10957866505642667
+0.07323154977256562 0.9423772288850533 0.07323154977256562 0.9423772288850533 0.11059947602140131
+0.07532277933943142 0.9390122318887482 0.07532277933943142 0.9390122318887482 0.11119614653042063
+0.07739683660323446 0.9356606372865034 0.07739683660323447 0.9356606372865034 0.11136412545838613
+0.07952496454595405 0.9323067767664948 0.07952496454595405 0.9323067767664949 0.11109166106709507
+0.08171092192362193 0.9289163804799484 0.08171092192362193 0.9289163804799484 0.11037278611316838
+0.08389449182959931 0.9255650020662346 0.08389449182959931 0.9255650020662346 0.10922987371477906
+0.0860420286591082 0.9222493825248507 0.0860420286591082 0.9222493825248507 0.10769085748581042
+0.08805460589238974 0.9188599486891207 0.08805460589238974 0.9188599486891206 0.1057773408181457
+0.09006088042395106 0.9153643999651964 0.09006088042395106 0.9153643999651964 0.10345313944050112
+0.09220949952189633 0.9118880083133106 0.09220949952189633 0.9118880083133106 0.10076797046581544
+0.09443997260401817 0.90849332831633 0.09443997260401817 0.90849332831633 0.09782792853314282
+0.09655140284999147 0.905211965412605 0.09655140284999147 0.9052119654126048 0.09480667480636701
+0.09847790474892694 0.901457248210658 0.09847790474892694 0.901457248210658 0.0913123894304332
+0.1013444962698062 0.8988468704939606 0.1013444962698062 0.8988468704939606 0.08840595147906997
+0.10230906268738318 0.8951783895105658 0.10230906268738317 0.8951783895105657 0.085146936324731
+0.10498558576191759 0.8891829698223789 0.10498558576191759 0.8891829698223789 0.07957472847928954
+0.10484045349482851 0.8923054959231128 0.10484045349482851 0.8923054959231129 0.08221619483782709
+0.10770230898552388 0.8880239366424674 0.10770230898552388 0.8880239366424674 0.07833805529566522
+0.10867985709483129 0.8827856740069645 0.10867985709483129 0.8827856740069645 0.07424873624293121
+0.1089241555433218 0.8858464582394325 0.1089241555433218 0.8858464582394326 0.07656124400453326
+0.1122644799280344 0.881069421816024 0.11226447992803437 0.881069421816024 0.07328411610900422
+0.11502704425006244 0.8742864634869603 0.11502704425006245 0.8742864634869604 0.06967592667825771
+0.11523784471451826 0.8779398082017316 0.11523784471451826 0.8779398082017317 0.07185475522671725
+0.11850712921576882 0.8682932618964981 0.11850712921576882 0.8682932618964981 0.06840911890340985
+0.11825682806850984 0.8722770708458384 0.11825682806850986 0.8722770708458384 0.06991173037582789
+0.12194067268087139 0.8620401959481735 0.12194067268087139 0.8620401959481735 0.06882567365741203
+0.12188117941499882 0.8662657377749374 0.1218811794149988 0.8662657377749374 0.0696500568022682
+0.12531417019695645 0.8598351339214114 0.12531417019695645 0.8598351339214113 0.07090535708758922
+0.1253687572645309 0.8556798328458688 0.1253687572645309 0.8556798328458689 0.07086015493581242
+0.12878569168150833 0.8494016637804598 0.12878569168150833 0.8494016637804599 0.0741097347106649
+0.12876618542715898 0.853603452821941 0.12876618542715898 0.8536034528219411 0.07359110080309748
+0.13216974820653682 0.8431384237133797 0.13216974820653682 0.8431384237133797 0.07805927662022717
+0.1321740954361061 0.8473055703975414 0.13217409543610611 0.8473055703975413 0.07719916102028367
+0.13558198670014804 0.8368784355656712 0.135581986700148 0.8368784355656712 0.082308836002636
+0.13556059317557045 0.8410968005563628 0.13556059317557045 0.8410968005563628 0.08125724105431886
+0.13899212797019947 0.8305758153749436 0.13899212797019947 0.8305758153749437 0.08648512083741001
+0.13898106436524363 0.8347904771782964 0.13898106436524363 0.8347904771782965 0.08545741351579349
+0.1423891893191035 0.8242777436240152 0.1423891893191035 0.8242777436240152 0.09030212700913452
+0.1423870772320644 0.8284725330472131 0.14238707723206437 0.8284725330472131 0.08943142601234727
+0.1457747233183963 0.8221865778790753 0.14577472331839633 0.8221865778790755 0.09295251344274812
+0.1491613282598688 0.8159220141062006 0.1491613282598688 0.8159220141062006 0.09590241433565451
+0.1491519205746005 0.8201171041205582 0.1491519205746005 0.8201171041205582 0.09543645992049538
+0.15255957177722676 0.8096366738632371 0.15255957177722676 0.8096366738632371 0.0982242014770164
+0.15255195832659896 0.8138347413164969 0.15255195832659896 0.8138347413164969 0.09805184608294114
+0.1559543330817945 0.8033522365581166 0.1559543330817945 0.8033522365581166 0.09988958550801064
+0.15595044352529167 0.8075423979167176 0.15595044352529167 0.8075423979167177 0.10002154716007743
+0.15934677939306333 0.7970727381739001 0.15934677939306333 0.7970727381739001 0.10092305756293136
+0.15934499435841512 0.8012590329495398 0.15934499435841512 0.8012590329495398 0.10134209627280004
+0.16273780458194065 0.7907955611303992 0.16273780458194065 0.7907955611303992 0.10137846660058288
+0.16273700470201008 0.7949804625496625 0.16273700470201005 0.7949804625496625 0.1020480564193935
+0.1661284471760503 0.7845192392436723 0.16612844717605027 0.7845192392436723 0.10133045237503983
+0.16612791301925664 0.7887038534800492 0.16612791301925664 0.7887038534800492 0.10219788312852886
+0.1695190569826672 0.7782428988049072 0.1695190569826672 0.7782428988049072 0.1008682060798347
+0.16951882745377167 0.7824274001081681 0.16951882745377167 0.7824274001081681 0.10186795164041411
+0.1729095395935072 0.771966645723256 0.1729095395935072 0.771966645723256 0.10009140346629654
+0.17290951149615522 0.7761509835056528 0.17290951149615522 0.7761509835056528 0.10114823806750879
+0.17629993872530414 0.7656904243751663 0.17629993872530414 0.7656904243751663 0.09910759693047579
+0.1762999524540311 0.7698746239141986 0.1762999524540311 0.7698746239141986 0.10013992155034479
+0.179690327409368 0.7635983719568648 0.179690327409368 0.7635983719568648 0.09895415712153573
+0.18308070214614233 0.7573221871636067 0.18308070214614233 0.7573221871636067 0.09771134735007238
+0.18308071041101917 0.7615063089133387 0.18308071041101917 0.7615063089133387 0.09864862857642487
+0.1864710823044927 0.7510460273431385 0.1864710823044927 0.7510460273431385 0.09654018616362992
+0.186471084040864 0.7552301311250922 0.186471084040864 0.7552301311250922 0.09725712474920069
+0.18986146481245003 0.7447698749289186 0.18986146481245003 0.7447698749289186 0.0955751835648173
+0.18986146537609308 0.7489539760106482 0.18986146537609308 0.7489539760106482 0.09599315246062358
+0.1932518478840575 0.7384937239397087 0.1932518478840575 0.7384937239397087 0.09495139469322028
+0.19325184799787887 0.7426778244943982 0.19325184799787887 0.7426778244943982 0.09500311734627089
+0.19664223113190707 0.7322175732398711 0.19664223113190707 0.7322175732398711 0.09479568237699136
+0.1966422311548569 0.7364016736868462 0.1966422311548569 0.7364016736868462 0.09443122091418184
+0.20003261441580322 0.725941422595532 0.20003261441580325 0.725941422595532 0.09521503150365328
+0.2000326080892986 0.7301255132659211 0.2000326080892986 0.7301255132659211 0.09440720782069924
+0.2034226041864797 0.7238488378477856 0.2034226041864797 0.7238488378477856 0.0950318877230868
+0.20681017790914005 0.7217543076181198 0.20681017790914005 0.7217543076181198 0.09500898943031012
+0.21019292047867164 0.7196557516683321 0.21019292047867164 0.7196557516683321 0.09519703451449633
+0.21357269994249795 0.717549559926288 0.21357269994249792 0.717549559926288 0.095639771494455
+0.21695964158274586 0.7154359909557817 0.21695964158274586 0.7154359909557817 0.09637032418449089
+0.22038015478117678 0.7132927381058506 0.22038015478117678 0.7132927381058506 0.09742381952514227
+0.22384819303823156 0.7070565220760913 0.22384819303823153 0.7070565220760913 0.10047234992795749
+0.22701638022846662 0.7048082412725428 0.22701638022846662 0.7048082412725428 0.10211875492937277
+0.22948769008053116 0.6996364377981408 0.22948769008053116 0.6996364377981408 0.10506960105070791
+0.22969656583395442 0.7027874324224364 0.22969656583395445 0.7027874324224364 0.10374476479958679
+0.2330531399661867 0.6912869885618835 0.23305313996618668 0.6912869885618836 0.11007857637463588
+0.23554320932981115 0.6884350478131129 0.23554320932981113 0.6884350478131128 0.11209856202058292
+0.23736041368795746 0.6852229081116188 0.23736041368795746 0.6852229081116187 0.11409922006811823
+0.24246453167670348 0.6753096865649656 0.24246453167670348 0.6753096865649656 0.11972626037713573
+0.24510850735832332 0.6725857324842899 0.24510850735832332 0.6725857324842899 0.12125181018897502
+0.24770554180297313 0.6699034793058515 0.24770554180297313 0.6699034793058515 0.12259353688357956
+0.2613338288067766 0.6567692617714465 0.2613338288067766 0.6567692617714465 0.12635820397660022
+0.25245969052072864 0.6611873276578911 0.25245969052072864 0.6611873276578911 0.12611252433845974
+0.25517984353259465 0.6585957067279378 0.25517984353259465 0.6585957067279377 0.1267852939952376
+0.25828792526795086 0.6593575621210805 0.25828792526795086 0.6593575621210804 0.1260623412429129
+0.2502609900437887 0.6672623295203466 0.2502609900437887 0.6672623295203466 0.12374521056120447
+0.2528799017972644 0.6646348509579095 0.25287990179726444 0.6646348509579095 0.12471512708521508
+0.24053002274650198 0.6820526888228038 0.24053002274650195 0.6820526888228038 0.11629439008906328
+0.2432618934869604 0.6790914174493389 0.2432618934869604 0.6790914174493389 0.11816639970496101
+0.23130795753692907 0.696973393916035 0.23130795753692904 0.6969733939160349 0.10685734265000023
+0.2339075932413013 0.694410901046779 0.2339075932413013 0.694410901046779 0.10881409613540881
+0.22397692207139314 0.7111355320914294 0.22397692207139316 0.7111355320914293 0.0988407021783095
+0.26454541155186273 0.6548976414794675 0.2645454115518628 0.6548976414794675 0.12625029976346525
+0.26951505094483613 0.6454089427924803 0.26951505094483613 0.6454089427924803 0.1275091958446624
+0.2760667532276006 0.6306750274100578 0.2760667532276006 0.6306750274100578 0.13186514688968495
+0.27880593072176607 0.6281297139718276 0.27880593072176607 0.6281297139718277 0.1320613322102213
+0.28086482843289506 0.622222428187428 0.280864828432895 0.622222428187428 0.13596965639538716
+0.2815230111979515 0.6255955730549251 0.2815230111979515 0.6255955730549251 0.13241141466602158
+0.29063747880953184 0.6043013880487993 0.29063747880953184 0.6043013880487993 0.15338441219839763
+0.2829301797490133 0.6162802769509453 0.2829301797490133 0.6162802769509453 0.14117656375056412
+0.28550703817550743 0.6135736600392171 0.28550703817550743 0.6135736600392171 0.14278451506918188
+0.29117793439000295 0.6080901823196497 0.29117793439000295 0.6080901823196497 0.1467421235495424
+0.28830528662460303 0.6108897658579406 0.28830528662460303 0.6108897658579407 0.1445468859117693
+0.28358564372656136 0.6196880627571864 0.28358564372656136 0.6196880627571862 0.13674678144545374
+0.2722635709380724 0.6427323142008391 0.27226357093807246 0.6427323142008391 0.1273471769850558
+0.2741224155276321 0.6366710004116107 0.2741224155276321 0.6366710004116108 0.12921575388523807
+0.27497650549984587 0.6400786140039223 0.27497650549984587 0.6400786140039223 0.12717075662184432
+0.2768368019901797 0.6340696971304219 0.2768368019901797 0.6340696971304219 0.12918638536878094
+0.267558200355135 0.651750755285111 0.26755820035513495 0.6517507552851108 0.12627308671268211
+0.2704323337202335 0.6489216332172543 0.2704323337202335 0.6489216332172543 0.12611426576611326
+0.41822096975690826 0.4192667949882134 0.4182209697569083 0.4192667949882134 0.6549496016258377
+0.41446377720524874 0.4192128292114917 0.4144637772052487 0.4192128292114918 0.6170607446632485
+0.4097410332779185 0.4198604890990732 0.4097410332779185 0.4198604890990732 0.5722605384754789
+0.4122907546167047 0.42052147364857806 0.4122907546167047 0.42052147364857806 0.6011390332268924
+0.4046745524935401 0.4205502741531847 0.4046745524935402 0.42055027415318463 0.522645400089064
+0.4079856445894412 0.4217043452781977 0.40798564458944125 0.4217043452781977 0.5593815568417108
+0.4028552310307457 0.42275248866275067 0.4028552310307458 0.42275248866275067 0.5066456732475614
+0.39890526100509477 0.42241505200365376 0.3989052610050948 0.42241505200365376 0.466548662135752
+0.39576039864463586 0.42396635587843917 0.39576039864463586 0.42396635587843917 0.4350718258249922
+0.3899177486985513 0.4241687896033394 0.3899177486985513 0.4241687896033394 0.38210570923613213
+0.39312508998391804 0.4256714297564966 0.39312508998391804 0.4256714297564966 0.4078578708843396
+0.38732943023092226 0.4269258480194911 0.38732943023092226 0.4269258480194911 0.35481967364698574
+0.383347829060359 0.42609534066998356 0.3833478290603591 0.4260953406699835 0.3263418506608055
+0.3815710247493486 0.42856044426497614 0.3815710247493486 0.42856044426497614 0.30771029054518884
+0.3743102292051037 0.430090469812126 0.3743102292051037 0.430090469812126 0.26170717738894367
+0.3785337170065639 0.4299957064609131 0.3785337170065639 0.4299957064609132 0.2848147694564978
+0.372283777725573 0.4326872116459008 0.372283777725573 0.4326872116459008 0.24741527266887253
+0.3668359743474777 0.43544790037749515 0.3668359743474778 0.43544790037749515 0.22655977171553493
+0.37022497689525047 0.43473507120131416 0.37022497689525047 0.43473507120131416 0.23659888554160563
+0.3640060516613036 0.4379137323455413 0.36400605166130356 0.4379137323455414 0.220931406548331
+0.35827186199212524 0.44052831986114604 0.35827186199212524 0.44052831986114604 0.22021566320238042
+0.36198698195702605 0.44062608770424516 0.36198698195702605 0.44062608770424516 0.22129813313736504
+0.3561583080815658 0.4434468935258238 0.3561583080815658 0.4434468935258238 0.22736010938085624
+0.35019533679640763 0.44667032858950745 0.35019533679640763 0.44667032858950745 0.2427389710282841
+0.35406086004039783 0.44645064957707603 0.35406086004039783 0.4464506495770761 0.23802942174409927
+0.34811556908260627 0.4498596696074885 0.34811556908260627 0.4498596696074885 0.25745194967690815
+0.3420824030236987 0.4535557101871918 0.3420824030236987 0.4535557101871918 0.2802174816138258
+0.34611759643023515 0.4531110010265225 0.34611759643023515 0.4531110010265225 0.2735390678091562
+0.34030606249758333 0.45682622178086607 0.34030606249758333 0.45682622178086607 0.29635389158151076
+0.3347191754987499 0.4602858051207791 0.3347191754987499 0.46028580512077916 0.31617384485532596
+0.3328174169796562 0.4623786345360187 0.3328174169796562 0.4623786345360187 0.3260709863146931
+0.33838335199937863 0.46017373300872827 0.33838335199937863 0.46017373300872827 0.3126670422764192
+0.3325724444171526 0.4651078239586061 0.33257244441715267 0.4651078239586061 0.3370770889003598
+0.3276389626643732 0.4688589045000797 0.3276389626643732 0.4688589045000797 0.3528911910051021
+0.3263835053546239 0.47185470050390965 0.32638350535462385 0.4718547005039096 0.36311949613559746
+0.33125823500684315 0.4682308088872542 0.33125823500684315 0.4682308088872542 0.3494619967711738
+0.3251159714577213 0.4749049486212573 0.32511597145772125 0.4749049486212574 0.37248894102617985
+0.3205220191638132 0.47867193523726703 0.3205220191638132 0.47867193523726703 0.3820055650531215
+0.3194867480884593 0.4818125558841453 0.3194867480884593 0.48181255588414534 0.38875619789628524
+0.3240910541472698 0.4779164550190047 0.32409105414726985 0.4779164550190047 0.38067433866915573
+0.31847391589913276 0.4849899436806746 0.31847391589913276 0.4849899436806746 0.39439544505949153
+0.31389562672938687 0.48911859726050194 0.31389562672938687 0.48911859726050194 0.39827366114334595
+0.31301524736832875 0.49240001391275495 0.31301524736832875 0.49240001391275495 0.4010959676332038
+0.3175165903840117 0.48818200904119274 0.31751659038401175 0.48818200904119274 0.39886197223161
+0.3121987251104252 0.4956951295656542 0.3121987251104252 0.4956951295656542 0.4027458765391548
+0.30779937851161593 0.5001606103220663 0.30779937851161593 0.5001606103220663 0.4009373821520414
+0.30710485006695504 0.5035795702938982 0.30710485006695504 0.5035795702938982 0.3998283468623515
+0.3114262695258715 0.4990328733129577 0.31142626952587144 0.4990328733129577 0.4032216684295756
+0.3064788623041408 0.5070224561441288 0.3064788623041408 0.5070224561441288 0.39758580751593975
+0.3023101379384125 0.5118180694774357 0.3023101379384125 0.5118180694774357 0.3905436630491114
+0.30175130069477746 0.5153583763040666 0.30175130069477746 0.5153583763040666 0.38576122802185514
+0.30590710520345205 0.5104832752587164 0.30590710520345205 0.5104832752587164 0.3942322242230915
+0.30128960085266054 0.5189463297616832 0.3012896008526606 0.5189463297616833 0.37993801399954025
+0.297663915565464 0.5241667388868841 0.29766391556546395 0.5241667388868841 0.36837490027995673
+0.2973010705852507 0.5277918050061038 0.2973010705852506 0.5277918050061038 0.360533568372342
+0.30105110753237124 0.5225515317875441 0.30105110753237124 0.5225515317875441 0.3732107584049038
+0.29675385072365645 0.53139103162149 0.29675385072365645 0.53139103162149 0.3519352939371711
+0.29440228666858453 0.5382144442704526 0.29440228666858453 0.5382144442704526 0.33360567762167614
+0.29439473102553937 0.5411878027631619 0.2943947310255393 0.5411878027631619 0.3254316396879682
+0.29622427794955664 0.5353639561584351 0.2962242779495567 0.5353639561584352 0.3417924523413434
+0.2940415540959792 0.5445944556568564 0.29404155409597926 0.5445944556568564 0.3155943777478336
+0.29366643979443485 0.548092340366148 0.29366643979443485 0.5480923403661481 0.30519531240728154
+0.2933388465819711 0.5515276528335912 0.2933388465819711 0.5515276528335912 0.2947405811667594
+0.29304003828124914 0.5549502533914199 0.2930400382812492 0.5549502533914198 0.28416077827426184
+0.2928158733490398 0.5584609343764563 0.2928158733490398 0.5584609343764563 0.27319179481814476
+0.2923656830395356 0.5619637633386423 0.2923656830395356 0.5619637633386424 0.2624284848927405
+0.2920999927896816 0.5653861905468484 0.2920999927896815 0.5653861905468484 0.25191068742132877
+0.2920710650309558 0.5690755193492582 0.29207106503095576 0.5690755193492582 0.2405353876376863
+0.29210722365488795 0.5728326571741496 0.292107223654888 0.5728326571741497 0.2291375938809346
+0.29242686729371575 0.5769141924879368 0.29242686729371575 0.576914192487937 0.21694608175051705
+0.29133173815109054 0.5802822611210687 0.29133173815109054 0.5802822611210687 0.2080944624137302
+0.29201868663694225 0.5833901359672446 0.29201868663694225 0.5833901359672446 0.19915378537286124
+0.29238614327023316 0.5869698082031475 0.2923861432702331 0.5869698082031475 0.18950151299278842
+0.29264525448460443 0.5907116733806286 0.2926452544846044 0.5907116733806285 0.18005030576842215
+0.29290502266077356 0.5944063738360975 0.2929050226607735 0.5944063738360975 0.17131161618813362
+0.2931515135570747 0.5980220900149752 0.29315151355707464 0.5980220900149752 0.16339996858056519
+0.293481305199805 0.6017283550626772 0.2934813051998049 0.6017283550626772 0.15593359375955115
+0.41958113725654117 0.42356562943943366 0.41958113725654117 0.4235656294394337 0.699567331001692
+0.4210097717018382 0.4276852867679633 0.4210097717018382 0.4276852867679633 0.7468487249287591
+0.44881442735171784 0.3969963033012326 0.44881442735171795 0.39699630330123264 0.5128204824434442
+0.44969239047147735 0.39357501687025775 0.4496923904714773 0.3935750168702578 0.4944380728678249
+0.4516038767284067 0.38920719541600507 0.4516038767284067 0.38920719541600507 0.4766077166450762
+0.45162467792505284 0.391949355402731 0.4516246779250529 0.391949355402731 0.4849359461199426
+0.453973422717485 0.384727150768418 0.453973422717485 0.384727150768418 0.4646450586447005
+0.4539106334182319 0.3881146815556788 0.45391063341823196 0.3881146815556788 0.47171843975693856
+0.45588799591892737 0.3821142045681911 0.4558879959189274 0.3821142045681911 0.459719665861912
+0.4567493577770693 0.38476311462815904 0.4567493577770693 0.38476311462815904 0.46375409910574855
+0.4584888138497631 0.37609404755942716 0.4584888138497631 0.37609404755942716 0.4517500039775311
+0.45777195098094337 0.3798190183861227 0.4577719509809434 0.3798190183861227 0.4566132117591194
+0.4642064595174076 0.36665101046058135 0.4642064595174076 0.36665101046058135 0.43896890907483493
+0.46288231944358127 0.3703064205587638 0.4628823194435813 0.3703064205587637 0.44468587670413745
+0.46132084757450365 0.37572595547131565 0.46132084757450365 0.37572595547131565 0.4518232000358315
+0.4627778442415049 0.37353629014024003 0.462777844241505 0.37353629014024003 0.4490480480709758
+0.4693718435592783 0.3590700643645721 0.46937184355927825 0.3590700643645721 0.4220125085362825
+0.4718906603916678 0.3574846054673005 0.4718906603916678 0.3574846054673005 0.4150238054549634
+0.4692532159820036 0.3631428288623706 0.4692532159820036 0.3631428288623706 0.43009040544016214
+0.4677479438489761 0.3666592694728955 0.46774794384897606 0.36665926947289545 0.4375418388815699
+0.4840387496106527 0.3455390425076019 0.4840387496106527 0.3455390425076019 0.35157840805414664
+0.48242404337204975 0.3484222706569328 0.48242404337204975 0.3484222706569328 0.36516949013509375
+0.47712381468891585 0.35171194566585817 0.4771238146889159 0.35171194566585817 0.39052233845612516
+0.48136396295280665 0.35072570797416436 0.48136396295280665 0.35072570797416436 0.3747802375958074
+0.4796056874663695 0.35185854051655524 0.47960568746636956 0.35185854051655524 0.3834354465808925
+0.47586171832770696 0.3546599678639394 0.4758617183277069 0.35465996786393944 0.40071512780336366
+0.47474879995060165 0.35775877332656647 0.47474879995060165 0.3577587733265664 0.4104094284619983
+0.4911381198409527 0.33948114059495227 0.4911381198409526 0.33948114059495227 0.30342108657894323
+0.4893356751728147 0.342716434887325 0.4893356751728147 0.342716434887325 0.3206571920687548
+0.4949019902319959 0.3384735472074292 0.49490199023199594 0.3384735472074292 0.2810748707979116
+0.48747411571366417 0.3458918395440125 0.48747411571366417 0.3458918395440125 0.3377348741476563
+0.5049462734497696 0.3307029169208117 0.5049462734497697 0.3307029169208117 0.2063285842127789
+0.5027541288858487 0.3334676345668403 0.5027541288858487 0.3334676345668403 0.22465501122958811
+0.5005443089240587 0.3361612179858138 0.5005443089240585 0.3361612179858138 0.24357648451240047
+0.49875263406552267 0.33927624643895116 0.49875263406552267 0.33927624643895116 0.26149816556418143
+0.5178655080451278 0.3242493207608687 0.5178655080451278 0.3242493207608687 0.14187105027393507
+0.5125967795336125 0.3259841748036317 0.5125967795336125 0.3259841748036317 0.1597329444456278
+0.5157232867057242 0.32672320737033533 0.5157232867057243 0.3267232073703354 0.15067976423131377
+0.5105253501782578 0.32870248391655554 0.5105253501782578 0.32870248391655554 0.1736278157265034
+0.5083592946266396 0.33149771533678757 0.5083592946266396 0.33149771533678757 0.1897769680837453
+0.5312092597732995 0.3190761671010755 0.5312092597732995 0.3190761671010755 0.1647384678072816
+0.525600542364203 0.3203629386235878 0.5256005423642031 0.3203629386235878 0.1417685501711936
+0.5287114214774213 0.32154104683316803 0.5287114214774213 0.32154104683316803 0.15601249330180356
+0.523200891187984 0.32284226875691313 0.523200891187984 0.3228422687569132 0.13995905269758244
+0.5209249722043331 0.3252972008767941 0.5209249722043331 0.3252972008767941 0.14175713896960254
+0.5456870437898761 0.31471016121098533 0.5456870437898761 0.31471016121098533 0.25875185740936857
+0.5396895254433839 0.31558278264526834 0.5396895254433839 0.31558278264526834 0.21478129971822302
+0.5428428002684683 0.3170123669564619 0.5428428002684683 0.3170123669564619 0.24199214544162784
+0.5369426962147887 0.31796159150233044 0.5369426962147887 0.31796159150233044 0.19970954599358595
+0.5342887535371467 0.32035392413369945 0.5342887535371467 0.32035392413369945 0.18610097912242893
+0.5548746347496286 0.31171720597294433 0.5548746347496286 0.31171720597294433 0.32262842903717504
+0.551752517217752 0.3139631819497973 0.5517525172177519 0.3139631819497973 0.30469842410479453
+0.5488225932457325 0.31621258101141386 0.5488225932457325 0.31621258101141386 0.2875369149069538
+0.5853071033871777 0.30894896152132534 0.5853071033871777 0.3089489615213253 0.5175469261373012
+0.5575572499399505 0.31344767061532597 0.5575572499399505 0.31344767061532597 0.3486002333552874
+0.5819003869617866 0.31023232385163163 0.5819003869617866 0.31023232385163163 0.5037209298094708
+0.560279050982601 0.31501636013566653 0.5602790509826009 0.31501636013566653 0.3746847066316051
+0.5625819410541364 0.31604805741370934 0.5625819410541364 0.31604805741370934 0.3957784080190926
+0.5680137289942312 0.3141137369491099 0.5680137289942312 0.3141137369491099 0.4290563350045921
+0.5650379211575054 0.31540249667190023 0.5650379211575053 0.31540249667190023 0.4120414367040944
+0.5785854024273807 0.31142737728687625 0.5785854024273807 0.31142737728687625 0.488853768385805
+0.5714801109049092 0.31262913478327514 0.5714801109049094 0.3126291347832751 0.44764534053593824
+0.5751901908909781 0.3125477117523589 0.5751901908909781 0.3125477117523589 0.4719540916419138
+0.5704171324041377 0.31646373948073675 0.5704171324041377 0.31646373948073675 0.45488314023868787
+0.45287880538484915 0.39956696861398805 0.45287880538484915 0.39956696861398805 0.5139082838319579
+0.45667843234306355 0.40203436292218414 0.45667843234306355 0.40203436292218414 0.5112101978251139
+0.6383221479980952 0.26774492898087493 0.6383221479980952 0.26774492898087493 0.5655446845948658
+0.6347489190435637 0.26869306437978496 0.6347489190435637 0.26869306437978496 0.5600479259016576
+0.6312153421685629 0.2697046805647237 0.6312153421685629 0.2697046805647237 0.5541566645126302
+0.627722749796852 0.27077048094206924 0.627722749796852 0.27077048094206924 0.5478940602963612
+0.607783122475493 0.2777460432780884 0.6077831224754932 0.27774604327808833 0.503593172267919
+0.6242659978967592 0.2718696004525513 0.6242659978967592 0.2718696004525513 0.5412344779976631
+0.6208543008008435 0.27301717397341463 0.6208543008008435 0.27301717397341463 0.5342813782081041
+0.6174945469286323 0.2742007037860638 0.6174945469286323 0.2742007037860638 0.5270573304002802
+0.6109613399635748 0.27662013585094103 0.6109613399635748 0.27662013585094103 0.5118629153576283
+0.6141791130310825 0.2754177359805252 0.6141791130310824 0.2754177359805252 0.5195611024442569
+0.6027606133975639 0.2806467012169011 0.6027606133975639 0.2806467012169011 0.4933319737207796
+0.5982393191104983 0.2864315503223352 0.5982393191104983 0.2864315503223352 0.4939164526358777
+0.5898065753547581 0.30023762174826746 0.589806575354758 0.30023762174826746 0.5062616795961533
+0.5887421610555347 0.307653600684805 0.5887421610555347 0.307653600684805 0.5302473204714858
+0.5881860220704755 0.3113573129324402 0.5881860220704755 0.3113573129324401 0.5424641605374784
+0.5892584420430006 0.3039586883315003 0.5892584420430006 0.30395868833150036 0.5180987801084558
+0.5942581647886941 0.29155199620319866 0.5942581647886941 0.29155199620319866 0.4945828604456408
+0.5936940559324342 0.2952924778509739 0.5936940559324341 0.29529247785097384 0.5058607291888225
+0.5931529182828562 0.29900113766698105 0.5931529182828562 0.29900113766698105 0.517451000218375
+0.5976205533256694 0.2903147359867018 0.5976205533256694 0.2903147359867018 0.5050171480668957
+0.601720922303666 0.2849765207628124 0.601720922303666 0.2849765207628124 0.5035179913057855
+0.6064685624832146 0.2809099926063341 0.6064685624832146 0.2809099926063341 0.5086729736915382
+0.641928436834502 0.2668345927790354 0.641928436834502 0.2668345927790354 0.5705334068399552
+0.6455783458613249 0.2659383682265725 0.6455783458613249 0.2659383682265725 0.5749493802895334
+0.6493505987000003 0.2650289993657804 0.6493505987000003 0.2650289993657804 0.5788217525076548
+0.6534297463634409 0.2635845217597009 0.6534297463634408 0.2635845217597009 0.5812970572069026
+0.6573644752297415 0.2633615949868721 0.6573644752297415 0.2633615949868721 0.5851626307451266
+0.6609672362062821 0.26287313299307 0.6609672362062821 0.26287313299307 0.5873661089746712
+0.6934783151273016 0.2325940190535662 0.6934783151273016 0.2325940190535662 0.5397255289633001
+0.6960722254710752 0.23114431611670516 0.6960722254710752 0.2311443161167052 0.5379686053662515
+0.6891160532404262 0.23598996208237732 0.6891160532404262 0.23598996208237732 0.544760152606112
+0.685743361921156 0.23661431834063715 0.685743361921156 0.23661431834063715 0.5455310978381337
+0.680530000305516 0.2408301092335279 0.680530000305516 0.2408301092335279 0.5521121184893288
+0.6790107124864339 0.24440296623904825 0.6790107124864339 0.24440296623904825 0.5584480952162255
+0.6739180187774921 0.24831740645854442 0.6739180187774921 0.24831740645854442 0.5647583157943353
+0.6724345667382191 0.2517810367001882 0.6724345667382191 0.2517810367001882 0.5711509385923382
+0.6644770008252555 0.26250775724382697 0.6644770008252555 0.26250775724382697 0.5891088846090334
+0.6659511303361122 0.259067125769217 0.6659511303361122 0.259067125769217 0.5829585148364106
+0.6674070687711617 0.25562162141414035 0.6674070687711618 0.2556216214141403 0.5767150213023687
+0.6709491246648082 0.25523817377943203 0.6709491246648082 0.25523817377943203 0.5775500383840092
+0.6774907415566561 0.24792433885348783 0.6774907415566561 0.24792433885348783 0.5648677464895925
+0.6841859599896813 0.2402629954864305 0.6841859599896813 0.24026299548643051 0.5515693294817144
+0.6923034268455325 0.23516600230923831 0.6923034268455325 0.23516600230923831 0.543361823838362
+0.7011114798949389 0.22699659477360157 0.7011114798949389 0.2269965947736016 0.5334233844951043
+0.7056462168517541 0.2269304884974133 0.7056462168517541 0.2269304884974133 0.5336705412813542
+0.6997626606963765 0.23056292536791553 0.6997626606963765 0.23056292536791553 0.5373279187359419
+0.7259414332094529 0.2000320762675747 0.7259414332094529 0.2000320762675747 0.5216290117850065
+0.7238485951802444 0.2034187975695703 0.7238485951802444 0.2034187975695703 0.5230301804883074
+0.7217551523752258 0.20679777786796236 0.7217551523752258 0.20679777786796236 0.5242256817195458
+0.7196665915374781 0.2101637757724503 0.7196665915374781 0.2101637757724503 0.5253351546075674
+0.7175940179876057 0.213510654816211 0.7175940179876057 0.21351065481621098 0.5264828857067289
+0.7155515674077217 0.2168338069465 0.7155515674077217 0.21683380694650004 0.5277891368242904
+0.713561750431993 0.22013477962111858 0.713561750431993 0.22013477962111858 0.5293664920857247
+0.7099291335787633 0.2268283279288517 0.7099291335787633 0.2268283279288517 0.53375676132912
+0.7116704714554571 0.22343479483429185 0.7116704714554571 0.22343479483429185 0.5313224943942308
+0.7322175732217445 0.1966422311197975 0.7322175732217445 0.1966422311197975 0.5217033938915038
+0.7301255230125391 0.20003261441496611 0.7301255230125391 0.20003261441496614 0.5234793468175054
+0.7384937238493606 0.19325184782462926 0.7384937238493606 0.19325184782462926 0.5208532651067189
+0.7364016736401555 0.19664223111979806 0.7364016736401555 0.19664223111979806 0.5232215378497757
+0.7447698744769767 0.18986146452946073 0.7447698744769767 0.18986146452946073 0.5188296759029356
+0.7426778242677713 0.1932518478246296 0.7426778242677713 0.1932518478246296 0.5219311744244336
+0.7510460251045918 0.1864710812342918 0.7510460251045918 0.1864710812342918 0.5155217091821037
+0.7489539748953868 0.18986146452946073 0.7489539748953868 0.18986146452946073 0.5194008076843851
+0.7573221757322074 0.18308069793912285 0.7573221757322074 0.18308069793912285 0.5109687736573286
+0.7552301255230022 0.1864710812342918 0.7552301255230022 0.1864710812342918 0.5155694236177016
+0.7656903765690277 0.17629993134878497 0.7656903765690277 0.17629993134878497 0.49985962218407026
+0.7635983263598227 0.1796903146439539 0.7635983263598227 0.1796903146439539 0.5053497940248848
+0.7615062761506176 0.18308069793912285 0.7615062761506176 0.18308069793912285 0.5105251529947207
+0.7719665271966429 0.17290954805361602 0.7719665271966428 0.17290954805361602 0.49327751896744837
+0.7698744769874378 0.17629993134878497 0.7698744769874378 0.17629993134878497 0.49895096791114785
+0.7782426778242585 0.16951916475844708 0.7782426778242585 0.16951916475844708 0.4865195705003094
+0.7761506276150533 0.17290954805361602 0.7761506276150533 0.17290954805361602 0.49211581161705403
+0.7845188284518736 0.16612878146327814 0.7845188284518736 0.16612878146327814 0.4798983552244444
+0.7824267782426685 0.16951916475844708 0.7824267782426685 0.16951916475844708 0.485184231550932
+0.790794979079489 0.1627383981681092 0.790794979079489 0.1627383981681092 0.47362405470636304
+0.7887029288702839 0.16612878146327814 0.7887029288702839 0.16612878146327814 0.47843055392454836
+0.7970712127071793 0.15934797597521547 0.7970712127071793 0.15934797597521547 0.46776432079907787
+0.7949792768347314 0.1627383552912436 0.7949792768347314 0.1627383552912436 0.47201204315927786
+0.8033477221536836 0.15595728371319792 0.8033477221536834 0.15595728371319792 0.46223278737768886
+0.8012557848645545 0.15934755167560616 0.8012557848645546 0.15934755167560619 0.46594027381341396
+0.8096259761945305 0.1525646510575819 0.8096259761945305 0.1525646510575819 0.4568097260897286
+0.8075333493309828 0.1559548624244372 0.8075333493309828 0.1559548624244372 0.4600818227722177
+0.8179954831858779 0.14578399006383358 0.8179954831858779 0.14578399006383358 0.44851500336870237
+0.8159051848688442 0.14917198901502737 0.8159051848688442 0.14917198901502737 0.4511997544673734
+0.8138139857984578 0.15255982522172526 0.8138139857984578 0.15255982522172526 0.4541944148820472
+0.824275251279346 0.14239224611880907 0.824275251279346 0.14239224611880907 0.44243647621047616
+0.8221844527497923 0.14578130875741427 0.8221844527497923 0.14578130875741427 0.4451023542290376
+0.8305557749733302 0.13899701190500077 0.8305557749733302 0.13899701190500077 0.43553585335111306
+0.8284667810738536 0.14238561865771948 0.8284667810738536 0.14238561865771948 0.43829043094052605
+0.8368316772221893 0.13560441861959666 0.8368316772221894 0.13560441861959663 0.427848179555446
+0.8347449582802041 0.1389886538284484 0.8347449582802041 0.1389886538284484 0.4307006862747263
+0.8431131191798716 0.13220395596805343 0.8431131191798716 0.13220395596805343 0.4196352441797931
+0.8410231461706309 0.13558906071439872 0.8410231461706309 0.13558906071439872 0.42247609829747773
+0.8493903208159597 0.12880927346847806 0.8493903208159598 0.12880927346847806 0.4114335162841663
+0.8472959827129278 0.13218830572998805 0.8472959827129278 0.13218830572998805 0.4140186683662681
+0.8556425878018502 0.1253920284500544 0.8556425878018502 0.1253920284500544 0.4040286162202018
+0.8535505617445374 0.12877048272164396 0.8535505617445374 0.12877048272164396 0.40598469524346065
+0.8618823410077159 0.12196151061139898 0.8618823410077159 0.12196151061139897 0.39827911760651524
+0.8597809700205751 0.12533631484253824 0.8597809700205751 0.12533631484253824 0.39920270584332007
+0.8681156523085956 0.1185143035422902 0.8681156523085957 0.1185143035422902 0.39507903262146843
+0.8660238827776032 0.12188652640022025 0.8660238827776032 0.12188652640022025 0.39452221287426914
+0.874361588995388 0.11512279070983694 0.874361588995388 0.11512279070983693 0.39501133089333
+0.8722276730288859 0.11845060592211937 0.8722276730288859 0.11845060592211935 0.39277005233525214
+0.878488319501637 0.1150811817336425 0.878488319501637 0.1150811817336425 0.39434434746661
+0.8807427551564193 0.11168982781588588 0.8807427551564192 0.11168982781588588 0.39853889310706236
+0.882894396858733 0.10835390089115289 0.8828943968587329 0.10835390089115289 0.40362801691996
+0.8892024983185521 0.10501119485920225 0.8892024983185521 0.10501119485920225 0.412021093918677
+0.8871353072306566 0.10824998067281 0.8871353072306566 0.10824998067281 0.40561076484877573
+0.8953024345752316 0.10138423527179055 0.8953024345752317 0.10138423527179054 0.42302049448271556
+0.8932794042503207 0.10474269081321969 0.8932794042503208 0.10474269081321967 0.4154806685628552
+0.8988202824600234 0.1011234810329253 0.8988202824600234 0.1011234810329253 0.4265408459909591
+0.9016953840094686 0.09853016522470866 0.9016953840094687 0.09853016522470867 0.4341183215077385
+0.9054471543851879 0.09747515325346612 0.9054471543851879 0.09747515325346612 0.43926136082785494
+0.9080113889556427 0.09444442826003896 0.9080113889556428 0.09444442826003896 0.4471357647885932
+0.9118924610683671 0.09252749402424953 0.9118924610683671 0.09252749402424953 0.4533740920269583
+0.9154490762738927 0.09036548059385166 0.9154490762738927 0.09036548059385165 0.4590067545781427
+0.9186894092398612 0.08822178301886491 0.9186894092398612 0.08822178301886491 0.46362995139245555
+0.9220351492832659 0.0861227918292895 0.9220351492832659 0.0861227918292895 0.46720509034063246
+0.9255577963700516 0.08403992716366893 0.9255577963700518 0.08403992716366893 0.4695832858786609
+0.9289800938795021 0.08192926738096257 0.9289800938795022 0.08192926738096257 0.47069767039275784
+0.9322463787729567 0.07965450146615284 0.9322463787729568 0.07965450146615284 0.4706469151150729
+0.9355763678917975 0.07749579820241256 0.9355763678917975 0.07749579820241258 0.4690620984453493
+0.9389595939850697 0.07534133821910492 0.9389595939850697 0.07534133821910492 0.46598553318748337
+0.9423618336627859 0.07322487665422117 0.9423618336627859 0.07322487665422117 0.4614513366699616
+0.9457314751379825 0.07116769841112809 0.9457314751379825 0.07116769841112809 0.4556062497476853
+0.94911794230336 0.06907819870900973 0.94911794230336 0.06907819870900973 0.4484478368907267
+0.9525213096725396 0.06697191779532073 0.9525213096725395 0.06697191779532073 0.44005431224993646
+0.9559233095650259 0.06486566299137797 0.955923309565026 0.06486566299137797 0.43059669686663776
+0.9593150866311116 0.06277905506787718 0.9593150866311116 0.06277905506787718 0.4202694127197088
+0.9627046687643975 0.06069114692352537 0.9627046687643975 0.060691146923525376 0.40921853835625627
+0.9660915247719126 0.058594973944136264 0.9660915247719126 0.058594973944136264 0.39763521262200596
+0.9694857043861504 0.05649598776774484 0.9694857043861503 0.05649598776774484 0.3857133441122496
+0.9728780353575397 0.054394599476497954 0.9728780353575397 0.05439459947649795 0.3737042941133593
+0.9762678598978369 0.05230288418221804 0.9762678598978368 0.05230288418221805 0.36186499154673374
+0.9796578658506406 0.05021037158949352 0.9796578658506406 0.05021037158949352 0.35041031629437475
+0.9830482306170181 0.04811796420718324 0.9830482306170181 0.048117964207183235 0.3395728516153626
+0.9864384668193242 0.04602510460247 0.9864384668193242 0.04602510460247 0.3295679941879954
+0.9898288501144932 0.04393305439326489 0.9898288501144933 0.04393305439326489 0.3205874250255371
+0.9932192334096621 0.04184100418405978 0.9932192334096621 0.04184100418405978 0.31278360044305065
+0.04602415885755542 0.9932198071621912 0.04602415885755542 0.9932198071621912 0.07572801809279218
+0.048116339576572804 0.9898293446909882 0.048116339576572804 0.9898293446909882 0.07778692118338715
+0.050208846792623184 0.9864386841447149 0.050208846792623184 0.9864386841447149 0.08018509594470097
+0.052301255230125486 0.9830480835241556 0.052301255230125486 0.9830480835241556 0.0828549207512775
+0.0543933054393305 0.9796577002289867 0.0543933054393305 0.9796577002289867 0.08572248201406509
+0.05648535564853552 0.9762673169338179 0.05648535564853552 0.9762673169338179 0.08871175237754193
+0.05857740585774052 0.9728769336386489 0.05857740585774052 0.9728769336386488 0.09174683698607662
+0.06066945606694551 0.9694865503434796 0.06066945606694551 0.9694865503434796 0.09475449009897406
+0.0627615062761504 0.9660961670483109 0.0627615062761504 0.9660961670483109 0.09766566605335893
+0.06485355648535551 0.962705783753142 0.06485355648535551 0.962705783753142 0.10041660656755451
+0.06694536710903873 0.959314961036176 0.06694536710903874 0.959314961036176 0.10294968999125485
+0.06903699904577928 0.9559245913564471 0.0690369990457793 0.955924591356447 0.10521321162305819
+0.07112480843244921 0.9525360934916273 0.07112480843244921 0.9525360934916273 0.10716153815550834
+0.07321413167711328 0.9491496112967797 0.07321413167711328 0.9491496112967797 0.10875833298546267
+0.07530694156051974 0.9457634705019674 0.07530694156051974 0.9457634705019674 0.10997415749075116
+0.0773980432495817 0.9423830908341082 0.0773980432495817 0.9423830908341081 0.1107841949489305
+0.07948954435025536 0.9390096352042859 0.07948954435025536 0.9390096352042859 0.1111744005890389
+0.08158214382295968 0.9356327734995614 0.08158214382295968 0.9356327734995614 0.11113699204640272
+0.08371399938450205 0.9322589765348124 0.08371399938450207 0.9322589765348123 0.11066661682512947
+0.08585134206274077 0.9288853487808048 0.08585134206274077 0.9288853487808048 0.10977164648417757
+0.08793374136714266 0.9255053863619075 0.08793374136714266 0.9255053863619075 0.10847249063311848
+0.09004522313217811 0.9221199197297377 0.09004522313217811 0.9221199197297377 0.10677648904764302
+0.092099816019451 0.9186813808189581 0.092099816019451 0.9186813808189581 0.10470573355641223
+0.09419193589842106 0.9152714522041866 0.09419193589842106 0.9152714522041866 0.1023127866557028
+0.09634897447447098 0.9118801252965029 0.09634897447447098 0.9118801252965029 0.09963448865716755
+0.0984590282913525 0.9085153543784734 0.0984590282913525 0.9085153543784735 0.09676061342385195
+0.10053099944352935 0.9051441461834354 0.10053099944352935 0.9051441461834354 0.09371923837598593
+0.10278950167844418 0.9019015325926141 0.10278950167844418 0.9019015325926141 0.09066886051319163
+0.10477149120598174 0.8985653484148147 0.10477149120598174 0.8985653484148147 0.08755172388701114
+0.10665091037856189 0.8952010110144843 0.10665091037856189 0.8952010110144845 0.08450480932996178
+0.10827315088200767 0.8913614697768296 0.10827315088200765 0.8913614697768296 0.08114368613039107
+0.1107698816772972 0.8883649660820196 0.11076988167729719 0.8883649660820198 0.07868621871796742
+0.11158839072945881 0.8849275405393956 0.11158839072945881 0.8849275405393956 0.07599778114972777
+0.11445140466012449 0.883941563090142 0.11445140466012449 0.883941563090142 0.07572714222752093
+0.11628808887085225 0.88129993762768 0.11628808887085225 0.8812999376276799 0.07433862059709785
+0.11817020715334958 0.8759310231280276 0.11817020715334958 0.8759310231280276 0.07170308805658149
+0.11816827519908488 0.8789344201805771 0.11816827519908488 0.8789344201805772 0.07347561042550273
+0.12077815441943923 0.8742558632562797 0.12077815441943925 0.8742558632562798 0.07205465867893131
+0.12209156377109653 0.8707109572534947 0.12209156377109653 0.8707109572534948 0.07125465442797929
+0.12524312455193917 0.8638955909938435 0.12524312455193917 0.8638955909938435 0.07137597216858854
+0.12539678524983994 0.8677350514595872 0.1253967852498399 0.8677350514595873 0.07240331806039063
+0.1284854825720291 0.8618694958644991 0.1284854825720291 0.8618694958644991 0.07354125698847015
+0.12871429738478496 0.8578011979876418 0.128714297384785 0.8578011979876418 0.07342283440493898
+0.13217110501049903 0.8515122685744907 0.13217110501049903 0.8515122685744906 0.07658738965730472
+0.13215385804567792 0.855749863798693 0.13215385804567792 0.855749863798693 0.07628830901682594
+0.13553833207091545 0.8453164029230442 0.13553833207091545 0.8453164029230443 0.08035662164863415
+0.13556539599771353 0.8494776716800091 0.13556539599771353 0.8494776716800091 0.07972774819607542
+0.13896185012803328 0.8390253643907372 0.13896185012803328 0.8390253643907372 0.08447160676706551
+0.1389844372929371 0.8432868850867159 0.1389844372929371 0.8432868850867159 0.08362374024724334
+0.14238076458954158 0.8326797197927776 0.1423807645895416 0.8326797197927774 0.08853050508154277
+0.14237079828610272 0.8369159386787461 0.1423707982861027 0.8369159386787463 0.08763995229135772
+0.14578123907109944 0.8263661623791231 0.14578123907109944 0.8263661623791231 0.09224572666630515
+0.14577825040192394 0.8305635249202052 0.14577825040192394 0.8305635249202051 0.0914817113701565
+0.14915235435661647 0.8243055303421246 0.14915235435661647 0.8243055303421246 0.09488138761068489
+0.15253475854331638 0.8180415316873768 0.15253475854331636 0.8180415316873768 0.09775179964450942
+0.15250921801337372 0.8222528842279869 0.15250921801337372 0.8222528842279869 0.097337169241744
+0.1559439514031584 0.811738397981049 0.1559439514031584 0.811738397981049 0.10002280437257405
+0.15593761733189268 0.815946265523004 0.15593761733189268 0.815946265523004 0.09989605028694197
+0.15934130472576793 0.8054475340353778 0.15934130472576793 0.8054475340353778 0.1016396369536708
+0.1593346180845908 0.8096393951772612 0.1593346180845908 0.8096393951772612 0.10180657081436373
+0.1627353214595786 0.7991662361170712 0.1627353214595786 0.7991662361170712 0.10261936496300506
+0.16273198385163487 0.8033535640094315 0.16273198385163487 0.8033535640094315 0.10307448410513122
+0.1661268540566078 0.7928888807601192 0.1661268540566078 0.7928888807601192 0.1030020751842597
+0.16612500482990458 0.7970744443792844 0.16612500482990458 0.7970744443792844 0.10371755100253822
+0.16951820188160868 0.7866124421140429 0.16951820188160868 0.7866124421140429 0.10284940738709782
+0.1695167572382872 0.790798382972084 0.1695167572382872 0.790798382972084 0.10378089253961127
+0.17290940337007896 0.780335716332389 0.17290940337007896 0.780335716332389 0.10223918902337024
+0.17290903518162345 0.7845213221167872 0.17290903518162345 0.7845213221167872 0.10332818327289657
+0.17629998518317566 0.7740590032149831 0.17629998518317566 0.7740590032149831 0.10126343438789541
+0.17630004589223233 0.7782438301526925 0.17630004589223233 0.7782438301526925 0.1024395109501224
+0.179690352025766 0.7677825603234757 0.179690352025766 0.7677825603234757 0.1000273460017385
+0.17969041744279546 0.7719668979666655 0.17969041744279546 0.7719668979666655 0.10121148650270258
+0.18308073331780772 0.765690465232511 0.18308073331780772 0.765690465232511 0.09975598938181456
+0.1864710864610414 0.7594142371171418 0.1864710864610414 0.7594142371171418 0.09820040400582196
+0.18647111718662127 0.7635983548976403 0.18647111718662127 0.7635983548976403 0.09933423898855855
+0.18986146697526607 0.753138077582522 0.18986146697526607 0.753138077582522 0.09668690973037565
+0.18986147172381074 0.7573221784071951 0.18986147172381074 0.7573221784071951 0.09762646749530264
+0.19325184831155265 0.7468619251904337 0.19325184831155265 0.7468619251904337 0.09536926479559864
+0.19325184924134034 0.7510460260947166 0.19325184924134034 0.7510460260947166 0.09602806003357446
+0.19664223121642896 0.7405857741682506 0.19664223121642896 0.7405857741682506 0.09440557806466988
+0.19664223137731338 0.7447698747078874 0.19664223137731338 0.7447698747078874 0.09470685293700741
+0.20003261443426856 0.7343096234542368 0.20003261443426856 0.7343096234542368 0.09394627541641619
+0.20003261446556356 0.7384937239015438 0.20003261446556356 0.7384937239015438 0.09383065740513007
+0.20342285225826315 0.7280332577707407 0.20342285225826315 0.7280332577707407 0.09411825622792915
+0.20342295444988276 0.7322175066098545 0.20342295444988276 0.7322175066098545 0.09355106081958826
+0.20681138127214105 0.725939745750613 0.20681138127214105 0.725939745750613 0.09398481086200845
+0.21019490787005654 0.7238438411329073 0.21019490787005654 0.7238438411329073 0.09406100114946848
+0.2135719958208425 0.7217417070278263 0.2135719958208425 0.7217417070278263 0.09439503820029421
+0.21694509412392457 0.7196298135698932 0.21694509412392457 0.7196298135698932 0.09502531123264556
+0.2203197647627407 0.717500047538623 0.2203197647627407 0.717500047538623 0.09597889113692537
+0.22367633594711112 0.7153256982166663 0.22367633594711114 0.7153256982166663 0.09726907356676108
+0.22798305967451815 0.7092750947834416 0.2279830596745182 0.7092750947834415 0.10061007428496861
+0.23073703379906282 0.7063053505847376 0.23073703379906282 0.7063053505847376 0.10266208330901248
+0.23243178746255444 0.700413356941439 0.2324317874625544 0.7004133569414391 0.1056442598188687
+0.23332572651763395 0.7038097830727665 0.23332572651763392 0.7038097830727664 0.10461184432265795
+0.23647353205966448 0.6917068308931816 0.23647353205966448 0.6917068308931816 0.11083254389055937
+0.2388753594250674 0.6888173501549629 0.2388753594250674 0.6888173501549629 0.11285076822560658
+0.24141158922566983 0.6859679483762442 0.24141158922566983 0.6859679483762441 0.11484420031658227
+0.26377556844567784 0.6581539143654411 0.26377556844567784 0.6581539143654411 0.12556780055878944
+0.24590721735658985 0.6762685735109565 0.24590721735658985 0.6762685735109565 0.11981626577399253
+0.24848946219295873 0.6735186174511331 0.24848946219295873 0.6735186174511331 0.12125962499236352
+0.25099670967434945 0.6708234334251214 0.25099670967434945 0.6708234334251214 0.12249136683842952
+0.26161578825972553 0.6601280713860584 0.2616157882597255 0.6601280713860583 0.12539461354630854
+0.256110852347433 0.6625277967324269 0.2561108523474331 0.6625277967324269 0.1252731771116238
+0.2594920054908293 0.6621530146163095 0.2594920054908293 0.6621530146163095 0.1251132232782881
+0.25329600820397913 0.6682096292063673 0.2532960082039791 0.6682096292063672 0.12349132785088966
+0.25557261435534817 0.6660413842093559 0.25557261435534817 0.6660413842093559 0.12419258482472981
+0.24412403730178522 0.6828889513923767 0.24412403730178522 0.6828889513923767 0.11686510758108183
+0.24676511553291247 0.6799694113499778 0.24676511553291247 0.6799694113499778 0.11864545415238502
+0.23492883651912336 0.6977343376055533 0.23492883651912336 0.6977343376055533 0.10769037126688592
+0.23747311784388095 0.6950317227814932 0.23747311784388095 0.6950317227814932 0.10977484658642718
+0.22701988398768014 0.7133709661477272 0.22701988398768017 0.7133709661477273 0.09879412848555015
+0.2301087366379974 0.712388461832555 0.2301087366379974 0.712388461832555 0.10018716050607368
+0.2666790683898222 0.6580712204304772 0.2666790683898222 0.6580712204304772 0.12520319540601701
+0.2688520838587504 0.6551879170909178 0.2688520838587504 0.6551879170909177 0.12531227806495274
+0.27317949741899444 0.6461834299381375 0.27317949741899444 0.6461834299381374 0.125885552436211
+0.2795387726857685 0.6314889712494095 0.2795387726857685 0.6314889712494095 0.12924176487883696
+0.28222089557444513 0.6289385683716745 0.28222089557444513 0.6289385683716745 0.1294230925710914
+0.2842327282414617 0.6230888204293914 0.2842327282414617 0.6230888204293913 0.1329314626239919
+0.28488634318182243 0.6264308228271722 0.28488634318182243 0.6264308228271722 0.12975811314100752
+0.2940209723217083 0.6054334141663921 0.29402097232170826 0.6054334141663921 0.14907468375860009
+0.2862932593842817 0.6171069650398389 0.2862932593842817 0.6171069650398389 0.1378129039446905
+0.2946334540719259 0.6091250533609739 0.2946334540719259 0.6091250533609739 0.14297198413485893
+0.2890534590456362 0.6144572887768176 0.2890534590456362 0.6144572887768175 0.1392105271728528
+0.29187849313739817 0.6117708728769821 0.29187849313739817 0.6117708728769821 0.14092991784068729
+0.28695686253065683 0.6205959878074703 0.28695686253065683 0.6205959878074703 0.1336462699458123
+0.2758795020331448 0.6434814946822546 0.2758795020331448 0.6434814946822546 0.12562510069886776
+0.27766705944350273 0.637441596520936 0.27766705944350273 0.637441596520936 0.12702398428444228
+0.2785506498047829 0.6408039543089703 0.2785506498047829 0.6408039543089704 0.12537761165507003
+0.2803397636184379 0.6348234873204038 0.2803397636184379 0.6348234873204038 0.1269513081283639
+0.2714812829727598 0.6524136907866348 0.2714812829727598 0.6524136907866348 0.12516415140937584
+0.27415615836530355 0.6496521413841682 0.27415615836530355 0.6496521413841682 0.12490039217854466
+0.4148844270085097 0.4226885429460891 0.4148844270085097 0.42268854294608904 0.6401924196340906
+0.4111541717031981 0.42283277716045886 0.4111541717031981 0.4228327771604588 0.5976512674864284
+0.40621546080213755 0.4235483717442119 0.4062154608021375 0.42354837174421184 0.5437861493486419
+0.40902181743625105 0.42416907302838674 0.40902181743625105 0.42416907302838674 0.5768218185514314
+0.4015211307241027 0.4251528356196179 0.4015211307241027 0.42515283561961786 0.49307143611765275
+0.4046902403464175 0.4255696009680075 0.4046902403464175 0.4255696009680075 0.5284886870358007
+0.3985355606488843 0.4254827788676788 0.3985355606488843 0.4254827788676789 0.46126966519738205
+0.3961107430923667 0.42630123889415183 0.3961107430923667 0.4263012388941519 0.43551974191278464
+0.4007538735790802 0.42716423826643546 0.4007538735790802 0.42716423826643546 0.4834160248754841
+0.3948566366461742 0.4285416174135526 0.39485663664617426 0.4285416174135526 0.41882855732096375
+0.39109714308798266 0.42777485870358634 0.39109714308798266 0.42777485870358634 0.3849949149710234
+0.3887571154989512 0.4299926315944509 0.38875711549895126 0.4299926315944509 0.358464709143633
+0.38483766570008066 0.42975557237623524 0.3848376657000806 0.4297555723762353 0.3278091785338359
+0.38182056274202086 0.43105371437660683 0.38182056274202086 0.43105371437660683 0.30250096171101837
+0.3869721569516114 0.43218405422705547 0.3869721569516114 0.43218405422705547 0.33667983856321276
+0.3760859729439225 0.4330573250776009 0.3760859729439225 0.4330573250776009 0.26376773010413407
+0.3801071617189814 0.4334500080126495 0.38010716171898146 0.4334500080126495 0.28470919001485423
+0.36698359615402976 0.43855749493978097 0.36698359615402976 0.4385574949397809 0.22553690102567375
+0.37362321927268966 0.43611955638676486 0.37362321927268966 0.43611955638676486 0.24638395173712274
+0.36997300630039287 0.43763039759027467 0.3699730063003929 0.4376303975902747 0.23258771550066784
+0.36554691525605143 0.4408197433674499 0.3655469152560515 0.44081974336744983 0.2241165145932106
+0.35999849624427444 0.4434508234889545 0.35999849624427444 0.44345082348895454 0.22583635326390913
+0.36365728232166683 0.44337685290093165 0.36365728232166683 0.4433768529009317 0.22568462707978384
+0.35798726227936883 0.446344880642078 0.3579872622793689 0.44634488064207806 0.2343261640018046
+0.3520154035424689 0.4495933158489264 0.3520154035424689 0.4495933158489264 0.2516875834347834
+0.35581325337973047 0.4493919858698115 0.35581325337973047 0.4493919858698115 0.2465115909888819
+0.35004071037962786 0.45275027471387874 0.35004071037962786 0.45275027471387874 0.26709758334050315
+0.3442636288274171 0.4563914015550191 0.34426362882741707 0.45639140155501906 0.29011785035047866
+0.34814859159064687 0.45594422907893173 0.34814859159064687 0.4559442290789317 0.2835175644263017
+0.3423709251528259 0.4597365697591971 0.3423709251528259 0.4597365697591971 0.30702826951270895
+0.33589702360383544 0.46379360949083004 0.33589702360383544 0.4637936094908301 0.32988367665176827
+0.34049135435506267 0.4632268798077377 0.34049135435506267 0.46322687980773763 0.3240491029474344
+0.33492991792374566 0.4675003772279997 0.33492991792374566 0.4675003772279997 0.3451418276346249
+0.3299170077001205 0.4712459755786963 0.3299170077001205 0.47124597557869624 0.3604797111943709
+0.3286366578534631 0.47413803028765844 0.32863665785346313 0.4741380302876585 0.37005193813174864
+0.3335213035797413 0.4708135463565812 0.3335213035797413 0.4708135463565812 0.3580290393009742
+0.32744234435523223 0.477229869326192 0.3274423443552323 0.477229869326192 0.3791112336145655
+0.3231505773800139 0.48099498969238375 0.3231505773800139 0.4809949896923838 0.38797274107471647
+0.3220968369133762 0.4841039859858333 0.32209683691337615 0.4841039859858333 0.3941109211584108
+0.32674011723864893 0.4800992725247333 0.326740117238649 0.48009927252473333 0.3865970189761288
+0.32110862607379725 0.48726488146824504 0.32110862607379725 0.48726488146824504 0.39913491699910697
+0.31662408881872556 0.49139712247631384 0.31662408881872556 0.4913971224763138 0.40215974910120506
+0.3158018163245319 0.49463184333987137 0.3158018163245319 0.49463184333987137 0.40428278913906296
+0.32017875662601236 0.49041905523736884 0.32017875662601236 0.4904190552373688 0.4029100244280111
+0.3150249785181903 0.49791072277956894 0.3150249785181903 0.4979107227795689 0.4052191508968627
+0.3107158929068378 0.5023851257880263 0.3107158929068378 0.5023851257880264 0.4025246027139238
+0.3100668268956152 0.5057637813397443 0.3100668268956152 0.5057637813397443 0.40066953610408057
+0.3143005520964431 0.5012035107756868 0.3143005520964431 0.5012035107756868 0.40495313402283967
+0.30947792068570523 0.5091658437086969 0.30947792068570523 0.5091658437086969 0.39767607372503383
+0.30538244386849994 0.5139596321131693 0.30538244386849994 0.5139596321131693 0.38979757573838053
+0.30491107074370466 0.5174774489304353 0.30491107074370466 0.5174774489304353 0.38428277387654447
+0.3089508020247129 0.5125796544722115 0.3089508020247129 0.5125796544722115 0.393586145934057
+0.30453237164300717 0.5210324532876285 0.3045323716430071 0.5210324532876286 0.3777405980416125
+0.30076908780636147 0.5261608711236004 0.3007690878063615 0.5261608711236004 0.3655296397143339
+0.30040706815478696 0.5297741526522184 0.30040706815478696 0.5297741526522185 0.35699212549908027
+0.3042421772863891 0.5245594962552543 0.3042421772863891 0.5245594962552543 0.3703436635317034
+0.3000376920182144 0.5333862015922606 0.3000376920182144 0.5333862015922605 0.34773725074203027
+0.29721100799471684 0.5390835761154958 0.29721100799471684 0.5390835761154958 0.3316196711731913
+0.29718450156184334 0.5427461863379585 0.29718450156184334 0.5427461863379585 0.3210192660868265
+0.30019236002470717 0.5370600034852706 0.30019236002470717 0.5370600034852706 0.33768506360428213
+0.2969570164828805 0.5463267602957332 0.2969570164828805 0.5463267602957332 0.3102313571696445
+0.2956395420960986 0.5564864535404233 0.2956395420960986 0.5564864535404234 0.27843758918898903
+0.29668753124704056 0.5498885765690887 0.29668753124704056 0.5498885765690887 0.2992231047959941
+0.2962478233462167 0.5531021792323201 0.2962478233462167 0.5531021792323201 0.28911299193091217
+0.2955113815115908 0.5599802137370891 0.2955113815115908 0.559980213737089 0.267317781185095
+0.29509897200453583 0.570572186270101 0.29509897200453583 0.570572186270101 0.2340733962659498
+0.2953199327064057 0.5634578090734895 0.2953199327064057 0.5634578090734895 0.2563062795874149
+0.29519886032284737 0.5669760242710046 0.2951988603228473 0.5669760242710046 0.2452306519296845
+0.29509203927290456 0.5741239004088432 0.29509203927290456 0.5741239004088432 0.22327753040620532
+0.29583695960393774 0.5771175870053715 0.29583695960393774 0.5771175870053715 0.21378835499029009
+0.2947633881527832 0.5804824740542573 0.2947633881527832 0.5804824740542572 0.20504028184233844
+0.2952865361495552 0.5844595706705649 0.2952865361495552 0.5844595706705649 0.19372541383333716
+0.2956303661601542 0.5883129838938032 0.2956303661601542 0.5883129838938032 0.18353273392743177
+0.2959362870399914 0.5921224979997792 0.2959362870399915 0.5921224979997791 0.17414177589814936
+0.296099734470524 0.5956817868584021 0.296099734470524 0.5956817868584022 0.166075834575931
+0.29606436786673895 0.5992535396974816 0.29606436786673895 0.5992535396974815 0.15877845862605142
+0.296784311182804 0.6028553863307882 0.2967843111828041 0.6028553863307882 0.15165247103708943
+0.41649281624078416 0.42695044006347954 0.41649281624078416 0.42695044006347954 0.680555432463482
+0.4180796843468212 0.4310043466887076 0.41807968434682113 0.43100434668870763 0.7213982979009361
+0.45309896746526773 0.394934222520602 0.45309896746526773 0.394934222520602 0.49292385062437427
+0.4540986703995671 0.39159940944862065 0.4540986703995671 0.39159940944862065 0.4802708159497731
+0.456363255842585 0.38733016793273434 0.456363255842585 0.38733016793273434 0.46838025142483525
+0.45610303680387326 0.38999887105025405 0.45610303680387326 0.38999887105025405 0.47390655044914365
+0.45848651346370056 0.3835043568719672 0.45848651346370056 0.3835043568719672 0.4617572500325196
+0.45879623836863703 0.3865508800060407 0.4587962383686371 0.3865508800060407 0.46628207686171885
+0.460917555449969 0.3790317846295083 0.460917555449969 0.3790317846295083 0.4560476549341638
+0.4608010389375847 0.38215013663531133 0.4608010389375847 0.38215013663531133 0.46011842573086775
+0.4632791643282379 0.37803557443408803 0.46327916432823796 0.37803557443408803 0.45529740490616694
+0.4667133407841434 0.3699889107102311 0.46671334078414345 0.36998891071023104 0.44364088099777543
+0.46573057130016526 0.37302923919256537 0.4657305713001652 0.37302923919256537 0.44855207283736603
+0.4644426909471579 0.3759802954721125 0.4644426909471579 0.3759802954721125 0.45279332516098353
+0.47282321292943635 0.3610021608977764 0.47282321292943635 0.3610021608977764 0.42120600927536067
+0.4723675878772151 0.364441619867282 0.4723675878772151 0.364441619867282 0.42901709166377666
+0.47067121835841863 0.36630182644314224 0.47067121835841863 0.36630182644314224 0.43465967578919135
+0.4704108712018709 0.3696578560634041 0.4704108712018709 0.3696578560634042 0.44167793660087856
+0.4856573412558469 0.34870197739730185 0.4856573412558469 0.34870197739730185 0.353152161627257
+0.48385516014614327 0.3511067785240074 0.4838551601461432 0.3511067785240074 0.36682896293298334
+0.47888018958489026 0.35442797014959254 0.47888018958489026 0.35442797014959254 0.39213991398863746
+0.4818200588462127 0.3532295895853915 0.4818200588462127 0.35322958958539147 0.3798667428676852
+0.4780849731724986 0.3576306245628855 0.4780849731724986 0.3576306245628855 0.4024640415552903
+0.47672315669943427 0.3609167648357115 0.47672315669943427 0.3609167648357115 0.41384936361750374
+0.4930637912425338 0.3427368331422061 0.4930637912425338 0.3427368331422061 0.30189608539026924
+0.4910068315539488 0.3462724797014958 0.4910068315539488 0.3462724797014958 0.3220465344177356
+0.49691557343133863 0.3426435298506341 0.4969155734313386 0.3426435298506341 0.28073341378558
+0.4890379655083785 0.34929578462941 0.4890379655083786 0.34929578462941 0.3399480754403727
+0.5061824854152084 0.33429471905244534 0.5061824854152084 0.3342947190524454 0.2073754992505009
+0.5039519987828417 0.33706318930863566 0.5039519987828417 0.3370631893086356 0.22623798676525197
+0.501745666648441 0.3389771349404156 0.501745666648441 0.3389771349404156 0.24354767497373692
+0.5009313184784195 0.34252766078722235 0.5009313184784195 0.34252766078722235 0.25768224567266734
+0.5187421747869139 0.32774839314621595 0.5187421747869139 0.32774839314621595 0.14687030873089013
+0.5138908869156147 0.32953991569244945 0.5138908869156147 0.32953991569244945 0.16152520993390718
+0.5165994802764081 0.32959113075172686 0.5165994802764081 0.32959113075172686 0.15383587408604082
+0.5118091590193846 0.33226019452232036 0.5118091590193846 0.3322601945223203 0.17512292517858927
+0.509539236329576 0.33510575805705184 0.509539236329576 0.33510575805705184 0.19180151738560092
+0.5317425842127227 0.32272832570905274 0.5317425842127227 0.32272832570905274 0.17448279348557996
+0.5263058318459334 0.32408136428258816 0.5263058318459334 0.32408136428258816 0.15037713653092047
+0.5293271700244383 0.3251440603912808 0.5293271700244383 0.3251440603912808 0.1655507737423996
+0.523978491978874 0.3264528184044217 0.523978491978874 0.3264528184044217 0.14776270453106
+0.5216585795892701 0.3287602382365634 0.5216585795892702 0.32876023823656336 0.1484778848882369
+0.545952213568169 0.3184684971241574 0.545952213568169 0.3184684971241574 0.270306352149289
+0.5400533020030724 0.3193340148323173 0.5400533020030726 0.3193340148323173 0.22565266121288655
+0.5431638916934307 0.320753052604148 0.5431638916934308 0.320753052604148 0.25346938054274964
+0.5373568732740576 0.32168903492786444 0.5373568732740576 0.32168903492786444 0.21041330112873177
+0.5347325970814514 0.32405035015774103 0.5347325970814514 0.32405035015774103 0.1964858548318191
+0.5548178794242404 0.31552806973104325 0.5548178794242404 0.31552806973104325 0.3335588203391961
+0.5519179903073251 0.3177388306206274 0.5519179903073251 0.3177388306206274 0.31682897333841537
+0.5490478854259345 0.3199711521122892 0.5490478854259345 0.3199711521122892 0.29965577380674
+0.5847294564780304 0.31265850064416484 0.5847294564780304 0.31265850064416484 0.5294644734486798
+0.5577791783399316 0.31703428745596934 0.5577791783399316 0.31703428745596934 0.3617807838761049
+0.5812925525497328 0.3139369729843166 0.5812925525497327 0.3139369729843166 0.5151512844039602
+0.560767005836605 0.31822388450623373 0.5607670058366051 0.31822388450623373 0.38929015165088604
+0.563938545568774 0.3184377853683077 0.563938545568774 0.31843778536830764 0.41473035322906826
+0.5673240839901985 0.31800510764251844 0.5673240839901985 0.3180051076425184 0.43859828323802935
+0.577770771995154 0.3152443837719763 0.577770771995154 0.3152443837719763 0.49906045749874
+0.569888424237049 0.31905777864289286 0.569888424237049 0.31905777864289286 0.4609244434753547
+0.5739313782548898 0.3165155869194027 0.5739313782548897 0.3165155869194027 0.4792388466872719
+0.5719112463227788 0.3186820649525709 0.5719112463227788 0.3186820649525709 0.4737741735013425
+0.5875912116782789 0.31507282103596135 0.587591211678279 0.3150728210359613 0.5547383180894573
+0.45706641242278734 0.39769832765053015 0.4570664124227873 0.39769832765053015 0.49288663163716956
+0.460768067397006 0.40033081182505836 0.460768067397006 0.4003308118250583 0.4905188468244955
+0.6407060593486763 0.27043031540444185 0.6407060593486763 0.27043031540444185 0.5766678597248505
+0.6371231457396134 0.27134476863034346 0.6371231457396133 0.27134476863034346 0.5717291146893837
+0.6335837967451355 0.2722951898328576 0.6335837967451355 0.2722951898328576 0.5663345129739971
+0.6300948218120591 0.2733073733342674 0.6300948218120591 0.2733073733342674 0.5606057142144633
+0.626653937670349 0.27437359949618173 0.626653937670349 0.27437359949618173 0.554566016944576
+0.6099699967362128 0.2800761568940537 0.6099699967362128 0.2800761568940537 0.5190089968106122
+0.6232506233720718 0.2754738943589546 0.6232506233720718 0.2754738943589546 0.5481767465100716
+0.6198959351900254 0.2766302808902454 0.6198959351900254 0.2766302808902454 0.5415628897806504
+0.616590439833603 0.27782550148718677 0.616590439833603 0.2778255014871868 0.5347074284523439
+0.6133086333721575 0.2790088215910372 0.6133086333721575 0.2790088215910372 0.5273963305501503
+0.6052127669153591 0.2841736100640093 0.6052127669153591 0.2841736100640093 0.5145626220062067
+0.6010139702516742 0.2890915846991701 0.6010139702516742 0.2890915846991701 0.5149003760038489
+0.5910979292969437 0.3137380955550281 0.5910979292969437 0.31373809555502813 0.566721196665502
+0.5926446407918037 0.3026902589168016 0.5926446407918037 0.3026902589168016 0.5294150780869699
+0.591667996267006 0.3100468281847263 0.591667996267006 0.31004682818472634 0.5542613732290027
+0.5921797083405669 0.3063679199420141 0.5921797083405669 0.3063679199420141 0.5418096143656609
+0.5970158524835095 0.29409956026877077 0.5970158524835095 0.29409956026877077 0.5162246890488053
+0.596443421387645 0.2978090433623082 0.596443421387645 0.2978090433623082 0.5276521334288793
+0.5959500653355133 0.301477754460171 0.5959500653355133 0.301477754460171 0.5395896084792602
+0.6003414454189528 0.2929546410650637 0.6003414454189527 0.2929546410650637 0.5259974596275218
+0.6044508483689232 0.2880074510124449 0.6044508483689232 0.2880074510124449 0.5246790299319719
+0.608898287871269 0.28349886822961134 0.608898287871269 0.28349886822961134 0.5261052255037497
+0.6443387529581032 0.26953362231905353 0.6443387529581032 0.2695336223190536 0.5810834430884162
+0.6480538540331507 0.2686268151138642 0.6480538540331507 0.2686268151138642 0.5849287427637647
+0.651931032705917 0.2676242927881517 0.651931032705917 0.26762429278815164 0.5881082312006923
+0.6557024942938618 0.2668704772427303 0.6557024942938617 0.2668704772427302 0.5908428458826012
+0.6593823090131273 0.26640460419719353 0.6593823090131273 0.26640460419719353 0.5933842808141588
+0.6629677710258729 0.2659598798777849 0.6629677710258729 0.2659598798777849 0.5951576840473652
+0.695440667274841 0.2344487569863274 0.6954406672748411 0.2344487569863274 0.5423699192909982
+0.6986173755026428 0.23387655339673022 0.6986173755026428 0.23387655339673022 0.5414001876095166
+0.6911636407961934 0.2377859312224774 0.6911636407961934 0.2377859312224774 0.5473437329992792
+0.6883729736387956 0.23952838229922058 0.6883729736387956 0.23952838229922063 0.5504926765497662
+0.6826663953312025 0.24396183197950205 0.6826663953312025 0.24396183197950205 0.5580368136286836
+0.6810813863692705 0.2475563922369506 0.6810813863692705 0.2475563922369506 0.5645365582319126
+0.6759845505576871 0.25139736444022537 0.6759845505576871 0.25139736444022537 0.5713130321158958
+0.6744891804359873 0.2548443152174622 0.6744891804359873 0.2548443152174622 0.5777673475933648
+0.6665019275239094 0.2655734809531835 0.6665019275239094 0.2655734809531835 0.596361987982593
+0.6680375811361018 0.2621356190821793 0.6680375811361018 0.2621356190821793 0.5902209297709612
+0.6694753704173547 0.2587077914439874 0.6694753704173547 0.2587077914439874 0.5839477876503869
+0.6729874696502375 0.2583089933096545 0.6729874696502375 0.2583089933096545 0.5842526395631081
+0.6795290180172698 0.2510513473571609 0.6795290180172698 0.2510513473571609 0.5710174746927877
+0.6863671938124548 0.24358205157423618 0.6863671938124548 0.24358205157423618 0.5573388383368041
+0.6940220477066087 0.2377527407884963 0.6940220477066087 0.2377527407884963 0.5471338224707721
+0.7038886227477191 0.230344245027109 0.7038886227477191 0.230344245027109 0.5370071034532421
+0.7081880508078697 0.23026960928458573 0.7081880508078697 0.23026960928458573 0.536716311319505
+0.7023521323641794 0.23368051369734755 0.7023521323641794 0.23368051369734752 0.540752588922076
+0.728032202470866 0.20342050410681733 0.728032202470866 0.20342050410681733 0.5248815110521025
+0.7259368290876734 0.20680229515119306 0.7259368290876734 0.20680229515119306 0.5260111289779364
+0.7238430453566892 0.21017185322329565 0.7238430453566892 0.21017185322329565 0.5269844187107681
+0.7125986373142549 0.23020593276431384 0.7125986373142548 0.2302059327643138 0.5363772434073514
+0.7217581579626003 0.21352120772204916 0.7217581579626003 0.21352120772204916 0.5279255757541322
+0.7196894515561209 0.21684265246026968 0.7196894515561209 0.21684265246026965 0.5289571408741792
+0.7176481996087934 0.22012864147955882 0.7176481996087934 0.22012864147955882 0.5301920157516992
+0.7156723855391237 0.22336758412802807 0.7156723855391237 0.22336758412802807 0.5317292685967684
+0.7139040695386965 0.22655852887941108 0.7139040695386965 0.2265585288794111 0.5336816757677463
+0.7343096234309502 0.20003261441496675 0.7343096234309502 0.20003261441496675 0.5250873793797511
+0.7322162045385681 0.20342154230228907 0.7322162045385681 0.20342154230228907 0.5265228825546009
+0.7405857740585661 0.1966422311197984 0.7405857740585661 0.1966422311197984 0.5244553614859998
+0.7384936859369615 0.20003258898006768 0.7384936859369615 0.20003258898006768 0.5264374297867026
+0.7468619246861817 0.19325184782462967 0.7468619246861817 0.19325184782462967 0.5226919828385933
+0.7447698744769764 0.1966422311197986 0.7447698744769764 0.1966422311197986 0.525388210434222
+0.7531380753137972 0.18986146452946073 0.7531380753137972 0.18986146452946073 0.5196364142580342
+0.7510460251045918 0.19325184782462967 0.7510460251045918 0.19325184782462967 0.5231209579557183
+0.7594142259414125 0.1864710812342918 0.7594142259414126 0.1864710812342918 0.5152787613034842
+0.7573221757322074 0.18986146452946073 0.7573221757322074 0.18986146452946073 0.51952502404996
+0.7677824267782328 0.1796903146439539 0.7677824267782328 0.1796903146439539 0.504485597499965
+0.7656903765690277 0.18308069793912285 0.7656903765690277 0.18308069793912285 0.5097535943015896
+0.7635983263598227 0.1864710812342918 0.7635983263598227 0.1864710812342918 0.5146416096885459
+0.7740585774058482 0.17629993134878497 0.7740585774058482 0.17629993134878497 0.4977581692851741
+0.7719665271966429 0.1796903146439539 0.7719665271966428 0.1796903146439539 0.5033119318832986
+0.7803347473836627 0.17290954755710755 0.7803347473836627 0.17290954755710755 0.490685356186035
+0.7782427923045322 0.17629992942473569 0.7782427923045322 0.17629992942473569 0.4962750888260947
+0.7866108786610786 0.16951916475844708 0.7866108786610786 0.16951916475844708 0.4835831491317814
+0.7845189412668648 0.17290954360074498 0.7845189412668648 0.17290954360074498 0.48897690175646247
+0.7928873666415961 0.16612877161371506 0.7928873666415961 0.16612877161371506 0.4766828653043542
+0.790794979079489 0.16951916475844708 0.790794979079489 0.16951916475844708 0.4817032980686273
+0.7991644268105778 0.16273774981792719 0.7991644268105778 0.16273774981792719 0.4700880819412125
+0.797073140334736 0.16612824343214555 0.797073140334736 0.16612824343214558 0.47463808368896526
+0.8054415710865849 0.159344789362625 0.8054415710865849 0.159344789362625 0.46375910720630803
+0.8033513620704834 0.16273471268834447 0.8033513620704834 0.16273471268834447 0.4678337005153665
+0.8117215498392584 0.15594841869308437 0.8117215498392584 0.15594841869308437 0.45752540944816783
+0.8096300182127112 0.1593374714101308 0.8096300182127113 0.1593374714101308 0.46120597005467007
+0.820093734791382 0.14916908566559536 0.820093734791382 0.14916908566559536 0.447994451937532
+0.8180041168216184 0.15255400505989297 0.8180041168216184 0.152554005059893 0.451139030711682
+0.8159142580286459 0.1559390656228734 0.8159142580286459 0.1559390656228734 0.4545597342240431
+0.8263748088243793 0.1457784306574116 0.8263748088243793 0.1457784306574116 0.4412212648506409
+0.8242844962594402 0.14916598500809544 0.8242844962594402 0.14916598500809544 0.44433781545116974
+0.8326573381932562 0.1423738195494724 0.8326573381932562 0.1423738195494724 0.4337241494143113
+0.8305681873781509 0.14576258380772136 0.8305681873781509 0.14576258380772136 0.43691110457611065
+0.8389327352897309 0.1389776603933173 0.838932735289731 0.1389776603933173 0.4255486299530871
+0.8368435225577047 0.1423573884713978 0.8368435225577047 0.1423573884713978 0.4288100105550792
+0.8451995516812486 0.13556425915572898 0.8451995516812486 0.13556425915572898 0.41696241590229094
+0.8431205089470805 0.13895396866424503 0.8431205089470805 0.13895396866424503 0.4201730964247982
+0.8514545314984078 0.13214848353590214 0.8514545314984078 0.13214848353590214 0.4084775258692846
+0.8493564891601922 0.13552812143990942 0.8493564891601922 0.13552812143990942 0.41142776937282116
+0.8576779470942782 0.12870127812777368 0.8576779470942782 0.12870127812777368 0.40086104819003626
+0.8555877026840467 0.1320779470266902 0.8555877026840467 0.1320779470266902 0.4031443482409656
+0.8617862759943322 0.12862821121827903 0.8617862759943321 0.12862821121827903 0.3961532801463447
+0.8639346277281672 0.1252924747531727 0.8639346277281671 0.1252924747531727 0.39485870232959225
+0.8701257587392744 0.1217415922689868 0.8701257587392744 0.1217415922689868 0.39155110190956005
+0.868047054107148 0.12513091092214004 0.868047054107148 0.12513091092214004 0.3912315627308158
+0.8742121450967808 0.12169732557404805 0.8742121450967808 0.12169732557404807 0.3892623868863811
+0.8763210669590258 0.1184583921848075 0.8763210669590258 0.11845839218480748 0.39120307837821894
+0.8801191132126716 0.11840294677035751 0.8801191132126717 0.11840294677035752 0.3905774177622922
+0.8828638488594647 0.11505797699325887 0.8828638488594648 0.11505797699325888 0.39446947844638564
+0.8848846091323724 0.11167521231800814 0.8848846091323724 0.11167521231800814 0.39948704612964514
+0.8883955261824064 0.11144928738403288 0.8883955261824064 0.11144928738403288 0.4010998388776271
+0.8913631832001407 0.10882819958808895 0.8913631832001406 0.10882819958808897 0.40709671616570164
+0.895134018392307 0.10779915909290623 0.8951340183923071 0.10779915909290623 0.41121931318522054
+0.8978598901135513 0.1048083315954787 0.8978598901135513 0.10480833159547867 0.418993901573184
+0.9016995590302295 0.10282045654791899 0.9016995590302294 0.10282045654791898 0.42594985725104006
+0.9051488627865524 0.10080744191491357 0.9051488627865524 0.10080744191491357 0.4327053870992918
+0.9084796249577922 0.09860619032544948 0.9084796249577921 0.09860619032544948 0.4396914758028681
+0.9118022895360549 0.09647846960467928 0.911802289536055 0.09647846960467928 0.44616427527396724
+0.9153301084913389 0.09435343832159682 0.9153301084913389 0.09435343832159682 0.45219218683076395
+0.9186969429478955 0.09224643612857288 0.9186969429478955 0.09224643612857288 0.45731972686369987
+0.9220527765400329 0.09013430354843074 0.9220527765400329 0.09013430354843076 0.46151832547127425
+0.9254530200126068 0.08800132486456294 0.9254530200126068 0.08800132486456293 0.464659713533825
+0.9288742293960569 0.08592747210340546 0.9288742293960569 0.08592747210340546 0.46650693527609727
+0.932244002275385 0.08379201942937416 0.932244002275385 0.08379201942937416 0.4671427906911239
+0.9355973564988634 0.08164878918369968 0.9355973564988634 0.08164878918369968 0.4664206740962124
+0.9389702645917319 0.07952319421384474 0.9389702645917319 0.07952319421384474 0.464265311701263
+0.9423602725755286 0.07741132888609999 0.9423602725755286 0.07741132888609999 0.4606774365870194
+0.9457534915117484 0.07531443959010695 0.9457534915117484 0.07531443959010696 0.45570806701384386
+0.9491340126571299 0.07323853421121905 0.9491340126571298 0.07323853421121905 0.44945478511538145
+0.9525254149208958 0.07114583238823452 0.9525254149208958 0.07114583238823452 0.4419688359003125
+0.9559224509032187 0.06904517327219382 0.9559224509032188 0.06904517327219382 0.4333692494922456
+0.9593144125664045 0.06695345812251416 0.9593144125664045 0.06695345812251417 0.42383292156447666
+0.9627050212984272 0.06485922502321775 0.9627050212984273 0.06485922502321774 0.4135169102403536
+0.9660944900425671 0.06276728849174071 0.9660944900425671 0.06276728849174072 0.40261787282942046
+0.9694850835773892 0.060674077875299215 0.9694850835773892 0.060674077875299215 0.39133896938812157
+0.9728769775578595 0.05857810329094689 0.9728769775578595 0.05857810329094689 0.3799048929862568
+0.9762676111287392 0.056485899469130046 0.976267611128739 0.05648589946913005 0.36856693815869496
+0.9796578570924863 0.05439381611719848 0.9796578570924863 0.05439381611719848 0.35755773584309103
+0.9830481593119491 0.05230165881465893 0.983048159311949 0.05230165881465893 0.34711065288496834
+0.9864384668193242 0.05020920502088022 0.9864384668193242 0.05020920502088022 0.3374456667664361
+0.9898288501144932 0.04811715481167511 0.9898288501144933 0.04811715481167511 0.32875910656153834
+0.9932192334096621 0.04602510460247 0.9932192334096621 0.04602510460247 0.3212099054265103
+0.05020902092272594 0.9932193450960151 0.05020902092272594 0.9932193450960151 0.07765713337370499
+0.052301110173623655 0.9898289381155284 0.052301110173623655 0.9898289381155284 0.07968217080623964
+0.05439324596700531 0.9864385028992388 0.05439324596700531 0.9864385028992387 0.08203683992661509
+0.0564853556485355 0.9830480835241556 0.0564853556485355 0.9830480835241556 0.08465119173383363
+0.05857740585774057 0.9796577002289867 0.05857740585774057 0.9796577002289867 0.08744942508664565
+0.060669456066945626 0.9762673169338179 0.060669456066945626 0.9762673169338179 0.09035379553939332
+0.06276150627615067 0.9728769336386488 0.06276150627615067 0.9728769336386488 0.09328755268527612
+0.06485355648535569 0.9694865503434796 0.06485355648535569 0.9694865503434796 0.0961772299750243
+0.06694560669456075 0.9660961670483109 0.06694560669456075 0.9660961670483109 0.09895420706428838
+0.06903765690376602 0.9627057837531421 0.06903765690376602 0.9627057837531421 0.10155574624426257
+0.07112970711297159 0.9593154004579735 0.0711297071129716 0.9593154004579735 0.10392569875857516
+0.07322033009495833 0.9559254587750557 0.07322033009495833 0.9559254587750557 0.10601439203010134
+0.07531092293407632 0.9525366459557181 0.07531092293407632 0.952536645955718 0.10778000468811712
+0.07740178979474815 0.9491490526405627 0.07740178979474815 0.9491490526405627 0.10918817605149429
+0.07949144423850475 0.9457631787581732 0.07949144423850475 0.9457631787581732 0.11021194033529148
+0.08157781514925984 0.9423791157287051 0.08157781514925984 0.9423791157287053 0.11083233815974732
+0.08366483935193063 0.9389911668242793 0.08366483935193063 0.9389911668242793 0.11103792961839455
+0.0857640739582755 0.9356050775524847 0.0857640739582755 0.9356050775524846 0.11082276310860018
+0.08788204961834516 0.9322293239280413 0.08788204961834516 0.9322293239280413 0.1101902592234159
+0.08997559068073181 0.9288385063641078 0.08997559068073181 0.9288385063641078 0.10915172166675853
+0.09204734122943624 0.9254365241775528 0.09204734122943624 0.9254365241775527 0.10772361011440439
+0.09415437498014251 0.9220363744578417 0.09415437498014251 0.9220363744578418 0.10592523078600646
+0.09625213988110562 0.9186443645759648 0.0962521398811056 0.9186443645759647 0.10380483106970857
+0.09834484734455917 0.9152470765141721 0.09834484734455917 0.9152470765141721 0.10139522476868663
+0.100461385061024 0.9118693040345812 0.10046138506102399 0.9118693040345812 0.09875584108564588
+0.10256392418867756 0.9085062605010314 0.10256392418867756 0.9085062605010314 0.0959502459427715
+0.10462726070847196 0.9051485832720249 0.10462726070847196 0.9051485832720249 0.09304292501659549
+0.10675767424168196 0.9018245059133368 0.10675767424168196 0.9018245059133368 0.09010705379475538
+0.10877730119534489 0.8984397795120483 0.10877730119534489 0.8984397795120483 0.08716148227824473
+0.11068911144531561 0.894954735658708 0.11068911144531561 0.8949547356587079 0.08421855759228015
+0.11264284453196333 0.8914708384252572 0.11264284453196334 0.8914708384252572 0.08146711200646771
+0.11451435232289203 0.887587640390059 0.114514352322892 0.887587640390059 0.07860825430559958
+0.11753803161288773 0.8848793622885034 0.11753803161288774 0.8848793622885033 0.07735698105393655
+0.11986018087293276 0.8813854071410278 0.11986018087293275 0.8813854071410278 0.07582367278952619
+0.12155309626848276 0.8778925127967795 0.12155309626848276 0.8778925127967795 0.0744727655385131
+0.12405292638793818 0.8744640798180523 0.12405292638793818 0.8744640798180523 0.07409465022785448
+0.12631296511420956 0.8712519503968065 0.12631296511420956 0.8712519503968065 0.07423289755698148
+0.1283787184437609 0.8656167549155223 0.1283787184437609 0.8656167549155223 0.07407842961909339
+0.12831112295222707 0.8686996364365576 0.12831112295222707 0.8686996364365577 0.0748475832866447
+0.13099221797961885 0.8638841769951686 0.13099221797961885 0.8638841769951686 0.07586094759629974
+0.13234311122118952 0.860222514454829 0.1323431112211895 0.8602225144548291 0.07658546448865762
+0.13558114127703205 0.8535355672478364 0.13558114127703205 0.8535355672478363 0.07936198407922017
+0.1356820853422949 0.857420464933987 0.1356820853422949 0.857420464933987 0.0793805671582931
+0.1388733831334923 0.8515672225934694 0.1388733831334923 0.8515672225934693 0.08241560690143783
+0.13905431905823618 0.8476289983436729 0.13905431905823618 0.8476289983436729 0.08297824110279796
+0.14235942285386635 0.84118555335588 0.14235942285386635 0.84118555335588 0.08681313246937887
+0.14244219761270033 0.8454713479045516 0.14244219761270036 0.8454713479045516 0.08619752287775095
+0.14577480919277525 0.8347608798578899 0.14577480919277527 0.8347608798578899 0.09070719959283634
+0.14576532295387004 0.8389548338336853 0.14576532295387004 0.8389548338336853 0.08996553859517066
+0.149169194438531 0.828466831295749 0.14916919443853097 0.8284668312957492 0.0942733381073488
+0.14916563436816652 0.8326561662898938 0.14916563436816652 0.8326561662898938 0.09361386363231178
+0.15252604401381817 0.8264545793268744 0.15252604401381817 0.8264545793268744 0.09686025533858446
+0.15589308736879845 0.820178581814324 0.15589308736879845 0.820178581814324 0.09962654113221997
+0.15579598324855348 0.8244225595769652 0.15579598324855348 0.8244225595769653 0.0992198940557253
+0.15932377564181313 0.8138360293728967 0.15932377564181313 0.8138360293728967 0.10183998378978561
+0.15930138767629198 0.8180461605894173 0.15930138767629198 0.8180461605894173 0.10174066812406694
+0.16271691043590916 0.8117332163744486 0.16271691043590916 0.8117332163744485 0.1035928179254244
+0.1627260583424719 0.8075430482214787 0.1627260583424719 0.8075430482214788 0.10340093385488354
+0.1661217630635254 0.8012608891995509 0.1661217630635254 0.8012608891995509 0.10432334648030113
+0.16611659344012883 0.8054489006053602 0.16611659344012883 0.8054489006053602 0.1048038378276472
+0.16951415807964906 0.79498523355053 0.16951415807964906 0.79498523355053 0.10463417499969412
+0.16951032448869666 0.7991720030518783 0.16951032448869666 0.7991720030518783 0.10538516360552963
+0.17290796337661354 0.7887085108934276 0.17290796337661354 0.7887085108934276 0.10438145965807523
+0.17290536824196287 0.7928976903348962 0.17290536824196287 0.7928976903348962 0.10536818711396713
+0.1763000971993709 0.7824296488257277 0.1763000971993709 0.7824296488257277 0.10363060960991281
+0.1762998977878721 0.7866172829132422 0.1762998977878721 0.7866172829132422 0.10480110250783671
+0.17969058041823024 0.7761516018088099 0.17969058041823024 0.7761516018088099 0.10246716816950129
+0.17969096432292017 0.7803371538083178 0.17969096432292017 0.7803371538083178 0.1037555468534734
+0.18308079733285473 0.7698747044313289 0.18308079733285473 0.7698747044313289 0.10099452728096979
+0.18308100379839518 0.7740591499355913 0.18308100379839518 0.7740591499355913 0.1023242784298849
+0.1864711881130702 0.7677824673044173 0.1864711881130702 0.7677824673044173 0.10062007436506894
+0.18986148979345338 0.7615062701377338 0.18986148979345338 0.7615062701377338 0.09877743706220743
+0.18986155215391345 0.7656902964712797 0.18986155215391345 0.7656902964712797 0.1001019408763681
+0.19325185140410198 0.7552301268661754 0.19325185140410198 0.7552301268661754 0.09695201368039312
+0.19325185493282576 0.7594142267314119 0.19325185493282573 0.7594142267314119 0.09810857718018894
+0.19664223181518095 0.7489539753393316 0.19664223181518095 0.7489539753393316 0.09531675049600812
+0.19664223269714554 0.7531380759883688 0.19664223269714554 0.7531380759883688 0.09621078979137809
+0.20003261454257878 0.7426778243737419 0.20003261454257878 0.7426778243737419 0.09405256352365367
+0.2000326147352243 0.746861924887205 0.2000326147352243 0.746861924887205 0.09459766011958198
+0.20342299773626302 0.7364016736390813 0.20342299773626302 0.7364016736390813 0.09333280602598727
+0.20342299777362335 0.7405857739521452 0.20342299777362335 0.7405857739521452 0.09346010826103912
+0.20681223917250655 0.7301247722064482 0.20681223917250655 0.7301247722064482 0.09330312734599806
+0.20681280443200212 0.7343094455110833 0.20681280443200212 0.7343094455110833 0.09297056206704757
+0.2101972167529597 0.7280304705709693 0.2101972167529597 0.7280304705709693 0.09325965038243061
+0.21357435599062305 0.725933300131426 0.21357435599062305 0.725933300131426 0.09347271013070381
+0.2169411695202713 0.723829307702693 0.2169411695202713 0.723829307702693 0.09398545313440371
+0.22029901919391137 0.7217194226901976 0.22029901919391137 0.7217194226901976 0.09482731462483661
+0.22365812063174476 0.7195963377681035 0.22365812063174476 0.7195963377681035 0.09601601633100777
+0.22694639653353466 0.71760045829138 0.22694639653353468 0.71760045829138 0.09749404153515374
+0.23196003700064488 0.7099028066418103 0.2319600370006449 0.7099028066418103 0.10180806600319418
+0.23444043353915878 0.7072487453154289 0.23444043353915878 0.7072487453154289 0.10384099067004827
+0.235945944341052 0.7011617284280942 0.235945944341052 0.7011617284280942 0.10673164486758736
+0.23697921000728728 0.7046167370248428 0.2369792100072873 0.7046167370248427 0.10598019997489731
+0.23998878131905196 0.6922599046505032 0.23998878131905196 0.6922599046505032 0.11185306804588367
+0.2425067521984277 0.6894195373094485 0.24250675219842768 0.6894195373094485 0.11390349942489476
+0.24508847819998747 0.6866071046931714 0.2450884781999875 0.6866071046931714 0.11586811874292376
+0.2647677555280486 0.6608215630419014 0.2647677555280486 0.6608215630419014 0.1250524442322913
+0.24934788219955725 0.6771467229358307 0.24934788219955725 0.6771467229358307 0.12020153772577764
+0.251880840830436 0.6743832105521727 0.251880840830436 0.6743832105521727 0.12153868773007752
+0.254367853033095 0.6716517463652357 0.254367853033095 0.6716517463652357 0.1226602303044516
+0.2620753255198467 0.66356095081567 0.2620753255198467 0.66356095081567 0.12477313350279289
+0.2589414200296655 0.6656240863696801 0.2589414200296655 0.66562408636968 0.12439289348009089
+0.25688654724220805 0.668907698411401 0.2568865472422081 0.668907698411401 0.12359165160652467
+0.24768712461867917 0.6836451376627249 0.24768712461867917 0.6836451376627249 0.11775131096464099
+0.25026112105273823 0.6807795913824042 0.2502611210527382 0.6807795913824042 0.1194154317874051
+0.23849747264058233 0.6984315769666894 0.23849747264058233 0.6984315769666894 0.1089013055952666
+0.24103013282931365 0.6956971230463731 0.24103013282931365 0.6956971230463731 0.11105317868702223
+0.23012447608584774 0.7156914031380701 0.2301244760858477 0.7156914031380701 0.09922163618494552
+0.23316364046709526 0.7135138677099251 0.23316364046709523 0.7135138677099251 0.1012081962399695
+0.26788985135233134 0.661497411849655 0.26788985135233134 0.661497411849655 0.12484781727174225
+0.27020541913277213 0.6586877021884584 0.27020541913277213 0.6586877021884584 0.1248279152177828
+0.2726571496511916 0.655874709927192 0.2726571496511916 0.655874709927192 0.12468090738154612
+0.2768313736479707 0.6468990970490743 0.2768313736479708 0.6468990970490743 0.12457641571365329
+0.28298847245098796 0.6322365606533417 0.28298847245098796 0.6322365606533417 0.12699498730881367
+0.2855934608209126 0.6297101378600725 0.2855934608209126 0.6297101378600725 0.12719039937613277
+0.2875664807092577 0.6239946466716456 0.2875664807092577 0.6239946466716456 0.13024734568086058
+0.2881727945599618 0.6272348671224522 0.28817279455996175 0.6272348671224522 0.1275602646890552
+0.29741124889851034 0.6065080108182979 0.29741124889851034 0.606508010818298 0.14528608734786227
+0.28972323416219076 0.6180509665312991 0.28972323416219076 0.6180509665312991 0.13463144403541036
+0.29803574253973614 0.6101611146673998 0.29803574253973614 0.6101611146673998 0.1397545226867617
+0.2952697729131309 0.6127951353917681 0.2952697729131309 0.6127951353917681 0.13770545235506793
+0.292515660920318 0.6154313379057522 0.29251566092031794 0.6154313379057522 0.13598251469931202
+0.29033666031490046 0.6216468882613994 0.29033666031490046 0.6216468882613994 0.13082636426418237
+0.27947821507353254 0.6441807277268975 0.2794782150735325 0.6441807277268975 0.12424614342645264
+0.2812012455759507 0.638144648786865 0.2812012455759507 0.638144648786865 0.1251915013501098
+0.2821071415403165 0.6414803987362153 0.2821071415403165 0.6414803987362153 0.12396194972206227
+0.2838305805138312 0.6355079259607989 0.2838305805138312 0.6355079259607989 0.12511411053011193
+0.2752349037531097 0.6530838111162005 0.2752349037531097 0.6530838111162005 0.12439417433311366
+0.27784635409061936 0.6503107148785222 0.27784635409061936 0.6503107148785222 0.12402561706870473
+0.41172533362698766 0.4262422838992721 0.4117253336269876 0.4262422838992722 0.615528478629482
+0.4080283858068944 0.42651749101667424 0.4080283858068943 0.4265174910166742 0.5690295561179824
+0.40338661773439377 0.42753285494918125 0.4033866177343937 0.4275328549491812 0.5133468988923249
+0.4060009379021155 0.4279942895883714 0.4060009379021155 0.4279942895883714 0.5448209072569787
+0.3984671823222014 0.42867832721448823 0.3984671823222014 0.4286783272144882 0.45625119053791696
+0.40184480307182563 0.4295439678576141 0.40184480307182563 0.4295439678576141 0.49306187926132417
+0.39675996224366383 0.4310453180687073 0.3967599622436638 0.43104531806870733 0.4322640841352703
+0.39281616378466744 0.43114077480777935 0.39281616378466744 0.43114077480777935 0.3918700499485324
+0.38984193067764095 0.43291562957291774 0.3898419306776409 0.43291562957291774 0.3583112900769106
+0.3840532445351298 0.4335068407682603 0.38405324453512973 0.4335068407682603 0.3103061479323545
+0.38736829649915033 0.43474191839168086 0.38736829649915033 0.4347419183916808 0.3307629004778833
+0.37765773273462355 0.4360009981472514 0.37765773273462355 0.4360009981472514 0.2642106607548516
+0.38172229575755084 0.4364259027747077 0.38172229575755084 0.4364259027747077 0.28515552776198544
+0.37605590268756905 0.43855395627841337 0.37605590268756905 0.43855395627841337 0.250891320783061
+0.36893445738764347 0.4407067284024513 0.36893445738764347 0.4407067284024513 0.22863700812836354
+0.3731042572637236 0.4401756987512267 0.37310425726372365 0.4401756987512267 0.23821827247766406
+0.3672030268465006 0.44348441899969654 0.3672030268465006 0.44348441899969654 0.22744450077257108
+0.3620319500414292 0.4467183818329047 0.36203195004142913 0.44671838183290463 0.23275587479497137
+0.36534020709829196 0.4456990905139268 0.36534020709829196 0.44569909051392675 0.22959321458982657
+0.3593932868957944 0.4493578585941661 0.3593932868957945 0.44935785859416605 0.2425454275812747
+0.35386390625936337 0.45244357236634064 0.35386390625936337 0.45244357236634064 0.26089890084692385
+0.35755953066931745 0.45216832589754213 0.3575595306693175 0.45216832589754213 0.2550802281202174
+0.3519756543906625 0.4555536934744448 0.3519756543906625 0.4555536934744448 0.27690152884304947
+0.3462969510348674 0.4592241471353724 0.3462969510348674 0.45922414713537235 0.30057670365739225
+0.3501253388173075 0.4587176664076184 0.3501253388173075 0.4587176664076184 0.29376867505441795
+0.3444826425702812 0.46257743728556494 0.3444826425702812 0.46257743728556494 0.3176684601153266
+0.33875774034507333 0.4668632833112672 0.3387577403450734 0.4668632833112672 0.34049646811914985
+0.34276820845236594 0.4659860628650125 0.34276820845236594 0.4659860628650125 0.33416833791145034
+0.33737070177157347 0.4701480631415924 0.33737070177157347 0.4701480631415924 0.354202895740279
+0.33198468102539036 0.4741023413313332 0.33198468102539036 0.4741023413313332 0.36956700635010575
+0.33020123235654797 0.47636055457817755 0.33020123235654797 0.47636055457817755 0.37665837885386805
+0.33566241318224216 0.47365557600272745 0.33566241318224216 0.4736555760027274 0.36749099181812306
+0.3302631273770609 0.47905327057561997 0.3302631273770609 0.47905327057562 0.3843855336705915
+0.32567119351028556 0.48320842067233855 0.32567119351028556 0.48320842067233855 0.39343798481601994
+0.32467605813338235 0.48626720438034765 0.32467605813338235 0.4862672043803476 0.3989286278116653
+0.3292279014846248 0.4822940130709998 0.3292279014846247 0.4822940130709998 0.3923379260299224
+0.3236346485274627 0.48944757782639814 0.32363464852746265 0.4894475778263981 0.4033230887804335
+0.3193637043831546 0.4935758953806964 0.3193637043831546 0.4935758953806964 0.40551228325485233
+0.31859507784791763 0.49679124372362565 0.31859507784791763 0.49679124372362565 0.4069357434241847
+0.32285771534097335 0.4925266767561534 0.32285771534097335 0.4925266767561534 0.40641948177373116
+0.31785958060131914 0.500029555903276 0.31785958060131914 0.500029555903276 0.4071263071048392
+0.3136332352784719 0.5045188624405309 0.3136332352784719 0.5045188624405309 0.40350473604553755
+0.3130282094613464 0.5078584345173655 0.3130282094613464 0.5078584345173655 0.40089569442291234
+0.3171721783410495 0.5032880416533535 0.3171721783410495 0.5032880416533535 0.40610074066518376
+0.3124875764440385 0.5112122038202855 0.3124875764440385 0.5112122038202855 0.3971617717457523
+0.30846942051944753 0.5160341903086275 0.30846942051944753 0.5160341903086275 0.38838717089306135
+0.3080610233678926 0.5195039186572746 0.3080610233678926 0.5195039186572746 0.38216494919650273
+0.31199083668626487 0.514608041402439 0.31199083668626487 0.5146080414024389 0.3922887418223185
+0.3077216814611074 0.5229899608207067 0.3077216814611074 0.5229899608207066 0.37496442589985485
+0.30395497164727686 0.5281146961905838 0.30395497164727686 0.5281146961905838 0.3620195127337155
+0.3036914998752935 0.531684244480031 0.3036914998752935 0.531684244480031 0.35288155888447875
+0.3074362491522558 0.5264865108851008 0.3074362491522558 0.5264865108851008 0.3668556345110779
+0.3035341134043678 0.5352898233760864 0.3035341134043678 0.5352898233760864 0.342948377129119
+0.3003141087629632 0.5408068924305705 0.3003141087629632 0.5408068924305703 0.32673101625718776
+0.3001886664452863 0.5444776107935404 0.30018866644528636 0.5444776107935404 0.31552928747437253
+0.3035782145320523 0.5389122731634074 0.3035782145320523 0.5389122731634074 0.33231408145725755
+0.300073471428322 0.5481315012903316 0.300073471428322 0.5481315012903316 0.3040047154820756
+0.2982612118008142 0.5550932750067228 0.2982612118008142 0.5550932750067228 0.2819170966409239
+0.2984981904554261 0.5580556539694501 0.2984981904554261 0.5580556539694501 0.27219035981399853
+0.29980897415051333 0.5521337717032526 0.2998089741505133 0.5521337717032527 0.29118700054811036
+0.29842906742303893 0.5614566681240722 0.29842906742303893 0.5614566681240722 0.26110158847382925
+0.29838965719006794 0.5718054656626697 0.29838965719006794 0.5718054656626697 0.22797576991244076
+0.2982922960422581 0.5684151107615514 0.2982922960422581 0.5684151107615514 0.23871703213669968
+0.2983272507819511 0.5649587007617347 0.29832725078195116 0.5649587007617347 0.24978441175404367
+0.2983884352949536 0.5753560266375795 0.29838843529495357 0.5753560266375795 0.21709038550670365
+0.29821249590882 0.5788852877558203 0.29821249590882 0.5788852877558203 0.20687511135518413
+0.2982335177059965 0.5823280470593061 0.2982335177059965 0.5823280470593061 0.19718120569667666
+0.2985086518310052 0.5860021462580419 0.2985086518310052 0.5860021462580419 0.1871280038063253
+0.29885933622240035 0.5898394406342355 0.29885933622240035 0.5898394406342354 0.17724451758075002
+0.2994740438384936 0.5938123871984742 0.2994740438384936 0.5938123871984741 0.16766242873295964
+0.2986479244955492 0.5972468121461589 0.2986479244955492 0.5972468121461589 0.16093995736874614
+0.2995571840137791 0.6003011207040903 0.2995571840137791 0.6003011207040903 0.1545060258244214
+0.3001752294821461 0.6039164004541421 0.3001752294821461 0.6039164004541421 0.147885586440378
+0.41353349724125005 0.4304531164940459 0.41353349724125005 0.4304531164940459 0.6500578023829676
+0.41527873895881084 0.4344529568853117 0.41527873895881084 0.4344529568853117 0.6834326281901447
+0.45749575785291413 0.39312369803169384 0.4574957578529141 0.39312369803169384 0.4795721300324819
+0.4586468459702137 0.3898263095878556 0.4586468459702137 0.3898263095878556 0.4716609034655974
+0.4609124987990416 0.38562878700797826 0.4609124987990416 0.38562878700797826 0.46474939599558757
+0.46070007274910524 0.38833242832164017 0.46070007274910524 0.38833242832164017 0.46846237879719627
+0.4636579032008209 0.38136286851126955 0.46365790320082084 0.3813628685112696 0.4599432301106941
+0.46328121820729273 0.38469816105694554 0.4632812182072927 0.38469816105694554 0.46404029652138784
+0.4656910243914761 0.3788431200524952 0.4656910243914761 0.37884312005249526 0.4571941694147192
+0.46635801928030357 0.38154571252549996 0.4663580192803035 0.38154571252549996 0.4611120340213367
+0.4689536825599392 0.3731155425857839 0.4689536825599392 0.3731155425857839 0.44853974593252294
+0.4678566938470593 0.37671159354197054 0.46785669384705925 0.37671159354197054 0.4545938968346462
+0.4753638990039937 0.3641271150974283 0.4753638990039937 0.3641271150974283 0.42414709969081427
+0.47372639311222314 0.3676341680356923 0.4737263931122232 0.3676341680356923 0.43466652644190257
+0.4718654035436365 0.37302526272273195 0.4718654035436365 0.37302526272273195 0.44750480206016446
+0.4734166522554115 0.3708746982790355 0.4734166522554116 0.3708746982790355 0.4419850197960617
+0.48712233483682477 0.3519561119922761 0.48712233483682477 0.3519561119922761 0.35607656403442817
+0.4849822683694596 0.35449030417582067 0.4849822683694596 0.35449030417582067 0.37205668808810927
+0.4819720967341546 0.3571602894280489 0.48197209673415464 0.35716028942804895 0.39022621975669214
+0.4803621060097647 0.360835791198179 0.48036210600976476 0.360835791198179 0.4050461136389945
+0.47895594913031053 0.3641461239314334 0.47895594913031053 0.3641461239314334 0.41743042160902405
+0.49233157959264084 0.3497471766072207 0.4923315795926408 0.3497471766072207 0.32539977484355037
+0.4950430453300196 0.3468708567782264 0.4950430453300196 0.34687085677822643 0.3028801463524497
+0.4988297936531265 0.34601843563010465 0.4988297936531265 0.34601843563010465 0.27936861213867803
+0.4904855701437074 0.3527247324436539 0.4904855701437074 0.35272473244365393 0.34329610879328515
+0.507233881197427 0.3378856222737346 0.507233881197427 0.3378856222737346 0.21019575442717572
+0.5045847158942529 0.34069696703889946 0.5045847158942528 0.34069696703889946 0.23194651097768945
+0.5037800225484024 0.343980437574687 0.5037800225484024 0.343980437574687 0.2452279865687768
+0.5019108231078524 0.34610087403686474 0.5019108231078525 0.34610087403686474 0.2619743211460012
+0.5190751054574684 0.33117660797228804 0.5190751054574684 0.33117660797228804 0.1532957571530911
+0.5155659475163198 0.33276752957734523 0.5155659475163198 0.3327675295773452 0.16290171649125387
+0.5129632307637216 0.33595576620362444 0.5129632307637216 0.3359557662036244 0.1786397252652573
+0.5106689826059688 0.3387567901275692 0.5106689826059688 0.3387567901275692 0.19510858739954925
+0.5322924477127678 0.32629379138383274 0.5322924477127678 0.3262937913838328 0.18482367959751764
+0.5270373214140074 0.32768990546163457 0.5270373214140074 0.3276899054616345 0.15980927470698417
+0.5298815401614667 0.32853241716737575 0.5298815401614667 0.32853241716737575 0.17511128574692927
+0.5247495764743576 0.330048060994919 0.5247495764743576 0.330048060994919 0.15654038615190272
+0.5222766912150841 0.3324272045185671 0.5222766912150841 0.33242720451856705 0.15640775709524335
+0.5462367783146804 0.32220746926322524 0.5462367783146805 0.32220746926322524 0.282405933665969
+0.5404271279160803 0.32305434359505386 0.5404271279160803 0.32305434359505386 0.23703730827512606
+0.5434964558196506 0.32445724901511236 0.5434964558196506 0.32445724901511236 0.26544718286827346
+0.5377600250242838 0.3254000442120447 0.5377600250242837 0.32540004421204477 0.2215663091452504
+0.5353340893973395 0.32772901324685355 0.5353340893973395 0.32772901324685355 0.2085988060450891
+0.5550257059908544 0.31926724177159543 0.5550257059908544 0.31926724177159543 0.34675484185982647
+0.5521331810425529 0.3215243949840396 0.5521331810425529 0.3215243949840396 0.3298218028834397
+0.5493086114546227 0.3237241335458474 0.5493086114546227 0.3237241335458474 0.3125061763314098
+0.5841268619327494 0.31637698923976915 0.5841268619327494 0.31637698923976915 0.5414621786432868
+0.5582279912016066 0.32072228432651173 0.5582279912016066 0.3207222843265117 0.3775238242975361
+0.5806618098636134 0.3176655075653645 0.5806618098636135 0.3176655075653645 0.5266910236156304
+0.5620856034933914 0.3220541993052649 0.5620856034933914 0.32205419930526485 0.4133461513030023
+0.5655452270515978 0.32144235587905157 0.5655452270515978 0.32144235587905157 0.43797715598176373
+0.5684361546838008 0.3212868290227389 0.5684361546838009 0.3212868290227389 0.45892776424220877
+0.5771424910597379 0.3188888475885697 0.5771424910597379 0.3188888475885698 0.5098185026043206
+0.571080975176939 0.3212100108491524 0.571080975176939 0.3212100108491524 0.4778981007911889
+0.5742383215408782 0.3201632088706697 0.5742383215408782 0.3201632088706697 0.4958616796511266
+0.5904761591490809 0.31743213743253235 0.5904761591490809 0.31743213743253235 0.5791415843998012
+0.5869774852930459 0.3187942772596353 0.5869774852930459 0.3187942772596353 0.5671262575989013
+0.4613368592392651 0.39601782292352466 0.4613368592392651 0.39601782292352466 0.4803184190003799
+0.46494457589738664 0.39881297397080295 0.46494457589738664 0.398812973970803 0.48065837846905685
+0.6430596043941794 0.27312551960599135 0.6430596043941793 0.27312551960599135 0.587200640025772
+0.6394666849170453 0.27401495746652194 0.6394666849170453 0.2740149574665219 0.5828495582990075
+0.6359216395965689 0.27492755409621766 0.6359216395965689 0.27492755409621766 0.5780214293009974
+0.6324267848032813 0.2758769217073619 0.6324267848032813 0.27587692170736183 0.5727901585254681
+0.625606847786924 0.2779526461259412 0.625606847786924 0.2779526461259412 0.5615156241470779
+0.6289897227395607 0.2768869926142033 0.6289897227395606 0.2768869926142033 0.5672787102916965
+0.6123592147108617 0.2825498289306054 0.6123592147108617 0.2825498289306054 0.5351907850530112
+0.6222674447996265 0.27907173436054145 0.6222674447996265 0.2790717343605414 0.5555189080572164
+0.6189805784990156 0.2802538001090978 0.6189805784990156 0.2802538001090978 0.5493687385046977
+0.6157018563127267 0.28143914632733824 0.6157018563127267 0.28143914632733824 0.542757019250724
+0.6079436053064396 0.28709556884529003 0.6079436053064396 0.28709556884529003 0.5345581157962229
+0.6037032345497253 0.2918651847473977 0.6037032345497253 0.2918651847473977 0.535361139077025
+0.5940216068986319 0.31606596401384784 0.5940216068986319 0.31606596401384784 0.5899408249295086
+0.5946647106885018 0.31238620473543816 0.5946647106885018 0.31238620473543816 0.577569335517775
+0.5955133618128261 0.30509957669002885 0.5955133618128262 0.30509957669002885 0.5518659548348149
+0.5951594873577702 0.3087222487771737 0.5951594873577702 0.3087222487771737 0.5648014185685906
+0.5984798480085146 0.30389611386572357 0.5984798480085146 0.3038961138657235 0.5597127352744282
+0.5997061165236851 0.2966953638669562 0.5997061165236851 0.2966953638669562 0.5371963251966999
+0.5991104737483576 0.300330044321351 0.5991104737483576 0.300330044321351 0.5484964345072451
+0.6029733316841266 0.2956702659071723 0.6029733316841267 0.2956702659071723 0.5463171680112411
+0.6071105908866752 0.2908422369559899 0.6071105908866752 0.29084223695598993 0.5443906512553295
+0.6114345554792301 0.2861867743448538 0.6114345554792301 0.2861867743448538 0.543749600708744
+0.6467058653112135 0.27224993717034646 0.6467058653112135 0.27224993717034646 0.5910281988528547
+0.6504167556507298 0.27139364280291134 0.6504167556507298 0.27139364280291134 0.5943296889148444
+0.654151159528996 0.27060443591149497 0.654151159528996 0.27060443591149497 0.5970788753452044
+0.6578513236426268 0.2699527657807888 0.6578513236426268 0.2699527657807888 0.5993510050635286
+0.6614679009996282 0.2694409211446687 0.6614679009996282 0.2694409211446687 0.6011533288937984
+0.6650104335367303 0.26896801151991345 0.6650104335367303 0.2689680115199135 0.6023072197074101
+0.6684625217142587 0.26852857201704067 0.6684625217142587 0.26852857201704067 0.6028617108826183
+0.6973807522365818 0.2373049784044139 0.6973807522365818 0.2373049784044139 0.5460193269878842
+0.7008065451174215 0.23696434654370357 0.7008065451174215 0.23696434654370355 0.5449103356834141
+0.6920630073075156 0.2405732918779821 0.6920630073075156 0.24057329187798213 0.55162977701651
+0.6901246919093859 0.24357642430228163 0.6901246919093859 0.24357642430228163 0.5567209370580937
+0.6847031081182595 0.24723969161541923 0.6847031081182595 0.24723969161541923 0.5638390986706295
+0.6830825387323084 0.2507607098025832 0.6830825387323084 0.2507607098025832 0.5703371651202486
+0.6780087712060444 0.25448553639585086 0.6780087712060444 0.25448553639585086 0.577478135774289
+0.6765325973916352 0.2578744341322292 0.6765325973916352 0.2578744341322292 0.5838902115838379
+0.6701877238267617 0.2651668933580321 0.6701877238267616 0.2651668933580322 0.5969450701754435
+0.6716484959725597 0.2617951176675858 0.6716484959725597 0.26179511766758573 0.5907470040704493
+0.6750622234206375 0.26128584335934124 0.6750622234206375 0.26128584335934124 0.590351203924949
+0.6815020914333741 0.25419984606472973 0.6815020914333741 0.25419984606472973 0.5768184951425792
+0.6883616472011327 0.2470578947705849 0.6883616472011327 0.2470578947705849 0.5629084173351987
+0.6956829683760095 0.24049956987544274 0.6956829683760094 0.24049956987544271 0.5508396629747804
+0.7062907554189921 0.23361596725820183 0.7062907554189922 0.23361596725820186 0.5401022167513757
+0.7102221693638546 0.23360631702142254 0.7102221693638545 0.2336063170214225 0.5393897929710468
+0.7045067796263685 0.23687768608462925 0.7045067796263685 0.23687768608462925 0.5439280222255691
+0.7301202410882373 0.20680599690633952 0.7301202410882373 0.20680599690633952 0.5276213425573326
+0.7280235448508406 0.21018033907856193 0.7280235448508406 0.21018033907856193 0.52849402647404
+0.7259302207069923 0.2135365782134021 0.7259302207069923 0.21353657821340208 0.5292640898372459
+0.7140138360521849 0.23366862848695702 0.7140138360521849 0.233668628486957 0.5385558378939277
+0.7158102999120602 0.23137672596202147 0.7158102999120602 0.23137672596202147 0.5365698238374651
+0.7157891795505233 0.22893968409096593 0.7157891795505233 0.22893968409096593 0.5350007835353462
+0.7238421820942761 0.21686635008256197 0.7238421820942761 0.21686635008256197 0.530057458878896
+0.7217548226683567 0.22016217674157487 0.7217548226683567 0.22016217674157487 0.5309933135257473
+0.7196620150246359 0.22340872864706895 0.7196620150246359 0.22340872864706895 0.5321699020660348
+0.7175859360281014 0.22653387669697683 0.7175859360281014 0.22653387669697686 0.533605829264075
+0.7364005900891506 0.2034221685983197 0.7364005900891506 0.2034221685983197 0.5279380542695099
+0.7343051414901299 0.20680885179899847 0.7343051414901299 0.20680885179899847 0.5290410030746228
+0.7426777982308735 0.20003259694717612 0.7426777982308735 0.20003259694717612 0.5275105459842795
+0.7405851073185227 0.20342256207411616 0.7405851073185227 0.20342256207411616 0.529106841288545
+0.7489539748953867 0.19664223111979862 0.7489539748953867 0.19664223111979862 0.5260017092489546
+0.7468619130058173 0.20003260657877422 0.7468619130058173 0.20003260657877422 0.528285281067398
+0.7552301255230022 0.19325184782462967 0.7552301255230022 0.19325184782462967 0.523202583021625
+0.7531380753137971 0.19664223111979862 0.753138075313797 0.19664223111979862 0.5262763157730977
+0.7615062761506176 0.18986146452946073 0.7615062761506176 0.18986146452946073 0.5190549802571068
+0.7594142259414125 0.19325184782462967 0.7594142259414126 0.19325184782462967 0.5229210994251191
+0.7698744769874378 0.18308069793912282 0.7698744769874378 0.18308069793912282 0.50864836730793
+0.7677824267782328 0.1864710812342918 0.7677824267782328 0.1864710812342918 0.5136499798578834
+0.7656904119114555 0.18986148595047228 0.7656904119114555 0.18986148595047228 0.5182149946495277
+0.77615073860014 0.1796903129784896 0.77615073860014 0.1796903129784896 0.5018237116327123
+0.7740585774058482 0.18308069793912285 0.7740585774058482 0.18308069793912285 0.507204016705538
+0.7824274039274551 0.17629987018897766 0.7824274039274551 0.17629987018897766 0.49449520741579395
+0.7803360546533816 0.17969010819949713 0.7803360546533816 0.17969010819949713 0.5000154724751064
+0.7887036720820418 0.17290949537508968 0.7887036720820418 0.17290949537508968 0.4869813078010608
+0.7866130643696994 0.1762996278290119 0.7866130643696994 0.1762996278290119 0.49241226002365074
+0.7949814384703221 0.1695186725664538 0.7949814384703221 0.1695186725664538 0.47953124888509163
+0.7928903164089093 0.17290858873609624 0.7928903164089093 0.17290858873609624 0.48468928335851497
+0.8012615022220313 0.1661256164899677 0.8012615022220313 0.1661256164899677 0.47228096159659616
+0.7991705304289436 0.16951664401731223 0.7991705304289436 0.16951664401731223 0.4770563768104345
+0.8075411341750836 0.1627264915566552 0.8075411341750837 0.1627264915566552 0.46523499811428143
+0.8054537253047892 0.16611714840804234 0.8054537253047892 0.16611714840804234 0.4695991282981917
+0.811734469853982 0.16271178454059868 0.811734469853982 0.16271178454059868 0.46228574397556527
+0.8138235820917568 0.15932579747307757 0.8138235820917569 0.15932579747307754 0.4582745737796327
+0.818022076192507 0.15931360583278045 0.8180220761925071 0.15931360583278045 0.4549718749092069
+0.8221907782048676 0.15255454197712146 0.8221907782048676 0.15255454197712146 0.44766302028792476
+0.8201087996479125 0.1559297165946901 0.8201087996479125 0.1559297165946901 0.4511949790781505
+0.8284777998602343 0.14916206686441402 0.8284777998602343 0.14916206686441402 0.4402621528138238
+0.8263854031259856 0.15255047612661582 0.8263854031259857 0.15255047612661585 0.4437780208924587
+0.8347572497721453 0.14573906683842994 0.8347572497721453 0.14573906683842994 0.43223418774141126
+0.832671271126591 0.1491295091994852 0.832671271126591 0.1491295091994852 0.4358073128901701
+0.8410249519691025 0.14233593763984187 0.8410249519691025 0.14233593763984187 0.423631556853111
+0.8389347113872528 0.14571317129508285 0.8389347113872528 0.14571317129508285 0.427267926351488
+0.8472773655917347 0.13891231589764574 0.8472773655917347 0.13891231589764574 0.414715688774468
+0.8451858935289708 0.14228446686946758 0.8451858935289708 0.14228446686946758 0.4183008160397326
+0.8535044369570428 0.13548256463556724 0.8535044369570429 0.13548256463556727 0.4059685781483732
+0.8513828108426192 0.13885616762806027 0.8513828108426192 0.13885616762806027 0.40931137352427066
+0.8596813541731283 0.13197142912786297 0.8596813541731283 0.13197142912786297 0.39814852628149816
+0.8576292073475935 0.13537466795187264 0.8576292073475935 0.1353746679518726 0.4007405085080256
+0.863715708314829 0.13187378879155673 0.863715708314829 0.13187378879155673 0.39361647110171655
+0.8659162067309837 0.12858612101079683 0.8659162067309837 0.12858612101079683 0.39190401846914075
+0.8721281451166334 0.124769881253103 0.8721281451166334 0.124769881253103 0.3883969986344771
+0.8700054466339102 0.12830720808990817 0.8700054466339102 0.12830720808990817 0.38843602809394845
+0.8753952320647864 0.12454013177559342 0.8753952320647864 0.12454013177559342 0.38661325920767775
+0.8782046508242076 0.12204271299030864 0.8782046508242074 0.12204271299030865 0.3874556238967267
+0.8816976982971614 0.12110944777758512 0.8816976982971614 0.12110944777758512 0.38743717206199463
+0.8840618611182659 0.11858962363942625 0.8840618611182659 0.11858962363942625 0.3901921776767716
+0.8872755305064891 0.115250349603419 0.8872755305064891 0.11525034960341898 0.39522157660795804
+0.8913190008423726 0.11324269473783827 0.8913190008423726 0.11324269473783825 0.3997523427477386
+0.8948482770750475 0.11123714691262006 0.8948482770750475 0.11123714691262006 0.4049629574675368
+0.8982354551254526 0.1091072192699537 0.8982354551254526 0.1091072192699537 0.4110878222042013
+0.9015934348770377 0.10688527573569508 0.9015934348770377 0.10688527573569508 0.417835692854879
+0.9050794999347438 0.10476804378379265 0.9050794999347439 0.10476804378379266 0.4247446837436761
+0.9084919547236666 0.10264464308455366 0.9084919547236666 0.10264464308455366 0.431614071540995
+0.9118534088252989 0.10054397690506955 0.9118534088252989 0.10054397690506955 0.43819708291345655
+0.9152467449178883 0.09839528979167148 0.9152467449178882 0.09839528979167146 0.4444564789653305
+0.9186489102010107 0.09628495640084696 0.9186489102010107 0.09628495640084696 0.4500149574979549
+0.922031465548019 0.09417886807494658 0.922031465548019 0.09417886807494658 0.4547228462206048
+0.9254167704335583 0.09207432642657873 0.9254167704335582 0.09207432642657874 0.4584363728484151
+0.928806798511877 0.08996880947396182 0.928806798511877 0.08996880947396181 0.4610284465403897
+0.9321960965412447 0.0878741087466402 0.9321960965412447 0.0878741087466402 0.462377464257177
+0.9355827173917901 0.08577405857736708 0.9355827173917902 0.08577405857736708 0.46242400812928475
+0.9389735507306298 0.08368822284107943 0.9389735507306298 0.08368822284107945 0.4610912872877381
+0.9423623232279625 0.08159462590776884 0.9423623232279627 0.08159462590776884 0.4583973117441506
+0.9457534635127332 0.07949865064407459 0.945753463512733 0.07949865064407459 0.45434661080564603
+0.9491440981633439 0.07740611250800905 0.9491440981633438 0.07740611250800905 0.44898697392082215
+0.9525310200373762 0.07532011356556079 0.9525310200373763 0.07532011356556079 0.4424044773763178
+0.9559227180524297 0.07322669799957038 0.9559227180524296 0.07322669799957038 0.4346925229124578
+0.9593145745310996 0.07113323368943751 0.9593145745310995 0.07113323368943751 0.42599441982496683
+0.962705407659921 0.06904030603597118 0.962705407659921 0.06904030603597118 0.4164754722818169
+0.9660956427493882 0.06694807021185462 0.9660956427493882 0.06694807021185462 0.40632185600750814
+0.9694860036893883 0.06485538485341995 0.9694860036893883 0.06485538485341995 0.3957387024673272
+0.9728767992555707 0.06276205657940828 0.9728767992555706 0.06276205657940827 0.3849494476255217
+0.9762673619060714 0.06066978108355847 0.9762673619060714 0.06066978108355847 0.3741937612087079
+0.9796577480048876 0.05857748792946707 0.9796577480048877 0.05857748792946706 0.3637110309062405
+0.9830481045751591 0.056485430356882554 0.9830481045751592 0.05648543035688256 0.3537385705353416
+0.9864384668193242 0.05439330543929044 0.9864384668193242 0.05439330543929044 0.344500260899941
+0.9898288501144932 0.05230125523008533 0.9898288501144933 0.05230125523008533 0.33619668421391463
+0.9932192334096621 0.05020920502088022 0.9932192334096621 0.05020920502088022 0.32899296280052887
+0.05439330543933049 0.9932192334096622 0.0543933054393305 0.9932192334096622 0.07949540292611153
+0.05648535564853552 0.9898288501144934 0.05648535564853552 0.9898288501144935 0.08147267847086732
+0.05857740585774051 0.9864384668193246 0.05857740585774051 0.9864384668193246 0.08377069384861967
+0.0606694560669456 0.9830480835241554 0.060669456066945605 0.9830480835241554 0.08631719223553558
+0.06276150627615067 0.9796577002289867 0.06276150627615067 0.9796577002289867 0.08903462386494881
+0.0648535564853558 0.9762673169338177 0.0648535564853558 0.9762673169338177 0.09184407477499333
+0.06694560669456084 0.9728769336386488 0.06694560669456084 0.9728769336386488 0.09466834208801889
+0.0690376569037659 0.96948655034348 0.0690376569037659 0.96948655034348 0.09743417209014743
+0.07112970711297097 0.9660961670483111 0.07112970711297097 0.9660961670483111 0.10007379313227745
+0.07322175732217613 0.9627057837531424 0.07322175732217613 0.9627057837531424 0.10252591583586214
+0.0753135872588223 0.959315478581022 0.0753135872588223 0.959315478581022 0.10473625836282509
+0.0774051839678718 0.9559254391506692 0.07740518396787179 0.9559254391506692 0.10665803291942817
+0.07949678887586037 0.9525360177811167 0.07949678887586037 0.9525360177811167 0.10825211140267539
+0.08158781562793642 0.9491475718584188 0.08158781562793642 0.9491475718584187 0.10948718333122176
+0.08367729357856064 0.9457599600026859 0.08367729357856064 0.9457599600026859 0.11034004123198703
+0.0857661971331574 0.9423722159413371 0.0857661971331574 0.9423722159413371 0.11079536475437309
+0.0878583271006807 0.9389842858740217 0.0878583271006807 0.9389842858740217 0.11084524225049171
+0.08995526259870044 0.9355968242853675 0.08995526259870044 0.9355968242853675 0.11048919249142074
+0.0920486515650853 0.932204100123099 0.0920486515650853 0.9322041001230988 0.10973338756727029
+0.09414272843820094 0.9288139730330579 0.09414272843820094 0.9288139730330579 0.1085943090537741
+0.09623503441680051 0.9254160290772535 0.0962350344168005 0.9254160290772536 0.10709203043228101
+0.09832925843165323 0.9220241880159719 0.09832925843165323 0.922024188015972 0.10526128246013854
+0.10042560930645356 0.9186350897270262 0.10042560930645354 0.9186350897270262 0.10314022475393984
+0.10252073296975053 0.9152467045691455 0.10252073296975052 0.9152467045691456 0.1007738947745807
+0.10462208329891987 0.9118729593854303 0.10462208329891987 0.9118729593854303 0.09822384934457505
+0.10670915561811267 0.9085024881797032 0.10670915561811267 0.9085024881797032 0.09554542218297192
+0.10878547771652473 0.9051318556441426 0.10878547771652473 0.9051318556441427 0.09279924634376276
+0.11088138131981151 0.9017530076587427 0.11088138131981151 0.9017530076587427 0.09004692050781292
+0.11290727549878773 0.8983418747853362 0.11290727549878775 0.8983418747853361 0.08733468949192731
+0.11488318618522815 0.8949134404382922 0.11488318618522815 0.8949134404382922 0.08474360000936278
+0.11683968297628465 0.89147626368087 0.11683968297628465 0.89147626368087 0.08234409794794846
+0.11888498493711125 0.8882942858452888 0.11888498493711123 0.8882942858452888 0.08048009386347112
+0.12145356797822403 0.8848350560919123 0.12145356797822403 0.8848350560919123 0.07898133977918027
+0.12363924891855671 0.8813773567588492 0.12363924891855671 0.8813773567588491 0.07778752389122583
+0.12574333783561686 0.877981084159294 0.12574333783561686 0.877981084159294 0.07705831502601733
+0.12795089751269173 0.8746094141805886 0.12795089751269173 0.8746094141805886 0.07689452828268652
+0.13007449481146383 0.8712925632325575 0.13007449481146383 0.8712925632325575 0.07717149013544068
+0.13184357735691124 0.8676165777434774 0.13184357735691124 0.8676165777434777 0.0774603269506613
+0.13439329757741325 0.8641454450631508 0.13439329757741325 0.8641454450631508 0.07887955551614446
+0.13664386365772463 0.8610313529746936 0.13664386365772463 0.8610313529746936 0.08046279430163533
+0.1387424472385212 0.8553942693022233 0.13874244723852122 0.8553942693022233 0.08210046763041151
+0.1386439272953887 0.8585692008776984 0.1386439272953887 0.8585692008776984 0.08208479875366882
+0.1414567707251519 0.8537281058285793 0.1414567707251519 0.8537281058285793 0.08456878440030549
+0.14298043513721403 0.8501163389735246 0.14298043513721406 0.8501163389735246 0.08616293408017699
+0.14580521211465386 0.843103016337846 0.14580521211465383 0.843103016337846 0.08935938829369187
+0.14601769314490295 0.847136439655923 0.14601769314490295 0.847136439655923 0.08905972899652898
+0.14916024301641786 0.8368180373350977 0.14916024301641786 0.8368180373350977 0.09296297532565855
+0.14912145225940432 0.8409455774366519 0.14912145225940432 0.8409455774366519 0.0923434996424406
+0.1525624893453649 0.8306190968140419 0.1525624893453649 0.8306190968140418 0.09635060321775141
+0.15254159456255822 0.8347814741365499 0.15254159456255822 0.8347814741365499 0.09578351610191045
+0.1559666249505313 0.828664360179313 0.1559666249505313 0.828664360179313 0.09890395701613487
+0.1592034926763711 0.8222725361601122 0.1592034926763711 0.8222725361601121 0.10148170495403785
+0.159121113100134 0.826667078825104 0.159121113100134 0.8266670788251042 0.10112647595418078
+0.16270287590520696 0.8159164518668967 0.16270287590520696 0.8159164518668965 0.10365053433783618
+0.16264324130942906 0.8200853553969409 0.16264324130942906 0.8200853553969409 0.10356227892253013
+0.16609222181823452 0.813832672431186 0.16609222181823455 0.813832672431186 0.10535468423684703
+0.166110558567284 0.809638769580365 0.166110558567284 0.809638769580365 0.10515003951634778
+0.1695052069552011 0.8033575609095692 0.1695052069552011 0.8033575609095692 0.10601512040875054
+0.16949828927861113 0.8075444883993123 0.16949828927861113 0.8075444883993123 0.10651105882037772
+0.17289421360809884 0.8012717277107907 0.17289421360809884 0.8012717277107907 0.10703708545420058
+0.1729001668117495 0.7970872814007132 0.1729001668117495 0.7970872814007132 0.1062608944149679
+0.17629856063725657 0.7908067304976042 0.17629856063725657 0.7908067304976042 0.1059176303406022
+0.17629455556730264 0.7950024090755609 0.17629455556730264 0.7950024090755609 0.10695117334309091
+0.1796916798966639 0.784524518564956 0.1796916798966639 0.784524518564956 0.10503931659887401
+0.1796925931559741 0.788715549389701 0.1796925931559741 0.788715549389701 0.10628367492804848
+0.18308148269408805 0.7782440163729173 0.18308148269408805 0.7782440163729173 0.10370520641197394
+0.18308224197456424 0.7824297900056422 0.18308224197456424 0.7824297900056422 0.10509820064920512
+0.18647139296857684 0.7719665485803043 0.18647139296857684 0.7719665485803043 0.1020176285416702
+0.18647190380202985 0.7761505674159267 0.18647190380202985 0.7761505674159267 0.10348593012556194
+0.1898617786098906 0.769873969706549 0.1898617786098906 0.769873969706549 0.1015596244180816
+0.1932518648150009 0.7635983125954826 0.1932518648150009 0.7635983125954827 0.09946102006619928
+0.1932522361828091 0.7677813478789585 0.1932522361828091 0.7677813478789585 0.10096903293676977
+0.19664223384410448 0.7573221765678827 0.19664223384410448 0.7573221765678827 0.09735880229354289
+0.19664239424878158 0.7615055212163572 0.19664239424878158 0.7615055212163572 0.09872543282683811
+0.20003261508956297 0.751046025423483 0.20003261508956297 0.751046025423483 0.09544504393222869
+0.2000326154899059 0.7552301259288029 0.2000326154899059 0.7552301259288029 0.09656754563334898
+0.20342299785785833 0.7447698736304765 0.20342299785785833 0.7447698736304765 0.09392306237285801
+0.20342299801425076 0.7489539694106214 0.20342299801425076 0.7489539694106214 0.09470495043372874
+0.2068131396499686 0.7384937358848901 0.2068131396499686 0.7384937358848901 0.09298828881681315
+0.20681329983257893 0.7426778240712965 0.20681329983257893 0.7426778240712965 0.09335119993585107
+0.21019939055634365 0.7322162753630227 0.21019939055634365 0.7322162753630227 0.09280344752245118
+0.21020124309858823 0.7364014009019052 0.21020124309858823 0.7364014009019052 0.09269819799699458
+0.2135786728415461 0.7301216077501119 0.2135786728415461 0.7301216077501119 0.09288748224360521
+0.21694516587335197 0.7280231752797587 0.21694516587335197 0.7280231752797587 0.09327047679379068
+0.22029422366224202 0.725924527282214 0.22029422366224202 0.725924527282214 0.09398657415427449
+0.2236272644286389 0.7238360932108123 0.22362726442863892 0.7238360932108123 0.09505343384245275
+0.22695053483988692 0.7217923729550176 0.22695053483988695 0.7217923729550176 0.09647197559840959
+0.23024712289677132 0.719826109964282 0.23024712289677132 0.719826109964282 0.09821692147598243
+0.23558190694021408 0.7108036153683611 0.23558190694021408 0.7108036153683611 0.10325922103236797
+0.23805024258580768 0.7080396686444922 0.23805024258580768 0.7080396686444922 0.1054581188630641
+0.23950587553806024 0.7018935000320075 0.23950587553806021 0.7018935000320075 0.10820035321924372
+0.24053465357045167 0.7053233061616281 0.2405346535704517 0.7053233061616281 0.10771199302238266
+0.24357083650034048 0.6929082172283269 0.24357083650034048 0.6929082172283269 0.1131771266561873
+0.24613113735336598 0.6900764254554982 0.24613113735336598 0.6900764254554982 0.11523223017219973
+0.24868210191819826 0.6872466020722087 0.24868210191819826 0.6872466020722087 0.11714617393400982
+0.2654871370692232 0.664301756888327 0.2654871370692233 0.664301756888327 0.12471464176764213
+0.25279933314096964 0.677968096001783 0.25279933314096964 0.677968096001783 0.12085755900015482
+0.2553205924782327 0.6751848472480146 0.2553205924782327 0.6751848472480146 0.12207908464946772
+0.2578602955206423 0.6723908273891593 0.2578602955206423 0.6723908273891593 0.1230876288682005
+0.2626110831226299 0.6668084784535997 0.2626110831226299 0.6668084784535998 0.12439006112527733
+0.2601860396262687 0.6693832238113042 0.2601860396262687 0.6693832238113043 0.12384839211699374
+0.2512248766313902 0.6843923910156057 0.2512248766313902 0.6843923910156057 0.11890042360943391
+0.25375052566108147 0.6815609108303774 0.25375052566108147 0.6815609108303774 0.12044456335491578
+0.24204339833445973 0.699163514166711 0.24204339833445973 0.699163514166711 0.11043541694619392
+0.24459803552181397 0.6964035272820813 0.244598035521814 0.6964035272820813 0.11264738310698412
+0.2338763887973492 0.7179163275255018 0.2338763887973492 0.7179163275255017 0.10045758940865232
+0.23667363137095315 0.7145254880812575 0.23667363137095318 0.7145254880812574 0.10285412316119434
+0.27635577810393047 0.6565213830809288 0.27635577810393047 0.6565213830809288 0.12437154038633451
+0.2688727887657567 0.6649401037690449 0.2688727887657567 0.6649401037690449 0.12488052926762462
+0.27132609647320133 0.6621623732060935 0.27132609647320133 0.6621623732060935 0.12485814241454589
+0.27382783690173196 0.6593329826750162 0.27382783690173196 0.6593329826750162 0.1246785924610647
+0.2804570854281557 0.647558997422048 0.2804570854281557 0.647558997422048 0.1236314676775646
+0.2864239429821614 0.6329115706770088 0.2864239429821614 0.6329115706770088 0.1251859959887671
+0.2888751875595109 0.6304865629608196 0.28887518755951097 0.6304865629608196 0.12541764433812197
+0.2908996536773644 0.6251797093538678 0.2908996536773644 0.6251797093538678 0.12783402759428017
+0.2908357289591309 0.6281805631654316 0.2908357289591309 0.6281805631654316 0.12595056886520975
+0.3008156677473005 0.6075728499938304 0.30081566774730056 0.6075728499938303 0.14206933852485895
+0.29312647190648794 0.6191312144401294 0.29312647190648794 0.6191312144401294 0.13180711243707946
+0.30142291246264014 0.6111741889402564 0.30142291246264014 0.6111741889402564 0.13722131527864598
+0.2986483983542852 0.613808902230785 0.2986483983542852 0.613808902230785 0.13509401059970072
+0.29589805823899407 0.6164802770765118 0.29589805823899407 0.6164802770765118 0.13326493245562276
+0.2937377786408154 0.6229444962597249 0.29373777864081546 0.6229444962597249 0.12834843351090805
+0.28306052605100857 0.6448183887807074 0.28306052605100857 0.6448183887807074 0.12326557042225884
+0.28472041301585915 0.6387925326691783 0.28472041301585915 0.6387925326691785 0.12377579457096798
+0.28565766245659924 0.6420921172799183 0.28565766245659924 0.6420921172799182 0.1229823350469506
+0.28731773380686165 0.6361223996217783 0.2873177338068617 0.6361223996217783 0.12373820010146659
+0.2789163737565223 0.6537230601357898 0.2789163737565223 0.6537230601357898 0.1239712216433897
+0.2814864675108394 0.6509390509120304 0.28148646751083944 0.6509390509120304 0.12352844483811636
+0.4087589868312558 0.4299421034287514 0.40875898683125567 0.4299421034287514 0.5816494412025156
+0.40510930805679435 0.4303896494774665 0.4051093080567943 0.43038964947746644 0.5324195742588015
+0.40024777603887984 0.4315616486143192 0.4002477760388798 0.43156164861431917 0.470202692682614
+0.40310227084945877 0.4319361195694623 0.40310227084945877 0.4319361195694623 0.5042325383017957
+0.39567865017734477 0.43359051763357487 0.39567865017734477 0.43359051763357487 0.4125328197584542
+0.39892467651864916 0.4337473759262009 0.39892467651864916 0.4337473759262009 0.44816090345039966
+0.39272121549271644 0.4341222725619963 0.39272121549271644 0.43412227256199637 0.38047669014157487
+0.39037968321545163 0.4351604957064564 0.39037968321545163 0.4351604957064564 0.3544941692420054
+0.39508194331728624 0.4356598954647998 0.39508194331728624 0.4356598954647998 0.39798264260319555
+0.38554457110615165 0.4369367152705258 0.38554457110615165 0.43693671527052574 0.30851212304661585
+0.3893055764874226 0.43745503266981917 0.38930557648742253 0.43745503266981917 0.335521126838358
+0.38335759292540517 0.43926141467037577 0.38335759292540517 0.43926141467037577 0.28517662757821555
+0.3794286912157796 0.43947554436829345 0.3794286912157796 0.43947554436829345 0.26327279121488933
+0.37650130119752545 0.44104023135953313 0.37650130119752545 0.44104023135953313 0.24740402371915088
+0.3817478642599188 0.4417266938689734 0.3817478642599188 0.44172669386897334 0.2675774516520333
+0.37099859600885676 0.44350734843011985 0.3709985960088567 0.4435073484301198 0.2315181647455388
+0.3749595073833255 0.44367634303644954 0.37495950738332556 0.4436763430364495 0.23892418026186776
+0.3624623940696945 0.44977733465606295 0.3624623940696945 0.44977733465606295 0.24098045953512953
+0.3688368067343818 0.446783213805308 0.36883680673438185 0.446783213805308 0.2317234310473604
+0.36532193891454884 0.44860500756736393 0.36532193891454884 0.44860500756736393 0.23569579925440395
+0.36119719760758445 0.4521645597586652 0.36119719760758445 0.45216455975866515 0.2506149647783385
+0.355783523577492 0.455228691137622 0.355783523577492 0.45522869113762193 0.2703460508041748
+0.35941225279304073 0.45488179010801705 0.35941225279304073 0.45488179010801705 0.26388457078304023
+0.3539568589376173 0.4583113366002585 0.35395685893761725 0.4583113366002585 0.28699601631071214
+0.3483352574214375 0.46199669440185137 0.3483352574214375 0.46199669440185137 0.3111253588739605
+0.3520732707792549 0.46148445803660265 0.3520732707792549 0.4614844580366027 0.304448271113091
+0.3466307017712848 0.4652949430708011 0.3466307017712848 0.4652949430708011 0.32799347359346925
+0.34129849095678444 0.4693878467666412 0.34129849095678444 0.4693878467666412 0.349368401622237
+0.3450131884188631 0.4686228834522061 0.345013188418863 0.4686228834522061 0.3439881442066481
+0.3396232618604759 0.472879654909557 0.3396232618604759 0.472879654909557 0.3637083531678677
+0.3334719027433677 0.4774656246475646 0.33347190274336774 0.4774656246475645 0.3801227468690586
+0.338002628112905 0.4765242256297367 0.338002628112905 0.4765242256297367 0.37689203200451304
+0.3328394121119502 0.4812495186020344 0.3328394121119502 0.4812495186020344 0.39052227409143764
+0.3281319161087048 0.4854804540451849 0.3281319161087048 0.4854804540451849 0.39873413774184924
+0.3270852766902586 0.4883879580418811 0.3270852766902586 0.4883879580418811 0.40330412617904715
+0.3317201316177279 0.4846708556848032 0.3317201316177279 0.4846708556848032 0.39823906375417545
+0.32615164608844593 0.4915567126243364 0.32615164608844593 0.4915567126243365 0.40702359083181777
+0.3221316214555559 0.49567329419950007 0.3221316214555559 0.49567329419950007 0.40837684779340705
+0.3213941992022822 0.49884836079285105 0.3213941992022822 0.49884836079285105 0.40904804707008674
+0.3256891532370679 0.4944796384810833 0.3256891532370679 0.4944796384810833 0.4095141966776992
+0.3206792624532772 0.5020759773762624 0.3206792624532772 0.5020759773762623 0.40846821590599763
+0.3165519440964079 0.5065612373829115 0.3165519440964079 0.5065612373829115 0.40389691663704635
+0.3160007220703834 0.5098526766667684 0.3160007220703834 0.5098526766667684 0.4005450975387433
+0.32002556537582555 0.5052872139278004 0.32002556537582555 0.5052872139278004 0.4066689553782377
+0.31549009087707597 0.5131883932014445 0.31549009087707597 0.5131883932014444 0.3960231830534655
+0.31155943058726115 0.5180141654154197 0.31155943058726115 0.5180141654154197 0.3863656642244276
+0.31119154236154917 0.5214390488802924 0.31119154236154917 0.5214390488802924 0.3794293704704288
+0.3150343287806637 0.5165371582448555 0.3150343287806637 0.5165371582448555 0.39040905452666896
+0.31088538077811695 0.5248792592614857 0.31088538077811695 0.5248792592614856 0.3715423058037945
+0.3071975816456228 0.5299949111622849 0.3071975816456228 0.5299949111622849 0.35790191582607944
+0.30701757238149185 0.5335456819067523 0.30701757238149185 0.5335456819067524 0.34809118015702273
+0.31064039211461425 0.5283247635996807 0.3106403921146143 0.5283247635996807 0.36279487022068624
+0.30693656585032136 0.5371153426441075 0.30693656585032136 0.5371153426441077 0.33755238278647215
+0.3035734217112174 0.5425414303187669 0.3035734217112174 0.5425414303187669 0.32109783162192396
+0.30352603632303987 0.5461694480017996 0.30352603632303987 0.5461694480017996 0.30946230678991643
+0.3069204642722061 0.540654286630002 0.3069204642722061 0.540654286630002 0.3265145662859981
+0.30346711373585505 0.5498298875393685 0.30346711373585505 0.5498298875393685 0.29741361446368114
+0.3011222645007846 0.5556906433921691 0.30112226450078466 0.5556906433921691 0.27873585889592517
+0.30142686864397494 0.5593465201621219 0.30142686864397494 0.5593465201621219 0.2663888649145703
+0.30393063521621433 0.5534446533129265 0.30393063521621433 0.5534446533129264 0.2850315645204258
+0.30149070809028133 0.5629426431826154 0.30149070809028133 0.5629426431826153 0.2543905591195425
+0.3010020352005696 0.5731550002352634 0.3010020352005696 0.5731550002352633 0.22179242491163256
+0.301326422009594 0.5697457173012581 0.301326422009594 0.5697457173012581 0.23231347679709405
+0.3015106984567758 0.5664887971242761 0.30151069845677586 0.5664887971242761 0.24273693741999838
+0.30117878232320655 0.5766522450265398 0.30117878232320655 0.5766522450265398 0.21105515988058762
+0.3012745128261712 0.5801455738126631 0.3012745128261712 0.5801455738126631 0.20082775581968862
+0.30144370910878965 0.583666419386028 0.30144370910878965 0.583666419386028 0.1909618105570496
+0.3015787875387851 0.5872878174813618 0.30157878753878503 0.5872878174813617 0.18143992289100727
+0.30190670161878563 0.5907980802038555 0.3019067016187856 0.5907980802038555 0.17270209991893457
+0.302886943260986 0.5937255421914045 0.302886943260986 0.5937255421914045 0.16541052380083493
+0.30208618121363434 0.5971941310326122 0.30208618121363434 0.5971941310326122 0.15884702339691634
+0.30291855620136837 0.6012677298798091 0.30291855620136837 0.6012677298798091 0.15087283651462557
+0.3035732258523411 0.6050021766650212 0.3035732258523411 0.6050021766650212 0.14466941711548867
+0.4107301257039666 0.4340928643411156 0.41073012570396655 0.43409286434111566 0.6090092458732387
+0.4126376701215366 0.4380209773257052 0.4126376701215366 0.43802097732570516 0.6341803469022694
+0.4619499373343378 0.3914637493839892 0.4619499373343378 0.39146374938398915 0.4728635382308975
+0.463194843273296 0.38819241562233725 0.463194843273296 0.38819241562233725 0.46834514136403577
+0.46578712418554485 0.38410483771442655 0.46578712418554485 0.38410483771442655 0.4642040138958512
+0.4653339008474683 0.38674992085035026 0.4653339008474683 0.38674992085035026 0.46727852535975656
+0.4682392617697278 0.3804338267716238 0.4682392617697278 0.3804338267716238 0.46042994104130136
+0.4681723709042597 0.3834990989956195 0.4681723709042597 0.3834990989956195 0.46493611643809324
+0.47115119166199865 0.3762822988620288 0.47115119166199865 0.37628229886202874 0.4540006645512618
+0.47078846655461937 0.3792968873027188 0.4707884665546194 0.3792968873027189 0.45947576621080694
+0.4734421540735111 0.3755166750058395 0.4734421540735111 0.3755166750058395 0.45212807624869705
+0.47755652777505647 0.36744556748587215 0.47755652777505647 0.36744556748587215 0.4288747295949822
+0.4762983251621088 0.3705904376434386 0.47629832516210874 0.3705904376434386 0.4386237788401833
+0.4748266137726942 0.3734948094734399 0.4748266137726942 0.3734948094734399 0.44704990696626296
+0.48874188570298593 0.3553837588999873 0.4887418857029859 0.3553837588999873 0.35943174836107467
+0.486383139697462 0.3581148848009358 0.486383139697462 0.35811488480093573 0.37755760260501203
+0.4842726665895155 0.36097017004682275 0.48427266658951545 0.3609701700468228 0.39386319625874805
+0.4811986283407535 0.3674306731657165 0.4811986283407535 0.3674306731657165 0.4219494153307434
+0.4825339472545951 0.3641179106886965 0.48253394725459503 0.3641179106886965 0.4086314505073833
+0.4854152556050228 0.3639000306738068 0.4854152556050228 0.3639000306738068 0.39936229403116374
+0.49321852005802913 0.3525765667529364 0.49321852005802913 0.3525765667529364 0.32947270699221437
+0.495214550919921 0.35083130343684427 0.495214550919921 0.35083130343684427 0.31367891773706447
+0.49782763935676627 0.3495462462913624 0.49782763935676627 0.3495462462913624 0.29548674371965805
+0.5006464958263128 0.3491161589665037 0.5006464958263129 0.3491161589665037 0.27831763977229707
+0.492578383977015 0.35565837127832733 0.492578383977015 0.3556583712783273 0.3427647833551694
+0.5084413282652686 0.34137877603262884 0.5084413282652686 0.34137877603262884 0.2127240010338903
+0.5065770621391207 0.34379904486333407 0.5065770621391207 0.34379904486333407 0.2291487090943453
+0.5048967451365178 0.346779364879088 0.5048967451365178 0.346779364879088 0.247113178827147
+0.5034163018575838 0.34945689845726774 0.5034163018575838 0.34945689845726774 0.26361158376361976
+0.5195081457819003 0.33470789960862857 0.5195081457819003 0.33470789960862857 0.16037703273110873
+0.5167462502348806 0.33711522817600004 0.5167462502348806 0.3371152281760001 0.16965635013655644
+0.5143047098889815 0.3397908432897172 0.5143047098889815 0.3397908432897172 0.18299792591145672
+0.512009454974779 0.34238008746215126 0.512009454974779 0.34238008746215126 0.19851411452001133
+0.5329222701220643 0.3299209985189355 0.5329222701220643 0.3299209985189355 0.19653583551104467
+0.5279196434964579 0.3312694919260995 0.5279196434964578 0.3312694919260995 0.17079081075303734
+0.5306024158827569 0.3315366551831681 0.5306024158827569 0.3315366551831681 0.18545751741367192
+0.5256291229115364 0.3336886052618426 0.5256291229115364 0.3336886052618426 0.16677680762709104
+0.5230396170759719 0.336181815037161 0.5230396170759719 0.336181815037161 0.16576356451531407
+0.5465273967337259 0.32591114985296676 0.546527396733726 0.32591114985296676 0.2949613757557032
+0.5408149863155208 0.3267312003536768 0.5408149863155208 0.3267312003536768 0.24899126428172788
+0.543832576767802 0.32809893858348116 0.543832576767802 0.32809893858348116 0.277848792350837
+0.5382394876336026 0.3290344044509503 0.5382394876336026 0.3290344044509503 0.23378376943870086
+0.5356937193371706 0.3312686085948666 0.5356937193371706 0.3312686085948666 0.2193832688432558
+0.5552774210895529 0.3230551444782686 0.5552774210895529 0.3230551444782686 0.36095085331477345
+0.5523806955477444 0.32529723175177605 0.5523806955477443 0.325297231751776 0.3435263710742164
+0.5495577575377146 0.3274482418196349 0.5495577575377145 0.3274482418196349 0.32568026662361077
+0.5835298858316913 0.3201106737568484 0.5835298858316912 0.3201106737568484 0.5537238978619379
+0.5584034383028209 0.3246279439192637 0.5584034383028209 0.3246279439192637 0.39239597090896555
+0.5801213292977997 0.321426442197915 0.5801213292977997 0.321426442197915 0.539061907728878
+0.5614396326135257 0.3263039196527461 0.5614396326135257 0.32630391965274613 0.42337906730340097
+0.5645694106009597 0.3248048353734169 0.5645694106009597 0.3248048353734169 0.4429073494681834
+0.5671160103715384 0.3237573459315647 0.5671160103715384 0.3237573459315647 0.4585828123771464
+0.5696483384901372 0.3242893685550485 0.5696483384901372 0.3242893685550485 0.47981413468886397
+0.5768910445208105 0.3227412269365543 0.5768910445208105 0.3227412269365543 0.5240960476482824
+0.5732728302270206 0.3245137445201205 0.5732728302270206 0.32451374452012044 0.5069883111709994
+0.5933417335548902 0.3197642063933673 0.5933417335548902 0.3197642063933673 0.6024280347159
+0.5969012594841092 0.3183924180707903 0.5969012594841092 0.3183924180707903 0.6119518980585323
+0.5961546718773045 0.322094909028262 0.5961546718773044 0.32209490902826193 0.6244488668840708
+0.5898279096077863 0.3211381527764553 0.5898279096077862 0.32113815277645535 0.5916774010478322
+0.586363260175128 0.3225223869687435 0.586363260175128 0.3225223869687435 0.579727966314421
+0.46568128485427196 0.3945125975167998 0.4656812848542719 0.3945125975167998 0.47620378694579896
+0.4691695005167247 0.397446842351542 0.46916950051672474 0.397446842351542 0.4810471219571096
+0.6453642273232864 0.27583165397597953 0.6453642273232864 0.27583165397597953 0.597084812104376
+0.6417729604709934 0.276692762504534 0.6417729604709934 0.27669276250453395 0.5933381244157337
+0.6382178826796004 0.2775785218695193 0.6382178826796004 0.2775785218695193 0.5891036140872427
+0.6347247842709849 0.27849153994002845 0.6347247842709849 0.27849153994002845 0.5844647400263235
+0.6312815855641558 0.27943779699857635 0.6312815855641558 0.27943779699857635 0.5794513747388116
+0.6245862437267846 0.28149335365731293 0.6245862437267845 0.28149335365731293 0.5687289983226044
+0.6279023512671291 0.28043724612702786 0.627902351267129 0.28043724612702786 0.5741873992681454
+0.6148413093732028 0.2850884778548594 0.6148413093732028 0.2850884778548594 0.5513805767134966
+0.6213059664041449 0.28266615682733814 0.6213059664041448 0.28266615682733814 0.5632651238738413
+0.6181308880268876 0.2839084435913737 0.6181308880268875 0.2839084435913737 0.557825634924619
+0.6105528553413879 0.2898613581041248 0.610552855341388 0.2898613581041248 0.5529876412753691
+0.6063099321316966 0.29461378496743423 0.6063099321316966 0.29461378496743423 0.5548355167121154
+0.597648480691013 0.314679816081718 0.5976484806910128 0.3146798160817181 0.5996294812832637
+0.5983409278460818 0.31093849048705013 0.598340927846082 0.3109384904870502 0.5871973720312272
+0.5984652452793366 0.307384644057769 0.5984652452793365 0.307384644057769 0.5733539494503433
+0.6008196662444131 0.3056248303867488 0.6008196662444131 0.3056248303867488 0.575645139962806
+0.601733079268225 0.302809704873236 0.6017330792682251 0.30280970487323605 0.5683072021149881
+0.6023344124638362 0.2993255963504103 0.6023344124638362 0.2993255963504103 0.5574228544321965
+0.6055183270984662 0.29835077319233033 0.6055183270984662 0.29835077319233033 0.5655714957705283
+0.6097017929990317 0.2936003092863198 0.6097017929990317 0.2936003092863198 0.5629698971928948
+0.6139953790670544 0.28881794481204986 0.6139953790670544 0.28881794481204986 0.5607132219388778
+0.6489953042933276 0.27501525689013784 0.6489953042933276 0.27501525689013784 0.6003629707931525
+0.6526633180317736 0.27424111894347275 0.6526633180317737 0.27424111894347275 0.6031203785893015
+0.6563402598374523 0.2735522899005456 0.6563402598374523 0.2735522899005456 0.6053804720605985
+0.660003271900449 0.27295270599876575 0.660003271900449 0.27295270599876575 0.6071232305470534
+0.6005207133854481 0.31701573212332174 0.6005207133854481 0.31701573212332174 0.6203259409436112
+0.5997186933874875 0.32073214019060814 0.5997186933874875 0.3207321401906081 0.6326638078147148
+0.6718675501637588 0.268096882602853 0.6718675501637588 0.26809688260285297 0.6028276403771465
+0.6635918946165354 0.27240889697887616 0.6635918946165354 0.2724088969788761 0.6082588908815302
+0.6670700846569463 0.27189868613649504 0.6670700846569463 0.271898686136495 0.6087680167438217
+0.670196324611041 0.27142458872460556 0.670196324611041 0.27142458872460556 0.6086991998881253
+0.6992033370019293 0.24035195741782048 0.6992033370019293 0.24035195741782048 0.5496907053051258
+0.702797556698665 0.24017850251762418 0.702797556698665 0.24017850251762418 0.5482900210605921
+0.6938428015404069 0.24371176218722854 0.6938428015404069 0.24371176218722854 0.5560852864468232
+0.6920316922450849 0.24700478388121064 0.6920316922450849 0.24700478388121064 0.5617999856715481
+0.6866659327579759 0.25054198163389635 0.6866659327579759 0.25054198163389635 0.569315010336303
+0.6850122692390168 0.25397902984195114 0.6850122692390168 0.25397902984195114 0.5758023761396335
+0.6799770946893248 0.2575690424838763 0.6799770946893248 0.2575690424838763 0.5832142973104196
+0.6786416636115478 0.2607731289477166 0.6786416636115478 0.2607731289477166 0.5892641349181952
+0.6740961465600982 0.26508097002556963 0.6740961465600981 0.26508097002556963 0.5974924243545844
+0.6771138173356189 0.2636406838592928 0.6771138173356189 0.2636406838592928 0.5946335581575672
+0.6833874252630192 0.2573690610562368 0.6833874252630192 0.25736906105623675 0.5822983926152142
+0.690277264363635 0.2504024356164652 0.690277264363635 0.2504024356164652 0.5679897624023021
+0.697470651683917 0.2436510263300171 0.697470651683917 0.2436510263300171 0.5548189104656617
+0.6747914054833579 0.2685058533698724 0.6747914054833579 0.2685058533698724 0.603630254847331
+0.7083171759767183 0.23679878975044535 0.7083171759767183 0.23679878975044535 0.542788516894216
+0.7121068610676867 0.23670562267734505 0.7121068610676867 0.23670562267734505 0.5415320824462371
+0.7064765121822344 0.24002799674045328 0.7064765121822344 0.24002799674045328 0.5467630817206778
+0.7157550391907612 0.23651578536146717 0.7157550391907613 0.2365157853614672 0.5402430975798181
+0.7322078197255125 0.21018840106246403 0.7322078197255125 0.21018840106246403 0.5298505965250127
+0.7301109380649061 0.21355405230692046 0.7301109380649061 0.21355405230692046 0.5304869647751403
+0.7280146486438265 0.21689686574002717 0.7280146486438265 0.21689686574002717 0.5310779734647798
+0.7175651201097257 0.23355098859382584 0.7175651201097257 0.23355098859382584 0.5378383283476965
+0.718926458216951 0.23011237986391642 0.7189264582169511 0.23011237986391642 0.535700925121168
+0.7259111063319436 0.2202110288126259 0.7259111063319436 0.22021102881262591 0.5317526014277436
+0.7237706984975237 0.2234960919626834 0.7237706984975237 0.2234960919626834 0.5326370637539459
+0.7215340309491111 0.22675597400269762 0.7215340309491111 0.22675597400269762 0.5338697205092154
+0.738490686167724 0.2068109129222909 0.738490686167724 0.2068109129222909 0.5302498085562092
+0.7363941810335238 0.21019512622610903 0.7363941810335238 0.21019512622610903 0.5310347806248222
+0.7447695494086163 0.20342279834071006 0.7447695494086163 0.20342279834071006 0.5300057534609794
+0.7426761279700823 0.206812199244391 0.7426761279700823 0.206812199244391 0.5312233271906989
+0.7510460208665494 0.200032611571724 0.7510460208665494 0.200032611571724 0.5287384482553895
+0.7489538436285258 0.20342291912969204 0.7489538436285258 0.20342291912969204 0.5306087517676308
+0.7573221757322073 0.19664223111979862 0.7573221757322073 0.19664223111979862 0.5261919577901791
+0.7552301241767071 0.2000326135117568 0.7552301241767071 0.2000326135117568 0.5288458128656338
+0.7635983505675416 0.19325186249690482 0.7635983505675416 0.19325186249690482 0.5222611420016031
+0.7615062867483537 0.1966422375430763 0.7615062867483537 0.1966422375430763 0.5257287539513528
+0.7719668997711516 0.18647121671041253 0.7719668997711516 0.18647121671041253 0.5122965942173995
+0.7698747867997683 0.18986160342910965 0.7698747867997683 0.18986160342910965 0.5169947368288069
+0.7677826131578299 0.19325194577145077 0.7677826131578299 0.19325194577145077 0.5212084263712676
+0.7782448308229627 0.1830803852785905 0.7782448308229627 0.1830803852785905 0.505414497764246
+0.7761529384664095 0.18647075230984786 0.7761529384664095 0.18647075230984786 0.5105739400612167
+0.7845232930097629 0.1796893622132886 0.7845232930097629 0.1796893622132886 0.49788236795156154
+0.7824333809795334 0.1830787154704964 0.7824333809795334 0.1830787154704964 0.5032748720995358
+0.7908008942055204 0.17629802019213006 0.7908008942055204 0.17629802019213006 0.4900197681288076
+0.788712658998096 0.17968656211558987 0.788712658998096 0.17968656211558987 0.4954201107780271
+0.7970798205320785 0.17290566821039358 0.7970798205320785 0.17290566821039358 0.48209383150503243
+0.7949915167277251 0.17629315784305452 0.7949915167277251 0.17629315784305452 0.4873134769026377
+0.8033640260340537 0.16951037750290687 0.8033640260340537 0.16951037750290687 0.47426967378463264
+0.8012720078285754 0.17289937137246905 0.8012720078285754 0.17289937137246905 0.479191633561407
+0.8096468624012392 0.16609824119388752 0.8096468624012392 0.16609824119388752 0.46658750589970704
+0.8075560159648787 0.16948780468547656 0.8075560159648788 0.16948780468547656 0.4711647250090724
+0.8138393112055816 0.16607443096436095 0.8138393112055816 0.16607443096436095 0.46325720093583483
+0.8159326426064234 0.1626941963019388 0.8159326426064234 0.1626941963019388 0.4589908090592441
+0.820142100200537 0.16267753467212984 0.820142100200537 0.16267753467212984 0.455361351094227
+0.8222167016194089 0.1593111581465871 0.8222167016194089 0.1593111581465871 0.451323852470847
+0.8242952982634548 0.15593626553281376 0.8242952982634549 0.15593626553281378 0.44746594092098185
+0.830578012258843 0.1525424001466656 0.830578012258843 0.15254240014666556 0.4395319730139475
+0.8284913428954347 0.15593831712233705 0.8284913428954347 0.15593831712233705 0.44337790887123013
+0.8368638823068769 0.14908961606764645 0.8368638823068769 0.14908961606764645 0.4310334985907412
+0.8347812019480189 0.15247802386363438 0.8347812019480189 0.15247802386363438 0.43493581288947475
+0.8410160675481708 0.1490768081497332 0.8410160675481709 0.1490768081497332 0.42606775326759866
+0.8431015673073512 0.14567806251163704 0.8431015673073512 0.14567806251163704 0.4220934512859777
+0.8492884897286199 0.14220984023805672 0.8492884897286199 0.14220984023805672 0.41295720019007126
+0.8472253395891789 0.14558493421284954 0.8472253395891789 0.14558493421284954 0.4168439103695061
+0.8555299728067784 0.13884960647397607 0.8555299728067783 0.13884960647397607 0.4039440895860889
+0.8533281209907528 0.14215365742642505 0.8533281209907528 0.14215365742642505 0.4077303203810491
+0.8596741367572382 0.13864781369761248 0.8596741367572384 0.13864781369761248 0.3988383045872548
+0.8616850273034773 0.13516997782168086 0.8616850273034773 0.13516997782168086 0.39584156949635124
+0.865074329155709 0.13482170427836668 0.865074329155709 0.13482170427836668 0.3920076289529361
+0.8678948453667703 0.13213502753968065 0.8678948453667702 0.13213502753968065 0.3894107930920118
+0.8717347632183622 0.1311244124611598 0.8717347632183621 0.1311244124611598 0.3861186868920586
+0.8743116652635639 0.12809689535256877 0.8743116652635639 0.12809689535256877 0.38540565733983817
+0.8780788756386855 0.12620333089583596 0.8780788756386855 0.12620333089583594 0.3844202729977743
+0.8814700274058613 0.12426862524022513 0.8814700274058612 0.12426862524022513 0.3846490569141794
+0.8846327512601909 0.12224357046862681 0.8846327512601909 0.12224357046862681 0.386127925491254
+0.8877717792786072 0.1197663930164752 0.8877717792786072 0.1197663930164752 0.38912385401579486
+0.8912324651852175 0.11741498210816094 0.8912324651852174 0.11741498210816094 0.39319367277692535
+0.8947987329048687 0.11527625228321854 0.8947987329048687 0.11527625228321854 0.39802049461943595
+0.8982376522445361 0.11317034678300703 0.898237652244536 0.11317034678300701 0.4035340723641972
+0.9016436284331786 0.11098837031530645 0.9016436284331785 0.11098837031530646 0.40979128674329085
+0.9050488287131265 0.10888631589852647 0.9050488287131265 0.10888631589852647 0.4162841764455056
+0.9084639543975349 0.1067714063441742 0.9084639543975349 0.10677140634417422 0.42298164266454724
+0.9118561891422506 0.10465918491025127 0.9118561891422506 0.10465918491025127 0.42958993032060383
+0.9152371040005339 0.10253901684659228 0.9152371040005339 0.10253901684659228 0.435915974152318
+0.9186308009159454 0.10041841004180285 0.9186308009159454 0.10041841004180285 0.44174800645030743
+0.9220211842111143 0.09832635983259774 0.9220211842111145 0.09832635983259774 0.4468216041672237
+0.9254115675062833 0.09623430962339263 0.9254115675062833 0.09623430962339263 0.45101982063976237
+0.9288019508014522 0.09414225941418752 0.9288019508014521 0.09414225941418752 0.4541954126336459
+0.9321923340966212 0.09205020920498241 0.9321923340966212 0.09205020920498241 0.45622891862541354
+0.9355827173917901 0.0899581589957773 0.9355827173917902 0.0899581589957773 0.45702672793468374
+0.9389731606259022 0.08786727808165269 0.9389731606259023 0.08786727808165269 0.45652271939045835
+0.9423633148112097 0.08577621828938807 0.9423633148112097 0.08577621828938807 0.45468899479491315
+0.9457535778757395 0.08368265071412188 0.9457535778757397 0.08368265071412188 0.45152901245116167
+0.9491441117166524 0.08159022306430658 0.9491441117166524 0.08159022306430658 0.44707258427080815
+0.9525346338676348 0.07949790794975176 0.9525346338676348 0.07949790794975176 0.44138599893621083
+0.9559241533247276 0.07740759699020883 0.9559241533247276 0.07740759699020883 0.43456659909562684
+0.9593150734561772 0.07531495666537817 0.9593150734561772 0.07531495666537817 0.4267363799705462
+0.9627056500908376 0.07322261648509634 0.9627056500908376 0.07322261648509633 0.4180516083376546
+0.9660960530519925 0.07113036802954784 0.9660960530519925 0.07113036802954785 0.40869105509658127
+0.9694865503434795 0.06903765690372621 0.9694865503434794 0.06903765690372621 0.39885560400246073
+0.9728769318690125 0.06694562257582415 0.9728769318690125 0.06694562257582415 0.388767116311886
+0.9762673046291604 0.06485371962330298 0.9762673046291604 0.06485371962330298 0.3786593614106866
+0.9796577179011035 0.06276156060402167 0.9796577179011035 0.06276156060402167 0.3687726292668339
+0.9830480954445492 0.06066947778148269 0.9830480954445492 0.06066947778148269 0.3593464900801548
+0.9864384668193242 0.05857740585770066 0.9864384668193242 0.05857740585770066 0.350608453768745
+0.9898288501144932 0.05648535564849555 0.9898288501144933 0.05648535564849555 0.3427635060760354
+0.9932192334096621 0.05439330543929044 0.9932192334096621 0.05439330543929044 0.33598233756476953
+0.05857740585774054 0.9932192334096622 0.05857740585774054 0.9932192334096622 0.08122467772158336
+0.06066945606694557 0.9898288501144935 0.06066945606694557 0.9898288501144935 0.08314429396346139
+0.06276150627615061 0.9864384668193246 0.06276150627615061 0.9864384668193246 0.08537645563099065
+0.06485355648535569 0.9830480835241554 0.06485355648535569 0.9830480835241554 0.0878468227196111
+0.06694560669456079 0.9796577002289866 0.06694560669456079 0.9796577002289865 0.09047642181063809
+0.06903765690376584 0.9762673169338179 0.06903765690376584 0.9762673169338179 0.09318561847373401
+0.07112970711297091 0.9728769336386489 0.07112970711297091 0.9728769336386488 0.09589719041063845
+0.07322175732217591 0.9694865503434801 0.07322175732217591 0.9694865503434801 0.09853853396430202
+0.07531380753138091 0.9660961670483115 0.07531380753138091 0.9660961670483115 0.10104314882524577
+0.0774058479820737 0.9627057890287375 0.07740584798207371 0.9627057890287375 0.10335157032511355
+0.07949785102513664 0.9593154312322777 0.07949785102513664 0.9593154312322777 0.10541192535939024
+0.08158982690246973 0.955925160355819 0.08158982690246973 0.955925160355819 0.10718022402722625
+0.08368169533637725 0.9525351942606625 0.08368169533637725 0.9525351942606625 0.10862047251052455
+0.08577306687764535 0.9491457448682965 0.08577306687764535 0.9491457448682965 0.10970483627128812
+0.08786377772230443 0.9457564878204415 0.08786377772230443 0.9457564878204415 0.11041376410741653
+0.08995458808372721 0.9423669372584812 0.08995458808372721 0.9423669372584812 0.11073565637671677
+0.09204672067347362 0.9389774366809399 0.09204672067347362 0.9389774366809399 0.1106665697579603
+0.09413996109568878 0.9355880362544825 0.09413996109568878 0.9355880362544825 0.11021028581481916
+0.09623280547944264 0.9321966080430626 0.09623280547944264 0.9321966080430625 0.10937830417422935
+0.09832549989341717 0.9288031851204143 0.09832549989341717 0.9288031851204143 0.10818941151776727
+0.10041825088686893 0.9254117028893127 0.10041825088686894 0.9254117028893126 0.10667209612457791
+0.10250949285961662 0.9220213276680881 0.10250949285961662 0.9220213276680881 0.10486073512354686
+0.10460501634320822 0.9186338049039803 0.10460501634320822 0.9186338049039803 0.10279786097392417
+0.10669724782164201 0.9152486876487536 0.10669724782164201 0.9152486876487537 0.1005324935415378
+0.10878319371464229 0.9118661275861385 0.10878319371464229 0.9118661275861385 0.09811878662028418
+0.11087299408143975 0.9084891426894516 0.11087299408143973 0.9084891426894516 0.09562003715286928
+0.11295887173735521 0.9051055099996245 0.11295887173735521 0.9051055099996245 0.0930912412534017
+0.11504179122864436 0.901709116093391 0.11504179122864434 0.9017091160933911 0.09059332582213671
+0.1170836784204511 0.8983194727510517 0.1170836784204511 0.8983194727510516 0.08820356103601619
+0.1190812432894394 0.8949424116016295 0.1190812432894394 0.8949424116016295 0.08598527273981695
+0.12103148659107366 0.8916489653846924 0.12103148659107366 0.8916489653846923 0.0840553811039716
+0.12331583739353197 0.8882157032982078 0.12331583739353195 0.8882157032982078 0.08247457455778345
+0.12555803150028477 0.8847816977385444 0.12555803150028477 0.8847816977385444 0.08126717264070348
+0.12769258032961892 0.8813672763820755 0.12769258032961892 0.8813672763820755 0.08043255452827937
+0.12982616664112104 0.8779714705999409 0.12982616664112104 0.8779714705999409 0.0800425066890386
+0.1319533738526347 0.874590380168025 0.1319533738526347 0.8745903801680249 0.08008849540939965
+0.13398908145197364 0.8711663339956354 0.13398908145197364 0.8711663339956354 0.08044186559997259
+0.1361685599152977 0.8677338749196685 0.13616855991529772 0.8677338749196685 0.08131273093708324
+0.13836845533373757 0.8643841732910679 0.13836845533373757 0.8643841732910679 0.08256760961053551
+0.14042918492108716 0.861152217599578 0.14042918492108716 0.861152217599578 0.0839958505399682
+0.14218976581822934 0.8574807812103631 0.14218976581822937 0.857480781210363 0.08532249746930051
+0.14477064002785645 0.8540418894855748 0.14477064002785645 0.8540418894855747 0.08757582365661308
+0.14698907226906252 0.8508213998500508 0.14698907226906252 0.8508213998500508 0.08961682908075207
+0.14912643090896321 0.8449213341901565 0.14912643090896324 0.8449213341901566 0.0918740266689577
+0.14894890350449486 0.8482671833670328 0.14894890350449486 0.8482671833670328 0.09143091651582662
+0.1524860352215446 0.8388473279686434 0.1524860352215446 0.8388473279686434 0.09522402164189897
+0.15241055248688773 0.8428799137090597 0.15241055248688773 0.8428799137090596 0.09472228999354322
+0.15600943061734965 0.8328403838359244 0.15600943061734965 0.8328403838359243 0.09848401318997067
+0.15586844231223837 0.8369125343822206 0.15586844231223837 0.8369125343822205 0.09793614261121762
+0.15978468937796758 0.8309824626969691 0.15978468937796755 0.8309824626969692 0.10120003446064864
+0.16256418432679579 0.8241983423536166 0.16256418432679579 0.8241983423536166 0.10335846701669271
+0.16246896637091496 0.8280540034113238 0.16246896637091493 0.8280540034113238 0.10307927709623889
+0.1660580458804997 0.8180076538221499 0.1660580458804997 0.8180076538221499 0.105420600803052
+0.16600354528193145 0.8220810136226921 0.16600354528193148 0.8220810136226921 0.10536211728942048
+0.1694692207939924 0.8159602125802037 0.1694692207939924 0.8159602125802037 0.10708120950804927
+0.1694947139439571 0.8117398516103558 0.1694947139439571 0.8117398516103558 0.1068695954602361
+0.17287909868710757 0.8054522778026557 0.17287909868710757 0.8054522778026557 0.10767810736859058
+0.17286925830201985 0.80963036836314 0.17286925830201985 0.80963036836314 0.10817946710433503
+0.17626923885221474 0.8033792615856055 0.1762692388522147 0.8033792615856054 0.10866349542962624
+0.1762826842256957 0.7991978520514723 0.1762826842256957 0.7991978520514723 0.10787334934114386
+0.17969283452747262 0.792914346556549 0.17969283452747262 0.792914346556549 0.10745720233571911
+0.17968923804581335 0.7971242302462227 0.17968923804581335 0.7971242302462227 0.10853074683219936
+0.18308460509227775 0.786618172919118 0.18308460509227775 0.786618172919118 0.10646666653749691
+0.18308837513999457 0.7908129853087331 0.18308837513999457 0.7908129853087331 0.10777717863373919
+0.18647310092161926 0.7803345346621068 0.18647310092161926 0.7803345346621068 0.10498433796640376
+0.18647590249116397 0.7845182884313145 0.18647590249116397 0.7845182884313145 0.10647350111186384
+0.189862276848234 0.7740571173926204 0.189862276848234 0.7740571173926204 0.1031088258688313
+0.1898631584202295 0.7782399059430164 0.1898631584202295 0.7782399059430164 0.10470777448564306
+0.19325288617106615 0.7719634678477809 0.19325288617106615 0.7719634678477809 0.10259067047522448
+0.1966428787521719 0.7656876845516906 0.1966428787521719 0.7656876845516906 0.10027131590834916
+0.19664401607703655 0.7698680625252025 0.19664401607703655 0.7698680625252025 0.10195415372989443
+0.20003276570324732 0.7594129116010494 0.20003276570324732 0.7594129116010494 0.0979318739298413
+0.20003324113051466 0.7635939294259488 0.20003324113051466 0.7635939294259488 0.09950003042969867
+0.20342299826320143 0.7531380417165465 0.20342299826320143 0.7531380417165465 0.09578228727981464
+0.2034230047984138 0.7573205542898109 0.2034230047984138 0.7573205542898109 0.09712469133796668
+0.20681336606793002 0.7468618997071682 0.20681336606793002 0.7468618997071682 0.09404735544442878
+0.20681336550716445 0.7510458779919265 0.20681336550716445 0.7510458779919266 0.09505767715826917
+0.21020266200114798 0.7405858009050328 0.21020266200114798 0.7405858009050328 0.09294386513720428
+0.2102034712365003 0.7447698246230341 0.21020347123650032 0.7447698246230341 0.09353374615151844
+0.21358335133149495 0.7343080008293951 0.21358335133149495 0.7343080008293951 0.09264917507654026
+0.21358777444036933 0.7384932290267381 0.21358777444036933 0.7384932290267381 0.09276280613303232
+0.21695382503184582 0.7322119550057448 0.21695382503184582 0.7322119550057448 0.09289386716834357
+0.22030390401098754 0.7301145695015773 0.22030390401098754 0.7301145695015773 0.09347271507642303
+0.22362625941338798 0.7280251251241991 0.22362625941338798 0.7280251251241991 0.09440853091055958
+0.2269215012897707 0.7259597367439637 0.2269215012897707 0.7259597367439637 0.09570587067695256
+0.2301854214247819 0.7239464031115466 0.2301854214247819 0.7239464031115466 0.09734764105396702
+0.23339951969922768 0.7220096947641762 0.23339951969922765 0.7220096947641762 0.09927706072352356
+0.23915285799174182 0.7115031017944414 0.23915285799174182 0.7115031017944414 0.10514208104580262
+0.2415922055938562 0.7086993389841131 0.2415922055938562 0.7086993389841131 0.10744051054302571
+0.24302730935101782 0.7026401895630361 0.24302730935101782 0.7026401895630361 0.10998593108263814
+0.244035683086688 0.7060015629785287 0.24403568308668797 0.7060015629785287 0.10975298003787533
+0.2471670788993999 0.6936154528960089 0.2471670788993999 0.6936154528960089 0.11479094958582929
+0.2496913902639529 0.6908199324365839 0.2496913902639529 0.6908199324365839 0.11679003116103868
+0.25222241862917477 0.6879829558174569 0.25222241862917477 0.6879829558174569 0.11864158939296483
+0.26630477421975185 0.6676644623931488 0.2663047742197518 0.6676644623931488 0.12471015533970287
+0.2562677048155538 0.6787533133115885 0.2562677048155538 0.6787533133115885 0.12176496760513462
+0.25878586023473477 0.6759563090023645 0.25878586023473477 0.6759563090023645 0.12285426835362574
+0.2612908425360994 0.6731511736393433 0.2612908425360994 0.6731511736393433 0.12369896941006482
+0.26374895773591933 0.6703540424007572 0.26374895773591933 0.6703540424007572 0.12431346206087805
+0.25473093085902165 0.6851479093107226 0.2547309308590217 0.6851479093107226 0.12028897075363672
+0.25723096066969525 0.6823270394302363 0.25723096066969525 0.6823270394302363 0.12171321091896199
+0.24557862860593127 0.6999401343813759 0.2455786286059313 0.6999401343813759 0.11227486328366552
+0.24815455649184442 0.6972084556717301 0.2481545564918444 0.6972084556717301 0.11451343435523241
+0.236334096162434 0.7206843790020195 0.236334096162434 0.7206843790020195 0.10120514236485038
+0.2379973677949212 0.7178805281268232 0.2379973677949212 0.7178805281268232 0.10285779643024458
+0.2403135026738266 0.7149158597937962 0.2403135026738266 0.7149158597937962 0.10506074244939535
+0.28001993295588284 0.6571372239412818 0.28001993295588284 0.6571372239412819 0.12440297696154708
+0.2774819857411744 0.6599582520446962 0.2774819857411744 0.6599582520446962 0.12482006919969622
+0.2698339865683894 0.6684059799013277 0.2698339865683894 0.6684059799013277 0.1252716388437836
+0.27239501719949444 0.6656068204658405 0.27239501719949444 0.6656068204658405 0.12529481672741413
+0.27494295793484336 0.6627868416723978 0.2749429579348433 0.6627868416723978 0.12513128281302852
+0.2840565780337387 0.6481707157910905 0.2840565780337387 0.6481707157910906 0.12309768360634533
+0.2899435958385694 0.633393802726474 0.2899435958385694 0.633393802726474 0.12391266393548257
+0.29225535849451406 0.630534562493182 0.29225535849451406 0.6305345624931818 0.12444844616073221
+0.29404877744330093 0.6274166877588327 0.29404877744330093 0.6274166877588326 0.12551143841498755
+0.3042749477580133 0.6086878783107735 0.3042749477580133 0.6086878783107735 0.13949129146709485
+0.304697143898626 0.6121924030215465 0.30469714389862596 0.6121924030215465 0.13547421916809368
+0.2965450184816209 0.6202352604030813 0.2965450184816209 0.6202352604030813 0.12960815562506453
+0.3019701799825786 0.6147722515015338 0.3019701799825785 0.6147722515015338 0.1332591091782737
+0.29927491231362996 0.617486644898708 0.29927491231362996 0.6174866448987081 0.13126804008821688
+0.29724245771137603 0.6241537655858135 0.2972424577113761 0.6241537655858135 0.12673391665262182
+0.2866124176385899 0.6454156856604036 0.28661241763858986 0.6454156856604037 0.1227362552675877
+0.28822783644323663 0.639368267407357 0.28822783644323663 0.639368267407357 0.12284099190745269
+0.28915582996205835 0.6426701807410701 0.2891558299620583 0.6426701807410701 0.12249868135876087
+0.2907745685574673 0.6366302497747153 0.29077456855746725 0.6366302497747153 0.12289236412437078
+0.28255689436559606 0.6543257602063192 0.28255689436559606 0.6543257602063192 0.12392783639732306
+0.2850892939853005 0.651526860781646 0.2850892939853005 0.651526860781646 0.12344906177828709
+0.4059906294821653 0.4338040470662586 0.40599062948216524 0.43380404706625864 0.5393241176481999
+0.402312587521377 0.4343780827674901 0.40231258752137705 0.4343780827674902 0.4876913930660857
+0.39776793970708507 0.4358274689719661 0.39776793970708507 0.43582746897196606 0.42681521685450613
+0.40039511827717095 0.436029570290417 0.40039511827717095 0.436029570290417 0.4572825908319086
+0.392890064858201 0.4373320202402429 0.392890064858201 0.4373320202402429 0.3684671192657701
+0.396346326486321 0.43791771471663027 0.396346326486321 0.43791771471663027 0.4011594909868145
+0.39137393177956437 0.43988906655827414 0.39137393177956437 0.43988906655827414 0.3418026927007575
+0.3875005781278516 0.4401960899373526 0.3875005781278516 0.44019608993735254 0.30905579383889686
+0.38467320534037647 0.4421717775805303 0.38467320534037647 0.4421717775805303 0.28176318098102543
+0.3789581474372295 0.44331961436328254 0.3789581474372295 0.4433196143632826 0.2513069063811973
+0.3823980417638837 0.4442329455797449 0.3823980417638837 0.44423294557974485 0.2625874097373673
+0.37685039326535436 0.4464573333752368 0.37685039326535436 0.4464573333752368 0.24021221065148365
+0.3727949444788169 0.4463150323220242 0.37279494447881684 0.44631503232202424 0.23402370179903695
+0.37149834425918093 0.44895895823440074 0.37149834425918093 0.44895895823440074 0.2350936281044797
+0.3645596678023226 0.4517393830183221 0.3645596678023226 0.4517393830183221 0.24538400506637556
+0.36870061138251226 0.4509126417792664 0.36870061138251226 0.4509126417792664 0.23944572220460664
+0.3629031501776912 0.4546023135444324 0.3629031501776912 0.4546023135444324 0.2579534016551857
+0.3580204414745964 0.4582410304344923 0.35802044147459633 0.4582410304344923 0.2810837211003197
+0.36124952832165286 0.4569846523459102 0.36124952832165286 0.4569846523459102 0.27049991444167
+0.3555816405355391 0.46111445023106695 0.35558164053553915 0.46111445023106695 0.29821231053791153
+0.35040217195045587 0.46468511067613383 0.3504021719504559 0.46468511067613383 0.3216034644980488
+0.3540708929617988 0.46415945027699235 0.3540708929617988 0.4641594502769923 0.3150997579303993
+0.34878209144703076 0.46790378310024533 0.34878209144703076 0.46790378310024533 0.3380852909357652
+0.3472152376483859 0.47120786382825375 0.3472152376483859 0.4712078638282538 0.35379221270506594
+0.34346561379547985 0.47204334321406954 0.34346561379547985 0.47204334321406954 0.35907924686614173
+0.34193252577335836 0.4755334654034942 0.34193252577335836 0.4755334654034942 0.37286094892729355
+0.3367447510890785 0.4802858180389138 0.3367447510890785 0.4802858180389138 0.38840311653651427
+0.3405145820842345 0.4790695982249149 0.3405145820842345 0.4790695982249149 0.38495669247620073
+0.3354820460430468 0.4836939891041432 0.3354820460430468 0.4836939891041432 0.3970539891926918
+0.330409472289519 0.4880519753618263 0.330409472289519 0.4880519753618264 0.40411102093409496
+0.3288291669669143 0.4904631611914698 0.3288291669669143 0.4904631611914699 0.40691806336534686
+0.33403400180613785 0.4873322290499551 0.33403400180613785 0.48733222904995516 0.40427257433068275
+0.32911323611740195 0.49314207036199287 0.329113236117402 0.49314207036199287 0.41014859268982734
+0.32489005534938376 0.49767707305159115 0.3248900553493837 0.4976770730515911 0.41072632062256514
+0.3241998620744513 0.5007932004428355 0.3241998620744513 0.5007932004428355 0.4106448335806729
+0.3283803494112617 0.496522351107589 0.32838034941126176 0.49652235110758897 0.41217608385085697
+0.32337995576173384 0.5040492961843408 0.32337995576173384 0.5040492961843408 0.4091842635252645
+0.31948405538313324 0.5085022446639386 0.31948405538313324 0.5085022446639386 0.4037419309913604
+0.3189745872282322 0.5117729214723932 0.3189745872282322 0.5117729214723932 0.39960908922736454
+0.32289465238105436 0.5071629263017104 0.32289465238105436 0.5071629263017104 0.4067353252546873
+0.31849109930946135 0.5150659098690429 0.31849109930946135 0.515065909869043 0.3943225021112009
+0.3146397333242948 0.5199036881235838 0.3146397333242948 0.5199036881235838 0.38375062397408227
+0.31431002388262924 0.5232856350187726 0.31431002388262924 0.5232856350187726 0.37610955105743793
+0.31806410121117595 0.518376465415836 0.31806410121117595 0.518376465415836 0.3879568836749734
+0.31404668960689724 0.5266715656773037 0.31404668960689724 0.5266715656773037 0.3675777439447907
+0.31044726782736937 0.5318075005331037 0.31044726782736937 0.5318075005331037 0.3531698439792665
+0.3103243285418498 0.53529911766251 0.3103243285418498 0.53529911766251 0.34281627068385756
+0.3138346603989078 0.5300951413598866 0.3138346603989078 0.5300951413598866 0.35813310439587803
+0.31026583096020416 0.5388004940189883 0.31026583096020416 0.5388004940189884 0.33181169649722847
+0.3069175150558026 0.5442228339427128 0.3069175150558026 0.5442228339427128 0.3149014813120272
+0.30694187587165717 0.5478057452819789 0.30694187587165717 0.5478057452819788 0.30286550310664384
+0.31025752450524846 0.5423094803373207 0.3102575245052485 0.5423094803373206 0.3202588531831653
+0.3070387250390413 0.5514195323654343 0.3070387250390412 0.5514195323654344 0.2904260626386417
+0.3043897620851829 0.5571464703993927 0.3043897620851829 0.5571464703993927 0.2721298564385432
+0.30463379426104004 0.560782723718463 0.30463379426104004 0.560782723718463 0.25957913464281557
+0.30744611718363696 0.5550038508464408 0.30744611718363696 0.5550038508464407 0.27773326862799935
+0.30468076522035803 0.5644076009790462 0.30468076522035803 0.5644076009790462 0.24730965773086985
+0.30350491693756154 0.5715654587486371 0.30350491693756154 0.5715654587486371 0.22477414453036113
+0.303953210206934 0.5744753144594328 0.303953210206934 0.5744753144594328 0.21540344573789758
+0.30486945304707047 0.5684840708155426 0.3048694530470705 0.5684840708155426 0.23374743155735206
+0.30424571867465533 0.5778747671605365 0.3042457186746553 0.5778747671605365 0.20496729194535693
+0.3048143017960185 0.5883421368513808 0.3048143017960185 0.5883421368513808 0.17638655701139652
+0.3044412644268769 0.5813798219208262 0.30444126442687697 0.5813798219208262 0.19480936191057865
+0.304642087521612 0.5848496985099785 0.304642087521612 0.5848496985099785 0.18530280139936453
+0.30525033474306684 0.5918052916044773 0.30525033474306684 0.5918052916044773 0.1680448271285656
+0.30628048865885693 0.6023745118051479 0.306280488658857 0.6023745118051479 0.1476730934145498
+0.3053982559976725 0.5952955874920106 0.3053982559976725 0.5952955874920106 0.1606376867301047
+0.30572036068759134 0.5987097376163383 0.30572036068759134 0.5987097376163383 0.15402963990311802
+0.30697974635441316 0.606212893456653 0.3069797463544131 0.606212893456653 0.1420470482210131
+0.4080892173594594 0.43784729757052016 0.4080892173594594 0.43784729757052016 0.5585188842029933
+0.410156533651687 0.44168970381800143 0.410156533651687 0.44168970381800143 0.5750833627971746
+0.4664860255214242 0.3899793111428549 0.4664860255214242 0.3899793111428549 0.4720328103978667
+0.4679174663391622 0.38676916968579234 0.46791746633916226 0.3867691696857923 0.4690584106481172
+0.470569189174664 0.3827068808846437 0.470569189174664 0.3827068808846437 0.46522476901748083
+0.4700977487285424 0.3854600898875377 0.4700977487285424 0.3854600898875377 0.46916457641805165
+0.4736515625695976 0.37870434626978244 0.4736515625695975 0.3787043462697825 0.45905870671987753
+0.4730032413964562 0.3820396493237748 0.47300324139645616 0.3820396493237748 0.4656250052083805
+0.47578338975270507 0.37655407556134146 0.47578338975270507 0.37655407556134146 0.4539613434607345
+0.4762519981768595 0.3790963827630277 0.4762519981768595 0.3790963827630277 0.46004190716020077
+0.47979597190094947 0.3707448870415241 0.4797959719009494 0.37074488704152403 0.4344687237882951
+0.4782543017397648 0.3744653722943611 0.47825430173976485 0.37446537229436105 0.4470656699105961
+0.49032138450704954 0.35881605111083564 0.49032138450704954 0.35881605111083564 0.3637613430050241
+0.48318227325074126 0.37076343509059434 0.4831822732507413 0.37076343509059434 0.4283437078664328
+0.488056514739627 0.36207718490540464 0.4880565147396271 0.3620771849054046 0.3841046458820458
+0.48477347028569717 0.36706512318886775 0.48477347028569717 0.36706512318886775 0.4119601145227029
+0.4874396791556793 0.36526976453924226 0.4874396791556793 0.36526976453924226 0.3973170143933413
+0.49547415838427317 0.3539197738956832 0.49547415838427317 0.3539197738956832 0.32227689672340615
+0.4974018375839284 0.3523366092928739 0.4974018375839284 0.3523366092928739 0.30665205298872583
+0.49983016281430737 0.3521041604022245 0.4998301628143073 0.35210416040222453 0.2924633108301154
+0.5020642541682405 0.35147033898119806 0.5020642541682405 0.35147033898119806 0.2777498817711507
+0.4957060870125845 0.35678608555925373 0.49570608701258456 0.35678608555925373 0.3308564720781382
+0.49407883440337746 0.3593360400256203 0.49407883440337746 0.3593360400256203 0.3481778732265491
+0.5078484535164987 0.3474454132941964 0.5078484535164987 0.3474454132941964 0.23300893206834492
+0.509860689771823 0.3448624933907725 0.509860689771823 0.3448624933907725 0.21519795238257253
+0.505913666918953 0.3498547356047326 0.505913666918953 0.3498547356047326 0.25096187168578094
+0.5041610603253698 0.3522756041679598 0.5041610603253698 0.3522756041679598 0.26868831217484757
+0.5204580721526152 0.33858325118535865 0.5204580721526152 0.33858325118535865 0.16912860392165888
+0.5179150462152934 0.3410287386794626 0.5179150462152934 0.3410287386794626 0.17717808027282303
+0.5155251712282432 0.34350849126799304 0.5155251712282433 0.34350849126799304 0.18904952382393303
+0.513255848088389 0.3459831306642269 0.513255848088389 0.3459831306642269 0.20365031490801402
+0.5329669450670936 0.33333424628716646 0.5329669450670936 0.33333424628716646 0.20467411966447815
+0.5293216805667023 0.3346261220162632 0.5293216805667021 0.33462612201626324 0.18519185576352284
+0.5264760079464168 0.3375619327171129 0.5264760079464167 0.3375619327171129 0.1787932365289552
+0.5240241794923775 0.34007506093792017 0.5240241794923773 0.34007506093792017 0.17719140569369687
+0.546803628903861 0.3295569085472189 0.546803628903861 0.3295569085472189 0.3077757053959815
+0.5412047505719942 0.3303559983779657 0.5412047505719942 0.33035599837796564 0.26145593212932217
+0.544168293260007 0.3315896599785421 0.544168293260007 0.3315896599785421 0.29043040122517866
+0.5386588536177519 0.3327194529493346 0.5386588536177519 0.3327194529493345 0.2463327166339859
+0.5360438362770128 0.33487451450941225 0.5360438362770128 0.33487451450941225 0.23086712375831975
+0.5554933733721985 0.3268910291406078 0.5554933733721984 0.3268910291406078 0.3754718686327663
+0.5526167864347423 0.3290417510923376 0.5526167864347423 0.3290417510923376 0.35755150194541824
+0.5497578430356616 0.3311514166654243 0.5497578430356614 0.3311514166654243 0.33891677414424476
+0.5829398409582219 0.3238706885803664 0.5829398409582219 0.3238706885803664 0.5663281322385432
+0.5585641874802575 0.3285499299283996 0.5585641874802575 0.3285499299283996 0.4075365767988513
+0.5611740532029077 0.3294361803303848 0.5611740532029077 0.3294361803303848 0.43274472837993166
+0.5795728697516362 0.32527302569228334 0.5795728697516362 0.32527302569228334 0.551970534644474
+0.5638461216627558 0.3283095227280344 0.5638461216627558 0.3283095227280344 0.4505514312134404
+0.5673809210311962 0.32696334082756745 0.5673809210311962 0.32696334082756745 0.47337085764404196
+0.5704712726475343 0.32694556896761107 0.5704712726475343 0.32694556896761107 0.49659499942810675
+0.576189061098979 0.32678510167656183 0.576189061098979 0.3267851016765619 0.5364357621737494
+0.5729013405467681 0.32857816715799487 0.5729013405467681 0.32857816715799487 0.521197423783514
+0.5989178770447537 0.3244289106520309 0.5989178770447537 0.3244289106520309 0.6451642902679896
+0.5926408936658364 0.32346351540007906 0.5926408936658364 0.32346351540007906 0.6150266964618072
+0.5954028082760937 0.325786633509723 0.5954028082760937 0.325786633509723 0.6370860366485186
+0.5891627016549085 0.32484382759538055 0.5891627016549085 0.3248438275953806 0.6043243557987973
+0.5857332206056192 0.32623984750233787 0.5857332206056193 0.32623984750233787 0.5923982779621304
+0.4700895037919053 0.3931841842254765 0.4700895037919053 0.39318418422547646 0.4791084819733338
+0.47344516226581346 0.3962602986408058 0.4734451622658135 0.39626029864080575 0.48928176346464586
+0.6476036220826674 0.2785754354687452 0.6476036220826674 0.27857543546874514 0.6063359525893678
+0.6440246037937896 0.27938564367038815 0.6440246037937896 0.27938564367038815 0.6031596042823959
+0.6404805243639822 0.2802358511740958 0.6404805243639822 0.28023585117409583 0.5995374364330724
+0.6369794858087878 0.2811272024810468 0.6369794858087879 0.2811272024810468 0.5955181367139756
+0.6335383750200744 0.2820366909415925 0.6335383750200744 0.2820366909415925 0.5911042729130327
+0.6236152571700302 0.2849151802480486 0.6236152571700302 0.2849151802480487 0.5760173506367919
+0.6301469100537783 0.2829675535618964 0.6301469100537783 0.28296755356189646 0.5863158520876097
+0.6268284988103592 0.2839342945000088 0.6268284988103591 0.2839342945000088 0.5812756853506346
+0.6174242879257877 0.2876267230885349 0.6174242879257877 0.2876267230885348 0.5672811491692306
+0.6205538014343264 0.28640486322286607 0.6205538014343263 0.2864048632228661 0.5723890839894096
+0.6131311619293847 0.2925938213585907 0.6131311619293847 0.29259382135859063 0.5705451256069862
+0.6088518197589178 0.2973384124864787 0.6088518197589178 0.2973384124864787 0.5733526031210735
+0.601301348112877 0.31308800118269103 0.601301348112877 0.31308800118269103 0.6073086256879573
+0.6019170970809546 0.3089189435763463 0.6019170970809545 0.30891894357634625 0.5930532957468299
+0.60369707179154 0.3056492002496942 0.6036970717915401 0.3056492002496942 0.5865998770752675
+0.60469363087971 0.30201296052224363 0.60469363087971 0.30201296052224363 0.5762662369468052
+0.6079705025671222 0.3010449274788462 0.6079705025671222 0.3010449274788462 0.5838960263391367
+0.6040064533592441 0.315715239200652 0.6040064533592441 0.315715239200652 0.6272227781094836
+0.6122539673896178 0.2963401349521651 0.6122539673896178 0.2963401349521651 0.5806655311894504
+0.6165774172733063 0.2914001389557422 0.6165774172733062 0.2914001389557422 0.5769092889887224
+0.6230922771154872 0.2877157140292808 0.6230922771154872 0.2877157140292808 0.5829002802778825
+0.65121626434868 0.27780772496900297 0.65121626434868 0.27780772496900297 0.6090373856534753
+0.6548567101304362 0.2771037682995579 0.6548567101304362 0.2771037682995579 0.61126616291225
+0.658518156295758 0.2764686119875011 0.658518156295758 0.2764686119875011 0.6129986369350271
+0.6621872131181585 0.27587958802041646 0.6621872131181585 0.2758795880204165 0.6141637724251933
+0.6032000408869514 0.319373036068361 0.6032000408869514 0.3193730360683609 0.6392714798388536
+0.6024386238919393 0.32307469006262934 0.6024386238919393 0.32307469006262934 0.6518772096304596
+0.6016385901478907 0.3267872096820347 0.6016385901478908 0.32678720968203473 0.6646339236121896
+0.6734614927406297 0.27113007976712644 0.6734614927406297 0.2711300797671265 0.608329582356406
+0.6658124384079764 0.2753131249542959 0.6658124384079764 0.2753131249542959 0.6146849943410335
+0.6693468950551364 0.27474892262423856 0.6693468950551366 0.27474892262423856 0.6145110562207257
+0.6720901938166162 0.2736436653037224 0.6720901938166162 0.2736436653037224 0.6127735427538649
+0.7010796163068344 0.24350605741597575 0.7010796163068344 0.24350605741597575 0.5531859122826717
+0.7047098686014924 0.24333564871485738 0.7047098686014924 0.24333564871485738 0.551324956699065
+0.6956837977205295 0.24696547685643672 0.6956837977205295 0.2469654768564367 0.560389758946465
+0.6939063319873968 0.2503095164837279 0.6939063319873968 0.2503095164837279 0.5663543192832862
+0.6885631823526218 0.25381048620011964 0.6885631823526218 0.25381048620011964 0.5744066178080894
+0.6868739158560634 0.25719643976179946 0.6868739158560634 0.25719643976179946 0.5809183503634666
+0.6817701272032848 0.26073019690702176 0.6817701272032847 0.26073019690702176 0.5887758313879295
+0.6799826598114548 0.2640076842304497 0.6799826598114548 0.2640076842304497 0.5950986044295541
+0.6777863932743564 0.26705579273338703 0.6777863932743564 0.26705579273338703 0.6010047751211017
+0.6851843662000751 0.2605486765158703 0.6851843662000751 0.2605486765158704 0.5874359332506919
+0.692152271229284 0.2536828005469925 0.692152271229284 0.2536828005469925 0.5726425479215739
+0.69932631388405 0.24684172733167928 0.69932631388405 0.24684172733167928 0.5585457793658238
+0.6768018341455637 0.2706583180296585 0.6768018341455636 0.2706583180296585 0.6075263240535446
+0.710178571924205 0.23986117142467345 0.710178571924205 0.23986117142467345 0.5451095063384916
+0.7138521869639629 0.23966177583331466 0.7138521869639628 0.23966177583331463 0.5433962926248933
+0.7083475115430696 0.24311135840041545 0.7083475115430696 0.24311135840041545 0.5492763463675113
+0.7193361556917743 0.23625682460166517 0.7193361556917743 0.23625682460166517 0.5389861524858234
+0.717489478114699 0.23940767427535295 0.717489478114699 0.23940767427535295 0.5416731765235926
+0.734296954185504 0.2135701362492334 0.734296954185504 0.2135701362492334 0.5315758972505603
+0.7321989765042631 0.21692594072884894 0.7321989765042631 0.21692594072884894 0.5319994724512332
+0.7300956681204807 0.22025618485680987 0.7300956681204807 0.22025618485680987 0.5324390292178002
+0.7216842418892301 0.2331698916686501 0.7216842418892301 0.23316989166865013 0.5367369739991391
+0.7225459426723386 0.2362070300481608 0.7225459426723386 0.23620703004816077 0.5378404162184041
+0.7234838436550162 0.23012010271736513 0.7234838436550161 0.23012010271736513 0.5351673596535486
+0.7279605886848214 0.22356453801662987 0.7279605886848214 0.22356453801662987 0.5330283211039982
+0.7257690110961871 0.2268609860894014 0.7257690110961871 0.2268609860894014 0.5339020250051161
+0.7405810691929319 0.21019964207409034 0.7405810691929319 0.21019964207409034 0.5320224511937873
+0.7384848042007698 0.2135812510593663 0.7384848042007698 0.2135812510593663 0.5325084818093164
+0.7468611302756831 0.2068128792389122 0.7468611302756831 0.2068128792389122 0.531933834640549
+0.7447674019010515 0.21020199910623574 0.7447674019010515 0.21020199910623574 0.5327856638322577
+0.7531380292904082 0.20342297040302124 0.7531380292904082 0.20342297040302124 0.5308880088606845
+0.7510457071678145 0.20681319130077302 0.7510457071678145 0.206813191300773 0.5323509174678605
+0.7594142287931528 0.20003261612026677 0.7594142287931528 0.20003261612026677 0.5285829036798727
+0.7573221715349344 0.2034229953611786 0.7573221715349344 0.2034229953611786 0.5308147742814978
+0.7656904072922098 0.19664224974108982 0.7656904072922098 0.19664224974108982 0.5248678020845775
+0.7635986788825191 0.20003257749107126 0.7635986788825191 0.20003257749107126 0.5279257814564166
+0.7740605944052451 0.18986124345578537 0.7740605944052451 0.18986124345578537 0.5153843706215008
+0.7719682138411992 0.19325166342638136 0.7719682138411992 0.19325166342638136 0.5197496083980465
+0.7698763461188811 0.19664180602440928 0.7698763461188811 0.19664180602440928 0.5235910011221426
+0.7803422701891822 0.1864683258478456 0.7803422701891822 0.1864683258478456 0.5084752004917706
+0.778249787737667 0.18985862961814395 0.778249787737667 0.18985862961814395 0.5133743554283914
+0.7866246025779713 0.1830740281011887 0.7866246025779713 0.1830740281011887 0.5007817334620891
+0.7845352125726768 0.18646177965825092 0.7845352125726768 0.18646177965825092 0.5059962581970706
+0.7929047264568018 0.17967996812037126 0.7929047264568018 0.17967996812037126 0.49262704225921405
+0.7908175697782119 0.1830654313941734 0.7908175697782119 0.1830654313941734 0.497936581838149
+0.7991827821071259 0.17628330994005145 0.7991827821071259 0.17628330994005145 0.4842959513814052
+0.7970990621623092 0.17966919458023475 0.7970990621623092 0.17966919458023475 0.489508308947066
+0.805461600100473 0.1728729621947915 0.805461600100473 0.1728729621947915 0.47597275050002136
+0.803368183418114 0.17625591212011907 0.803368183418114 0.17625591212011907 0.4809660856866969
+0.8117509147738237 0.16945774764323918 0.8117509147738237 0.16945774764323918 0.46775414872731386
+0.8096490257919874 0.1728270299644227 0.8096490257919874 0.1728270299644227 0.4724551712930212
+0.8159333740872805 0.16942643756226972 0.8159333740872805 0.16942643756226972 0.4640668292101156
+0.8180362568876872 0.16605661300176283 0.8180362568876872 0.16605661300176286 0.4596213972812535
+0.8222855922503961 0.16600968932022137 0.8222855922503961 0.1660096893202214 0.45563724325469596
+0.8243595739469005 0.1626798029313127 0.8243595739469004 0.1626798029313127 0.45142752751991927
+0.8264096081455299 0.1593339709852858 0.82640960814553 0.1593339709852858 0.4473587366063861
+0.8326859659669257 0.15590612503077564 0.8326859659669257 0.15590612503077564 0.4389689620951441
+0.8305946431320403 0.15935890964311794 0.8305946431320405 0.15935890964311794 0.4431220067608998
+0.8368655099473864 0.1558003336082106 0.8368655099473864 0.15580033360821058 0.43429199203898744
+0.8390225256859717 0.15239996754292465 0.8390225256859717 0.15239996754292465 0.43002047740925514
+0.843181537095453 0.15244371476675786 0.843181537095453 0.15244371476675786 0.42507715684373554
+0.8452094240527995 0.14906029650400535 0.8452094240527995 0.14906029650400535 0.42087522590443666
+0.8512539142382924 0.1454623594100232 0.8512539142382923 0.1454623594100232 0.4116077725621099
+0.8493102423237253 0.14881448807248415 0.8493102423237254 0.14881448807248418 0.4157022590709262
+0.8546890836456498 0.1451823117173616 0.8546890836456498 0.1451823117173616 0.4070750049775487
+0.8576002066214627 0.14255341699218482 0.8576002066214627 0.14255341699218482 0.40252344101790893
+0.8614656678334367 0.14145100670464023 0.8614656678334367 0.14145100670464023 0.39733652408234466
+0.8640896128577211 0.13848643224816215 0.864089612857721 0.13848643224816215 0.3936730598504668
+0.867986451935747 0.13644329499075303 0.8679864519357469 0.13644329499075303 0.3892569579792337
+0.8714246015398253 0.13434281693963301 0.8714246015398253 0.13434281693963301 0.3859506718809124
+0.8746757288718336 0.1321725231857136 0.8746757288718338 0.1321725231857136 0.3837384421999425
+0.8779849396482282 0.13010888282647948 0.8779849396482282 0.13010888282647948 0.38234129064159933
+0.8814495038508718 0.12803925099270366 0.881449503850872 0.12803925099270366 0.38190675392105417
+0.884756684564051 0.1259734383162905 0.884756684564051 0.1259734383162905 0.38258950718747237
+0.8880381891832239 0.12375464851807855 0.8880381891832237 0.12375464851807853 0.3844871681027635
+0.891351286673553 0.12160465222534611 0.891351286673553 0.12160465222534611 0.38738811119948346
+0.8947869503164516 0.11941917129712058 0.8947869503164515 0.11941917129712058 0.39139885764813814
+0.8982319255606451 0.11728661673541046 0.8982319255606451 0.11728661673541048 0.3962472853187822
+0.9016578449643706 0.11513771266641956 0.9016578449643706 0.11513771266641958 0.4018379830561713
+0.9050530969921585 0.11303671058504244 0.9050530969921585 0.11303671058504246 0.4078470956655024
+0.9084534775427756 0.11092958233135543 0.9084534775427756 0.11092958233135543 0.4141772705258327
+0.9118504586544874 0.10881608716199427 0.9118504586544874 0.10881608716199427 0.4206044370561964
+0.915239543451764 0.10670454014798433 0.9152395434517641 0.10670454014798435 0.4268815177514879
+0.9186308009159454 0.10460251046021307 0.9186308009159454 0.10460251046021307 0.43277979992342
+0.9220211842111143 0.10251046025100796 0.9220211842111145 0.10251046025100796 0.4380962359918315
+0.9254115675062833 0.10041841004180285 0.9254115675062833 0.10041841004180285 0.44266777045856026
+0.9288019508014522 0.09832635983259774 0.9288019508014521 0.09832635983259774 0.4463322871966034
+0.9321923340966212 0.09623430962339263 0.9321923340966212 0.09623430962339263 0.4489548780968869
+0.9355827173917901 0.09414225941418752 0.9355827173917902 0.09414225941418752 0.45042858426230986
+0.9389731055633281 0.09205050390461965 0.938973105563328 0.09205050390461965 0.4506750983354157
+0.9423634533013988 0.08995875789852022 0.9423634533013988 0.08995875789852022 0.44964855165366086
+0.9457537924248962 0.08786637319592816 0.9457537924248962 0.08786637319592816 0.4473359295525036
+0.9491441812696312 0.08577420138997754 0.9491441812696312 0.08577420138997754 0.44375490395050415
+0.9525346338676348 0.08368200836816198 0.9525346338676348 0.08368200836816198 0.43895690094104617
+0.9559250171628038 0.08158995815895687 0.9559250171628036 0.08158995815895687 0.4330248845352132
+0.9593154004579727 0.07949790794975176 0.9593154004579727 0.07949790794975176 0.42607251595215617
+0.9627057837531416 0.07740585774054665 0.9627057837531418 0.07740585774054665 0.41824322928561525
+0.9660961670483106 0.07531380753134154 0.9660961670483106 0.07531380753134154 0.40970741339381894
+0.9694865503434795 0.07322175732213643 0.9694865503434794 0.07322175732213643 0.40065993025841257
+0.9728769335012114 0.07112970963466551 0.9728769335012114 0.07112970963466551 0.3913162744423118
+0.9762673146871074 0.06903769116439733 0.9762673146871074 0.06903769116439733 0.3819073512370084
+0.9796577011966379 0.0669456209327797 0.979657701196638 0.06694562093277968 0.3726726509119413
+0.9830480846733114 0.0648535577320202 0.9830480846733113 0.06485355773202019 0.36385202667579764
+0.9864384668193242 0.06276150627611088 0.9864384668193242 0.06276150627611088 0.3556755052244233
+0.9898288501144932 0.06066945606690577 0.9898288501144933 0.06066945606690577 0.34835197015222136
+0.9932192334096621 0.05857740585770066 0.9932192334096621 0.05857740585770066 0.34205720367679643
+0.06276150627615058 0.9932192334096622 0.06276150627615058 0.9932192334096622 0.08283496382698369
+0.06485355648535561 0.9898288501144935 0.06485355648535561 0.9898288501144935 0.08469104917935955
+0.06694560669456075 0.9864384668193246 0.06694560669456075 0.9864384668193246 0.08685224312400718
+0.0690376569037658 0.9830480835241556 0.0690376569037658 0.9830480835241556 0.08924245691061888
+0.07112970711297084 0.9796577002289869 0.07112970711297084 0.9796577002289869 0.09178169472729053
+0.07322175732217585 0.976267316933818 0.07322175732217585 0.976267316933818 0.09439003980217643
+0.07531380753138082 0.972876933638649 0.07531380753138082 0.972876933638649 0.09699069849309218
+0.07740585774058577 0.9694865503434803 0.07740585774058577 0.9694865503434803 0.0995121534356254
+0.07949790794979066 0.9660961670483115 0.07949790794979066 0.9660961670483115 0.10188958246733777
+0.08158995815899552 0.9627057837531425 0.08158995815899552 0.9627057837531424 0.10406572764932571
+0.08368200836820038 0.9593154004579737 0.08368200836820038 0.9593154004579737 0.10599138022748376
+0.0857740584702636 0.9559250294426692 0.0857740584702636 0.9559250294426692 0.10762560719950474
+0.08786604345069533 0.9525347374518508 0.08786604345069533 0.9525347374518508 0.10893581171814672
+0.08995780887455762 0.9491446058502785 0.08995780887455762 0.9491446058502785 0.10989775437774278
+0.09204938408983414 0.9457545316899885 0.09204938408983414 0.9457545316899886 0.11049553295980875
+0.09414108029023692 0.9423643266800185 0.09414108029023692 0.9423643266800185 0.11072133188483756
+0.09623308060328506 0.9389741246648096 0.09623308060328506 0.9389741246648097 0.1105751971475422
+0.09832533099954584 0.9355840568105102 0.09832533099954584 0.9355840568105102 0.11006509054391563
+0.10041796980368738 0.9321928479215447 0.10041796980368738 0.9321928479215448 0.10920633026418682
+0.10251015433731686 0.9288023153990999 0.10251015433731685 0.9288023153990999 0.10802244997793918
+0.1046021891654988 0.9254117069875331 0.1046021891654988 0.9254117069875331 0.10654348143827563
+0.10669411164312763 0.9220213352356957 0.10669411164312763 0.9220213352356957 0.10480668985697457
+0.10878559023416724 0.9186327446853128 0.10878559023416724 0.9186327446853128 0.10285659475564922
+0.11087486523044547 0.9152466051323888 0.11087486523044547 0.9152466051323888 0.10074335344866832
+0.11296098099780395 0.9118610898224748 0.11296098099780395 0.9118610898224748 0.09852046581153463
+0.11504342428452953 0.9084696011113977 0.11504342428452953 0.9084696011113976 0.09624073906373744
+0.11713873354578976 0.905086104287945 0.11713873354578976 0.9050861042879451 0.09398194640797802
+0.11922248671998267 0.9017072782896729 0.11922248671998269 0.901707278289673 0.09180073556806422
+0.12129013020255197 0.8983336281016636 0.12129013020255197 0.8983336281016637 0.08975765150809718
+0.12331417283418665 0.8949593101333654 0.12331417283418665 0.8949593101333654 0.08789070326635219
+0.12540712345874336 0.8915602752714731 0.12540712345874336 0.8915602752714732 0.08629375856107663
+0.12756820858654677 0.8881578108437603 0.1275682085865468 0.8881578108437603 0.0850476324468829
+0.12969619744046929 0.8847336265323076 0.1296961974404693 0.8847336265323076 0.08412090402115503
+0.13179589199293038 0.8813363328279743 0.13179589199293038 0.8813363328279743 0.08356936630033172
+0.13389121338861965 0.8779462013769194 0.13389121338861965 0.8779462013769194 0.08340156712515695
+0.13598838930993823 0.8745562976225079 0.13598838930993826 0.874556297622508 0.083609188217408
+0.13812250343399055 0.8711587199222609 0.13812250343399055 0.8711587199222609 0.08420629548219345
+0.14027372468514407 0.8677763827205837 0.14027372468514407 0.8677763827205837 0.08515300264267224
+0.1423569625352576 0.8644256218927933 0.14235696253525762 0.8644256218927932 0.08632544400029497
+0.14437388948668795 0.8610091563147406 0.14437388948668795 0.8610091563147407 0.0876474113515381
+0.14644351466420635 0.8576039016025344 0.14644351466420635 0.8576039016025344 0.08921827269304793
+0.14874838754244993 0.8541948094307865 0.14874838754244993 0.8541948094307866 0.09113591687143587
+0.1508254065741787 0.8508890319218708 0.15082540657417873 0.8508890319218708 0.09294446470570493
+0.1526181589288737 0.8470898395552402 0.15261815892887373 0.8470898395552401 0.09457190277702056
+0.1557218960527581 0.8408780878405943 0.1557218960527581 0.8408780878405943 0.0974374298016767
+0.15535915841960318 0.8443104992846058 0.15535915841960318 0.8443104992846058 0.09688128456587264
+0.1593338086138664 0.8350840990663032 0.1593338086138664 0.8350840990663032 0.10050279830995991
+0.15912170351796923 0.8390471786274772 0.15912170351796925 0.8390471786274772 0.10005844073159124
+0.16322307964924632 0.8311390019666444 0.16322307964924632 0.8311390019666444 0.10328955375853718
+0.16217700741744348 0.8335896782126607 0.16217700741744348 0.8335896782126607 0.10245834824561724
+0.16599217376426811 0.8259792764053596 0.16599217376426811 0.8259792764053596 0.10523078738758625
+0.1660242135380649 0.8295669278826554 0.16602421353806493 0.8295669278826555 0.105075494739439
+0.16943383394897804 0.8201708553757134 0.16943383394897804 0.8201708553757134 0.10715601498562903
+0.169233900833573 0.8240515385946144 0.169233900833573 0.8240515385946144 0.10704579001214119
+0.17286258163489793 0.8181720908626839 0.1728625816348979 0.818172090862684 0.10877204556629196
+0.17287392753738715 0.8138381513791332 0.17287392753738715 0.8138381513791332 0.10854540163396342
+0.17623441992342162 0.8075304282157894 0.17623441992342162 0.8075304282157895 0.10929983619259852
+0.1762242664711416 0.8116782476130228 0.17622426647114156 0.8116782476130228 0.1097981720312846
+0.17963314223272403 0.8054881498529128 0.179633142232724 0.8054881498529128 0.11026100866594686
+0.17966100509260516 0.8013415170625481 0.17966100509260516 0.8013415170625481 0.10947314590605055
+0.1830939039369317 0.7950249169790902 0.1830939039369317 0.7950249169790902 0.10900151080540123
+0.18311147889311744 0.7992620303649743 0.18311147889311744 0.7992620303649743 0.11011634374208845
+0.1864813972333252 0.7887031375838788 0.1864813972333252 0.7887031375838788 0.10791717778125774
+0.18648878498566787 0.7928989042314404 0.18648878498566787 0.7928989042314404 0.10928494361352474
+0.18986516211226742 0.7824216951247912 0.18986516211226742 0.7824216951247912 0.10631512962643615
+0.18987068218844416 0.7865980890790879 0.18987068218844416 0.7865980890790879 0.1078901168582167
+0.19325369156880146 0.7761448312579344 0.19325369156880146 0.7761448312579344 0.10428319520474429
+0.19325403645097322 0.7803270437646279 0.1932540364509732 0.780327043764628 0.10600461624229685
+0.19664540726607535 0.7740483440236947 0.19664540726607535 0.7740483440236946 0.10373103179757011
+0.20003476952364527 0.7677713878507664 0.20003476952364527 0.7677713878507664 0.10122968413705889
+0.20003878945155254 0.7719436160120924 0.20003878945155254 0.7719436160120924 0.10307597339354828
+0.2034231380667858 0.7615009667934153 0.20342313806678583 0.7615009667934153 0.0986962450304739
+0.20342393656372892 0.7656770998124537 0.20342393656372892 0.7656770998124537 0.1004556455208618
+0.2068131930502315 0.7552283986505631 0.2068131930502315 0.7552283986505631 0.09635564035157029
+0.20681289702596448 0.7594089211648751 0.20681289702596448 0.7594089211648751 0.09790829208751041
+0.21020368149430382 0.7489536434271878 0.21020368149430382 0.7489536434271878 0.09445391336686776
+0.21020337252994206 0.7531362550599572 0.21020337252994206 0.7531362550599572 0.09568264285388649
+0.2135914222414472 0.7426776785720776 0.2135914222414472 0.7426776785720776 0.09322726428668789
+0.21359342488938712 0.7468615217130479 0.21359342488938712 0.7468615217130479 0.09403431013046747
+0.21696396282472363 0.736398798381703 0.21696396282472366 0.736398798381703 0.09286498676006906
+0.21697320968579473 0.7405842467674494 0.21697320968579473 0.7405842467674494 0.09318826763279663
+0.22032288576617218 0.7343005376338568 0.22032288576617218 0.7343005376338568 0.09329724965150034
+0.223652133987716 0.7322039793052916 0.223652133987716 0.7322039793052916 0.09409015613057754
+0.22693630283998692 0.7301133927626174 0.22693630283998692 0.7301133927626174 0.09525216468954624
+0.2301891119395827 0.7280457945116731 0.2301891119395827 0.7280457945116731 0.09677865935450451
+0.23340150100911802 0.7260448776652488 0.23340150100911802 0.7260448776652488 0.09864836485805632
+0.23681037382076836 0.7242203171149197 0.23681037382076833 0.7242203171149199 0.10095984407413691
+0.2427038148040094 0.7120297145589091 0.2427038148040094 0.7120297145589091 0.1073891823672356
+0.24506836905705298 0.7092791819540709 0.24506836905705298 0.7092791819540709 0.1097152484850596
+0.24653545331199914 0.7034010707627864 0.24653545331199914 0.7034010707627864 0.11207725328009176
+0.2474495929344275 0.7066476575979105 0.2474495929344275 0.7066476575979105 0.11203507290972951
+0.25069949525413954 0.6944220763759735 0.25069949525413954 0.6944220763759735 0.11663451224405673
+0.25322992315343884 0.6915830952596037 0.2532299231534388 0.6915830952596037 0.11860419326902251
+0.25572734928581664 0.6887362610827964 0.2557273492858166 0.6887362610827964 0.12036618820993956
+0.26727097140085343 0.6711704098436363 0.26727097140085343 0.6711704098436363 0.12502759164945623
+0.25973764549634076 0.6795228145123425 0.25973764549634076 0.6795228145123425 0.1229052159915434
+0.26225218098508124 0.6767309194077914 0.26225218098508124 0.6767309194077914 0.12385456953182793
+0.26474886771169326 0.6739373527029663 0.2647488677116932 0.6739373527029663 0.12455434876142936
+0.25820328580772084 0.6858991991179524 0.25820328580772084 0.6858991991179524 0.12189931649453555
+0.2606835391780658 0.6830799921831797 0.2606835391780658 0.6830799921831797 0.12319910117041179
+0.249109836763212 0.7008146776940479 0.249109836763212 0.7008146776940479 0.1143916363837
+0.25169326697903904 0.69808594557797 0.25169326697903904 0.69808594557797 0.1166430784772058
+0.23930447561009927 0.7212920844294413 0.23930447561009927 0.7212920844294413 0.10308184596775853
+0.24145968685957858 0.718214202732558 0.2414596868595786 0.718214202732558 0.10518420234365129
+0.24387301803006547 0.7152908367278008 0.24387301803006547 0.7152908367278008 0.10756259584208329
+0.28366641358793343 0.6577067571226465 0.28366641358793343 0.6577067571226465 0.12480822629562448
+0.28114690009684723 0.6605469059167337 0.28114690009684723 0.6605469059167337 0.12529695425384876
+0.27860391588142797 0.6633990314829631 0.27860391588142797 0.6633990314829631 0.12570945884897552
+0.27076548164749414 0.6719348273025976 0.2707654816474942 0.6719348273025975 0.1259864791280385
+0.27340025331031076 0.6691121178052478 0.27340025331031076 0.6691121178052478 0.12610069622475747
+0.27602458618951736 0.6662574113089857 0.27602458618951736 0.6662574113089857 0.12599333632826928
+0.28761248737551787 0.6487427713387114 0.28761248737551787 0.6487427713387114 0.12302356439587818
+0.29323977697680387 0.6338507640867561 0.29323977697680387 0.6338507640867562 0.1231921193431066
+0.29557981514194354 0.6309241092836112 0.29557981514194354 0.6309241092836112 0.12380286341628065
+0.29820924963342993 0.6280945899223902 0.29820924963342993 0.6280945899223901 0.12472848137104521
+0.3079275496077762 0.6100504067024838 0.3079275496077762 0.6100504067024838 0.13755606981725688
+0.30738411721716763 0.6135328583476604 0.30738411721716763 0.6135328583476604 0.13419871036253883
+0.3050139468354285 0.6157133137389592 0.3050139468354285 0.6157133137389592 0.1322242557059954
+0.2999904320784221 0.6212151641576001 0.2999904320784221 0.6212151641576001 0.1282713787876495
+0.3025949660657905 0.6184099538197292 0.3025949660657905 0.6184099538197292 0.13011657382963474
+0.3008050023325454 0.6249766724746312 0.3008050023325454 0.6249766724746312 0.1261405010867189
+0.2901240422648259 0.6459781823033358 0.2901240422648259 0.6459781823033358 0.12270901660507945
+0.2916839446026673 0.6399276756695427 0.2916839446026673 0.6399276756695427 0.1224372705307084
+0.29262803497008244 0.6432317616063279 0.29262803497008244 0.6432317616063279 0.12255956384186349
+0.2941863507817737 0.6371761214607532 0.2941863507817737 0.6371761214607532 0.12259946975647996
+0.28616996564670655 0.6548776446622434 0.28616996564670655 0.6548776446622434 0.12429831495775445
+0.2886618092960229 0.6520621367798796 0.2886618092960229 0.6520621367798797 0.12382531279770866
+0.4032940262909477 0.4377288559521589 0.4032940262909478 0.4377288559521589 0.48831490713911346
+0.39967636134779566 0.4384660678342689 0.39967636134779566 0.4384660678342689 0.43713364573979857
+0.39488688003039263 0.4400502353420326 0.39488688003039263 0.4400502353420325 0.3745166363237938
+0.3977747696571653 0.4401706004464712 0.3977747696571653 0.4401706004464712 0.40515418815963866
+0.3905216703383189 0.4424564884806937 0.3905216703383189 0.4424564884806937 0.3210917435209602
+0.3937206013176809 0.442329203635951 0.3937206013176809 0.442329203635951 0.3498699217168069
+0.3876353115640516 0.44319059409622996 0.3876353115640516 0.44319059409622996 0.29595444487169664
+0.38540228719609715 0.4444178694193753 0.38540228719609715 0.44441786941937533 0.276829219792908
+0.3901284468310201 0.4446401215989811 0.3901284468310201 0.4446401215989811 0.3061350177369456
+0.3845298936992344 0.4468217566098668 0.38452989369923435 0.4468217566098667 0.26340885321280744
+0.3807445950850286 0.44661719458695476 0.3807445950850286 0.44661719458695476 0.24987912754549746
+0.3787652463492259 0.4491603535784999 0.3787652463492259 0.44916035357849987 0.2413723323568168
+0.3748953207654743 0.4496467211983947 0.37489532076547427 0.4496467211983947 0.2369937189169933
+0.3721241441046578 0.45142017914083404 0.3721241441046578 0.45142017914083404 0.23893655784826243
+0.37749571016349603 0.4517253467956591 0.37749571016349603 0.4517253467956591 0.23951111507260198
+0.36677271466190414 0.4543744408041423 0.36677271466190414 0.4543744408041423 0.252024580401883
+0.3707890254332239 0.4540920451948412 0.37078902543322384 0.4540920451948412 0.24653706067041617
+0.3586806202875362 0.46128061654385344 0.3586806202875362 0.4612806165438535 0.2947618402430261
+0.36483156690310264 0.45778587586063685 0.3648315669031027 0.45778587586063685 0.2688326470158213
+0.3614786658692963 0.45988567607471764 0.3614786658692963 0.4598856760747177 0.2838415688026737
+0.35764001751326063 0.4637586040472129 0.35764001751326063 0.463758604047213 0.30871941401197894
+0.35256285268207704 0.46730279426698956 0.35256285268207704 0.46730279426698956 0.33199508394707866
+0.35617212547713784 0.4666156677187472 0.3561721254771379 0.46661566771874713 0.3249588032299436
+0.351052403439297 0.4704326947806734 0.351052403439297 0.47043269478067345 0.34797826893078304
+0.349401655088678 0.4738124248094238 0.349401655088678 0.4738124248094238 0.36376609191506853
+0.34571110770560964 0.4746289968138093 0.34571110770560964 0.4746289968138093 0.3684827925076764
+0.3442779610814455 0.47805497362887833 0.3442779610814455 0.47805497362887833 0.38143145595611944
+0.3392572673857448 0.48261639195539463 0.3392572673857448 0.4826163919553946 0.3951459000628992
+0.3429409276980686 0.4815214368179712 0.3429409276980686 0.48152143681797116 0.39259348503021796
+0.33789077059576816 0.48624293597382967 0.33789077059576816 0.48624293597382967 0.40346511828011383
+0.3321849030244188 0.49129144335303065 0.3321849030244188 0.49129144335303065 0.40971608706723706
+0.3365166872663463 0.49004217482209755 0.3365166872663463 0.49004217482209755 0.4098866233594391
+0.3318398812848381 0.4950592531559301 0.33183988128483805 0.4950592531559301 0.41316686196561253
+0.32754364436485667 0.4997399388890591 0.32754364436485667 0.49973993888905904 0.41253347245190003
+0.32672361939439337 0.50269159380655 0.32672361939439337 0.50269159380655 0.4115789984290527
+0.33101043134309044 0.49866310898802474 0.33101043134309044 0.49866310898802474 0.4143304344898315
+0.32611481161963907 0.5059034990737712 0.32611481161963907 0.5059034990737712 0.4094135791376849
+0.3224650424512763 0.510359747050231 0.3224650424512763 0.5103597470502309 0.4030709986510934
+0.32193747343285173 0.513604264916728 0.32193747343285173 0.513604264916728 0.39811480059542964
+0.32590193727375805 0.5088660305533055 0.3259019372737581 0.5088660305533055 0.4064836503271651
+0.3214630152618437 0.5168550216246315 0.3214630152618437 0.5168550216246315 0.3920657012075263
+0.3177089252002545 0.5217013960936069 0.3177089252002545 0.5217013960936069 0.38057919647250765
+0.31742544474947926 0.5250303063703151 0.31742544474947926 0.5250303063703151 0.3722775996157448
+0.3210684965065884 0.5201331163320672 0.3210684965065884 0.5201331163320672 0.384945885214851
+0.3171924777727297 0.5283943242978965 0.3171924777727297 0.5283943242978965 0.3630345393856494
+0.31368718270627144 0.5335250746737841 0.31368718270627144 0.5335250746737841 0.3479329269305445
+0.3135989894948746 0.536968391693088 0.3135989894948746 0.536968391693088 0.3370402218170209
+0.317021410043645 0.5317684470590772 0.317021410043645 0.5317684470590772 0.3529895456477756
+0.31356815636685037 0.5404216454627292 0.31356815636685037 0.5404216454627292 0.3255555026662336
+0.3102994506270964 0.5458244513224714 0.3102994506270964 0.5458244513224714 0.3082612185362659
+0.3104024144491078 0.5493683185200867 0.3104024144491078 0.5493683185200867 0.2958339172446128
+0.3135979776317371 0.5438751854656562 0.3135979776317371 0.5438751854656562 0.3136077188759852
+0.31061380891847734 0.5529360093261821 0.31061380891847734 0.5529360093261823 0.28306594117103373
+0.3077799759489704 0.558608819523264 0.3077799759489704 0.558608819523264 0.2649318610361788
+0.3080346994212998 0.5622442648482813 0.30803469942129974 0.5622442648482813 0.25215831828475216
+0.31092867226602133 0.5564588334988826 0.31092867226602133 0.5564588334988826 0.270296735222669
+0.30833387477817253 0.5658459955471576 0.30833387477817253 0.5658459955471576 0.23967709356489778
+0.30637346422363987 0.5719671909316884 0.3063734642236398 0.5719671909316882 0.2211852383802129
+0.30699883346825296 0.5755375359336966 0.30699883346825296 0.5755375359336966 0.2096312031980545
+0.30899533129240747 0.5695505444490655 0.30899533129240747 0.5695505444490655 0.22683114005256852
+0.30738567571926473 0.579071774327876 0.30738567571926473 0.579071774327876 0.19891283520784622
+0.3077403091698806 0.5893953593128729 0.30774030916988065 0.5893953593128729 0.17183944226474843
+0.30776759018398087 0.5859165739957389 0.30776759018398087 0.5859165739957389 0.18022109731329158
+0.30767207514845424 0.5826441211874598 0.30767207514845424 0.5826441211874598 0.1888118416252852
+0.3081873002019799 0.5928194388456567 0.3081873002019799 0.5928194388456567 0.1641073367600413
+0.30951536923110723 0.6033719113243472 0.30951536923110723 0.6033719113243472 0.1454551084406657
+0.3090467537215731 0.5997790919457242 0.3090467537215731 0.5997790919457242 0.15091517485602454
+0.308614900857926 0.5962740650529395 0.308614900857926 0.5962740650529393 0.1571303607176803
+0.31007804384334314 0.6068424350176511 0.3100780438433431 0.6068424350176511 0.14107547526760164
+0.31129921975824204 0.6096837938012566 0.31129921975824204 0.6096837938012566 0.1382521687524372
+0.4055864501425714 0.44169106008083503 0.4055864501425714 0.44169106008083503 0.5000727548415792
+0.4078041389907359 0.4454439483892029 0.4078041389907359 0.4454439483892029 0.5078497760198504
+0.4710826875130496 0.38867193974324754 0.4710826875130496 0.3886719397432476 0.4752745902971464
+0.47266067168738446 0.38553695951359723 0.4726606716873844 0.3855369595135972 0.4718366634558036
+0.4755154455838936 0.3816572420212013 0.4755154455838935 0.3816572420212014 0.4659762578925694
+0.4748539417147278 0.38427952156446976 0.4748539417147278 0.38427952156446976 0.471486559953379
+0.47822650224990304 0.3782232649173306 0.4782265022499031 0.37822326491733055 0.4574750525036872
+0.47795624054051816 0.3812288654333692 0.47795624054051816 0.38122886543336915 0.46590454441124957
+0.4818362238511032 0.3742755838172373 0.4818362238511032 0.3742755838172373 0.4423358950564679
+0.48095401859444364 0.3773951818208593 0.4809540185944437 0.37739518182085924 0.4534190426243474
+0.48496767292078324 0.37420147256678166 0.48496767292078324 0.37420147256678166 0.43680282310817287
+0.4920895485218297 0.36232606675473833 0.4920895485218297 0.36232606675473833 0.36837782883182163
+0.48650575935268414 0.3709723788417595 0.4865057593526841 0.37097237884175943 0.4211097331983151
+0.4904317596357568 0.36509235335277346 0.49043175963575686 0.36509235335277346 0.3856376593939172
+0.4884497353220223 0.3682393921853365 0.48844973532202224 0.3682393921853366 0.40495914149392415
+0.4986711916242701 0.3552895276646475 0.4986711916242701 0.3552895276646475 0.30985311582301117
+0.501914864570917 0.3541702566188855 0.5019148645709172 0.3541702566188855 0.2878471955764715
+0.49802738711437167 0.3596118434707038 0.49802738711437167 0.35961184347070374 0.3293113629982182
+0.4957501967333462 0.3628175713334434 0.4957501967333462 0.3628175713334434 0.3532277394949474
+0.5087463323812212 0.3509032257120961 0.5087463323812212 0.3509032257120961 0.23937066242432745
+0.5111195338587775 0.3486321456259309 0.5111195338587775 0.3486321456259309 0.22058151133456527
+0.5067818609282363 0.35318676686089884 0.5067818609282363 0.35318676686089884 0.2573784638068051
+0.5048188610812305 0.3555339651913162 0.5048188610812305 0.35553396519131614 0.27651475219596383
+0.5214656424684615 0.3423970252634861 0.5214656424684615 0.3423970252634861 0.17924054567254455
+0.5189904313185784 0.34477759289422033 0.5189904313185784 0.34477759289422033 0.18605280440684832
+0.5166299879678358 0.34717230886271455 0.5166299879678357 0.34717230886271455 0.19683428549256973
+0.5143086672829442 0.3497044466492832 0.5143086672829442 0.3497044466492832 0.2113205705054139
+0.5331207822371092 0.33690827301883575 0.5331207822371092 0.33690827301883575 0.2142772170883683
+0.5301402637676752 0.33905246545736545 0.5301402637676752 0.33905246545736545 0.2004391872150427
+0.5274970834728344 0.3414608218518828 0.5274970834728344 0.3414608218518828 0.19287516298708088
+0.5249526814126615 0.3438037615056864 0.5249526814126614 0.3438037615056864 0.18954817070897126
+0.547018281989556 0.3331553007987079 0.547018281989556 0.33315530079870787 0.32047090925897476
+0.5416400857413503 0.3340004766576799 0.5416400857413503 0.3340004766576799 0.27500779951962007
+0.544669777101999 0.334417284139934 0.544669777101999 0.334417284139934 0.3030677274049697
+0.5392923148389103 0.33638407722325336 0.5392923148389103 0.33638407722325336 0.26134503228079
+0.5365320828587699 0.33863250713950505 0.5365320828587699 0.33863250713950505 0.24461613727059348
+0.5557681549768563 0.33066857490897195 0.5557681549768563 0.33066857490897195 0.3908102826257615
+0.5527884073806347 0.33275427831155335 0.5527884073806347 0.33275427831155335 0.3714933018320703
+0.5498546386672931 0.33475605237962375 0.5498546386672931 0.33475605237962375 0.35151991921869263
+0.5823259335012895 0.32764417961079384 0.5823259335012895 0.32764417961079384 0.5790650795788289
+0.5627690859629314 0.33158199121051285 0.5627690859629314 0.33158199121051285 0.45446014401343865
+0.5593060824877326 0.3321965057747959 0.5593060824877326 0.3321965057747959 0.427360185830786
+0.5789608808051591 0.32907837454513666 0.5789608808051591 0.32907837454513666 0.5645194649401944
+0.5657954095917903 0.33067749613403447 0.5657954095917903 0.33067749613403447 0.475632728911139
+0.5693668548966113 0.33039271814410515 0.5693668548966113 0.33039271814410515 0.502604624612534
+0.5756532629707131 0.3306153774351319 0.5756532629707131 0.3306153774351319 0.5492039572413238
+0.5724547614397509 0.33221649220443866 0.5724547614397509 0.33221649220443866 0.5333262265833104
+0.5644864497997232 0.3332687735992996 0.5644864497997232 0.3332687735992996 0.47536326456805156
+0.5981225731356273 0.3281145074884409 0.5981225731356273 0.3281145074884409 0.6578486508672888
+0.5919232151736775 0.3271541861913158 0.5919232151736775 0.3271541861913158 0.6277105963214024
+0.5946361410733081 0.32946900120656347 0.5946361410733081 0.32946900120656347 0.6498192975563352
+0.5884798926494316 0.32854032580920534 0.5884798926494316 0.3285403258092053 0.617043248597276
+0.5850685329311054 0.32994151393727594 0.5850685329311053 0.32994151393727594 0.6050189335394877
+0.47455913627597274 0.39206817691376067 0.47455913627597274 0.39206817691376067 0.48654108527196965
+0.47776235824346935 0.39526107019662443 0.47776235824346935 0.39526107019662443 0.5019211658663277
+0.6008118247017061 0.3304578575917992 0.6008118247017061 0.3304578575917992 0.6773279700577274
+0.6462278261378197 0.28210126331775265 0.6462278261378197 0.28210126331775265 0.6123211562276144
+0.6497911835460713 0.2813311010500005 0.6497911835460713 0.28133110105000053 0.6149019505375849
+0.6426998781256472 0.28290781131497394 0.6426998781256472 0.28290781131497394 0.6092995118592727
+0.6392078018407978 0.2837640778039666 0.639207801840798 0.28376407780396656 0.605900662316733
+0.6357560184372855 0.28466586676306377 0.6357560184372854 0.28466586676306377 0.6021492240701635
+0.6323606080801331 0.28555696254996393 0.6323606080801331 0.28555696254996393 0.5979525410520914
+0.6257323007589173 0.2873719512640408 0.6257323007589174 0.28737195126404075 0.5884607028600569
+0.6290029716520703 0.28644515224162365 0.6290029716520703 0.28644515224162365 0.593305759630563
+0.6205168360880522 0.290084301677663 0.6205168360880523 0.290084301677663 0.5837024292526004
+0.6157090170014038 0.2953410805957282 0.6157090170014038 0.2953410805957282 0.5874352412849437
+0.6113560768522306 0.300058456446019 0.6113560768522306 0.300058456446019 0.5910121953746775
+0.6048759790158896 0.3119739001475382 0.6048759790158896 0.3119739001475382 0.6153020533704116
+0.6059149664992769 0.3083597733160384 0.6059149664992769 0.3083597733160384 0.6047256045385132
+0.6070294683878913 0.30471557613991246 0.6070294683878913 0.30471557613991246 0.5944601914140261
+0.6103944054052841 0.3037412770860759 0.610394405405284 0.3037412770860759 0.6014185503951505
+0.6065212372290103 0.3182939006118933 0.6065212372290104 0.3182939006118933 0.645322286247561
+0.6074067170949087 0.3147108031759898 0.6074067170949088 0.3147108031759898 0.63389707377571
+0.6147739273754441 0.29910066140243463 0.6147739273754441 0.2991006614024347 0.5975573038820378
+0.6192519590872413 0.2943944866388103 0.6192519590872413 0.29439448663881024 0.5939285386596566
+0.62432916486659 0.29042982085208335 0.62432916486659 0.2904298208520833 0.5941220672509128
+0.6533874235354712 0.28061870401494177 0.6533874235354712 0.28061870401494177 0.6170520628285865
+0.6570253643757354 0.279970329143775 0.6570253643757354 0.279970329143775 0.618756236486877
+0.6606972407416553 0.2793600756613999 0.6606972407416553 0.2793600756613999 0.6199261480475386
+0.6644110599650759 0.27876785884276795 0.6644110599650759 0.27876785884276795 0.6205099448164598
+0.6058100217913879 0.32187860378944966 0.6058100217913879 0.32187860378944966 0.6574764835104462
+0.6051534991324306 0.3255004906928962 0.6051534991324306 0.3255004906928962 0.6701886481461515
+0.6043758376575249 0.3291638550666514 0.6043758376575249 0.3291638550666514 0.6829417544007236
+0.6749006622398876 0.2742369150900427 0.6749006622398878 0.2742369150900427 0.6139605812500192
+0.6682437925272717 0.2781691032487182 0.6682437925272717 0.2781691032487182 0.6204653991628573
+0.6724291642207623 0.2770614406099349 0.6724291642207624 0.27706144060993493 0.6190221640098427
+0.7029614805864438 0.2466604116487612 0.7029614805864438 0.2466604116487612 0.5563908225101412
+0.7065817969407302 0.2464241454523255 0.7065817969407302 0.2464241454523255 0.5540080953713407
+0.6975566282626793 0.25019138745514247 0.6975566282626793 0.25019138745514247 0.5643337177036445
+0.6957816524906169 0.25356130294022194 0.6957816524906169 0.25356130294022194 0.5704874892364754
+0.6904194106460443 0.25705779385590377 0.6904194106460443 0.25705779385590377 0.5791191500977706
+0.6886945303126 0.2604156402945847 0.6886945303126 0.2604156402945847 0.5856717564164694
+0.6834356350917195 0.26383970076757357 0.6834356350917195 0.2638397007675736 0.5938634061164995
+0.681636876348961 0.26712583785590877 0.681636876348961 0.26712583785590877 0.6002323994645832
+0.6799578115107568 0.2704418004185068 0.6799578115107568 0.2704418004185068 0.6064558734342249
+0.6869567706011913 0.2637423888403266 0.6869567706011913 0.2637423888403266 0.592208027306178
+0.6940199839966182 0.25692967425471636 0.6940199839966182 0.2569296742547164 0.576886570627318
+0.7012060524680298 0.25003566064052996 0.7012060524680298 0.2500356606405299 0.561967844533512
+0.6783076131272786 0.27387849254600816 0.6783076131272786 0.2738784925460082 0.6126962327555173
+0.7119711838115581 0.2428614851460669 0.7119711838115581 0.2428614851460669 0.5471496456280439
+0.7155856716697492 0.24259463412921406 0.7155856716697492 0.24259463412921403 0.5449978466037235
+0.7101626302597674 0.24614631734537817 0.7101626302597674 0.24614631734537817 0.551499377532832
+0.7211999426672955 0.2391674183016831 0.7211999426672956 0.23916741830168312 0.5399653693874208
+0.7192501596997587 0.24236287993515238 0.7192501596997588 0.24236287993515235 0.5428938679450138
+0.7363870546007973 0.21694774038817646 0.7363870546007973 0.21694774038817646 0.5328032707785136
+0.7342851817089048 0.2202914467143967 0.7342851817089048 0.22029144671439668 0.533040324964653
+0.7321691298330082 0.22361249552061122 0.7321691298330082 0.22361249552061122 0.5333580897827407
+0.7252072376343135 0.23846420776503083 0.7252072376343134 0.2384642077650308 0.538255219177387
+0.7256627408251447 0.2340270352662904 0.7256627408251448 0.23402703526629037 0.536428740883094
+0.7278310733772052 0.23029540363748105 0.7278310733772052 0.23029540363748105 0.5348376959767392
+0.7300255794511782 0.2269272567423806 0.7300255794511782 0.2269272567423806 0.5339005854523063
+0.7426723182985668 0.213587642436878 0.7426723182985668 0.21358764243687797 0.5332589979123369
+0.7405752671805393 0.2169623086899661 0.7405752671805393 0.2169623086899661 0.5334680966014612
+0.7489528587553461 0.21020304318059016 0.7489528587553461 0.21020304318059016 0.5332929860342621
+0.7468591271932761 0.21359143925055868 0.7468591271932761 0.21359143925055868 0.5337968972496016
+0.755230034544215 0.2068133283185767 0.755230034544215 0.2068133283185767 0.5324422501948356
+0.7531379411390334 0.21020353567207686 0.7531379411390334 0.21020353567207686 0.533509644501811
+0.7615069821369945 0.2034227834277698 0.7615069821369945 0.2034227834277698 0.5303601039472526
+0.7594154015419466 0.2068128831816934 0.7594154015419466 0.2068128831816934 0.5321743592178804
+0.7677847970512744 0.2000314656127912 0.7677847970512744 0.2000314656127912 0.5268508979638643
+0.7656930645762984 0.20342039054356686 0.7656930645762984 0.20342039054356684 0.5294948302731446
+0.7761571812326894 0.1932490851402429 0.7761571812326894 0.1932490851402429 0.5178717187505751
+0.7740653192577088 0.196638625955754 0.7740653192577088 0.196638625955754 0.5218810456188728
+0.7719729008499878 0.2000262701180766 0.7719729008499878 0.2000262701180766 0.5253358992156124
+0.7824433482735448 0.18985091055334133 0.7824433482735448 0.18985091055334133 0.5109571760253794
+0.7803503516554344 0.19324067629351904 0.7803503516554344 0.19324067629351904 0.5155639630189702
+0.7887295258792318 0.18644980902002808 0.7887295258792318 0.18644980902002808 0.5031390500224399
+0.786639457249834 0.18983472704591883 0.786639457249834 0.18983472704591883 0.5081330975106844
+0.7950126590479435 0.18305534374480312 0.7950126590479435 0.18305534374480312 0.49474818455102915
+0.7929222318209806 0.18643557834704697 0.7929222318209806 0.18643557834704697 0.4999152520536856
+0.8012814543368753 0.17964006117353157 0.8012814543368753 0.17964006117353157 0.48607496098613584
+0.7992145145172012 0.18304331023795367 0.7992145145172013 0.18304331023795364 0.4912257331911765
+0.8075537706376439 0.1762232300636655 0.8075537706376439 0.1762232300636655 0.4773413681778644
+0.8054469206465665 0.1795943925504276 0.8054469206465665 0.1795943925504276 0.48234380384837844
+0.8117352911091572 0.17613431146556702 0.8117352911091572 0.17613431146556702 0.4734107126980403
+0.8138345266153516 0.17277467595646026 0.8138345266153516 0.17277467595646026 0.46866538192748086
+0.8179843246904969 0.17271787651085913 0.8179843246904969 0.17271787651085913 0.4646480374258762
+0.8200983521825088 0.16941152851324692 0.8200983521825088 0.16941152851324692 0.4601368086225213
+0.8242088449547456 0.16932547915882903 0.8242088449547457 0.16932547915882903 0.45599414743294736
+0.8265507895305427 0.16597395912506788 0.8265507895305427 0.16597395912506788 0.451385427203086
+0.8285526519349888 0.16277250533858414 0.8285526519349888 0.16277250533858414 0.4472766878329045
+0.8348048750926053 0.15931678442211228 0.8348048750926053 0.15931678442211228 0.43854923036927557
+0.8326327519560643 0.1627912774227266 0.8326327519560642 0.1627912774227266 0.4430387568665534
+0.8389383709357429 0.15900636230696813 0.8389383709357429 0.15900636230696816 0.43378257932880393
+0.8409601200550534 0.15569473848284868 0.8409601200550533 0.15569473848284868 0.42944147489839235
+0.8444481406274335 0.1554595979284811 0.8444481406274335 0.1554595979284811 0.4251049443399138
+0.847357008162095 0.15284011881507303 0.8473570081620949 0.152840118815073 0.4202396579403086
+0.8511558809783593 0.1517440734375473 0.8511558809783593 0.1517440734375473 0.4147951623463812
+0.8536822091518278 0.14882892479296192 0.8536822091518277 0.14882892479296192 0.4102327413592106
+0.857577492268354 0.1469194010976148 0.857577492268354 0.1469194010976148 0.4044471427753655
+0.8610966091453905 0.1448436104311319 0.8610966091453905 0.1448436104311319 0.39914681203316343
+0.864491961224791 0.1427019017792475 0.8644919612247911 0.1427019017792475 0.394388572426728
+0.867809559484658 0.1404832871623363 0.867809559484658 0.1404832871623363 0.3900741427537389
+0.8712765441000736 0.13833292643355238 0.8712765441000735 0.1383329264335524 0.3862620706260084
+0.8746535345825759 0.13620050665146088 0.8746535345825759 0.13620050665146088 0.38324907327202845
+0.8780080956518369 0.1341266322961458 0.8780080956518369 0.13412663229614583 0.3810938296716008
+0.8813857686125772 0.13201466423590905 0.8813857686125771 0.13201466423590905 0.3798713053389473
+0.8847741261517884 0.12990976744716243 0.8847741261517884 0.12990976744716243 0.3796927581808285
+0.8881213911980681 0.1277885755227199 0.888121391198068 0.1277885755227199 0.380595940518977
+0.8914495816621965 0.12570641704011362 0.8914495816621965 0.12570641704011362 0.3825228802346041
+0.8948265341292311 0.12357335584549817 0.8948265341292311 0.12357335584549815 0.3855271460510182
+0.8982397181132707 0.12143496284395743 0.8982397181132707 0.12143496284395743 0.3895094984932527
+0.9016579316967213 0.11930354613451427 0.9016579316967214 0.11930354613451426 0.39430461476022766
+0.9050578062062121 0.11719645132860441 0.9050578062062121 0.11719645132860441 0.399690377220077
+0.9084536308942831 0.1150929098779452 0.9084536308942831 0.1150929098779452 0.40550524136821836
+0.9118482092196647 0.11298892182420987 0.9118482092196647 0.11298892182420987 0.41154884232539696
+0.9152401564252113 0.11088479039006283 0.9152401564252113 0.11088479039006283 0.4176016123395652
+0.9186308009159454 0.10878661087862329 0.9186308009159454 0.10878661087862329 0.42343290904327496
+0.9220211842111143 0.10669456066941818 0.9220211842111145 0.10669456066941818 0.42883585834208343
+0.9254115675062833 0.10460251046021307 0.9254115675062833 0.10460251046021307 0.43363265603202533
+0.9288019508014522 0.10251046025100796 0.9288019508014521 0.10251046025100796 0.4376511718029488
+0.9321923340966212 0.10041841004180285 0.9321923340966212 0.10041841004180285 0.4407433646399728
+0.9355827173917901 0.09832635983259774 0.9355827173917902 0.09832635983259774 0.44278829776287004
+0.938973100686959 0.09623430962339263 0.938973100686959 0.09623430962339263 0.4436940001930822
+0.942363483982128 0.09414225941418752 0.9423634839821279 0.09414225941418752 0.4433991446305998
+0.9457538672772969 0.09205020920498241 0.9457538672772969 0.09205020920498241 0.44187449562892506
+0.9491442505724659 0.0899581589957773 0.949144250572466 0.0899581589957773 0.43912368861676915
+0.9525346338676348 0.0878661087865722 0.9525346338676348 0.0878661087865722 0.4351833042046434
+0.9559250171628038 0.08577405857736708 0.9559250171628036 0.08577405857736708 0.43012251640477744
+0.9593154004579727 0.08368200836816198 0.9593154004579727 0.08368200836816198 0.42404237134286005
+0.9627057837531416 0.08158995815895687 0.9627057837531418 0.08158995815895687 0.4170746647381524
+0.9660961670483106 0.07949790794975176 0.9660961670483106 0.07949790794975176 0.40938000874467706
+0.9694865503434795 0.07740585774054665 0.9694865503434794 0.07740585774054665 0.40114504277532786
+0.9728769336627391 0.07531380791428753 0.9728769336627391 0.07531380791428753 0.3925787474333651
+0.9762673167443471 0.0732217609480677 0.9762673167443471 0.0732217609480677 0.3839073977788234
+0.9796577001822735 0.07112971327174389 0.9796577001822735 0.07112971327174389 0.37536791508375794
+0.9830480836317734 0.06903765699819836 0.9830480836317735 0.06903765699819836 0.3671994817346771
+0.9864384668193242 0.0669456066945211 0.9864384668193242 0.0669456066945211 0.3596334318981866
+0.9898288501144932 0.06485355648531599 0.9898288501144933 0.06485355648531599 0.35288168646987045
+0.9932192334096621 0.06276150627611088 0.9932192334096621 0.06276150627611088 0.34712451418997614
+0.06694560669456062 0.9932192334096622 0.06694560669456062 0.9932192334096622 0.08432426227725072
+0.06903765690376569 0.9898288501144934 0.06903765690376569 0.9898288501144935 0.08611496216203668
+0.07112970711297074 0.9864384668193246 0.07112970711297074 0.9864384668193246 0.08820419751557675
+0.07322175732217576 0.9830480835241557 0.07322175732217574 0.9830480835241557 0.09051451921899778
+0.07531380753138077 0.9796577002289868 0.07531380753138077 0.9796577002289869 0.0929653484456159
+0.07740585774058574 0.976267316933818 0.07740585774058574 0.976267316933818 0.09547694446722295
+0.07949790794979067 0.9728769336386491 0.07949790794979067 0.9728769336386492 0.09797339306338633
+0.08158995815899561 0.9694865503434802 0.08158995815899561 0.9694865503434801 0.10038468547349122
+0.0836820083682005 0.9660961670483111 0.0836820083682005 0.9660961670483111 0.10264805670293177
+0.08577405857740539 0.9627057837531424 0.08577405857740539 0.9627057837531424 0.10470877330299179
+0.08786610878661032 0.9593154004579735 0.08786610878661032 0.9593154004579735 0.10652053927892056
+0.08995815899581533 0.9559250171628045 0.08995815899581533 0.9559250171628045 0.1080456511078549
+0.09205019973952655 0.9525346382794208 0.09205019973952655 0.9525346382794208 0.1092549932565867
+0.09414220419884445 0.9491442763078789 0.09414220419884445 0.9491442763078789 0.11012794273749094
+0.09623417342549055 0.945753930757982 0.09623417342549055 0.945753930757982 0.11065221791615713
+0.09832616451155067 0.9423635787907213 0.09832616451155067 0.9423635787907213 0.11082366123722953
+0.10041820359145252 0.9389732293275507 0.10041820359145252 0.9389732293275507 0.11064600691306507
+0.10251026837110454 0.9355828916831764 0.10251026837110454 0.9355828916831764 0.11013065532588727
+0.10460236899119606 0.9321924973422281 0.10460236899119606 0.9321924973422281 0.10929641004705049
+0.1066944759771325 0.9288020358609236 0.10669447597713248 0.9288020358609236 0.10816903853926295
+0.10878651869337153 0.9254116031068179 0.10878651869337153 0.9254116031068179 0.10678101701965469
+0.11087856872469466 0.9220212353796758 0.11087856872469466 0.9220212353796758 0.10517100819410352
+0.11296904374265936 0.9186318495675071 0.11296904374265936 0.9186318495675071 0.10338358111480388
+0.11505722583899115 0.9152435667788591 0.11505722583899115 0.9152435667788591 0.10146779881693613
+0.11714502545747352 0.9118555725073727 0.11714502545747352 0.9118555725073726 0.09947654479221311
+0.11923516465071139 0.9084690127663483 0.11923516465071139 0.9084690127663483 0.09746822455022307
+0.12132551373625666 0.9050864978478131 0.12132551373625666 0.9050864978478131 0.09550243822047967
+0.12341320700699053 0.9017080210426109 0.12341320700699053 0.9017080210426108 0.09363617907651627
+0.12551562214886566 0.8983347657140704 0.12551562214886566 0.8983347657140704 0.09193640544636729
+0.12755943131444583 0.8949358147266636 0.12755943131444583 0.8949358147266636 0.09038387369083399
+0.12965821300737176 0.8915345421127889 0.12965821300737176 0.8915345421127888 0.08911365987878023
+0.1317738487188794 0.8881210201092412 0.1317738487188794 0.8881210201092412 0.08813734049923376
+0.1338872734528966 0.8847251387317362 0.1338872734528966 0.8847251387317362 0.08749298807624196
+0.1359814701224561 0.8813360123961246 0.1359814701224561 0.8813360123961246 0.08716892638610345
+0.13807575527502008 0.8779460447957433 0.13807575527502006 0.8779460447957433 0.08717646872104422
+0.14017156978868034 0.874555307838573 0.1401715697886803 0.8745553078385732 0.08750759739318013
+0.14228197111827967 0.8711653845456331 0.14228197111827967 0.8711653845456331 0.0881555982602039
+0.1443760821188103 0.8677831202818138 0.14437608211881028 0.8677831202818139 0.08906196392212778
+0.14646984543295 0.864397280257192 0.14646984543295002 0.864397280257192 0.09019841913136127
+0.14855197522137734 0.8609988644177173 0.14855197522137734 0.8609988644177173 0.09151809522005273
+0.15066586632300097 0.857603388929126 0.15066586632300097 0.857603388929126 0.0930225306979574
+0.15280717141831715 0.8542035472963837 0.15280717141831715 0.8542035472963837 0.09466108701842647
+0.154840745781874 0.8507574120317309 0.154840745781874 0.850757412031731 0.09627164994168504
+0.15699061997819558 0.8472696390593737 0.1569906199781956 0.8472696390593736 0.09803456013756197
+0.15906168849936994 0.8434395781098387 0.15906168849936994 0.8434395781098389 0.09973094726859298
+0.16205667433454918 0.8408324370290436 0.16205667433454918 0.8408324370290436 0.10193254792830224
+0.1630419798443514 0.8371324684439811 0.1630419798443514 0.837132468443981 0.10285443347929432
+0.1656605215418407 0.833501937629612 0.16566052154184072 0.8335019376296121 0.10468585027950518
+0.1686794505071671 0.8311437087846191 0.1686794505071671 0.8311437087846191 0.10650575174663617
+0.16965041295733824 0.8279198852833414 0.1696504129573382 0.8279198852833414 0.10717320003798417
+0.17134823762817103 0.8254053559325425 0.17134823762817103 0.8254053559325425 0.10806050055082647
+0.17297470388641573 0.8227527440192421 0.17297470388641575 0.8227527440192421 0.10893438611341946
+0.1763583220271584 0.8195897444902168 0.1763583220271584 0.8195897444902168 0.11044633177632866
+0.17631096986412145 0.8157865700687718 0.17631096986412145 0.8157865700687718 0.11019465056310764
+0.17952931351740342 0.8095542361783562 0.17952931351740342 0.8095542361783562 0.11085457862324573
+0.17953348101499833 0.8136014880631628 0.17953348101499833 0.8136014880631627 0.11134126791331371
+0.18296198188828205 0.807550526442376 0.18296198188828205 0.807550526442376 0.11181804142684816
+0.18312125854160866 0.8035559187302579 0.18312125854160866 0.8035559187302578 0.11109923194370978
+0.18650482021633694 0.7971193339075967 0.18650482021633694 0.7971193339075967 0.11055246340226178
+0.18659864752540897 0.8014062652641308 0.18659864752540897 0.8014062652641308 0.11172530616231051
+0.1898823347525669 0.7907666759749171 0.1898823347525669 0.7907666759749171 0.10939682471974467
+0.18990291792522931 0.7949231667623687 0.18990291792522931 0.7949231667623687 0.11080410188215639
+0.19325537277262464 0.7845080738218486 0.19325537277262464 0.7845080738218487 0.10771258863319587
+0.19326530012119922 0.7886663357535358 0.19326530012119922 0.7886663357535358 0.1093602221547355
+0.19664568514448108 0.7782291266142769 0.19664568514448108 0.7782291266142769 0.10555853159520623
+0.1966438748087774 0.7824098606617746 0.1966438748087774 0.7824098606617746 0.10739315221530531
+0.20004663966873323 0.776111371046421 0.20004663966873323 0.776111371046421 0.10499421020344456
+0.2034270010211119 0.7698457178543152 0.2034270010211119 0.7698457178543152 0.10235738083043533
+0.2034373925805583 0.7740020663737509 0.2034373925805583 0.7740020663737509 0.10435338018352687
+0.2068126500437856 0.7635863645919702 0.2068126500437856 0.7635863645919702 0.09967681682637443
+0.20681273985750612 0.7677594595313194 0.20681273985750612 0.7677594595313194 0.1016178192425067
+0.21020274041151168 0.7573169512423744 0.21020274041151168 0.7573169512423744 0.09719085845982785
+0.2102018236583126 0.7614949813252022 0.2102018236583126 0.7614949813252022 0.098942800344705
+0.21359353887882682 0.7510440614483797 0.21359353887882682 0.7510440614483797 0.09516782214573799
+0.21359270335373942 0.7552252113171942 0.21359270335373945 0.7552252113171942 0.09660398080559869
+0.21697991062352293 0.7447686622201181 0.21697991062352293 0.7447686622201181 0.09386143287970301
+0.21698280019951757 0.7489515348048288 0.21698280019951757 0.7489515348048288 0.09487455065198523
+0.22034393734668137 0.7384871981976305 0.22034393734668137 0.7384871981976305 0.09346954086845616
+0.22036010333539535 0.7426732694084888 0.22036010333539532 0.7426732694084888 0.09399280539466832
+0.22369511340714102 0.7363868824851406 0.22369511340714102 0.7363868824851406 0.09411096455240825
+0.22700597177414028 0.7342859782128143 0.2270059717741403 0.7342859782128143 0.0951303997664153
+0.2302108996202735 0.7321601540002032 0.2302108996202735 0.7321601540002032 0.0964995286480108
+0.23347385297189555 0.730050376966197 0.23347385297189557 0.7300503769661971 0.0982730708092621
+0.23635072619845215 0.7279966795229804 0.23635072619845213 0.7279966795229803 0.10015994117264425
+0.23905854830190187 0.7266631456388604 0.23905854830190187 0.7266631456388604 0.10210903322130868
+0.24043394949214714 0.7241374433836008 0.2404339494921471 0.7241374433836008 0.103443840761883
+0.2462222808488994 0.7124893499356149 0.2462222808488994 0.7124893499356149 0.10993512173095445
+0.24840479309265356 0.7098025423336303 0.2484047930926536 0.7098025423336303 0.1121670231766092
+0.2500089610710539 0.704353303530099 0.2500089610710539 0.704353303530099 0.1143982303134297
+0.25019758280482995 0.7073816640797101 0.25019758280482995 0.7073816640797101 0.11401373917540772
+0.2542344463304043 0.6952268637562913 0.2542344463304043 0.6952268637562913 0.11875243849576687
+0.25672904911617284 0.6923435458041937 0.25672904911617284 0.6923435458041937 0.12064571031737163
+0.25918287917881644 0.6894738089842042 0.25918287917881644 0.6894738089842042 0.12229596250800738
+0.26821510543553034 0.6747096092146819 0.26821510543553034 0.6747096092146819 0.12564274578779575
+0.263192471461056 0.680288724854767 0.263192471461056 0.680288724854767 0.12426685920025964
+0.26570838282401127 0.6775048317493106 0.26570838282401127 0.6775048317493106 0.1250808146801886
+0.27162055729918155 0.6754232050054754 0.2716205572991815 0.6754232050054753 0.1269414296081353
+0.2616158684672191 0.686627708179659 0.2616158684672191 0.686627708179659 0.1236992987877694
+0.2640773356526473 0.6838105878210179 0.2640773356526473 0.6838105878210179 0.12487199507306683
+0.25268646145825097 0.7018946622788943 0.25268646145825097 0.7018946622788943 0.11678984723728604
+0.2552682321243868 0.6989450193038206 0.2552682321243868 0.6989450193038206 0.11908578115677625
+0.24274694234079114 0.7214252901620695 0.2427469423407911 0.7214252901620695 0.10559830922131587
+0.24509642168026025 0.7185046566798551 0.24509642168026025 0.7185046566798551 0.10795316645185464
+0.2474424013138186 0.7155912366660719 0.2474424013138186 0.7155912366660719 0.11038679556968138
+0.28730292439722593 0.6581998731772193 0.2873029243972259 0.6581998731772193 0.125612715311586
+0.284818248670597 0.6610638853895822 0.284818248670597 0.6610638853895822 0.126135912874206
+0.2823036003224762 0.6639483812347319 0.2823036003224762 0.6639483812347319 0.12662165726386662
+0.27973247039367366 0.6668624649684055 0.27973247039367366 0.6668624649684055 0.12700936951616051
+0.2743491615588039 0.6726658815980605 0.2743491615588039 0.6726658815980605 0.12724149785062835
+0.2770747797667353 0.6697697755547503 0.2770747797667353 0.6697697755547503 0.12722207048714915
+0.2911403315998516 0.6492683112770251 0.2911403315998516 0.6492683112770251 0.12344894719031275
+0.2966679755163418 0.6343740363350294 0.2966679755163418 0.6343740363350294 0.12302601486700258
+0.2991988655283701 0.631517542441816 0.2991988655283701 0.631517542441816 0.12379283101722749
+0.3018019245618972 0.6286007007797182 0.3018019245618972 0.6286007007797182 0.12494284459942566
+0.31078614125614884 0.6131998960419318 0.31078614125614884 0.6131998960419319 0.13523150300588352
+0.3085283686454635 0.6165048276338111 0.30852836864546346 0.6165048276338111 0.1322451409704752
+0.3059866454860259 0.6192587317278946 0.3059866454860259 0.6192587317278946 0.12987413371664072
+0.30343713463064687 0.6220674210153483 0.30343713463064687 0.6220674210153483 0.12784758538053212
+0.30433859149637527 0.6257061500061947 0.30433859149637527 0.6257061500061947 0.12647062590041988
+0.29360228315928255 0.6465108090152196 0.29360228315928255 0.6465108090152195 0.12322849028852358
+0.2951198609555349 0.64049879576337 0.29511986095553494 0.64049879576337 0.12262280189962484
+0.29604825748685404 0.6438006018852966 0.296048257486854 0.6438006018852968 0.12321570453322493
+0.2976258409863485 0.6377820771129835 0.29762584098634853 0.6377820771129835 0.12294692283722837
+0.28976845741339585 0.6553506355207702 0.28976845741339585 0.6553506355207702 0.1251096910759307
+0.2922177733157834 0.6525192926313325 0.2922177733157834 0.6525192926313325 0.1246864999868449
+0.400785459348009 0.44176714504493336 0.40078545934800897 0.44176714504493336 0.4323633882030852
+0.3971786803535664 0.44265180152248695 0.3971786803535664 0.442651801522487 0.38326910876754733
+0.3927711524097447 0.4444938550573735 0.39277115240974464 0.44449385505737343 0.3281807303910896
+0.3954191364278058 0.44446535541327337 0.3954191364278058 0.4444653554132733 0.35278296889209476
+0.38814066761234767 0.4464842659823097 0.3881406676123476 0.4464842659823098 0.28343227253523956
+0.39161676813754176 0.44672184716623176 0.39161676813754176 0.4467218471662317 0.3053072395659751
+0.38681888746640064 0.44897827874582646 0.38681888746640064 0.44897827874582646 0.265463714375715
+0.38296584799524375 0.44971116401509764 0.38296584799524375 0.44971116401509764 0.24958768955395016
+0.38033058627547073 0.45195004293911456 0.38033058627547073 0.45195004293911456 0.24163509266597302
+0.3747384627375884 0.45348984494210776 0.37473846273758843 0.4534898449421077 0.24193298139166422
+0.37812643984657834 0.4541815796688884 0.3781264398465783 0.45418157966888834 0.24187683162225285
+0.3688038458387928 0.45701470574286984 0.3688038458387928 0.4570147057428699 0.2595143042225136
+0.3729706699370007 0.4567472427061762 0.3729706699370006 0.4567472427061762 0.2526509158992598
+0.36767619715355243 0.4598083750732086 0.36767619715355243 0.4598083750732086 0.2735994532009807
+0.3609979844903393 0.4630829130638136 0.3609979844903393 0.4630829130638136 0.30069452977807437
+0.36509185791431026 0.461938965275829 0.36509185791431026 0.461938965275829 0.288442292905077
+0.35966740666100966 0.4661053011011716 0.35966740666100966 0.4661053011011716 0.3181914361059231
+0.35817278849492196 0.46859219008008474 0.35817278849492196 0.4685921900800848 0.33275037220786674
+0.3550595337697972 0.47009569112567184 0.35505953376979715 0.4700956911256719 0.3433250646994393
+0.3528637595928972 0.47317322214114865 0.3528637595928972 0.47317322214114865 0.3592240003827838
+0.351595910945121 0.476312453335647 0.351595910945121 0.4763124533356469 0.3733707813668003
+0.34797401170532105 0.47712399774466696 0.347974011705321 0.477123997744667 0.37750740584394826
+0.3466053892468406 0.4804823620066161 0.3466053892468406 0.4804823620066161 0.3895689793664819
+0.34165185995324027 0.48507936390643963 0.34165185995324027 0.48507936390643963 0.4019585979936156
+0.3453099783357963 0.4839328507399088 0.3453099783357963 0.4839328507399088 0.3998873657284226
+0.34040230381172637 0.4886938003010301 0.34040230381172637 0.4886938003010301 0.4092533747287912
+0.3354538495636655 0.49377767573364295 0.3354538495636655 0.49377767573364295 0.4139871996112596
+0.33927934286371864 0.49232878355877707 0.33927934286371864 0.49232878355877707 0.41435379920542165
+0.33457297564418526 0.4973777965928688 0.33457297564418526 0.4973777965928688 0.4159350254552578
+0.3300572224012813 0.5020911879218379 0.3300572224012814 0.502091187921838 0.41361078813812463
+0.3288142116166056 0.504628157829104 0.3288142116166056 0.504628157829104 0.41167278948913166
+0.33356136119044727 0.5010947723101206 0.33356136119044727 0.5010947723101206 0.41579814724728376
+0.32913067966427706 0.5072779298722243 0.32913067966427706 0.5072779298722243 0.40975211871056133
+0.32532465060657784 0.512126985184376 0.32532465060657784 0.512126985184376 0.40182594313116465
+0.324860253214267 0.5153285528671163 0.324860253214267 0.5153285528671163 0.39611480181636066
+0.3286596440947526 0.5106414260785698 0.3286596440947526 0.5106414260785698 0.40544178780924495
+0.3243633383439477 0.5185780707245047 0.3243633383439477 0.5185780707245047 0.38922435290064294
+0.3207744291615228 0.5234009372497316 0.3207744291615228 0.5234009372497316 0.37690839605809034
+0.3205292490372071 0.5267057798430511 0.3205292490372071 0.5267057798430511 0.36788657289541193
+0.32406285012317193 0.5217761919732428 0.32406285012317193 0.5217761919732428 0.3814932301338784
+0.3203269237117264 0.5300185402512027 0.3203269237117264 0.5300185402512027 0.3580328777605655
+0.31690701809321625 0.5351531486501521 0.31690701809321625 0.5351531486501521 0.34222653364294403
+0.3168542366379239 0.5385505695284044 0.3168542366379239 0.5385505695284044 0.330827738266334
+0.3201851542899538 0.5333503362463959 0.3201851542899538 0.5333503362463959 0.3473990685516198
+0.31686348380150625 0.5419474021223787 0.31686348380150625 0.5419474021223786 0.3189341434244945
+0.31368257532784777 0.5473582361142204 0.31368257532784777 0.5473582361142205 0.30119704834978595
+0.3138481791597403 0.5508441014212587 0.3138481791597403 0.5508441014212587 0.2885074988114911
+0.316923624332264 0.5453749704186958 0.316923624332264 0.5453749704186958 0.30654142630444486
+0.3140936402959142 0.5543359388171969 0.3140936402959142 0.5543359388171969 0.2756311516709579
+0.31124946849151053 0.560012316345215 0.31124946849151053 0.560012316345215 0.2574474795332216
+0.311605819400148 0.5635758714178158 0.3116058194001479 0.5635758714178158 0.2447021572420518
+0.31440019471027264 0.5578309801769071 0.31440019471027264 0.5578309801769071 0.26270970499493096
+0.3120721232030998 0.56717917803482 0.3120721232030998 0.56717917803482 0.23202659912057208
+0.30976422130862263 0.5731292652597488 0.30976422130862263 0.5731292652597489 0.21470350540387292
+0.31027071067640144 0.5767069034628968 0.3102707106764014 0.5767069034628968 0.20339523823479275
+0.3126735545675069 0.570734099974038 0.31267355456750684 0.5707340999740379 0.21979665472946122
+0.31067459704954087 0.5802778731583386 0.31067459704954087 0.5802778731583386 0.19285285019735057
+0.3100646159438687 0.5875304062289409 0.3100646159438687 0.5875304062289409 0.17465564378034246
+0.3108049374498286 0.5903482399113915 0.31080493744982857 0.5903482399113916 0.16789939638594767
+0.31111883772186 0.5843719251422381 0.31111883772185994 0.5843719251422382 0.18175894130420314
+0.3113072304615361 0.5937663797444016 0.3113072304615361 0.5937663797444016 0.16070281229421016
+0.31278437390590336 0.6041565580855927 0.31278437390590336 0.6041565580855927 0.14432520940417293
+0.31232071996134847 0.6006995264392531 0.31232071996134847 0.6006995264392531 0.14886166386580216
+0.3118286829326086 0.59724479943632 0.3118286829326086 0.59724479943632 0.154303335811844
+0.31349258985697903 0.6075783953456713 0.313492589856979 0.6075783953456712 0.14077043584374252
+0.3139319372328898 0.6110397627003609 0.31393193723288976 0.6110397627003609 0.138041596809412
+0.4032536548616439 0.4456355423909735 0.4032536548616439 0.4456355423909735 0.4367108921407894
+0.40563101046459243 0.4492957607435537 0.40563101046459243 0.4492957607435537 0.43629569335213086
+0.4757142986614684 0.38758208982521447 0.4757142986614684 0.38758208982521447 0.48019092693631255
+0.4773496575552543 0.38454925157484904 0.4773496575552543 0.38454925157484904 0.4743975146529145
+0.48045358921449366 0.38074692709915714 0.4804535892144937 0.3807469270991572 0.46447529493362083
+0.47966947439306196 0.3833921535490883 0.47966947439306196 0.3833921535490883 0.47271409180872687
+0.4838423895740825 0.3772945420091533 0.4838423895740825 0.3772945420091533 0.45013577451228576
+0.48301132380517886 0.380358703065252 0.4830113238051789 0.380358703065252 0.46227991331655166
+0.4866423086916723 0.3773014910403854 0.4866423086916723 0.3773014910403854 0.4458955684556923
+0.4880209041054702 0.37453183646435123 0.4880209041054702 0.37453183646435123 0.43136905889877725
+0.4938985505446469 0.36581647888637264 0.4938985505446469 0.36581647888637264 0.37404909308725814
+0.48990922490092687 0.37186968004485704 0.48990922490092687 0.37186968004485704 0.41482906981062634
+0.4919533782289434 0.36894406288626214 0.4919533782289434 0.36894406288626214 0.39510704658323664
+0.5019436574120839 0.358347943305967 0.5019436574120838 0.3583479433059669 0.30309356877628607
+0.49870241604269594 0.36303384795856786 0.49870241604269594 0.36303384795856786 0.3391161572933784
+0.5007670930975046 0.3615856063850303 0.5007670930975046 0.3615856063850303 0.3221679265721664
+0.49769576685312494 0.36629402260493266 0.4976957668531249 0.3662940226049326 0.35840619562301035
+0.5090765584963458 0.3537188469876712 0.5090765584963458 0.3537188469876712 0.24725777905172092
+0.5117827328431895 0.3525940941849849 0.5117827328431895 0.35259409418498494 0.23072584760607429
+0.507594330187278 0.35615073391716534 0.507594330187278 0.3561507339171653 0.26370523721050837
+0.5056844085523112 0.3591328155357174 0.5056844085523112 0.3591328155357174 0.2854846635056749
+0.5224532742814522 0.34611378797835085 0.5224532742814522 0.34611378797835085 0.19063026635074834
+0.5199530776024475 0.348445308348683 0.5199530776024474 0.348445308348683 0.1963440607361868
+0.5175598242442505 0.3507693162842447 0.5175598242442505 0.3507693162842447 0.20623413989219427
+0.515408325968193 0.3531958198094472 0.5154083259681929 0.3531958198094472 0.2194455102397405
+0.5337203457991407 0.3408030422333743 0.5337203457991407 0.3408030422333743 0.22881440879610745
+0.5309721984949041 0.3430239374753763 0.5309721984949042 0.3430239374753763 0.21609175670288128
+0.5283497892538954 0.34528813669407227 0.5283497892538954 0.34528813669407227 0.20750934953784136
+0.5258204269673025 0.3475611137113422 0.5258204269673025 0.3475611137113422 0.20324295352533042
+0.5467878381853987 0.33652607691994685 0.5467878381853987 0.3365260769199469 0.3290568393478706
+0.543127690790712 0.33760888234497627 0.543127690790712 0.3376088823449762 0.29882715346046546
+0.5398917875415425 0.3402920897311148 0.5398917875415425 0.3402920897311148 0.27787003469206617
+0.5371360495846754 0.3425115348171157 0.5371360495846754 0.3425115348171157 0.2606728701331495
+0.5559090536496739 0.3344258520930052 0.5559090536496739 0.3344258520930052 0.4055948997448316
+0.5528255202467193 0.3364797766978269 0.5528255202467193 0.3364797766978269 0.38486953806179264
+0.5497746473628115 0.3384100505723299 0.5497746473628115 0.3384100505723299 0.36319323555651506
+0.5816825423419482 0.3313602565651513 0.5816825423419482 0.3313602565651513 0.5915919322641247
+0.5620201072474972 0.3345185502728054 0.5620201072474972 0.3345185502728054 0.4596089962934771
+0.5589386530962448 0.33619210949697464 0.5589386530962449 0.33619210949697464 0.4393678974800577
+0.5783453854907911 0.33279312621501433 0.5783453854907911 0.33279312621501433 0.5768844375832782
+0.566923024197524 0.33354863029468773 0.566923024197524 0.33354863029468773 0.4965135120016047
+0.569816307562842 0.33381899520182035 0.569816307562842 0.33381899520182035 0.5203148495093193
+0.5750710161339733 0.33424163375874344 0.5750710161339733 0.33424163375874344 0.5610286002076385
+0.5719207348155328 0.33565226879615256 0.5719207348155328 0.33565226879615256 0.5443757570467027
+0.5649279291265419 0.3360088698203697 0.5649279291265419 0.33600886982036965 0.49040276036569036
+0.5973095231635496 0.33178355905725204 0.5973095231635496 0.33178355905725204 0.6705842870132553
+0.5911945831950941 0.33083813469449025 0.5911945831950941 0.33083813469449025 0.6405117744039434
+0.5938589153668418 0.3331423774702795 0.5938589153668418 0.3331423774702795 0.6626599805700502
+0.5877838960388289 0.3322306183474102 0.5877838960388289 0.3322306183474102 0.6298731372198926
+0.5843981082134568 0.33363504118534665 0.584398108213457 0.33363504118534665 0.6177906832897005
+0.47905469027413616 0.3911322616078467 0.47905469027413616 0.3911322616078467 0.4954264806282244
+0.48211909378058315 0.3944450168287524 0.4821190937805832 0.3944450168287524 0.515372597282083
+0.6034806305654212 0.3328113653004233 0.6034806305654213 0.33281136530042327 0.6954411731803991
+0.5999316566747626 0.334110940539571 0.5999316566747624 0.334110940539571 0.6899419062502367
+0.6448673307903704 0.28559653993708023 0.6448673307903704 0.2855965399370803 0.6183605869612291
+0.6483808982273686 0.2848227868014598 0.6483808982273686 0.2848227868014597 0.6207678935759557
+0.6519345865146947 0.2841074349698025 0.6519345865146947 0.2841074349698025 0.6227984346900993
+0.6413917576760757 0.2864137393459603 0.6413917576760757 0.2864137393459603 0.6155806094429875
+0.6379561051997351 0.2872907074800129 0.6379561051997351 0.2872907074800129 0.612499138528707
+0.6345552198567175 0.2881926484345343 0.6345552198567175 0.2881926484345343 0.6090394887380185
+0.6311799960593142 0.2890471186278711 0.6311799960593142 0.2890471186278711 0.6050018698453833
+0.6278353750473448 0.2898146569656346 0.6278353750473448 0.2898146569656346 0.6002660481532011
+0.6229031826208873 0.29376607206797095 0.6229031826208873 0.29376607206797095 0.6008541973010185
+0.6182218517762768 0.29822340795338526 0.6182218517762768 0.29822340795338526 0.6037359726399322
+0.613843939664421 0.30274251566610955 0.613843939664421 0.3027425156661096 0.6076785081124122
+0.608520699076783 0.311087660521334 0.608520699076783 0.311087660521334 0.6233096902327454
+0.6095409542767503 0.30743761453444834 0.6095409542767501 0.30743761453444834 0.6125154632731665
+0.6128609778829631 0.3062931604585936 0.6128609778829631 0.3062931604585936 0.6177250675667681
+0.6089557469592919 0.32078047573753643 0.6089557469592918 0.3207804757375365 0.6617902959383679
+0.6097245596364772 0.3174090686868675 0.6097245596364772 0.3174090686868675 0.6507567337940988
+0.6107913742520468 0.31378504988765415 0.6107913742520469 0.31378504988765415 0.6398178824153556
+0.6172590718559311 0.30189166083343877 0.6172590718559311 0.30189166083343877 0.6135917713550924
+0.6217166397760768 0.29746155318294787 0.6217166397760768 0.29746155318294787 0.6096678269528085
+0.6264995226947137 0.29325136080827063 0.6264995226947137 0.2932513608082706 0.6073430811061944
+0.6555305755754621 0.28345458878977114 0.6555305755754621 0.2834545887897711 0.6244230478841044
+0.6591737232366496 0.28283771911841893 0.6591737232366496 0.2828377191184189 0.6255585475790713
+0.6628715104797299 0.28224221431612323 0.6628715104797299 0.28224221431612323 0.6261531829926152
+0.6666509573889076 0.2816432938758601 0.6666509573889076 0.2816432938758601 0.6261444762582214
+0.6085817502204117 0.32426308684087707 0.6085817502204117 0.32426308684087707 0.6744005587234053
+0.6080499767447537 0.32787928128574606 0.6080499767447537 0.32787928128574606 0.6874913711347159
+0.6071134125843991 0.3315601715435244 0.6071134125843991 0.3315601715435244 0.6998915625533572
+0.676365837126113 0.2771943188417652 0.676365837126113 0.2771943188417652 0.618661679666244
+0.6705991748250281 0.2809634378838879 0.6705991748250281 0.2809634378838879 0.6254167866064049
+0.674402573760862 0.28057875206062494 0.674402573760862 0.28057875206062494 0.6243843897425557
+0.7048643840978038 0.2497876184068688 0.7048643840978038 0.2497876184068688 0.5592514916015691
+0.7084427639818809 0.24949572453393787 0.708442763981881 0.24949572453393784 0.5563978976324054
+0.6994396145769401 0.25340957798083297 0.6994396145769403 0.25340957798083297 0.5679334233790221
+0.6976562980616651 0.2567954473479912 0.6976562980616651 0.2567954473479912 0.574239147264083
+0.6922644529961678 0.2602931598478326 0.6922644529961678 0.2602931598478326 0.5834371911270466
+0.6905069029991289 0.26364427058803547 0.6905069029991289 0.26364427058803547 0.5900390044938099
+0.6851862481398718 0.26704242165976083 0.685186248139872 0.26704242165976083 0.5986642636190643
+0.6834725102656062 0.27036762732577446 0.6834725102656062 0.27036762732577446 0.605019515225083
+0.6817684803512728 0.2737075146209128 0.6817684803512728 0.27370751462091286 0.6112157893479958
+0.6887509885694503 0.26696081103331953 0.6887509885694502 0.26696081103331953 0.5965675657398485
+0.6958736106242283 0.2601714837326032 0.6958736106242283 0.2601714837326032 0.5807533951781422
+0.7031330573413931 0.2531853539207724 0.7031330573413931 0.2531853539207724 0.5649745180175132
+0.68001606158333 0.2770177997492662 0.6800160615833298 0.2770177997492662 0.6171978934797457
+0.7137101079818787 0.24580352090488514 0.7137101079818787 0.24580352090488514 0.5489105790723666
+0.7173092744107885 0.24557239595089217 0.7173092744107885 0.24557239595089217 0.5463930092333981
+0.7119148590421572 0.2491335529921473 0.7119148590421572 0.24913355299214726 0.5534488881165837
+0.7229883367340545 0.24218745312710332 0.7229883367340545 0.24218745312710332 0.5409057181760483
+0.7209434860591548 0.24543109724725123 0.7209434860591548 0.24543109724725123 0.543983225862919
+0.7384754003783932 0.2203167829715319 0.7384754003783932 0.22031678297153193 0.5335427753978426
+0.7363705323727867 0.22364610697584061 0.7363705323727867 0.22364610697584061 0.5336213895701275
+0.7342596147621693 0.22695521404465038 0.7342596147621693 0.22695521404465038 0.5338417496088309
+0.7267308066853525 0.24229905709049235 0.7267308066853525 0.24229905709049235 0.5389526264209014
+0.7291137530813568 0.23951750973948316 0.7291137530813568 0.2395175097394832 0.5369488546637214
+0.7283869018496539 0.2364898417958157 0.7283869018496539 0.23648984179581573 0.5362235432835339
+0.7298574122022455 0.23355494197476057 0.7298574122022455 0.2335549419747606 0.5352159029383116
+0.7320987690432782 0.23026628492114734 0.7320987690432782 0.23026628492114734 0.5343382126731065
+0.7447628208739179 0.2169715624670604 0.7447628208739179 0.21697156246706042 0.5339664810964936
+0.742663437704672 0.22033478328999934 0.742663437704672 0.22033478328999934 0.533925235846275
+0.7510454352809829 0.21359303090711582 0.7510454352809829 0.21359303090711582 0.5340862259765605
+0.7489501654843448 0.21697624044232 0.7489501654843448 0.21697624044232003 0.5342643225370588
+0.7573240341619897 0.2102028940527341 0.7573240341619897 0.2102028940527341 0.5333983161598662
+0.7552319874577355 0.21359185461484007 0.7552319874577355 0.21359185461484007 0.5340873760951969
+0.7636011479824009 0.2068086989232807 0.7636011479824009 0.2068086989232807 0.5315129377519082
+0.7615088139121906 0.21019652575048045 0.7615088139121906 0.21019652575048045 0.5329204835748861
+0.7698786755820656 0.20341171982116305 0.7698786755820656 0.20341171982116305 0.5281914285760295
+0.7677828133211068 0.20679537425269937 0.7677828133211068 0.20679537425269937 0.5304256644223794
+0.7782572490226286 0.1966289435445572 0.7782572490226286 0.1966289435445572 0.5197236563955075
+0.7761621196260262 0.20001338580590203 0.7761621196260262 0.20001338580590203 0.5233625802619642
+0.7740623351569208 0.20339331922156292 0.7740623351569208 0.20339331922156292 0.52642749697132
+0.7845455272236626 0.19323026162919507 0.7845455272236626 0.19323026162919507 0.5128285038948103
+0.782451111746385 0.196613557007554 0.782451111746385 0.196613557007554 0.5171137639819289
+0.7908342863436265 0.18981210321775 0.7908342863436265 0.18981210321775 0.5049112434534707
+0.7887461379310975 0.19319823443376416 0.7887461379310975 0.19319823443376416 0.5096533654475331
+0.7971110263545786 0.18642505107772972 0.7971110263545786 0.1864250510777297 0.4963446746200298
+0.7950212456738002 0.18979003741183942 0.7950212456738002 0.18979003741183942 0.5013134981606466
+0.8033385154988578 0.18296405262835905 0.8033385154988578 0.18296405262835905 0.48740129861714676
+0.8012558558629295 0.1863483249704232 0.8012558558629294 0.1863483249704232 0.4924319989019434
+0.8096317760108989 0.1795509743267221 0.8096317760108988 0.1795509743267221 0.4783215725772933
+0.8074672773265427 0.18289818102926136 0.8074672773265427 0.18289818102926136 0.4833119740364073
+0.8138509465358351 0.17941302961708422 0.8138509465358351 0.1794130296170842 0.4739566558310467
+0.8158877529384722 0.1760083743734783 0.8158877529384722 0.1760083743734783 0.4692539102308943
+0.8199907018658736 0.17591640358046162 0.8199907018658736 0.17591640358046165 0.46493880175056274
+0.8220900549553395 0.1727050695323806 0.8220900549553395 0.1727050695323806 0.4604713907060268
+0.8261168484443305 0.1724848578520385 0.8261168484443305 0.1724848578520385 0.45613190907576356
+0.828107749790805 0.16930399676404484 0.828107749790805 0.16930399676404484 0.4518452484239064
+0.830688891522694 0.16650185231572445 0.8306888915226941 0.16650185231572445 0.4473958347337973
+0.8306279629862487 0.1694029523197494 0.8306279629862487 0.1694029523197494 0.4490296780491676
+0.8342239533821403 0.1658507525307801 0.8342239533821403 0.1658507525307801 0.4430284270333168
+0.8370284584095993 0.16306988350197815 0.8370284584095993 0.16306988350197815 0.4383857649509673
+0.8407636787497208 0.16204392328635325 0.8407636787497207 0.16204392328635325 0.4333418356230771
+0.8434168299703778 0.15912386809246748 0.8434168299703779 0.1591238680924675 0.42865550071391867
+0.847339552883676 0.15720868416221717 0.8473395528836761 0.15720868416221714 0.4228366608367531
+0.8508542791732191 0.15514997683401835 0.8508542791732191 0.15514997683401835 0.4172596099864005
+0.8542054539361521 0.15296429524165267 0.8542054539361521 0.15296429524165267 0.4118933197345897
+0.8575054449581415 0.1508778794279559 0.8575054449581415 0.1508778794279559 0.40662556552583223
+0.8610048865424509 0.14878413542294433 0.861004886542451 0.14878413542294433 0.4012669139767469
+0.8644321749964763 0.1466798534328698 0.8644321749964764 0.1466798534328698 0.3961937844527339
+0.867816571119432 0.1445403934836044 0.867816571119432 0.1445403934836044 0.391498438418925
+0.871196215670184 0.14239477403869827 0.8711962156701841 0.14239477403869827 0.387265596129124
+0.8746008325084625 0.14028385949865219 0.8746008325084625 0.14028385949865219 0.3836469725223295
+0.8779882146727999 0.1381971423463489 0.8779882146727999 0.13819714234634886 0.38077446141795507
+0.8813676162083937 0.13610096754420914 0.8813676162083937 0.1361009675442091 0.3787515461364448
+0.8847506728651217 0.13399059913924996 0.8847506728651217 0.13399059913924996 0.37768009822993415
+0.8881289794412304 0.13189789989349143 0.8881289794412304 0.13189789989349143 0.37762082764710797
+0.8914938804992749 0.1298102726784616 0.8914938804992749 0.1298102726784616 0.378591106230054
+0.894865469655194 0.12771019154365662 0.894865469655194 0.12771019154365662 0.3805875795110949
+0.8982577569905819 0.12559044088808646 0.8982577569905817 0.12559044088808646 0.38358315550182337
+0.9016606804199082 0.1234726549804621 0.9016606804199082 0.1234726549804621 0.3874617384580467
+0.9050608798353509 0.12136422975272314 0.9050608798353509 0.12136422975272314 0.39206240537175746
+0.9084557422553229 0.11926257476213908 0.9084557422553229 0.11926257476213908 0.39720755530597524
+0.9118485312597023 0.11716342550633445 0.9118485312597023 0.11716342550633445 0.40270987170133576
+0.9152399305242249 0.11506671379949933 0.9152399305242248 0.11506671379949933 0.4083624172200282
+0.9186308009159454 0.11297071129703351 0.9186308009159454 0.11297071129703351 0.4139574427491706
+0.9220211842111143 0.1108786610878284 0.9220211842111145 0.1108786610878284 0.4192801269642508
+0.9254115675062833 0.10878661087862329 0.9254115675062833 0.10878661087862329 0.4241432897500394
+0.9288019508014522 0.10669456066941818 0.9288019508014521 0.10669456066941818 0.42836722284863965
+0.9321923340966212 0.10460251046021307 0.9321923340966212 0.10460251046021307 0.4317933138633601
+0.9355827173917901 0.10251046025100796 0.9355827173917902 0.10251046025100796 0.4342879368892128
+0.938973100686959 0.10041841004180285 0.938973100686959 0.10041841004180285 0.43574528285653163
+0.942363483982128 0.09832635983259774 0.9423634839821279 0.09832635983259774 0.43608944841344455
+0.9457538672772969 0.09623430962339263 0.9457538672772969 0.09623430962339263 0.4352760560662386
+0.9491442505724659 0.09414225941418752 0.949144250572466 0.09414225941418752 0.43329338623664354
+0.9525346338676348 0.09205020920498244 0.9525346338676348 0.09205020920498243 0.4301629395458521
+0.9559250171628038 0.0899581589957773 0.9559250171628036 0.0899581589957773 0.4259394587161555
+0.9593154004579727 0.0878661087865722 0.9593154004579727 0.0878661087865722 0.42071046626997327
+0.9627057837531416 0.08577405857736708 0.9627057837531418 0.08577405857736708 0.414595284827801
+0.9660961670483106 0.08368200836816198 0.9660961670483106 0.08368200836816198 0.4077433858584269
+0.9694865503434795 0.08158995815895687 0.9694865503434794 0.08158995815895687 0.40033185908645147
+0.9728769336437524 0.07949790812939413 0.9728769336437523 0.07949790812939413 0.39256182517627286
+0.9762673169258362 0.07740585839313326 0.9762673169258363 0.07740585839313326 0.3846535370087323
+0.9796577002048151 0.07531380926360072 0.9796577002048151 0.07531380926360072 0.3768398700592342
+0.9830480835771628 0.07322175731001468 0.9830480835771628 0.07322175731001468 0.36935800977648353
+0.9864384668193242 0.07112970711293132 0.9864384668193242 0.07112970711293132 0.36243933129989786
+0.9898288501144932 0.06903765690372621 0.9898288501144933 0.06903765690372621 0.35629774599988
+0.9932192334096621 0.0669456066945211 0.9932192334096621 0.0669456066945211 0.3511172331954466
+0.07112970711297067 0.9932192334096622 0.07112970711297067 0.9932192334096622 0.0856983348490505
+0.0732217573221757 0.9898288501144934 0.07322175732217572 0.9898288501144935 0.08742571117998675
+0.07531380753138071 0.9864384668193246 0.07531380753138071 0.9864384668193246 0.08944602512720812
+0.07740585774058573 0.9830480835241556 0.07740585774058573 0.9830480835241556 0.09168090034789
+0.07949790794979068 0.9796577002289868 0.07949790794979068 0.9796577002289869 0.09404964034135653
+0.08158995815899563 0.976267316933818 0.08158995815899563 0.976267316933818 0.09647314511042043
+0.08368200836820054 0.972876933638649 0.08368200836820054 0.972876933638649 0.09887681757140158
+0.08577405857740554 0.9694865503434799 0.08577405857740554 0.9694865503434799 0.1011925482392353
+0.08786610878661046 0.9660961670483109 0.08786610878661046 0.9660961670483109 0.1033599574415001
+0.08995815899581545 0.9627057837531421 0.08995815899581545 0.9627057837531421 0.10532708973648637
+0.09205020920502055 0.9593154004579731 0.09205020920502055 0.959315400457973 0.1070507301301435
+0.09414225941422572 0.9559250171628043 0.09414225941422572 0.9559250171628043 0.10849647232415426
+0.09623430962343094 0.9525346338676357 0.09623430962343094 0.9525346338676357 0.10963863042018192
+0.09832635983263624 0.9491442505724669 0.09832635983263625 0.9491442505724669 0.1104600524837918
+0.1004184100418412 0.9457538672772984 0.1004184100418412 0.9457538672772984 0.11095187053177184
+0.10251046025104588 0.9423634839821303 0.10251046025104586 0.9423634839821303 0.11111321011051208
+0.10460251046025083 0.9389731006869617 0.10460251046025083 0.9389731006869617 0.11095086943240044
+0.10669456066945553 0.9355827173917928 0.10669456066945553 0.9355827173917927 0.11047896623216587
+0.10878661087866041 0.9321923340966238 0.10878661087866041 0.9321923340966238 0.10971851947739113
+0.11087866108786582 0.9288019508014544 0.11087866108786582 0.9288019508014544 0.1086969869359188
+0.11297071129707403 0.9254115675062856 0.11297071129707403 0.9254115675062856 0.10744774796840638
+0.11506276150628808 0.9220211842111192 0.11506276150628807 0.9220211842111192 0.10600949950970985
+0.11715340411055027 0.9186312700775217 0.11715340411055027 0.9186312700775217 0.10442541835386927
+0.11924294767334899 0.9152417738271629 0.11924294767334899 0.9152417738271629 0.10274250184897053
+0.12133283925526268 0.9118532500109374 0.12133283925526268 0.9118532500109374 0.10101158700609057
+0.12342371417017678 0.9084669554762224 0.1234237141701768 0.9084669554762224 0.09928566412046136
+0.12551469968440676 0.9050834045101971 0.12551469968440676 0.9050834045101971 0.097616704106053
+0.127605107106153 0.9017005474409978 0.127605107106153 0.9017005474409977 0.09605302196332333
+0.12968759292808135 0.8983119269157288 0.12968759292808138 0.8983119269157288 0.09463003224303762
+0.13177171531332266 0.8949156353503928 0.13177171531332266 0.8949156353503928 0.09339564303719804
+0.13386917023898712 0.8915170214636389 0.13386917023898712 0.8915170214636389 0.09239931471856376
+0.1359721153160397 0.8881195078863396 0.1359721153160397 0.8881195078863396 0.09166784249138606
+0.1380731564357536 0.8847261092921664 0.1380731564357536 0.8847261092921664 0.09121496426867635
+0.1401665011461424 0.8813362175194871 0.1401665011461424 0.8813362175194871 0.09104192063988799
+0.142259803914359 0.8779460026216397 0.142259803914359 0.8779460026216396 0.09115094172272188
+0.14435347647631647 0.8745555662236839 0.14435347647631647 0.8745555662236839 0.09153162039417341
+0.1464463498581311 0.8711658696893851 0.1464463498581311 0.871165869689385 0.09216363042574542
+0.14853949422099327 0.86777675707105 0.14853949422099325 0.8677767570710501 0.09302140270338083
+0.1506341628201607 0.8643868238597401 0.1506341628201607 0.8643868238597401 0.09407560890281556
+0.1527286184025082 0.86099235992606 0.1527286184025082 0.86099235992606 0.09529198292834423
+0.15483171661514172 0.8575953762383224 0.15483171661514172 0.8575953762383223 0.09664352001288744
+0.15693115122705634 0.8541810919662614 0.15693115122705634 0.8541810919662612 0.0980816965751633
+0.15901305189812429 0.8507472331593936 0.15901305189812429 0.8507472331593936 0.09956921879081503
+0.1610509163413282 0.8472732722154327 0.1610509163413282 0.8472732722154327 0.101046861173739
+0.16326305488553838 0.8440037606733743 0.16326305488553838 0.8440037606733742 0.10265438444970877
+0.16549009846249435 0.8406499294044065 0.16549009846249432 0.8406499294044066 0.10421051568117257
+0.16745404502229638 0.8372220191383644 0.16745404502229636 0.8372220191383644 0.10556905883705255
+0.16977410607493182 0.8340766783637439 0.16977410607493182 0.8340766783637438 0.10704132181568983
+0.17183117777238927 0.8309688262317975 0.1718311777723893 0.8309688262317975 0.10825944064845537
+0.1737597267554916 0.826946238468355 0.1737597267554916 0.8269462384683549 0.10935026144716388
+0.17671447068441665 0.8236176767939702 0.17671447068441662 0.8236176767939704 0.11069779128261938
+0.17921369898198597 0.8211308301469736 0.17921369898198597 0.8211308301469737 0.1117217905729682
+0.18007916332325896 0.8175574128571076 0.180079163323259 0.8175574128571076 0.11193349955152895
+0.1826938483037873 0.8114390072737131 0.1826938483037873 0.8114390072737131 0.11229118176722995
+0.18245035780511681 0.8146507528638129 0.18245035780511681 0.8146507528638128 0.11258630307442508
+0.18544638873688912 0.8097511254781667 0.18544638873688912 0.8097511254781666 0.11302865094431773
+0.1869339740319353 0.8060939085589391 0.18693397403193532 0.806093908558939 0.11291986203500191
+0.18995694318791026 0.7990434923283528 0.18995694318791026 0.7990434923283528 0.11208545130253138
+0.19013844615514108 0.8030861979088355 0.19013844615514108 0.8030861979088355 0.11324413707834068
+0.19328641307899708 0.7928062010335748 0.19328641307899708 0.7928062010335748 0.11091601434272745
+0.19329937569499175 0.7969010402951588 0.19329937569499175 0.7969010402951588 0.11234009522800813
+0.19664234045802065 0.7865895680024955 0.19664234045802065 0.7865895680024955 0.10919168768830835
+0.19665514575538004 0.790727481711757 0.19665514575538004 0.790727481711757 0.11090049747162245
+0.20005185526028677 0.7802838802727471 0.20005185526028677 0.7802838802727471 0.10694446461161854
+0.200036589704183 0.7844589945626737 0.200036589704183 0.7844589945626738 0.10887983318491634
+0.20346433501614916 0.7781475222378343 0.20346433501614916 0.7781475222378343 0.10639893923879673
+0.20681513820353703 0.7719107319650709 0.20681513820353703 0.7719107319650709 0.10367632354380195
+0.20683542518721326 0.7760360525118797 0.2068354251872133 0.7760360525118797 0.10580344148089373
+0.210200638505438 0.7656714666599607 0.210200638505438 0.7656714666599607 0.10089805400911052
+0.21019784748460926 0.7698420345169912 0.21019784748460926 0.7698420345169912 0.10300933265093336
+0.21359038717285883 0.7594002944973638 0.21359038717285883 0.7594002944973638 0.09830936991913936
+0.21358852679553025 0.7635743355611899 0.21358852679553023 0.7635743355611898 0.1002477931473678
+0.21698279738674206 0.7531333592885864 0.21698279738674206 0.7531333592885864 0.09621011302115941
+0.21697863157127398 0.7573054821734916 0.21697863157127398 0.7573054821734916 0.09783832052522316
+0.22036897760670313 0.7468571675103037 0.22036897760670313 0.7468571675103037 0.09486333769067513
+0.22037259696322842 0.7510399862785082 0.22037259696322842 0.7510399862785082 0.09607104087591196
+0.22373241621424497 0.7405732628000656 0.22373241621424497 0.7405732628000656 0.09447719895984576
+0.2237519352518962 0.7447585573802463 0.2237519352518962 0.7447585573802463 0.09518825558993417
+0.22709949146793107 0.7384718555789139 0.2270994914679311 0.7384718555789139 0.09535244992624521
+0.23043458610266407 0.7363803609494398 0.23043458610266407 0.7363803609494398 0.09662840227259507
+0.23380913141189202 0.7343653344156986 0.233809131411892 0.7343653344156986 0.09833363915461857
+0.23696159833908462 0.732002862243282 0.23696159833908462 0.732002862243282 0.10030503026646974
+0.2395554633108007 0.7298267507916226 0.23955546331080066 0.7298267507916226 0.10222174498541452
+0.24191168589797674 0.7272287525214299 0.2419116858979767 0.7272287525214299 0.10420707464692729
+0.24409213826105225 0.7245383853271347 0.24409213826105222 0.7245383853271347 0.10625835639181115
+0.249716500603821 0.7126536564907453 0.24971650060382097 0.7126536564907453 0.11279312485316058
+0.25172407202730074 0.7097079155631876 0.2517240720273008 0.7097079155631877 0.1149521213486306
+0.25340049489871397 0.706396901373723 0.253400494898714 0.706396901373723 0.11681784084027756
+0.2577660690313014 0.69598477141693 0.25776606903130134 0.69598477141693 0.1211237344316833
+0.27509348372499776 0.6759429724431453 0.2750934837249978 0.6759429724431453 0.12844642282169258
+0.2602039277650393 0.6930571929818786 0.26020392776503926 0.6930571929818786 0.12289908647292065
+0.26259075871978316 0.6901690565378722 0.26259075871978316 0.6901690565378722 0.12440567479685917
+0.2691649863632962 0.6782812016867127 0.2691649863632963 0.6782812016867127 0.12653272148197223
+0.2666667293114281 0.6810792370529302 0.26666672931142804 0.6810792370529302 0.12586701334741202
+0.2723664510736955 0.6788342515147665 0.27236645107369556 0.6788342515147665 0.12806568010335698
+0.2649342631589717 0.6873200006148793 0.2649342631589717 0.6873200006148793 0.12564407962084354
+0.26735321919863053 0.6844609326734556 0.26735321919863053 0.6844609326734555 0.12667661070121097
+0.25636139104275696 0.702805721255729 0.25636139104275696 0.702805721255729 0.11962398108053596
+0.25886775790456834 0.6996721515371095 0.25886775790456834 0.6996721515371095 0.12180643645819529
+0.2463779683901205 0.7217107494576401 0.24637796839012047 0.7217107494576401 0.10855090402738861
+0.24868122441874255 0.7187992530282816 0.24868122441874255 0.7187992530282816 0.11097335216014463
+0.250958471149832 0.7158467316628799 0.250958471149832 0.7158467316628799 0.11342534435173941
+0.29092871725949815 0.6586242737167062 0.29092871725949815 0.6586242737167062 0.126848488742724
+0.2884859190291884 0.6615110296666007 0.2884859190291884 0.6615110296666007 0.12736480384890145
+0.28601894589507965 0.6644203091421385 0.28601894589507965 0.6644203091421385 0.12788710876848333
+0.28351036671185426 0.6673696837016321 0.2835103667118543 0.6673696837016321 0.12836047327536856
+0.2808799455657923 0.6704237471800563 0.2808799455657924 0.6704237471800562 0.12872727718696367
+0.27814041360410413 0.6738123914771468 0.27814041360410413 0.6738123914771467 0.12900490998566727
+0.2946466481049376 0.6497234847325447 0.2946466481049376 0.6497234847325447 0.12440450986695333
+0.30017171283510347 0.6350022917603707 0.3001717128351035 0.6350022917603707 0.12357533444724998
+0.3027464958126369 0.6321541744501696 0.3027464958126369 0.6321541744501696 0.12457407313231329
+0.30527115474027694 0.6293095521401098 0.30527115474027694 0.6293095521401098 0.12594654797790916
+0.3145155446784601 0.6144303428831525 0.31451554467846016 0.6144303428831525 0.13621839821247858
+0.31194010019589724 0.6171443003374404 0.31194010019589724 0.6171443003374404 0.13325460186654034
+0.3094444192760798 0.6200149680637483 0.30944441927607974 0.6200149680637485 0.13065066727862376
+0.30689938517277154 0.6228461249445482 0.30689938517277154 0.6228461249445482 0.12837995433147217
+0.30781293468462523 0.6264395362642147 0.30781293468462523 0.6264395362642147 0.127728188891874
+0.29704139931566576 0.6470072261911936 0.29704139931566576 0.6470072261911936 0.12432736349002037
+0.2985171448494002 0.6411069370559795 0.2985171448494002 0.6411069370559795 0.12346220365293421
+0.29939491954821 0.6443827377609392 0.29939491954821 0.6443827377609392 0.1244868337213391
+0.3010850288112276 0.6385428569043012 0.3010850288112276 0.6385428569043013 0.12403352056839252
+0.29335329648630887 0.655752392855932 0.29335329648630887 0.655752392855932 0.12639515163657536
+0.2957586341880636 0.6528994661501565 0.2957586341880636 0.6528994661501565 0.12606354628392522
+0.39844780988360484 0.4459040576997826 0.3984478098836049 0.4459040576997825 0.3744663117203783
+0.3949536072958566 0.44693705330517075 0.3949536072958566 0.4469370533051707 0.331342541392515
+0.3903614008775445 0.4489443674510345 0.3903614008775445 0.4489443674510345 0.28407469220743303
+0.3933452305117695 0.4488313636351878 0.3933452305117695 0.4488313636351878 0.3048911155953609
+0.3861824033448713 0.4516930521120367 0.3861824033448713 0.45169305211203664 0.2535661388494023
+0.38941398101658214 0.45130507255147334 0.38941398101658214 0.45130507255147334 0.26711572155352586
+0.38338902721638923 0.45275839632551634 0.3833890272163893 0.45275839632551634 0.24493933896479328
+0.38124124608189136 0.4541634172510265 0.38124124608189136 0.4541634172510265 0.24214363598395564
+0.38592783421770305 0.4538547862918275 0.38592783421770305 0.4538547862918275 0.2475497733649822
+0.37677378997870753 0.4566116444288537 0.37677378997870753 0.45661164442885377 0.24766387614467936
+0.3805216999112285 0.45652721444700045 0.3805216999112285 0.45652721444700045 0.24449052168551252
+0.3750126790301878 0.459216724585129 0.3750126790301878 0.459216724585129 0.25888915349545133
+0.37114332331903027 0.46014002946281163 0.37114332331903027 0.4601400294628117 0.2692854390345099
+0.36851039179252626 0.46216229902389594 0.36851039179252626 0.46216229902389594 0.28378734176400516
+0.37379457758474066 0.4619641284597618 0.37379457758474066 0.4619641284597618 0.2731119027562656
+0.3634352919850568 0.465523038650776 0.3634352919850568 0.465523038650776 0.3099761820451952
+0.3673601161141994 0.46491512458862744 0.36736011611419933 0.46491512458862744 0.3005220185455722
+0.3618019780376 0.46911268756724767 0.3618019780376 0.4691126875672476 0.33156031817127934
+0.35864098305939157 0.4714586333872975 0.35864098305939157 0.4714586333872975 0.3469244590852954
+0.3559518236428579 0.4730946355047614 0.3559518236428579 0.4730946355047614 0.35690781658081194
+0.35508578429164067 0.47565241950606646 0.35508578429164067 0.47565241950606646 0.3692168400843274
+0.3539223294107283 0.47859249123046566 0.3539223294107283 0.4785924912304656 0.382071086207956
+0.3503639612281552 0.47956069401027235 0.3503639612281552 0.4795606940102724 0.3862586212293964
+0.3491166221980281 0.4828402948062541 0.34911662219802814 0.48284029480625407 0.3973584551847353
+0.3441061467201858 0.4874723601149298 0.3441061467201858 0.4874723601149298 0.40824659513942024
+0.3477282656369163 0.48635161434870944 0.3477282656369163 0.4863516143487095 0.4068824560068454
+0.3429662716208973 0.49099918320659963 0.3429662716208974 0.49099918320659963 0.41431764534711535
+0.3382748720643122 0.4959817832380417 0.3382748720643122 0.4959817832380417 0.4172714720167506
+0.3419384270733732 0.49456190400384653 0.3419384270733732 0.49456190400384653 0.41821083231447337
+0.3372974584187582 0.4996901861314529 0.3372974584187582 0.49969018613145283 0.41800998788253824
+0.3320447250034373 0.5051765784711365 0.33204472500343724 0.5051765784711365 0.4131915920660151
+0.3363551347330198 0.5035756328301227 0.3363551347330198 0.5035756328301227 0.41649989308482865
+0.33201937464671566 0.509020608491031 0.33201937464671566 0.509020608491031 0.4091537922269883
+0.32811687405157697 0.5139613625026038 0.32811687405157697 0.5139613625026039 0.3997912972827366
+0.3276021000539837 0.5169746732529745 0.3276021000539837 0.5169746732529745 0.3935583735078989
+0.3314634841675229 0.5125961055733342 0.33146348416752286 0.5125961055733342 0.40345658805065066
+0.3271353887596641 0.520222765938669 0.32713538875966414 0.520222765938669 0.38584725627557037
+0.32385887960017934 0.525039059622002 0.32385887960017934 0.525039059622002 0.37267979692158143
+0.32361972300146946 0.52828265219632 0.32361972300146946 0.52828265219632 0.36305403321364693
+0.32718003149404495 0.5232702452279494 0.32718003149404495 0.5232702452279493 0.3777799345826299
+0.3234301978189295 0.5315628421985721 0.3234301978189295 0.5315628421985722 0.35256554651759536
+0.32011081792582335 0.5366915846996673 0.32011081792582335 0.5366915846996673 0.3361044401317044
+0.3201028318023281 0.5400341970937336 0.3201028318023282 0.5400341970937336 0.32427170216600537
+0.32331910669090874 0.5348460988252571 0.32331910669090874 0.5348460988252571 0.3413996146244092
+0.3201431010762584 0.5434076712453414 0.3201431010762584 0.5434076712453414 0.3119042808564086
+0.31705398952616526 0.5488021603438439 0.31705398952616526 0.5488021603438439 0.2938578199896154
+0.3172565847327221 0.5522375234431868 0.31725658473272217 0.5522375234431868 0.28096155045439897
+0.32024073626341043 0.5467818323705723 0.3202407362634104 0.5467818323705723 0.29921810556652156
+0.31752826161300746 0.5556789605527809 0.31752826161300746 0.5556789605527809 0.26797966251599786
+0.3147607210447511 0.5613270390504032 0.3147607210447511 0.5613270390504032 0.24988149314503924
+0.3151840294620541 0.564846434681018 0.3151840294620541 0.564846434681018 0.237191627118486
+0.31786744400439976 0.5591149175016513 0.31786744400439976 0.5591149175016513 0.255081289755551
+0.31569432221423593 0.5683589743033002 0.31569432221423593 0.5683589743033002 0.22485273932568253
+0.3132735893872514 0.5742790120924045 0.3132735893872514 0.5742790120924045 0.20814686312481667
+0.3138143279934478 0.5778567790753193 0.3138143279934478 0.5778567790753194 0.1971446926768509
+0.3162635542602867 0.5718652131005878 0.3162635542602867 0.5718652131005878 0.2130228477686522
+0.31435386779877467 0.5814997623568117 0.31435386779877467 0.5814997623568116 0.18679813187470717
+0.31297892565635027 0.5876993258103067 0.31297892565635027 0.5876993258103066 0.17248096793181691
+0.3138611966395561 0.5912041093158077 0.3138611966395561 0.5912041093158077 0.1646348497620932
+0.31537343115858 0.5850696248268232 0.31537343115858 0.5850696248268231 0.17725274360172752
+0.31453464512570484 0.5947087720515329 0.3145346451257049 0.5947087720515328 0.1579216989365919
+0.315775818036376 0.6049706746053793 0.31577581803637594 0.6049706746053793 0.14397971780927474
+0.3155187142701678 0.6014972386626121 0.3155187142701678 0.6014972386626121 0.14785087346231954
+0.3151437115108176 0.5982408307886423 0.3151437115108176 0.5982408307886423 0.1522521332303937
+0.31645125458813095 0.6084064693946623 0.3164512545881309 0.6084064693946623 0.1412485789933753
+0.31716746359375536 0.6117776506342297 0.31716746359375536 0.6117776506342297 0.13946698909833188
+0.31791590803011155 0.6151823208195211 0.31791590803011155 0.6151823208195211 0.13849958103919524
+0.401111257138234 0.44967900593099563 0.401111257138234 0.4496790059309957 0.3723442901279182
+0.40362635464580215 0.45323690553553475 0.40362635464580215 0.4532369055355348 0.36461035573238276
+0.48041050827566517 0.3867507334068775 0.48041050827566517 0.38675073340687754 0.4845806664724917
+0.48216848491193687 0.38367893371091005 0.4821684849119369 0.38367893371091005 0.4746123935248569
+0.48564490125372634 0.38017560716102317 0.48564490125372634 0.38017560716102317 0.4593472283910512
+0.4847415444920632 0.38271099924964813 0.4847415444920632 0.38271099924964813 0.47070549448026755
+0.4891844272437386 0.3775214486706766 0.4891844272437386 0.3775214486706766 0.4417501429388411
+0.4881934116702044 0.380085168760307 0.4881934116702044 0.380085168760307 0.4556541526612136
+0.4909159251613482 0.37532518665420617 0.4909159251613482 0.37532518665420617 0.4271002697404671
+0.49140536032891224 0.3778867091016447 0.49140536032891224 0.3778867091016447 0.4380437824993
+0.49542124537354737 0.3694418886435655 0.4954212453735474 0.3694418886435655 0.38307771828069465
+0.49360964723509226 0.3732052232372267 0.4936096472350923 0.37320522323722677 0.40806658662257206
+0.5037779675501165 0.3619032081313681 0.5037779675501165 0.36190320813136806 0.30717340092005957
+0.49834089280901117 0.36981201269923536 0.4983408928090112 0.3698120126992354 0.3713433913723654
+0.5013840373682547 0.36503118905854504 0.5013840373682547 0.365031189058545 0.3338095744164929
+0.5003791502983994 0.36811401580939995 0.5003791502983994 0.36811401580939995 0.353057431001173
+0.5108276692131503 0.35617018314371024 0.5108276692131503 0.35617018314371024 0.24781080899511324
+0.5136323992456935 0.3554220233220982 0.5136323992456935 0.3554220233220982 0.2332545462645212
+0.5094231730168656 0.36005531752059955 0.5094231730168656 0.36005531752059955 0.2698336328383774
+0.5070804589078934 0.3629918183157286 0.5070804589078933 0.3629918183157286 0.29408741044993403
+0.5233604178665264 0.34995819427897445 0.5233604178665264 0.34995819427897445 0.20382450245462372
+0.5207234487584971 0.35188083448830865 0.5207234487584972 0.35188083448830865 0.20731778935528045
+0.5183340012362301 0.3542175333227826 0.5183340012362301 0.3542175333227826 0.21677306176686165
+0.5162222289998953 0.3565856003789896 0.5162222289998953 0.3565856003789896 0.22954676917654535
+0.534408033688366 0.34468479543217795 0.534408033688366 0.34468479543217795 0.24511282837471107
+0.5317176749875128 0.3468543631833852 0.5317176749875127 0.3468543631833852 0.232121765311565
+0.5291274026226627 0.349030198137668 0.5291274026226627 0.349030198137668 0.22287876040146284
+0.526616702042677 0.35132585340175065 0.526616702042677 0.35132585340175065 0.21814925891842615
+0.5466017029784312 0.34016201179527156 0.5466017029784312 0.34016201179527156 0.33918668051207507
+0.5433814283455353 0.3420517644562967 0.5433814283455353 0.34205176445629665 0.31513747213534277
+0.5405052736792969 0.344260887596414 0.5405052736792969 0.344260887596414 0.29570328979865007
+0.5377587739409365 0.3463958867701082 0.5377587739409365 0.3463958867701082 0.27803801840532755
+0.5558368051418425 0.3382296913534822 0.5558368051418424 0.3382296913534822 0.4191536299690153
+0.5528026526193721 0.3402642988534569 0.5528026526193721 0.34026429885345694 0.3984925747193247
+0.5497779004399115 0.3421881559031489 0.5497779004399116 0.3421881559031488 0.3766906493617898
+0.5810324346733388 0.33503982818730016 0.5810324346733388 0.33503982818730016 0.6041576167309496
+0.5617954335708575 0.33787778699406884 0.5617954335708575 0.33787778699406884 0.47136645191623244
+0.5587732754464818 0.3398872537784362 0.5587732754464819 0.33988725377843615 0.45260604291087597
+0.577683747469871 0.33642573208184207 0.577683747469871 0.33642573208184207 0.5888409659006483
+0.5684468700040943 0.3372858726866661 0.5684468700040943 0.3372858726866661 0.5248565307293029
+0.5743738943447917 0.3377480494237791 0.5743738943447917 0.3377480494237792 0.5717699792373566
+0.5716263197044331 0.33841886360626117 0.5716263197044331 0.33841886360626117 0.5542736886519809
+0.5701755436525969 0.34029936696197766 0.5701755436525969 0.34029936696197766 0.5515370060514098
+0.564859937773883 0.33932979257183526 0.5648599377738829 0.33932979257183526 0.5040170214847765
+0.5964737638719996 0.3354473295899408 0.5964737638719996 0.3354473295899408 0.6833897867999162
+0.5904574756619446 0.3345173596137661 0.5904574756619446 0.3345173596137661 0.65345484929911
+0.5930751610779028 0.33680791526690856 0.5930751610779028 0.33680791526690856 0.6756322910128848
+0.5870833121132919 0.3359172138386263 0.5870833121132919 0.3359172138386263 0.6428846002432901
+0.5837245041468602 0.33732041585338485 0.5837245041468603 0.33732041585338485 0.6307544361395272
+0.4836067823122617 0.39039614635151704 0.4836067823122617 0.39039614635151704 0.5030586838316052
+0.48649943990734895 0.3937839293271151 0.48649943990734895 0.3937839293271151 0.5263218652772917
+0.6060507845742888 0.33524277556262594 0.6060507845742888 0.33524277556262594 0.7121671976767946
+0.6024963172818272 0.3365133556618912 0.6024963172818271 0.33651335566189117 0.7080716802418318
+0.599029467058097 0.3378128690777383 0.599029467058097 0.3378128690777383 0.7028629005767314
+0.6435222341972939 0.28906438299498716 0.6435222341972939 0.2890643829949871 0.6244979238953584
+0.646982246380679 0.28828843324496806 0.646982246380679 0.28828843324496806 0.6266820077101437
+0.650487755015449 0.2875731764581156 0.650487755015449 0.2875731764581156 0.6285428946193403
+0.6540420721313708 0.28691867678469635 0.6540420721313708 0.28691867678469635 0.6300406733189671
+0.6401024808547688 0.2899092275276833 0.640102480854769 0.2899092275276833 0.62205881799367
+0.6367291425267002 0.29082282389978226 0.6367291425267002 0.29082282389978226 0.619387542266452
+0.6333683527430946 0.2917265308423154 0.6333683527430946 0.2917265308423154 0.6162441231806443
+0.6299671783688153 0.2925419084306277 0.6299671783688153 0.2925419084306277 0.6122945472709148
+0.6252385826511224 0.29679968569365855 0.6252385826511224 0.29679968569365855 0.6152662925797471
+0.620621205367089 0.3011476980230072 0.620621205367089 0.3011476980230072 0.6190307338044208
+0.611131414515202 0.3227685226949825 0.611131414515202 0.3227685226949825 0.6745938149239685
+0.6164188964382069 0.305367335022935 0.6164188964382068 0.30536733502293506 0.6234250779715484
+0.6125017040731981 0.310358781620814 0.612501704073198 0.31035878162081393 0.6316461847611103
+0.6153485888186754 0.30843571832834493 0.6153485888186754 0.30843571832834493 0.6315188131440033
+0.6121449042354821 0.3200375374683563 0.612144904235482 0.3200375374683562 0.6665945426642513
+0.6127970489745256 0.3167009550679576 0.6127970489745255 0.3167009550679576 0.6555879553007383
+0.6137399528626912 0.31372620225913894 0.6137399528626912 0.31372620225913894 0.6467755399115583
+0.6195497515148883 0.304785746254474 0.6195497515148883 0.304785746254474 0.628669240128302
+0.6240630571538452 0.30043796872085493 0.6240630571538452 0.30043796872085493 0.6240377317948428
+0.628725233711652 0.2961238727725096 0.628725233711652 0.29612387277250957 0.6200982123312172
+0.6576434917816562 0.2863018760996657 0.6576434917816562 0.2863018760996657 0.6310925503512522
+0.6612942915872985 0.28571072175507345 0.6612942915872985 0.28571072175507345 0.6316491073404494
+0.6650031336686836 0.2851344998860171 0.6650031336686836 0.2851344998860171 0.6316706720480356
+0.6687712355183915 0.2845954255691507 0.6687712355183915 0.2845954255691507 0.6311718386197934
+0.6120101392691708 0.32599947851850464 0.6120101392691709 0.3259994785185047 0.6891560647931376
+0.6109076554364534 0.3302637178514005 0.6109076554364535 0.3302637178514005 0.70310668225454
+0.6097335669053794 0.3340439004849459 0.6097335669053794 0.334043900484946 0.7153797799946404
+0.6781389478245573 0.28039251299471446 0.6781389478245573 0.28039251299471446 0.6230626461123466
+0.6725536536907354 0.2841310452818135 0.6725536536907354 0.2841310452818135 0.6301359555402674
+0.6762888534631434 0.28380391298076546 0.6762888534631434 0.28380391298076546 0.6286803133594582
+0.706860824877165 0.25289137205910345 0.706860824877165 0.25289137205910345 0.5616968992042802
+0.7102801014330822 0.252435654207691 0.7102801014330823 0.25243565420769093 0.558364822223016
+0.7013449234780618 0.2566012692444706 0.7013449234780618 0.2566012692444706 0.571136596028257
+0.6995155982231417 0.26004708146678385 0.6995155982231417 0.26004708146678385 0.5776670156961926
+0.6940959330780635 0.2635274239010416 0.6940959330780635 0.2635274239010416 0.5873522192579949
+0.6923276436533062 0.26686029837352776 0.6923276436533062 0.26686029837352776 0.5939372555757848
+0.6835570470798432 0.2769240546857353 0.6835570470798432 0.2769240546857353 0.615350052472804
+0.6870134771728358 0.2702853982582043 0.6870134771728358 0.2702853982582043 0.6030042233151636
+0.6852999557164555 0.27361533711560726 0.6852999557164555 0.2736153371156073 0.6092854056063467
+0.6905689046658791 0.2701898660584486 0.6905689046658791 0.2701898660584486 0.600450045537892
+0.697696161241902 0.2634317039239127 0.697696161241902 0.2634317039239127 0.5842708742121973
+0.7050839006041631 0.2563806080901476 0.705083900604163 0.2563806080901476 0.5676867340822129
+0.6817654253042565 0.28022482424108325 0.6817654253042565 0.28022482424108325 0.6211698342550083
+0.7154026309742887 0.24868047002039229 0.7154026309742888 0.24868047002039226 0.5503533070751566
+0.7189644362719673 0.24857196199182366 0.7189644362719673 0.24857196199182366 0.5476173429277528
+0.7136292246784177 0.25165258266019885 0.7136292246784177 0.2516525826601988 0.554604430989473
+0.7245992338505177 0.24541024694637578 0.7245992338505177 0.24541024694637578 0.5416402575897016
+0.722556190475118 0.24852423017540035 0.722556190475118 0.24852423017540035 0.5448893816806192
+0.7405633784997742 0.223673634133547 0.7405633784997742 0.223673634133547 0.5338093312288762
+0.7384655695064152 0.2269829351339905 0.7384655695064152 0.2269829351339905 0.5337587771681317
+0.7363686221715834 0.23028252268575475 0.7363686221715834 0.23028252268575475 0.5339098011815996
+0.728220806000864 0.24553602691751433 0.728220806000864 0.24553602691751433 0.5393874034864031
+0.7302610945188736 0.24270639073784372 0.7302610945188736 0.24270639073784372 0.5372268368988095
+0.73206026683122 0.24038270856669292 0.73206026683122 0.24038270856669292 0.5357586157626701
+0.732168413344699 0.23713378722316983 0.7321684133446988 0.23713378722316983 0.5354073442142154
+0.7342570824433405 0.23358486319116886 0.7342570824433405 0.23358486319116886 0.5344065030974878
+0.7468519685379379 0.22034751960269838 0.7468519685379379 0.2203475196026984 0.5341576287350648
+0.7447533187857432 0.2236977606277477 0.7447533187857432 0.2236977606277477 0.5338964597119173
+0.7531386812763579 0.21697689273653173 0.7531386812763579 0.21697689273653173 0.534321375770716
+0.7510425125830854 0.22035365317801026 0.7510425125830854 0.22035365317801023 0.5342019048145848
+0.7594162641442689 0.21358341472976064 0.7594162641442689 0.21358341472976064 0.5337583859445624
+0.7573236267478474 0.2169677849501209 0.7573236267478474 0.2169677849501209 0.5340931744836928
+0.7656864752353072 0.21017747603422568 0.7656864752353072 0.21017747603422568 0.5320399224232882
+0.7635907263098121 0.21355836092452962 0.7635907263098121 0.21355836092452965 0.5330592885082216
+0.7719579916550351 0.2067701023416368 0.7719579916550351 0.2067701023416368 0.5288855066870753
+0.7698524984239864 0.21014363798424374 0.7698524984239864 0.2101436379842437 0.5307249286352825
+0.7761320757002498 0.206733911842333 0.7761320757002498 0.206733911842333 0.5268702494537026
+0.7803531370630007 0.19999299795956949 0.7803531370630007 0.19999299795956949 0.5209198478654194
+0.7782479936867256 0.20336541491399784 0.7782479936867256 0.20336541491399784 0.5241848900058236
+0.7866474038148699 0.19659962730225314 0.7866474038148699 0.19659962730225314 0.5140562990487466
+0.7845480507275006 0.19996959924012067 0.7845480507275006 0.19996959924012067 0.5180037281375407
+0.792944150058652 0.19315848356515328 0.792944150058652 0.19315848356515328 0.506062305076522
+0.7908463819698359 0.1965367224302996 0.7908463819698359 0.1965367224302996 0.510529497947243
+0.7991800089977996 0.18974833370980526 0.7991800089977996 0.18974833370980526 0.4973677867951429
+0.7971246094370907 0.19313525785626615 0.7971246094370907 0.19313525785626615 0.5021058201701805
+0.8053443810247851 0.18624431478572584 0.805344381024785 0.1862443147857258 0.48825372153663354
+0.8032946929547159 0.18963015452619147 0.8032946929547159 0.18963015452619147 0.4930969531371607
+0.8116580054067791 0.18288227003609414 0.8116580054067791 0.18288227003609414 0.47893442001755976
+0.8093778588285638 0.1861490415591559 0.8093778588285637 0.1861490415591559 0.483889903054782
+0.81571964018069 0.18261382428221637 0.81571964018069 0.18261382428221637 0.4743772081082747
+0.8177479239476214 0.17902424708078285 0.8177479239476214 0.17902424708078282 0.4695289551907696
+0.8210500076930495 0.1788524105522722 0.8210500076930496 0.1788524105522722 0.4657322048917861
+0.8240649573614727 0.1763113499352431 0.8240649573614727 0.1763113499352431 0.4608862393924772
+0.8278138403589876 0.17523945600853008 0.8278138403589876 0.17523945600853008 0.45592057793639584
+0.8305253914327135 0.17212251359272868 0.8305253914327135 0.17212251359272868 0.4511366234135626
+0.8335441322225127 0.16949598265019353 0.8335441322225127 0.16949598265019356 0.44617947378721556
+0.8372255327998313 0.16739476676327775 0.8372255327998311 0.16739476676327777 0.440773694610618
+0.840496228646781 0.16543137444262995 0.8404962286467811 0.16543137444262992 0.43580823736488855
+0.8438926323410736 0.16342878226853372 0.8438926323410737 0.16342878226853372 0.43071170243942997
+0.8472638448137731 0.16124987513647124 0.8472638448137731 0.16124987513647124 0.42540218545579817
+0.85079322265969 0.15914440414120384 0.85079322265969 0.15914440414120382 0.41990845585011455
+0.8542302815099582 0.15703369402956016 0.8542302815099582 0.15703369402956016 0.41445360652047775
+0.8575841516511021 0.15496584616604228 0.8575841516511021 0.15496584616604228 0.4091259007028302
+0.8609767350281796 0.15285567941781034 0.8609767350281796 0.15285567941781034 0.403769281235787
+0.8643979292642027 0.15073107699000438 0.8643979292642027 0.15073107699000435 0.3985293864867941
+0.8677945552185099 0.14860894219299145 0.8677945552185099 0.14860894219299145 0.3935609860828706
+0.8711794259988801 0.14650359843586536 0.8711794259988802 0.14650359843586536 0.388972486156488
+0.8745756310779168 0.14441836682095738 0.8745756310779168 0.14441836682095735 0.3848651245738459
+0.8779670386313255 0.14231985055650323 0.8779670386313255 0.14231985055650323 0.38137169431807755
+0.8813530121233875 0.14022209755291234 0.8813530121233875 0.14022209755291234 0.37861499701685203
+0.8847392281074304 0.1381256127037634 0.8847392281074304 0.13812561270376336 0.37669921826269065
+0.8881250255506847 0.13603075077091034 0.8881250255506847 0.13603075077091034 0.3757114426586395
+0.8915062973140381 0.1339462609119917 0.8915062973140381 0.1339462609119917 0.3756990312032778
+0.8948864267673403 0.1318531885213553 0.8948864267673403 0.1318531885213553 0.3766812779139188
+0.8982735867958757 0.12974798740954013 0.8982735867958757 0.12974798740954016 0.3786447392149417
+0.9016678826280753 0.1276406360145648 0.9016678826280753 0.1276406360145648 0.38152330760781084
+0.905063852370101 0.12553716898980236 0.905063852370101 0.12553716898980236 0.3852015310012625
+0.9084574992164652 0.1234381419306138 0.9084574992164652 0.1234381419306138 0.3895294957497489
+0.9118492706444569 0.12134228208272463 0.9118492706444569 0.12134228208272461 0.3943345761986339
+0.9152401891432328 0.11924773629546154 0.9152401891432328 0.11924773629546155 0.3994291819854854
+0.9186308009159454 0.11715481171544373 0.9186308009159454 0.11715481171544373 0.4046118243569152
+0.9220211842111143 0.11506276150623862 0.9220211842111145 0.11506276150623862 0.4096813922275024
+0.9254115675062833 0.11297071129703351 0.9254115675062833 0.11297071129703351 0.4144430962223295
+0.9288019508014522 0.1108786610878284 0.9288019508014521 0.1108786610878284 0.4187126078690185
+0.9321923340966212 0.10878661087862329 0.9321923340966212 0.10878661087862329 0.42232331706935317
+0.9355827173917901 0.10669456066941818 0.9355827173917902 0.10669456066941818 0.42513088841273117
+0.938973100686959 0.10460251046021307 0.938973100686959 0.10460251046021307 0.4270168628518038
+0.942363483982128 0.10251046025100796 0.9423634839821279 0.10251046025100796 0.42789140361295747
+0.9457538672772969 0.10041841004180285 0.9457538672772969 0.10041841004180285 0.4276953646317008
+0.9491442505724659 0.09832635983259774 0.949144250572466 0.09832635983259774 0.4264017953382309
+0.9525346338676348 0.09623430962339263 0.9525346338676348 0.09623430962339263 0.42401690097294903
+0.9559250171628038 0.09414225941418752 0.9559250171628036 0.09414225941418752 0.42058045412991957
+0.9593154004579727 0.09205020920498241 0.9593154004579727 0.09205020920498241 0.41616565764284413
+0.9627057837531416 0.0899581589957773 0.9627057837531418 0.0899581589957773 0.4108784246696578
+0.9660961670483106 0.0878661087865722 0.9660961670483106 0.0878661087865722 0.4048559684660004
+0.9694865503434795 0.08577405857736708 0.9694865503434794 0.08577405857736708 0.39826452116652095
+0.9728769336418462 0.08368200840596075 0.9728769336418462 0.08368200840596075 0.3912959573802773
+0.976267316935643 0.08158995838334203 0.976267316935643 0.08158995838334203 0.3841630678330729
+0.9796577002316629 0.07949790835078918 0.9796577002316628 0.07949790835078918 0.3770932100226237
+0.9830480835480557 0.07740585772655527 0.9830480835480557 0.07740585772655527 0.3703201221581512
+0.9864384668193242 0.07531380753134154 0.9864384668193242 0.07531380753134154 0.3640738636113489
+0.9898288501144932 0.07322175732213643 0.9898288501144933 0.07322175732213643 0.35856914129388157
+0.9932192334096621 0.07112970711293132 0.9932192334096621 0.07112970711293132 0.35399269718841747
+0.07531380753138071 0.9932192334096622 0.07531380753138071 0.9932192334096622 0.08697020753158435
+0.07740585774058571 0.9898288501144935 0.07740585774058571 0.9898288501144935 0.08864005704393378
+0.07949790794979071 0.9864384668193246 0.07949790794979071 0.9864384668193246 0.09059833090461665
+0.08158995815899568 0.9830480835241556 0.08158995815899568 0.9830480835241556 0.09276619098097894
+0.08368200836820064 0.9796577002289868 0.08368200836820062 0.9796577002289869 0.09506329923636804
+0.08577405857740562 0.9762673169338179 0.08577405857740562 0.9762673169338179 0.0974116499817501
+0.08786610878661061 0.9728769336386488 0.08786610878661061 0.9728769336386488 0.09973836834318582
+0.0899581589958156 0.9694865503434796 0.0899581589958156 0.9694865503434796 0.10197758101443345
+0.09205020920502065 0.9660961670483109 0.09205020920502065 0.9660961670483109 0.10407154733015535
+0.0941422594142257 0.9627057837531422 0.0941422594142257 0.9627057837531422 0.10597124818414962
+0.09623430962343084 0.9593154004579735 0.09623430962343084 0.9593154004579735 0.10763660199311499
+0.09832635983263607 0.9559250171628046 0.09832635983263606 0.9559250171628048 0.10903643607288561
+0.10041841004184104 0.9525346338676358 0.10041841004184104 0.9525346338676358 0.11014830243182473
+0.10251046025104593 0.9491442505724672 0.10251046025104593 0.9491442505724672 0.11095819521327288
+0.10460251046025071 0.9457538672772984 0.10460251046025071 0.9457538672772984 0.11146020450182127
+0.10669456066945554 0.9423634839821297 0.10669456066945555 0.9423634839821297 0.11165612489170618
+0.10878661087866048 0.9389731006869605 0.10878661087866048 0.9389731006869605 0.1115550242852557
+0.11087866108786593 0.9355827173917914 0.11087866108786593 0.9355827173917914 0.11117276718947074
+0.11297071129707169 0.9321923340966229 0.11297071129707169 0.9321923340966229 0.11053148918247148
+0.11506276150627726 0.9288019508014544 0.11506276150627726 0.9288019508014544 0.10965901928203202
+0.11715481171548346 0.9254115675062878 0.11715481171548346 0.9254115675062878 0.10858823750322945
+0.11924663845797194 0.9220212770165768 0.11924663845797194 0.9220212770165768 0.10735632601078975
+0.12133804179304813 0.9186310430309533 0.12133804179304812 0.9186310430309533 0.10600388104519447
+0.12342908906283497 0.9152409951156911 0.12342908906283497 0.9152409951156911 0.1045743079784993
+0.12552005875646627 0.9118519303252972 0.12552005875646624 0.9118519303252972 0.10311324731831105
+0.1276111101128767 0.9084645216366075 0.1276111101128767 0.9084645216366075 0.1016667028692375
+0.12970199185022177 0.9050779812746946 0.12970199185022177 0.9050779812746946 0.10027828887777636
+0.13179121689527767 0.9016897416793115 0.1317912168952777 0.9016897416793114 0.09898653672705461
+0.13387938121806667 0.8982982466990125 0.13387938121806667 0.8982982466990125 0.09782894617596172
+0.1359709240259055 0.8949040240855846 0.1359709240259055 0.8949040240855846 0.09684337960341872
+0.13806640848236637 0.8915099621826053 0.13806640848236637 0.8915099621826051 0.09606072034243289
+0.14016283456735515 0.8881177955386503 0.14016283456735515 0.8881177955386503 0.09550038521783162
+0.14225845310672622 0.8847266477340919 0.14225845310672622 0.8847266477340919 0.0951725307015928
+0.1443510045366119 0.8813364271644359 0.1443510045366119 0.881336427164436 0.09507944426775766
+0.14644373101279948 0.8779460885457703 0.14644373101279948 0.8779460885457703 0.09522074371233047
+0.14853628638888422 0.8745557981205038 0.1485362863888842 0.8745557981205038 0.09558641743749134
+0.15062810901807244 0.8711655693766971 0.15062810901807244 0.8711655693766972 0.09616006468602932
+0.15272052405791536 0.8677753284083392 0.15272052405791536 0.867775328408339 0.09692246510659865
+0.1548143720745485 0.8643841373993796 0.1548143720745485 0.8643841373993796 0.09785038945132417
+0.15690712023426956 0.8609904316047585 0.15690712023426956 0.8609904316047584 0.09891509650590256
+0.15900388795086232 0.8575910788504612 0.15900388795086232 0.8575910788504612 0.10009241497423908
+0.1610936623948478 0.8541897412974219 0.1610936623948478 0.8541897412974219 0.1013468512693297
+0.1631715248944498 0.850812055159036 0.16317152489444983 0.850812055159036 0.10264926664245788
+0.16523261095381564 0.8474365945437596 0.1652326109538156 0.8474365945437597 0.10397305414464408
+0.16737431490488322 0.8440411664435726 0.16737431490488322 0.8440411664435726 0.10534545419057818
+0.16949421362014971 0.8406540410886428 0.16949421362014971 0.8406540410886428 0.10668011356821876
+0.17149233101095945 0.8372935133059752 0.17149233101095948 0.8372935133059752 0.10790526524020148
+0.17374330756554132 0.8340505783429677 0.17374330756554132 0.8340505783429677 0.10919361531903575
+0.17583028355978622 0.8306770952465451 0.17583028355978622 0.8306770952465451 0.11030100690298643
+0.17819779695980265 0.8271683696364703 0.17819779695980265 0.8271683696364703 0.1114435956789629
+0.18053884585608782 0.8239644485565577 0.18053884585608782 0.8239644485565577 0.1124355342615913
+0.18243036030863147 0.8207392173899684 0.18243036030863147 0.8207392173899685 0.11308937452567759
+0.1843214413673155 0.8173398388868139 0.1843214413673155 0.8173398388868139 0.11362660915869853
+0.18624156686003407 0.8135259146164037 0.1862415668600341 0.8135259146164036 0.11394764625745887
+0.1888171245890693 0.8100012425833794 0.1888171245890693 0.8100012425833792 0.11429217867078169
+0.1910014504599658 0.806786999427074 0.19100145045996578 0.8067869994270741 0.11437769176853986
+0.19327386976660677 0.8008461232489142 0.19327386976660677 0.8008461232489142 0.11356041720349126
+0.19305043043892234 0.8042524175752175 0.19305043043892234 0.8042524175752174 0.11441133665250688
+0.1967137631038277 0.7948514455668588 0.1967137631038277 0.7948514455668588 0.11250678060868517
+0.19669052582165947 0.798877569581423 0.19669052582165947 0.798877569581423 0.11393948633834483
+0.20000602805152998 0.7886064992473859 0.20000602805152998 0.7886064992473859 0.11073960055146902
+0.200026152580428 0.7927447755974728 0.20002615258042802 0.7927447755974728 0.11251009656918676
+0.20345679429538988 0.7864564968804914 0.2034567942953899 0.7864564968804914 0.11048357257755374
+0.20348941879848398 0.7823110821399482 0.20348941879848395 0.7823110821399482 0.10846549720937394
+0.2069284076023772 0.7801289094521605 0.2069284076023772 0.7801289094521605 0.10795831414846875
+0.2101834263255374 0.7739440851048531 0.2101834263255374 0.7739440851048531 0.10519221379547543
+0.21021693344524148 0.7779686713498779 0.21021693344524148 0.7779686713498779 0.10739987779773554
+0.21358460486162095 0.7677408740116252 0.21358460486162098 0.7677408740116252 0.10237250820732595
+0.21354443396535663 0.771792742510359 0.21354443396535663 0.771792742510359 0.10457175336413131
+0.21697535822452868 0.7614773603893776 0.21697535822452865 0.7614773603893776 0.09972909266384594
+0.21696873490963342 0.7656263190086601 0.21696873490963342 0.7656263190086601 0.10182900751891388
+0.22036719882520253 0.7552102337250265 0.22036719882520253 0.7552102337250265 0.09759108271487688
+0.2203612256186604 0.7593806754085695 0.22036122561866042 0.7593806754085694 0.09940105854565252
+0.22375939533040284 0.7489422955276677 0.22375939533040287 0.7489422955276677 0.0962434631656016
+0.22375804011519235 0.753118468524411 0.22375804011519237 0.753118468524411 0.0976297500197722
+0.22713717772926648 0.7426593144524783 0.22713717772926648 0.7426593144524783 0.09589693164715941
+0.2271490636234329 0.7468409146498991 0.22714906362343293 0.7468409146498991 0.0967790811821525
+0.23054514137243187 0.7405683603737633 0.23054514137243184 0.7405683603737633 0.0970335654855054
+0.23399785934961623 0.7385392381606181 0.23399785934961623 0.7385392381606181 0.09864019350202315
+0.2379331743718328 0.7365071421865477 0.23793317437183287 0.7365071421865476 0.10101661099695393
+0.24066563912706584 0.7332754473233053 0.24066563912706584 0.7332754473233053 0.10293607208714177
+0.24768770439987772 0.7249471514814577 0.24768770439987772 0.7249471514814577 0.10933396457985696
+0.24310622720996047 0.7305328700612299 0.24310622720996047 0.7305328700612299 0.10493518276763047
+0.24541334846168386 0.7277785471627994 0.24541334846168386 0.7277785471627994 0.10705977300404902
+0.2531576502729806 0.712872195700141 0.2531576502729806 0.712872195700141 0.1158021935587799
+0.25528989531590074 0.7097761599046198 0.2552898953159008 0.7097761599046198 0.11806582707878006
+0.2576865451938696 0.7065557716420081 0.25768654519386963 0.706555771642008 0.12047338957900709
+0.2776410816749431 0.6771455140177618 0.2776410816749431 0.6771455140177618 0.12994129031515825
+0.26128791669532786 0.696664813917654 0.26128791669532786 0.696664813917654 0.12370665839636792
+0.27567080061192506 0.6792966929838647 0.27567080061192506 0.6792966929838647 0.12972436244501143
+0.26365906824652613 0.6937075569899916 0.26365906824652613 0.6937075569899916 0.12533668744260665
+0.26594751153507395 0.6908152607279326 0.26594751153507395 0.6908152607279326 0.12666408288269057
+0.27041732071466446 0.6821063831180147 0.27041732071466446 0.6821063831180147 0.1278808683086987
+0.2737180831688629 0.6814828404449199 0.2737180831688629 0.6814828404449199 0.1294154671075029
+0.2680256237938532 0.6880165648320946 0.2680256237938532 0.6880165648320946 0.12761533392398963
+0.2701628830541397 0.6856209078492439 0.2701628830541397 0.6856209078492439 0.12845928589493022
+0.2600273719080247 0.7033364886638904 0.2600273719080248 0.7033364886638904 0.12266672041610409
+0.26244814813617984 0.7002483719784326 0.26244814813617984 0.7002483719784326 0.1247094770131062
+0.24996938508769287 0.722049723875258 0.24996938508769287 0.722049723875258 0.11174361543459903
+0.25127855635274327 0.725344231845642 0.25127855635274327 0.725344231845642 0.11267619451152659
+0.2522486857807213 0.7191044957183342 0.2522486857807213 0.7191044957183342 0.1142267249867475
+0.2545072442245431 0.7161418043171383 0.2545072442245431 0.7161418043171383 0.11670572467784197
+0.29453473342651476 0.6590016892001497 0.29453473342651476 0.6590016892001497 0.12855250640518687
+0.2921337031492324 0.6619104230704324 0.2921337031492324 0.6619104230704324 0.12901760589979838
+0.28971797109297714 0.6648335819482126 0.28971797109297714 0.6648335819482126 0.12953105885624636
+0.28727994161914605 0.667788533564758 0.28727994161914605 0.667788533564758 0.13003815360163462
+0.28484729647495743 0.6707746661197022 0.2848472964749575 0.6707746661197022 0.13049160241805488
+0.28245955469612355 0.6738072111082674 0.28245955469612355 0.6738072111082674 0.130857476455658
+0.28052937542716383 0.6767988047439244 0.28052937542716383 0.6767988047439245 0.13122516153083594
+0.29813634936320227 0.6500925224922584 0.29813634936320227 0.6500925224922584 0.12591251121891855
+0.3036589072686206 0.6358005482736112 0.3036589072686206 0.6358005482736112 0.12492616455750576
+0.30620288613836194 0.632928078593886 0.30620288613836194 0.6329280785938859 0.12619975338952175
+0.30872172334112347 0.6300303364451735 0.30872172334112347 0.6300303364451735 0.12786073462266567
+0.31537683961519924 0.617957804748034 0.31537683961519924 0.617957804748034 0.13527819853491463
+0.3128903465539822 0.620776762232739 0.31289034655398223 0.620776762232739 0.13242493836217137
+0.31036423518860096 0.6236021970728957 0.31036423518860096 0.6236021970728957 0.12990428714015875
+0.3112667603910008 0.627156500835192 0.3112667603910008 0.6271565008351921 0.1299506771898515
+0.31865222346407224 0.6186283308504037 0.31865222346407224 0.6186283308504037 0.13825116622054948
+0.3004297867868143 0.6475070819622994 0.30042978678681426 0.6475070819622993 0.12603148674177445
+0.3019298006240331 0.642052716334006 0.30192980062403313 0.642052716334006 0.12509625285695938
+0.3020397880933506 0.6450940077439842 0.3020397880933506 0.6450940077439842 0.12604179663693596
+0.3045830584583482 0.6395621634037069 0.3045830584583482 0.6395621634037069 0.12599239517015473
+0.296919271870572 0.6560975836535 0.296919271870572 0.6560975836535 0.1281887018265958
+0.2992861820428649 0.6531924594007027 0.2992861820428649 0.6531924594007027 0.1279819810647753
+0.3963548120829692 0.45015990982518905 0.39635481208296913 0.4501599098251891 0.31971913597583884
+0.39283287052062504 0.45134537662517793 0.39283287052062504 0.451345376625178 0.285123233669264
+0.3885374439631725 0.4536390370811419 0.3885374439631725 0.4536390370811419 0.2544087000146203
+0.3912353688295995 0.4533115770794781 0.3912353688295995 0.4533115770794781 0.2655454374733714
+0.38405251469321655 0.4557926698831262 0.38405251469321655 0.45579266988312617 0.2435783996523017
+0.38754531643621687 0.4558489262913065 0.38754531643621687 0.4558489262913065 0.24664914054613982
+0.38305827788088875 0.4584813943831122 0.3830582778808887 0.45848139438311225 0.24602539981608773
+0.3792554626586776 0.4595125432879804 0.37925546265867766 0.45951254328798047 0.2533264066480474
+0.3768410526596345 0.4619994106111555 0.3768410526596346 0.4619994106111555 0.26743714558823034
+0.3712806514231164 0.46399482941454934 0.3712806514231164 0.4639948294145494 0.28851457337451974
+0.3748316900564582 0.46434034347315184 0.37483169005645817 0.46434034347315184 0.2833905558316116
+0.3656924086928823 0.46798324030796623 0.3656924086928823 0.46798324030796623 0.32023473854096873
+0.3697681706395536 0.46745288074964986 0.36976817063955364 0.46745288074964986 0.31084296196065053
+0.36475461677458254 0.4708808303571573 0.36475461677458254 0.4708808303571573 0.3375925107969117
+0.3622633682476496 0.473246855684765 0.36226336824764965 0.47324685568476493 0.35299780895631194
+0.35835453242704157 0.4747132550069315 0.35835453242704157 0.4747132550069315 0.36322231755978357
+0.3573391651144337 0.4778074598299917 0.3573391651144337 0.4778074598299917 0.37788416506393835
+0.3561006506900105 0.4803901485781611 0.3561006506900105 0.4803901485781611 0.38882399301377235
+0.35309418702029516 0.4821578783199147 0.3530941870202952 0.48215787831991463 0.3955489972534045
+0.3511509686347749 0.4854152560685836 0.3511509686347749 0.48541525606858366 0.40539296353366255
+0.3465736110020405 0.4897823465061064 0.3465736110020405 0.4897823465061064 0.413939271961903
+0.3501265478102482 0.48866913127458594 0.3501265478102482 0.48866913127458594 0.4132523563570472
+0.3455399457960037 0.49319207304857526 0.3455399457960037 0.49319207304857526 0.41873922918103573
+0.34097821409898493 0.4981942524047456 0.34097821409898493 0.49819425240474563 0.41990407185668416
+0.34455105470264713 0.49673051457861966 0.34455105470264713 0.49673051457861966 0.42140994987617725
+0.3400421856259954 0.5019168844088021 0.3400421856259954 0.5019168844088021 0.4193211176775397
+0.3356341612265047 0.5074645693441029 0.33563416122650475 0.507464569344103 0.41279188333017114
+0.33919987922650763 0.5056331065559176 0.33919987922650763 0.5056331065559175 0.41652849885383786
+0.33496905148854417 0.511030041278302 0.33496905148854417 0.511030041278302 0.4075011372767719
+0.3307911121723578 0.5161004320592517 0.33079111217235774 0.5161004320592517 0.39633787122573066
+0.32967453146651493 0.5187536553067381 0.32967453146651493 0.5187536553067381 0.3898680530995325
+0.33422322010144767 0.5148236321220121 0.33422322010144767 0.5148236321220122 0.4000622869664721
+0.33023567947118426 0.521350223950694 0.33023567947118426 0.521350223950694 0.38329075321286826
+0.3269011911215351 0.5265474132121373 0.3269011911215351 0.5265474132121373 0.3681124649700572
+0.32668159520581097 0.5297780900645991 0.326681595205811 0.5297780900645991 0.35777028863212484
+0.33005358934478846 0.5248273073277615 0.33005358934478846 0.5248273073277615 0.3731907366064837
+0.3264601988256769 0.5330599472181774 0.32646019882567684 0.5330599472181774 0.34657609617290785
+0.32330770025953176 0.5381330612996343 0.32330770025953176 0.5381330612996343 0.32964649204620544
+0.32334648938164573 0.5414545120424399 0.32334648938164573 0.5414545120424399 0.31730054084606746
+0.32643647178512625 0.5362365265862358 0.32643647178512625 0.5362365265862358 0.3351151939286527
+0.32341581686825505 0.5447807333112196 0.32341581686825505 0.5447807333112196 0.3046007948421525
+0.3204045458530511 0.5501622507827857 0.3204045458530511 0.5501622507827858 0.28630430775038557
+0.32064103937058236 0.5535475384853219 0.32064103937058236 0.553547538485322 0.27328358542500336
+0.32353653008836936 0.5481099337807652 0.3235365300883694 0.5481099337807652 0.2916678455480934
+0.32095053694100856 0.5569279757755807 0.32095053694100856 0.5569279757755807 0.2603175393318769
+0.3182602753645401 0.5625751163305981 0.3182602753645401 0.5625751163305982 0.24230367136468237
+0.3187254465835135 0.566028263491523 0.3187254465835135 0.566028263491523 0.22988129498153329
+0.32131175327388767 0.5603338588116844 0.32131175327388767 0.5603338588116844 0.2474491087025681
+0.31925442691340367 0.5694826809852837 0.31925442691340367 0.5694826809852837 0.21793292762399316
+0.31685682859357484 0.5753779401202277 0.31685682859357484 0.5753779401202276 0.20183981316247238
+0.3174868152279818 0.5789079519455705 0.3174868152279818 0.5789079519455705 0.19140880608291852
+0.31983634927834637 0.5729386844573817 0.3198363492783463 0.5729386844573817 0.20661626135139252
+0.3182480375333454 0.5824429748154363 0.3182480375333454 0.5824429748154363 0.18184039671748028
+0.31639051538323787 0.588566889899512 0.31639051538323787 0.588566889899512 0.16895595300534735
+0.3171665703584309 0.5921042436728645 0.31716657035843093 0.5921042436728645 0.1618834949396066
+0.31912939445945815 0.5859391437488622 0.31912939445945815 0.5859391437488622 0.17337897052312098
+0.3179176200326151 0.5956146412664998 0.3179176200326151 0.5956146412664998 0.15602368840570258
+0.3179410469479424 0.6029156273073751 0.3179410469479424 0.6029156273073751 0.14679656797145393
+0.31891149374919886 0.6056630807266986 0.31891149374919886 0.6056630807266986 0.14477755153720648
+0.31873234987732457 0.5996814746428417 0.3187323498773246 0.5996814746428417 0.1507158969094394
+0.3196905172791224 0.6090402151719237 0.3196905172791224 0.6090402151719237 0.14295962344770177
+0.3205000172744986 0.6124604475623858 0.32050001727449867 0.6124604475623858 0.14203899728586375
+0.3212833595546834 0.6158393482389207 0.3212833595546834 0.6158393482389207 0.1418761205577155
+0.39912264511432227 0.4538121434174104 0.3991226451143222 0.45381214341741044 0.3120658418272164
+0.4017896665918887 0.457260658744506 0.4017896665918887 0.457260658744506 0.29959928228314175
+0.4852335057407712 0.3861234670632171 0.4852335057407711 0.38612346706321704 0.4862214248730515
+0.48733463656887377 0.3831145454632529 0.48733463656887377 0.3831145454632529 0.47107802486630096
+0.49057502792531 0.3800458398442978 0.49057502792531 0.3800458398442978 0.4509965270919399
+0.4896890018618562 0.3823018642730296 0.48968900186185615 0.3823018642730296 0.4643735409999417
+0.4933657354102525 0.37693799082902024 0.4933657354102525 0.37693799082902024 0.4274431588104511
+0.4929193358558157 0.37973562818069884 0.4929193358558157 0.3797356281806988 0.4438394418737613
+0.4969429596897791 0.3729982749687243 0.49694295968977903 0.37299827496872423 0.39348878463118414
+0.49611046874580855 0.3761480504185981 0.4961104687458086 0.3761480504185981 0.413514313931394
+0.4995120393135716 0.3726861042445504 0.4995120393135716 0.3726861042445504 0.3801932274460912
+0.5051030087647045 0.365775728827592 0.5051030087647045 0.365775728827592 0.3171628854895249
+0.5012321621857811 0.3709871887032398 0.5012321621857811 0.3709871887032398 0.3630251845226067
+0.5032643483877965 0.36850818749446507 0.5032643483877965 0.36850818749446507 0.33991452082784396
+0.5134568214895283 0.35908008292974175 0.5134568214895284 0.35908008292974175 0.24806532746668572
+0.5121690219712931 0.36222430327917654 0.5121690219712931 0.36222430327917654 0.26610314939962976
+0.5099183345757416 0.3635095215492904 0.5099183345757416 0.3635095215492904 0.28196789858339794
+0.5086651029838114 0.3665653369710752 0.5086651029838114 0.36656533697107513 0.3024815521809355
+0.5208981644549628 0.3549727790677416 0.5208981644549628 0.3549727790677416 0.21801203170802003
+0.523888037143805 0.35394600805179127 0.5238880371438049 0.35394600805179127 0.21829068296391238
+0.5193014783987496 0.3574393600578934 0.5193014783987496 0.3574393600578934 0.22751298519655014
+0.5172003476609774 0.3601587828319746 0.5172003476609773 0.3601587828319746 0.2413077611939798
+0.5350718331260956 0.3485057816136951 0.5350718331260956 0.3485057816136951 0.26225672984247184
+0.5323763070742543 0.35059355062093916 0.5323763070742543 0.35059355062093916 0.24853612981927697
+0.5297913012814455 0.35267918618751004 0.5297913012814455 0.35267918618751004 0.23856477387523364
+0.5273952079597692 0.35490436308000584 0.5273952079597692 0.3549043630800059 0.23360227145448162
+0.5467599205221267 0.34411507028792315 0.5467599205221267 0.34411507028792315 0.35446510288711247
+0.5438254558418927 0.34612323772495074 0.5438254558418927 0.34612323772495074 0.33322122656092384
+0.5410200968581372 0.3481659544695548 0.5410200968581372 0.3481659544695548 0.3136369307712712
+0.5383068483685663 0.3502044230465617 0.5383068483685663 0.3502044230465617 0.2957059364556272
+0.5557880674688263 0.3419867661043564 0.5557880674688263 0.34198676610435635 0.43340958477699015
+0.5528251816054802 0.34405697238992994 0.5528251816054802 0.34405697238993 0.4133018474496197
+0.5499132454141223 0.346050127440283 0.5499132454141223 0.346050127440283 0.3926172896777885
+0.5803606840557828 0.3387035723586143 0.5803606840557828 0.3387035723586143 0.6167923967691591
+0.5616980674292233 0.3414512207114854 0.5616980674292233 0.3414512207114854 0.48554842093152933
+0.5586872546669223 0.3435963145730749 0.5586872546669223 0.3435963145730749 0.4672328138986241
+0.5769297674358425 0.3400275606537479 0.5769297674358426 0.3400275606537479 0.6003454899767616
+0.5673370316510095 0.3411988136129173 0.5673370316510095 0.3411988136129173 0.5329099533510053
+0.5732145557051505 0.34110876016273023 0.5732145557051505 0.34110876016273023 0.5788360505856617
+0.570254451990771 0.3431164871361472 0.570254451990771 0.3431164871361472 0.565292855627881
+0.5644776943376101 0.343109544600339 0.5644776943376101 0.343109544600339 0.5172598995915038
+0.5956301299635308 0.339131250984205 0.5956301299635308 0.339131250984205 0.696442508093448
+0.589724263234382 0.3381944258724358 0.5897242632343821 0.3381944258724358 0.6666236058184006
+0.592291171899226 0.34048578583333367 0.592291171899226 0.34048578583333367 0.6888686566428861
+0.5863903469057187 0.339608556165663 0.5863903469057187 0.339608556165663 0.656204111920626
+0.5830689080460291 0.3410148729350841 0.5830689080460291 0.3410148729350841 0.6441419277492488
+0.48815951758625004 0.3897520156740972 0.48815951758625004 0.3897520156740972 0.5064694733936649
+0.490904967328233 0.39330698010136517 0.490904967328233 0.39330698010136517 0.5324283879990412
+0.6085567822221928 0.3378019002832648 0.6085567822221928 0.3378019002832648 0.727775411321916
+0.6050022538294649 0.3389776440082913 0.6050022538294649 0.3389776440082913 0.724863562908488
+0.6015251123712678 0.3402105899208921 0.6015251123712678 0.3402105899208921 0.7208971902682313
+0.5981227142361797 0.34148057022066913 0.5981227142361797 0.34148057022066913 0.7158017926665122
+0.6421967623349003 0.29247966949738474 0.6421967623349003 0.29247966949738474 0.630708319599849
+0.6455948292778686 0.291717536227795 0.6455948292778686 0.291717536227795 0.6326620898999215
+0.6490480991757751 0.2910146027224933 0.6490480991757751 0.2910146027224933 0.634328448787754
+0.6525544905788575 0.290362315636844 0.6525544905788575 0.290362315636844 0.6356501674094458
+0.6561096704830214 0.2897437892401445 0.6561096704830214 0.2897437892401445 0.6365589729673107
+0.6388229867819389 0.29341966061449587 0.6388229867819389 0.29341966061449587 0.628829932636756
+0.6355670045147023 0.2943552836450391 0.6355670045147023 0.2943552836450391 0.6266364418457077
+0.632195666755431 0.2952849710212942 0.632195666755431 0.2952849710212942 0.6238240395181479
+0.6275292106337998 0.2997444348313397 0.6275292106337998 0.2997444348313398 0.6284718843170062
+0.6229179437366935 0.30408058464722115 0.6229179437366935 0.30408058464722115 0.6332660554697647
+0.6138949560657933 0.32289704286789955 0.6138949560657933 0.3228970428678996 0.681067837129307
+0.6183662523721468 0.3083758861719251 0.6183662523721468 0.3083758861719251 0.6382792378299253
+0.6165582457618152 0.311789783071511 0.6165582457618152 0.311789783071511 0.6463768951947547
+0.6150487910143514 0.31944084148142804 0.6150487910143515 0.31944084148142804 0.6706093721881093
+0.616131470679594 0.31560406183995526 0.6161314706795941 0.3156040618399553 0.6589630676416446
+0.6217325414986193 0.30769831102218265 0.6217325414986193 0.30769831102218265 0.6427154441046398
+0.626357297081389 0.3033809051812697 0.626357297081389 0.3033809051812697 0.6373094252347092
+0.6310059882952949 0.29893802295865246 0.6310059882952949 0.29893802295865246 0.631973083542853
+0.6597126657659325 0.289154003661227 0.6597126657659325 0.289154003661227 0.6370178905484424
+0.6633600020032191 0.2885936968679833 0.663360002003219 0.28859369686798336 0.6370053284502001
+0.6670506334059011 0.2880826676637532 0.6670506334059011 0.2880826676637532 0.6365241519971413
+0.6707698601310935 0.2876176088235724 0.6707698601310935 0.2876176088235724 0.6355328587178319
+0.6158213108709283 0.32556330280094875 0.6158213108709284 0.32556330280094875 0.6942869852360061
+0.6145806468361741 0.32913875889965155 0.6145806468361741 0.32913875889965155 0.7052849400939653
+0.6133314213679643 0.33294535488557786 0.6133314213679643 0.33294535488557786 0.7174089556152933
+0.6121451636381378 0.3366920423552619 0.6121451636381378 0.3366920423552619 0.7295933808801847
+0.6799606847745902 0.2835660311919271 0.6799606847745902 0.2835660311919271 0.626783036119991
+0.6744905979546808 0.28723282134938877 0.6744905979546808 0.2872328213493888 0.6340613764317293
+0.6781864361277647 0.28693247405250266 0.6781864361277647 0.2869324740525027 0.6321321837602499
+0.7123607531559947 0.2543082047733943 0.7123607531559947 0.2543082047733943 0.5584863272438663
+0.709361487815168 0.2559368851096204 0.7093614878151681 0.2559368851096204 0.5633715152780523
+0.7032039668870284 0.25992670251994154 0.7032039668870284 0.2599267025199415 0.5742221766841693
+0.7013163350416578 0.2633642394351189 0.7013163350416578 0.26336423943511894 0.5808402037080685
+0.6958989991002064 0.2667690803218573 0.6958989991002064 0.26676908032185725 0.5908635293372378
+0.6941214941885304 0.2700828315704177 0.6941214941885304 0.27008283157041774 0.5973920355282852
+0.6853553158487061 0.280099599942365 0.6853553158487061 0.280099599942365 0.6187973188289617
+0.6871454275540697 0.27685975183185346 0.6871454275540697 0.27685975183185346 0.6129700037183405
+0.68884586862362 0.27354751753139256 0.68884586862362 0.27354751753139256 0.6068354613636097
+0.6923428047245082 0.2734117605949463 0.6923428047245083 0.2734117605949464 0.6038501444920225
+0.6994660347100665 0.266717538048653 0.6994660347100665 0.266717538048653 0.5874396253405806
+0.7069586620739768 0.2598644844972641 0.7069586620739768 0.2598644844972641 0.5705331146456998
+0.6835504072791628 0.2833723590134254 0.6835504072791628 0.2833723590134254 0.6244102237619248
+0.6870500884995833 0.2832157207643858 0.6870500884995833 0.2832157207643858 0.6216179227525781
+0.717031403677812 0.2516401024234178 0.717031403677812 0.2516401024234178 0.5517515958312461
+0.7205513855047513 0.25162141004586785 0.7205513855047513 0.25162141004586785 0.5487172941426525
+0.7150978320407357 0.2546552313324748 0.7150978320407358 0.2546552313324748 0.5563713677243549
+0.7261667127783928 0.24854960877186127 0.7261667127783928 0.24854960877186127 0.5421986798114533
+0.7241286305558191 0.25163799642306806 0.7241286305558191 0.2516379964230681 0.5456413656131455
+0.7297879617191789 0.2486574789020243 0.7297879617191789 0.2486574789020243 0.5395786266656879
+0.7426608445504548 0.22701533601163856 0.7426608445504548 0.22701533601163856 0.5336199010174846
+0.7405799670532679 0.2302938369359697 0.7405799670532679 0.2302938369359697 0.5334641884275308
+0.7385052895496673 0.23353094411952977 0.7385052895496673 0.23353094411952977 0.5335550768172844
+0.7318000090155761 0.24571109982643366 0.7318000090155761 0.24571109982643366 0.5372541080167162
+0.7336529311853072 0.2428524671493529 0.7336529311853072 0.2428524671493529 0.5356066473648909
+0.7351090406894583 0.23971445266097996 0.7351090406894584 0.23971445266098 0.5345119429892544
+0.7363999032534624 0.23670847505355475 0.7363999032534624 0.23670847505355477 0.534006309431112
+0.7489439466135318 0.22371565868403767 0.7489439466135318 0.22371565868403767 0.5338491719332373
+0.7468498186881672 0.22705102333347474 0.7468498186881672 0.22705102333347474 0.5334002825218881
+0.7552288849983589 0.2203466054838292 0.7552288849983589 0.2203466054838292 0.5340139667344984
+0.7531305535266192 0.22371650201552862 0.7531305535266192 0.22371650201552865 0.5336292630281383
+0.7614959083174814 0.21693869659918352 0.7614959083174814 0.21693869659918352 0.5335362652721923
+0.7593989230928218 0.22031630803204416 0.7593989230928218 0.2203163080320442 0.533548643473661
+0.7677496306944159 0.21351278067779553 0.7677496306944159 0.21351278067779553 0.5319565164684489
+0.7656527421266123 0.21688643414069267 0.7656527421266123 0.21688643414069267 0.5326123234963928
+0.7740097573881245 0.21010126957701505 0.7740097573881245 0.21010126957701505 0.5289484013431055
+0.7718931693104248 0.21345814221529358 0.7718931693104248 0.21345814221529355 0.5304151214230773
+0.7781784224403147 0.21005977630551012 0.7781784224403147 0.21005977630551012 0.5266837203980717
+0.7803256098788593 0.20670058407759542 0.7803256098788593 0.20670058407759542 0.5243546249219273
+0.7824408062870601 0.20333426755905035 0.7824408062870601 0.20333426755905035 0.5214537311221296
+0.7887435969991219 0.19994563112264785 0.7887435969991219 0.19994563112264785 0.5146173898702129
+0.7866463240806533 0.20331192442583448 0.7866463240806533 0.20331192442583448 0.5182314078378899
+0.795091079011215 0.19647515582107405 0.795091079011215 0.19647515582107403 0.5065326440903978
+0.7929050048030071 0.19983857627707965 0.7929050048030071 0.19983857627707965 0.5107817333848955
+0.8012487196848898 0.19313260447910227 0.8012487196848898 0.19313260447910227 0.4978543005466189
+0.7992624531961887 0.19650693215062248 0.7992624531961887 0.1965069321506225 0.5022583502401413
+0.8053147112010199 0.19288619607526292 0.8053147112010199 0.19288619607526292 0.4932497124023801
+0.8072916846023078 0.18945264200133038 0.8072916846023078 0.18945264200133038 0.4885852145251926
+0.810723281202306 0.18912364233072018 0.810723281202306 0.18912364233072018 0.48435821146925184
+0.813672347106702 0.18645394038592372 0.813672347106702 0.18645394038592375 0.4793431462841293
+0.8174073475112333 0.18542071423232606 0.8174073475112333 0.18542071423232606 0.47415093535917957
+0.8199812705759687 0.18248874434108725 0.8199812705759688 0.18248874434108722 0.46947001021822926
+0.8238424914822385 0.1805099840682255 0.8238424914822385 0.1805099840682255 0.4637948692280501
+0.8275507567304901 0.1784712679527934 0.8275507567304902 0.17847126795279336 0.4582508381050125
+0.8307509719597856 0.17630463881362826 0.8307509719597856 0.17630463881362826 0.45333536626122
+0.8338820769959786 0.17379102709144906 0.8338820769959786 0.17379102709144909 0.4483620330405544
+0.8372206215987094 0.17157441143168786 0.8372206215987094 0.17157441143168786 0.4432674628283722
+0.840639352024102 0.16947067237670183 0.8406393520241019 0.16947067237670185 0.4381488273933694
+0.843970992949238 0.1674593625639534 0.843970992949238 0.1674593625639534 0.433126143197271
+0.8473503244240584 0.16538407264069827 0.8473503244240584 0.1653840726406983 0.42796561666923943
+0.8507669066249655 0.16327846564589407 0.8507669066249655 0.16327846564589407 0.42266485485146205
+0.8542028351402576 0.161165687350826 0.8542028351402576 0.161165687350826 0.41729076728430997
+0.8575999587086233 0.15907852021162533 0.8575999587086233 0.15907852021162536 0.41194169678786935
+0.8609868183539676 0.15698671229112807 0.8609868183539676 0.15698671229112807 0.4066040860927645
+0.8643840261054664 0.15487937811054428 0.8643840261054664 0.15487937811054428 0.4013178998475957
+0.8677825089005542 0.15276892003544854 0.8677825089005541 0.15276892003544854 0.3961899029788754
+0.8711744319133531 0.15066436519360568 0.8711744319133531 0.15066436519360568 0.3913273732021478
+0.874565006888893 0.14856923221664184 0.8745650068888932 0.14856923221664184 0.3868372150987886
+0.8779561657055667 0.14647555924797215 0.8779561657055667 0.14647555924797215 0.38283431056004774
+0.8813453442003804 0.14437977091949708 0.8813453442003804 0.14437977091949708 0.37943895058117
+0.8847335626681915 0.14228510603722294 0.8847335626681915 0.14228510603722297 0.3767638258808375
+0.8881216081864944 0.14019202726767352 0.8881216081864945 0.14019202726767352 0.3749067356629974
+0.8915085488753164 0.13810114659548128 0.8915085488753164 0.1381011465954813 0.3739416643044064
+0.8948946997417221 0.13600896264432333 0.8948946997417221 0.1360089626443233 0.3739106186629926
+0.8982826090429136 0.13391234005506256 0.8982826090429136 0.13391234005506256 0.3748225877246388
+0.9016736287429069 0.1318125526571698 0.9016736287429069 0.13181255265716982 0.3766482489625949
+0.905066320937824 0.12971429264768283 0.9050663209378239 0.12971429264768283 0.3793120895079673
+0.9084585731676057 0.1276180578889531 0.9084585731676057 0.1276180578889531 0.3827007387887258
+0.9118497927694142 0.12552396758485876 0.9118497927694144 0.12552396758485876 0.3866684541089053
+0.9152404176207765 0.12343096234305906 0.9152404176207763 0.12343096234305906 0.39104780550219415
+0.9186308009159454 0.12133891213385395 0.9186308009159454 0.12133891213385395 0.3956543604701779
+0.9220211842111143 0.11924686192464884 0.9220211842111145 0.11924686192464884 0.4002976214354865
+0.9254115675062833 0.11715481171544373 0.9254115675062833 0.11715481171544373 0.4047853142505366
+0.9288019508014522 0.11506276150623862 0.9288019508014521 0.11506276150623862 0.4089324569805253
+0.9321923340966212 0.11297071129703351 0.9321923340966212 0.11297071129703351 0.4125676605147866
+0.9355827173917901 0.1108786610878284 0.9355827173917902 0.1108786610878284 0.4155384340506086
+0.938973100686959 0.10878661087862329 0.938973100686959 0.10878661087862329 0.4177155328799134
+0.942363483982128 0.10669456066941818 0.9423634839821279 0.10669456066941818 0.4189964104427673
+0.9457538672772969 0.10460251046021307 0.9457538672772969 0.10460251046021307 0.41930788420696624
+0.9491442505724659 0.10251046025100796 0.949144250572466 0.10251046025100796 0.41860812918443197
+0.9525346338676348 0.10041841004180285 0.9525346338676348 0.10041841004180285 0.4168880695899932
+0.9559250171628038 0.09832635983259774 0.9559250171628036 0.09832635983259774 0.4141721919302363
+0.9593154004579727 0.09623430962339263 0.9593154004579727 0.09623430962339263 0.41051877123128483
+0.9627057837531416 0.09414225941418752 0.9627057837531418 0.09414225941418752 0.4060194677106857
+0.9660961670483106 0.09205020920498241 0.9660961670483106 0.09205020920498241 0.40079819759403273
+0.9694865503434795 0.0899581589957773 0.9694865503434794 0.0899581589957773 0.3950091156674254
+0.9728769336399637 0.08786610879312283 0.9728769336399637 0.08786610879312283 0.3888334870446186
+0.9762673169361066 0.08577405863421957 0.9762673169361066 0.08577405863421957 0.3824751850087669
+0.9796577002337118 0.08368200844148688 0.9796577002337118 0.08368200844148688 0.3761545429303672
+0.9830480835328587 0.08158995815287447 0.9830480835328587 0.08158995815287447 0.3701003422085814
+0.9864384668193242 0.07949790794975176 0.9864384668193242 0.07949790794975176 0.3645398786805825
+0.9898288501144932 0.07740585774054665 0.9898288501144933 0.07740585774054665 0.35968733917621126
+0.9932192334096621 0.07531380753134154 0.9932192334096621 0.07531380753134154 0.3557311275152681
+0.0794979079497907 0.9932192334096622 0.07949790794979071 0.9932192334096622 0.08815951182036787
+0.08158995815899571 0.9898288501144935 0.08158995815899571 0.9898288501144935 0.08978109144406644
+0.08368200836820068 0.9864384668193246 0.08368200836820068 0.9864384668193246 0.09168776264171141
+0.08577405857740558 0.9830480835241556 0.0857740585774056 0.9830480835241556 0.09380070774317463
+0.08786610878661066 0.9796577002289867 0.08786610878661066 0.9796577002289867 0.09604041588137519
+0.0899581589958157 0.9762673169338179 0.0899581589958157 0.9762673169338179 0.09833039759119262
+0.09205020920502073 0.9728769336386489 0.09205020920502073 0.9728769336386488 0.10059985006759843
+0.09414225941422577 0.96948655034348 0.09414225941422577 0.96948655034348 0.10278539519781875
+0.09623430962343081 0.9660961670483111 0.09623430962343081 0.9660961670483111 0.104832085294483
+0.09832635983263587 0.9627057837531424 0.09832635983263587 0.9627057837531424 0.10669387523969527
+0.10041841004184096 0.9593154004579736 0.10041841004184095 0.9593154004579736 0.10833372864830391
+0.10251046025104592 0.9559250171628046 0.10251046025104592 0.9559250171628048 0.10972348394051783
+0.10460251046025083 0.952534633867636 0.10460251046025083 0.952534633867636 0.11084356714571529
+0.1066945606694557 0.9491442505724669 0.1066945606694557 0.9491442505724669 0.11168260712900864
+0.10878661087866061 0.9457538672772978 0.10878661087866061 0.9457538672772978 0.11223698608815136
+0.11087866108786582 0.942363483982129 0.11087866108786582 0.942363483982129 0.11251034194103493
+0.11297071129707113 0.93897310068696 0.11297071129707113 0.93897310068696 0.1125130282022619
+0.11506276150627655 0.9355827173917918 0.11506276150627655 0.9355827173917918 0.11226153175615798
+0.11715481171548159 0.9321923340966235 0.11715481171548159 0.9321923340966235 0.1117778470842693
+0.11924686192468568 0.9288019508014552 0.11924686192468568 0.9288019508014552 0.11108880285401902
+0.12133890233748497 0.925411573340679 0.12133890233748497 0.925411573340679 0.11022533423008425
+0.12343089546323789 0.9220212125328447 0.12343089546323789 0.9220212125328447 0.10922168649226947
+0.12552281290544612 0.918630852679499 0.12552281290544612 0.918630852679499 0.10811456566216392
+0.12761457477931137 0.9152406160721259 0.12761457477931137 0.9152406160721259 0.10694229798685147
+0.12970603239262982 0.9118509676575188 0.12970603239262982 0.9118509676575188 0.10574399391170142
+0.1317972284916706 0.9084621129708955 0.1317972284916706 0.9084621129708955 0.10455823444555011
+0.133888290871253 0.9050732022204494 0.133888290871253 0.9050732022204494 0.10342124556204381
+0.1359791954072582 0.9016830097014652 0.1359791954072582 0.9016830097014651 0.10236631801100828
+0.13807040432929005 0.8982914675384377 0.13807040432929005 0.8982914675384377 0.10142470760303536
+0.1401627709691574 0.8948996175946863 0.1401627709691574 0.8948996175946863 0.10062465635364028
+0.1422562188290268 0.8915082214375376 0.1422562188290268 0.8915082214375376 0.09998822738975405
+0.14434986158143057 0.8881173582300956 0.14434986158143057 0.8881173582300956 0.09953042397626133
+0.14644311187038947 0.8847268571911134 0.14644311187038947 0.8847268571911134 0.09926042279369506
+0.14853536174891382 0.8813365181732542 0.14853536174891382 0.8813365181732543 0.09918156195166973
+0.1506275569048232 0.8779461714089963 0.1506275569048232 0.8779461714089963 0.09929321200399623
+0.1527196559627971 0.8745558074424956 0.1527196559627971 0.8745558074424956 0.09958882553938635
+0.15481171146427797 0.8711654321689503 0.15481171146427797 0.8711654321689503 0.10005762139730444
+0.15690379349481673 0.8677750033742507 0.15690379349481673 0.8677750033742507 0.10068525423131493
+0.15899581577066557 0.8643846681470566 0.15899581577066557 0.8643846681470567 0.10145444592396298
+0.16108806006126905 0.8609907769039964 0.16108806006126905 0.8609907769039964 0.10234505216098046
+0.1631797350943541 0.85759660864037 0.1631797350943541 0.85759660864037 0.1033365647933331
+0.16526780677677091 0.8542078803413763 0.16526780677677091 0.8542078803413763 0.10440615569705393
+0.1673513664180418 0.8508299683122645 0.1673513664180418 0.8508299683122645 0.10553128740886342
+0.16944130822170064 0.8474407239008709 0.16944130822170064 0.8474407239008709 0.10669396207843622
+0.1715471412029401 0.8440488512259824 0.1715471412029401 0.8440488512259824 0.10787711875355442
+0.17361922974959035 0.8406735363070913 0.17361922974959035 0.8406735363070913 0.10903159615088291
+0.17566861041436235 0.8373142133337311 0.17566861041436235 0.8373142133337311 0.11014381507950355
+0.17786333656081868 0.8339731435760132 0.17786333656081868 0.8339731435760133 0.1112684434674407
+0.18006289316170818 0.830583408351186 0.18006289316170818 0.8305834083511862 0.11231851049109921
+0.18228361662585535 0.8272234137322787 0.18228361662585535 0.8272234137322787 0.11328268746628191
+0.18439313157583506 0.8239071836396844 0.18439313157583506 0.8239071836396844 0.1140778529433681
+0.18638606493174883 0.8205354929518096 0.18638606493174883 0.8205354929518096 0.11469776424862167
+0.1883411349751029 0.8170302426417819 0.18834113497510294 0.817030242641782 0.11513983739122281
+0.19050416754568844 0.8135717837278564 0.19050416754568844 0.8135717837278564 0.1154927046591996
+0.19271828304824865 0.8102031212770205 0.19271828304824865 0.8102031212770205 0.11569143323869081
+0.19484900003273523 0.806912896918579 0.19484900003273523 0.806912896918579 0.11569999327554202
+0.19673197252240887 0.8031471132542753 0.19673197252240884 0.8031471132542753 0.1152934732611719
+0.19959313883168123 0.8005857707376183 0.19959313883168123 0.8005857707376183 0.1153229606613255
+0.2005310350104403 0.7969339243857131 0.2005310350104403 0.7969339243857131 0.11432901081531607
+0.2034108927542092 0.7904882287981114 0.20341089275420918 0.7904882287981114 0.11235364833928978
+0.20314363596639445 0.793923607346604 0.20314363596639445 0.793923607346604 0.1137773402671568
+0.20697181547709154 0.7884665535643777 0.2069718154770915 0.7884665535643777 0.1122796938451713
+0.20706257488635713 0.7843031737200147 0.20706257488635713 0.7843031737200147 0.11016630851247779
+0.21050356836475706 0.782000927016102 0.21050356836475706 0.782000927016102 0.10967916327681716
+0.2135341239685771 0.7757208709873388 0.2135341239685771 0.7757208709873388 0.10679379737645746
+0.21361860908093377 0.7795361444204327 0.21361860908093377 0.7795361444204327 0.10900691242583126
+0.21693551855475116 0.7696564376742483 0.21693551855475116 0.7696564376742483 0.10403097864624215
+0.2168851831272515 0.7736122931026058 0.2168851831272515 0.7736122931026058 0.1063072097874782
+0.22034458092466852 0.763515619728597 0.2203445809246685 0.7635156197285972 0.10144366821050575
+0.22031482382433065 0.7675065501803776 0.22031482382433065 0.7675065501803776 0.10360895458238528
+0.2237487938477525 0.7572804991915675 0.2237487938477525 0.7572804991915675 0.09932131856397301
+0.22372196767703348 0.7614137633899475 0.22372196767703348 0.7614137633899475 0.10127669513356184
+0.22714514456609886 0.7510118968923873 0.22714514456609883 0.7510118968923872 0.09799993745671214
+0.2271335213431001 0.7551624903899734 0.22713352134310008 0.7551624903899734 0.09954094681596132
+0.23054477445356725 0.7447426206241378 0.23054477445356722 0.7447426206241378 0.09771951150116866
+0.23054351077991397 0.7489031216882159 0.23054351077991395 0.7489031216882159 0.09875581385257513
+0.23393711832437375 0.7426782006474012 0.23393711832437372 0.7426782006474012 0.09908836164884806
+0.23732800451450276 0.7407360303908583 0.23732800451450276 0.7407360303908583 0.10088679362497273
+0.24038984153904158 0.7396290555354245 0.24038984153904158 0.7396290555354245 0.10290746221705185
+0.24205428634045906 0.7368157426038643 0.24205428634045908 0.7368157426038643 0.10403769026562155
+0.24438308519025725 0.7339673160532845 0.24438308519025728 0.7339673160532846 0.10590904171223699
+0.2490013230477394 0.7282466179004284 0.2490013230477394 0.7282466179004284 0.1102759583517422
+0.2467116116079352 0.731106979181548 0.24671161160793523 0.731106979181548 0.1080127394498005
+0.25259790334593374 0.7286671469474285 0.25259790334593374 0.7286671469474285 0.11376266670848205
+0.25674435637065224 0.7131166434929326 0.25674435637065224 0.7131166434929326 0.11912739877890809
+0.25902094523556113 0.7100237754197712 0.25902094523556113 0.7100237754197712 0.1215005680178509
+0.26134650224213046 0.7068989379339605 0.26134650224213046 0.7068989379339605 0.12378252966395233
+0.2788818565282846 0.6797192096087199 0.2788818565282846 0.67971920960872 0.13161931442531505
+0.26480923994527844 0.6972421852829119 0.26480923994527844 0.6972421852829119 0.1264713731099171
+0.2763938844156516 0.6826504145693569 0.27639388441565155 0.6826504145693569 0.13132891982366834
+0.267119097679115 0.6942863527268456 0.26711909767911507 0.6942863527268456 0.12795061853726752
+0.26937676929932364 0.6913591040033209 0.26937676929932364 0.6913591040033209 0.1291402779143436
+0.2735005997657531 0.6849475183943241 0.2735005997657531 0.6849475183943241 0.13034591319574163
+0.27166588213188375 0.6884040732099086 0.27166588213188375 0.6884040732099086 0.1300943706744142
+0.26368454290575344 0.7038062277501483 0.26368454290575344 0.7038062277501483 0.12588994535816467
+0.2660227226018671 0.7007684872144812 0.26602272260186716 0.7007684872144812 0.12777616752657675
+0.25355587813160685 0.7223975494718867 0.2535558781316069 0.7223975494718867 0.11517367818267991
+0.254874220008736 0.7257237596317085 0.254874220008736 0.7257237596317085 0.1162590437069956
+0.25583082859328427 0.7194473625228588 0.25583082859328427 0.7194473625228587 0.11770706170297772
+0.2580991013409087 0.7164685381512156 0.2580991013409087 0.7164685381512156 0.12021704700815182
+0.2981346392348581 0.6593156997475594 0.2981346392348581 0.6593156997475594 0.13074847212032117
+0.2957666770743339 0.6622466345647543 0.2957666770743339 0.6622466345647543 0.13111521814849225
+0.29339032921241703 0.6651917474505213 0.293390329212417 0.6651917474505212 0.13157670719813364
+0.2910145884320519 0.6681433355191014 0.2910145884320519 0.6681433355191014 0.1320713834513988
+0.2886482992987789 0.6711207150224232 0.2886482992987789 0.6711207150224232 0.13255602272476974
+0.2863184466868719 0.6741218819337607 0.28631844668687195 0.6741218819337607 0.13298463355498988
+0.28411037012974233 0.6771288075620511 0.28411037012974233 0.6771288075620511 0.1333403997683226
+0.2820309894753918 0.6801155349473579 0.2820309894753918 0.6801155349473579 0.1336027051696885
+0.30166111070739055 0.650211793525437 0.30166111070739055 0.650211793525437 0.12796740242339696
+0.3071611462231607 0.6366225517086114 0.3071611462231607 0.6366225517086114 0.12719370095634638
+0.309655400465001 0.6336532425057695 0.309655400465001 0.6336532425057695 0.12873511214342312
+0.3121137631489861 0.6307007246149547 0.3121137631489861 0.6307007246149547 0.13066015655098426
+0.3163442089830097 0.6215652419756044 0.3163442089830097 0.6215652419756044 0.13526083454287938
+0.3138657005888656 0.6243856742364902 0.3138657005888656 0.62438567423649 0.1324879523284583
+0.314628822110896 0.6278537301070103 0.314628822110896 0.6278537301070103 0.13305891334908504
+0.3220211320913018 0.6192160215946884 0.3220211320913018 0.6192160215946884 0.14232262005878926
+0.31961194904695955 0.6221440386701812 0.31961194904695955 0.6221440386701812 0.13897070419162452
+0.30374429135040565 0.6472451212799885 0.30374429135040565 0.6472451212799885 0.12802026002000344
+0.3052791764163082 0.6439803117149984 0.30527917641630825 0.6439803117149984 0.1278355771061438
+0.3081851902219934 0.6404696486186137 0.3081851902219934 0.6404696486186136 0.12897642834876458
+0.300468263991956 0.6563773199686006 0.300468263991956 0.6563773199686006 0.1305060626790799
+0.3027776814667376 0.6534229567888388 0.3027776814667376 0.6534229567888388 0.130440678328143
+0.3943553494793919 0.4544872169074606 0.3943553494793918 0.45448721690746063 0.2738914457967834
+0.3909192999541315 0.455821790631159 0.3909192999541315 0.455821790631159 0.25355949816356915
+0.386485209399291 0.4581518282268426 0.386485209399291 0.4581518282268426 0.24400013409449697
+0.3893403788973962 0.45781803675171184 0.3893403788973962 0.45781803675171184 0.24535672690475704
+0.382595930638248 0.4611908798077798 0.382595930638248 0.4611908798077798 0.25342112736289163
+0.3857212687822658 0.4605724562147639 0.3857212687822658 0.4605724562147639 0.2471375530124955
+0.37995249556761485 0.4625638700594164 0.37995249556761485 0.4625638700594164 0.2637852051401249
+0.3778174358154636 0.4640618203504 0.3778174358154636 0.4640618203504 0.2756083369830774
+0.38245460922220975 0.4632607295509208 0.38245460922220975 0.46326072955092085 0.2616429488157771
+0.3773526659125507 0.46655260825202927 0.3773526659125506 0.46655260825202927 0.29073452376670367
+0.37358796134239286 0.46696126561409385 0.37358796134239286 0.46696126561409385 0.3009010533538308
+0.37201957803754454 0.4697881270960206 0.37201957803754454 0.46978812709602064 0.32096945821349215
+0.3682569894964761 0.4709372195314194 0.36825698949647606 0.4709372195314194 0.33352999321833027
+0.3657765578775985 0.47316107040998395 0.3657765578775985 0.47316107040998395 0.349117330787839
+0.37104228648017146 0.472554673964267 0.37104228648017146 0.47255467396426704 0.33924469119261386
+0.36499839451343535 0.47597339647309944 0.36499839451343535 0.47597339647309944 0.36514933821932555
+0.3610305138907644 0.47692254747977736 0.3610305138907644 0.4769225474797773 0.3723608170698172
+0.3597268004371298 0.4805974574846527 0.35972680043712973 0.4805974574846527 0.3894201993520708
+0.3567843185858159 0.4832066401576641 0.3567843185858159 0.4832066401576642 0.3994434891478711
+0.3542204583945533 0.48509962338800294 0.3542204583945533 0.48509962338800294 0.4051750332219992
+0.3535361841174364 0.4876838122530994 0.3535361841174364 0.4876838122530995 0.41229282628764347
+0.3491995899248346 0.49201513356491106 0.3491995899248346 0.49201513356491106 0.419120791751248
+0.3526390165295087 0.49074877862970623 0.35263901652950874 0.4907487786297063 0.41877188132840376
+0.348219811518232 0.49534775652644936 0.348219811518232 0.4953477565264493 0.42265775920166365
+0.34363632786951004 0.5003878478815049 0.34363632786951004 0.5003878478815049 0.4217939142477607
+0.3471568626238402 0.49896857644191805 0.3471568626238402 0.498968576441918 0.42394617885925373
+0.34278605647556715 0.5040203106249763 0.34278605647556715 0.5040203106249762 0.4198645476785891
+0.33851524053132237 0.5093686672044145 0.33851524053132237 0.5093686672044145 0.4116566601285923
+0.34202454659556714 0.507667590526087 0.34202454659556714 0.5076675905260871 0.4157566741625632
+0.3377836565969227 0.5130971749701958 0.3377836565969227 0.5130971749701958 0.40479947083757845
+0.3330181419457058 0.5190855663170559 0.33301814194570584 0.5190855663170559 0.38976864902972047
+0.33717583380250143 0.5170853002867095 0.33717583380250143 0.5170853002867095 0.39556021847528405
+0.33327235087495094 0.5228773061230765 0.33327235087495094 0.5228773061230765 0.3790101288323738
+0.3298207458515125 0.5280334888180438 0.3298207458515125 0.5280334888180437 0.36295684204098816
+0.3295523424772459 0.5311878989664959 0.3295523424772459 0.5311878989664959 0.3521426504721726
+0.3330355966990227 0.5264690313768977 0.3330355966990228 0.5264690313768977 0.3675865010753623
+0.32939473636178457 0.5344262745483968 0.32939473636178457 0.5344262745483968 0.34043524707928796
+0.32653700935689617 0.5395187313264231 0.32653700935689617 0.5395187313264231 0.3227324393888953
+0.3265911054110176 0.5427928556449668 0.3265911054110176 0.5427928556449668 0.31003223684832065
+0.32960371646610137 0.5374240501945126 0.32960371646610137 0.5374240501945126 0.32896283133454446
+0.32665698302610263 0.5460892320670363 0.32665698302610263 0.5460892320670362 0.29702325577887784
+0.3237360086297992 0.5514355468684736 0.3237360086297992 0.5514355468684736 0.27863280487870495
+0.3240168029892275 0.5547600072508002 0.32401680298922747 0.5547600072508002 0.26560924912005635
+0.3267942295734264 0.5493613886933573 0.32679422957342646 0.5493613886933573 0.2839798815485625
+0.32434842772566014 0.5581111193772704 0.32434842772566014 0.5581111193772704 0.252657572431759
+0.32174151648598004 0.5637310184861312 0.32174151648598004 0.5637310184861312 0.23493281789439815
+0.32223402172410354 0.5671306431075959 0.32223402172410354 0.5671306431075959 0.22288053762945492
+0.32474111458025395 0.5614561229489645 0.32474111458025395 0.5614561229489645 0.2400419519397202
+0.3227863384102273 0.5705323248341199 0.32278633841022725 0.5705323248341198 0.21144926653314736
+0.32047041336547877 0.5763956835076398 0.32047041336547877 0.5763956835076397 0.19608468778995103
+0.3211774160832693 0.5798745717979892 0.3211774160832693 0.5798745717979892 0.18641689258999014
+0.3233977875818898 0.5739270320930044 0.3233977875818898 0.5739270320930044 0.2008219844512162
+0.32196014512483184 0.5833358822428744 0.3219601451248319 0.5833358822428744 0.17785627378265123
+0.3200016536143519 0.5894344928662758 0.3200016536143519 0.5894344928662757 0.1661242545943921
+0.32084066045227927 0.5929700072842535 0.32084066045227927 0.5929700072842535 0.16007870392902102
+0.32280393581058736 0.5867809197674827 0.32280393581058736 0.5867809197674827 0.17051859040473585
+0.32171824311131236 0.5965518244404003 0.32171824311131236 0.5965518244404003 0.155289269023103
+0.32085677645496913 0.6028432261051027 0.3208567764549692 0.6028432261051027 0.14822896059370713
+0.3220686102005204 0.606251206442566 0.3220686102005204 0.606251206442566 0.1465926802097308
+0.32303406037181404 0.6000363262934774 0.32303406037181404 0.6000363262934774 0.152113089665408
+0.32303633082724853 0.6096819063584187 0.32303633082724853 0.6096819063584187 0.14580540902451097
+0.3239132069265076 0.613163794440087 0.3239132069265076 0.6131637944400871 0.1458107880700196
+0.32452865606912945 0.6163846196595449 0.32452865606912945 0.6163846196595449 0.1461418736511412
+0.3250389818417653 0.6197882752480954 0.32503898184176533 0.6197882752480953 0.14677863163774932
+0.3972815976620269 0.4580199625826114 0.3972815976620269 0.4580199625826114 0.26453084794179976
+0.400107838107922 0.46135824165938494 0.400107838107922 0.46135824165938494 0.2518544728601724
+0.4899972781850654 0.3855749378015058 0.4899972781850654 0.3855749378015058 0.4826379398986953
+0.49203342014564794 0.38277497610456923 0.49203342014564794 0.3827749761045692 0.4630418358990461
+0.4952333280090668 0.3793291934258709 0.4952333280090668 0.3793291934258709 0.4345478610664895
+0.49431967019554435 0.38187043131302845 0.49431967019554435 0.38187043131302845 0.4524217154749768
+0.49898496172497653 0.37595784202100263 0.4989849617249766 0.3759578420210027 0.4006192018343633
+0.49771519523026514 0.379095300370168 0.49771519523026514 0.379095300370168 0.4243631422262531
+0.5015808188845371 0.3741582475674573 0.5015808188845371 0.37415824756745725 0.3783932682984854
+0.5015314099957542 0.3768658731593017 0.5015314099957542 0.3768658731593017 0.39431178946613205
+0.5063306619754491 0.36946011552418057 0.506330661975449 0.36946011552418057 0.3287204142478381
+0.504315723421371 0.372644564404331 0.504315723421371 0.372644564404331 0.35613865245859655
+0.5151601266834602 0.3626775225194943 0.5151601266834601 0.3626775225194943 0.25713417688609036
+0.5125709566902419 0.36572641199377665 0.5125709566902419 0.3657264119937767 0.2804376922958955
+0.5091301393732035 0.37010798097335457 0.5091301393732035 0.37010798097335457 0.3178180234882755
+0.5112755603665613 0.3686472769627587 0.5112755603665613 0.3686472769627587 0.30008489513386194
+0.5226759891236492 0.3575823691789206 0.5226759891236492 0.3575823691789206 0.22919650752930462
+0.5255463298005542 0.356997662866837 0.5255463298005542 0.356997662866837 0.23381498464155345
+0.5212441496486023 0.3612979525420575 0.5212441496486023 0.36129795254205754 0.24258658615142828
+0.5184198348087556 0.36385762805676924 0.5184198348087556 0.3638576280567692 0.2548624990239128
+0.5328842692740237 0.3540980677210773 0.5328842692740237 0.35409806772107727 0.26422948424576725
+0.5356603209705957 0.3523978818795085 0.5356603209705958 0.35239788187950843 0.28028269869050276
+0.5303135715855525 0.3561846590973563 0.5303135715855526 0.3561846590973563 0.25411742564087486
+0.5280266683390392 0.35838217641946596 0.5280266683390392 0.35838217641946596 0.24942978861196616
+0.5470611796133037 0.3481085488105403 0.5470611796133037 0.3481085488105404 0.37230211870101915
+0.5442252501167317 0.3500294092989853 0.5442252501167317 0.3500294092989853 0.35146613009246114
+0.5414660213700458 0.35197384218068056 0.5414660213700458 0.35197384218068056 0.33176891232557265
+0.538772851692008 0.35403226767952267 0.538772851692008 0.35403226767952267 0.3139437364443754
+0.5558213732275061 0.34573580599038195 0.5558213732275061 0.34573580599038195 0.4491424742635964
+0.5529488813793645 0.34783675231291494 0.5529488813793645 0.34783675231291494 0.4298986837852942
+0.5501211390944547 0.34994683012136657 0.5501211390944548 0.34994683012136657 0.4103939324653298
+0.5797233379484771 0.34238670133966487 0.5797233379484771 0.34238670133966487 0.6300304073719615
+0.5615903630815745 0.34521001224024284 0.5615903630815745 0.34521001224024284 0.5009779092944168
+0.558752993921232 0.3473934112068282 0.558752993921232 0.3473934112068282 0.48438933871049183
+0.5763103389031505 0.3436393479412141 0.5763103389031504 0.3436393479412141 0.613062559471527
+0.5673907992235718 0.3450722670014625 0.5673907992235718 0.3450722670014625 0.5510948897939133
+0.5730966902374753 0.3449464497150841 0.5730966902374753 0.3449464497150841 0.5959633917496117
+0.5703675704391541 0.3459445325556198 0.5703675704391541 0.3459445325556198 0.5794737505990191
+0.5647356093901252 0.3470453464114836 0.5647356093901252 0.3470453464114836 0.5375406634070207
+0.5947922086923269 0.3427895046933329 0.5947922086923269 0.3427895046933329 0.7095994460184873
+0.5889979474359662 0.3418886519781937 0.5889979474359662 0.3418886519781937 0.6801457005933703
+0.5915277420100096 0.3441534156309997 0.5915277420100096 0.3441534156309997 0.7023737225909935
+0.5857305187916998 0.343313705654958 0.5857305187916998 0.343313705654958 0.6700459542018979
+0.5824700768426809 0.34474812351994405 0.5824700768426809 0.34474812351994405 0.6583732336613454
+0.4927151320438197 0.3893266333998624 0.4927151320438197 0.3893266333998624 0.5046114841126891
+0.49531480734980393 0.39301623106985567 0.49531480734980393 0.39301623106985567 0.5322080213909155
+0.6109711508663732 0.3403700765096833 0.6109711508663732 0.3403700765096833 0.7417116081079199
+0.6074377735195127 0.34148496277878 0.6074377735195126 0.34148496277878 0.7401588208973898
+0.6039587929603522 0.34264578173647436 0.6039587929603522 0.34264578173647436 0.7374593611578976
+0.6005536661333271 0.3438641701687251 0.600553666133327 0.3438641701687251 0.7337018570739895
+0.5972214262823563 0.3451171559595636 0.5972214262823563 0.3451171559595636 0.7288078515404313
+0.6581333252988899 0.2925710254960082 0.6581333252988899 0.29257102549600816 0.6423115126568635
+0.6409242123815597 0.2957014332886005 0.6409242123815596 0.2957014332886005 0.6367143133138357
+0.6442158557070126 0.2950809873593061 0.6442158557070127 0.2950809873593061 0.638687097295297
+0.6476108563727553 0.29442123179199214 0.6476108563727553 0.29442123179199214 0.640177452896726
+0.6510737846614298 0.2937853078096961 0.6510737846614298 0.2937853078096961 0.6413051141130102
+0.6545761147898921 0.2931674751132905 0.654576114789892 0.2931674751132905 0.6420179551038553
+0.6378359404929321 0.29706037264934126 0.6378359404929322 0.29706037264934126 0.636540595812244
+0.6345402056643189 0.2980186077956362 0.6345402056643189 0.2980186077956362 0.6347053947511876
+0.6298339091170597 0.30254842395913795 0.6298339091170596 0.3025484239591379 0.6403850848318543
+0.6251964671947136 0.30698607422567065 0.6251964671947136 0.30698607422567065 0.6464604432710618
+0.6171801818258549 0.3221098903449172 0.617180181825855 0.32210989034491716 0.684050708772128
+0.6204515255609133 0.3112649351459392 0.6204515255609132 0.3112649351459393 0.6522056894268856
+0.6193146882365652 0.3148646504776647 0.6193146882365652 0.3148646504776647 0.662358289382947
+0.6182985905289252 0.318530472602315 0.6182985905289252 0.318530472602315 0.673274423454696
+0.6239935328674397 0.31059124213864736 0.6239935328674396 0.31059124213864736 0.6559127591698629
+0.6192457821009661 0.3248617272204592 0.6192457821009661 0.3248617272204592 0.6966316983616503
+0.6286861429986499 0.30626305339368765 0.6286861429986499 0.30626305339368765 0.6495155303433887
+0.6333341446521228 0.30172026725329515 0.6333341446521228 0.3017202672532951 0.642948574226732
+0.6400120738490824 0.29862197430139553 0.6400120738490824 0.29862197430139553 0.6426054442548963
+0.6617330501346558 0.29202007225458 0.6617330501346558 0.29202007225458 0.6422000955140862
+0.6653671316623276 0.2915139564568792 0.6653671316623276 0.2915139564568792 0.6416537698338205
+0.6690328109604783 0.2910465053554255 0.6690328109604783 0.2910465053554255 0.6406378425928
+0.6727216446075128 0.29064158577884486 0.6727216446075128 0.29064158577884486 0.6391613948834974
+0.6180161591276104 0.3283729189542606 0.6180161591276104 0.3283729189542606 0.707271912320193
+0.6168799553512915 0.3319993747414487 0.6168799553512915 0.3319993747414487 0.7186438333765226
+0.6157297621960892 0.33567480791562493 0.6157297621960892 0.33567480791562493 0.7304095406108592
+0.6145515985044684 0.3393298866244052 0.6145515985044684 0.3393298866244052 0.7422436526035742
+0.681834038648656 0.28667010386907105 0.681834038648656 0.28667010386907105 0.6297130718880249
+0.6764223118925853 0.29030890212459076 0.6764223118925853 0.29030890212459076 0.637223094829602
+0.6801211629570701 0.2900224839031071 0.6801211629570701 0.2900224839031071 0.6347914597940929
+0.7129007265356221 0.2571538659991116 0.7129007265356221 0.25715386599911166 0.5611542136683038
+0.7107112251134815 0.2601289024466447 0.7107112251134815 0.2601289024466447 0.5668190072122731
+0.7049680162821211 0.2633458496419178 0.7049680162821211 0.2633458496419178 0.5771115966210673
+0.7030451973542479 0.2667184901193091 0.7030451973542479 0.2667184901193091 0.5837088951478734
+0.6976558893022357 0.270014290116702 0.6976558893022357 0.270014290116702 0.5939520377346444
+0.6958972443007264 0.27327311279297023 0.6958972443007264 0.27327311279297023 0.6003044885534295
+0.6890634993753217 0.280000889117707 0.6890634993753216 0.280000889117707 0.6158419707107492
+0.6907855961954861 0.27690506027394535 0.690785596195486 0.27690506027394535 0.6101354253642496
+0.6941977880588597 0.27653586052510193 0.6941977880588598 0.2765358605251019 0.6064952880286344
+0.7011673509341029 0.2700181098310782 0.7011673509341029 0.27001810983107827 0.5902466935481258
+0.7086392055961374 0.263470442588978 0.7086392055961374 0.263470442588978 0.5732087989364337
+0.6904733626266468 0.2830357498776985 0.6904733626266468 0.2830357498776985 0.6183961979180407
+0.6853567060202784 0.2864690832088052 0.6853567060202784 0.2864690832088052 0.6269210168357232
+0.6885500082029887 0.2863493400547329 0.6885500082029887 0.28634934005473284 0.6240403304505674
+0.7185484297400565 0.2546751159949157 0.7185484297400565 0.2546751159949157 0.5530880901430665
+0.7220985791278104 0.2547323861050273 0.7220985791278104 0.2547323861050273 0.5496890623241409
+0.7164698337879996 0.25762546170372447 0.7164698337879996 0.2576254617037245 0.5579767599174912
+0.7277396222189392 0.2516961711416911 0.7277396222189392 0.2516961711416911 0.5425739505139364
+0.7256959480057198 0.2547997908196093 0.7256959480057198 0.2547997908196093 0.5462240134080768
+0.7313743637651613 0.2517708897727938 0.7313743637651613 0.25177088977279377 0.5395423739421678
+0.7334402484409481 0.24875850419641438 0.7334402484409481 0.2487585041964144 0.5369951254800367
+0.7447709762079094 0.23034391378196115 0.7447709762079094 0.23034391378196115 0.5329927499206834
+0.742721354935345 0.23357557462778675 0.742721354935345 0.23357557462778675 0.5327626677737899
+0.7407092452921678 0.23672908557714903 0.7407092452921678 0.23672908557714903 0.532816385209883
+0.7354468915302325 0.24581141804199944 0.7354468915302325 0.24581141804199944 0.5351093767451114
+0.7372476052516821 0.24281337704839956 0.7372476052516821 0.24281337704839956 0.5338455352211776
+0.7388929954853453 0.23979315037344542 0.7388929954853453 0.23979315037344542 0.5331439711234603
+0.7510337469982376 0.2270824851785555 0.7510337469982376 0.22708248517855553 0.533060826263961
+0.748941678276847 0.2304015834219848 0.748941678276847 0.2304015834219848 0.5324552808340948
+0.7572990300990492 0.22368888169474221 0.7572990300990492 0.22368888169474221 0.5331909891857954
+0.7551982980042214 0.22705837962432707 0.7551982980042214 0.22705837962432707 0.5325723536588894
+0.7635550862225537 0.22026586440731108 0.7635550862225537 0.22026586440731108 0.5327586239591521
+0.7614472026862004 0.22363779734876074 0.7614472026862004 0.22363779734876074 0.5324853084228676
+0.7697905630593799 0.2168085905183431 0.7697905630593799 0.2168085905183431 0.5312913987985669
+0.7677090285049668 0.22020000959756972 0.7677090285049668 0.22020000959756972 0.5316019795652603
+0.7760240474291313 0.21341946181818405 0.7760240474291313 0.21341946181818408 0.5284055552504072
+0.773909745984176 0.21673762199778013 0.773909745984176 0.21673762199778013 0.5295187542835985
+0.7801264471258754 0.21336200135182048 0.7801264471258754 0.21336200135182048 0.5259374748641803
+0.7823620564283705 0.21000576850853944 0.7823620564283705 0.21000576850853944 0.5238982418113776
+0.7845222252057469 0.20666002709194584 0.7845222252057469 0.20666002709194584 0.5213259437269747
+0.7887690438314845 0.20661587026665856 0.7887690438314845 0.20661587026665854 0.5177690482783329
+0.7908542214330064 0.20334615127458378 0.7908542214330064 0.20334615127458378 0.5145295682545927
+0.7949544179176841 0.20306517987312256 0.7949544179176841 0.2030651798731226 0.5104256116707412
+0.7969403314871796 0.1996626171407499 0.7969403314871796 0.19966261714074987 0.5065550413204024
+0.8004803010202599 0.19945458717243475 0.8004803010202599 0.19945458717243475 0.50248333612139
+0.8033259706476589 0.19682418473244812 0.803325970647659 0.19682418473244812 0.4979705813142194
+0.8071049127002351 0.19574805055421962 0.807104912700235 0.19574805055421962 0.4926870437111527
+0.8096963394726497 0.1927396353079841 0.8096963394726497 0.19273963530798413 0.4880336694891253
+0.8135781760013063 0.19082295239920688 0.8135781760013064 0.19082295239920688 0.48216045036029515
+0.8171240351311413 0.1886905942416403 0.8171240351311413 0.18869059424164034 0.4765218690572441
+0.820367218821036 0.18654706799257914 0.820367218821036 0.18654706799257914 0.4713744959030337
+0.8237266711438199 0.18445880386943958 0.8237266711438199 0.18445880386943958 0.4661433786917793
+0.8272621695526725 0.1823703783691211 0.8272621695526725 0.1823703783691211 0.46078182236865056
+0.8306961371195173 0.18025703060437015 0.8306961371195173 0.18025703060437015 0.4556140322280724
+0.8339882948626868 0.17797873712342727 0.8339882948626868 0.17797873712342727 0.45057033148094966
+0.837303783110122 0.17580945330454778 0.837303783110122 0.17580945330454778 0.445580452938186
+0.8406497430041543 0.1736607568108939 0.8406497430041543 0.1736607568108939 0.4405706192350434
+0.8440364885691225 0.17155555680984474 0.8440364885691224 0.17155555680984477 0.43553038323888815
+0.8473962407852372 0.16950770257925163 0.8473962407852372 0.16950770257925163 0.43051058330226194
+0.8507863135385255 0.16742428919039362 0.8507863135385255 0.16742428919039362 0.4253838779781553
+0.8541944118409435 0.16532264276842534 0.8541944118409434 0.16532264276842534 0.4201675082566095
+0.8575971912786261 0.16322804786696732 0.8575971912786261 0.16322804786696732 0.4149160792191883
+0.8609910197933011 0.161132677247286 0.8609910197933012 0.161132677247286 0.40964619034666366
+0.8643832879969745 0.1590253851673624 0.8643832879969745 0.1590253851673624 0.4043847291557446
+0.8677762314356724 0.15692287421536846 0.8677762314356724 0.15692287421536846 0.39920798027693344
+0.8711679517562293 0.15482290436684035 0.8711679517562293 0.15482290436684035 0.3941966305203639
+0.8745580860314431 0.15272821714810694 0.8745580860314431 0.15272821714810694 0.3894460966030579
+0.8779489779505222 0.15063708667542974 0.8779489779505222 0.15063708667542974 0.3850591951870737
+0.8813396729403951 0.14854582592636525 0.8813396729403952 0.14854582592636525 0.3811474778491972
+0.8847293092296861 0.1464524271504217 0.8847293092296861 0.1464524271504217 0.3778229176561485
+0.8881189505763144 0.14436007407012094 0.8881189505763144 0.14436007407012094 0.37519078566089337
+0.8915082885938764 0.14226852461751263 0.8915082885938764 0.14226852461751263 0.3733395840599185
+0.8948973224567518 0.14017719114828156 0.8948973224567517 0.14017719114828156 0.3723335665676492
+0.8982865958300966 0.13808424540503772 0.8982865958300966 0.13808424540503772 0.37220725791102977
+0.9016768656310488 0.13598898422225386 0.9016768656310488 0.1359889842222539 0.37296163899939877
+0.9050679839374333 0.13389429759081106 0.9050679839374333 0.13389429759081106 0.37455769771337094
+0.9084591829622605 0.13180028276707836 0.9084591829622605 0.13180028276707836 0.37691877032653
+0.9118500343256075 0.1297071129706744 0.9118500343256075 0.1297071129706744 0.3799327611500121
+0.9152404176207765 0.12761506276146928 0.9152404176207763 0.12761506276146928 0.38345811733896223
+0.9186308009159454 0.12552301255226417 0.9186308009159454 0.12552301255226417 0.3873340230311921
+0.9220211842111143 0.12343096234305906 0.9220211842111145 0.12343096234305906 0.3913841606293236
+0.9254115675062833 0.12133891213385395 0.9254115675062833 0.12133891213385395 0.3954261851435153
+0.9288019508014522 0.11924686192464884 0.9288019508014521 0.11924686192464884 0.399279383066418
+0.9321923340966212 0.11715481171544373 0.9321923340966212 0.11715481171544373 0.4027716879246426
+0.9355827173917901 0.11506276150623862 0.9355827173917902 0.11506276150623862 0.4057457697001589
+0.938973100686959 0.11297071129703351 0.938973100686959 0.11297071129703351 0.40806416671344875
+0.942363483982128 0.1108786610878284 0.9423634839821279 0.1108786610878284 0.4096134908128395
+0.9457538672772969 0.10878661087862329 0.9457538672772969 0.10878661087862329 0.410307777949064
+0.9491442505724659 0.10669456066941818 0.949144250572466 0.10669456066941818 0.4100910756234896
+0.9525346338676348 0.10460251046021307 0.9525346338676348 0.10460251046021307 0.40893934670907867
+0.9559250171628038 0.10251046025100796 0.9559250171628036 0.10251046025100796 0.4068617349120696
+0.9593154004579727 0.10041841004180285 0.9593154004579727 0.10041841004180285 0.4039011965033727
+0.9627057837531416 0.09832635983259774 0.9627057837531418 0.09832635983259774 0.40013445961368727
+0.9660961670483106 0.09623430962339263 0.9660961670483106 0.09623430962339263 0.3956712207061572
+0.9694865503434795 0.09414225941418752 0.9694865503434794 0.09414225941418752 0.3906524265875812
+0.9728769336390859 0.09205020920602529 0.9728769336390858 0.09205020920602529 0.38524742823747177
+0.9762673169348259 0.08995815900632777 0.9762673169348259 0.08995815900632777 0.37964974524616363
+0.9796577002305158 0.08786610878578646 0.9796577002305158 0.08786610878578648 0.37407116691536
+0.9830480835268728 0.08577405857534669 0.9830480835268728 0.08577405857534669 0.3687339665420711
+0.9864384668193242 0.08368200836816198 0.9864384668193242 0.08368200836816198 0.3638611560522694
+0.9898288501144932 0.08158995815895687 0.9898288501144933 0.08158995815895687 0.35966498485762527
+0.9932192334096621 0.07949790794975176 0.9932192334096621 0.07949790794975176 0.3563342849078072
+0.08368200836820072 0.9932192334096623 0.08368200836820072 0.9932192334096622 0.08929164392346732
+0.08577405857740572 0.9898288501144934 0.08577405857740572 0.9898288501144935 0.09087728929407728
+0.0878661087866107 0.9864384668193246 0.0878661087866107 0.9864384668193246 0.09274594327051873
+0.08995815899581572 0.9830480835241555 0.08995815899581572 0.9830480835241556 0.0948192895154056
+0.09205020920502076 0.9796577002289867 0.09205020920502076 0.9796577002289867 0.09701908480405154
+0.09414225941422578 0.976267316933818 0.09414225941422578 0.976267316933818 0.09927072344984639
+0.0962343096234309 0.9728769336386489 0.0962343096234309 0.9728769336386488 0.10150574548525411
+0.09832635983263588 0.96948655034348 0.09832635983263588 0.96948655034348 0.10366342486519046
+0.10041841004184085 0.9660961670483112 0.10041841004184084 0.9660961670483114 0.1056916375085555
+0.10251046025104586 0.9627057837531424 0.10251046025104586 0.9627057837531424 0.10754720750679327
+0.1046025104602508 0.9593154004579733 0.1046025104602508 0.9593154004579733 0.10919589656918462
+0.10669456066945578 0.9559250171628042 0.10669456066945578 0.9559250171628042 0.1106121597890015
+0.10878661087866077 0.9525346338676356 0.10878661087866077 0.9525346338676356 0.11177875234484826
+0.11087866108786591 0.9491442505724667 0.11087866108786591 0.9491442505724667 0.11268624134615272
+0.11297071129707108 0.9457538672772978 0.11297071129707108 0.9457538672772978 0.11333245503249745
+0.11506276150627624 0.942363483982129 0.11506276150627624 0.942363483982129 0.11372188674636263
+0.11715481171548109 0.9389731006869604 0.11715481171548107 0.9389731006869603 0.11386506226311986
+0.11924686192468532 0.9355827173917922 0.11924686192468532 0.9355827173917922 0.1137778745616581
+0.12133891213388977 0.9321923340966233 0.12133891213388977 0.9321923340966233 0.11348088785667095
+0.12343096234309352 0.9288019508014537 0.12343096234309352 0.9288019508014537 0.11299861178386249
+0.1255230125522976 0.9254115675062836 0.1255230125522976 0.9254115675062836 0.1123587467134043
+0.1276150627615031 0.922021184211113 0.1276150627615031 0.922021184211113 0.11159140377103295
+0.12970711297071072 0.9186308009159428 0.12970711297071072 0.9186308009159428 0.1107283027044893
+0.1317991060476264 0.9152404659229935 0.13179910604762643 0.9152404659229935 0.10980194061966532
+0.13389091993068578 0.9118503321477545 0.13389091993068578 0.9118503321477543 0.10884478911623273
+0.1359825566720694 0.9084604425655264 0.1359825566720694 0.9084604425655264 0.10788847285811977
+0.13807419634130033 0.9050704604588921 0.13807419634130033 0.9050704604588921 0.10696288297753366
+0.1401659998774059 0.9016799984880056 0.14016599987740588 0.9016799984880056 0.10609560916955053
+0.1422580393920537 0.8982891413412813 0.1422580393920537 0.8982891413412813 0.10531166419196403
+0.14435033045137083 0.8948982992330067 0.14435033045137083 0.8948982992330067 0.10463284265964191
+0.14644277207039252 0.8915077032741837 0.1464427720703925 0.8915077032741837 0.10407686112524121
+0.14853517956971818 0.8881172901447013 0.14853517956971818 0.8881172901447013 0.10365708816596096
+0.15062745065083386 0.8847269309835148 0.15062745065083386 0.8847269309835148 0.10338283481979425
+0.15271960473138946 0.881336568627279 0.15271960473138946 0.881336568627279 0.1032595675562958
+0.1548116955202845 0.8779461955703122 0.1548116955202845 0.8779461955703122 0.10328895409907324
+0.15690375964210468 0.874555816214485 0.15690375964210468 0.874555816214485 0.10346908195177558
+0.15899581419033748 0.8711654342360154 0.15899581419033748 0.8711654342360154 0.10379479128750056
+0.16108786566322444 0.8677750513422074 0.16108786566322444 0.8677750513422074 0.10425802445046185
+0.16317991621899589 0.8643846681600241 0.16317991621899589 0.8643846681600241 0.10484811613254007
+0.16527196653069037 0.860994284899659 0.16527196653069035 0.8609942848996591 0.10555235394462396
+0.16736335887699294 0.8576034751313423 0.16736335887699294 0.8576034751313423 0.10635558804339858
+0.16945082293749816 0.8542145524800163 0.16945082293749816 0.8542145524800163 0.10723976863846352
+0.17154042845520942 0.8508269409942183 0.17154042845520942 0.8508269409942183 0.1081904537559205
+0.1736322788718282 0.8474388244162284 0.1736322788718282 0.8474388244162284 0.10918828623093448
+0.17571969557463973 0.8440532627095619 0.17571969557463973 0.8440532627095619 0.11020946650446461
+0.17779338667449077 0.8406773361786545 0.17779338667449077 0.8406773361786545 0.11122860050125882
+0.1798653960943984 0.8372994909336442 0.17986539609439836 0.8372994909336441 0.11222929196191826
+0.18201592306414102 0.8339174266559453 0.18201592306414102 0.8339174266559454 0.1132246792530442
+0.18419733757224363 0.8305479449028819 0.18419733757224363 0.830547944902882 0.11417157433052418
+0.18632537829032475 0.8271786115718867 0.18632537829032472 0.8271786115718865 0.11500844431059477
+0.18840222532017004 0.8238066876317374 0.18840222532017004 0.8238066876317375 0.11571640205217877
+0.1904567525019867 0.8204064786282473 0.1904567525019867 0.8204064786282473 0.11628647500229937
+0.1925277444255817 0.8169797427044077 0.1925277444255817 0.8169797427044078 0.11671484337810466
+0.19464078366816287 0.8135831626362924 0.19464078366816287 0.8135831626362924 0.1169955722734295
+0.19677732498760583 0.8102250393600622 0.19677732498760583 0.8102250393600622 0.11711287629291277
+0.19881453873925994 0.8068626906178249 0.19881453873925994 0.8068626906178249 0.11699820361143176
+0.2008878135078242 0.8036193080732412 0.20088781350782423 0.8036193080732411 0.11675422018515509
+0.20307178787297803 0.8003027115455656 0.203071787872978 0.8003027115455658 0.11630998425208526
+0.2050455787061835 0.796934818422498 0.20504557870618353 0.796934818422498 0.11563223043583983
+0.2069564689129087 0.7928642800286294 0.20695646891290867 0.7928642800286294 0.11439177648759756
+0.20990915382863876 0.790235415563129 0.20990915382863876 0.790235415563129 0.11390557145631304
+0.21103505845666465 0.7864517272481981 0.21103505845666468 0.7864517272481981 0.11228309756420843
+0.21427102637639506 0.7832777397615176 0.21427102637639503 0.7832777397615177 0.11133386148783554
+0.21675615786714178 0.7774712894359029 0.21675615786714178 0.7774712894359029 0.10856533354064078
+0.21645135090639134 0.7807109544482138 0.2164513509063913 0.7807109544482138 0.11040641755372475
+0.22021397476916868 0.7754117664267862 0.22021397476916868 0.7754117664267862 0.10829911262852765
+0.22033411262219224 0.7714963025169874 0.22033411262219224 0.7714963025169874 0.1059334451982104
+0.22367353793475367 0.7653823287654867 0.22367353793475367 0.7653823287654867 0.10337342162872888
+0.22363510231690772 0.7693389205118358 0.22363510231690772 0.7693389205118358 0.10564659668843039
+0.22711684129988002 0.759273928580117 0.22711684129988005 0.759273928580117 0.10136605868381075
+0.2270637213961175 0.7632824234313462 0.2270637213961175 0.7632824234313462 0.10339607553798424
+0.23051705407345632 0.7530410847136613 0.23051705407345632 0.7530410847136614 0.10011457250886265
+0.23049349012726614 0.7571360095483685 0.23049349012726614 0.7571360095483685 0.1017785839277995
+0.23395663489198468 0.7468058119330685 0.23395663489198468 0.7468058119330685 0.09993633732408208
+0.23392438145384808 0.7509296060049815 0.23392438145384808 0.7509296060049815 0.10109639094374223
+0.23734215548343626 0.7447484355826207 0.23734215548343626 0.7447484355826207 0.10153720655413594
+0.2406168455659965 0.7427822854057737 0.2406168455659965 0.7427822854057737 0.1034958402791677
+0.2434687948329352 0.7403617689914076 0.24346879483293524 0.7403617689914076 0.10543148526840262
+0.2457378321011774 0.7374842498188819 0.2457378321011774 0.7374842498188819 0.10716152500611391
+0.2480414167221481 0.7345082176575181 0.2480414167221481 0.7345082176575181 0.1091747229726467
+0.25032686524884346 0.7315873155750784 0.25032686524884346 0.7315873155750784 0.11139098607448807
+0.25393540958419375 0.7319826985148388 0.25393540958419375 0.7319826985148388 0.11501591448807232
+0.25618172208418627 0.7290322532464065 0.25618172208418627 0.7290322532464065 0.11746303642350585
+0.26037624955790667 0.7134432261470351 0.26037624955790667 0.7134432261470351 0.12266866719739089
+0.26267309890467105 0.7103827826447646 0.26267309890467105 0.7103827826447646 0.12502279275308711
+0.2649830932047102 0.7073122418611063 0.2649830932047102 0.7073122418611063 0.12722638316885257
+0.27981881403421194 0.6830620884766136 0.27981881403421194 0.6830620884766136 0.13357638895065052
+0.26833326504765626 0.697772409493613 0.26833326504765626 0.697772409493613 0.12939890349440097
+0.27722213467278733 0.6858398113815161 0.2772221346727873 0.6858398113815162 0.13301066840162493
+0.270620570880035 0.694796516559658 0.27062057088003494 0.694796516559658 0.13074910027938214
+0.2729253414490515 0.6917960767545441 0.2729253414490515 0.6917960767545441 0.131841096037856
+0.2749930932977163 0.6886082672770679 0.2749930932977163 0.6886082672770679 0.1324183849243482
+0.26728709104969467 0.7042770820346239 0.26728709104969467 0.7042770820346239 0.129221976223874
+0.26958492697145137 0.7012637318822755 0.26958492697145137 0.7012637318822755 0.13098215158518176
+0.2571381548725582 0.7227789991663897 0.2571381548725582 0.7227789991663897 0.11880659386138093
+0.258425747999595 0.7260908618137557 0.258425747999595 0.7260908618137557 0.11999638001370246
+0.25940892983052233 0.7198329340798625 0.2594089298305224 0.7198329340798625 0.12136812540744267
+0.2617055968151506 0.7168514536687082 0.26170559681515065 0.7168514536687082 0.12391093243758021
+0.30169793737827655 0.6595834725665909 0.3016979373782766 0.6595834725665909 0.13344487749919934
+0.29937326520154844 0.6625411662083613 0.29937326520154844 0.6625411662083613 0.13368358486865747
+0.2970414278491056 0.6655022997693378 0.2970414278491056 0.6655022997693378 0.13405193815778302
+0.29470398999926356 0.6684661605669672 0.29470398999926356 0.6684661605669672 0.13449019453418457
+0.29237281383928587 0.6714486169018038 0.29237281383928587 0.6714486169018038 0.1349559372268111
+0.290061165152164 0.6744471860864641 0.290061165152164 0.6744471860864641 0.13539607463998846
+0.2877837982102011 0.6774530964457132 0.2877837982102011 0.6774530964457132 0.13575979017960108
+0.28554005628270174 0.6804763161932827 0.28554005628270174 0.6804763161932827 0.13600969513011266
+0.2832780671448781 0.6834829911947321 0.2832780671448781 0.6834829911947321 0.1360567422834498
+0.30501003811002575 0.6504379722825365 0.30501003811002575 0.6504379722825365 0.13054988700852224
+0.31068143478663884 0.6373216288560813 0.31068143478663884 0.6373216288560813 0.1303677327131656
+0.31305037105897376 0.6343172330000477 0.31305037105897376 0.6343172330000478 0.1320997956917358
+0.3151698172558341 0.6314629343282625 0.3151698172558341 0.6314629343282626 0.13396218389273085
+0.3176734004811178 0.6254538200409794 0.31767340048111775 0.6254538200409794 0.13648762880738366
+0.31741229892254796 0.6290156529390617 0.31741229892254796 0.6290156529390617 0.13636176303691683
+0.3230732264912958 0.6225945763343436 0.32307322649129583 0.6225945763343436 0.14380076746005852
+0.3210614631632301 0.6248249001246056 0.3210614631632301 0.6248249001246056 0.14094116419986127
+0.3260330285200516 0.6231513724345552 0.3260330285200516 0.6231513724345552 0.1487676558972324
+0.30714583273873225 0.6473609189420574 0.30714583273873225 0.6473609189420574 0.1308041605755119
+0.3094977489966604 0.6442348924122652 0.3094977489966604 0.6442348924122651 0.13160561589465355
+0.3118368724214146 0.6409811490121443 0.3118368724214146 0.6409811490121443 0.13274078817966797
+0.30398967109678293 0.6566366223086754 0.30398967109678293 0.6566366223086754 0.1333765605249544
+0.30519051102319206 0.6598579851189286 0.30519051102319206 0.6598579851189285 0.13664874545229103
+0.30624121765123186 0.6536891960754135 0.30624121765123186 0.6536891960754135 0.13350974854665554
+0.3925751475860906 0.45889696296733373 0.3925751475860905 0.4588969629673337 0.2467697171181054
+0.3891570853622238 0.4603743478524329 0.3891570853622239 0.4603743478524329 0.2437836901578754
+0.38514298294117116 0.4627688805498307 0.38514298294117116 0.46276888054983073 0.25407595389378873
+0.38772791927623135 0.4624009390626803 0.38772791927623135 0.4624009390626803 0.24819973287814526
+0.3807496474141462 0.4653605059036624 0.38074964741414613 0.46536050590366246 0.27612058578271587
+0.3842739359092631 0.46516350583085336 0.3842739359092631 0.46516350583085336 0.2665950676212645
+0.3799649658031367 0.46830309529383446 0.3799649658031367 0.46830309529383446 0.2955706273376739
+0.3762750119851336 0.4696388046991621 0.3762750119851335 0.46963880469916214 0.31222968859801087
+0.37406366465771185 0.472261792570251 0.37406366465771185 0.47226179257025097 0.33296756187967763
+0.368745307973 0.4747397138348914 0.36874530797300004 0.47473971383489133 0.35510893480518735
+0.372302676568797 0.47483333764181745 0.37230267656879695 0.47483333764181745 0.35164045222730306
+0.3675484614212502 0.4782407283645971 0.36754846142125025 0.4782407283645971 0.37554182411345516
+0.36351106947625683 0.47919147269650497 0.36351106947625683 0.479191472696505 0.3821242333626791
+0.362868839078795 0.4821272077918054 0.362868839078795 0.4821272077918054 0.39537667624829
+0.3606847044233369 0.48463659405431364 0.36068470442333694 0.4846365940543137 0.40521103387791924
+0.35663787110135337 0.4866368356130955 0.35663787110135337 0.4866368356130955 0.41060817861694915
+0.35599809042535235 0.48967756211835994 0.35599809042535235 0.48967756211835994 0.41825612042429944
+0.35493908408220987 0.4923636032301877 0.35493908408220987 0.4923636032301877 0.42291706207479035
+0.3521237874796014 0.49435874495280974 0.3521237874796013 0.49435874495280974 0.424154234227165
+0.3504886475049664 0.49777023607805193 0.3504886475049664 0.4977702360780519 0.4257652804371305
+0.34630364943489683 0.5024966727888753 0.34630364943489683 0.5024966727888752 0.4229110983918272
+0.349750591072596 0.5010790512073001 0.349750591072596 0.5010790512073001 0.42566164598205397
+0.3455332634899227 0.5060260416963499 0.3455332634899227 0.5060260416963499 0.41965657179368027
+0.3413411029552085 0.5113689561883885 0.3413411029552085 0.5113689561883885 0.40951601641674357
+0.3448169768608732 0.5096355026330442 0.34481697686087326 0.5096355026330442 0.41417007074173734
+0.34072295523059765 0.5151292745158362 0.34072295523059765 0.5151292745158362 0.4012128982562578
+0.33676765799950586 0.5210281546822461 0.33676765799950586 0.5210281546822461 0.3846210722153178
+0.3402133078982354 0.5189191056849545 0.3402133078982354 0.5189191056849545 0.3910396032449082
+0.3364323737373711 0.5245929137344139 0.3364323737373711 0.5245929137344137 0.37333745380411587
+0.3326536003987593 0.5300161308988248 0.3326536003987593 0.5300161308988248 0.35536484948064023
+0.33172341398802957 0.5327726363707262 0.33172341398802957 0.5327726363707262 0.3455116166588338
+0.3359809199867539 0.5284670413592664 0.3359809199867539 0.5284670413592664 0.35988547961638306
+0.33257746727537846 0.5353439707093021 0.33257746727537846 0.5353439707093021 0.33531429358928827
+0.32962938237231393 0.5407518473255565 0.32962938237231393 0.5407518473255565 0.3158938017093386
+0.3296815270199272 0.5440044558848793 0.3296815270199272 0.5440044558848793 0.30283174471094654
+0.3326631215736909 0.5387191390077123 0.3326631215736909 0.5387191390077123 0.3218683039095629
+0.32979831432801326 0.5472526328034485 0.32979831432801326 0.5472526328034485 0.28963401445826253
+0.3270591567846257 0.5526127943800638 0.3270591567846257 0.5526127943800638 0.27096300699417575
+0.32737730069210363 0.5559028319425342 0.32737730069210363 0.5559028319425342 0.257941253801423
+0.33005225867951404 0.550461659703181 0.33005225867951404 0.550461659703181 0.27650291611241046
+0.3277310266260886 0.5591992844417453 0.3277310266260886 0.5591992844417453 0.24521750437276205
+0.32519683765442225 0.5648010878525889 0.32519683765442225 0.5648010878525889 0.2278908035702827
+0.3257161931260016 0.5681490260189611 0.3257161931260016 0.5681490260189611 0.21635078560279952
+0.3281413179497946 0.5624913791592966 0.32814131794979456 0.5624913791592966 0.23297213397499947
+0.3262967406665374 0.5714889287218438 0.3262967406665374 0.5714889287218438 0.20561847675663755
+0.3240672114532769 0.5773425067983252 0.32406721145327694 0.5773425067983252 0.1910745980411248
+0.3248026200519329 0.5807498074708509 0.3248026200519329 0.5807498074708509 0.18242977503769534
+0.32693104793782213 0.5748519652731737 0.3269310479378222 0.5748519652731737 0.1957683747456955
+0.32560071144051916 0.5841553893825782 0.3256007114405191 0.5841553893825782 0.17499928846489474
+0.32367997208101223 0.5902421292146527 0.32367997208101223 0.5902421292146527 0.16444542116885208
+0.3246087220090296 0.5937151201941728 0.3246087220090296 0.5937151201941728 0.15971238693740816
+0.3264572639523187 0.587562008341033 0.3264572639523187 0.587562008341033 0.168884225633378
+0.32567065196716344 0.5971846594829979 0.32567065196716344 0.5971846594829979 0.15640586565569128
+0.32440021743390723 0.6034263409467678 0.3244002174339072 0.6034263409467678 0.15043091884517187
+0.32552057561514497 0.6068493899555619 0.32552057561514497 0.6068493899555619 0.14977135883338047
+0.3268654646662279 0.6005933732433519 0.3268654646662279 0.6005933732433518 0.15458416179612045
+0.32653911673721964 0.6103080400095987 0.32653911673721964 0.6103080400095987 0.1499831925309447
+0.32706767849695034 0.6176085062448401 0.32706767849695034 0.6176085062448401 0.15008075379503882
+0.3282150700406553 0.6202769127964591 0.32821507004065525 0.6202769127964592 0.1523536190278595
+0.32759176109626575 0.6143084048116527 0.3275917610962657 0.6143084048116528 0.15110022201724257
+0.39562744662345045 0.4622985128628255 0.39562744662345045 0.4622985128628255 0.24064706317368165
+0.3985926959961507 0.4655218969190293 0.3985926959961507 0.4655218969190293 0.23428118796131533
+0.49464902237899555 0.38520447543201763 0.4946490223789955 0.38520447543201763 0.47361904812344807
+0.49675035640250287 0.3823162302335668 0.4967503564025028 0.3823162302335668 0.4480937652384678
+0.5002913899606187 0.37919185660484817 0.5002913899606187 0.37919185660484817 0.41430246462361936
+0.499119509029245 0.381600659110972 0.499119509029245 0.381600659110972 0.43496667036615905
+0.503624315909945 0.3763507539610536 0.503624315909945 0.3763507539610536 0.3810775845820394
+0.5028036235206875 0.3792824242752385 0.5028036235206875 0.37928242427523845 0.4036690230677858
+0.5075635418272109 0.3731011063316094 0.5075635418272109 0.3731011063316094 0.34194797172187524
+0.5063642337641245 0.37597633163291055 0.5063642337641245 0.37597633163291055 0.3649671522491105
+0.5100869865250266 0.37306888039608144 0.5100869865250266 0.37306888039608144 0.3292654651973176
+0.5161937797670995 0.36662172405149945 0.5161937797670993 0.36662172405149945 0.2720525395006743
+0.5141006829453821 0.3692881222892124 0.5141006829453821 0.3692881222892124 0.29172262021085116
+0.5119141342036215 0.37154952431147464 0.5119141342036215 0.37154952431147464 0.3125234179656089
+0.525186828711371 0.36064197866839437 0.5251868287113711 0.3606419786683944 0.2467139941474703
+0.5213255738796516 0.36476168564413797 0.5213255738796516 0.36476168564413797 0.25721446179856133
+0.5235523146865682 0.36366979140885464 0.5235523146865682 0.36366979140885464 0.25501657981600434
+0.519787397684061 0.36772168267304794 0.5197873976840609 0.3677216826730479 0.27119289916473077
+0.5327860415711447 0.35718972478896177 0.5327860415711447 0.35718972478896177 0.27482581340450646
+0.5358388000304664 0.3564326575742407 0.5358388000304664 0.3564326575742407 0.2967435788017405
+0.5309851651986377 0.35942812024668647 0.5309851651986377 0.35942812024668647 0.270645104610582
+0.5287329067783504 0.36213627455751546 0.5287329067783504 0.36213627455751546 0.2679259522706651
+0.5473929064620064 0.35198299300931934 0.5473929064620063 0.3519829930093193 0.3911094922529848
+0.5445839009723633 0.35381517048411554 0.5445839009723633 0.35381517048411554 0.36999372527674795
+0.5418447586550297 0.35565293500285977 0.5418447586550297 0.3556529350028597 0.34989014975692595
+0.5392742429869002 0.3577101405573282 0.5392742429869002 0.3577101405573282 0.3330347155628903
+0.5559288833056529 0.34951957607395806 0.5559288833056529 0.34951957607395806 0.4666075819559526
+0.5531243360777699 0.35165029887223515 0.5531243360777699 0.35165029887223515 0.4481181501897808
+0.5504201263913437 0.3538077092393086 0.5504201263913436 0.3538077092393086 0.430051303575068
+0.5791509349820634 0.3461015935063643 0.5791509349820635 0.3461015935063643 0.6442156865764689
+0.5617472090350351 0.34909314458218016 0.5617472090350351 0.34909314458218016 0.5202601846570812
+0.558876993681718 0.3511873935567193 0.558876993681718 0.3511873935567193 0.503002949019435
+0.5758360133383175 0.34739872205404004 0.5758360133383175 0.34739872205404004 0.6280093604987154
+0.5684697225269669 0.34893858023258073 0.5684697225269669 0.3489385802325807 0.5787854551789727
+0.5725408225288187 0.3485230253416815 0.5725408225288185 0.3485230253416815 0.6092820869587351
+0.564752051502098 0.35084972286968075 0.564752051502098 0.35084972286968075 0.556077433257636
+0.5939709589466532 0.34640693276882994 0.5939709589466532 0.34640693276882994 0.7228467945453697
+0.5883163776945255 0.34558554488781484 0.5883163776945254 0.34558554488781484 0.6941764196226529
+0.590797837585944 0.34776503143183096 0.590797837585944 0.34776503143183096 0.7160051928537551
+0.585123904309396 0.3470407617399676 0.585123904309396 0.3470407617399676 0.6846106498056326
+0.5819044426502629 0.34847505513396626 0.5819044426502629 0.3484750551339663 0.6731664742124215
+0.4972551352052466 0.38908696937630943 0.4972551352052466 0.38908696937630943 0.4966722306659088
+0.49972928326185956 0.392920462773265 0.49972928326185956 0.392920462773265 0.5252281560310204
+0.6063358267349045 0.34512261539167705 0.6063358267349045 0.34512261539167705 0.752534523136071
+0.613341779125792 0.34295575936513806 0.613341779125792 0.34295575936513806 0.7540737991830387
+0.6098048677535849 0.34400141847243465 0.6098048677535849 0.34400141847243465 0.7538061412189525
+0.6029257224295972 0.34628227518678734 0.6029257224295971 0.34628227518678734 0.7500993331831572
+0.5995928813947922 0.347499134269096 0.5995928813947922 0.347499134269096 0.7466259522264452
+0.596341908583211 0.34874900216644483 0.596341908583211 0.34874900216644483 0.7420654745419358
+0.6601219456871104 0.2954196188108019 0.6601219456871102 0.295419618810802 0.647317694062764
+0.6565746264747385 0.2959792854382556 0.6565746264747386 0.29597928543825563 0.6476187160695747
+0.6428231271823504 0.2984071081821614 0.6428231271823504 0.2984071081821614 0.6448279559150668
+0.6461496020137377 0.29778118807311044 0.6461496020137377 0.29778118807311044 0.6460890960921483
+0.6495955398201984 0.2971852330905548 0.6495955398201984 0.2971852330905547 0.6470494190951191
+0.6530661823389574 0.29658126054414974 0.6530661823389573 0.29658126054414974 0.6475484856765897
+0.6373583829631297 0.30065520975350407 0.6373583829631296 0.30065520975350407 0.6450526428269162
+0.6322042395605691 0.30553932513821913 0.6322042395605693 0.3055393251382191 0.6519608678497574
+0.627492907400041 0.30989695410597007 0.627492907400041 0.30989695410597 0.6587077373788196
+0.6204696664215978 0.32136349772351464 0.6204696664215978 0.32136349772351464 0.6862657563745874
+0.6227980873808027 0.3141973661486036 0.6227980873808027 0.31419736614860355 0.6657149458751838
+0.6216502095073412 0.31780128405766433 0.6216502095073412 0.31780128405766433 0.6759197511034457
+0.6262894134744149 0.3134994302494701 0.6262894134744149 0.3134994302494701 0.6681591883763391
+0.6213241393203935 0.3276808674286414 0.6213241393203935 0.3276808674286414 0.708330726886469
+0.6225559817322978 0.3241863970517032 0.6225559817322978 0.3241863970517032 0.6979911997884386
+0.6309988366469336 0.30923037823909627 0.6309988366469336 0.3092303782390963 0.6608856604324914
+0.6358044261132405 0.30487223994046714 0.6358044261132405 0.30487223994046714 0.654066836482775
+0.6411187062254405 0.3012857476333704 0.6411187062254405 0.3012857476333704 0.6499751032951743
+0.6637056466658472 0.2949118443428578 0.6637056466658472 0.2949118443428578 0.6466403250999652
+0.6673215552158976 0.29444011051488056 0.6673215552158976 0.29444011051488056 0.6455380409427129
+0.670969459813035 0.29402679191521613 0.670969459813035 0.29402679191521613 0.64401607880904
+0.6746491937507941 0.2936803987375176 0.6746491937507941 0.2936803987375176 0.6420571237231405
+0.620266980354024 0.33118497801035335 0.6202669803540238 0.33118497801035335 0.7190646252815779
+0.6192899048680991 0.3347378227889135 0.619289904868099 0.3347378227889135 0.7302512525155856
+0.6181802818249086 0.3383463243098434 0.6181802818249086 0.3383463243098434 0.7417257197431425
+0.6169430377761633 0.34195584030791537 0.6169430377761634 0.3419558403079153 0.7532312242936371
+0.6838062195867676 0.2897636190459569 0.6838062195867676 0.2897636190459569 0.6318457628616173
+0.6783575768174889 0.29337471560829737 0.6783575768174889 0.29337471560829737 0.639612037617757
+0.6821070817258853 0.2930931505874443 0.6821070817258853 0.2930931505874443 0.6366441826126762
+0.7143852471518563 0.2605809088963433 0.7143852471518563 0.2605809088963433 0.5632859924108401
+0.7122995062403298 0.26371739337787015 0.7122995062403298 0.2637173933778701 0.5691925416512112
+0.7066420492603759 0.2668020120175187 0.7066420492603759 0.2668020120175187 0.5797217643318073
+0.7046949990654521 0.27009064202743094 0.7046949990654521 0.27009064202743094 0.5862567725367979
+0.6993491704707444 0.27324933720760486 0.6993491704707444 0.27324933720760486 0.5965994524522884
+0.6976838411337274 0.2763649403848342 0.6976838411337275 0.2763649403848342 0.6024984180973502
+0.692921652173536 0.2802594730682541 0.6929216521735359 0.2802594730682541 0.6126579684413384
+0.6960109029182282 0.27907850608008955 0.6960109029182282 0.27907850608008955 0.60772516445639
+0.7027844366787082 0.27332911547228245 0.7027844366787082 0.2733291154722824 0.5927137267644956
+0.710255774606539 0.26696401355265253 0.710255774606539 0.26696401355265253 0.5755017498519884
+0.6933148708918498 0.28370128777157105 0.6933148708918498 0.28370128777157105 0.6161593572930621
+0.6917883179034059 0.2862743793785537 0.6917883179034058 0.28627437937855366 0.6205936002442715
+0.6873693885507275 0.2895028126641901 0.6873693885507275 0.2895028126641901 0.6284368189731794
+0.6902140358424816 0.28856861772257175 0.6902140358424816 0.28856861772257175 0.624641597904424
+0.7200577004706773 0.2578054066346174 0.7200577004706773 0.2578054066346174 0.5543031926747383
+0.7236552526943524 0.2579119820453388 0.7236552526943524 0.2579119820453388 0.5504801129459597
+0.7179940442169667 0.2608752079185269 0.7179940442169667 0.26087520791852686 0.5594375318978094
+0.7293127860295475 0.2548668254167357 0.7293127860295475 0.2548668254167357 0.5427554591740961
+0.7272614645288753 0.2579907271331986 0.7272614645288753 0.25799072713319854 0.546604410812293
+0.7329662181483361 0.2549397486378704 0.7329662181483361 0.2549397486378704 0.5393024753913389
+0.7350748833157544 0.25187017306213916 0.7350748833157544 0.25187017306213916 0.5365274323038528
+0.7371850610527019 0.24887714401999553 0.7371850610527019 0.24887714401999553 0.5344089370865698
+0.7448885168505051 0.23685784754833394 0.7448885168505051 0.23685784754833392 0.5316732166662378
+0.7468750459892859 0.23367882149933808 0.7468750459892859 0.23367882149933808 0.5319458056033639
+0.7428474116786816 0.23990852174024344 0.7428474116786816 0.23990852174024344 0.5317244743400417
+0.7393639110963602 0.24588446522601376 0.7393639110963602 0.24588446522601373 0.532855347111303
+0.741052539193083 0.24289736684286745 0.741052539193083 0.24289736684286742 0.5320857869892346
+0.7531007633245519 0.23042367595076127 0.7531007633245519 0.23042367595076127 0.5318251109691814
+0.7510047164521282 0.23377775337895512 0.7510047164521282 0.23377775337895512 0.531087063355404
+0.7593371068711017 0.22700170070961312 0.7593371068711017 0.2270017007096131 0.5318861699080237
+0.7572554924057364 0.2303944543463897 0.7572554924057364 0.2303944543463897 0.5310586216486232
+0.7656036887606206 0.22358957439043253 0.7656036887606206 0.22358957439043256 0.5314424987683112
+0.763456751878742 0.22693373942904838 0.763456751878742 0.2269337394290484 0.5309362066426172
+0.771814207885483 0.22003785367979686 0.771814207885483 0.22003785367979686 0.5300742326259903
+0.769730359102901 0.22346240608580858 0.7697303591029011 0.22346240608580858 0.5300726169493531
+0.7779661127355797 0.2167446606459528 0.7779661127355797 0.2167446606459528 0.5273017843615088
+0.7759658648392357 0.21995283491968803 0.7759658648392357 0.219952834919688 0.5280301809195889
+0.7817352725311453 0.21667119630956166 0.7817352725311454 0.2166711963095617 0.5248808723319227
+0.7844915771233653 0.21327125413827447 0.7844915771233653 0.21327125413827444 0.5227562787841059
+0.7865240071713369 0.2099793207916656 0.7865240071713369 0.2099793207916656 0.5205926837854301
+0.7900479559907425 0.20976889581375202 0.7900479559907425 0.20976889581375202 0.5173047482049141
+0.7930095047928047 0.2071417833289606 0.7930095047928046 0.2071417833289606 0.5139527908164774
+0.7967984230185022 0.20610099616997413 0.7967984230185022 0.20610099616997415 0.5093730552544845
+0.7995087844752359 0.20313320176002525 0.799508784475236 0.2031332017600253 0.505462506910348
+0.8033639652950364 0.20114600007832792 0.8033639652950363 0.20114600007832792 0.5000427140009888
+0.8068190442013855 0.19912223818761546 0.8068190442013855 0.19912223818761546 0.4948004847365591
+0.8101573282277419 0.19693058100978716 0.810157328227742 0.1969305810097872 0.4895902016016978
+0.8134847850890576 0.19480172315542288 0.8134847850890576 0.19480172315542288 0.48430220547418085
+0.8170085939615088 0.1926796560548844 0.8170085939615088 0.19267965605488444 0.478749253008154
+0.8203832647188074 0.19056553430044842 0.8203832647188074 0.19056553430044842 0.4734099486197744
+0.8237449946446629 0.1884800145445879 0.823744994644663 0.18848001454458793 0.46814910952402106
+0.8271618817863395 0.18635663390103668 0.8271618817863394 0.1863566339010367 0.46287170499269176
+0.8305890370864187 0.18426549402049286 0.8305890370864187 0.18426549402049286 0.4577009986726299
+0.8339574456774406 0.18213749421297198 0.8339574456774406 0.18213749421297198 0.45267066890119895
+0.837297227397849 0.17996965316505376 0.8372972273978491 0.17996965316505376 0.4477094814869886
+0.8406549947356519 0.17783065206189344 0.8406549947356519 0.17783065206189344 0.44277901300095796
+0.8440404538898858 0.17573787851184863 0.8440404538898857 0.17573787851184863 0.4378556381730199
+0.8474272074587597 0.17364736095075647 0.8474272074587595 0.17364736095075647 0.4329253403084518
+0.8508061177717186 0.1715755733198633 0.8508061177717184 0.1715755733198633 0.42798004223970915
+0.8541996172634313 0.16948524792735756 0.8541996172634313 0.16948524792735756 0.42296095744514356
+0.8575971518275223 0.16738994867865067 0.8575971518275223 0.16738994867865067 0.41788211595533115
+0.8609919095165757 0.16529449247882777 0.8609919095165758 0.16529449247882777 0.4127600893222491
+0.8643838124883363 0.16319704321466288 0.8643838124883363 0.16319704321466288 0.40761556365581847
+0.8677750440856341 0.16109930450043838 0.8677750440856341 0.16109930450043838 0.4024899109822226
+0.8711662059856287 0.1590021016482265 0.8711662059856288 0.1590021016482265 0.3974438217578871
+0.8745567824811804 0.15690764755236455 0.8745567824811804 0.15690764755236455 0.3925556210625681
+0.8779472028631625 0.15481526589139702 0.8779472028631625 0.15481526589139702 0.3879141429596922
+0.8813375490752559 0.15272294424461794 0.8813375490752559 0.15272294424461794 0.38361854342163415
+0.8847277169246178 0.1506303955302403 0.8847277169246178 0.1506303955302403 0.3797746169528831
+0.8881178779148996 0.14853820511371293 0.8881178779148996 0.14853820511371293 0.3764870194347299
+0.891507971863387 0.14644630431234537 0.891507971863387 0.14644630431234537 0.37385179597617824
+0.894897973214288 0.1443544940356641 0.894897973214288 0.1443544940356641 0.3719488378167759
+0.8982880018449181 0.14226220365637557 0.8982880018449181 0.14226220365637557 0.37083483211251506
+0.9016782916529563 0.14016915924202716 0.9016782916529563 0.14016915924202714 0.3705376803250395
+0.905068864168784 0.1380762871765915 0.905068864168784 0.1380762871765915 0.3710515465806401
+0.9084595003351819 0.13598360002743773 0.9084595003351819 0.13598360002743773 0.3723349340036343
+0.9118500343256075 0.1338912133890846 0.9118500343256075 0.1338912133890846 0.37431098636460675
+0.9152404176207765 0.1317991631798795 0.9152404176207763 0.1317991631798795 0.37687094077984745
+0.9186308009159454 0.1297071129706744 0.9186308009159454 0.1297071129706744 0.3798801792641457
+0.9220211842111143 0.12761506276146928 0.9220211842111145 0.12761506276146928 0.3831842393120555
+0.9254115675062833 0.12552301255226417 0.9254115675062833 0.12552301255226417 0.3866166024435734
+0.9288019508014522 0.12343096234305906 0.9288019508014521 0.12343096234305906 0.39000642013440817
+0.9321923340966212 0.12133891213385395 0.9321923340966212 0.12133891213385395 0.3931859052425452
+0.9355827173917901 0.11924686192464884 0.9355827173917902 0.11924686192464884 0.39599706936991014
+0.938973100686959 0.11715481171544373 0.938973100686959 0.11715481171544373 0.39829761427350086
+0.942363483982128 0.11506276150623862 0.9423634839821279 0.11506276150623862 0.39996591811505366
+0.9457538672772969 0.11297071129703351 0.9457538672772969 0.11297071129703351 0.40090513378593934
+0.9491442505724659 0.1108786610878284 0.949144250572466 0.1108786610878284 0.40104645690297375
+0.9525346338676348 0.10878661087862329 0.9525346338676348 0.10878661087862329 0.40035163082535025
+0.9559250171628038 0.10669456066941818 0.9559250171628036 0.10669456066941818 0.39881473967153874
+0.9593154004579727 0.10460251046021307 0.9593154004579727 0.10460251046021307 0.3964633062240858
+0.962705783753142 0.10251046025100807 0.962705783753142 0.10251046025100807 0.39335866689308624
+0.9660961670483109 0.10041841004180298 0.9660961670483109 0.10041841004180298 0.38959554278636827
+0.96948655034348 0.09832635983259738 0.96948655034348 0.0983263598325974 0.38530066544967373
+0.9728769336387563 0.09623430962358721 0.9728769336387563 0.09623430962358721 0.38063025368167236
+0.9762673169339451 0.09414225941435247 0.976267316933945 0.09414225941435249 0.3757660872115865
+0.9796577002293718 0.09205020920470126 0.9796577002293718 0.09205020920470126 0.37090990519985617
+0.9830480835249179 0.08995815899519437 0.9830480835249179 0.08995815899519437 0.36627590191132753
+0.9864384668193242 0.0878661087865722 0.9864384668193242 0.0878661087865722 0.36208123283946797
+0.9898288501144932 0.08577405857736708 0.9898288501144933 0.08577405857736708 0.3585347090743834
+0.9932192334096621 0.08368200836816198 0.9932192334096621 0.08368200836816198 0.35582424225607184
+0.08786610878661077 0.9932192334096622 0.08786610878661077 0.9932192334096622 0.09039672219564253
+0.08995815899581577 0.9898288501144935 0.08995815899581577 0.9898288501144935 0.09196134736630174
+0.09205020920502079 0.9864384668193246 0.09205020920502079 0.9864384668193246 0.09380817717975658
+0.09414225941422584 0.9830480835241555 0.09414225941422584 0.9830480835241556 0.09585985581779165
+0.09623430962343082 0.9796577002289867 0.09623430962343082 0.9796577002289867 0.09803979766023374
+0.09832635983263584 0.9762673169338179 0.09832635983263584 0.9762673169338179 0.10027557083749085
+0.10041841004184082 0.9728769336386489 0.10041841004184082 0.9728769336386488 0.1025012270162207
+0.10251046025104585 0.96948655034348 0.10251046025104583 0.96948655034348 0.10465872562187097
+0.10460251046025082 0.966096167048311 0.10460251046025082 0.9660961670483111 0.10669865516917877
+0.10669456066945582 0.9627057837531422 0.10669456066945582 0.9627057837531422 0.1085804482456978
+0.10878661087866077 0.9593154004579731 0.10878661087866077 0.959315400457973 0.11027225198650924
+0.11087866108786587 0.9559250171628041 0.11087866108786586 0.9559250171628041 0.11175057421311418
+0.11297071129707104 0.9525346338676353 0.11297071129707104 0.9525346338676354 0.11299978799357234
+0.11506276150627608 0.9491442505724667 0.11506276150627608 0.9491442505724667 0.11401154826583663
+0.1171548117154812 0.945753867277298 0.11715481171548121 0.9457538672772979 0.11478415360446782
+0.11924686192468577 0.9423634839821292 0.11924686192468577 0.9423634839821292 0.11532187293926778
+0.1213389121338902 0.9389731006869603 0.12133891213389018 0.9389731006869603 0.11563424931602806
+0.12343096234309447 0.9355827173917909 0.12343096234309447 0.9355827173917909 0.11573538880130187
+0.125523012552299 0.9321923340966216 0.125523012552299 0.9321923340966215 0.11564324093796778
+0.12761506276150428 0.9288019508014517 0.12761506276150428 0.9288019508014517 0.11537887688904223
+0.1297071129707106 0.9254115675062823 0.1297071129707106 0.9254115675062823 0.11496577215927224
+0.13179916317991805 0.9220211842111135 0.13179916317991805 0.9220211842111133 0.11442910147215911
+0.13389121338912555 0.9186308009159462 0.13389121338912555 0.9186308009159462 0.11379505368046651
+0.13598325388638635 0.9152404237959363 0.13598325388638635 0.9152404237959363 0.11309017306197289
+0.13807525724955624 0.9118500752740556 0.13807525724955624 0.9118500752740556 0.11234075018875157
+0.14016721679064584 0.9084597665139134 0.14016721679064584 0.9084597665139134 0.11157229688910698
+0.14225917988971476 0.9050694473515537 0.1422591798897148 0.9050694473515538 0.1108090795086536
+0.14435119838148827 0.9016790509566918 0.14435119838148827 0.9016790509566918 0.11007370571258761
+0.14644328071125332 0.8982885929136707 0.14644328071125332 0.8982885929136707 0.10938681536160287
+0.14853540288033376 0.8948981443213097 0.14853540288033376 0.8948981443213097 0.10876681758812039
+0.15062752748642308 0.8915077348439476 0.15062752748642308 0.8915077348439476 0.10822967501288229
+0.15271962745034698 0.8881173477765979 0.15271962745034698 0.8881173477765979 0.10778883762655549
+0.15481170165950608 0.8847269658744653 0.15481170165950608 0.8847269658744653 0.107455252182579
+0.15690376121874658 0.8813365838181787 0.15690376121874658 0.8813365838181787 0.10723734473882122
+0.1589958145787097 0.8779462010864584 0.1589958145787097 0.8779462010864584 0.10714101714155366
+0.16108786574506948 0.8745558179924279 0.16108786574506948 0.8745558179924279 0.10716966888619915
+0.16317991622342223 0.8711654347598768 0.16317991622342223 0.8711654347598768 0.10732420795885757
+0.16527196650421108 0.8677750514826941 0.16527196650421108 0.867775051482694 0.10760303927188737
+0.167364016731953 0.8643846681930011 0.167364016731953 0.8643846681930011 0.10800207782187034
+0.16945606694532386 0.8609942849009644 0.16945606694532386 0.8609942849009645 0.10851471923021029
+0.1715466474645694 0.8576041968711389 0.1715466474645694 0.8576041968711389 0.10913091026961264
+0.17363695903238388 0.854214797023987 0.17363695903238388 0.854214797023987 0.10983969658751742
+0.17572814371976633 0.850825285985996 0.17572814371976633 0.850825285985996 0.11062717524131117
+0.177816956056713 0.8474378816807397 0.177816956056713 0.8474378816807399 0.11147508138550304
+0.179901588601852 0.844053580607299 0.179901588601852 0.844053580607299 0.11236365322765422
+0.18198574541128723 0.8406700659233786 0.18198574541128723 0.8406700659233785 0.11327338346721343
+0.18408226995812185 0.837280505076766 0.18408226995812185 0.837280505076766 0.11418732746467115
+0.1861975255064916 0.8338901461478297 0.1861975255064916 0.8338901461478297 0.11508383840330368
+0.1883182431263647 0.8305072551600786 0.1883182431263647 0.8305072551600786 0.11593213425375282
+0.190415030019619 0.8271212261003806 0.190415030019619 0.8271212261003807 0.11669468061866091
+0.19250160865597785 0.8237392799153671 0.19250160865597785 0.8237392799153671 0.11735330908175268
+0.19458944168443248 0.8203515779518478 0.19458944168443248 0.8203515779518478 0.11789012171203994
+0.1966892299587881 0.8169612271457308 0.1966892299587881 0.8169612271457308 0.11828767088722937
+0.19878987913503532 0.8135806273520167 0.19878987913503532 0.8135806273520166 0.11852287369504945
+0.20088939924402185 0.8102188130113445 0.20088939924402185 0.8102188130113445 0.11858074737076114
+0.20296700002511037 0.8068714479601841 0.20296700002511034 0.8068714479601841 0.11844880026762862
+0.20507483159258588 0.8035437206411932 0.20507483159258588 0.8035437206411932 0.1181373086300801
+0.20714523045989122 0.8001663885541106 0.20714523045989122 0.8001663885541106 0.11760207140464572
+0.20915529651814838 0.7966829375746914 0.20915529651814838 0.7966829375746914 0.116794052391591
+0.21116388042232692 0.7933712143547994 0.21116388042232695 0.7933712143547994 0.11589511733611503
+0.21341854587420214 0.7900233026196412 0.21341854587420214 0.7900233026196412 0.11486540322559614
+0.2154675395535659 0.7867366840272287 0.2154675395535659 0.7867366840272288 0.1136981162614615
+0.2181953200157788 0.783281675776273 0.21819532001577882 0.783281675776273 0.11253317144385357
+0.22006591638561665 0.7796006743948948 0.22006591638561665 0.7796006743948948 0.11084946932371206
+0.22287709098171868 0.7771289147737163 0.22287709098171868 0.7771289147737163 0.11021402076305511
+0.2240200731407436 0.7734518472060704 0.2240200731407436 0.7734518472060704 0.10831697102962569
+0.2269610314694641 0.7672366953508168 0.2269610314694641 0.7672366953508168 0.10558461252476646
+0.22661552610418736 0.7705288189333901 0.2266155261041874 0.7705288189333901 0.10742567862115227
+0.2305253244210745 0.7611966841803133 0.2305253244210745 0.7611966841803133 0.10373831090013184
+0.23038403913543848 0.7651667513334307 0.23038403913543845 0.7651667513334307 0.10585096201554216
+0.23385520422964387 0.7550345707848591 0.23385520422964387 0.7550345707848591 0.10256043316088871
+0.233812995396442 0.7591072986412882 0.23381299539644204 0.7591072986412882 0.10434343363907607
+0.23736132236434884 0.7488066552193399 0.23736132236434884 0.7488066552193399 0.10251643615827648
+0.23728238138591728 0.7529326748466141 0.23728238138591728 0.7529326748466141 0.10377719728121763
+0.24085300723941083 0.7466816298992831 0.24085300723941083 0.7466816298992831 0.10442597004938504
+0.2446832828334013 0.7444435119165623 0.24468328283340132 0.7444435119165622 0.10705536431204034
+0.24710568228850865 0.7410507850355785 0.24710568228850868 0.7410507850355784 0.10867833474125031
+0.24940868386794077 0.7379558478749542 0.24940868386794077 0.7379558478749542 0.11057164600793402
+0.25168090155835715 0.7349372895617999 0.25168090155835715 0.7349372895617999 0.11270331219058739
+0.25530442490338445 0.7352439011055091 0.25530442490338445 0.7352439011055091 0.11645303121134769
+0.25752281345700795 0.732276970628337 0.25752281345700795 0.732276970628337 0.11883349332666805
+0.2597280106509551 0.729336861992896 0.25972801065095513 0.729336861992896 0.12131269971095092
+0.26400258485711875 0.7138391799580234 0.26400258485711875 0.7138391799580234 0.12635873577902382
+0.26630377906361274 0.7108034277940144 0.26630377906361274 0.7108034277940144 0.12866926838303835
+0.2685847503714268 0.7077795795333208 0.2685847503714269 0.7077795795333208 0.13077865825712978
+0.2809491449182572 0.6863953537054387 0.2809491449182571 0.6863953537054387 0.13579987668698723
+0.27186826437900036 0.6982662024456833 0.2718682643790004 0.6982662024456833 0.13247937248650452
+0.2786178244701896 0.6892945865416622 0.2786178244701896 0.6892945865416622 0.13529201407582103
+0.2741418105438183 0.6952722414400294 0.2741418105438183 0.6952722414400294 0.13370312763399927
+0.2763758671112179 0.6922529036087727 0.2763758671112179 0.6922529036087727 0.13461187940027008
+0.270864697063073 0.7047544712388655 0.270864697063073 0.7047544712388655 0.13267053835601764
+0.27313542956221537 0.7017449649686451 0.2731354295622154 0.7017449649686451 0.13431339603738926
+0.26068365163783547 0.7231775203758736 0.26068365163783547 0.7231775203758736 0.12257783152485228
+0.2619329865074413 0.7264411940417649 0.2619329865074413 0.7264411940417649 0.1238495384253074
+0.2629797301926158 0.720273244633218 0.2629797301926158 0.720273244633218 0.1251795231838273
+0.2653017054589804 0.7173258422407423 0.2653017054589804 0.7173258422407423 0.12773819013763218
+0.30293749941984166 0.6628072743490124 0.30293749941984166 0.6628072743490124 0.13672989529469046
+0.300664551095571 0.6657785802564422 0.300664551095571 0.6657785802564423 0.13697750288207167
+0.2983528640506705 0.6687517866125323 0.2983528640506705 0.6687517866125323 0.13730731795464823
+0.2960524281891028 0.6717461797034491 0.2960524281891028 0.6717461797034491 0.13771432663470798
+0.29375666698176756 0.674756272388469 0.29375666698176756 0.674756272388469 0.13812817203534988
+0.29146546476659213 0.6777804743806275 0.29146546476659213 0.6777804743806275 0.13849013609947455
+0.2891721468730519 0.6808189220503325 0.2891721468730519 0.6808189220503325 0.13874315341106372
+0.2868592658824933 0.6838556787507272 0.2868592658824933 0.6838556787507272 0.13882182874356966
+0.2845133274593303 0.6868591341325816 0.2845133274593303 0.6868591341325816 0.13865995471494383
+0.3292821935988523 0.6235576023394864 0.3292821935988523 0.6235576023394865 0.1549356917669533
+0.30849009474565653 0.6506978470834835 0.30849009474565653 0.6506978470834835 0.13389053924786756
+0.31419888589444506 0.637886535271671 0.31419888589444506 0.637886535271671 0.1343755076211022
+0.3164939735427047 0.6348791507117125 0.31649397354270464 0.6348791507117125 0.13637142946046224
+0.31882008069213447 0.6318773996613478 0.31882008069213447 0.6318773996613478 0.1388208426089966
+0.3207893605523164 0.6283875022339024 0.3207893605523164 0.6283875022339024 0.14101038163843949
+0.323736710771123 0.6260935861147203 0.32373671077112304 0.6260935861147203 0.14528699532808756
+0.3269898957387147 0.6264808648947778 0.3269898957387147 0.6264808648947778 0.15112418349302503
+0.3107876238333245 0.6476335403979941 0.3107876238333245 0.6476335403979941 0.13461953613629252
+0.3154078197301015 0.6414399183982987 0.3154078197301015 0.6414399183982987 0.13725322753649838
+0.3131184111221188 0.6445247568890945 0.3131184111221188 0.6445247568890945 0.13574805680441646
+0.3064251181194706 0.6630445436199971 0.3064251181194706 0.6630445436199971 0.1402181650266214
+0.30743259199066036 0.6569411396017736 0.30743259199066036 0.6569411396017736 0.13680077306186741
+0.30862939665557554 0.6601355922849844 0.30862939665557554 0.6601355922849844 0.14035877657539955
+0.30970993038673356 0.654029070300148 0.3097099303867336 0.654029070300148 0.13725732630356935
+0.39092018423374275 0.46334768383077823 0.3909201842337428 0.4633476838307783 0.24498349216208973
+0.38762525554771565 0.4649235223407334 0.3876252555477157 0.4649235223407335 0.2570848608373823
+0.3834314236687843 0.467617911988182 0.3834314236687843 0.467617911988182 0.282488179579562
+0.3862396772430097 0.4670495467251719 0.3862396772430097 0.4670495467251719 0.2714671073186644
+0.379773324419709 0.47106175179939713 0.379773324419709 0.47106175179939713 0.3142400329211106
+0.38289630296126637 0.47015827179252384 0.38289630296126637 0.47015827179252384 0.30066722054316686
+0.377162927447303 0.47254299161319996 0.377162927447303 0.47254299161319996 0.3295188332059638
+0.3752540514830947 0.4742479649772269 0.3752540514830947 0.47424796497722693 0.3439654684369204
+0.3798670421074727 0.4732256974212462 0.3798670421074727 0.4732256974212462 0.3291865413050183
+0.37129178491783704 0.4774775766666135 0.37129178491783704 0.4774775766666135 0.36860501309402416
+0.3749965467661177 0.4767854951990175 0.37499654676611766 0.4767854951990174 0.36090314893836745
+0.36994467476612736 0.48035457043218 0.3699446747661273 0.48035457043217994 0.38551456885341445
+0.3663272335015619 0.48189442545469463 0.3663272335015618 0.48189442545469463 0.3941223844889841
+0.36409438755569 0.4843160892688612 0.36409438755569 0.4843160892688612 0.404363718756562
+0.36923287885028383 0.4832821318579349 0.36923287885028383 0.4832821318579349 0.4001353742603218
+0.36347315619775183 0.4872216842777081 0.36347315619775183 0.4872216842777081 0.41480371448621384
+0.35963455960726187 0.48848512108943015 0.35963455960726187 0.48848512108943015 0.41703998530068986
+0.3586260704132847 0.49225588407292153 0.3586260704132847 0.4922558840729216 0.42523845677494465
+0.3558711800962895 0.49511481836523497 0.3558711800962895 0.495114818365235 0.4274699620066192
+0.3535091827011686 0.49715088827512666 0.3535091827011686 0.49715088827512666 0.4274505897444373
+0.35310016663639443 0.49981505863991865 0.35310016663639443 0.49981505863991865 0.42811115912639813
+0.3490814622222845 0.5045024338871943 0.3490814622222845 0.5045024338871943 0.423332563420544
+0.35239227090351244 0.5029223416907271 0.3523922709035125 0.5029223416907271 0.42671169658337144
+0.3483535310956432 0.5078985120056435 0.3483535310956432 0.5078985120056435 0.4187948322121727
+0.34418447111691136 0.5133162132748071 0.34418447111691136 0.5133162132748071 0.40652083986900484
+0.347575363666627 0.5116033478853915 0.347575363666627 0.5116033478853915 0.41159084289774156
+0.34363935901380616 0.5169888966899617 0.3436393590138062 0.5169888966899617 0.3970064866852007
+0.33986073316357407 0.5226590405543395 0.33986073316357407 0.5226590405543395 0.37940228819481575
+0.34320261851057526 0.5206756215207858 0.34320261851057526 0.5206756215207858 0.38576695851000203
+0.339460131061499 0.5264567634669767 0.339460131061499 0.5264567634669767 0.3662148212767647
+0.3351632550234176 0.5328022908481602 0.3351632550234176 0.5328022908481601 0.343928727371916
+0.3391405629442964 0.5304651179196584 0.33914056294429645 0.5304651179196584 0.3510779436734777
+0.3357061413265671 0.5365867460284695 0.3357061413265671 0.5365867460284695 0.32838190749031765
+0.3326695154169816 0.5420450126454809 0.3326695154169816 0.5420450126454809 0.3083289093688432
+0.33273528969046734 0.545168950950788 0.33273528969046734 0.5451689509507879 0.2953868305144998
+0.33577916027606874 0.5401514098091917 0.33577916027606874 0.5401514098091917 0.3135762097203123
+0.3328723342069384 0.5484215057134625 0.3328723342069384 0.5484215057134625 0.28190652965447954
+0.3304027384756853 0.5537075765450863 0.3304027384756853 0.5537075765450864 0.26330778033238783
+0.3307235325434452 0.5569627181508545 0.3307235325434452 0.5569627181508546 0.2504434810153602
+0.3333893193590254 0.5514089954520225 0.3333893193590254 0.5514089954520225 0.26927473561463006
+0.3310677876958506 0.5602051561670618 0.3310677876958506 0.5602051561670618 0.2381132594197918
+0.32862437354757185 0.5657827513732553 0.32862437354757185 0.5657827513732553 0.22133682971705101
+0.3291753772724477 0.5690696653791371 0.3291753772724477 0.5690696653791371 0.2104930870537407
+0.3315000960036212 0.5634385932480458 0.3315000960036212 0.5634385932480458 0.22639996190843223
+0.3297769555087543 0.5723855860660494 0.32977695550875424 0.5723855860660495 0.20052411815161308
+0.32762606022502666 0.5782060149063745 0.32762606022502666 0.5782060149063745 0.18704166043995138
+0.32838352587214875 0.5815614912862772 0.32838352587214875 0.5815614912862772 0.17954330126889015
+0.3304326550215606 0.5756915008797748 0.3304326550215606 0.5756915008797748 0.19170311305361856
+0.32920530441565204 0.5849169405314619 0.32920530441565204 0.5849169405314619 0.17338739258260702
+0.32737492156114506 0.5909637116684999 0.32737492156114506 0.5909637116684999 0.16416370836321323
+0.3283678828812654 0.5943783890742328 0.32836788288126545 0.5943783890742328 0.16085000190544488
+0.330093266421277 0.5882606443107653 0.330093266421277 0.5882606443107653 0.1686657567115458
+0.3294530570788997 0.5977679743745121 0.32945305707889977 0.597767974374512 0.15898245590780002
+0.3280558172947669 0.6039845236405476 0.3280558172947669 0.6039845236405476 0.15402625667197797
+0.32919074653767955 0.6074104083413489 0.32919074653767955 0.6074104083413489 0.15448788425888157
+0.33059758999576383 0.6011267684907547 0.33059758999576383 0.6011267684907547 0.15845733726268874
+0.33029994241520416 0.6109443589916321 0.33029994241520416 0.610944358991632 0.15582932989620335
+0.3299639234369358 0.6172843187084477 0.3299639234369358 0.6172843187084477 0.15528491918956064
+0.33142178384678467 0.6206007902992335 0.3314217838467846 0.6206007902992335 0.15869496804076466
+0.3319017330177568 0.6143078660693438 0.3319017330177568 0.6143078660693438 0.15884344323661403
+0.3326818955261955 0.623933197317925 0.3326818955261955 0.6239331973179248 0.16214531852187763
+0.39415460368384264 0.46664444076721506 0.39415460368384264 0.46664444076721506 0.24658746032917658
+0.3972502400907508 0.46974845495628914 0.3972502400907508 0.46974845495628914 0.25110755746287183
+0.4992971754515892 0.38495086339212575 0.4992971754515892 0.38495086339212575 0.4587077287519311
+0.501494864189179 0.3823313909902849 0.501494864189179 0.38233139099028485 0.43036511644284253
+0.5051469328149061 0.3791831031458115 0.5051469328149061 0.3791831031458115 0.39158237266127927
+0.5039611440645051 0.3816626099505849 0.5039611440645051 0.3816626099505849 0.4145057738067802
+0.5092283508882878 0.3762682063671733 0.5092283508882877 0.37626820636717323 0.35245554052729755
+0.50770452357474 0.37923263478985075 0.50770452357474 0.37923263478985075 0.3791641706798636
+0.5120475409954068 0.3747028225417216 0.5120475409954067 0.37470282254172155 0.3298060436200126
+0.5117043455381942 0.37743613290882483 0.5117043455381942 0.37743613290882483 0.3479461755091784
+0.5170838365520812 0.37039856504591867 0.5170838365520812 0.37039856504591867 0.2885435222988164
+0.514843895016149 0.37348206270571965 0.514843895016149 0.3734820627057197 0.3116445561818604
+0.5264151651541533 0.36448712758398505 0.5264151651541534 0.3644871275839851 0.2670058084960629
+0.5235898560390629 0.3671602126056981 0.5235898560390629 0.3671602126056981 0.27074422438577855
+0.5198220304400077 0.37129226956243855 0.5198220304400077 0.37129226956243855 0.2887438116129768
+0.522081716779426 0.36997518259171297 0.522081716779426 0.36997518259171297 0.2820080890412795
+0.5342855434505028 0.35993326184775415 0.5342855434505028 0.35993326184775415 0.2974339607184891
+0.5372083302680897 0.35966725854553216 0.5372083302680897 0.35966725854553216 0.32162604057009686
+0.5324625017081489 0.36364005132088134 0.5324625017081489 0.3636400513208814 0.2985187923509787
+0.5295167900026513 0.3661064127671266 0.5295167900026513 0.3661064127671266 0.28935249770188776
+0.5477381334916125 0.35594539374600986 0.5477381334916124 0.3559453937460098 0.4116506374409656
+0.5448327688549514 0.35730876165773207 0.5448327688549514 0.3573087616577321 0.3872928171252869
+0.5420817426397595 0.35921948645651647 0.5420817426397595 0.3592194864565164 0.36728886225827434
+0.5395909416878604 0.3612351201666688 0.5395909416878605 0.3612351201666688 0.3510584445782277
+0.5560856138405833 0.35329996477866005 0.5560856138405833 0.35329996477866005 0.48551450757864173
+0.5533261484818612 0.3554438428266842 0.5533261484818612 0.3554438428266842 0.4675976226340835
+0.5505680824672715 0.357634651039892 0.5505680824672715 0.357634651039892 0.44920191730669895
+0.5786290913018355 0.34988643038608813 0.5786290913018356 0.3498864303860882 0.6595459732458117
+0.5617946868688153 0.3528721031084461 0.5617946868688152 0.3528721031084461 0.5389396559733978
+0.5590150117104751 0.3549414000705 0.559015011710475 0.3549414000705 0.5225145568783925
+0.5752855699085302 0.351231405398901 0.5752855699085302 0.351231405398901 0.6432905705808464
+0.5677725393439784 0.35313330456579184 0.5677725393439784 0.35313330456579184 0.5938975968318729
+0.571569396249236 0.35274021866063293 0.571569396249236 0.35274021866063293 0.6230275061560221
+0.5695877901881224 0.3553284366404862 0.5695877901881224 0.3553284366404862 0.6203193336608002
+0.5647116269324972 0.35470139577845455 0.5647116269324971 0.35470139577845455 0.5750559562913257
+0.593180115512542 0.34998329927852234 0.593180115512542 0.34998329927852234 0.7362592465186989
+0.5877095523232955 0.34936516699942827 0.5877095523232955 0.34936516699942827 0.7092917046358327
+0.590081974002896 0.3511035358750701 0.5900819740028959 0.3511035358750701 0.7286720333455278
+0.5846044487270529 0.350756594892125 0.5846044487270529 0.350756594892125 0.6999827203631109
+0.5814141345986662 0.3522150653599352 0.5814141345986662 0.3522150653599352 0.6889310038973329
+0.5018082480227658 0.38906328961642184 0.5018082480227658 0.38906328961642184 0.48311210024334833
+0.5041611392631966 0.3930522375393823 0.5041611392631965 0.3930522375393823 0.5122356021074658
+0.6052459598951667 0.3487331245372631 0.6052459598951668 0.3487331245372631 0.764953226398831
+0.6156655728929127 0.3455617704533436 0.6156655728929127 0.3455617704533436 0.7648252370642793
+0.6086481351888061 0.34760596230738444 0.6086481351888061 0.34760596230738444 0.7659304653490994
+0.612121237565531 0.34655200895169025 0.612121237565531 0.34655200895169025 0.7659042372370911
+0.6019021119200586 0.3499050169440885 0.6019021119200586 0.3499050169440885 0.7628560800150158
+0.5986353626234432 0.3511201077864301 0.5986353626234432 0.3511201077864301 0.7596791522700254
+0.5954653232074525 0.3523892475439906 0.5954653232074526 0.35238924754399065 0.75558353123705
+0.66206266728076 0.2982858075424629 0.66206266728076 0.298285807542463 0.6515499528740812
+0.6585299895868518 0.29880961607934836 0.6585299895868518 0.29880961607934836 0.6524416972873305
+0.6550332568434565 0.29939390307872876 0.6550332568434564 0.29939390307872876 0.653017385790728
+0.6446713494752128 0.30104338366752265 0.6446713494752129 0.30104338366752265 0.6520333084637331
+0.6481131487407517 0.300560934080311 0.6481131487407517 0.300560934080311 0.6529322873010615
+0.6515673769674223 0.2999915323206842 0.6515673769674223 0.29999153232068426 0.6532088920152428
+0.6394693249833163 0.30455056087443405 0.6394693249833163 0.30455056087443405 0.6563157775005414
+0.6344962552003479 0.30864534920557735 0.6344962552003479 0.30864534920557735 0.6626344679650994
+0.6297934040060953 0.31280735633039786 0.6297934040060954 0.31280735633039786 0.6698550937846653
+0.6238930857172217 0.3206934029517377 0.6238930857172217 0.3206934029517377 0.6880686609030819
+0.6251281109061047 0.3171586790901021 0.6251281109061048 0.31715867909010204 0.6781572740141288
+0.6285274479460697 0.31634473774769684 0.6285274479460697 0.31634473774769684 0.6790437894978442
+0.6257901438077061 0.32357029819109107 0.6257901438077061 0.32357029819109107 0.6986616866779832
+0.6233463475080587 0.3304228764421195 0.6233463475080586 0.3304228764421195 0.7185650832448904
+0.6245135850994048 0.3270563068929525 0.6245135850994048 0.32705630689295256 0.7086185427794655
+0.6333200707158986 0.31223023126072547 0.6333200707158985 0.31223023126072547 0.6711985218592053
+0.6380170712916434 0.3081614959951706 0.6380170712916434 0.3081614959951706 0.6640221643849452
+0.6430889217502013 0.3043431098820783 0.6430889217502013 0.3043431098820783 0.6582178288734136
+0.6656288414648269 0.29780862046130685 0.6656288414648269 0.29780862046130685 0.6503011860152706
+0.669231116111455 0.2973923253960209 0.669231116111455 0.2973923253960209 0.6486813292734751
+0.6728737058371737 0.2970399174228045 0.6728737058371737 0.2970399174228045 0.6466606340848631
+0.6765563262165794 0.29672589340101 0.6765563262165794 0.29672589340101 0.644184298604913
+0.6227453579292654 0.33389607116547465 0.6227453579292654 0.33389607116547465 0.7292198211633102
+0.6219265833265175 0.33740800623461226 0.6219265833265175 0.33740800623461226 0.7401951677373222
+0.6206408236402933 0.3409775530420754 0.6206408236402933 0.3409775530420754 0.7512449514213002
+0.6192874751542609 0.34462329131462915 0.6192874751542609 0.34462329131462915 0.7626565871605142
+0.6859783826947565 0.2928194564671097 0.6859783826947564 0.29281945646710966 0.6330600744431489
+0.6802844976359141 0.2964360282595106 0.6802844976359141 0.2964360282595106 0.6412180614268359
+0.6840789164213521 0.29615342003074263 0.6840789164213521 0.2961534200307426 0.6377172964255299
+0.7159361470167372 0.26398462193218186 0.7159361470167372 0.2639846219321819 0.565029235741768
+0.7138785239873364 0.26717089089355833 0.7138785239873364 0.26717089089355833 0.5710665088859618
+0.7082543743879192 0.2702204734717934 0.7082543743879192 0.2702204734717934 0.5819608167692261
+0.7062835667606436 0.27345402808264146 0.7062835667606436 0.27345402808264146 0.5884343089079697
+0.700887116699954 0.2765155849355904 0.700887116699954 0.2765155849355904 0.5990306457596266
+0.6988560820429428 0.279676636696197 0.6988560820429428 0.27967663669619697 0.6053462402953783
+0.6963951511820758 0.2825556197260606 0.6963951511820757 0.2825556197260606 0.6116490092444037
+0.7043219016524431 0.2766559548208632 0.7043219016524431 0.2766559548208632 0.5948380646116801
+0.7118436074378871 0.270393391846546 0.7118436074378871 0.270393391846546 0.5773763323983908
+0.6950494315509101 0.2861732348195879 0.6950494315509101 0.28617323481958795 0.617115654444005
+0.6929817871746076 0.2894980395130842 0.6929817871746077 0.2894980395130842 0.622775082513389
+0.6902340278692045 0.29206226313210126 0.6902340278692046 0.2920622631321012 0.6282575536489344
+0.7216140268622907 0.2610339871520159 0.7216140268622907 0.2610339871520159 0.5552952599937072
+0.7252313070343082 0.26112816909604647 0.7252313070343082 0.26112816909604647 0.5510288132223159
+0.719564292983747 0.2641860498299472 0.719564292983747 0.26418604982994726 0.5606277979827107
+0.7308861927942485 0.2580472756017984 0.7308861927942485 0.2580472756017984 0.5427159912624188
+0.7288388336082625 0.26117694564631994 0.7288388336082625 0.26117694564631994 0.5467283141535039
+0.7345186987306765 0.2580864286805225 0.7345186987306765 0.2580864286805225 0.5388699533300518
+0.7366413959778036 0.2550137170562782 0.7366413959778036 0.25501371705627823 0.5359001244229168
+0.738793209004078 0.251986609704686 0.738793209004078 0.25198660970468595 0.5335726370467065
+0.7409930146422754 0.24896132520861974 0.7409930146422754 0.24896132520861977 0.5318546478804284
+0.7469047888740036 0.2399497073896118 0.7469047888740036 0.23994970738961177 0.5303046178990815
+0.7489204110766812 0.23710429326170426 0.7489204110766812 0.23710429326170426 0.530475105865093
+0.7448054785262974 0.24294918344231536 0.7448054785262973 0.2429491834423154 0.5303881561704543
+0.7432052492478096 0.24599892107929103 0.7432052492478096 0.24599892107929103 0.5307242631543801
+0.747932186229461 0.24277593607036238 0.747932186229461 0.24277593607036238 0.5290112639186214
+0.7551674904481409 0.233814569403115 0.7551674904481409 0.23381456940311504 0.5301397594418135
+0.7530218481445607 0.23724057096901566 0.7530218481445607 0.23724057096901566 0.5293200357967135
+0.7613504184102364 0.23028281991024868 0.7613504184102364 0.23028281991024868 0.5301240879470432
+0.759294376519764 0.23369389919000438 0.759294376519764 0.23369389919000438 0.5291194019793058
+0.7654041582640182 0.23018438817842612 0.7654041582640182 0.23018438817842615 0.5289566335921946
+0.767591455255563 0.22690037717579425 0.767591455255563 0.22690037717579425 0.5296353146527953
+0.7737796858222392 0.2230656589595917 0.7737796858222392 0.2230656589595917 0.5283707855609711
+0.7716706413648454 0.22664713820377178 0.7716706413648454 0.22664713820377178 0.528163367343156
+0.7769773217992522 0.22286174096300732 0.7769773217992522 0.22286174096300732 0.5266185609948307
+0.7799278324428025 0.22033471283766914 0.7799278324428025 0.22033471283766914 0.5256067935853593
+0.7833679407372645 0.21935678953761442 0.7833679407372645 0.21935678953761442 0.5231325065713223
+0.7856947179942684 0.21674772653135405 0.7856947179942684 0.21674772653135402 0.5217073396488675
+0.7889501748732448 0.2135543733314904 0.7889501748732447 0.2135543733314904 0.5190598358173567
+0.7929870492848418 0.21155313134998485 0.7929870492848418 0.21155313134998485 0.5148433103363317
+0.7965157447180401 0.20955242503973667 0.7965157447180401 0.20955242503973667 0.5106165759458711
+0.7998973199006795 0.20746647981991043 0.7998973199006795 0.20746647981991043 0.5062669972387992
+0.8032877783778345 0.20523575824119253 0.8032877783778344 0.20523575824119253 0.5015061764743712
+0.8067619127339167 0.20310603052994775 0.8067619127339167 0.20310603052994772 0.496407831522693
+0.8101777460601675 0.200972969444746 0.8101777460601675 0.200972969444746 0.491172969452014
+0.8135347573869062 0.19887956904026674 0.8135347573869062 0.19887956904026674 0.485918020213769
+0.8169335154842331 0.19675794512040826 0.8169335154842331 0.19675794512040826 0.4805309549635414
+0.8203417300743052 0.19465247336006386 0.8203417300743051 0.19465247336006386 0.4751550303694884
+0.8237286781368348 0.1925574900267487 0.8237286781368348 0.1925574900267487 0.4698498230355736
+0.8271160554998324 0.190449415720176 0.8271160554998324 0.190449415720176 0.46461279962469987
+0.8305122031910397 0.18833517687844334 0.8305122031910397 0.18833517687844334 0.4594652638029267
+0.8339016300981772 0.1862378684862094 0.8339016300981772 0.1862378684862094 0.4544446502561808
+0.8372726397877478 0.184116658764435 0.8372726397877478 0.18411665876443498 0.4495327767206128
+0.8406519851270599 0.18200836820080216 0.8406519851270599 0.18200836820080216 0.44468929525580986
+0.8440423379175623 0.1799169891413487 0.8440423379175623 0.1799169891413487 0.439891779664161
+0.8474304511831142 0.17782820393139986 0.8474304511831142 0.17782820393139986 0.4351253223113694
+0.8508189052384647 0.17573879074200568 0.8508189052384648 0.17573879074200568 0.43035610630936766
+0.8542069205711437 0.1736528630530021 0.8542069205711437 0.1736528630530021 0.4255599513476282
+0.857599927761889 0.17155960980510312 0.857599927761889 0.17155960980510312 0.4207086009925191
+0.8609927882068198 0.16946555490743842 0.8609927882068199 0.16946555490743842 0.4158029095376558
+0.8643842220393231 0.16737142517561956 0.8643842220393231 0.16737142517561956 0.41084946352957097
+0.8677749333412841 0.16527654965090693 0.8677749333412841 0.16527654965090696 0.405868210265864
+0.8711654347835802 0.16317991631795614 0.8711654347835802 0.16317991631795614 0.40089679568970366
+0.8745558180787492 0.1610878661087511 0.874555818078749 0.16108786610875112 0.3959965586205978
+0.8779462013739181 0.15899581589954595 0.8779462013739181 0.15899581589954595 0.39123508920582967
+0.8813365846690872 0.1569037656903408 0.8813365846690872 0.1569037656903408 0.38669714617419443
+0.884726967964256 0.15481171548113573 0.884726967964256 0.15481171548113573 0.3824770638704913
+0.8881173512594249 0.15271966527193065 0.8881173512594248 0.15271966527193068 0.3786734964638034
+0.8915077345545939 0.15062761506272548 0.8915077345545939 0.15062761506272548 0.37538334666757395
+0.8948981178497628 0.14853556485352037 0.8948981178497629 0.14853556485352037 0.37269492104004326
+0.8982885011449318 0.14644351464431526 0.8982885011449318 0.14644351464431526 0.37068084609996577
+0.9016788844401007 0.14435146443511016 0.9016788844401006 0.14435146443511016 0.3693915004573673
+0.9050692677352696 0.14225941422590505 0.9050692677352696 0.14225941422590505 0.3688496011495519
+0.9084596510304386 0.14016736401669994 0.9084596510304387 0.14016736401669994 0.3690463869848044
+0.9118500343256075 0.13807531380749483 0.9118500343256075 0.13807531380749483 0.3699399445961474
+0.9152404176207765 0.13598326359828972 0.9152404176207763 0.13598326359828972 0.3714560218504657
+0.9186308009159454 0.1338912133890846 0.9186308009159454 0.1338912133890846 0.3734912374151429
+0.9220211842111143 0.1317991631798795 0.9220211842111145 0.1317991631798795 0.375918272203607
+0.9254115675062833 0.1297071129706744 0.9254115675062833 0.1297071129706744 0.3785923431285289
+0.9288019508014522 0.12761506276146928 0.9288019508014521 0.12761506276146928 0.381358418462838
+0.9321923340966212 0.12552301255226417 0.9321923340966212 0.12552301255226417 0.3840586081218626
+0.9355827173917901 0.12343096234305906 0.9355827173917902 0.12343096234305906 0.38653926946213746
+0.938973100686959 0.12133891213385395 0.938973100686959 0.12133891213385395 0.38865751247378816
+0.942363483982128 0.11924686192464884 0.9423634839821279 0.11924686192464884 0.3902869219969172
+0.9457538672772969 0.11715481171544373 0.9457538672772969 0.11715481171544373 0.391322424246598
+0.9491442505724659 0.11506276150623862 0.949144250572466 0.11506276150623862 0.3916842963663825
+0.9525346338676348 0.11297071129703351 0.9525346338676348 0.11297071129703351 0.3913213534341402
+0.9559250171628038 0.1108786610878284 0.9559250171628036 0.1108786610878284 0.3902133521258262
+0.9593154004579727 0.10878661087862329 0.9593154004579727 0.10878661087862329 0.3883726303068047
+0.962705783753142 0.10669456066941829 0.962705783753142 0.10669456066941829 0.38584496378126015
+0.966096167048312 0.10460251046021359 0.966096167048312 0.10460251046021359 0.3827095704599232
+0.9694865503434862 0.10251046025101124 0.9694865503434862 0.10251046025101122 0.3790781324634484
+0.9728769336386801 0.10041841004182843 0.9728769336386801 0.10041841004182843 0.3750926444950466
+0.9762673169338756 0.09832635983257498 0.9762673169338756 0.09832635983257498 0.37092184441196935
+0.9796577002291186 0.09623430962329266 0.9796577002291186 0.09623430962329266 0.36675595983706094
+0.9830480835243537 0.0941422594140338 0.9830480835243537 0.0941422594140338 0.36279954199924624
+0.9864384668193242 0.09205020920498241 0.9864384668193242 0.09205020920498241 0.3592622885604331
+0.9898288501144932 0.0899581589957773 0.9898288501144933 0.0899581589957773 0.35634800779431375
+0.9932192334096621 0.0878661087865722 0.9932192334096621 0.0878661087865722 0.35424224583736014
+0.09205020920502081 0.9932192334096622 0.09205020920502081 0.9932192334096622 0.09150833193083474
+0.09414225941422583 0.9898288501144935 0.09414225941422583 0.9898288501144935 0.09306880486803383
+0.09623430962343084 0.9864384668193246 0.09623430962343084 0.9864384668193246 0.0949119348557837
+0.09832635983263587 0.9830480835241556 0.09832635983263587 0.9830480835241556 0.09696174282000226
+0.10041841004184085 0.9796577002289868 0.10041841004184084 0.9796577002289869 0.09914361815913213
+0.10251046025104583 0.9762673169338179 0.10251046025104583 0.9762673169338179 0.10138749409613453
+0.10460251046025079 0.9728769336386488 0.1046025104602508 0.9728769336386488 0.10362998190187798
+0.10669456066945582 0.9694865503434796 0.10669456066945582 0.9694865503434796 0.10581562166267626
+0.10878661087866082 0.9660961670483109 0.10878661087866082 0.9660961670483109 0.10789745311802458
+0.11087866108786586 0.9627057837531421 0.11087866108786586 0.9627057837531421 0.10983710011900605
+0.11297071129707088 0.9593154004579731 0.11297071129707088 0.959315400457973 0.11160452686429577
+0.11506276150627606 0.9559250171628042 0.11506276150627605 0.9559250171628042 0.11317758333132973
+0.11715481171548092 0.9525346338676357 0.11715481171548092 0.9525346338676357 0.11454142142469546
+0.11924686192468575 0.9491442505724668 0.11924686192468577 0.9491442505724667 0.11568783585575826
+0.12133891213389048 0.9457538672772977 0.12133891213389048 0.9457538672772977 0.1166145646619987
+0.12343096234309513 0.9423634839821285 0.12343096234309513 0.9423634839821285 0.11732457210672487
+0.12552301255229983 0.9389731006869594 0.12552301255229983 0.9389731006869594 0.1178253296041497
+0.12761506276150497 0.93558271739179 0.12761506276150494 0.93558271739179 0.1181281065742142
+0.1297071129707106 0.9321923340966208 0.1297071129707106 0.9321923340966208 0.11824728142455944
+0.13179916317991683 0.9288019508014519 0.13179916317991683 0.9288019508014519 0.11819968225429024
+0.13389121338912316 0.9254115675062838 0.13389121338912316 0.9254115675062838 0.11800396661888328
+0.1359832635983294 0.922021184211117 0.13598326359832938 0.9220211842111169 0.11768004932136515
+0.13807531380753216 0.9186308009159513 0.13807531380753216 0.9186308009159513 0.11724858697425988
+0.1401673640167351 0.9152404176207831 0.1401673640167351 0.9152404176207831 0.1167305283436839
+0.14225941422593644 0.9118500343256161 0.14225941422593644 0.9118500343256161 0.11614673912996841
+0.14435146443513824 0.908459651030448 0.14435146443513824 0.908459651030448 0.11551770385736447
+0.1464435146443439 0.9050692677352807 0.1464435146443439 0.9050692677352806 0.1148632960379155
+0.1485355648535551 0.9016788844401136 0.1485355648535551 0.9016788844401136 0.11420260403412529
+0.15062761506277286 0.8982885011449512 0.15062761506277286 0.8982885011449512 0.11355380714035353
+0.15271966527199352 0.8948981178497893 0.15271966527199352 0.8948981178497893 0.11293409584421756
+0.1548117154812166 0.891507734554633 0.1548117154812166 0.891507734554633 0.11235961528119208
+0.15690376569044678 0.888117351259485 0.1569037656904468 0.888117351259485 0.1118454025293336
+0.1589958158996852 0.8847269679643427 0.15899581589968517 0.8847269679643427 0.11140529635911366
+0.1610878661089394 0.8813365846692292 0.1610878661089394 0.8813365846692293 0.11105180734873447
+0.16317991631820675 0.8779462013741449 0.16317991631820675 0.8779462013741449 0.11079593683719045
+0.16527196652747375 0.8745558180791448 0.16527196652747375 0.8745558180791448 0.11064693540941596
+0.16736401673669854 0.8711654347841616 0.16736401673669854 0.8711654347841616 0.11061200415334328
+0.16945606694580984 0.8677750514893843 0.16945606694580984 0.8677750514893843 0.11069596035812639
+0.1715481171543647 0.8643846681945284 0.1715481171543647 0.8643846681945284 0.11090088295406857
+0.1736399470642075 0.8609943629644271 0.1736399470642075 0.8609943629644271 0.11122564155289412
+0.17573151082809702 0.8576041810303462 0.17573151082809702 0.8576041810303462 0.11166581947787667
+0.1778228902882737 0.8542141999267181 0.1778228902882737 0.854214199926718 0.11221343638589754
+0.1799138972998937 0.8508245340139949 0.1799138972998937 0.8508245340139949 0.11285674113787199
+0.18200294209087822 0.8474362995419159 0.18200294209087822 0.8474362995419159 0.1135797445585104
+0.18409043064005082 0.8440492554979148 0.18409043064005082 0.8440492554979148 0.11436382089882839
+0.18618107529392236 0.840661023702669 0.18618107529392236 0.840661023702669 0.11518915783242108
+0.18827861409577876 0.8372707199422229 0.18827861409577876 0.837270719942223 0.11603311470180717
+0.19037354835398762 0.8338735828126314 0.19037354835398765 0.8338735828126315 0.11686486622673968
+0.19246919258632808 0.8304822613407117 0.19246919258632808 0.8304822613407117 0.11765804183504987
+0.1945660514455278 0.8270967227469307 0.19456605144552783 0.8270967227469307 0.11838566259909437
+0.1966562310612158 0.8237121540399984 0.1966562310612158 0.8237121540399984 0.11901716827355957
+0.19874746797099477 0.8203288301365196 0.19874746797099477 0.8203288301365196 0.11953013699769964
+0.20084571156848774 0.8169458984688781 0.20084571156848777 0.8169458984688781 0.11990282169472823
+0.20294642432553625 0.8135701473961884 0.20294642432553625 0.8135701473961884 0.12011380570802753
+0.20504122825158363 0.8102029253817911 0.20504122825158363 0.8102029253817911 0.12014456186427135
+0.20713250483114376 0.8068372325892154 0.20713250483114373 0.8068372325892154 0.11998314750133647
+0.20921770599390324 0.8034660354038214 0.20921770599390324 0.8034660354038214 0.11961884353316314
+0.2112808709219498 0.800066226830634 0.2112808709219498 0.8000662268306339 0.11903281912668766
+0.2133397496856302 0.7966946972574774 0.2133397496856302 0.7966946972574774 0.11826827426820137
+0.2154391283960403 0.793352109785347 0.21543912839604032 0.793352109785347 0.11735195786036119
+0.2175239076321014 0.7900376417703268 0.2175239076321014 0.7900376417703266 0.11629169019820673
+0.2198155968984019 0.7866273819779518 0.2198155968984019 0.7866273819779518 0.11512472992079058
+0.22199958362216352 0.7832121891886404 0.22199958362216352 0.7832121891886404 0.11380969217782057
+0.2239679365369539 0.7799879307147306 0.22396793653695388 0.7799879307147305 0.1124942163272895
+0.22617409788282655 0.7769183512437163 0.22617409788282658 0.7769183512437162 0.11135594502367217
+0.22829556429020467 0.7733276738586099 0.22829556429020467 0.7733276738586099 0.10993891673207636
+0.23040250443963062 0.7695048083493071 0.23040250443963067 0.7695048083493071 0.10844572297724729
+0.23325275531896494 0.7668593929520005 0.23325275531896494 0.7668593929520005 0.10821402401189736
+0.2342802262944173 0.7632051607135892 0.23428022629441728 0.7632051607135892 0.10671481231915989
+0.23714341286883145 0.756934285945513 0.23714341286883145 0.7569342859455129 0.10527261968742742
+0.2367695312066731 0.7603241177342942 0.2367695312066731 0.7603241177342942 0.1066140311378901
+0.24080654427886644 0.7507414585693448 0.24080654427886647 0.7507414585693448 0.10545426234713899
+0.2406991704103444 0.754860920979961 0.24069917041034436 0.754860920979961 0.10682334029468854
+0.24429475730458403 0.7485598422085308 0.24429475730458403 0.7485598422085308 0.10753872967542188
+0.24716741405846626 0.7469718442500191 0.24716741405846626 0.7469718442500191 0.109629108203836
+0.24857243373103827 0.7443299066833596 0.24857243373103824 0.7443299066833596 0.11043951020755509
+0.25082489995476653 0.7412815179744339 0.2508248999547665 0.7412815179744339 0.1122022809495221
+0.2530716112889106 0.7382384684952689 0.2530716112889106 0.7382384684952689 0.11422361982556127
+0.2589052965652482 0.7354655213889628 0.25890529656524824 0.7354655213889628 0.12038189405108866
+0.2567112365171258 0.7384604738946168 0.2567112365171258 0.7384604738946168 0.11808315047463507
+0.26107805521648425 0.7325025985752233 0.26107805521648425 0.7325025985752233 0.12279341971201585
+0.26321814812367966 0.7296115354511548 0.26321814812367966 0.7296115354511548 0.12525287654746972
+0.26760261764710025 0.7143305087089763 0.26760261764710025 0.7143305087089763 0.13015888415067214
+0.2698912200154993 0.7112906123713914 0.2698912200154993 0.7112906123713914 0.1324065162122636
+0.27215866888883644 0.7082497048370818 0.27215866888883644 0.7082497048370818 0.13443092401719367
+0.28218293886693463 0.6898182742709181 0.28218293886693463 0.6898182742709181 0.1382564949479885
+0.27540436431395937 0.6987492640397761 0.27540436431395937 0.6987492640397761 0.13569875381539862
+0.27990836512688416 0.6927785804151211 0.27990836512688416 0.6927785804151211 0.13764497266352457
+0.277672992289432 0.695764336660724 0.27767299228943193 0.6957643366607239 0.13681823732100293
+0.27441021763554097 0.7052247017221545 0.27441021763554097 0.7052247017221545 0.13621247679717496
+0.2766641522872646 0.7022199766373101 0.2766641522872646 0.7022199766373101 0.13775212853357519
+0.2641985014820629 0.7236209175146686 0.2641985014820629 0.7236209175146686 0.12646241515904852
+0.2653354939653878 0.7267781502565441 0.2653354939653878 0.7267781502565441 0.1277166786528434
+0.26654808340115216 0.7208224410625772 0.26654808340115216 0.7208224410625772 0.12912336927895685
+0.268898262460836 0.7178949189972254 0.268898262460836 0.7178949189972254 0.1316964841056116
+0.30420672845710683 0.6660003909117489 0.30420672845710683 0.6660003909117488 0.14029656927218281
+0.30196114226690113 0.6689858542220385 0.30196114226690113 0.6689858542220385 0.14052034035912167
+0.29969928609038393 0.6719955205352112 0.29969928609038393 0.6719955205352112 0.14083862332476393
+0.2974326773859948 0.6750219349012605 0.2974326773859948 0.6750219349012605 0.1411973602575067
+0.2856961835962022 0.6903072485561041 0.2856961835962022 0.6903072485561043 0.14136385350360617
+0.29515730091662046 0.6780644580610108 0.29515730091662046 0.6780644580610108 0.14153484347892853
+0.29286058907615503 0.6811294122105921 0.29286058907615503 0.6811294122105921 0.14178938217218875
+0.2905225859057621 0.684214087812383 0.2905225859057621 0.684214087812383 0.14189082252373184
+0.28812908244077245 0.6872821991868561 0.28812908244077245 0.6872821991868561 0.14176607523069837
+0.3303514879207122 0.6269024762939677 0.3303514879207122 0.6269024762939677 0.15792451950938294
+0.3120389683536427 0.6510456000967328 0.3120389683536427 0.651045600096733 0.1380397742795287
+0.3177210100815875 0.638382940114708 0.3177210100815875 0.638382940114708 0.13921558973359008
+0.32002232532454916 0.6353223271032191 0.32002232532454916 0.6353223271032191 0.1415710297746683
+0.3222506763317218 0.6321160950474096 0.3222506763317217 0.6321160950474097 0.1441427169888032
+0.3245708935864083 0.6293310614963658 0.3245708935864083 0.6293310614963658 0.1473926330646267
+0.327980668646359 0.629834276081486 0.32798066864635894 0.629834276081486 0.153914680232028
+0.31435063308181893 0.6480262494057871 0.31435063308181893 0.6480262494057872 0.13915345349162853
+0.31893220267846684 0.6419014874370966 0.31893220267846684 0.6419014874370966 0.1425052244849803
+0.3166338471091127 0.6449679488769214 0.31663384710911263 0.6449679488769214 0.1406131694664223
+0.3077260530626699 0.6661593201679689 0.3077260530626699 0.6661593201679689 0.14404387125568252
+0.30987580484408056 0.6632584716767419 0.30987580484408056 0.6632584716767419 0.14417323112561167
+0.31083482513044597 0.6572983715224906 0.31083482513044597 0.6572983715224906 0.14080321274507115
+0.31199353961428616 0.6604063086008434 0.31199353961428616 0.6604063086008435 0.14451863141297758
+0.31320897068856823 0.6545065609202795 0.3132089706885682 0.6545065609202795 0.14176257466724948
+0.3338504691176989 0.6273077828111416 0.3338504691176989 0.6273077828111416 0.16573681017152422
+0.3895738315566439 0.4678950609622263 0.3895738315566439 0.4678950609622263 0.26674207399678823
+0.3862933736945806 0.46964916454904915 0.3862933736945806 0.4696491645490491 0.28793332777443487
+0.38247465711262335 0.47250148090686706 0.38247465711262335 0.47250148090686706 0.31839176069002234
+0.38504145006825774 0.47184129308319783 0.38504145006825774 0.47184129308319783 0.30724134729241465
+0.3783868288602688 0.4755664325345333 0.3783868288602688 0.4755664325345333 0.34838514977735485
+0.38183948239976595 0.47494741484992153 0.38183948239976595 0.4749474148499216 0.3381634116134564
+0.37776504966649566 0.47831571445119564 0.37776504966649566 0.47831571445119564 0.3679950279359489
+0.37419736035956214 0.47992185453588637 0.3741973603595622 0.4799218545358864 0.3810160755843727
+0.37217797635183586 0.4826892279308994 0.37217797635183586 0.48268922793089947 0.39699887192066546
+0.36710216432654413 0.4856907805308139 0.3671021643265441 0.4856907805308138 0.41046468319799395
+0.37062202540426575 0.48549502981871506 0.37062202540426575 0.485495029818715 0.4102909285280976
+0.3661559315419432 0.48934180331063154 0.3661559315419432 0.48934180331063154 0.42274375923652413
+0.3622607008156756 0.49052416865257276 0.3622607008156756 0.4905241686525727 0.42367328855108105
+0.36188801875027454 0.4934487804947545 0.36188801875027454 0.4934487804947545 0.42939202070853566
+0.3597908591159296 0.49617713455991097 0.3597908591159297 0.496177134559911 0.4316047803418982
+0.3561788352936932 0.49833110895842153 0.3561788352936932 0.49833110895842153 0.4301231158221222
+0.35565549538214025 0.5015830836547875 0.35565549538214025 0.5015830836547875 0.42975269898618507
+0.3521621591479905 0.5065921959693693 0.35216215914799054 0.5065921959693692 0.4229655774517235
+0.3548274913953957 0.5043458105825283 0.3548274913953957 0.5043458105825283 0.4272139066787301
+0.35078056576105643 0.5101139790358115 0.3507805657610565 0.5101139790358115 0.41611487507713596
+0.3470161047864224 0.5151742302116571 0.3470161047864224 0.515174230211657 0.4027203773032559
+0.35031150454079407 0.5134869337391517 0.35031150454079407 0.5134869337391517 0.4081348812000387
+0.34653465378873366 0.5187410117172904 0.34653465378873366 0.5187410117172905 0.39209878217075983
+0.3428322933100177 0.5244135864866543 0.3428322933100177 0.5244135864866543 0.37286699184886807
+0.34614966532728064 0.5223726059845635 0.34614966532728064 0.5223726059845636 0.37970171430361527
+0.3425221307351747 0.5282246017744057 0.3425221307351747 0.5282246017744057 0.358423371687494
+0.3390558131444503 0.5344248022682742 0.3390558131444503 0.5344248022682742 0.33505859933084586
+0.3422980167080434 0.5320524282841553 0.3422980167080434 0.5320524282841553 0.3428678853465357
+0.33899803100439013 0.538078863998727 0.33899803100439013 0.538078863998727 0.3196467894105512
+0.3357493679501732 0.5435864350707285 0.33574936795017324 0.5435864350707283 0.29920261145039806
+0.33517992328327834 0.5464949209400057 0.33517992328327834 0.5464949209400057 0.2874737212526556
+0.3388887843846096 0.5418922621040321 0.3388887843846096 0.5418922621040321 0.30334037317054485
+0.336119001978136 0.5490062386936436 0.336119001978136 0.5490062386936437 0.27611372934373396
+0.33363715055923326 0.5547152848400518 0.33363715055923326 0.5547152848400518 0.25593348164472735
+0.33399250865263785 0.5579279682472953 0.33399250865263785 0.5579279682472952 0.24334798306944352
+0.33649234731781336 0.5524309948710638 0.33649234731781336 0.5524309948710638 0.26178819281968013
+0.33431146483643676 0.5611495211591324 0.33431146483643676 0.5611495211591323 0.23146110684408264
+0.33203052745235057 0.56666113117889 0.33203052745235057 0.5666611311788899 0.21546922405169697
+0.3326109625620462 0.5699288503133623 0.3326109625620462 0.5699288503133623 0.2053701186500547
+0.33482716382273564 0.5642781524652762 0.33482716382273564 0.5642781524652762 0.22053077572899485
+0.333225972960725 0.5731990816199429 0.333225972960725 0.5731990816199429 0.1964174684263019
+0.3311491369313095 0.5789956548661727 0.3311491369313095 0.5789956548661727 0.18414057370237827
+0.33193250515075673 0.582298495780272 0.33193250515075673 0.582298495780272 0.17794771934988687
+0.33389663884326687 0.5764548736243799 0.33389663884326687 0.5764548736243799 0.1887830110561184
+0.3327849404798701 0.585589524673162 0.3327849404798701 0.585589524673162 0.17321851226882337
+0.3310439124414766 0.591618578446612 0.3310439124414766 0.591618578446612 0.16537046855192825
+0.33206687878653884 0.5949600956606058 0.33206687878653884 0.5949600956606059 0.1635225721681212
+0.33369661144424884 0.5888996891519516 0.33369661144424884 0.5888996891519516 0.1699395057227814
+0.3331547105495896 0.5982901105988742 0.3331547105495896 0.5982901105988742 0.16303190583955518
+0.331764839442612 0.6044929961855395 0.331764839442612 0.6044929961855395 0.15908456392092643
+0.3329645579839236 0.6078754458625464 0.3329645579839236 0.6078754458625464 0.16072556757497536
+0.33429541197882867 0.6016091986843192 0.33429541197882867 0.6016091986843192 0.16376168617860845
+0.334294704502282 0.6112550766525585 0.334294704502282 0.6112550766525585 0.16341013991790984
+0.33352204015512116 0.6175872826569512 0.33352204015512116 0.6175872826569512 0.1626018478928775
+0.33488523797361447 0.6209307336682129 0.33488523797361447 0.6209307336682129 0.16635906453723073
+0.3357542585159514 0.6145537343367832 0.3357542585159514 0.6145537343367832 0.16700465603379192
+0.3362243785105652 0.6242788754268483 0.3362243785105652 0.6242788754268483 0.17040221509182385
+0.3928763636891564 0.4710556015349064 0.3928763636891564 0.4710556015349064 0.27711916762517336
+0.3960795860863791 0.4740261536997423 0.3960795860863791 0.47402615369974227 0.291682687058099
+0.5040030929331899 0.3850530289853079 0.5040030929331899 0.38505302898530797 0.4404836287477054
+0.5063617828865619 0.3824416359154873 0.5063617828865619 0.38244163591548735 0.4085015938908106
+0.5102407642656369 0.37961530340716454 0.5102407642656369 0.37961530340716454 0.3690738373673809
+0.5088850768289233 0.3819112282705576 0.5088850768289233 0.3819112282705576 0.39199171583163506
+0.5138583149064165 0.3771024677514541 0.5138583149064165 0.3771024677514541 0.3366718745558415
+0.5127137564402483 0.3799227922517121 0.5127137564402483 0.3799227922517121 0.35979473853285215
+0.5180414848950772 0.3741458587961957 0.5180414848950772 0.3741458587961957 0.3064488227371551
+0.5166666620108028 0.37699085546685407 0.5166666620108028 0.376990855466854 0.326277535580434
+0.5205455300275434 0.37432442646463604 0.5205455300275434 0.37432442646463604 0.3043021798647972
+0.5271229084699327 0.36849806113262445 0.5271229084699326 0.36849806113262445 0.2878103848406854
+0.524811767616939 0.37091659038759706 0.524811767616939 0.37091659038759706 0.2912421678663038
+0.5224732355514184 0.37295549714734877 0.5224732355514184 0.37295549714734877 0.29742852220359395
+0.5364324217319423 0.3632417586820206 0.5364324217319423 0.36324175868202063 0.32973674838785033
+0.5323500266630321 0.3670601079853217 0.5323500266630321 0.3670601079853217 0.31250985582331176
+0.5346568986166959 0.36611081799558676 0.5346568986166959 0.36611081799558676 0.32670862703053183
+0.5306185905168027 0.369891025276803 0.5306185905168027 0.36989102527680295 0.3136276285286708
+0.544481863445078 0.3603922993762205 0.544481863445078 0.3603922993762205 0.39737622632305264
+0.547574354917429 0.3599250311403421 0.5475743549174289 0.359925031140342 0.42828926918961147
+0.5424609729001173 0.3625311014716813 0.5424609729001172 0.3625311014716814 0.3859786380749281
+0.540012403907946 0.36498122518687254 0.540012403907946 0.36498122518687254 0.3721447910512444
+0.5562553617634621 0.35705391915504886 0.5562553617634621 0.35705391915504886 0.5054707140855204
+0.5535127720160667 0.35921462258092335 0.5535127720160667 0.35921462258092335 0.4879191250678709
+0.550843711219591 0.3614686083849404 0.5508437112195911 0.3614686083849404 0.47082405843013914
+0.5781640733005843 0.3536752831652532 0.5781640733005843 0.3536752831652532 0.6757947790953586
+0.5619203574955186 0.3565863031429553 0.5619203574955186 0.3565863031429553 0.558927254648268
+0.5591768558200757 0.3586501809101909 0.5591768558200757 0.3586501809101909 0.5430578937485019
+0.574867577017469 0.3550571425862455 0.574867577017469 0.3550571425862455 0.6600513276477272
+0.5673121996526637 0.3563306313004954 0.5673121996526637 0.3563306313004954 0.6064796623024714
+0.5719552021194061 0.35648721712367215 0.5719552021194061 0.35648721712367215 0.6456385581637304
+0.5695246492043944 0.3575131867428751 0.5695246492043944 0.3575131867428751 0.6314633812761763
+0.5647748168220962 0.35815338952404857 0.5647748168220962 0.35815338952404857 0.5937433131362604
+0.5925214833565723 0.3534630850743334 0.5925214833565723 0.3534630850743334 0.7499674384965829
+0.5872793552614959 0.3529834913819849 0.5872793552614959 0.3529834913819849 0.7248343518734311
+0.589724113456391 0.3541742954075582 0.589724113456391 0.3541742954075582 0.7417997115570881
+0.5842295263680284 0.3544863943190993 0.5842295263680284 0.3544863943190993 0.7166366039077934
+0.5809532252442335 0.35601063426307916 0.5809532252442335 0.35601063426307916 0.7056896791544581
+0.5063859826322923 0.3892611222637719 0.5063859826322923 0.3892611222637719 0.4652147396356426
+0.5085843850336123 0.3933247521805854 0.5085843850336121 0.3933247521805854 0.49397701114635967
+0.6179325130736507 0.3482030931459463 0.6179325130736507 0.3482030931459463 0.7739719154725785
+0.604168617282029 0.3523187024528421 0.604168617282029 0.3523187024528421 0.7774173212199847
+0.6075035150347948 0.351185510253372 0.6075035150347948 0.351185510253372 0.7780802854720988
+0.6143838274980808 0.3491350426311906 0.6143838274980808 0.3491350426311906 0.7764016582366778
+0.6109083885719425 0.3501290970390129 0.6109083885719425 0.3501290970390129 0.777768341745323
+0.6008762151286533 0.35354058104652025 0.6008762151286532 0.35354058104652025 0.7758234969619417
+0.5977138320731478 0.35471140489539127 0.5977138320731478 0.35471140489539127 0.7729152025975347
+0.5945853037618124 0.3558059067012338 0.5945853037618124 0.3558059067012338 0.7683417559500118
+0.6604377732002686 0.3016347793752993 0.6604377732002686 0.3016347793752993 0.656436656931947
+0.663953468927745 0.3011506995237048 0.663953468927745 0.3011506995237048 0.6549825019058745
+0.656953481608408 0.3021993788721001 0.656953481608408 0.3021993788721001 0.657645423080501
+0.6535140726830472 0.30281561236934557 0.6535140726830472 0.30281561236934557 0.6585578789656806
+0.6466144742080434 0.3039460584918792 0.6466144742080434 0.3039460584918792 0.6590419532956396
+0.6500854542048092 0.3034110276477701 0.6500854542048092 0.3034110276477701 0.6590682385423078
+0.6415699158612848 0.3077846616673592 0.6415699158612848 0.3077846616673592 0.6650748206913702
+0.6366438248235843 0.3117845341498102 0.6366438248235843 0.3117845341498102 0.6721583632370233
+0.6321295562995853 0.3156429135546595 0.6321295562995853 0.3156429135546595 0.6796104043503517
+0.6277932539777253 0.3203022599854851 0.6277932539777255 0.32030225998548506 0.6902621323362342
+0.6307851323256248 0.31862891688902323 0.6307851323256248 0.31862891688902323 0.6870026308521282
+0.6253522115708614 0.33258364615658503 0.6253522115708614 0.33258364615658503 0.7257536392165306
+0.6287397153655547 0.32367013031663333 0.6287397153655547 0.32367013031663333 0.7003973018418594
+0.6276811228961495 0.32658746212125617 0.6276811228961495 0.32658746212125617 0.708563365205035
+0.6265567369647385 0.3298882630406541 0.6265567369647385 0.3298882630406541 0.7180077730855965
+0.6352619407531176 0.31537282954848017 0.6352619407531176 0.31537282954848017 0.6805717614667196
+0.640118680768087 0.3113316301333759 0.640118680768087 0.3113316301333759 0.6725633369934401
+0.6450944132566617 0.3074165245991623 0.6450944132566617 0.3074165245991623 0.6655759443899046
+0.6675048078747484 0.3007356383855633 0.6675048078747484 0.3007356383855633 0.6532137810410478
+0.6711017682725817 0.3003849940579224 0.6711017682725817 0.3003849940579224 0.6510816059469778
+0.674744761755627 0.30006690035258266 0.674744761755627 0.30006690035258266 0.6485288745753159
+0.6784334114782639 0.2997745407386616 0.6784334114782639 0.2997745407386616 0.6455272627296439
+0.6260084013326428 0.3358365606531657 0.6260084013326429 0.3358365606531657 0.7358051261781203
+0.6245476687151011 0.34000707996566415 0.6245476687151011 0.3400070799656642 0.7481020138422602
+0.6229976052116539 0.34373637330579765 0.6229976052116539 0.34373637330579765 0.7594097837464417
+0.6215560512213392 0.34734335791830834 0.6215560512213392 0.34734335791830834 0.7705090214961173
+0.6881038814498638 0.2957998547714872 0.6881038814498638 0.2957998547714871 0.6334815951348315
+0.6821783919197739 0.29949947026767837 0.6821783919197739 0.29949947026767837 0.6420507485899352
+0.6859815255243306 0.2992735776609932 0.6859815255243306 0.2992735776609932 0.6381079788609808
+0.7175094483774423 0.2673691681763552 0.7175094483774423 0.2673691681763552 0.5664019486510535
+0.7154638288851476 0.270576593151192 0.7154638288851477 0.2705765931511919 0.5725030663726579
+0.7098319058523902 0.27361347321413626 0.7098319058523902 0.27361347321413626 0.5837930195496527
+0.7078351508776098 0.2768164099342583 0.7078351508776098 0.2768164099342583 0.5901980573854192
+0.7023231277680358 0.2798268284784647 0.7023231277680358 0.2798268284784647 0.6011406653877297
+0.7002381174649663 0.2829531335999182 0.7002381174649663 0.2829531335999182 0.6073256128766525
+0.69827030255581 0.2861608093971659 0.69827030255581 0.2861608093971659 0.6131410797810535
+0.7058342660637211 0.2799988118742969 0.7058342660637211 0.2799988118742969 0.5965109875058542
+0.7134300366391787 0.27378682209399857 0.7134300366391787 0.27378682209399857 0.5787994086927729
+0.6963333026253565 0.2894274072660491 0.6963333026253565 0.28942740726604915 0.6186638100154854
+0.6941605711710598 0.2925475182165585 0.6941605711710598 0.2925475182165585 0.6240283431249941
+0.6919896972104844 0.2957374610691543 0.6919896972104844 0.2957374610691543 0.6289652561676838
+0.7232052517054961 0.2642943706507054 0.7232052517054961 0.2642943706507053 0.5559985159154016
+0.7268231530855928 0.26434654702226446 0.7268231530855928 0.2643465470222645 0.5512973231900383
+0.7211711741275355 0.267499074339647 0.7211711741275355 0.267499074339647 0.5614634946089722
+0.7324360106498071 0.2611966957862641 0.7324360106498071 0.2611966957862641 0.5424586011561062
+0.7303976202416663 0.2643479478304291 0.7303976202416663 0.2643479478304291 0.5466136918644308
+0.7360358243828485 0.26123554844918345 0.7360358243828485 0.26123554844918345 0.5382507402967399
+0.7381642416928197 0.2581808644196841 0.7381642416928197 0.2581808644196841 0.5351081836249824
+0.7403272198921805 0.2551344630273516 0.7403272198921805 0.2551344630273516 0.5325883738586038
+0.7425378941392103 0.2520674748243647 0.7425378941392103 0.2520674748243647 0.5306816311548891
+0.7448269573052393 0.24907592163973977 0.7448269573052393 0.24907592163973977 0.5293923327211356
+0.7507370080095163 0.24093931316516437 0.7507370080095164 0.24093931316516443 0.5286624122022499
+0.7471994207858543 0.24591020297184651 0.7471994207858543 0.24591020297184651 0.5286752798196527
+0.7500142349516329 0.2441312733828741 0.7500142349516329 0.24413127338287408 0.5276488446291637
+0.7572270200333256 0.2371930838626594 0.7572270200333256 0.2371930838626594 0.5280265912843536
+0.7550744428475726 0.24061441274249573 0.7550744428475725 0.2406144127424957 0.5271195104313015
+0.7633539769207207 0.23348822920346313 0.7633539769207207 0.23348822920346315 0.5279263436408441
+0.7613535767801738 0.2369444820048861 0.7613535767801737 0.23694448200488608 0.5268263212112227
+0.7667715920038011 0.23305717989686175 0.7667715920038011 0.23305717989686175 0.5268317135968631
+0.7695707440831355 0.23047104344782116 0.7695707440831355 0.23047104344782118 0.5272965167534415
+0.7734082806609144 0.22945607793391615 0.7734082806609144 0.22945607793391615 0.5258423661669426
+0.7759433232643186 0.2265272656196987 0.7759433232643185 0.22652726561969866 0.5260442166550935
+0.7797609032604729 0.22453258304915152 0.779760903260473 0.22453258304915155 0.5244705185294923
+0.7831677778203932 0.22253983442854763 0.7831677778203932 0.22253983442854763 0.5226296381355254
+0.786314102897713 0.2204904775809398 0.786314102897713 0.2204904775809398 0.5206201087223682
+0.789483873433933 0.2180303728212554 0.789483873433933 0.2180303728212554 0.5181793732734824
+0.7929284748338433 0.21571002767928849 0.7929284748338433 0.21571002767928849 0.5149374309194034
+0.7964694309253078 0.21359154730734778 0.7964694309253079 0.21359154730734778 0.5110657312029704
+0.7999153123054679 0.21147161177451113 0.799915312305468 0.2114716117745111 0.5068376835939863
+0.8033098617765977 0.2093402060039794 0.8033098617765976 0.20934020600397937 0.5023014817520478
+0.8067272029516549 0.20721935020040497 0.8067272029516549 0.20721935020040497 0.4974268076864115
+0.8101416997296469 0.20508750989986127 0.8101416997296468 0.20508750989986127 0.4923243992944532
+0.8135341745453394 0.20296029444874789 0.8135341745453394 0.20296029444874789 0.4870914413194168
+0.8169210918422413 0.20085494198489762 0.8169210918422413 0.20085494198489764 0.4817783382308672
+0.8203106690266145 0.1987490661182038 0.8203106690266145 0.19874906611820384 0.4764418896359391
+0.8237007107124072 0.1966546464457349 0.8237007107124071 0.1966546464457349 0.47114479895267575
+0.8270910233536783 0.19456237408356383 0.8270910233536783 0.19456237408356383 0.46592193084998795
+0.8304808352415528 0.19246861924682768 0.8304808352415528 0.19246861924682768 0.4608062066038611
+0.8338712185367217 0.1903765690376226 0.8338712185367217 0.1903765690376226 0.4558175033623791
+0.8372616018318908 0.18828451882841746 0.8372616018318908 0.18828451882841746 0.45095717466649005
+0.8406519851270597 0.18619246861921232 0.8406519851270599 0.18619246861921232 0.44620988385734656
+0.8440423684222286 0.18410041841000724 0.8440423684222286 0.18410041841000724 0.4415550031258631
+0.847432252236609 0.18200925224415854 0.847432252236609 0.18200925224415854 0.4369669236373533
+0.8508215503574056 0.17991895199828112 0.8508215503574056 0.17991895199828112 0.4324133803918073
+0.8542112511218704 0.17782846405965566 0.8542112511218704 0.17782846405965566 0.4278600841830085
+0.8576022098952757 0.17573633444646405 0.8576022098952757 0.17573633444646405 0.42327597320034865
+0.8609937174035608 0.1736431406325195 0.8609937174035608 0.1736431406325195 0.4186410580897913
+0.864384508822981 0.17155044256845764 0.864384508822981 0.17155044256845764 0.4139462850377054
+0.8677750067130382 0.16945747028888727 0.8677750067130382 0.16945747028888727 0.4091930648077183
+0.8711654347835801 0.1673640167363664 0.8711654347835801 0.1673640167363664 0.4043991427909395
+0.874555818078749 0.16527196652716128 0.874555818078749 0.16527196652716128 0.3996010701007395
+0.8779462013739181 0.16317991631795614 0.8779462013739181 0.16317991631795614 0.39484905770371026
+0.8813365846690872 0.16108786610875106 0.8813365846690872 0.16108786610875106 0.39020951201699217
+0.884726967964256 0.15899581589954595 0.884726967964256 0.15899581589954595 0.38576143520461575
+0.8881173512594248 0.15690376569034084 0.8881173512594248 0.15690376569034084 0.381592658292451
+0.8915077345545939 0.1548117154811357 0.8915077345545939 0.1548117154811357 0.3777949183914566
+0.8948981178497628 0.1527196652719306 0.8948981178497629 0.1527196652719306 0.3744580360275187
+0.8982885011449318 0.15062761506272548 0.8982885011449318 0.15062761506272548 0.37166349585028385
+0.9016788844401007 0.14853556485352037 0.9016788844401006 0.14853556485352037 0.369477924173331
+0.9050692677352696 0.14644351464431526 0.9050692677352696 0.14644351464431526 0.3679470534503763
+0.9084596510304386 0.14435146443511016 0.9084596510304387 0.14435146443511016 0.36709074744099907
+0.9118500343256075 0.14225941422590505 0.9118500343256075 0.14225941422590505 0.3668996218795945
+0.9152404176207765 0.14016736401669994 0.9152404176207763 0.14016736401669994 0.36733371290927136
+0.9186308009159454 0.13807531380749483 0.9186308009159454 0.13807531380749483 0.36832340560578375
+0.9220211842111143 0.13598326359828972 0.9220211842111145 0.13598326359828972 0.3697725236205513
+0.9254115675062833 0.1338912133890846 0.9254115675062833 0.1338912133890846 0.37156320749908517
+0.9288019508014522 0.1317991631798795 0.9288019508014521 0.1317991631798795 0.37356206064892156
+0.9321923340966212 0.1297071129706744 0.9321923340966212 0.1297071129706744 0.3756270162565251
+0.9355827173917901 0.12761506276146928 0.9355827173917902 0.12761506276146928 0.3776144034292103
+0.938973100686959 0.12552301255226417 0.938973100686959 0.12552301255226417 0.3793857832167736
+0.942363483982128 0.12343096234305906 0.9423634839821279 0.12343096234305906 0.3808142475583411
+0.9457538672772969 0.12133891213385395 0.9457538672772969 0.12133891213385395 0.38178999425245636
+0.9491442505724659 0.11924686192464884 0.949144250572466 0.11924686192464884 0.3822250883312512
+0.9525346338676348 0.11715481171544373 0.9525346338676348 0.11715481171544373 0.38205738462139993
+0.9559250171628038 0.11506276150623862 0.9559250171628036 0.11506276150623862 0.38125361687286996
+0.9593154004579727 0.11297071129703351 0.9593154004579727 0.11297071129703351 0.3798116591944846
+0.9627057837531416 0.1108786610878284 0.9627057837531418 0.1108786610878284 0.3777619411771685
+0.9660961670483108 0.10878661087862329 0.9660961670483107 0.10878661087862329 0.37516795495896155
+0.9694865503434804 0.1066945606694179 0.9694865503434805 0.10669456066941789 0.3721257366741429
+0.9728769336386556 0.10460251046020765 0.9728769336386556 0.10460251046020765 0.36876214404459867
+0.9762673169338345 0.10251046025099553 0.9762673169338346 0.10251046025099553 0.365231698800295
+0.9796577002290293 0.10041841004176975 0.9796577002290293 0.10041841004176975 0.36171173713883925
+0.983048083524204 0.09832635983255968 0.983048083524204 0.09832635983255968 0.3583956418824094
+0.9864384668193242 0.09623430962339263 0.9864384668193242 0.09623430962339263 0.35548404946025375
+0.9898288501144932 0.09414225941418752 0.9898288501144933 0.09414225941418752 0.35317416016250425
+0.9932192334096621 0.09205020920498241 0.9932192334096621 0.09205020920498241 0.3516476321150013
+0.09623430962343087 0.9932192334096622 0.09623430962343087 0.9932192334096622 0.09266206448324266
+0.09832635983263587 0.9898288501144935 0.09832635983263587 0.9898288501144935 0.09423646416529476
+0.10041841004184086 0.9864384668193246 0.10041841004184086 0.9864384668193246 0.09609514765784372
+0.10251046025104582 0.9830480835241556 0.10251046025104582 0.9830480835241556 0.09816386525736133
+0.10460251046025087 0.9796577002289867 0.10460251046025086 0.9796577002289867 0.10037020668804587
+0.10669456066945589 0.9762673169338179 0.10669456066945589 0.9762673169338179 0.10264654626439627
+0.10878661087866091 0.9728769336386488 0.10878661087866091 0.9728769336386488 0.10493197049329761
+0.11087866108786593 0.9694865503434796 0.11087866108786593 0.9694865503434796 0.10717335258578942
+0.11297071129707091 0.9660961670483109 0.11297071129707091 0.9660961670483109 0.10932577631105278
+0.11506276150627588 0.9627057837531421 0.11506276150627588 0.9627057837531421 0.11135249868983223
+0.11715481171548091 0.959315400457973 0.11715481171548091 0.959315400457973 0.11322460569118441
+0.11924686192468581 0.9559250171628042 0.11924686192468581 0.9559250171628042 0.11492047578955102
+0.12133891213389066 0.9525346338676353 0.12133891213389066 0.9525346338676354 0.11642513211547979
+0.12343096234309546 0.9491442505724664 0.12343096234309546 0.9491442505724664 0.11772953800659049
+0.1255230125523002 0.9457538672772974 0.12552301255230017 0.9457538672772973 0.11882987280200759
+0.12761506276150533 0.9423634839821281 0.12761506276150533 0.9423634839821281 0.11972681315844698
+0.12970711297071072 0.938973100686959 0.12970711297071072 0.938973100686959 0.12042483815354395
+0.13179916317991633 0.9355827173917902 0.13179916317991633 0.9355827173917902 0.12093157234590958
+0.13389121338912194 0.9321923340966217 0.13389121338912194 0.9321923340966217 0.12125717851319705
+0.1359832635983276 0.9288019508014538 0.1359832635983276 0.9288019508014537 0.12141381006320129
+0.13807531380753166 0.9254115675062862 0.13807531380753166 0.9254115675062861 0.12141513149570758
+0.14016736401673538 0.9220211842111178 0.14016736401673538 0.9220211842111178 0.12127591351783033
+0.14225941422593838 0.9186308009159494 0.14225941422593838 0.9186308009159493 0.12101170737739757
+0.14435146443514157 0.9152404176207809 0.14435146443514157 0.915240417620781 0.12063860021145233
+0.1464435146443467 0.9118500343256127 0.1464435146443467 0.9118500343256127 0.1201730484941921
+0.14853556485355474 0.9084596510304445 0.1485355648535547 0.9084596510304445 0.1196317798590949
+0.15062761506276665 0.9050692677352788 0.15062761506276665 0.9050692677352788 0.11903174792514848
+0.15271966527198166 0.9016788844401145 0.15271966527198166 0.9016788844401145 0.1183901228850968
+0.15481171548119926 0.8982885011449541 0.15481171548119924 0.8982885011449541 0.11772429914958622
+0.15690376569041894 0.894898117849796 0.15690376569041894 0.894898117849796 0.11705189636496593
+0.15899581589964154 0.8915077345546397 0.15899581589964154 0.8915077345546397 0.1163907251402717
+0.161087866108874 0.8881173512595003 0.16108786610887396 0.8881173512595003 0.11575868951506756
+0.16317991631811296 0.8847269679643776 0.16317991631811293 0.8847269679643776 0.11517360367505446
+0.16527196652735057 0.8813365846693005 0.16527196652735057 0.8813365846693005 0.11465290655877076
+0.16736401673656034 0.8779462013742384 0.16736401673656034 0.8779462013742384 0.11421326526404472
+0.1694560669457064 0.8745558180792655 0.1694560669457064 0.8745558180792655 0.11387006983989945
+0.17154811715481277 0.8711654347841992 0.17154811715481277 0.8711654347841992 0.11363683756140337
+0.1736401673638356 0.8677750514891255 0.1736401673638356 0.8677750514891255 0.11352455730002849
+0.17573220781192642 0.8643846734666848 0.17573220781192642 0.8643846734666848 0.11354101164695264
+0.1778242108429049 0.8609943156559735 0.1778242108429049 0.8609943156559735 0.1136901384302841
+0.17991617754143344 0.8576039774712839 0.17991617754143344 0.8576039774712839 0.11397151402610416
+0.18200798291220088 0.8542137394079408 0.18200798291220088 0.8542137394079408 0.11437993332879648
+0.18409912219522542 0.8508239168209996 0.18409912219522542 0.8508239168209996 0.11490514039511161
+0.18618938914533167 0.8474346889565595 0.18618938914533167 0.8474346889565595 0.11553209739955693
+0.18827979719604593 0.8440454406900879 0.18827979719604593 0.844045440690088 0.11624167041989623
+0.1903717898940006 0.8406552231694803 0.1903717898940006 0.8406552231694803 0.11701091219115765
+0.1924654755681486 0.8372638387439605 0.1924654755681486 0.8372638387439605 0.11781287399364875
+0.19455956172392153 0.8338723415971776 0.19455956172392153 0.8338723415971776 0.11861785129211387
+0.19665271149596658 0.8304808514908071 0.1966527114959666 0.8304808514908072 0.11939428156530231
+0.19874406454414262 0.8270923424195166 0.19874406454414262 0.8270923424195166 0.1201107252833097
+0.2008343554580091 0.8237057388714061 0.20083435545800912 0.8237057388714061 0.12073733580680919
+0.202924094415762 0.8203192413964375 0.202924094415762 0.8203192413964375 0.12124553306870338
+0.20501286650480766 0.8169297658240918 0.20501286650480766 0.8169297658240918 0.12160837396454234
+0.20711066578908355 0.8135508767208313 0.20711066578908355 0.8135508767208313 0.12181052746394018
+0.20920715601024695 0.8101767234191173 0.20920715601024695 0.8101767234191172 0.12183043689120847
+0.21129321479108554 0.8067896100318956 0.21129321479108554 0.8067896100318955 0.12164638150073052
+0.21337796575879028 0.8034112132526019 0.21337796575879028 0.8034112132526019 0.12126272967478978
+0.2154569236124727 0.8000344304040038 0.21545692361247273 0.8000344304040038 0.12067982615672108
+0.21754361144269066 0.7966697628628331 0.21754361144269066 0.7966697628628331 0.1199167976283765
+0.21964507531929034 0.7933160398470037 0.2196450753192903 0.7933160398470037 0.11899341644465646
+0.22178367326220758 0.7899463007310449 0.22178367326220758 0.7899463007310449 0.11792851847310337
+0.22392565393877079 0.7865521810452193 0.2239256539387708 0.7865521810452193 0.11673155563366133
+0.22602737747662696 0.7832236313186329 0.22602737747662696 0.7832236313186329 0.115487104814979
+0.22807419434492626 0.779915183290235 0.22807419434492626 0.779915183290235 0.11420377652242357
+0.23018260733919915 0.7764954352892478 0.23018260733919912 0.7764954352892478 0.11288897036535687
+0.23237857683464067 0.7730667821299283 0.23237857683464067 0.7730667821299283 0.11169680969543579
+0.2346224601307388 0.7697650716526857 0.2346224601307388 0.7697650716526857 0.11077791734290443
+0.2366990203626986 0.766486538114639 0.2366990203626986 0.766486538114639 0.10995346718495957
+0.23863184426474604 0.7630742592881598 0.238631844264746 0.7630742592881598 0.1092529547000104
+0.24075352144426507 0.7592472816473096 0.24075352144426507 0.7592472816473095 0.10873818620910257
+0.2436091044524859 0.7564847789125559 0.2436091044524859 0.7564847789125559 0.10960824852737491
+0.24460005915119964 0.752825045220239 0.24460005915119964 0.7528250452202389 0.10908679286897062
+0.24765823626615963 0.7496955633957365 0.24765823626615965 0.7496955633957364 0.11076024965566254
+0.2501846884109085 0.7474731932429749 0.2501846884109085 0.7474731932429749 0.11254556001141813
+0.2522953631415854 0.744507707053061 0.2522953631415854 0.744507707053061 0.11407125676599221
+0.2545025011282314 0.7414755726710137 0.2545025011282314 0.7414755726710137 0.1159576160954492
+0.26248486695184886 0.735612671206904 0.26248486695184886 0.735612671206904 0.12445607994997258
+0.26033208411537423 0.738621564721476 0.26033208411537423 0.738621564721476 0.12211685445786595
+0.25815579176931047 0.7416439761315988 0.25815579176931047 0.7416439761315988 0.1199116708195997
+0.26460812039858883 0.7326644382164451 0.26460812039858883 0.7326644382164451 0.12686717118430058
+0.2666236468497298 0.7299254563642064 0.2666236468497298 0.7299254563642065 0.129210147181121
+0.2711975418717159 0.7148390714099816 0.2711975418717159 0.7148390714099816 0.13408045226543408
+0.2734561499635689 0.7117642301155606 0.2734561499635689 0.7117642301155606 0.1362352845635368
+0.27568556686640977 0.7087081576002042 0.27568556686640977 0.7087081576002042 0.1381461251549689
+0.2834109746961396 0.693273199610723 0.2834109746961396 0.693273199610723 0.14081087965562408
+0.2789308835073195 0.6992392125087381 0.2789308835073195 0.6992392125087381 0.13905131226495968
+0.28118010886215977 0.6962593279967497 0.28118010886215977 0.6962593279967497 0.14006856730702158
+0.28682971417026126 0.6937077930671981 0.2868297141702612 0.6937077930671981 0.14405144934236883
+0.27790556371057207 0.7056834414947968 0.27790556371057207 0.7056834414947968 0.13981745610533555
+0.28015793912558123 0.7026953778198064 0.28015793912558123 0.7026953778198064 0.14128166409314188
+0.2677047389350432 0.7242224591136892 0.26770473893504315 0.7242224591136893 0.130459618476394
+0.26817036803044997 0.7272676468080107 0.26817036803044997 0.7272676468080107 0.13100861838006542
+0.2702004802342475 0.7215923701361785 0.2702004802342475 0.7215923701361785 0.1332837966956155
+0.27253160004439037 0.7184559467324464 0.2725316000443904 0.7184559467324464 0.13582421400336916
+0.3055369013033191 0.6691451981784157 0.3055369013033191 0.6691451981784157 0.14411886469831556
+0.3033234486361568 0.6721687145798954 0.30332344863615684 0.6721687145798954 0.14432383949764846
+0.30109579920465707 0.6752119856810056 0.30109579920465707 0.6752119856810056 0.1445997200957965
+0.2988524999227534 0.6782773860954099 0.2988524999227535 0.6782773860954099 0.14489021288456472
+0.28935820303821996 0.6907399384511351 0.28935820303821996 0.6907399384511351 0.1447894778319072
+0.29658296877541107 0.6813722487887849 0.29658296877541107 0.6813722487887849 0.14513626427270165
+0.29426230535874265 0.6845104176171088 0.2942623053587426 0.6845104176171088 0.14526770033800587
+0.29185186125026313 0.6876866406152862 0.29185186125026313 0.6876866406152863 0.14518773349365907
+0.30909330810021113 0.6692302760290451 0.30909330810021113 0.6692302760290451 0.14811665334881405
+0.33142137799963683 0.6301631910452771 0.33142137799963683 0.6301631910452771 0.16117794420132078
+0.3155548829328381 0.6515692035343089 0.3155548829328381 0.6515692035343089 0.14294002960468696
+0.3212534344298029 0.6388638899453132 0.32125343442980286 0.6388638899453132 0.14486653502545335
+0.32359477686934407 0.6358144871388236 0.32359477686934407 0.6358144871388235 0.14765880186663827
+0.3257884578830439 0.6328884543571449 0.3257884578830439 0.632888454357145 0.15063538818299593
+0.329097428178614 0.6332760608291812 0.3290974281786139 0.6332760608291812 0.15729523059505246
+0.3178557868476018 0.6485053300067937 0.3178557868476018 0.6485053300067937 0.14437895275700094
+0.32243398926094496 0.642350586549836 0.32243398926094496 0.6423505865498359 0.1484518790988222
+0.32013174603560035 0.6454158212842133 0.32013174603560035 0.6454158212842133 0.14617692832569917
+0.3347389950535971 0.6304775774602198 0.3347389950535971 0.6304775774602199 0.16878665445038446
+0.3112278582645764 0.6662426728208563 0.3112278582645764 0.6662426728208563 0.14821101091075486
+0.3132943264141736 0.6634848206241959 0.3132943264141736 0.6634848206241958 0.14860554691250702
+0.314337063153477 0.6579011987063712 0.314337063153477 0.6579011987063712 0.1456894773855738
+0.31476728693571737 0.6608893187806024 0.31476728693571737 0.6608893187806024 0.1485277139041103
+0.31676992586099506 0.6552261483206806 0.31676992586099506 0.6552261483206806 0.14714853680415896
+0.3376197574463683 0.628156542798422 0.33761975744636835 0.628156542798422 0.17503361576820992
+0.38836910742482156 0.472508306921593 0.3883691074248215 0.472508306921593 0.30358450285919636
+0.3851738091479972 0.47438924124595583 0.3851738091479972 0.4743892412459559 0.32691793945161285
+0.3811439226263391 0.4774115275858622 0.3811439226263391 0.4774115275858622 0.3575412295938367
+0.38395948521782974 0.4765895337705972 0.38395948521782974 0.4765895337705972 0.346900968083291
+0.3777876538127483 0.48104639143671085 0.3777876538127483 0.48104639143671085 0.38564807769046855
+0.380771641324803 0.47990327641189645 0.380771641324803 0.4799032764118964 0.37595979817748737
+0.3754071475483378 0.48281766667935705 0.3754071475483378 0.48281766667935705 0.3970799166847882
+0.37357280943380783 0.4846459732119809 0.37357280943380783 0.4846459732119809 0.40670901101777784
+0.3780324498045732 0.4831421207625772 0.3780324498045732 0.4831421207625771 0.39836847777835693
+0.36987667193530144 0.4882589134872643 0.36987667193530144 0.4882589134872643 0.4210563713508381
+0.37352074018986936 0.4871959662136813 0.3735207401898694 0.4871959662136813 0.41853962458094957
+0.3688826463741991 0.4914004822839662 0.36888264637419915 0.4914004822839662 0.4302309702419062
+0.36534024960218703 0.49295479063146325 0.3653402496021871 0.4929547906314632 0.4312428578008883
+0.363202499625529 0.49560568943095895 0.363202499625529 0.49560568943095895 0.43355099804090214
+0.36834111938280734 0.4941496625070321 0.36834111938280734 0.4941496625070321 0.43580006556611683
+0.36280675726247236 0.4985438129533426 0.3628067572624723 0.4985438129533426 0.4356392778209428
+0.35914375661389186 0.5001151051262748 0.3591437566138919 0.5001151051262748 0.4328447730229023
+0.35375417288572797 0.5092973568742782 0.35375417288572797 0.5092973568742782 0.4191788513689613
+0.3584500852967421 0.5039598680748506 0.3584500852967421 0.5039598680748506 0.4304481468768926
+0.35595283272814787 0.507065275754696 0.35595283272814787 0.507065275754696 0.4245823526261097
+0.3535141059375602 0.511957686385444 0.3535141059375602 0.5119576863854441 0.41318848082501153
+0.3499455578870276 0.5169461546043786 0.3499455578870276 0.5169461546043786 0.3981420707802917
+0.3531327415399053 0.515112248613372 0.3531327415399053 0.515112248613372 0.4043524599638861
+0.3495229544432128 0.5203951839612642 0.3495229544432128 0.5203951839612642 0.3864896134613817
+0.3458229743320804 0.5261213475160121 0.3458229743320804 0.5261213475160121 0.3654904356932005
+0.3490653374775534 0.5241367109286936 0.3490653374775534 0.5241367109286936 0.37233458132273484
+0.3455788060551115 0.5298383669729771 0.3455788060551115 0.5298383669729771 0.3502578473053306
+0.34223336234107 0.5358276896660882 0.34223336234107 0.5358276896660882 0.32670831476654105
+0.34543447353318246 0.5335463891676572 0.34543447353318246 0.5335463891676572 0.33419737797705645
+0.34216739759416664 0.5396265510839492 0.34216739759416664 0.5396265510839492 0.3100545333316207
+0.33842362259067704 0.5462914742714063 0.338423622590677 0.5462914742714063 0.285046968288908
+0.34214426772671624 0.5435813935873506 0.3421442677267162 0.5435813935873507 0.2926435625528719
+0.3393032320785148 0.550032911420146 0.3393032320785148 0.550032911420146 0.2683129035438323
+0.33676364434801886 0.5557159446552673 0.33676364434801886 0.5557159446552672 0.2486723700326308
+0.33699704822626175 0.5588113564210664 0.3369970482262618 0.5588113564210664 0.23693582758671572
+0.33967677105909955 0.5535935511370129 0.33967677105909955 0.5535935511370128 0.25358966052132836
+0.3374595510903981 0.5620416988844623 0.3374595510903981 0.5620416988844622 0.22537843749636924
+0.3354484067346338 0.5674447235339942 0.3354484067346338 0.5674447235339942 0.21039729232939022
+0.3360117277371111 0.5707334858973458 0.3360117277371111 0.570733485897346 0.20116216070016038
+0.338214165765652 0.5649158684402666 0.33821416576565205 0.5649158684402665 0.21572662382601573
+0.3366295160539293 0.5739436817105411 0.33662951605392927 0.5739436817105411 0.19344982408544856
+0.3346392647899048 0.5797020668015701 0.3346392647899048 0.5797020668015701 0.18255584941918027
+0.33545644534266916 0.5829389805764684 0.33545644534266916 0.5829389805764684 0.1778190546957844
+0.3373136122195687 0.577140597950131 0.33731361221956874 0.5771405979501311 0.1871751254916405
+0.336330341501442 0.5862020501394682 0.336330341501442 0.5862020501394682 0.1745560128316025
+0.3346725111265852 0.5921935054296633 0.3346725111265852 0.5921935054296633 0.1681328375115371
+0.3357099287697844 0.595479451985059 0.3357099287697844 0.5954794519850591 0.16770336514538953
+0.33726268396498976 0.5894521992269799 0.33726268396498976 0.5894521992269799 0.17279271853362507
+0.3368074775883619 0.5987550776789975 0.3368074775883619 0.5987550776789975 0.168524480224278
+0.3354869347246637 0.6049168205560088 0.3354869347246637 0.6049168205560088 0.16555457143584826
+0.3367501802811002 0.6082330144481899 0.3367501802811002 0.6082330144481899 0.16828767671889458
+0.3379638636925066 0.6020091144163199 0.3379638636925066 0.6020091144163199 0.17043836830671302
+0.33810102954403287 0.6115274244755529 0.3381010295440329 0.611527424475553 0.171842309067105
+0.33720530413968414 0.6178462528596856 0.33720530413968414 0.6178462528596856 0.17108321541443416
+0.3386201117893179 0.6211667780906381 0.3386201117893179 0.6211667780906381 0.17543710128289572
+0.3395130261859576 0.6147822911076736 0.3395130261859576 0.6147822911076736 0.17601022619963527
+0.3400412414987014 0.6245793913583737 0.34004124149870135 0.6245793913583738 0.18007951944692982
+0.3917657656140517 0.475511571431144 0.3917657656140517 0.47551157143114403 0.32039565016283184
+0.39508576814651303 0.47834346872187705 0.39508576814651303 0.47834346872187705 0.34147848229652406
+0.5087725032846859 0.3852891409698676 0.5087725032846859 0.3852891409698676 0.4191069385479599
+0.5112894183817084 0.38283397702848315 0.5112894183817084 0.38283397702848315 0.3869254997142299
+0.5151736894376989 0.38008014063389267 0.5151736894376989 0.38008014063389267 0.3507476903757785
+0.513791276316662 0.3824582914116765 0.513791276316662 0.3824582914116765 0.3727331223593216
+0.5194951123739431 0.37744569188003413 0.5194951123739431 0.3774456918800341 0.32307724447252045
+0.517700569880081 0.3803487628007339 0.517700569880081 0.3803487628007339 0.34459195213563415
+0.5223970918970187 0.37609831314418596 0.5223970918970187 0.37609831314418596 0.31433987606994
+0.5217957288556563 0.3787846881437936 0.5217957288556563 0.3787846881437936 0.3294513815456463
+0.52769403133667 0.3723344169434729 0.52769403133667 0.37233441694347297 0.3089487614585256
+0.5251812765475756 0.375126200733522 0.5251812765475757 0.37512620073352204 0.31386745060793814
+0.5375407630749853 0.3670605625655331 0.5375407630749853 0.36706056256553315 0.35749511028590314
+0.5344987799053709 0.36955160942417686 0.5344987799053708 0.36955160942417686 0.34160161808772893
+0.5303713923908673 0.37342878531360657 0.5303713923908672 0.3734287853136066 0.32921968381571887
+0.5327814375817966 0.3722889872374609 0.5327814375817966 0.3722889872374609 0.3406848789073645
+0.5457085884155902 0.36326697038774935 0.5457085884155902 0.36326697038774935 0.4242796654415483
+0.5486163041895715 0.36322796596456364 0.5486163041895715 0.36322796596456364 0.45554690048173085
+0.5435707863008886 0.3668029717229733 0.5435707863008886 0.3668029717229734 0.4186939644377682
+0.5404785377518821 0.36901583651235836 0.5404785377518823 0.36901583651235836 0.3966648436911591
+0.556432198597271 0.36077223936124864 0.556432198597271 0.36077223936124864 0.5264294369745429
+0.5536844617176733 0.3629077830955811 0.5536844617176734 0.3629077830955811 0.5088824154251989
+0.55089979719409 0.3649343854181501 0.55089979719409 0.3649343854181501 0.48959254684406556
+0.5777262744829393 0.3574585280594859 0.5777262744829393 0.3574585280594859 0.6928193190340056
+0.5620852539595491 0.3602114598382762 0.5620852539595491 0.3602114598382762 0.5798258409727898
+0.5593613712214506 0.3623353188143468 0.5593613712214506 0.3623353188143468 0.5648010828672022
+0.5745405232359713 0.3588522383193835 0.5745405232359713 0.3588522383193835 0.6781570564605399
+0.5676308636969848 0.35944627713973015 0.5676308636969848 0.35944627713973015 0.6260967562409813
+0.5711468118518142 0.36003557565433647 0.571146811851814 0.36003557565433647 0.6589173963147603
+0.5650118318272086 0.3616689335450274 0.5650118318272086 0.3616689335450274 0.615352748772616
+0.5913074791094866 0.3567188926438514 0.5913074791094867 0.3567188926438514 0.7608290618825181
+0.5874302755515042 0.3566024720625509 0.5874302755515041 0.3566024720625509 0.743714937440867
+0.5837030833126953 0.3583213935249382 0.5837030833126953 0.35832139352493814 0.7335410882637888
+0.580463200355466 0.35984718176084085 0.580463200355466 0.35984718176084085 0.7230536050445916
+0.5109651415826015 0.38963789905727797 0.5109651415826014 0.38963789905727797 0.4450850107863719
+0.5129899147467943 0.39377201268102824 0.5129899147467943 0.39377201268102824 0.47376867894451175
+0.6201440702211224 0.35089481126451255 0.6201440702211224 0.35089481126451255 0.7815292811472937
+0.6165912308947344 0.3517542482883322 0.6165912308947344 0.3517542482883322 0.7852744539447728
+0.6031177827000085 0.35584284574042435 0.6031177827000085 0.35584284574042435 0.7897970296131427
+0.606373910584634 0.3547242643672979 0.606373910584634 0.3547242643672979 0.790188605630512
+0.6097057226385969 0.35367932071940045 0.6097057226385969 0.35367932071940045 0.7896250215372298
+0.6131125477931483 0.352687882352918 0.6131125477931483 0.352687882352918 0.7879872309716084
+0.5936020090591095 0.3592847434928233 0.5936020090591095 0.3592847434928233 0.7812765401829894
+0.5999066022135131 0.35716128431956917 0.5999066022135131 0.3571612843195692 0.7890247491166263
+0.5968282141954343 0.3582609671286369 0.5968282141954343 0.3582609671286369 0.7862702023115152
+0.6588318897845508 0.30493331756555475 0.6588318897845508 0.3049333175655548 0.6613122125962522
+0.6622964298624301 0.30444880583668554 0.6622964298624301 0.3044488058366856 0.6596201709132337
+0.6657939954783493 0.30404723907695685 0.6657939954783493 0.30404723907695685 0.657663247564182
+0.6553735510023082 0.3056415210722622 0.6553735510023082 0.3056415210722622 0.6630710279281794
+0.6520717661770243 0.30625630053006286 0.6520717661770243 0.30625630053006286 0.664311690273359
+0.6486346225292986 0.3068791314145343 0.6486346225292986 0.3068791314145343 0.665233122018566
+0.6436328615314512 0.31090133436895934 0.6436328615314512 0.31090133436895934 0.6724836864929308
+0.6386824078017995 0.3148945111739358 0.6386824078017995 0.3148945111739358 0.6804632541894486
+0.6337862616110977 0.3188050184356275 0.6337862616110977 0.3188050184356275 0.6889384534689378
+0.6316891417936458 0.3220496547216474 0.6316891417936458 0.3220496547216474 0.6971070010244135
+0.628104214119602 0.3328744594815113 0.628104214119602 0.33287445948151134 0.7268635995167538
+0.6309391177255348 0.3258357044017708 0.6309391177255348 0.3258357044017708 0.7072406044372825
+0.6295474384139579 0.329504069884435 0.629547438413958 0.329504069884435 0.7172818779997834
+0.6372107327255941 0.31840472164566974 0.6372107327255941 0.31840472164566974 0.6886199250855495
+0.6421696482531953 0.3144564133209308 0.6421696482531952 0.3144564133209308 0.679890432273398
+0.647170871232778 0.310415623284328 0.647170871232778 0.310415623284328 0.6717934679378744
+0.669325959403615 0.3036940062499866 0.669325959403615 0.3036940062499866 0.6553698899986501
+0.6729305986362283 0.303392575672919 0.6729305986362283 0.303392575672919 0.6526973235579324
+0.6765765778158209 0.3030925471372356 0.6765765778158209 0.3030925471372356 0.6495974789361815
+0.6802617360598856 0.302828012006175 0.6802617360598856 0.302828012006175 0.6460948090754055
+0.6298138887970998 0.33574618340581547 0.6298138887970998 0.33574618340581547 0.7342719174106557
+0.62832491629359 0.33927793600253414 0.62832491629359 0.33927793600253414 0.744402297031264
+0.6267291223615487 0.342932302081393 0.6267291223615487 0.342932302081393 0.7552087174859786
+0.6252244901773806 0.34653465551271573 0.6252244901773806 0.34653465551271573 0.7659776694405976
+0.6237528712269832 0.3500782000635317 0.6237528712269832 0.3500782000635317 0.776677069419147
+0.6898076698615194 0.29912103086993125 0.6898076698615193 0.29912103086993125 0.6336817036301983
+0.6839850805284181 0.3026134566981738 0.6839850805284181 0.3026134566981738 0.6421784028780212
+0.6877352129650557 0.3024542333279459 0.6877352129650557 0.3024542333279459 0.6378352005747708
+0.7191250750009294 0.27071569857923145 0.7191250750009294 0.27071569857923145 0.567323152606776
+0.7170564942061146 0.2739621387823793 0.7170564942061146 0.27396213878237935 0.5735119767090696
+0.7114033486246193 0.2769900621229882 0.7114033486246193 0.2769900621229882 0.5851613567674411
+0.7093847077922947 0.2801768305957738 0.7093847077922947 0.28017683059577386 0.5914662846251831
+0.7038126011452323 0.2831642228861202 0.7038126011452323 0.2831642228861202 0.6026706542610841
+0.7017994014669151 0.28633483563405643 0.7017994014669151 0.28633483563405643 0.6085705191540994
+0.6998064110446361 0.28952062533732337 0.6998064110446361 0.2895206253373233 0.6141429417379723
+0.7073643991793767 0.2833516346921044 0.7073643991793767 0.2833516346921044 0.597631006782609
+0.7150066684091758 0.2771705444326925 0.7150066684091758 0.27717054443269257 0.5797835488614065
+0.6977645579829624 0.2926628061292146 0.6977645579829624 0.2926628061292145 0.6194063085800767
+0.6956596301496561 0.29586578621946247 0.6956596301496561 0.29586578621946247 0.6243845930399147
+0.6935571162007735 0.2991087369212034 0.6935571162007735 0.2991087369212034 0.6289429404999091
+0.7248371573472955 0.2675552593665423 0.7248371573472955 0.2675552593665423 0.5563510347142301
+0.7284319548638593 0.26755514420312654 0.7284319548638593 0.26755514420312654 0.5512623773533659
+0.7228158359651563 0.2708005996647402 0.7228158359651563 0.2708005996647402 0.5618980971946739
+0.7339406228715502 0.2642931409133996 0.7339406228715503 0.26429314091339956 0.5419881851735294
+0.7319115160214454 0.2674968215039283 0.7319115160214454 0.26749682150392834 0.5462928542962858
+0.7375075365587547 0.2643723667391107 0.7375075365587547 0.2643723667391107 0.5374557757650131
+0.7396456726072126 0.26135411115688334 0.7396456726072126 0.26135411115688334 0.5341494085699492
+0.741813353871441 0.2583237826216543 0.741813353871441 0.2583237826216543 0.5314432941973255
+0.7440112491281448 0.2552737075356836 0.7440112491281448 0.2552737075356836 0.5293612615466446
+0.7462653259364581 0.25216983725718367 0.7462653259364581 0.25216983725718367 0.5278878722364008
+0.7486454230567512 0.24941094166824207 0.7486454230567512 0.2494109416682421 0.5268735166160874
+0.7531973030165021 0.24396596023929307 0.7531973030165021 0.2439659602392931 0.5262929313517687
+0.7509664173478887 0.2470292423126429 0.7509664173478887 0.24702924231264287 0.5262791693097325
+0.7564090514269088 0.24352366727228858 0.7564090514269088 0.2435236672722886 0.5250153067693377
+0.7592707284227338 0.24078522833104077 0.7592707284227337 0.24078522833104077 0.5254686965098198
+0.7631456416445792 0.2397085451437921 0.7631456416445792 0.23970854514379208 0.5243342457807315
+0.7657117927313694 0.2367771162913329 0.7657117927313692 0.23677711629133297 0.5252899005789599
+0.7696637640287423 0.23476795896177233 0.7696637640287421 0.23476795896177236 0.524793547634061
+0.7730423897541073 0.2327667212041615 0.7730423897541073 0.2327667212041615 0.5242714214245198
+0.7763434337859284 0.23064621545693453 0.7763434337859284 0.23064621545693456 0.5237142401517554
+0.7796591214394312 0.22848187826826524 0.7796591214394312 0.22848187826826524 0.5227594873912257
+0.7831672711579648 0.22637824219991187 0.7831672711579648 0.22637824219991187 0.5212255224188214
+0.7864396097294459 0.2242467826206031 0.786439609729446 0.22424678262060313 0.5193922583944007
+0.7897306616533791 0.22202148423258442 0.7897306616533791 0.22202148423258442 0.5170774130289261
+0.7930420311946009 0.21989553935385098 0.7930420311946009 0.219895539353851 0.5142151455427463
+0.796465031200731 0.21773342869270118 0.796465031200731 0.2177334286927012 0.5107624918735181
+0.799909292332555 0.21559861281024514 0.799909292332555 0.21559861281024514 0.5068137844158195
+0.803322801121139 0.21345744930850344 0.803322801121139 0.21345744930850344 0.5024825018216942
+0.806727134980336 0.21134829132404342 0.8067271349803359 0.21134829132404342 0.49781187851168646
+0.8101319269128797 0.20923738531924635 0.8101319269128798 0.20923738531924638 0.4928690611095074
+0.8135289187657082 0.20711297071126333 0.8135289187657083 0.20711297071126333 0.4877410395057809
+0.816919302060877 0.20502092050205836 0.816919302060877 0.20502092050205836 0.4825026675666865
+0.820309685356046 0.20292887029285323 0.820309685356046 0.20292887029285325 0.4772152468181499
+0.823700068651215 0.20083682008364812 0.823700068651215 0.20083682008364812 0.4719454609641374
+0.8270904519463841 0.19874476987444303 0.8270904519463841 0.19874476987444303 0.4667470356252644
+0.8304808352415529 0.19665271966523795 0.8304808352415529 0.19665271966523792 0.46166074085717174
+0.8338712185367219 0.19456066945603284 0.8338712185367217 0.19456066945603287 0.45671488892266104
+0.8372616018318908 0.1924686192468277 0.8372616018318908 0.1924686192468277 0.45192258642949756
+0.8406519851270599 0.19037656903762257 0.8406519851270599 0.19037656903762257 0.44728051993301815
+0.8440423684222287 0.18828451882841746 0.8440423684222287 0.18828451882841746 0.44277228553614106
+0.8474327517173976 0.1861924686192124 0.8474327517173975 0.18619246861921243 0.4383721129756462
+0.8508226806511563 0.18410119701644242 0.8508226806511562 0.18410119701644242 0.43404767271435524
+0.8542128762752236 0.18200952178937266 0.8542128762752236 0.18200952178937266 0.42976045772462773
+0.8576034193807652 0.17991734312259863 0.8576034193807652 0.17991734312259863 0.42547279566475443
+0.8609942848980734 0.17782426778239196 0.8609942848980733 0.177824267782392 0.4211510361626399
+0.8643846681932423 0.17573221757318683 0.8643846681932423 0.17573221757318683 0.4167712626548772
+0.8677750514884114 0.1736401673639817 0.8677750514884114 0.1736401673639817 0.41231747078831277
+0.8711654347835802 0.17154811715477658 0.8711654347835802 0.17154811715477658 0.4077882357303047
+0.8745558180787492 0.16945606694557153 0.874555818078749 0.16945606694557155 0.4031976826948886
+0.8779462013739181 0.16736401673636644 0.8779462013739181 0.16736401673636644 0.39857624025775457
+0.8813365846690872 0.16527196652716128 0.8813365846690872 0.16527196652716128 0.39397034579784523
+0.884726967964256 0.16317991631795617 0.884726967964256 0.16317991631795617 0.3894410624306172
+0.8881173512594249 0.1610878661087511 0.8881173512594248 0.16108786610875112 0.38506155832800243
+0.8915077345545939 0.15899581589954592 0.8915077345545939 0.15899581589954592 0.3809134418590665
+0.8948981178497628 0.1569037656903408 0.8948981178497629 0.1569037656903408 0.37708207322563775
+0.8982885011449318 0.1548117154811357 0.8982885011449318 0.1548117154811357 0.37365106773270146
+0.9016788844401007 0.1527196652719306 0.9016788844401006 0.1527196652719306 0.3706963136933354
+0.9050692677352696 0.15062761506272548 0.9050692677352696 0.15062761506272548 0.36827994691488625
+0.9084596510304386 0.14853556485352037 0.9084596510304387 0.14853556485352037 0.36644479853453227
+0.9118500343256075 0.14644351464431526 0.9118500343256075 0.14644351464431526 0.36520985382420706
+0.9152404176207765 0.14435146443511016 0.9152404176207763 0.14435146443511016 0.36456722496329164
+0.9186308009159454 0.14225941422590505 0.9186308009159454 0.14225941422590505 0.3644810191449335
+0.9220211842111143 0.14016736401669994 0.9220211842111145 0.14016736401669994 0.36488826810431035
+0.9254115675062833 0.13807531380749483 0.9254115675062833 0.13807531380749483 0.3657018323280854
+0.9288019508014522 0.13598326359828972 0.9288019508014521 0.13598326359828972 0.3668149732302059
+0.9321923340966212 0.1338912133890846 0.9321923340966212 0.1338912133890846 0.3681071467840569
+0.9355827173917901 0.1317991631798795 0.9355827173917902 0.1317991631798795 0.3694505174548324
+0.938973100686959 0.1297071129706744 0.938973100686959 0.1297071129706744 0.37071670953683805
+0.942363483982128 0.12761506276146928 0.9423634839821279 0.12761506276146928 0.37178338869476296
+0.9457538672772969 0.12552301255226417 0.9457538672772969 0.12552301255226417 0.3725403707458336
+0.9491442505724659 0.12343096234305906 0.949144250572466 0.12343096234305906 0.37289505980016097
+0.9525346338676348 0.12133891213385395 0.9525346338676348 0.12133891213385395 0.37277710407105985
+0.9559250171628038 0.11924686192464884 0.9559250171628036 0.11924686192464884 0.3721422146123461
+0.9593154004579727 0.11715481171544373 0.9593154004579727 0.11715481171544373 0.3709751173456958
+0.9627057837531416 0.11506276150623862 0.9627057837531418 0.11506276150623862 0.3692916043200037
+0.9660961670483106 0.11297071129703351 0.9660961670483106 0.11297071129703351 0.36713962118696525
+0.9694865503434796 0.11087866108782829 0.9694865503434796 0.11087866108782829 0.3645992810539747
+0.9728769336386504 0.10878661087862175 0.9728769336386504 0.10878661087862175 0.3617816391074864
+0.9762673169338246 0.10669456066941274 0.9762673169338246 0.10669456066941274 0.3588260108553048
+0.9796577002289991 0.10460251046020319 0.9796577002289991 0.10460251046020319 0.3558955893792772
+0.9830480835241668 0.10251046025099897 0.983048083524167 0.10251046025099897 0.35317114121781473
+0.9864384668193242 0.10041841004180285 0.9864384668193242 0.10041841004180285 0.3508426686744723
+0.9898288501144932 0.09832635983259774 0.9898288501144933 0.09832635983259774 0.3490991452578007
+0.9932192334096621 0.09623430962339263 0.9932192334096621 0.09623430962339263 0.3481167635413384
+0.1004184100418409 0.9932192334096623 0.10041841004184092 0.9932192334096622 0.09389388383251328
+0.10251046025104589 0.9898288501144933 0.10251046025104589 0.9898288501144933 0.09550066002588163
+0.10460251046025083 0.9864384668193245 0.10460251046025083 0.9864384668193243 0.09739437853914239
+0.10669456066945589 0.9830480835241554 0.10669456066945589 0.9830480835241554 0.09950279001146499
+0.10878661087866094 0.9796577002289867 0.10878661087866094 0.9796577002289867 0.10175580305327127
+0.11087866108786601 0.9762673169338176 0.11087866108786602 0.9762673169338177 0.10408818478259384
+0.11297071129707098 0.9728769336386488 0.112970711297071 0.9728769336386488 0.10644127890921622
+0.11506276150627605 0.9694865503434799 0.11506276150627605 0.9694865503434799 0.10876390977018797
+0.11715481171548092 0.9660961670483109 0.11715481171548092 0.9660961670483109 0.11101267170887184
+0.11924686192468585 0.9627057837531418 0.11924686192468585 0.9627057837531418 0.11315178820093773
+0.1213389121338908 0.959315400457973 0.1213389121338908 0.959315400457973 0.11515269049513878
+0.12343096234309564 0.955925017162804 0.12343096234309563 0.9559250171628041 0.11699342797055286
+0.12552301255230067 0.9525346338676351 0.12552301255230067 0.9525346338676351 0.11865799005690773
+0.12761506276150564 0.9491442505724663 0.1276150627615056 0.9491442505724663 0.12013559495121327
+0.12970711297071083 0.9457538672772973 0.12970711297071083 0.9457538672772973 0.12141998309188506
+0.13179916317991616 0.9423634839821283 0.13179916317991616 0.9423634839821283 0.12250874186217499
+0.13389121338912147 0.9389731006869595 0.13389121338912147 0.9389731006869596 0.12340268053563648
+0.1359832635983266 0.935582717391791 0.1359832635983266 0.9355827173917909 0.12410526953048064
+0.13807531380753127 0.9321923340966227 0.13807531380753127 0.9321923340966228 0.12462215445318077
+0.14016736401673555 0.9288019508014543 0.14016736401673555 0.9288019508014543 0.12496075238962957
+0.1422594142259395 0.9254115675062855 0.1422594142259395 0.9254115675062856 0.12512993496384037
+0.14435146443514354 0.9220211842111165 0.14435146443514354 0.9220211842111165 0.1251397995581047
+0.1464435146443485 0.9186308009159476 0.1464435146443485 0.9186308009159475 0.1250015265200842
+0.148535564853555 0.915240417620779 0.148535564853555 0.915240417620779 0.12472731582170937
+0.15062761506276368 0.9118500343256115 0.15062761506276368 0.9118500343256116 0.12433039144212947
+0.15271966527197411 0.9084596510304449 0.15271966527197411 0.9084596510304449 0.12382505663219652
+0.15481171548118614 0.90506926773528 0.15481171548118614 0.90506926773528 0.12322677933639246
+0.15690376569039996 0.9016788844401176 0.15690376569039996 0.9016788844401177 0.12255228410832898
+0.1589958158996158 0.8982885011449567 0.15899581589961584 0.8982885011449567 0.1218196236012451
+0.16108786610883608 0.8948981178498038 0.16108786610883608 0.8948981178498038 0.12104819945109395
+0.16317991631805898 0.8915077345546596 0.16317991631805898 0.8915077345546596 0.12025870114204795
+0.16527196652728307 0.8881173512595409 0.16527196652728307 0.8881173512595409 0.11947293344620973
+0.16736401673648907 0.8847269679644295 0.16736401673648907 0.8847269679644295 0.11871350781945837
+0.16945606694565984 0.8813365846693654 0.16945606694565984 0.8813365846693654 0.11800338065275905
+0.1715481171548079 0.8779462013742486 0.1715481171548079 0.8779462013742486 0.11736523265277139
+0.17364016736390972 0.8745558180791259 0.17364016736390972 0.8745558180791259 0.1168206993276487
+0.17573221757303384 0.8711654347839941 0.17573221757303384 0.8711654347839941 0.11638948085143393
+0.17782426778227542 0.8677750514888484 0.17782426778227542 0.8677750514888484 0.11608837875813595
+0.17991631799173255 0.8643846681938507 0.17991631799173255 0.8643846681938507 0.1159303258471487
+0.18200836820134458 0.8609942848991347 0.18200836820134458 0.8609942848991347 0.11592349015931512
+0.18410041841114022 0.8576039016046916 0.18410041841114022 0.8576039016046916 0.11607054167577995
+0.1861924067147138 0.8542135554050568 0.1861924067147138 0.8542135554050568 0.11636812992900329
+0.18828415606126547 0.8508233516532101 0.18828415606126547 0.8508233516532101 0.11680663550140623
+0.1903756439307254 0.8474333096769732 0.1903756439307254 0.8474333096769732 0.11737037063060622
+0.19246726535895142 0.8440432060606146 0.19246726535895142 0.8440432060606146 0.11803815026230935
+0.19455940872341707 0.8406527956478124 0.19455940872341707 0.8406527956478124 0.11878387391778887
+0.19665194875610306 0.8372621178925557 0.19665194875610306 0.8372621178925556 0.11957732738983871
+0.1987444853797532 0.833871413546563 0.1987444853797532 0.8338714135465629 0.12038533466962036
+0.2008365804271753 0.8304809339865757 0.2008365804271753 0.8304809339865757 0.12117319423270878
+0.202927715056742 0.8270910329997291 0.20292771505674204 0.8270910329997291 0.12190593752647305
+0.20501803542541985 0.8237018612978225 0.20501803542541985 0.8237018612978225 0.12255002406300831
+0.20710871605025774 0.8203133136257913 0.20710871605025774 0.8203133136257913 0.12307468859514202
+0.2092004911180252 0.8169259731696977 0.2092004911180252 0.8169259731696977 0.12345289986948123
+0.21129292753872222 0.8135408055136865 0.21129292753872222 0.8135408055136865 0.12366141123395648
+0.21338390633722817 0.8101556679915703 0.21338390633722817 0.8101556679915703 0.12368112051463231
+0.2154721252321438 0.8067690909632911 0.2154721252321438 0.8067690909632911 0.12350018311498849
+0.21755834997878043 0.8033848274718095 0.21755834997878046 0.8033848274718095 0.12311633620560387
+0.21964586973706965 0.8000071643702359 0.21964586973706965 0.8000071643702359 0.12253793925113828
+0.2217397634296743 0.7966366149044185 0.2217397634296743 0.7966366149044185 0.1217802193004927
+0.22384481948515136 0.7932662478524172 0.22384481948515136 0.7932662478524172 0.1208620202054775
+0.2259525930865726 0.789885820091795 0.2259525930865726 0.789885820091795 0.11980060379159917
+0.22805602119223256 0.7865167922619706 0.22805602119223253 0.7865167922619706 0.11864511664880235
+0.23014297185889143 0.7831598920820232 0.23014297185889143 0.7831598920820232 0.11743336359426164
+0.23222757517572917 0.7797751730051252 0.2322275751757292 0.7797751730051252 0.11619116450521337
+0.2343591441491808 0.7763880025889502 0.2343591441491808 0.7763880025889502 0.11502434294758436
+0.23653332110224667 0.7730389707918669 0.23653332110224667 0.7730389707918669 0.11402653375183132
+0.23866684417579245 0.7696990921980277 0.23866684417579245 0.7696990921980277 0.11317941030346708
+0.24073999199153207 0.7663162518833708 0.24073999199153207 0.7663162518833708 0.11249435157767897
+0.24281947241585616 0.762818675279353 0.24281947241585614 0.762818675279353 0.11202470298108148
+0.24506607662176425 0.7594135711264632 0.24506607662176425 0.7594135711264632 0.1120770914468046
+0.24692669463485628 0.756077075588807 0.24692669463485628 0.756077075588807 0.11216583740327012
+0.2489191519759668 0.752810520357595 0.2489191519759668 0.752810520357595 0.11279615183979493
+0.25001674121423556 0.7558424533777905 0.25001674121423556 0.7558424533777905 0.11483114362386956
+0.25141363445229387 0.7504376286492147 0.25141363445229387 0.7504376286492147 0.11444017676952889
+0.2537350160242012 0.747722786616465 0.2537350160242012 0.747722786616465 0.11611063377513327
+0.2559608661413279 0.7446717104653757 0.2559608661413279 0.7446717104653757 0.11789799220030069
+0.2660479136491774 0.7356625582656657 0.2660479136491774 0.7356625582656657 0.1286554814479057
+0.2639386915600063 0.7387344585005224 0.2639386915600063 0.7387344585005224 0.12629787149331453
+0.2617985273589033 0.7417887501869042 0.26179852735890335 0.7417887501869042 0.12404112272331495
+0.25963131726283606 0.7448328417922975 0.2596313172628361 0.7448328417922975 0.12193989943693491
+0.26814128821030714 0.7325181591389136 0.26814128821030714 0.7325181591389135 0.13107894077261886
+0.2699020553725673 0.7294035974045693 0.2699020553725673 0.7294035974045693 0.1331324630179678
+0.2747871698669749 0.7153052895787605 0.2747871698669749 0.7153052895787605 0.13810298404021915
+0.2769940062396237 0.7121934041017423 0.2769940062396237 0.7121934041017423 0.14013063051908844
+0.27916635319768796 0.709129876460708 0.27916635319768796 0.709129876460708 0.14190630667066026
+0.2903907796616114 0.6939151329701196 0.2903907796616114 0.6939151329701198 0.1474789100639151
+0.2846697402442893 0.6967453452120949 0.2846697402442893 0.6967453452120949 0.1434514483308222
+0.28247664724881877 0.699758028919197 0.28247664724881877 0.699758028919197 0.14257567352592979
+0.2878489874084179 0.6969560013346299 0.28784898740841797 0.6969560013346299 0.14658184892297943
+0.2813290984214129 0.7061212271884214 0.2813290984214129 0.7061212271884214 0.14345035459806102
+0.28362902499868137 0.7031495310366728 0.2836290249986813 0.7031495310366728 0.1449061568846136
+0.2712859050295215 0.7260085709010444 0.2712859050295215 0.7260085709010445 0.1347278227112468
+0.2739278910167288 0.7222152571957844 0.2739278910167288 0.7222152571957844 0.13769429525597718
+0.27617825481583924 0.718888773076748 0.2761782548158393 0.718888773076748 0.1400605314551515
+0.30692862198197335 0.6722710864319726 0.30692862198197335 0.6722710864319726 0.14818342697491252
+0.3047449144098553 0.6753331030479295 0.3047449144098553 0.6753331030479295 0.1483500704822126
+0.30254285093688327 0.6784181868660092 0.30254285093688327 0.6784181868660092 0.1485650086297939
+0.3003105054447606 0.6815515859886655 0.3003105054447606 0.6815515859886655 0.14878001702935653
+0.29325159711020965 0.6915406163112454 0.2932515971102096 0.6915406163112454 0.1488853086875033
+0.29805461193343413 0.6847002327599223 0.29805461193343413 0.6847002327599223 0.14892095013130424
+0.29570195729266635 0.6879367304911781 0.2957019572926663 0.6879367304911782 0.14892008111435265
+0.31051226419976746 0.6723184445993491 0.31051226419976746 0.6723184445993491 0.1524327966723924
+0.3126348832975742 0.6692258778454835 0.3126348832975742 0.6692258778454835 0.15251174654967833
+0.33737094295043046 0.6314853674206995 0.33737094295043046 0.6314853674206995 0.17540615611971316
+0.3325807067742808 0.6334121305448275 0.3325807067742808 0.6334121305448274 0.16484461892418303
+0.3191031586245375 0.6521070956363524 0.3191031586245375 0.6521070956363523 0.14857160695008267
+0.3248088555306547 0.6394072971067738 0.3248088555306547 0.6394072971067738 0.1513388563328527
+0.32708012070521125 0.6364657106326921 0.32708012070521125 0.6364657106326921 0.1544255666745726
+0.3302819037929463 0.6366270869709993 0.3302819037929463 0.6366270869709992 0.16107616673471895
+0.321354769792494 0.6489511305194647 0.32135476979249405 0.6489511305194647 0.15024193618758597
+0.32582692693948323 0.6428079550442134 0.3258269269394832 0.6428079550442134 0.15487141456785
+0.3235655032184758 0.6458318176498222 0.3235655032184758 0.6458318176498222 0.1522754345522509
+0.33553040288298375 0.6338126986209828 0.33553040288298375 0.6338126986209828 0.17177775150651284
+0.31474618978011665 0.6660854591982215 0.31474618978011665 0.6660854591982215 0.15272734487745562
+0.31662043826554215 0.6629297969795792 0.31662043826554215 0.6629297969795792 0.1528177463033679
+0.31779798949582344 0.6595485465655164 0.31779798949582344 0.6595485465655164 0.15192684231306522
+0.3204162196913268 0.6558725004568416 0.3204162196913268 0.6558725004568416 0.15330860808485045
+0.3418978681948208 0.6278089497417891 0.3418978681948208 0.6278089497417891 0.1859312117749412
+0.3402322465418115 0.6309245185673729 0.3402322465418115 0.6309245185673729 0.18246869249149522
+0.38728924003565496 0.4771394279428175 0.38728924003565496 0.47713942794281744 0.34579710555825127
+0.3841410482888713 0.47914679349702893 0.38414104828887125 0.479146793497029 0.3668852083625275
+0.3805814450194714 0.4821814951755584 0.3805814450194714 0.48218149517555847 0.3915535025878664
+0.38308465824744986 0.4813900420501754 0.38308465824744986 0.4813900420501754 0.3847793776886867
+0.3766746355274994 0.48546043219808804 0.3766746355274994 0.4854604321980881 0.41135190880279027
+0.380120799766733 0.48469027706085566 0.380120799766733 0.48469027706085566 0.4075277847560191
+0.3763851875291089 0.488492665634902 0.3763851875291089 0.48849266563490196 0.42550297149872723
+0.3729765244907188 0.4904294192928555 0.3729765244907188 0.49042941929285544 0.4304772173708593
+0.3712197154174329 0.49342879052257005 0.37121971541743287 0.49342879052257 0.4370586220247165
+0.3663792926634582 0.4967064679077258 0.3663792926634582 0.4967064679077259 0.43773541886126865
+0.36991612403092106 0.4962385909813945 0.36991612403092106 0.4962385909813945 0.4405242389855018
+0.36570663587424374 0.5004204378607263 0.36570663587424374 0.5004204378607263 0.4386113862530983
+0.3619491938333223 0.5019413361646146 0.3619491938333223 0.5019413361646147 0.4346746157046258
+0.36179849590284324 0.5049540141377739 0.36179849590284324 0.5049540141377739 0.4317126023831424
+0.35646915434652426 0.5104043054187063 0.3564691543465242 0.5104043054187063 0.41829336739290107
+0.36005393487899817 0.5077921175157748 0.3600539348789982 0.5077921175157748 0.42608939164429
+0.3562779180805237 0.5135227307668186 0.3562779180805237 0.5135227307668186 0.4099938191136716
+0.3556629980764937 0.5163464536449902 0.3556629980764937 0.5163464536449902 0.4008076609229362
+0.35321328208996144 0.5187727865747772 0.35321328208996144 0.5187727865747772 0.39227619147277165
+0.35215965894406764 0.5224078872517119 0.35215965894406764 0.5224078872517119 0.3784171499943923
+0.34879386539555784 0.5277437442905017 0.34879386539555784 0.5277437442905017 0.35745019010401724
+0.3519586237501135 0.5257832734168185 0.3519586237501135 0.5257832734168185 0.36434351901099965
+0.34860246812199464 0.5313421513730264 0.34860246812199464 0.5313421513730264 0.3416610813201317
+0.34536982319451665 0.5373089279504564 0.34536982319451665 0.5373089279504564 0.3173386305448922
+0.34852352988477703 0.5349998963125828 0.34852352988477703 0.5349998963125828 0.3249320737771972
+0.3453699522106173 0.5411154128490322 0.3453699522106173 0.5411154128490322 0.30007511310248414
+0.34240918683869737 0.5475981470671076 0.34240918683869737 0.5475981470671076 0.27496276607556985
+0.3454823280060424 0.5449464500605474 0.3454823280060424 0.5449464500605474 0.28280649378591566
+0.34267842579444086 0.5512599744805046 0.34267842579444086 0.5512599744805046 0.259393825196161
+0.3399324981969217 0.5570633302792329 0.3399324981969217 0.5570633302792328 0.24022829997682518
+0.3395899508341327 0.5599519537881088 0.3395899508341327 0.5599519537881088 0.23030372303500452
+0.3428904786188876 0.5550581511158631 0.3428904786188876 0.5550581511158631 0.24432956060812075
+0.34075222284798595 0.5623648808414654 0.34075222284798595 0.5623648808414653 0.22142639442536607
+0.33872377278821997 0.5682109969405066 0.33872377278821997 0.5682109969405066 0.2061880761075031
+0.33929210760562656 0.5714352427160233 0.33929210760562656 0.5714352427160233 0.1981981089684237
+0.341396867069071 0.5656993301522891 0.341396867069071 0.5656993301522891 0.21129638701877407
+0.3399274719394148 0.5746125025559957 0.3399274719394148 0.5746125025559957 0.19179430946953216
+0.3381057665125322 0.5803047495613997 0.3381057665125322 0.5803047495613997 0.18245548570979128
+0.33895128105548067 0.5835138715903718 0.33895128105548067 0.5835138715903718 0.17921746245414086
+0.340698616173507 0.5777076134528962 0.340698616173507 0.5777076134528962 0.18706784836999588
+0.3398372126080809 0.5867310642415524 0.3398372126080809 0.5867310642415524 0.17748490402569486
+0.3382527193998337 0.592693739410301 0.3382527193998337 0.592693739410301 0.17243407927436338
+0.3393039042857893 0.5959247357329905 0.3393039042857893 0.5959247357329905 0.17335218938681776
+0.3407771641984269 0.5899319962388657 0.3407771641984269 0.5899319962388657 0.17719432580920014
+0.3404173130065309 0.5991324012132374 0.3404173130065309 0.5991324012132374 0.1753862503724317
+0.33918312523180544 0.6052734583364715 0.33918312523180544 0.6052734583364715 0.1732833971541321
+0.34047273465757066 0.6085151631914983 0.34047273465757066 0.6085151631914983 0.1769105307556853
+0.3415935319509053 0.6023511145854858 0.3415935319509053 0.6023511145854857 0.17836322819454953
+0.3418296932044674 0.6117418932456226 0.3418296932044674 0.6117418932456226 0.1811582113846744
+0.34094910397252337 0.6180423561587896 0.34094910397252337 0.6180423561587896 0.18057453461604875
+0.3424149400195868 0.6213148742680877 0.3424149400195868 0.6213148742680877 0.18543613282810276
+0.3432410383150119 0.6149543725353573 0.3432410383150119 0.6149543725353573 0.18585704626116803
+0.3439575107135382 0.6245934722018975 0.3439575107135382 0.6245934722018975 0.1906201915619239
+0.3908256770166745 0.4800004192368615 0.3908256770166745 0.4800004192368615 0.36615991071386683
+0.3942758176080449 0.4826939926340879 0.3942758176080449 0.4826939926340879 0.39043262596104156
+0.5135276282417431 0.385764127118653 0.513527628241743 0.385764127118653 0.3993259438302807
+0.5161255007167751 0.3834459664137765 0.5161255007167752 0.38344596641377654 0.3705504894667677
+0.5201744870682263 0.3808881123862079 0.5201744870682264 0.38088811238620796 0.3431963803669921
+0.5186165890429115 0.383083623273702 0.5186165890429115 0.383083623273702 0.36050895124500926
+0.5239492540154795 0.3786280965695046 0.5239492540154796 0.3786280965695046 0.330466603887236
+0.522554887263882 0.3814000592847452 0.522554887263882 0.38140005928474524 0.3456211943868532
+0.5283471519625077 0.3760774459020845 0.5283471519625077 0.37607744590208453 0.33118343679701345
+0.5266557094011025 0.37871215282903486 0.5266557094011025 0.37871215282903486 0.33812535829374973
+0.5308867960437837 0.37642899658692386 0.5308867960437837 0.37642899658692386 0.34807346441010417
+0.5379469621865174 0.3711748233101154 0.5379469621865174 0.3711748233101155 0.381538560174991
+0.5355972114562634 0.3732750006893951 0.5355972114562634 0.3732750006893952 0.3697297052011523
+0.5329520611941262 0.3752258728074645 0.5329520611941262 0.3752258728074645 0.3570022435828378
+0.5475472487404573 0.36672245265071557 0.5475472487404573 0.3667224526507156 0.46198159756443896
+0.5432219355819006 0.3701873758482942 0.5432219355819006 0.3701873758482942 0.4321522470036515
+0.5455849532857455 0.36942470476692085 0.5455849532857455 0.36942470476692085 0.45435968163200846
+0.5413115887109318 0.3728616943894248 0.5413115887109318 0.37286169438942485 0.42573598719007316
+0.5566075187449466 0.3644724078651631 0.5566075187449466 0.3644724078651631 0.5484555020007055
+0.5538179228961246 0.36658285056027345 0.5538179228961245 0.36658285056027345 0.5305587200021552
+0.5509854967086929 0.3686125995096194 0.5509854967086928 0.3686125995096194 0.5107742357690767
+0.5773588289504468 0.36129256666234144 0.5773588289504468 0.36129256666234144 0.7112440079793966
+0.5623096914544577 0.3638664186802461 0.5623096914544577 0.3638664186802461 0.6025315378937085
+0.5595631950817955 0.3660412525101347 0.5595631950817955 0.3660412525101347 0.5879957005881474
+0.5742505838112333 0.36280399931822904 0.5742505838112333 0.36280399931822904 0.6980632254776101
+0.5680148728237324 0.3629759460715982 0.5680148728237323 0.3629759460715982 0.6495559955040799
+0.5710326232628484 0.36448873253184494 0.5710326232628483 0.36448873253184494 0.6832644115399198
+0.5652922222206861 0.36534857306015095 0.5652922222206861 0.36534857306015095 0.6392531642323335
+0.5901475694084432 0.36007873644459654 0.5901475694084432 0.36007873644459654 0.7725636460202491
+0.5866336197691151 0.36099476379823153 0.5866336197691151 0.36099476379823153 0.7621218822217474
+0.5832368009084425 0.36231698076562974 0.5832368009084425 0.36231698076562974 0.7520939609143636
+0.5800123659369285 0.36363903453580687 0.5800123659369286 0.36363903453580687 0.7410531256655055
+0.515525204212492 0.39022371841014414 0.515525204212492 0.3902237184101441 0.42703847300298614
+0.5173755542593195 0.39441898432060235 0.5173755542593196 0.39441898432060235 0.4562760272110438
+0.5926904758858998 0.36295872067389734 0.5926904758858998 0.36295872067389734 0.795636002574912
+0.6222912275303459 0.3535932531152442 0.6222912275303459 0.3535932531152442 0.7873530847743865
+0.618747115177487 0.3544171909053766 0.618747115177487 0.3544171909053766 0.7925085617054731
+0.6152618288027396 0.3552826169466385 0.6152618288027396 0.3552826169466385 0.7965514203307823
+0.6021275239161681 0.359148595642939 0.6021275239161681 0.359148595642939 0.8014954944343092
+0.6052589956755612 0.35817553195215973 0.6052589956755612 0.35817553195215973 0.8020735323710363
+0.6085107240920804 0.35719510799163645 0.6085107240920804 0.35719510799163645 0.8014366207134734
+0.6118480671812722 0.35621493861826736 0.6118480671812722 0.35621493861826736 0.7995420149719604
+0.596053004437486 0.36188523249222676 0.596053004437486 0.36188523249222676 0.8004578732703108
+0.5991085336275366 0.36071723087057694 0.5991085336275366 0.360717230870577 0.8024748762782271
+0.657268249105202 0.30803535781559843 0.657268249105202 0.3080353578155984 0.6660140511350358
+0.6606618225239383 0.30765345128885674 0.6606618225239383 0.30765345128885674 0.6642234879889312
+0.664099798326684 0.3073113317965173 0.664099798326684 0.3073113317965173 0.6620849335805055
+0.6675858609818289 0.3069884168776741 0.6675858609818289 0.30698841687767414 0.6595926069742654
+0.6541161130020688 0.3091533912498932 0.6541161130020688 0.3091533912498932 0.6687028591422809
+0.6507700937965265 0.3098062096287453 0.6507700937965265 0.3098062096287453 0.6704480369093329
+0.6456991626723492 0.3139516072449989 0.6456991626723491 0.3139516072449989 0.6786691759724791
+0.6407054625759254 0.3179834355083334 0.6407054625759255 0.31798343550833336 0.6876175381875543
+0.63562243255233 0.32184281438701784 0.63562243255233 0.32184281438701784 0.6969905278594187
+0.6341950184801706 0.3253082485573783 0.6341950184801705 0.32530824855737833 0.7057507406203669
+0.6314076419667622 0.3323727710926529 0.6314076419667622 0.3323727710926529 0.7246582722352635
+0.632929511701182 0.3288546209353632 0.6329295117011818 0.3288546209353633 0.7150356868892479
+0.6392071460489611 0.3214772003590903 0.6392071460489611 0.3214772003590903 0.6956511055285687
+0.6332445273564886 0.33534487840758165 0.6332445273564886 0.33534487840758165 0.731070026936798
+0.6442303529961659 0.3175567897375567 0.6442303529961659 0.3175567897375567 0.6860430018488394
+0.6492895396476966 0.3134457263117848 0.6492895396476966 0.31344572631178474 0.6769977417969936
+0.6561765876645349 0.31089883077322367 0.6561765876645349 0.31089883077322367 0.670350544690565
+0.6710971421661917 0.3066843150894862 0.6710971421661917 0.3066843150894862 0.6567551197935798
+0.6747230196666557 0.3063792353152492 0.6747230196666557 0.3063792353152492 0.6534827393544297
+0.6783625842535578 0.3061140388139714 0.6783625842535578 0.3061140388139714 0.6498707609498254
+0.6820291168954338 0.30590010250570154 0.6820291168954338 0.30590010250570154 0.6459007306674627
+0.6317657832445133 0.33877251101355976 0.6317657832445133 0.33877251101355976 0.7405687511533968
+0.6303641036042196 0.3423022096195988 0.6303641036042196 0.34230220961959873 0.7504589134533481
+0.6289027468200644 0.3458236863162764 0.6289027468200644 0.3458236863162764 0.7605861111904509
+0.6274174985738848 0.349336509573295 0.6274174985738848 0.349336509573295 0.7708447481702575
+0.6259054290304297 0.3528392361718684 0.6259054290304297 0.3528392361718684 0.7811740763282534
+0.6914771255155565 0.3023781991457856 0.6914771255155565 0.3023781991457856 0.6330974518026217
+0.6857240064911214 0.3057303318607853 0.6857240064911214 0.3057303318607853 0.6415463212381073
+0.6894335887178157 0.30562861033741356 0.6894335887178157 0.30562861033741356 0.6368126064701457
+0.720734913400146 0.2740808249718097 0.720734913400146 0.2740808249718097 0.5678857262827915
+0.7186417656988571 0.27734853441979584 0.7186417656988571 0.27734853441979584 0.5741059453726375
+0.7129620181434974 0.28036367891233704 0.7129620181434974 0.280363678912337 0.5860591063933155
+0.7109281243595665 0.28353885876605384 0.7109281243595665 0.28353885876605384 0.5922152829906322
+0.7053410204993773 0.2865211112893119 0.7053410204993772 0.28652111128931196 0.603573230284873
+0.7033505753306505 0.2896953549196875 0.7033505753306505 0.2896953549196875 0.6091806872413142
+0.7013273089060111 0.29284185675372787 0.7013273089060111 0.29284185675372787 0.6144689874507049
+0.7089008157764093 0.28671237981828973 0.7089008157764093 0.28671237981828973 0.5981738636387258
+0.7165558000162049 0.2805664393779587 0.7165558000162049 0.2805664393779587 0.580350080313294
+0.6992718240687491 0.29598986449762843 0.6992718240687491 0.29598986449762843 0.6194005769000003
+0.6972256831175224 0.2991707960179682 0.6972256831175224 0.2991707960179682 0.6239175265344777
+0.6951827301852123 0.30238262991104253 0.6951827301852123 0.30238262991104253 0.628016526620705
+0.726577021656543 0.2708227404646479 0.726577021656543 0.2708227404646479 0.5562203244263869
+0.7300057183494787 0.27064543000179075 0.7300057183494787 0.2706454300017907 0.5509018966138645
+0.7244502316890804 0.27412462792683023 0.7244502316890804 0.2741246279268302 0.5620002483375038
+0.7354126070762276 0.2673643764410761 0.7354126070762276 0.2673643764410761 0.5412740472948022
+0.7334078466428973 0.27014212135921245 0.7334078466428973 0.2701421213592124 0.5453887686337627
+0.7389241916193515 0.26749441393008727 0.7389241916193515 0.26749441393008727 0.5365141015089264
+0.7410852589295657 0.2645182249571328 0.7410852589295657 0.2645182249571328 0.5330319669052495
+0.7432667872858424 0.2615169208721709 0.7432667872858424 0.2615169208721709 0.5301358272460566
+0.7454642992501124 0.25849430049888394 0.7454642992501124 0.25849430049888394 0.5278613413827319
+0.7476594016794661 0.25545238698466366 0.7476594016794661 0.25545238698466366 0.5262278434237446
+0.7497493472681309 0.2524213046001328 0.749749347268131 0.25242130460013273 0.5252952136426722
+0.7524053903442497 0.2501765892815417 0.7524053903442497 0.2501765892815417 0.5243085561017503
+0.7554841559246581 0.2471120165675038 0.7554841559246581 0.2471120165675038 0.5239439687600673
+0.759302023869752 0.2451354501600138 0.759302023869752 0.2451354501600138 0.5229647458992145
+0.7627808798365651 0.24308259838318322 0.7627808798365651 0.24308259838318322 0.5224549593024664
+0.7661346856370042 0.24088971692850808 0.7661346856370042 0.24088971692850805 0.52236109582459
+0.7694709999072663 0.23879316669376416 0.7694709999072663 0.23879316669376416 0.5221623279035842
+0.7729438660572868 0.23672524237680384 0.7729438660572868 0.23672524237680384 0.5218116243593012
+0.776323902748537 0.23463223458506588 0.776323902748537 0.2346322345850659 0.5212767433049014
+0.7796767806344886 0.23248317669933216 0.7796767806344888 0.2324831766993322 0.5204942892197787
+0.7830632944521874 0.23032526896081468 0.7830632944521874 0.23032526896081465 0.5192912485962298
+0.7864487108545631 0.22823960941310384 0.7864487108545631 0.22823960941310384 0.5176224092950193
+0.7897896124029886 0.2261066616037016 0.7897896124029886 0.2261066616037016 0.5155172017067232
+0.7931330678147633 0.22400255223649176 0.7931330678147633 0.22400255223649176 0.512901878176122
+0.7965094178277599 0.22187950282963761 0.7965094178277599 0.22187950282963761 0.5097631356973178
+0.7999198455976244 0.21974804514683913 0.7999198455976244 0.21974804514683913 0.5061169523550949
+0.8033307838814091 0.21762657092119297 0.8033307838814091 0.217626570921193 0.5020310647114471
+0.8067315205157667 0.2155155776719729 0.8067315205157667 0.2155155776719729 0.4975745950096629
+0.8101305572905485 0.21340915341398067 0.8101305572905485 0.21340915341398067 0.4928089199988975
+0.8135289187657082 0.21129707112967364 0.8135289187657083 0.21129707112967364 0.48781130141660983
+0.816919302060877 0.20920502092046855 0.816919302060877 0.20920502092046855 0.4826696772136268
+0.820309685356046 0.20711297071126347 0.820309685356046 0.20711297071126347 0.4774508035954083
+0.823700068651215 0.20502092050205836 0.823700068651215 0.20502092050205836 0.4722277230179824
+0.827090451946384 0.20292887029285328 0.8270904519463841 0.2029288702928533 0.46706506222902844
+0.8304808352415529 0.20083682008364812 0.8304808352415529 0.20083682008364812 0.46201536047455755
+0.8338712185367217 0.19874476987444303 0.8338712185367217 0.19874476987444303 0.45711739035686655
+0.8372616018318908 0.19665271966523792 0.8372616018318908 0.19665271966523792 0.4523947885344541
+0.8406519851270597 0.1945606694560328 0.8406519851270599 0.1945606694560328 0.44785495102434963
+0.8440423684222286 0.1924686192468277 0.8440423684222286 0.1924686192468277 0.4434896353093459
+0.8474327517173975 0.1903765690376226 0.8474327517173975 0.1903765690376226 0.43927727556093427
+0.8508231350125666 0.18828451882841749 0.8508231350125666 0.18828451882841749 0.4351857880625663
+0.8542135183077356 0.18619246861921238 0.8542135183077356 0.18619246861921238 0.43117552260686404
+0.8576039016029045 0.18410041841000727 0.8576039016029045 0.18410041841000727 0.42720310407079204
+0.8609942848980733 0.18200836820080216 0.8609942848980733 0.18200836820080216 0.42322544973088955
+0.8643846681932423 0.17991631799159705 0.8643846681932423 0.17991631799159705 0.41920383220643886
+0.8677750514884113 0.1778242677823919 0.8677750514884114 0.1778242677823919 0.4151073778572881
+0.8711654347835801 0.17573221757318683 0.8711654347835801 0.17573221757318683 0.41091644432368873
+0.874555818078749 0.17364016736398172 0.874555818078749 0.17364016736398172 0.40662513130617
+0.8779462013739181 0.1715481171547766 0.8779462013739181 0.1715481171547766 0.4022429823091409
+0.8813365846690872 0.1694560669455715 0.8813365846690872 0.1694560669455715 0.39779566366611574
+0.884726967964256 0.1673640167363664 0.884726967964256 0.1673640167363664 0.393324609826841
+0.8881173512594248 0.16527196652716128 0.8881173512594248 0.16527196652716128 0.38888560241317277
+0.8915077345545939 0.16317991631795614 0.8915077345545939 0.16317991631795614 0.38454627119600776
+0.8948981178497628 0.16108786610875103 0.8948981178497629 0.16108786610875103 0.38038255942488114
+0.8982885011449318 0.15899581589954592 0.8982885011449318 0.15899581589954592 0.37647427358974866
+0.9016788844401007 0.1569037656903408 0.9016788844401006 0.1569037656903408 0.37289992437235525
+0.9050692677352696 0.1548117154811357 0.9050692677352696 0.1548117154811357 0.3697311631036814
+0.9084596510304386 0.1527196652719306 0.9084596510304387 0.1527196652719306 0.36702721194954474
+0.9118500343256075 0.15062761506272548 0.9118500343256075 0.15062761506272548 0.3648297537032687
+0.9152404176207765 0.14853556485352037 0.9152404176207763 0.14853556485352037 0.36315877133742763
+0.9186308009159454 0.14644351464431526 0.9186308009159454 0.14644351464431526 0.36200978875708106
+0.9220211842111143 0.14435146443511016 0.9220211842111145 0.14435146443511016 0.3613528469059588
+0.9254115675062833 0.14225941422590505 0.9254115675062833 0.14225941422590505 0.3611333647373573
+0.9288019508014522 0.14016736401669994 0.9288019508014521 0.14016736401669994 0.36127482277391393
+0.9321923340966212 0.13807531380749483 0.9321923340966212 0.13807531380749483 0.36168301603341485
+0.9355827173917901 0.13598326359828972 0.9355827173917902 0.13598326359828972 0.36225148824472225
+0.938973100686959 0.1338912133890846 0.938973100686959 0.1338912133890846 0.36286769517481327
+0.942363483982128 0.1317991631798795 0.9423634839821279 0.1317991631798795 0.36341944945624777
+0.9457538672772969 0.1297071129706744 0.9457538672772969 0.1297071129706744 0.3638012568881715
+0.9491442505724659 0.12761506276146928 0.949144250572466 0.12761506276146928 0.3639202402651999
+0.9525346338676348 0.12552301255226417 0.9525346338676348 0.12552301255226417 0.3637014367263758
+0.9559250171628038 0.12343096234305906 0.9559250171628036 0.12343096234305906 0.36309232956011034
+0.9593154004579727 0.12133891213385395 0.9593154004579727 0.12133891213385395 0.36206652437178594
+0.9627057837531416 0.11924686192464884 0.9627057837531418 0.11924686192464884 0.36062649870346025
+0.9660961670483106 0.11715481171544372 0.9660961670483106 0.11715481171544372 0.3588053451101705
+0.9694865503434795 0.11506276150623854 0.9694865503434794 0.11506276150623852 0.3566673957247035
+0.9728769336386489 0.11297071129703305 0.9728769336386488 0.11297071129703305 0.3543075704157977
+0.9762673169338197 0.11087866108782667 0.9762673169338197 0.11087866108782667 0.35184924428627423
+0.97965770022899 0.10878661087862061 0.97965770022899 0.10878661087862061 0.34944040332251475
+0.983048083524158 0.10669456066941613 0.9830480835241581 0.10669456066941611 0.34724787650142575
+0.9864384668193242 0.10460251046021307 0.9864384668193242 0.10460251046021307 0.34544953002487583
+0.9898288501144932 0.10251046025100796 0.9898288501144933 0.10251046025100796 0.3442245112537448
+0.9932192334096621 0.10041841004180285 0.9932192334096621 0.10041841004180285 0.3437419413448736
+0.10460251046025093 0.9932192334096621 0.10460251046025093 0.9932192334096621 0.09523838535016084
+0.10669456066945593 0.9898288501144933 0.10669456066945593 0.9898288501144933 0.0968954594342316
+0.10878661087866093 0.9864384668193243 0.10878661087866093 0.9864384668193243 0.09884296942760375
+0.11087866108786597 0.9830480835241554 0.11087866108786597 0.9830480835241554 0.1010108420876531
+0.11297071129707104 0.9796577002289865 0.11297071129707104 0.9796577002289865 0.10333130913323775
+0.11506276150627599 0.9762673169338177 0.11506276150627599 0.9762673169338177 0.10574135840448573
+0.11715481171548099 0.9728769336386488 0.11715481171548099 0.9728769336386488 0.10818424943687631
+0.11924686192468592 0.9694865503434796 0.11924686192468592 0.9694865503434796 0.1106102626993876
+0.12133891213389078 0.9660961670483106 0.1213389121338908 0.9660961670483106 0.11297687679367287
+0.12343096234309581 0.9627057837531418 0.12343096234309581 0.9627057837531418 0.11524855171356141
+0.12552301255230078 0.959315400457973 0.12552301255230078 0.959315400457973 0.11739626280221625
+0.12761506276150592 0.9559250171628041 0.12761506276150592 0.9559250171628041 0.1193968943316034
+0.12970711297071094 0.9525346338676351 0.12970711297071094 0.9525346338676351 0.12123257087172613
+0.1317991631799161 0.9491442505724663 0.1317991631799161 0.9491442505724663 0.12288998096815795
+0.13389121338912136 0.9457538672772974 0.13389121338912136 0.9457538672772973 0.12435973065049309
+0.13598326359832644 0.9423634839821288 0.13598326359832644 0.9423634839821288 0.12563575249652012
+0.13807531380753116 0.93897310068696 0.13807531380753116 0.93897310068696 0.12671478778958647
+0.14016736401673577 0.9355827173917913 0.14016736401673577 0.9355827173917913 0.12759595338681215
+0.14225941422594018 0.9321923340966224 0.14225941422594016 0.9321923340966224 0.12828040027301976
+0.14435146443514466 0.9288019508014534 0.14435146443514466 0.9288019508014534 0.12877106675281347
+0.14644351464434965 0.9254115675062843 0.14644351464434965 0.9254115675062843 0.12907252542976044
+0.14853556485355543 0.9220211842111152 0.14853556485355543 0.9220211842111151 0.1291909192823846
+0.1506276150627623 0.9186308009159464 0.15062761506276232 0.9186308009159464 0.1291339780883585
+0.15271966527197037 0.9152404176207788 0.15271966527197037 0.9152404176207788 0.12891110212805068
+0.15481171548117942 0.9118500343256121 0.15481171548117942 0.9118500343256121 0.1285334957733484
+0.15690376569038958 0.9084596510304467 0.15690376569038958 0.9084596510304467 0.12801432966464188
+0.1589958158996008 0.9050692677352824 0.1589958158996008 0.9050692677352824 0.12736890680353727
+0.16108786610881426 0.9016788844401228 0.16108786610881423 0.9016788844401228 0.12661480472120834
+0.16317991631802872 0.8982885011449676 0.16317991631802872 0.8982885011449676 0.1257719628522704
+0.1652719665272431 0.8948981178498255 0.1652719665272431 0.8948981178498255 0.12486268201830363
+0.16736401673644793 0.8915077345546876 0.16736401673644793 0.8915077345546877 0.12391150244043536
+0.16945606694563317 0.8881173512595745 0.16945606694563317 0.8881173512595745 0.12294492860902771
+0.171548117154812 0.8847269679644362 0.171548117154812 0.8847269679644362 0.12199097427533513
+0.1736401673639597 0.8813365846692921 0.1736401673639597 0.8813365846692921 0.12107850984136813
+0.1757322175731171 0.8779462013741396 0.1757322175731171 0.8779462013741396 0.12023640855626198
+0.17782426778233296 0.8745558180789752 0.17782426778233296 0.8745558180789752 0.1194925073628842
+0.1799163179916158 0.8711654347838506 0.1799163179916158 0.8711654347838506 0.11887242206715255
+0.1820083682009793 0.8677750514887874 0.1820083682009793 0.8677750514887874 0.1183982826779061
+0.18410041841042923 0.864384668193936 0.18410041841042923 0.864384668193936 0.11808747927325447
+0.18619246861983083 0.8609942848993384 0.18619246861983083 0.8609942848993385 0.11795152591476153
+0.1882845188294485 0.8576039016046644 0.1882845188294485 0.8576039016046643 0.11799515186048705
+0.1903765600544642 0.8542135236041761 0.1903765600544642 0.8542135236041762 0.11821571037275981
+0.19246856683865235 0.8508231658973916 0.19246856683865235 0.8508231658973916 0.11860297964043572
+0.19456054018061417 0.8474328278967224 0.19456054018061417 0.8474328278967224 0.11913941640842975
+0.19665254555154385 0.8440424710246202 0.19665254555154385 0.8440424710246202 0.11980083222333991
+0.19874463390654584 0.8406520652582027 0.19874463390654584 0.8406520652582027 0.12055738327145482
+0.20083676443320128 0.8372616346459707 0.20083676443320128 0.8372616346459708 0.12137480643864153
+0.2029288703024438 0.8338712185633836 0.2029288703024438 0.8338712185633836 0.1222159040625551
+0.2050208106176271 0.8304808535239241 0.2050208106176271 0.8304808535239241 0.12304207835317081
+0.20711237255889614 0.8270905769287821 0.20711237255889614 0.8270905769287821 0.12381488934953296
+0.20920383432818856 0.8237003999240256 0.20920383432818856 0.8237003999240254 0.12449783503917504
+0.21129522277205712 0.8203103228711432 0.21129522277205712 0.8203103228711432 0.12505743935394678
+0.2133866701897534 0.8169208354659071 0.2133866701897534 0.8169208354659071 0.1254646892573064
+0.21547761078914907 0.813532273119027 0.21547761078914904 0.813532273119027 0.12569573753480645
+0.21756815798511706 0.8101443131775817 0.21756815798511706 0.8101443131775817 0.12573365862480676
+0.21965778856896337 0.8067566340361333 0.21965778856896337 0.8067566340361333 0.12556854669390985
+0.22174664952940756 0.8033701898739637 0.22174664952940756 0.8033701898739637 0.12519920090829897
+0.2238368661397224 0.7999870422771161 0.2238368661397224 0.7999870422771161 0.12463450143527498
+0.22593049597926076 0.7966076946419499 0.22593049597926076 0.7966076946419499 0.12389140421191543
+0.22802652385881295 0.7932294365292171 0.22802652385881297 0.7932294365292171 0.12299221588537589
+0.23011371299841107 0.789840728421573 0.23011371299841107 0.789840728421573 0.12195626615838699
+0.2321896323752762 0.7864545282501293 0.2321896323752762 0.7864545282501293 0.1208296323341881
+0.23429419847784452 0.7830855965211031 0.23429419847784452 0.7830855965211031 0.11969357471073185
+0.23639988977588222 0.7797068538647334 0.23639988977588225 0.7797068538647335 0.1185700193599588
+0.23853122457014442 0.7763436316925739 0.2385312245701444 0.7763436316925739 0.11755273212937421
+0.2406571762077027 0.7729830091488443 0.2406571762077027 0.7729830091488443 0.11667152435860484
+0.24276709917483816 0.7696169762036398 0.24276709917483816 0.7696169762036398 0.11597092519387005
+0.24487072143021832 0.7662122829028297 0.24487072143021835 0.7662122829028296 0.11549263172731454
+0.24703942496970388 0.7627722436407075 0.24703942496970388 0.7627722436407075 0.11536101724240401
+0.24938109634478628 0.7590650340990241 0.24938109634478625 0.7590650340990243 0.11560962090168071
+0.25210542601545616 0.757197371750409 0.25210542601545616 0.757197371750409 0.1173232958684399
+0.25281098725937295 0.7540297753644023 0.25281098725937295 0.7540297753644022 0.11688781494352919
+0.2551965506320121 0.7508368082224104 0.25519655063201213 0.7508368082224104 0.11835507321225246
+0.2574452075218029 0.7478473785278177 0.25744520752180294 0.7478473785278177 0.12004492851576419
+0.26958323841847137 0.7356534639508073 0.26958323841847137 0.7356534639508073 0.13292304358310245
+0.26753449040702265 0.7387779541279996 0.26753449040702265 0.7387779541279996 0.13059533428301498
+0.2654377593640897 0.7418766850667455 0.2654377593640897 0.7418766850667455 0.12831937244741873
+0.263304889925331 0.7449589199575362 0.263304889925331 0.7449589199575363 0.126162116252315
+0.26114873187089493 0.7479898879013589 0.26114873187089493 0.747989887901359 0.12417974293323365
+0.2715138687943806 0.7325185644418676 0.2715138687943806 0.7325185644418676 0.13516924396186655
+0.27341949173824204 0.7292459341259548 0.27341949173824204 0.7292459341259548 0.13738035618313535
+0.27836093848556415 0.7156921328993757 0.27836093848556415 0.7156921328993757 0.14218748191449257
+0.29302829964521226 0.6948841227536868 0.29302829964521226 0.6948841227536868 0.15053611568072592
+0.28050130452549193 0.7125616626180752 0.280501304525492 0.7125616626180752 0.14407030827954548
+0.28258599828067205 0.7094979622064072 0.28258599828067205 0.7094979622064072 0.1456780397329123
+0.2912410484998132 0.6971843149256532 0.2912410484998132 0.6971843149256532 0.1499687088270396
+0.28628489768872883 0.7004606368877492 0.28628489768872883 0.7004606368877492 0.146581474505328
+0.2894980144499504 0.699502333455479 0.2894980144499504 0.699502333455479 0.1493540855019475
+0.28453011690950203 0.7065647703659989 0.28453011690950203 0.7065647703659989 0.14693340268594582
+0.28640847208442144 0.7039550598897584 0.28640847208442144 0.7039550598897584 0.14802010202869886
+0.2755569296214596 0.7258342961467665 0.27555692962145967 0.7258342961467665 0.139820674233851
+0.27765171266300764 0.7224518104367132 0.27765171266300764 0.7224518104367132 0.1421152240923639
+0.2798083572032813 0.7191792914662684 0.2798083572032813 0.7191792914662684 0.14433095283794792
+0.3083701022825917 0.6754082450193383 0.3083701022825917 0.6754082450193383 0.15246489748420908
+0.30621435917832496 0.6785060326266746 0.306214359178325 0.6785060326266746 0.1525714308478134
+0.3040390274609482 0.68162902775637 0.3040390274609482 0.68162902775637 0.15270382991431133
+0.30186480809029514 0.6847724974492032 0.3018648080902952 0.6847724974492032 0.15282763053148996
+0.29587860843634195 0.694318506856112 0.2958786084363419 0.6943185068561119 0.15311717293981794
+0.2975430729679202 0.6911803627337155 0.2975430729679202 0.6911803627337155 0.1528872494609359
+0.2996782617466431 0.6879586747237242 0.2996782617466431 0.6879586747237242 0.1528879968287703
+0.31198054858090346 0.6754170653428564 0.31198054858090346 0.6754170653428564 0.15694246280287374
+0.3140838910489094 0.672297311043999 0.3140838910489094 0.672297311043999 0.1570687719802959
+0.3161540138392188 0.669153258175053 0.31615401383921876 0.669153258175053 0.1572934285229808
+0.3387333128273917 0.6340554996565004 0.3387333128273917 0.6340554996565003 0.1797394822058023
+0.33375963230342565 0.6367346958322133 0.3337596323034257 0.6367346958322133 0.1687626809510476
+0.3226673666219692 0.6525182609800251 0.3226673666219692 0.652518260980025 0.15478093818376926
+0.32865678235925966 0.6401553660795809 0.32865678235925966 0.6401553660795809 0.1592037851479813
+0.33193534676288916 0.6392363944140851 0.33193534676288916 0.6392363944140851 0.16571712830632776
+0.3287059301097047 0.6436957211495047 0.3287059301097047 0.6436957211495047 0.1609803409579406
+0.3248023909560388 0.6493312236297233 0.32480239095603874 0.6493312236297233 0.15657504686910909
+0.3267273849708561 0.6463121484131682 0.3267273849708561 0.6463121484131681 0.1584484424906288
+0.33681129086034317 0.6370549856425006 0.33681129086034317 0.6370549856425006 0.17611804284889324
+0.31811967377082057 0.6660006983343767 0.31811967377082057 0.6660006983343766 0.1575604079852049
+0.3199627405413131 0.6627707286863732 0.3199627405413131 0.6627707286863732 0.15779710327984509
+0.3220547536427134 0.6594761466224098 0.3220547536427134 0.6594761466224098 0.15868644903062487
+0.3241039509873197 0.6560645697515146 0.32410395098731964 0.6560645697515146 0.1597695758946103
+0.3457503913302571 0.6277365565107056 0.3457503913302571 0.6277365565107056 0.19651674525630192
+0.34378857265302504 0.6309389034365075 0.34378857265302504 0.6309389034365075 0.19196564975111316
+0.3419517258283826 0.6341123115851804 0.3419517258283826 0.6341123115851804 0.18804185247350566
+0.38638000431922087 0.4817995744535699 0.38638000431922087 0.4817995744535698 0.38633810312767763
+0.3833962194702226 0.48389792478817595 0.3833962194702227 0.483897924788176 0.40244404528590133
+0.37968199687449977 0.48723979494468755 0.37968199687449977 0.48723979494468755 0.4214251361684962
+0.38235805190413164 0.48621989449604736 0.38235805190413164 0.48621989449604736 0.4170319867976929
+0.3766353822365552 0.49119773032664454 0.3766353822365552 0.49119773032664454 0.435926149115999
+0.37956834979099896 0.4898187744822961 0.37956834979099896 0.4898187744822961 0.4334128918998226
+0.37431533204695344 0.4930313897434242 0.37431533204695344 0.49303138974342425 0.43910142715484496
+0.3727441713270918 0.49517296649896897 0.3727441713270918 0.4951729664989689 0.4418773008770212
+0.3770637662443458 0.4932782522777339 0.3770637662443458 0.4932782522777339 0.4426254809696487
+0.37288092025722597 0.4976773433908613 0.3728809202572259 0.4976773433908613 0.44529328861623796
+0.36934166286604725 0.4990322909891625 0.36934166286604725 0.4990322909891625 0.4421085079340598
+0.3685754321107695 0.5021939069718426 0.3685754321107695 0.5021939069718426 0.4406659041392201
+0.3651733761776756 0.5041695764479701 0.3651733761776756 0.5041695764479702 0.43570363174115784
+0.36336588932747793 0.5069071724856588 0.36336588932747793 0.5069071724856588 0.42985152758834955
+0.3682654541037864 0.5050294971003099 0.3682654541037864 0.5050294971003099 0.4371222991673279
+0.359660175012094 0.51174722939359 0.359660175012094 0.51174722939359 0.4164128462101934
+0.3632324785218605 0.5098678770732152 0.3632324785218605 0.5098678770732152 0.423263085650425
+0.3592490512243649 0.5156488117458561 0.3592490512243649 0.5156488117458561 0.40396193320644136
+0.3570327862182059 0.518904052066158 0.3570327862182059 0.518904052066158 0.3916228756035905
+0.35503627752081685 0.5212975258815657 0.35503627752081685 0.5212975258815657 0.382204909756231
+0.35506723968929227 0.5239887785765576 0.35506723968929227 0.5239887785765576 0.3708136868935937
+0.35181681304912943 0.5292563328703149 0.35181681304912943 0.5292563328703149 0.3488730407180551
+0.3548881480643786 0.5271690921659588 0.3548881480643786 0.5271690921659588 0.3564323376758096
+0.3517201734478292 0.5327526957857216 0.3517201734478292 0.5327526957857217 0.33252702679497753
+0.34849963356410824 0.5387572455429245 0.34849963356410824 0.5387572455429245 0.3074433947486752
+0.35156888217947846 0.5365166779035156 0.35156888217947846 0.5365166779035156 0.31464161728874895
+0.3485562631781536 0.542471908868965 0.3485562631781536 0.542471908868965 0.29020704553829507
+0.3457429200278349 0.5487379840771764 0.34574292002783485 0.5487379840771763 0.2661289417877273
+0.3487055393500956 0.5461770575551478 0.3487055393500956 0.5461770575551478 0.2734313983842971
+0.34597401467357075 0.5525208969400995 0.34597401467357075 0.5525208969400995 0.2505283473426234
+0.3428084338090959 0.5594785025143173 0.3428084338090959 0.5594785025143173 0.22889367629647014
+0.34627103942052156 0.5564315553834434 0.34627103942052156 0.5564315553834432 0.2358166000183662
+0.34404599378790773 0.5630849588031883 0.34404599378790773 0.5630849588031883 0.21677670785992717
+0.34196005189637146 0.5690141033758457 0.34196005189637146 0.5690141033758457 0.2028502891321631
+0.3424817398148632 0.5720883824530878 0.3424817398148632 0.5720883824530878 0.19644651802313293
+0.3446865383384003 0.5666050770432355 0.3446865383384003 0.5666050770432355 0.2074754387489072
+0.3431409366996716 0.5753176228980187 0.3431409366996716 0.5753176228980187 0.19137322871661924
+0.34157971336952486 0.5808032007072393 0.34157971336952486 0.5808032007072393 0.18395472464559634
+0.34240274126486814 0.5840302137004154 0.3424027412648681 0.5840302137004154 0.1821987427229417
+0.34412646246683 0.5780531667703654 0.34412646246682993 0.5780531667703653 0.18870224252655773
+0.34329327703335977 0.5872005304517253 0.3432932770333598 0.5872005304517253 0.18197932476338266
+0.34177992419791076 0.5931160510520482 0.34177992419791076 0.5931160510520482 0.17821298375730862
+0.3428504419203024 0.5962791710655316 0.3428504419203024 0.5962791710655316 0.18037860206738746
+0.3442272262518519 0.5903419896275369 0.3442272262518519 0.5903419896275369 0.18306800942275106
+0.34398511188065933 0.5994523361674543 0.34398511188065933 0.5994523361674543 0.18350735361981554
+0.34283429727544407 0.6055456381376388 0.34283429727544407 0.6055456381376388 0.182110784160775
+0.3441416867148701 0.6087277700468522 0.3441416867148701 0.6087277700468522 0.18647200041225984
+0.34517972113385276 0.6026035983535373 0.34517972113385276 0.6026035983535373 0.18740201546252963
+0.3455129212833437 0.6118966056186566 0.3455129212833437 0.6118966056186564 0.19129535458184208
+0.3446998447338358 0.6181520611032495 0.3446998447338358 0.6181520611032495 0.19086929312610645
+0.3462218274096041 0.6213551866955778 0.3462218274096041 0.6213551866955777 0.19614748367124127
+0.3469413049180183 0.61504172203715 0.3469413049180183 0.6150417220371499 0.19643557674588072
+0.3478462062692484 0.6245313820994945 0.3478462062692484 0.6245313820994945 0.20172735990999913
+0.3900813147093724 0.48452391702042896 0.3900813147093724 0.4845239170204289 0.4078805779818961
+0.39364709355545585 0.48707558737064804 0.39364709355545585 0.48707558737064804 0.43267326641645004
+0.5182243531972768 0.38645989653934487 0.5182243531972768 0.38645989653934487 0.38617152718965414
+0.5208463330632858 0.38424894707283863 0.5208463330632859 0.3842489470728387 0.36458428355470446
+0.5249510733350559 0.38172387331782603 0.5249510733350559 0.38172387331782603 0.35060098161311753
+0.5233760923476354 0.383976469790724 0.5233760923476354 0.383976469790724 0.3623013420632586
+0.5294616898448826 0.3794797270974794 0.5294616898448826 0.3794797270974794 0.35581791668871837
+0.5274708949315717 0.38217317747233404 0.5274708949315717 0.38217317747233404 0.36134534696444254
+0.5325561876055545 0.37834390377160715 0.5325561876055546 0.37834390377160715 0.370611950013045
+0.5317617031273241 0.38100669443322976 0.5317617031273241 0.38100669443322976 0.3793677459434856
+0.538292760360361 0.3750244913542385 0.538292760360361 0.3750244913542385 0.4053873244836978
+0.5355193420864925 0.37758956324579385 0.5355193420864924 0.3775895632457939 0.39205048432751727
+0.5483984224039002 0.37063387298910455 0.5483984224039001 0.37063387298910455 0.4931093976647352
+0.5408090364615223 0.3763748630867588 0.5408090364615222 0.37637486308675877 0.4396388778322499
+0.5451638118600541 0.3728316718497937 0.5451638118600542 0.3728316718497937 0.46874109265050296
+0.5432679105994404 0.3754229554409373 0.5432679105994404 0.3754229554409373 0.46173993965684346
+0.556792188037576 0.3681946075874328 0.556792188037576 0.3681946075874328 0.5719369465530039
+0.554010026855648 0.3703372959029677 0.5540100268556482 0.37033729590296766 0.5545956239690598
+0.5512395621619376 0.37246473953650444 0.5512395621619376 0.37246473953650444 0.536313103349137
+0.5768063891434707 0.3650500007229266 0.5768063891434707 0.36505000072292665 0.7287443908087795
+0.5625484670654032 0.3675918650115231 0.5625484670654032 0.3675918650115231 0.6268875072015998
+0.5597736808527226 0.3697796976892989 0.5597736808527226 0.3697796976892989 0.6126938047079021
+0.5735880906736806 0.36661683273261825 0.5735880906736806 0.36661683273261825 0.7153119173040484
+0.5682856812250241 0.36684366199735596 0.5682856812250242 0.3668436619973559 0.6746420160843146
+0.5709085971794379 0.3676603739671437 0.5709085971794379 0.3676603739671437 0.701013660098198
+0.565587225235544 0.36914082138721904 0.5655872252355439 0.369140821387219 0.6649581046516789
+0.5893119576902404 0.3638957939236931 0.5893119576902404 0.3638957939236931 0.78823334085362
+0.5859181790395139 0.3650035098865377 0.5859181790395139 0.3650035098865377 0.7796134558530162
+0.5826230427904138 0.3661626599853632 0.5826230427904138 0.3661626599853632 0.7696788588625519
+0.5793726735134412 0.3673795809046557 0.5793726735134412 0.36737958090465567 0.7583122926054245
+0.5200506157281565 0.3909860883539315 0.5200506157281565 0.3909860883539315 0.41614327499625975
+0.5217344617880162 0.3952454779388437 0.5217344617880162 0.3952454779388437 0.44696518446577643
+0.5918471452308948 0.3667792944619306 0.5918471452308948 0.3667792944619306 0.8112736245172595
+0.595189014568356 0.3657289709684049 0.5951890145683559 0.3657289709684049 0.8156653875527714
+0.6243884701506192 0.3563299824034838 0.6243884701506192 0.3563299824034838 0.7915132102299487
+0.620839381798238 0.3570861814946456 0.620839381798238 0.3570861814946456 0.7979797126411378
+0.6173632978537845 0.3579158781094893 0.6173632978537845 0.3579158781094893 0.8034260671717629
+0.6139395114824924 0.3587889112149971 0.6139395114824923 0.3587889112149971 0.8077811600679253
+0.601468788892874 0.36211081449532745 0.601468788892874 0.36211081449532745 0.8123571970978374
+0.6042959630609995 0.3616095158657139 0.6042959630609995 0.3616095158657138 0.814133659379395
+0.6073167847891962 0.3607060389955513 0.6073167847891962 0.36070603899555126 0.8132832363741266
+0.6105792560863059 0.35971002272507857 0.6105792560863059 0.3597100227250785 0.8110305067911218
+0.598997563227182 0.3643297348422989 0.598997563227182 0.36432973484229897 0.8178028567495812
+0.6590302408237083 0.3108720163071892 0.6590302408237082 0.3108720163071892 0.668983332774742
+0.6624099044990013 0.3105479762567453 0.6624099044990013 0.3105479762567453 0.6665620586976142
+0.6658555594259309 0.3102531208578176 0.6658555594259309 0.3102531208578176 0.6638145102696918
+0.6693434246796339 0.30995174935812286 0.669343424679634 0.3099517493581229 0.6607108078900971
+0.653340750970655 0.3126814057253168 0.6533407509706551 0.31268140572531683 0.674442471885004
+0.647799493735199 0.31714395396583933 0.647799493735199 0.31714395396583933 0.6839855393690577
+0.6427419669266693 0.3210804298570207 0.6427419669266693 0.3210804298570207 0.6936182584766354
+0.6377046349688533 0.3249626108472994 0.6377046349688533 0.3249626108472994 0.7040222378508831
+0.6362842007905022 0.3284523328195029 0.6362842007905022 0.328452332819503 0.7127381146483817
+0.6347981684724745 0.33190785191542965 0.6347981684724745 0.33190785191542965 0.7217379550836985
+0.6412535870680197 0.32457151739617845 0.6412535870680197 0.32457151739617845 0.7015009865562608
+0.6366087600121203 0.33494002335276946 0.6366087600121203 0.33494002335276946 0.7271572161103328
+0.6350742766909422 0.3383285474217519 0.6350742766909422 0.3383285474217519 0.7362000158245595
+0.646273422961237 0.3207077647239354 0.646273422961237 0.3207077647239354 0.6910863886471063
+0.6514535328017848 0.31678462153823556 0.6514535328017849 0.31678462153823556 0.6815471482410738
+0.65712758442104 0.31375198276812066 0.65712758442104 0.3137519827681206 0.6737142448968035
+0.6728752986669663 0.3096513380395442 0.6728752986669663 0.3096513380395442 0.6572682338889697
+0.6764779626568477 0.30937547095167495 0.6764779626568477 0.30937547095167495 0.6534663290162258
+0.6800969458804641 0.3091532799658552 0.6800969458804641 0.3091532799658552 0.6493667408753657
+0.6837427214871813 0.30897283314829443 0.6837427214871813 0.30897283314829443 0.6449338904426649
+0.6337805551475152 0.34174612192159676 0.6337805551475152 0.34174612192159676 0.745232662407922
+0.6325430050704256 0.34518411639562346 0.6325430050704256 0.34518411639562346 0.7544166826682703
+0.6311373766282444 0.3486566497781958 0.6311373766282444 0.3486566497781958 0.7640398097744315
+0.6295870788383037 0.35211443570580203 0.6295870788383037 0.352114435705802 0.7739111959703598
+0.6280096437030745 0.3556288215730526 0.6280096437030745 0.3556288215730526 0.783991716051622
+0.693145214981557 0.3056029666192153 0.693145214981557 0.3056029666192153 0.6317062821624413
+0.6874126980926604 0.30885549899220766 0.6874126980926604 0.30885549899220766 0.6401558164326907
+0.691103983118141 0.30881192576248984 0.691103983118141 0.3088119257624898 0.6350169918507733
+0.7319245201645979 0.2726840778050367 0.7319245201645979 0.2726840778050367 0.5489623095969745
+0.7223262151439729 0.27751586567029457 0.7223262151439728 0.27751586567029457 0.5681397413467258
+0.7201686230105505 0.2807936083095696 0.7201686230105505 0.2807936083095696 0.574383868443216
+0.7144941402011108 0.28374217640293803 0.7144941402011108 0.28374217640293803 0.586483578784501
+0.712453247607837 0.2868970130551377 0.712453247607837 0.28689701305513765 0.5924287046801351
+0.7028444338586539 0.29613081040515693 0.7028444338586538 0.29613081040515693 0.6140740539928308
+0.7069091718234072 0.28990906122041665 0.7069091718234072 0.28990906122041665 0.6038153454328578
+0.7049363712962281 0.2930500701240821 0.7049363712962281 0.2930500701240821 0.6090681580941206
+0.7104049733976172 0.29006752855889945 0.7104049733976172 0.29006752855889945 0.5981658938612598
+0.7180550766756489 0.2839837468866387 0.7180550766756489 0.2839837468866387 0.5805057492312855
+0.70081042929097 0.29926691835374924 0.70081042929097 0.29926691835374924 0.6186026956590992
+0.704323459435959 0.29939347771870745 0.704323459435959 0.29939347771870745 0.6130219875008297
+0.698838479634484 0.3024197302630214 0.698838479634484 0.3024197302630214 0.6226110685251771
+0.6968527596934937 0.3056203092778719 0.6968527596934937 0.3056203092778719 0.6262275539209249
+0.7287972027627717 0.27406382902477305 0.7287972027627718 0.27406382902477305 0.5550339738092012
+0.7260890081133332 0.2777092178177211 0.7260890081133332 0.2777092178177211 0.5619257469983131
+0.7367831380957095 0.2704063246919079 0.7367831380957095 0.2704063246919079 0.5405289469284461
+0.7346224132131121 0.27326017038215955 0.7346224132131121 0.27326017038215955 0.5450503291435512
+0.7402754615971577 0.270658583021763 0.7402754615971577 0.270658583021763 0.5354723836275771
+0.7424783011688157 0.2677108753565696 0.7424783011688157 0.2677108753565696 0.531775824265832
+0.7446854505335364 0.2647395645456518 0.7446854505335364 0.2647395645456518 0.5286764960922375
+0.7469034287366241 0.2617433934416056 0.7469034287366241 0.2617433934416056 0.5261965322560211
+0.7491293960985907 0.25869991060155906 0.7491293960985907 0.25869991060155906 0.5243554835215972
+0.7513361390230264 0.2556669331952707 0.7513361390230263 0.2556669331952706 0.5231338752090359
+0.7528214108782081 0.2530143009188184 0.7528214108782081 0.2530143009188184 0.5227859694117185
+0.7557968590799717 0.25145441794194046 0.7557968590799717 0.25145441794194046 0.521501500831456
+0.7591754656560368 0.2492189000079037 0.7591754656560368 0.2492189000079037 0.5206270013673241
+0.7626979564407713 0.24708899854963398 0.7626979564407713 0.24708899854963398 0.5199322380280772
+0.766120536263988 0.2449399415517448 0.7661205362639879 0.2449399415517448 0.5195323086400486
+0.7694912004456341 0.2428651709942248 0.7694912004456341 0.2428651709942248 0.5192244472216466
+0.77288207379738 0.24074886618767982 0.7728820737973799 0.2407488661876798 0.5189068285183042
+0.7762804286956501 0.23864641175556447 0.7762804286956501 0.23864641175556447 0.5184492000347798
+0.7796565513291172 0.23652721673380203 0.7796565513291172 0.23652721673380203 0.5177657798652461
+0.7830394978597015 0.23442194906670433 0.7830394978597015 0.23442194906670433 0.516729458296396
+0.786423115562666 0.23230345951295295 0.7864231155626661 0.23230345951295295 0.5152990561049232
+0.7897980877817525 0.23019811987458513 0.7897980877817526 0.23019811987458513 0.5134141667274302
+0.7931697932432582 0.22812091259747627 0.7931697932432583 0.22812091259747627 0.5110272873771832
+0.796546112243263 0.2260199518245757 0.796546112243263 0.2260199518245757 0.5081537964418219
+0.7999395327589339 0.223903124539199 0.7999395327589339 0.223903124539199 0.504784584016125
+0.8033402939602783 0.22179036117826015 0.8033402939602784 0.22179036117826015 0.5009529824087378
+0.8067378053166716 0.21968533732297682 0.8067378053166717 0.21968533732297682 0.4967183654001434
+0.8101329142439849 0.21758400153616128 0.8101329142439849 0.21758400153616128 0.4921433125546218
+0.8135289187657083 0.2154811715480839 0.8135289187657083 0.2154811715480839 0.4872982778823795
+0.8169193020608772 0.21338912133887877 0.8169193020608772 0.21338912133887877 0.4822714932446263
+0.8203096853560461 0.21129707112967372 0.820309685356046 0.21129707112967375 0.4771374713483793
+0.823700068651215 0.20920502092046858 0.823700068651215 0.20920502092046858 0.4719754349418151
+0.8270904519463841 0.20711297071126347 0.8270904519463841 0.20711297071126347 0.4668586059764513
+0.8304808352415529 0.20502092050205836 0.8304808352415529 0.20502092050205836 0.4618502578349369
+0.8338712185367219 0.20292887029285328 0.8338712185367217 0.2029288702928533 0.45700056802513594
+0.8372616018318908 0.20083682008364814 0.8372616018318908 0.20083682008364814 0.4523444463468569
+0.8406519851270599 0.19874476987444303 0.8406519851270599 0.19874476987444303 0.44790013720620486
+0.8440423684222287 0.19665271966523795 0.8440423684222287 0.19665271966523792 0.44366887111112213
+0.8474327517173976 0.19456066945603284 0.8474327517173975 0.19456066945603287 0.43963588470655074
+0.8508231350125666 0.1924686192468277 0.8508231350125666 0.1924686192468277 0.43577258788584433
+0.8542135183077356 0.19037656903762257 0.8542135183077356 0.19037656903762257 0.43203946624618456
+0.8576039016029045 0.18828451882841749 0.8576039016029045 0.18828451882841749 0.42838959239338553
+0.8609942848980734 0.1861924686192124 0.8609942848980733 0.18619246861921243 0.42477262477311095
+0.8643846681932423 0.18410041841000727 0.8643846681932423 0.18410041841000727 0.42113897155174523
+0.8677750514884114 0.18200836820080216 0.8677750514884114 0.18200836820080216 0.41744381802261227
+0.8711654347835802 0.17991631799159702 0.8711654347835802 0.17991631799159702 0.4136508018581176
+0.8745558180787492 0.17782426778239196 0.874555818078749 0.177824267782392 0.409735172228562
+0.8779462013739181 0.17573221757318688 0.8779462013739181 0.17573221757318688 0.4056861958360085
+0.8813365846690872 0.17364016736398172 0.8813365846690872 0.17364016736398172 0.4015086916825377
+0.884726967964256 0.1715481171547766 0.884726967964256 0.1715481171547766 0.39722360293467146
+0.8881173512594249 0.16945606694557153 0.8881173512594248 0.16945606694557155 0.3928675680842428
+0.8915077345545939 0.16736401673636636 0.8915077345545939 0.16736401673636636 0.38849147445967974
+0.8948981178497628 0.16527196652716125 0.8948981178497629 0.16527196652716125 0.38415800846054854
+0.8982885011449318 0.16317991631795614 0.8982885011449318 0.16317991631795614 0.37993826402817277
+0.9016788844401007 0.16108786610875103 0.9016788844401006 0.16108786610875103 0.375907532604485
+0.9050692677352696 0.15899581589954592 0.9050692677352696 0.15899581589954592 0.3721404721231294
+0.9084596510304386 0.1569037656903408 0.9084596510304387 0.1569037656903408 0.3687059351383933
+0.9118500343256075 0.1548117154811357 0.9118500343256075 0.1548117154811357 0.3656618154543276
+0.9152404176207765 0.1527196652719306 0.9152404176207763 0.1527196652719306 0.36305033212366095
+0.9186308009159454 0.15062761506272548 0.9186308009159454 0.15062761506272548 0.3608941905089819
+0.9220211842111143 0.14853556485352037 0.9220211842111145 0.14853556485352037 0.3591940237241787
+0.9254115675062833 0.14644351464431526 0.9254115675062833 0.14644351464431526 0.3579274158763936
+0.9288019508014522 0.14435146443511016 0.9288019508014521 0.14435146443511016 0.35704965237937397
+0.9321923340966212 0.14225941422590505 0.9321923340966212 0.14225941422590505 0.3564961613435181
+0.9355827173917901 0.14016736401669994 0.9355827173917902 0.14016736401669994 0.35618643951743123
+0.938973100686959 0.13807531380749483 0.938973100686959 0.13807531380749483 0.35602912691464
+0.942363483982128 0.13598326359828972 0.9423634839821279 0.13598326359828972 0.35592782362840136
+0.9457538672772969 0.1338912133890846 0.9457538672772969 0.1338912133890846 0.35578723253480776
+0.9491442505724659 0.1317991631798795 0.949144250572466 0.1317991631798795 0.3555192507787606
+0.9525346338676348 0.1297071129706744 0.9525346338676348 0.1297071129706744 0.3550487007175367
+0.9559250171628038 0.12761506276146928 0.9559250171628036 0.12761506276146928 0.3543184654417392
+0.9593154004579727 0.12552301255226417 0.9593154004579727 0.12552301255226417 0.35329385714695993
+0.9627057837531416 0.12343096234305906 0.9627057837531418 0.12343096234305906 0.35196608713579586
+0.9660961670483106 0.12133891213385395 0.9660961670483106 0.12133891213385395 0.3503547196106848
+0.9694865503434795 0.11924686192464881 0.9694865503434794 0.11924686192464883 0.3485089792761343
+0.9728769336386485 0.11715481171544362 0.9728769336386485 0.11715481171544362 0.3465077521703967
+0.976267316933818 0.11506276150623819 0.976267316933818 0.11506276150623819 0.3444580828599207
+0.9796577002289867 0.11297071129703326 0.9796577002289867 0.11297071129703327 0.342491948534426
+0.9830480835241558 0.11087866108782796 0.9830480835241558 0.11087866108782796 0.34076110793893566
+0.9864384668193242 0.10878661087862329 0.9864384668193242 0.10878661087862329 0.33942991106300235
+0.9898288501144932 0.10669456066941818 0.9898288501144933 0.10669456066941818 0.3386661405784795
+0.9932192334096621 0.10460251046021307 0.9932192334096621 0.10460251046021307 0.338630245149318
+0.10878661087866098 0.9932192334096621 0.108786610878661 0.9932192334096621 0.09672704326673282
+0.11087866108786598 0.9898288501144933 0.110878661087866 0.9898288501144933 0.0984509044845836
+0.11297071129707105 0.9864384668193243 0.11297071129707105 0.9864384668193243 0.10046929369306569
+0.11506276150627602 0.9830480835241554 0.11506276150627602 0.9830480835241554 0.10271438681667722
+0.11715481171548098 0.9796577002289866 0.11715481171548099 0.9796577002289865 0.10512062927202355
+0.11924686192468599 0.9762673169338177 0.11924686192468599 0.9762673169338177 0.10762694431148477
+0.12133891213389097 0.9728769336386486 0.12133891213389099 0.9728769336386486 0.11017806396177417
+0.12343096234309596 0.9694865503434795 0.12343096234309596 0.9694865503434794 0.1127251492977857
+0.12552301255230097 0.9660961670483107 0.125523012552301 0.9660961670483107 0.11522588697848644
+0.127615062761506 0.9627057837531421 0.127615062761506 0.9627057837531421 0.1176442323152616
+0.12970711297071108 0.9593154004579731 0.12970711297071105 0.959315400457973 0.11994993719371756
+0.13179916317991613 0.9559250171628041 0.13179916317991613 0.9559250171628041 0.12211796731943207
+0.13389121338912122 0.9525346338676351 0.13389121338912122 0.9525346338676351 0.12412788390875064
+0.13598326359832622 0.9491442505724664 0.13598326359832622 0.9491442505724664 0.12596324200378795
+0.13807531380753107 0.9457538672772975 0.13807531380753105 0.9457538672772975 0.12761104065560472
+0.14016736401673588 0.9423634839821285 0.14016736401673588 0.9423634839821285 0.12906124801782595
+0.1422594142259406 0.9389731006869598 0.1422594142259406 0.9389731006869598 0.1303064155480467
+0.14435146443514535 0.9355827173917909 0.14435146443514535 0.9355827173917909 0.13134138887533273
+0.14644351464435032 0.9321923340966217 0.14644351464435032 0.9321923340966217 0.13216311761939548
+0.14853556485355576 0.9288019508014526 0.14853556485355576 0.9288019508014526 0.13277056198069812
+0.1506276150627618 0.9254115675062836 0.1506276150627618 0.9254115675062836 0.1331646899037282
+0.15271966527196854 0.9220211842111152 0.15271966527196854 0.9220211842111151 0.13334855482156052
+0.1548117154811758 0.9186308009159472 0.1548117154811758 0.9186308009159472 0.13332744029847463
+0.15690376569038383 0.9152404176207801 0.1569037656903838 0.9152404176207801 0.1331090543009652
+0.15899581589959252 0.9118500343256141 0.15899581589959252 0.9118500343256141 0.13270375243105495
+0.1610878661088023 0.9084596510304502 0.1610878661088023 0.9084596510304502 0.1321247662702902
+0.16317991631801232 0.9050692677352891 0.16317991631801232 0.9050692677352891 0.13138840988130027
+0.16527196652722184 0.901678884440135 0.16527196652722184 0.901678884440135 0.13051423439413642
+0.16736401673642587 0.8982885011449827 0.16736401673642587 0.8982885011449827 0.12952509765496054
+0.16945606694561874 0.8948981178498429 0.16945606694561874 0.8948981178498429 0.12844711365458983
+0.17154811715480991 0.8915077345546907 0.17154811715480991 0.8915077345546907 0.12730944560467172
+0.17364016736398655 0.8881173512595367 0.17364016736398655 0.8881173512595367 0.12614390803021883
+0.17573221757316856 0.884726967964379 0.17573221757316856 0.8847269679643791 0.12498434840356247
+0.1778242677823788 0.8813365846692127 0.1778242677823788 0.8813365846692127 0.1238657892446634
+0.17991631799162042 0.877946201374061 0.17991631799162042 0.877946201374061 0.12282332866053051
+0.18200836820090327 0.8745558180789358 0.18200836820090327 0.8745558180789358 0.12189082158693954
+0.1841004184102161 0.8711654347838982 0.1841004184102161 0.8711654347838982 0.12109939461754836
+0.1861924686195701 0.8677750514888958 0.1861924686195701 0.8677750514888958 0.12047588100473618
+0.18828451882883993 0.8643846681939767 0.18828451882883993 0.8643846681939767 0.12004129317283575
+0.1903765690380601 0.8609942848988609 0.1903765690380601 0.8609942848988609 0.1198094696638398
+0.1924686192478441 0.8576039016043371 0.1924686192478441 0.8576039016043371 0.1197860346737424
+0.19456066945771075 0.8542135183099018 0.19456066945771075 0.8542135183099017 0.11996778929583289
+0.19665271966787193 0.850823135015744 0.19665271966787193 0.8508231350157441 0.12034261526074878
+0.1987447698782783 0.8474327517228065 0.1987447698782783 0.8474327517228065 0.12088991549630247
+0.20083682008918335 0.8440423684313796 0.20083682008918338 0.8440423684313796 0.12158155173333497
+0.20292887029710727 0.8406519851407906 0.20292887029710727 0.8406519851407906 0.12238318450677492
+0.2050209205066226 0.8372616018501119 0.2050209205066226 0.8372616018501119 0.1232558996333286
+0.207112970714489 0.8338712185601045 0.207112970714489 0.8338712185601045 0.12415800082368667
+0.20920500205918405 0.8304808361884356 0.20920500205918405 0.8304808361884356 0.1250468393158692
+0.21129695949167307 0.8270904563416025 0.21129695949167307 0.8270904563416025 0.12588059241271454
+0.21338901312137146 0.8237000727135957 0.21338901312137146 0.8237000727135957 0.12662006765661216
+0.2154811716549162 0.8203096854635844 0.21548117165491618 0.8203096854635844 0.12723000240893031
+0.2175725706108911 0.816919341391717 0.2175725706108911 0.816919341391717 0.1276799553972938
+0.2196638345000577 0.8135293044941102 0.2196638345000577 0.8135293044941102 0.12794687116136463
+0.22175491869191125 0.810139587257097 0.22175491869191125 0.810139587257097 0.12801478901047167
+0.2238457017759147 0.8067503069699574 0.2238457017759147 0.8067503069699574 0.1278759006226778
+0.22593611759761079 0.803361631294596 0.22593611759761076 0.803361631294596 0.12753106474300666
+0.22802663994527794 0.7999743307452393 0.22802663994527794 0.7999743307452393 0.12699072197446062
+0.23011724534503844 0.7965895268228186 0.23011724534503844 0.7965895268228186 0.12627458240705372
+0.23220715875770492 0.7932066216195448 0.23220715875770495 0.7932066216195448 0.1254101057885951
+0.2342941607580229 0.7898224297358974 0.2342941607580229 0.7898224297358974 0.12443081890919307
+0.23638395814339064 0.786438739085658 0.23638395814339064 0.786438739085658 0.12338585045043084
+0.2384802442266951 0.7830565908063559 0.2384802442266951 0.7830565908063559 0.1223294525027928
+0.2405819813619419 0.7796763197802679 0.2405819813619419 0.7796763197802679 0.12131978818944521
+0.2426890511913102 0.7763020769659685 0.2426890511913102 0.7763020769659685 0.120418675242427
+0.24479719823142632 0.772937701242153 0.24479719823142632 0.772937701242153 0.11968520874435995
+0.24690487094896466 0.7695809930965519 0.24690487094896466 0.7695809930965519 0.11917231711147759
+0.273140724804741 0.7356596674778596 0.273140724804741 0.7356596674778596 0.1373055287248606
+0.24901317453407137 0.7662297078062875 0.24901317453407137 0.7662297078062875 0.11892991632801743
+0.25109627215080965 0.7629010705643281 0.25109627215080965 0.7629010705643281 0.11897513563372648
+0.2530973441193253 0.7600297177639275 0.25309734411932533 0.7600297177639276 0.11950123134444961
+0.2552209611395606 0.7570198781469006 0.2552209611395606 0.7570198781469006 0.12033686685323668
+0.25676933768484417 0.7539865694937871 0.25676933768484417 0.7539865694937871 0.12089262742534969
+0.2590246216788971 0.7509730005834604 0.2590246216788971 0.7509730005834604 0.12246748139449774
+0.27112782998538104 0.7388075249156284 0.27112782998538104 0.7388075249156284 0.1349936949572723
+0.2627767326564421 0.7511046612156563 0.2627767326564421 0.7511046612156563 0.126709377763499
+0.26907396623589674 0.7419302971392122 0.26907396623589674 0.7419302971392122 0.13271806665231756
+0.2669886203968938 0.745031762753945 0.2669886203968938 0.745031762753945 0.1305404715060425
+0.26488659119579105 0.7481030096566517 0.2648865911957911 0.7481030096566518 0.12852545738729407
+0.2751323998664324 0.7324681041578317 0.2751323998664324 0.7324681041578317 0.13962246318836505
+0.27716762195398026 0.7292044650899805 0.27716762195398026 0.7292044650899805 0.14197430263581534
+0.2819207760162619 0.7159891798463489 0.2819207760162619 0.7159891798463489 0.1463181284820825
+0.29444589027539847 0.6973465657300231 0.2944458902753984 0.6973465657300232 0.1534008711303756
+0.28399096818984 0.712851861727037 0.28399096818984 0.712851861727037 0.14805760625688055
+0.28601143645304233 0.7097432966669214 0.28601143645304233 0.7097432966669214 0.14952557874464034
+0.29223992884446204 0.7004919819209573 0.2922399288444621 0.7004919819209573 0.1527095855890351
+0.28958452605433144 0.7030212687588868 0.28958452605433144 0.7030212687588868 0.1510455781823883
+0.2880137947708634 0.7065790923994839 0.2880137947708634 0.706579092399484 0.15072605437623524
+0.27924595050390244 0.7259101352227558 0.27924595050390244 0.7259101352227558 0.1443163406891276
+0.2813307949948826 0.7226386490700119 0.2813307949948826 0.7226386490700119 0.14655184667109322
+0.28341084816220286 0.7194128412498149 0.28341084816220286 0.7194128412498149 0.14862823620782148
+0.3098656132033011 0.6785434157539592 0.3098656132033011 0.6785434157539592 0.15692047283615176
+0.3077412341042749 0.6816653003272811 0.3077412341042749 0.6816653003272811 0.15694341674297
+0.3056149490711694 0.6848130806766783 0.30561494907116943 0.6848130806766783 0.15699297001079582
+0.30349465101146017 0.6879858348809548 0.30349465101146017 0.6879858348809548 0.15702107163651077
+0.2976231784025562 0.6975079597899495 0.2976231784025562 0.6975079597899495 0.15689400250252042
+0.29945436114592616 0.694356848179552 0.29945436114592616 0.694356848179552 0.15697154779155367
+0.30141191348097096 0.6911772711347696 0.30141191348097096 0.6911772711347696 0.1570048794475614
+0.3155583201476416 0.6753891443587412 0.31555832014764157 0.6753891443587411 0.16178023970383193
+0.3135006864355834 0.6785244544102842 0.3135006864355834 0.6785244544102841 0.1616153386686271
+0.31762454851985067 0.6722435364615956 0.3176245485198507 0.6722435364615956 0.16208709579979486
+0.31960709042943397 0.6691406150787212 0.31960709042943397 0.6691406150787212 0.16248654957227412
+0.3400617891954926 0.6372380442287855 0.3400617891954926 0.6372380442287855 0.18426729435282604
+0.33474571809560044 0.6401510071825793 0.33474571809560044 0.6401510071825793 0.17252954181149127
+0.32622185554023364 0.6527848090670261 0.32622185554023364 0.6527848090670262 0.16144404281089123
+0.3319998604305797 0.6427912926772046 0.3319998604305798 0.6427912926772047 0.16756447623082177
+0.3303490399654574 0.6463900181639277 0.3303490399654574 0.6463900181639276 0.1658827798284256
+0.3282775220255971 0.6495959612170391 0.3282775220255971 0.6495959612170391 0.16345232657225503
+0.3379995329320811 0.6403316421329805 0.3379995329320811 0.6403316421329804 0.1803576921562269
+0.32159486625956624 0.6659876001333519 0.32159486625956624 0.6659876001333519 0.16306837342641042
+0.323618635799878 0.6627583359858404 0.323618635799878 0.6627583359858403 0.1639167305673067
+0.3256766716298262 0.6594751526253037 0.3256766716298262 0.6594751526253037 0.16510466790704756
+0.32771414692657613 0.6562134227798657 0.32771414692657613 0.6562134227798656 0.16662786854796485
+0.34953184943557997 0.6276467586867217 0.34953184943557997 0.6276467586867217 0.20743942037376065
+0.34748281310429424 0.630891262414817 0.34748281310429424 0.630891262414817 0.2022678045952029
+0.34347911880064474 0.6373432203359835 0.34347911880064474 0.6373432203359836 0.19317995604149293
+0.3454163909185841 0.6341598217991806 0.3454163909185841 0.6341598217991806 0.19738659969645833
+0.385776208966615 0.48650410512521336 0.385776208966615 0.4865041051252134 0.42102399114107397
+0.38281491200080775 0.48876734244085485 0.38281491200080775 0.4887673424408549 0.43143868825858117
+0.37950905733386686 0.4921332916545508 0.37950905733386686 0.4921332916545507 0.4420517616999011
+0.38193128966309625 0.4911157268509446 0.38193128966309625 0.4911157268509446 0.4412310860993977
+0.37592943611300866 0.49574085076503005 0.3759294361130086 0.49574085076503005 0.44666759068690354
+0.3792629268122385 0.49466927809209577 0.3792629268122385 0.49466927809209577 0.4489360720512438
+0.3757836426048868 0.4987236536688842 0.3757836426048868 0.4987236536688842 0.449656210481651
+0.37259157257143644 0.5009569992309097 0.37259157257143644 0.5009569992309099 0.4458206875218834
+0.3710568322884155 0.5040565745156546 0.3710568322884155 0.5040565745156546 0.44136149485912807
+0.36655253188025394 0.5077406702302453 0.366552531880254 0.5077406702302453 0.43071926148654655
+0.3699834186834803 0.5069559727617503 0.3699834186834803 0.5069559727617503 0.4350925162747416
+0.3625789755020867 0.5133282914833839 0.3625789755020867 0.5133282914833838 0.41267501803118894
+0.3661743488616867 0.5114644752633783 0.3661743488616867 0.5114644752633782 0.4202399790251345
+0.36265103192893816 0.5163661955191932 0.36265103192893816 0.5163661955191932 0.4015057253581623
+0.36111854210483746 0.5193996068847924 0.3611185421048374 0.5193996068847923 0.38925465140323784
+0.35786868946528694 0.5220325593389765 0.35786868946528694 0.5220325593389764 0.378391026861772
+0.357871494374661 0.5253189566239758 0.357871494374661 0.5253189566239759 0.3633393633360455
+0.35523996727143636 0.5307579322065837 0.35523996727143636 0.5307579322065837 0.3390244822864095
+0.3574285956762968 0.5281788672884515 0.3574285956762968 0.5281788672884515 0.3497045794906792
+0.3544802746238537 0.5345368239425261 0.3544802746238536 0.534536823942526 0.3210509168978714
+0.3545980684035797 0.5379199167495287 0.3545980684035797 0.5379199167495287 0.30424225934633936
+0.35160996359250507 0.540130605145655 0.3516099635925051 0.540130605145655 0.2973486146777738
+0.35173493071706896 0.5437172128252574 0.35173493071706896 0.5437172128252574 0.2805175302540379
+0.34898088470410815 0.5499269292367847 0.3489808847041082 0.5499269292367847 0.25726031620240253
+0.35194321375355075 0.547322597152144 0.35194321375355075 0.547322597152144 0.2643646998014711
+0.3492779268680269 0.5537103909850754 0.3492779268680269 0.5537103909850752 0.24235051967128332
+0.3469780033988291 0.5603592358893817 0.34697800339882917 0.5603592358893817 0.22262801868436247
+0.3496492604564229 0.5574720634341194 0.3496492604564229 0.5574720634341194 0.22927798434080435
+0.3475005529085731 0.5640105604226379 0.3475005529085731 0.5640105604226379 0.21256099515254048
+0.34518362911434014 0.5700421781746627 0.34518362911434014 0.5700421781746626 0.2003525370298789
+0.34510812234409494 0.5729981780975788 0.34510812234409494 0.5729981780975788 0.1954014178391266
+0.34801582947245224 0.5678191669715438 0.34801582947245224 0.5678191669715438 0.20444730615026163
+0.34647406784719326 0.5752886117349637 0.3464740678471933 0.5752886117349637 0.19331609123846027
+0.3448993516817898 0.5812932739087259 0.3448993516817898 0.5812932739087259 0.1868854141428757
+0.34572763737838547 0.5844638034728429 0.34572763737838547 0.5844638034728429 0.18666029737452958
+0.3473543090598346 0.5785598659094624 0.3473543090598346 0.5785598659094625 0.19151740736522713
+0.3466159902542192 0.5875897995545063 0.3466159902542192 0.5875897995545064 0.18783895506244117
+0.34525820742660623 0.5934534741414442 0.34525820742660623 0.5934534741414442 0.1853827754281717
+0.3463577723922835 0.5965712033996832 0.3463577723922835 0.5965712033996832 0.18869107951435174
+0.34761865047954726 0.5906407398315935 0.34761865047954726 0.5906407398315935 0.19031644245834559
+0.3475085865335581 0.5996832918824279 0.3475085865335581 0.5996832918824279 0.19275962351481077
+0.3464393173469889 0.6057408141736502 0.3464393173469889 0.6057408141736502 0.19190325492309648
+0.34776629089919825 0.6088633191144043 0.34776629089919825 0.6088633191144043 0.19686609267068308
+0.3487194132413249 0.602780939821073 0.3487194132413249 0.602780939821073 0.1974224766811015
+0.3491565973305857 0.6119624664237733 0.3491565973305857 0.6119624664237734 0.2021463989592268
+0.3484303891470388 0.6181956701207051 0.3484303891470388 0.6181956701207051 0.2018116663678001
+0.34998072380059453 0.6213187550980511 0.34998072380059453 0.6213187550980511 0.20733771205973964
+0.3506061535457428 0.6150724359430079 0.3506061535457428 0.6150724359430079 0.2076351138846513
+0.3515987740369759 0.6244208740407761 0.3515987740369759 0.6244208740407761 0.2129835442004808
+0.3895374057461502 0.4890787874024194 0.3895374057461502 0.4890787874024194 0.44162295250419664
+0.39319987391421446 0.4914807487401703 0.39319987391421446 0.4914807487401703 0.46462692430359587
+0.5228789970952374 0.38735380571832856 0.5228789970952374 0.38735380571832856 0.3850409218224874
+0.5256114578646629 0.3851292083656639 0.525611457864663 0.3851292083656639 0.3732516895530141
+0.529944923323341 0.38296781844047034 0.529944923323341 0.38296781844047034 0.37848632004014243
+0.5282005158203849 0.3850262847835294 0.5282005158203849 0.3850262847835294 0.3816114859519659
+0.5339609513553621 0.38102191456040463 0.5339609513553621 0.38102191456040463 0.397201796128994
+0.5324400087728487 0.3836981802833037 0.5324400087728486 0.3836981802833037 0.4002795680160851
+0.5385111184438087 0.3788325196401966 0.5385111184438087 0.37883251964019665 0.42876429482355044
+0.5367651060224177 0.381403240165231 0.5367651060224176 0.381403240165231 0.42563464944913815
+0.5409822971040948 0.37940181022616326 0.5409822971040948 0.37940181022616326 0.459147879033584
+0.5484700127490785 0.3746394354663049 0.5484700127490784 0.3746394354663049 0.5175342603186323
+0.5431640214562359 0.37839465803784217 0.5431640214562359 0.37839465803784217 0.4781463762552675
+0.5458910945084579 0.37665188984086717 0.545891094508458 0.3766518898408671 0.4995547659723751
+0.5569903732741467 0.371945454493262 0.5569903732741467 0.37194545449326194 0.5970437754983055
+0.5542304298357537 0.3740765965008229 0.5542304298357537 0.374076596500823 0.5802837959295156
+0.5513429549730446 0.3764848491091527 0.5513429549730446 0.37648484910915275 0.5627376009439556
+0.5760950987796516 0.36866600379628034 0.5760950987796516 0.36866600379628034 0.7451477120189659
+0.5599814441802493 0.37352266369865567 0.5599814441802494 0.37352266369865567 0.6386667354139552
+0.5627744660643811 0.3713614241688894 0.5627744660643811 0.3713614241688894 0.6525886683694738
+0.5726603608678379 0.369894949008856 0.5726603608678379 0.36989494900885594 0.7283621834526323
+0.5689762298677984 0.3704576935650436 0.5689762298677984 0.3704576935650436 0.7028925751351975
+0.5657457016930177 0.3729837973619684 0.5657457016930177 0.37298379736196846 0.6909846002159544
+0.5885089405561351 0.36780069318889663 0.5885089405561351 0.36780069318889663 0.8049115112036823
+0.5851947125227366 0.36885016765741213 0.5851947125227365 0.36885016765741213 0.7968024201136227
+0.5819216697385128 0.3699240195656911 0.5819216697385129 0.36992401956569104 0.7869803529564282
+0.5786686320592339 0.3711057889928087 0.5786686320592339 0.3711057889928087 0.7758267337640713
+0.5245368953577827 0.39194994311498266 0.5245368953577828 0.39194994311498266 0.4183361615961831
+0.5260556038385609 0.3962407324460664 0.5260556038385609 0.3962407324460664 0.4516444471987277
+0.5910240949959413 0.37064684758386557 0.5910240949959413 0.37064684758386557 0.8275713921305586
+0.5943559477028911 0.3696456674728803 0.5943559477028911 0.3696456674728803 0.8315013173833145
+0.5978036465160902 0.3686485326163884 0.5978036465160902 0.3686485326163884 0.8338882850028234
+0.6264298146590447 0.3590969929097945 0.6264298146590447 0.3590969929097945 0.793973689326423
+0.6228808965588758 0.3597954017162453 0.6228808965588758 0.3597954017162453 0.8017609435739895
+0.619404593374227 0.3605545542241371 0.619404593374227 0.3605545542241371 0.8085004101925494
+0.6159955732811238 0.36138836633671895 0.6159955732811238 0.36138836633671895 0.8142395002512909
+0.6126160005431217 0.36228391269782917 0.6126160005431217 0.36228391269782917 0.8189818008729356
+0.6028143606324843 0.3647489952551087 0.6028143606324843 0.3647489952551087 0.8247240208966771
+0.6062399468865631 0.364107349747727 0.6062399468865632 0.364107349747727 0.8248994728752638
+0.6093794294874324 0.3632405756379047 0.6093794294874324 0.3632405756379047 0.8226723985221965
+0.6014040398140141 0.36803100531723354 0.601404039814014 0.36803100531723354 0.8360192514430861
+0.6606961277680188 0.3137008345493413 0.6606961277680189 0.3137008345493413 0.671150909741668
+0.6641171634227769 0.3135012854436431 0.6641171634227768 0.31350128544364303 0.6681411860642782
+0.6675788604338053 0.31322333376096234 0.6675788604338053 0.3132233337609623 0.6647270317595497
+0.6710754116379015 0.3129244624017416 0.6710754116379015 0.3129244624017416 0.660993656364505
+0.655156845501629 0.3167738087698223 0.655156845501629 0.31677380876982225 0.6789429207574389
+0.6498166463480258 0.32040765309029867 0.6498166463480258 0.32040765309029867 0.6881971114276978
+0.6447802071936257 0.3241701009733776 0.6447802071936257 0.3241701009733777 0.698352560204026
+0.6398194101122067 0.3281457046836206 0.6398194101122067 0.32814570468362053 0.7098504158978156
+0.6382584610081271 0.33153495997792665 0.6382584610081271 0.33153495997792665 0.7183094192641013
+0.6432558124058737 0.3275879269073102 0.6432558124058737 0.32758792690731026 0.705958352859163
+0.639930332508718 0.33456050948872573 0.639930332508718 0.3345605094887257 0.7227193657731438
+0.6383467940359707 0.337963392905201 0.6383467940359707 0.337963392905201 0.7313434491192837
+0.636946926024732 0.3412133958968783 0.636946926024732 0.3412133958968783 0.7397332737562481
+0.6482724811096766 0.32388020011160945 0.6482724811096766 0.32388020011160945 0.6949267617865748
+0.6533917083660993 0.3202299364001793 0.6533917083660993 0.3202299364001793 0.6849801660783558
+0.6588069019435913 0.3168761339185685 0.6588069019435913 0.31687613391856845 0.6761093764768232
+0.6746177890356694 0.31261986916844947 0.6746177890356694 0.31261986916844947 0.6569492568773655
+0.6781857486846342 0.3123821364474936 0.6781857486846342 0.31238213644749363 0.6526565201296304
+0.6817807197697269 0.3121913988377237 0.6817807197697269 0.3121913988377237 0.6480845272313328
+0.6854052087753398 0.31206315301872295 0.6854052087753398 0.31206315301872295 0.643207984122058
+0.6360485441173673 0.3446103593432613 0.6360485441173673 0.3446103593432613 0.7477132776120604
+0.6349545204291199 0.34802861999293816 0.6349545204291199 0.34802861999293816 0.7562430215077086
+0.6334199433587193 0.35145994885743703 0.6334199433587192 0.35145994885743703 0.7655434283696311
+0.6317148122465127 0.3549868076231273 0.6317148122465127 0.3549868076231273 0.7754239823140269
+0.6300519160181556 0.35845774969947813 0.6300519160181556 0.35845774969947813 0.7851484412264794
+0.6948211473500213 0.30881516902629347 0.6948211473500213 0.30881516902629347 0.6294944588968642
+0.6890604700406547 0.3120071795527503 0.6890604700406547 0.3120071795527503 0.638000076931255
+0.692752489999966 0.3119991264635554 0.692752489999966 0.3119991264635554 0.6324313619397857
+0.73223268717963 0.27558138516094866 0.73223268717963 0.2755813851609487 0.5500915799304086
+0.7238074823679005 0.2810701391761185 0.7238074823679005 0.2810701391761185 0.5681976280717009
+0.7216214789062488 0.2842784696108277 0.7216214789062488 0.28427846961082764 0.5743110859919138
+0.7159880717929158 0.28711865948241905 0.7159880717929158 0.28711865948241905 0.5864162093346463
+0.7139774414505476 0.2902200296454816 0.7139774414505476 0.2902200296454816 0.5920200951402713
+0.706611889318121 0.2963528123136767 0.706611889318121 0.2963528123136767 0.6080891835971246
+0.7086035637055705 0.2933581870575409 0.7086035637055704 0.29335818705754096 0.6032105136212179
+0.7119827702246933 0.2933389291692515 0.7119827702246933 0.2933389291692516 0.597363541585152
+0.7194895850394217 0.2874109699504607 0.7194895850394217 0.2874109699504607 0.5802432328019881
+0.707740422960101 0.2995060925418209 0.707740422960101 0.2995060925418209 0.6072692044179667
+0.7023644726134859 0.3024971874461027 0.7023644726134859 0.3024971874461027 0.6170377432633495
+0.7055494937790476 0.3026493051134002 0.7055494937790475 0.3026493051134002 0.6117184117111938
+0.7005357041726743 0.3056683030508509 0.7005357041726743 0.3056683030508509 0.6203977581478871
+0.6985798181602099 0.30884800740300383 0.6985798181602099 0.30884800740300383 0.6235569825647557
+0.7298079463928301 0.27834116708015605 0.7298079463928301 0.27834116708015605 0.5557630420482945
+0.7274657309477061 0.28149219416087473 0.7274657309477061 0.28149219416087473 0.561842100373262
+0.7380551294692448 0.27355363151905593 0.7380551294692448 0.27355363151905593 0.5397304157935433
+0.7357607925199323 0.27632315339083396 0.7357607925199323 0.27632315339083396 0.5445541277679463
+0.7415817661442531 0.2739012269855366 0.7415817661442531 0.2739012269855366 0.5342880797876762
+0.7438280729453988 0.27095765778427455 0.7438280729453988 0.27095765778427455 0.530377469543145
+0.7460660615390182 0.2680013066027747 0.7460660615390182 0.2680013066027747 0.5270636915653945
+0.7483075199543953 0.26504638614829723 0.7483075199543953 0.26504638614829723 0.5243691752982987
+0.7505630323666338 0.26204005208868786 0.7505630323666338 0.26204005208868786 0.5223065530402312
+0.7528416742822973 0.2589505091890194 0.7528416742822973 0.2589505091890194 0.5209223827191947
+0.7552477993478349 0.2556140192944679 0.7552477993478349 0.25561401929446786 0.5202588313817503
+0.7591434849645151 0.25333161460519443 0.7591434849645151 0.25333161460519443 0.51837117201527
+0.7626283136565521 0.25119090222313584 0.7626283136565521 0.25119090222313584 0.5172723319321549
+0.766065679491597 0.2490622978064221 0.766065679491597 0.2490622978064221 0.5165783817407953
+0.7694738798319526 0.24696298082796062 0.7694738798319526 0.24696298082796062 0.5160852148535184
+0.7728650272362135 0.24485635377569118 0.7728650272362135 0.24485635377569118 0.5156744377696606
+0.776255210892448 0.24275383050969387 0.776255210892448 0.24275383050969387 0.5152086605321551
+0.7796433001668989 0.2406521762910946 0.7796433001668989 0.24065217629109456 0.5145772855020357
+0.7830270494920512 0.23854562802454252 0.7830270494920512 0.23854562802454252 0.513679730870585
+0.7864136294096205 0.23644562281283918 0.7864136294096205 0.23644562281283918 0.5124202598656523
+0.7897989144796755 0.2343484653710015 0.7897989144796754 0.2343484653710015 0.5107423673678354
+0.7931816612352082 0.23226284339793604 0.7931816612352082 0.23226284339793604 0.5085968080739209
+0.796564988576181 0.2301684946062373 0.796564988576181 0.2301684946062373 0.5059713759842283
+0.799954419375921 0.22806398931739524 0.799954419375921 0.22806398931739524 0.5028589090648304
+0.8033487241807702 0.22595916192549503 0.8033487241807702 0.22595916192549503 0.4992760699439594
+0.8067428560876367 0.22385941046907407 0.8067428560876367 0.22385941046907407 0.495266696125607
+0.8101356271907459 0.22176230654933196 0.8101356271907459 0.22176230654933196 0.49088900718365375
+0.8135289187657082 0.21966527196649407 0.8135289187657083 0.21966527196649407 0.48620985651874776
+0.816919302060877 0.217573221757289 0.816919302060877 0.217573221757289 0.4813122197104222
+0.820309685356046 0.2154811715480839 0.820309685356046 0.2154811715480839 0.47627629222127027
+0.823700068651215 0.21338912133887877 0.823700068651215 0.21338912133887877 0.47118619453061106
+0.8270904519463841 0.21129707112967364 0.8270904519463841 0.21129707112967364 0.4661225354467287
+0.8304808352415529 0.20920502092046855 0.8304808352415529 0.20920502092046855 0.4611581707307712
+0.8338712185367217 0.20711297071126347 0.8338712185367217 0.20711297071126347 0.4563543736182867
+0.8372616018318908 0.20502092050205836 0.8372616018318908 0.20502092050205836 0.45175774908331195
+0.8406519851270597 0.2029288702928532 0.8406519851270599 0.2029288702928532 0.447398057007735
+0.8440423684222286 0.20083682008364812 0.8440423684222286 0.20083682008364812 0.4432870700568579
+0.8474327517173975 0.19874476987444303 0.8474327517173975 0.19874476987444303 0.43941863962995903
+0.8508231350125666 0.19665271966523792 0.8508231350125666 0.19665271966523792 0.4357700069856458
+0.8542135183077356 0.19456066945603281 0.8542135183077356 0.19456066945603281 0.432304186601177
+0.8576039016029045 0.1924686192468277 0.8576039016029045 0.1924686192468277 0.4289731892568081
+0.8609942848980733 0.1903765690376226 0.8609942848980733 0.1903765690376226 0.425721871891325
+0.8643846681932423 0.18828451882841749 0.8643846681932423 0.18828451882841749 0.4224921575954151
+0.8677750514884113 0.18619246861921232 0.8677750514884114 0.18619246861921232 0.41922732736305507
+0.8711654347835801 0.18410041841000724 0.8711654347835801 0.18410041841000724 0.4158761103970181
+0.874555818078749 0.18200836820080216 0.874555818078749 0.18200836820080216 0.41239634961429866
+0.8779462013739181 0.17991631799159705 0.8779462013739181 0.17991631799159705 0.4087580497823872
+0.8813365846690872 0.17782426778239194 0.8813365846690872 0.17782426778239194 0.4049456502282162
+0.884726967964256 0.17573221757318683 0.884726967964256 0.17573221757318683 0.40095941995499457
+0.8881173512594248 0.17364016736398172 0.8881173512594248 0.17364016736398172 0.3968159154716458
+0.8915077345545939 0.17154811715477658 0.8915077345545939 0.17154811715477658 0.3925474764191015
+0.8948981178497628 0.16945606694557147 0.8948981178497629 0.16945606694557147 0.3882007609429292
+0.8982885011449318 0.16736401673636636 0.8982885011449318 0.16736401673636636 0.3838343536041553
+0.9016788844401007 0.16527196652716125 0.9016788844401006 0.16527196652716125 0.37951551856043514
+0.9050692677352696 0.16317991631795614 0.9050692677352696 0.16317991631795614 0.3753162219099915
+0.9084596510304386 0.16108786610875103 0.9084596510304387 0.16108786610875103 0.3713086093465044
+0.9118500343256075 0.15899581589954592 0.9118500343256075 0.15899581589954592 0.3675601946556435
+0.9152404176207765 0.1569037656903408 0.9152404176207763 0.1569037656903408 0.36412908189960147
+0.9186308009159454 0.1548117154811357 0.9186308009159454 0.1548117154811357 0.3610595953486104
+0.9220211842111143 0.1527196652719306 0.9220211842111145 0.1527196652719306 0.3583787093084138
+0.9254115675062833 0.15062761506272548 0.9254115675062833 0.15062761506272548 0.35609363972963193
+0.9288019508014522 0.14853556485352037 0.9288019508014521 0.14853556485352037 0.3541908746899187
+0.9321923340966212 0.14644351464431526 0.9321923340966212 0.14644351464431526 0.352636789489686
+0.9355827173917901 0.14435146443511016 0.9355827173917902 0.14435146443511016 0.351379835430349
+0.938973100686959 0.14225941422590505 0.938973100686959 0.14225941422590505 0.35035413756174766
+0.942363483982128 0.14016736401669994 0.9423634839821279 0.14016736401669994 0.3494842125687844
+0.9457538672772969 0.13807531380749483 0.9457538672772969 0.13807531380749483 0.34869044148803613
+0.9491442505724659 0.13598326359828972 0.949144250572466 0.13598326359828972 0.34789490810094903
+0.9525346338676348 0.1338912133890846 0.9525346338676348 0.1338912133890846 0.34702723484539644
+0.9559250171628038 0.1317991631798795 0.9559250171628036 0.1317991631798795 0.34603009746468466
+0.9593154004579727 0.1297071129706744 0.9593154004579727 0.1297071129706744 0.34486415815320925
+0.9627057837531416 0.12761506276146928 0.9627057837531418 0.12761506276146928 0.34351220787252196
+0.9660961670483106 0.12552301255226417 0.9660961670483106 0.12552301255226417 0.3419823406380697
+0.9694865503434795 0.12343096234305906 0.9694865503434794 0.12343096234305906 0.3403099916543673
+0.9728769336386485 0.1213389121338539 0.9728769336386485 0.12133891213385391 0.3385586600857793
+0.9762673169338175 0.11924686192464874 0.9762673169338175 0.11924686192464874 0.33681911613336535
+0.9796577002289864 0.11715481171544366 0.9796577002289864 0.11715481171544366 0.33520687863998794
+0.9830480835241554 0.11506276150623851 0.9830480835241554 0.11506276150623851 0.3338577686228294
+0.9864384668193242 0.11297071129703351 0.9864384668193242 0.11297071129703351 0.332921425375928
+0.9898288501144932 0.1108786610878284 0.9898288501144933 0.1108786610878284 0.332552841265029
+0.9932192334096621 0.10878661087862329 0.9932192334096621 0.10878661087862329 0.33290223789301954
+0.11297071129707102 0.9932192334096621 0.11297071129707102 0.9932192334096621 0.09838656767648822
+0.11506276150627602 0.9898288501144933 0.11506276150627602 0.9898288501144933 0.10019142978889332
+0.11715481171548099 0.9864384668193243 0.11715481171548099 0.9864384668193243 0.10229525386375686
+0.11924686192468598 0.9830480835241553 0.11924686192468599 0.9830480835241552 0.10463243449663355
+0.12133891213389093 0.9796577002289866 0.12133891213389093 0.9796577002289865 0.1071394167339375
+0.123430962343096 0.9762673169338176 0.12343096234309602 0.9762673169338177 0.10975668016307917
+0.12552301255230106 0.9728769336386486 0.12552301255230106 0.9728769336386486 0.11242991377066129
+0.1276150627615061 0.9694865503434795 0.1276150627615061 0.9694865503434794 0.11511054216984952
+0.12970711297071114 0.9660961670483107 0.12970711297071114 0.9660961670483107 0.11775578022088805
+0.13179916317991616 0.9627057837531421 0.13179916317991616 0.9627057837531421 0.1203283766354718
+0.1338912133891212 0.9593154004579731 0.13389121338912122 0.959315400457973 0.1227961770061091
+0.13598326359832624 0.9559250171628042 0.13598326359832624 0.9559250171628042 0.1251316047461806
+0.13807531380753116 0.9525346338676353 0.13807531380753116 0.9525346338676354 0.12731113041707418
+0.14016736401673605 0.9491442505724663 0.14016736401673605 0.9491442505724663 0.1293147776392398
+0.14225941422594088 0.9457538672772974 0.14225941422594088 0.9457538672772973 0.1311256969692268
+0.1443514644351457 0.9423634839821283 0.1443514644351457 0.9423634839821283 0.13272982672198838
+0.14644351464435076 0.9389731006869594 0.14644351464435076 0.9389731006869594 0.13411565056356609
+0.14853556485355598 0.9355827173917906 0.14853556485355598 0.9355827173917906 0.1352740548081538
+0.1506276150627616 0.9321923340966213 0.1506276150627616 0.9321923340966213 0.13619828299019734
+0.1527196652719676 0.9288019508014526 0.1527196652719676 0.9288019508014526 0.1368839809334047
+0.15481171548117392 0.9254115675062842 0.15481171548117392 0.9254115675062842 0.13732932185434651
+0.1569037656903807 0.922021184211116 0.1569037656903807 0.922021184211116 0.13753519778236126
+0.15899581589958792 0.9186308009159486 0.15899581589958792 0.9186308009159486 0.1375054605969367
+0.16108786610879558 0.9152404176207827 0.16108786610879558 0.9152404176207828 0.13724719317667497
+0.1631799163180033 0.9118500343256182 0.1631799163180033 0.9118500343256182 0.13677098841309188
+0.16527196652721043 0.9084596510304572 0.16527196652721043 0.9084596510304571 0.13609121101437924
+0.1673640167364144 0.9050692677352973 0.1673640167364144 0.9050692677352973 0.13522621395541543
+0.169456066945612 0.9016788844401442 0.169456066945612 0.9016788844401443 0.13419847809323682
+0.17154811715480844 0.8982885011449837 0.17154811715480844 0.8982885011449838 0.13303464006943402
+0.17364016736399693 0.8948981178498219 0.17364016736399693 0.8948981178498219 0.1317653706601376
+0.17573221757319166 0.8915077345546599 0.17573221757319166 0.8915077345546599 0.13042506406819585
+0.1778242677824038 0.8881173512594952 0.1778242677824038 0.8881173512594952 0.12905129961944248
+0.17991631799163357 0.8847269679643386 0.17991631799163357 0.8847269679643386 0.12768404279055165
+0.18200836820088062 0.8813365846691913 0.18200836820088062 0.8813365846691913 0.12636456465686907
+0.18410041841014105 0.8779462013740827 0.18410041841014105 0.8779462013740827 0.1251340797144064
+0.18619246861942398 0.8745558180789894 0.18619246861942398 0.8745558180789894 0.12403213254611091
+0.18828451882867336 0.8711654347839355 0.18828451882867336 0.8711654347839355 0.12309480266199067
+0.1903765690380114 0.8677750514889211 0.1903765690380114 0.8677750514889212 0.12235283934680745
+0.19246861924740033 0.8643846681939134 0.19246861924740033 0.8643846681939135 0.12182987609987302
+0.19456066945692382 0.8609942848990898 0.19456066945692382 0.8609942848990898 0.1215408967018758
+0.1966527196666427 0.8576039016045126 0.1966527196666427 0.8576039016045126 0.12149112280929654
+0.19874476987657663 0.8542135183105809 0.19874476987657663 0.8542135183105809 0.12167546139701156
+0.20083682008616557 0.8508231350168874 0.20083682008616557 0.8508231350168874 0.12207859086101037
+0.202928870295226 0.847432751724495 0.20292887029522602 0.847432751724495 0.12267568738243088
+0.20502092050383533 0.8440423684315249 0.20502092050383533 0.8440423684315249 0.12343371640985383
+0.207112970712328 0.8406519851389177 0.207112970712328 0.8406519851389177 0.12431315822424531
+0.20920502092229135 0.8372616018472696 0.20920502092229135 0.8372616018472696 0.1252700099527995
+0.21129707113538973 0.8338712185576421 0.21129707113538973 0.8338712185576421 0.12625790497337233
+0.21338912135325183 0.8304808352720231 0.2133891213532518 0.8304808352720231 0.12723021071758364
+0.2154811715750352 0.8270904519952453 0.21548117157503519 0.8270904519952452 0.12814199967625292
+0.21757322180081365 0.8237000687287748 0.21757322180081365 0.8237000687287747 0.1289518230702894
+0.219665272022936 0.8203096854776565 0.21966527202293598 0.8203096854776565 0.1296232549870443
+0.22175732220875533 0.8169193022316673 0.22175732220875535 0.8169193022316673 0.13012622030701193
+0.2238492305453371 0.813528926802372 0.2238492305453371 0.8135289268023719 0.1304379838975491
+0.22594098633877788 0.81013860783726 0.22594098633877788 0.81013860783726 0.13054418293361528
+0.22803256864686583 0.8067484559760433 0.22803256864686583 0.8067484559760433 0.1304393575683731
+0.2301239359025535 0.8033584639689559 0.2301239359025535 0.8033584639689559 0.13012726451503998
+0.23221458058285735 0.7999689842472654 0.23221458058285735 0.7999689842472654 0.12962103329571714
+0.23430390247694746 0.7965810123702309 0.23430390247694746 0.7965810123702309 0.12894370237185457
+0.2363925075228208 0.7931942984769845 0.2363925075228208 0.7931942984769845 0.12812769341190514
+0.2384816980518808 0.7898074413381405 0.23848169805188082 0.7898074413381405 0.12721363719107828
+0.2405722516588892 0.7864198434587927 0.2405722516588892 0.7864198434587927 0.1262495361554997
+0.24266477300875958 0.7830330714628427 0.24266477300875958 0.7830330714628427 0.12529127528693249
+0.2447603381943481 0.7796521403655684 0.2447603381943481 0.7796521403655684 0.12440189089369381
+0.24685901481457373 0.7762800245112293 0.24685901481457373 0.7762800245112293 0.12364310433322194
+0.24895865463169156 0.7729278627284554 0.24895865463169156 0.7729278627284554 0.12307837764808206
+0.25105380061865074 0.7696028832452897 0.25105380061865074 0.7696028832452897 0.12275855983418715
+0.2767601901120396 0.7356959069980732 0.2767601901120396 0.7356959069980732 0.14183260843366818
+0.27473487918868533 0.7388528489120766 0.2747348791886854 0.7388528489120766 0.13949413536881353
+0.2531227273283257 0.7663198284142466 0.2531227273283257 0.7663198284142466 0.12271170834789247
+0.2550996441824863 0.7631291427509466 0.2550996441824864 0.7631291427509465 0.12292714717645091
+0.257160913031837 0.7600809823548519 0.257160913031837 0.7600809823548519 0.12358138797047029
+0.2589742501701959 0.7570747849404725 0.2589742501701959 0.7570747849404725 0.1242818457624041
+0.26081570979501945 0.7540674040412786 0.26081570979501945 0.7540674040412786 0.12529570894949574
+0.27270332253268875 0.7419825951836794 0.27270332253268875 0.7419825951836794 0.13721153985136417
+0.264567151578849 0.7541395623583238 0.264567151578849 0.7541395623583238 0.12957846277514473
+0.2665183287160281 0.7512036277428138 0.26651832871602815 0.7512036277428137 0.1310996533267227
+0.2706520081026087 0.7451059686078781 0.2706520081026087 0.7451059686078781 0.13501942263282538
+0.2685797842563439 0.7482089342116144 0.2685797842563438 0.7482089342116144 0.13296196103375088
+0.2787986101620133 0.7325028088434591 0.2787986101620133 0.7325028088434591 0.14420058247565457
+0.28085601698616525 0.7292759383217557 0.2808560169861653 0.7292759383217557 0.14656041392944827
+0.2854657307043275 0.7162303173472138 0.2854657307043275 0.7162303173472138 0.1504927128288366
+0.2956750852374992 0.7006068167664101 0.2956750852374992 0.7006068167664101 0.15646399724805102
+0.2874925030998749 0.7130671166776898 0.2874925030998749 0.7130671166776898 0.15211896787968446
+0.2894827227186064 0.7098824218387855 0.28948272271860637 0.7098824218387855 0.15347014032772222
+0.29337063223913107 0.7036137851899789 0.2933706322391311 0.7036137851899787 0.15539942087325528
+0.2913534596338915 0.7065847963102434 0.2913534596338914 0.7065847963102434 0.15439728347869439
+0.2829133355786584 0.7260587103490876 0.2829133355786584 0.7260587103490876 0.14884304973945825
+0.2869920362463437 0.7196152354271307 0.2869920362463437 0.7196152354271307 0.15295771274970082
+0.284955494704774 0.7228192204584803 0.28495549470477405 0.7228192204584803 0.15098224246391204
+0.3114130049039794 0.6816647030787387 0.3114130049039794 0.6816647030787387 0.16150375379784146
+0.3093193700444963 0.6848260254148972 0.3093193700444963 0.6848260254148971 0.1614401246049402
+0.30723538527435595 0.688002946411729 0.30723538527435595 0.688002946411729 0.16138671178744088
+0.30516831748873446 0.691193736259368 0.30516831748873446 0.691193736259368 0.16129881137801347
+0.29919494188557527 0.7007427777576392 0.29919494188557527 0.7007427777576392 0.16048532361599108
+0.3011674175858556 0.697581411327628 0.3011674175858556 0.697581411327628 0.16091379755363752
+0.30313463067356694 0.6943889107840193 0.30313463067356694 0.6943889107840193 0.16114215447916336
+0.3190672781044759 0.6753702319035445 0.3190672781044759 0.6753702319035445 0.1669480954639884
+0.31704813467021925 0.6784985116804969 0.31704813467021925 0.6784985116804969 0.1665927326477258
+0.3150204334724977 0.6816452172082491 0.3150204334724977 0.6816452172082491 0.16635068377397275
+0.32103487711273154 0.672273661437355 0.32103487711273154 0.6722736614373551 0.16741319562868093
+0.3231015439909582 0.6691936908494425 0.3231015439909582 0.6691936908494425 0.1682466157593063
+0.3414295317378375 0.640469271849127 0.3414295317378375 0.640469271849127 0.1889978432324293
+0.3358566487518697 0.6433657997687279 0.3358566487518697 0.6433657997687279 0.17659536377540985
+0.32976494341302526 0.6529864189333563 0.32976494341302526 0.6529864189333563 0.1685719976315108
+0.3337742903177688 0.6465156238880848 0.3337742903177688 0.6465156238880848 0.17338233790680838
+0.3318011174921494 0.6497731152450135 0.3318011174921494 0.6497731152450134 0.1708730694731566
+0.3393185092868435 0.6436017616005847 0.33931850928684343 0.6436017616005847 0.18501182002562266
+0.3251582688597307 0.6660633106783804 0.3251582688597307 0.6660633106783803 0.16926679162885608
+0.32721396950986315 0.6628460205657966 0.3272139695098631 0.6628460205657966 0.17051224834637038
+0.329231354847559 0.6596207074885555 0.329231354847559 0.6596207074885555 0.17201071993472986
+0.33126239228682125 0.6563834753090045 0.33126239228682125 0.6563834753090045 0.17387921752156485
+0.3532709061326631 0.6275059641583637 0.3532709061326631 0.6275059641583637 0.21867850607233616
+0.35124001847876873 0.6307742984677344 0.35124001847876873 0.6307742984677344 0.21315549411515433
+0.34917229784089004 0.6340834148986871 0.34917229784089004 0.6340834148986872 0.20788700483993325
+0.34493940409061635 0.6406179601862972 0.34493940409061635 0.6406179601862972 0.19821156134088577
+0.3470322383241534 0.6373931773197491 0.34703223832415336 0.6373931773197491 0.2027912752347166
+0.3853027738100474 0.4912444090507356 0.3853027738100474 0.4912444090507356 0.4470289517468707
+0.3824613553797602 0.4936148166262858 0.3824613553797602 0.49361481662628576 0.45090138836470045
+0.37900141723671665 0.4972420880179871 0.37900141723671665 0.4972420880179871 0.45301871153574597
+0.38161043697005664 0.49600456744294397 0.38161043697005664 0.49600456744294397 0.45534886603465974
+0.3763127192248355 0.5014557036792556 0.3763127192248355 0.5014557036792556 0.4502355056949834
+0.37907611710230454 0.4998078647471662 0.37907611710230454 0.49980786474716615 0.45477121532192083
+0.3741898008302751 0.5035595242601028 0.3741898008302751 0.5035595242601029 0.4455468654476444
+0.372767906217188 0.5056665846799151 0.372767906217188 0.5056665846799151 0.4403745053380822
+0.376937975339715 0.5035412254347763 0.376937975339715 0.5035412254347763 0.4489757839607623
+0.3696714269281818 0.5097889564508036 0.3696714269281818 0.5097889564508035 0.4274396673801852
+0.37314072902557216 0.508190641306341 0.37314072902557216 0.508190641306341 0.4347150672778782
+0.3690533407433863 0.5129250040773821 0.3690533407433863 0.5129250040773821 0.41630118988460635
+0.36593759922302044 0.5152715715528101 0.3659375992230204 0.5152715715528101 0.40645239354231893
+0.3643709915903816 0.5181826959291231 0.3643709915903816 0.5181826959291231 0.3938929503903349
+0.36910994945250275 0.5158710730901441 0.36910994945250275 0.5158710730901441 0.40404285699840276
+0.3645127910491744 0.5211105704421862 0.3645127910491744 0.5211105704421862 0.3802974725491178
+0.3610881492090275 0.5232808379815231 0.3610881492090275 0.5232808379815231 0.3713352612967999
+0.357282674003044 0.5331222152999404 0.357282674003044 0.5331222152999404 0.3249619404451342
+0.3610400657000739 0.5271891959923635 0.3610400657000739 0.5271891959923635 0.3518340404167023
+0.35908174325916165 0.5306102031159077 0.3590817432591616 0.5306102031159076 0.3360036596412719
+0.3575319511250721 0.5358857663648171 0.3575319511250721 0.5358857663648172 0.3106597111667177
+0.35762766008428426 0.5390604747366863 0.35762766008428426 0.5390604747366864 0.2946003505446259
+0.35480285982109727 0.5413849013847924 0.35480285982109727 0.5413849013847924 0.2873001305601481
+0.354956252578083 0.5448199730534037 0.354956252578083 0.5448199730534037 0.27126853957465286
+0.3522135335145536 0.5511017228671556 0.3522135335145536 0.5511017228671556 0.24877280701701324
+0.3550891140166115 0.5486151815342325 0.3550891140166115 0.5486151815342325 0.2550242318464097
+0.3525762784206585 0.5548096532837905 0.3525762784206585 0.5548096532837904 0.23523455374568195
+0.3502868001655744 0.5612282539456297 0.3502868001655744 0.5612282539456297 0.21823293066919172
+0.3530410861626791 0.5585024396126638 0.3530410861626791 0.5585024396126638 0.22390878773996725
+0.3508575509675958 0.5650342762205779 0.3508575509675958 0.5650342762205779 0.209710615613078
+0.3482602382444063 0.5722540952271613 0.3482602382444063 0.5722540952271613 0.1979460535707969
+0.3515090539999234 0.5689662919051812 0.3515090539999233 0.5689662919051813 0.20381591263086118
+0.3497656393307134 0.5757255500505984 0.3497656393307134 0.5757255500505983 0.19611221735665815
+0.34817456548401954 0.5818135713225322 0.34817456548401954 0.5818135713225322 0.19136639282569937
+0.3489697221358004 0.5848494010256005 0.3489697221358004 0.5848494010256005 0.1925417219168173
+0.3506857675484616 0.5791850216695891 0.3506857675484616 0.5791850216695891 0.19614437424779194
+0.34984406511076827 0.5880135184765004 0.3498440651107683 0.5880135184765004 0.1949908616523726
+0.34871159709339594 0.5937106921141246 0.3487115970933959 0.5937106921141247 0.19389585823490726
+0.3498179753023442 0.596776053490672 0.3498179753023442 0.596776053490672 0.1981510783078864
+0.35105439807186656 0.590728260077117 0.35105439807186656 0.590728260077117 0.19906090618268804
+0.3509813225350234 0.5998497298438117 0.3509813225350234 0.5998497298438118 0.20300859841274385
+0.3499984345159321 0.6058557491291346 0.3499984345159321 0.6058557491291346 0.20253889721315768
+0.35134796815051184 0.6089058102869078 0.35134796815051184 0.6089058102869078 0.20798043588564988
+0.35220420477739384 0.6028896896698537 0.35220420477739384 0.6028896896698538 0.20828373493021315
+0.3527629003057366 0.6119720417728584 0.3527629003057366 0.6119720417728584 0.2136331444289867
+0.3521096983145379 0.6181573870185054 0.3521096983145379 0.6181573870185054 0.21322030446507775
+0.35367018371696096 0.6212236386981896 0.35367018371696096 0.6212236386981896 0.21885560454479044
+0.3542212804112954 0.6150223568635876 0.3542212804112954 0.6150223568635876 0.21931838713089688
+0.3552890825950592 0.6242698908896055 0.3552890825950592 0.6242698908896055 0.22450933523323466
+0.3891838744949286 0.4936543213414967 0.3891838744949286 0.4936543213414967 0.46483189705343314
+0.3929403614990661 0.4959005739912798 0.3929403614990661 0.4959005739912798 0.48415334080223976
+0.5275411619107425 0.38836080524144617 0.5275411619107425 0.3883608052414461 0.40018337675174287
+0.5304126784188428 0.3863395016169827 0.5304126784188429 0.38633950161698266 0.4017845471597949
+0.5347340371059978 0.384188021052357 0.5347340371059978 0.384188021052357 0.42259122960539436
+0.5329673442220784 0.38631267836668 0.5329673442220784 0.38631267836668 0.4200876100076963
+0.5394881852592504 0.38230646575845006 0.5394881852592502 0.38230646575845 0.46007260863161653
+0.537191815246263 0.3848727344084384 0.537191815246263 0.3848727344084384 0.45101636117418803
+0.5424387237525963 0.38154241294243296 0.5424387237525963 0.38154241294243296 0.4891527287421287
+0.5415785310353652 0.38405075761177626 0.5415785310353652 0.38405075761177626 0.49489048476838293
+0.5486737556159772 0.37859589988874837 0.5486737556159772 0.37859589988874837 0.5449271549716158
+0.545594923525868 0.3809741734171589 0.545594923525868 0.38097417341715895 0.5234070292752363
+0.5571580316485841 0.3756325368288727 0.5571580316485841 0.3756325368288727 0.6227659901935955
+0.5543212655719102 0.37771653356845536 0.5543212655719102 0.37771653356845536 0.6052490888127652
+0.551918256073029 0.38032283939285894 0.551918256073029 0.3803228393928589 0.5952108906720225
+0.5754093168573954 0.37235386655954694 0.5754093168573954 0.37235386655954694 0.7629143959034169
+0.5601800311273227 0.37725954702827186 0.5601800311273227 0.37725954702827186 0.6658257744279593
+0.5630142045746903 0.37512821399925783 0.5630142045746903 0.37512821399925783 0.6796116133279525
+0.5721401674023491 0.37350796687150184 0.5721401674023491 0.37350796687150184 0.7471129619516437
+0.5689147120207907 0.37483995897219113 0.5689147120207907 0.37483995897219113 0.7305009340719244
+0.5660704837757412 0.37667417137172504 0.5660704837757412 0.37667417137172504 0.7185098338223218
+0.5877569517497981 0.3716296057120864 0.5877569517497981 0.3716296057120864 0.8218755227890958
+0.5844365204247565 0.37258553145448703 0.5844365204247565 0.37258553145448703 0.8138126557487375
+0.5811968890433303 0.3735354237310055 0.5811968890433303 0.3735354237310055 0.8039702793781028
+0.5780153261000718 0.3747774913980657 0.5780153261000719 0.3747774913980657 0.794081587860256
+0.5289929677174787 0.3930917663330774 0.5289929677174787 0.39309176633307746 0.43781787615386086
+0.5303367132262196 0.39743219483212394 0.5303367132262196 0.39743219483212394 0.47462605297308474
+0.5901876332434055 0.3744777063421778 0.5901876332434055 0.3744777063421778 0.8440399064481156
+0.5934670027071962 0.3734722518974434 0.5934670027071962 0.3734722518974434 0.8470837842110274
+0.5968047821988692 0.37259810730924836 0.5968047821988692 0.37259810730924836 0.8490596551446794
+0.6002718199050051 0.37185641366542543 0.6002718199050051 0.37185641366542543 0.8498773672006198
+0.6284147141475486 0.36189395184275774 0.6284147141475486 0.36189395184275774 0.7947211655133667
+0.6146680900265871 0.36482761157249066 0.6146680900265871 0.36482761157249066 0.8248614214688889
+0.6248671377062778 0.36253564613176564 0.6248671377062777 0.36253564613176564 0.8038117644082251
+0.6213911918437527 0.36323367434734694 0.6213911918437526 0.36323367434734694 0.811860306328537
+0.6179895359613359 0.3639773545545584 0.6179895359613359 0.3639773545545584 0.8188236686476325
+0.6113605810127918 0.365899073175144 0.6113605810127919 0.365899073175144 0.830499479087185
+0.604836887413486 0.3674804458297051 0.604836887413486 0.3674804458297051 0.8363240565194072
+0.6082056858645871 0.36673492120367984 0.6082056858645871 0.36673492120367984 0.8342209380559682
+0.6037017264807315 0.37111291925654055 0.6037017264807315 0.37111291925654055 0.8488368738701276
+0.6727914286737087 0.3158481995961436 0.6727914286737087 0.3158481995961436 0.6603845712513662
+0.6623489732103401 0.3167510683943924 0.6623489732103401 0.3167510683943924 0.6726634512857581
+0.66583664456599 0.3165195028722651 0.66583664456599 0.3165195028722651 0.6688497376385794
+0.6693126095353167 0.3162058982199264 0.6693126095353167 0.31620589821992645 0.6647357201912735
+0.6569825240706496 0.32016007307832206 0.6569825240706496 0.32016007307832206 0.6814345569477566
+0.6517104002093449 0.32369681325808547 0.6517104002093449 0.32369681325808547 0.6912965116727471
+0.6468775577153472 0.32718771802780655 0.6468775577153472 0.3271877180278065 0.7015720432508674
+0.6421977678578437 0.3314888895681398 0.6421977678578435 0.3314888895681398 0.7143617153463487
+0.645322024619788 0.33005435619247214 0.645322024619788 0.33005435619247214 0.7079345153788776
+0.6428483253201254 0.3349891035154542 0.6428483253201254 0.3349891035154542 0.7195082907544241
+0.6414457692183659 0.33771893100367056 0.6414457692183659 0.33771893100367056 0.7263521878478439
+0.6400747363837832 0.3410189129094775 0.6400747363837832 0.34101891290947745 0.7343107720822436
+0.6387342345004288 0.34353907259350447 0.6387342345004288 0.34353907259350447 0.7409708537235384
+0.6500503173076652 0.3271300571562431 0.6500503173076652 0.32713005715624316 0.6979217979910538
+0.6552303012651607 0.3235566486663123 0.6552303012651607 0.32355664866631223 0.6871827825812654
+0.6605405133358175 0.32007889406832946 0.6605405133358175 0.32007889406832946 0.6775254268787365
+0.6763008356835355 0.3155854283102233 0.6763008356835355 0.3155854283102233 0.6558382386702845
+0.6798378662676715 0.31538647871096 0.6798378662676715 0.31538647871096 0.6510747190989856
+0.6834100467875572 0.31525112349093404 0.6834100467875572 0.31525112349093404 0.6460462879183907
+0.6870176310876265 0.31518664254337164 0.6870176310876265 0.31518664254337164 0.6407230549102322
+0.63910228163262 0.34682435818878354 0.6391022816326198 0.3468243581887836 0.7461639562660054
+0.6373726427939255 0.3507902696184771 0.6373726427939256 0.3507902696184771 0.7560229761844096
+0.6354918565405044 0.3544067744887523 0.6354918565405044 0.3544067744887523 0.7658877595150765
+0.6337402698299459 0.3578923781669899 0.6337402698299459 0.3578923781669899 0.7753552450519986
+0.6320326896568355 0.361324513470027 0.6320326896568355 0.361324513470027 0.7846358847656156
+0.6964930080388542 0.3120201321229948 0.6964930080388542 0.3120201321229948 0.6264726890476898
+0.6906688396705817 0.31516983659094683 0.6906688396705817 0.31516983659094683 0.6350720081801379
+0.6943691963246262 0.3151893705699184 0.6943691963246262 0.3151893705699184 0.6290707688483462
+0.7334308732211516 0.2791066841731917 0.7334308732211516 0.2791066841731917 0.5498017094396052
+0.7252024814327247 0.2846566358436584 0.7252024814327247 0.2846566358436584 0.5679144768391707
+0.7229979855097892 0.2877750150365885 0.7229979855097892 0.2877750150365885 0.5738628868913239
+0.717431663444108 0.2904770228200587 0.717431663444108 0.2904770228200588 0.5858449245869348
+0.7155806521750272 0.29343930347881664 0.7155806521750271 0.2934393034788166 0.5907518135144785
+0.7104326517638079 0.29692614464833034 0.710432651763808 0.2969261446483303 0.6017487511327767
+0.7136274371280891 0.2959981212398489 0.7136274371280891 0.2959981212398489 0.5953882522873003
+0.7208380895923862 0.2908409871451994 0.7208380895923862 0.2908409871451994 0.5796015181187743
+0.710545405732876 0.3004119892298851 0.710545405732876 0.3004119892298851 0.6023319850823666
+0.7087913766397946 0.3028537365984666 0.7087913766397946 0.30285373659846654 0.6058527274025404
+0.7041121981592589 0.3056947836651985 0.704112198159259 0.3056947836651985 0.6143430086225404
+0.707024017850717 0.30499849691724923 0.707024017850717 0.30499849691724923 0.6091697012810005
+0.702462325313564 0.30892656763478 0.7024623253135641 0.30892656763478005 0.6170520714645523
+0.7003159283843963 0.31204194027147814 0.7003159283843963 0.3120419402714782 0.6200678749639411
+0.7310943988518916 0.2820555284782455 0.7310943988518916 0.2820555284782455 0.5554642266398058
+0.7287930685275567 0.2851204765693492 0.7287930685275567 0.2851204765693492 0.5613481289901125
+0.7393080903243777 0.2768075260770399 0.7393080903243777 0.2768075260770399 0.5387606903113977
+0.7369979620136893 0.2797040449305387 0.7369979620136893 0.27970404493053863 0.5437242019181451
+0.7428779984116054 0.27721755020987754 0.7428779984116054 0.27721755020987754 0.5328837555253233
+0.745148775002174 0.2742677436672098 0.745148775002174 0.2742677436672098 0.5288016476759344
+0.7474123608387321 0.27131866349042005 0.7474123608387321 0.27131866349042005 0.5252872320098368
+0.7496729904901863 0.26839231814360887 0.7496729904901863 0.2683923181436088 0.5223780161924814
+0.75194519911657 0.2654828784289504 0.75194519911657 0.2654828784289504 0.520069866350812
+0.7542357778482076 0.2625230733730257 0.7542357778482076 0.2625230733730257 0.5183670788166421
+0.756498833368529 0.25970821695419116 0.756498833368529 0.25970821695419116 0.5172321885632954
+0.7593697906013336 0.2572256022399563 0.7593697906013336 0.2572256022399562 0.5159435651186558
+0.7626531404570566 0.25525206619344787 0.7626531404570566 0.25525206619344787 0.5145741494810023
+0.7660429547825285 0.25318551243257237 0.7660429547825284 0.25318551243257237 0.513553390626993
+0.7694548731778582 0.25110656752556504 0.7694548731778582 0.25110656752556504 0.5127928178056207
+0.7728529792184448 0.24900611812466045 0.7728529792184448 0.24900611812466042 0.5122114771409906
+0.7762450479049786 0.2469034480765383 0.7762450479049786 0.24690344807653827 0.511667086866022
+0.7796342688474587 0.24480400010085665 0.7796342688474587 0.24480400010085665 0.5110344727337256
+0.783022270413683 0.2427061704347476 0.783022270413683 0.2427061704347476 0.5102030194346073
+0.7864101399931794 0.24060977926835622 0.7864101399931794 0.24060977926835622 0.5090753902097785
+0.7897979340885088 0.23851432647324625 0.7897979340885088 0.23851432647324625 0.5075756373856883
+0.7931854671411459 0.23642281195901416 0.7931854671411459 0.23642281195901416 0.5056444688049259
+0.796572880623239 0.2343296227700483 0.796572880623239 0.2343296227700483 0.5032500072504856
+0.7999623019170844 0.2322323747510446 0.7999623019170844 0.2322323747510446 0.500377474933514
+0.8033539953882595 0.23013362007932522 0.8033539953882595 0.23013362007932522 0.4970334857737471
+0.8067459701613401 0.22803764275754124 0.8067459701613401 0.22803764275754124 0.4932480471936315
+0.8101372967711309 0.22594345264646756 0.810137296771131 0.22594345264646756 0.48907104439841115
+0.8135289187657083 0.22384937238490435 0.8135289187657083 0.22384937238490435 0.4845648620921242
+0.8169193020608772 0.2217573221756992 0.8169193020608772 0.2217573221756992 0.47980679772810825
+0.8203096853560461 0.21966527196649416 0.820309685356046 0.21966527196649419 0.47487918075885377
+0.823700068651215 0.21757322175728902 0.823700068651215 0.21757322175728902 0.46986934266538977
+0.8270904519463841 0.2154811715480839 0.8270904519463841 0.2154811715480839 0.46486388718702437
+0.8304808352415529 0.21338912133887877 0.8304808352415529 0.21338912133887877 0.4599441195635832
+0.8338712185367219 0.2112970711296737 0.8338712185367217 0.2112970711296737 0.4551817111118294
+0.8372616018318908 0.20920502092046858 0.8372616018318908 0.20920502092046858 0.4506348855327454
+0.8406519851270599 0.20711297071126347 0.8406519851270599 0.20711297071126347 0.4463453990211608
+0.8440423684222287 0.20502092050205833 0.8440423684222287 0.20502092050205833 0.4423365275678465
+0.8474327517173976 0.20292887029285328 0.8474327517173975 0.2029288702928533 0.43861223111227593
+0.8508231350125666 0.20083682008364814 0.8508231350125666 0.20083682008364814 0.4351575910423648
+0.8542135183077356 0.198744769874443 0.8542135183077356 0.198744769874443 0.43194048472480323
+0.8576039016029045 0.19665271966523792 0.8576039016029045 0.19665271966523792 0.42891433563893017
+0.8609942848980734 0.19456066945603284 0.8609942848980733 0.19456066945603287 0.4260217089234613
+0.8643846681932423 0.1924686192468277 0.8643846681932423 0.1924686192468277 0.4231984824147905
+0.8677750514884114 0.19037656903762257 0.8677750514884114 0.19037656903762257 0.42037829339635985
+0.8711654347835802 0.18828451882841746 0.8711654347835802 0.18828451882841746 0.4174969609153818
+0.8745558180787492 0.1861924686192124 0.874555818078749 0.18619246861921243 0.41449661697663004
+0.8779462013739181 0.18410041841000727 0.8779462013739181 0.18410041841000727 0.4113293268199714
+0.8813365846690872 0.18200836820080213 0.8813365846690872 0.18200836820080213 0.40796002604451936
+0.884726967964256 0.17991631799159702 0.884726967964256 0.17991631799159702 0.40436865234413183
+0.8881173512594249 0.17782426778239196 0.8881173512594248 0.177824267782392 0.40055139781950494
+0.8915077345545939 0.1757322175731868 0.8915077345545939 0.1757322175731868 0.3965210466451372
+0.8948981178497628 0.1736401673639817 0.8948981178497629 0.1736401673639817 0.39230639280387974
+0.8982885011449318 0.17154811715477658 0.8982885011449318 0.17154811715477658 0.3879507578657257
+0.9016788844401007 0.16945606694557147 0.9016788844401006 0.16945606694557147 0.3835096556258187
+0.9050692677352696 0.16736401673636636 0.9050692677352696 0.16736401673636636 0.37904768343659895
+0.9084596510304386 0.16527196652716125 0.9084596510304387 0.16527196652716125 0.3746347621186172
+0.9118500343256075 0.16317991631795614 0.9118500343256075 0.16317991631795614 0.3703418978903039
+0.9152404176207765 0.16108786610875103 0.9152404176207763 0.16108786610875103 0.36623669775429585
+0.9186308009159454 0.15899581589954592 0.9186308009159454 0.15899581589954592 0.36237892671944816
+0.9220211842111143 0.1569037656903408 0.9220211842111145 0.1569037656903408 0.35881643929812373
+0.9254115675062833 0.1548117154811357 0.9254115675062833 0.1548117154811357 0.3555818345924316
+0.9288019508014522 0.1527196652719306 0.9288019508014521 0.1527196652719306 0.35269016126906255
+0.9321923340966212 0.15062761506272548 0.9321923340966212 0.15062761506272548 0.3501379299061604
+0.9355827173917901 0.14853556485352037 0.9355827173917902 0.14853556485352037 0.3479035801783834
+0.938973100686959 0.14644351464431526 0.938973100686959 0.14644351464431526 0.34594941446611466
+0.942363483982128 0.14435146443511016 0.9423634839821279 0.14435146443511016 0.34422487018403686
+0.9457538672772969 0.14225941422590505 0.9457538672772969 0.14225941422590505 0.3426708837486046
+0.9491442505724659 0.14016736401669994 0.949144250572466 0.14016736401669994 0.3412250171926385
+0.9525346338676348 0.13807531380749483 0.9525346338676348 0.13807531380749483 0.3398269811513645
+0.9559250171628038 0.13598326359828972 0.9559250171628036 0.13598326359828972 0.3384241911520827
+0.9593154004579727 0.1338912133890846 0.9593154004579727 0.1338912133890846 0.33697702516609523
+0.9627057837531416 0.1317991631798795 0.9627057837531418 0.1317991631798795 0.33546349287177485
+0.9660961670483106 0.1297071129706744 0.9660961670483106 0.1297071129706744 0.33388306594536216
+0.9694865503434795 0.12761506276146928 0.9694865503434794 0.12761506276146928 0.3322594438461352
+0.9728769336386485 0.12552301255226417 0.9728769336386485 0.12552301255226417 0.33064203810534143
+0.9762673169338174 0.12343096234305906 0.9762673169338175 0.12343096234305906 0.3291059554929627
+0.9796577002289864 0.12133891213385392 0.9796577002289864 0.12133891213385394 0.3277502607781433
+0.9830480835241553 0.11924686192464883 0.9830480835241552 0.11924686192464883 0.3266943253989159
+0.9864384668193242 0.11715481171544373 0.9864384668193242 0.11715481171544373 0.3260721466775311
+0.9898288501144932 0.11506276150623862 0.9898288501144933 0.11506276150623862 0.32602467860556755
+0.9932192334096621 0.11297071129703351 0.9932192334096621 0.11297071129703351 0.32669046008000024
+0.11715481171548105 0.9932192334096621 0.11715481171548105 0.9932192334096621 0.10023750099106914
+0.11924686192468603 0.9898288501144933 0.11924686192468603 0.9898288501144933 0.10213458578877375
+0.12133891213389102 0.9864384668193242 0.12133891213389102 0.9864384668193242 0.10433515403767053
+0.12343096234309602 0.9830480835241553 0.12343096234309602 0.9830480835241552 0.10677569060262827
+0.12552301255230106 0.9796577002289865 0.12552301255230106 0.9796577002289865 0.10939433734868757
+0.1276150627615061 0.9762673169338175 0.1276150627615061 0.9762673169338175 0.11213268302718005
+0.12970711297071116 0.9728769336386486 0.12970711297071116 0.9728769336386486 0.1149368198327735
+0.13179916317991622 0.9694865503434795 0.13179916317991622 0.9694865503434794 0.11775781727289618
+0.13389121338912116 0.9660961670483107 0.13389121338912116 0.9660961670483107 0.12055177777049851
+0.13598326359832616 0.9627057837531421 0.13598326359832616 0.9627057837531421 0.12327962288691245
+0.13807531380753116 0.959315400457973 0.13807531380753116 0.959315400457973 0.12590673103575054
+0.14016736401673605 0.9559250171628039 0.14016736401673605 0.9559250171628039 0.12840251765782792
+0.14225941422594104 0.9525346338676348 0.14225941422594104 0.9525346338676348 0.13074002228606976
+0.144351464435146 0.9491442505724659 0.144351464435146 0.949144250572466 0.1328955455007438
+0.14644351464435099 0.945753867277297 0.14644351464435099 0.945753867277297 0.13484836236928532
+0.14853556485355615 0.9423634839821281 0.14853556485355615 0.9423634839821281 0.13658052674715482
+0.1506276150627615 0.9389731006869592 0.15062761506276148 0.9389731006869592 0.13807677180581712
+0.15271966527196715 0.9355827173917902 0.15271966527196715 0.9355827173917902 0.139324505484872
+0.1548117154811729 0.9321923340966215 0.1548117154811729 0.9321923340966215 0.1403138945585255
+0.15690376569037892 0.928801950801453 0.15690376569037892 0.928801950801453 0.1410380271558032
+0.15899581589958525 0.9254115675062851 0.15899581589958525 0.9254115675062851 0.14149314050453832
+0.16108786610879178 0.9220211842111178 0.16108786610879178 0.9220211842111178 0.1416788980969642
+0.16317991631799822 0.9186308009159513 0.16317991631799822 0.9186308009159513 0.14159869816894458
+0.16527196652720424 0.9152404176207868 0.16527196652720424 0.9152404176207868 0.1412599931316427
+0.16736401673640844 0.9118500343256226 0.16736401673640844 0.9118500343256226 0.14067459717055228
+0.16945606694560897 0.9084596510304622 0.16945606694560897 0.9084596510304622 0.1398589564096331
+0.17154811715480867 0.9050692677352975 0.17154811715480867 0.9050692677352975 0.13883435266375643
+0.1736401673640038 0.9016788844401321 0.1736401673640038 0.9016788844401321 0.13762700785325452
+0.17573221757320215 0.8982885011449661 0.17573221757320215 0.8982885011449661 0.13626805185629776
+0.17782426778240967 0.8948981178497984 0.17782426778240967 0.8948981178497984 0.13479331252053528
+0.17991631799163077 0.8915077345546362 0.17991631799163077 0.8915077345546362 0.13324288386322883
+0.18200836820086583 0.8881173512594822 0.18200836820086583 0.8881173512594822 0.13166042895671626
+0.18410041841011016 0.8847269679643491 0.18410041841011016 0.8847269679643491 0.1300921801290398
+0.18619246861935698 0.8813365846692175 0.18619246861935698 0.8813365846692175 0.12858561386389958
+0.1882845188285928 0.8779462013741067 0.1882845188285928 0.8779462013741067 0.12718780385829698
+0.19037656903786374 0.8745558180790082 0.19037656903786374 0.8745558180790082 0.12594349425985432
+0.1924686192471683 0.8711654347839208 0.1924686192471683 0.8711654347839207 0.12489298411834293
+0.19456066945654146 0.8677750514889335 0.19456066945654146 0.8677750514889336 0.12406996682127129
+0.19665271966598682 0.8643846681940534 0.19665271966598682 0.8643846681940534 0.12349951318539203
+0.19874476987547962 0.8609942848995044 0.19874476987547962 0.8609942848995044 0.12319640975941155
+0.20083682008508896 0.8576039016053533 0.20083682008508896 0.8576039016053533 0.12316405240332322
+0.20292887029388149 0.8542135183113886 0.20292887029388149 0.8542135183113885 0.1233940442410925
+0.20502092050306195 0.8508231350173446 0.20502092050306195 0.8508231350173446 0.12386656308773182
+0.20711297071146725 0.847432751723458 0.20711297071146725 0.847432751723458 0.12455146476653423
+0.20920502092073986 0.8440423684299668 0.20920502092073986 0.8440423684299668 0.12540999991483456
+0.21129707113203763 0.8406519851373515 0.21129707113203763 0.8406519851373515 0.1263969629648979
+0.213389121345942 0.837261601846807 0.213389121345942 0.837261601846807 0.12746307087572828
+0.21548117156238797 0.8338712185613115 0.21548117156238797 0.8338712185613115 0.12855738254052343
+0.21757322177770563 0.8304808352794532 0.21757322177770563 0.8304808352794532 0.12962960727089504
+0.2196652719920537 0.8270904520100484 0.21966527199205374 0.8270904520100483 0.1306321987289435
+0.22175732219948902 0.8237000687231442 0.22175732219948904 0.8237000687231442 0.13152217846199887
+0.22384937241300085 0.8203096854468047 0.22384937241300085 0.8203096854468047 0.13226267294702662
+0.22594142262289885 0.8169193021687406 0.22594142262289885 0.8169193021687405 0.13282416386647347
+0.22803347284658512 0.813528918897525 0.22803347284658512 0.813528918897525 0.1331854655966613
+0.23012552312271928 0.8101385356237046 0.23012552312271928 0.8101385356237046 0.1333344411097593
+0.23221749871214678 0.8067481629497374 0.23221749871214678 0.8067481629497374 0.13326843389247275
+0.23430937453119405 0.8033578079218034 0.23430937453119408 0.8033578079218034 0.1329946268673037
+0.2364006318711296 0.799967648623176 0.2364006318711296 0.799967648623176 0.13252980428389918
+0.23849080583747248 0.796578048925384 0.23849080583747248 0.796578048925384 0.1319005604176736
+0.24058070558717778 0.7931888740282226 0.24058070558717778 0.7931888740282226 0.13114325231244273
+0.24267151584349655 0.7897997895046744 0.24267151584349653 0.7897997895046744 0.1303025906926026
+0.24476339983243334 0.7864114815996568 0.2447633998324333 0.7864114815996568 0.12943023945952495
+0.24685631295057794 0.7830262502321491 0.24685631295057794 0.7830262502321491 0.12858416891790883
+0.24895035914377409 0.7796495368652488 0.24895035914377409 0.7796495368652488 0.1278274643424124
+0.2510447066372123 0.7762875283931839 0.2510447066372123 0.7762875283931839 0.12722242730339764
+0.2804049725785278 0.7357895740707807 0.2804049725785278 0.7357895740707807 0.1464520885531714
+0.2531361909887462 0.7729524449096657 0.2531361909887462 0.7729524449096657 0.12682861567365708
+0.25521608471319884 0.7696571755075069 0.25521608471319884 0.7696571755075069 0.12669099035411532
+0.27835414530508257 0.73893325372135 0.27835414530508257 0.73893325372135 0.14407954712364893
+0.27631708857172643 0.7420665819107312 0.2763170885717265 0.7420665819107312 0.14176974441301915
+0.2572662324495872 0.7664137257253341 0.2572662324495872 0.7664137257253341 0.12683009819587285
+0.25928053666783096 0.7632403601876959 0.25928053666783096 0.7632403601876959 0.12726050559077076
+0.2611318042456217 0.760139017618077 0.2611318042456217 0.760139017618077 0.1278289206952432
+0.2627848560353213 0.7571200924504411 0.26278485603532126 0.7571200924504411 0.12849422119089624
+0.2742888971890315 0.7451832403278225 0.27428889718903143 0.7451832403278225 0.13956377869994865
+0.26634014077505563 0.757081728393084 0.26634014077505563 0.757081728393084 0.13256992804273324
+0.2681774655649131 0.7542341786952947 0.2681774655649131 0.7542341786952947 0.13385219907205856
+0.27017919331565315 0.7513028918568749 0.27017919331565315 0.7513028918568749 0.13553136289823284
+0.2722346354024717 0.7482789393018426 0.27223463540247167 0.7482789393018426 0.1374636280292549
+0.28247146745744556 0.7326071317463985 0.28247146745744556 0.7326071317463985 0.1488433114132862
+0.2845029931096053 0.7294244837573339 0.2845029931096053 0.7294244837573339 0.15114807555685392
+0.2890122433636476 0.7164311239181864 0.28901224336364756 0.7164311239181864 0.15472840640834276
+0.29715357409096554 0.7038764123598649 0.2971535740909656 0.7038764123598648 0.15976668705148464
+0.29101942292708216 0.7132519149761852 0.29101942292708216 0.7132519149761852 0.15627493293013206
+0.29302841648388195 0.7100547613598548 0.29302841648388195 0.7100547613598548 0.15759153922828853
+0.29502180985312376 0.7069179635386159 0.2950218098531238 0.7069179635386159 0.15869154627660811
+0.2865358677307199 0.7262075806330711 0.2865358677307199 0.7262075806330711 0.15336400805106123
+0.290554958681807 0.7198008036323817 0.290554958681807 0.7198008036323817 0.1573225266419069
+0.2885505202000905 0.7229963977736126 0.2885505202000905 0.7229963977736126 0.15542930244824602
+0.3129796317953016 0.6848112982065943 0.3129796317953016 0.6848112982065943 0.1661707420884866
+0.3109330746745676 0.6879952300663806 0.3109330746745676 0.6879952300663806 0.16601247029364763
+0.3088876052870101 0.6911934507064376 0.30888760528701015 0.6911934507064376 0.16583262372021934
+0.30684821840061643 0.6944066998500998 0.30684821840061643 0.6944066998500998 0.16559149458281364
+0.30071124753326967 0.7040106808332388 0.30071124753326967 0.7040106808332388 0.1639829376782875
+0.302793572397695 0.7008415389777589 0.30279357239769494 0.7008415389777589 0.16475074017263194
+0.3048098576012779 0.697637211544073 0.3048098576012779 0.6976372115440731 0.16524224689565223
+0.32252200735437153 0.6753094643218227 0.32252200735437153 0.6753094643218227 0.17240352782419247
+0.3205578586813107 0.6784522585013777 0.3205578586813107 0.6784522585013777 0.17189138133807147
+0.3185855473120576 0.6815840538103114 0.3185855473120576 0.6815840538103114 0.17148372031140777
+0.3165972011681368 0.6847523062312745 0.3165972011681368 0.6847523062312745 0.17116999717657325
+0.3245508981380488 0.6723296346470589 0.32455089813804877 0.6723296346470589 0.17334220187559699
+0.32666282098646604 0.6693679818771154 0.3266628209864661 0.6693679818771154 0.17464943945549347
+0.3259318103090537 0.6752933886205165 0.32593181030905377 0.6752933886205165 0.17820327323017193
+0.34277883612134696 0.6436830026101306 0.3427788361213469 0.6436830026101306 0.19372880785990376
+0.337305281230329 0.646795097956135 0.337305281230329 0.6467950979561349 0.1816645322326836
+0.33330894310824427 0.6531746254462153 0.33330894310824427 0.6531746254462153 0.17616702709216622
+0.3353356801149083 0.6499781889245169 0.3353356801149083 0.6499781889245169 0.17878765127403504
+0.34071813302985976 0.6469122500493838 0.3407181330298598 0.6469122500493838 0.18996557480850876
+0.3287469754907414 0.6662513527172238 0.32874697549074133 0.6662513527172238 0.1760520661778682
+0.33076081954691555 0.6630318310058424 0.33076081954691555 0.6630318310058424 0.17754897739778697
+0.33275685164073016 0.6597779437923543 0.33275685164073016 0.6597779437923544 0.1793115188198375
+0.3347872169204309 0.6565403423617833 0.3347872169204309 0.6565403423617832 0.1815066405045909
+0.34607780023409973 0.6436790661244409 0.3460778002340997 0.6436790661244408 0.2023100455839356
+0.3569654453110198 0.6272912764690467 0.3569654453110198 0.6272912764690467 0.23015891921744816
+0.35499225238357307 0.6305738264509254 0.35499225238357307 0.6305738264509254 0.22438829270700125
+0.35298672854950186 0.6339106482342092 0.35298672854950186 0.6339106482342092 0.2189046279042681
+0.35087501982926594 0.6373632498695293 0.350875019829266 0.6373632498695293 0.21354180414775834
+0.3487564952761875 0.6411288028581269 0.3487564952761875 0.6411288028581269 0.2086886369984788
+0.38504528898318807 0.4959966781264469 0.385045288983188 0.4959966781264469 0.46250843348287907
+0.3822762615560108 0.4984992728638852 0.38227626155601074 0.4984992728638851 0.45984070567128127
+0.37930339121747403 0.5021775392467904 0.3793033912174741 0.5021775392467904 0.45410326139629326
+0.3816062535999093 0.5009068821886777 0.3816062535999093 0.5009068821886777 0.4589142811203405
+0.37609080342183643 0.5061021393097982 0.3760908034218365 0.5061021393097982 0.44316729331009375
+0.37927344527749335 0.504703547272838 0.37927344527749335 0.504703547272838 0.45026248259281454
+0.3761063125378934 0.5089873118217038 0.3761063125378934 0.5089873118217038 0.4348466264459452
+0.3730948737239462 0.5114627779670218 0.3730948737239462 0.5114627779670218 0.42381637615647083
+0.37188128127882647 0.5146907383017704 0.3718812812788265 0.5146907383017704 0.4097507843105264
+0.36762455582584525 0.5187632656720919 0.3676245558258452 0.5187632656720919 0.390826446769763
+0.3710488321184505 0.5177058263310866 0.3710488321184506 0.5177058263310866 0.3952038479041075
+0.3676522378466998 0.5224975535440507 0.3676522378466998 0.5224975535440507 0.3714712455634231
+0.3641173439130355 0.5246340642996887 0.3641173439130356 0.5246340642996888 0.36260461226085156
+0.3644856868925718 0.5275636565440184 0.3644856868925718 0.5275636565440184 0.34642513566660543
+0.3600794337356963 0.5338203508698681 0.3600794337356963 0.5338203508698681 0.31801385663640724
+0.3632074465757634 0.5307377860929797 0.3632074465757635 0.5307377860929797 0.33072874512285116
+0.3604507758628916 0.5369718701286091 0.3604507758628916 0.5369718701286091 0.3011729437325183
+0.3603394749172585 0.539841576346379 0.3603394749172585 0.539841576346379 0.28684876005581705
+0.3583140961901784 0.5426588164539127 0.35831409619017845 0.5426588164539127 0.2764822904618592
+0.3578295474257599 0.5464359227294217 0.35782954742575995 0.5464359227294217 0.26040093634957984
+0.3554088706531059 0.5522295029758029 0.35540887065310584 0.5522295029758029 0.24118424413999828
+0.3582080169776978 0.5497829190695194 0.3582080169776978 0.5497829190695195 0.24686033376929448
+0.35586410713335687 0.5558434185634265 0.35586410713335687 0.5558434185634265 0.22947968286994044
+0.35362347215218665 0.5622310482396001 0.35362347215218665 0.5622310482396001 0.21505574475136321
+0.35634494752806845 0.5594851144234454 0.35634494752806845 0.5594851144234454 0.22033741866281464
+0.35426040418378807 0.5659837893065931 0.35426040418378807 0.5659837893065931 0.20906072400779827
+0.3524387082933125 0.5728360274363563 0.3524387082933125 0.5728360274363563 0.20112937461033822
+0.3549986678685778 0.5697221206873103 0.35499866786857787 0.5697221206873103 0.20606463177296794
+0.35329565104321164 0.576353458129152 0.35329565104321164 0.576353458129152 0.20110434590847404
+0.35140890816513887 0.5825354530544251 0.35140890816513887 0.5825354530544251 0.19751918470555616
+0.35161347653495834 0.5855449481158694 0.35161347653495834 0.5855449481158694 0.19857342159473323
+0.3541155312469518 0.5801222345131979 0.3541155312469518 0.5801222345131979 0.20301494687759256
+0.35318854997460125 0.5877259872781597 0.35318854997460125 0.5877259872781596 0.20361372659177243
+0.3521302878857556 0.5938625648899176 0.35213028788575557 0.5938625648899176 0.2036145770627231
+0.3531874331236025 0.5969365922690949 0.3531874331236025 0.5969365922690949 0.20851453207415807
+0.35433246319428585 0.5909365888730943 0.35433246319428585 0.5909365888730943 0.20876241273010646
+0.3543439516813782 0.5999594383594992 0.3543439516813782 0.5999594383594992 0.21394600264575447
+0.3535086134329768 0.6058785745970529 0.3535086134329768 0.6058785745970529 0.21389691852959317
+0.35489249379472826 0.6088788796388508 0.35489249379472826 0.6088788796388508 0.21975161145143493
+0.3556186914887824 0.6029031176434824 0.3556186914887824 0.6029031176434824 0.21980892234814772
+0.35632571005314523 0.6119033297132463 0.35632571005314523 0.6119033297132463 0.2256489462271416
+0.3557262137328492 0.6180529407812343 0.3557262137328492 0.6180529407812343 0.22498010197084703
+0.35729347996087507 0.62106111689636 0.35729347996087507 0.6210611168963601 0.2306312970409177
+0.35776908222913684 0.6149125107082679 0.35776908222913684 0.6149125107082679 0.231353383654223
+0.3589216044160546 0.624041779383947 0.3589216044160546 0.6240417793839469 0.23624531354387582
+0.3890215869298368 0.49823927145265356 0.3890215869298368 0.49823927145265356 0.4760300460307226
+0.392866795495815 0.5003283496767456 0.392866795495815 0.5003283496767456 0.4901063287057963
+0.5321577885107143 0.3896176126597529 0.5321577885107143 0.389617612659753 0.4345078886904688
+0.5350989270619992 0.38768717026822364 0.5350989270619992 0.38768717026822364 0.44753330883603004
+0.5395835801709992 0.3858375239004708 0.5395835801709992 0.3858375239004708 0.48309052173662864
+0.5376373315589602 0.38774134825426676 0.5376373315589602 0.38774134825426676 0.47367958799309673
+0.5437170548335963 0.38427018009126046 0.5437170548335963 0.38427018009126046 0.5221903589329372
+0.5419696104590886 0.38672261593853785 0.5419696104590886 0.3867226159385378 0.5173374364983171
+0.5488245487279891 0.3825034693245617 0.5488245487279891 0.3825034693245617 0.5729103793759197
+0.5464546688060895 0.3848614876844375 0.5464546688060895 0.38486148768443756 0.5599555884550885
+0.5572438288627523 0.37925641753985656 0.5572438288627523 0.37925641753985656 0.6484446529417037
+0.5548780152337658 0.38051069721295694 0.5548780152337658 0.38051069721295694 0.6307028728326656
+0.5514476491666653 0.3838752659261325 0.5514476491666653 0.38387526592613247 0.6144786182720713
+0.5539396032218511 0.3825731607200055 0.5539396032218511 0.3825731607200055 0.6346344161448911
+0.5748747094346565 0.376174552080619 0.5748747094346564 0.376174552080619 0.783399913651203
+0.560347679504648 0.3810488554381037 0.5603476795046481 0.3810488554381037 0.6945061244095148
+0.5633328640885625 0.37894456324433945 0.5633328640885625 0.3789445632443394 0.7090207361918467
+0.571717429556664 0.37737890959618886 0.571717429556664 0.37737890959618886 0.7692642646700253
+0.5687328162460291 0.37799778165793363 0.5687328162460291 0.37799778165793363 0.7501431583150621
+0.5666613605283378 0.3801187497980276 0.5666613605283378 0.3801187497980276 0.7477789325538761
+0.5836579685093761 0.37603594860774125 0.5836579685093762 0.3760359486077412 0.8297223519856672
+0.5868888687452705 0.37554208224780816 0.5868888687452705 0.37554208224780816 0.8393979432183079
+0.580388383321676 0.377003362391825 0.580388383321676 0.377003362391825 0.8203927235857135
+0.5772203491074446 0.37843614061969433 0.5772203491074447 0.37843614061969433 0.8122839653459969
+0.5334049295890434 0.3944275498289704 0.5334049295890434 0.3944275498289704 0.47601139141574506
+0.5345709251848986 0.3987909441261384 0.5345709251848986 0.3987909441261384 0.5164133272316648
+0.5891696576536222 0.3781447071422603 0.5891696576536222 0.3781447071422603 0.8596836625224649
+0.592473010058636 0.3771944379932094 0.5924730100586358 0.37719443799320945 0.8622991820453451
+0.5957801994613653 0.3763622196140301 0.5957801994613653 0.3763622196140301 0.8636486197966446
+0.5991480710497172 0.37560377647558707 0.5991480710497172 0.37560377647558707 0.8635688798616347
+0.6025529455540507 0.3748923064193459 0.6025529455540507 0.3748923064193459 0.8619153707766678
+0.6303479348071689 0.3647256019746899 0.6303479348071689 0.3647256019746899 0.793740775459968
+0.6134136610551459 0.368062227721215 0.613413661055146 0.36806222772121494 0.834792361897078
+0.6267991550491024 0.3653035079104175 0.6267991550491024 0.3653035079104175 0.8041079592460086
+0.6166391032214659 0.36736692506360796 0.6166391032214659 0.36736692506360796 0.8288929982240275
+0.62331758636423 0.36594650194006295 0.6233175863642301 0.36594650194006295 0.8134732706624782
+0.6199146061977219 0.36664183086955415 0.6199146061977219 0.3666418308695541 0.821774931354395
+0.6102720254008521 0.3693772909647966 0.6102720254008521 0.3693772909647966 0.84142573594062
+0.6071317912923565 0.37029373252709347 0.6071317912923565 0.37029373252709347 0.8459154023359722
+0.6059451160512894 0.3740609035854334 0.6059451160512895 0.3740609035854334 0.8582606162225846
+0.6744534623873945 0.318746246313953 0.6744534623873945 0.318746246313953 0.658961336087312
+0.6710037016898257 0.3190782577925185 0.6710037016898257 0.3190782577925186 0.663855615282487
+0.6640964882258467 0.319829759514207 0.6640964882258467 0.319829759514207 0.6731405489027339
+0.6675681417880288 0.3194751780895702 0.6675681417880287 0.3194751780895702 0.6685628279530887
+0.6587700351067877 0.32344238810281273 0.6587700351067877 0.32344238810281273 0.682686342020239
+0.6535025596545003 0.3269717676275762 0.6535025596545002 0.3269717676275761 0.6932930639407685
+0.6482921734112487 0.3304718243525411 0.6482921734112487 0.3304718243525411 0.7049506960942987
+0.6459500090300674 0.33354966621146975 0.6459500090300674 0.3335496662114697 0.7129476174530699
+0.6448793476674495 0.3372621917495542 0.6448793476674495 0.3372621917495542 0.7201939222464314
+0.6432191176473281 0.3407375234375934 0.6432191176473281 0.3407375234375934 0.728336497000354
+0.641494265681118 0.3440312024728006 0.6414942656811179 0.34403120247280056 0.7367306178706503
+0.6517393380449947 0.33036132456304923 0.6517393380449947 0.33036132456304923 0.699822575897696
+0.6570284546990365 0.32683012696795827 0.6570284546990365 0.32683012696795827 0.6881881681857288
+0.662334208754308 0.3232402111157157 0.662334208754308 0.3232402111157157 0.6777793454777191
+0.6779181795284993 0.31854710635139444 0.6779181795284993 0.31854710635139444 0.6539769527773874
+0.6814306365354996 0.3184148752009702 0.6814306365354996 0.31841487520097017 0.6487478184105376
+0.6849841291986626 0.3183459788138296 0.6849841291986626 0.3183459788138296 0.6432550911266134
+0.6885743624643106 0.31832043825244194 0.6885743624643106 0.3183204382524419 0.6374897648742106
+0.6429364896414156 0.3470406595011107 0.6429364896414156 0.3470406595011107 0.7378492454556
+0.641113659031944 0.35041886321355187 0.641113659031944 0.35041886321355187 0.7465104537358264
+0.6392476192084454 0.3539249515421818 0.6392476192084454 0.3539249515421818 0.7556825518145472
+0.6374558518054776 0.3573862911243011 0.6374558518054777 0.3573862911243011 0.7647140437871282
+0.6356966446042571 0.3608023991940324 0.6356966446042572 0.3608023991940324 0.7736239507444581
+0.6339500516985223 0.36419270961005074 0.6339500516985223 0.36419270961005074 0.7824190885180632
+0.6981213278136287 0.31523568415926545 0.6981213278136287 0.31523568415926545 0.6227083626007776
+0.6922381386412729 0.3183345940869337 0.6922381386412729 0.3183345940869337 0.6313762211571056
+0.6959332693147857 0.31838618815411196 0.6959332693147857 0.31838618815411196 0.6249723162323745
+0.7346914523689362 0.2826348259984273 0.7346914523689362 0.2826348259984273 0.5490410390681578
+0.7265341962519875 0.2882017484480019 0.7265341962519875 0.2882017484480019 0.5672371195782048
+0.7243092294348944 0.2912596410898653 0.7243092294348944 0.2912596410898653 0.5730048210495601
+0.7187034700399484 0.29384881815095437 0.7187034700399484 0.29384881815095437 0.5850788019195292
+0.7164250875915651 0.29679903467184776 0.7164250875915651 0.2967990346718477 0.5905537297185218
+0.7137160238853519 0.2994871942309986 0.713716023885352 0.2994871942309986 0.5964730834740425
+0.7220969180209882 0.29428130687659043 0.7220969180209882 0.29428130687659043 0.5785839304977997
+0.7121151723596519 0.3029853628970604 0.7121151723596518 0.3029853628970604 0.5999725853603229
+0.7097054495697559 0.3061533026298263 0.709705449569756 0.30615330262982626 0.6044668070548996
+0.7067564155936044 0.3084821707075135 0.7067564155936044 0.30848217070751355 0.6096917230062088
+0.7043595757601464 0.3120645466501058 0.7043595757601464 0.3120645466501058 0.6130038650570184
+0.7019387781245473 0.31532688446136553 0.7019387781245473 0.31532688446136553 0.6159428415019478
+0.7323853457023178 0.28563445352487277 0.7323853457023178 0.28563445352487277 0.5546509325044086
+0.7300974420320169 0.2886749708756659 0.7300974420320169 0.2886749708756659 0.5603867878979639
+0.740586267042476 0.28016669702278646 0.740586267042476 0.28016669702278646 0.5374827049248823
+0.7382806570309057 0.2831487225518784 0.7382806570309057 0.28314872255187845 0.5425063784554648
+0.744189012588456 0.280549275499506 0.744189012588456 0.280549275499506 0.5311735172166413
+0.7464661822150171 0.2775888251312593 0.7464661822150171 0.2775888251312593 0.5269833454116618
+0.7487388044128066 0.2746454101012685 0.7487388044128066 0.2746454101012685 0.5233151522728745
+0.7510083272239716 0.27173837828647374 0.7510083272239716 0.27173837828647374 0.5202223184948416
+0.7532882512496308 0.2688733244419785 0.7532882512496308 0.2688733244419785 0.5177079892151553
+0.7556024661478983 0.26603269527092616 0.7556024661478983 0.26603269527092616 0.5157393967523792
+0.7579423879314836 0.26322652739280306 0.7579423879314836 0.2632265273928031 0.5142941944405245
+0.7595877913707167 0.26046311162325225 0.7595877913707167 0.26046311162325225 0.5138865278958807
+0.7626707461040679 0.2592565899276536 0.7626707461040679 0.2592565899276536 0.5119816005765538
+0.7660635526333419 0.25732217573217453 0.7660635526333418 0.2573221757321745 0.5105136797774562
+0.7694504294858686 0.25526143860364336 0.7694504294858686 0.25526143860364336 0.5094355105941756
+0.7728457774557672 0.2531687292447915 0.7728457774557672 0.2531687292447915 0.5086148600831625
+0.7762384313140257 0.25106682863535185 0.7762384313140257 0.25106682863535185 0.5079217812510645
+0.779628770422963 0.2489681345034254 0.779628770422963 0.2489681345034254 0.5072229731806268
+0.7830180398145269 0.24687228953231832 0.7830180398145269 0.24687228953231832 0.5064008024966596
+0.786407473386522 0.2447790098004529 0.786407473386522 0.2447790098004529 0.5053490286853924
+0.7897969780574283 0.24268624631300195 0.7897969780574283 0.24268624631300195 0.5039804229072952
+0.7931864098448628 0.2405939890617994 0.7931864098448628 0.2405939890617994 0.5022252377209316
+0.7965757910425065 0.23850157350255577 0.7965757910425065 0.23850157350255577 0.5000349563331787
+0.7999656968327485 0.23640759484992246 0.7999656968327485 0.23640759484992246 0.49738308418240956
+0.8033564656049962 0.2343127187447912 0.8033564656049962 0.23431271874479123 0.49426462044191055
+0.8067474879632837 0.23221885061455882 0.8067474879632837 0.23221885061455882 0.49069740888980967
+0.8101381604849823 0.23012612867777163 0.8101381604849823 0.23012612867777163 0.48672086838850387
+0.8135289187657082 0.2280334728033145 0.8135289187657083 0.2280334728033145 0.48239110854152273
+0.816919302060877 0.22594142259410943 0.816919302060877 0.22594142259410943 0.47777952621981606
+0.820309685356046 0.22384937238490438 0.820309685356046 0.2238493723849044 0.4729676594892225
+0.823700068651215 0.22175732217569924 0.823700068651215 0.22175732217569924 0.4680442573986569
+0.827090451946384 0.21966527196649416 0.8270904519463841 0.21966527196649419 0.46310031416424097
+0.8304808352415529 0.217573221757289 0.8304808352415529 0.217573221757289 0.4582242654639071
+0.8338712185367217 0.2154811715480839 0.8338712185367217 0.2154811715480839 0.4534972431771281
+0.8372616018318908 0.21338912133887877 0.8372616018318908 0.21338912133887877 0.44898865873134813
+0.8406519851270597 0.21129707112967364 0.8406519851270599 0.21129707112967364 0.444752409407319
+0.8440423684222286 0.20920502092046855 0.8440423684222286 0.20920502092046855 0.44082398555802144
+0.8474327517173975 0.20711297071126347 0.8474327517173975 0.20711297071126347 0.4372187092047199
+0.8508231350125666 0.20502092050205836 0.8508231350125666 0.20502092050205836 0.4339312608594242
+0.8542135183077355 0.20292887029285328 0.8542135183077356 0.2029288702928533 0.43093654382144525
+0.8576039016029045 0.20083682008364812 0.8576039016029045 0.20083682008364812 0.4281918084515148
+0.8609942848980733 0.19874476987444303 0.8609942848980733 0.19874476987444303 0.4256398477973456
+0.8643846681932423 0.19665271966523792 0.8643846681932423 0.19665271966523792 0.42321299862612244
+0.8677750514884113 0.1945606694560328 0.8677750514884114 0.1945606694560328 0.4208376368784476
+0.8711654347835801 0.1924686192468277 0.8711654347835801 0.1924686192468277 0.4184388435573682
+0.874555818078749 0.1903765690376226 0.874555818078749 0.1903765690376226 0.4159449372519532
+0.8779462013739181 0.18828451882841749 0.8779462013739181 0.18828451882841749 0.4132916145329704
+0.8813365846690872 0.18619246861921238 0.8813365846690872 0.18619246861921238 0.41042549555994895
+0.884726967964256 0.18410041841000724 0.884726967964256 0.18410041841000724 0.40730692982847133
+0.8881173512594248 0.18200836820080213 0.8881173512594248 0.18200836820080213 0.40391197072752255
+0.8915077345545939 0.17991631799159702 0.8915077345545939 0.17991631799159702 0.40023347285302907
+0.8948981178497628 0.1778242677823919 0.8948981178497629 0.1778242677823919 0.39628130068543926
+0.8982885011449318 0.1757322175731868 0.8982885011449318 0.1757322175731868 0.3920816630896193
+0.9016788844401007 0.1736401673639817 0.9016788844401006 0.1736401673639817 0.3876756094065
+0.9050692677352696 0.17154811715477658 0.9050692677352696 0.17154811715477658 0.38311674463147116
+0.9084596510304386 0.16945606694557147 0.9084596510304387 0.16945606694557147 0.3784682475626951
+0.9118500343256075 0.16736401673636636 0.9118500343256075 0.16736401673636636 0.37379930973526626
+0.9152404176207765 0.16527196652716125 0.9152404176207763 0.16527196652716125 0.36918115517679656
+0.9186308009159454 0.16317991631795614 0.9186308009159454 0.16317991631795614 0.3646828492094529
+0.9220211842111143 0.16108786610875103 0.9220211842111145 0.16108786610875103 0.3603671526146235
+0.9254115675062833 0.15899581589954592 0.9254115675062833 0.15899581589954592 0.3562867157531793
+0.9288019508014522 0.1569037656903408 0.9288019508014521 0.1569037656903408 0.35248092383858176
+0.9321923340966212 0.1548117154811357 0.9321923340966212 0.1548117154811357 0.3489736885577486
+0.9355827173917901 0.1527196652719306 0.9355827173917902 0.1527196652719306 0.3457724264723525
+0.938973100686959 0.15062761506272548 0.938973100686959 0.15062761506272548 0.34286837290099065
+0.942363483982128 0.14853556485352037 0.9423634839821279 0.14853556485352037 0.3402382620036856
+0.9457538672772969 0.14644351464431526 0.9457538672772969 0.14644351464431526 0.337847277246285
+0.9491442505724659 0.14435146443511016 0.949144250572466 0.14435146443511016 0.3356530613503486
+0.9525346338676348 0.14225941422590505 0.9525346338676348 0.14225941422590505 0.33361048793292913
+0.9559250171628038 0.14016736401669994 0.9559250171628036 0.14016736401669994 0.33167684707713846
+0.9593154004579727 0.13807531380749483 0.9593154004579727 0.13807531380749483 0.3298170831534484
+0.9627057837531416 0.13598326359828972 0.9627057837531418 0.13598326359828972 0.3280087363465544
+0.9660961670483106 0.1338912133890846 0.9660961670483106 0.1338912133890846 0.3262462663813062
+0.9694865503434795 0.1317991631798795 0.9694865503434794 0.1317991631798795 0.3245444652668294
+0.9728769336386485 0.1297071129706744 0.9728769336386485 0.1297071129706744 0.32294068755226557
+0.9762673169338174 0.12761506276146928 0.9762673169338175 0.12761506276146928 0.32149564127864855
+0.9796577002289864 0.12552301255226417 0.9796577002289864 0.12552301255226417 0.32029249932452636
+0.9830480835241553 0.12343096234305906 0.9830480835241552 0.12343096234305906 0.31943412696840356
+0.9864384668193242 0.12133891213385395 0.9864384668193242 0.12133891213385395 0.3190383012641215
+0.9898288501144932 0.11924686192464884 0.9898288501144933 0.11924686192464884 0.31923094474312236
+0.9932192334096621 0.11715481171544373 0.9932192334096621 0.11715481171544373 0.32013762129078044
+0.12133891213389107 0.9932192334096621 0.12133891213389107 0.9932192334096621 0.10229317208102608
+0.12343096234309611 0.9898288501144932 0.12343096234309613 0.9898288501144933 0.10429017671878991
+0.1255230125523011 0.9864384668193242 0.1255230125523011 0.9864384668193242 0.10659504213387481
+0.12761506276150614 0.9830480835241553 0.12761506276150614 0.9830480835241552 0.10914612817441373
+0.12970711297071116 0.9796577002289865 0.12970711297071116 0.9796577002289865 0.11188290255763932
+0.13179916317991622 0.9762673169338176 0.13179916317991622 0.9762673169338177 0.11474757634568224
+0.13389121338912124 0.9728769336386488 0.13389121338912124 0.9728769336386488 0.11768608665965073
+0.13598326359832624 0.9694865503434796 0.13598326359832624 0.9694865503434796 0.12064856349353222
+0.13807531380753107 0.9660961670483107 0.13807531380753105 0.9660961670483107 0.12358942979188929
+0.14016736401673616 0.9627057837531418 0.14016736401673616 0.9627057837531418 0.126467270049996
+0.14225941422594107 0.9593154004579728 0.14225941422594104 0.9593154004579728 0.1292445772554003
+0.1443514644351461 0.9559250171628038 0.1443514644351461 0.9559250171628036 0.13188746046124913
+0.14644351464435112 0.9525346338676347 0.14644351464435112 0.9525346338676347 0.1343653705144182
+0.14853556485355626 0.9491442505724658 0.14853556485355626 0.9491442505724658 0.13665088122905475
+0.15062761506276146 0.9457538672772969 0.15062761506276146 0.9457538672772969 0.13871954768877873
+0.15271966527196684 0.942363483982128 0.15271966527196687 0.9423634839821279 0.1405498517378627
+0.15481171548117229 0.9389731006869592 0.1548117154811723 0.9389731006869592 0.14212323624690715
+0.15690376569037792 0.9355827173917906 0.15690376569037792 0.9355827173917906 0.14342422362673435
+0.1589958158995837 0.9321923340966219 0.1589958158995837 0.9321923340966219 0.14444060966275818
+0.1610878661087896 0.9288019508014541 0.16108786610878958 0.9288019508014541 0.14516372053283208
+0.16317991631799542 0.9254115675062865 0.16317991631799542 0.9254115675062865 0.14558871844295826
+0.16527196652720091 0.9220211842111201 0.16527196652720091 0.9220211842111201 0.14571493932719895
+0.1673640167364053 0.918630800915954 0.1673640167364053 0.918630800915954 0.14554624420806617
+0.16945606694560766 0.9152404176207893 0.16945606694560766 0.9152404176207893 0.14509136381025897
+0.17154811715480942 0.9118500343256225 0.17154811715480942 0.9118500343256225 0.144364213576357
+0.17364016736400864 0.9084596510304555 0.17364016736400864 0.9084596510304553 0.14338415308663358
+0.17573221757320914 0.9050692677352875 0.17573221757320914 0.9050692677352875 0.14217615985555654
+0.17782426778241442 0.9016788844401183 0.17782426778241442 0.9016788844401183 0.14077088255144302
+0.17991631799162733 0.8982885011449525 0.17991631799162733 0.8982885011449525 0.13920453314606948
+0.18200836820084806 0.8948981178497902 0.18200836820084806 0.8948981178497902 0.13751857211051735
+0.18410041841007674 0.891507734554639 0.18410041841007674 0.891507734554639 0.13575913700045997
+0.18619246861931182 0.8881173512594924 0.18619246861931182 0.8881173512594923 0.13397616499005818
+0.1882845188285387 0.8847269679643531 0.1882845188285387 0.8847269679643531 0.13222216742149537
+0.1903765690377871 0.8813365846692283 0.1903765690377871 0.8813365846692282 0.1305506331032729
+0.19246861924704248 0.8779462013740996 0.19246861924704248 0.8779462013740996 0.1290140703296989
+0.19456066945633474 0.8745558180790245 0.19456066945633474 0.8745558180790244 0.12766174657127116
+0.19665271966566109 0.8711654347840067 0.19665271966566109 0.8711654347840067 0.12653724611082606
+0.19874476987500292 0.8677750514891603 0.19874476987500292 0.8677750514891603 0.12567602979142886
+0.20083682008427065 0.8643846681943829 0.20083682008427065 0.8643846681943829 0.1251032314825624
+0.2029288702933416 0.8609942848999457 0.2029288702933416 0.8609942848999456 0.12483194417211317
+0.20502092050237067 0.8576039016053071 0.20502092050237067 0.8576039016053071 0.12486222025347916
+0.20711297071131882 0.8542135183107585 0.20711297071131882 0.8542135183107585 0.12518093314715206
+0.209205020920621 0.8508231350164314 0.20920502092062102 0.8508231350164314 0.1257625348350138
+0.2112970711306228 0.8474327517224749 0.2112970711306228 0.8474327517224749 0.12657062357456417
+0.21338912134207252 0.8440423684293666 0.21338912134207252 0.8440423684293666 0.1275601383087286
+0.215481171555054 0.8406519851386441 0.215481171555054 0.8406519851386441 0.12867994211885395
+0.21757322176750127 0.8372616018500691 0.21757322176750127 0.8372616018500691 0.12987555169659434
+0.21966527197965302 0.83387121856782 0.21966527197965302 0.83387121856782 0.13109180408236232
+0.2217573221882067 0.8304808352771826 0.22175732218820673 0.8304808352771825 0.13227530866894066
+0.22384937240175498 0.8270904519909329 0.22384937240175498 0.8270904519909329 0.1333765941675327
+0.22594142261623285 0.823700068702686 0.22594142261623285 0.823700068702686 0.13435191329943777
+0.22803347283982991 0.8203096854225246 0.22803347283982991 0.8203096854225246 0.1351647042906279
+0.23012552307569376 0.8169193021513097 0.23012552307569376 0.8169193021513097 0.13578672872515887
+0.23221757332869522 0.8135289189169578 0.23221757332869522 0.8135289189169578 0.1361989133028307
+0.23430962357238813 0.8101385357035179 0.23430962357238813 0.8101385357035179 0.13639192528954613
+0.2364016737931256 0.8067481525614876 0.2364016737931256 0.8067481525614876 0.13636650806047992
+0.23849370669424852 0.803357769641788 0.23849370669424852 0.8033577696417878 0.1361335709799061
+0.24058541289491867 0.7999674274095386 0.24058541289491867 0.7999674274095386 0.13571384305546633
+0.2426769021898776 0.7965771777184371 0.2426769021898776 0.7965771777184371 0.13513798077061723
+0.24476816428444778 0.7931869662713336 0.24476816428444778 0.7931869662713336 0.13444530923964068
+0.24686016649518197 0.7897973182548732 0.24686016649518197 0.7897973182548732 0.13368413299567286
+0.24895307745688502 0.7864097063481937 0.24895307745688502 0.7864097063481937 0.13290908094620468
+0.28404888516212456 0.7359811552070463 0.28404888516212456 0.7359811552070462 0.1511237920423603
+0.25104717829472206 0.783027966914522 0.25104717829472206 0.783027966914522 0.13218082043936508
+0.25314171096154076 0.7796592518460339 0.25314171096154076 0.7796592518460339 0.1315628415410661
+0.25523494804031366 0.7763113464113919 0.2552349480403136 0.7763113464113919 0.13111564467904027
+0.2819684024119604 0.7391015554349427 0.2819684024119604 0.7391015554349427 0.14871733999974965
+0.2573241182680942 0.7729914251642248 0.25732411826809415 0.7729914251642248 0.13089143672861658
+0.2594048491254817 0.769702706669523 0.2594048491254817 0.769702706669523 0.13092764132220505
+0.27991221155137097 0.742176136149566 0.27991221155137097 0.742176136149566 0.1463688443909171
+0.27788343175197394 0.7452572990271108 0.2778834317519739 0.7452572990271108 0.14413099206241586
+0.26147715837995084 0.766445512757358 0.26147715837995084 0.766445512757358 0.13125137356970276
+0.2635474677175029 0.7632337799196082 0.2635474677175029 0.7632337799196082 0.13188705033276313
+0.2648814083804373 0.7602108274659117 0.26488140838043733 0.7602108274659117 0.1320344792127114
+0.2758577203890114 0.7483441724328647 0.2758577203890114 0.7483441724328647 0.14202000843796567
+0.2679194238487925 0.7595439248299093 0.2679194238487925 0.7595439248299093 0.13528040366403415
+0.26971522256052033 0.757220402016249 0.26971522256052033 0.757220402016249 0.13659946704723594
+0.2717558653306352 0.7544047025667959 0.2717558653306353 0.7544047025667959 0.1382324013932905
+0.2738141200941121 0.751409794322384 0.27381412009411216 0.751409794322384 0.14004664472601314
+0.2860975663089533 0.7328119509544102 0.2860975663089533 0.7328119509544102 0.15347958566984518
+0.2881275252524464 0.7295951104151525 0.2881275252524464 0.7295951104151525 0.1557546570359785
+0.2925558303901035 0.7166187687759143 0.2925558303901035 0.7166187687759143 0.15902740789698103
+0.2986210554582606 0.7071434249147207 0.2986210554582606 0.7071434249147207 0.16299378051750135
+0.29456584272472897 0.7134417676776508 0.294565842724729 0.7134417676776508 0.1605395814316448
+0.29657438868338304 0.7102770692671241 0.296574388683383 0.7102770692671241 0.16184377070988454
+0.29012658685287823 0.7263761405437025 0.29012658685287823 0.7263761405437025 0.15789454009908044
+0.29408517600950396 0.7199807496730268 0.29408517600950396 0.7199807496730268 0.16170906807642083
+0.29210841476138616 0.7231690016230182 0.29210841476138616 0.7231690016230182 0.15988297223549364
+0.3145953912490171 0.6879438466862391 0.3145953912490171 0.6879438466862391 0.17089557461691185
+0.3125835232587312 0.6911535480876662 0.3125835232587311 0.6911535480876662 0.17061488463494598
+0.31056268352045013 0.6943824557444201 0.3105626835204501 0.6943824557444201 0.17028508741315782
+0.30852698812510265 0.6976352857340083 0.30852698812510265 0.6976352857340083 0.16985897707116984
+0.30214500473388806 0.7073199021381409 0.30214500473388806 0.707319902138141 0.16732629879936536
+0.30435614203151495 0.7041395972125265 0.3043561420315149 0.7041395972125265 0.16847183296705193
+0.3064667551129728 0.7009015188892307 0.3064667551129728 0.7009015188892307 0.1692817786853589
+0.3240206137837547 0.6783889646544055 0.3240206137837547 0.6783889646544053 0.17747657088973953
+0.32211356258193735 0.6814623379541721 0.32211356258193735 0.6814623379541721 0.17688130149213202
+0.32018010324563834 0.6846201658326359 0.32018010324563834 0.6846201658326359 0.1764189159937821
+0.3182270257750124 0.687817552674857 0.3182270257750124 0.687817552674857 0.17601772284388495
+0.3280833894135926 0.6726325176827014 0.3280833894135926 0.6726325176827014 0.17989984739512968
+0.3303350480202337 0.6697385047455806 0.3303350480202338 0.6697385047455806 0.18183060947735655
+0.3274322538933744 0.678335487481166 0.3274322538933743 0.6783354874811661 0.18332707417447044
+0.32875350589734775 0.6755794659226231 0.32875350589734775 0.6755794659226231 0.18348928102683035
+0.34878404136922597 0.6444670824157229 0.34878404136922597 0.6444670824157229 0.20971953778340574
+0.3440672868523668 0.6469000064464224 0.3440672868523668 0.6469000064464224 0.1983545958225317
+0.33887066877493127 0.6501989490457787 0.33887066877493127 0.6501989490457786 0.18712237970736664
+0.3368975059022728 0.6533959267122104 0.3368975059022728 0.6533959267122104 0.184305892142686
+0.3421306408569702 0.6501805664655631 0.3421306408569702 0.6501805664655631 0.19502277312092187
+0.332329712638628 0.6665077487909477 0.332329712638628 0.6665077487909477 0.18330461053145497
+0.3342823698729382 0.6631919531721157 0.3342823698729382 0.6631919531721157 0.1849219071366368
+0.3362074253133487 0.6599099931590366 0.3362074253133487 0.6599099931590366 0.18682048752834912
+0.3382147106785441 0.6567032374431605 0.3382147106785441 0.6567032374431605 0.1892958950819512
+0.34714635494379686 0.6469463347053991 0.3471463549437969 0.6469463347053991 0.20628633264890164
+0.36061228388621863 0.6270255929767566 0.36061228388621863 0.6270255929767566 0.24182018030893435
+0.35870475756066295 0.6303144970874975 0.35870475756066295 0.6303144970874975 0.2358159832141478
+0.3567850804280495 0.6336382430017979 0.3567850804280495 0.6336382430017978 0.23017204831775087
+0.35485570233646363 0.6370308567165804 0.35485570233646363 0.6370308567165804 0.2249052455774276
+0.3530049900089545 0.6404312218067613 0.3530049900089545 0.6404312218067613 0.22025677168863947
+0.3515934512950496 0.643670495104211 0.3515934512950496 0.643670495104211 0.21711963506853119
+0.38498843905584335 0.5007446506134289 0.3849884390558434 0.5007446506134289 0.46653728144558354
+0.3823667923704737 0.5033290134908501 0.3823667923704737 0.5033290134908501 0.45786005724451956
+0.3792190213907747 0.507274765870828 0.3792190213907747 0.507274765870828 0.44366236813335697
+0.38171994298701833 0.5058041447432386 0.38171994298701833 0.5058041447432386 0.45137612821306144
+0.37685638756430295 0.5116814727996337 0.37685638756430295 0.5116814727996336 0.42497546841783057
+0.37951141743663364 0.509833846855298 0.37951141743663364 0.509833846855298 0.43479118011458834
+0.3749546379894604 0.5139753210115177 0.3749546379894604 0.5139753210115177 0.4137495892861082
+0.3737544984498843 0.5161502438258372 0.3737544984498843 0.5161502438258372 0.4027668837967104
+0.3776189429012556 0.5136546289184774 0.3776189429012556 0.5136546289184774 0.4160123850041046
+0.37424885147654813 0.5186645010907792 0.37424885147654813 0.5186645010907792 0.38907766204100097
+0.3709536072113984 0.5205423725853886 0.3709536072113984 0.5205423725853886 0.38019858786782623
+0.37064825454792905 0.5237071148875474 0.37064825454792905 0.5237071148875474 0.3622212170727546
+0.36767476525475423 0.5262660135820056 0.36767476525475423 0.5262660135820055 0.35052862266084756
+0.36632854593572606 0.5292669306474833 0.36632854593572606 0.5292669306474833 0.3348199499127773
+0.37086512511562536 0.5266067108075957 0.37086512511562536 0.5266067108075957 0.34462985814449254
+0.36348013755965014 0.5346838556680875 0.36348013755965014 0.5346838556680876 0.30879162673850447
+0.36664866265267543 0.5321811338817116 0.36664866265267543 0.5321811338817116 0.3179121061593468
+0.36375572490770564 0.5385867218972419 0.36375572490770564 0.5385867218972419 0.28794865643418205
+0.362094369869126 0.5421783483895508 0.36209436986912596 0.5421783483895508 0.2731699282799838
+0.360560927701875 0.5448889551281815 0.360560927701875 0.5448889551281815 0.26322001875713436
+0.3609460599742169 0.5475510307960608 0.3609460599742169 0.5475510307960608 0.25198312388858174
+0.35867429957644553 0.5531986995887296 0.35867429957644553 0.5531986995887296 0.23514733859533712
+0.3613704805723096 0.5506570424058396 0.3613704805723095 0.5506570424058396 0.24063452366520918
+0.35914003643150916 0.5568362432472456 0.35914003643150916 0.5568362432472456 0.22543334897147446
+0.3569519382298176 0.5631531487449133 0.3569519382298176 0.5631531487449132 0.21407746621423293
+0.35963127903166875 0.560440155323522 0.35963127903166875 0.560440155323522 0.2188975844112584
+0.35762174188462736 0.5667958500419754 0.3576217418846274 0.5667958500419754 0.21090974224408696
+0.3558962937915851 0.5734133565749495 0.3558962937915851 0.5734133565749495 0.20603686348162756
+0.3583816171146367 0.5704227017331529 0.35838161711463673 0.570422701733153 0.21068201619607876
+0.3567612575905659 0.5771270609264235 0.3567612575905659 0.5771270609264235 0.20833728172041477
+0.3547422612454995 0.5845390321956713 0.35474226124549946 0.5845390321956713 0.20640679916748958
+0.357779160356746 0.5810114628997628 0.357779160356746 0.5810114628997628 0.21301710968772244
+0.3565162263563226 0.5879027329364522 0.3565162263563226 0.5879027329364522 0.2137452244056516
+0.35538943891058605 0.5941247412062571 0.35538943891058605 0.5941247412062571 0.21414806801291383
+0.35640772146940125 0.5970262966990229 0.35640772146940125 0.5970262966990229 0.21942315126214781
+0.35770847108462295 0.5912771099895994 0.35770847108462295 0.5912771099895994 0.22020722939878187
+0.35762470901421933 0.6001171155938895 0.35762470901421933 0.6001171155938895 0.22556715141563025
+0.3569873372747781 0.6058193206134622 0.3569873372747781 0.6058193206134622 0.22595825306603465
+0.3583972648446224 0.6087361197080045 0.35839726484462237 0.6087361197080045 0.23208507252111368
+0.359040590937538 0.6027443215781765 0.359040590937538 0.6027443215781765 0.23217535120814084
+0.35980278651004394 0.611790407573874 0.35980278651004394 0.6117904075738742 0.2379765374681775
+0.35927985655519695 0.6178853555744678 0.35927985655519695 0.6178853555744678 0.23701938928077845
+0.3608607465460297 0.6208214054382254 0.3608607465460297 0.6208214054382254 0.2426381762255371
+0.3612359130490599 0.6147683027447856 0.3612359130490599 0.6147683027447856 0.24361942326679156
+0.3625051061725238 0.6237611079941536 0.3625051061725238 0.6237611079941536 0.2481732598495605
+0.3890521972058303 0.502827072041382 0.3890521972058303 0.502827072041382 0.47457134418019115
+0.3929802787733246 0.5047579321566752 0.3929802787733246 0.5047579321566752 0.4821421352703741
+0.5367022047151159 0.39106650617675504 0.5367022047151159 0.39106650617675504 0.4855336098788103
+0.5396101306004237 0.3892428065174458 0.5396101306004236 0.3892428065174458 0.5059291445380066
+0.5442626062269387 0.38747421961597855 0.5442626062269387 0.38747421961597855 0.5507846588757892
+0.5422786866341557 0.38949780627075353 0.5422786866341557 0.38949780627075353 0.5400259128089944
+0.5491246670413292 0.3862944840248226 0.5491246670413292 0.3862944840248226 0.6036169610751204
+0.5468322581294771 0.38853270269233575 0.5468322581294771 0.38853270269233575 0.5911454166874449
+0.5569722414384047 0.3827120461846462 0.5569722414384047 0.38271204618464616 0.6706241855677942
+0.5518899309696352 0.38780186750115614 0.5518899309696352 0.38780186750115614 0.6494387425760114
+0.554481852666202 0.38544499609604527 0.554481852666202 0.38544499609604527 0.6626061517763678
+0.5739989491738166 0.37977226417661 0.5739989491738166 0.37977226417661 0.8012594612086498
+0.5604972132081266 0.38499977234755833 0.5604972132081266 0.3849997723475584 0.7257046303075203
+0.5640283907046804 0.38305206451709706 0.5640283907046805 0.3830520645170971 0.7456424691173649
+0.5703000953486125 0.38097711855153543 0.5703000953486125 0.38097711855153543 0.7835123006815959
+0.5675034653571839 0.38306678218270146 0.5675034653571839 0.38306678218270146 0.7760458255990131
+0.5824091651081673 0.3788560649331423 0.5824091651081673 0.3788560649331423 0.8405093024140478
+0.5854256171339285 0.3792945057071696 0.5854256171339286 0.37929450570716966 0.8548284489441828
+0.5798257033563072 0.38039075591410815 0.5798257033563071 0.38039075591410815 0.8382037529535494
+0.5765110079145839 0.38209477486725274 0.5765110079145838 0.38209477486725274 0.8319057448772359
+0.5377968926964253 0.39595186396112075 0.5377968926964253 0.39595186396112075 0.5310801826306645
+0.5387515530744037 0.4003531294612402 0.5387515530744037 0.4003531294612402 0.5746158090540067
+0.5882669380571652 0.3817008291638567 0.5882669380571652 0.38170082916385667 0.875403194076876
+0.5914382204080231 0.38076373965634214 0.5914382204080231 0.38076373965634214 0.8770667348895281
+0.5947127280556078 0.3800015348905698 0.5947127280556078 0.3800015348905698 0.8778956816141917
+0.5980710017794068 0.37930499153253455 0.5980710017794068 0.37930499153253455 0.8772450431090902
+0.601405401463417 0.37860412727617626 0.601405401463417 0.37860412727617626 0.87478161128012
+0.6048095783901849 0.37790158398232815 0.6048095783901849 0.37790158398232815 0.8706846702042963
+0.63221670436002 0.36755884038905934 0.6322167043600199 0.36755884038905934 0.7910322893088292
+0.6286822168145457 0.3681001373208596 0.6286822168145457 0.3681001373208596 0.8026225474764416
+0.6125096767098317 0.3709611976012506 0.6125096767098317 0.3709611976012506 0.8432737546632859
+0.6153681156805775 0.3706950432597288 0.6153681156805774 0.37069504325972874 0.838561021867683
+0.625201781740074 0.36869210024235227 0.625201781740074 0.36869210024235227 0.8132736764248857
+0.6185152500352014 0.37002095326042844 0.6185152500352014 0.37002095326042844 0.831352952735653
+0.6218030101626183 0.3693458537373908 0.6218030101626183 0.3693458537373908 0.8228969144628779
+0.6098629849686354 0.37296957080593635 0.6098629849686353 0.3729695708059363 0.8520607622304536
+0.6083314667651848 0.3771836952030159 0.6083314667651848 0.3771836952030159 0.8649087926336497
+0.6726853413377208 0.3217852130979316 0.6726853413377208 0.32178521309793157 0.6619934270694454
+0.676022325874276 0.32164531880987335 0.676022325874276 0.32164531880987335 0.6568720785274679
+0.6693418466567993 0.32253342195459644 0.6693418466567992 0.3225334219545965 0.6673398072080498
+0.6659505826863646 0.32291273376541046 0.6659505826863646 0.32291273376541046 0.672482395673935
+0.6605799499285286 0.32667382745078727 0.6605799499285286 0.32667382745078727 0.6827085227503283
+0.6552690896129856 0.33022730972703435 0.6552690896129856 0.33022730972703435 0.6941051531828851
+0.649878376043628 0.3336747510775745 0.649878376043628 0.33367475107757455 0.7068399764399597
+0.6481606382372368 0.3370074993143766 0.6481606382372368 0.3370074993143766 0.7139996332332119
+0.6466299645642406 0.3404392502450065 0.6466299645642407 0.3404392502450065 0.7212852310714893
+0.6448340303879649 0.34383199729561753 0.6448340303879649 0.3438319972956175 0.7293923725987744
+0.6534858915700305 0.3335888370403477 0.6534858915700305 0.3335888370403477 0.7004235203791108
+0.6464104673510166 0.346914516203449 0.6464104673510166 0.346914516203449 0.7291835279037792
+0.6588225940772395 0.3301011949411979 0.6588225940772395 0.3301011949411979 0.688005792002306
+0.6641594903725795 0.3263513183637762 0.6641594903725795 0.3263513183637761 0.6768613926937713
+0.6712649116651827 0.32445097805701123 0.6712649116651827 0.32445097805701123 0.6645497385309873
+0.6794667302159584 0.3215440431897422 0.6794667302159584 0.3215440431897422 0.6514010472795807
+0.6829672438884534 0.3214854099721003 0.6829672438884534 0.3214854099721003 0.6456716609622634
+0.6865024538075145 0.3214531634259149 0.6865024538075145 0.32145316342591496 0.6397169059270206
+0.6901129572788633 0.32145249544891297 0.6901129572788633 0.3214524954489129 0.6334569118500917
+0.6446518997503535 0.35019430616602376 0.6446518997503535 0.35019430616602376 0.7370491185841975
+0.6428928885749111 0.3535815973567437 0.6428928885749111 0.3535815973567437 0.7452087683930538
+0.6411604296189534 0.35697953351751033 0.6411604296189534 0.35697953351751033 0.7534543438821933
+0.639403149626181 0.360356380787551 0.639403149626181 0.360356380787551 0.7617945727658925
+0.6376142385450088 0.3637292648530112 0.6376142385450088 0.3637292648530112 0.7701911584819281
+0.6358195634171826 0.3670932134791102 0.6358195634171827 0.3670932134791102 0.7785097568432758
+0.6996636169195943 0.31848650382646587 0.6996636169195943 0.31848650382646587 0.6182512090460635
+0.6937644399254606 0.3214970823020519 0.6937644399254604 0.3214970823020518 0.6269309865813676
+0.6974370124474527 0.32159739695069817 0.6974370124474527 0.32159739695069817 0.620151512794653
+0.7359736175878201 0.28615051440802886 0.7359736175878201 0.2861505144080288 0.5478376360849159
+0.7278316592070642 0.29171842781511087 0.7278316592070642 0.29171842781511087 0.5660973178924192
+0.7255805824982944 0.29474199275274565 0.7255805824982944 0.29474199275274565 0.5716686003153896
+0.7198482786780575 0.2972648508641396 0.7198482786780575 0.2972648508641396 0.5839813221617075
+0.7175116330798271 0.3002037006784975 0.7175116330798271 0.3002037006784975 0.5892340774989098
+0.715281821347709 0.3032430710609431 0.715281821347709 0.3032430710609431 0.5938742352110022
+0.723323139136547 0.29774093558877807 0.723323139136547 0.29774093558877807 0.5770399700210432
+0.713071526938254 0.30634233843286496 0.713071526938254 0.30634233843286496 0.5980255438543746
+0.7106272041292369 0.309275735298217 0.7106272041292369 0.309275735298217 0.6022208600907089
+0.7081948187961932 0.3122941224055406 0.7081948187961932 0.3122941224055406 0.6057834041376622
+0.705757040211633 0.31549343063300844 0.705757040211633 0.31549343063300844 0.6088205101173093
+0.7034151796578847 0.3186392012278693 0.7034151796578847 0.3186392012278693 0.6112101374680208
+0.7336941090021104 0.28915574466849914 0.7336941090021104 0.28915574466849914 0.5533152826747311
+0.7314033964859711 0.29219179962937286 0.7314033964859711 0.29219179962937286 0.5589035381841851
+0.7419101983100568 0.2835283358307857 0.7419101983100568 0.2835283358307857 0.5358002952728259
+0.7396217814833288 0.28654945560467343 0.7396217814833288 0.28654945560467343 0.5407909682079981
+0.7455202260682593 0.28386137025312036 0.7455202260682593 0.28386137025312036 0.5291228840594645
+0.747780982867369 0.2808875444287569 0.747780982867369 0.2808875444287569 0.5249014428915371
+0.7500550062502449 0.27794512456109827 0.7500550062502449 0.27794512456109827 0.5211220756593448
+0.7523308004659607 0.27504607555914484 0.7523308004659607 0.27504607555914484 0.5178726921000809
+0.7546000045868593 0.2722061952732748 0.7546000045868593 0.2722061952732748 0.5151968278017515
+0.7568949810187712 0.2694444571220701 0.7568949810187712 0.26944445712207005 0.5130500675364736
+0.7593081997227269 0.26664591086672934 0.759308199722727 0.26664591086672934 0.5114004631635721
+0.7620668256281632 0.26349285781344994 0.7620668256281632 0.26349285781344994 0.5102409249245592
+0.7660635526333178 0.2615062761506013 0.7660635526333178 0.2615062761506013 0.5075880569794925
+0.7694509523602701 0.25944070459566976 0.7694509523602701 0.25944070459566976 0.506080693626267
+0.7728460913558024 0.25734859889333594 0.7728460913558024 0.25734859889333594 0.5049489343722651
+0.7762370821013665 0.2552484309344896 0.7762370821013665 0.2552484309344896 0.5040368633189113
+0.7796276514773761 0.2531486464097367 0.7796276514773761 0.2531486464097367 0.5032073127440125
+0.783017038792583 0.25105118462616227 0.783017038792583 0.25105118462616227 0.5023354854456662
+0.7864065425906969 0.24895724397425198 0.7864065425906969 0.24895724397425198 0.5013059671192125
+0.7897964838762096 0.24686454118984139 0.7897964838762096 0.24686454118984139 0.5000212666994664
+0.7931865957945315 0.2447723687795541 0.7931865957945315 0.24477236877955413 0.49840027473940257
+0.7965767038371179 0.24268019077749206 0.7965767038371179 0.24268019077749206 0.4963817892177021
+0.799966936602796 0.24058755005829147 0.799966936602796 0.24058755005829147 0.4939260641991062
+0.8033574379270432 0.23849457657847914 0.8033574379270432 0.23849457657847914 0.4910157397840859
+0.8067481521753703 0.23640167364013503 0.8067481521753702 0.23640167364013506 0.4876565280342931
+0.8101385354705393 0.2343096234309299 0.8101385354705393 0.2343096234309299 0.4838765410731875
+0.8135289187657083 0.2322175732217248 0.8135289187657083 0.2322175732217248 0.4797235508592776
+0.8169193020608772 0.23012552301251965 0.8169193020608772 0.23012552301251965 0.4752622875111765
+0.8203096853560461 0.2280334728033146 0.820309685356046 0.22803347280331462 0.4705712270323524
+0.823700068651215 0.22594142259410946 0.823700068651215 0.22594142259410946 0.4657387162372047
+0.8270904519463841 0.22384937238490435 0.8270904519463841 0.22384937238490435 0.46085840159801633
+0.8304808352415529 0.22175732217569924 0.8304808352415529 0.22175732217569924 0.4560243284902597
+0.8338712185367219 0.21966527196649416 0.8338712185367217 0.21966527196649419 0.451325905155675
+0.8372616018318908 0.21757322175728902 0.8372616018318908 0.21757322175728902 0.4468429962970459
+0.8406519851270599 0.2154811715480839 0.8406519851270599 0.2154811715480839 0.44264144826110513
+0.8440423684222287 0.21338912133887877 0.8440423684222287 0.21338912133887877 0.43876936034604924
+0.8474327517173976 0.21129707112967372 0.8474327517173975 0.21129707112967375 0.4352543930304467
+0.8508231350125666 0.20920502092046858 0.8508231350125666 0.20920502092046858 0.43210234213887416
+0.8542135183077356 0.20711297071126347 0.8542135183077356 0.20711297071126347 0.42929710981167973
+0.8576039016029045 0.20502092050205836 0.8576039016029045 0.20502092050205836 0.42680207790273245
+0.8609942848980734 0.20292887029285328 0.8609942848980733 0.2029288702928533 0.42456275909702873
+0.8643846681932423 0.20083682008364814 0.8643846681932423 0.20083682008364814 0.4225104905484889
+0.8677750514884114 0.19874476987444303 0.8677750514884114 0.19874476987444303 0.4205668596143369
+0.8711654347835802 0.19665271966523795 0.8711654347835802 0.19665271966523792 0.41864851667953823
+0.8745558180787492 0.19456066945603284 0.874555818078749 0.19456066945603287 0.41667203533634384
+0.8779462013739181 0.1924686192468277 0.8779462013739181 0.1924686192468277 0.41455851831890983
+0.8813365846690872 0.19037656903762257 0.8813365846690872 0.19037656903762257 0.41223770611818317
+0.884726967964256 0.18828451882841749 0.884726967964256 0.18828451882841749 0.40965141089847684
+0.8881173512594249 0.18619246861921235 0.8881173512594248 0.18619246861921235 0.40675616124515085
+0.8915077345545939 0.18410041841000724 0.8915077345545939 0.18410041841000724 0.4035249971571316
+0.8948981178497628 0.18200836820080213 0.8948981178497629 0.18200836820080213 0.39994839653651
+0.8982885011449318 0.17991631799159702 0.8982885011449318 0.17991631799159702 0.39603434443435986
+0.9016788844401007 0.1778242677823919 0.9016788844401006 0.1778242677823919 0.3918075773808649
+0.9050692677352696 0.1757322175731868 0.9050692677352696 0.1757322175731868 0.38730805157846543
+0.9084596510304386 0.1736401673639817 0.9084596510304387 0.1736401673639817 0.3825887001118273
+0.9118500343256075 0.17154811715477658 0.9118500343256075 0.17154811715477658 0.3777125645556338
+0.9152404176207765 0.16945606694557147 0.9152404176207763 0.16945606694557147 0.37274941314857196
+0.9186308009159454 0.16736401673636636 0.9186308009159454 0.16736401673636636 0.36777199189050996
+0.9220211842111143 0.16527196652716125 0.9220211842111145 0.16527196652716125 0.3628520947775215
+0.9254115675062833 0.16317991631795614 0.9254115675062833 0.16317991631795614 0.35805668007862373
+0.9288019508014522 0.16108786610875103 0.9288019508014521 0.16108786610875103 0.35344429319275683
+0.9321923340966212 0.15899581589954592 0.9321923340966212 0.15899581589954592 0.3490620733411684
+0.9355827173917901 0.1569037656903408 0.9355827173917902 0.1569037656903408 0.3449436115263922
+0.938973100686959 0.1548117154811357 0.938973100686959 0.1548117154811357 0.3411078844076514
+0.942363483982128 0.1527196652719306 0.9423634839821279 0.1527196652719306 0.3375594125806866
+0.9457538672772969 0.15062761506272548 0.9457538672772969 0.15062761506272548 0.33428968921693386
+0.9491442505724659 0.14853556485352037 0.949144250572466 0.14853556485352037 0.3312798097115736
+0.9525346338676348 0.14644351464431526 0.9525346338676348 0.14644351464431526 0.32850412184976124
+0.9559250171628038 0.14435146443511016 0.9559250171628036 0.14435146443511016 0.32593462462446116
+0.9593154004579727 0.14225941422590505 0.9593154004579727 0.14225941422590505 0.32354578216369406
+0.9627057837531416 0.14016736401669994 0.9627057837531418 0.14016736401669994 0.32131938927062587
+0.9660961670483106 0.13807531380749483 0.9660961670483106 0.13807531380749483 0.3192491215773236
+0.9694865503434795 0.13598326359828972 0.9694865503434794 0.13598326359828972 0.317344416810545
+0.9728769336386485 0.1338912133890846 0.9728769336386485 0.1338912133890846 0.31563335491965144
+0.9762673169338174 0.1317991631798795 0.9762673169338175 0.1317991631798795 0.31416422909791814
+0.9796577002289864 0.1297071129706744 0.9796577002289864 0.1297071129706744 0.31300552999812714
+0.9830480835241553 0.12761506276146928 0.9830480835241552 0.12761506276146928 0.3122441135021405
+0.9864384668193242 0.12552301255226417 0.9864384668193242 0.12552301255226417 0.3119814071078833
+0.9898288501144932 0.12343096234305906 0.9898288501144933 0.12343096234305906 0.3123276514229678
+0.9932192334096621 0.12133891213385395 0.9932192334096621 0.12133891213385395 0.31339438229730887
+0.12552301255230117 0.9932192334096621 0.12552301255230117 0.9932192334096621 0.10455909342086513
+0.1276150627615062 0.9898288501144932 0.12761506276150622 0.9898288501144933 0.10665987913296714
+0.12970711297071122 0.9864384668193242 0.12970711297071122 0.9864384668193242 0.10907256489403216
+0.13179916317991622 0.9830480835241553 0.13179916317991622 0.9830480835241552 0.11173709822160238
+0.13389121338912122 0.9796577002289865 0.13389121338912122 0.9796577002289865 0.11459385624797892
+0.13598326359832622 0.9762673169338176 0.13598326359832622 0.9762673169338177 0.11758517359921807
+0.1380753138075312 0.9728769336386486 0.1380753138075312 0.9728769336386486 0.12065629919686245
+0.14016736401673618 0.9694865503434795 0.1401673640167362 0.9694865503434794 0.12375590151171707
+0.14225941422594116 0.9660961670483106 0.14225941422594116 0.9660961670483106 0.1268362538493006
+0.14435146443514618 0.9627057837531418 0.1443514644351462 0.9627057837531418 0.1298532197762439
+0.1464435146443512 0.9593154004579727 0.1464435146443512 0.9593154004579727 0.13276613648336652
+0.14853556485355632 0.9559250171628038 0.14853556485355632 0.9559250171628036 0.1355376691576906
+0.15062761506276148 0.9525346338676348 0.15062761506276148 0.9525346338676348 0.1381336868360652
+0.1527196652719667 0.949144250572466 0.1527196652719667 0.949144250572466 0.1405231915561169
+0.15481171548117198 0.945753867277297 0.15481171548117198 0.945753867277297 0.1426783181667074
+0.15690376569037734 0.9423634839821281 0.15690376569037734 0.9423634839821281 0.144574411438707
+0.15899581589958278 0.9389731006869596 0.15899581589958278 0.9389731006869596 0.14619017941109266
+0.16108786610878836 0.9355827173917913 0.16108786610878836 0.9355827173917913 0.14750791649579287
+0.1631799163179939 0.932192334096623 0.1631799163179939 0.932192334096623 0.14851378611397395
+0.16527196652719908 0.9288019508014558 0.16527196652719908 0.9288019508014557 0.14919815001767797
+0.1673640167364037 0.9254115675062882 0.1673640167364037 0.9254115675062881 0.1495559295220571
+0.16945606694560708 0.9220211842111217 0.16945606694560708 0.9220211842111218 0.14958698225152176
+0.17154811715481014 0.918630800915954 0.17154811715481014 0.918630800915954 0.14929647633458812
+0.17364016736401175 0.9152404176207857 0.17364016736401175 0.9152404176207857 0.1486952419251549
+0.17573221757321392 0.9118500343256168 0.17573221757321392 0.911850034325617 0.14780007715111657
+0.17782426778241853 0.9084596510304475 0.17782426778241853 0.9084596510304476 0.14663398179943388
+0.17991631799162688 0.9050692677352791 0.17991631799162688 0.9050692677352791 0.14522628704068755
+0.1820083682008399 0.9016788844401131 0.1820083682008399 0.901678884440113 0.1436126432801019
+0.18410041841005778 0.8982885011449526 0.18410041841005778 0.8982885011449525 0.1418348211788143
+0.18619246861928027 0.8948981178497951 0.18619246861928027 0.8948981178497951 0.1399402740296474
+0.18828451882850128 0.8915077345546423 0.18828451882850128 0.8915077345546422 0.1379814049341033
+0.19037656903773162 0.8881173512594968 0.19037656903773162 0.8881173512594968 0.13601448272930705
+0.19246861924696793 0.8847269679643531 0.19246861924696793 0.8847269679643531 0.13409816065507496
+0.19456066945622064 0.8813365846692363 0.19456066945622064 0.8813365846692364 0.13229157625036506
+0.19665271966548767 0.8779462013741478 0.19665271966548767 0.8779462013741478 0.13065205397909743
+0.19874476987475934 0.8745558180791481 0.19874476987475934 0.8745558180791481 0.12923249427348435
+0.20083682008398238 0.8711654347841797 0.20083682008398238 0.8711654347841797 0.12807860826193632
+0.2029288702930917 0.8677750514893857 0.20292887029309173 0.8677750514893857 0.1272262320893628
+0.20502092050215912 0.8643846681944414 0.20502092050215912 0.8643846681944414 0.1266990066622569
+0.20711297071110987 0.8609942848995527 0.20711297071110987 0.8609942848995527 0.12650671465155974
+0.20920502092029317 0.8576039016047646 0.20920502092029317 0.8576039016047646 0.12664451207416036
+0.2112970711300015 0.8542135183101878 0.2112970711300015 0.8542135183101877 0.12709318041372478
+0.2133891213403932 0.8508231350161163 0.2133891213403932 0.8508231350161163 0.12782038159696915
+0.2154811715511762 0.8474327517229017 0.2154811715511762 0.8474327517229018 0.12878275976684492
+0.217573221762312 0.8440423684306063 0.217573221762312 0.8440423684306063 0.12992863593926687
+0.21966527197340446 0.8406519851404587 0.21966527197340446 0.8406519851404587 0.1312010033726583
+0.22175732218234318 0.8372616018491275 0.2217573221823432 0.8372616018491276 0.1325405508843357
+0.22384937239391975 0.8338712185588047 0.22384937239391975 0.8338712185588047 0.13388850053309254
+0.22594142260605635 0.8304808352673595 0.22594142260605635 0.8304808352673595 0.13518912134713393
+0.22803347282297595 0.8270904519801144 0.22803347282297595 0.8270904519801144 0.13639185184834668
+0.2301255230459435 0.8237000686974775 0.2301255230459435 0.8237000686974775 0.13745301836051846
+0.23221757327704698 0.8203096854335657 0.23221757327704698 0.8203096854335657 0.1383371701475984
+0.23430962350305173 0.8169193021801066 0.23430962350305173 0.8169193021801066 0.13901806844186207
+0.23640167371668738 0.8135289189629668 0.23640167371668738 0.8135289189629668 0.13947936982600329
+0.23849372393217147 0.8101385357382772 0.23849372393217147 0.8101385357382772 0.13971503855388845
+0.24058577413349233 0.806748152527295 0.24058577413349233 0.8067481525272949 0.13972950858297598
+0.242677805076714 0.8033577695858524 0.242677805076714 0.8033577695858524 0.13953757990478077
+0.244769763143054 0.7999673866129949 0.24476976314305396 0.7999673866129949 0.1391640487921394
+0.24686185397883698 0.7965770197412096 0.24686185397883698 0.7965770197412096 0.13864332487207218
+0.24895396091435337 0.7931867199973586 0.24895396091435337 0.7931867199973586 0.13801798447610045
+0.2510463688078544 0.7897974504058843 0.2510463688078544 0.7897974504058843 0.13733871562877234
+0.25314004361676756 0.7864118578849649 0.2531400436167676 0.7864118578849649 0.1366634968677123
+0.2855919730317209 0.739378710224205 0.2855919730317209 0.739378710224205 0.15341711166678682
+0.28768867829077577 0.7362556009722886 0.28768867829077577 0.7362556009722886 0.15583903226320464
+0.2552350852381817 0.7830352857175105 0.2552350852381817 0.7830352857175105 0.1360545806985535
+0.25733039018354026 0.7796753455147315 0.25733039018354026 0.7796753455147315 0.13557443899138147
+0.2594262234598537 0.7763371935910551 0.2594262234598537 0.7763371935910551 0.13528084983709177
+0.28347754520220464 0.7423596861598746 0.28347754520220464 0.7423596861598746 0.15098595983585816
+0.2615235685234037 0.7730202833818614 0.2615235685234037 0.7730202833818614 0.13522109483063607
+0.26362128254417744 0.769710190193987 0.26362128254417744 0.769710190193987 0.13542302292662933
+0.2814338291281232 0.74533450717731 0.28143382912812326 0.74533450717731 0.14869851742899745
+0.2794440408797436 0.748377563110421 0.2794440408797436 0.748377563110421 0.1465941850367449
+0.26574258798315065 0.7663807655192894 0.2657425879831506 0.7663807655192895 0.13593129646367433
+0.2678119020450117 0.762801662881653 0.26781190204501165 0.7628016628816531 0.13657671718322936
+0.2774400600089472 0.7514524527135481 0.2774400600089472 0.7514524527135481 0.14462481651842832
+0.27084986900916225 0.7603965735855298 0.27084986900916225 0.7603965735855298 0.13914671092481853
+0.2732481984034471 0.7576138377045227 0.2732481984034471 0.7576138377045227 0.14104395890921576
+0.2753892482434597 0.7545365879619442 0.2753892482434597 0.7545365879619442 0.14278408110587645
+0.2897223971405202 0.733019111868061 0.2897223971405202 0.733019111868061 0.15815730021167507
+0.2917119572488259 0.7297671656958884 0.29171195724882587 0.7297671656958884 0.16035311509412264
+0.29608144112949497 0.7168091830407132 0.29608144112949497 0.7168091830407132 0.16338252658662558
+0.30010602524701996 0.7104659571528876 0.30010602524701996 0.7104659571528876 0.16617992668294582
+0.2980943726490157 0.7136394097246921 0.2980943726490157 0.7136394097246921 0.1648816106804558
+0.30356783264055265 0.710593563709863 0.30356783264055265 0.710593563709863 0.17052953674992058
+0.2975600238039051 0.720158071134693 0.2975600238039051 0.720158071134693 0.1660936072985495
+0.2936687277144176 0.7265353357212376 0.2936687277144176 0.7265353357212376 0.16240826049956558
+0.29560819636386443 0.7233329984676855 0.29560819636386443 0.7233329984676855 0.1643165343825439
+0.31625750673258585 0.6910394070405976 0.31625750673258585 0.6910394070405976 0.17562827883431698
+0.3142727084910246 0.6942847038825272 0.3142727084910246 0.6942847038825272 0.17520877729515252
+0.3122652807834824 0.6975650564677687 0.3122652807834824 0.6975650564677687 0.1747166966811696
+0.31021283318045545 0.7008962606441463 0.31021283318045545 0.7008962606441463 0.1740902014365693
+0.3058440626355325 0.7074716669799801 0.3058440626355325 0.7074716669799801 0.17202832551264938
+0.30808774971360603 0.704247643599505 0.30808774971360603 0.704247643599505 0.17324082603521454
+0.3256082904906266 0.6812626123321205 0.3256082904906266 0.6812626123321205 0.1825212792184294
+0.3237317211210402 0.684416963120719 0.3237317211210402 0.684416963120719 0.1819183891958807
+0.32183003934298343 0.6876242188475409 0.32183003934298343 0.6876242188475409 0.18138664112018957
+0.3199080169161444 0.6908592446696059 0.3199080169161444 0.6908592446696059 0.18088008705840194
+0.3290954178392282 0.6808232196942943 0.3290954178392282 0.6808232196942942 0.1883424748131939
+0.3339517387204235 0.670196155161463 0.33395173872042344 0.670196155161463 0.1894149718032374
+0.33159753593639807 0.6740338728448194 0.3315975359363981 0.6740338728448193 0.1877069846862662
+0.3307768834781986 0.6774847541153197 0.3307768834781986 0.6774847541153197 0.18882638251329184
+0.3642019012525107 0.6266815478464026 0.3642019012525107 0.6266815478464026 0.2535889731170578
+0.3503533265026462 0.646908718756355 0.3503533265026462 0.646908718756355 0.21480491578696173
+0.34566802836059857 0.6500420494842054 0.34566802836059857 0.6500420494842053 0.20376447830210684
+0.34081790753411106 0.6537917877380819 0.340817907534111 0.6537917877380819 0.19370767145132836
+0.344047482400209 0.6525746878588118 0.344047482400209 0.6525746878588118 0.20088174400246211
+0.33590132418051594 0.6666366959434604 0.33590132418051594 0.6666366959434605 0.1908274262638667
+0.33773709151382564 0.6632886980037339 0.33773709151382564 0.6632886980037339 0.19245159388436447
+0.3394016378236541 0.6601212044720925 0.3394016378236541 0.6601212044720927 0.19409579908540017
+0.3411672264945368 0.6573333377302372 0.3411672264945368 0.6573333377302372 0.19648191375565993
+0.3487143444270246 0.6500841880639918 0.3487143444270246 0.6500841880639917 0.2116661256516266
+0.3623585601924908 0.6299811888741228 0.3623585601924908 0.6299811888741228 0.2473361088605526
+0.36050813297646594 0.633303836449803 0.36050813297646594 0.633303836449803 0.24148560191922155
+0.3586604933087678 0.6366681024586789 0.3586604933087678 0.636668102458679 0.23606187278935467
+0.35684900146721493 0.6400338194197365 0.35684900146721493 0.6400338194197365 0.2311533138687172
+0.3551544136917954 0.643380423717938 0.3551544136917954 0.643380423717938 0.22696103114346355
+0.35357774400159375 0.6466930923762694 0.35357774400159375 0.6466930923762694 0.22345562962272283
+0.3851332276955972 0.5054959127122354 0.3851332276955972 0.5054959127122354 0.458904824560722
+0.3826026678951189 0.5082201624973451 0.3826026678951189 0.5082201624973451 0.44476438045451877
+0.37985728094525184 0.5121751770418644 0.37985728094525184 0.5121751770418644 0.4245126747040017
+0.38213926658639796 0.5107035895400636 0.38213926658639796 0.5107035895400636 0.4334215376637049
+0.3769055797577355 0.5162290300001678 0.3769055797577355 0.5162290300001678 0.40225393180330127
+0.3800695471078615 0.5146534774700503 0.3800695471078615 0.5146534774700503 0.41121060562101736
+0.37737188445154823 0.5192523426085095 0.3773718844515482 0.5192523426085095 0.38400879486904077
+0.37449891145291814 0.5219159739867761 0.3744989114529181 0.5219159739867761 0.36960273247147774
+0.37347766464448334 0.5252107273594594 0.37347766464448334 0.5252107273594594 0.34996426901085664
+0.3696261683028652 0.5295860631367012 0.3696261683028652 0.5295860631367012 0.32858963593223384
+0.3728987728280949 0.5282636350722647 0.37289877282809497 0.5282636350722648 0.33154720456970294
+0.3666473536499003 0.5357689719957159 0.36664735364990036 0.5357689719957159 0.2979952692493419
+0.36992732939960443 0.5333725269265227 0.36992732939960443 0.5333725269265227 0.30573943423614675
+0.3672059262812597 0.538713902206535 0.3672059262812597 0.538713902206535 0.2815627159975102
+0.366061248982009 0.5419707043413912 0.366061248982009 0.5419707043413912 0.26810294707253496
+0.363386997779441 0.5453678800783974 0.363386997779441 0.5453678800783974 0.2573615859115224
+0.36401589016132124 0.5483770374771764 0.36401589016132124 0.5483770374771764 0.2455452894621822
+0.3623073249070765 0.5541733747352932 0.36230732490707646 0.5541733747352932 0.23051668997412536
+0.3641267756210849 0.5511649402307932 0.3641267756210849 0.5511649402307932 0.23697352179340844
+0.36229531494837247 0.5578841746239726 0.36229531494837247 0.5578841746239726 0.2234077576599289
+0.36023936912569154 0.5639867965909771 0.36023936912569154 0.5639867965909771 0.21559482728010448
+0.36285795225376405 0.5613078122971048 0.36285795225376405 0.5613078122971048 0.22005934781614353
+0.36093708921267575 0.5675233146916584 0.36093708921267575 0.5675233146916584 0.21531602855078003
+0.35927551437241245 0.5740955435716059 0.35927551437241245 0.5740955435716059 0.2132285503572476
+0.3617420036263756 0.5710868618189643 0.3617420036263756 0.5710868618189643 0.21786007014779393
+0.36022280255359895 0.5777911819151149 0.36022280255359895 0.5777911819151149 0.21800911531181946
+0.3589343177978691 0.5847724245425406 0.35893431779786905 0.5847724245425406 0.21942748576040086
+0.361262030165975 0.5814616174084116 0.361262030165975 0.5814616174084116 0.2245302959961841
+0.36006409573362513 0.5882249021116281 0.36006409573362513 0.5882249021116283 0.2262995827092866
+0.358739484874436 0.5945474553363403 0.358739484874436 0.5945474553363405 0.22628265044381582
+0.3591117303611001 0.5975568563275099 0.3591117303611001 0.5975568563275099 0.22959314635825065
+0.3612091174384818 0.5919262394738238 0.3612091174384818 0.5919262394738238 0.23374030988938885
+0.3608820761205348 0.5996162644686978 0.36088207612053486 0.5996162644686978 0.23766476774719703
+0.3603868910696302 0.6056839896302507 0.3603868910696302 0.6056839896302507 0.2384755076694469
+0.36169875285391323 0.6086158215206867 0.36169875285391323 0.6086158215206866 0.2443358004177044
+0.3623241875195246 0.602638687873065 0.3623241875195246 0.602638687873065 0.2448446162943161
+0.36309481724089265 0.6116840117975134 0.3630948172408926 0.6116840117975134 0.25016636387434116
+0.36277777249641574 0.6176368067369378 0.3627777724964157 0.6176368067369378 0.2493115230406653
+0.36438215024920456 0.6205221833379122 0.36438215024920456 0.6205221833379122 0.25487038955510205
+0.3646361969897601 0.614471428488691 0.3646361969897601 0.6144714284886909 0.2561087616234552
+0.36602812686577063 0.6234014044409112 0.36602812686577063 0.6234014044409112 0.26021589986021626
+0.3677381576274982 0.6262760658805198 0.36773815762749823 0.6262760658805197 0.26544363635966506
+0.3893007659936667 0.5074069756659355 0.3893007659936667 0.5074069756659355 0.46060407001545395
+0.39328372240738035 0.5091771369329218 0.39328372240738035 0.5091771369329218 0.4607015799720755
+0.541209435655559 0.3927971862027494 0.541209435655559 0.39279718620274945 0.5502403293989654
+0.5443215058668043 0.39096461360305784 0.5443215058668044 0.39096461360305784 0.5766554535103485
+0.5495259269856354 0.39015420047341975 0.5495259269856354 0.39015420047341975 0.6379533624001952
+0.5473037200435599 0.3914502989762205 0.5473037200435599 0.3914502989762205 0.6192246605830279
+0.557588525465541 0.3869310815532788 0.5575885254655412 0.3869310815532789 0.7096199253445638
+0.5519812719665046 0.39142554505655364 0.5519812719665046 0.39142554505655364 0.6794477961486923
+0.5546764742322913 0.3893417739911012 0.5546764742322913 0.3893417739911012 0.6953983382224936
+0.5602903028480154 0.38890742401907735 0.5602903028480154 0.38890742401907735 0.7543930629453034
+0.5732850215816534 0.3834990322079183 0.5732850215816533 0.3834990322079183 0.8219511811429668
+0.5633040289731698 0.38702984437877785 0.5633040289731698 0.38702984437877785 0.7691145192516733
+0.5665219609134942 0.38616652970428705 0.5665219609134943 0.38616652970428705 0.7911270358680215
+0.5699953280988739 0.3849661180411588 0.5699953280988739 0.3849661180411588 0.8096398947585547
+0.582837068510722 0.38209517920687014 0.582837068510722 0.38209517920687014 0.8613374047592036
+0.5856016688001597 0.3828002831978354 0.5856016688001597 0.3828002831978354 0.8742051135782292
+0.5798020600298001 0.3847760910412911 0.5798020600298001 0.38477609104129107 0.8655703312711333
+0.576070905117182 0.38591816210007335 0.5760709051171818 0.38591816210007335 0.8549726464752654
+0.5421216836880106 0.39773753390414607 0.5421216836880106 0.39773753390414607 0.5990029397041062
+0.5428617275807456 0.402090889360029 0.5428617275807456 0.402090889360029 0.6443762619042265
+0.5873419475139432 0.3851324420714719 0.5873419475139432 0.3851324420714719 0.8910289772336949
+0.5903681449230234 0.3841856999204012 0.5903681449230235 0.3841856999204012 0.8914789179305039
+0.5936225430520097 0.3833656594588861 0.5936225430520096 0.3833656594588861 0.8911967422163
+0.5968734962449369 0.38302929184528256 0.596873496244937 0.3830292918452826 0.8911459046628135
+0.6002351536539839 0.3822826145228209 0.6002351536539839 0.3822826145228209 0.8875706984463677
+0.6035777380635776 0.3816283565513645 0.6035777380635777 0.3816283565513645 0.8827377641428068
+0.6069919644875283 0.3810243374782025 0.6069919644875283 0.3810243374782025 0.8764567945939025
+0.6340337908198511 0.37042754105917775 0.6340337908198511 0.37042754105917775 0.7866111657556888
+0.6305021057542372 0.3708988163815455 0.6305021057542372 0.3708988163815455 0.7993776351370826
+0.6270346782246811 0.37144301852373557 0.6270346782246811 0.37144301852373557 0.8112237059494366
+0.6136315964439474 0.37370185525457633 0.6136315964439474 0.37370185525457633 0.848294292394781
+0.6171135279800115 0.3733484304487265 0.6171135279800115 0.3733484304487265 0.8406985773117919
+0.623603406509841 0.37205936213955365 0.623603406509841 0.37205936213955365 0.8222337444808868
+0.6203074394151479 0.3727330128327247 0.6203074394151479 0.3727330128327247 0.8320717324498009
+0.6119730437413872 0.3768476708649968 0.6119730437413872 0.3768476708649968 0.8581658110456615
+0.6104906365103941 0.3805282154673593 0.6104906365103941 0.3805282154673593 0.868762921457429
+0.6741071471485371 0.32465066194417075 0.6741071471485371 0.32465066194417075 0.6599261386850732
+0.6775067598873582 0.32462067300223363 0.6775067598873582 0.32462067300223363 0.6541175608669806
+0.6682778687265059 0.32599508519290576 0.6682778687265057 0.3259950851929058 0.6700755324826125
+0.6624099128885087 0.3299725163219417 0.6624099128885087 0.32997251632194174 0.6815820410026224
+0.657046323838066 0.3334822877846288 0.657046323838066 0.3334822877846288 0.6936703395194844
+0.6517154224513605 0.3369431098046854 0.6517154224513605 0.3369431098046854 0.707091285493492
+0.6499909057279755 0.3403005516566664 0.6499909057279755 0.3403005516566664 0.7140460546501483
+0.6482260232170248 0.34363639088863795 0.6482260232170248 0.34363639088863795 0.7214164674685654
+0.6552644394966849 0.33683120287569657 0.655264439496685 0.33683120287569657 0.6997100287886885
+0.6480117484631999 0.3500306388034924 0.6480117484631999 0.3500306388034924 0.7275787224130381
+0.6497870534777193 0.3467841806744576 0.6497870534777191 0.3467841806744576 0.7202683956017011
+0.6606090590668646 0.333404249858506 0.6606090590668646 0.333404249858506 0.6866172817879873
+0.6660497645820785 0.3299123991847769 0.6660497645820785 0.32991239918477694 0.674872396029003
+0.6719713119157522 0.3273636817961351 0.6719713119157521 0.3273636817961351 0.6635895708491732
+0.6809626225989582 0.3246018668340483 0.6809626225989582 0.3246018668340483 0.648071355525854
+0.684456128515043 0.32458368139304494 0.684456128515043 0.32458368139304494 0.6418306065603411
+0.6880160257367615 0.32457394099756093 0.6880160257367615 0.32457394099756093 0.6353475825592482
+0.6916122786778559 0.32459822118704235 0.6916122786778559 0.32459822118704235 0.6286584317662393
+0.646373421063893 0.35330891409258514 0.6463734210638928 0.35330891409258514 0.7347067532723187
+0.6448103027758777 0.3566630156086092 0.6448103027758777 0.3566630156086092 0.741783665300535
+0.6431509304864863 0.3599783711527364 0.6431509304864863 0.3599783711527364 0.7492101224247624
+0.6413396793138452 0.36329234312490355 0.6413396793138452 0.36329234312490355 0.7570933140335714
+0.6394881287522631 0.3666855115195626 0.6394881287522631 0.3666855115195626 0.7650889011227693
+0.6376334026543689 0.3700224291864125 0.6376334026543687 0.3700224291864125 0.7729285756140082
+0.7011350505894218 0.32173826120299487 0.7011350505894218 0.32173826120299487 0.613101602464967
+0.6952365743637553 0.32468008465568876 0.6952365743637553 0.32468008465568876 0.6217522085110597
+0.6988865017480839 0.32480589420404204 0.6988865017480839 0.324805894204042 0.6146249780801001
+0.7373204752790142 0.28960014658441474 0.7373204752790142 0.28960014658441474 0.5460608663396077
+0.7291221197229968 0.2952182700938416 0.7291221197229968 0.29521827009384166 0.5644185682793746
+0.7268471231741985 0.2982264770832699 0.7268471231741985 0.2982264770832699 0.5697535065953446
+0.7210453325389231 0.3007249963242515 0.7210453325389231 0.3007249963242515 0.5821557917238374
+0.7187717067245583 0.30371859122272854 0.7187717067245583 0.30371859122272854 0.586887577570323
+0.7165073712281429 0.30672213925931163 0.7165073712281429 0.30672213925931163 0.5911674555512579
+0.7245683737013945 0.30122251557508156 0.7245683737013945 0.30122251557508156 0.5748316349774782
+0.7141951115015062 0.3096760469839445 0.714195111501506 0.3096760469839445 0.5951000022205157
+0.7118416495537012 0.3127077557794297 0.7118416495537012 0.3127077557794297 0.5985706311200855
+0.7094843392152456 0.31577278588172936 0.7094843392152456 0.31577278588172936 0.6014968433500237
+0.707148466145935 0.31886763636895005 0.707148466145935 0.31886763636895005 0.6038885085992494
+0.7048428794878276 0.32194251731137963 0.7048428794878276 0.32194251731137963 0.6057742011172368
+0.7350056982953331 0.2926635898589903 0.7350056982953331 0.29266358985899027 0.5514915443790737
+0.7326997562459323 0.29570079282829576 0.7326997562459323 0.29570079282829576 0.556904382055798
+0.7432723843040717 0.28687299433159746 0.7432723843040717 0.28687299433159746 0.5336958213896335
+0.7409845629443007 0.2899687444087923 0.7409845629443007 0.28996874440879233 0.5386324215226724
+0.7468812233521609 0.2871115645110866 0.7468812233521609 0.2871115645110866 0.5266940161567816
+0.7490939350491154 0.28412724152349184 0.7490939350491154 0.28412724152349184 0.5225377241654656
+0.7513575485997146 0.28119596255426754 0.7513575485997146 0.28119596255426754 0.5187055260351529
+0.7536449712432196 0.2782932352764031 0.7536449712432196 0.2782932352764031 0.5153190924718448
+0.755933179162803 0.2754664386698764 0.755933179162803 0.2754664386698764 0.5124600275670027
+0.7581203011445091 0.2727789850915451 0.7581203011445091 0.272778985091545 0.5102447104918286
+0.7604445366892069 0.27017324920834834 0.7604445366892069 0.27017324920834834 0.5083539331350454
+0.76299873365732 0.2679903246774513 0.76299873365732 0.2679903246774513 0.5065056162435316
+0.7660426130139955 0.2656599046937488 0.7660426130139956 0.2656599046937487 0.5046677180406386
+0.7694267267699413 0.2636634363229743 0.7694267267699413 0.26366343632297434 0.5027657863621217
+0.7728553612833481 0.26154230187128935 0.7728553612833481 0.2615423018712893 0.5012666573673008
+0.7762386126085394 0.2594370100058482 0.7762386126085393 0.25943701000584823 0.5000858538761839
+0.7796301082824043 0.2573359831413508 0.7796301082824043 0.2573359831413508 0.49906191772486114
+0.7830181293533117 0.2552358768683718 0.7830181293533117 0.2552358768683718 0.4980812217216189
+0.7864066877809606 0.2531399607273669 0.7864066877809606 0.25313996072736694 0.4970183098620025
+0.789796366812268 0.25104660094024894 0.789796366812268 0.25104660094024894 0.49576629360851815
+0.7931866189946946 0.24895397489536564 0.7931866189946946 0.2489539748953656 0.49423493461240714
+0.7965770022898635 0.24686192468616053 0.7965770022898635 0.24686192468616053 0.49235084835523324
+0.7999673855850323 0.2447698744769554 0.7999673855850323 0.2447698744769554 0.49006193322733643
+0.8033577688802014 0.2426778242677503 0.8033577688802014 0.2426778242677503 0.48733807262543577
+0.8067481521753702 0.24058577405854528 0.8067481521753702 0.24058577405854528 0.48417251212720075
+0.8101385354705393 0.23849372384934012 0.8101385354705393 0.23849372384934012 0.48058143688992877
+0.8135289187657082 0.23640167364013495 0.8135289187657083 0.23640167364013495 0.47660248984771164
+0.816919302060877 0.23430962343092987 0.816919302060877 0.23430962343092987 0.4722927245995548
+0.820309685356046 0.23221757322172482 0.820309685356046 0.23221757322172484 0.4677255669483638
+0.823700068651215 0.23012552301251965 0.823700068651215 0.23012552301251965 0.46298713113966583
+0.8270904519463841 0.22803347280331457 0.8270904519463841 0.22803347280331457 0.4581718923495613
+0.8304808352415529 0.22594142259410946 0.8304808352415529 0.22594142259410946 0.4533778178014172
+0.8338712185367217 0.2238493723849044 0.8338712185367217 0.2238493723849044 0.44870117289128314
+0.8372616018318908 0.22175732217569924 0.8372616018318908 0.22175732217569924 0.4442312506890988
+0.8406519851270597 0.21966527196649407 0.8406519851270599 0.21966527196649407 0.44004532455432205
+0.8440423684222286 0.217573221757289 0.8440423684222286 0.217573221757289 0.436204158320133
+0.8474327517173975 0.2154811715480839 0.8474327517173975 0.2154811715480839 0.43274841165829764
+0.8508231350125666 0.21338912133887877 0.8508231350125666 0.21338912133887877 0.429696239400491
+0.8542135183077356 0.21129707112967364 0.8542135183077356 0.21129707112967364 0.42704230019987927
+0.8576039016029045 0.20920502092046855 0.8576039016029045 0.20920502092046855 0.4247582687868618
+0.8609942848980733 0.20711297071126347 0.8609942848980733 0.20711297071126347 0.422794804816028
+0.8643846681932423 0.20502092050205836 0.8643846681932423 0.20502092050205836 0.4210847948955532
+0.8677750514884113 0.2029288702928532 0.8677750514884114 0.2029288702928532 0.4195475764640087
+0.8711654347835801 0.20083682008364812 0.8711654347835801 0.20083682008364812 0.4180937877333342
+0.874555818078749 0.19874476987444303 0.874555818078749 0.19874476987444303 0.41663047128406344
+0.8779462013739181 0.19665271966523792 0.8779462013739181 0.19665271966523792 0.41506608485281743
+0.8813365846690872 0.19456066945603281 0.8813365846690872 0.19456066945603281 0.41331512913710616
+0.884726967964256 0.19246861924682768 0.884726967964256 0.19246861924682768 0.41130217386916845
+0.8881173512594248 0.19037656903762257 0.8881173512594248 0.19037656903762257 0.4089651362735334
+0.8915077345545939 0.18828451882841746 0.8915077345545939 0.18828451882841746 0.40625773070336907
+0.8948981178497628 0.18619246861921235 0.8948981178497629 0.18619246861921235 0.40315105966459
+0.8982885011449318 0.18410041841000724 0.8982885011449318 0.18410041841000724 0.3996343534504651
+0.9016788844401007 0.18200836820080213 0.9016788844401006 0.18200836820080213 0.39571489010016464
+0.9050692677352696 0.17991631799159702 0.9050692677352696 0.17991631799159702 0.39141714308475933
+0.9084596510304386 0.1778242677823919 0.9084596510304387 0.1778242677823919 0.38678121544297106
+0.9118500343256075 0.1757322175731868 0.9118500343256075 0.1757322175731868 0.381860630317759
+0.9152404176207765 0.1736401673639817 0.9152404176207763 0.1736401673639817 0.3767195625590332
+0.9186308009159454 0.17154811715477658 0.9186308009159454 0.17154811715477658 0.37142961669693286
+0.9220211842111143 0.16945606694557147 0.9220211842111145 0.16945606694557147 0.36606628399310664
+0.9254115675062833 0.16736401673636636 0.9254115675062833 0.16736401673636636 0.360705244164395
+0.9288019508014522 0.16527196652716125 0.9288019508014521 0.16527196652716125 0.3554187119267284
+0.9321923340966212 0.16317991631795614 0.9321923340966212 0.16317991631795614 0.3502720583444454
+0.9355827173917901 0.16108786610875103 0.9355827173917902 0.16108786610875103 0.3453209538303276
+0.938973100686959 0.15899581589954592 0.938973100686959 0.15899581589954592 0.34060927495753285
+0.942363483982128 0.1569037656903408 0.9423634839821279 0.1569037656903408 0.33616798444698026
+0.9457538672772969 0.1548117154811357 0.9457538672772969 0.1548117154811357 0.3320151306602255
+0.9491442505724659 0.1527196652719306 0.949144250572466 0.1527196652719306 0.3281570236543159
+0.9525346338676348 0.15062761506272548 0.9525346338676348 0.15062761506272548 0.32459053943117433
+0.9559250171628038 0.14853556485352037 0.9559250171628036 0.14853556485352037 0.3213063965135403
+0.9593154004579727 0.14644351464431526 0.9593154004579727 0.14644351464431526 0.3182931537901403
+0.9627057837531416 0.14435146443511016 0.9627057837531418 0.14435146443511016 0.3155416065197778
+0.9660961670483106 0.14225941422590505 0.9660961670483106 0.14225941422590505 0.31304921322897045
+0.9694865503434795 0.14016736401669994 0.9694865503434794 0.14016736401669994 0.3108241685898623
+0.9728769336386485 0.13807531380749483 0.9728769336386485 0.13807531380749483 0.30888874103798125
+0.9762673169338174 0.13598326359828972 0.9762673169338175 0.13598326359828972 0.3072815138024165
+0.9796577002289864 0.1338912133890846 0.9796577002289864 0.1338912133890846 0.306058203236274
+0.9830480835241553 0.1317991631798795 0.9830480835241552 0.1317991631798795 0.30529078471574406
+0.9864384668193242 0.1297071129706744 0.9864384668193242 0.1297071129706744 0.3050647464300675
+0.9898288501144932 0.12761506276146928 0.9898288501144933 0.12761506276146928 0.30547443008616254
+0.9932192334096621 0.12552301255226417 0.9932192334096621 0.12552301255226417 0.3066166137073881
+0.12970711297071122 0.9932192334096621 0.12970711297071122 0.9932192334096621 0.10703283793244088
+0.13179916317991622 0.9898288501144933 0.13179916317991622 0.9898288501144933 0.10923735230269094
+0.13389121338912124 0.9864384668193242 0.13389121338912124 0.9864384668193242 0.11175731951823827
+0.13598326359832627 0.9830480835241553 0.13598326359832627 0.9830480835241552 0.11453393250265011
+0.13807531380753127 0.9796577002289865 0.13807531380753127 0.9796577002289865 0.11750803839001789
+0.14016736401673624 0.9762673169338175 0.14016736401673624 0.9762673169338175 0.12062160936804504
+0.14225941422594124 0.9728769336386485 0.14225941422594124 0.9728769336386485 0.12381872163137454
+0.14435146443514627 0.9694865503434794 0.14435146443514627 0.9694865503434794 0.12704614164048536
+0.1464435146443513 0.9660961670483106 0.14644351464435126 0.9660961670483106 0.1302536319462889
+0.14853556485355632 0.9627057837531418 0.14853556485355632 0.9627057837531418 0.1333940806610118
+0.1506276150627614 0.9593154004579727 0.15062761506276143 0.9593154004579727 0.13642354006892257
+0.1527196652719666 0.9559250171628038 0.1527196652719666 0.9559250171628036 0.1393012384101535
+0.1548117154811718 0.9525346338676349 0.1548117154811718 0.9525346338676349 0.1419896088106888
+0.15690376569037712 0.9491442505724661 0.15690376569037712 0.9491442505724662 0.14445436255113567
+0.15899581589958234 0.9457538672772973 0.15899581589958234 0.9457538672772973 0.14666462079328277
+0.16108786610878764 0.9423634839821285 0.16108786610878764 0.9423634839821285 0.14859310920635696
+0.1631799163179929 0.9389731006869603 0.1631799163179929 0.9389731006869603 0.15021641305323274
+0.16527196652719817 0.9355827173917921 0.1652719665271982 0.9355827173917922 0.15151528555609015
+0.16736401673640305 0.9321923340966243 0.16736401673640303 0.9321923340966244 0.15247499915621268
+0.16945606694560694 0.9288019508014564 0.16945606694560691 0.9288019508014563 0.15308572708663135
+0.17154811715481066 0.9254115675062881 0.17154811715481066 0.9254115675062881 0.15334294103120416
+0.1736401673640137 0.9220211842111193 0.1736401673640137 0.9220211842111193 0.15324780913777802
+0.175732217573217 0.9186308009159504 0.175732217573217 0.9186308009159504 0.15280757689697722
+0.17782426778242152 0.9152404176207809 0.17782426778242152 0.915240417620781 0.15203591100971883
+0.179916317991628 0.911850034325612 0.179916317991628 0.911850034325612 0.15095318297357962
+0.1820083682008369 0.9084596510304438 0.1820083682008369 0.9084596510304438 0.14958666438951718
+0.18410041841004876 0.9050692677352785 0.18410041841004876 0.9050692677352785 0.14797059971255064
+0.18619246861926475 0.9016788844401176 0.18619246861926475 0.9016788844401177 0.14614611438988998
+0.1882845188284778 0.8982885011449528 0.18828451882847783 0.898288501144953 0.14416090758964797
+0.19037656903769826 0.8948981178497979 0.19037656903769826 0.8948981178497979 0.14206867039087737
+0.19246861924692202 0.8915077345546436 0.19246861924692202 0.8915077345546436 0.13992816496122318
+0.19456066945615422 0.888117351259504 0.19456066945615422 0.8881173512595041 0.13780190198403797
+0.19665271966539286 0.88472696796438 0.19665271966539286 0.88472696796438 0.1357543679314687
+0.19874476987463088 0.881336584669302 0.19874476987463088 0.8813365846693021 0.1338497867591957
+0.2008368200838415 0.8779462013742392 0.2008368200838415 0.8779462013742393 0.1321494566111161
+0.20292887029298756 0.8745558180792661 0.20292887029298753 0.874555818079266 0.13070878041423103
+0.20502092050209367 0.8711654347841998 0.20502092050209367 0.8711654347841998 0.12957420005534212
+0.2071129707111158 0.8677750514891263 0.2071129707111158 0.8677750514891261 0.1287803265115197
+0.20920502092025825 0.864384668194087 0.20920502092025825 0.864384668194087 0.12834760440931048
+0.21129707112965657 0.8609942848991504 0.21129707112965654 0.8609942848991504 0.1282808324662594
+0.21338912133944743 0.8576039016044574 0.21338912133944743 0.8576039016044575 0.12856877000587666
+0.21548117154967625 0.8542135183103717 0.21548117154967625 0.8542135183103717 0.12918490856367928
+0.21757322175980207 0.8508231350168313 0.21757322175980207 0.8508231350168313 0.13008931476626062
+0.21966527197003138 0.8474327517235731 0.21966527197003138 0.8474327517235732 0.13123130364692528
+0.22175732217940258 0.8440423684306497 0.22175732217940256 0.8440423684306496 0.1325526169027522
+0.2238493723898142 0.8406519851376327 0.2238493723898142 0.8406519851376327 0.13399077021805272
+0.22594142260060654 0.8372616018447099 0.22594142260060654 0.8372616018447099 0.13548228453019526
+0.22803347281384526 0.8338712185538028 0.22803347281384526 0.8338712185538028 0.13696560056372695
+0.2301255230300805 0.8304808352652122 0.2301255230300805 0.8304808352652122 0.13838356561855283
+0.23221757325083492 0.8270904519863104 0.23221757325083492 0.8270904519863104 0.13968545650922307
+0.23430962346811648 0.8237000687124526 0.23430962346811648 0.8237000687124526 0.14082855369967162
+0.23640167367886414 0.8203096854571355 0.23640167367886414 0.8203096854571355 0.14177930928521607
+0.23849372389003967 0.8169193021973055 0.23849372389003967 0.8169193021973055 0.14251416018364726
+0.2405857740939061 0.8135289189441969 0.2405857740939061 0.8135289189441969 0.1430200338403067
+0.2426778243210652 0.8101385357088876 0.2426778243210652 0.8101385357088876 0.14329458113331775
+0.2447698745971567 0.8067481525084546 0.2447698745971567 0.8067481525084546 0.14334615340043919
+0.24686192498623397 0.8033577693874373 0.24686192498623397 0.8033577693874373 0.14319352239602748
+0.2489539849259836 0.7999673868454109 0.2489539849259836 0.7999673868454109 0.1428653358947977
+0.25104614352548843 0.796577051029864 0.25104614352548843 0.796577051029864 0.1423993643946876
+0.2531385842497324 0.7931870615357725 0.2531385842497324 0.7931870615357725 0.14184150973458645
+0.25523133304513806 0.7897989057737699 0.25523133304513806 0.7897989057737699 0.14124474984133206
+0.2573249768855331 0.7864163817959283 0.2573249768855331 0.7864163817959283 0.14066873381244846
+0.28705564929422644 0.742736305364435 0.28705564929422644 0.742736305364435 0.15567241570392557
+0.2893068635851752 0.7398367939365925 0.2893068635851752 0.7398367939365925 0.15828892719522927
+0.2913551096381108 0.7365096760265274 0.2913551096381108 0.7365096760265274 0.1606363617293101
+0.2594201655003347 0.7830457937930663 0.2594201655003347 0.7830457937930663 0.1401767618203277
+0.26151772751489794 0.7796935209702974 0.26151772751489794 0.7796935209702974 0.13983052520022465
+0.26362211182823064 0.7763606358119454 0.26362211182823064 0.7763606358119454 0.13968639522736545
+0.2848937409472013 0.7454225404067529 0.28489374094720127 0.7454225404067528 0.1531944888105482
+0.2657401718394193 0.7730386636236041 0.2657401718394193 0.7730386636236041 0.13978951425732025
+0.26787827118366125 0.7697154830377118 0.2678782711836613 0.7697154830377118 0.14017346732715022
+0.2829738355357538 0.7483818550443014 0.2829738355357538 0.7483818550443014 0.15114115593507052
+0.2810479974290669 0.7514256452259778 0.2810479974290669 0.7514256452259778 0.14922805670055195
+0.27015762037422153 0.7664275483931495 0.27015762037422153 0.7664275483931496 0.1410170581264271
+0.271586265735066 0.7634109905726751 0.271586265735066 0.7634109905726751 0.14125351719456655
+0.27905914677333893 0.7545305584369849 0.27905914677333893 0.7545305584369849 0.14741702072649057
+0.2747731962353014 0.7613633330133986 0.27477319623530144 0.7613633330133985 0.14433123215718324
+0.2769993814238047 0.7577360783838367 0.2769993814238047 0.7577360783838367 0.1457633466040725
+0.2877002486245773 0.7457123492523482 0.2877002486245773 0.7457123492523482 0.15687393187698498
+0.2933327582968125 0.733183471182118 0.29333275829681243 0.733183471182118 0.16285298754559563
+0.30711915408370866 0.7105622336848362 0.30711915408370866 0.7105622336848362 0.1750582897553082
+0.2952650962059787 0.7299006694584961 0.2952650962059787 0.7299006694584961 0.16494643702068476
+0.299602321416761 0.7170200070113468 0.29960232141676096 0.7170200070113468 0.16782334574041058
+0.30162463839463177 0.7138245365646395 0.30162463839463177 0.7138245365646395 0.16932391850267228
+0.3048615158746765 0.7138000344239075 0.3048615158746765 0.7138000344239074 0.1734361489291364
+0.30092892846992375 0.7203178242911189 0.30092892846992375 0.7203178242911189 0.17041268772286874
+0.29904070116763276 0.7234829879307446 0.29904070116763276 0.7234829879307446 0.16871628561912003
+0.2971656212792905 0.7266635527918252 0.2971656212792905 0.7266635527918252 0.16690451764128575
+0.31796873746937576 0.6941154754730121 0.31796873746937576 0.6941154754730121 0.18036049251164563
+0.3160063504775073 0.6974172755371427 0.3160063504775073 0.6974172755371427 0.17979632161584516
+0.31401075978365206 0.7007698344654267 0.31401075978365206 0.7007698344654267 0.1791392159152516
+0.3119194655639167 0.7042582247089386 0.31191946556391675 0.7042582247089387 0.17831655747671527
+0.30977446610444215 0.7079600087105833 0.30977446610444215 0.7079600087105833 0.177377417196241
+0.32725676918128555 0.6841338301511795 0.32725676918128555 0.6841338301511795 0.18766832277781512
+0.32540311666735433 0.6873783504654294 0.32540311666735433 0.6873783504654294 0.187008206332855
+0.3235322350460007 0.6906339849298025 0.32353223504600065 0.6906339849298025 0.18638342784580167
+0.32163746478808214 0.6939051451478769 0.32163746478808214 0.6939051451478769 0.18574656046418078
+0.3307393924836276 0.6837642423898169 0.33073939248362766 0.6837642423898168 0.19360880157301963
+0.33760776778548074 0.6700752628335401 0.33760776778548074 0.6700752628335401 0.1969351049089795
+0.3324599331727729 0.6804442433728889 0.3324599331727729 0.6804442433728889 0.194300502289945
+0.33582539579254317 0.6736782871697693 0.33582539579254317 0.6736782871697694 0.19583269545213658
+0.3340123497525655 0.6770742933888382 0.3340123497525655 0.6770742933888382 0.19473880204314434
+0.3659526304624843 0.6295841014628151 0.3659526304624843 0.6295841014628151 0.25890732099484387
+0.3519576274112606 0.6499844072132117 0.3519576274112606 0.6499844072132116 0.22017277247266695
+0.34693675414915703 0.6533783252176462 0.34693675414915703 0.6533783252176462 0.20856409753203864
+0.3443971176313133 0.6561558089108119 0.34439711763131337 0.656155808910812 0.2036466997984625
+0.3394471772653323 0.6666140614535959 0.3394471772653323 0.6666140614535959 0.19850848688297862
+0.341221241297023 0.6632760141440194 0.341221241297023 0.6632760141440194 0.2003020840079849
+0.34303993635849994 0.6598619211200647 0.34303993635849994 0.6598619211200648 0.2024610875598798
+0.35022397519468784 0.653245293007134 0.35022397519468784 0.6532452930071341 0.21691192857227445
+0.36416483165874064 0.6329128750211587 0.36416483165874064 0.6329128750211587 0.2528231462386718
+0.36237449783248343 0.6362654550596443 0.36237449783248343 0.6362654550596442 0.24717892737193567
+0.3605908504097937 0.6396446114223154 0.3605908504097937 0.6396446114223154 0.24199161425984125
+0.35882885381415663 0.6430341886843275 0.35882885381415663 0.6430341886843275 0.23728811068728076
+0.3570724415638027 0.6464197249163224 0.3570724415638027 0.6464197249163224 0.23300754644369134
+0.35534093987758747 0.6497848783426273 0.35534093987758747 0.6497848783426273 0.2291803933177363
+0.3855825040461448 0.510229277903713 0.38558250404614475 0.5102292779037131 0.4402366702060857
+0.38314246260884083 0.5130594834020975 0.38314246260884083 0.5130594834020975 0.4216476930765876
+0.38025119703305865 0.51723008147666 0.38025119703305865 0.51723008147666 0.3956130530996181
+0.3826418194010269 0.5155724639810347 0.3826418194010269 0.5155724639810347 0.4059460953435098
+0.37825336074893606 0.5218164739712988 0.37825336074893606 0.5218164739712988 0.3665367722516329
+0.38072715804257246 0.5197504395490938 0.38072715804257246 0.5197504395490938 0.3783929575325073
+0.37651702309256085 0.5242328045694494 0.3765170230925609 0.5242328045694494 0.352379656457155
+0.3754558968110011 0.5265469028775063 0.3754558968110011 0.5265469028775063 0.3384871576323663
+0.3791369716631267 0.5237426149283475 0.3791369716631267 0.5237426149283475 0.35202846091778556
+0.373100053036427 0.5311400873878396 0.373100053036427 0.5311400873878397 0.31338759330640936
+0.3761951032078611 0.528935765252857 0.37619510320786104 0.5289357652528571 0.32149703808220004
+0.37319545972342616 0.5344823824151266 0.37319545972342616 0.5344823824151267 0.29329059439687505
+0.37034543408717924 0.5370791879569522 0.3703454340871793 0.5370791879569522 0.2845909191658827
+0.3691589598560651 0.5402899455816963 0.3691589598560651 0.5402899455816963 0.2706391801827576
+0.3735645524882446 0.5372231212743956 0.3735645524882446 0.5372231212743956 0.27768839723617106
+0.36976843726396313 0.5431723135181826 0.36976843726396313 0.5431723135181826 0.2573761705878352
+0.36682193464627477 0.5458677648655423 0.3668219346462748 0.5458677648655423 0.251054436816426
+0.364792095981642 0.5561634989719642 0.364792095981642 0.5561634989719642 0.22657059880810201
+0.36741981287123876 0.549690847936329 0.36741981287123876 0.549690847936329 0.23875113024759778
+0.366052746744894 0.5534137807420536 0.366052746744894 0.5534137807420536 0.23123524285493421
+0.3654567529997925 0.5588207314800944 0.3654567529997925 0.5588207314800943 0.2242574867655037
+0.3635361410962226 0.5647208186498153 0.3635361410962226 0.5647208186498153 0.21988665876983496
+0.3660001961515429 0.5619975153047276 0.3660001961515429 0.5619975153047276 0.22394640524979129
+0.36431085074547814 0.5680836358545127 0.36431085074547814 0.5680836358545127 0.2225407018842224
+0.36264933698418894 0.5747321576127297 0.36264933698418894 0.5747321576127297 0.22290530290429586
+0.3650586479591091 0.5718001916135097 0.3650586479591091 0.5718001916135097 0.22765817692406332
+0.36360951585170553 0.5783192490717557 0.3636095158517056 0.5783192490717557 0.2296928237117601
+0.362406877558184 0.5850424721749645 0.36240687755818396 0.5850424721749645 0.23223741815029827
+0.3646564492913551 0.5818522362385554 0.3646564492913551 0.5818522362385554 0.23770754257102336
+0.36356305782434073 0.5887174392403827 0.36356305782434073 0.5887174392403827 0.24046891502333634
+0.3622209266214082 0.5962477861730718 0.3622209266214082 0.5962477861730718 0.24103376853029612
+0.36488853452857795 0.5925489419403528 0.36488853452857795 0.5925489419403528 0.24948885011483588
+0.36425766170537255 0.5994573541016908 0.36425766170537255 0.5994573541016908 0.2512742544074404
+0.36364532706592984 0.6056461343188007 0.36364532706592984 0.6056461343188007 0.25117454887661056
+0.364862567503323 0.6085579813475938 0.364862567503323 0.6085579813475938 0.2566205818144309
+0.3657325782181426 0.6026840631407734 0.3657325782181426 0.6026840631407734 0.25883543349728383
+0.3663927769434785 0.6114653938129435 0.3663927769434785 0.6114653938129435 0.26283811682223224
+0.3662678814852823 0.6173135241787531 0.3662678814852823 0.6173135241787531 0.2619994641874345
+0.36783517075974737 0.6201562901552183 0.36783517075974737 0.6201562901552183 0.26721123411935105
+0.36804782447353257 0.6139565732112867 0.36804782447353257 0.6139565732112867 0.2691476715983727
+0.36948723496603886 0.6229785044273932 0.3694872349660389 0.6229785044273931 0.2723306507841314
+0.36948192108882183 0.6291317979025296 0.36948192108882183 0.6291317979025296 0.27047894622430335
+0.37116390470320515 0.6258162121012397 0.37116390470320515 0.6258162121012397 0.277158256042863
+0.38977266583372283 0.5119545222486855 0.38977266583372283 0.5119545222486855 0.43498480886335544
+0.3937596235757685 0.5135784378631643 0.3937596235757685 0.5135784378631643 0.42700619885513497
+0.5457740797465414 0.394951192227748 0.5457740797465415 0.39495119222774794 0.6266628588084354
+0.5492757733176579 0.39346724122608323 0.5492757733176578 0.3934672412260833 0.66135329128098
+0.5518704036515638 0.39431413284119576 0.5518704036515638 0.39431413284119576 0.7020406160468824
+0.5574804456829219 0.3909628089332151 0.5574804456829218 0.3909628089332151 0.7410905888333863
+0.5546368186429432 0.39348434480635847 0.5546368186429432 0.39348434480635847 0.7294335819900777
+0.5600543123510039 0.3925642915935676 0.5600543123510039 0.3925642915935676 0.7822704591640804
+0.5628105655379023 0.3909700204275004 0.5628105655379024 0.3909700204275004 0.7961726298747015
+0.5727228944526929 0.38734921885430323 0.5727228944526929 0.38734921885430323 0.8456067519122089
+0.5659216062026632 0.3899186695822183 0.5659216062026632 0.3899186695822183 0.8153692743585541
+0.5692928157175373 0.3887633464145936 0.5692928157175373 0.3887633464145936 0.832829188292968
+0.5836951143830938 0.3858969318816452 0.5836951143830938 0.38589693188164514 0.8862671094461481
+0.5784055218676832 0.3878965578303698 0.5784055218676832 0.3878965578303698 0.8790299598309147
+0.5809405088205277 0.3878907996521238 0.5809405088205277 0.3878907996521238 0.8888244879144208
+0.5756984012161559 0.38989318264753625 0.5756984012161558 0.3898931826475363 0.8803841956349466
+0.5463851567187469 0.39965412880301504 0.5463851567187469 0.39965412880301504 0.6741150477249493
+0.5468788147725527 0.4039035519104787 0.5468788147725528 0.4039035519104787 0.7194865809597059
+0.5864140441479324 0.3887835186808763 0.5864140441479324 0.3887835186808763 0.9082500045834562
+0.5896425949070208 0.3875250271517503 0.5896425949070209 0.3875250271517503 0.906322139574003
+0.5922287855200328 0.3861493469559013 0.5922287855200328 0.3861493469559013 0.9020387525737006
+0.5953328280549666 0.3867987314973968 0.5953328280549667 0.38679873149739674 0.9056143817115226
+0.5990162788401068 0.38587037411212566 0.5990162788401068 0.38587037411212566 0.900153067165126
+0.6023212947260448 0.3852500809840018 0.6023212947260448 0.3852500809840018 0.8944522463171802
+0.6056653047727224 0.3846969893275947 0.6056653047727224 0.3846969893275947 0.8874266371534018
+0.6090770624231062 0.3842071843375526 0.6090770624231062 0.3842071843375526 0.8789816958831952
+0.6357929144076372 0.3733262259964159 0.6357929144076372 0.3733262259964159 0.7804945740579815
+0.6322661994501143 0.3737335021995085 0.6322661994501143 0.3737335021995085 0.7944025003034262
+0.6288132443446955 0.374198782536538 0.6288132443446955 0.374198782536538 0.8073625752889825
+0.6254364109173478 0.3747610644639065 0.6254364109173478 0.3747610644639065 0.819382269569786
+0.6155255733618864 0.37657696434213905 0.6155255733618864 0.37657696434213905 0.8501235748076591
+0.6188649407217252 0.3761194487957104 0.6188649407217252 0.3761194487957104 0.8409097635195061
+0.6220545004682413 0.375553087228918 0.6220545004682413 0.37555308722891795 0.8309629516624533
+0.6140115584932505 0.38010570737571303 0.6140115584932505 0.38010570737571303 0.8597084037486632
+0.6125213079690951 0.3837819917043986 0.6125213079690951 0.3837819917043986 0.8691958431474262
+0.675536223555955 0.32761323314403673 0.6755362235559551 0.32761323314403673 0.6570256626106402
+0.6789588108124422 0.32769225462086876 0.6789588108124422 0.32769225462086876 0.6505644621457768
+0.6697502460636481 0.33021510040137175 0.6697502460636481 0.33021510040137175 0.6677081355545256
+0.6641603907511688 0.3334018724445305 0.664160390751169 0.3334018724445305 0.6793666855410584
+0.6588252558263087 0.3367283097218057 0.6588252558263087 0.3367283097218057 0.6919478347360629
+0.6535096606946198 0.3402292082121907 0.6535096606946197 0.3402292082121907 0.7060810082049941
+0.6517037252033707 0.34354785147510136 0.6517037252033707 0.34354785147510136 0.7129192618791899
+0.6569909233188681 0.3400049393137051 0.6569909233188681 0.34000493931370507 0.6977904099859112
+0.6495773054619062 0.3530727877274269 0.6495773054619062 0.3530727877274269 0.7246719233478541
+0.6512703436743107 0.34990912795701207 0.6512703436743107 0.34990912795701207 0.7180003143329551
+0.6531139873346388 0.34668100081181263 0.6531139873346388 0.34668100081181263 0.711133082082127
+0.6623898494205797 0.33673542529371603 0.6623898494205797 0.33673542529371603 0.6839508816781502
+0.6677232339656426 0.33351803009324893 0.6677232339656426 0.33351803009324893 0.6718587138110004
+0.6733908084851657 0.33061236938311317 0.6733908084851657 0.33061236938311317 0.6604738261822692
+0.682427164918955 0.32770640966516656 0.682427164918955 0.32770640966516656 0.6439296097806902
+0.6859304592941942 0.32768904864717957 0.6859304592941942 0.32768904864717957 0.6371706088850676
+0.6894815245216247 0.3276838360505388 0.6894815245216247 0.3276838360505388 0.6302414625775056
+0.6930573209615273 0.3277440207091253 0.6930573209615273 0.3277440207091253 0.6231452895794954
+0.6482924363104722 0.35636759914744254 0.6482924363104722 0.3563675991474425 0.7301411323496118
+0.6469911718235268 0.35976543185310433 0.6469911718235268 0.35976543185310433 0.7357993028671187
+0.6452137314383393 0.36292292788221825 0.6452137314383393 0.3629229278822183 0.7429119119704608
+0.6432336677024016 0.36633545301544607 0.6432336677024016 0.36633545301544607 0.7507811919561123
+0.6412988393305924 0.36968027626337346 0.6412988393305924 0.36968027626337346 0.7583775405412322
+0.6393870681433594 0.37297928107564227 0.6393870681433594 0.37297928107564227 0.7656997112739261
+0.7025568909384363 0.3249936826137985 0.7025568909384363 0.3249936826137985 0.6072484986428632
+0.6966586304290875 0.32785176291066853 0.6966586304290875 0.32785176291066853 0.6158794061225205
+0.7002855834917794 0.32802422436208595 0.7002855834917794 0.32802422436208595 0.6084007489986551
+0.7386500552098011 0.29308884676624 0.7386500552098011 0.29308884676624 0.5438674273875351
+0.7303967373383807 0.29871483345085514 0.7303967373383807 0.29871483345085514 0.5621947813614018
+0.7281044293409158 0.30171421315356456 0.7281044293409158 0.30171421315356456 0.5672406204273274
+0.7222827538379675 0.30421664664449805 0.7222827538379675 0.30421664664449805 0.5795728010794406
+0.7200153348969257 0.30720544259337496 0.7200153348969257 0.30720544259337496 0.5838667569427559
+0.71772288527217 0.3101539772357354 0.71772288527217 0.3101539772357354 0.5877695383032672
+0.7258154807430216 0.30471303997069793 0.7258154807430216 0.30471303997069793 0.5719621218317307
+0.7062429121586664 0.3252528795559057 0.7062429121586664 0.3252528795559057 0.599602059628499
+0.7154199556010911 0.3131131485594815 0.7154199556010911 0.3131131485594815 0.5911803023480728
+0.7131295119519204 0.31612147615084074 0.7131295119519204 0.3161214761508408 0.5940292869010778
+0.7108342942834126 0.3191698110952193 0.7108342942834126 0.3191698110952193 0.5963521509226509
+0.7085466770749033 0.3222169600162583 0.7085466770749033 0.3222169600162583 0.5981774523959413
+0.7363033177475081 0.29617287845784246 0.7363033177475081 0.2961728784578424 0.5491829586837236
+0.7339601359114685 0.29921179555309013 0.7339601359114685 0.29921179555309013 0.5544208731507912
+0.7447217744340003 0.29020672845488904 0.7447217744340003 0.29020672845488904 0.5310380925326843
+0.7423301517414255 0.29346363462882363 0.7423301517414255 0.2934636346288237 0.5360873854064069
+0.7483343180213375 0.29018224458899483 0.7483343180213375 0.29018224458899483 0.5237390195757339
+0.7503694431949887 0.28729002524680713 0.7503694431949887 0.28729002524680713 0.5199389797854527
+0.7526288021123343 0.28440079558539644 0.7526288021123343 0.28440079558539644 0.5160829560769004
+0.7549332356689259 0.2815029552870479 0.7549332356689259 0.2815029552870479 0.5125955989768287
+0.7572557595395533 0.27859983248184195 0.7572557595395533 0.27859983248184195 0.5095768682888612
+0.759550482695474 0.27584792858371243 0.7595504826954739 0.2758479285837124 0.5071103596985026
+0.7609402862534044 0.2733362437224779 0.7609402862534044 0.2733362437224779 0.5061457479054141
+0.7636296131681611 0.2720005853307 0.7636296131681611 0.2720005853307 0.5034764282247232
+0.7664929890101425 0.269955889522831 0.7664929890101425 0.26995588952283095 0.5013001214223993
+0.7697542869406313 0.267808384323853 0.7697542869406312 0.267808384323853 0.4991857139137043
+0.7729418024260584 0.2657234436374499 0.7729418024260584 0.2657234436374499 0.49753340155837117
+0.7762685259881594 0.26363326643449847 0.7762685259881595 0.26363326643449847 0.4960858272740754
+0.7796413844030372 0.26152564375039583 0.7796413844030372 0.26152564375039583 0.4948404151712866
+0.7830222052832939 0.2594238438910216 0.7830222052832939 0.2594238438910215 0.49369994293520897
+0.786408102577627 0.257325525982609 0.786408102577627 0.257325525982609 0.492550203613928
+0.7897966592754915 0.2552308345471201 0.7897966592754915 0.2552308345471201 0.49128006608438285
+0.793186655379814 0.25313813196988316 0.793186655379814 0.25313813196988316 0.4897912613854695
+0.7965770022898634 0.25104602510457075 0.7965770022898634 0.25104602510457075 0.4880016867869191
+0.7999673855850326 0.24895397489536567 0.7999673855850326 0.24895397489536567 0.4858472572122409
+0.8033577688802014 0.24686192468616053 0.8033577688802014 0.24686192468616053 0.4832850624179153
+0.8067481521753703 0.24476987447695547 0.8067481521753702 0.2447698744769555 0.48029537253405313
+0.8101385354705393 0.24267782426775034 0.8101385354705393 0.24267782426775034 0.47688203192097944
+0.8135289187657083 0.24058577405854523 0.8135289187657083 0.24058577405854523 0.47307173918011003
+0.8169193020608772 0.2384937238493401 0.8169193020608772 0.2384937238493401 0.4689124130925551
+0.8203096853560461 0.23640167364013503 0.820309685356046 0.23640167364013506 0.4644707105302734
+0.823700068651215 0.2343096234309299 0.823700068651215 0.2343096234309299 0.45982870588590824
+0.8270904519463841 0.2322175732217248 0.8270904519463841 0.2322175732217248 0.4550798298366306
+0.8304808352415529 0.23012552301251968 0.8304808352415529 0.23012552301251968 0.4503241547751527
+0.8338712185367219 0.2280334728033146 0.8338712185367217 0.22803347280331462 0.4456631771456641
+0.8372616018318908 0.22594142259410946 0.8372616018318908 0.22594142259410946 0.4411943191642193
+0.8406519851270599 0.22384937238490435 0.8406519851270599 0.22384937238490435 0.4370054345685604
+0.8440423684222287 0.2217573221756992 0.8440423684222287 0.2217573221756992 0.43316965753884645
+0.8474327517173976 0.21966527196649416 0.8474327517173975 0.21966527196649419 0.4297409636976786
+0.8508231350125666 0.21757322175728902 0.8508231350125666 0.21757322175728902 0.4267508014898142
+0.8542135183077356 0.2154811715480839 0.8542135183077356 0.2154811715480839 0.4242060917534176
+0.8576039016029045 0.21338912133887877 0.8576039016029045 0.21338912133887877 0.42208878385778087
+0.8609942848980734 0.2112970711296737 0.8609942848980733 0.2112970711296737 0.42035701185346847
+0.8643846681932423 0.20920502092046858 0.8643846681932423 0.20920502092046858 0.41894773781011224
+0.8677750514884114 0.20711297071126347 0.8677750514884114 0.20711297071126347 0.41778063012507743
+0.8711654347835802 0.20502092050205833 0.8711654347835802 0.20502092050205833 0.41676282563831707
+0.8745558180787492 0.20292887029285328 0.874555818078749 0.2029288702928533 0.4157941784141002
+0.8779462013739181 0.20083682008364814 0.8779462013739181 0.20083682008364814 0.414772604756052
+0.8813365846690872 0.198744769874443 0.8813365846690872 0.198744769874443 0.4135991825734225
+0.884726967964256 0.1966527196652379 0.884726967964256 0.1966527196652379 0.41218273699457325
+0.8881173512594249 0.1945606694560328 0.8881173512594248 0.1945606694560328 0.41044372606211826
+0.8915077345545939 0.19246861924682768 0.8915077345545939 0.19246861924682768 0.4083173169543772
+0.8948981178497628 0.19037656903762257 0.8948981178497629 0.19037656903762257 0.4057556062823058
+0.8982885011449318 0.18828451882841746 0.8982885011449318 0.18828451882841746 0.4027289845360049
+0.9016788844401007 0.18619246861921235 0.9016788844401006 0.18619246861921235 0.39922667552135976
+0.9050692677352696 0.18410041841000724 0.9050692677352696 0.18410041841000724 0.39525649987733186
+0.9084596510304386 0.18200836820080213 0.9084596510304387 0.18200836820080213 0.39084392183110744
+0.9118500343256075 0.17991631799159702 0.9118500343256075 0.17991631799159702 0.38603044467998254
+0.9152404176207765 0.1778242677823919 0.9152404176207763 0.1778242677823919 0.3808714270568747
+0.9186308009159454 0.1757322175731868 0.9186308009159454 0.1757322175731868 0.3754334020057384
+0.9220211842111143 0.1736401673639817 0.9220211842111145 0.1736401673639817 0.36979099637845264
+0.9254115675062833 0.17154811715477658 0.9254115675062833 0.17154811715477658 0.3640235698369891
+0.9288019508014522 0.16945606694557147 0.9288019508014521 0.16945606694557147 0.3582117198628873
+0.9321923340966212 0.16736401673636636 0.9321923340966212 0.16736401673636636 0.35243382864104206
+0.9355827173917901 0.16527196652716125 0.9355827173917902 0.16527196652716125 0.34676285432574366
+0.938973100686959 0.16317991631795614 0.938973100686959 0.16317991631795614 0.3412635860541879
+0.942363483982128 0.16108786610875103 0.9423634839821279 0.16108786610875103 0.33599058148105226
+0.9457538672772969 0.15899581589954592 0.9457538672772969 0.15899581589954592 0.3309869809742911
+0.9491442505724659 0.1569037656903408 0.949144250572466 0.1569037656903408 0.32628434053926303
+0.9525346338676348 0.1548117154811357 0.9525346338676348 0.1548117154811357 0.32190354758961254
+0.9559250171628038 0.1527196652719306 0.9559250171628036 0.1527196652719306 0.3178567869648104
+0.9593154004579727 0.15062761506272548 0.9593154004579727 0.15062761506272548 0.31415042061188964
+0.9627057837531416 0.14853556485352037 0.9627057837531418 0.14853556485352037 0.31078854630999214
+0.9660961670483106 0.14644351464431526 0.9660961670483106 0.14644351464431526 0.3077769203274738
+0.9694865503434795 0.14435146443511016 0.9694865503434794 0.14435146443511016 0.3051268734339189
+0.9728769336386485 0.14225941422590505 0.9728769336386485 0.14225941422590505 0.30285882194117636
+0.9762673169338174 0.14016736401669994 0.9762673169338175 0.14016736401669994 0.30100497491098227
+0.9796577002289864 0.13807531380749483 0.9796577002289864 0.13807531380749483 0.29961086471388526
+0.9830480835241553 0.13598326359828972 0.9830480835241552 0.13598326359828972 0.2987353831328192
+0.9864384668193242 0.1338912133890846 0.9864384668193242 0.1338912133890846 0.2984490959073234
+0.9898288501144932 0.1317991631798795 0.9898288501144933 0.1317991631798795 0.29883074403164006
+0.9932192334096621 0.1297071129706744 0.9932192334096621 0.1297071129706744 0.2999620253272868
+0.13389121338912124 0.9932192334096621 0.13389121338912124 0.9932192334096621 0.10970437816870666
+0.13598326359832624 0.9898288501144933 0.13598326359832624 0.9898288501144933 0.11200879732283191
+0.13807531380753127 0.9864384668193242 0.13807531380753127 0.9864384668193242 0.11463163293570226
+0.1401673640167363 0.9830480835241553 0.14016736401673627 0.9830480835241552 0.1175149440411445
+0.14225941422594132 0.9796577002289864 0.14225941422594132 0.9796577002289864 0.120599606066479
+0.14435146443514635 0.9762673169338174 0.14435146443514635 0.9762673169338175 0.12382677561695106
+0.14644351464435135 0.9728769336386485 0.14644351464435135 0.9728769336386485 0.12713893678182556
+0.1485355648535564 0.9694865503434795 0.14853556485355643 0.9694865503434794 0.13048060560357497
+0.15062761506276143 0.9660961670483106 0.15062761506276143 0.9660961670483106 0.13379878469076553
+0.1527196652719665 0.9627057837531416 0.15271966527196648 0.9627057837531418 0.13704325590838182
+0.15481171548117165 0.9593154004579727 0.15481171548117165 0.9593154004579727 0.14016678478470548
+0.15690376569037684 0.9559250171628038 0.15690376569037687 0.9559250171628036 0.14312529246371666
+0.15899581589958203 0.9525346338676349 0.15899581589958203 0.9525346338676349 0.1458780337704886
+0.16108786610878723 0.9491442505724664 0.16108786610878723 0.9491442505724664 0.14838780520784053
+0.16317991631799242 0.9457538672772977 0.16317991631799242 0.9457538672772977 0.15062119507069752
+0.16527196652719747 0.9423634839821292 0.16527196652719747 0.9423634839821292 0.15254887921091057
+0.16736401673640233 0.9389731006869607 0.16736401673640233 0.9389731006869607 0.15414595983653878
+0.16945606694560678 0.9355827173917927 0.16945606694560678 0.9355827173917927 0.15539234051263187
+0.17154811715481114 0.9321923340966239 0.17154811715481114 0.9321923340966239 0.15627312768380697
+0.17364016736401497 0.9288019508014552 0.17364016736401497 0.9288019508014552 0.15677904705054638
+0.17573221757321886 0.925411567506286 0.17573221757321886 0.925411567506286 0.15690686153801148
+0.17782426778242344 0.9220211842111167 0.17782426778242344 0.9220211842111167 0.15665977596594008
+0.17991631799162913 0.9186308009159473 0.17991631799162913 0.9186308009159473 0.156047811438774
+0.18200836820083618 0.9152404176207787 0.18200836820083618 0.9152404176207787 0.15508812950245263
+0.1841004184100449 0.9118500343256112 0.1841004184100449 0.9118500343256112 0.15380528184008502
+0.1861924686192552 0.9084596510304447 0.1861924686192552 0.9084596510304447 0.1522313553346846
+0.18828451882846667 0.90506926773528 0.18828451882846667 0.90506926773528 0.15040597449867932
+0.19037656903767997 0.9016788844401177 0.19037656903767997 0.9016788844401177 0.14837611369005124
+0.1924686192468956 0.898288501144957 0.1924686192468956 0.898288501144957 0.14619566099659534
+0.1945606694561158 0.8948981178498041 0.1945606694561158 0.8948981178498041 0.1439246660576701
+0.1966527196653389 0.89150773455466 0.1966527196653389 0.8915077345546599 0.14162819886294184
+0.19874476987456338 0.8881173512595413 0.19874476987456338 0.8881173512595414 0.13937475105861985
+0.20083682008376977 0.8847269679644296 0.20083682008376977 0.8847269679644295 0.13723413244333552
+0.20292887029294074 0.8813365846693654 0.20292887029294074 0.8813365846693654 0.13527486021823318
+0.20502092050208864 0.877946201374249 0.20502092050208862 0.8779462013742488 0.13356111119405856
+0.20711297071119014 0.8745558180791262 0.20711297071119014 0.8745558180791262 0.13214940387481636
+0.20920502092031398 0.8711654347839944 0.20920502092031398 0.8711654347839944 0.13108528231027758
+0.2112970711295554 0.8677750514888491 0.2112970711295554 0.867775051488849 0.13040035813159856
+0.21338912133901253 0.8643846681938512 0.21338912133901253 0.8643846681938513 0.1301100962591513
+0.21548117154862467 0.8609942848991351 0.21548117154862467 0.8609942848991351 0.13021267656788713
+0.21757322175842045 0.8576039016046918 0.21757322175842045 0.8576039016046918 0.1306891260625348
+0.21966527196829563 0.8542135183107796 0.21966527196829563 0.8542135183107796 0.13150472389663415
+0.22175732217752125 0.8508231350166118 0.22175732217752128 0.8508231350166117 0.1326114882736501
+0.22384937238750824 0.8474327517227799 0.22384937238750827 0.8474327517227799 0.13395141391621387
+0.22594142259762617 0.844042368428699 0.22594142259762617 0.844042368428699 0.1354600728073133
+0.22803347280897035 0.8406519851357718 0.22803347280897035 0.8406519851357718 0.13707021831075414
+0.2301255230217627 0.8372616018440476 0.2301255230217627 0.8372616018440476 0.1387151170149805
+0.23221757323675443 0.8338712185572703 0.23221757323675443 0.8338712185572703 0.1403314382337402
+0.23430962344988315 0.8304808352730189 0.23430962344988315 0.8304808352730187 0.14186162828061818
+0.23640167365945675 0.8270904519982385 0.23640167365945675 0.8270904519982384 0.1432557688618488
+0.2384937238697251 0.8237000687209631 0.2384937238697251 0.8237000687209631 0.1444729620403271
+0.24058577407511547 0.8203096854466924 0.24058577407511547 0.8203096854466924 0.1454823023329116
+0.2426778242923626 0.8169193021812023 0.2426778242923626 0.8169193021812023 0.14626349667332708
+0.24476987453447982 0.8135289189329035 0.24476987453447982 0.8135289189329035 0.14680718174716792
+0.24686192481696279 0.81013853571788 0.24686192481696279 0.81013853571788 0.14711497142543487
+0.2489539751355724 0.8067481525819495 0.2489539751355724 0.8067481525819495 0.14719924815437635
+0.25104602561794254 0.8033577695846609 0.25104602561794254 0.8033577695846609 0.1470826951087405
+0.25313810868716 0.7999673890241144 0.25313810868716 0.7999673890241144 0.14679758430452117
+0.25523039233595396 0.7965770991047153 0.25523039233595396 0.7965770991047153 0.14638489636340288
+0.25732318320586384 0.7931876051562163 0.25732318320586384 0.7931876051562163 0.14589339089888473
+0.2594160182414945 0.7898011498464946 0.25941601824149446 0.7898011498464946 0.1453776995849312
+0.2615090187968117 0.7864227085955111 0.2615090187968117 0.7864227085955111 0.14489834440905403
+0.2907378135559482 0.7441684173566798 0.29073781355594824 0.7441684173566799 0.16072104344684443
+0.29501923143692527 0.736630905736174 0.29501923143692527 0.736630905736174 0.16545234889653673
+0.2930607290784559 0.7401321724639311 0.2930607290784559 0.7401321724639311 0.16328612116231137
+0.263604041258049 0.7830588305826551 0.263604041258049 0.7830588305826551 0.144519101601682
+0.2657058301940428 0.7797135975386685 0.26570583019404287 0.7797135975386685 0.14430188721074486
+0.26782379878186885 0.7763831120703194 0.26782379878186885 0.7763831120703194 0.14430262643201755
+0.2863693835719706 0.7483511436098842 0.28636938357197067 0.7483511436098843 0.15554147500272816
+0.26997294475106853 0.7730495044004891 0.26997294475106853 0.7730495044004891 0.14456947649885185
+0.2721795583056846 0.7696556927393697 0.2721795583056846 0.7696556927393697 0.1451423598749166
+0.2846449356290672 0.7513565731325746 0.2846449356290672 0.7513565731325746 0.1538563688332167
+0.2827125338492815 0.7544155967781508 0.2827125338492815 0.7544155967781508 0.1520575895602185
+0.27444029725585306 0.7658863421296694 0.27444029725585306 0.7658863421296694 0.14590761061171328
+0.27751956847439907 0.7637211198572433 0.27751956847439907 0.7637211198572433 0.1485992426624525
+0.28075200673916173 0.7575764118639947 0.28075200673916173 0.7575764118639947 0.15043321890626457
+0.2787687933453776 0.7607783888603138 0.2787687933453776 0.7607783888603138 0.14900660659502848
+0.2896284375934801 0.7477126914018717 0.2896284375934801 0.7477126914018717 0.1597426380691753
+0.2969177864072814 0.7332752761671111 0.2969177864072814 0.7332752761671112 0.16753973515492296
+0.3098344979054193 0.7112984485084701 0.3098344979054193 0.7112984485084701 0.1788726534934102
+0.3082417162409007 0.7137482686156043 0.30824171624090063 0.7137482686156043 0.17773110262002598
+0.29878621243786635 0.7299810796057026 0.29878621243786635 0.7299810796057026 0.16953045498382632
+0.30352192596619104 0.7174324235424756 0.30352192596619104 0.7174324235424755 0.17293369896228158
+0.30666623980471736 0.7162582259071278 0.30666623980471736 0.7162582259071278 0.17657323326326133
+0.3039478187183609 0.721031616804601 0.3039478187183609 0.721031616804601 0.17444214004750358
+0.3023652599463608 0.7236649392179761 0.3023652599463608 0.7236649392179761 0.17302369604067966
+0.3006176697228906 0.7267476851887819 0.3006176697228906 0.7267476851887819 0.17138135949613
+0.3197303774109104 0.6971870765603221 0.3197303774109104 0.6971870765603221 0.18507695924335696
+0.3178105231390183 0.7005134573510662 0.3178105231390183 0.7005134573510662 0.18436043650752157
+0.315892603090519 0.7038847699767276 0.315892603090519 0.7038847699767276 0.18357772475581338
+0.3140302619220602 0.7072612551773781 0.31403026192206024 0.7072612551773781 0.18274767752407137
+0.3126282846399036 0.7104970984170924 0.3126282846399036 0.7104970984170924 0.18230810651030413
+0.32894484990932177 0.6870546449178812 0.32894484990932177 0.6870546449178812 0.19285205531918637
+0.32712669898907076 0.6903572662733105 0.3271266989890708 0.6903572662733105 0.19212319931009014
+0.3252926190886404 0.6936352654659991 0.32529261908864043 0.6936352654659991 0.19137883239464784
+0.32341472180737735 0.6969207548340141 0.32341472180737735 0.6969207548340141 0.19056688989200707
+0.34121788725526053 0.6698948431296143 0.34121788725526053 0.6698948431296143 0.20466179614132549
+0.3324418910472916 0.6867492311444222 0.33244189104729166 0.6867492311444222 0.19894264041211576
+0.3341867718586797 0.6834675729267157 0.3341867718586797 0.6834675729267157 0.19985450796187057
+0.3394418908868671 0.6733241091158312 0.3394418908868671 0.6733241091158312 0.20315760068297964
+0.33590615838591237 0.6801459073086621 0.33590615838591237 0.6801459073086621 0.20078694490001472
+0.3376621719056568 0.6767284560895032 0.3376621719056568 0.6767284560895032 0.20185511590695102
+0.36776217125041827 0.6324553768950244 0.36776217125041827 0.6324553768950244 0.26417023228850184
+0.3535485819649224 0.6531509507647887 0.3535485819649224 0.6531509507647887 0.22556038638629813
+0.3482921514155908 0.6564369549013268 0.3482921514155908 0.6564369549013268 0.2134503632537407
+0.3464783651756589 0.6597136476338652 0.3464783651756589 0.6597136476338652 0.21063988503411393
+0.3429977515598881 0.6665128546672074 0.3429977515598881 0.6665128546672073 0.2064517196123901
+0.3447768948137297 0.6631300772673397 0.3447768948137297 0.6631300772673397 0.20850437455939994
+0.3517487852517815 0.6563822387126658 0.3517487852517815 0.6563822387126658 0.2222008187525276
+0.36603009277434323 0.6358165588065621 0.36603009277434323 0.6358165588065621 0.25830176398463967
+0.36429099845684343 0.6392039709640267 0.36429099845684343 0.6392039709640267 0.25287952820864107
+0.3625429065836616 0.6426238504773593 0.3625429065836616 0.6426238504773593 0.2478849674010846
+0.36076374154614427 0.6460949165667846 0.36076374154614427 0.6460949165667847 0.2432447263502038
+0.35886850066547804 0.6494957582819514 0.3588685006654781 0.6494957582819514 0.2386915641604225
+0.35703246111488635 0.6529373515475646 0.35703246111488635 0.6529373515475646 0.2347380390968421
+0.3713040183553265 0.6319162543044118 0.3713040183553265 0.6319162543044118 0.27552011093877365
+0.38599738488688196 0.5149814646726196 0.385997384886882 0.5149814646726196 0.4109194423774589
+0.38367226906767127 0.5179080544841697 0.38367226906767127 0.5179080544841695 0.38961208343800857
+0.38127323497782445 0.5220073551296354 0.38127323497782445 0.5220073551296354 0.36171887933054675
+0.38337952060086744 0.5204000938303661 0.38337952060086744 0.5204000938303661 0.3712300119942488
+0.37873106005895274 0.5264059592550345 0.3787310600589527 0.5264059592550345 0.334004140314445
+0.38166370653493975 0.5244952889054574 0.38166370653493975 0.5244952889054574 0.3424660519358231
+0.37931293275491706 0.5291958976474519 0.379312932754917 0.5291958976474519 0.3134501122310487
+0.37675806644743676 0.5322003742332331 0.3767580664474367 0.5322003742332332 0.299584148213145
+0.3760730785561552 0.5356013129820523 0.3760730785561552 0.5356013129820524 0.2811862695385306
+0.37253411027352806 0.5402840743973855 0.37253411027352806 0.5402840743973855 0.26510030164447707
+0.3756746798009344 0.5386686486204608 0.37567467980093433 0.5386686486204608 0.2666689259823152
+0.37312379182064287 0.544009587088966 0.37312379182064287 0.544009587088966 0.24987736471764022
+0.3700436489952116 0.5466546216203279 0.37004364899521164 0.5466546216203279 0.24504823522322647
+0.37086529768945786 0.5494988102664522 0.37086529768945786 0.5494988102664522 0.2375521639296867
+0.36761551354661326 0.5562501368822341 0.36761551354661326 0.556250136882234 0.22790817447568654
+0.37000851632319987 0.5528651939269418 0.3700085163231999 0.5528651939269418 0.23259588265178244
+0.36839244119052883 0.5594483995578339 0.36839244119052883 0.5594483995578338 0.2277588955169366
+0.3687390671719307 0.5622851005024934 0.3687390671719307 0.5622851005024934 0.22946237765740451
+0.3672311849101909 0.5653982086763482 0.36723118491019097 0.5653982086763482 0.22813896359493063
+0.36737044384471595 0.5691534003965373 0.3673704438447159 0.5691534003965373 0.232174399512913
+0.36598828678253087 0.5753003341905583 0.36598828678253087 0.5753003341905583 0.23491966436385828
+0.3683386881990865 0.5724346586446604 0.3683386881990865 0.5724346586446604 0.24002027776830684
+0.3669734258334458 0.5787633220787046 0.3669734258334458 0.5787633220787046 0.24341605796926566
+0.3658436350695668 0.5854566599301845 0.3658436350695668 0.5854566599301845 0.24682895240082173
+0.3680627034208568 0.5822194193289397 0.3680627034208568 0.5822194193289397 0.25284183245320685
+0.3670965271787749 0.5890889654854456 0.3670965271787749 0.5890889654854456 0.25624796842653597
+0.3665280660417145 0.5961085093876192 0.3665280660417145 0.5961085093876192 0.25922613593291904
+0.36844897284515693 0.5926597817663775 0.36844897284515693 0.5926597817663773 0.26563519363434235
+0.36787062185659347 0.5994662530177237 0.36787062185659347 0.5994662530177237 0.2669178966847566
+0.367020403510916 0.605867075829441 0.36702040351091597 0.605867075829441 0.26500772539259326
+0.3677211235366389 0.6087898581736471 0.3677211235366389 0.6087898581736471 0.2681017812070294
+0.3692802207886338 0.6030300199150752 0.3692802207886338 0.6030300199150752 0.27422598740748777
+0.36962989537022184 0.6106946556835641 0.3696298953702218 0.6106946556835641 0.27584768988794156
+0.3695951290849171 0.6169138966154836 0.3695951290849171 0.6169138966154836 0.2744726634293761
+0.37120281998813737 0.619749780067721 0.37120281998813737 0.6197497800677211 0.279554211321773
+0.3712862832009503 0.6136733124332446 0.3712862832009503 0.6136733124332446 0.2818964117175397
+0.3728022452989856 0.6225543460084898 0.3728022452989856 0.6225543460084898 0.28417939483084553
+0.3729520705619549 0.6285816407398891 0.3729520705619549 0.6285816407398891 0.2820648698529602
+0.37455131285003357 0.6252501131219921 0.37455131285003357 0.6252501131219921 0.28898238361875
+0.3903347393939245 0.5165073356145153 0.3903347393939245 0.5165073356145155 0.398965383044566
+0.39439916932763364 0.5179553103351178 0.39439916932763364 0.5179553103351178 0.383451336221246
+0.5502286841650773 0.3972605888862005 0.5502286841650773 0.39726058888620047 0.7062984972968546
+0.553318243267491 0.3961073964134806 0.553318243267491 0.3961073964134806 0.7358932985187709
+0.5576164445601529 0.3945811402739464 0.5576164445601529 0.39458114027394636 0.7733781857630139
+0.555560477278518 0.396274576153855 0.555560477278518 0.396274576153855 0.7647059898043499
+0.5622472371814592 0.394211855702509 0.5622472371814592 0.394211855702509 0.8181369378064787
+0.559880878295572 0.3957525002051571 0.559880878295572 0.3957525002051571 0.8081899839928207
+0.5649514937202674 0.3933068838206759 0.5649514937202674 0.3933068838206759 0.8348242704232156
+0.5638390902973979 0.39570651195432033 0.5638390902973979 0.39570651195432033 0.845484774730566
+0.5719939314603488 0.3910566128352388 0.5719939314603488 0.3910566128352388 0.8683229221200587
+0.5685998045940426 0.3931257865444218 0.5685998045940427 0.3931257865444219 0.8620510237561215
+0.5832782222247831 0.3898270905340453 0.5832782222247831 0.3898270905340453 0.9074887568629552
+0.5795157341547507 0.39100455371082454 0.5795157341547507 0.3910045537108245 0.9036880617616764
+0.5742647193952926 0.39311485069736396 0.5742647193952926 0.3931148506973639 0.8958200299463934
+0.5769029091789657 0.39292911990797874 0.5769029091789657 0.39292911990797874 0.9062116991927542
+0.5853946300546933 0.39262913683947154 0.5853946300546933 0.3926291368394716 0.9268139517401423
+0.5505124243928626 0.4015775984122058 0.5505124243928626 0.4015775984122058 0.7495668292460089
+0.5508024145814469 0.40585891312141714 0.5508024145814469 0.40585891312141714 0.7957721363544339
+0.58913175580406 0.39169048360687364 0.58913175580406 0.3916904836068737 0.925496682692937
+0.5923808015522654 0.3892626219188195 0.5923808015522654 0.3892626219188195 0.9154714868019457
+0.5951685731330121 0.3902032348565386 0.5951685731330121 0.3902032348565386 0.9177494836070632
+0.5978236894496344 0.38942996642786 0.5978236894496344 0.38942996642786 0.9126105953114686
+0.601090924222346 0.3887660241999754 0.601090924222346 0.38876602419997536 0.9057557425340345
+0.6043190703472897 0.3882500947525467 0.6043190703472897 0.3882500947525467 0.8979978320534805
+0.6077024259518028 0.38782127815848116 0.6077024259518028 0.38782127815848116 0.8887206122630772
+0.6110901246256416 0.38739013089470464 0.6110901246256416 0.3873901308947047 0.878064292980782
+0.6374947215140142 0.37625244079000075 0.6374947215140142 0.37625244079000075 0.7726865691709403
+0.6339701016477082 0.3766060690522652 0.6339701016477082 0.3766060690522652 0.7877105097506995
+0.6305187823150968 0.37700397258500207 0.6305187823150967 0.37700397258500207 0.8018217662093122
+0.6271936047312293 0.3774398382461747 0.6271936047312293 0.3774398382461747 0.8147835671953115
+0.623922685924601 0.37787805771590555 0.623922685924601 0.37787805771590555 0.826815706664756
+0.6175054589199744 0.37957574821098866 0.6175054589199744 0.37957574821098866 0.8492929640622996
+0.6206831441850897 0.37892944971076564 0.6206831441850897 0.37892944971076564 0.8386738397933717
+0.6159707787489295 0.38324364436698566 0.6159707787489294 0.3832436443669857 0.8580563284271091
+0.6145360129074614 0.38696983671635893 0.6145360129074614 0.38696983671635893 0.8660695770505807
+0.6804093324110103 0.33083276901669284 0.6804093324110103 0.33083276901669284 0.6460984825510562
+0.6769223527604598 0.33078499432209957 0.6769223527604598 0.33078499432209957 0.6532720732234002
+0.6713062757606193 0.33374515788539644 0.6713062757606193 0.33374515788539644 0.664086829089746
+0.6657835594938132 0.33683905561007493 0.6657835594938132 0.33683905561007493 0.6761729846719908
+0.660646446977496 0.3399054622347556 0.6606464469774959 0.33990546223475565 0.6887636010153005
+0.6556333818530724 0.3438011140475493 0.6556333818530725 0.34380111404754926 0.7030444680755173
+0.6588609949036581 0.3426342149559135 0.6588609949036581 0.3426342149559135 0.6938696602442584
+0.6559965750284251 0.3473448225167426 0.6559965750284251 0.3473448225167426 0.7030126424372205
+0.6511975336617979 0.3555123339243398 0.6511975336617979 0.3555123339243398 0.7200316946699699
+0.6528034585424198 0.35300739918331636 0.6528034585424197 0.3530073991833164 0.7142449370978533
+0.6543858812967589 0.3499562351095906 0.6543858812967588 0.3499562351095906 0.7085420451560785
+0.6638509386913432 0.3401246141511966 0.6638509386913433 0.3401246141511966 0.6808555326915896
+0.6692891671425282 0.336994595033343 0.6692891671425282 0.336994595033343 0.66791289545592
+0.674860942899837 0.3339464136649992 0.674860942899837 0.3339464136649992 0.656235050123474
+0.6838798893057096 0.33082088551647576 0.6838798893057096 0.33082088551647576 0.6389431055437265
+0.6873708716620665 0.3307678088932098 0.6873708716620665 0.3307678088932098 0.6317628183197875
+0.6909019530190549 0.3307892050352898 0.6909019530190549 0.3307892050352898 0.6244129936602681
+0.6944501744596226 0.3308787551401219 0.6944501744596226 0.3308787551401218 0.6169552136316246
+0.6513052222675904 0.35881817967847174 0.6513052222675905 0.3588181796784718 0.7203403939677947
+0.6491866225635181 0.3626944600198003 0.6491866225635182 0.3626944600198003 0.7279029671696994
+0.6470450757412907 0.36604746172290503 0.6470450757412908 0.36604746172290503 0.73570274992709
+0.6450223287422768 0.36941046144338724 0.6450223287422768 0.36941046144338724 0.7430457417599202
+0.6430424890460722 0.3727070306386231 0.6430424890460723 0.3727070306386231 0.7500869983681531
+0.6410844503688592 0.3759674337343144 0.6410844503688592 0.3759674337343144 0.7568196709877801
+0.7039372941068679 0.32827045789847253 0.7039372941068679 0.32827045789847253 0.6006750794013924
+0.6980263481487278 0.33103728189998105 0.6980263481487278 0.331037281899981 0.6093235731339569
+0.7016327008807793 0.33127161002645944 0.7016327008807793 0.33127161002645944 0.6014748717664115
+0.7399632670660677 0.296643158417601 0.7399632670660677 0.296643158417601 0.5412294612688199
+0.7316407740768618 0.3022140476364048 0.7316407740768618 0.3022140476364048 0.5594331664959923
+0.7293416957892941 0.30519759044733047 0.7293416957892941 0.30519759044733047 0.5641314883295049
+0.7076210132457151 0.3285654765033285 0.7076210132457151 0.3285654765033285 0.5926972615791067
+0.718946638686007 0.31353652852646835 0.718946638686007 0.31353652852646835 0.5836259221743646
+0.7235302227926467 0.30772852367956777 0.7235302227926467 0.30772852367956777 0.576264702860975
+0.7212853042043034 0.31069573766403874 0.7212853042043034 0.31069573766403874 0.5800684179164807
+0.7270537376692063 0.30820399127725995 0.7270537376692063 0.30820399127726 0.5684450165482846
+0.709950981976819 0.3255584472830289 0.709950981976819 0.3255584472830289 0.591684890642977
+0.7166839366412412 0.3164831066804701 0.7166839366412412 0.3164831066804701 0.5864720368455866
+0.7144636343406018 0.3195057220384201 0.7144636343406018 0.3195057220384201 0.588660697228563
+0.7122314764663518 0.32253871300350484 0.7122314764663518 0.32253871300350484 0.590356575655091
+0.7201280316983826 0.31690298395644745 0.7201280316983826 0.31690298395644745 0.5788617158806336
+0.7375411298076594 0.2997238182155686 0.7375411298076594 0.2997238182155686 0.5464556738564479
+0.7351686529780354 0.30274210864631806 0.7351686529780354 0.30274210864631806 0.5514585913693127
+0.7436616007514765 0.2971685794074952 0.7436616007514765 0.2971685794074952 0.5331216738908221
+0.7465315645089124 0.29362917240206166 0.7465315645089124 0.29362917240206166 0.5272945423426146
+0.7499327949327856 0.2925370347050257 0.7499327949327856 0.2925370347050257 0.5200798200698453
+0.7516615790261957 0.2902654702166519 0.7516615790261957 0.2902654702166519 0.5169746493572137
+0.7538497296985619 0.28757156352516633 0.7538497296985619 0.28757156352516633 0.5132688843164114
+0.756159972994602 0.2847126083866688 0.756159972994602 0.28471260838666884 0.5097276999306405
+0.7584669732466534 0.28179173023759835 0.7584669732466534 0.28179173023759835 0.5066717354302394
+0.7607119515043599 0.278666579147598 0.7607119515043599 0.278666579147598 0.504325118362071
+0.7632004260703578 0.2757612355332964 0.7632004260703579 0.2757612355332964 0.50218684262134
+0.7665751620364468 0.27395454701188765 0.7665751620364468 0.27395454701188765 0.49867001351984735
+0.7697822300553039 0.2719534288913778 0.7697822300553039 0.2719534288913778 0.4960367864273824
+0.7730325111074361 0.2698878694602906 0.7730325111074361 0.2698878694602906 0.493895276877473
+0.7763205407005396 0.2678055816729254 0.7763205407005396 0.2678055816729254 0.4921156964746943
+0.7796631178376959 0.2657109189528864 0.7796631178376959 0.2657109189528864 0.49059512137066247
+0.7830308038641042 0.26361143725140984 0.7830308038641042 0.26361143725140984 0.4892464275833504
+0.7864110500671609 0.26151207957134587 0.7864110500671609 0.26151207957134587 0.4879595041503871
+0.7897974555431312 0.25941592530438423 0.7897974555431312 0.25941592530438423 0.4866219190791971
+0.793186739585377 0.25732236350671317 0.793186739585377 0.25732236350671317 0.48513010327324385
+0.7965770085273127 0.2552301352354565 0.7965770085273127 0.2552301352354565 0.48339359926226555
+0.7999673855850323 0.2531380753137759 0.7999673855850323 0.2531380753137759 0.4813386180476689
+0.8033577688802014 0.25104602510457075 0.8033577688802014 0.25104602510457075 0.4789101430885198
+0.8067481521753702 0.24895397489536567 0.8067481521753702 0.24895397489536567 0.47607562394097275
+0.8101385354705393 0.24686192468616053 0.8101385354705393 0.24686192468616053 0.4728262293296169
+0.8135289187657082 0.2447698744769554 0.8135289187657083 0.2447698744769554 0.46917684280312627
+0.816919302060877 0.2426778242677503 0.816919302060877 0.2426778242677503 0.4651650530916826
+0.820309685356046 0.24058577405854525 0.820309685356046 0.24058577405854528 0.4608492092677235
+0.823700068651215 0.23849372384934012 0.823700068651215 0.23849372384934012 0.45630558046121034
+0.827090451946384 0.23640167364013503 0.8270904519463841 0.23640167364013506 0.45162466694824444
+0.8304808352415529 0.23430962343092987 0.8304808352415529 0.23430962343092987 0.44690674056667407
+0.8338712185367217 0.23221757322172484 0.8338712185367217 0.23221757322172484 0.4422567314772971
+0.8372616018318908 0.23012552301251965 0.8372616018318908 0.23012552301251965 0.4377786427697817
+0.8406519851270597 0.2280334728033145 0.8406519851270599 0.2280334728033145 0.43356974897146205
+0.8440423684222286 0.22594142259410943 0.8440423684222286 0.22594142259410943 0.42971490631121484
+0.8474327517173975 0.22384937238490438 0.8474327517173975 0.2238493723849044 0.42628135771731707
+0.8508231350125666 0.22175732217569924 0.8508231350125666 0.22175732217569924 0.42331443558235565
+0.8542135183077355 0.21966527196649416 0.8542135183077356 0.21966527196649419 0.42083453447420843
+0.8576039016029045 0.217573221757289 0.8576039016029045 0.217573221757289 0.4188356374324293
+0.8609942848980733 0.2154811715480839 0.8609942848980733 0.2154811715480839 0.41728554023272935
+0.8643846681932423 0.21338912133887877 0.8643846681932423 0.21338912133887877 0.4161277492835818
+0.8677750514884113 0.21129707112967364 0.8677750514884114 0.21129707112967364 0.4152848612459437
+0.8711654347835801 0.20920502092046855 0.8711654347835801 0.20920502092046855 0.4146630969200173
+0.874555818078749 0.20711297071126347 0.874555818078749 0.20711297071126347 0.4141575802794277
+0.8779462013739181 0.20502092050205836 0.8779462013739181 0.20502092050205836 0.4136579331401848
+0.881336584669087 0.20292887029285328 0.8813365846690872 0.2029288702928533 0.4130537898487429
+0.884726967964256 0.20083682008364812 0.884726967964256 0.20083682008364812 0.4122399078046967
+0.8881173512594248 0.198744769874443 0.8881173512594248 0.198744769874443 0.4111206385393329
+0.8915077345545939 0.1966527196652379 0.8915077345545939 0.1966527196652379 0.4096136127605692
+0.8948981178497628 0.1945606694560328 0.8948981178497629 0.1945606694560328 0.40765256917330644
+0.8982885011449318 0.19246861924682768 0.8982885011449318 0.19246861924682768 0.40518931517826395
+0.9016788844401007 0.19037656903762257 0.9016788844401006 0.19037656903762257 0.4021948470769336
+0.9050692677352696 0.18828451882841746 0.9050692677352696 0.18828451882841746 0.3986596808504859
+0.9084596510304386 0.18619246861921235 0.9084596510304387 0.18619246861921235 0.3945934562544755
+0.9118500343256075 0.18410041841000724 0.9118500343256075 0.18410041841000724 0.3900238815614209
+0.9152404176207765 0.18200836820080213 0.9152404176207763 0.18200836820080213 0.3849950880841162
+0.9186308009159454 0.17991631799159702 0.9186308009159454 0.17991631799159702 0.37956546618374
+0.9220211842111143 0.1778242677823919 0.9220211842111145 0.1778242677823919 0.37380506050874346
+0.9254115675062833 0.1757322175731868 0.9254115675062833 0.1757322175731868 0.3677926134820746
+0.9288019508014522 0.1736401673639817 0.9288019508014521 0.1736401673639817 0.3616123632186348
+0.9321923340966212 0.17154811715477658 0.9321923340966212 0.17154811715477658 0.3553507244191812
+0.9355827173917901 0.16945606694557147 0.9355827173917902 0.16945606694557147 0.3490930060017137
+0.938973100686959 0.16736401673636636 0.938973100686959 0.16736401673636636 0.3429203431050363
+0.942363483982128 0.16527196652716125 0.9423634839821279 0.16527196652716125 0.33690703775003367
+0.9457538672772969 0.16317991631795614 0.9457538672772969 0.16317991631795614 0.33111850500664625
+0.9491442505724659 0.16108786610875103 0.949144250572466 0.16108786610875103 0.3256100034867932
+0.9525346338676348 0.15899581589954592 0.9525346338676348 0.15899581589954592 0.3204262860421681
+0.9559250171628038 0.1569037656903408 0.9559250171628036 0.1569037656903408 0.3156022383246031
+0.9593154004579727 0.1548117154811357 0.9593154004579727 0.1548117154811357 0.3111644839895517
+0.9627057837531416 0.1527196652719306 0.9627057837531418 0.1527196652719306 0.3071338350870367
+0.9660961670483106 0.15062761506272548 0.9660961670483106 0.15062761506272548 0.3035283667788177
+0.9694865503434795 0.14853556485352037 0.9694865503434794 0.14853556485352037 0.3003668093664398
+0.9728769336386485 0.14644351464431526 0.9728769336386485 0.14644351464431526 0.2976718879199249
+0.9762673169338174 0.14435146443511016 0.9762673169338175 0.14435146443511016 0.2954732074110847
+0.9796577002289864 0.14225941422590505 0.9796577002289864 0.14225941422590505 0.2938092832767256
+0.9830480835241553 0.14016736401669994 0.9830480835241552 0.14016736401669994 0.29272835692853366
+0.9864384668193242 0.13807531380749483 0.9864384668193242 0.13807531380749483 0.2922877167144437
+0.9898288501144932 0.13598326359828972 0.9898288501144933 0.13598326359828972 0.2925513713150721
+0.9932192334096621 0.1338912133890846 0.9932192334096621 0.1338912133890846 0.29358609527601165
+0.13807531380753127 0.9932192334096621 0.13807531380753127 0.9932192334096621 0.11255682259103161
+0.14016736401673635 0.9898288501144932 0.14016736401673635 0.9898288501144933 0.114953878752847
+0.14225941422594135 0.9864384668193242 0.14225941422594135 0.9864384668193242 0.11767166329272065
+0.14435146443514638 0.9830480835241553 0.14435146443514638 0.9830480835241552 0.12065270274746652
+0.1464435146443514 0.9796577002289864 0.14644351464435143 0.9796577002289864 0.1238374748147311
+0.1485355648535564 0.9762673169338174 0.14853556485355643 0.9762673169338175 0.1271659155025021
+0.15062761506276143 0.9728769336386485 0.15062761506276143 0.9728769336386485 0.13057857279099827
+0.1527196652719665 0.9694865503434795 0.15271966527196648 0.9694865503434794 0.13401745959203457
+0.1548117154811716 0.9660961670483106 0.1548117154811716 0.9660961670483106 0.137426677590701
+0.1569037656903767 0.9627057837531418 0.1569037656903767 0.9627057837531418 0.14075288439097275
+0.15899581589958187 0.9593154004579728 0.15899581589958187 0.9593154004579728 0.14394566683484208
+0.16108786610878698 0.9559250171628041 0.16108786610878698 0.9559250171628041 0.14695786944908049
+0.16317991631799206 0.9525346338676354 0.16317991631799209 0.9525346338676354 0.1497459126093623
+0.1652719665271972 0.9491442505724668 0.1652719665271972 0.9491442505724667 0.1522701222839283
+0.16736401673640205 0.9457538672772982 0.16736401673640208 0.9457538672772982 0.15449508293900271
+0.1694560669456068 0.9423634839821294 0.1694560669456068 0.9423634839821294 0.1563900174103726
+0.17154811715481133 0.9389731006869608 0.17154811715481133 0.9389731006869608 0.1579291919442887
+0.17364016736401577 0.935582717391792 0.17364016736401577 0.935582717391792 0.15909234071060438
+0.1757322175732201 0.9321923340966228 0.1757322175732201 0.9321923340966228 0.15986510138571794
+0.17782426778242474 0.9288019508014534 0.17782426778242474 0.9288019508014534 0.16023945140336246
+0.17991631799163 0.9254115675062842 0.17991631799163 0.9254115675062842 0.16021413271213847
+0.18200836820083607 0.9220211842111152 0.18200836820083607 0.9220211842111151 0.15979505090528212
+0.18410041841004318 0.9186308009159466 0.18410041841004318 0.9186308009159466 0.15899563193988234
+0.1861924686192512 0.915240417620779 0.1861924686192512 0.915240417620779 0.15783711586556712
+0.18828451882845998 0.9118500343256121 0.18828451882845998 0.9118500343256121 0.15634876156676117
+0.1903765690376699 0.9084596510304466 0.1903765690376699 0.9084596510304465 0.15456792908786585
+0.1924686192468811 0.9050692677352822 0.1924686192468811 0.9050692677352822 0.1525399964716353
+0.1945606694560946 0.9016788844401225 0.1945606694560946 0.9016788844401225 0.1503180564903058
+0.19665271966530914 0.8982885011449673 0.19665271966530914 0.8982885011449673 0.14796232637017973
+0.1987447698745236 0.8948981178498253 0.1987447698745236 0.8948981178498253 0.14553919322774878
+0.20083682008372858 0.8915077345546876 0.20083682008372858 0.8915077345546877 0.14311981407496097
+0.20292887029291384 0.8881173512595745 0.20292887029291382 0.8881173512595745 0.14077819878422002
+0.20502092050209267 0.8847269679644363 0.20502092050209267 0.8847269679644363 0.13858873576976774
+0.20711297071124032 0.8813365846692921 0.20711297071124032 0.8813365846692921 0.13662318099522153
+0.2092050209203975 0.8779462013741398 0.2092050209203975 0.8779462013741398 0.1349472236241993
+0.21129707112961327 0.8745558180789752 0.2112970711296133 0.8745558180789752 0.13361685741439708
+0.2133891213388961 0.8711654347838508 0.2133891213388961 0.8711654347838508 0.13267490155808057
+0.21548117154825952 0.867775051488788 0.21548117154825955 0.867775051488788 0.1321480903003377
+0.21757322175770955 0.8643846681939364 0.21757322175770955 0.8643846681939366 0.13204514783371393
+0.21966527196711116 0.8609942848993386 0.21966527196711114 0.8609942848993386 0.13235616207593057
+0.22175732217672883 0.8576039016046647 0.22175732217672883 0.8576039016046647 0.13305338132795752
+0.22384937238633762 0.8542135183101879 0.22384937238633765 0.8542135183101879 0.1340933310738354
+0.2259414225960721 0.8508231350157137 0.2259414225960721 0.8508231350157137 0.13541995082598127
+0.2280334728063279 0.8474327517217525 0.22803347280632788 0.8474327517217525 0.1369683363866815
+0.2301255230174217 0.8440423684285486 0.2301255230174217 0.8440423684285486 0.1386686596973726
+0.23221757322952574 0.8406519851377929 0.23221757322952574 0.8406519851377929 0.14044990843560157
+0.23430962344048414 0.8372616018481139 0.23430962344048414 0.8372616018481139 0.14224320162888412
+0.23640167364972967 0.8338712185633832 0.23640167364972967 0.8338712185633831 0.14398455611790328
+0.23849372385919143 0.8304808352771887 0.2384937238591914 0.8304808352771887 0.14561707487611333
+0.24058577406604556 0.8270904519924285 0.24058577406604556 0.8270904519924285 0.14709259130084887
+0.2426778242787994 0.8237000687119499 0.2426778242787994 0.8237000687119499 0.14837283509682067
+0.24476987450413681 0.8203096854399096 0.24476987450413681 0.8203096854399096 0.1494301926357747
+0.2468619247500321 0.8169193021844007 0.2468619247500321 0.8169193021844007 0.150248126648979
+0.24895397501460548 0.81352891896842 0.24895397501460548 0.81352891896842 0.15082130368705263
+0.25104602526756686 0.8101385357805656 0.25104602526756686 0.8101385357805656 0.15115545839889677
+0.2531380755098982 0.8067481526881509 0.2531380755098982 0.8067481526881509 0.15126700505015991
+0.25523012614702756 0.8033577698304418 0.25523012614702756 0.8033577698304418 0.15118239041983783
+0.25732227685026093 0.7999673972603799 0.25732227685026093 0.7999673972603799 0.15093727657041145
+0.2594148131621372 0.7965772121122131 0.2594148131621372 0.7965772121122131 0.1505755343408468
+0.26150802673282786 0.7931885237019762 0.26150802673282786 0.7931885237019762 0.1501483046487576
+0.2636009710137395 0.7898045316000523 0.2636009710137395 0.7898045316000523 0.14971140268494307
+0.26569304916937175 0.786430934176206 0.2656930491693718 0.786430934176206 0.14932484250337305
+0.293162988786226 0.7471726297068878 0.293162988786226 0.7471726297068878 0.16430711619723357
+0.29497325205636155 0.7435911904095435 0.29497325205636155 0.7435911904095435 0.16619349938861647
+0.2986541497074425 0.7366187534067291 0.2986541497074425 0.7366187534067291 0.1702318478763772
+0.29679144795661966 0.7400491094902056 0.29679144795661966 0.7400491094902056 0.1681756952801312
+0.2677876895574549 0.7830747365059524 0.2677876895574549 0.7830747365059524 0.14905279638713853
+0.26989329513052435 0.7797386473077502 0.26989329513052435 0.7797386473077502 0.148957518357039
+0.272022916578127 0.7764167158905696 0.272022916578127 0.7764167158905696 0.14909443689035776
+0.2881051233375469 0.7509715810323571 0.2881051233375469 0.7509715810323571 0.15830660350529294
+0.27419964037980604 0.773093934028619 0.274199640379806 0.773093934028619 0.1495179535172864
+0.2764285758894971 0.7697613444465802 0.2764285758894971 0.7697613444465802 0.1502508488215113
+0.286336881023961 0.7542136838269317 0.286336881023961 0.7542136838269317 0.15670323829621854
+0.2844297715294768 0.757379713462608 0.2844297715294768 0.757379713462608 0.15508169912321046
+0.27841601700870877 0.766741330207259 0.2784160170087087 0.766741330207259 0.1511216307216099
+0.280661568616864 0.7636828805993163 0.28066156861686403 0.7636828805993163 0.15253761548127384
+0.28251562968399113 0.760552166943071 0.2825156296839912 0.760552166943071 0.15366185231855733
+0.29155563198860895 0.75059031067735 0.29155563198860895 0.75059031067735 0.16276960940598764
+0.30048808971246616 0.7332722299528197 0.30048808971246616 0.7332722299528197 0.17222885690874423
+0.3114450099208649 0.7136477138699873 0.31144500992086493 0.7136477138699872 0.18202927907697378
+0.30950537125446775 0.7169640130702886 0.30950537125446775 0.7169640130702887 0.18061512453246323
+0.3022950159793783 0.7299731398447133 0.3022950159793783 0.7299731398447133 0.17413205382668265
+0.3070220190842659 0.7197747197945887 0.3070220190842659 0.7197747197945886 0.1781857678888324
+0.30580115666203567 0.7233754564267428 0.3058011566620356 0.7233754564267428 0.17749747546776476
+0.30406228821573705 0.7267050022828611 0.30406228821573705 0.7267050022828611 0.17589663225349814
+0.3022568405370396 0.7365534472082801 0.3022568405370396 0.7365534472082801 0.1749946024850544
+0.3215516315870945 0.7002358097318647 0.3215516315870945 0.7002358097318647 0.18976037509278
+0.3196982800483965 0.7035774385802477 0.3196982800483965 0.7035774385802477 0.18891323324716577
+0.3178864677630747 0.7069294433774043 0.31788646776307466 0.7069294433774043 0.18803114960555853
+0.31620134659641275 0.7102545904991042 0.3162013465964128 0.7102545904991042 0.1871900624773257
+0.3146323314336479 0.7135407512628983 0.3146323314336479 0.7135407512628983 0.18636243010484457
+0.33067015465385396 0.690032171658297 0.33067015465385396 0.690032171658297 0.19805168118824276
+0.3288767140709618 0.6933255583467512 0.3288767140709618 0.6933255583467512 0.19717193667598687
+0.32705680972466455 0.6966287343092288 0.3270568097246645 0.6966287343092289 0.19626333730354253
+0.3252346911523509 0.6999424555897336 0.3252346911523509 0.6999424555897336 0.19533762495100826
+0.334164664706722 0.6897216258733158 0.334164664706722 0.6897216258733158 0.20419824542348716
+0.3447630904921486 0.6697703213142518 0.3447630904921486 0.6697703213142518 0.21258000471957647
+0.3429911999198449 0.6731733161134282 0.3429911999198449 0.6731733161134282 0.21079756234897476
+0.33590631096323204 0.68647368586436 0.33590631096323204 0.68647368586436 0.20529091899813454
+0.33766387996766645 0.6832273849925499 0.3376638799676664 0.6832273849925499 0.20649143284141766
+0.34122750497309 0.6765743099549587 0.34122750497309 0.6765743099549587 0.20924811572694257
+0.3394510888452667 0.6799338864603152 0.3394510888452667 0.6799338864603152 0.207828077762332
+0.3696336973892859 0.6352854055257603 0.3696336973892859 0.6352854055257603 0.26942153903123467
+0.35505029927241993 0.656152533478092 0.35505029927242 0.656152533478092 0.23065320394556998
+0.35002778733465006 0.6597038910936822 0.35002778733465006 0.6597038910936822 0.21940896175088995
+0.3483348546613619 0.6630322005419833 0.3483348546613619 0.6630322005419833 0.21699040129305217
+0.34655522586752735 0.6664001316201421 0.34655522586752735 0.6664001316201421 0.21466831658949403
+0.3533730307680356 0.6595801928986751 0.3533730307680356 0.659580192898675 0.22779169364646315
+0.3584686467402488 0.6558991059386721 0.35846864674024875 0.655899105938672 0.23952599372856076
+0.3679500433485304 0.638683695225547 0.3679500433485304 0.6386836952255469 0.26378540403488765
+0.36625329833075737 0.6421170584348581 0.36625329833075737 0.6421170584348581 0.25859448229825316
+0.3645283408931401 0.6456080372416007 0.3645283408931401 0.6456080372416007 0.253792694332897
+0.3627327963479706 0.6492091345651408 0.36273279634797057 0.6492091345651408 0.24927853403570324
+0.36091779816866154 0.653140882479256 0.36091779816866154 0.6531408824792558 0.2452387488732965
+0.37480168990787854 0.6313172426043534 0.37480168990787854 0.6313172426043535 0.2868896225525564
+0.3731912822202977 0.6347042422833238 0.3731912822202977 0.6347042422833238 0.28053183362896744
+0.38666034188177034 0.5196813595422066 0.3866603418817704 0.5196813595422066 0.3739584999582303
+0.38451452656625795 0.5226629804645583 0.38451452656625795 0.5226629804645583 0.3519358466594316
+0.38205752479865596 0.5269929248815113 0.38205752479865596 0.5269929248815113 0.32319786324074645
+0.38426146132828176 0.5251532111292135 0.38426146132828176 0.5251532111292135 0.3324744478798759
+0.3804621712877629 0.5317235596212563 0.3804621712877629 0.5317235596212563 0.2941515024543697
+0.3827042846928301 0.5294120941926067 0.3827042846928301 0.5294120941926067 0.30411791495638907
+0.37897115670986437 0.53432495058406 0.37897115670986437 0.53432495058406 0.2819707554213376
+0.3781109519922988 0.5367570484347616 0.3781109519922988 0.5367570484347616 0.2708743197959167
+0.3815542808802265 0.533564669681347 0.3815542808802265 0.533564669681347 0.28014804275712657
+0.37903177938714266 0.5390771646013633 0.37903177938714266 0.5390771646013633 0.25869323619006135
+0.37610187934598854 0.5415489959287508 0.37610187934598854 0.5415489959287508 0.2543214809811109
+0.37646519337120665 0.5447865969789757 0.37646519337120665 0.5447865969789757 0.24454307186699623
+0.37382948167395924 0.5476109200901733 0.3738294816739592 0.5476109200901734 0.24027971447033408
+0.37295317211433127 0.5509446720816782 0.37295317211433127 0.5509446720816782 0.23557921691025646
+0.37704225058600993 0.5475482947602002 0.37704225058600993 0.5475482947602002 0.2399569790506308
+0.3710236203369248 0.556681697860868 0.3710236203369248 0.556681697860868 0.23154864029643352
+0.3738095967696612 0.5537903597308032 0.37380959676966125 0.5537903597308032 0.23527788057457458
+0.37195859096309813 0.5604957271370298 0.3719585909630982 0.5604957271370298 0.2359014575983105
+0.37091739784974675 0.5643013942228926 0.3709173978497468 0.5643013942228926 0.23759839174476946
+0.36974419751169885 0.5672455958034575 0.36974419751169885 0.5672455958034575 0.23767151519520002
+0.3706638379340804 0.5697647315119474 0.37066383793408036 0.5697647315119473 0.24510302511268914
+0.369366646638118 0.575731002963444 0.369366646638118 0.575731002963444 0.24936548972971792
+0.3716184035256948 0.5728324009558863 0.3716184035256948 0.5728324009558863 0.25462562214139123
+0.37041003272460016 0.5790558914466305 0.3704100327246001 0.5790558914466305 0.2593985397038267
+0.3692775617545816 0.5858195102287126 0.3692775617545816 0.5858195102287126 0.26303005278835867
+0.3714470905348801 0.5827009702981686 0.3714470905348801 0.5827009702981686 0.2698691567787867
+0.3705574010504251 0.5893314598066643 0.3705574010504251 0.5893314598066643 0.2730125747983172
+0.36993322633983255 0.5961313997493676 0.36993322633983255 0.5961313997493676 0.2748732941648258
+0.3719337011325459 0.5927978759684058 0.3719337011325459 0.5927978759684058 0.28268672526533317
+0.3713435211976357 0.5996009068193074 0.3713435211976357 0.5996009068193074 0.2828868851244444
+0.37064025540393797 0.6072816919731241 0.3706402554039379 0.607281691973124 0.28045196394702093
+0.37299189285452117 0.60338727395007 0.3729918928545212 0.60338727395007 0.2910202578619509
+0.37295872628025983 0.6103096928719721 0.37295872628025983 0.6103096928719721 0.28968490318016005
+0.3728137584392085 0.616666986870302 0.37281375843920855 0.616666986870302 0.2868065436708544
+0.3743184044772828 0.619366080442367 0.3743184044772829 0.619366080442367 0.29122574134739443
+0.37467224235867763 0.6134928468939754 0.37467224235867763 0.6134928468939754 0.29553601471391105
+0.376064366746791 0.6221164831417566 0.37606436674679106 0.6221164831417566 0.29603314491990457
+0.3764071489516737 0.627954347511867 0.37640714895167365 0.6279543475118671 0.2938084228131758
+0.37823452425979465 0.6306574717919502 0.37823452425979465 0.6306574717919502 0.2981952667330714
+0.37791210978671214 0.624467730698439 0.37791210978671214 0.6244677306984389 0.30108007459778835
+0.3910802912536462 0.5210161107526919 0.3910802912536462 0.5210161107526919 0.35588857527029494
+0.39521612076775897 0.5222999090544039 0.39521612076775897 0.5222999090544039 0.3339501000889323
+0.5542789500950432 0.3992003750420195 0.5542789500950432 0.39920037504201955 0.776530629644972
+0.5575448703529837 0.39785992780915935 0.5575448703529836 0.3978599278091593 0.8021997709426799
+0.5619263311546986 0.3969898017479781 0.5619263311546986 0.3969898017479781 0.8393907086302811
+0.5598868445638094 0.39831626772262274 0.5598868445638094 0.39831626772262274 0.8313796722389084
+0.5660601138978821 0.3960224569003272 0.5660601138978821 0.3960224569003272 0.8667436523682598
+0.5640102755326817 0.39800156160011146 0.5640102755326817 0.3980015616001115 0.867319282813889
+0.5713306026243474 0.3948646836946847 0.5713306026243474 0.3948646836946847 0.8931682890717845
+0.5687259365629928 0.3969199889704065 0.5687259365629928 0.3969199889704065 0.893471529180126
+0.5736129788437642 0.3960545656313971 0.5736129788437642 0.3960545656313971 0.9140609197295161
+0.5821614119656381 0.3937375319697401 0.5821614119656381 0.3937375319697401 0.9275514823890617
+0.5790723140948162 0.39488678341961686 0.5790723140948161 0.39488678341961686 0.9268619558663973
+0.5759633770338135 0.39574622906455226 0.5759633770338136 0.3957462290645522 0.9220339993772829
+0.5874874146048616 0.3947279094615195 0.5874874146048616 0.3947279094615195 0.9385659031352642
+0.589990234001712 0.3949848386558762 0.589990234001712 0.3949848386558762 0.9393549047954386
+0.5846741024184913 0.39655474481151737 0.5846741024184913 0.39655474481151737 0.9466764269951858
+0.5545005260243095 0.4035880327101042 0.5545005260243095 0.4035880327101042 0.8219069493593655
+0.5546290212707031 0.40795604993620377 0.5546290212707031 0.40795604993620377 0.8691742729779853
+0.592938692776635 0.39318225265188783 0.592938692776635 0.39318225265188783 0.9306930491742335
+0.5965587863900828 0.39270486769729884 0.5965587863900828 0.39270486769729884 0.9244235011377072
+0.5994690379352141 0.3918874660316795 0.5994690379352141 0.3918874660316795 0.9168371587871106
+0.6029343306113062 0.39149529116882525 0.6029343306113062 0.39149529116882525 0.9079098639933619
+0.6061981428863286 0.39147036741780045 0.6061981428863286 0.39147036741780045 0.8986261877996425
+0.6096142140138292 0.39095687721502403 0.6096142140138293 0.39095687721502403 0.8866492968352552
+0.6129981426004532 0.3905794287277047 0.6129981426004533 0.3905794287277047 0.8738348741345853
+0.6391450109242524 0.37920277815082887 0.6391450109242524 0.37920277815082887 0.7631714375863113
+0.6356184169832771 0.37951100934071547 0.6356184169832771 0.37951100934071547 0.7792775301151643
+0.6321653578647902 0.3798662796305492 0.6321653578647902 0.3798662796305492 0.7945116561108226
+0.6288419781506088 0.38025474984995017 0.6288419781506088 0.38025474984995017 0.8086109436476647
+0.6256595573891861 0.38066340857596215 0.6256595573891861 0.38066340857596215 0.8215190745789435
+0.6227868413716775 0.3806919736343075 0.6227868413716775 0.3806919736343075 0.8323633883475742
+0.6199767581886044 0.38247927751499944 0.6199767581886045 0.38247927751499944 0.8439193084750547
+0.6181136304683501 0.3865584191403939 0.6181136304683501 0.3865584191403939 0.85254403616839
+0.6164505522016959 0.3902674632756422 0.6164505522016959 0.3902674632756422 0.8597533892452133
+0.6818861688837863 0.3339868648639134 0.6818861688837864 0.3339868648639133 0.6406798718239659
+0.6783876890235053 0.3340007837937797 0.6783876890235053 0.3340007837937797 0.6484131936914075
+0.6728264104123168 0.3371797601944926 0.6728264104123168 0.3371797601944926 0.6594199535350532
+0.6672897155485572 0.3402568427348173 0.6672897155485572 0.3402568427348173 0.6720770216322117
+0.6618027747995402 0.3433059421234387 0.6618027747995402 0.34330594212343873 0.6862692311382058
+0.65919567949526 0.34615572012711815 0.6591956794952599 0.3461557201271181 0.6937954057350952
+0.6578725146999697 0.3497459888717348 0.6578725146999697 0.34974598887173475 0.6978657375170458
+0.6538912044586076 0.356248541343711 0.6538912044586076 0.35624854134371103 0.7109933934000351
+0.6559348432105891 0.35305366629761686 0.6559348432105891 0.35305366629761686 0.7040649398905648
+0.6652417455194518 0.3434839285964265 0.6652417455194518 0.34348392859642646 0.6767942799604701
+0.6708143464089219 0.34041657304257544 0.6708143464089219 0.34041657304257544 0.6629201766252838
+0.6764177405373533 0.3372683528170272 0.6764177405373532 0.3372683528170272 0.6507801937336132
+0.6852642786093558 0.33392443589948323 0.6852642786093558 0.33392443589948323 0.6332724255326653
+0.6887830797623562 0.3338022861413008 0.6887830797623562 0.3338022861413008 0.6256195479411987
+0.6922667293050617 0.333876919156866 0.6922667293050617 0.333876919156866 0.6179438967082306
+0.6957837212745019 0.33403000473859706 0.6957837212745019 0.33403000473859706 0.6101061251319183
+0.6551140214590337 0.3593518729109812 0.6551140214590337 0.3593518729109812 0.7059915165896579
+0.6530672488063587 0.36257508201532623 0.6530672488063587 0.36257508201532623 0.7126669164885627
+0.6508531480130312 0.3658615971680907 0.6508531480130312 0.3658615971680907 0.7201867112637917
+0.6487727135040607 0.3692062314743288 0.6487727135040607 0.3692062314743288 0.7271302666917737
+0.6467411871292438 0.37248631554564704 0.6467411871292438 0.37248631554564704 0.7338060482671845
+0.6447234038396931 0.37573169854831395 0.6447234038396931 0.37573169854831395 0.7402514817867781
+0.6427183469067425 0.37895107651682314 0.6427183469067425 0.37895107651682314 0.7463787498056762
+0.705277736371603 0.3315550807561541 0.705277736371603 0.3315550807561541 0.5934051774094024
+0.6993343071939698 0.33425289926946605 0.6993343071939698 0.33425289926946605 0.6020923073672052
+0.7029211054866324 0.3345268844953886 0.7029211054866326 0.3345268844953886 0.5939033649573084
+0.7411512380180525 0.30025379520909024 0.7411512380180526 0.30025379520909024 0.5383028795643029
+0.7089699142846685 0.33187662194545625 0.7089699142846685 0.33187662194545625 0.5850955660369951
+0.7328419587509633 0.30570829559473917 0.7328419587509633 0.30570829559473917 0.556136223068369
+0.7305627253075953 0.30863989830724 0.7305627253075953 0.30863989830724 0.5604004828497063
+0.7113483862198305 0.3288949541535158 0.7113483862198305 0.3288949541535158 0.5844480907050665
+0.7226993100869217 0.31412550877969103 0.7226993100869218 0.31412550877969103 0.5752527379701546
+0.7248571010278418 0.311389818648368 0.7248571010278418 0.31138981864836796 0.571994338568977
+0.7283432114219088 0.3115596487244966 0.7283432114219089 0.31155964872449665 0.5641726180500383
+0.7136928179907988 0.32590146584693186 0.7136928179907988 0.32590146584693186 0.5834743601427306
+0.7179551901135253 0.31986923879467144 0.7179551901135253 0.3198692387946714 0.5809977611090139
+0.7158921786510762 0.3228879772703148 0.7158921786510762 0.3228879772703148 0.5823297629512832
+0.7236723893723787 0.31734809182920454 0.7236723893723785 0.3173480918292046 0.5708126459289069
+0.7211027627648817 0.3202217578930156 0.7211027627648817 0.3202217578930156 0.5738957399395739
+0.7386965154548045 0.3033166429641858 0.7386965154548045 0.3033166429641858 0.5433242491265465
+0.7363102743257723 0.30628033519439773 0.7363102743257723 0.30628033519439773 0.5480284337644211
+0.7447303923874098 0.3010059755338244 0.7447303923874098 0.3010059755338244 0.5300356243919375
+0.7472842102051416 0.29804269094926006 0.7472842102051417 0.2980426909492601 0.5248976196488987
+0.7499230290754735 0.2954818582839164 0.7499230290754735 0.29548185828391643 0.5196645734926387
+0.7525709851650317 0.29337820500512624 0.7525709851650317 0.2933782050051263 0.5145758745643673
+0.7549596286560725 0.2907561451931901 0.7549596286560725 0.2907561451931901 0.5104078220245586
+0.7573189522071787 0.2880043365222837 0.7573189522071787 0.2880043365222837 0.5067004876741149
+0.759685696999351 0.2851237576410455 0.759685696999351 0.2851237576410455 0.5034498855467042
+0.761992805369713 0.28218036479078934 0.761992805369713 0.2821803647907894 0.5007666038513084
+0.7636659038374791 0.2793156209980082 0.7636659038374791 0.2793156209980082 0.49946580360509596
+0.7665585847399673 0.277995306477399 0.7665585847399673 0.277995306477399 0.4961397384768202
+0.7697871291747479 0.2760608363157219 0.7697871291747479 0.2760608363157219 0.49304613222919064
+0.7730538438581888 0.27405066361102276 0.7730538438581888 0.27405066361102276 0.49040990780286325
+0.7763528220389987 0.271985832098006 0.7763528220389987 0.271985832098006 0.48821676738410646
+0.7796856219652984 0.26989372254397415 0.7796856219652984 0.26989372254397415 0.4863722349389518
+0.7830431175692586 0.26779667039575217 0.7830431175692586 0.26779667039575217 0.4847671909253237
+0.7864159897852497 0.265698169530805 0.7864159897852497 0.265698169530805 0.4832954307520076
+0.7897989639947299 0.2636014353799372 0.7897989639947299 0.2636014353799372 0.48184325364696606
+0.7931869796327025 0.26150680702355217 0.7931869796327025 0.26150680702355217 0.4803039840250845
+0.7965770022898638 0.2594142259413909 0.7965770022898638 0.2594142259413909 0.4785797589921465
+0.7999673855850326 0.2573221757321859 0.7999673855850326 0.2573221757321859 0.47658842215308045
+0.8033577688802014 0.2552301255229809 0.8033577688802014 0.2552301255229809 0.4742643095870955
+0.8067481521753703 0.25313807531377586 0.8067481521753702 0.2531380753137759 0.4715624352402385
+0.8101385354705393 0.25104602510457075 0.8101385354705393 0.25104602510457075 0.46846123109859095
+0.8135289187657083 0.24895397489536567 0.8135289187657083 0.24895397489536567 0.4649632259920791
+0.8169193020608772 0.24686192468616053 0.8169193020608772 0.24686192468616053 0.46109470184868345
+0.8203096853560461 0.24476987447695547 0.820309685356046 0.2447698744769555 0.45690435823272874
+0.823700068651215 0.24267782426775034 0.823700068651215 0.24267782426775034 0.4524610165140272
+0.8270904519463841 0.24058577405854523 0.8270904519463841 0.24058577405854523 0.4478503974903854
+0.8304808352415529 0.23849372384934012 0.8304808352415529 0.23849372384934012 0.44317102354929666
+0.8338712185367219 0.23640167364013503 0.8338712185367217 0.23640167364013506 0.4385293323135659
+0.8372616018318908 0.2343096234309299 0.8372616018318908 0.2343096234309299 0.43403414452205485
+0.8406519851270599 0.2322175732217248 0.8406519851270599 0.2322175732217248 0.429790703862344
+0.8440423684222287 0.23012552301251965 0.8440423684222287 0.23012552301251965 0.4258945902879632
+0.8474327517173976 0.2280334728033146 0.8474327517173975 0.22803347280331462 0.42242588558488064
+0.8508231350125666 0.22594142259410946 0.8508231350125666 0.22594142259410946 0.41944402072560155
+0.8542135183077356 0.22384937238490435 0.8542135183077356 0.22384937238490435 0.416983737945027
+0.8576039016029045 0.22175732217569924 0.8576039016029045 0.22175732217569924 0.41505254162159705
+0.8609942848980734 0.21966527196649416 0.8609942848980733 0.21966527196649419 0.41362988928754046
+0.8643846681932423 0.21757322175728902 0.8643846681932423 0.21757322175728902 0.41266820277699073
+0.8677750514884114 0.2154811715480839 0.8677750514884114 0.2154811715480839 0.41209558977372746
+0.8711654347835802 0.21338912133887877 0.8711654347835802 0.21338912133887877 0.4118199943165219
+0.8745558180787492 0.21129707112967372 0.874555818078749 0.21129707112967375 0.41173437264376167
+0.8779462013739181 0.20920502092046858 0.8779462013739181 0.20920502092046858 0.4117224353639413
+0.8813365846690872 0.20711297071126347 0.8813365846690872 0.20711297071126347 0.4116645080149311
+0.884726967964256 0.20502092050205836 0.884726967964256 0.20502092050205836 0.41144312485799145
+0.8881173512594249 0.20292887029285323 0.8881173512594248 0.20292887029285325 0.4109480631045303
+0.8915077345545939 0.20083682008364812 0.8915077345545939 0.20083682008364812 0.41008062467156
+0.8948981178497628 0.198744769874443 0.8948981178497629 0.198744769874443 0.4087570632839274
+0.8982885011449318 0.1966527196652379 0.8982885011449318 0.1966527196652379 0.4069111268316831
+0.9016788844401007 0.1945606694560328 0.9016788844401006 0.1945606694560328 0.4044957355149313
+0.9050692677352696 0.19246861924682768 0.9050692677352696 0.19246861924682768 0.40148384727383774
+0.9084596510304386 0.19037656903762257 0.9084596510304387 0.19037656903762257 0.39786857758419053
+0.9118500343256075 0.18828451882841746 0.9118500343256075 0.18828451882841746 0.39366264593037914
+0.9152404176207765 0.18619246861921235 0.9152404176207763 0.18619246861921235 0.38889722087955453
+0.9186308009159454 0.18410041841000724 0.9186308009159454 0.18410041841000724 0.3836202336216898
+0.9220211842111143 0.18200836820080213 0.9220211842111145 0.18200836820080213 0.37789422916267434
+0.9254115675062833 0.17991631799159702 0.9254115675062833 0.17991631799159702 0.3717938272648115
+0.9288019508014522 0.1778242677823919 0.9288019508014521 0.1778242677823919 0.3654028731204107
+0.9321923340966212 0.1757322175731868 0.9321923340966212 0.1757322175731868 0.35881137115907524
+0.9355827173917901 0.1736401673639817 0.9355827173917902 0.1736401673639817 0.3521123138216835
+0.938973100686959 0.17154811715477658 0.938973100686959 0.17154811715477658 0.34539853875958776
+0.942363483982128 0.16945606694557147 0.9423634839821279 0.16945606694557147 0.3387597693524447
+0.9457538672772969 0.16736401673636636 0.9457538672772969 0.16736401673636636 0.332280009717828
+0.9491442505724659 0.16527196652716125 0.949144250572466 0.16527196652716125 0.3260354703762424
+0.9525346338676348 0.16317991631795614 0.9525346338676348 0.16317991631795614 0.32009318812517934
+0.9559250171628038 0.16108786610875103 0.9559250171628036 0.16108786610875103 0.3145104685087279
+0.9593154004579727 0.15899581589954592 0.9593154004579727 0.15899581589954592 0.3093352196873224
+0.9627057837531416 0.1569037656903408 0.9627057837531418 0.1569037656903408 0.3046071651336772
+0.9660961670483106 0.1548117154811357 0.9660961670483106 0.1548117154811357 0.3003598268854781
+0.9694865503434795 0.1527196652719306 0.9694865503434794 0.1527196652719306 0.296623072477078
+0.9728769336386485 0.15062761506272548 0.9728769336386485 0.15062761506272548 0.2934259304498745
+0.9762673169338174 0.14853556485352037 0.9762673169338175 0.14853556485352037 0.2907993143474426
+0.9796577002289864 0.14644351464431526 0.9796577002289864 0.14644351464431526 0.2887782639848297
+0.9830480835241553 0.14435146443511016 0.9830480835241552 0.14435146443511016 0.2874033233732753
+0.9864384668193242 0.14225941422590505 0.9864384668193242 0.14225941422590505 0.2867207321596943
+0.9898288501144932 0.14016736401669994 0.9898288501144933 0.14016736401669994 0.2867812141591501
+0.9932192334096621 0.13807531380749483 0.9932192334096621 0.13807531380749483 0.28763730030611984
+0.14225941422594135 0.9932192334096621 0.14225941422594135 0.9932192334096621 0.11556745103125392
+0.1443514644351464 0.9898288501144932 0.14435146443514643 0.9898288501144933 0.11804689820954507
+0.1464435146443514 0.9864384668193242 0.14644351464435143 0.9864384668193242 0.12084870298819474
+0.14853556485355643 0.9830480835241553 0.14853556485355643 0.9830480835241552 0.12391545829649946
+0.15062761506276146 0.9796577002289864 0.15062761506276146 0.9796577002289864 0.1271868487523011
+0.1527196652719665 0.9762673169338174 0.15271966527196648 0.9762673169338175 0.13060124371059015
+0.15481171548117154 0.9728769336386485 0.15481171548117154 0.9728769336386485 0.13409699154098734
+0.15690376569037662 0.9694865503434794 0.15690376569037665 0.9694865503434794 0.1376134437062356
+0.15899581589958173 0.9660961670483106 0.1589958158995817 0.9660961670483106 0.14109176051850478
+0.1610878661087868 0.9627057837531418 0.1610878661087868 0.9627057837531418 0.14447555676347001
+0.1631799163179919 0.9593154004579731 0.1631799163179919 0.959315400457973 0.1477114408507808
+0.16527196652719697 0.9559250171628044 0.16527196652719697 0.9559250171628043 0.15074949119644965
+0.1673640167364019 0.9525346338676357 0.1673640167364019 0.9525346338676357 0.15354370200612585
+0.1694560669456067 0.9491442505724668 0.1694560669456067 0.9491442505724667 0.15605241976759388
+0.17154811715481144 0.9457538672772979 0.17154811715481144 0.9457538672772979 0.15823878262943722
+0.1736401673640161 0.942363483982129 0.1736401673640161 0.942363483982129 0.1600711677154698
+0.17573221757322077 0.9389731006869599 0.17573221757322077 0.9389731006869599 0.16152364614114675
+0.17782426778242555 0.935582717391791 0.17782426778242555 0.9355827173917909 0.16257644169146748
+0.17991631799163066 0.9321923340966216 0.17991631799163066 0.9321923340966215 0.16321638634366709
+0.1820083682008362 0.9288019508014523 0.1820083682008362 0.9288019508014523 0.16343736360501768
+0.18410041841004235 0.9254115675062834 0.18410041841004235 0.9254115675062834 0.16324072851315322
+0.18619246861924912 0.9220211842111152 0.18619246861924912 0.9220211842111151 0.16263569062765204
+0.18828451882845645 0.9186308009159473 0.18828451882845645 0.9186308009159473 0.1616396429174274
+0.1903765690376644 0.9152404176207803 0.1903765690376644 0.9152404176207803 0.16027841458596526
+0.19246861924687297 0.9118500343256138 0.19246861924687297 0.9118500343256138 0.15858641905396323
+0.19456066945608266 0.9084596510304501 0.19456066945608266 0.90845965103045 0.1566066591243225
+0.19665271966529277 0.9050692677352888 0.19665271966529277 0.9050692677352888 0.1543905396886491
+0.19874476987450237 0.9016788844401349 0.19874476987450237 0.9016788844401349 0.15199742476784175
+0.2008368200837064 0.8982885011449825 0.20083682008370643 0.8982885011449825 0.1494938619882296
+0.2029288702928993 0.8948981178498431 0.2029288702928993 0.8948981178498431 0.146952387434542
+0.20502092050209053 0.8915077345546908 0.20502092050209053 0.8915077345546908 0.14444982331986725
+0.2071129707112671 0.888117351259537 0.2071129707112671 0.888117351259537 0.1420649986931675
+0.20920502092044904 0.8847269679643793 0.20920502092044904 0.8847269679643793 0.13987586921118522
+0.21129707112965923 0.8813365846692127 0.2112970711296592 0.8813365846692127 0.13795609306820064
+0.21338912133890078 0.877946201374061 0.21338912133890078 0.877946201374061 0.13637123516045999
+0.21548117154818366 0.8745558180789358 0.21548117154818366 0.8745558180789358 0.13517490384136133
+0.21757322175749647 0.8711654347838982 0.21757322175749647 0.8711654347838982 0.1344052394536203
+0.21966527196685046 0.8677750514888959 0.21966527196685046 0.8677750514888959 0.134082225061999
+0.2217573221761203 0.8643846681939767 0.2217573221761203 0.8643846681939767 0.13420623837620502
+0.22384937238534042 0.8609942848988609 0.2238493723853404 0.8609942848988609 0.13475810117309375
+0.22594142259512454 0.8576039016043371 0.22594142259512454 0.8576039016043371 0.13570064387912442
+0.2280334728049914 0.8542135183099018 0.2280334728049914 0.8542135183099017 0.13698155773140044
+0.23012552301515285 0.8508231350157439 0.23012552301515285 0.8508231350157439 0.1385371278702026
+0.2322175732255598 0.8474327517228063 0.2322175732255598 0.8474327517228063 0.14029637089908523
+0.23430962343646575 0.8440423684313795 0.23430962343646575 0.8440423684313795 0.1421851386609718
+0.23640167364439058 0.840651985140791 0.23640167364439058 0.8406519851407911 0.1441298602387107
+0.238493723853906 0.8372616018501118 0.238493723853906 0.8372616018501118 0.14606072903781506
+0.2405857740617718 0.8338712185601046 0.2405857740617718 0.8338712185601046 0.1479142626973976
+0.24267782427250673 0.8304808352721791 0.24267782427250673 0.8304808352721791 0.1496352505257541
+0.24476987448958862 0.8270904519883815 0.24476987448958862 0.8270904519883814 0.15117815230040488
+0.2468619247171455 0.8237000687127759 0.2468619247171455 0.8237000687127759 0.15250803053464046
+0.2489539749543496 0.8203096854569959 0.2489539749543496 0.8203096854569959 0.1536010953407917
+0.251046025186159 0.8169193022153163 0.251046025186159 0.8169193022153163 0.154444926243636
+0.2531380754133661 0.8135289190212529 0.2531380754133661 0.8135289190212528 0.15503841564159374
+0.2552301256100876 0.810138535760228 0.2552301256100877 0.8101385357602279 0.1553914579504786
+0.25732217584359257 0.8067481525305885 0.25732217584359257 0.8067481525305885 0.1555243912148886
+0.2594142274276022 0.803357770766486 0.2594142274276022 0.803357770766486 0.15546718423293623
+0.2615065363093896 0.7999674277168994 0.2615065363093896 0.7999674277168994 0.1552586399454815
+0.26359955789009004 0.7965775371059084 0.26359955789009004 0.7965775371059084 0.1549452432106
+0.2656933359003775 0.7931901339527561 0.2656933359003775 0.7931901339527561 0.15457983047387255
+0.2677863941646015 0.7898095379532709 0.2677863941646015 0.7898095379532709 0.1542188099484911
+0.269877212656046 0.7864419078993102 0.269877212656046 0.7864419078993102 0.15392051973192353
+0.2951505891560688 0.7502268361915286 0.2951505891560688 0.7502268361915286 0.16744396991835805
+0.2969229860562188 0.7467630831157741 0.2969229860562188 0.7467630831157742 0.16921433292765697
+0.29867106119904274 0.7433450231111308 0.2986710611990428 0.7433450231111308 0.17106152176106373
+0.30046130684960354 0.7399263193994609 0.30046130684960354 0.7399263193994609 0.17301911184244004
+0.2719692973314652 0.783094962403117 0.2719692973314652 0.783094962403117 0.15374736824747795
+0.27407219722055315 0.7797735864234067 0.27407219722055315 0.7797735864234067 0.15376093447530295
+0.27620108550004574 0.7764779774171987 0.2762010855000457 0.7764779774171987 0.15401895666116674
+0.289858951441995 0.7538895099849452 0.2898589514419951 0.7538895099849451 0.16122705172797833
+0.278402439637843 0.773208034331878 0.278402439637843 0.773208034331878 0.1546120866106222
+0.2809228464832223 0.7698847792784786 0.2809228464832223 0.7698847792784785 0.1558390549251307
+0.28805748779008955 0.7571313995979203 0.2880574877900895 0.7571313995979203 0.15970826623113402
+0.28616820755788713 0.7603143964831415 0.28616820755788713 0.7603143964831415 0.15825479368815776
+0.2823955700245864 0.7664355993170866 0.2823955700245864 0.7664355993170866 0.15593738354121356
+0.2842506601259117 0.7634279502382253 0.28425066012591177 0.7634279502382252 0.15695671473372172
+0.2934233018046238 0.7535909002026141 0.2934233018046238 0.7535909002026141 0.16584456949522985
+0.3040398825414999 0.7332177182833176 0.3040398825414999 0.7332177182833176 0.17692717099958097
+0.31294836932552633 0.7168124645698521 0.31294836932552633 0.716812464569852 0.1852215617486659
+0.31085360312432475 0.7199930602590717 0.31085360312432475 0.7199930602590717 0.1833653559260724
+0.30580227259827614 0.7298967696859934 0.30580227259827614 0.7298967696859934 0.17877242268337046
+0.3090881911019958 0.7230571643085422 0.3090881911019958 0.7230571643085422 0.18178883892728007
+0.30752316344011565 0.7265455999023089 0.30752316344011565 0.7265455999023089 0.18046508395463598
+0.3040803441359369 0.7398109289267 0.30408034413593693 0.7398109289267 0.17782909641426614
+0.3058384437799578 0.7364613432233705 0.3058384437799578 0.7364613432233705 0.17976376547239462
+0.3234219070159354 0.703278388891088 0.3234219070159354 0.703278388891088 0.19438863243280588
+0.3216269743489161 0.7066252648630824 0.321626974348916 0.7066252648630824 0.19339379488711986
+0.3198693405721437 0.7099733411678856 0.3198693405721437 0.7099733411678856 0.19235373689194157
+0.31816212736724725 0.7133249843939892 0.31816212736724725 0.7133249843939892 0.19126995578291958
+0.3164604837847518 0.7166433183625939 0.3164604837847518 0.7166433183625939 0.1900524252898135
+0.3324121542715621 0.6930012402011457 0.3324121542715621 0.6930012402011457 0.2031597841344415
+0.33064700435935196 0.6963042451116156 0.33064700435935196 0.6963042451116156 0.20213556917153505
+0.32887253262664645 0.6996250489278575 0.32887253262664645 0.6996250489278575 0.20109881661803578
+0.3270967533566311 0.7029631161207363 0.3270967533566311 0.7029631161207363 0.20003395099871782
+0.3376202913935777 0.6894055103749991 0.3376202913935777 0.6894055103749991 0.2105415457316477
+0.3359110126527926 0.6926490986145103 0.3359110126527926 0.6926490986145103 0.20933956528336453
+0.3482907873119643 0.6696314152118428 0.3482907873119643 0.6696314152118427 0.22069034741180807
+0.34651451372896114 0.6730288186401515 0.34651451372896114 0.6730288186401515 0.21864169490242327
+0.34477534723209136 0.6764610077952882 0.34477534723209136 0.6764610077952882 0.21690681947289317
+0.33935531739343694 0.6862665435091135 0.33935531739343694 0.6862665435091135 0.21192573994317918
+0.3412089494958411 0.6831221632987101 0.3412089494958411 0.6831221632987101 0.21362818494859012
+0.34302297158840583 0.6798668977069572 0.34302297158840583 0.6798668977069572 0.21530313126064873
+0.3715629660864816 0.6381130085449099 0.3715629660864816 0.6381130085449099 0.2746675825728481
+0.36123501664742863 0.656449754329314 0.36123501664742863 0.656449754329314 0.2469225493514778
+0.35670910021924845 0.6592709837163858 0.35670910021924845 0.6592709837163858 0.2361905903221617
+0.3519340700479735 0.6630711384017183 0.35193407004797356 0.6630711384017182 0.2258545413270774
+0.35016120619789093 0.6663356461143553 0.35016120619789093 0.6663356461143551 0.22325231870028803
+0.3551332241676783 0.6626855439206656 0.3551332241676783 0.6626855439206656 0.23368390235489844
+0.3598031039481503 0.6590643049607601 0.35980310394815035 0.6590643049607601 0.24406783153219028
+0.3699278059049213 0.6415480683719523 0.3699278059049213 0.6415480683719523 0.26930255272083475
+0.3682790571115387 0.6450263512357071 0.3682790571115387 0.645026351235707 0.26438879300709894
+0.3665982454387681 0.648576912169754 0.3665982454387681 0.6485769121697541 0.2598526856471958
+0.3650857898177843 0.6519810818426313 0.3650857898177842 0.6519810818426314 0.25618053377618216
+0.3639624643590048 0.6553990919142249 0.36396246435900487 0.6553990919142249 0.25388673111668286
+0.3767185633155773 0.6340537312233523 0.37671856331557724 0.6340537312233523 0.29166809280136136
+0.375121081619663 0.6374659297926871 0.375121081619663 0.6374659297926871 0.2854860662467282
+0.3800873596083136 0.6333435946619105 0.3800873596083136 0.6333435946619105 0.3024218984048974
+0.387550113379314 0.5243160302946756 0.387550113379314 0.5243160302946756 0.33259118725100617
+0.3855023977628316 0.5273429065560975 0.3855023977628316 0.5273429065560976 0.3123831293559785
+0.38348556583235593 0.5316496296144777 0.38348556583235593 0.5316496296144777 0.2870570430934451
+0.38541854678425536 0.5298767468662038 0.38541854678425536 0.5298767468662038 0.29370822478235814
+0.38134072513980555 0.5363264657972975 0.3813407251398055 0.5363264657972975 0.26608014897240734
+0.38409626013665976 0.534156405851888 0.38409626013665976 0.534156405851888 0.2703811039527389
+0.38221313158356074 0.5391114516540276 0.3822131315835607 0.5391114516540276 0.2530507840375619
+0.3798229121062474 0.5422367487957827 0.37982291210624736 0.5422367487957827 0.24754859755571215
+0.37939667571885877 0.5457209239393157 0.37939667571885877 0.5457209239393156 0.24186561900821316
+0.37629187313856116 0.5506903078815499 0.37629187313856116 0.5506903078815499 0.23807084721412936
+0.37929634531194345 0.5488337683377061 0.3792963453119435 0.5488337683377061 0.24089216821118167
+0.3743570656068359 0.557240369144063 0.37435706560683585 0.557240369144063 0.23849041143732144
+0.3772099982037568 0.55439471620482 0.3772099982037567 0.5543947162048201 0.24194183184112053
+0.3754064878505256 0.56002501157371 0.3754064878505256 0.56002501157371 0.24563430345277695
+0.37487405673519403 0.5634881170973483 0.37487405673519403 0.5634881170973483 0.25056468199048504
+0.3726902697872667 0.5670161907037843 0.3726902697872667 0.5670161907037842 0.24849541763158303
+0.373823534365356 0.5700688489565038 0.373823534365356 0.5700688489565038 0.2596833682340805
+0.37315545879703127 0.5761460972380619 0.3731554587970312 0.5761460972380618 0.26831276393181064
+0.3744392539416637 0.572913068414054 0.3744392539416637 0.572913068414054 0.26862982452325845
+0.3735790884928322 0.5799155995159366 0.3735790884928322 0.5799155995159366 0.27692669150301846
+0.3726625159127767 0.5861198965791118 0.3726625159127767 0.5861198965791118 0.28049983389402655
+0.3747581291400036 0.5830720095503509 0.37475812914000356 0.5830720095503509 0.2881202107202228
+0.3739527588311901 0.5895054402062879 0.3739527588311901 0.5895054402062879 0.29072003819977565
+0.373379855238811 0.596250995194667 0.373379855238811 0.596250995194667 0.29173274718435827
+0.37534378883459896 0.5929106517557033 0.37534378883459896 0.5929106517557033 0.30045903697422943
+0.3749156149155584 0.5997439039250305 0.3749156149155584 0.5997439039250305 0.30010264501428546
+0.3748540607116032 0.6068026957265609 0.37485406071160327 0.6068026957265609 0.29890663365069137
+0.37656416862945413 0.6031976742347421 0.37656416862945413 0.6031976742347421 0.3077680345906572
+0.376513123787503 0.6100961375053445 0.376513123787503 0.6100961375053445 0.3048669719768986
+0.37621707982609676 0.616486872527155 0.3762170798260968 0.616486872527155 0.3000517574086621
+0.37715782036643664 0.6193378075542053 0.37715782036643664 0.6193378075542053 0.3017783362113752
+0.3782393082649045 0.6135047361346957 0.3782393082649045 0.6135047361346957 0.31006904516415174
+0.379216058708498 0.6210827222855116 0.379216058708498 0.6210827222855116 0.3081831913755775
+0.3797047017658423 0.627277769039979 0.3797047017658423 0.627277769039979 0.3051975439226626
+0.381569561050937 0.6299485427131106 0.38156956105093703 0.6299485427131106 0.3093112375456142
+0.38112908258513123 0.6238990887594412 0.38112908258513123 0.6238990887594412 0.3126952106092018
+0.38339528584734583 0.6326336861228378 0.3833952858473459 0.6326336861228378 0.31303812244401014
+0.3920137514163834 0.5254930781785181 0.39201375141638334 0.525493078178518 0.31010558374899566
+0.39621745810580755 0.5266111022239863 0.39621745810580755 0.5266111022239864 0.2848610472903736
+0.558377742720002 0.40116155488215843 0.558377742720002 0.4011615548821585 0.8430595044256124
+0.5616645238705477 0.3999785592035288 0.5616645238705477 0.3999785592035288 0.8644250804512811
+0.5662150080389583 0.3990909699729257 0.5662150080389584 0.3990909699729257 0.8943898526683131
+0.5640099088304082 0.40059156859668255 0.5640099088304082 0.40059156859668255 0.8906299345179578
+0.5711688710846068 0.3984377199485687 0.5711688710846068 0.3984377199485687 0.9204041580846204
+0.5683696764356915 0.40030756603434625 0.5683696764356915 0.40030756603434625 0.9196242282865735
+0.5743814116828644 0.39849544025641975 0.5743814116828644 0.39849544025641975 0.9355732789361891
+0.5727652265476566 0.4006998064087878 0.5727652265476566 0.4006998064087878 0.9453993415404373
+0.5810312097723908 0.3974730878142209 0.5810312097723908 0.3974730878142209 0.9474071068081528
+0.5774818455051979 0.3988597317945581 0.5774818455051979 0.3988597317945581 0.948614806249605
+0.592062347520937 0.3971135808255059 0.5920623475209369 0.3971135808255059 0.945652542771792
+0.5882630902978944 0.3979733900097039 0.5882630902978944 0.39797339000970394 0.9532744556145943
+0.5828744135556014 0.39966094890774234 0.5828744135556015 0.39966094890774234 0.9616723630139802
+0.5855065476848165 0.3996812055014008 0.5855065476848165 0.3996812055014008 0.9619374058033039
+0.5584066334602569 0.405758213740363 0.5584066334602569 0.40575821374036297 0.8893467811579155
+0.5583613202486251 0.4102354601457086 0.5583613202486251 0.4102354601457086 0.936841768516857
+0.5952783510343758 0.39631614100230234 0.5952783510343758 0.39631614100230234 0.9374152466810909
+0.5938835104759632 0.4001091444969491 0.5938835104759632 0.4001091444969491 0.9511225164471372
+0.5985715372966348 0.3952982301531296 0.5985715372966348 0.3952982301531296 0.9271659066567924
+0.60127547594813 0.3941161423321152 0.60127547594813 0.3941161423321152 0.9172658146882202
+0.6043241010789406 0.3950370851034678 0.6043241010789407 0.39503708510346774 0.9095598820835129
+0.6080455219522458 0.39447065092673483 0.6080455219522457 0.39447065092673483 0.895174105854576
+0.6114359814494906 0.3940758956996675 0.6114359814494906 0.3940758956996675 0.8811707388114964
+0.6148195162283436 0.39381139569937745 0.6148195162283435 0.39381139569937745 0.8662756389702188
+0.6407325581451346 0.38214191932938996 0.6407325581451345 0.38214191932938996 0.7520771391394852
+0.637227074510393 0.38241319592583145 0.6372270745103928 0.38241319592583145 0.769051368054903
+0.6337390961606061 0.3827866901044039 0.6337390961606061 0.3827866901044039 0.7854650815101908
+0.6304034406715209 0.38312426374364944 0.6304034406715209 0.38312426374364944 0.8007307511227327
+0.6271385801024414 0.3834461848050258 0.6271385801024413 0.38344618480502574 0.8151582379598715
+0.6236920611709059 0.3835096746539049 0.6236920611709059 0.3835096746539049 0.8296953417412102
+0.6217567970691137 0.38652690554781727 0.6217567970691137 0.38652690554781727 0.8375736803421926
+0.6199725709026032 0.3900711725965271 0.6199725709026032 0.3900711725965271 0.8443388966371915
+0.6182634401029634 0.393614526773491 0.6182634401029635 0.393614526773491 0.8501585576339402
+0.6833986696803948 0.3371751620923003 0.6833986696803948 0.3371751620923003 0.6342521659531634
+0.6800350117441806 0.3372749057528564 0.6800350117441806 0.3372749057528564 0.6421412542199221
+0.6743812428995305 0.3405761302419957 0.6743812428995305 0.3405761302419957 0.6535758713725882
+0.6687742423932622 0.3436517055066215 0.6687742423932622 0.3436517055066215 0.666887679673409
+0.6630765152475407 0.34660750851860295 0.6630765152475407 0.34660750851860295 0.6823227648639678
+0.6610884685246224 0.3497370949013353 0.6610884685246224 0.34973709490133537 0.6877166471884778
+0.6593740935869803 0.3530306711667589 0.6593740935869804 0.35303067116675896 0.6925303892029001
+0.6572612654405469 0.35626596059732013 0.6572612654405469 0.35626596059732013 0.6989999481919259
+0.6667120367833684 0.34684733038400345 0.6667120367833684 0.34684733038400345 0.6713527054270543
+0.6585815664570261 0.3595068720037236 0.6585815664570261 0.3595068720037236 0.6926564657748023
+0.6723303312212213 0.34383187781645247 0.6723303312212213 0.34383187781645247 0.6568165245522213
+0.6780238581711169 0.34062421869818493 0.6780238581711169 0.34062421869818493 0.6441238882166845
+0.6867766962765465 0.33665568540862 0.6867766962765466 0.33665568540862 0.626819247465856
+0.6901174251708021 0.3368128679892182 0.6901174251708021 0.3368128679892182 0.6189687917847163
+0.6970555432047081 0.33721656427912267 0.6970555432047081 0.33721656427912267 0.602592859328939
+0.6935615457661246 0.3369907223925877 0.6935615457661246 0.3369907223925877 0.6108559722228003
+0.6853475165418539 0.3391895055449237 0.6853475165418539 0.3391895055449237 0.6271395525667182
+0.6565596951766686 0.36263831626176013 0.6565596951766687 0.36263831626176013 0.6986576332305652
+0.6545193211977395 0.3658581157898722 0.6545193211977395 0.3658581157898722 0.7047997153369919
+0.6525002170472219 0.3691071733426829 0.6525002170472219 0.3691071733426829 0.7108932172016224
+0.6504756483012287 0.372344190332007 0.6504756483012287 0.372344190332007 0.7169515744640008
+0.6484175913473581 0.37557211487275916 0.6484175913473581 0.37557211487275916 0.7229966523600466
+0.6463497558684338 0.3787812423373569 0.6463497558684338 0.3787812423373569 0.7288660548784235
+0.6442929717496365 0.3819598345946578 0.6442929717496365 0.3819598345946578 0.734383580683665
+0.7065793811561965 0.3348381024713718 0.7065793811561965 0.3348381024713718 0.5854684723960076
+0.7005801600006838 0.3374722018514719 0.7005801600006838 0.3374722018514719 0.5942438997918353
+0.7041965921162493 0.33776981515178045 0.7041965921162493 0.33776981515178045 0.5856402472934259
+0.7422296418002313 0.30397697530902706 0.7422296418002313 0.30397697530902706 0.535006723830162
+0.7102632987051781 0.33519050845255444 0.7102632987051781 0.33519050845255444 0.5768691185785566
+0.7127137727749362 0.332228959544389 0.7127137727749363 0.332228959544389 0.5765373739947054
+0.7339961464750161 0.3091825650027082 0.7339961464750161 0.3091825650027082 0.5523059418602415
+0.7317781183136495 0.3119923664274184 0.7317781183136495 0.3119923664274184 0.5560332402839538
+0.7151426971582788 0.329245922684153 0.7151426971582788 0.3292459226841529 0.5758867079281269
+0.7264843609174406 0.31501488749304707 0.7264843609174407 0.3150148874930471 0.5663458769455191
+0.7297601708178302 0.31434344601266984 0.7297601708178302 0.31434344601266984 0.5591711827759568
+0.7263056819609385 0.3185011008845784 0.7263056819609385 0.3185011008845784 0.5638514912550212
+0.7175487851374163 0.32629910084394403 0.7175487851374163 0.32629910084394403 0.5747677407148855
+0.7194605965849674 0.3232138849293604 0.7194605965849674 0.3232138849293604 0.5742797646678598
+0.7242814341556956 0.3207023029593955 0.7242814341556957 0.32070230295939556 0.5662647046172835
+0.7223604769553622 0.3228357863925845 0.7223604769553622 0.3228357863925845 0.5683066427465894
+0.7397775858757211 0.3069209321835056 0.7397775858757211 0.3069209321835056 0.5397488812902537
+0.7373698288605306 0.30981209180959923 0.7373698288605306 0.30981209180959923 0.5441733478791085
+0.7457619561801371 0.3047331344598525 0.7457619561801371 0.3047331344598525 0.5265422023597184
+0.7482937073694202 0.3018606778682215 0.7482937073694202 0.3018606778682215 0.5216693560241698
+0.7508564331301747 0.29911282089859875 0.7508564331301747 0.29911282089859875 0.5167572565103845
+0.7534169630744509 0.2965459702975198 0.7534169630744509 0.2965459702975198 0.5119808173624881
+0.7559504895786539 0.2940030527760704 0.7559504895786539 0.2940030527760704 0.5074823446136446
+0.7584060586785969 0.2913250134427651 0.7584060586785969 0.2913250134427651 0.5035281913239739
+0.7608509962074983 0.28853997155171535 0.7608509962074983 0.28853997155171535 0.5000463951514346
+0.7633379864530895 0.2855784716107324 0.7633379864530895 0.2855784716107324 0.49708119199611284
+0.7661412726905632 0.2820237652240859 0.7661412726905633 0.28202376522408595 0.4945559287188245
+0.769718720573655 0.2801887880618271 0.769718720573655 0.2801887880618272 0.49026075918613593
+0.7730351695090765 0.27822195848157755 0.7730351695090764 0.27822195848157755 0.4870566161618763
+0.7763410943197683 0.2761935062066283 0.7763410943197683 0.2761935062066283 0.4844117250279016
+0.7796969096182899 0.27408383923923507 0.7796969096182899 0.27408383923923507 0.4821957857068397
+0.7830546133940942 0.2719821398906251 0.7830546133940942 0.2719821398906251 0.4802950966849037
+0.7864224990516618 0.26988363445709446 0.7864224990516618 0.26988363445709446 0.47859646616521095
+0.7898014161921916 0.2677867901540953 0.7898014161921916 0.2677867901540953 0.4769870564568244
+0.7931875830267456 0.26569162960830295 0.7931875830267456 0.26569162960830295 0.4753580180650642
+0.7965770382212741 0.26359838314634243 0.7965770382212741 0.26359838314634243 0.4736071490731086
+0.7999673855850323 0.26150627615059574 0.7999673855850323 0.26150627615059574 0.4716442382554284
+0.8033577688802014 0.25941422594139096 0.8033577688802014 0.25941422594139096 0.46939469468788825
+0.8067481521753702 0.25732217573218596 0.8067481521753702 0.25732217573218596 0.4668019460240736
+0.8101385354705393 0.2552301255229809 0.8101385354705393 0.2552301255229809 0.4638319235940213
+0.8135289187657082 0.25313807531377586 0.8135289187657083 0.2531380753137759 0.46047455544464183
+0.816919302060877 0.25104602510457075 0.816919302060877 0.25104602510457075 0.45674411085127886
+0.820309685356046 0.2489539748953657 0.820309685356046 0.24895397489536572 0.4526785183899665
+0.823700068651215 0.24686192468616053 0.823700068651215 0.24686192468616053 0.44833767500862143
+0.8270904519463841 0.24476987447695545 0.8270904519463841 0.24476987447695545 0.4438007658470444
+0.8304808352415529 0.24267782426775034 0.8304808352415529 0.24267782426775034 0.4391626246085341
+0.8338712185367217 0.24058577405854528 0.8338712185367217 0.24058577405854528 0.43452919072194846
+0.8372616018318908 0.23849372384934012 0.8372616018318908 0.23849372384934012 0.430012167378695
+0.8406519851270597 0.23640167364013495 0.8406519851270599 0.23640167364013495 0.42572305508336333
+0.8440423684222286 0.23430962343092987 0.8440423684222286 0.23430962343092987 0.4217668238619177
+0.8474327517173975 0.23221757322172482 0.8474327517173975 0.23221757322172484 0.41823558094677143
+0.8508231350125666 0.23012552301251965 0.8508231350125666 0.23012552301251965 0.41520266957092017
+0.8542135183077356 0.22803347280331457 0.8542135183077356 0.22803347280331457 0.4127176740658716
+0.8576039016029045 0.22594142259410946 0.8576039016029045 0.22594142259410946 0.41080278444565804
+0.8609942848980733 0.2238493723849044 0.8609942848980733 0.2238493723849044 0.4094508785078093
+0.8643846681932423 0.22175732217569924 0.8643846681932423 0.22175732217569924 0.40862551760476995
+0.8677750514884113 0.21966527196649407 0.8677750514884114 0.21966527196649407 0.408262849586372
+0.8711654347835801 0.217573221757289 0.8711654347835801 0.217573221757289 0.4082752082475695
+0.874555818078749 0.2154811715480839 0.874555818078749 0.2154811715480839 0.408556033331182
+0.8779462013739181 0.21338912133887877 0.8779462013739181 0.21338912133887877 0.4089856374404741
+0.8813365846690872 0.21129707112967364 0.8813365846690872 0.21129707112967364 0.4094373254106203
+0.884726967964256 0.20920502092046855 0.884726967964256 0.20920502092046855 0.4097834178289527
+0.8881173512594248 0.20711297071126344 0.8881173512594248 0.20711297071126342 0.40990082095171676
+0.8915077345545939 0.20502092050205833 0.8915077345545939 0.20502092050205833 0.40967589421573697
+0.8948981178497628 0.20292887029285323 0.8948981178497629 0.20292887029285325 0.4090084718908004
+0.8982885011449318 0.20083682008364812 0.8982885011449318 0.20083682008364812 0.4078149830622903
+0.9016788844401007 0.198744769874443 0.9016788844401006 0.198744769874443 0.4060306781672645
+0.9050692677352696 0.1966527196652379 0.9050692677352696 0.1966527196652379 0.4036110110998434
+0.9084596510304386 0.1945606694560328 0.9084596510304387 0.1945606694560328 0.4005322474865281
+0.9118500343256075 0.19246861924682768 0.9118500343256075 0.19246861924682768 0.39679137753876664
+0.9152404176207765 0.19037656903762257 0.9152404176207763 0.19037656903762257 0.39240541124665546
+0.9186308009159454 0.18828451882841746 0.9186308009159454 0.18828451882841746 0.38741012906758265
+0.9220211842111143 0.18619246861921235 0.9220211842111145 0.18619246861921235 0.38185835612460567
+0.9254115675062833 0.18410041841000724 0.9254115675062833 0.18410041841000724 0.37581782474389086
+0.9288019508014522 0.18200836820080213 0.9288019508014521 0.18200836820080213 0.36936869063536065
+0.9321923340966212 0.17991631799159702 0.9321923340966212 0.17991631799159702 0.3626007732177224
+0.9355827173917901 0.1778242677823919 0.9355827173917902 0.1778242677823919 0.3556106009340741
+0.938973100686959 0.1757322175731868 0.938973100686959 0.1757322175731868 0.34849835754901587
+0.942363483982128 0.1736401673639817 0.9423634839821279 0.1736401673639817 0.3413648439858971
+0.9457538672772969 0.17154811715477658 0.9457538672772969 0.17154811715477658 0.3343085895662983
+0.9491442505724659 0.16945606694557147 0.949144250572466 0.16945606694557147 0.3274232624019198
+0.9525346338676348 0.16736401673636636 0.9525346338676348 0.16736401673636636 0.3207955357236374
+0.9559250171628038 0.16527196652716125 0.9559250171628036 0.16527196652716125 0.3145035590832163
+0.9593154004579727 0.16317991631795614 0.9593154004579727 0.16317991631795614 0.30861615528271663
+0.9627057837531416 0.16108786610875103 0.9627057837531418 0.16108786610875103 0.3031928125926044
+0.9660961670483106 0.15899581589954592 0.9660961670483106 0.15899581589954592 0.2982844683325894
+0.9694865503434795 0.1569037656903408 0.9694865503434794 0.1569037656903408 0.2939349902097655
+0.9728769336386485 0.1548117154811357 0.9728769336386485 0.1548117154811357 0.290183166719896
+0.9762673169338174 0.1527196652719306 0.9762673169338175 0.1527196652719306 0.28706493150312745
+0.9796577002289864 0.15062761506272548 0.9796577002289864 0.15062761506272548 0.2846154838368504
+0.9830480835241553 0.14853556485352037 0.9830480835241552 0.14853556485352037 0.2828709419378595
+0.9864384668193242 0.14644351464431526 0.9864384668193242 0.14644351464431526 0.28186918735127625
+0.9898288501144932 0.14435146443511016 0.9898288501144933 0.14435146443511016 0.2816496322366286
+0.9932192334096621 0.14225941422590505 0.9932192334096621 0.14225941422590505 0.28225176503129784
+0.1464435146443514 0.9932192334096621 0.14644351464435143 0.9932192334096621 0.11870893797458625
+0.1485355648535564 0.9898288501144932 0.14853556485355643 0.9898288501144933 0.12125810487049328
+0.15062761506276146 0.9864384668193242 0.15062761506276146 0.9864384668193242 0.12413056712427419
+0.15271966527196648 0.9830480835241553 0.15271966527196648 0.9830480835241552 0.1272685958522141
+0.1548117154811715 0.9796577002289864 0.15481171548117148 0.9796577002289864 0.1306107299799344
+0.15690376569037656 0.9762673169338174 0.15690376569037656 0.9762673169338175 0.13409349223977848
+0.15899581589958164 0.9728769336386485 0.15899581589958164 0.9728769336386485 0.1376528497966645
+0.16108786610878673 0.9694865503434795 0.1610878661087867 0.9694865503434794 0.14122542438739538
+0.1631799163179918 0.9660961670483107 0.1631799163179918 0.9660961670483107 0.14474948551549682
+0.16527196652719678 0.9627057837531421 0.16527196652719678 0.9627057837531421 0.1481657724233114
+0.16736401673640178 0.9593154004579733 0.16736401673640178 0.9593154004579733 0.15141819113390684
+0.16945606694560664 0.9559250171628042 0.16945606694560664 0.9559250171628042 0.15445442675550514
+0.17154811715481147 0.9525346338676353 0.17154811715481147 0.9525346338676354 0.15722650231794577
+0.1736401673640163 0.9491442505724664 0.1736401673640163 0.9491442505724664 0.1596913061553958
+0.1757322175732211 0.9457538672772975 0.1757322175732211 0.9457538672772975 0.16181110159539458
+0.177824267782426 0.9423634839821283 0.177824267782426 0.9423634839821283 0.16355402597818414
+0.17991631799163108 0.9389731006869595 0.17991631799163108 0.9389731006869596 0.16489458082776556
+0.18200836820083635 0.9355827173917906 0.18200836820083635 0.9355827173917906 0.16581411107002667
+0.18410041841004202 0.9321923340966213 0.18410041841004202 0.9321923340966213 0.16630126815296764
+0.18619246861924807 0.9288019508014523 0.18619246861924807 0.9288019508014523 0.16635244931544033
+0.18828451882845443 0.9254115675062842 0.18828451882845443 0.9254115675062842 0.1659722025814552
+0.1903765690376612 0.9220211842111162 0.1903765690376612 0.9220211842111162 0.16517358379719627
+0.1924686192468684 0.9186308009159486 0.1924686192468684 0.9186308009159486 0.1639784476073555
+0.19456066945607606 0.9152404176207826 0.19456066945607606 0.9152404176207826 0.16241764809030493
+0.19665271966528372 0.9118500343256181 0.19665271966528372 0.9118500343256181 0.16053111627642666
+0.19874476987449088 0.9084596510304571 0.19874476987449088 0.9084596510304571 0.15836777057995577
+0.20083682008369486 0.9050692677352973 0.20083682008369488 0.9050692677352973 0.15598520236670096
+0.2029288702928925 0.9016788844401442 0.2029288702928925 0.9016788844401443 0.15344906348291706
+0.20502092050208895 0.8982885011449837 0.20502092050208895 0.8982885011449838 0.1508320682264707
+0.2071129707112774 0.8948981178498222 0.2071129707112774 0.8948981178498222 0.1482125139834629
+0.20920502092047213 0.89150773455466 0.20920502092047213 0.8915077345546599 0.14567223051981268
+0.2112970711296843 0.8881173512594954 0.2112970711296843 0.8881173512594954 0.14329389809160867
+0.21338912133891405 0.8847269679643389 0.21338912133891405 0.8847269679643389 0.14115773947817556
+0.21548117154816102 0.8813365846691913 0.21548117154816102 0.8813365846691913 0.13933769577976332
+0.21757322175742147 0.8779462013740825 0.21757322175742147 0.8779462013740825 0.13789733248531036
+0.21966527196670435 0.8745558180789894 0.21966527196670435 0.8745558180789894 0.13688586363041114
+0.2217573221759537 0.8711654347839354 0.2217573221759537 0.8711654347839354 0.13633478194273965
+0.2238493723852917 0.8677750514889208 0.2238493723852917 0.8677750514889208 0.13625559089875058
+0.22594142259468072 0.8643846681939129 0.22594142259468072 0.8643846681939129 0.1366390199075971
+0.2280334728042043 0.8609942848990895 0.2280334728042043 0.8609942848990894 0.13745587936606318
+0.2301255230139233 0.8576039016045126 0.23012552301392333 0.8576039016045126 0.13865943849920395
+0.23221757322385764 0.8542135183105809 0.23221757322385764 0.8542135183105809 0.14018896952519777
+0.23430962343344697 0.8508231350168874 0.23430962343344697 0.8508231350168874 0.14197396471420842
+0.23640167364250797 0.8474327517244951 0.23640167364250794 0.8474327517244952 0.14393852134484686
+0.23849372385111736 0.8440423684315251 0.23849372385111736 0.8440423684315251 0.14600547931951754
+0.24058577405960993 0.8406519851389175 0.24058577405960993 0.8406519851389175 0.14810003724561704
+0.24267782426957174 0.8372616018472682 0.24267782426957174 0.8372616018472682 0.15015271566842267
+0.24476987448266652 0.8338712185576426 0.24476987448266652 0.8338712185576426 0.1521016488657033
+0.2468619247010663 0.830480835272096 0.2468619247010663 0.8304808352720962 0.15389425782599167
+0.2489539749244466 0.8270904519964942 0.24895397492444662 0.8270904519964942 0.15548839015081903
+0.2510460251453667 0.8237000687279501 0.2510460251453667 0.8237000687279501 0.1568530179427797
+0.2531380753641831 0.820309685483742 0.25313807536418315 0.8203096854837418 0.15796857336016998
+0.2552301255683103 0.8169193022052703 0.2552301255683103 0.8169193022052702 0.15882698201060227
+0.2573221757907733 0.8135289189435091 0.2573221757907733 0.8135289189435092 0.15943143338203258
+0.2594142260153158 0.8101385356723908 0.2594142260153158 0.8101385356723908 0.15979590681146158
+0.2615062762728218 0.8067481524303846 0.2615062762728218 0.8067481524303846 0.15994445596186882
+0.2635983309078861 0.803357774478985 0.26359833090788604 0.803357774478985 0.1599102499991298
+0.2656908926380879 0.7999675224024693 0.2656908926380879 0.7999675224024693 0.15973496048224523
+0.2677845951766014 0.7965782654643693 0.2677845951766014 0.7965782654643693 0.1594673825717163
+0.26987898399789195 0.7931928824755207 0.26987898399789195 0.7931928824755207 0.15916130357446992
+0.2719717578586299 0.7898166532749563 0.27197175785862987 0.7898166532749563 0.15887260654544855
+0.2740598437452015 0.7864564672495029 0.2740598437452015 0.7864564672495029 0.15865676505828394
+0.2970343321379631 0.7533295701286793 0.2970343321379631 0.7533295701286793 0.17055324926128504
+0.298797306051212 0.7499563399822143 0.29879730605121196 0.7499563399822143 0.17222545542344306
+0.3005594115711146 0.7465605497313486 0.3005594115711146 0.7465605497313486 0.17401972031517307
+0.30231796270433847 0.7431798865204525 0.30231796270433847 0.7431798865204525 0.17589764943014266
+0.27614316011761386 0.7831207784361495 0.27614316011761386 0.7831207784361495 0.15856951010674333
+0.278225015070166 0.7798193643953194 0.278225015070166 0.7798193643953194 0.15866363638448713
+0.28030564147545395 0.7765713134731825 0.28030564147545395 0.7765713134731825 0.15898234506437306
+0.29166200954445554 0.7568882492102292 0.29166200954445554 0.7568882492102292 0.1643461067242309
+0.2823677726174999 0.7734633553893158 0.28236777261749996 0.7734633553893158 0.15956568142504104
+0.2842108131327695 0.7710603125142301 0.2842108131327695 0.7710603125142301 0.16047055307038546
+0.28414122463681407 0.7685643789221486 0.28414122463681407 0.7685643789221486 0.15909066507683048
+0.2898381146716225 0.7601240236679323 0.2898381146716225 0.7601240236679323 0.16293959523910104
+0.28791619330295387 0.7632677377169255 0.28791619330295387 0.7632677377169256 0.1615811561679511
+0.28598110327599696 0.7663122766570921 0.28598110327599696 0.7663122766570921 0.1603620434175266
+0.2952763029504164 0.756645767786008 0.2952763029504164 0.756645767786008 0.16902827582209448
+0.3075917748520838 0.7331255646752846 0.3075917748520838 0.7331255646752846 0.18166515846916445
+0.3147355446395827 0.7199567006764109 0.3147355446395827 0.7199567006764109 0.18867309199880336
+0.3128152966703824 0.7231406122080744 0.3128152966703824 0.7231406122080744 0.18687117646107707
+0.30933649424279647 0.729787421091609 0.30933649424279647 0.729787421091609 0.18349449132995918
+0.3110759304450864 0.7264341913703655 0.31107593044508647 0.7264341913703655 0.18522538407927092
+0.3059365331696507 0.7430503088947534 0.3059365331696507 0.7430503088947534 0.18072601670389019
+0.3076711407222282 0.7396939684968319 0.3076711407222282 0.7396939684968319 0.1826347092322129
+0.30940493461579954 0.7363517422777215 0.3094049346157996 0.7363517422777215 0.18455182283835517
+0.3253228327934574 0.7063184092600675 0.3253228327934574 0.7063184092600675 0.19892017745648682
+0.3235549370404431 0.7096868462622951 0.3235549370404431 0.7096868462622951 0.197739118297885
+0.321794959138912 0.7130628625809031 0.321794959138912 0.7130628625809031 0.19647383851295921
+0.3200333406005051 0.7164319847872959 0.3200333406005051 0.7164319847872959 0.1950959318454002
+0.31825337329247244 0.7197871167887974 0.31825337329247244 0.7197871167887974 0.1935738261272981
+0.3341954835941725 0.6959407948818517 0.3341954835941725 0.6959407948818517 0.20818382278617617
+0.3324685489258002 0.6992645153744582 0.3324685489258002 0.6992645153744582 0.20702924739403436
+0.3307344274314206 0.7026086575664237 0.3307344274314206 0.7026086575664237 0.20584968023441144
+0.32899392356145474 0.705971215344392 0.32899392356145474 0.705971215344392 0.2046219982034574
+0.34102883193829625 0.6890429174632644 0.3410288319382962 0.6890429174632643 0.21702356178073567
+0.3393506129206881 0.6922644350724044 0.3393506129206881 0.6922644350724044 0.21564621183015173
+0.3376992677390216 0.6955150420125397 0.3376992677390216 0.6955150420125397 0.21437330792242967
+0.3517078265887507 0.6695281756474587 0.3517078265887507 0.6695281756474588 0.2287555993474856
+0.34995736427406354 0.6728520327075652 0.3499573642740636 0.6728520327075652 0.22649339117600584
+0.3482933051768959 0.6763148729074353 0.3482933051768959 0.6763148729074353 0.2247138548483136
+0.3465957423994001 0.6798212582269901 0.3465957423994001 0.6798212582269901 0.22304610479196718
+0.3429274892113784 0.6862200688119109 0.34292748921137844 0.6862200688119109 0.21914310601862905
+0.34487703423610944 0.6832929947025486 0.34487703423610944 0.6832929947025486 0.22144425915651667
+0.37354552494443155 0.6409040391305069 0.37354552494443155 0.6409040391305069 0.27993095682243746
+0.36302307002107737 0.6587453863536572 0.3630230700210774 0.6587453863536572 0.2524037178068515
+0.35851096743896216 0.6622717214643592 0.35851096743896216 0.6622717214643591 0.242004556160522
+0.35408231528339235 0.6664617433736382 0.35408231528339235 0.6664617433736382 0.23291022359375438
+0.3571357458518548 0.6650763929796826 0.3571357458518548 0.6650763929796826 0.239748688350459
+0.35468937403556255 0.6699323014331152 0.35468937403556255 0.6699323014331152 0.236102709087696
+0.36161952164830424 0.6620460834140126 0.36161952164830424 0.6620460834140126 0.24991314355423375
+0.37196886894922315 0.6443743975388768 0.37196886894922315 0.6443743975388768 0.27489522639129627
+0.370395113037677 0.6478977706716977 0.370395113037677 0.6478977706716976 0.2703523621080914
+0.36886495040205797 0.6513727421898294 0.36886495040205797 0.6513727421898294 0.2663780942435409
+0.3674491422035231 0.654863488649256 0.3674491422035231 0.654863488649256 0.26309760450669667
+0.3661811258510789 0.6582907211201935 0.3661811258510789 0.6582907211201935 0.2605529936904505
+0.37860362681433546 0.6367626999784994 0.3786036268143355 0.6367626999784993 0.2961588052742245
+0.3770966719001567 0.640197784432629 0.3770966719001567 0.6401977844326289 0.29043229495875283
+0.38199771957932915 0.6359880822911973 0.38199771957932915 0.6359880822911973 0.3066433434393498
+0.38532446426094663 0.6351502033280002 0.38532446426094663 0.6351502033280002 0.31699625858670016
+0.38864437287528236 0.5289266867766942 0.38864437287528236 0.5289266867766943 0.29142231652659895
+0.38672297175496617 0.5320673412122314 0.3867229717549661 0.5320673412122314 0.2753767509250063
+0.38472300562864126 0.5366852437153911 0.38472300562864126 0.5366852437153912 0.25713535441989205
+0.38675050584033654 0.5346452134558137 0.38675050584033654 0.5346452134558137 0.26113540363880716
+0.3835513032044995 0.5415376108847099 0.3835513032044995 0.5415376108847099 0.24556385443906772
+0.3856442975845458 0.5390893483006695 0.3856442975845458 0.5390893483006695 0.24792607933724095
+0.38218781104727706 0.5441609413986583 0.382187811047277 0.5441609413986583 0.2431566493445679
+0.38155294622870295 0.5467009003018084 0.38155294622870295 0.5467009003018084 0.242395277309622
+0.38484684571089345 0.5432980360329018 0.38484684571089345 0.5432980360329018 0.24369073728821156
+0.3799703202161549 0.5516334715601794 0.3799703202161549 0.5516334715601793 0.24460757860734708
+0.3826521096121147 0.5489269362539888 0.3826521096121147 0.5489269362539888 0.24612854377547047
+0.3805936732298279 0.5549020340300539 0.3805936732298279 0.5549020340300538 0.2529621949762308
+0.3782188831561206 0.557909511758697 0.3782188831561206 0.5579095117586971 0.25144203258399417
+0.3775937224616627 0.5612622319010464 0.3775937224616627 0.5612622319010464 0.2568414033769988
+0.38146034907046167 0.5575025577999534 0.38146034907046167 0.5575025577999534 0.26377288979438507
+0.37871539109126645 0.5639746351019229 0.37871539109126645 0.5639746351019229 0.26949876683867763
+0.37618827858589154 0.5670977584226247 0.3761882785858916 0.5670977584226247 0.26464463745036415
+0.3757881450756536 0.5776881959055514 0.3757881450756536 0.5776881959055514 0.28538705898566397
+0.37740787634329365 0.5708542707230954 0.3774078763432937 0.5708542707230954 0.28036045826704753
+0.37666827527140406 0.5747413349701328 0.37666827527140406 0.5747413349701328 0.28480678588051367
+0.3768836954447419 0.5802085487382891 0.3768836954447419 0.5802085487382892 0.2961778017149716
+0.37604077334450436 0.5862930580067683 0.37604077334450436 0.5862930580067683 0.29927678234204186
+0.3780244972636536 0.583172027012606 0.37802449726365367 0.5831720270126058 0.3073444820100522
+0.3773717888784628 0.5895927398910938 0.37737178887846273 0.5895927398910938 0.30973942398689897
+0.3787602613121526 0.5930376169247756 0.3787602613121526 0.5930376169247756 0.31926549014301825
+0.37683586621356263 0.5963277925739885 0.37683586621356263 0.5963277925739884 0.3095079776703887
+0.3783783853593661 0.5996987807774087 0.3783783853593661 0.5996987807774087 0.3174800447075495
+0.37830073646783824 0.6065431671985972 0.3783007364678382 0.6065431671985974 0.314633019129181
+0.38001463428927273 0.6030339579510898 0.38001463428927273 0.6030339579510898 0.324568568154153
+0.38005851020321374 0.6099671947621504 0.38005851020321374 0.6099671947621504 0.3203475125519153
+0.3799415702787098 0.617591860702308 0.37994157027870973 0.617591860702308 0.3137822500175487
+0.38196077969057546 0.6135189432026514 0.38196077969057546 0.6135189432026514 0.32543356852310806
+0.3825171592803793 0.6204350407218197 0.3825171592803793 0.6204350407218197 0.3208182877408606
+0.38292315121423504 0.6267295754749687 0.38292315121423504 0.6267295754749687 0.316328360802171
+0.38461829643066264 0.6292557441783517 0.38461829643066264 0.6292557441783516 0.31958501678316825
+0.384501314755121 0.6234016943359296 0.384501314755121 0.6234016943359296 0.324881287285238
+0.38656562491417806 0.631988357296564 0.38656562491417806 0.631988357296564 0.32318294668878284
+0.3886153535184576 0.6340722780602924 0.3886153535184576 0.6340722780602924 0.32751496517890905
+0.3931476903094826 0.5299468298754584 0.3931476903094826 0.5299468298754584 0.26868840906515173
+0.3974061897481966 0.5308803526587468 0.3974061897481966 0.5308803526587468 0.24688608444291113
+0.5623618506730635 0.40342950794731197 0.5623618506730635 0.4034295079473119 0.9040946445709073
+0.5656148975623458 0.40235109686727516 0.5656148975623458 0.40235109686727516 0.9191979338169481
+0.5704012903632167 0.40184635061310825 0.5704012903632166 0.40184635061310825 0.9437548302669453
+0.5680621881487734 0.4031400322180895 0.5680621881487734 0.4031400322180895 0.9420508778491674
+0.5747773278756892 0.40148417795550867 0.5747773278756892 0.40148417795550867 0.9588014062520475
+0.5724094162023343 0.4033649557960611 0.5724094162023343 0.4033649557960611 0.9648251071779409
+0.5799242800451527 0.4011368996336352 0.5799242800451526 0.40113689963363525 0.9675737019766196
+0.5772229980316579 0.40279550441795353 0.577222998031658 0.4027955044179535 0.9740009139711122
+0.5819652650334888 0.4025428467667402 0.5819652650334888 0.4025428467667401 0.9767516488714783
+0.5906150981218645 0.4009431240823091 0.5906150981218645 0.4009431240823091 0.9612563889786169
+0.5875058877325782 0.40180832672979777 0.5875058877325782 0.40180832672979777 0.9697575361795864
+0.584331878145802 0.4023813412881177 0.584331878145802 0.4023813412881177 0.9754450455642437
+0.5929126108420968 0.40392191800399696 0.5929126108420969 0.4039219180039969 0.9635980928794651
+0.5958278100954042 0.40237816801510384 0.5958278100954042 0.40237816801510384 0.9499891712250463
+0.5622184194215863 0.4081472792575292 0.5622184194215863 0.4081472792575292 0.949760982525225
+0.5620056758571143 0.4126775311230546 0.5620056758571143 0.41267753112305455 0.9958137913010816
+0.5976552218570901 0.39948879996162784 0.59765522185709 0.39948879996162784 0.9388285676442631
+0.6011923506149163 0.39727596389375375 0.6011923506149163 0.39727596389375375 0.9231698009670272
+0.5983108023094946 0.40275171519156305 0.5983108023094946 0.40275171519156305 0.9410499626325028
+0.6039014261367424 0.3984802682416412 0.6039014261367424 0.3984802682416412 0.9142029271736611
+0.6066132190520591 0.39787802440937936 0.6066132190520591 0.39787802440937936 0.9026678703729836
+0.6098363880075489 0.39744364440987434 0.6098363880075489 0.39744364440987434 0.8882131951081139
+0.6131722566589086 0.39723402365216326 0.6131722566589087 0.39723402365216326 0.872348511402249
+0.6165938267939163 0.3970968775634063 0.6165938267939163 0.3970968775634063 0.8551712169305512
+0.642254719105552 0.38510500636819867 0.642254719105552 0.38510500636819867 0.7394454067972657
+0.6353554674558805 0.38557073904367184 0.6353554674558805 0.38557073904367184 0.7743018158411309
+0.6387767259402412 0.3852828977766477 0.6387767259402412 0.38528289777664776 0.7572582975814343
+0.6319183459431366 0.386058465393475 0.6319183459431366 0.38605846539347505 0.790894959302843
+0.6286717306794019 0.38638533715210716 0.628671730679402 0.38638533715210716 0.8063394387912285
+0.6252961267252553 0.3865908900811981 0.6252961267252553 0.3865908900811981 0.8219399712653871
+0.6234904800641234 0.38995041465320573 0.6234904800641234 0.38995041465320573 0.827972050808823
+0.6217330757947953 0.39347845061080905 0.6217330757947953 0.39347845061080905 0.8330189280462932
+0.6200102506461849 0.39696179374492047 0.6200102506461849 0.3969617937449205 0.8372011886437436
+0.6821096601875609 0.3405906591233157 0.682109660187561 0.3405906591233157 0.6338211348995361
+0.6759274841608863 0.3440238393551155 0.6759274841608863 0.34402383935511555 0.6466091323741788
+0.6702701355810854 0.3470422458259523 0.6702701355810854 0.3470422458259523 0.6605080277750445
+0.664642766240398 0.35001805098631633 0.664642766240398 0.3500180509863164 0.6762523586445183
+0.6626876439272905 0.3532203410718535 0.6626876439272905 0.3532203410718535 0.6811546426119258
+0.6606639652561713 0.35638202345742465 0.6606639652561713 0.35638202345742465 0.6866277944744229
+0.6682166964676061 0.35023089988016626 0.6682166964676061 0.35023089988016626 0.6646021936555409
+0.65991146547253 0.3627544688643279 0.65991146547253 0.3627544688643279 0.684957609136386
+0.6619583227897469 0.35966256505718547 0.6619583227897469 0.35966256505718547 0.6794974915234345
+0.6738228574352655 0.3472627056350234 0.6738228574352655 0.3472627056350234 0.6496142813544221
+0.6795837869096107 0.3442702931381168 0.6795837869096107 0.3442702931381168 0.6362267068297528
+0.6879679094439921 0.3396740494989885 0.6879679094439921 0.3396740494989885 0.6202188032079273
+0.6913478433239555 0.3399001586346484 0.6913478433239555 0.3399001586346484 0.6117259705997719
+0.6982749381163398 0.3404250953269871 0.6982749381163398 0.3404250953269871 0.5944232862972579
+0.6947958213257094 0.3401591789702178 0.6947958213257094 0.3401591789702178 0.6030840577826407
+0.6856300443101133 0.3420943728344262 0.6856300443101134 0.3420943728344262 0.6227577973639357
+0.6579968929373926 0.36586866810872426 0.6579968929373926 0.36586866810872426 0.6899949074236728
+0.656138725205764 0.3690978578426489 0.6561387252057641 0.3690978578426489 0.6947178610878212
+0.6542404100415001 0.37228027571882216 0.6542404100415001 0.37228027571882216 0.6996263947987983
+0.6521767453445476 0.37544194487531474 0.6521767453445476 0.37544194487531474 0.7051460614963098
+0.650040562649199 0.3786767927391881 0.650040562649199 0.3786767927391881 0.710706993529091
+0.6479130978505938 0.3818488660351062 0.6479130978505938 0.3818488660351062 0.7160143521533894
+0.6458029720839041 0.38498811489490453 0.6458029720839041 0.38498811489490453 0.7209060800839202
+0.7078382175252114 0.33811544065762383 0.7078382175252114 0.33811544065762383 0.5769066209018455
+0.7018351559862731 0.34070138426770963 0.7018351559862731 0.34070138426770963 0.5856293785458244
+0.7054319950977391 0.3410227301693907 0.7054319950977391 0.3410227301693907 0.5767297691331831
+0.7432645612174613 0.3076292883713741 0.7432645612174613 0.3076292883713741 0.531253653780154
+0.7114965546290136 0.3385123930044662 0.7114965546290136 0.3385123930044662 0.568037274327872
+0.713974814224639 0.33559640206865443 0.713974814224639 0.33559640206865443 0.5680599266113443
+0.7165000330111275 0.3326373083510515 0.7165000330111275 0.3326373083510515 0.5677011351126419
+0.7349926178091605 0.31263085333638485 0.7349926178091605 0.31263085333638485 0.5482519394010922
+0.7325938400329491 0.3153228863356517 0.7325938400329491 0.3153228863356517 0.552129786972809
+0.7191774421786044 0.32957682594552784 0.7191774421786042 0.32957682594552784 0.5667342598499249
+0.7296013234032028 0.31782744108273564 0.7296013234032027 0.3178274410827356 0.5571350683682258
+0.7277029676513271 0.32104481320513245 0.727702967651327 0.32104481320513245 0.5584704982928984
+0.7218829357021943 0.326210502336379 0.7218829357021944 0.326210502336379 0.5655935522037936
+0.72491289816149 0.3240345273278058 0.72491289816149 0.3240345273278058 0.5614800533328711
+0.7407975990060574 0.31050790660986854 0.7407975990060574 0.31050790660986854 0.5357210353113354
+0.7383442599806629 0.3133480659368997 0.7383442599806629 0.3133480659368997 0.5399035237681074
+0.749297571580521 0.30553358847422435 0.749297571580521 0.30553358847422435 0.517958173304275
+0.7467741776290243 0.3083832335622408 0.7467741776290243 0.3083832335622408 0.522564505138951
+0.7518389676928754 0.3027320027475142 0.7518389676928754 0.3027320027475142 0.5132815160807082
+0.7543817213636864 0.3000137252451606 0.7543817213636864 0.3000137252451606 0.5086781541297453
+0.7569221160982424 0.29735233240013775 0.7569221160982424 0.29735233240013775 0.5042508305816052
+0.7594332048801039 0.2946899682350899 0.7594332048801039 0.2946899682350899 0.5001608991311305
+0.7619290654101182 0.2919850809726778 0.7619290654101182 0.2919850809726778 0.49648050950326633
+0.764429869922829 0.2892308988428612 0.764429869922829 0.2892308988428612 0.4932339618779476
+0.7669453704803281 0.2864665292979157 0.7669453704803281 0.28646652929791566 0.4904154578302597
+0.7698482269741131 0.2842711109178328 0.769848226974113 0.2842711109178328 0.4871527602571291
+0.7730376294328684 0.2823981907516609 0.7730376294328684 0.2823981907516609 0.4837065075146711
+0.7763312869143854 0.2804154115392493 0.7763312869143854 0.28041541153924937 0.48065178298924943
+0.7796946308568414 0.27828173824390434 0.7796946308568414 0.2782817382439044 0.47807267892187294
+0.7830612697655667 0.2761682445813266 0.7830612697655667 0.27616824458132655 0.47585083168141845
+0.7864289401752501 0.2740683499299927 0.7864289401752501 0.2740683499299927 0.47389006292036256
+0.7898045981827929 0.2719720039601079 0.7898045981827929 0.2719720039601079 0.47208591736618283
+0.7931885553115544 0.26987653772828063 0.7931885553115544 0.26987653772828063 0.47032951394766015
+0.7965772223428296 0.2677827438366895 0.7965772223428296 0.2677827438366895 0.46851529253846497
+0.7999673917447021 0.2656903863038419 0.7999673917447021 0.26569038630384195 0.46654741699140617
+0.803357768880201 0.263598326359801 0.803357768880201 0.263598326359801 0.4643431969741921
+0.8067481521753702 0.261506276150596 0.8067481521753702 0.261506276150596 0.4618358779515845
+0.8101385354705393 0.2594142259413911 0.8101385354705393 0.259414225941391 0.45897945095717724
+0.8135289187657083 0.257322175732186 0.8135289187657083 0.257322175732186 0.4557512968650507
+0.8169193020608772 0.25523012552298097 0.8169193020608772 0.25523012552298097 0.4521532501488363
+0.8203096853560461 0.25313807531377586 0.820309685356046 0.2531380753137759 0.44821159824001766
+0.823700068651215 0.2510460251045708 0.823700068651215 0.2510460251045708 0.44397604012786523
+0.8270904519463841 0.24895397489536567 0.8270904519463841 0.24895397489536567 0.43951761021960056
+0.8304808352415529 0.24686192468616056 0.8304808352415529 0.24686192468616056 0.4349255786554695
+0.8338712185367219 0.24476987447695547 0.8338712185367217 0.2447698744769555 0.43030335683102156
+0.8372616018318908 0.24267782426775034 0.8372616018318908 0.24267782426775034 0.42576347461976244
+0.8406519851270599 0.24058577405854523 0.8406519851270599 0.24058577405854523 0.42142175843310353
+0.8440423684222287 0.2384937238493401 0.8440423684222287 0.2384937238493401 0.4173909262880057
+0.8474327517173976 0.23640167364013503 0.8474327517173975 0.23640167364013506 0.4137739191409234
+0.8508231350125666 0.2343096234309299 0.8508231350125666 0.2343096234309299 0.4106573892837588
+0.8542135183077356 0.2322175732217248 0.8542135183077356 0.2322175732217248 0.4081058410628908
+0.8576039016029045 0.23012552301251968 0.8576039016029045 0.23012552301251968 0.40615693846040574
+0.8609942848980734 0.2280334728033146 0.8609942848980733 0.22803347280331462 0.40481843660712075
+0.8643846681932423 0.22594142259410946 0.8643846681932423 0.22594142259410946 0.4040670551520926
+0.8677750514884114 0.22384937238490435 0.8677750514884114 0.22384937238490435 0.4038494083225605
+0.8711654347835802 0.2217573221756992 0.8711654347835802 0.2217573221756992 0.40408487751318595
+0.8745558180787492 0.21966527196649416 0.874555818078749 0.21966527196649419 0.40467010450089574
+0.8779462013739181 0.21757322175728902 0.8779462013739181 0.21757322175728902 0.40548463763679
+0.8813365846690872 0.2154811715480839 0.8813365846690872 0.2154811715480839 0.4063972012924903
+0.884726967964256 0.21338912133887877 0.884726967964256 0.21338912133887877 0.40727207873268384
+0.8881173512594249 0.2112970711296737 0.8881173512594248 0.2112970711296737 0.40797518010645245
+0.8915077345545939 0.20920502092046855 0.8915077345545939 0.20920502092046855 0.40837948141826175
+0.8948981178497628 0.20711297071126344 0.8948981178497629 0.20711297071126342 0.4083696395753376
+0.8982885011449318 0.20502092050205833 0.8982885011449318 0.20502092050205833 0.4078456931378644
+0.9016788844401007 0.20292887029285323 0.9016788844401006 0.20292887029285325 0.4067258381282864
+0.9050692677352696 0.20083682008364812 0.9050692677352696 0.20083682008364812 0.4049483212983446
+0.9084596510304386 0.198744769874443 0.9084596510304387 0.198744769874443 0.4024725229859238
+0.9118500343256075 0.1966527196652379 0.9118500343256075 0.1966527196652379 0.39927931387127696
+0.9152404176207765 0.1945606694560328 0.9152404176207763 0.1945606694560328 0.3953707706117982
+0.9186308009159454 0.19246861924682768 0.9186308009159454 0.19246861924682768 0.39076932970694184
+0.9220211842111143 0.19037656903762257 0.9220211842111145 0.19037656903762257 0.38551645100445514
+0.9254115675062833 0.18828451882841746 0.9254115675062833 0.18828451882841746 0.3796708548213314
+0.9288019508014522 0.18619246861921235 0.9288019508014521 0.18619246861921235 0.3733063916142137
+0.9321923340966212 0.18410041841000724 0.9321923340966212 0.18410041841000724 0.36650960173816266
+0.9355827173917901 0.18200836820080213 0.9355827173917902 0.18200836820080213 0.3593770258525324
+0.938973100686959 0.17991631799159702 0.938973100686959 0.17991631799159702 0.35201233431576323
+0.942363483982128 0.1778242677823919 0.9423634839821279 0.1778242677823919 0.34452335627301983
+0.9457538672772969 0.1757322175731868 0.9457538672772969 0.1757322175731868 0.33701910512508476
+0.9491442505724659 0.1736401673639817 0.949144250572466 0.1736401673639817 0.32960691463298414
+0.9525346338676348 0.17154811715477658 0.9525346338676348 0.17154811715477658 0.32238981567753217
+0.9559250171628038 0.16945606694557147 0.9559250171628036 0.16945606694557147 0.31546429291307354
+0.9593154004579727 0.16736401673636636 0.9593154004579727 0.16736401673636636 0.3089185575597822
+0.9627057837531416 0.16527196652716125 0.9627057837531418 0.16527196652716125 0.3028314518037727
+0.9660961670483106 0.16317991631795614 0.9660961670483106 0.16317991631795614 0.2972720578518209
+0.9694865503434795 0.16108786610875103 0.9694865503434794 0.16108786610875103 0.2923000202756449
+0.9728769336386485 0.15899581589954592 0.9728769336386485 0.15899581589954592 0.28796650852857164
+0.9762673169338174 0.1569037656903408 0.9762673169338175 0.1569037656903408 0.2843156574954116
+0.9796577002289864 0.1548117154811357 0.9796577002289864 0.1548117154811357 0.2813862420924982
+0.9830480835241553 0.1527196652719306 0.9830480835241552 0.1527196652719306 0.2792132836388747
+0.9864384668193242 0.15062761506272548 0.9864384668193242 0.15062761506272548 0.2778292659631063
+0.9898288501144932 0.14853556485352037 0.9898288501144933 0.14853556485352037 0.27726466824897794
+0.9932192334096621 0.14644351464431526 0.9932192334096621 0.14644351464431526 0.277547602192402
+0.15062761506276146 0.9932192334096621 0.15062761506276146 0.9932192334096621 0.12195065665701425
+0.1527196652719665 0.9898288501144932 0.15271966527196648 0.9898288501144933 0.12455503968935765
+0.15481171548117154 0.9864384668193242 0.15481171548117154 0.9864384668193242 0.12748296991004568
+0.1569037656903766 0.9830480835241553 0.1569037656903766 0.9830480835241552 0.1306760349927283
+0.15899581589958162 0.9796577002289864 0.15899581589958164 0.9796577002289864 0.1340713276776959
+0.16108786610878667 0.9762673169338175 0.16108786610878667 0.9762673169338175 0.13760331440202614
+0.16317991631799175 0.9728769336386486 0.16317991631799175 0.9728769336386486 0.14120548032802002
+0.16527196652719683 0.9694865503434796 0.16527196652719686 0.9694865503434796 0.14481173325089478
+0.16736401673640167 0.9660961670483109 0.16736401673640167 0.9660961670483109 0.1483575834919542
+0.16945606694560664 0.9627057837531421 0.16945606694560664 0.9627057837531421 0.15178113509908364
+0.17154811715481155 0.959315400457973 0.17154811715481155 0.959315400457973 0.155023929237754
+0.17364016736401627 0.955925017162804 0.17364016736401625 0.9559250171628041 0.15803167814670915
+0.1757322175732213 0.9525346338676349 0.1757322175732213 0.9525346338676349 0.16075492140024292
+0.1778242677824263 0.949144250572466 0.1778242677824263 0.949144250572466 0.1631496282429836
+0.1799163179916313 0.9457538672772969 0.1799163179916313 0.9457538672772969 0.16517776208688348
+0.18200836820083652 0.9423634839821279 0.18200836820083652 0.9423634839821279 0.16680781665440647
+0.18410041841004188 0.9389731006869592 0.18410041841004188 0.9389731006869592 0.16801532790798193
+0.18619246861924754 0.9355827173917903 0.18619246861924754 0.9355827173917904 0.1687833616689922
+0.18828451882845335 0.9321923340966215 0.18828451882845335 0.9321923340966215 0.16910297335287552
+0.19037656903765943 0.9288019508014528 0.19037656903765943 0.9288019508014528 0.1689736330753635
+0.19246861924686573 0.9254115675062851 0.19246861924686573 0.9254115675062851 0.16840360599188411
+0.1945606694560722 0.9220211842111178 0.1945606694560722 0.9220211842111178 0.16741027353095136
+0.19665271966527867 0.9186308009159513 0.19665271966527867 0.9186308009159513 0.1660203755352441
+0.19874476987448472 0.9152404176207866 0.19874476987448472 0.9152404176207866 0.1642701455781235
+0.2008368200836889 0.9118500343256225 0.2008368200836889 0.9118500343256225 0.16220530130971203
+0.2029288702928894 0.9084596510304622 0.2029288702928894 0.9084596510304622 0.1598808383352586
+0.20502092050208912 0.9050692677352975 0.20502092050208912 0.9050692677352975 0.1573605602590127
+0.20711297071128423 0.9016788844401321 0.20711297071128423 0.9016788844401321 0.15471626086473847
+0.20920502092048257 0.8982885011449664 0.20920502092048257 0.8982885011449664 0.15202646079426338
+0.2112970711296901 0.8948981178497988 0.21129707112969012 0.8948981178497988 0.14937459729194555
+0.21338912133891122 0.8915077345546366 0.21338912133891122 0.8915077345546366 0.14684658151506413
+0.21548117154814628 0.8881173512594825 0.2154811715481463 0.8881173512594825 0.1445276853036633
+0.2175732217573906 0.8847269679643494 0.2175732217573906 0.8847269679643494 0.14249880769501921
+0.21966527196663735 0.8813365846692176 0.21966527196663735 0.8813365846692175 0.14083230103075514
+0.22175732217587318 0.8779462013741064 0.2217573221758732 0.8779462013741064 0.13958768961059434
+0.223849372385144 0.874555818079008 0.223849372385144 0.874555818079008 0.1388077507008367
+0.2259414225944485 0.8711654347839204 0.2259414225944485 0.8711654347839204 0.138515493388317
+0.22803347280382166 0.8677750514889331 0.22803347280382166 0.8677750514889331 0.13871251711268962
+0.2301255230132672 0.8643846681940531 0.2301255230132672 0.8643846681940531 0.13937904633343076
+0.23221757322276018 0.8609942848995041 0.23221757322276018 0.8609942848995041 0.1404756615071243
+0.2343096234323699 0.8576039016053532 0.2343096234323699 0.8576039016053532 0.14194646217078133
+0.2364016736411627 0.8542135183113883 0.2364016736411627 0.8542135183113883 0.14372319254664598
+0.2384937238503432 0.850823135017345 0.2384937238503432 0.850823135017345 0.14572978437918035
+0.2405857740587484 0.8474327517234581 0.2405857740587484 0.8474327517234581 0.14788682233201333
+0.24267782426802068 0.8440423684299664 0.24267782426802068 0.8440423684299664 0.1501155697370613
+0.24476987447931808 0.8406519851373497 0.24476987447931808 0.8406519851373497 0.1523413498039151
+0.24686192469321352 0.8372616018467998 0.24686192469321352 0.8372616018467998 0.15449621518347287
+0.24895397490964868 0.8338712185613261 0.24895397490964868 0.8338712185613261 0.15652093494207575
+0.2510460251249648 0.8304808352794617 0.2510460251249648 0.8304808352794616 0.1583663802696804
+0.2531380753393365 0.8270904520100146 0.25313807533933647 0.8270904520100145 0.1599944075302457
+0.2552301255466739 0.8237000687230226 0.25523012554667396 0.8237000687230226 0.16137833166618076
+0.25732217576315924 0.8203096854449151 0.25732217576315924 0.8203096854449151 0.1625030656430461
+0.25941422598087427 0.8169193021623369 0.25941422598087427 0.8169193021623368 0.16336497953635654
+0.26150627621514305 0.8135289188948059 0.26150627621514305 0.8135289188948059 0.1639715119425523
+0.2635983264727714 0.8101385356431335 0.2635983264727714 0.8101385356431335 0.1643405473542167
+0.26569037675544 0.806748152461317 0.26569037675544 0.806748152461317 0.16449955926071824
+0.267782439509387 0.8033577857740465 0.267782439509387 0.8033577857740465 0.1644845351615802
+0.2698752418771353 0.799967736554592 0.2698752418771353 0.799967736554592 0.16433961170836822
+0.27196949169458207 0.7965794972335788 0.27196949169458207 0.7965794972335788 0.16411540536712652
+0.274063972601378 0.7931967978716346 0.274063972601378 0.7931967978716346 0.163865792137286
+0.27615518452670135 0.7898252014690011 0.27615518452670135 0.7898252014690011 0.16364458899415404
+0.2782370325463734 0.786472125914779 0.2782370325463734 0.786472125914779 0.16350208634487443
+0.2988898886055796 0.7564613437590081 0.2988898886055796 0.7564613437590081 0.17374823486861343
+0.30066616108403305 0.7531287728835565 0.30066616108403305 0.7531287728835565 0.1753254164731196
+0.3024415322050807 0.7497705333205361 0.3024415322050807 0.7497705333205361 0.17704467774683594
+0.30419984891449364 0.7464069890609631 0.30419984891449364 0.7464069890609631 0.17885848117913025
+0.28030213938576926 0.7831461414306514 0.28030213938576926 0.7831461414306514 0.1634823582236771
+0.2823386625033021 0.7798565207471059 0.28233866250330214 0.7798565207471059 0.16361597713742448
+0.2843075996338099 0.7766178195021816 0.28430759963380986 0.7766178195021816 0.1638944261204567
+0.29351706490766255 0.7599507570137156 0.29351706490766255 0.7599507570137156 0.16767989662712487
+0.2860594598313337 0.7734414153338758 0.2860594598313337 0.7734414153338758 0.16416754656784668
+0.28741714124764534 0.7698246661118295 0.28741714124764534 0.7698246661118295 0.16392983916520545
+0.2917070272524243 0.7631906906018607 0.2917070272524243 0.7631906906018607 0.16645292467814254
+0.2897711734293195 0.7663512169615337 0.2897711734293195 0.7663512169615337 0.16525753030097404
+0.2971350715162063 0.7597674246750437 0.2971350715162063 0.7597674246750437 0.1723644341224905
+0.3111477494732586 0.7330202635743838 0.3111477494732586 0.7330202635743838 0.1864575397935262
+0.31645810397051694 0.7230855242627802 0.31645810397051694 0.7230855242627802 0.1919081693789533
+0.31464900017113856 0.7263721622189893 0.31464900017113856 0.7263721622189893 0.19011644353733956
+0.3128980633132238 0.729688749111995 0.31289806331322373 0.729688749111995 0.18832102768151684
+0.3078109928041686 0.7462931558302124 0.3078109928041686 0.7462931558302124 0.18368909729182736
+0.3129438108098385 0.7362351769597253 0.3129438108098385 0.7362351769597253 0.1893486215016643
+0.30952333393931863 0.7429235696306162 0.30952333393931863 0.7429235696306162 0.18554204167620855
+0.31122592574571484 0.7395672024165488 0.31122592574571484 0.7395672024165488 0.18742722220969957
+0.32724417976527437 0.7093540638960795 0.32724417976527437 0.7093540638960795 0.20332238797909194
+0.3254772878423709 0.7127611928390606 0.3254772878423709 0.7127611928390606 0.2019227296325268
+0.32367891616580746 0.7161811229963223 0.3236789161658074 0.7161811229963223 0.2003876550437491
+0.3200020493464239 0.7229648145603887 0.3200020493464239 0.7229648145603887 0.196905618626642
+0.32185132653728027 0.7195890489873086 0.32185132653728027 0.7195890489873086 0.19871499866354758
+0.33602779471523414 0.6988318795878077 0.33602779471523414 0.6988318795878077 0.21311214623362526
+0.3343405217368672 0.7021818328385834 0.3343405217368672 0.7021818328385834 0.21182309846437988
+0.33264162230898026 0.7055526518873448 0.33264162230898026 0.7055526518873448 0.2104872742325589
+0.33092968198512923 0.708946354744553 0.33092968198512923 0.708946354744553 0.20908619689629174
+0.34375639320833956 0.6891294742854923 0.34375639320833956 0.6891294742854923 0.2225593496724904
+0.34268294467580096 0.6919280222713148 0.342682944675801 0.6919280222713148 0.22198166192069482
+0.34115845809824136 0.6950244419313628 0.34115845809824136 0.6950244419313628 0.2206845145477955
+0.33955153945484784 0.6983344736845877 0.33955153945484784 0.6983344736845877 0.21934493347548115
+0.3531319144223315 0.6728078067891594 0.3531319144223315 0.6728078067891595 0.23392094006639821
+0.3517494670030468 0.6761077211962312 0.3517494670030468 0.6761077211962312 0.23252404706701643
+0.35016390819131993 0.6796253324072102 0.35016390819131993 0.6796253324072102 0.2309097620899729
+0.3484418879715785 0.6833664438425016 0.3484418879715785 0.6833664438425017 0.22924165629214768
+0.34654449965202233 0.6873304823304742 0.3465444996520223 0.6873304823304743 0.22743034720710403
+0.3755862005009558 0.6436666198004788 0.3755862005009558 0.6436666198004789 0.2852524158453686
+0.36484850194399326 0.6616784850290814 0.36484850194399326 0.6616784850290814 0.25811417571412204
+0.3600680793959859 0.6654394554943226 0.3600680793959859 0.6654394554943225 0.2473515992719362
+0.3577846380728302 0.6685155732620399 0.3577846380728302 0.6685155732620399 0.2430588954653117
+0.3567401758105081 0.6723482080932797 0.35674017581050815 0.6723482080932798 0.2423786503116113
+0.36336547047041534 0.6650686984624208 0.3633654704704154 0.6650686984624209 0.25553709365716243
+0.3740740135840419 0.6471660228403985 0.3740740135840419 0.6471660228403985 0.2805837062379197
+0.37257118998252364 0.6506853513697846 0.37257118998252364 0.6506853513697846 0.27641900722207763
+0.3710892280008269 0.654226016171214 0.3710892280008269 0.654226016171214 0.2727366988707356
+0.3695966956912048 0.6578068377418334 0.36959669569120474 0.6578068377418332 0.2694150712628811
+0.3682068820641362 0.661251036642009 0.3682068820641362 0.661251036642009 0.26666713441399614
+0.3805759871584266 0.6394250780879891 0.3805759871584266 0.6394250780879891 0.30078122655655753
+0.3791353225742109 0.642900578726893 0.3791353225742109 0.642900578726893 0.29545537807790995
+0.38399043520474674 0.6385745848569792 0.38399043520474674 0.6385745848569792 0.3109984835526732
+0.3873797445413433 0.6376338839959595 0.38737974454134333 0.6376338839959595 0.3212257543942762
+0.3900103231660452 0.5335108379073299 0.3900103231660452 0.5335108379073299 0.25786801869254355
+0.3881990451724068 0.5368064531655685 0.38819904517240683 0.5368064531655685 0.2495865022615833
+0.3865928211944727 0.541329139126219 0.3865928211944727 0.541329139126219 0.24418633746195748
+0.38834723514667613 0.5393452468551205 0.38834723514667613 0.5393452468551205 0.24447038114670092
+0.3847360296264082 0.5459961848745389 0.3847360296264082 0.5459961848745389 0.24547360730535298
+0.3873674458536715 0.5436729201352598 0.3873674458536715 0.5436729201352598 0.24557322657142766
+0.38585694250750785 0.5486349307866119 0.38585694250750785 0.548634930786612 0.2535543709416043
+0.38377792180072573 0.5520530666529574 0.38377792180072573 0.5520530666529574 0.2567824316971538
+0.3837011612108066 0.5554833469895312 0.3837011612108066 0.5554833469895312 0.26767676773238985
+0.3809461503922605 0.5606796114519447 0.38094615039226054 0.5606796114519447 0.2713615268418638
+0.3838418773632926 0.55853828476954 0.3838418773632926 0.55853828476954 0.2797438847477423
+0.38210727079427914 0.5642757826494956 0.38210727079427914 0.5642757826494956 0.2898460759583225
+0.37942120556918724 0.5674205854795987 0.37942120556918724 0.5674205854795987 0.2831393275121248
+0.38076980331968663 0.5701350782864771 0.38076980331968663 0.5701350782864771 0.29893165807825106
+0.37864574002920715 0.5773680425654659 0.37864574002920715 0.5773680425654658 0.3019955322793995
+0.3805447833498663 0.5736032205322766 0.3805447833498663 0.5736032205322766 0.30634173316218855
+0.380010194598765 0.5803044839113406 0.380010194598765 0.5803044839113406 0.31576569759083695
+0.37978863822997677 0.5863172202254057 0.3797886382299768 0.5863172202254058 0.3216404156380272
+0.38075888570603234 0.5830784326389316 0.38075888570603234 0.5830784326389316 0.32434769365668814
+0.38071814017350825 0.5899719191007476 0.38071814017350825 0.5899719191007476 0.3295888710160844
+0.38208377839091584 0.5931009026174902 0.38208377839091584 0.5931009026174902 0.33844510092575325
+0.3802433130220182 0.596326217886436 0.3802433130220182 0.596326217886436 0.32783524217327015
+0.38177641604631896 0.5995794160831984 0.381776416046319 0.5995794160831984 0.33521580742881246
+0.3817597157338746 0.6063912699345836 0.3817597157338746 0.6063912699345836 0.33081249633507714
+0.38341759727002694 0.6028733075522309 0.38341759727002694 0.6028733075522309 0.34165627231398926
+0.3835805660270346 0.6097508989845608 0.3835805660270346 0.6097508989845607 0.33608161643149215
+0.3841207211778506 0.6167438125874793 0.3841207211778506 0.6167438125874795 0.3307294777036512
+0.3855175574118009 0.6130371131318523 0.3855175574118009 0.6130371131318523 0.34069830831876097
+0.3860574566314881 0.6198852244015456 0.3860574566314881 0.6198852244015455 0.33437675527754956
+0.38633521978143215 0.6262987876441156 0.3863352197814321 0.6262987876441156 0.3279918283695902
+0.3874037471311219 0.6291060326872175 0.3874037471311219 0.6291060326872175 0.32846165905002317
+0.3880458188852726 0.6231624491057732 0.3880458188852726 0.6231624491057732 0.33736784649273854
+0.38962737125251656 0.630643657782822 0.3896273712525166 0.630643657782822 0.33379347995043346
+0.39062602863585605 0.6367038015069879 0.39062602863585605 0.6367038015069878 0.3310338898153318
+0.3917564893587994 0.6332490012314319 0.3917564893587994 0.6332490012314319 0.33737795261409187
+0.3944852790025311 0.5343527724502805 0.3944852790025311 0.5343527724502805 0.2426878044368863
+0.39877421015018805 0.5350952763818567 0.39877421015018805 0.5350952763818567 0.2346757525072196
+0.5662426528389994 0.40601210752702466 0.5662426528389995 0.40601210752702466 0.957753404103312
+0.5696280789816783 0.40512876855142876 0.5696280789816783 0.4051287685514287 0.9675696790026386
+0.574402896900503 0.40468971871490106 0.574402896900503 0.40468971871490106 0.981050438043528
+0.5720087442760363 0.40600834348510545 0.5720087442760363 0.40600834348510545 0.9841076506804555
+0.579424722916883 0.4046619616777539 0.5794247229168831 0.40466196167775387 0.9883117925136167
+0.5764307245560866 0.4062218249359126 0.5764307245560866 0.4062218249359126 0.9955744635721725
+0.5825512850950421 0.40498741301198393 0.5825512850950422 0.40498741301198393 0.9894300020921972
+0.5807285213062948 0.40707357816377066 0.5807285213062948 0.40707357816377066 1.0013852491306903
+0.5892242846299391 0.40452334123834993 0.589224284629939 0.40452334123834993 0.9761158423679274
+0.5855878697732849 0.4056073068110412 0.5855878697732849 0.40560730681104123 0.9884309744504068
+0.5909401975410102 0.40680896108176207 0.5909401975410101 0.40680896108176207 0.9768467405378466
+0.5963769049923765 0.40561926242138224 0.5963769049923765 0.4056192624213822 0.9529310172642801
+0.5935196812263404 0.4070564498125241 0.5935196812263404 0.4070564498125241 0.9669284391070054
+0.5659407303396996 0.41074300521098545 0.5659407303396996 0.41074300521098545 1.0007541963131787
+0.5655477573373999 0.4152847642526334 0.5655477573373999 0.4152847642526334 1.0435556548825986
+0.6014263342416447 0.40123527845869783 0.6014263342416447 0.4012352784586978 0.9269510646340492
+0.6002377034015964 0.405059575797688 0.6002377034015964 0.405059575797688 0.9343162591255493
+0.6051263190317795 0.4010604580214938 0.6051263190317795 0.4010604580214938 0.9100210566780583
+0.6081987474793491 0.40063937731893634 0.6081987474793492 0.40063937731893634 0.8950904110844952
+0.6115430281217251 0.40036615589306196 0.6115430281217251 0.40036615589306196 0.8780350916281509
+0.6147947705731198 0.4006125397783703 0.6147947705731198 0.40061253977837025 0.8601491038969701
+0.6182275675234274 0.4003907913420357 0.6182275675234274 0.4003907913420357 0.8410180434185763
+0.6335849852458256 0.38852791160647626 0.6335849852458256 0.3885279116064763 0.7788285454587419
+0.6437100039589901 0.3881005184325528 0.6437100039589901 0.3881005184325528 0.7252968181371221
+0.6402361947585467 0.3882078222220629 0.6402361947585468 0.3882078222220629 0.7440030827730268
+0.6368887799094194 0.388366057964522 0.6368887799094195 0.388366057964522 0.7616949439817696
+0.6302687065365631 0.3893093965297803 0.6302687065365631 0.3893093965297803 0.7949215763433896
+0.627027111265545 0.3897268236751277 0.6270271112655451 0.3897268236751277 0.810867451457924
+0.6252185624409192 0.39322768238292083 0.6252185624409191 0.39322768238292083 0.8152838118320016
+0.623470526088278 0.3968234673022029 0.623470526088278 0.3968234673022029 0.8183944118547078
+0.6216347766859522 0.400293688370551 0.6216347766859522 0.40029368837055107 0.8213150822546978
+0.6832353135705297 0.34482235693747537 0.6832353135705297 0.34482235693747537 0.6253677063608231
+0.6773692768074406 0.3475517223856675 0.6773692768074406 0.3475517223856675 0.6386928511901545
+0.6717647593603391 0.35041342879204657 0.6717647593603391 0.35041342879204657 0.6529642430814874
+0.6612027853859642 0.3659296822437518 0.6612027853859642 0.3659296822437517 0.6762166008179512
+0.6662350502995484 0.3535477949555943 0.6662350502995484 0.3535477949555943 0.6687001383346166
+0.6641215196560224 0.3566064109636913 0.6641215196560224 0.3566064109636913 0.6738548483968086
+0.6696677588808078 0.3535124417791588 0.6696677588808077 0.3535124417791588 0.6569181090791538
+0.6631695300883816 0.362920709510822 0.6631695300883816 0.362920709510822 0.6714663591138824
+0.6652523906255462 0.35984869888076226 0.6652523906255462 0.35984869888076226 0.6665552619073195
+0.6752753626265979 0.3507062235596924 0.675275362626598 0.35070622355969233 0.6413549221242864
+0.6809190087805089 0.34795402296137934 0.6809190087805089 0.34795402296137934 0.6276381152597077
+0.6891034563250901 0.3427170000328528 0.6891034563250901 0.3427170000328528 0.6129850750521636
+0.6925408080590517 0.34307337613682254 0.6925408080590517 0.34307337613682254 0.6037054038745082
+0.6994849989059637 0.3436588376906651 0.6994849989059637 0.3436588376906651 0.58550358614014
+0.6959942530365418 0.34337093957828596 0.6959942530365418 0.34337093957828596 0.5945842114894627
+0.6867730387444005 0.3455066052488754 0.6867730387444005 0.3455066052488754 0.6147262848492828
+0.659506605346379 0.3690880016615706 0.6595066053463788 0.3690880016615706 0.679596846661794
+0.6580685681861129 0.37238659189129003 0.6580685681861129 0.37238659189129003 0.6816281587579481
+0.6560544315258521 0.37538799995169053 0.6560544315258521 0.37538799995169053 0.6864825955637821
+0.6537982939181611 0.37863499596340794 0.6537982939181611 0.37863499596340794 0.6919429877670239
+0.6515906155067681 0.3818068470606401 0.651590615506768 0.3818068470606401 0.6970487090071241
+0.6494109993078493 0.3849343356540818 0.6494109993078493 0.3849343356540818 0.7017514994940041
+0.6472526790377627 0.38803637444700984 0.6472526790377627 0.38803637444700984 0.7059614311351815
+0.7090461763123264 0.3414006640242311 0.7090461763123264 0.3414006640242311 0.5677367631984348
+0.7030450424645672 0.3439232761884299 0.7030450424645672 0.3439232761884299 0.5764137089089264
+0.7066172319502192 0.3442701935242594 0.7066172319502192 0.3442701935242594 0.5672514526741353
+0.7442693076223302 0.3112429702431398 0.7442693076223302 0.3112429702431398 0.5269962667262794
+0.7126804031338024 0.3418252554434806 0.7126804031338024 0.3418252554434806 0.5586390548530006
+0.7151737712384886 0.33895611482076343 0.7151737712384886 0.33895611482076343 0.5590121101517821
+0.7177003232861954 0.33605803079978896 0.7177003232861954 0.33605803079978896 0.559038558304244
+0.7202911484441111 0.3331177090637959 0.7202911484441111 0.33311770906379584 0.5585790133324163
+0.7358763869561642 0.31612447879695066 0.7358763869561642 0.31612447879695066 0.5438226567902539
+0.7333261582165581 0.3188412956901902 0.7333261582165581 0.3188412956901902 0.5475711780095359
+0.7229766046549775 0.33013423181618834 0.7229766046549776 0.33013423181618834 0.5574718779726369
+0.7308330258511053 0.32166005840479306 0.7308330258511053 0.32166005840479306 0.5506316568940871
+0.7283460804816743 0.32454953638221185 0.7283460804816743 0.3245495363822118 0.5530579740488965
+0.7256552516084253 0.32729824936952034 0.7256552516084253 0.3272982493695204 0.5556575380364858
+0.7417817869378601 0.31408379664394076 0.7417817869378601 0.31408379664394076 0.5311672207870898
+0.7392943099224367 0.3168902742370859 0.7392943099224367 0.3168902742370859 0.5350457344856525
+0.7528374327668348 0.30632606939731755 0.7528374327668348 0.30632606939731755 0.5092961362183366
+0.747785895634784 0.31199391304462787 0.747785895634784 0.31199391304462787 0.5180340413087653
+0.7503142756474386 0.30914643778000656 0.7503142756474386 0.30914643778000656 0.5137027974501865
+0.755379311909954 0.30353811487175386 0.755379311909954 0.3035381148717539 0.5048715780311249
+0.7579172988852596 0.30079890855867314 0.7579172988852596 0.30079890855867314 0.5005650375682743
+0.7604399921714634 0.29810627201608514 0.7604399921714634 0.29810627201608514 0.4964956098196245
+0.7629627209940325 0.2954305739486746 0.7629627209940325 0.2954305739486746 0.49272527560468066
+0.7654993141495928 0.2927335264196706 0.7654993141495928 0.2927335264196706 0.4893185342061331
+0.7680189749405674 0.2900943000949498 0.7680189749405674 0.2900943000949498 0.4862994108334628
+0.7698958919008063 0.2876006290970322 0.7698958919008063 0.2876006290970322 0.4846266718378248
+0.7729741031124072 0.2866293474779903 0.7729741031124072 0.28662934747799035 0.4804502835009165
+0.7763182695135729 0.2846625280314884 0.776318269513573 0.28466252803148834 0.4769198019636293
+0.7796734660095503 0.2824865694732332 0.7796734660095503 0.2824865694732332 0.4740156270563995
+0.7830641622012242 0.2803434399570226 0.7830641622012243 0.2803434399570226 0.47145061043183084
+0.7864326069382831 0.27825090754384013 0.7864326069382831 0.27825090754384013 0.4691946484830167
+0.7898077172078515 0.27615618462283353 0.7898077172078515 0.27615618462283353 0.4671631945058365
+0.7931897905311577 0.27406128516202893 0.7931897905311577 0.27406128516202893 0.46524621817632045
+0.7965774348372942 0.27196711280070346 0.7965774348372942 0.27196711280070346 0.4633360426931365
+0.7999674277784141 0.26987453489432056 0.7999674277784141 0.26987453489432056 0.4613319818339487
+0.8033577688802006 0.267782426778212 0.8033577688802006 0.267782426778212 0.4591453709262762
+0.8067481521753699 0.26569037656900646 0.8067481521753699 0.26569037656900646 0.456700396317756
+0.8101385354705392 0.26359832635980124 0.8101385354705392 0.26359832635980124 0.4539400435704329
+0.8135289187657082 0.2615062761505962 0.8135289187657083 0.2615062761505962 0.450829506307099
+0.816919302060877 0.25941422594139113 0.816919302060877 0.25941422594139113 0.4473580582031759
+0.820309685356046 0.257322175732186 0.820309685356046 0.257322175732186 0.4435397490796927
+0.823700068651215 0.25523012552298097 0.823700068651215 0.25523012552298097 0.4394130432345294
+0.827090451946384 0.25313807531377586 0.8270904519463841 0.2531380753137759 0.43503939396362806
+0.8304808352415529 0.25104602510457075 0.8304808352415529 0.25104602510457075 0.4305007498379783
+0.8338712185367217 0.24895397489536567 0.8338712185367217 0.24895397489536567 0.4258959980209182
+0.8372616018318908 0.24686192468616053 0.8372616018318908 0.24686192468616053 0.4213363768449954
+0.8406519851270597 0.2447698744769554 0.8406519851270599 0.2447698744769554 0.4169399416101683
+0.8440423684222286 0.2426778242677503 0.8440423684222286 0.2426778242677503 0.4128252477304372
+0.8474327517173975 0.24058577405854525 0.8474327517173975 0.24058577405854528 0.40910452054730134
+0.8508231350125666 0.23849372384934012 0.8508231350125666 0.23849372384934012 0.40587669810272137
+0.8542135183077355 0.23640167364013503 0.8542135183077356 0.23640167364013506 0.40322083802902586
+0.8576039016029045 0.23430962343092987 0.8576039016029045 0.23430962343092987 0.40119044120728203
+0.8609942848980733 0.23221757322172484 0.8609942848980733 0.23221757322172484 0.3998092327048592
+0.8643846681932423 0.23012552301251965 0.8643846681932423 0.23012552301251965 0.39906883727078263
+0.8677750514884113 0.2280334728033145 0.8677750514884114 0.2280334728033145 0.39892859811094955
+0.8711654347835801 0.22594142259410943 0.8711654347835801 0.22594142259410943 0.3993175457063933
+0.874555818078749 0.22384937238490438 0.874555818078749 0.2238493723849044 0.4001382781835896
+0.8779462013739181 0.22175732217569924 0.8779462013739181 0.22175732217569924 0.4012723180093171
+0.881336584669087 0.21966527196649416 0.8813365846690872 0.21966527196649419 0.40258639767295584
+0.884726967964256 0.217573221757289 0.884726967964256 0.217573221757289 0.40393910981414116
+0.8881173512594248 0.2154811715480839 0.8881173512594248 0.2154811715480839 0.4051874203247338
+0.8915077345545939 0.21338912133887877 0.8915077345545939 0.21338912133887877 0.4061926563820846
+0.8948981178497628 0.21129707112967366 0.8948981178497629 0.2112970711296737 0.4068257122677901
+0.8982885011449318 0.20920502092046855 0.8982885011449318 0.20920502092046855 0.40697133784713097
+0.9016788844401007 0.20711297071126344 0.9016788844401006 0.20711297071126342 0.4065314721602001
+0.9050692677352696 0.20502092050205833 0.9050692677352696 0.20502092050205833 0.4054276524627281
+0.9084596510304386 0.20292887029285323 0.9084596510304387 0.20292887029285325 0.4036025693103003
+0.9118500343256075 0.20083682008364812 0.9118500343256075 0.20083682008364812 0.4010208567330414
+0.9152404176207765 0.198744769874443 0.9152404176207763 0.198744769874443 0.39766921000720284
+0.9186308009159454 0.1966527196652379 0.9186308009159454 0.1966527196652379 0.3935559181148149
+0.9220211842111143 0.1945606694560328 0.9220211842111145 0.1945606694560328 0.3887098884331912
+0.9254115675062833 0.19246861924682768 0.9254115675062833 0.19246861924682768 0.383179230823715
+0.9288019508014522 0.19037656903762257 0.9288019508014521 0.19037656903762257 0.3770294592418848
+0.9321923340966212 0.18828451882841746 0.9321923340966212 0.18828451882841746 0.37034136260808964
+0.9355827173917901 0.18619246861921235 0.9355827173917902 0.18619246861921235 0.3632085938063319
+0.938973100686959 0.18410041841000724 0.938973100686959 0.18410041841000724 0.35573502687162906
+0.942363483982128 0.18200836820080213 0.9423634839821279 0.18200836820080213 0.34803193801854665
+0.9457538672772969 0.17991631799159702 0.9457538672772969 0.17991631799159702 0.34021507617928753
+0.9491442505724659 0.1778242677823919 0.949144250572466 0.1778242677823919 0.3324017026517812
+0.9525346338676348 0.1757322175731868 0.9525346338676348 0.1757322175731868 0.32470769592783877
+0.9559250171628038 0.1736401673639817 0.9559250171628036 0.1736401673639817 0.31724483417819865
+0.9593154004579727 0.17154811715477658 0.9593154004579727 0.17154811715477658 0.31011838018992743
+0.9627057837531416 0.16945606694557147 0.9627057837531418 0.16945606694557147 0.3034250965060022
+0.9660961670483106 0.16736401673636636 0.9660961670483106 0.16736401673636636 0.2972518063538461
+0.9694865503434795 0.16527196652716125 0.9694865503434794 0.16527196652716125 0.2916745839034069
+0.9728769336386485 0.16317991631795614 0.9728769336386485 0.16317991631795614 0.28675860364862854
+0.9762673169338174 0.16108786610875103 0.9762673169338175 0.16108786610875103 0.2825586062876428
+0.9796577002289864 0.15899581589954592 0.9796577002289864 0.15899581589954592 0.2791198562786674
+0.9830480835241553 0.1569037656903408 0.9830480835241552 0.1569037656903408 0.2764793884070724
+0.9864384668193242 0.1548117154811357 0.9864384668193242 0.1548117154811357 0.27466728406737545
+0.9898288501144932 0.1527196652719306 0.9898288501144933 0.1527196652719306 0.2737076981318441
+0.9932192334096621 0.15062761506272548 0.9932192334096621 0.15062761506272548 0.2736193842214716
+0.15481171548117154 0.9932192334096621 0.15481171548117154 0.9932192334096621 0.12525997401130198
+0.15690376569037656 0.9898288501144932 0.15690376569037656 0.9898288501144933 0.12790383190867516
+0.15899581589958162 0.9864384668193242 0.15899581589958164 0.9864384668193242 0.1308708171714599
+0.16108786610878664 0.9830480835241553 0.16108786610878664 0.9830480835241552 0.13410151068306828
+0.16317991631799167 0.9796577002289864 0.16317991631799167 0.9796577002289864 0.13753131760503765
+0.1652719665271967 0.9762673169338175 0.1652719665271967 0.9762673169338175 0.14109251067532505
+0.1673640167364017 0.9728769336386488 0.1673640167364017 0.9728769336386488 0.14471607032553302
+0.16945606694560666 0.9694865503434796 0.16945606694560666 0.9694865503434796 0.14833328357898268
+0.17154811715481155 0.9660961670483106 0.17154811715481155 0.9660961670483106 0.1518771046548977
+0.1736401673640165 0.9627057837531418 0.17364016736401647 0.9627057837531418 0.15528330440884283
+0.17573221757322147 0.9593154004579728 0.17573221757322147 0.9593154004579728 0.15849144600933884
+0.17782426778242644 0.9559250171628038 0.17782426778242644 0.9559250171628036 0.1614457249521423
+0.17991631799163152 0.9525346338676347 0.17991631799163152 0.9525346338676347 0.1640957067819889
+0.18200836820083666 0.9491442505724658 0.18200836820083666 0.9491442505724658 0.16639698884173929
+0.18410041841004188 0.9457538672772969 0.18410041841004188 0.9457538672772969 0.16831180497268464
+0.18619246861924724 0.942363483982128 0.18619246861924724 0.9423634839821279 0.16980958537183624
+0.18828451882845273 0.9389731006869592 0.18828451882845273 0.9389731006869592 0.17086747812879646
+0.19037656903765834 0.9355827173917906 0.19037656903765834 0.9355827173917906 0.17147083424882736
+0.19246861924686412 0.9321923340966219 0.19246861924686412 0.9321923340966219 0.17161365389951252
+0.19456066945607006 0.928801950801454 0.19456066945607006 0.9288019508014539 0.17129898772302712
+0.19665271966527587 0.9254115675062865 0.19665271966527587 0.9254115675062865 0.17053928275911667
+0.19874476987448134 0.9220211842111201 0.19874476987448134 0.9220211842111201 0.16935665717212314
+0.20083682008368575 0.9186308009159538 0.20083682008368572 0.918630800915954 0.16778308086545837
+0.20292887029288814 0.9152404176207892 0.20292887029288817 0.9152404176207892 0.16586042951308635
+0.2050209205020899 0.9118500343256225 0.2050209205020899 0.9118500343256225 0.16364036702748416
+0.2071129707112891 0.9084596510304555 0.2071129707112891 0.9084596510304553 0.16118399598507935
+0.20920502092048962 0.9050692677352875 0.20920502092048962 0.9050692677352875 0.15856119801372723
+0.21129707112969479 0.9016788844401183 0.21129707112969479 0.9016788844401183 0.15584956935111358
+0.21338912133890775 0.8982885011449526 0.21338912133890772 0.8982885011449525 0.15313284611990685
+0.21548117154812851 0.8948981178497905 0.21548117154812854 0.8948981178497905 0.15049871808507678
+0.21757322175735724 0.8915077345546393 0.21757322175735724 0.8915077345546393 0.14803596046293563
+0.21966527196659227 0.8881173512594925 0.21966527196659227 0.8881173512594925 0.1458308827492941
+0.2217573221758191 0.8847269679643531 0.2217573221758191 0.8847269679643531 0.14396320790183237
+0.22384937238506733 0.8813365846692279 0.22384937238506733 0.8813365846692279 0.14250164655338757
+0.22594142259432246 0.877946201374099 0.22594142259432246 0.877946201374099 0.14149958911851565
+0.22803347280361463 0.8745558180790235 0.22803347280361463 0.8745558180790235 0.14099145188113452
+0.23012552301294087 0.8711654347840058 0.23012552301294087 0.8711654347840058 0.14099022341566447
+0.23221757322228295 0.8677750514891596 0.23221757322228295 0.8677750514891596 0.14148662975954188
+0.2343096234315509 0.8643846681943822 0.2343096234315509 0.8643846681943822 0.14245008551035873
+0.23640167364062228 0.8609942848999449 0.23640167364062228 0.8609942848999449 0.14383129276663345
+0.23849372384965148 0.8576039016053065 0.23849372384965148 0.8576039016053066 0.1455660859850552
+0.2405857740585996 0.8542135183107584 0.24058577405859963 0.8542135183107584 0.14757997438026257
+0.2426778242679016 0.8508231350164315 0.2426778242679016 0.8508231350164316 0.14979282808038488
+0.24476987447790266 0.8474327517224741 0.2447698744779027 0.8474327517224741 0.15212326015534053
+0.24686192468935134 0.8440423684293642 0.24686192468935134 0.8440423684293642 0.1544924161313956
+0.24895397490233326 0.8406519851386394 0.24895397490233326 0.8406519851386394 0.15682704044316406
+0.2510460251147271 0.8372616018500407 0.2510460251147271 0.8372616018500407 0.1590618111238905
+0.25313807532687627 0.8338712185679602 0.2531380753268762 0.8338712185679603 0.1611410089449351
+0.25523012553543134 0.8304808352771302 0.2552301255354314 0.8304808352771303 0.1630196203512093
+0.257322175748655 0.8270904519907144 0.257322175748655 0.8270904519907144 0.16466397720354722
+0.2594142259626117 0.8237000687021748 0.2594142259626117 0.8237000687021748 0.16605202268908384
+0.26150627618488037 0.8203096854214332 0.26150627618488037 0.8203096854214332 0.16717327196197365
+0.263598326418713 0.8169193021488909 0.263598326418713 0.8169193021488909 0.16802851356571782
+0.2656903766646854 0.8135289189118847 0.2656903766646854 0.8135289189118847 0.16862927778451076
+0.26778242690149917 0.8101385356918117 0.26778242690149917 0.8101385356918117 0.16899708159251683
+0.26987447711033985 0.8067481525434766 0.26987447711033985 0.8067481525434766 0.1691624486828126
+0.2719665578737961 0.8033578145043013 0.27196655787379603 0.8033578145043013 0.16916376534150632
+0.27405946356080957 0.7999680861700732 0.27405946356080957 0.7999680861700732 0.1690470351794677
+0.27615366278010367 0.7965811089380473 0.2761536627801036 0.7965811089380473 0.16886384671359903
+0.27824700385086726 0.7932011145836256 0.27824700385086726 0.7932011145836256 0.16866714265920882
+0.28033499779487175 0.7898327010911022 0.28033499779487175 0.7898327010911022 0.16850750228646635
+0.28240708265334735 0.7864828512309593 0.28240708265334735 0.7864828512309593 0.16842746696947988
+0.30071216261490963 0.7595974088359607 0.30071216261490963 0.7595974088359608 0.17702571850461243
+0.30251530132994925 0.7562991182448 0.30251530132994925 0.7562991182448 0.1785093876488527
+0.3043153259567791 0.7529949409580401 0.3043153259567792 0.7529949409580401 0.18015229579749648
+0.30607701863634584 0.7496623359044895 0.3060770186363459 0.7496623359044895 0.18188485928462705
+0.2844486050792276 0.7831570480738916 0.2844486050792276 0.7831570480738916 0.16845743727425608
+0.2864401027326092 0.7798512148965525 0.2864401027326093 0.7798512148965525 0.16860740032785448
+0.2883382868058121 0.7765342959487734 0.288338286805812 0.7765342959487734 0.16883197461812713
+0.2954870242825873 0.7631241059845705 0.2954870242825873 0.7631241059845705 0.17134131385199083
+0.29011909861874374 0.7731808859516024 0.2901190986187437 0.7731808859516024 0.16909560406329868
+0.29196132179651 0.7697451207933002 0.29196132179651 0.7697451207933002 0.16963449568689784
+0.2937900448054302 0.7664135349456856 0.2937900448054302 0.7664135349456856 0.17044993328559463
+0.29914704820884513 0.763027226922269 0.29914704820884513 0.763027226922269 0.17608508944078619
+0.30264635118086447 0.7626664642398644 0.3026463511808645 0.7626664642398645 0.18054665367521902
+0.3097026270412208 0.7495674498261432 0.3097026270412208 0.7495674498261432 0.186739006695122
+0.3146970770297219 0.7329181244484059 0.3146970770297219 0.7329181244484059 0.19130114575945287
+0.3181925582313872 0.726281551818833 0.3181925582313872 0.726281551818833 0.19505067559414987
+0.3164493554068782 0.7296008583771177 0.3164493554068782 0.7296008583771177 0.1932139516657518
+0.3216260249050423 0.7261489781568478 0.3216260249050423 0.7261489781568478 0.19991628498161254
+0.3113914996678562 0.7461660729094636 0.3113914996678562 0.7461660729094636 0.18850367005396326
+0.31644593342234084 0.7361352465345322 0.31644593342234084 0.7361352465345322 0.19414813590700897
+0.3147157430459891 0.7394166424180392 0.3147157430459891 0.7394166424180392 0.19216864334148756
+0.31305576136780044 0.7427791225800614 0.31305576136780044 0.7427791225800614 0.19031482217372642
+0.32919463336803306 0.7123742247462718 0.32919463336803306 0.7123742247462718 0.20759411986278872
+0.32740666961257087 0.7158634736381915 0.32740666961257087 0.7158634736381915 0.2059601179976522
+0.32551409630388173 0.7193631866031021 0.3255140963038818 0.7193631866031022 0.20408289059308918
+0.32362608536404275 0.7227993417207759 0.32362608536404275 0.7227993417207759 0.20214248938220702
+0.3379161778120536 0.7016907920981312 0.3379161778120536 0.7016907920981312 0.21795523293399724
+0.3362636816130618 0.7050707248134129 0.3362636816130618 0.7050707248134129 0.21651475202886192
+0.33459773361158646 0.7084720570015012 0.33459773361158646 0.7084720570015012 0.21501520250758666
+0.33291444741572057 0.7119050519209011 0.33291444741572057 0.7119050519209011 0.21344190228360307
+0.34593308157729563 0.6908750244509437 0.34593308157729563 0.6908750244509437 0.22805768071185753
+0.34461830010607936 0.6943201761548576 0.34461830010607936 0.6943201761548576 0.2271574174538722
+0.34304793208089784 0.6977705309039784 0.34304793208089784 0.6977705309039784 0.22573930683032337
+0.3414615903365956 0.7011536439922678 0.3414615903365956 0.7011536439922678 0.22424859116074933
+0.3552268895558068 0.675798024171795 0.3552268895558068 0.675798024171795 0.240511253829111
+0.3537248170635154 0.6792817859923823 0.3537248170635154 0.6792817859923823 0.23883728732860862
+0.3521760671848466 0.6828641464747885 0.3521760671848466 0.6828641464747885 0.23721762404510108
+0.35064035024596113 0.6865629662255022 0.35064035024596113 0.6865629662255022 0.23575972918907076
+0.34917262480011013 0.6901699999024724 0.34917262480011013 0.6901699999024724 0.23445373915677017
+0.37768525536388026 0.6464021955960767 0.37768525536388026 0.6464021955960767 0.2906558093889038
+0.36669494160894744 0.6646689841821949 0.3666949416089475 0.664668984182195 0.2638652928802825
+0.36171506645734985 0.6684413840197422 0.36171506645734985 0.6684413840197422 0.2527622385800307
+0.36016443070234433 0.6718620310550282 0.36016443070234433 0.6718620310550282 0.2504480391543629
+0.35875042526747025 0.6753607072953705 0.35875042526747025 0.6753607072953703 0.24867498724899498
+0.36516860583354366 0.6680864630437835 0.36516860583354366 0.6680864630437835 0.26123822165625105
+0.37623014272704 0.6499309626263462 0.37623014272704 0.6499309626263462 0.28634922807295754
+0.3747695041797561 0.6534965110881735 0.3747695041797561 0.6534965110881735 0.28248709242494896
+0.37328359511106146 0.6571278519928021 0.3732835951110615 0.6571278519928021 0.27897339723899955
+0.3701694264547057 0.6642366203831002 0.3701694264547057 0.6642366203831002 0.27258373051804735
+0.37170216763071995 0.6607498562774832 0.37170216763071995 0.6607498562774832 0.27557050180941417
+0.38261666234547126 0.6420600648209308 0.38261666234547126 0.6420600648209308 0.3055000393982423
+0.38123075454752997 0.6455696069143327 0.38123075454752997 0.6455696069143327 0.3005600807606426
+0.3860432071189895 0.6411725106961904 0.3860432071189895 0.6411725106961904 0.3154113391218292
+0.38939494474690955 0.6402427924317622 0.38939494474690955 0.6402427924317622 0.3251147486368941
+0.3926380928363369 0.6393090406519127 0.3926380928363369 0.6393090406519127 0.33448349105161523
+0.39146911845777665 0.5380736522364582 0.3914691184577767 0.5380736522364583 0.2426668296748973
+0.38983089332417864 0.5414276414466875 0.3898308933241786 0.5414276414466875 0.2447035188248127
+0.3881630774412146 0.5460835013098275 0.3881630774412146 0.5460835013098276 0.2525578162401334
+0.39003275057355824 0.5439031145105252 0.39003275057355824 0.5439031145105252 0.25040212518615074
+0.3873600258078002 0.5509967078597934 0.3873600258078002 0.5509967078597934 0.26780930309379464
+0.3892145872601818 0.5483883224925353 0.3892145872601818 0.5483883224925353 0.2648666686342375
+0.38631138782192104 0.5537940456853527 0.38631138782192104 0.5537940456853527 0.27433726039771195
+0.38579105559344007 0.5563027158383724 0.38579105559344007 0.5563027158383724 0.2820540561143864
+0.38868739773814204 0.5526285148529724 0.38868739773814204 0.5526285148529724 0.2822258674495851
+0.38711326953563185 0.5584598295423756 0.38711326953563185 0.5584598295423756 0.30012326482128554
+0.38465983986264546 0.5613253356180948 0.38465983986264546 0.5613253356180948 0.295636740275009
+0.3855151507157061 0.5645110146801375 0.385515150715706 0.5645110146801375 0.31382583958965804
+0.3833860502544126 0.5677467780840224 0.3833860502544125 0.5677467780840225 0.30967878357009376
+0.38307111383688336 0.5711610588975107 0.38307111383688336 0.5711610588975107 0.3173584082832398
+0.3865400978316479 0.5671140938282943 0.3865400978316479 0.5671140938282943 0.33087493601473605
+0.3821298990164581 0.5771520895190875 0.3821298990164581 0.5771520895190875 0.3245767855429426
+0.3844049368914621 0.5737594323109378 0.3844049368914621 0.573759432310938 0.33374179908774687
+0.38261273323873296 0.5876671730809445 0.38261273323873296 0.5876671730809445 0.3402221692751581
+0.3836745035360242 0.5807429952927005 0.38367450353602417 0.5807429952927005 0.3412423683744406
+0.3832615830627869 0.5846707049996483 0.38326158306278696 0.5846707049996483 0.3425530638516434
+0.38395891300860474 0.5900789685322638 0.38395891300860474 0.5900789685322638 0.3496722225559387
+0.3853094628398776 0.5929606486628827 0.3853094628398776 0.5929606486628827 0.35789415688887877
+0.3836325070969364 0.5962140564171059 0.3836325070969364 0.5962140564171059 0.34685616362516286
+0.3852077978616796 0.599385603730628 0.38520779786167963 0.599385603730628 0.3537997513145367
+0.3851879979117303 0.6061796143071689 0.3851879979117303 0.6061796143071688 0.34724359098258123
+0.38682273703392056 0.6027518950165162 0.38682273703392056 0.6027518950165162 0.3591189512757953
+0.38699883521101264 0.6094112585689584 0.3869988352110126 0.6094112585689584 0.35171973287096
+0.3875194835520912 0.6162095694295008 0.3875194835520912 0.6162095694295008 0.34464506170617026
+0.3889267065781098 0.612588717166259 0.38892670657810985 0.612588717166259 0.35554538727593354
+0.3895413258678557 0.6194694685318355 0.3895413258678557 0.6194694685318355 0.347646064572741
+0.39006253685721703 0.6271072347928619 0.3900625368572171 0.627107234792862 0.339217007740426
+0.3916906705813076 0.6228082715238621 0.3916906705813075 0.6228082715238621 0.3502809891494158
+0.39284429001155685 0.6296994588191114 0.3928442900115568 0.6296994588191113 0.34452183005859943
+0.39375370611721394 0.6358846246109664 0.3937537061172139 0.6358846246109664 0.34038823599637574
+0.39576518023791935 0.6383591932310364 0.39576518023791935 0.6383591932310364 0.3435072640382461
+0.39507218661719506 0.6324901866084119 0.39507218661719506 0.6324901866084119 0.3476030722871201
+0.3959740612481362 0.5387069175206534 0.3959740612481362 0.5387069175206535 0.24361099701728203
+0.40030996340083425 0.5392490465113239 0.40030996340083425 0.5392490465113239 0.2571524033376067
+0.5700865643918932 0.4087703134952088 0.5700865643918932 0.40877031349520887 1.0010822496673215
+0.5735167649037729 0.408087960867927 0.5735167649037729 0.40808796086792704 1.0041786796216916
+0.5782843494483255 0.40798982389767796 0.5782843494483255 0.40798982389767796 1.0076941487748152
+0.5758284501835023 0.40906355289463087 0.5758284501835023 0.40906355289463087 1.013856833543141
+0.5826729677929795 0.4080037398208542 0.5826729677929795 0.4080037398208542 1.003755889462498
+0.5801429546545402 0.40968783231266825 0.5801429546545402 0.4096878323126683 1.0158549932491987
+0.5877840437688002 0.4080504107211921 0.5877840437688002 0.408050410721192 0.9911451100463692
+0.5850445977173421 0.40949664184574974 0.5850445977173421 0.40949664184574974 1.004410243983066
+0.5897068819210486 0.40967333105920384 0.5897068819210486 0.4096733310592039 0.9878557715874688
+0.5985111890859296 0.4087344539574569 0.5985111890859295 0.4087344539574569 0.9437337895193071
+0.5921053233271126 0.4096657248737145 0.5921053233271126 0.4096657248737145 0.9772371230024962
+0.5952641192289645 0.40929509177227197 0.5952641192289646 0.4092950917722719 0.9612941475610829
+0.5695549594275814 0.4135240479047906 0.5695549594275814 0.4135240479047906 1.039934098915733
+0.568979643945391 0.4180496559902836 0.568979643945391 0.4180496559902836 1.0779500155127038
+0.6019017746569562 0.4081522559854901 0.6019017746569562 0.40815225598549004 0.9246036160314343
+0.6035604928681874 0.4045302312410593 0.6035604928681874 0.4045302312410593 0.9174143450088091
+0.6069435946791181 0.40381577790805284 0.6069435946791181 0.40381577790805284 0.8996295322534916
+0.6097139541921738 0.40290615458417767 0.6097139541921738 0.40290615458417767 0.8850448370678639
+0.6126427826488798 0.40401149721438934 0.61264278264888 0.40401149721438934 0.8668161466849378
+0.6163807865724532 0.40374836210497866 0.6163807865724532 0.40374836210497866 0.8446073022692239
+0.619784078098911 0.40365033243697135 0.619784078098911 0.4036503324369713 0.8237306415262441
+0.6005271762201365 0.4119001030997142 0.6005271762201366 0.4119001030997142 0.929167683223671
+0.6036027616438113 0.4106032618801039 0.6036027616438113 0.4106032618801039 0.9107059289007486
+0.6322198945386432 0.3912393501755772 0.6322198945386432 0.3912393501755772 0.7811040777922241
+0.6451112600232748 0.39112371922220385 0.6451112600232748 0.39112371922220385 0.7095931902162116
+0.6350853293845901 0.391447962805996 0.6350853293845901 0.391447962805996 0.765109490558523
+0.6416405662261946 0.39119394581193845 0.6416405662261946 0.39119394581193845 0.7290596226274123
+0.6382940343347306 0.3913054477780533 0.6382940343347306 0.3913054477780533 0.7476007423615679
+0.6292712354104336 0.3927893520157537 0.6292712354104336 0.39278935201575366 0.7944758192164859
+0.6270904287134631 0.3967078146932611 0.627090428713463 0.39670781469326105 0.79817224571064
+0.6251110262967132 0.40026718615753265 0.6251110262967132 0.4002671861575326 0.800600060254043
+0.6231881364042408 0.40366674889629867 0.6231881364042408 0.40366674889629867 0.8022001914362625
+0.6844583560131414 0.34846060871566836 0.6844583560131414 0.34846060871566836 0.6165114245723743
+0.678688731775761 0.3510904714919932 0.678688731775761 0.3510904714919932 0.6300229705388852
+0.6626274170132708 0.3684388947319699 0.6626274170132708 0.3684388947319699 0.6665396249627109
+0.6733307401179485 0.3537191591437846 0.6733307401179484 0.35371915914378466 0.6440466510809029
+0.6644297394055403 0.36611959487145396 0.6644297394055404 0.36611959487145396 0.6620709367624459
+0.6680060543744452 0.3571996979496143 0.6680060543744453 0.35719969794961426 0.659066463249156
+0.671316169674572 0.3562920323684088 0.671316169674572 0.3562920323684088 0.6478155439381681
+0.666256606836179 0.36321394969194387 0.6662566068361792 0.3632139496919438 0.6584187601715618
+0.6680728267965215 0.3607502437540455 0.6680728267965215 0.3607502437540455 0.6543500394169592
+0.6764801752637576 0.3541896419077444 0.6764801752637576 0.3541896419077444 0.6328028264829734
+0.6821785876065705 0.35152868509935503 0.6821785876065705 0.35152868509935503 0.6184128159986627
+0.7006793376719095 0.34680917249047255 0.7006793376719095 0.34680917249047255 0.5760739266830436
+0.6902607732968807 0.34597726143966745 0.6902607732968807 0.34597726143966745 0.6045828593898527
+0.6937141621836466 0.34632554184551273 0.6937141621836466 0.34632554184551273 0.5948276327094825
+0.697172061963531 0.3466027629744137 0.697172061963531 0.3466027629744137 0.5853606575648832
+0.6879585779865988 0.3489537297931549 0.6879585779865988 0.3489537297931549 0.6056333537760881
+0.6624671062726706 0.3717735592990239 0.6624671062726707 0.37177355929902384 0.6623176720814311
+0.6600168021080899 0.3754749618677818 0.6600168021080899 0.3754749618677818 0.6671784420966925
+0.6576112186932423 0.3786667858343076 0.6576112186932423 0.3786667858343076 0.6727054013338445
+0.6553173521656688 0.38184345051137 0.6553173521656688 0.38184345051137 0.6775838788768734
+0.6530700626789807 0.38496164777509273 0.6530700626789807 0.38496164777509273 0.6820557881235652
+0.6508493186853609 0.38804582858380027 0.6508493186853609 0.38804582858380027 0.686070720858706
+0.6486503766116688 0.3911071093006358 0.6486503766116688 0.3911071093006358 0.6895336632427193
+0.710208164536005 0.3446728128822895 0.710208164536005 0.3446728128822895 0.5580252009418786
+0.7042122172914876 0.3471188852070699 0.7042122172914876 0.3471188852070699 0.5666772513880568
+0.7077548854070176 0.34750020242995966 0.7077548854070176 0.34750020242995966 0.5572699982936046
+0.7452683053472712 0.31483635669339294 0.7452683053472712 0.31483635669339294 0.522159165480626
+0.7138168890952694 0.34514441535501034 0.7138168890952694 0.34514441535501034 0.5486762256329881
+0.7163270949494155 0.34231593225485885 0.7163270949494155 0.34231593225485885 0.5493861623603559
+0.7188536408948988 0.33946647549400893 0.7188536408948988 0.33946647549400893 0.54980296201887
+0.7214032686602092 0.3365955617640262 0.7214032686602092 0.3365955617640262 0.5498214583641553
+0.7239880871706578 0.33370919826727946 0.7239880871706578 0.33370919826727946 0.5493260504014738
+0.7367829988925277 0.31966610242021315 0.7367829988925277 0.31966610242021315 0.5386142956548171
+0.7342693741634001 0.3224468071007971 0.7342693741634001 0.3224468071007971 0.5417299050891596
+0.7265991111609432 0.3308464745976169 0.7265991111609432 0.3308464745976169 0.548233974669465
+0.7317647068190585 0.32524984791478434 0.7317647068190585 0.32524984791478434 0.544301790476657
+0.7292143294613074 0.32801773992549504 0.7292143294613074 0.32801773992549504 0.5465148550587499
+0.7427601255341226 0.31765513369386905 0.7427601255341226 0.31765513369386905 0.5259982244634966
+0.740247628647054 0.3204518999881998 0.740247628647054 0.3204518999881998 0.5295020283486478
+0.7487863692648954 0.31559950203164133 0.7487863692648954 0.31559950203164133 0.5129476307881627
+0.7564227940039596 0.30704365391557636 0.7564227940039596 0.30704365391557636 0.5005228213040596
+0.7538775428982151 0.30988645629160194 0.7538775428982151 0.30988645629160194 0.5047343610252567
+0.7513308791714239 0.31274531966767705 0.7513308791714239 0.31274531966767705 0.5089089080080288
+0.7589392209424117 0.3042773478277171 0.7589392209424117 0.30427734782771715 0.49641429026150213
+0.7614580549292193 0.30154056537518936 0.7614580549292193 0.3015405653751894 0.49244891862231194
+0.7639509546506749 0.29885602685187973 0.7639509546506749 0.2988560268518797 0.4887602642910656
+0.7665271354776715 0.2962313643831601 0.7665271354776716 0.29623136438316017 0.4851974503759142
+0.7691823651868349 0.29368276173331886 0.7691823651868349 0.29368276173331886 0.48188634369165245
+0.7720327783630627 0.2907220213864865 0.7720327783630628 0.2907220213864865 0.47905566312268993
+0.7759881273785573 0.28884004556839177 0.7759881273785573 0.28884004556839177 0.47386772810285294
+0.7795955385244661 0.2866841620268586 0.7795955385244661 0.2866841620268586 0.4701084958128073
+0.7830366343877606 0.2845323892899707 0.7830366343877606 0.2845323892899707 0.4671064985733408
+0.7864273816362711 0.28243171498890435 0.7864273816362711 0.28243171498890435 0.46452347370257013
+0.7898087870382039 0.28033875021086035 0.7898087870382039 0.28033875021086035 0.4622332109523604
+0.7931909205130611 0.2782453849466677 0.7931909205130611 0.2782453849466677 0.46012655344879194
+0.7965777033574417 0.27615138993447547 0.7965777033574417 0.27615138993447547 0.4580919349192977
+0.7999673855850321 0.27405857740583184 0.7999673855850321 0.2740585774058318 0.4560243220306955
+0.8033577688802013 0.2719665271966239 0.8033577688802013 0.2719665271966239 0.45382962165048285
+0.80674815217537 0.2698744769874176 0.80674815217537 0.2698744769874177 0.4514252573548145
+0.8101385354705389 0.2677824267782119 0.8101385354705389 0.2677824267782119 0.4487441230125631
+0.8135289187657081 0.26569037656900657 0.8135289187657081 0.26569037656900657 0.44573989087621024
+0.8169193020608772 0.2635983263598014 0.8169193020608772 0.2635983263598014 0.4423894523410434
+0.8203096853560461 0.2615062761505963 0.820309685356046 0.26150627615059635 0.4386943140132668
+0.823700068651215 0.2594142259413912 0.823700068651215 0.2594142259413912 0.434680933189878
+0.8270904519463841 0.257322175732186 0.8270904519463841 0.257322175732186 0.4303999750498016
+0.8304808352415529 0.255230125522981 0.8304808352415529 0.255230125522981 0.4259244746162342
+0.8338712185367219 0.25313807531377586 0.8338712185367217 0.2531380753137759 0.4213468899599024
+0.8372616018318908 0.25104602510457075 0.8372616018318908 0.25104602510457075 0.4167750495360876
+0.8406519851270599 0.24895397489536567 0.8406519851270599 0.24895397489536567 0.41232703561167466
+0.8440423684222287 0.24686192468616053 0.8440423684222287 0.24686192468616053 0.40812511461128936
+0.8474327517173976 0.24476987447695547 0.8474327517173975 0.2447698744769555 0.40428892549042666
+0.8508231350125666 0.24267782426775034 0.8508231350125666 0.24267782426775034 0.40092826122640896
+0.8542135183077356 0.24058577405854523 0.8542135183077356 0.24058577405854523 0.3981359064424455
+0.8576039016029045 0.23849372384934012 0.8576039016029045 0.23849372384934012 0.39598109487079597
+0.8609942848980734 0.23640167364013503 0.8609942848980733 0.23640167364013506 0.39450418749975547
+0.8643846681932423 0.2343096234309299 0.8643846681932423 0.2343096234309299 0.39371311631134137
+0.8677750514884114 0.2322175732217248 0.8677750514884114 0.2322175732217248 0.39358198063450395
+0.8711654347835802 0.23012552301251965 0.8711654347835802 0.23012552301251965 0.39405194397564086
+0.8745558180787492 0.2280334728033146 0.874555818078749 0.22803347280331462 0.3950343064456696
+0.8779462013739181 0.22594142259410946 0.8779462013739181 0.22594142259410946 0.3964153814720801
+0.8813365846690872 0.22384937238490435 0.8813365846690872 0.22384937238490435 0.39806263656164037
+0.884726967964256 0.22175732217569924 0.884726967964256 0.22175732217569924 0.3998314922612572
+0.8881173512594249 0.21966527196649413 0.8881173512594248 0.21966527196649413 0.401572206587638
+0.8915077345545939 0.217573221757289 0.8915077345545939 0.217573221757289 0.403136376401611
+0.8948981178497628 0.21548117154808388 0.8948981178497629 0.21548117154808386 0.4043827254858405
+0.8982885011449318 0.21338912133887877 0.8982885011449318 0.21338912133887877 0.40518198801351435
+0.9016788844401007 0.21129707112967366 0.9016788844401006 0.2112970711296737 0.40542081327317187
+0.9050692677352696 0.20920502092046855 0.9050692677352696 0.20920502092046855 0.4050047029571367
+0.9084596510304386 0.20711297071126344 0.9084596510304387 0.20711297071126342 0.4038600457902722
+0.9118500343256075 0.20502092050205833 0.9118500343256075 0.20502092050205833 0.4019353412018493
+0.9152404176207765 0.20292887029285323 0.9152404176207763 0.20292887029285325 0.39920171160665047
+0.9186308009159454 0.20083682008364812 0.9186308009159454 0.20083682008364812 0.3956527988235418
+0.9220211842111143 0.198744769874443 0.9220211842111145 0.198744769874443 0.3913041299345616
+0.9254115675062833 0.1966527196652379 0.9254115675062833 0.1966527196652379 0.3861920254931905
+0.9288019508014522 0.1945606694560328 0.9288019508014521 0.1945606694560328 0.38037211097998874
+0.9321923340966212 0.19246861924682768 0.9321923340966212 0.19246861924682768 0.3739174822747478
+0.9355827173917901 0.19037656903762257 0.9355827173917902 0.19037656903762257 0.36691656851985194
+0.938973100686959 0.18828451882841746 0.938973100686959 0.18828451882841746 0.35947073162711646
+0.942363483982128 0.18619246861921235 0.9423634839821279 0.18619246861921235 0.35169164126434155
+0.9457538672772969 0.18410041841000724 0.9457538672772969 0.18410041841000724 0.34369846786176045
+0.9491442505724659 0.18200836820080213 0.949144250572466 0.18200836820080213 0.3356149443342256
+0.9525346338676348 0.17991631799159702 0.9525346338676348 0.17991631799159702 0.3275663598559038
+0.9559250171628038 0.1778242677823919 0.9559250171628036 0.1778242677823919 0.31967656551939166
+0.9593154004579727 0.1757322175731868 0.9593154004579727 0.1757322175731868 0.31206509030209767
+0.9627057837531416 0.1736401673639817 0.9627057837531418 0.1736401673639817 0.30484448314332596
+0.9660961670483106 0.17154811715477658 0.9660961670483106 0.17154811715477658 0.2981180081172057
+0.9694865503434795 0.16945606694557147 0.9694865503434794 0.16945606694557147 0.29197781845811904
+0.9728769336386485 0.16736401673636636 0.9728769336386485 0.16736401673636636 0.2865037154228965
+0.9762673169338174 0.16527196652716125 0.9762673169338175 0.16527196652716125 0.28176255571578784
+0.9796577002289864 0.16317991631795614 0.9796577002289864 0.16317991631795614 0.2778083071407551
+0.9830480835241553 0.16108786610875103 0.9830480835241552 0.16108786610875103 0.2746826733695605
+0.9864384668193242 0.15899581589954592 0.9864384668193242 0.15899581589954592 0.2724161287263689
+0.9898288501144932 0.1569037656903408 0.9898288501144933 0.1569037656903408 0.27102914017261365
+0.9932192334096621 0.1548117154811357 0.9932192334096621 0.1548117154811357 0.27053332314356443
+0.1589958158995816 0.9932192334096621 0.1589958158995816 0.9932192334096621 0.12860346978090864
+0.16108786610878661 0.9898288501144932 0.16108786610878664 0.9898288501144933 0.13127039161388102
+0.16317991631799164 0.9864384668193242 0.16317991631799164 0.9864384668193242 0.13425936932370355
+0.16527196652719672 0.9830480835241553 0.1652719665271967 0.9830480835241552 0.13750970155188583
+0.1673640167364017 0.9796577002289865 0.1673640167364017 0.9796577002289865 0.14095492843690768
+0.16945606694560664 0.9762673169338176 0.16945606694560664 0.9762673169338177 0.144525064131825
+0.17154811715481164 0.9728769336386486 0.17154811715481164 0.9728769336386486 0.14814863593389002
+0.17364016736401666 0.9694865503434795 0.17364016736401666 0.9694865503434794 0.15175447379515852
+0.17573221757322163 0.9660961670483106 0.17573221757322163 0.9660961670483106 0.15527324141187185
+0.17782426778242658 0.9627057837531418 0.17782426778242658 0.9627057837531418 0.15863873004169796
+0.17991631799163166 0.9593154004579727 0.17991631799163166 0.9593154004579727 0.16178895075652824
+0.18200836820083666 0.9559250171628038 0.18200836820083666 0.9559250171628036 0.1646670642904862
+0.18410041841004188 0.9525346338676348 0.18410041841004188 0.9525346338676348 0.16722218438909267
+0.18619246861924707 0.949144250572466 0.18619246861924707 0.949144250572466 0.16941008408971617
+0.18828451882845243 0.945753867277297 0.18828451882845243 0.945753867277297 0.17119382696963079
+0.19037656903765784 0.9423634839821281 0.19037656903765784 0.9423634839821281 0.17254433835241412
+0.19246861924686323 0.9389731006869596 0.19246861924686323 0.9389731006869596 0.17344092526867058
+0.19456066945606884 0.9355827173917913 0.19456066945606884 0.9355827173917913 0.17387174862199928
+0.1966527196652743 0.932192334096623 0.1966527196652743 0.932192334096623 0.17383424620201574
+0.19874476987447953 0.9288019508014558 0.19874476987447953 0.9288019508014557 0.17333550040539888
+0.20083682008368417 0.9254115675062882 0.20083682008368417 0.9254115675062881 0.17239253913778915
+0.2029288702928876 0.9220211842111217 0.20292887029288756 0.9220211842111218 0.17103255165293763
+0.20502092050209061 0.918630800915954 0.20502092050209061 0.918630800915954 0.16929299228960845
+0.20711297071129212 0.9152404176207857 0.20711297071129212 0.9152404176207857 0.16722153352445315
+0.20920502092049434 0.9118500343256168 0.20920502092049434 0.911850034325617 0.1648758151211084
+0.21129707112969898 0.9084596510304475 0.211297071129699 0.9084596510304476 0.16232291881403357
+0.2133891213389073 0.9050692677352791 0.21338912133890728 0.9050692677352791 0.15963847972205533
+0.21548117154812033 0.9016788844401131 0.21548117154812033 0.901678884440113 0.15690533064345938
+0.2175732217573382 0.898288501144953 0.2175732217573382 0.898288501144953 0.15421157082423884
+0.21966527196656074 0.8948981178497956 0.21966527196656074 0.8948981178497956 0.15164796743830078
+0.22175732217578173 0.8915077345546424 0.22175732217578173 0.8915077345546424 0.1493046486065752
+0.22384937238501204 0.8881173512594968 0.22384937238501204 0.8881173512594968 0.14726714164523189
+0.22594142259424813 0.8847269679643525 0.22594142259424813 0.8847269679643525 0.14561194945060782
+0.22803347280350048 0.8813365846692355 0.22803347280350048 0.8813365846692355 0.14440202210377132
+0.230125523012767 0.8779462013741464 0.230125523012767 0.8779462013741464 0.14368262640632665
+0.23221757322203848 0.8745558180791465 0.23221757322203848 0.8745558180791465 0.14347818355301156
+0.23430962343126147 0.8711654347841779 0.23430962343126147 0.8711654347841779 0.14379058309010373
+0.23640167364037137 0.8677750514893843 0.23640167364037137 0.8677750514893843 0.1445992781056913
+0.23849372384943898 0.8643846681944399 0.23849372384943898 0.8643846681944399 0.14586316857523354
+0.24058577405839002 0.8609942848995514 0.24058577405839002 0.8609942848995514 0.14752397760917024
+0.2426778242675736 0.8576039016047637 0.2426778242675736 0.8576039016047637 0.14951061209967606
+0.24476987447728193 0.8542135183101872 0.24476987447728193 0.8542135183101872 0.15174392674486847
+0.24686192468767246 0.8508231350161153 0.24686192468767246 0.8508231350161154 0.15414137184931057
+0.24895397489845283 0.8474327517228984 0.24895397489845283 0.8474327517228984 0.15662115078596747
+0.2510460251095871 0.8440423684305994 0.2510460251095871 0.8440423684305994 0.15910568135912498
+0.2531380753206848 0.8406519851404503 0.2531380753206847 0.8406519851404503 0.1615243000679103
+0.25523012552929636 0.8372616018489927 0.25523012552929636 0.8372616018489927 0.1638152475719753
+0.2573221757409609 0.8338712185586755 0.2573221757409609 0.8338712185586755 0.16592702636430082
+0.25941422595286784 0.830480835267099 0.25941422595286784 0.830480835267099 0.16781923791487643
+0.2615062761689178 0.8270904519795149 0.2615062761689178 0.8270904519795149 0.16946299985667987
+0.2635983263906729 0.8237000686961676 0.2635983263906729 0.8237000686961676 0.1708410251670733
+0.2656903766182698 0.8203096854309203 0.2656903766182697 0.8203096854309203 0.1719474231846185
+0.26778242684085646 0.8169193021741677 0.26778242684085646 0.8169193021741677 0.1727872609234563
+0.2698744770486251 0.813528918953879 0.26987447704862516 0.813528918953879 0.1733759053673609
+0.27196652724427656 0.8101385357091514 0.27196652724427656 0.8101385357091514 0.17373815368137258
+0.2740585774237839 0.8067481524699911 0.274058577423784 0.8067481524699911 0.17390715026143513
+0.27615068520570524 0.8033578734418533 0.27615068520570524 0.8033578734418533 0.17392323183843614
+0.2782435188311775 0.7999685341982404 0.2782435188311774 0.7999685341982404 0.17383354488936734
+0.2803369248353066 0.7965827523934695 0.28033692483530664 0.7965827523934695 0.17368954518492688
+0.28242783720598774 0.7932045634817434 0.2824278372059878 0.7932045634817434 0.17354221199009687
+0.2845122888191829 0.7898362367943585 0.2845122888191829 0.7898362367943585 0.17343930416872358
+0.286575348609745 0.7864844087947197 0.28657534860974504 0.7864844087947197 0.1734155012189227
+0.30433502255544703 0.7593990210304247 0.30433502255544703 0.7593990210304247 0.18175139734286339
+0.30617150393394416 0.7562316761679729 0.30617150393394416 0.7562316761679729 0.18334318685424852
+0.3079750873594879 0.7529500486237425 0.3079750873594879 0.7529500486237425 0.1850294161658896
+0.2886030343497065 0.7831472904784486 0.2886030343497065 0.7831472904784486 0.1734940022137403
+0.2905937604554258 0.7798071825376062 0.2905937604554258 0.7798071825376062 0.17369430205294537
+0.2925146138993344 0.7764612434644684 0.2925146138993344 0.7764612434644684 0.17400025494784632
+0.29762590224296204 0.7663950255482254 0.2976259022429621 0.7663950255482254 0.17540122360893529
+0.2944259343191367 0.7730787343494973 0.2944259343191367 0.7730787343494973 0.1744912848730195
+0.296187819828778 0.7696750497846244 0.296187819828778 0.7696750497846244 0.1750072542134032
+0.30601330340650884 0.7621960073608518 0.30601330340650884 0.7621960073608518 0.18481572986965086
+0.3013405896000439 0.7661229424545795 0.3013405896000439 0.7661229424545795 0.1801211178805078
+0.3045535992343555 0.7655470815631746 0.3045535992343555 0.7655470815631746 0.18409012563469074
+0.3116427973426898 0.7529029521044337 0.3116427973426898 0.7529029521044337 0.18994713401370042
+0.31330294988332835 0.7494367450517957 0.31330294988332835 0.7494367450517957 0.19158052727397412
+0.32516586610487935 0.725770857503245 0.32516586610487935 0.725770857503245 0.20499948742453047
+0.3182894242121475 0.7328290203459051 0.3182894242121475 0.7328290203459051 0.19627871328288263
+0.3199658784071378 0.7295152867769513 0.3199658784071378 0.7295152867769513 0.19813693333846194
+0.32314689807018904 0.729203650387757 0.32314689807018904 0.729203650387757 0.20264135413518494
+0.31493051699432084 0.7459988364602084 0.31493051699432084 0.7459988364602084 0.19328558259237585
+0.31997916691222644 0.7359061832451206 0.31997916691222644 0.7359061832451205 0.19903496238748108
+0.31808202233618743 0.739180978033955 0.3180820223361875 0.739180978033955 0.19677950465909408
+0.31652583555314856 0.7425933043901227 0.31652583555314856 0.7425933043901227 0.19503325078029352
+0.3311997676340383 0.7153908085745692 0.3311997676340383 0.7153908085745692 0.21177188175958914
+0.3293916400388486 0.7190031844629315 0.3293916400388486 0.7190031844629315 0.20992598116380637
+0.3275971489867486 0.722959164513763 0.3275971489867486 0.722959164513763 0.20810122655567256
+0.3398555835508301 0.7045497597108485 0.3398555835508301 0.7045497597108485 0.22270249711036086
+0.33823430505033647 0.7079578620382784 0.33823430505033647 0.7079578620382784 0.2210957057213022
+0.3366051325806397 0.7113867694049559 0.3366051325806397 0.7113867694049559 0.21943396708129628
+0.3349606436706893 0.7148542476207345 0.3349606436706893 0.7148542476207345 0.21770073025688808
+0.3478992447345597 0.6936827966715781 0.3478992447345597 0.6936827966715781 0.23349985585164326
+0.34647519165699475 0.6971248152581482 0.34647519165699475 0.6971248152581482 0.23217702224600542
+0.34497464550913376 0.7005550952118759 0.34497464550913376 0.7005550952118759 0.2306788265769578
+0.3434279104164128 0.7039725548044848 0.3434279104164128 0.7039725548044848 0.22905414859359516
+0.3572632600303269 0.6788847861949465 0.3572632600303269 0.6788847861949465 0.2468543037729214
+0.3557644513243219 0.6824190462728495 0.3557644513243219 0.6824190462728495 0.2451053881444094
+0.3543088794513721 0.6859580781272678 0.3543088794513722 0.6859580781272677 0.2435273696391689
+0.35277212128706376 0.6895491485542604 0.35277212128706376 0.6895491485542604 0.2418434869332388
+0.35131431319928375 0.6930771567201282 0.35131431319928375 0.6930771567201282 0.24031566097645787
+0.37983594315871155 0.6491037440752984 0.37983594315871155 0.6491037440752984 0.2961376138694325
+0.3685442110728198 0.6675941998038334 0.3685442110728198 0.6675941998038334 0.2695411005863199
+0.363683377084079 0.6715462188954242 0.363683377084079 0.6715462188954242 0.25894156435974064
+0.36226875204794184 0.6750159177745445 0.3622687520479419 0.6750159177745445 0.2569694640060142
+0.36078999580926235 0.678499640514429 0.36078999580926235 0.678499640514429 0.2549698201562704
+0.3670078813260744 0.671199409851899 0.3670078813260744 0.6711994098518989 0.26698622171764347
+0.3718261921552515 0.6670539573665186 0.3718261921552515 0.6670539573665186 0.2775849843995893
+0.3784309889345307 0.6526738835851004 0.3784309889345307 0.6526738835851004 0.2921755696360888
+0.37700531368728124 0.6563044128655794 0.37700531368728124 0.6563044128655794 0.2885979587951251
+0.375524922243164 0.660037599115461 0.375524922243164 0.6600375991154611 0.28529433339062654
+0.3740421641963593 0.664101688026561 0.37404216419635933 0.664101688026561 0.2824077653885113
+0.3847184282150866 0.6446966568388798 0.3847184282150866 0.6446966568388798 0.31030242722472284
+0.3833874971618881 0.6482341598053419 0.3833874971618881 0.6482341598053419 0.3057643937990228
+0.38813605724118605 0.6437634548958077 0.38813605724118605 0.6437634548958077 0.319845696106103
+0.39148006187480877 0.6427990136271027 0.3914800618748088 0.6427990136271027 0.3291599229927849
+0.39471276396040866 0.641797125710311 0.39471276396040866 0.641797125710311 0.3381462506849094
+0.3978613071256615 0.6408405134329732 0.39786130712566153 0.6408405134329732 0.34678560858386737
+0.3930903624422156 0.5425422441400533 0.3930903624422157 0.5425422441400533 0.2529176636643207
+0.39156755620866923 0.545914219082213 0.3915675562086692 0.545914219082213 0.2632432260978468
+0.39031493856479044 0.5504816160602041 0.39031493856479044 0.5504816160602041 0.28068292608275497
+0.391936626432716 0.548381054271798 0.391936626432716 0.548381054271798 0.2781519063061231
+0.38892638305399685 0.5553389848486403 0.3889263830539968 0.5553389848486403 0.2975909410825492
+0.3913267660894264 0.5527685548142766 0.3913267660894264 0.5527685548142766 0.3002058158931264
+0.3902200892324831 0.5579782790208161 0.390220089232483 0.5579782790208161 0.32101288454884686
+0.38842356485654905 0.561497097379222 0.38842356485654905 0.561497097379222 0.32376326835096864
+0.388536163257843 0.5649619896173814 0.388536163257843 0.5649619896173813 0.3391346100234039
+0.38631441185260623 0.5703225304539902 0.38631441185260623 0.5703225304539902 0.33941141801958874
+0.3889487130776717 0.5680281563059395 0.3889487130776717 0.5680281563059396 0.3538120660308211
+0.3854992362960361 0.5771343612735849 0.3854992362960361 0.5771343612735849 0.348932531386418
+0.38779269983134607 0.5737998692803584 0.38779269983134607 0.5737998692803584 0.36029685488375623
+0.38699427326617986 0.5797535610516025 0.38699427326617986 0.5797535610516025 0.3641797858727758
+0.38548999722290755 0.5869987125812436 0.38548999722290755 0.5869987125812436 0.3589887934511597
+0.3870674528059115 0.5831073336547078 0.3870674528059115 0.5831073336547078 0.36816259073246804
+0.38709632661419385 0.5898963350680296 0.38709632661419385 0.5898963350680296 0.37000508616037125
+0.388152862491162 0.5925851689997224 0.388152862491162 0.5925851689997224 0.37578163768073036
+0.3874407664775019 0.5959870762880158 0.387440766477502 0.5959870762880158 0.36920505528399733
+0.388456971878274 0.5996338441069373 0.388456971878274 0.5996338441069372 0.37136473912462026
+0.38855170494696045 0.6059010401736938 0.38855170494696045 0.6059010401736938 0.3637411056858871
+0.39011920278112 0.6025356297478734 0.39011920278112 0.6025356297478734 0.37647916410483
+0.39035770368429523 0.6089944130783244 0.3903577036842952 0.6089944130783244 0.36742918667337393
+0.39094008501199196 0.615786232425902 0.39094008501199196 0.615786232425902 0.35858892732440234
+0.39229106243508177 0.6121640476569926 0.39229106243508177 0.6121640476569926 0.37029056597990234
+0.3930217813166718 0.6189784780338132 0.3930217813166718 0.6189784780338132 0.36097248736240944
+0.394154887488915 0.6258853845599416 0.394154887488915 0.6258853845599416 0.3536470501983457
+0.395189141461419 0.6221179952586173 0.395189141461419 0.6221179952586172 0.3629988010131462
+0.3963289177640447 0.6288594100677335 0.3963289177640447 0.6288594100677335 0.35586302965324396
+0.3971495019874179 0.635274988025871 0.3971495019874179 0.6352749880258709 0.3501210440340157
+0.3985003744628449 0.6379064891277614 0.3985003744628449 0.6379064891277614 0.3509231293501479
+0.39860021440148713 0.6319736369548409 0.39860021440148713 0.6319736369548409 0.3579626894433514
+0.3976674813500988 0.5429582142240457 0.3976674813500987 0.5429582142240457 0.2736868650465143
+0.4020185711752653 0.5433347998744499 0.4020185711752653 0.5433347998744499 0.30811628513172623
+0.5737676433750671 0.4117436095928251 0.5737676433750671 0.4117436095928251 1.0320532671940585
+0.5771507230726458 0.41123019340133155 0.5771507230726458 0.41123019340133155 1.0276785921270084
+0.5819821476198394 0.41116986771618297 0.5819821476198394 0.41116986771618297 1.0193335955013738
+0.5794709046690357 0.4122893504213403 0.5794709046690357 0.4122893504213403 1.0301984052076878
+0.5872206109639909 0.4115900667112281 0.5872206109639909 0.41159006671122805 1.0030301909579784
+0.5839421718396615 0.4128686030990152 0.5839421718396615 0.4128686030990152 1.0196848198541557
+0.5900788248276898 0.41218793761426653 0.5900788248276898 0.41218793761426653 0.9906996807090626
+0.5882567077122038 0.41407532950274406 0.5882567077122038 0.41407532950274406 1.0027686060910417
+0.5967399507780093 0.41217357897546053 0.5967399507780095 0.41217357897546053 0.9529829520690333
+0.5930724302599838 0.41297792716394494 0.5930724302599838 0.41297792716394494 0.9752360184086585
+0.5982607207561699 0.4146194320618136 0.59826072075617 0.41461943206181356 0.9401682036991977
+0.6008285139538844 0.41512539264772785 0.6008285139538844 0.41512539264772785 0.9205680520472865
+0.5730252338414599 0.41650613595082675 0.5730252338414599 0.4165061359508267 1.0657390254183159
+0.5723027842003816 0.42096412859678445 0.5723027842003816 0.42096412859678445 1.0973527650028851
+0.605727174423224 0.4078581646542682 0.6057271744232241 0.40785816465426816 0.9020928470740881
+0.6093476283600705 0.4059783130665517 0.6093476283600704 0.4059783130665517 0.8828821491434723
+0.606045227011636 0.41118777553909086 0.606045227011636 0.41118777553909086 0.8931282915626436
+0.6119268061163409 0.40739461393291776 0.6119268061163409 0.40739461393291776 0.8634427441713421
+0.6146746894935811 0.40703442670988305 0.6146746894935812 0.40703442670988305 0.846681703293218
+0.617933583210152 0.40686724468311414 0.617933583210152 0.40686724468311414 0.825723825571619
+0.6212628469775069 0.406951045076774 0.6212628469775069 0.406951045076774 0.8032491109598506
+0.6038510398825888 0.41389502195926614 0.6038510398825888 0.41389502195926614 0.9019758244261366
+0.6464741634635717 0.394148055070263 0.6464741634635717 0.394148055070263 0.6923429498002839
+0.6328892161158036 0.3941221279198795 0.6328892161158036 0.3941221279198795 0.7711717341800065
+0.6429619638047182 0.3942311127915622 0.6429619638047183 0.39423111279156225 0.7126009499460562
+0.636329657340186 0.39434316076169335 0.6363296573401859 0.39434316076169335 0.7508816226515447
+0.6396098101505424 0.3942920706390252 0.6396098101505424 0.3942920706390252 0.7319807732393776
+0.6307130627586933 0.3969721955013361 0.6307130627586933 0.3969721955013361 0.7763610228545228
+0.6286405948166999 0.40035933507916927 0.6286405948166999 0.40035933507916927 0.7788034378143771
+0.6266416950716461 0.40375206260371344 0.6266416950716461 0.4037520626037134 0.7798271513648835
+0.6246914684786047 0.40708573598397174 0.6246914684786047 0.40708573598397174 0.7797330188678728
+0.7018456768346427 0.34992954153625105 0.7018456768346427 0.34992954153625105 0.5660976213766551
+0.6856871802342269 0.351995474081086 0.6856871802342269 0.351995474081086 0.6068123438827003
+0.6799119061420017 0.35460730122042255 0.6799119061420017 0.35460730122042255 0.6206560264505655
+0.6652363488948303 0.36944763311114304 0.6652363488948304 0.3694476331111431 0.653547121741055
+0.6741808161356593 0.3571935783233947 0.6741808161356593 0.35719357832339466 0.6364692614997859
+0.6675286447323674 0.3664412809831135 0.6675286447323674 0.3664412809831135 0.6484838607434421
+0.6713766646880978 0.3598402629456396 0.6713766646880978 0.3598402629456396 0.6430784512409918
+0.6697473500529352 0.36329550893013257 0.6697473500529352 0.36329550893013257 0.6442750016672004
+0.6776194764088461 0.3576434633941974 0.6776194764088461 0.3576434633941974 0.6234831425597677
+0.6834119666318546 0.3550548624657237 0.6834119666318546 0.3550548624657237 0.6083529779666458
+0.6983228259268011 0.34976700961445806 0.698322825926801 0.34976700961445806 0.575630025525398
+0.6914745974601011 0.349287306597212 0.6914745974601012 0.349287306597212 0.5951421510469671
+0.6948424792857733 0.3496416043466749 0.6948424792857733 0.34964160434667496 0.5852057883953866
+0.6892455912697967 0.3523786944860358 0.6892455912697967 0.3523786944860358 0.5954088190322694
+0.6662019730074715 0.3726401679628806 0.6662019730074715 0.3726401679628806 0.6433451787748741
+0.6639091971030573 0.37570997523877436 0.6639091971030573 0.3757099752387743 0.6478219260568955
+0.66141658463668 0.3787946845357922 0.66141658463668 0.3787946845357922 0.6533298449813749
+0.6590675017180648 0.3819459181569376 0.6590675017180648 0.3819459181569376 0.6578574125051114
+0.6567664204787955 0.38504450827783404 0.6567664204787955 0.38504450827783404 0.662028455019472
+0.6544868323057531 0.38810876175489334 0.6544868323057531 0.38810876175489334 0.6658248762984086
+0.652227271759659 0.3911478495744516 0.652227271759659 0.3911478495744516 0.6691295940475633
+0.6499906355319912 0.3941633337672202 0.6499906355319912 0.3941633337672202 0.6718302113828895
+0.7113186553945458 0.3479536939096625 0.7113186553945458 0.3479536939096625 0.5477756970866339
+0.7053272174397346 0.3502982861168129 0.7053272174397346 0.3502982861168129 0.5564765623692248
+0.7088338666603682 0.35074260392035433 0.7088338666603682 0.35074260392035433 0.5467841046057202
+0.7149043852519449 0.34848632804187024 0.7149043852519449 0.34848632804187024 0.5381429420619152
+0.7462536870818957 0.31842877492092303 0.7462536870818957 0.318428774920923 0.5167372011088521
+0.7174404469185421 0.3456924996099284 0.7174404469185421 0.3456924996099284 0.5391644027071941
+0.7199806195079148 0.3428792084630781 0.7199806195079148 0.3428792084630781 0.5399505224344966
+0.7275988273939206 0.33436809405744494 0.7275988273939206 0.33436809405744494 0.5400227450770791
+0.7225217238858642 0.34004905686238235 0.7225217238858642 0.34004905686238235 0.5404102441741733
+0.7250575632505303 0.33720404684596494 0.7250575632505303 0.33720404684596494 0.5404741882935967
+0.7377228476793829 0.3232378503968897 0.7377228476793829 0.3232378503968896 0.5326100736613782
+0.7352284151398694 0.32603710702093325 0.7352284151398694 0.3260371070209333 0.535151209207258
+0.7301609743376553 0.33156791582974215 0.7301609743376553 0.33156791582974215 0.5389344004326843
+0.7327120153852026 0.32880326254104614 0.7327120153852026 0.32880326254104614 0.5372750011490335
+0.7437323562128991 0.32123158837517146 0.7437323562128991 0.32123158837517146 0.5201945088582739
+0.7412122176594345 0.32402837738877927 0.7412122176594345 0.32402837738877927 0.52325064064585
+0.7497563423168231 0.3192206045293641 0.7497563423168231 0.3192206045293641 0.5073211750230109
+0.7523296908691653 0.31636649651321685 0.7523296908691653 0.31636649651321685 0.5035802240599726
+0.7600314262994167 0.30767350022142237 0.7600314262994167 0.30767350022142237 0.4917437914795361
+0.7574843586865533 0.31055166062986983 0.7574843586865533 0.3105516606298698 0.4956785107739536
+0.7549144543586489 0.31346159893769204 0.7549144543586489 0.31346159893769204 0.49965240012561013
+0.7625098117556712 0.30493452793857095 0.7625098117556712 0.30493452793857095 0.48798385980455583
+0.7635294585480171 0.3082716264021906 0.7635294585480171 0.3082716264021906 0.4832630329336421
+0.765019485043163 0.30226625935874496 0.765019485043163 0.302266259358745 0.48430390544891505
+0.7673623949286636 0.2996639707355265 0.7673623949286635 0.2996639707355265 0.4811783253840713
+0.7701171920279192 0.2972356327899478 0.7701171920279192 0.29723563278994775 0.4774687995009428
+0.7728734957227976 0.2951597311798215 0.7728734957227976 0.2951597311798215 0.47390085616708094
+0.7760258419907302 0.29292539610322976 0.7760258419907302 0.2929253961032297 0.4701734593541011
+0.7795506222893501 0.29085567097400233 0.7795506222893501 0.2908556709740023 0.4661404316586493
+0.7830059589755342 0.2887279800723889 0.7830059589755342 0.2887279800723889 0.4627610063138934
+0.7864162637511675 0.2866196147814743 0.7864162637511675 0.2866196147814743 0.459851370682585
+0.7898072865494928 0.28451995361294424 0.7898072865494928 0.2845199536129442 0.45729580893781635
+0.7931912773775296 0.2824284317024857 0.7931912773775296 0.2824284317024857 0.45497909696289135
+0.7965780311654763 0.2803354013229925 0.7965780311654763 0.28033540132299256 0.4527963642364263
+0.7999673940883825 0.2782426810242116 0.7999673940883825 0.2782426810242116 0.4506417100858177
+0.803357768880203 0.276150627615034 0.803357768880203 0.276150627615034 0.44841672561884655
+0.8067481521753709 0.2740585774058286 0.8067481521753709 0.2740585774058286 0.44603326867058296
+0.8101385354705394 0.2719665271966229 0.8101385354705394 0.2719665271966229 0.4434157068991869
+0.8135289187657081 0.26987447698741723 0.8135289187657081 0.26987447698741723 0.44050716150927566
+0.816919302060877 0.2677824267782118 0.816919302060877 0.2677824267782118 0.4372726264477071
+0.820309685356046 0.26569037656900646 0.820309685356046 0.26569037656900646 0.4337010610003363
+0.823700068651215 0.2635983263598014 0.823700068651215 0.2635983263598014 0.42980642855435197
+0.827090451946384 0.2615062761505963 0.8270904519463841 0.26150627615059635 0.42562765495002036
+0.8304808352415529 0.25941422594139113 0.8304808352415529 0.25941422594139113 0.42122747994888016
+0.8338712185367217 0.257322175732186 0.8338712185367217 0.257322175732186 0.41669017428455685
+0.8372616018318908 0.25523012552298097 0.8372616018318908 0.25523012552298097 0.4121181018620533
+0.8406519851270597 0.25313807531377586 0.8406519851270599 0.2531380753137759 0.40762713258406075
+0.8440423684222286 0.25104602510457075 0.8440423684222286 0.25104602510457075 0.4033409658340958
+0.8474327517173975 0.2489539748953657 0.8474327517173975 0.24895397489536572 0.39938451393596325
+0.8508231350125666 0.24686192468616053 0.8508231350125666 0.24686192468616053 0.3958766172266703
+0.8542135183077356 0.24476987447695545 0.8542135183077356 0.24476987447695545 0.3929225039715924
+0.8576039016029045 0.24267782426775034 0.8576039016029045 0.24267782426775034 0.3906065413877444
+0.8609942848980733 0.24058577405854528 0.8609942848980733 0.24058577405854528 0.3889859098145409
+0.8643846681932423 0.23849372384934012 0.8643846681932423 0.23849372384934012 0.3880858312557349
+0.8677750514884113 0.23640167364013495 0.8677750514884114 0.23640167364013495 0.38789687171785886
+0.8711654347835801 0.23430962343092987 0.8711654347835801 0.23430962343092987 0.388374618930063
+0.874555818078749 0.23221757322172482 0.874555818078749 0.23221757322172484 0.38944175209046
+0.8779462013739181 0.23012552301251965 0.8779462013739181 0.23012552301251965 0.39099223102640873
+0.8813365846690872 0.2280334728033145 0.8813365846690872 0.2280334728033145 0.39289710335876804
+0.884726967964256 0.22594142259410943 0.884726967964256 0.22594142259410943 0.39501130377653654
+0.8881173512594248 0.22384937238490435 0.8881173512594248 0.22384937238490435 0.3971808096326113
+0.8915077345545939 0.2217573221756992 0.8915077345545939 0.2217573221756992 0.39924960082685
+0.8948981178497628 0.2196652719664941 0.8948981178497629 0.21966527196649413 0.4010660106898098
+0.8982885011449318 0.217573221757289 0.8982885011449318 0.217573221757289 0.4024882080291799
+0.9016788844401007 0.21548117154808388 0.9016788844401006 0.21548117154808386 0.4033886882154181
+0.9050692677352696 0.21338912133887877 0.9050692677352696 0.21338912133887877 0.4036577568166866
+0.9084596510304386 0.21129707112967366 0.9084596510304387 0.2112970711296737 0.4032060589854221
+0.9118500343256075 0.20920502092046855 0.9118500343256075 0.20920502092046855 0.40196624580650475
+0.9152404176207765 0.20711297071126344 0.9152404176207763 0.20711297071126342 0.3998938830184611
+0.9186308009159454 0.20502092050205833 0.9186308009159454 0.20502092050205833 0.3969677061665653
+0.9220211842111143 0.20292887029285323 0.9220211842111145 0.20292887029285325 0.3931893162263269
+0.9254115675062833 0.20083682008364812 0.9254115675062833 0.20083682008364812 0.3885823960047248
+0.9288019508014522 0.198744769874443 0.9288019508014521 0.198744769874443 0.3831915133441524
+0.9321923340966212 0.1966527196652379 0.9321923340966212 0.1966527196652379 0.37708056411423346
+0.9355827173917901 0.1945606694560328 0.9355827173917902 0.1945606694560328 0.37033089709606415
+0.938973100686959 0.19246861924682768 0.938973100686959 0.19246861924682768 0.36303915460931296
+0.942363483982128 0.19037656903762257 0.9423634839821279 0.19037656903762257 0.3553148574495452
+0.9457538672772969 0.18828451882841746 0.9457538672772969 0.18828451882841746 0.34727776083064293
+0.9491442505724659 0.18619246861921235 0.949144250572466 0.18619246861921235 0.3390550102011958
+0.9525346338676348 0.18410041841000724 0.9525346338676348 0.18410041841000724 0.330778132819518
+0.9559250171628038 0.18200836820080213 0.9559250171628036 0.18200836820080213 0.32257991357006494
+0.9593154004579727 0.17991631799159702 0.9593154004579727 0.17991631799159702 0.31459122194124284
+0.9627057837531416 0.1778242677823919 0.9627057837531418 0.1778242677823919 0.3069378804952509
+0.9660961670483106 0.1757322175731868 0.9660961670483106 0.1757322175731868 0.2997376908195648
+0.9694865503434795 0.1736401673639817 0.9694865503434794 0.1736401673639817 0.293097755716538
+0.9728769336386485 0.17154811715477658 0.9728769336386485 0.17154811715477658 0.28711224878050284
+0.9762673169338174 0.16945606694557147 0.9762673169338175 0.16945606694557147 0.2818607758965384
+0.9796577002289864 0.16736401673636636 0.9796577002289864 0.16736401673636636 0.27740744030490366
+0.9830480835241553 0.16527196652716125 0.9830480835241552 0.16527196652716125 0.2738006612255337
+0.9864384668193242 0.16317991631795614 0.9864384668193242 0.16317991631795614 0.27107371097257976
+0.9898288501144932 0.16108786610875103 0.9898288501144933 0.16108786610875103 0.26924584112061584
+0.9932192334096621 0.15899581589954592 0.9932192334096621 0.15899581589954592 0.26832378502575205
+0.16317991631799164 0.9932192334096621 0.16317991631799164 0.9932192334096621 0.13194803696909904
+0.16527196652719664 0.9898288501144933 0.16527196652719664 0.9898288501144933 0.13462146554381135
+0.16736401673640167 0.9864384668193242 0.16736401673640167 0.9864384668193242 0.1376152516941913
+0.16945606694560666 0.9830480835241553 0.16945606694560666 0.9830480835241552 0.14086719175618276
+0.17154811715481166 0.9796577002289865 0.17154811715481166 0.9796577002289865 0.14430885031257515
+0.17364016736401666 0.9762673169338175 0.17364016736401666 0.9762673169338175 0.1478679894583432
+0.17573221757322166 0.9728769336386485 0.17573221757322166 0.9728769336386485 0.1514708048641501
+0.17782426778242674 0.9694865503434794 0.17782426778242674 0.9694865503434794 0.1550438968314675
+0.17991631799163169 0.9660961670483106 0.17991631799163169 0.9660961670483106 0.15851595832745094
+0.18200836820083677 0.9627057837531416 0.18200836820083677 0.9627057837531418 0.16181919727555047
+0.18410041841004185 0.9593154004579727 0.18410041841004185 0.9593154004579727 0.16489052870371348
+0.186192468619247 0.9559250171628038 0.186192468619247 0.9559250171628036 0.16767257804906685
+0.1882845188284522 0.9525346338676348 0.1882845188284522 0.9525346338676348 0.17011453471545643
+0.19037656903765746 0.949144250572466 0.19037656903765746 0.949144250572466 0.17217288874641443
+0.1924686192468628 0.9457538672772973 0.1924686192468628 0.9457538672772973 0.1738120758367299
+0.1945606694560681 0.9423634839821285 0.1945606694560681 0.9423634839821285 0.175005048346327
+0.1966527196652734 0.9389731006869603 0.1966527196652734 0.9389731006869603 0.1757337831238763
+0.1987447698744787 0.9355827173917921 0.19874476987447867 0.9355827173917922 0.17598973083599792
+0.20083682008368334 0.9321923340966239 0.20083682008368334 0.9321923340966239 0.17577420580436523
+0.2029288702928875 0.9288019508014563 0.2029288702928875 0.9288019508014563 0.1750987095215997
+0.2050209205020912 0.9254115675062881 0.2050209205020912 0.9254115675062881 0.1739851743479783
+0.2071129707112942 0.9220211842111193 0.2071129707112942 0.9220211842111193 0.17246610560902734
+0.20920502092049742 0.9186308009159504 0.20920502092049742 0.9186308009159504 0.1705845896619217
+0.21129707112970195 0.9152404176207809 0.21129707112970195 0.915240417620781 0.1683941219171734
+0.21338912133890842 0.911850034325612 0.21338912133890844 0.911850034325612 0.16595819226409134
+0.21548117154811733 0.9084596510304438 0.21548117154811733 0.9084596510304438 0.16334954691596737
+0.2175732217573292 0.9050692677352785 0.2175732217573292 0.9050692677352785 0.16064902831992053
+0.21966527196654514 0.9016788844401176 0.21966527196654514 0.9016788844401177 0.15794388424874461
+0.22175732217575828 0.8982885011449531 0.22175732217575828 0.8982885011449531 0.15532544275681082
+0.22384937238497868 0.894898117849798 0.22384937238497868 0.894898117849798 0.1528860835360841
+0.22594142259420244 0.8915077345546436 0.22594142259420244 0.8915077345546436 0.15071551056150875
+0.22803347280343442 0.8881173512595035 0.22803347280343442 0.8881173512595035 0.1488964516292003
+0.23012552301267253 0.8847269679643791 0.2301255230126725 0.8847269679643791 0.147500067886559
+0.23221757322190975 0.8813365846693005 0.23221757322190975 0.8813365846693005 0.14658151805324351
+0.2343096234311194 0.8779462013742366 0.2343096234311194 0.8779462013742366 0.14617623332613897
+0.23640167364026535 0.8745558180792629 0.23640167364026535 0.8745558180792629 0.14629746087176979
+0.2384937238493716 0.8711654347841962 0.2384937238493716 0.8711654347841961 0.14693549284571286
+0.24058577405839435 0.8677750514891228 0.24058577405839435 0.8677750514891228 0.14805873329659971
+0.2426778242675375 0.8643846681940843 0.2426778242675375 0.8643846681940843 0.14961644127350082
+0.24476987447693643 0.8609942848991486 0.24476987447693643 0.8609942848991486 0.1515427230695439
+0.2468619246867276 0.8576039016044564 0.2468619246867276 0.8576039016044564 0.15376120503932608
+0.24895397489695661 0.8542135183103711 0.24895397489695661 0.8542135183103711 0.1561898212461413
+0.25104602510707585 0.8508231350168273 0.25104602510707585 0.8508231350168273 0.1587452641251099
+0.25313807531729765 0.8474327517235634 0.25313807531729765 0.8474327517235632 0.1613468115294401
+0.2552301255266702 0.844042368430634 0.2552301255266702 0.8440423684306338 0.16391940428315888
+0.2573221757370132 0.8406519851375719 0.2573221757370132 0.8406519851375719 0.16639597104942827
+0.259414225947669 0.8372616018445709 0.259414225947669 0.8372616018445708 0.16871907189327404
+0.26150627616045813 0.8338712185534923 0.26150627616045813 0.8338712185534923 0.17084196448405922
+0.26359832637606667 0.8304808352645483 0.26359832637606667 0.8304808352645484 0.1727291999258809
+0.265690376594461 0.8270904519848212 0.265690376594461 0.8270904519848212 0.17435684157228779
+0.26778242681011627 0.8237000687093429 0.26778242681011627 0.8237000687093429 0.1757123793877682
+0.26987447701786654 0.8203096854524282 0.26987447701786654 0.8203096854524282 0.17679439080636447
+0.2719665272192732 0.8169193021826734 0.2719665272192732 0.8169193021826734 0.17761197970271955
+0.2740585774091937 0.8135289189142364 0.2740585774091937 0.8135289189142364 0.17818401002867376
+0.276150627617333 0.8101385356510743 0.27615062761733306 0.8101385356510743 0.17853814008483657
+0.27824267790544455 0.8067481524059232 0.27824267790544455 0.8067481524059232 0.17870965802098002
+0.28033479461737326 0.8033579575796019 0.28033479461737326 0.8033579575796018 0.17874033791442503
+0.2824273353256364 0.7999689838720099 0.2824273353256364 0.7999689838720099 0.1786776727665619
+0.2845194381111404 0.7965839033344887 0.2845194381111404 0.7965839033344887 0.1785720113332877
+0.2866077921902112 0.7932060053572764 0.2866077921902112 0.7932060053572764 0.17847223306863538
+0.28868904998998296 0.7898363700284087 0.28868904998998296 0.7898363700284087 0.17842408617776961
+0.2907519573685347 0.7864769019898245 0.2907519573685347 0.7864769019898245 0.17846039527896315
+0.3079515128665056 0.7594034513330985 0.3079515128665056 0.7594034513330986 0.18652546518390548
+0.3099363981849155 0.7563446980386401 0.3099363981849155 0.7563446980386401 0.18837912025398298
+0.29278692570171566 0.7831247433072305 0.29278692570171566 0.7831247433072305 0.1786066393909859
+0.2947975445110226 0.7797688889911569 0.2947975445110225 0.7797688889911569 0.17889354966630278
+0.2968084048129556 0.7763994778014359 0.2968084048129556 0.7763994778014359 0.17937402186111395
+0.30022968844307857 0.7694486710455536 0.30022968844307857 0.7694486710455536 0.18011006810484667
+0.2989628941230972 0.7730112537579844 0.29896289412309723 0.7730112537579844 0.18024588075319858
+0.3088550438792673 0.7621858755741341 0.3088550438792673 0.7621858755741341 0.18852717027196744
+0.30770049863411914 0.7648114663386636 0.30770049863411914 0.7648114663386636 0.1878839499479167
+0.3038749339153494 0.7688745453063512 0.3038749339153494 0.7688745453063514 0.18456651277347977
+0.30652168080891656 0.7674059825657952 0.30652168080891656 0.7674059825657952 0.18735624986672053
+0.3152782185071991 0.7527472357061372 0.3152782185071991 0.7527472357061372 0.1948258015014455
+0.3136615030799873 0.7563715353801435 0.31366150307998725 0.7563715353801435 0.1934152337636459
+0.32793191504378627 0.7262739555064326 0.32793191504378627 0.7262739555064326 0.2091023909526065
+0.3168682552890523 0.749239551568083 0.3168682552890523 0.749239551568083 0.19638788223350737
+0.32653462790697785 0.728857347424342 0.32653462790697785 0.7288573474243422 0.2074129000820526
+0.3221539182679955 0.7328995162577643 0.3221539182679955 0.7328995162577643 0.20173284181751752
+0.32517594481217066 0.7314562844759873 0.32517594481217066 0.7314562844759873 0.2058088789380555
+0.3184327909957992 0.7457788896511929 0.3184327909957992 0.7457788896511929 0.19804008710170318
+0.32281386781587285 0.7363127795208635 0.32281386781587285 0.7363127795208635 0.20301680688997797
+0.3212850668343997 0.7391779091344464 0.3212850668343998 0.7391779091344465 0.2011971764251582
+0.3199357459066731 0.7423927455013922 0.3199357459066731 0.7423927455013922 0.19969468051610875
+0.33333057169836766 0.7183446690583843 0.33333057169836766 0.7183446690583843 0.21593185618954217
+0.33175673691341895 0.7218224571772085 0.33175673691341895 0.7218224571772085 0.21418069820233906
+0.3306508371013513 0.725250946811727 0.3306508371013513 0.7252509468117269 0.2130530948844307
+0.34184298815488784 0.7073911187866733 0.34184298815488784 0.7073911187866733 0.2273240572191788
+0.3402574011819363 0.7108218225301005 0.3402574011819363 0.7108218225301005 0.22555525331478496
+0.3386748245441822 0.7142764623506115 0.3386748245441822 0.7142764623506115 0.2237484459503528
+0.3371026714359848 0.7177514083900519 0.3371026714359848 0.7177514083900519 0.221909995616588
+0.34988250168682905 0.6965324705648235 0.34988250168682905 0.6965324705648235 0.23879648962362995
+0.34842926955936115 0.6999498164354195 0.34842926955936115 0.6999498164354195 0.23719234772412998
+0.3469603800083062 0.7033532108187666 0.34696038000830626 0.7033532108187667 0.2355218757374977
+0.3454394436241197 0.7067782971528777 0.3454394436241197 0.7067782971528777 0.23372234517191484
+0.35929180753055184 0.6820013603896493 0.35929180753055184 0.6820013603896493 0.253019552543634
+0.3578164151541035 0.685532280329078 0.3578164151541035 0.685532280329078 0.25119536156730465
+0.3563468297584793 0.6890593884036714 0.3563468297584793 0.6890593884036714 0.24941786954959752
+0.35484254535583554 0.6925531792077927 0.35484254535583554 0.6925531792077927 0.24757365409587614
+0.3533235817656494 0.6959844600021139 0.35332358176564943 0.6959844600021139 0.24567352559552788
+0.3627877583503958 0.6815937664297382 0.3627877583503958 0.6815937664297382 0.2609723864238936
+0.38204727891858453 0.6517969051482756 0.38204727891858453 0.6517969051482756 0.3017214991577515
+0.3704805322828063 0.670372587422132 0.37048053228280636 0.6703725874221319 0.2752658362583062
+0.36577490897981185 0.6746721393688389 0.36577490897981185 0.6746721393688389 0.26530803699535443
+0.36436757692653843 0.6781574735259874 0.36436757692653843 0.6781574735259874 0.26331407178239274
+0.36899878795747654 0.6741191916192084 0.36899878795747654 0.6741191916192085 0.27294917788592626
+0.3746187487576169 0.6673787118890686 0.3746187487576169 0.6673787118890686 0.2845514439343201
+0.3734055539654208 0.6700931806349064 0.3734055539654208 0.6700931806349065 0.2823327975425997
+0.3806962099654329 0.655404074825276 0.3806962099654329 0.655404074825276 0.29810722210761637
+0.37932666168974233 0.6590865565866637 0.37932666168974233 0.6590865565866637 0.29484781740549443
+0.3781101009117698 0.6627087173880674 0.3781101009117698 0.6627087173880674 0.29228947550448997
+0.3772653585099053 0.6661376750322148 0.3772653585099053 0.6661376750322149 0.29084729569180273
+0.38687092499555825 0.6472986850059758 0.38687092499555825 0.6472986850059758 0.3151869456198371
+0.3855980482098431 0.6508573438358746 0.3855980482098431 0.6508573438358746 0.3110624087452791
+0.39028339023933406 0.6463114599036408 0.39028339023933406 0.6463114599036408 0.3243881288343076
+0.39361628636995394 0.6452692122404404 0.39361628636995394 0.6452692122404403 0.33334451263923537
+0.39686925611258256 0.6441545747687693 0.39686925611258256 0.6441545747687693 0.3420658179426761
+0.4000585301011852 0.6428612913109218 0.4000585301011852 0.6428612913109218 0.3507257369757379
+0.40079260096528074 0.6393120736967381 0.40079260096528074 0.639312073696738 0.3554167187597192
+0.403188542154445 0.6417761633184306 0.403188542154445 0.6417761633184306 0.3589908414262388
+0.3949478970048398 0.5468948389170007 0.39494789700483984 0.5468948389170007 0.28673346954860124
+0.393614912508165 0.5502885477278867 0.393614912508165 0.5502885477278867 0.30108506682161873
+0.3923352959213054 0.5551416746990347 0.3923352959213054 0.5551416746990347 0.32228721676471905
+0.39408165772482484 0.552731993952257 0.39408165772482484 0.552731993952257 0.32138470557651505
+0.39191915791098914 0.5601674552076435 0.39191915791098914 0.5601674552076435 0.34697665246082193
+0.3936403171231944 0.5573613819483566 0.3936403171231944 0.5573613819483566 0.3472927526617295
+0.39100138832402476 0.563075959697336 0.3910013883240247 0.5630759596973361 0.3526075597938154
+0.39078988171537365 0.5655467679894881 0.39078988171537365 0.5655467679894881 0.3610062257785902
+0.393491066036053 0.5616826608757381 0.393491066036053 0.5616826608757381 0.36947859397128435
+0.39005925133853836 0.5706527411657439 0.39005925133853836 0.5706527411657439 0.37163357514556483
+0.392310679065818 0.5675859483841855 0.392310679065818 0.5675859483841855 0.38280485588442414
+0.391101552958886 0.5737061302752663 0.391101552958886 0.5737061302752663 0.3883332491270062
+0.3893881297486966 0.5772265688842185 0.3893881297486966 0.5772265688842185 0.3798876980464526
+0.38937079023661164 0.5805173891013298 0.38937079023661164 0.5805173891013298 0.38352189479958304
+0.3924714675672849 0.5762439980904799 0.3924714675672849 0.5762439980904799 0.40482776007888593
+0.3889315318417508 0.5865762446480858 0.3889315318417508 0.5865762446480858 0.3829693734012701
+0.3909000823492398 0.5830672250129877 0.39090008234923973 0.5830672250129877 0.39721351299402924
+0.39078139690444946 0.5900534524963233 0.3907813969044494 0.5900534524963233 0.39491492280490664
+0.39070008199467476 0.5940242542749011 0.3907000819946748 0.5940242542749011 0.39086267900129773
+0.3903297101656764 0.5970661713107814 0.3903297101656764 0.5970661713107814 0.3850437180432207
+0.3917968224473807 0.5993580366074651 0.3917968224473807 0.5993580366074651 0.3903848946598558
+0.391956106822643 0.6054963024195735 0.391956106822643 0.6054963024195735 0.38090278543306116
+0.3933777045701103 0.602114206909341 0.3933777045701103 0.602114206909341 0.394277325547494
+0.3937738725393888 0.6085047789844711 0.3937738725393887 0.6085047789844711 0.38371873695561726
+0.39434086508500815 0.6153071868487787 0.39434086508500815 0.6153071868487787 0.3725350041046957
+0.39568600016388705 0.6117614254625678 0.39568600016388705 0.6117614254625678 0.38510832442524684
+0.3964285998924484 0.6183817136138838 0.3964285998924484 0.6183817136138838 0.374134133002485
+0.39748464775898956 0.6251207236748915 0.39748464775898956 0.6251207236748915 0.365117658211689
+0.39858936901268965 0.6213930664737829 0.39858936901268965 0.6213930664737829 0.3754014878054685
+0.39975602700497026 0.6281817297811216 0.39975602700497026 0.6281817297811215 0.3667026805466365
+0.40093328199794537 0.6357456772521888 0.4009332819979453 0.6357456772521887 0.35951571820106043
+0.4022656616342645 0.6313592075906759 0.4022656616342645 0.6313592075906759 0.36861620012259505
+0.39954065403692035 0.547149410327467 0.39954065403692035 0.5471494103274671 0.32497706976882285
+0.4039015014174281 0.5473461670315661 0.40390150141742803 0.5473461670315661 0.3748170605714937
+0.5772532894458837 0.4149389014787257 0.5772532894458838 0.4149389014787257 1.0497139137522995
+0.5808254085522694 0.41441995719779295 0.5808254085522694 0.41441995719779295 1.0365278836357847
+0.5857131827562896 0.41477918661656793 0.5857131827562895 0.41477918661656793 1.0172381724233208
+0.5831131321074097 0.41560658608736095 0.5831131321074097 0.41560658608736095 1.0316247553060618
+0.5900285122442492 0.4151557659161283 0.5900285122442491 0.4151557659161283 0.9940566654768234
+0.5874507414472406 0.4167044353447523 0.5874507414472406 0.4167044353447524 1.0108649144894921
+0.5950929053901989 0.4156085076962569 0.5950929053901989 0.41560850769625685 0.9610772989121797
+0.5921973760236632 0.41675888329951616 0.5921973760236633 0.4167588832995161 0.9802283013057688
+0.5968934721738601 0.41736223195584143 0.5968934721738601 0.41736223195584143 0.9449554766315323
+0.6024333596462312 0.4176073507157965 0.6024333596462313 0.4176073507157965 0.9011805884292533
+0.5992436014309427 0.41759522206641875 0.5992436014309427 0.4175952220664188 0.9263508416902603
+0.5764302463137255 0.4195584642056939 0.5764302463137255 0.4195584642056939 1.0759991759431975
+0.5755136808790788 0.4240103196770097 0.5755136808790788 0.4240103196770097 1.1005005244563764
+0.6092632940945627 0.4099309908995397 0.6092632940945627 0.40993099089953977 0.8747884848607457
+0.6077818650139932 0.4136514383022767 0.6077818650139931 0.41365143830227674 0.8738025581360201
+0.612905277785049 0.41009013136912026 0.6129052777850489 0.41009013136912026 0.8490990646044737
+0.6160498640027661 0.40990617461938395 0.6160498640027661 0.409906174619384 0.8277858107437869
+0.6193657355281041 0.40999180003097535 0.6193657355281043 0.4099918000309754 0.8041512622908131
+0.6226047536069821 0.4104447472929622 0.6226047536069821 0.4104447472929622 0.7794101495433576
+0.6057383763469381 0.4171898318747274 0.6057383763469381 0.4171898318747274 0.8763482304624804
+0.6477874320083188 0.39714057186817553 0.6477874320083189 0.39714057186817553 0.673842612659732
+0.6443461821250065 0.3971416190932085 0.6443461821250064 0.3971416190932085 0.694366214373724
+0.6342333128729393 0.3973263342809996 0.6342333128729393 0.3973263342809996 0.7544627393413625
+0.6408774820975296 0.3973410815821431 0.6408774820975296 0.39734108158214315 0.7145170355811219
+0.6376145769308317 0.3973992824360976 0.6376145769308317 0.3973992824360976 0.7339647866597002
+0.6321545704513288 0.4005268490808758 0.6321545704513288 0.4005268490808758 0.7565499827545982
+0.630112364023345 0.40389998805815636 0.6301123640233451 0.40389998805815636 0.7568953819059384
+0.6281053966931389 0.4072332359595307 0.6281053966931389 0.4072332359595307 0.7561010230387523
+0.6260563048181962 0.41052570264329047 0.6260563048181962 0.41052570264329047 0.7546422778107664
+0.699593893517044 0.352557488058949 0.699593893517044 0.352557488058949 0.5657499551848554
+0.7029360931244764 0.3530398745023667 0.7029360931244764 0.3530398745023667 0.5557896233505488
+0.6869554488877663 0.355501776185567 0.6869554488877663 0.355501776185567 0.5960989340460077
+0.6811103411439617 0.35810802382778356 0.6811103411439617 0.35810802382778356 0.6103966022476776
+0.6685719867762842 0.3697392596658469 0.6685719867762842 0.3697392596658469 0.6382018451738767
+0.6752523720508943 0.3606257488790441 0.6752523720508944 0.3606257488790441 0.6271146365020499
+0.6708751139094273 0.3667005743390882 0.6708751139094273 0.36670057433908815 0.6338896124873878
+0.6729926754933638 0.3636144886940395 0.6729926754933638 0.3636144886940395 0.6307092737539852
+0.6787895427921701 0.36112146128385175 0.6787895427921701 0.36112146128385175 0.6129965278592205
+0.6696336753867104 0.37307442065347524 0.6696336753867104 0.37307442065347524 0.6266241310900242
+0.6846333520181106 0.3585802904762075 0.6846333520181106 0.3585802904762075 0.597369466192523
+0.6960571147439534 0.35269413181711773 0.6960571147439535 0.35269413181711773 0.5751883559916994
+0.6927805957124471 0.3527004748611886 0.6927805957124472 0.3527004748611886 0.5844129192911028
+0.6906171473376395 0.3558334053980061 0.6906171473376395 0.3558334053980061 0.583984797913547
+0.6979134507097497 0.35499037212672785 0.6979134507097497 0.35499037212672785 0.5644207010614682
+0.6673645446297883 0.3760298739458602 0.6673645446297883 0.3760298739458601 0.6305643748186059
+0.6651220723383788 0.37908132336382094 0.665122072338379 0.3790813233638209 0.6341740540957456
+0.6628030321333568 0.38213761512087907 0.6628030321333568 0.38213761512087907 0.6380864890568326
+0.6604910273467167 0.38520920651443086 0.6604910273467167 0.38520920651443086 0.6417330855490128
+0.658168061752311 0.3882593192323202 0.658168061752311 0.3882593192323202 0.6451861054997647
+0.6558498235413383 0.39127907277032953 0.6558498235413383 0.39127907277032953 0.6482936047377933
+0.6512707213464545 0.39724077474407204 0.6512707213464545 0.39724077474407204 0.6528352706532471
+0.653548635118093 0.39427302904399353 0.653548635118093 0.39427302904399353 0.6508817369691239
+0.712374445238151 0.3512618092743777 0.712374445238151 0.3512618092743777 0.5369783312360664
+0.706372055111362 0.3535040047721317 0.706372055111362 0.3535040047721317 0.5457971996903909
+0.7098547690902489 0.35402087785858877 0.7098547690902489 0.35402087785858877 0.5357572131259883
+0.715945667596781 0.3518332317700225 0.715945667596781 0.3518332317700225 0.5271015410123159
+0.7185152416021033 0.3490719521970846 0.7185152416021033 0.3490719521970846 0.5284022061911382
+0.7472134781596362 0.32202702452170484 0.7472134781596362 0.3220270245217049 0.5107408659677315
+0.7210856271265085 0.34629062243240294 0.7210856271265085 0.34629062243240294 0.5295112736990119
+0.7236467711893732 0.34349081498977907 0.7236467711893732 0.34349081498977907 0.5303521551040049
+0.7311356946070339 0.33505027879026955 0.7311356946070339 0.33505027879026955 0.5307018388862582
+0.7286529475974305 0.3378347278533416 0.7286529475974305 0.3378347278533416 0.5311095451969746
+0.7261790950772016 0.34067581912907874 0.7261790950772015 0.3406758191290788 0.5308756841739531
+0.738710246781052 0.32687034304153295 0.7387102467810519 0.32687034304153295 0.5257219247995534
+0.7362298555400675 0.3296478726509702 0.7362298555400675 0.3296478726509702 0.5277373747938059
+0.7337028687952217 0.33233248235492924 0.7337028687952217 0.33233248235492924 0.5294640917153801
+0.7346003620344114 0.33573063487945976 0.7346003620344114 0.33573063487945976 0.5214219670300081
+0.7446913036322208 0.3248045169428217 0.7446913036322208 0.3248045169428217 0.5137772520256488
+0.7421598456985737 0.3275840839395968 0.7421598456985737 0.32758408393959687 0.5164057758071873
+0.7506769494881999 0.32286049660873917 0.7506769494881999 0.32286049660873917 0.5011756344928298
+0.7532662533846062 0.3200405506672035 0.7532662533846062 0.3200405506672035 0.497769299029081
+0.7559228345465544 0.3171312513835787 0.7559228345465544 0.3171312513835787 0.49403245184558015
+0.7611182001482231 0.3111574257230392 0.7611182001482231 0.3111574257230392 0.48659535828416883
+0.7585417344108559 0.314087328689887 0.7585417344108559 0.31408732868988704 0.4903382735256581
+0.7644526361222731 0.3115582074648143 0.7644526361222731 0.3115582074648143 0.47843499558109487
+0.7660807813959174 0.30557717441570337 0.7660807813959174 0.30557717441570337 0.47961388635827845
+0.7669831069274655 0.30872772515774505 0.7669831069274656 0.3087277251577451 0.4750424671889359
+0.7687549125988317 0.3030252908355998 0.7687549125988317 0.30302529083559987 0.4757994424412626
+0.7703176678282663 0.30039296021403994 0.7703176678282663 0.30039296021403994 0.47451983316341595
+0.7734214544637948 0.2992130211002572 0.7734214544637948 0.2992130211002572 0.46944954171954906
+0.776461342304444 0.29717955396568896 0.7764613423044439 0.29717955396568896 0.4655397803800502
+0.7796671207801181 0.2950390744872692 0.7796671207801181 0.29503907448726924 0.4618340849022365
+0.7830211460866946 0.2929173675858759 0.7830211460866946 0.2929173675858759 0.4583126115811709
+0.7864133116570421 0.29080715300276344 0.7864133116570421 0.29080715300276344 0.45514346334143224
+0.7898052065197455 0.28870361689359575 0.7898052065197455 0.28870361689359575 0.4523322072433917
+0.793191492967864 0.2866104547704636 0.793191492967864 0.2866104547704636 0.44980027140940176
+0.7965781610272962 0.28451913765234055 0.7965781610272962 0.28451913765234055 0.4474538076079005
+0.7999674386174976 0.2824267792180771 0.7999674386174976 0.2824267792180771 0.445193547133419
+0.8033577688802042 0.28033472803344 0.8033577688802042 0.28033472803344 0.44291974832190734
+0.8067481521753722 0.2782426778242371 0.8067481521753722 0.2782426778242371 0.4405400862810552
+0.8101385354705403 0.2761506276150328 0.8101385354705403 0.2761506276150328 0.43797212941832525
+0.8135289187657087 0.27405857740582773 0.8135289187657087 0.27405857740582773 0.435149691827621
+0.816919302060877 0.2719665271966223 0.816919302060877 0.2719665271966223 0.43202665125242884
+0.820309685356046 0.26987447698741696 0.820309685356046 0.2698744769874169 0.42857971877029283
+0.823700068651215 0.2677824267782117 0.823700068651215 0.2677824267782117 0.42481017524178816
+0.8270904519463841 0.26569037656900657 0.8270904519463841 0.26569037656900657 0.42074453652820337
+0.8304808352415529 0.2635983263598014 0.8304808352415529 0.2635983263598014 0.4164341132228433
+0.8338712185367219 0.2615062761505963 0.8338712185367217 0.26150627615059635 0.4119534275896413
+0.8372616018318908 0.2594142259413912 0.8372616018318908 0.2594142259413912 0.40739745022852586
+0.8406519851270599 0.25732217573218613 0.8406519851270599 0.25732217573218613 0.40287763258339915
+0.8440423684222287 0.25523012552298097 0.8440423684222287 0.25523012552298097 0.39851675024404404
+0.8474327517173976 0.25313807531377586 0.8474327517173975 0.2531380753137759 0.39444264575745996
+0.8508231350125666 0.2510460251045708 0.8508231350125666 0.2510460251045708 0.39078107235610743
+0.8542135183077356 0.24895397489536567 0.8542135183077356 0.24895397489536567 0.3876479849113547
+0.8576039016029045 0.24686192468616056 0.8576039016029045 0.24686192468616056 0.38514177981018055
+0.8609942848980734 0.24476987447695547 0.8609942848980733 0.2447698744769555 0.3833361143267644
+0.8643846681932423 0.24267782426775034 0.8643846681932423 0.24267782426775034 0.38227399314926597
+0.8677750514884114 0.24058577405854523 0.8677750514884114 0.24058577405854523 0.38196375645366104
+0.8711654347835802 0.2384937238493401 0.8711654347835802 0.2384937238493401 0.38237742673399694
+0.8745558180787492 0.23640167364013503 0.874555818078749 0.23640167364013506 0.38345159431793396
+0.8779462013739181 0.2343096234309299 0.8779462013739181 0.2343096234309299 0.3850907027066351
+0.8813365846690872 0.2322175732217248 0.8813365846690872 0.2322175732217248 0.3871723087190037
+0.884726967964256 0.23012552301251965 0.884726967964256 0.23012552301251965 0.38955370135329653
+0.8881173512594249 0.22803347280331457 0.8881173512594248 0.22803347280331457 0.3920791968354915
+0.8915077345545939 0.22594142259410943 0.8915077345545939 0.22594142259410943 0.39458747681668654
+0.8948981178497628 0.22384937238490432 0.8948981178497629 0.2238493723849043 0.3969184658152019
+0.8982885011449318 0.2217573221756992 0.8982885011449318 0.2217573221756992 0.39891940704218715
+0.9016788844401007 0.2196652719664941 0.9016788844401006 0.21966527196649413 0.4004499534998081
+0.9050692677352696 0.217573221757289 0.9050692677352696 0.217573221757289 0.4013862192685654
+0.9084596510304386 0.21548117154808388 0.9084596510304387 0.21548117154808386 0.4016238250281199
+0.9118500343256075 0.21338912133887877 0.9118500343256075 0.21338912133887877 0.40108002401774456
+0.9152404176207765 0.21129707112967366 0.9152404176207763 0.2112970711296737 0.39969501757655634
+0.9186308009159454 0.20920502092046855 0.9186308009159454 0.20920502092046855 0.39743257236372775
+0.9220211842111143 0.20711297071126344 0.9220211842111145 0.20711297071126342 0.394280042556264
+0.9254115675062833 0.20502092050205833 0.9254115675062833 0.20502092050205833 0.39024788588921727
+0.9288019508014522 0.20292887029285323 0.9288019508014521 0.20292887029285325 0.3853687463361511
+0.9321923340966212 0.20083682008364812 0.9321923340966212 0.20083682008364812 0.3796961607995983
+0.9355827173917901 0.198744769874443 0.9355827173917902 0.198744769874443 0.3733029334933589
+0.938973100686959 0.1966527196652379 0.938973100686959 0.1966527196652379 0.3662792101952225
+0.942363483982128 0.1945606694560328 0.9423634839821279 0.1945606694560328 0.35873027543918207
+0.9457538672772969 0.19246861924682768 0.9457538672772969 0.19246861924682768 0.35077408929647835
+0.9491442505724659 0.19037656903762257 0.949144250572466 0.19037656903762257 0.3425385772787881
+0.9525346338676348 0.18828451882841746 0.9525346338676348 0.18828451882841746 0.3341586881454028
+0.9559250171628038 0.18619246861921235 0.9559250171628036 0.18619246861921235 0.32577324150002734
+0.9593154004579727 0.18410041841000724 0.9593154004579727 0.18410041841000724 0.3175216016962557
+0.9627057837531416 0.18200836820080213 0.9627057837531418 0.18200836820080213 0.3095402380175177
+0.9660961670483106 0.17991631799159702 0.9660961670483106 0.17991631799159702 0.3019592632938446
+0.9694865503434795 0.1778242677823919 0.9694865503434794 0.1778242677823919 0.2948990814182811
+0.9728769336386485 0.1757322175731868 0.9728769336386485 0.1757322175731868 0.28846731227664807
+0.9762673169338174 0.1736401673639817 0.9762673169338175 0.1736401673639817 0.28275619005481456
+0.9796577002289864 0.17154811715477658 0.9796577002289864 0.17154811715477658 0.2778406348138183
+0.9830480835241553 0.16945606694557147 0.9830480835241552 0.16945606694557147 0.2737771657757961
+0.9864384668193242 0.16736401673636636 0.9864384668193242 0.16736401673636636 0.2706037524650489
+0.9898288501144932 0.16527196652716125 0.9898288501144933 0.16527196652716125 0.26834059250066183
+0.9932192334096621 0.16317991631795614 0.9932192334096621 0.16317991631795614 0.2669916811371205
+0.16736401673640167 0.9932192334096621 0.16736401673640167 0.9932192334096621 0.13526184138049577
+0.16945606694560666 0.9898288501144933 0.16945606694560666 0.9898288501144933 0.1379255422416071
+0.17154811715481166 0.9864384668193242 0.17154811715481166 0.9864384668193242 0.14090730596250148
+0.17364016736401666 0.9830480835241553 0.17364016736401666 0.9830480835241552 0.14414326732736107
+0.17573221757322172 0.9796577002289864 0.1757322175732217 0.9796577002289864 0.14756297303696228
+0.17782426778242677 0.9762673169338174 0.17782426778242677 0.9762673169338175 0.15109200885881854
+0.17991631799163177 0.9728769336386485 0.17991631799163177 0.9728769336386485 0.15465442535610927
+0.18200836820083685 0.9694865503434795 0.18200836820083685 0.9694865503434794 0.15817487759098067
+0.18410041841004188 0.9660961670483106 0.18410041841004188 0.9660961670483106 0.1615804540552265
+0.186192468619247 0.9627057837531416 0.186192468619247 0.9627057837531418 0.16480221016123967
+0.18828451882845207 0.9593154004579727 0.18828451882845207 0.9593154004579727 0.16777644312973308
+0.19037656903765723 0.9559250171628038 0.19037656903765723 0.9559250171628036 0.17044575253104668
+0.19246861924686245 0.9525346338676349 0.19246861924686245 0.9525346338676349 0.1727599291748282
+0.19456066945606768 0.9491442505724663 0.19456066945606768 0.9491442505724663 0.17467670874990052
+0.19665271966527284 0.9457538672772975 0.19665271966527284 0.9457538672772975 0.17616241851611794
+0.1987447698744779 0.942363483982129 0.1987447698744779 0.942363483982129 0.1771925371172981
+0.20083682008368278 0.9389731006869607 0.20083682008368278 0.9389731006869607 0.17775217993385353
+0.20292887029288734 0.9355827173917926 0.20292887029288734 0.9355827173917924 0.17783651538584708
+0.20502092050209164 0.9321923340966239 0.20502092050209164 0.9321923340966239 0.17745111087580676
+0.20711297071129545 0.9288019508014552 0.20711297071129545 0.9288019508014552 0.1766122000152306
+0.20920502092049933 0.925411567506286 0.20920502092049933 0.925411567506286 0.17534685465481073
+0.2112970711297039 0.9220211842111167 0.2112970711297039 0.9220211842111167 0.17369303523992888
+0.21338912133890955 0.9186308009159473 0.21338912133890955 0.9186308009159473 0.17169948045160285
+0.21548117154811655 0.9152404176207787 0.21548117154811655 0.9152404176207787 0.1694253816524152
+0.21757322175732532 0.9118500343256112 0.21757322175732532 0.9118500343256112 0.1669397698442097
+0.21966527196653565 0.9084596510304447 0.21966527196653565 0.9084596510304447 0.16432052467924363
+0.2217573221757471 0.90506926773528 0.2217573221757471 0.90506926773528 0.16165290096326904
+0.22384937238496036 0.9016788844401177 0.22384937238496036 0.9016788844401177 0.1590274656646806
+0.22594142259417593 0.898288501144957 0.2259414225941759 0.898288501144957 0.15653735860394535
+0.22803347280339617 0.8948981178498041 0.22803347280339617 0.8948981178498041 0.15427484521034374
+0.23012552301261913 0.8915077345546597 0.23012552301261913 0.8915077345546597 0.15232722929934336
+0.2322175732218431 0.8881173512595407 0.23221757322184314 0.8881173512595407 0.15077233591460293
+0.234309623431048 0.8847269679644277 0.234309623431048 0.8847269679644277 0.14967393717943364
+0.23640167364021733 0.8813365846693619 0.23640167364021733 0.8813365846693619 0.1490776327965723
+0.23849372384936376 0.8779462013742435 0.23849372384936376 0.8779462013742435 0.14900775253578272
+0.24058577405846518 0.8745558180791199 0.24058577405846518 0.8745558180791199 0.14946577309535655
+0.24267782426759013 0.8711654347839883 0.24267782426759013 0.8711654347839882 0.1504305298480995
+0.24476987447683304 0.8677750514888442 0.24476987447683304 0.8677750514888442 0.1518602053968391
+0.24686192468629142 0.8643846681938477 0.24686192468629145 0.8643846681938477 0.1536957820940845
+0.24895397489590457 0.8609942848991333 0.24895397489590457 0.8609942848991333 0.1558654437595504
+0.2510460251057006 0.8576039016046902 0.2510460251057007 0.8576039016046902 0.15828934934091585
+0.25313807531557647 0.8542135183107784 0.25313807531557647 0.8542135183107785 0.16088426807572598
+0.25523012552476215 0.8508231350165929 0.25523012552476215 0.8508231350165928 0.16356771169962805
+0.25732217573475386 0.8474327517227564 0.25732217573475386 0.8474327517227564 0.16626136505517608
+0.25941422594482766 0.8440423684286268 0.2594142259448277 0.8440423684286268 0.1688937578720466
+0.26150627615593897 0.8406519851355815 0.26150627615593897 0.8406519851355815 0.1714022172295986
+0.26359832636842223 0.837261601843684 0.26359832636842223 0.837261601843684 0.17373419156343764
+0.2656903765822135 0.8338712185565055 0.26569037658221356 0.8338712185565055 0.17584805328747496
+0.2677824267944973 0.8304808352714524 0.2677824267944973 0.8304808352714524 0.17771348094952186
+0.2698744770025409 0.8270904519958658 0.2698744770025409 0.8270904519958658 0.17931150449122077
+0.27196652720732956 0.8237000687134753 0.27196652720732956 0.8237000687134753 0.1806342762379043
+0.274058577406076 0.8203096854316468 0.274058577406076 0.8203096854316468 0.18168461039689654
+0.2761506276132674 0.8169193021524052 0.2761506276132674 0.8169193021524052 0.18247531725799626
+0.2782426778485417 0.8135289188763895 0.2782426778485417 0.8135289188763896 0.1830283459470267
+0.2803347281204411 0.8101385356290423 0.2803347281204411 0.8101385356290421 0.18337374212429683
+0.2824267785056216 0.8067481524500395 0.2824267785056216 0.8067481524500394 0.18354842437807495
+0.284518846408434 0.8033580176236897 0.284518846408434 0.8033580176236897 0.1835949876613311
+0.28661084804943426 0.7999692092903815 0.28661084804943426 0.7999692092903815 0.18356046628891
+0.28870153289453976 0.7965838791234559 0.28870153289453976 0.7965838791234559 0.18349351878045816
+0.2907886646018834 0.7932045655033354 0.2907886646018834 0.7932045655033354 0.18344209717579193
+0.2928702629092983 0.7898320915895595 0.2928702629092983 0.7898320915895595 0.1834512213360431
+0.2949422843849437 0.7864646935762706 0.2949422843849437 0.7864646935762706 0.18355745397592996
+0.31168015771632673 0.7604491080096953 0.3116801577163267 0.7604491080096955 0.19183018377425307
+0.2970040155644451 0.7830983211802165 0.2970040155644451 0.7830983211802165 0.1837949800774464
+0.2990612596919978 0.7797293362464899 0.29906125969199776 0.7797293362464899 0.18420385632194844
+0.30107946532073676 0.7763511627376096 0.30107946532073676 0.7763511627376096 0.1847742731499016
+0.3034284099049404 0.7725963492853567 0.3034284099049404 0.7725963492853568 0.1858162433439094
+0.31087685114100855 0.7639853297824146 0.31087685114100855 0.7639853297824146 0.19185157286596943
+0.30938251333465794 0.7675485211856113 0.30938251333465794 0.7675485211856113 0.1912165399562864
+0.3072374991707254 0.7704392580683415 0.3072374991707254 0.7704392580683415 0.1896888486662364
+0.3188842941186994 0.7524354857017678 0.3188842941186994 0.7524354857017678 0.19964593739347083
+0.31732480702060184 0.7560184555484373 0.31732480702060184 0.7560184555484373 0.19823778857943666
+0.3158898562787657 0.759707947012575 0.3158898562787657 0.759707947012575 0.197192654319844
+0.3297315392946672 0.7284888452642979 0.3297315392946672 0.728488845264298 0.21216076248203852
+0.3204187949513988 0.7489388187297887 0.3204187949513988 0.7489388187297887 0.20118503319190803
+0.32807188345803934 0.7319536255405333 0.32807188345803934 0.7319536255405333 0.21013399230070115
+0.3258463609606775 0.7348810350573348 0.3258463609606775 0.7348810350573347 0.20724277086452128
+0.3219209802509796 0.7454967169915779 0.32192098025097954 0.7454967169915779 0.20280664615078728
+0.32484780257930623 0.7386757084004056 0.32484780257930623 0.7386757084004056 0.20619551399213928
+0.32337749099501245 0.7420979006113767 0.32337749099501245 0.7420979006113767 0.20445966365879595
+0.33557424443295725 0.721232776679146 0.33557424443295725 0.721232776679146 0.2200886626616481
+0.3341685699367398 0.7247013541558641 0.3341685699367398 0.7247013541558641 0.21840484398211332
+0.33287497182278614 0.7281376539544755 0.33287497182278614 0.7281376539544756 0.21685546937794256
+0.34386791840282027 0.7102228581161851 0.3438679184028203 0.7102228581161851 0.23179541559717934
+0.34232754646309393 0.7136841666981697 0.34232754646309393 0.7136841666981697 0.22988449062437957
+0.34079554527614225 0.7171575161696365 0.34079554527614225 0.7171575161696365 0.2279440591880433
+0.3392842162867522 0.7206404078134576 0.3392842162867522 0.7206404078134576 0.22599525974553794
+0.35185181027054996 0.6993750210318419 0.35185181027054996 0.6993750210318419 0.24383536607653886
+0.3503974753931229 0.702760961566477 0.3503974753931229 0.702760961566477 0.24200080177424632
+0.34892783160252616 0.7061708462427925 0.34892783160252616 0.7061708462427925 0.24010816717365915
+0.3474358494908536 0.7096114401725556 0.3474358494908536 0.7096114401725556 0.23814040134229117
+0.36131249012774225 0.6851035721222846 0.36131249012774225 0.6851035721222846 0.25895680217062117
+0.35986940162672837 0.6886586873011548 0.35986940162672837 0.6886586873011548 0.2570615240977942
+0.35840766448300226 0.6921889803252749 0.35840766448300226 0.6921889803252749 0.25511877892592755
+0.3552734038628242 0.6988500130341131 0.3552734038628242 0.6988500130341131 0.2506442189064497
+0.3568724872318005 0.6955901678099626 0.3568724872318005 0.6955901678099626 0.2529721471125778
+0.36621373838889654 0.6811949815643701 0.36621373838889654 0.68119498156437 0.26883283324304114
+0.3647372722780252 0.6846268121807166 0.36473727227802527 0.6846268121807166 0.2666255800352341
+0.3843189652685988 0.6544468064113597 0.3843189652685988 0.6544468064113597 0.3074060314518193
+0.37237457721478184 0.6733664018575598 0.3723745772147819 0.6733664018575598 0.2807972806188068
+0.3683226405481321 0.6779948006020592 0.368322640548132 0.6779948006020592 0.2726873190312938
+0.3712327797325634 0.6763171808844002 0.3712327797325634 0.6763171808844002 0.2789795961836675
+0.369196897283148 0.681373706064911 0.369196897283148 0.681373706064911 0.2757989811621541
+0.37660742549502 0.6695070533116589 0.37660742549502 0.6695070533116589 0.29006622509529195
+0.37546410087464327 0.6729236609640118 0.37546410087464327 0.6729236609640118 0.2881952769204079
+0.3830433386753489 0.6580905971529589 0.3830433386753489 0.6580905971529588 0.30417325773212517
+0.38182654304892377 0.6616917841223564 0.38182654304892377 0.6616917841223565 0.30143419160184165
+0.38072746351023823 0.6652637756375804 0.38072746351023823 0.6652637756375804 0.2992503377571691
+0.3797355768491526 0.6687829786537905 0.3797355768491526 0.6687829786537905 0.2975263139116591
+0.38907976351876744 0.6498640666529233 0.38907976351876744 0.6498640666529233 0.320179379420178
+0.38786783919447493 0.653445443811178 0.38786783919447493 0.653445443811178 0.3164635381329542
+0.39249008142748143 0.6488108906811153 0.39249008142748143 0.6488108906811153 0.32906341780939585
+0.3958279110743786 0.6476805490394307 0.3958279110743786 0.6476805490394307 0.3377205740502877
+0.3991302828363221 0.6464643289875458 0.3991302828363221 0.6464643289875457 0.3462678457274851
+0.40227870269321 0.6452917860501056 0.40227870269321003 0.6452917860501056 0.35433268889770214
+0.40397372860048275 0.6381151409551202 0.40397372860048275 0.6381151409551203 0.36427291744879553
+0.40543702936849485 0.6441966220867378 0.40543702936849485 0.6441966220867378 0.3622446706313785
+0.4064285493970532 0.6407046373959976 0.4064285493970532 0.6407046373959976 0.3673451243570421
+0.39707345301531694 0.5511438509410911 0.397073453015317 0.5511438509410911 0.3367361372611981
+0.3958165623039068 0.5546708536098617 0.3958165623039069 0.5546708536098617 0.35086500671364096
+0.39496027104787873 0.5594678210898401 0.39496027104787873 0.5594678210898402 0.3725145606963422
+0.3964272208508761 0.5570791690173509 0.3964272208508761 0.5570791690173509 0.3733308880249492
+0.39391038681031026 0.5643749529204546 0.3939103868103103 0.5643749529204546 0.38621712662755187
+0.3960915092856416 0.5616158707601859 0.3960915092856416 0.5616158707601859 0.3961409089984289
+0.3953579508849259 0.5669302299395534 0.3953579508849259 0.5669302299395534 0.4110707123744471
+0.393896268151193 0.5704761269273921 0.393896268151193 0.5704761269273922 0.40704007812252063
+0.39440100868268513 0.5737893943290696 0.3944010086826851 0.5737893943290696 0.41898029161193123
+0.3925017426197838 0.5794307226868181 0.39250174261978377 0.5794307226868182 0.40858776942094316
+0.39496685810775356 0.5768428653166586 0.3949668581077535 0.5768428653166585 0.4283341525030348
+0.3922523004730217 0.5863350497175396 0.3922523004730217 0.5863350497175396 0.4074256743633388
+0.39423051539723236 0.5827982872213594 0.39423051539723236 0.5827982872213594 0.42407768316996713
+0.39397129443966755 0.5888045093301452 0.39397129443966755 0.5888045093301452 0.4183237075459207
+0.39435855747671983 0.5921272267625971 0.39435855747671983 0.5921272267625971 0.41718019172923343
+0.3930962604528046 0.5961741577525115 0.3930962604528046 0.5961741577525115 0.40296880789621575
+0.3948878197820495 0.5989401646936532 0.3948878197820495 0.5989401646936532 0.408657690190147
+0.39563337260713916 0.6049274978816598 0.3956333726071391 0.6049274978816598 0.400026795083101
+0.3960606039584075 0.6016156085215466 0.3960606039584075 0.6016156085215466 0.40942360601785344
+0.3970656693886928 0.6085047088311741 0.39706566938869287 0.6085047088311741 0.3983304219641242
+0.39768041536008325 0.614771450881146 0.39768041536008325 0.614771450881146 0.38629811040036643
+0.39896960721101576 0.6113160805960124 0.39896960721101576 0.6113160805960124 0.3995040539244136
+0.3997507418816857 0.6177221772989328 0.3997507418816857 0.6177221772989326 0.38703560703285383
+0.40087991257798095 0.6244077392907158 0.40087991257798095 0.6244077392907158 0.376562992656865
+0.4019618366885938 0.6206945955144266 0.4019618366885938 0.6206945955144266 0.38751953190014327
+0.4032401040491253 0.6274097645058639 0.4032401040491253 0.6274097645058639 0.37762288079294487
+0.4049569595921429 0.6342460678782964 0.4049569595921429 0.6342460678782964 0.3712291180741433
+0.4057082047286025 0.630337642094923 0.40570820472860253 0.630337642094923 0.37892639602562633
+0.40159857147261374 0.5512530112738031 0.40159857147261374 0.5512530112738031 0.38709591035648055
+0.40594928370141026 0.5512742799951139 0.4059492837014103 0.5512742799951139 0.4470935812276567
+0.5807903202841708 0.4181325309091994 0.5807903202841708 0.41813253090919933 1.0513920464850173
+0.5842912613287179 0.417830557925175 0.584291261328718 0.41783055792517493 1.0312358061831295
+0.5891002198589163 0.4182323451498604 0.5891002198589163 0.4182323451498604 1.001114959687152
+0.58652307049716 0.41914487291886154 0.58652307049716 0.41914487291886154 1.0188800983705335
+0.594045756291731 0.4190230874453931 0.594045756291731 0.4190230874453932 0.9639616558785118
+0.5908733060854205 0.4200342463804088 0.5908733060854204 0.4200342463804088 0.9870490786933984
+0.5970853956643902 0.41986937012344827 0.5970853956643901 0.4198693701234482 0.9371786315579388
+0.5949055999999668 0.42161815022966687 0.5949055999999668 0.42161815022966687 0.950259585875292
+0.6037345284201718 0.42049991255440045 0.6037345284201718 0.42049991255440045 0.8783579604187811
+0.5999601463911194 0.4209875548938847 0.5999601463911194 0.42098755489388473 0.9090691380445632
+0.5797151056349784 0.4227639992657137 0.5797151056349784 0.4227639992657137 1.0705617882391285
+0.5785959747464785 0.4271935004516503 0.5785959747464785 0.4271935004516503 1.0869635877882315
+0.6091389776125863 0.4168839094347364 0.6091389776125863 0.41688390943473635 0.8504239723734498
+0.6110483232009795 0.4134099333273968 0.6110483232009795 0.4134099333273968 0.8504508356264672
+0.6144686898020643 0.4128646487256006 0.6144686898020643 0.41286464872560064 0.8273200809651587
+0.6173180403382448 0.41226519818176005 0.6173180403382448 0.4122651981817601 0.8087934995543058
+0.6201628734426553 0.41366907113749873 0.6201628734426553 0.4136690711374987 0.7813629744733116
+0.6239102785267429 0.4137513093671514 0.6239102785267429 0.4137513093671514 0.7530868998014149
+0.6050520069848085 0.4230301040006057 0.6050520069848085 0.4230301040006057 0.8531023444095317
+0.6074921130362101 0.42050039850397936 0.6074921130362102 0.4205003985039793 0.8460728018277814
+0.6106247800243843 0.4194529508577675 0.6106247800243843 0.4194529508577675 0.8250096596620278
+0.6075528311496201 0.42369959656150674 0.6075528311496201 0.42369959656150674 0.8261356018554802
+0.6490189447690955 0.40017067356168456 0.6490189447690956 0.4001706735616846 0.6541184528967449
+0.6423341192242263 0.3999399568530565 0.6423341192242263 0.39993995685305656 0.6957312038775915
+0.6456435092887326 0.40005975527164717 0.6456435092887326 0.40005975527164717 0.675042669316804
+0.6356987936407932 0.4005943899861153 0.6356987936407932 0.4005943899861153 0.7343307439172762
+0.6389649163364783 0.40044489760023616 0.6389649163364783 0.40044489760023616 0.7146072132191895
+0.6336035060592606 0.4039378447328372 0.6336035060592606 0.4039378447328373 0.7342161989007923
+0.63156343178494 0.4073799147696282 0.63156343178494 0.4073799147696282 0.7322009606383896
+0.6294624216610925 0.4106947258388173 0.6294624216610925 0.41069472583881733 0.7299290808093333
+0.6273444442989229 0.4138913608316934 0.6273444442989229 0.4138913608316934 0.7272059086193311
+0.700550771792156 0.3557577751395983 0.7005507717921561 0.35575777513959833 0.5552825962651601
+0.7039227702716749 0.35621807212318135 0.7039227702716749 0.35621807212318135 0.5449846436966698
+0.6881973394263493 0.35906197375654486 0.6881973394263493 0.35906197375654486 0.5844461794305706
+0.682311632814173 0.3616119800102096 0.682311632814173 0.3616119800102096 0.5991306575147634
+0.6719536940240988 0.370133484489994 0.6719536940240988 0.370133484489994 0.6225542226702662
+0.6764428729477483 0.3641188311922609 0.6764428729477484 0.3641188311922609 0.6161216569616778
+0.6742339691256264 0.36715974228658266 0.6742339691256264 0.36715974228658266 0.6189842384781356
+0.6800002590312656 0.3646254610945232 0.6800002590312656 0.3646254610945232 0.601289720975771
+0.6707117317946771 0.37641351038206405 0.6707117317946771 0.37641351038206405 0.6137983637247837
+0.6729891878084805 0.3735079297440749 0.6729891878084805 0.3735079297440749 0.6104166640081199
+0.6858232809824264 0.36212506038624453 0.6858232809824264 0.36212506038624453 0.5854903375671706
+0.6946443429414454 0.35619601625840236 0.6946443429414454 0.35619601625840236 0.5711542726660449
+0.6918249169431844 0.35962259104537514 0.6918249169431844 0.35962259104537514 0.571435418415594
+0.6980144186882603 0.3579707710920943 0.6980144186882603 0.3579707710920943 0.5567306141564394
+0.6685975330772836 0.37932581510568764 0.6685975330772836 0.3793258151056876 0.6164612909339854
+0.6664770888154841 0.3823725627308901 0.6664770888154842 0.3823725627308901 0.6187184704891081
+0.664243623607797 0.385424153254986 0.664243623607797 0.385424153254986 0.6213495712688069
+0.6618952285256078 0.3884685482592611 0.6618952285256078 0.3884685482592611 0.6243145886541573
+0.6595204643928185 0.391487836947131 0.6595204643928185 0.391487836947131 0.6271256825462316
+0.6571555156329951 0.3944642758552291 0.6571555156329952 0.3944642758552291 0.6295600222557095
+0.6524853261122765 0.40034363778734955 0.6524853261122764 0.40034363778734955 0.6326124326629987
+0.6548089157122188 0.3974145255116044 0.6548089157122189 0.3974145255116044 0.6314312356607693
+0.7133805180877704 0.3545788097949239 0.7133805180877704 0.3545788097949239 0.5256919242569867
+0.7073481717507112 0.35676439718020214 0.7073481717507112 0.35676439718020214 0.5345691269477589
+0.7108236801077935 0.35732202431841703 0.7108236801077935 0.35732202431841703 0.5242257078651146
+0.7169422772133803 0.35517551615741233 0.7169422772133803 0.35517551615741233 0.5156059390839202
+0.7195478770378702 0.352445741490077 0.7195478770378702 0.352445741490077 0.5171621736836133
+0.7221589611103899 0.3496979902442019 0.7221589611103899 0.3496979902442019 0.5185464431208406
+0.7481411846754797 0.3256241507902973 0.7481411846754797 0.3256241507902973 0.5041834106357433
+0.7247647727043901 0.34692458922473796 0.7247647727043901 0.34692458922473796 0.5197047946988692
+0.7273416583425579 0.34413428382003564 0.7273416583425579 0.34413428382003564 0.5205769682666856
+0.73211089398806 0.33848654218846647 0.73211089398806 0.33848654218846647 0.521907353181385
+0.7297923896893939 0.34131851309200756 0.7297923896893939 0.34131851309200756 0.5213123661892501
+0.7352293360577193 0.33917286232041016 0.7352293360577193 0.33917286232041016 0.5133155818338234
+0.7397856878886442 0.3306057373716413 0.7397856878886442 0.3306057373716413 0.5177621331954249
+0.737389995623027 0.3332015699808546 0.737389995623027 0.3332015699808546 0.5193381386329007
+0.7379088537639303 0.33643301312551155 0.7379088537639303 0.33643301312551155 0.5123704487990935
+0.7456582765417191 0.3283437977746684 0.7456582765417191 0.3283437977746684 0.5067305646108422
+0.7431456895109751 0.3310507018277261 0.7431456895109751 0.33105070182772606 0.5089486678317706
+0.7515441474309094 0.3265084750278477 0.7515441474309094 0.3265084750278477 0.49452384553989953
+0.754122467175542 0.3237453474513325 0.754122467175542 0.3237453474513325 0.4915032555447345
+0.7567857732199873 0.3209179136371656 0.7567857732199873 0.3209179136371656 0.4880570294188235
+0.7595749181216707 0.3179478809694104 0.7595749181216708 0.31794788096941046 0.48426080562944424
+0.7626646989589467 0.3147914952429115 0.7626646989589467 0.31479149524291156 0.4798301062591691
+0.7660023684979675 0.31395183390249065 0.7660023684979675 0.31395183390249065 0.4724556792939076
+0.7678698970687212 0.3117388538132456 0.7678698970687212 0.31173885381324556 0.4702352772715683
+0.7696877820624991 0.3062374172193941 0.7696877820624991 0.30623741721939407 0.47124755899887427
+0.7702825290684168 0.30923518303138503 0.7702825290684167 0.30923518303138503 0.4671542498067958
+0.7725423940051205 0.3032383167734302 0.7725423940051205 0.3032383167734302 0.4679211567502786
+0.7764261549016259 0.3012491260133768 0.7764261549016259 0.3012491260133768 0.4618754344846378
+0.7797341882622731 0.2991681010990266 0.7797341882622731 0.2991681010990266 0.4576074391605747
+0.7830659449821239 0.29708592363146236 0.7830659449821239 0.2970859236314624 0.45378376805255555
+0.7864237652435291 0.29498861459569253 0.7864237652435291 0.29498861459569253 0.45037587313646593
+0.7898060586237912 0.2928889643466058 0.7898060586237912 0.2928889643466058 0.4473213069103719
+0.793191975188298 0.29079322453728423 0.793191975188298 0.29079322453728423 0.44457668957186997
+0.7965783252330451 0.28870253410708846 0.7965783252330451 0.2887025341070885 0.4420600828926788
+0.7999674779122979 0.28661086911494144 0.7999674779122979 0.28661086911494144 0.43968129879148116
+0.8033577688802022 0.28451882845184523 0.8033577688802022 0.28451882845184523 0.43734430174592026
+0.806748152175372 0.28242677824264345 0.806748152175372 0.28242677824264345 0.43495434948917616
+0.8101385354705407 0.28033472803344067 0.8101385354705407 0.28033472803344067 0.43242408023687545
+0.8135289187657092 0.2782426778242369 0.8135289187657092 0.2782426778242369 0.4296794852938712
+0.8169193020608777 0.2761506276150323 0.8169193020608777 0.2761506276150323 0.4266643804113572
+0.8203096853560462 0.27405857740582723 0.8203096853560462 0.27405857740582723 0.4233438214560445
+0.8237000686512151 0.27196652719662207 0.8237000686512151 0.27196652719662207 0.4197065196740248
+0.8270904519463841 0.26987447698741684 0.8270904519463841 0.26987447698741684 0.41576620666062286
+0.8304808352415529 0.2677824267782117 0.8304808352415529 0.2677824267782117 0.4115619068805109
+0.8338712185367217 0.26569037656900646 0.8338712185367217 0.26569037656900646 0.40715707348960223
+0.8372616018318908 0.2635983263598014 0.8372616018318908 0.2635983263598014 0.40263753860989177
+0.8406519851270597 0.2615062761505963 0.8406519851270599 0.26150627615059635 0.39810823254207667
+0.8440423684222286 0.2594142259413912 0.8440423684222286 0.2594142259413912 0.39368864982053403
+0.8474327517173975 0.257322175732186 0.8474327517173975 0.257322175732186 0.3895070956635776
+0.8508231350125666 0.25523012552298097 0.8508231350125666 0.25523012552298097 0.3856938430659888
+0.8542135183077355 0.25313807531377586 0.8542135183077356 0.2531380753137759 0.38237346892001006
+0.8576039016029045 0.25104602510457075 0.8576039016029045 0.25104602510457075 0.3796568033606254
+0.8609942848980733 0.24895397489536567 0.8609942848980733 0.24895397489536567 0.37763308854197253
+0.8643846681932423 0.24686192468616053 0.8643846681932423 0.24686192468616053 0.37636305491613614
+0.8677750514884113 0.2447698744769554 0.8677750514884114 0.2447698744769554 0.37587363566124893
+0.8711654347835801 0.2426778242677503 0.8711654347835801 0.2426778242677503 0.3761549209024844
+0.874555818078749 0.24058577405854525 0.874555818078749 0.24058577405854528 0.3771597063822601
+0.8779462013739181 0.23849372384934012 0.8779462013739181 0.23849372384934012 0.37880566258488096
+0.881336584669087 0.23640167364013503 0.8813365846690872 0.23640167364013506 0.38097981648281115
+0.884726967964256 0.23430962343092987 0.884726967964256 0.23430962343092987 0.38354477771428824
+0.8881173512594248 0.2322175732217248 0.8881173512594248 0.2322175732217248 0.3863460058538632
+0.8915077345545939 0.23012552301251965 0.8915077345545939 0.23012552301251965 0.3892194150377615
+0.8948981178497628 0.22803347280331454 0.8948981178497629 0.22803347280331457 0.3919987182644445
+0.8982885011449318 0.22594142259410943 0.8982885011449318 0.22594142259410943 0.3945220781119807
+0.9016788844401007 0.22384937238490432 0.9016788844401006 0.2238493723849043 0.3966378056636577
+0.9050692677352696 0.2217573221756992 0.9050692677352696 0.2217573221756992 0.3982090010580525
+0.9084596510304386 0.2196652719664941 0.9084596510304387 0.21966527196649413 0.39911714078765326
+0.9118500343256075 0.217573221757289 0.9118500343256075 0.217573221757289 0.39926468668112675
+0.9152404176207765 0.21548117154808388 0.9152404176207763 0.21548117154808386 0.3985768261186473
+0.9186308009159454 0.21338912133887877 0.9186308009159454 0.21338912133887877 0.39700246240011183
+0.9220211842111143 0.21129707112967366 0.9220211842111145 0.2112970711296737 0.39451456791255574
+0.9254115675062833 0.20920502092046855 0.9254115675062833 0.20920502092046855 0.39110999835613997
+0.9288019508014522 0.20711297071126344 0.9288019508014521 0.20711297071126342 0.3868088488701155
+0.9321923340966212 0.20502092050205833 0.9321923340966212 0.20502092050205833 0.3816534154200197
+0.9355827173917901 0.20292887029285323 0.9355827173917902 0.20292887029285325 0.37570680871212764
+0.938973100686959 0.20083682008364812 0.938973100686959 0.20083682008364812 0.3690512537153671
+0.942363483982128 0.198744769874443 0.9423634839821279 0.198744769874443 0.3617860957059955
+0.9457538672772969 0.1966527196652379 0.9457538672772969 0.1966527196652379 0.3540255237145496
+0.9491442505724659 0.1945606694560328 0.949144250572466 0.1945606694560328 0.3458960147820926
+0.9525346338676348 0.19246861924682768 0.9525346338676348 0.19246861924682768 0.33753349854296294
+0.9559250171628038 0.19037656903762257 0.9559250171628036 0.19037656903762257 0.32908024310957223
+0.9593154004579727 0.18828451882841746 0.9593154004579727 0.18828451882841746 0.3206814725274489
+0.9627057837531416 0.18619246861921235 0.9627057837531418 0.18619246861921235 0.3124817460368114
+0.9660961670483106 0.18410041841000724 0.9660961670483106 0.18410041841000724 0.304621162327658
+0.9694865503434795 0.18200836820080213 0.9694865503434794 0.18200836820080213 0.29723149816509015
+0.9728769336386485 0.17991631799159702 0.9728769336386485 0.17991631799159702 0.29043244642370847
+0.9762673169338174 0.1778242677823919 0.9762673169338175 0.1778242677823919 0.2843281741630199
+0.9796577002289864 0.1757322175731868 0.9796577002289864 0.1757322175731868 0.27900446129703266
+0.9830480835241553 0.1736401673639817 0.9830480835241552 0.1736401673639817 0.27452668559810395
+0.9864384668193242 0.17154811715477658 0.9864384668193242 0.17154811715477658 0.2709388738091691
+0.9898288501144932 0.16945606694557147 0.9898288501144933 0.16945606694557147 0.26826393595445147
+0.9932192334096621 0.16736401673636636 0.9932192334096621 0.16736401673636636 0.2665050523914841
+0.17154811715481166 0.9932192334096621 0.17154811715481166 0.9932192334096621 0.13851513354102554
+0.17364016736401672 0.9898288501144932 0.1736401673640167 0.9898288501144933 0.1411536059225107
+0.17573221757322174 0.9864384668193242 0.17573221757322174 0.9864384668193242 0.14410728749933743
+0.17782426778242677 0.9830480835241553 0.17782426778242677 0.9830480835241552 0.14731055656989148
+0.17991631799163182 0.9796577002289864 0.17991631799163185 0.9796577002289864 0.15069096765543086
+0.18200836820083688 0.9762673169338174 0.18200836820083688 0.9762673169338175 0.15417207198612615
+0.1841004184100419 0.9728769336386485 0.1841004184100419 0.9728769336386485 0.15767602123225713
+0.186192468619247 0.9694865503434795 0.186192468619247 0.9694865503434794 0.16112585990600056
+0.188284518828452 0.9660961670483106 0.188284518828452 0.9660961670483106 0.16444747730016196
+0.19037656903765712 0.9627057837531418 0.19037656903765712 0.9627057837531418 0.1675712340554801
+0.19246861924686223 0.9593154004579728 0.19246861924686223 0.9593154004579728 0.17043330250164698
+0.1945606694560674 0.9559250171628041 0.1945606694560674 0.9559250171628041 0.17297676854487995
+0.19665271966527254 0.9525346338676353 0.19665271966527254 0.9525346338676354 0.1751525415717354
+0.19874476987447762 0.9491442505724667 0.19874476987447762 0.9491442505724667 0.17692011222152917
+0.2008368200836825 0.9457538672772978 0.2008368200836825 0.9457538672772978 0.17824818913626608
+0.20292887029288728 0.9423634839821293 0.20292887029288728 0.9423634839821293 0.17911523675495225
+0.20502092050209186 0.9389731006869608 0.20502092050209186 0.9389731006869608 0.17950992765543214
+0.2071129707112962 0.935582717391792 0.2071129707112962 0.935582717391792 0.17943151491964057
+0.2092050209205006 0.9321923340966228 0.2092050209205006 0.9321923340966228 0.17889012211223854
+0.21129707112970522 0.9288019508014534 0.21129707112970522 0.9288019508014534 0.17790694005817168
+0.2133891213389105 0.9254115675062842 0.2133891213389105 0.9254115675062842 0.17651430990034608
+0.21548117154811652 0.9220211842111152 0.21548117154811655 0.9220211842111151 0.17475566016068367
+0.21757322175732355 0.9186308009159466 0.21757322175732355 0.9186308009159466 0.17268525121103115
+0.2196652719665316 0.915240417620779 0.2196652719665316 0.915240417620779 0.17036766379259227
+0.22175732217574043 0.9118500343256121 0.22175732217574043 0.9118500343256121 0.16787695029558433
+0.2238493723849504 0.9084596510304466 0.2238493723849504 0.9084596510304465 0.16529535168008636
+0.22594142259416158 0.9050692677352822 0.22594142259416158 0.9050692677352822 0.16271147523573457
+0.22803347280337496 0.9016788844401225 0.22803347280337496 0.9016788844401225 0.16021783811710688
+0.23012552301258957 0.8982885011449673 0.23012552301258957 0.8982885011449673 0.15790772040756226
+0.23221757322180403 0.8948981178498253 0.23221757322180406 0.8948981178498253 0.15587135012869435
+0.23430962343100833 0.891507734554687 0.23430962343100833 0.891507734554687 0.15419156461336214
+0.2364016736401926 0.8881173512595733 0.2364016736401926 0.8881173512595734 0.15293924576977214
+0.23849372384936748 0.8847269679644317 0.23849372384936748 0.8847269679644317 0.15216897692162804
+0.24058577405851203 0.8813365846692841 0.24058577405851203 0.8813365846692841 0.15191546346783613
+0.2426778242676684 0.8779462013741298 0.2426778242676684 0.8779462013741298 0.15219124508983192
+0.24476987447688556 0.8745558180789654 0.24476987447688556 0.8745558180789654 0.1529860776472021
+0.24686192468617107 0.8711654347838428 0.2468619246861711 0.8711654347838428 0.15426810256051324
+0.24895397489553714 0.8677750514887821 0.24895397489553714 0.8677750514887821 0.1559866234392083
+0.251046025104989 0.864384668193933 0.251046025104989 0.864384668193933 0.1580760649419911
+0.2531380753143918 0.8609942848993369 0.25313807531439186 0.8609942848993369 0.16046056376562923
+0.25523012552400787 0.8576039016046613 0.25523012552400787 0.8576039016046613 0.1630586512795512
+0.25732217573360044 0.8542135183101754 0.25732217573360044 0.8542135183101754 0.16578759858433934
+0.2594142259432985 0.8508231350156822 0.2594142259432985 0.8508231350156822 0.16856715183572615
+0.2615062761535179 0.8474327517216961 0.2615062761535179 0.8474327517216961 0.17132253752991913
+0.2635983263644039 0.8440423684282803 0.2635983263644039 0.8440423684282802 0.1739867335033289
+0.2656903765758937 0.8406519851372685 0.2656903765758937 0.8406519851372686 0.17650207262633252
+0.2677824267865491 0.837261601847313 0.2677824267865491 0.837261601847313 0.17882127809029477
+0.2698744769949178 0.833871218562192 0.2698744769949178 0.833871218562192 0.18090803343986075
+0.27196652720160963 0.8304808352734439 0.27196652720160963 0.8304808352734439 0.1827371788027644
+0.2740585774051063 0.8270904519849186 0.2740585774051063 0.8270904519849186 0.18429460621902025
+0.27615062761281073 0.8237000686975543 0.27615062761281073 0.8237000686975543 0.1855769074036655
+0.2782426778347339 0.8203096854116178 0.27824267783473383 0.8203096854116178 0.18659080983279622
+0.28033472807240745 0.8169193021404609 0.2803347280724075 0.8169193021404609 0.18735242342242794
+0.2824267783217656 0.8135289188870533 0.2824267783217656 0.8135289188870533 0.18788631061663552
+0.2845188286141785 0.8101385356823222 0.2845188286141785 0.8101385356823222 0.18822438782176687
+0.2866108791304541 0.8067481524697514 0.2866108791304541 0.8067481524697514 0.18840466551863463
+0.28870286798447126 0.803357993868533 0.28870286798447126 0.803357993868533 0.18846992399124773
+0.2907943488574745 0.799968970223759 0.2907943488574745 0.799968970223759 0.18846614310603627
+0.292884211789485 0.7965824298446043 0.292884211789485 0.7965824298446043 0.1884402703557347
+0.29497202995593486 0.7932001763706431 0.29497202995593486 0.7932001763706431 0.18843993764466307
+0.2970587436761811 0.7898227626076092 0.2970587436761811 0.7898227626076092 0.1885111687868863
+0.29914709649239796 0.7864479980069216 0.29914709649239796 0.7864479980069216 0.1886961264530798
+0.3142740555630838 0.7633499524229393 0.3142740555630838 0.7633499524229393 0.19612739963774758
+0.30124841895591986 0.7830717908376809 0.30124841895591986 0.7830717908376809 0.18904013898537997
+0.30330553748553035 0.7797404061340146 0.3033055374855303 0.7797404061340146 0.18952661824282638
+0.3048995149405378 0.7766347503891204 0.3048995149405378 0.7766347503891203 0.18972667902757398
+0.3070159524431542 0.7738993943903495 0.3070159524431542 0.7738993943903495 0.19095284027054535
+0.3128129660137402 0.7669394095806165 0.3128129660137402 0.7669394095806165 0.19545516815630326
+0.3111479116391169 0.7701382953901545 0.3111479116391169 0.7701382953901544 0.19459032664073003
+0.30987608389228416 0.773060891278218 0.3098760838922842 0.773060891278218 0.1942628864639108
+0.3224662322179331 0.7520711888905701 0.3224662322179331 0.7520711888905701 0.20445102942925217
+0.3209620908821022 0.7555891605226748 0.3209620908821022 0.7555891605226748 0.20304257284243868
+0.31946665925729895 0.759155128781325 0.31946665925729895 0.759155128781325 0.20182981762565763
+0.317957838543566 0.7627341051830614 0.317957838543566 0.7627341051830614 0.20080669356586664
+0.3314258227159906 0.7314929463658699 0.3314258227159906 0.7314929463658699 0.21502311450907108
+0.32395741299135694 0.7485957459619389 0.32395741299135694 0.7485957459619389 0.20599644723081514
+0.32967643871365543 0.734838303628669 0.32967643871365543 0.7348383036286689 0.21276435888432108
+0.32818467107770277 0.738031027577121 0.32818467107770277 0.738031027577121 0.21087544201622235
+0.325427273463027 0.7451425734977012 0.325427273463027 0.7451425734977012 0.2076367938865407
+0.32686855069337056 0.7416645185820977 0.32686855069337056 0.7416645185820977 0.20932764572373427
+0.3378009540986078 0.7241334258951532 0.3378009540986078 0.7241334258951532 0.22405443894739877
+0.33635476746379966 0.7276275422130813 0.33635476746379966 0.7276275422130815 0.22214381474771314
+0.33490521887156705 0.7310455793636707 0.33490521887156705 0.7310455793636707 0.2202101921975661
+0.34145642030181983 0.7235383356377035 0.34145642030181983 0.7235383356377035 0.22987808862143333
+0.3459332040830628 0.713067383937687 0.3459332040830628 0.713067383937687 0.2361150796609568
+0.34443691924101744 0.7165447321621237 0.34443691924101744 0.7165447321621237 0.23406311866562532
+0.3429447424433696 0.7200344670740865 0.3429447424433696 0.7200344670740865 0.23198180468581397
+0.3537987626464329 0.7021597640826341 0.3537987626464329 0.7021597640826341 0.2485642110903641
+0.35237639209930083 0.7055411424236597 0.35237639209930083 0.7055411424236597 0.24657788348650753
+0.3509402157509219 0.70895813665798 0.3509402157509219 0.70895813665798 0.24452949466356785
+0.3494920616471826 0.7124135094389926 0.3494920616471826 0.7124135094389926 0.2424245231279547
+0.3571108793171922 0.7015208484905662 0.3571108793171922 0.7015208484905662 0.255077788956767
+0.3633594506264859 0.6882270543284976 0.3633594506264859 0.6882270543284976 0.26472364346071586
+0.3619678428208404 0.6918489009114247 0.3619678428208404 0.6918489009114247 0.2627802029712525
+0.3605454018335953 0.695425630211316 0.36054540183359535 0.6954256302113161 0.2607223234116261
+0.35885627907860096 0.6985548831339725 0.35885627907860096 0.6985548831339726 0.25795940439151727
+0.3678700102399167 0.684356137982321 0.3678700102399168 0.684356137982321 0.2737026699361645
+0.36676354418196194 0.6877534164448559 0.36676354418196194 0.6877534164448559 0.2722280139054041
+0.38665508057037984 0.6570545955224447 0.38665508057037984 0.6570545955224447 0.3131863716631164
+0.37420819571925323 0.6764297291730281 0.3742081957192532 0.6764297291730282 0.2861950333925114
+0.3721834450970856 0.6796853010955328 0.3721834450970856 0.6796853010955327 0.282381787723136
+0.37139465214170914 0.683637309080272 0.37139465214170914 0.683637309080272 0.2816564941284179
+0.3786742854514982 0.6722752040747589 0.3786742854514982 0.6722752040747589 0.2957659929038124
+0.3774643759070485 0.6757968445900087 0.37746437590704845 0.6757968445900087 0.29374913065315744
+0.38545870335264104 0.6606809958408005 0.38545870335264104 0.6606809958408005 0.3103226063534292
+0.38429261356976396 0.664311133758457 0.38429261356976396 0.664311133758457 0.30782752831010946
+0.383134588171914 0.6679503648705961 0.383134588171914 0.6679503648705961 0.3055794202272088
+0.38200409260284807 0.6715400513112781 0.38200409260284807 0.6715400513112781 0.30355503929760413
+0.39134629516187275 0.6523924798729773 0.39134629516187275 0.6523924798729773 0.3252804584174062
+0.3901942862955596 0.6559986628895118 0.3901942862955596 0.6559986628895117 0.3219480900300789
+0.3947515671441237 0.651267090488934 0.3947515671441237 0.651267090488934 0.3338512875048391
+0.39810055694478796 0.6500972571621021 0.39810055694478796 0.6500972571621021 0.34221389195158514
+0.4013742369117359 0.6488823444331201 0.40137423691173596 0.6488823444331201 0.35031009193848556
+0.4045299415649386 0.6476065667576203 0.4045299415649386 0.6476065667576202 0.3580676293640837
+0.40749520396734035 0.6465193787933092 0.40749520396734035 0.6465193787933092 0.36518439151832943
+0.4073926296100461 0.6369708338134483 0.4073926296100461 0.6369708338134483 0.37346735202972997
+0.4087012364339817 0.6432812002049634 0.40870123643398165 0.6432812002049634 0.3700597901270503
+0.4102307519256644 0.6458177639621712 0.4102307519256644 0.6458177639621712 0.3713475557286997
+0.40987813016904195 0.6398878642517429 0.4098781301690419 0.6398878642517429 0.37570087911496314
+0.39929447042583216 0.5553649253840283 0.3992944704258322 0.5553649253840282 0.3938633742703708
+0.39819870657104783 0.5589058010699616 0.3981987065710478 0.5589058010699616 0.40468132285599084
+0.3972354756310003 0.5638888463158608 0.3972354756310003 0.5638888463158608 0.4195432955874181
+0.39875314961755964 0.5613751422892601 0.39875314961755964 0.5613751422892601 0.42511835583850016
+0.39729214470748436 0.5688793189263964 0.39729214470748436 0.5688793189263964 0.43780384279166623
+0.3986764147603581 0.5659892493284012 0.3986764147603581 0.5659892493284012 0.4443825728934076
+0.3967537926118714 0.5717893595204526 0.3967537926118714 0.5717893595204525 0.4388464437335305
+0.3966226423477137 0.5743258696116098 0.3966226423477137 0.5743258696116098 0.441509237502938
+0.3989208761641635 0.5702647065680253 0.3989208761641635 0.5702647065680253 0.45906593440688753
+0.3982746942439769 0.5762434650680716 0.3982746942439768 0.5762434650680716 0.4598650028756279
+0.3961661094481542 0.5794557927091876 0.39616610944815417 0.5794557927091876 0.4408217343667063
+0.3974101605301985 0.5824538841275351 0.3974101605301985 0.582453884127535 0.4511307288135496
+0.3961233767237618 0.5861065925619595 0.3961233767237618 0.5861065925619595 0.4374776724340363
+0.39642063474024003 0.5893900056821229 0.39642063474024003 0.5893900056821229 0.43545893181256456
+0.39909902083543936 0.5848703659497672 0.39909902083543936 0.5848703659497672 0.4628988923630029
+0.3981702323789802 0.5918176442229274 0.3981702323789802 0.5918176442229274 0.44372312466509234
+0.39647242717337233 0.5954544654621505 0.39647242717337233 0.5954544654621506 0.4251503914855235
+0.3986997921338339 0.6058834407816658 0.3986997921338339 0.6058834407816658 0.4121888386158816
+0.39857457399132423 0.5987331826326654 0.39857457399132423 0.5987331826326655 0.43029826225412876
+0.39879007449193365 0.6027304112320298 0.39879007449193365 0.6027304112320299 0.4209947880818063
+0.40032439241355444 0.6080347284200747 0.40032439241355444 0.6080347284200746 0.4137926412796898
+0.4009685617517873 0.614129926557922 0.40096856175178724 0.614129926557922 0.4000282895198035
+0.40217941623042647 0.610654890082152 0.40217941623042647 0.6106548900821521 0.41406906244523883
+0.4030551215927374 0.6169534002327322 0.4030551215927374 0.616953400232732 0.4000180351796854
+0.40424806193294494 0.6236459980618078 0.40424806193294494 0.6236459980618078 0.3877912688649701
+0.4052867297047042 0.6200042718654629 0.4052867297047042 0.6200042718654629 0.39920019705469034
+0.40658275641598896 0.6265262702159399 0.4065827564159889 0.6265262702159399 0.3880899217782248
+0.40822556799560833 0.6331506017291421 0.40822556799560833 0.6331506017291421 0.38049694663511824
+0.4090036297136897 0.6293368765575345 0.4090036297136897 0.6293368765575345 0.38864595911264216
+0.40380980778757186 0.5552632483373589 0.40380980778757186 0.5552632483373589 0.45194591731968536
+0.40814721353150224 0.555119504191178 0.40814721353150224 0.555119504191178 0.5183054302139772
+0.5841131085870596 0.4215536778300628 0.5841131085870596 0.4215536778300627 1.0384454211041934
+0.5876768670352622 0.42138535365446655 0.5876768670352622 0.42138535365446655 1.0108086203671203
+0.592396940431184 0.4220757240479382 0.592396940431184 0.4220757240479382 0.9708542290686034
+0.5898226768717667 0.4227300846852785 0.5898226768717667 0.4227300846852785 0.9914636761744482
+0.5966850001923184 0.4228295616724734 0.5966850001923184 0.4228295616724734 0.9303798191676013
+0.5938787038634114 0.42399154861657756 0.5938787038634114 0.42399154861657756 0.9515858817677216
+0.6017217240217547 0.42375304040376205 0.6017217240217548 0.4237530404037621 0.8797235866927712
+0.5987293572353997 0.4246753345013632 0.5987293572353997 0.4246753345013632 0.9029799756954974
+0.6034383344679977 0.4256696829737847 0.6034383344679977 0.4256696829737847 0.8516743607789913
+0.6057528171957027 0.4260415428084663 0.6057528171957028 0.4260415428084663 0.8271152767275421
+0.5828559127758486 0.4261155358935181 0.5828559127758486 0.4261155358935181 1.0492960479734688
+0.5815430104201416 0.43050116310475467 0.5815430104201416 0.43050116310475467 1.0568219873393252
+0.6129043899723495 0.4169267354919215 0.6129043899723495 0.4169267354919216 0.8202889690443093
+0.616698004946345 0.4153347239003453 0.616698004946345 0.41533472390034537 0.7987338528728597
+0.6129785179200362 0.4202553901605359 0.6129785179200362 0.4202553901605359 0.8006199726608706
+0.6191120350777914 0.4170517561242387 0.6191120350777914 0.4170517561242387 0.7703406471539995
+0.6219343819700699 0.41689375040011406 0.6219343819700699 0.41689375040011406 0.749587490950676
+0.6252074432699662 0.41694302368017855 0.6252074432699662 0.41694302368017855 0.7243637403706028
+0.6106028185102627 0.42274992449742915 0.6106028185102627 0.4227499244974292 0.805387387805663
+0.6088435738914091 0.42623400278963053 0.6088435738914092 0.4262340027896306 0.796755064672359
+0.6407498697495259 0.40252956097316117 0.6407498697495259 0.40252956097316117 0.6946182574339584
+0.6501782304447321 0.40325511469811287 0.6501782304447321 0.40325511469811287 0.6330517465042068
+0.6468125957545374 0.40309583865891935 0.6468125957545374 0.40309583865891935 0.6544023727753919
+0.6435882433884788 0.40297394067130743 0.6435882433884786 0.4029739406713074 0.6749653222889459
+0.6376836436038373 0.40383123603888793 0.6376836436038372 0.4038312360388879 0.7086302878118014
+0.6351676896044941 0.40756313343867223 0.6351676896044941 0.40756313343867223 0.7073158319692854
+0.6329160194344055 0.41094506835539635 0.6329160194344055 0.41094506835539635 0.7046801580543774
+0.6307247149664496 0.41417239117602156 0.6307247149664496 0.41417239117602156 0.7012537548469227
+0.6285414862166819 0.4172706932877685 0.6285414862166819 0.4172706932877685 0.6973442635708996
+0.7014690908807738 0.35878939688998746 0.7014690908807738 0.3587893968899874 0.5447697683548461
+0.7048615963392381 0.359474895071453 0.7048615963392381 0.359474895071453 0.5335444339784764
+0.6893298903889686 0.3627087190478692 0.6893298903889686 0.3627087190478692 0.5719934710728821
+0.671720268998045 0.3797034918433114 0.6717202689980449 0.3797034918433115 0.6003492263105948
+0.6835131246256889 0.36509995474471607 0.6835131246256889 0.36509995474471607 0.5869095248799234
+0.6753870780245027 0.37064283756416216 0.6753870780245027 0.37064283756416216 0.60661223554528
+0.6777554251144149 0.3677773049905615 0.677755425114415 0.3677773049905615 0.6031997356063498
+0.6811797792957714 0.3680241136169363 0.6811797792957713 0.3680241136169364 0.5889374759019371
+0.6739651808677554 0.37683953099997514 0.6739651808677554 0.3768395309999751 0.5975724126550443
+0.676261258569731 0.3739738365271212 0.6762612585697311 0.3739738365271212 0.5947309259402457
+0.6869542600009213 0.36567989171044646 0.6869542600009213 0.36567989171044646 0.5728400916452373
+0.6953991712898329 0.3604944385633836 0.695399171289833 0.36049443856338353 0.5579760990612113
+0.6928373935936264 0.3634084730838323 0.6928373935936264 0.3634084730838323 0.5584780801470034
+0.6988863927992349 0.3614463344141014 0.6988863927992349 0.3614463344141014 0.544917044822482
+0.6700043037872125 0.38262778122109203 0.6700043037872127 0.38262778122109203 0.6002712453591141
+0.6680919679488753 0.38563868831887477 0.6680919679488753 0.38563868831887477 0.6008014149806026
+0.665702565309482 0.3887273530780884 0.665702565309482 0.3887273530780884 0.6031686480730344
+0.6632459102178567 0.3917666088011569 0.6632459102178566 0.3917666088011569 0.605702552880845
+0.6608116753507048 0.3947332692110341 0.6608116753507048 0.3947332692110341 0.6079537560802821
+0.6584004471060404 0.3976642727577873 0.6584004471060404 0.3976642727577873 0.6097030001181417
+0.6536356543872067 0.4034597712007068 0.6536356543872067 0.4034597712007068 0.6112549763962115
+0.6560091243554091 0.4005719469279063 0.6560091243554091 0.40057194692790626 0.6108316064840338
+0.7143468301295393 0.35788841575435015 0.7143468301295393 0.3578884157543501 0.5139661860566892
+0.7082902324402024 0.3600710691995533 0.7082902324402024 0.3600710691995533 0.5227355666167539
+0.7117689473417097 0.3606219447662711 0.7117689473417097 0.3606219447662711 0.5122118985834119
+0.7178938869317824 0.358510390276116 0.7178938869317824 0.358510390276116 0.5037013396812869
+0.7205259228742601 0.35581584627940993 0.7205259228742601 0.35581584627940993 0.5055024202185772
+0.7231730562548839 0.3531031905763466 0.7231730562548839 0.3531031905763466 0.5071481373470946
+0.7258436166561267 0.350356680477407 0.7258436166561267 0.350356680477407 0.5085619483162608
+0.7490374747398704 0.32920843482013845 0.7490374747398704 0.32920843482013845 0.4970768363812513
+0.7285101513582588 0.3475804030198799 0.7285101513582588 0.3475804030198799 0.5096926839203116
+0.7311502707722886 0.3448167623647057 0.7311502707722886 0.34481676236470576 0.5104056111218638
+0.7333098781105958 0.3419407276771238 0.7333098781105959 0.3419407276771238 0.5118807891791586
+0.7362299966912221 0.34183237804017647 0.7362299966912221 0.34183237804017647 0.5053415276777355
+0.7383647234545726 0.339839985344126 0.7383647234545726 0.339839985344126 0.5045007956411337
+0.7410111572189925 0.33436697840420576 0.7410111572189926 0.33436697840420576 0.5087307873026486
+0.7405130179386292 0.3378158822552366 0.7405130179386292 0.3378158822552366 0.503452451022037
+0.7467547519421297 0.3317982561163155 0.7467547519421297 0.3317982561163155 0.49883036150042154
+0.7443187578416762 0.33399758929747303 0.7443187578416762 0.33399758929747303 0.501170619307118
+0.7522661652210528 0.33013982938545977 0.7522661652210528 0.33013982938545977 0.48766265644512924
+0.754900152427694 0.3274383885667344 0.754900152427694 0.3274383885667344 0.4848386070308616
+0.7575627965432261 0.32470320865747176 0.7575627965432261 0.32470320865747176 0.4816661024457954
+0.7602688033554639 0.3219373346192972 0.7602688033554639 0.32193733461929724 0.47817239289742147
+0.7629562031578978 0.31922087517927833 0.7629562031578977 0.3192208751792784 0.4745157818663353
+0.7658010261969853 0.31700466221886947 0.7658010261969853 0.3170046622188694 0.46993762400862077
+0.7685587069947457 0.3149613332860784 0.7685587069947458 0.3149613332860784 0.46550321335281536
+0.7711191199296256 0.3125079329959218 0.7711191199296256 0.3125079329959218 0.4620788396159427
+0.7730046535480845 0.30726645268443575 0.7730046535480845 0.30726645268443575 0.4630758960509556
+0.7729574215239255 0.31012086376019943 0.7729574215239255 0.31012086376019943 0.4602894404839761
+0.776184132632741 0.3052839493469078 0.776184132632741 0.3052839493469078 0.4583693049175169
+0.779677966718975 0.3033015864546038 0.779677966718975 0.3033015864546038 0.4534564297578881
+0.783054545511365 0.30124522783088364 0.783054545511365 0.30124522783088364 0.44926975551990284
+0.7864273243401992 0.29916150697005445 0.7864273243401992 0.29916150697005445 0.4455592655625797
+0.7898081638755516 0.2970717872782367 0.7898081638755516 0.2970717872782367 0.44224952836231995
+0.7931923955507512 0.2949775028939892 0.7931923955507512 0.2949775028939892 0.43929178319140955
+0.7965789228503516 0.29288577210250066 0.7965789228503516 0.29288577210250066 0.43660350668600945
+0.7999674413495347 0.2907949705376312 0.7999674413495347 0.2907949705376312 0.43409950362584043
+0.8033577688801982 0.2887029288702557 0.8033577688801982 0.28870292887025567 0.4316891668380114
+0.8067481521753693 0.2866108786610518 0.8067481521753693 0.2866108786610518 0.4292781310951597
+0.8101385354705394 0.2845188284518484 0.8101385354705394 0.28451882845184834 0.42677594579901773
+0.8135289187657088 0.28242677824264495 0.8135289187657088 0.282426778242645 0.4241024380692622
+0.816919302060878 0.2803347280334411 0.816919302060878 0.2803347280334411 0.4211926518779073
+0.8203096853560465 0.2782426778242368 0.8203096853560465 0.2782426778242368 0.41800085388505276
+0.8237000686512151 0.27615062761503206 0.8237000686512151 0.27615062761503206 0.4145035928850019
+0.8270904519463841 0.27405857740582706 0.8270904519463841 0.27405857740582706 0.4107017439778616
+0.8304808352415529 0.27196652719662195 0.8304808352415529 0.2719665271966219 0.40662148481482435
+0.8338712185367219 0.26987447698741673 0.8338712185367217 0.2698744769874168 0.4023141535075308
+0.8372616018318908 0.2677824267782116 0.8372616018318908 0.2677824267782116 0.3978549322400271
+0.8406519851270599 0.26569037656900657 0.8406519851270599 0.26569037656900657 0.393340296764098
+0.8440423684222287 0.2635983263598014 0.8440423684222287 0.2635983263598014 0.3888841818301672
+0.8474327517173976 0.2615062761505963 0.8474327517173975 0.26150627615059635 0.3846128496382311
+0.8508231350125666 0.2594142259413912 0.8508231350125666 0.2594142259413912 0.3806585249380092
+0.8542135183077356 0.257322175732186 0.8542135183077356 0.257322175732186 0.37715198320648974
+0.8576039016029045 0.255230125522981 0.8576039016029045 0.255230125522981 0.37421444222657646
+0.8609942848980734 0.25313807531377586 0.8609942848980733 0.2531380753137759 0.3719492893680887
+0.8643846681932423 0.25104602510457075 0.8643846681932423 0.25104602510457075 0.3704343345265395
+0.8677750514884114 0.24895397489536567 0.8677750514884114 0.24895397489536567 0.36971535766842206
+0.8711654347835802 0.24686192468616053 0.8711654347835802 0.24686192468616053 0.3698016719439294
+0.8745558180787492 0.24476987447695547 0.874555818078749 0.2447698744769555 0.3706642292128346
+0.8779462013739181 0.24267782426775034 0.8779462013739181 0.24267782426775034 0.3722364810294317
+0.8813365846690872 0.24058577405854523 0.8813365846690872 0.24058577405854523 0.3744178442587267
+0.884726967964256 0.23849372384934012 0.884726967964256 0.23849372384934012 0.377079295464126
+0.8881173512594249 0.23640167364013503 0.8881173512594248 0.23640167364013506 0.3800704060813745
+0.8915077345545939 0.23430962343092987 0.8915077345545939 0.23430962343092987 0.38322706424699676
+0.8948981178497628 0.23221757322172476 0.8948981178497629 0.23221757322172473 0.3863791956171485
+0.8982885011449318 0.23012552301251965 0.8982885011449318 0.23012552301251965 0.3893579492117382
+0.9016788844401007 0.22803347280331454 0.9016788844401006 0.22803347280331457 0.3920020007733216
+0.9050692677352696 0.22594142259410943 0.9050692677352696 0.22594142259410943 0.39416280075940374
+0.9084596510304386 0.22384937238490432 0.9084596510304387 0.2238493723849043 0.3957087309708998
+0.9118500343256075 0.2217573221756992 0.9118500343256075 0.2217573221756992 0.3965282250201902
+0.9152404176207765 0.2196652719664941 0.9152404176207763 0.21966527196649413 0.3965319576619262
+0.9186308009159454 0.217573221757289 0.9186308009159454 0.217573221757289 0.39565422648181675
+0.9220211842111143 0.21548117154808388 0.9220211842111145 0.21548117154808386 0.39385364745791135
+0.9254115675062833 0.21338912133887877 0.9254115675062833 0.21338912133887877 0.39111327257987893
+0.9288019508014522 0.21129707112967366 0.9288019508014521 0.2112970711296737 0.38744021946407564
+0.9321923340966212 0.20920502092046855 0.9321923340966212 0.20920502092046855 0.3828648836464834
+0.9355827173917901 0.20711297071126344 0.9355827173917902 0.20711297071126342 0.3774397859601759
+0.938973100686959 0.20502092050205833 0.938973100686959 0.20502092050205833 0.37123809085222215
+0.942363483982128 0.20292887029285323 0.9423634839821279 0.20292887029285325 0.36435181676608774
+0.9457538672772969 0.20083682008364812 0.9457538672772969 0.20083682008364812 0.3568897467577296
+0.9491442505724659 0.198744769874443 0.949144250572466 0.198744769874443 0.3489750365332807
+0.9525346338676348 0.1966527196652379 0.9525346338676348 0.1966527196652379 0.34074250891497065
+0.9559250171628038 0.1945606694560328 0.9559250171628036 0.1945606694560328 0.33233562009641465
+0.9593154004579727 0.19246861924682768 0.9593154004579727 0.19246861924682768 0.3239030867644273
+0.9627057837531416 0.19037656903762257 0.9627057837531418 0.19037656903762257 0.31559517803955167
+0.9660961670483106 0.18828451882841746 0.9660961670483106 0.18828451882841746 0.30755970632379775
+0.9694865503434795 0.18619246861921235 0.9694865503434794 0.18619246861921235 0.2999377994575503
+0.9728769336386485 0.18410041841000724 0.9728769336386485 0.18410041841000724 0.2928596024066185
+0.9762673169338174 0.18200836820080213 0.9762673169338175 0.18200836820080213 0.28644013289602954
+0.9796577002289864 0.17991631799159702 0.9796577002289864 0.17991631799159702 0.28077558633810207
+0.9830480835241553 0.1778242677823919 0.9830480835241552 0.1778242677823919 0.275940427712202
+0.9864384668193242 0.1757322175731868 0.9864384668193242 0.1757322175731868 0.27198559617317203
+0.9898288501144932 0.1736401673639817 0.9898288501144933 0.1736401673639817 0.2689380644208305
+0.9932192334096621 0.17154811715477658 0.9932192334096621 0.17154811715477658 0.2668018406320804
+0.17573221757322177 0.9932192334096621 0.17573221757322177 0.9932192334096621 0.1416809165274677
+0.17782426778242683 0.9898288501144932 0.17782426778242685 0.9898288501144933 0.1442797465094476
+0.17991631799163182 0.9864384668193242 0.17991631799163185 0.9864384668193242 0.1471904193841166
+0.18200836820083685 0.9830480835241553 0.18200836820083685 0.9830480835241552 0.15034552807099535
+0.18410041841004188 0.9796577002289864 0.18410041841004188 0.9796577002289864 0.15367072716455613
+0.18619246861924693 0.9762673169338174 0.1861924686192469 0.9762673169338175 0.15708773723536865
+0.18828451882845199 0.9728769336386485 0.18828451882845199 0.9728769336386485 0.16051711124377374
+0.19037656903765707 0.9694865503434794 0.19037656903765707 0.9694865503434794 0.16388066130858744
+0.19246861924686212 0.9660961670483107 0.19246861924686212 0.9660961670483107 0.16710351447156022
+0.19456066945606726 0.9627057837531419 0.1945606694560673 0.962705783753142 0.17011581375046012
+0.1966527196652723 0.9593154004579731 0.1966527196652723 0.959315400457973 0.17285410673588286
+0.19874476987447742 0.9559250171628044 0.19874476987447742 0.9559250171628043 0.17526247332818667
+0.20083682008368234 0.9525346338676354 0.20083682008368234 0.9525346338676354 0.1772934428220687
+0.20292887029288711 0.9491442505724667 0.20292887029288711 0.9491442505724667 0.17890874337688353
+0.2050209205020919 0.9457538672772978 0.2050209205020919 0.9457538672772978 0.1800799173711596
+0.20711297071129656 0.9423634839821288 0.20711297071129656 0.9423634839821288 0.18078882617306066
+0.20920502092050128 0.9389731006869599 0.20920502092050128 0.9389731006869599 0.1810280582759991
+0.211297071129706 0.935582717391791 0.211297071129706 0.9355827173917909 0.18080124559163255
+0.21338912133891108 0.9321923340966216 0.2133891213389111 0.9321923340966215 0.18012328352789395
+0.21548117154811663 0.9288019508014523 0.21548117154811663 0.9288019508014523 0.17902044062064948
+0.21757322175732277 0.9254115675062834 0.21757322175732277 0.9254115675062834 0.1775303321785774
+0.21966527196652952 0.9220211842111153 0.21966527196652952 0.9220211842111153 0.1757017190274185
+0.22175732217573677 0.9186308009159473 0.22175732217573677 0.9186308009159473 0.17359407683348907
+0.22384937238494476 0.9152404176207803 0.22384937238494476 0.9152404176207803 0.17127686439329834
+0.2259414225941534 0.9118500343256138 0.2259414225941534 0.9118500343256138 0.16882840301728727
+0.22803347280336309 0.9084596510304501 0.22803347280336309 0.90845965103045 0.16633426838016366
+0.2301255230125732 0.9050692677352888 0.2301255230125732 0.9050692677352888 0.16388509855336894
+0.2322175732217828 0.9016788844401349 0.2322175732217828 0.9016788844401349 0.16157374763062396
+0.23430962343098682 0.8982885011449825 0.23430962343098685 0.8982885011449825 0.15949177422207775
+0.23640167364017972 0.8948981178498431 0.23640167364017972 0.8948981178498431 0.1577253546925461
+0.2384937238493691 0.8915077345546897 0.2384937238493691 0.8915077345546897 0.15635084736675672
+0.24058577405854134 0.8881173512595324 0.24058577405854134 0.8881173512595325 0.1554303824308336
+0.24267782426771822 0.8847269679643698 0.2426778242677182 0.8847269679643698 0.15500796960673366
+0.24476987447692514 0.8813365846691991 0.24476987447692514 0.8813365846691991 0.15510664963048137
+0.24686192468616774 0.8779462013740459 0.24686192468616772 0.8779462013740459 0.15572712810855013
+0.24895397489545443 0.8745558180789227 0.24895397489545443 0.8745558180789227 0.1568481228489287
+0.25104602510477186 0.871165434783889 0.25104602510477186 0.871165434783889 0.15842837866971995
+0.2531380753141291 0.8677750514888901 0.2531380753141291 0.8677750514888901 0.1604100389693028
+0.255230125523401 0.8643846681939742 0.255230125523401 0.8643846681939742 0.16272288747315888
+0.25732217573262156 0.8609942848988594 0.25732217573262156 0.8609942848988595 0.16528892386066338
+0.25941422594239477 0.8576039016043243 0.25941422594239477 0.8576039016043243 0.1680268016634299
+0.26150627615220007 0.854213518309859 0.26150627615220007 0.854213518309859 0.17085579074719406
+0.2635983263622792 0.8508231350156584 0.2635983263622792 0.8508231350156584 0.17369907768844836
+0.26569037657262135 0.8474327517226746 0.26569037657262135 0.8474327517226746 0.1764863466906539
+0.2677824267824973 0.8440423684302066 0.2677824267824973 0.8440423684302066 0.17915567333835936
+0.2698744769911335 0.8406519851402088 0.2698744769911335 0.8406519851402088 0.18165481254066915
+0.2719665271989015 0.8372616018482639 0.2719665271989015 0.8372616018482638 0.18394197911444057
+0.27405857740497097 0.8338712185563955 0.274058577404971 0.8338712185563955 0.18598621590352568
+0.2761506276131318 0.830480835265026 0.2761506276131318 0.830480835265026 0.18776743006311028
+0.2782426778284968 0.827090451974258 0.2782426778284968 0.827090451974258 0.18927616013270357
+0.2803347280518996 0.823700068690797 0.2803347280518996 0.823700068690797 0.19051311918429636
+0.28242677828140866 0.8203096854162178 0.28242677828140866 0.8203096854162178 0.1914885447380195
+0.28451882852115046 0.8169193021664312 0.28451882852115046 0.816919302166431 0.19222137531405445
+0.2866108787417968 0.813528918921119 0.28661087874179675 0.8135289189211189 0.19273826652965
+0.28870292904292044 0.8101385356970301 0.28870292904292044 0.8101385356970301 0.19307245734459547
+0.2907949802426259 0.8067481522730189 0.2907949802426259 0.8067481522730189 0.1932624977298839
+0.29288694641001317 0.8033578986145423 0.29288694641001317 0.8033578986145423 0.19335083591548938
+0.2949783448069587 0.7999683534334693 0.2949783448069587 0.7999683534334693 0.1933821765728149
+0.2970685873162077 0.7965802721610484 0.2970685873162077 0.7965802721610484 0.19340201596637766
+0.2991585714682377 0.793194517488749 0.2991585714682377 0.793194517488749 0.19345676924734187
+0.3012514984034557 0.7898112179146027 0.3012514984034557 0.7898112179146027 0.1935926122583812
+0.303357670614227 0.78642907594139 0.30335767061422697 0.78642907594139 0.19385952213043156
+0.3164277567198458 0.7662837254852378 0.31642775671984585 0.7662837254852378 0.19996085237684394
+0.30551386635154787 0.7830546430720775 0.3055138663515478 0.7830546430720774 0.1943391503410673
+0.3075831177161267 0.779712198774841 0.30758311771612673 0.779712198774841 0.19490495734846738
+0.3088469178905192 0.7765229099181478 0.30884691789051916 0.7765229099181478 0.19470390796445394
+0.31493641544508966 0.7697305803846236 0.3149364154450897 0.7697305803846236 0.19934340522072214
+0.3135450525278077 0.772941814097349 0.3135450525278077 0.772941814097349 0.19894286950651122
+0.3118722725747879 0.7756277698005445 0.3118722725747879 0.7756277698005445 0.1980741786632409
+0.3260338621185182 0.7516818421643886 0.3260338621185182 0.7516818421643886 0.2092667525411608
+0.3245602847061038 0.7551688812133098 0.3245602847061038 0.7551688812133098 0.20782828014396568
+0.3230825717887257 0.7586788362015838 0.3230825717887256 0.7586788362015838 0.20656151148132776
+0.32159703002036705 0.7621990077236646 0.32159703002036705 0.7621990077236646 0.20548260451224423
+0.3200941173650406 0.7657084921389532 0.3200941173650406 0.7657084921389532 0.20459130799186412
+0.33338180588077954 0.7344500555654782 0.33338180588077954 0.7344500555654782 0.21817080789753543
+0.32750165312974566 0.7482148306044483 0.32750165312974566 0.7482148306044483 0.21084926540394552
+0.3318500378553067 0.7378232712701814 0.3318500378553067 0.7378232712701814 0.2161548943649547
+0.33042699568920314 0.7412623937611279 0.33042699568920314 0.7412623937611279 0.21433634964178014
+0.3289627128254518 0.7447482895589066 0.3289627128254518 0.7447482895589066 0.21254477087513615
+0.33996691505182297 0.7270518407295817 0.33996691505182297 0.7270518407295817 0.22775618467012793
+0.3384578479255304 0.7305558665952607 0.3384578479255304 0.7305558665952607 0.22560523499774401
+0.3369384976174533 0.7340024747998892 0.33693849761745337 0.7340024747998893 0.2234556530962062
+0.34362681231808506 0.7264466822905069 0.34362681231808506 0.7264466822905069 0.23357272238643634
+0.3451119047285316 0.7229057790256604 0.3451119047285316 0.7229057790256604 0.23584394061732836
+0.348037518876517 0.71589338106345 0.348037518876517 0.71589338106345 0.2402703099621315
+0.3465787650240995 0.7193910060398908 0.3465787650240995 0.7193910060398908 0.23807571275144931
+0.35577355707273833 0.7048819035911439 0.35577355707273833 0.7048819035911439 0.25308595333793554
+0.35439741666475516 0.7082536024004852 0.35439741666475516 0.7082536024004852 0.2509717081273691
+0.35300347767352475 0.7116953484952454 0.35300347767352475 0.7116953484952454 0.24879280222642894
+0.3515978947258733 0.7151756304150038 0.3515978947258733 0.7151756304150038 0.2465526840356186
+0.3600013741879326 0.7013443700840101 0.3600013741879326 0.7013443700840101 0.2608892046771286
+0.3591395884433921 0.7043044924053339 0.3591395884433921 0.7043044924053339 0.25964463165619694
+0.36550467445288254 0.6913730089042217 0.36550467445288254 0.6913730089042217 0.27043758499330245
+0.36412046390234765 0.6952200443980824 0.36412046390234765 0.6952200443980824 0.26837760077058276
+0.3625363783951013 0.6993304646328042 0.36253637839510133 0.6993304646328041 0.2658755878338605
+0.370203813023447 0.6871790873450249 0.370203813023447 0.6871790873450249 0.27985383447541284
+0.36901236065772136 0.6907625645782245 0.36901236065772136 0.6907625645782245 0.2780300538559343
+0.389041800149188 0.6596275956118138 0.389041800149188 0.6596275956118137 0.31901061357063515
+0.37609497426289806 0.6792806391084487 0.37609497426289806 0.6792806391084487 0.29140219520792354
+0.37485510829114493 0.6827514031673856 0.37485510829114493 0.6827514031673855 0.2893738568855288
+0.3736824256247232 0.6864738994489158 0.37368242562472315 0.6864738994489158 0.28754887362835874
+0.38077014098027684 0.6751006356178054 0.38077014098027684 0.6751006356178054 0.30138175667954736
+0.3795123927312085 0.6786208924314073 0.3795123927312085 0.6786208924314073 0.2991867130646591
+0.3878904761977611 0.6632849686551603 0.3878904761977611 0.6632849686551604 0.3163980138096006
+0.38671728063143135 0.6669877794407372 0.38671728063143135 0.6669877794407372 0.3139828147462518
+0.38545783369843145 0.6707110089463485 0.3854578336984314 0.6707110089463485 0.31154761532148884
+0.3841920188795649 0.6743713530614039 0.3841920188795649 0.6743713530614039 0.30922215653402535
+0.3936629630575419 0.654877323025064 0.3936629630575419 0.654877323025064 0.33045546861791686
+0.3925684307514779 0.6585087348147807 0.3925684307514779 0.6585087348147808 0.32746926535935766
+0.3970727543412655 0.6537202227036403 0.3970727543412655 0.6537202227036403 0.3387301279215411
+0.40040771605886066 0.6525026496518506 0.40040771605886066 0.6525026496518506 0.34673632130122783
+0.4036684040475692 0.6512584626482604 0.40366840404756926 0.6512584626482604 0.3544671707044553
+0.40680386721611134 0.650039086362184 0.40680386721611134 0.650039086362184 0.36177200417478644
+0.4098371661198681 0.6487966373747276 0.4098371661198681 0.6487966373747276 0.3687258095650678
+0.41263590923004123 0.6470289665798582 0.4126359092300413 0.6470289665798582 0.37551449264144493
+0.41076168262067075 0.6360136371693071 0.41076168262067075 0.6360136371693071 0.3821333172181763
+0.41248424387709015 0.6434626368579975 0.41248424387709015 0.6434626368579975 0.3779130017355193
+0.4134350303518548 0.6389783002415842 0.41343503035185486 0.6389783002415842 0.384147550455816
+0.4015760659064558 0.5595165158659126 0.4015760659064558 0.5595165158659126 0.4506513404899972
+0.40061960799497076 0.5630685256791914 0.4006196079949707 0.5630685256791913 0.45628135410303683
+0.40014774289655963 0.5678261488435974 0.4001477428965597 0.5678261488435973 0.4673675603770752
+0.40138151721467585 0.565505277224584 0.40138151721467585 0.565505277224584 0.47538301293074625
+0.3996122635548516 0.5728986602413451 0.3996122635548516 0.5728986602413452 0.47109354707416273
+0.40151652890636247 0.5699574192575788 0.4015165289063624 0.5699574192575788 0.4884717268578321
+0.40123655557253535 0.5752007846845466 0.4012365555725354 0.5752007846845465 0.49015362685332525
+0.40002314944551537 0.5789395502440501 0.4000231494455154 0.5789395502440501 0.4772098066718233
+0.4007118970349425 0.5823935949866959 0.40071189703494253 0.582393594986696 0.4803290350178777
+0.3994797126820711 0.5880940555329853 0.3994797126820711 0.5880940555329853 0.46076723400298875
+0.40175293512945687 0.585315730606954 0.4017529351294568 0.585315730606954 0.4843905924813143
+0.40154325357768716 0.5913326377461989 0.4015432535776871 0.5913326377461989 0.468477195192224
+0.3997471189583556 0.5949344167085489 0.39974711895835563 0.5949344167085489 0.4469818020193004
+0.40164068408322434 0.5971759616839426 0.4016406840832244 0.5971759616839426 0.4522170216903927
+0.40139863799014025 0.6048924647348449 0.40139863799014025 0.6048924647348449 0.42769444333024836
+0.4022195081198917 0.6005567707490367 0.40221950811989166 0.6005567707490366 0.4451997927487756
+0.4033798523669582 0.6073544796354756 0.4033798523669582 0.6073544796354756 0.4289408207996735
+0.40481158871753997 0.6098433341671776 0.40481158871753997 0.6098433341671776 0.4267123770352189
+0.4047102861909354 0.6132294114719721 0.40471028619093546 0.6132294114719722 0.4160229496620728
+0.40637745694799077 0.6166343405411141 0.4063774569479907 0.616634340541114 0.41148056819465584
+0.407538903175419 0.6228317646165716 0.407538903175419 0.6228317646165716 0.39864562903928397
+0.40854112373239465 0.6192632104611839 0.40854112373239465 0.6192632104611838 0.4105137949298337
+0.4098324959848313 0.6255707279585961 0.40983249598483124 0.6255707279585961 0.39821505179001054
+0.41153213174311937 0.6321494736882692 0.41153213174311937 0.6321494736882692 0.3894844335141347
+0.41226798645637874 0.6283361333090777 0.41226798645637874 0.6283361333090777 0.39802843173974484
+0.4061596909804008 0.5591941395569572 0.4061596909804008 0.5591941395569572 0.5142361874958824
+0.41049884094575656 0.5588756022334879 0.41049884094575656 0.5588756022334879 0.5842280231564972
+0.5873351331699197 0.42505430069507544 0.5873351331699198 0.4250543006950754 1.0101041414281635
+0.5908597432111057 0.4250533855501196 0.5908597432111057 0.42505338555011957 0.9764071623677814
+0.595538309779007 0.42582829231520863 0.5955383097790071 0.42582829231520863 0.9279387093019283
+0.592886629566886 0.4265441778840589 0.592886629566886 0.42654417788405896 0.9507767551924872
+0.6003910504226831 0.4270961288292895 0.6003910504226831 0.42709612882928955 0.8724814600862586
+0.5971733675563654 0.4278071802310835 0.5971733675563654 0.4278071802310835 0.900483194805005
+0.6034735225823802 0.42814973071053464 0.6034735225823802 0.42814973071053464 0.8339846716636137
+0.6010993540063191 0.42970117890511617 0.6010993540063191 0.42970117890511617 0.8463050401160725
+0.606156634098 0.4294661398147354 0.6061566340980001 0.4294661398147354 0.7970865063962809
+0.5858520072366865 0.42959294626278116 0.5858520072366865 0.42959294626278116 1.0125753783099276
+0.5843452962882695 0.4339301544612757 0.5843452962882695 0.43393015446127575 1.0108611481398668
+0.6162523308259067 0.4192749216078765 0.6162523308259066 0.41927492160787644 0.779926477806188
+0.6144990430321252 0.42285188230325504 0.6144990430321252 0.42285188230325504 0.7707628750565921
+0.6198896957959067 0.4197340614950187 0.6198896957959067 0.41973406149501874 0.7474355644988994
+0.6230683117628426 0.4197851084057232 0.6230683117628426 0.4197851084057232 0.721875754731318
+0.6264397283585093 0.4200654925707242 0.6264397283585091 0.4200654925707242 0.6937798160155805
+0.6099275505757872 0.4292741973764002 0.6099275505757872 0.4292741973764002 0.7617669508655099
+0.612192511418931 0.4262167867297333 0.612192511418931 0.42621678672973323 0.7660398185915779
+0.6411784261946081 0.40545777370231784 0.6411784261946081 0.4054577737023179 0.6784466098229599
+0.6512631563246458 0.4063239372046219 0.6512631563246458 0.4063239372046219 0.6110298762007758
+0.6478630373681066 0.4061652537166646 0.6478630373681066 0.4061652537166646 0.6327476076015525
+0.6445892730535581 0.4059617301482987 0.6445892730535582 0.4059617301482987 0.6542927840425513
+0.6387700898116285 0.40811572400767687 0.6387700898116285 0.40811572400767687 0.6805979732139011
+0.6364214363458701 0.41131030521571676 0.6364214363458701 0.4113103052157168 0.6786746993750677
+0.6341544608249898 0.41453458061612475 0.6341544608249898 0.41453458061612475 0.6748168462730808
+0.6319288504996396 0.4176976076574037 0.6319288504996398 0.41769760765740377 0.6697896265701591
+0.6295962762727054 0.4208526958498151 0.6295962762727054 0.4208526958498151 0.6643176458093115
+0.7023537034945453 0.3621897686782283 0.7023537034945453 0.3621897686782283 0.5327431666357122
+0.7057924654819795 0.36282236298084175 0.7057924654819795 0.36282236298084175 0.5212730403565188
+0.6903446756041419 0.36634864064909006 0.6903446756041419 0.36634864064909006 0.5590661625582828
+0.6729433838532607 0.38217472306881406 0.6729433838532607 0.38217472306881406 0.5871887513078756
+0.6749626062695241 0.3801925454077531 0.6749626062695241 0.3801925454077531 0.583511777143034
+0.6848041933804441 0.368529946888833 0.684804193380444 0.368529946888833 0.5734986669325924
+0.6792167212164143 0.3715586833401889 0.6792167212164142 0.3715586833401888 0.5882588811540649
+0.6825919990733058 0.3709268988794416 0.6825919990733058 0.3709268988794416 0.5758384787266098
+0.6769652785814035 0.37741444113966494 0.6769652785814034 0.37741444113966494 0.5822742319370082
+0.6789889787278784 0.3751037322134796 0.6789889787278784 0.3751037322134796 0.5797062508215015
+0.6878873338327863 0.3692562884197723 0.6878873338327863 0.3692562884197723 0.5600189598405888
+0.6963330627303995 0.36420194686551244 0.6963330627303995 0.36420194686551244 0.5450607796954011
+0.6937926446052308 0.3670745023317634 0.6937926446052308 0.3670745023317634 0.5452368557790077
+0.6998055445940926 0.36497868050932497 0.6998055445940926 0.36497868050932497 0.5321095651240545
+0.6723271362097669 0.3856134050386867 0.672327136209767 0.38561340503868674 0.5797187398934286
+0.6696981802582285 0.3890769037241225 0.6696981802582284 0.38907690372412246 0.5811946325651914
+0.6670312580626799 0.3921284193771106 0.6670312580626799 0.3921284193771106 0.5840469827639655
+0.6645108247019685 0.3950888677326483 0.6645108247019685 0.3950888677326483 0.5861467937999966
+0.6547331351657562 0.4065702877027749 0.6547331351657562 0.40657028770277487 0.5888614089193943
+0.6620357709131482 0.3980019975816203 0.6620357709131482 0.3980019975816203 0.5877340897547966
+0.6595831487115107 0.4008848165109577 0.6595831487115107 0.4008848165109577 0.5887673735082591
+0.657148544380588 0.4037412101677736 0.657148544380588 0.4037412101677736 0.5891690983544448
+0.7152757992658071 0.36120046682862245 0.7152757992658071 0.36120046682862245 0.5018027739552484
+0.7092121042513622 0.3633855964397717 0.7092121042513622 0.3633855964397717 0.5103824676469538
+0.7126740549868081 0.3639029784288064 0.7126740549868081 0.3639029784288064 0.4998431816283128
+0.7187953868578846 0.36184413060039367 0.7187953868578846 0.36184413060039367 0.49141673278858805
+0.7214502156905914 0.35918830404003127 0.7214502156905914 0.35918830404003127 0.49343969170120827
+0.7241245470106502 0.35651456130520054 0.7241245470106502 0.35651456130520054 0.4953299686538139
+0.7268261135971583 0.35381445412847734 0.7268261135971583 0.35381445412847734 0.49700011263402416
+0.7295774935360472 0.35107205774592914 0.7295774935360472 0.35107205774592914 0.49835247694068646
+0.7495896184570789 0.33284360036422544 0.7495896184570788 0.33284360036422544 0.49019733815008776
+0.7324788014202508 0.34822894522306297 0.7324788014202507 0.34822894522306297 0.49921907418466427
+0.7354762296799627 0.3451258152476928 0.7354762296799626 0.3451258152476928 0.49997705605871706
+0.7386492783401413 0.34322465807747193 0.7386492783401413 0.3432246580774719 0.4968784245855779
+0.7416459329644407 0.34056058007447454 0.7416459329644408 0.3405605800744746 0.4955016267862458
+0.743817161160268 0.33744430635791495 0.7438171611602681 0.337444306357915 0.49640705275229646
+0.746865029376016 0.335327703781203 0.746865029376016 0.335327703781203 0.49276949698517525
+0.7529209548892757 0.3337385467146587 0.7529209548892757 0.3337385467146587 0.48040815979421136
+0.7556109675294285 0.331099202213775 0.7556109675294285 0.33109920221377503 0.47779180690467754
+0.758298995382838 0.32843093491481123 0.758298995382838 0.3284309349148113 0.47487004761034646
+0.7610048973451652 0.3257464539367979 0.7610048973451652 0.32574645393679796 0.4716475301781125
+0.7637282317448366 0.32308767533565924 0.7637282317448366 0.32308767533565924 0.4681648027120709
+0.7664946262642828 0.3205555230710268 0.7664946262642828 0.3205555230710268 0.46435562486764864
+0.7693240311984134 0.31813471508004426 0.7693240311984134 0.31813471508004426 0.4602993983826085
+0.7720283778206698 0.3155896329570004 0.7720283778206697 0.3155896329570003 0.4567866411894039
+0.7748393943736921 0.3129034982591894 0.7748393943736921 0.3129034982591894 0.453503630144977
+0.7759743764910525 0.30919097052967703 0.7759743764910524 0.3091909705296771 0.4547875593586861
+0.7794792501081885 0.30745724357940313 0.7794792501081885 0.30745724357940313 0.4493796723411778
+0.7829901578247659 0.30541465160953835 0.7829901578247659 0.30541465160953835 0.44470518951812116
+0.7864134215440443 0.30334079257902785 0.7864134215440443 0.30334079257902785 0.44065443697002243
+0.7898059274658321 0.30125387599565123 0.7898059274658321 0.3012538759956512 0.4370940280270536
+0.7931924790051882 0.2991622217987167 0.7931924790051882 0.2991622217987167 0.43392486488959786
+0.7965790449693143 0.2970699368404301 0.7965790449693143 0.2970699368404301 0.4310673120474254
+0.7999673855850236 0.2949790794978851 0.7999673855850236 0.2949790794978851 0.4284366048933959
+0.8033577688801973 0.2928870292886721 0.8033577688801973 0.2928870292886721 0.42594714982220877
+0.8067481521753673 0.290794979079465 0.8067481521753673 0.290794979079465 0.42350765246201066
+0.8101385354705374 0.2887029288702591 0.8101385354705374 0.2887029288702591 0.4210264166673589
+0.8135289187657074 0.2866108786610543 0.8135289187657074 0.2866108786610542 0.4184188685770934
+0.8169193020608772 0.28451882845185 0.8169193020608772 0.28451882845185 0.4156127595065256
+0.8203096853560465 0.2824267782426457 0.8203096853560465 0.2824267782426457 0.4125526752303726
+0.8237000686512154 0.28033472803344145 0.8237000686512154 0.28033472803344145 0.4092036862050676
+0.8270904519463841 0.27824267782423684 0.8270904519463841 0.27824267782423684 0.4055540362823555
+0.8304808352415529 0.27615062761503206 0.8304808352415529 0.27615062761503206 0.40161680061841415
+0.8338712185367217 0.274058577405827 0.8338712185367217 0.274058577405827 0.39743045456116133
+0.8372616018318908 0.27196652719662184 0.8372616018318908 0.27196652719662184 0.3930582927068096
+0.8406519851270597 0.2698744769874167 0.8406519851270599 0.2698744769874167 0.38858663003696675
+0.8440423684222286 0.2677824267782116 0.8440423684222286 0.2677824267782116 0.3841217164977076
+0.8474327517173975 0.26569037656900657 0.8474327517173975 0.26569037656900657 0.37978531625460166
+0.8508231350125666 0.2635983263598014 0.8508231350125666 0.2635983263598014 0.3757089576085841
+0.8542135183077355 0.2615062761505963 0.8542135183077356 0.26150627615059635 0.3720269608673101
+0.8576039016029045 0.25941422594139113 0.8576039016029045 0.25941422594139113 0.3688685023018979
+0.8609942848980733 0.257322175732186 0.8609942848980733 0.257322175732186 0.36634915967359016
+0.8643846681932423 0.25523012552298097 0.8643846681932423 0.25523012552298097 0.3645625744958724
+0.8677750514884113 0.25313807531377586 0.8677750514884114 0.2531380753137759 0.36357300486190786
+0.8711654347835801 0.25104602510457075 0.8711654347835801 0.25104602510457075 0.3634095713462884
+0.874555818078749 0.2489539748953657 0.874555818078749 0.24895397489536572 0.3640628762668514
+0.8779462013739181 0.24686192468616053 0.8779462013739181 0.24686192468616053 0.36548440463148646
+0.8813365846690872 0.2447698744769554 0.8813365846690872 0.2447698744769554 0.3675887462064697
+0.884726967964256 0.2426778242677503 0.884726967964256 0.2426778242677503 0.37025830212070504
+0.8881173512594248 0.24058577405854523 0.8881173512594248 0.24058577405854523 0.37334984883402855
+0.8915077345545939 0.2384937238493401 0.8915077345545939 0.2384937238493401 0.37670218684062345
+0.8948981178497628 0.23640167364013498 0.8948981178497629 0.236401673640135 0.3801441099691263
+0.8982885011449318 0.23430962343092987 0.8982885011449318 0.23430962343092987 0.3835020579835579
+0.9016788844401007 0.23221757322172476 0.9016788844401006 0.23221757322172473 0.38660700309572643
+0.9050692677352696 0.23012552301251965 0.9050692677352696 0.23012552301251965 0.38930031523416786
+0.9084596510304386 0.22803347280331454 0.9084596510304387 0.22803347280331457 0.39143851428445386
+0.9118500343256075 0.22594142259410943 0.9118500343256075 0.22594142259410943 0.3928969337176102
+0.9152404176207765 0.22384937238490432 0.9152404176207763 0.2238493723849043 0.3935723890638973
+0.9186308009159454 0.2217573221756992 0.9186308009159454 0.2217573221756992 0.3933849756246462
+0.9220211842111143 0.2196652719664941 0.9220211842111145 0.21966527196649413 0.39227912448501384
+0.9254115675062833 0.217573221757289 0.9254115675062833 0.217573221757289 0.3902240350470892
+0.9288019508014522 0.21548117154808388 0.9288019508014521 0.21548117154808386 0.38721358397154454
+0.9321923340966212 0.21338912133887877 0.9321923340966212 0.21338912133887877 0.38326578972275205
+0.9355827173917901 0.21129707112967366 0.9355827173917902 0.2112970711296737 0.3784218916171343
+0.938973100686959 0.20920502092046855 0.938973100686959 0.20920502092046855 0.3727450835113891
+0.942363483982128 0.20711297071126344 0.9423634839821279 0.20711297071126342 0.3663189252406096
+0.9457538672772969 0.20502092050205833 0.9457538672772969 0.20502092050205833 0.3592454394834397
+0.9491442505724659 0.20292887029285323 0.949144250572466 0.20292887029285325 0.3516428878876732
+0.9525346338676348 0.20083682008364812 0.9525346338676348 0.20083682008364812 0.3436432086020434
+0.9559250171628038 0.198744769874443 0.9559250171628036 0.198744769874443 0.33538908937030903
+0.9593154004579727 0.1966527196652379 0.9593154004579727 0.1966527196652379 0.3270306489018214
+0.9627057837531416 0.1945606694560328 0.9627057837531418 0.1945606694560328 0.31872170860802035
+0.9660961670483106 0.19246861924682768 0.9660961670483106 0.19246861924682768 0.31061566228285103
+0.9694865503434795 0.19037656903762257 0.9694865503434794 0.19037656903762257 0.3028609979454137
+0.9728769336386485 0.18828451882841746 0.9728769336386485 0.18828451882841746 0.29559659614808126
+0.9762673169338174 0.18619246861921235 0.9762673169338175 0.18619246861921235 0.28894701857652705
+0.9796577002289864 0.18410041841000724 0.9796577002289864 0.18410041841000724 0.283018095892988
+0.9830480835241553 0.18200836820080213 0.9830480835241552 0.18200836820080213 0.2778931996129823
+0.9864384668193242 0.17991631799159702 0.9864384668193242 0.17991631799159702 0.2736306073460221
+0.9898288501144932 0.1778242677823919 0.9898288501144933 0.1778242677823919 0.27026231532808676
+0.9932192334096621 0.1757322175731868 0.9932192334096621 0.1757322175731868 0.26779450610190775
+0.17991631799163185 0.9932192334096621 0.17991631799163185 0.9932192334096621 0.1447354789267321
+0.18200836820083688 0.9898288501144932 0.18200836820083688 0.9898288501144933 0.1472816371799761
+0.18410041841004188 0.9864384668193242 0.18410041841004188 0.9864384668193242 0.1501358161242448
+0.1861924686192469 0.9830480835241553 0.1861924686192469 0.9830480835241552 0.15322886059272958
+0.18828451882845193 0.9796577002289864 0.1882845188284519 0.9796577002289864 0.15648468141865482
+0.19037656903765704 0.9762673169338174 0.19037656903765707 0.9762673169338175 0.15982342974180788
+0.1924686192468621 0.9728769336386485 0.1924686192468621 0.9728769336386485 0.16316440778937988
+0.19456066945606712 0.9694865503434795 0.19456066945606712 0.9694865503434794 0.16642860986385621
+0.1966527196652722 0.9660961670483107 0.1966527196652722 0.9660961670483107 0.16954086188226813
+0.19874476987447723 0.9627057837531421 0.19874476987447723 0.9627057837531421 0.17243157812712082
+0.20083682008368223 0.9593154004579733 0.20083682008368223 0.9593154004579733 0.17503818110593783
+0.20292887029288711 0.9559250171628042 0.20292887029288711 0.9559250171628042 0.1773062400112054
+0.20502092050209195 0.9525346338676353 0.20502092050209195 0.9525346338676354 0.1791903814946434
+0.20711297071129675 0.9491442505724663 0.20711297071129672 0.9491442505724663 0.18065501855782776
+0.20920502092050153 0.9457538672772975 0.20920502092050156 0.9457538672772975 0.18167493290149703
+0.21129707112970644 0.9423634839821283 0.21129707112970644 0.9423634839821283 0.18223573509053667
+0.21338912133891155 0.9389731006869595 0.21338912133891155 0.9389731006869596 0.18233421620426737
+0.21548117154811683 0.9355827173917906 0.21548117154811683 0.9355827173917906 0.18197859427226934
+0.21757322175732244 0.9321923340966213 0.21757322175732244 0.9321923340966213 0.18118864828962256
+0.2196652719665285 0.9288019508014523 0.2196652719665285 0.9288019508014523 0.1799957212922835
+0.22175732217573482 0.9254115675062842 0.22175732217573482 0.9254115675062842 0.1784425612055027
+0.22384937238494163 0.9220211842111162 0.2238493723849416 0.9220211842111162 0.1765829536100506
+0.22594142259414882 0.9186308009159488 0.22594142259414882 0.9186308009159488 0.17448108455147804
+0.22803347280335642 0.9152404176207826 0.22803347280335642 0.9152404176207826 0.1722105556397383
+0.23012552301256414 0.9118500343256181 0.23012552301256414 0.9118500343256181 0.16985296146307324
+0.2322175732217713 0.9084596510304571 0.2322175732217713 0.9084596510304571 0.16749593680921035
+0.2343096234309753 0.9050692677352973 0.2343096234309753 0.9050692677352973 0.165230596978867
+0.23640167364017295 0.9016788844401442 0.23640167364017292 0.9016788844401443 0.16314833856329025
+0.2384937238493694 0.8982885011449837 0.2384937238493694 0.8982885011449838 0.1613370483181207
+0.24058577405855783 0.894898117849822 0.24058577405855783 0.894898117849822 0.15987688411923642
+0.24267782426774875 0.8915077345546578 0.24267782426774875 0.8915077345546578 0.15883592960934337
+0.24476987447695434 0.8881173512594879 0.24476987447695434 0.8881173512594879 0.15826614989124257
+0.24686192468617693 0.8847269679643238 0.24686192468617693 0.8847269679643238 0.1582001432231133
+0.24895397489542223 0.8813365846691722 0.24895397489542223 0.8813365846691722 0.15864915056518306
+0.2510460251046868 0.8779462013740633 0.2510460251046868 0.8779462013740634 0.1596026354923645
+0.25313807531397564 0.8745558180789744 0.25313807531397564 0.8745558180789744 0.1610295089658342
+0.25523012552323154 0.8711654347839266 0.2552301255232315 0.8711654347839266 0.16288081225384154
+0.2573221757325718 0.8677750514889165 0.2573221757325718 0.8677750514889165 0.16509346301130357
+0.2594142259419612 0.8643846681939102 0.2594142259419612 0.8643846681939102 0.1675945668552803
+0.26150627615148253 0.8609942848990855 0.26150627615148253 0.8609942848990855 0.17030580931422093
+0.26359832636114894 0.8576039016044551 0.26359832636114894 0.8576039016044551 0.1731475415921764
+0.2656903765709205 0.8542135183104569 0.2656903765709205 0.854213518310457 0.17604231113649435
+0.2677824267804282 0.8508231350167023 0.26778242678042824 0.8508231350167023 0.1789177217414459
+0.2698744769892596 0.8474327517242086 0.2698744769892596 0.8474327517242086 0.18170861177012368
+0.27196652719763764 0.8440423684306572 0.27196652719763764 0.8440423684306572 0.18435860474322954
+0.27405857740510897 0.8406519851371228 0.27405857740510897 0.8406519851371229 0.1868211180334706
+0.27615062761361797 0.8372616018437885 0.2761506276136179 0.8372616018437885 0.18905992221910017
+0.2782426778257793 0.8338712185506862 0.2782426778257793 0.8338712185506862 0.19104933568896063
+0.28033472804205045 0.8304808352611813 0.28033472804205045 0.8304808352611813 0.19277412436665628
+0.2824267782615338 0.8270904519761163 0.2824267782615338 0.8270904519761163 0.1942291601505769
+0.2845188284863749 0.8237000687034084 0.2845188284863749 0.8237000687034083 0.1954188769236873
+0.286610878701897 0.8203096854331888 0.286610878701897 0.8203096854331889 0.19635655116945838
+0.2887029289002327 0.8169193021752529 0.2887029289002327 0.8169193021752529 0.19706342616647102
+0.2907949791267698 0.8135289189099213 0.2907949791267698 0.8135289189099213 0.19756769389671294
+0.2928870296961135 0.810138535675466 0.2928870296961135 0.810138535675466 0.19790334798943013
+0.2949790835141948 0.8067481517172026 0.2949790835141948 0.8067481517172027 0.1981089241641295
+0.29707109630101025 0.8033578078904792 0.2970710963010102 0.8033578078904792 0.19822611019756456
+0.29916282197668503 0.799967753363969 0.29916282197668503 0.799967753363969 0.19829824321060244
+0.30125411265794577 0.7965783387422686 0.30125411265794577 0.7965783387422686 0.1983691321498038
+0.3033458518462805 0.7931890941980629 0.30334585184628043 0.7931890941980629 0.19848208330698178
+0.3054393244344222 0.7897962373212484 0.3054393244344222 0.7897962373212484 0.19867644892708494
+0.30754438860585204 0.7863966921558219 0.30754438860585204 0.7863966921558219 0.19900186320705468
+0.31858970268849535 0.7692317447241034 0.31858970268849535 0.7692317447241034 0.20392129894598598
+0.30969593200200624 0.7828864211046892 0.30969593200200624 0.7828864211046892 0.1994774592860735
+0.3118281453274062 0.7791636796995491 0.31182814532740627 0.7791636796995492 0.20003587422407593
+0.317095103081532 0.7728484930302812 0.31709510308153194 0.7728484930302812 0.20353279498921337
+0.31528565741550774 0.776516988501136 0.3152856574155077 0.776516988501136 0.2030290711687495
+0.329589362706951 0.7512748640686308 0.329589362706951 0.7512748640686308 0.2140980661520613
+0.32813651686128537 0.7547483210204243 0.32813651686128537 0.7547483210204243 0.21261410320931895
+0.32668540306365496 0.7582360588176588 0.32668540306365496 0.7582360588176588 0.2113081497171534
+0.325230733744145 0.7617241661311209 0.32523073374414496 0.7617241661311209 0.2101895980695462
+0.32375784925651835 0.7651916251119109 0.32375784925651835 0.7651916251119109 0.20924826052311993
+0.322250374602979 0.7686073591219565 0.322250374602979 0.7686073591219565 0.20846085722284577
+0.33543767928590246 0.7374636540745308 0.33543767928590246 0.7374636540745308 0.2213781040747829
+0.33105151616114464 0.7478198874572822 0.33105151616114464 0.7478198874572822 0.21574885190647494
+0.33396066167348776 0.7409023801234672 0.33396066167348776 0.7409023801234672 0.21938949806288152
+0.33251245998512474 0.7443637985234925 0.33251245998512474 0.7443637985234925 0.21752424697567507
+0.33312028666496213 0.7508540458517668 0.33312028666496213 0.7508540458517668 0.2189302674245517
+0.3421053625719803 0.7300029143446839 0.3421053625719803 0.7300029143446839 0.2312538665041267
+0.34054855925196725 0.7335479660223614 0.34054855925196725 0.7335479660223614 0.2289169962386773
+0.33899098728742993 0.7370653331388671 0.33899098728742993 0.7370653331388671 0.22662758760976387
+0.3458133680225516 0.7293945833555718 0.34581336802255164 0.7293945833555718 0.237117212938861
+0.3473054446421517 0.7257665773235852 0.3473054446421517 0.7257665773235852 0.23954985499594586
+0.34875510069433396 0.7222035104705772 0.34875510069433396 0.7222035104705772 0.24192647887623012
+0.35018260494224274 0.7186783659237551 0.35018260494224274 0.7186783659237551 0.24426096319485316
+0.35781433024130344 0.7074869776464175 0.35781433024130344 0.7074869776464175 0.2574581619995003
+0.3564726082347538 0.7109132606655639 0.3564726082347538 0.7109132606655639 0.25521743231128746
+0.35511875540538135 0.7143967874125474 0.35511875540538135 0.7143967874125474 0.25290203665109784
+0.3537533265051642 0.7179053625255124 0.3537533265051642 0.7179053625255124 0.2505258294466673
+0.3623517528282463 0.7028980857752027 0.3623517528282463 0.7028980857752027 0.2659893839117235
+0.36119989057230595 0.7064992955988659 0.36119989057230595 0.7064992955988659 0.26402559705979783
+0.3677856158992487 0.6944532990111872 0.3677856158992487 0.6944532990111872 0.27608680322901025
+0.3666003544417159 0.6982224383220642 0.36660035444171596 0.6982224383220642 0.2741550741758754
+0.36539327947057143 0.7019140117595786 0.36539327947057143 0.7019140117595786 0.27208050051437066
+0.37249802093438905 0.6900943650761003 0.37249802093438905 0.6900943650761003 0.2856031774047327
+0.371308072810494 0.6937341762056127 0.371308072810494 0.6937341762056127 0.28357470723891365
+0.39147006925718514 0.6621711704786469 0.39147006925718514 0.6621711704786469 0.32481902461398887
+0.37831477817449916 0.6821826644000208 0.37831477817449916 0.6821826644000208 0.29716577816376005
+0.37716974156392796 0.6857825889581832 0.37716974156392796 0.6857825889581832 0.29523687969513834
+0.37598464422616695 0.6894030095223694 0.37598464422616695 0.6894030095223694 0.2931709236393016
+0.38283754270528053 0.6778648244869817 0.38283754270528053 0.6778648244869817 0.3067009502673979
+0.3815983233463819 0.6814958076666617 0.38159832334638194 0.6814958076666616 0.30447350418394076
+0.3860594248836607 0.6770676598557689 0.3860594248836607 0.6770676598557689 0.31388252712677583
+0.3903566648075445 0.6658934953582482 0.3903566648075445 0.6658934953582482 0.3224080768537659
+0.3891701541871308 0.6697675111985056 0.3891701541871308 0.6697675111985056 0.3200519065646263
+0.3880238647983958 0.6739431802278228 0.38802386479839573 0.6739431802278227 0.31796543477517236
+0.3960380985734175 0.6573535938157223 0.3960380985734175 0.6573535938157223 0.33568889945169694
+0.394999907320359 0.66100675443771 0.394999907320359 0.66100675443771 0.3330079354197372
+0.39943617033467804 0.6561340646745402 0.39943617033467804 0.6561340646745402 0.34363611196958593
+0.4027601628998984 0.6548689921232621 0.4027601628998984 0.6548689921232621 0.35130191664343013
+0.40600240659178854 0.6535704048746429 0.4060024065917886 0.6535704048746429 0.35866314665090254
+0.4091401184740066 0.6521976132759261 0.4091401184740066 0.6521976132759261 0.36569898463856804
+0.4121964423831498 0.6506282299146183 0.41219644238314984 0.6506282299146183 0.3725845362007159
+0.4151765074212735 0.6493016824275155 0.4151765074212735 0.6493016824275156 0.3790479461824858
+0.4156429641395724 0.6455760380485852 0.4156429641395724 0.6455760380485852 0.38237378434178165
+0.41411942500388227 0.6349533506262005 0.41411942500388227 0.6349533506262005 0.39061489429091706
+0.41631839451089653 0.6416173818338813 0.41631839451089653 0.6416173818338812 0.38697682431378055
+0.41678614769660755 0.6376757062937799 0.41678614769660755 0.6376757062937798 0.3921952094397119
+0.41831785624045814 0.6479943850358642 0.41831785624045814 0.6479943850358642 0.38561113965206933
+0.4041151214762925 0.5635245598576949 0.4041151214762925 0.5635245598576949 0.5049531949729622
+0.4033486989451982 0.5671179024140358 0.40334869894519815 0.5671179024140357 0.5053450523190123
+0.4028836413212664 0.5721222753153531 0.4028836413212664 0.5721222753153531 0.5072384804908152
+0.4041859505561357 0.5695148221631166 0.4041859505561357 0.5695148221631166 0.5204968384180507
+0.40327291940645327 0.5770673362158009 0.4032729194064533 0.5770673362158009 0.511154579394431
+0.4045038542251749 0.574089336242796 0.40450385422517493 0.574089336242796 0.5265088174815028
+0.4028196815508098 0.5800161281213523 0.40281968155080977 0.5800161281213523 0.5032967365440345
+0.40305749920031625 0.5826248776625764 0.4030574992003163 0.5826248776625764 0.5011085179451886
+0.40501558772927104 0.5783234829376556 0.40501558772927104 0.5783234829376556 0.527894677326767
+0.4049053909199116 0.5844516126027944 0.4049053909199117 0.5844516126027944 0.5134794168737385
+0.40324854043785313 0.5878254368219576 0.40324854043785313 0.5878254368219576 0.49058598487086374
+0.40487380250494037 0.5907340880594275 0.40487380250494037 0.5907340880594275 0.4938887326629709
+0.40363121260275847 0.5943074972961611 0.4036312126027584 0.5943074972961612 0.47364363617917693
+0.4041164671304658 0.5976671352229211 0.40411646713046584 0.5976671352229211 0.4650119753329428
+0.40652134817293895 0.592931691267488 0.40652134817293895 0.592931691267488 0.497116326408331
+0.4046960117066709 0.6037954406946928 0.40469601170667086 0.6037954406946929 0.4466671349971784
+0.40601225904578475 0.5999527706756227 0.4060122590457848 0.5999527706756228 0.4671414440207354
+0.4070644853623663 0.6068440784403223 0.40706448536236634 0.6068440784403223 0.4460894851599132
+0.4076191842063169 0.6107373750940029 0.4076191842063169 0.6107373750940029 0.43420246496231857
+0.40774229887087127 0.6138315083945074 0.40774229887087127 0.6138315083945074 0.424228943385174
+0.4095885114002037 0.6158778027106852 0.40958851140020375 0.6158778027106852 0.42350549412840716
+0.41082209684513576 0.6218775437744356 0.41082209684513576 0.6218775437744356 0.4095321778636712
+0.41164671891417526 0.6183121630543267 0.4116467189141753 0.6183121630543268 0.42169381603366235
+0.41310087765604553 0.6245083609355078 0.4131008776560456 0.6245083609355078 0.4083479274534279
+0.414815278433691 0.6311062149490332 0.414815278433691 0.6311062149490332 0.3981659257125368
+0.4155399120289254 0.6273891615677835 0.4155399120289253 0.6273891615677835 0.40692793447607295
+0.4086884869241126 0.5630278257516599 0.4086884869241126 0.5630278257516599 0.5710136476172903
+0.41301131191720736 0.5625278096432923 0.41301131191720736 0.5625278096432923 0.6420609456941461
+0.590397083569963 0.4286859187884517 0.5903970835699629 0.4286859187884517 0.9675819426929547
+0.5939138240110147 0.4288429918987475 0.5939138240110147 0.4288429918987475 0.9284731009261541
+0.5985414312418432 0.42999815317928985 0.5985414312418432 0.42999815317928985 0.8712774251487391
+0.595926232648245 0.4304021806626028 0.595926232648245 0.4304021806626028 0.8964853548028653
+0.6027713954745676 0.43108373749977985 0.6027713954745676 0.43108373749977985 0.8176427114477498
+0.5999125285551807 0.4321218293361856 0.5999125285551807 0.43212182933618554 0.8391658018406137
+0.607686590602132 0.43241044555071917 0.6076865906021319 0.4324104455507191 0.7551598654487687
+0.6109855669523032 0.4319148781072278 0.6109855669523032 0.4319148781072278 0.7273045863738506
+0.6046409878481221 0.43306932234901063 0.6046409878481221 0.4330693223490107 0.7801468697450389
+0.6092095907269159 0.434452736830914 0.6092095907269159 0.434452736830914 0.7192452657156563
+0.5886887151943013 0.433201050792243 0.5886887151943013 0.43320105079224297 0.9614722082369834
+0.5869936155909912 0.4374783654986591 0.5869936155909912 0.4374783654986591 0.9504901853806443
+0.6176846290367934 0.42276990177982077 0.6176846290367934 0.42276990177982077 0.7442618112427898
+0.6157422231319877 0.42614624115642075 0.6157422231319877 0.42614624115642075 0.7348347347367686
+0.6212456718688064 0.4225997672652241 0.6212456718688064 0.42259976726522414 0.7161668173327814
+0.6241848664223786 0.4223121201676848 0.6241848664223786 0.4223121201676848 0.6945773256909924
+0.6269071513656048 0.4238679818913503 0.6269071513656047 0.42386798189135033 0.6614009563284408
+0.6136929881973912 0.42951752549205546 0.613692988197391 0.4295175254920554 0.7243858047913633
+0.6169288861631174 0.4288389411024896 0.6169288861631174 0.42883894110248966 0.7011658138181299
+0.6114775885355073 0.4350368074148017 0.6114775885355073 0.4350368074148017 0.6909325825533994
+0.6134756727052671 0.43280781878148866 0.6134756727052671 0.43280781878148866 0.6948205035927183
+0.6523537474400299 0.4094056709212704 0.6523537474400299 0.4094056709212704 0.5874770220616773
+0.6422519091928873 0.40875979878871155 0.6422519091928872 0.40875979878871155 0.6544542623734534
+0.6488742200007602 0.40932489316245546 0.6488742200007601 0.4093248931624554 0.6093055989947816
+0.6456162730929306 0.4091134996935955 0.6456162730929306 0.4091134996935955 0.6309560271747762
+0.6399175937491941 0.41177134860587467 0.6399175937491942 0.41177134860587467 0.6525150881114864
+0.6376037235772295 0.41492748673527635 0.6376037235772295 0.4149274867352764 0.6484834453846927
+0.6353224344558902 0.41811020186634185 0.6353224344558902 0.41811020186634185 0.6427802813917144
+0.6329942694157088 0.42120544272570903 0.6329942694157088 0.42120544272570903 0.6366863092532339
+0.630632489280582 0.4242195110232308 0.630632489280582 0.4242195110232308 0.6301644867575588
+0.7033120535442826 0.3656250173408751 0.7033120535442826 0.3656250173408751 0.5197975036589294
+0.7067272232182958 0.3661872797215255 0.7067272232182958 0.3661872797215255 0.5083861229001352
+0.6912697141078435 0.36995688155511436 0.6912697141078435 0.36995688155511436 0.5457257620319244
+0.6754514703882595 0.3835360185529805 0.6754514703882596 0.3835360185529804 0.5711276625315708
+0.6778934715308448 0.38079777105711815 0.6778934715308448 0.38079777105711815 0.5682494584448728
+0.6853712911791129 0.37206300236339646 0.6853712911791129 0.37206300236339646 0.561880087121751
+0.6823525297092966 0.3744620595896203 0.6823525297092966 0.37446205958962026 0.5674120840327862
+0.6804460431063315 0.3777857034882016 0.6804460431063316 0.3777857034882017 0.5659351885231745
+0.6887231786528973 0.37279846719211773 0.6887231786528973 0.3727984671921178 0.5468237560478784
+0.6972801813199867 0.36780485704726296 0.6972801813199867 0.36780485704726296 0.5316318197890019
+0.6947281303079746 0.37068139338534983 0.6947281303079746 0.37068139338534983 0.531467759045379
+0.700798578959059 0.3684973450578207 0.7007985789590591 0.36849734505782067 0.5184603450805265
+0.6760742792412712 0.3867865306428935 0.6760742792412712 0.3867865306428935 0.557388175891197
+0.6734537209349609 0.3896890065602068 0.6734537209349609 0.3896890065602068 0.5599166889355164
+0.6707984575067291 0.3925973757661871 0.6707984575067291 0.3925973757661871 0.5625307026391123
+0.6682316103818146 0.3955134071604605 0.6682316103818146 0.3955134071604605 0.5644002807923111
+0.665707165603067 0.39839946286718164 0.665707165603067 0.39839946286718164 0.5657681265771927
+0.6557702780392927 0.4096917296990232 0.6557702780392926 0.4096917296990232 0.5654942292543704
+0.6582240393770498 0.4068886736937906 0.6582240393770498 0.4068886736937906 0.5667205388826858
+0.663199120508584 0.4012588609245232 0.663199120508584 0.4012588609245232 0.5666540970372614
+0.6607042317914815 0.4040912249027804 0.6607042317914815 0.4040912249027803 0.5669866614818887
+0.7161622097727033 0.3644808584912123 0.7161622097727033 0.3644808584912123 0.4893519694269994
+0.7100624027585407 0.3666643983994134 0.7100624027585408 0.3666643983994134 0.49782409027414115
+0.7135607278952104 0.3670730142317425 0.7135607278952104 0.3670730142317425 0.48738426730219137
+0.7196530494586958 0.36515610513423336 0.7196530494586958 0.36515610513423336 0.4788489590655685
+0.7223289956266651 0.3625463346460509 0.7223289956266651 0.3625463346460509 0.48104609401485926
+0.725025332656919 0.35991417988324376 0.725025332656919 0.35991417988324376 0.48315591128934626
+0.7277425639326268 0.3572619046401612 0.7277425639326268 0.3572619046401612 0.4850765755936263
+0.730493975404991 0.35458334587296064 0.730493975404991 0.35458334587296064 0.48670393448585275
+0.7333123027794975 0.3518685177537871 0.7333123027794975 0.3518685177537871 0.4878980864257159
+0.750204185292072 0.3363081477811631 0.750204185292072 0.3363081477811631 0.4828119876533629
+0.7362333352226142 0.34913599267998613 0.7362333352226144 0.34913599267998613 0.4884387393317651
+0.7391667149585812 0.34653474946769186 0.7391667149585812 0.34653474946769186 0.4881503623403411
+0.7421507658920419 0.3440380211147701 0.7421507658920419 0.34403802111477017 0.48688421174593927
+0.7447729123096319 0.34134935565406543 0.7447729123096319 0.34134935565406543 0.4864060897308073
+0.7474385479338993 0.3387810421448259 0.7474385479338993 0.3387810421448259 0.48507202775948105
+0.7535781349193664 0.3373104495726868 0.7535781349193664 0.3373104495726868 0.4726196887239636
+0.7562961087416241 0.334727368109561 0.7562961087416241 0.334727368109561 0.4702766059509697
+0.7590091622425059 0.33211206407884725 0.7590091622425059 0.33211206407884725 0.4676286970122558
+0.7617280239064904 0.3294759789572826 0.7617280239064904 0.3294759789572826 0.4646897951059897
+0.7644559198009588 0.32683626570494384 0.7644559198009588 0.3268362657049439 0.46150799218721567
+0.7671930449279064 0.32422727588930716 0.7671930449279064 0.32422727588930716 0.4581322596937198
+0.7699652203596576 0.3216579347230026 0.7699652203596576 0.3216579347230026 0.45457911606715046
+0.7727313372176602 0.3191085217476661 0.7727313372176602 0.3191085217476661 0.4510541669035372
+0.7751269783562214 0.31658951304957417 0.7751269783562212 0.31658951304957417 0.4484088472180984
+0.7774225807216486 0.31504801848629227 0.7774225807216486 0.31504801848629227 0.44501317504063176
+0.7791364005851421 0.31193832612566613 0.7791364005851421 0.31193832612566613 0.44518532625761054
+0.7829121704195718 0.30961338897846163 0.7829121704195718 0.30961338897846163 0.4399708826612561
+0.7863885087545345 0.30752002122513317 0.7863885087545345 0.30752002122513317 0.4356151936184918
+0.7898022460839371 0.3054395601871887 0.7898022460839371 0.3054395601871887 0.431805906650847
+0.7931919299460727 0.30334738716068294 0.7931919299460727 0.30334738716068294 0.4284467885710339
+0.7965791622712741 0.30125476585708755 0.7965791622712741 0.3012547658570876 0.4254289717434164
+0.7999678299991698 0.2991628737311319 0.7999678299991698 0.2991628737311319 0.4226753905048058
+0.8033577889011047 0.29707112147919235 0.8033577889011047 0.29707112147919235 0.4201059780844499
+0.8067481521753694 0.2949790794978796 0.8067481521753695 0.29497907949787955 0.417634176160621
+0.8101385354705372 0.2928870292886727 0.8101385354705372 0.2928870292886727 0.4151693056967308
+0.8135289187657063 0.2907949790794663 0.8135289187657063 0.29079497907946633 0.41262426980643235
+0.8169193020608762 0.2887029288702606 0.8169193020608762 0.28870292887026056 0.4099211562356944
+0.8203096853560455 0.2866108786610556 0.8203096853560455 0.28661087866105556 0.40699618537665533
+0.8237000686512149 0.28451882845185095 0.8237000686512149 0.28451882845185095 0.4038038852196089
+0.8270904519463841 0.2824267782426464 0.8270904519463841 0.2824267782426464 0.4003203770572988
+0.8304808352415529 0.2803347280334417 0.8304808352415529 0.2803347280334418 0.3965456810396097
+0.8338712185367217 0.278242677824237 0.8338712185367217 0.278242677824237 0.39250497232384257
+0.8372616018318908 0.27615062761503206 0.8372616018318908 0.27615062761503206 0.38824872237940505
+0.8406519851270599 0.2740585774058269 0.8406519851270599 0.2740585774058269 0.3838516532545846
+0.8440423684222287 0.27196652719662184 0.8440423684222287 0.27196652719662184 0.3794104255630067
+0.8474327517173976 0.26987447698741673 0.8474327517173975 0.2698744769874168 0.37503998669166977
+0.8508231350125666 0.2677824267782117 0.8508231350125666 0.2677824267782117 0.3708685394628009
+0.8542135183077356 0.26569037656900657 0.8542135183077356 0.26569037656900657 0.367031168091432
+0.8576039016029045 0.2635983263598014 0.8576039016029045 0.2635983263598014 0.36366228742991996
+0.8609942848980734 0.2615062761505963 0.8609942848980733 0.26150627615059635 0.3608872602277997
+0.8643846681932423 0.2594142259413912 0.8643846681932423 0.2594142259413912 0.35881373226276675
+0.8677750514884114 0.25732217573218613 0.8677750514884114 0.25732217573218613 0.3575234201917899
+0.8711654347835802 0.25523012552298097 0.8711654347835802 0.25523012552298097 0.3570651893284518
+0.8745558180787492 0.25313807531377586 0.874555818078749 0.2531380753137759 0.3574502202086596
+0.8779462013739181 0.2510460251045708 0.8779462013739181 0.2510460251045708 0.3586498579971378
+0.8813365846690872 0.2489539748953656 0.8813365846690872 0.2489539748953656 0.36059639493153567
+0.884726967964256 0.24686192468616053 0.884726967964256 0.24686192468616053 0.3631866321708667
+0.8881173512594249 0.24476987447695545 0.8881173512594248 0.24476987447695545 0.36628770637300945
+0.8915077345545939 0.2426778242677503 0.8915077345545939 0.2426778242677503 0.369744433569072
+0.8948981178497628 0.2405857740585452 0.8948981178497629 0.24058577405854517 0.37338735543626816
+0.8982885011449318 0.2384937238493401 0.8982885011449318 0.2384937238493401 0.37704075354654826
+0.9016788844401007 0.23640167364013498 0.9016788844401006 0.236401673640135 0.38053007190826
+0.9050692677352696 0.23430962343092987 0.9050692677352696 0.23430962343092987 0.38368839463350796
+0.9084596510304386 0.23221757322172476 0.9084596510304387 0.23221757322172473 0.3863618144257413
+0.9118500343256075 0.23012552301251965 0.9118500343256075 0.23012552301251965 0.3884136716287958
+0.9152404176207765 0.22803347280331454 0.9152404176207763 0.22803347280331457 0.38972773608344746
+0.9186308009159454 0.22594142259410943 0.9186308009159454 0.22594142259410943 0.39021045146054534
+0.9220211842111143 0.22384937238490432 0.9220211842111145 0.2238493723849043 0.38979237612928913
+0.9254115675062833 0.2217573221756992 0.9254115675062833 0.2217573221756992 0.3884289482558321
+0.9288019508014522 0.2196652719664941 0.9288019508014521 0.21966527196649413 0.38610068552693005
+0.9321923340966212 0.217573221757289 0.9321923340966212 0.217573221757289 0.3828129082843792
+0.9355827173917901 0.21548117154808388 0.9355827173917902 0.21548117154808386 0.37859505273826993
+0.938973100686959 0.21338912133887877 0.938973100686959 0.21338912133887877 0.37349962003362264
+0.942363483982128 0.21129707112967366 0.9423634839821279 0.2112970711296737 0.3676007877336605
+0.9457538672772969 0.20920502092046855 0.9457538672772969 0.20920502092046855 0.360992692618259
+0.9491442505724659 0.20711297071126344 0.949144250572466 0.20711297071126342 0.3537873774166022
+0.9525346338676348 0.20502092050205833 0.9525346338676348 0.20502092050205833 0.3461123795141788
+0.9559250171628038 0.20292887029285323 0.9559250171628036 0.20292887029285325 0.3381079280708872
+0.9593154004579727 0.20083682008364812 0.9593154004579727 0.20083682008364812 0.3299237100453963
+0.9627057837531416 0.198744769874443 0.9627057837531418 0.198744769874443 0.32171516973936803
+0.9660961670483106 0.1966527196652379 0.9660961670483106 0.1966527196652379 0.3136393266359662
+0.9694865503434795 0.1945606694560328 0.9694865503434794 0.1945606694560328 0.30585013907688324
+0.9728769336386485 0.19246861924682768 0.9728769336386485 0.19246861924682768 0.2984935115023773
+0.9762673169338174 0.19037656903762257 0.9762673169338175 0.19037656903762257 0.29170213975317655
+0.9796577002289864 0.18828451882841746 0.9796577002289864 0.18828451882841746 0.28559050128651475
+0.9830480835241553 0.18619246861921235 0.9830480835241552 0.18619246861921235 0.2802504008079798
+0.9864384668193242 0.18410041841000724 0.9864384668193242 0.18410041841000724 0.2757475411033437
+0.9898288501144932 0.18200836820080213 0.9898288501144933 0.18200836820080213 0.27211956638539164
+0.9932192334096621 0.17991631799159702 0.9932192334096621 0.17991631799159702 0.26937589858893585
+0.1841004184100419 0.9932192334096621 0.1841004184100419 0.9932192334096621 0.1476588043950845
+0.18619246861924693 0.9898288501144932 0.1861924686192469 0.9898288501144933 0.1501408916966411
+0.18828451882845193 0.9864384668193242 0.1882845188284519 0.9864384668193242 0.15292678985244604
+0.19037656903765698 0.9830480835241553 0.19037656903765698 0.9830480835241552 0.15594569781894074
+0.19246861924686204 0.9796577002289864 0.19246861924686207 0.9796577002289864 0.15911999905954335
+0.1945606694560671 0.9762673169338175 0.1945606694560671 0.9762673169338175 0.1623685883887203
+0.1966527196652722 0.9728769336386486 0.1966527196652722 0.9728769336386486 0.16560990638713788
+0.19874476987447726 0.9694865503434796 0.19874476987447728 0.9694865503434796 0.168764573110504
+0.20083682008368214 0.9660961670483109 0.20083682008368212 0.9660961670483109 0.17175759080644618
+0.20292887029288717 0.9627057837531421 0.20292887029288717 0.9627057837531421 0.17452013755048282
+0.20502092050209206 0.959315400457973 0.20502092050209206 0.959315400457973 0.1769910016120105
+0.20711297071129686 0.9559250171628039 0.20711297071129686 0.9559250171628039 0.17911771579164382
+0.20920502092050183 0.9525346338676348 0.20920502092050183 0.9525346338676348 0.18085744854524088
+0.21129707112970675 0.9491442505724659 0.21129707112970672 0.949144250572466 0.1821776999029672
+0.21338912133891175 0.9457538672772969 0.21338912133891172 0.9457538672772969 0.18305683871856496
+0.215481171548117 0.9423634839821279 0.215481171548117 0.9423634839821279 0.18348450571353359
+0.21757322175732238 0.9389731006869592 0.21757322175732238 0.9389731006869592 0.18346189493633625
+0.21966527196652805 0.9355827173917902 0.21966527196652805 0.9355827173917902 0.18300191464568963
+0.22175732217573377 0.9321923340966215 0.22175732217573377 0.9321923340966215 0.1821292168081378
+0.22384937238493985 0.9288019508014528 0.22384937238493982 0.9288019508014528 0.18088007178895002
+0.2259414225941461 0.9254115675062851 0.2259414225941461 0.9254115675062851 0.17930205098025118
+0.22803347280335265 0.9220211842111178 0.22803347280335265 0.9220211842111178 0.17745346512456314
+0.23012552301255915 0.9186308009159513 0.23012552301255915 0.9186308009159513 0.17540249099599767
+0.23221757322176514 0.9152404176207866 0.23221757322176514 0.9152404176207866 0.17322590647488936
+0.2343096234309693 0.9118500343256226 0.2343096234309693 0.9118500343256226 0.17100734857848768
+0.23640167364016987 0.9084596510304622 0.23640167364016987 0.9084596510304622 0.16883501771062617
+0.2384937238493696 0.9050692677352975 0.2384937238493696 0.9050692677352975 0.1667987829371579
+0.24058577405856466 0.9016788844401321 0.24058577405856466 0.9016788844401321 0.16498670545274266
+0.24267782426776296 0.8982885011449663 0.24267782426776296 0.8982885011449663 0.1634810933889076
+0.2447698744769704 0.8948981178497987 0.2447698744769704 0.8948981178497987 0.1623543225078715
+0.2468619246861874 0.8915077345546342 0.2468619246861874 0.8915077345546342 0.16166478035657098
+0.24895397489541438 0.8881173512594737 0.24895397489541438 0.8881173512594737 0.1614533781204552
+0.25104602510465035 0.8847269679643311 0.2510460251046504 0.8847269679643311 0.16174108343242485
+0.2531380753138998 0.8813365846691976 0.2531380753138998 0.8813365846691976 0.16252783325999928
+0.25523012552313806 0.8779462013740836 0.2552301255231381 0.8779462013740836 0.16379299695916535
+0.25732217573241933 0.8745558180789957 0.25732217573241933 0.8745558180789957 0.16549732158156275
+0.25941422594172814 0.8711654347839145 0.2594142259417281 0.8711654347839145 0.16758607173831389
+0.26150627615110306 0.8677750514889303 0.26150627615110306 0.8677750514889303 0.16999293404982016
+0.2635983263605463 0.8643846681940491 0.2635983263605463 0.8643846681940491 0.17264421845955644
+0.2656903765700316 0.8609942848994946 0.2656903765700316 0.8609942848994946 0.17546294435024545
+0.2677824267793686 0.8576039016050611 0.26778242677936864 0.8576039016050611 0.17837251194208623
+0.26987447698833433 0.8542135183112766 0.26987447698833433 0.8542135183112766 0.181299787094821
+0.27196652719706166 0.8508231350169185 0.27196652719706166 0.8508231350169185 0.18417753889976543
+0.27405857740529793 0.8474327517225566 0.27405857740529793 0.8474327517225566 0.18694624889432018
+0.27615062761404857 0.8440423684282649 0.27615062761404857 0.8440423684282649 0.18955535665412523
+0.27824267782465756 0.8406519851340469 0.27824267782465756 0.8406519851340469 0.1919640251644188
+0.28033472803737375 0.83726160184159 0.28033472803737375 0.83726160184159 0.19414150971660257
+0.28242677825178647 0.8338712185513485 0.28242677825178647 0.8338712185513485 0.1960672042845576
+0.28451882846901877 0.8304808352672519 0.28451882846901877 0.830480835267252 0.1977304255173943
+0.2866108786817631 0.8270904519845631 0.2866108786817631 0.8270904519845631 0.1991299804817175
+0.28870292888617965 0.82370006870798 0.2887029288861797 0.82370006870798 0.20027355232741842
+0.29079497910457514 0.8203096854279894 0.29079497910457514 0.8203096854279895 0.2011769288217511
+0.2928870293263509 0.8169193021469656 0.29288702932635097 0.8169193021469656 0.2018630926890629
+0.2949790795682872 0.8135289188748618 0.2949790795682872 0.8135289188748619 0.2023611901081961
+0.2970711310834092 0.8101385357397609 0.29707113108340927 0.8101385357397609 0.20270539469338525
+0.2991631935310256 0.8067481503290544 0.29916319353102555 0.8067481503290544 0.20293368894503064
+0.301255255376419 0.8033577627145864 0.301255255376419 0.8033577627145864 0.20308654400390028
+0.3033473054065469 0.7999674080308788 0.3033473054065469 0.7999674080308788 0.2032056411504499
+0.30543925640212655 0.7965770203684532 0.3054392564021265 0.7965770203684532 0.20333236932205256
+0.30753137140074305 0.7931847102815306 0.30753137140074305 0.7931847102815306 0.2035058110004667
+0.3096241660439046 0.7897853719672444 0.3096241660439046 0.7897853719672444 0.20376053392960972
+0.3117120075798791 0.7863812210002891 0.3117120075798791 0.7863812210002891 0.20412047866910465
+0.32077535879478947 0.7722057858109495 0.32077535879478947 0.7722057858109493 0.20800491075041547
+0.3137185102417178 0.78295935204922 0.3137185102417179 0.78295935204922 0.2044981718777287
+0.31530988377391667 0.7800373803845384 0.31530988377391667 0.7800373803845384 0.20478838282042364
+0.31964027626371044 0.7761178744357141 0.31964027626371044 0.7761178744357141 0.20835948708340496
+0.3177774796451781 0.7789821868225937 0.3177774796451781 0.7789821868225937 0.20735412914412527
+0.33167879124483524 0.754319252106077 0.3316787912448352 0.754319252106077 0.2173824023341611
+0.330255181523926 0.7578053117770439 0.330255181523926 0.7578053117770439 0.21603894968258788
+0.32883157322578765 0.7612954457752502 0.32883157322578765 0.7612954457752502 0.21488814261084913
+0.3273972183127036 0.7647653313366156 0.3273972183127036 0.7647653313366156 0.2139220892095324
+0.32453716522140447 0.7714715501352762 0.32453716522140447 0.7714715501352761 0.2125379526626733
+0.32594569341058943 0.7681684393581621 0.3259456934105894 0.7681684393581621 0.21312147278227567
+0.33516498525080096 0.7538641934998163 0.33516498525080096 0.7538641934998163 0.22210023268480625
+0.3374769913230458 0.7405153405085754 0.3374769913230458 0.7405153405085754 0.22447618023091723
+0.3345963820180353 0.7474264760122207 0.3345963820180353 0.7474264760122207 0.22068677828454406
+0.33603694439881276 0.7439705618616307 0.33603694439881276 0.7439705618616307 0.2225249452743737
+0.33661306525692974 0.7504128734368116 0.33661306525692974 0.7504128734368116 0.22374625915633775
+0.3409029093972483 0.740101596151183 0.3409029093972484 0.7401015961511829 0.22949168711312093
+0.3442186728619247 0.7330205470748212 0.3442186728619247 0.7330205470748212 0.2345566980893512
+0.34261070519349096 0.7366012350787221 0.34261070519349096 0.7366012350787221 0.23207152188809568
+0.34805905969623857 0.7323421215831447 0.34805905969623857 0.7323421215831446 0.24059177881324498
+0.34955280897430485 0.7286234415950135 0.3495528089743049 0.7286234415950136 0.24314703950121216
+0.35097787114516366 0.7250016800737457 0.35097787114516366 0.7250016800737457 0.24563972553020544
+0.3523747057163062 0.7214363310434891 0.3523747057163062 0.7214363310434891 0.24810154659525593
+0.3599018987116996 0.7100546406141994 0.3599018987116996 0.7100546406141994 0.26169936963746604
+0.358599248945455 0.7135722467229483 0.358599248945455 0.7135722467229483 0.2593072514375873
+0.3572866372190795 0.7170961691679528 0.3572866372190795 0.7170961691679528 0.2568527184590073
+0.35596012140904976 0.720629953455445 0.35596012140904976 0.720629953455445 0.2543442188129757
+0.36451369230625563 0.7055049050937816 0.3645136923062556 0.7055049050937816 0.2705368445706476
+0.36328671773513393 0.7091338644911623 0.36328671773513393 0.7091338644911623 0.26820096673108024
+0.370144970109379 0.6974071676579037 0.370144970109379 0.6974071676579037 0.2815189828255153
+0.36894387922573035 0.7010691222995297 0.3689438792257303 0.7010691222995297 0.27928842704066087
+0.3677934765848343 0.7046827269465344 0.3677934765848343 0.7046827269465344 0.27705888254051314
+0.37478709991502246 0.6930240457436266 0.37478709991502246 0.6930240457436266 0.29099126723496355
+0.3736131592441019 0.6966702399366049 0.3736131592441019 0.6966702399366049 0.2887656205659756
+0.37823818662234515 0.6923168528366169 0.37823818662234515 0.6923168528366169 0.298330209810549
+0.39396178316073766 0.6646972801370615 0.39396178316073766 0.6646972801370615 0.33061207606973514
+0.38886860341979307 0.6771608174952075 0.38886860341979307 0.6771608174952075 0.3200542592902904
+0.3806585051652734 0.6851484348265185 0.3806585051652734 0.6851484348265185 0.3029089537725707
+0.3795215936829866 0.6887408683128808 0.3795215936829866 0.6887408683128808 0.3008175645391713
+0.38489295541059 0.6805325982888426 0.38489295541059 0.6805325982888427 0.31170718675841624
+0.3838238860695927 0.6843384019948524 0.3838238860695928 0.6843384019948524 0.3097875703499831
+0.3878293499551624 0.6799699672867963 0.3878293499551624 0.6799699672867963 0.3180520550679646
+0.392930225411021 0.6684522622393776 0.392930225411021 0.6684522622393776 0.3284368523584265
+0.391971502975887 0.6722038919230768 0.391971502975887 0.6722038919230768 0.3265470339148649
+0.39140406406884637 0.6757054336816917 0.39140406406884637 0.6757054336816917 0.32553172990499
+0.3984602330375437 0.6597822046268605 0.3984602330375437 0.6597822046268605 0.34092057266029596
+0.39748589348419855 0.6634557789693528 0.39748589348419855 0.6634557789693528 0.3385135098150087
+0.40184977936423233 0.6585079843567295 0.40184977936423233 0.6585079843567295 0.3485506439677977
+0.4051638061362002 0.6571832110853024 0.40516380613620023 0.6571832110853024 0.35588780362861905
+0.40839777801425714 0.6557972746560773 0.4083977780142572 0.6557972746560773 0.36293428674675704
+0.411596418309932 0.6543458588546746 0.41159641830993193 0.6543458588546746 0.3698048931600299
+0.4146095149385194 0.6529305415333941 0.4146095149385194 0.6529305415333941 0.37614621767178485
+0.41765635759590003 0.6516519334527735 0.41765635759590003 0.6516519334527735 0.3823229795579121
+0.4189360287473867 0.6441841363381261 0.4189360287473867 0.6441841363381261 0.38949914190761986
+0.4173862791773498 0.6337967714152288 0.4173862791773498 0.6337967714152288 0.3987121866038405
+0.4195072386120622 0.640272573293584 0.4195072386120621 0.640272573293584 0.3942014984289886
+0.4200181597263777 0.6364288406191673 0.4200181597263777 0.6364288406191673 0.39970025449569274
+0.42081977204134113 0.6503662439818655 0.4208197720413411 0.6503662439818655 0.38845806523131493
+0.42167550720172514 0.6468862790105693 0.42167550720172514 0.6468862790105693 0.39216841278901454
+0.4068712688236443 0.5674150128280953 0.4068712688236444 0.5674150128280954 0.5539377643415501
+0.4062266369794032 0.5710833072289707 0.4062266369794032 0.5710833072289708 0.5476762004294154
+0.4060444430488672 0.5758357794493831 0.4060444430488673 0.575835779449383 0.5426618328566065
+0.40714596247527207 0.5734299870428148 0.40714596247527207 0.5734299870428148 0.5582161255202123
+0.40590749131088477 0.5809421822872259 0.4059074913108848 0.5809421822872259 0.5317961279675655
+0.40759000473956886 0.577871111909953 0.4075900047395688 0.577871111909953 0.5562178341959004
+0.40780003397231435 0.5832409671600624 0.4078000339723143 0.5832409671600624 0.5430068273955618
+0.4069361549533577 0.58702452928882 0.4069361549533577 0.58702452928882 0.5225041686821136
+0.40799461725608566 0.5903200795092558 0.4079946172560857 0.5903200795092558 0.5176879460386296
+0.4070621618366932 0.5960751640856428 0.4070621618366932 0.5960751640856428 0.48822602714853147
+0.40909579197913143 0.5931385765628916 0.40909579197913143 0.5931385765628915 0.5129915216677436
+0.4093145100779998 0.5990789608840699 0.40931451007799974 0.5990789608840698 0.4877431720302993
+0.4079441565730687 0.6028836455771653 0.40794415657306876 0.6028836455771653 0.4650439920628608
+0.4100457217074608 0.6050413898089916 0.4100457217074608 0.6050413898089916 0.4650423589023484
+0.41095488225854826 0.6082528841047505 0.41095488225854826 0.6082528841047505 0.4554070161746634
+0.4104160556089094 0.6126786121547626 0.4104160556089094 0.6126786121547626 0.4367607810420568
+0.4126123067834206 0.6149274410317987 0.4126123067834206 0.6149274410317987 0.4352906354926595
+0.4142127527572823 0.6173218142860374 0.4142127527572823 0.6173218142860374 0.43127271935778155
+0.4143948710613983 0.6207030313585954 0.4143948710613983 0.6207030313585954 0.42141632122096706
+0.41632883777914476 0.623967273603889 0.41632883777914476 0.6239672736038891 0.41657723624116977
+0.41804788120744885 0.6300127581874827 0.41804788120744885 0.6300127581874827 0.40648423210578016
+0.41872677823889365 0.626375274708048 0.41872677823889365 0.6263752747080479 0.41542392079534324
+0.411374847299562 0.5667603059910072 0.411374847299562 0.5667603059910072 0.6195835723774641
+0.41566993143693654 0.5660723207004911 0.4156699314369366 0.5660723207004911 0.6895796677444421
+0.5932607702384821 0.43249890274773384 0.5932607702384821 0.4324989027477338 0.9121226460250611
+0.5967482822283028 0.4328586555686694 0.5967482822283028 0.4328586555686695 0.8683638805558583
+0.601339752375483 0.43399835895037375 0.601339752375483 0.43399835895037375 0.8065402908595968
+0.5986574096329437 0.43446985554451967 0.5986574096329437 0.43446985554451967 0.8319090964155992
+0.6060933366686669 0.43561240496541365 0.6060933366686668 0.4356124049654136 0.7391402142411546
+0.6027711370095218 0.436092801594872 0.6027711370095218 0.436092801594872 0.7694960499071052
+0.6089974683672346 0.4369566678816932 0.6089974683672345 0.43695666788169324 0.694411305046383
+0.6065085296340005 0.43831359292380123 0.6065085296340005 0.43831359292380123 0.7044399807362048
+0.5913540132426232 0.436937132377555 0.591354013242623 0.436937132377555 0.8975620947332673
+0.5894888049087702 0.44113368288277893 0.5894888049087702 0.44113368288277893 0.8777484971673285
+0.619466535557444 0.42668992939649736 0.6194665355574439 0.4266899293964973 0.6982430149829683
+0.6233262622026997 0.4252568231751887 0.6233262622026997 0.4252568231751887 0.6781991187274244
+0.6191578059719077 0.4299350021685847 0.6191578059719077 0.4299350021685847 0.6717200767256672
+0.6256426174706116 0.427080212170783 0.6256426174706116 0.427080212170783 0.6440400224129205
+0.6284045082349008 0.4271821985789749 0.6284045082349009 0.4271821985789748 0.6217985784112768
+0.6115924964570022 0.43851046419352263 0.6115924964570022 0.43851046419352263 0.6514609952410356
+0.6166014555192092 0.43215126198978254 0.6166014555192092 0.43215126198978254 0.6729954382840111
+0.6146047360043199 0.4355782786939643 0.6146047360043198 0.4355782786939643 0.6558162142837246
+0.650100051497582 0.41204561971223397 0.650100051497582 0.41204561971223397 0.5856178982148079
+0.6533866668652868 0.4124140795073301 0.6533866668652868 0.4124140795073301 0.5635021314360249
+0.6434397992554043 0.4121387165745058 0.6434397992554043 0.4121387165745058 0.6272409859758258
+0.6467117731684412 0.41226038465067727 0.6467117731684412 0.4122603846506773 0.6055408781737063
+0.6410577493291991 0.41529308856448227 0.6410577493291991 0.41529308856448227 0.6228458671262579
+0.6387467053396372 0.41853003646572096 0.6387467053396372 0.4185300364657209 0.6161506903894459
+0.6363822525692066 0.42165049488459494 0.6363822525692066 0.421650494884595 0.6092331700068484
+0.6340013999312206 0.4246527205852171 0.6340013999312206 0.42465272058521714 0.6020101175158521
+0.6316255055858262 0.42753249674698046 0.6316255055858262 0.4275324967469805 0.5945314883131411
+0.704401594562233 0.3690710206751235 0.704401594562233 0.3690710206751235 0.5058441341494965
+0.7076455037119672 0.3694584877293816 0.7076455037119672 0.3694584877293816 0.4953344504927721
+0.6921767431039343 0.37354099550690995 0.6921767431039343 0.37354099550690995 0.5317438656485406
+0.6787224909454149 0.38410419304332377 0.6787224909454149 0.38410419304332377 0.5539252344327039
+0.681314660899769 0.38124991807072917 0.681314660899769 0.38124991807072917 0.5514537930756571
+0.6861185199354785 0.3755379783835402 0.6861185199354783 0.3755379783835402 0.5488558756058238
+0.6836529790025329 0.3783351539640678 0.6836529790025329 0.3783351539640678 0.5504868323167743
+0.6896189217941701 0.37636059972902447 0.6896189217941701 0.37636059972902447 0.5325483231478264
+0.6795079814670086 0.38750664212675456 0.6795079814670086 0.38750664212675456 0.5385508456020199
+0.6982296747839464 0.37138732892535514 0.6982296747839464 0.37138732892535514 0.5175573725576307
+0.6956538939462608 0.37428480765082767 0.6956538939462608 0.37428480765082767 0.5170198950869619
+0.7018777831168153 0.3720355596409025 0.7018777831168154 0.37203555964090246 0.503866595234899
+0.6769683992105717 0.39028151669661115 0.6769683992105717 0.39028151669661115 0.5404529658707206
+0.6744415641222149 0.3931591058532185 0.6744415641222149 0.3931591058532185 0.5418234147495262
+0.671931980714068 0.39603223643744667 0.671931980714068 0.39603223643744667 0.5429091074634544
+0.6694018674884527 0.39888596697017903 0.6694018674884527 0.39888596697017903 0.5438302959608744
+0.6668516967901171 0.40171843921243194 0.6668516967901171 0.40171843921243194 0.5444887683682412
+0.6567189530587554 0.4128099231242113 0.6567189530587553 0.4128099231242112 0.5415040957318181
+0.6592040346318639 0.41007145480402984 0.6592040346318639 0.41007145480402984 0.5434584834565818
+0.6617561988315669 0.40731403824808304 0.6617561988315669 0.40731403824808304 0.5443485118691016
+0.6643009262126068 0.404530501045643 0.6643009262126068 0.404530501045643 0.5446890872448749
+0.7170078333858436 0.367723398203088 0.7170078333858436 0.367723398203088 0.4766995838177331
+0.711037776891249 0.36947808187081915 0.7110377768912491 0.36947808187081915 0.4859481312781568
+0.7144166445108691 0.3701965157112476 0.7144166445108691 0.3701965157112476 0.474809082249759
+0.7091436832041783 0.3717769126775311 0.7091436832041783 0.3717769126775311 0.4833162592509592
+0.7204528621055936 0.3684752885112102 0.7204528621055936 0.3684752885112102 0.46598701129597725
+0.7231525371518023 0.3659113396017104 0.7231525371518023 0.3659113396017104 0.46832262061323765
+0.7258740416705668 0.3633195267321236 0.7258740416705668 0.3633195267321236 0.4706214463129315
+0.7286097456403421 0.36070727848168466 0.7286097456403421 0.36070727848168466 0.4727820041105451
+0.7313609902310377 0.3580770965398789 0.7313609902310377 0.3580770965398789 0.4746996708147764
+0.7341377666520191 0.3554277974557343 0.7341377666520191 0.3554277974557343 0.47626713163692974
+0.736951015653438 0.3527679833921906 0.736951015653438 0.3527679833921906 0.47735954124285745
+0.7508430771710711 0.33984895819600314 0.7508430771710711 0.33984895819600314 0.47466347225837596
+0.7397961486945781 0.350133147418779 0.7397961486945781 0.350133147418779 0.4778466809896394
+0.7426945319221487 0.34755086226745124 0.7426945319221487 0.34755086226745124 0.47754187435208933
+0.7454390152555109 0.3449944704686805 0.7454390152555109 0.3449944704686805 0.47699489350051943
+0.7481350776263511 0.34241175254072354 0.7481350776263511 0.34241175254072354 0.47611683700080176
+0.7542527333651924 0.34091010985637843 0.7542527333651924 0.34091010985637843 0.46416785225829665
+0.7569856511171712 0.3383449263553382 0.7569856511171712 0.3383449263553382 0.46220597173715167
+0.7597170660881843 0.3357623307214003 0.7597170660881843 0.3357623307214003 0.45988012133012907
+0.7624504645844858 0.33316198133296737 0.7624504645844858 0.33316198133296737 0.4572425210170889
+0.7651845262903354 0.330545347331255 0.7651845262903354 0.330545347331255 0.45436594106968436
+0.7679120334542296 0.32792343386640727 0.7679120334542296 0.32792343386640727 0.4513350656016974
+0.7706421535451761 0.32529919181958644 0.7706421535451761 0.32529919181958644 0.44820908583953933
+0.7734071523023339 0.3226215850673646 0.7734071523023339 0.3226215850673646 0.44506363145133104
+0.777925908282633 0.3172076022567091 0.777925908282633 0.3172076022567091 0.4412658955311417
+0.7764209526248567 0.3200931317414999 0.7764209526248566 0.3200931317414999 0.4412632070796282
+0.7802715010350703 0.31571901989942597 0.7802715010350703 0.31571901989942597 0.4379156468308612
+0.7830574418802693 0.3136404444286929 0.7830574418802693 0.3136404444286929 0.43462649962164424
+0.7864070583008447 0.31168281678961673 0.7864070583008447 0.3116828167896167 0.4302830230420262
+0.7898058447972971 0.30962782898973534 0.7898058447972972 0.30962782898973534 0.4263237332710843
+0.7931922621194412 0.30753364756696283 0.7931922621194412 0.30753364756696283 0.4228198748497354
+0.796579873751467 0.30544017967142345 0.796579873751467 0.30544017967142345 0.4196608302553689
+0.7999681498841041 0.3033473681449077 0.7999681498841041 0.3033473681449077 0.4167946901018767
+0.8033578739246822 0.30125522577593505 0.8033578739246822 0.30125522577593505 0.4141494139362542
+0.8067481558447319 0.29916318080475873 0.8067481558447319 0.29916318080475873 0.41164503895187066
+0.81013853547054 0.2970711297070853 0.81013853547054 0.2970711297070853 0.40919452179453636
+0.8135289187657073 0.2949790794978791 0.8135289187657072 0.2949790794978791 0.40671023192946176
+0.8169193020608757 0.2928870292886728 0.8169193020608757 0.2928870292886728 0.4041103400629087
+0.8203096853560448 0.2907949790794669 0.8203096853560448 0.2907949790794669 0.40132418751399296
+0.8237000686512141 0.28870292887026144 0.8237000686512141 0.28870292887026144 0.3982969169496162
+0.8270904519463835 0.28661087866105633 0.8270904519463835 0.28661087866105633 0.3949932973509945
+0.8304808352415529 0.2845188284518515 0.8304808352415529 0.28451882845185145 0.39140063297505906
+0.833871218536722 0.28242677824264684 0.833871218536722 0.28242677824264684 0.3875306724075651
+0.8372616018318908 0.28033472803344195 0.8372616018318908 0.2803347280334419 0.3834204462400695
+0.8406519851270597 0.278242677824237 0.8406519851270599 0.278242677824237 0.3791319591939974
+0.8440423684222286 0.2761506276150319 0.8440423684222286 0.2761506276150319 0.374750653120039
+0.8474327517173975 0.2740585774058269 0.8474327517173975 0.2740585774058269 0.3703825529724241
+0.8508231350125666 0.27196652719662184 0.8508231350125666 0.27196652719662184 0.36615002334291535
+0.8542135183077355 0.26987447698741673 0.8542135183077356 0.2698744769874168 0.3621861147977618
+0.8576039016029045 0.2677824267782116 0.8576039016029045 0.2677824267782116 0.35862758145046364
+0.8609942848980733 0.26569037656900646 0.8609942848980733 0.26569037656900646 0.35560680974619024
+0.8643846681932423 0.2635983263598014 0.8643846681932423 0.2635983263598014 0.3532431020551032
+0.8677750514884113 0.2615062761505963 0.8677750514884114 0.26150627615059635 0.3516339720355084
+0.8711654347835801 0.2594142259413912 0.8711654347835801 0.2594142259413912 0.3508472732278973
+0.874555818078749 0.257322175732186 0.874555818078749 0.257322175732186 0.35091503027459675
+0.8779462013739181 0.25523012552298097 0.8779462013739181 0.25523012552298097 0.351829723716822
+0.881336584669087 0.25313807531377586 0.8813365846690872 0.2531380753137759 0.35354349148244696
+0.884726967964256 0.25104602510457075 0.884726967964256 0.25104602510457075 0.3559703096621643
+0.8881173512594248 0.24895397489536567 0.8881173512594248 0.24895397489536567 0.35899080278098644
+0.8915077345545939 0.24686192468616053 0.8915077345545939 0.24686192468616053 0.3624590148275275
+0.8948981178497628 0.24476987447695542 0.8948981178497629 0.24476987447695545 0.36621031469529886
+0.8982885011449318 0.2426778242677503 0.8982885011449318 0.2426778242677503 0.37006962273960897
+0.9016788844401007 0.2405857740585452 0.9016788844401006 0.24058577405854517 0.3738592875226621
+0.9050692677352696 0.2384937238493401 0.9050692677352696 0.2384937238493401 0.3774061483705424
+0.9084596510304386 0.23640167364013498 0.9084596510304387 0.236401673640135 0.3805475291825337
+0.9118500343256075 0.23430962343092987 0.9118500343256075 0.23430962343092987 0.383136081944
+0.9152404176207765 0.23221757322172476 0.9152404176207763 0.23221757322172473 0.38504351831808187
+0.9186308009159454 0.23012552301251965 0.9186308009159454 0.23012552301251965 0.3861633361334396
+0.9220211842111143 0.22803347280331454 0.9220211842111145 0.22803347280331457 0.38641267552943637
+0.9254115675062833 0.22594142259410943 0.9254115675062833 0.22594142259410943 0.38573344034012985
+0.9288019508014522 0.22384937238490432 0.9288019508014521 0.2238493723849043 0.38409280566410237
+0.9321923340966212 0.2217573221756992 0.9321923340966212 0.2217573221756992 0.38148321088088094
+0.9355827173917901 0.2196652719664941 0.9355827173917902 0.21966527196649413 0.3779219137759216
+0.938973100686959 0.217573221757289 0.938973100686959 0.217573221757289 0.37345015850773505
+0.942363483982128 0.21548117154808388 0.9423634839821279 0.21548117154808386 0.36813198878822456
+0.9457538672772969 0.21338912133887877 0.9457538672772969 0.21338912133887877 0.3620527178486496
+0.9491442505724659 0.21129707112967366 0.949144250572466 0.2112970711296737 0.3553170482913695
+0.9525346338676348 0.20920502092046855 0.9525346338676348 0.20920502092046855 0.348046817884856
+0.9559250171628038 0.20711297071126344 0.9559250171628036 0.20711297071126342 0.3403783327402273
+0.9593154004579727 0.20502092050205833 0.9593154004579727 0.20502092050205833 0.33245923953766904
+0.9627057837531416 0.20292887029285323 0.9627057837531418 0.20292887029285325 0.3244448878557585
+0.9660961670483106 0.20083682008364812 0.9660961670483106 0.20083682008364812 0.31649414848089946
+0.9694865503434795 0.198744769874443 0.9694865503434794 0.198744769874443 0.30876469139967316
+0.9728769336386485 0.1966527196652379 0.9728769336386485 0.1966527196652379 0.3014077947531175
+0.9762673169338174 0.1945606694560328 0.9762673169338175 0.1945606694560328 0.2945628554274213
+0.9796577002289864 0.19246861924682768 0.9796577002289864 0.19246861924682768 0.28835189534655736
+0.9830480835241553 0.19037656903762257 0.9830480835241552 0.19037656903762257 0.28287448264724596
+0.9864384668193242 0.18828451882841746 0.9864384668193242 0.18828451882841746 0.27820357683499225
+0.9898288501144932 0.18619246861921235 0.9898288501144933 0.18619246861921235 0.27438281821446214
+0.9932192334096621 0.18410041841000724 0.9932192334096621 0.18410041841000724 0.2714256811643467
+0.18828451882845196 0.9932192334096621 0.18828451882845196 0.9932192334096621 0.15043486923099583
+0.19037656903765698 0.9898288501144932 0.19037656903765698 0.9898288501144933 0.15284331286259498
+0.192468619246862 0.9864384668193242 0.192468619246862 0.9864384668193242 0.15555105009457595
+0.19456066945606706 0.9830480835241553 0.19456066945606706 0.9830480835241552 0.1584857985954373
+0.1966527196652721 0.9796577002289864 0.1966527196652721 0.9796577002289864 0.1615686864143634
+0.19874476987447712 0.9762673169338175 0.19874476987447712 0.9762673169338175 0.1647177108073736
+0.20083682008368217 0.9728769336386488 0.20083682008368217 0.9728769336386488 0.1678508736332965
+0.2029288702928871 0.9694865503434796 0.2029288702928871 0.9694865503434796 0.17088888531038482
+0.205020920502092 0.9660961670483106 0.205020920502092 0.9660961670483106 0.17375740980133278
+0.20711297071129697 0.9627057837531418 0.207112970711297 0.9627057837531418 0.17638887639028453
+0.20920502092050192 0.9593154004579728 0.2092050209205019 0.9593154004579728 0.17872391200402393
+0.2112970711297069 0.9559250171628038 0.2112970711297069 0.9559250171628036 0.18071245672619055
+0.21338912133891197 0.9525346338676347 0.213389121338912 0.9525346338676347 0.18231462186694047
+0.21548117154811708 0.9491442505724658 0.21548117154811708 0.9491442505724658 0.18350134013632247
+0.21757322175732233 0.9457538672772969 0.21757322175732233 0.9457538672772969 0.1842548449260836
+0.21966527196652774 0.942363483982128 0.21966527196652774 0.9423634839821279 0.18456900252302713
+0.22175732217573318 0.9389731006869592 0.22175732217573318 0.9389731006869592 0.18444950807954727
+0.22384937238493888 0.9355827173917906 0.22384937238493888 0.9355827173917906 0.18391394337462572
+0.2259414225941446 0.9321923340966219 0.2259414225941446 0.9321923340966219 0.18299168143943303
+0.2280334728033505 0.928801950801454 0.22803347280335054 0.9288019508014539 0.18172360958644
+0.23012552301255632 0.9254115675062865 0.23012552301255632 0.9254115675062865 0.1801616281776621
+0.2322175732217618 0.9220211842111201 0.2322175732217618 0.9220211842111201 0.1783678682308734
+0.23430962343096617 0.9186308009159538 0.23430962343096615 0.918630800915954 0.176413558538097
+0.2364016736401685 0.9152404176207893 0.23640167364016848 0.9152404176207893 0.1743774659122144
+0.2384937238493703 0.9118500343256225 0.2384937238493703 0.9118500343256225 0.17234383603881973
+0.2405857740585695 0.9084596510304555 0.2405857740585695 0.9084596510304553 0.17039978440862022
+0.24267782426777004 0.9050692677352875 0.24267782426777004 0.9050692677352875 0.1686321342656465
+0.2447698744769752 0.9016788844401183 0.2447698744769752 0.9016788844401183 0.16712377560623382
+0.2468619246861881 0.8982885011449525 0.2468619246861881 0.8982885011449525 0.16594972230978414
+0.24895397489540874 0.8948981178497903 0.24895397489540874 0.8948981178497902 0.16517315741224767
+0.25104602510463575 0.8915077345546383 0.25104602510463575 0.8915077345546383 0.16484184999334403
+0.25313807531386495 0.8881173512594863 0.25313807531386495 0.8881173512594863 0.16498536475830072
+0.2552301255230917 0.884726967964344 0.2552301255230917 0.884726967964344 0.1656134378576333
+0.2573221757323357 0.8813365846692123 0.2573221757323357 0.8813365846692122 0.166715754258322
+0.25941422594159874 0.8779462013740885 0.25941422594159874 0.8779462013740885 0.1682631603109542
+0.2615062761508954 0.8745558180790178 0.26150627615089533 0.8745558180790178 0.17021013320560915
+0.2635983263602234 0.8711654347840027 0.26359832636022335 0.8711654347840027 0.17249816436296314
+0.26569037656956596 0.8677750514891575 0.26569037656956596 0.8677750514891575 0.1750596344000025
+0.26778242677882497 0.8643846681943722 0.26778242677882497 0.8643846681943722 0.17782176865564028
+0.2698744769878792 0.8609942848999221 0.2698744769878792 0.8609942848999221 0.18071034152714252
+0.2719665271968085 0.8576039016051591 0.2719665271968085 0.8576039016051592 0.18365290913127666
+0.2740585774054718 0.8542135183103866 0.2740585774054718 0.8542135183103866 0.18658146000594278
+0.27615062761437764 0.8508231350156327 0.27615062761437764 0.8508231350156327 0.18943446173345732
+0.27824267782422196 0.8474327517208912 0.27824267782422196 0.8474327517208912 0.19215833984197497
+0.28033472803517023 0.8440423684270034 0.28033472803517023 0.8440423684270034 0.19470845618612823
+0.28242677824702905 0.8406519851342171 0.28242677824702905 0.8406519851342171 0.19704966398430282
+0.284518828460372 0.8372616018444787 0.2845188284603721 0.8372616018444788 0.1991565134849164
+0.2866108786715701 0.8338712185555415 0.28661087867157015 0.8338712185555416 0.20101317229863067
+0.2887029288787703 0.8304808352696319 0.2887029288787703 0.8304808352696319 0.20261311236869814
+0.2907949790930118 0.8270904519822713 0.2907949790930118 0.8270904519822713 0.2039586040127541
+0.2928870293091248 0.8237000686945475 0.2928870293091248 0.8237000686945475 0.2050600479767548
+0.2949790795343805 0.8203096854108622 0.2949790795343805 0.8203096854108622 0.2059351697487295
+0.29707112977490663 0.8169193021439022 0.29707112977490663 0.8169193021439022 0.20660809603304145
+0.29916318003394105 0.8135289188972208 0.2991631800339411 0.8135289188972209 0.2071083318893403
+0.3012552347273771 0.8101385360908907 0.3012552347273771 0.8101385360908907 0.20746966288542143
+0.30334732321671426 0.8067481476546523 0.30334732321671426 0.8067481476546522 0.20772901256544474
+0.3054394938321218 0.8033577224649012 0.3054394938321218 0.8033577224649012 0.20792522928659743
+0.3075316620372619 0.7999672298770252 0.3075316620372619 0.7999672298770252 0.2080977411101792
+0.30962378974205873 0.7965761400651008 0.3096237897420587 0.7965761400651008 0.2082852984874883
+0.3117151046415418 0.7931780378688172 0.3117151046415418 0.7931780378688172 0.20852046255150256
+0.31380255830316095 0.789769688199191 0.31380255830316095 0.789769688199191 0.20883389698163393
+0.3158760245029417 0.7863017755719387 0.3158760245029417 0.7863017755719387 0.20922158992059378
+0.32329977517963077 0.7748009210729548 0.32329977517963077 0.7748009210729548 0.21235513155047667
+0.3226193276158824 0.7776637278097231 0.3226193276158824 0.7776637278097231 0.21279361098135025
+0.31794641865706386 0.7825111995497817 0.3179464186570638 0.7825111995497817 0.20959404534916778
+0.32069300427098696 0.7797340866719151 0.32069300427098696 0.7797340866719152 0.211480091338322
+0.33377110292995776 0.7573628247266333 0.33377110292995776 0.7573628247266333 0.2207198372771816
+0.3323885029339247 0.7608708997878787 0.3323885029339247 0.7608708997878787 0.21955152791781
+0.33099737513619293 0.7643779167846206 0.33099737513619293 0.7643779167846206 0.21857675712201327
+0.3296076435481795 0.7678361592932096 0.32960764354817945 0.7678361592932096 0.21779995501052882
+0.3267807062516622 0.7741917173001999 0.3267807062516623 0.7741917173001999 0.2165607603146791
+0.32812390952175163 0.771138611150004 0.32812390952175163 0.771138611150004 0.21704928812866497
+0.3372268170413885 0.7568895307076339 0.3372268170413885 0.7568895307076339 0.2253370737157492
+0.33857286125902475 0.7533367360718664 0.3385728612590247 0.7533367360718665 0.22673592654892935
+0.33953237896814575 0.7435881527305653 0.33953237896814575 0.7435881527305653 0.22753480718203625
+0.33814256764692646 0.7470269739785306 0.33814256764692646 0.7470269739785306 0.22567071176799966
+0.34007490069647134 0.7499663604396173 0.34007490069647134 0.7499663604396173 0.2285490702128403
+0.3426637936281277 0.7430294498402447 0.34266379362812766 0.7430294498402447 0.2320799816573864
+0.34440613481261395 0.7394369830877031 0.34440613481261395 0.7394369830877031 0.234697970599315
+0.3465969675497615 0.7364349849973966 0.3465969675497615 0.7364349849973966 0.23814220094693228
+0.3506476067865137 0.7349582261796703 0.3506476067865137 0.7349582261796703 0.24439999843543922
+0.3519263053620172 0.731375635163015 0.3519263053620172 0.731375635163015 0.24674634393804576
+0.3532647363290593 0.7277773139570088 0.3532647363290593 0.7277773139570088 0.24924279992533035
+0.354619419073385 0.724189116367132 0.35461941907338496 0.724189116367132 0.25180037493200585
+0.362036691532613 0.7126904992174077 0.362036691532613 0.7126904992174077 0.26574510153669956
+0.3607775776576299 0.7162327238482389 0.3607775776576299 0.7162327238482389 0.2632186357920092
+0.3595080500971385 0.7197756386702578 0.35950805009713843 0.7197756386702578 0.260638128232014
+0.3582205247394301 0.7233301297870204 0.3582205247394301 0.7233301297870204 0.2580102663991315
+0.3666395156908338 0.708253560134351 0.3666395156908338 0.708253560134351 0.2747148360253277
+0.36543323870565986 0.711802863373911 0.36543323870565986 0.711802863373911 0.2721918111842499
+0.37244565096944166 0.7003135064279533 0.37244565096944166 0.7003135064279533 0.2864482571028169
+0.3712570423754763 0.7039090391951743 0.37125704237547635 0.7039090391951744 0.2839873600138689
+0.3700183979947014 0.7074577917433963 0.3700183979947014 0.7074577917433963 0.28133437683130086
+0.3770625558957372 0.695942701619534 0.3770625558957372 0.695942701619534 0.29597027142533644
+0.3759231287529645 0.6996061160917489 0.3759231287529645 0.6996061160917489 0.29357230740492696
+0.38163374762785396 0.6916241138280752 0.38163374762785396 0.6916241138280751 0.3055006119805128
+0.38042645984786305 0.6951799631094342 0.38042645984786305 0.6951799631094343 0.3029608434281749
+0.3965231296648971 0.6671682288551888 0.39652312966489717 0.6671682288551888 0.33635195309218074
+0.3910263133929003 0.6791178464239576 0.3910263133929002 0.6791178464239574 0.3249536782138475
+0.3834197090065718 0.6881943140159998 0.38341970900657174 0.688194314016 0.30919499054903504
+0.3846180555320456 0.6915264130283896 0.3846180555320456 0.6915264130283896 0.3116410915706058
+0.3871583902215968 0.6833043429119028 0.38715839022159676 0.6833043429119029 0.3168393577691262
+0.3862465059973428 0.6862622409854232 0.3862465059973428 0.6862622409854232 0.31502590704032685
+0.3901623998658246 0.6826260631067372 0.3901623998658246 0.6826260631067372 0.32325740518445056
+0.39559987588892165 0.6708827540820561 0.39559987588892165 0.6708827540820561 0.3344192897081746
+0.3947829436525132 0.6745421069660521 0.3947829436525132 0.6745421069660521 0.33278504448888985
+0.39407059929877714 0.6781406639849163 0.39407059929877714 0.6781406639849163 0.3313799854695559
+0.4009368841379551 0.6621729203773047 0.4009368841379551 0.6621729203773047 0.3461200956918646
+0.40002772470450365 0.6658646747046136 0.40002772470450365 0.6658646747046136 0.3439370138250224
+0.40431692595171587 0.6608410342650544 0.40431692595171587 0.6608410342650544 0.35343349819077746
+0.4076179139740829 0.6594488970117571 0.4076179139740829 0.6594488970117571 0.360442027186239
+0.4108554383946163 0.6580228494299128 0.4108554383946163 0.6580228494299128 0.3671814857698262
+0.4139974333212821 0.6565696827479034 0.4139974333212821 0.6565696827479034 0.37358140318911953
+0.4170233960169806 0.655109818139251 0.4170233960169805 0.655109818139251 0.3796058469896568
+0.4199501720420431 0.6536383717598573 0.41995017204204305 0.6536383717598574 0.3853160245117691
+0.42258193223055596 0.6527345260889975 0.42258193223055596 0.6527345260889975 0.390014988716425
+0.42219704162319177 0.6429204201769934 0.42219704162319177 0.6429204201769934 0.39624868353399506
+0.4205833248084432 0.6325965510394819 0.4205833248084431 0.6325965510394819 0.40643091463503017
+0.4227245469601326 0.639029181159805 0.4227245469601327 0.6390291811598051 0.4010978368080264
+0.42320735553818584 0.6351750996784392 0.42320735553818584 0.6351750996784392 0.4068295253751664
+0.42462825126152837 0.6501937305153156 0.4246282512615283 0.6501937305153156 0.394851873487814
+0.42515432747383947 0.6456964899760262 0.42515432747383947 0.6456964899760261 0.3987338851103966
+0.40971735847325425 0.571243596406803 0.40971735847325425 0.571243596406803 0.5938977727995814
+0.4092257228011407 0.5749067219934683 0.4092257228011407 0.5749067219934682 0.5813015928783757
+0.4091356046413674 0.579957488921068 0.4091356046413674 0.579957488921068 0.5667203113045495
+0.41021066595450695 0.5772615439238737 0.41021066595450695 0.5772615439238737 0.5866809735781532
+0.40998677479934337 0.5848775060583514 0.40998677479934337 0.5848775060583514 0.5561177191712289
+0.4109230538212696 0.5817852548928911 0.4109230538212696 0.5817852548928911 0.5776981315262546
+0.4098461121187539 0.5878434582035348 0.4098461121187538 0.5878434582035349 0.5420341086172716
+0.4103060528862824 0.5903647623438166 0.4103060528862824 0.5903647623438166 0.5337373600628499
+0.41184917187532327 0.5859746119089844 0.41184917187532327 0.5859746119089844 0.5666550737234399
+0.41074354384777284 0.5954495166903451 0.41074354384777284 0.5954495166903451 0.5122205661744669
+0.41221722276355743 0.592005497537152 0.41221722276355743 0.5920054975371521 0.5384634487062044
+0.41251550563936423 0.5981551562102992 0.4125155056393642 0.5981551562102992 0.5081482604699566
+0.4117352981713302 0.6020170168561362 0.41173529817133014 0.6020170168561362 0.4856908912355652
+0.41254418704402795 0.6052124366379872 0.41254418704402795 0.6052124366379872 0.47400826979541655
+0.41445514891393903 0.6003374454954558 0.41445514891393903 0.6003374454954558 0.5055554991389615
+0.41466401038254347 0.6073192911597893 0.41466401038254347 0.6073192911597892 0.4719180321242112
+0.4136020594340808 0.6112405999817894 0.4136020594340808 0.6112405999817893 0.4518712382278558
+0.4162115741122846 0.6141339755113125 0.41621157411228454 0.6141339755113125 0.4476492656034888
+0.4170793068198504 0.6179879023075638 0.41707930681985045 0.617987902307564 0.4357815872721141
+0.4174555921321009 0.6210082597097564 0.4174555921321009 0.6210082597097564 0.4269621862173426
+0.4194980991159831 0.6228803043498489 0.41949809911598307 0.6228803043498489 0.4256837567607728
+0.42123922789886087 0.6288120218202341 0.42123922789886087 0.6288120218202341 0.41456797807094636
+0.42171691731725025 0.6251785647338254 0.4217169173172502 0.6251785647338254 0.423577212034783
+0.41420614064463435 0.5703701592226502 0.4142061406446343 0.5703701592226502 0.658128141271327
+0.41846677647298175 0.569503460098176 0.41846677647298175 0.569503460098176 0.725354528619159
+0.595945428495359 0.43642502256003096 0.595945428495359 0.43642502256003096 0.8453829755448519
+0.5993877525724491 0.4369080265477906 0.599387752572449 0.43690802654779054 0.7990184321893404
+0.6039094433348927 0.43838133395732 0.6039094433348927 0.43838133395732 0.7316917956494882
+0.6012555492575168 0.4385873627993237 0.6012555492575168 0.4385873627993237 0.7586542585723636
+0.6080469181170904 0.43982430770395325 0.6080469181170906 0.43982430770395325 0.6707675264320971
+0.6050397782736695 0.44059545687901874 0.6050397782736695 0.44059545687901874 0.6925905401177465
+0.6128846388156314 0.4415354262477014 0.6128846388156314 0.4415354262477014 0.602832870003482
+0.6097809239644557 0.4419529045002338 0.6097809239644557 0.4419529045002338 0.6273196490362877
+0.5938225736666751 0.44080753576509935 0.5938225736666752 0.44080753576509935 0.8230985502898859
+0.5918342662431082 0.44488415364400397 0.5918342662431081 0.44488415364400397 0.7954663907933172
+0.6225923214613037 0.4291845440926116 0.6225923214613037 0.4291845440926116 0.649981492219626
+0.6204880676994695 0.43257830155128063 0.6204880676994695 0.4325783015512807 0.6349030351827015
+0.6261671535555532 0.42992543629841445 0.6261671535555532 0.42992543629841445 0.6141803580802222
+0.6292802272129661 0.4302406849201309 0.6292802272129662 0.43024068492013084 0.5872410251574102
+0.6153551962489173 0.43868885924471535 0.6153551962489173 0.43868885924471535 0.6140144674837779
+0.6178815931946782 0.43576692445743703 0.6178815931946781 0.435766924457437 0.6242324401537213
+0.6142437801606351 0.4436693223726865 0.6142437801606351 0.4436693223726865 0.5635972529626697
+0.6161512691612783 0.4414063251569147 0.6161512691612784 0.44140632515691464 0.5746549387040573
+0.6483006101088458 0.414487647469626 0.6483006101088458 0.414487647469626 0.5813886570364613
+0.6510323350294642 0.41516324051193065 0.6510323350294643 0.4151632405119306 0.5602954377867474
+0.6542810208089404 0.41554151532702027 0.6542810208089404 0.41554151532702027 0.5384450673851512
+0.6451555602938225 0.41552972734409355 0.6451555602938225 0.4155297273440936 0.5946867364122325
+0.6423108429047688 0.41900592591182784 0.6423108429047688 0.4190059259118279 0.5889648550543222
+0.6398022307473978 0.42218989017110514 0.6398022307473977 0.42218989017110514 0.5816669098289887
+0.6324745153938105 0.430829954494445 0.6324745153938105 0.430829954494445 0.558098904673697
+0.6373486537675174 0.42521563117395456 0.6373486537675174 0.42521563117395456 0.5738831778318007
+0.6349039657213457 0.42812820490069997 0.6349039657213457 0.42812820490069997 0.56569872296805
+0.7060848831889243 0.3726111282016388 0.7060848831889243 0.3726111282016387 0.48937194074356766
+0.6930950020036085 0.37713166910172813 0.6930950020036085 0.37713166910172813 0.5169576247596467
+0.6820930821453363 0.3847482778094673 0.6820930821453363 0.3847482778094673 0.5363957084865679
+0.684600820933694 0.3820040432153337 0.684600820933694 0.3820040432153337 0.5347106657806632
+0.687071546403091 0.379173270109802 0.6870715464030911 0.379173270109802 0.5336670293195791
+0.6905375933596011 0.37997090050161697 0.6905375933596011 0.37997090050161697 0.5172548755649239
+0.6802955840282691 0.3909479760449841 0.6802955840282691 0.3909479760449841 0.5221100060828548
+0.6828192028762402 0.3882290703719986 0.6828192028762402 0.3882290703719986 0.5207535071736626
+0.6992044522441145 0.37499178417742124 0.6992044522441145 0.37499178417742124 0.5026684565508767
+0.6965747076466785 0.3779069570457801 0.6965747076466785 0.3779069570457801 0.5018412361612334
+0.7028728140970009 0.37562805363395946 0.7028728140970008 0.3756280536339594 0.48877842688013784
+0.6779126682040455 0.3937412116211807 0.6779126682040455 0.3937412116211807 0.5224503197620934
+0.6755841581629141 0.3966132880376789 0.6755841581629141 0.3966132880376789 0.5220019829527532
+0.6731301192007583 0.39944351535230305 0.6731301192007583 0.39944351535230305 0.5220317650440007
+0.6705516759875421 0.4022421564182638 0.6705516759875421 0.40224215641826383 0.5224031271130222
+0.6679421751102813 0.40504236724766257 0.6679421751102813 0.40504236724766257 0.5224209104290604
+0.6576142084320287 0.41596611198987643 0.6576142084320287 0.4159661119898765 0.5164897389950357
+0.6601735353653723 0.41326620389579194 0.6601735353653723 0.41326620389579194 0.5190959795968065
+0.6627487306932873 0.4105467959360422 0.6627487306932873 0.4105467959360422 0.5209016631729807
+0.6653405328504082 0.40780839126622287 0.6653405328504082 0.40780839126622287 0.5219604168709485
+0.7177910395801425 0.3709824097411157 0.7177910395801425 0.3709824097411157 0.46377439938684334
+0.711788397635038 0.3726768111030363 0.711788397635038 0.3726768111030363 0.47314405636661455
+0.7151167970564254 0.37351160118802634 0.7151167970564254 0.37351160118802634 0.4616099399197539
+0.7091344796218579 0.37479362353696477 0.7091344796218579 0.3747936235369647 0.4730584687467278
+0.7211844476714494 0.3718277022043622 0.7211844476714494 0.3718277022043622 0.4528006576660882
+0.7239128902818088 0.3692924441526808 0.7239128902818087 0.3692924441526808 0.45529363368371173
+0.7266675906262869 0.3667444727015752 0.7266675906262869 0.3667444727015752 0.45772587356162525
+0.7294330789603164 0.364168597889353 0.7294330789603164 0.364168597889353 0.4600895229097873
+0.7322010368947168 0.3615738210959134 0.7322010368947168 0.3615738210959134 0.46227566556887595
+0.734968524977469 0.3589624577621104 0.734968524977469 0.3589624577621104 0.46419410506388076
+0.7377350322662153 0.35633737361808593 0.7377350322662153 0.35633737361808593 0.4657599187327364
+0.7404998810111216 0.35372243122079244 0.7404998810111216 0.35372243122079244 0.4668545697918644
+0.7515223572829947 0.3434729812722868 0.7515223572829947 0.3434729812722868 0.4656708652195419
+0.7432836211322457 0.3511439992763177 0.7432836211322457 0.3511439992763177 0.46731346592225903
+0.7460665312941709 0.3485965467697414 0.7460665312941709 0.3485965467697414 0.46718118117978774
+0.7488062648539836 0.34604426298128454 0.7488062648539836 0.34604426298128454 0.4666322325307603
+0.7549244324968925 0.3445335190678776 0.7549244324968925 0.3445335190678776 0.45511682486629484
+0.7576695493375237 0.3419710417345541 0.7576695493375237 0.3419710417345541 0.45358175552917707
+0.7604136902785306 0.3394043793896288 0.7604136902785306 0.3394043793896288 0.45162964972388325
+0.7631626768369295 0.33682705715711964 0.7631626768369295 0.33682705715711964 0.44931809683290874
+0.7659174392241516 0.33423469735605227 0.7659174392241516 0.3342346973560523 0.4467201733954262
+0.7686517903850255 0.33162499235886583 0.7686517903850255 0.33162499235886583 0.443980046094326
+0.7713447657759752 0.32900753009448513 0.7713447657759752 0.3290075300944851 0.44121224744637116
+0.7740139243989111 0.3263862792066675 0.7740139243989111 0.32638627920666746 0.4384407703102924
+0.7766161805508365 0.323838426597967 0.7766161805508364 0.323838426597967 0.43571791908199337
+0.7799289138928417 0.3190978096037476 0.7799289138928417 0.3190978096037476 0.4344541543522535
+0.779040585655487 0.3219729918845184 0.779040585655487 0.3219729918845184 0.43256015136894466
+0.7832940216241766 0.31761935604617936 0.7832940216241767 0.31761935604617936 0.42897109753025137
+0.7864679458306282 0.3157751113834253 0.7864679458306282 0.3157751113834253 0.4247260954066121
+0.7897966180156543 0.3138221661815212 0.7897966180156543 0.3138221661815212 0.420653446130495
+0.7931927349000237 0.31172068421919963 0.7931927349000237 0.3117206842191997 0.4170150745117227
+0.7965811691042908 0.3096263880580296 0.7965811691042908 0.3096263880580296 0.413734749289127
+0.7999690422592286 0.30753254063624375 0.7999690422592286 0.30753254063624375 0.41077024581117
+0.8033581470784682 0.30543956387707455 0.8033581470784682 0.30543956387707455 0.4080579930374207
+0.8067481735799661 0.3033472855174295 0.8067481735799661 0.3033472855174295 0.4055247822457075
+0.8101385354705436 0.30125523012549416 0.8101385354705436 0.3012552301254941 0.4030891525878526
+0.8135289187657099 0.2991631799162899 0.8135289187657099 0.2991631799162899 0.4006654825952182
+0.8169193020608772 0.29707112970708444 0.8169193020608772 0.29707112970708444 0.39816986925528974
+0.8203096853560451 0.2949790794978786 0.8203096853560451 0.2949790794978786 0.39552639360566566
+0.8237000686512141 0.2928870292886728 0.8237000686512141 0.2928870292886728 0.3926721568800358
+0.827090451946383 0.2907949790794672 0.827090451946383 0.2907949790794672 0.3895615794086182
+0.8304808352415524 0.2887029288702619 0.8304808352415524 0.2887029288702619 0.3861698603764481
+0.8338712185367215 0.2866108786610569 0.8338712185367215 0.2866108786610569 0.3824954967673424
+0.8372616018318908 0.2845188284518519 0.8372616018318908 0.2845188284518519 0.3785617815307631
+0.8406519851270597 0.28242677824264706 0.8406519851270599 0.28242677824264706 0.3744172050016425
+0.8440423684222286 0.28033472803344206 0.8440423684222286 0.28033472803344206 0.3701346757465109
+0.8474327517173975 0.27824267782423706 0.8474327517173975 0.27824267782423706 0.3658094670864617
+0.8508231350125666 0.27615062761503206 0.8508231350125666 0.27615062761503206 0.3615557969403485
+0.8542135183077356 0.2740585774058269 0.8542135183077356 0.2740585774058269 0.35750197763583763
+0.8576039016029045 0.2719665271966219 0.8576039016029045 0.2719665271966219 0.3537841458600277
+0.8609942848980734 0.26987447698741673 0.8609942848980733 0.2698744769874168 0.3505387133827052
+0.8643846681932423 0.2677824267782116 0.8643846681932423 0.2677824267782116 0.34789386637465064
+0.8677750514884114 0.26569037656900657 0.8677750514884114 0.26569037656900657 0.3459606631326832
+0.8711654347835802 0.2635983263598014 0.8711654347835802 0.2635983263598014 0.3448244883550247
+0.8745558180787492 0.2615062761505963 0.874555818078749 0.26150627615059635 0.34453774828470235
+0.8779462013739181 0.2594142259413912 0.8779462013739181 0.2594142259413912 0.34511466826509546
+0.8813365846690872 0.257322175732186 0.8813365846690872 0.257322175732186 0.34652884915032406
+0.884726967964256 0.255230125522981 0.884726967964256 0.255230125522981 0.3487138770538585
+0.8881173512594249 0.25313807531377586 0.8881173512594248 0.2531380753137759 0.3515668469693731
+0.8915077345545939 0.25104602510457075 0.8915077345545939 0.25104602510457075 0.35495426871688945
+0.8948981178497628 0.24895397489536564 0.8948981178497629 0.2489539748953656 0.35871956964272206
+0.8982885011449318 0.24686192468616053 0.8982885011449318 0.24686192468616053 0.3626913347175979
+0.9016788844401007 0.24476987447695542 0.9016788844401006 0.24476987447695545 0.36669151211194073
+0.9050692677352696 0.2426778242677503 0.9050692677352696 0.2426778242677503 0.3705430012659873
+0.9084596510304386 0.2405857740585452 0.9084596510304387 0.24058577405854517 0.3740762618791156
+0.9118500343256075 0.2384937238493401 0.9118500343256075 0.2384937238493401 0.37713478234356196
+0.9152404176207765 0.23640167364013498 0.9152404176207763 0.236401673640135 0.37957939630810383
+0.9186308009159454 0.23430962343092987 0.9186308009159454 0.23430962343092987 0.3812915301692766
+0.9220211842111143 0.23221757322172476 0.9220211842111145 0.23221757322172473 0.3821755103275683
+0.9254115675062833 0.23012552301251965 0.9254115675062833 0.23012552301251965 0.3821600705668073
+0.9288019508014522 0.22803347280331454 0.9288019508014521 0.22803347280331457 0.38119919025997157
+0.9321923340966212 0.22594142259410943 0.9321923340966212 0.22594142259410943 0.37927237364506766
+0.9355827173917901 0.22384937238490432 0.9355827173917902 0.2238493723849043 0.37638445594171804
+0.938973100686959 0.2217573221756992 0.938973100686959 0.2217573221756992 0.37256499731946363
+0.942363483982128 0.2196652719664941 0.9423634839821279 0.21966527196649413 0.36786730224345215
+0.9457538672772969 0.217573221757289 0.9457538672772969 0.217573221757289 0.3623670798039092
+0.9491442505724659 0.21548117154808388 0.949144250572466 0.21548117154808386 0.3561607400756628
+0.9525346338676348 0.21338912133887877 0.9525346338676348 0.21338912133887877 0.3493633023086595
+0.9559250171628038 0.21129707112967366 0.9559250171628036 0.2112970711296737 0.34210587355499444
+0.9593154004579727 0.20920502092046855 0.9593154004579727 0.20920502092046855 0.33453264332055843
+0.9627057837531416 0.20711297071126344 0.9627057837531418 0.20711297071126342 0.32679733506969505
+0.9660961670483106 0.20502092050205833 0.9660961670483106 0.20502092050205833 0.3190590652269734
+0.9694865503434795 0.20292887029285323 0.9694865503434794 0.20292887029285325 0.3114775928377767
+0.9728769336386485 0.20083682008364812 0.9728769336386485 0.20083682008364812 0.3042080064227923
+0.9762673169338174 0.198744769874443 0.9762673169338175 0.198744769874443 0.2973949932724884
+0.9796577002289864 0.1966527196652379 0.9796577002289864 0.1966527196652379 0.2911669657888379
+0.9830480835241553 0.1945606694560328 0.9830480835241552 0.1945606694560328 0.2856304600084474
+0.9864384668193242 0.19246861924682768 0.9864384668193242 0.19246861924682768 0.28086533676870135
+0.9898288501144932 0.19037656903762257 0.9898288501144933 0.19037656903762257 0.27692135891376307
+0.9932192334096621 0.18828451882841746 0.9932192334096621 0.18828451882841746 0.2738166467996787
+0.19246861924686204 0.9932192334096621 0.19246861924686207 0.9932192334096621 0.153051837966432
+0.19456066945606704 0.9898288501144932 0.19456066945606706 0.9898288501144933 0.15537904152670998
+0.19665271966527206 0.9864384668193242 0.19665271966527206 0.9864384668193242 0.15800080586049337
+0.19874476987447715 0.9830480835241553 0.19874476987447712 0.9830480835241552 0.16084359061781614
+0.2008368200836821 0.9796577002289865 0.2008368200836821 0.9796577002289865 0.1638275903579047
+0.20292887029288706 0.9762673169338176 0.20292887029288706 0.9762673169338177 0.1668703022245377
+0.20502092050209209 0.9728769336386486 0.20502092050209209 0.9728769336386486 0.1698897381716223
+0.20711297071129708 0.9694865503434795 0.20711297071129708 0.9694865503434794 0.17280717601728288
+0.20920502092050206 0.9660961670483106 0.20920502092050206 0.9660961670483106 0.17554942563680032
+0.211297071129707 0.9627057837531418 0.211297071129707 0.9627057837531418 0.1780506402392109
+0.213389121338912 0.9593154004579727 0.213389121338912 0.9593154004579727 0.18025373022365032
+0.2154811715481171 0.9559250171628038 0.2154811715481171 0.9559250171628036 0.18211144516000558
+0.2175732217573223 0.9525346338676348 0.2175732217573223 0.9525346338676348 0.1835871851306713
+0.21966527196652755 0.949144250572466 0.21966527196652755 0.949144250572466 0.18465559178374893
+0.22175732217573288 0.945753867277297 0.22175732217573288 0.945753867277297 0.18530295582574
+0.22384937238493827 0.9423634839821281 0.22384937238493827 0.9423634839821281 0.18552746342391327
+0.2259414225941437 0.9389731006869596 0.2259414225941437 0.9389731006869596 0.18533928993021687
+0.2280334728033493 0.9355827173917913 0.2280334728033493 0.9355827173917913 0.1847605355572036
+0.23012552301255482 0.932192334096623 0.23012552301255482 0.932192334096623 0.18382498390207733
+0.23221757322176004 0.9288019508014558 0.23221757322176004 0.9288019508014557 0.18257765039356577
+0.2343096234309646 0.9254115675062882 0.2343096234309646 0.9254115675062881 0.1810740741890106
+0.23640167364016795 0.9220211842111217 0.23640167364016795 0.9220211842111218 0.17937929506020664
+0.23849372384937095 0.918630800915954 0.23849372384937095 0.918630800915954 0.17756644901397722
+0.2405857740585725 0.9152404176207857 0.24058577405857254 0.9152404176207857 0.17571491708419773
+0.24267782426777476 0.9118500343256168 0.24267782426777476 0.911850034325617 0.17390797670720515
+0.2447698744769794 0.9084596510304475 0.24476987447697943 0.9084596510304476 0.17222994066158495
+0.24686192468618776 0.9050692677352791 0.24686192468618776 0.9050692677352791 0.17076282922813765
+0.24895397489540075 0.9016788844401131 0.24895397489540075 0.901678884440113 0.1695827061073544
+0.25104602510461865 0.8982885011449526 0.25104602510461865 0.8982885011449525 0.168755907469068
+0.25313807531384097 0.8948981178497949 0.25313807531384097 0.8948981178497949 0.16833548474061485
+0.2552301255230619 0.8915077345546419 0.25523012552306185 0.8915077345546419 0.16835823550916282
+0.2573221757322914 0.8881173512594943 0.2573221757322914 0.8881173512594943 0.16884268464063257
+0.259414225941526 0.8847269679643471 0.259414225941526 0.8847269679643471 0.1697882857779882
+0.261506276150781 0.8813365846692297 0.261506276150781 0.8813365846692297 0.17117595385367043
+0.26359832636005115 0.8779462013741431 0.26359832636005115 0.8779462013741431 0.17296984979701882
+0.2656903765693229 0.8745558180791447 0.2656903765693229 0.8745558180791447 0.17512016907432645
+0.26778242677854697 0.8711654347841761 0.26778242677854697 0.8711654347841761 0.17756657780707993
+0.2698744769876565 0.8677750514893812 0.2698744769876565 0.8677750514893813 0.180241911951093
+0.2719665271967019 0.8643846681944151 0.27196652719670183 0.8643846681944151 0.18307579757768375
+0.2740585774056021 0.8609942848994395 0.2740585774056021 0.8609942848994395 0.18599793709307935
+0.2761506276146209 0.8576039016044628 0.2761506276146209 0.8576039016044629 0.18894090664825336
+0.2782426778241168 0.8542135183094773 0.2782426778241169 0.8542135183094773 0.19184240018147866
+0.2803347280341199 0.8508231350149117 0.2803347280341199 0.8508231350149117 0.1946469228480743
+0.2824267782446504 0.8474327517208873 0.2824267782446504 0.8474327517208874 0.19730697841119185
+0.2845188284560626 0.8440423684283566 0.28451882845606263 0.8440423684283566 0.19978381522560473
+0.28661087866640494 0.8406519851362907 0.28661087866640494 0.8406519851362907 0.20204780002151326
+0.28870292887484333 0.8372616018457232 0.28870292887484333 0.8372616018457232 0.2040784840312326
+0.2907949790868202 0.8338712185545812 0.2907949790868202 0.8338712185545812 0.2058644169647075
+0.2928870292998355 0.8304808352633489 0.2928870292998355 0.8304808352633489 0.2074027542942435
+0.2949790795174925 0.8270904519742764 0.2949790795174925 0.8270904519742764 0.2086986942947606
+0.2970711297427611 0.8237000686938051 0.2970711297427611 0.8237000686938051 0.20976477398313706
+0.2991631799725271 0.8203096854204451 0.2991631799725271 0.8203096854204451 0.21062004821900296
+0.30125523020042017 0.8169193021726958 0.30125523020042017 0.8169193021726958 0.21128917348860532
+0.30334728045130366 0.8135289189477048 0.3033472804513036 0.813528918947705 0.2118014170788547
+0.30543934530061834 0.8101385373332274 0.30543934530061834 0.8101385373332274 0.21218963020729767
+0.3075315024453327 0.8067481488406646 0.3075315024453327 0.8067481488406646 0.2124892233843514
+0.3096238571321493 0.8033576963891099 0.3096238571321493 0.8033576963891099 0.2127370324271256
+0.311716375956437 0.799966748580114 0.311716375956437 0.799966748580114 0.2129698559111566
+0.3138088076513816 0.7965735396601654 0.3138088076513816 0.7965735396601654 0.21322262671276956
+0.31589992826337143 0.7931775335334033 0.31589992826337143 0.7931775335334033 0.21352890828378387
+0.3179868098038517 0.7897717542735613 0.3179868098038517 0.7897717542735613 0.21391238219786946
+0.3200708651727234 0.7863791282909649 0.3200708651727234 0.7863791282909648 0.21441401051902984
+0.3255655510530161 0.7771904276619965 0.32556555105301616 0.7771904276619965 0.21634753834333068
+0.32843841940743257 0.7763757782400046 0.32843841940743257 0.7763757782400046 0.21961903545210476
+0.32412181101354814 0.7802659759401245 0.32412181101354814 0.7802659759401244 0.2160656274763049
+0.32217916299198235 0.7831844870572999 0.32217916299198235 0.7831844870572998 0.21519672356115868
+0.33590285556015526 0.760420586964765 0.33590285556015526 0.760420586964765 0.22417034546500683
+0.33455901662779514 0.7639647021121228 0.33455901662779514 0.7639647021121228 0.22319359780427694
+0.33319353375598926 0.7675354926280171 0.33319353375598926 0.7675354926280171 0.22241027897238674
+0.3318022666613489 0.7710634800484251 0.3318022666613489 0.771063480048425 0.22179831769087296
+0.3300436706480991 0.7741034322498663 0.3300436706480991 0.7741034322498663 0.22070585805814802
+0.3393664456130216 0.7599137277835769 0.3393664456130216 0.7599137277835769 0.22872178440340854
+0.3405893614631778 0.7564263907151587 0.3405893614631778 0.7564263907151587 0.22983148132877637
+0.34159117099694364 0.7531519083430551 0.34159117099694364 0.753151908343055 0.2308507189270934
+0.34199048534390186 0.7467965801734094 0.3419904853439019 0.7467965801734094 0.2311328129424155
+0.3429316844584155 0.7501598902421434 0.3429316844584155 0.7501598902421434 0.2325069700718499
+0.3448865819753903 0.7451026102413284 0.3448865819753903 0.7451026102413284 0.2351975354614062
+0.34602127392285853 0.7424009109096417 0.34602127392285853 0.7424009109096418 0.23688340944487044
+0.3472020485623622 0.7397173659438974 0.3472020485623622 0.7397173659438974 0.23876658856285018
+0.349827137894339 0.7384731186399528 0.349827137894339 0.7384731186399528 0.24281509955486788
+0.3532604812499267 0.7376141518098964 0.3532604812499267 0.7376141518098964 0.24813119450235585
+0.35439823474506243 0.7340598494066156 0.35439823474506243 0.7340598494066156 0.2503394420186366
+0.35564037419948286 0.730479068570968 0.35564037419948286 0.730479068570968 0.2527945699118023
+0.356922606785921 0.7268983809862358 0.356922606785921 0.7268983809862358 0.25537273816397793
+0.36422033416402083 0.7153400043940076 0.36422033416402083 0.7153400043940076 0.2695916650129427
+0.3630029035064038 0.7188824675363228 0.3630029035064038 0.7188824675363228 0.266938446729207
+0.36177760744731785 0.722435428532478 0.36177760744731785 0.722435428532478 0.26424833043147067
+0.36052745964007205 0.7260014308838384 0.36052745964007205 0.7260014308838384 0.2615177063730468
+0.3688005893251621 0.7109540011370625 0.3688005893251621 0.7109540011370625 0.2786427872828731
+0.36761800737773576 0.7144565001320391 0.36761800737773576 0.7144565001320391 0.275948977437507
+0.37475403451553985 0.7032517269640471 0.37475403451553985 0.7032517269640471 0.2909929298567087
+0.37213697716960925 0.710176962787092 0.37213697716960925 0.710176962787092 0.28506051889127054
+0.3734936981150231 0.706783066976402 0.37349369811502303 0.706783066976402 0.2881446629937065
+0.37936942468290996 0.6988747157335341 0.37936942468290996 0.6988747157335341 0.30060716987994646
+0.3782846232703469 0.7025920471905976 0.3782846232703469 0.7025920471905976 0.29805533312442867
+0.3835452420172805 0.6946376288348672 0.3835452420172805 0.6946376288348671 0.30933254431206464
+0.38273151200851957 0.6981168251916752 0.38273151200851957 0.6981168251916752 0.30739779786879734
+0.399132107028534 0.6695769741108993 0.399132107028534 0.6695769741108993 0.3419434773405365
+0.39330410636536 0.681698442634069 0.39330410636536 0.681698442634069 0.32980947486250806
+0.38704942969221257 0.6935500591251471 0.3870494296922126 0.6935500591251471 0.31653765264916894
+0.38746347340573833 0.6896026590824553 0.3874634734057384 0.6896026590824552 0.31766772434969043
+0.3892069299615172 0.6862150320540088 0.38920692996151723 0.6862150320540089 0.32131219662560045
+0.3923892676131857 0.6853010190059198 0.3923892676131857 0.6853010190059198 0.3278538611459935
+0.3982595181753697 0.6733004365866274 0.3982595181753697 0.6733004365866274 0.3400840589153103
+0.3973921015072772 0.6770194615379433 0.3973921015072772 0.6770194615379433 0.3382563661352695
+0.3965445655685017 0.6806810486107857 0.39654456556850176 0.6806810486107856 0.3364330356927491
+0.40346620023405594 0.66452687548629 0.40346620023405594 0.66452687548629 0.3512289134384416
+0.40261557962448086 0.6682391930554726 0.40261557962448086 0.6682391930554726 0.34920192562065916
+0.40683071079774824 0.6631288817822103 0.4068307107977482 0.6631288817822103 0.3582111244720226
+0.41013131881241865 0.6617010341409558 0.41013131881241865 0.6617010341409558 0.3649040535288361
+0.41334478157494975 0.6602263644518016 0.41334478157494975 0.6602263644518017 0.37126858367887977
+0.4164701463248222 0.6587266062911893 0.4164701463248222 0.6587266062911893 0.3773056269872564
+0.4194869167992139 0.657209186746066 0.4194869167992139 0.657209186746066 0.3829878743556463
+0.4224357291151286 0.6557330055346974 0.42243572911512856 0.6557330055346974 0.3883363107181488
+0.4250757366927388 0.6537412786532516 0.42507573669273885 0.6537412786532516 0.39343311895879435
+0.4255084303245961 0.6416168725220296 0.4255084303245961 0.6416168725220296 0.4028121243862282
+0.4237101546086924 0.6313108172207127 0.4237101546086924 0.6313108172207126 0.4138382396933933
+0.42591095351056163 0.63776094213797 0.42591095351056163 0.63776094213797 0.4076283501400247
+0.4263876183454127 0.6339836703449564 0.4263876183454127 0.6339836703449563 0.41345591898684103
+0.4279665264312547 0.652024897711048 0.4279665264312547 0.652024897711048 0.39857822667807546
+0.4282820227997085 0.6480386191422243 0.42828202279970856 0.6480386191422243 0.40158475948224487
+0.42840813072008815 0.6440971761662694 0.42840813072008815 0.6440971761662694 0.40483864908390105
+0.4127183628830745 0.5749297999157255 0.41271836288307456 0.5749297999157256 0.6244471364642147
+0.41238237804965994 0.5786438733524013 0.41238237804966 0.5786438733524014 0.605718121773383
+0.41272544944197415 0.5834853638346734 0.41272544944197415 0.5834853638346734 0.5866135382101022
+0.4135221790320604 0.5808816441061619 0.4135221790320604 0.5808816441061619 0.6071863993443853
+0.41292406169377927 0.5884508655710939 0.41292406169377927 0.5884508655710939 0.5623141979760001
+0.41437017524324515 0.5852601586806262 0.41437017524324515 0.5852601586806262 0.5912557978656436
+0.4150427727209688 0.5904889966846423 0.41504277272096873 0.5904889966846422 0.5652110267774813
+0.4142583880955 0.5942767415148735 0.4142583880955 0.5942767415148734 0.5383137956189216
+0.4156005768147786 0.5975884819498221 0.4156005768147786 0.5975884819498222 0.5259388845983243
+0.41532048872142274 0.6034321034610308 0.41532048872142274 0.6034321034610307 0.4930414231081776
+0.41705706008515603 0.6003965218877992 0.41705706008515603 0.6003965218877992 0.515910186785712
+0.4178342636809928 0.6062222945802479 0.4178342636809928 0.6062222945802479 0.4870240771594379
+0.41675352745877836 0.6101313959283228 0.41675352745877836 0.6101313959283229 0.46544585324251014
+0.41902950032509123 0.6121062794630858 0.41902950032509123 0.6121062794630858 0.4623539049585631
+0.420198265632744 0.6152365245674971 0.42019826563274393 0.6152365245674972 0.4522235767388959
+0.41994497410913206 0.6194606778084005 0.41994497410913206 0.6194606778084005 0.43673659013667576
+0.4223760988596618 0.6217028443018684 0.4223760988596618 0.6217028443018684 0.43406356436590915
+0.4246696478618152 0.6273731123191932 0.42466964786181516 0.6273731123191933 0.4231668495269526
+0.4242444257261535 0.6239387143519208 0.42424442572615356 0.6239387143519208 0.43066080972001297
+0.41717775380015487 0.5738534866674986 0.41717775380015487 0.5738534866674986 0.6857178427721139
+0.4214059378846746 0.5728095899273518 0.4214059378846747 0.5728095899273518 0.7487953454352959
+0.5984218766035658 0.4404676588791831 0.5984218766035658 0.4404676588791831 0.7698918792854651
+0.6017938198847618 0.4410820170903623 0.6017938198847618 0.44108201709036227 0.722467096787617
+0.606362281131032 0.44261677383988324 0.606362281131032 0.44261677383988324 0.6531985797768991
+0.6035556615333654 0.4429200019671772 0.6035556615333654 0.4429200019671772 0.6789202827364996
+0.611017774705744 0.4446098466348509 0.611017774705744 0.4446098466348509 0.5813309852642249
+0.6076576899807394 0.44481951289183125 0.6076576899807394 0.44481951289183125 0.6109657880411782
+0.5961417471541353 0.44475816486270225 0.5961417471541353 0.4447581648627023 0.7408367828206212
+0.5940357398706283 0.44872346006032177 0.5940357398706283 0.44872346006032177 0.7073809039012461
+0.6213320862761499 0.43598632338445387 0.6213320862761499 0.4359863233844539 0.5923116671168144
+0.6238047417442687 0.4328918199767114 0.6238047417442686 0.4328918199767114 0.6042012397129896
+0.6272516032662206 0.43302337169689925 0.6272516032662206 0.43302337169689925 0.5757166128967096
+0.6301802087981832 0.4327860368317855 0.6301802087981832 0.43278603683178557 0.5558321810313517
+0.6112840081461928 0.44731690880099473 0.6112840081461928 0.44731690880099473 0.5429657010200749
+0.6138163966009118 0.4462059138337593 0.6138163966009119 0.4462059138337593 0.5349903784472848
+0.6190480078993152 0.4393064804525189 0.6190480078993152 0.4393064804525189 0.5745103804028958
+0.6223201607847734 0.43879472686815557 0.6223201607847734 0.43879472686815557 0.5531004031284075
+0.6163933845939474 0.44449348819938583 0.6163933845939474 0.44449348819938583 0.5345644928052362
+0.6185556781157241 0.44246624162668774 0.6185556781157241 0.44246624162668774 0.5411711123768445
+0.6485033305549194 0.4174392651291947 0.6485033305549194 0.41743926512919477 0.5604704315511473
+0.6518613713012967 0.41822284025563694 0.6518613713012967 0.4182228402556369 0.5347180918460982
+0.6551050029336526 0.41869490824247935 0.6551050029336526 0.41869490824247935 0.5125037317651495
+0.6458775661513261 0.4198811415616112 0.6458775661513262 0.4198811415616112 0.5595355311555791
+0.6432702553288695 0.4228678410049496 0.6432702553288695 0.4228678410049496 0.5535463038838121
+0.6407420374482086 0.42586023479214974 0.6407420374482086 0.4258602347921498 0.5457205220173879
+0.6327277563091387 0.43457172388227766 0.6327277563091388 0.43457172388227766 0.5200133984858447
+0.6357077509835876 0.431726900268106 0.6357077509835874 0.43172690026810606 0.5271083594649482
+0.6382553854270684 0.42881245540719737 0.6382553854270684 0.4288124554071974 0.5366660102444117
+0.7062897892374375 0.37700993916778014 0.7062897892374375 0.37700993916778014 0.4734695972102913
+0.6940112508515867 0.38072114825720793 0.6940112508515867 0.38072114825720793 0.5014565035469803
+0.6854656323059615 0.3855735859643469 0.6854656323059615 0.3855735859643468 0.5187321876342618
+0.688007024845473 0.38294405337358883 0.688007024845473 0.38294405337358883 0.5172416788502542
+0.6914197502855133 0.38348742535070757 0.6914197502855134 0.3834874253507076 0.5016741970598418
+0.6810637342722657 0.39429882873084376 0.6810637342722657 0.39429882873084376 0.5052733669662911
+0.6834859982394893 0.3916381564690424 0.6834859982394893 0.3916381564690424 0.5048030874128329
+0.6860669390713763 0.3889597838173967 0.6860669390713764 0.38895978381739665 0.5037355716225672
+0.7000414773640188 0.37872532800801634 0.7000414773640188 0.37872532800801634 0.48717194029663996
+0.6974421694704818 0.38158700507947935 0.6974421694704818 0.38158700507947935 0.4859604609546572
+0.7034942059112761 0.3796974415328675 0.7034942059112761 0.3796974415328675 0.4724851079807156
+0.679121816521128 0.39719451007356915 0.679121816521128 0.39719451007356915 0.5022802158966995
+0.6769659273314013 0.4001140148011251 0.6769659273314012 0.4001140148011251 0.49991880345695366
+0.6743433291390084 0.4028491269310172 0.6743433291390084 0.4028491269310172 0.5001844677957622
+0.6716396136173339 0.40562149888927723 0.6716396136173338 0.4056214988892773 0.5002434677172314
+0.6584525992520001 0.4191247970683023 0.6584525992520001 0.41912479706830225 0.4907719623481919
+0.6689655574415351 0.408376539357899 0.6689655574415351 0.408376539357899 0.49968399942553116
+0.6610664566148873 0.4164613004698654 0.6610664566148873 0.4164613004698654 0.4941561165874349
+0.6636850975555763 0.4137842371403815 0.6636850975555763 0.41378423714038154 0.4967444794984334
+0.6663170986819059 0.41109160719606114 0.6663170986819059 0.41109160719606114 0.49855692036826943
+0.7184707113363092 0.3743570170065749 0.7184707113363092 0.3743570170065749 0.4503279606367681
+0.7124293293263482 0.37598667406315023 0.7124293293263482 0.3759866740631503 0.45985661566494856
+0.7157570678553083 0.37687592873263814 0.7157570678553083 0.37687592873263814 0.4480159503516425
+0.7096640998933628 0.37832736106274234 0.7096640998933629 0.3783273610627424 0.4590203498423379
+0.7218660381493908 0.37520864088993844 0.7218660381493908 0.37520864088993844 0.4392738685979621
+0.7246038829599301 0.37268225445932973 0.7246038829599301 0.37268225445932973 0.4420275213889075
+0.7273989548695734 0.37017036172565093 0.7273989548695735 0.37017036172565093 0.4445816580569626
+0.7302164917911266 0.3676302509932594 0.7302164917911266 0.3676302509932594 0.44707687497505016
+0.7330193518651326 0.3650692866391851 0.7330193518651326 0.3650692866391851 0.44947270631398434
+0.7358083307094087 0.3624887717118122 0.7358083307094087 0.3624887717118122 0.4516716016220741
+0.7385667135789833 0.35988706020787165 0.7385667135789832 0.35988706020787165 0.45363013987988426
+0.7439564300968519 0.35470023019165203 0.7439564300968519 0.35470023019165203 0.45645384586645993
+0.7412855971512723 0.3572645902000924 0.7412855971512723 0.3572645902000924 0.4553036577071565
+0.7521806526049962 0.34711503835096186 0.7521806526049962 0.34711503835096186 0.45612244982509326
+0.7466810607152015 0.35216699275637603 0.7466810607152015 0.35216699275637603 0.45691161216091863
+0.7494955866750285 0.34968259272391794 0.7494955866750285 0.34968259272391794 0.4565283623063902
+0.7473188403899939 0.3556927068007296 0.7473188403899939 0.3556927068007296 0.44619254254189533
+0.755567638620747 0.3481511955796085 0.755567638620747 0.34815119557960855 0.4456174612898029
+0.7583412199754296 0.3456022187554912 0.7583412199754296 0.3456022187554912 0.4444427992875298
+0.7610906301175977 0.3430505717688186 0.7610906301175976 0.3430505717688186 0.4428897409662101
+0.763844539365218 0.3404897853730178 0.763844539365218 0.3404897853730178 0.44095283596660195
+0.7666261104570467 0.337911309662882 0.7666261104570467 0.337911309662882 0.43865042239172913
+0.7694193761043032 0.33532097570252123 0.7694193761043032 0.33532097570252123 0.4360793431094085
+0.772133427542515 0.332712364569888 0.772133427542515 0.332712364569888 0.43355073015644546
+0.77471531603795 0.3300886393130011 0.77471531603795 0.3300886393130011 0.43126439787252485
+0.7772733154708287 0.3275095594254159 0.7772733154708287 0.3275095594254159 0.42896009990195644
+0.7801043367199625 0.3250200350730884 0.7801043367199626 0.32502003507308835 0.4259442967379478
+0.7826205141348255 0.3219747557941531 0.7826205141348256 0.3219747557941531 0.4246187216621268
+0.7864246969017682 0.3199302335772448 0.7864246969017682 0.31993023357724487 0.41910433500593713
+0.7898261858391119 0.31793622446216924 0.7898261858391119 0.31793622446216924 0.4148018898532136
+0.7931969786637912 0.31590088735387867 0.7931969786637912 0.31590088735387867 0.4110066376556378
+0.7965835366996677 0.3138131871650702 0.7965835366996677 0.3138131871650702 0.4076226321942295
+0.7999707446630234 0.3117186975840383 0.7999707446630234 0.3117186975840383 0.4045773253356369
+0.8033587980800312 0.3096244976406942 0.8033587980800313 0.3096244976406943 0.4018107604269306
+0.8067482932185787 0.3075315336429331 0.8067482932185787 0.3075315336429331 0.39925608232235327
+0.8101385354705453 0.30543933054390116 0.8101385354705454 0.30543933054390116 0.39683861915579993
+0.8135289187657122 0.3033472803346984 0.8135289187657122 0.3033472803346984 0.394476995954554
+0.8169193020608793 0.3012552301254941 0.8169193020608793 0.3012552301254941 0.39208745325621047
+0.8203096853560465 0.2991631799162893 0.8203096853560465 0.2991631799162893 0.38959051696960323
+0.8237000686512147 0.2970711297070839 0.8237000686512147 0.2970711297070839 0.386916738304019
+0.8270904519463831 0.2949790794978783 0.827090451946383 0.2949790794978783 0.38401139258690936
+0.8304808352415521 0.2928870292886728 0.8304808352415521 0.2928870292886728 0.38083842960068637
+0.8338712185367214 0.29079497907946744 0.8338712185367214 0.29079497907946744 0.37738355228332887
+0.8372616018318904 0.2887029288702623 0.8372616018318905 0.2887029288702623 0.37365633187618
+0.8406519851270594 0.2866108786610571 0.8406519851270594 0.2866108786610571 0.3696912801988432
+0.8440423684222286 0.2845188284518521 0.8440423684222286 0.2845188284518521 0.36554779674061133
+0.8474327517173976 0.2824267782426472 0.8474327517173975 0.2824267782426472 0.36130889713089137
+0.8508231350125666 0.2803347280334422 0.8508231350125666 0.2803347280334422 0.3570786216971395
+0.8542135183077355 0.2782426778242372 0.8542135183077356 0.27824267782423723 0.3529780333131202
+0.8576039016029045 0.276150627615032 0.8576039016029045 0.276150627615032 0.34913976010161596
+0.8609942848980733 0.2740585774058269 0.8609942848980733 0.2740585774058269 0.34570113725371265
+0.8643846681932423 0.27196652719662184 0.8643846681932423 0.27196652719662184 0.3427961619236131
+0.8677750514884113 0.26987447698741673 0.8677750514884114 0.2698744769874168 0.3405466872700636
+0.8711654347835801 0.2677824267782116 0.8711654347835801 0.2677824267782116 0.33905351188045735
+0.874555818078749 0.26569037656900657 0.874555818078749 0.26569037656900657 0.3383882080078964
+0.8779462013739181 0.2635983263598014 0.8779462013739181 0.2635983263598014 0.33858660224169773
+0.881336584669087 0.2615062761505963 0.8813365846690872 0.26150627615059635 0.33964471720396455
+0.884726967964256 0.25941422594139113 0.884726967964256 0.25941422594139113 0.3415176931583755
+0.8881173512594248 0.257322175732186 0.8881173512594248 0.257322175732186 0.3441217902876002
+0.8915077345545939 0.25523012552298097 0.8915077345545939 0.25523012552298097 0.3473391331371336
+0.8948981178497628 0.25313807531377586 0.8948981178497629 0.2531380753137759 0.35102451387195904
+0.8982885011449318 0.25104602510457075 0.8982885011449318 0.25104602510457075 0.3550133970132925
+0.9016788844401007 0.24895397489536564 0.9016788844401006 0.2489539748953656 0.35913027765555366
+0.9050692677352696 0.24686192468616053 0.9050692677352696 0.24686192468616053 0.36319669399289006
+0.9084596510304386 0.24476987447695542 0.9084596510304387 0.24476987447695545 0.36703841281848354
+0.9118500343256075 0.2426778242677503 0.9118500343256075 0.2426778242677503 0.37049152752266384
+0.9152404176207765 0.2405857740585452 0.9152404176207763 0.24058577405854517 0.37340738897199793
+0.9186308009159454 0.2384937238493401 0.9186308009159454 0.2384937238493401 0.3756564134896884
+0.9220211842111143 0.23640167364013498 0.9220211842111145 0.236401673640135 0.3771308812763409
+0.9254115675062833 0.23430962343092987 0.9254115675062833 0.23430962343092987 0.37774686517965894
+0.9288019508014522 0.23221757322172476 0.9288019508014521 0.23221757322172473 0.377445428176355
+0.9321923340966212 0.23012552301251965 0.9321923340966212 0.23012552301251965 0.3761932106289785
+0.9355827173917901 0.22803347280331454 0.9355827173917902 0.22803347280331457 0.3739825040467975
+0.938973100686959 0.22594142259410943 0.938973100686959 0.22594142259410943 0.3708308819099951
+0.942363483982128 0.22384937238490432 0.9423634839821279 0.2238493723849043 0.3667804326131608
+0.9457538672772969 0.2217573221756992 0.9457538672772969 0.2217573221756992 0.36189661553584385
+0.9491442505724659 0.2196652719664941 0.949144250572466 0.21966527196649413 0.35626673861644337
+0.9525346338676348 0.217573221757289 0.9525346338676348 0.217573221757289 0.3499980344878754
+0.9559250171628038 0.21548117154808388 0.9559250171628036 0.21548117154808386 0.343215292753761
+0.9593154004579727 0.21338912133887877 0.9593154004579727 0.21338912133887877 0.336057990173644
+0.9627057837531416 0.21129707112967366 0.9627057837531418 0.2112970711296737 0.3286768521689038
+0.9660961670483106 0.20920502092046855 0.9660961670483106 0.20920502092046855 0.3212297843273952
+0.9694865503434795 0.20711297071126344 0.9694865503434794 0.20711297071126342 0.3138771398375138
+0.9728769336386485 0.20502092050205833 0.9728769336386485 0.20502092050205833 0.3067763471084346
+0.9762673169338174 0.20292887029285323 0.9762673169338175 0.20292887029285325 0.3000760176166508
+0.9796577002289864 0.20083682008364812 0.9796577002289864 0.20083682008364812 0.2939097854151614
+0.9830480835241553 0.198744769874443 0.9830480835241552 0.198744769874443 0.2883902803634139
+0.9864384668193242 0.1966527196652379 0.9864384668193242 0.1966527196652379 0.28360377241601925
+0.9898288501144932 0.1945606694560328 0.9898288501144933 0.1945606694560328 0.2796060954972646
+0.9932192334096621 0.19246861924682768 0.9932192334096621 0.19246861924682768 0.27642041865175715
+0.1966527196652721 0.9932192334096621 0.1966527196652721 0.9932192334096621 0.15550216493742783
+0.1987447698744771 0.9898288501144933 0.1987447698744771 0.9898288501144933 0.15774261328084405
+0.2008368200836821 0.9864384668193242 0.2008368200836821 0.9864384668193242 0.16027277634903989
+0.2029288702928871 0.9830480835241553 0.2029288702928871 0.9830480835241552 0.16301813293631182
+0.20502092050209209 0.9796577002289865 0.20502092050209209 0.9796577002289865 0.16589830948889464
+0.20711297071129708 0.9762673169338175 0.20711297071129708 0.9762673169338175 0.16883073137446455
+0.20920502092050208 0.9728769336386485 0.20920502092050208 0.9728769336386485 0.17173388664744735
+0.21129707112970708 0.9694865503434794 0.21129707112970708 0.9694865503434794 0.17453010060772411
+0.2133891213389121 0.9660961670483106 0.2133891213389121 0.9660961670483106 0.1771478020980091
+0.21548117154811722 0.9627057837531418 0.21548117154811722 0.9627057837531418 0.17952331573723154
+0.21757322175732227 0.9593154004579727 0.21757322175732227 0.9593154004579727 0.18160224093472876
+0.2196652719665274 0.9559250171628038 0.21966527196652744 0.9559250171628036 0.18334048547810047
+0.22175732217573263 0.9525346338676348 0.2217573221757326 0.9525346338676348 0.184705016056163
+0.22384937238493788 0.949144250572466 0.22384937238493788 0.949144250572466 0.185674376112521
+0.2259414225941432 0.9457538672772973 0.2259414225941432 0.9457538672772973 0.18623900678205288
+0.22803347280334854 0.9423634839821285 0.22803347280334854 0.9423634839821285 0.1864013914502531
+0.23012552301255382 0.9389731006869603 0.23012552301255382 0.9389731006869603 0.18617602957045745
+0.23221757322175912 0.9355827173917921 0.2322175732217591 0.9355827173917922 0.18558923096613802
+0.23430962343096398 0.9321923340966243 0.23430962343096398 0.9321923340966244 0.18467870792576255
+0.23640167364016781 0.9288019508014566 0.23640167364016781 0.9288019508014566 0.1834929291953051
+0.2384937238493716 0.9254115675062881 0.2384937238493716 0.9254115675062881 0.1820901883679916
+0.2405857740585746 0.9220211842111193 0.2405857740585746 0.9220211842111193 0.18053733107816974
+0.24267782426777781 0.9186308009159504 0.24267782426777781 0.9186308009159504 0.17890808405765202
+0.2447698744769823 0.9152404176207809 0.2447698744769823 0.915240417620781 0.17728093903169417
+0.24686192468618884 0.911850034325612 0.24686192468618887 0.911850034325612 0.17573657079124547
+0.2489539748953978 0.9084596510304438 0.2489539748953978 0.9084596510304438 0.1743548158023689
+0.25104602510460966 0.9050692677352785 0.25104602510460966 0.9050692677352785 0.17321130601458032
+0.2531380753138256 0.9016788844401176 0.25313807531382565 0.9016788844401177 0.17237393591589914
+0.25523012552303864 0.8982885011449528 0.25523012552303864 0.898288501144953 0.17189942415021695
+0.2573221757322592 0.8948981178497978 0.2573221757322592 0.8948981178497978 0.1718302909690406
+0.25941422594148295 0.8915077345546432 0.25941422594148295 0.8915077345546433 0.17219258424731373
+0.2615062761507152 0.8881173512595026 0.2615062761507152 0.8881173512595026 0.17299463281207872
+0.2635983263599539 0.8847269679643777 0.2635983263599539 0.8847269679643777 0.17422698786574162
+0.265690376569197 0.8813365846693006 0.265690376569197 0.8813365846693006 0.17586355490069294
+0.2677824267784064 0.8779462013742365 0.2677824267784064 0.8779462013742364 0.1778637586886591
+0.269874476987553 0.8745558180792629 0.269874476987553 0.8745558180792629 0.18017546225848216
+0.2719665271966619 0.8711654347841938 0.27196652719666187 0.8711654347841938 0.18273830224751283
+0.27405857740569345 0.8677750514891183 0.27405857740569345 0.8677750514891184 0.1854871106526088
+0.2761506276147833 0.8643846681940358 0.2761506276147833 0.8643846681940358 0.18835515092853392
+0.2782426778241162 0.8609942848989401 0.2782426778241162 0.8609942848989401 0.191276979655043
+0.28033472803371257 0.8576039016040456 0.28033472803371257 0.8576039016040456 0.19419083004672477
+0.28242677824359075 0.8542135183094183 0.28242677824359075 0.8542135183094183 0.19704048453332446
+0.28451882845357007 0.8508231350155745 0.28451882845357007 0.8508231350155745 0.19977665367958242
+0.2866108786637272 0.8474327517219061 0.2866108786637272 0.8474327517219061 0.20235790807820345
+0.2887029288727502 0.844042368429009 0.2887029288727501 0.844042368429009 0.20475122265389614
+0.29079497908348845 0.8406519851359198 0.29079497908348845 0.8406519851359198 0.20693219440368413
+0.29288702929480337 0.837261601842842 0.29288702929480337 0.837261601842842 0.20888498973818745
+0.29497907950847385 0.8338712185509299 0.29497907950847385 0.8338712185509299 0.2106020700778443
+0.2970711297259302 0.8304808352634483 0.29707112972593025 0.8304808352634483 0.2120837363688062
+0.2991631799455196 0.8270904519796324 0.2991631799455196 0.8270904519796324 0.21333752629803795
+0.3012552301638735 0.8237000687087667 0.3012552301638735 0.8237000687087667 0.2143774926773678
+0.3033472803746086 0.8203096854341857 0.3033472803746086 0.8203096854341857 0.21522338786390663
+0.30543933055655825 0.8169193021754331 0.3054393305565583 0.8169193021754332 0.2158997772494037
+0.3075313808929318 0.8135289190108739 0.3075313808929318 0.813528919010874 0.21643510443728697
+0.30962347333990825 0.810138541854966 0.3096234733399083 0.8101385418549661 0.21686077881249655
+0.31171577667780864 0.8067481887662987 0.31171577667780864 0.8067481887662987 0.21721031526967113
+0.31380845845286726 0.8033578050257658 0.31380845845286726 0.8033578050257658 0.21751818923091082
+0.3159016590437235 0.7999672476841543 0.3159016590437235 0.7999672476841543 0.21781891112765514
+0.31799598486148534 0.7965753786305642 0.31799598486148534 0.7965753786305642 0.21814605816701618
+0.3200860520129549 0.7931931173320403 0.3200860520129549 0.7931931173320405 0.218531665294827
+0.3221689624852931 0.7898345519280808 0.3221689624852931 0.7898345519280808 0.21901053535546708
+0.32424731944516477 0.7865299980783361 0.32424731944516477 0.7865299980783361 0.21963273199978958
+0.3312116930650062 0.7772452307909044 0.3312116930650062 0.7772452307909044 0.2236249093054046
+0.3283754446983852 0.7797190211337157 0.32837544469838514 0.7797190211337158 0.22120339955161278
+0.3262893416687415 0.7832718868342808 0.3262893416687415 0.7832718868342808 0.22038219297356101
+0.33808416642545625 0.7634835349775554 0.3380841664254563 0.7634835349775554 0.2277528450396085
+0.3367853471884303 0.7671000130987604 0.3367853471884303 0.7671000130987604 0.22699864599915376
+0.3354095533739889 0.7708706844309642 0.3354095533739889 0.7708706844309642 0.22642668792605783
+0.3339050289813929 0.7746057759696598 0.3339050289813929 0.77460577596966 0.22592822043745422
+0.3415907850867829 0.7628878044182227 0.3415907850867829 0.7628878044182227 0.23226501232243982
+0.34281277216497585 0.7593564341586135 0.34281277216497585 0.7593564341586135 0.23326081718867778
+0.3439887886921095 0.7558737642725785 0.3439887886921095 0.7558737642725785 0.2344208049787684
+0.3451855443478676 0.7523844239993069 0.3451855443478676 0.7523844239993069 0.23582169049212628
+0.3458495580625243 0.7484777578628211 0.3458495580625244 0.748477757862821 0.23664833998222612
+0.34781321863823067 0.745358792361676 0.3478132186382306 0.7453587923616761 0.2394773253352259
+0.3491810533256894 0.7417690647162828 0.3491810533256894 0.7417690647162828 0.24163904570191816
+0.35229870316178574 0.7411497538254491 0.35229870316178574 0.7411497538254491 0.24630715214990032
+0.3557577740738276 0.7403479940826089 0.3557577740738276 0.7403479940826089 0.25154779116256615
+0.3568786588918271 0.7367578345206481 0.3568786588918271 0.7367578345206481 0.25378401167453196
+0.35806096380702673 0.7331684765582506 0.35806096380702673 0.7331684765582506 0.25623016597521797
+0.35928444857368785 0.7295809995668904 0.35928444857368785 0.7295809995668904 0.2588288450597644
+0.3664535862040825 0.7179749722561255 0.3664535862040825 0.7179749722561254 0.2732380551679174
+0.3652641478223219 0.7215194599747191 0.3652641478223219 0.7215194599747191 0.27044727667142515
+0.3640729391033794 0.7250830833872522 0.3640729391033794 0.7250830833872522 0.267647416321035
+0.36287347527086844 0.7286635285664581 0.36287347527086844 0.7286635285664581 0.26485667760993575
+0.37096233114238597 0.71358828651926 0.37096233114238597 0.71358828651926 0.2822500464477462
+0.36983706378875425 0.7170806192847106 0.36983706378875425 0.7170806192847107 0.2794663756709946
+0.3742624832757757 0.7127192630575381 0.3742624832757757 0.7127192630575382 0.2884943481225985
+0.3771152517568943 0.7063112419487331 0.3771152517568943 0.7063112419487331 0.2951904619069609
+0.37567970308012866 0.7096116232153693 0.37567970308012866 0.7096116232153693 0.2918075392156437
+0.3770595319486584 0.7122617935889697 0.3770595319486584 0.7122617935889697 0.29366339622035925
+0.38178586818613175 0.7018127148337182 0.38178586818613175 0.7018127148337182 0.30501904307767447
+0.3807600317276412 0.705695767571804 0.3807600317276412 0.705695767571804 0.302298403404977
+0.38613497106001127 0.6972420973102852 0.38613497106001127 0.6972420973102852 0.31423554045638397
+0.3852348887503483 0.7009178786631601 0.3852348887503483 0.7009178786631601 0.31181095503370115
+0.40176419244063744 0.6719849819297843 0.4017641924406375 0.6719849819297843 0.347274543136022
+0.3956398717683809 0.6843346382934533 0.3956398717683809 0.6843346382934533 0.3344128162027507
+0.38958035662818474 0.6962663159362775 0.38958035662818474 0.6962663159362775 0.3210496711396986
+0.3903776022749769 0.6925401622210426 0.3903776022749769 0.6925401622210426 0.32321227924185
+0.3913271484135894 0.6889130183430279 0.3913271484135894 0.6889130183430279 0.32548899280421767
+0.3946994739454312 0.687976330992267 0.3946994739454312 0.687976330992267 0.3322005715016188
+0.40088628679031896 0.6757884955720711 0.40088628679031896 0.6757884955720711 0.34531964808310905
+0.39989386667943805 0.6795547960590074 0.39989386667943805 0.6795547960590075 0.3431165494639503
+0.39896648690744296 0.6833288420566855 0.39896648690744296 0.6833288420566855 0.3409713724414632
+0.40603967608817526 0.666835934112727 0.4060396760881753 0.666835934112727 0.3561669060294912
+0.4052453949452091 0.6705792640724412 0.4052453949452091 0.6705792640724412 0.354231548515445
+0.4094031219552648 0.6653998367150641 0.4094031219552648 0.6653998367150641 0.36283341345967735
+0.4126843217329417 0.6639103932138036 0.4126843217329417 0.6639103932138036 0.3691680613160165
+0.4158817330659252 0.6623807853018577 0.4158817330659252 0.6623807853018578 0.3751735890813303
+0.41898936275000304 0.6608073449420361 0.41898936275000304 0.6608073449420361 0.38085128692861053
+0.42200725257070976 0.6591689436278001 0.42200725257070976 0.6591689436278001 0.38622344225759764
+0.42493341054449263 0.6573604105142319 0.4249334105444927 0.657360410514232 0.39140474466660374
+0.4277989866014417 0.6557558250626204 0.4277989866014417 0.6557558250626204 0.39622183871718214
+0.4308241662090843 0.6541803293774955 0.4308241662090843 0.6541803293774954 0.401003863145684
+0.42865903995852334 0.6401969377014297 0.42865903995852334 0.6401969377014297 0.40889604749299974
+0.42689022090113093 0.6304557918733574 0.42689022090113093 0.6304557918733574 0.42001631891556546
+0.4290388169803499 0.6363635660320297 0.4290388169803499 0.6363635660320296 0.41389191151224664
+0.4294386051857953 0.6326705436809258 0.4294386051857953 0.6326705436809258 0.41972114392521753
+0.43112653607673 0.6503589039789114 0.43112653607673 0.6503589039789114 0.4038048296009808
+0.43135398714629175 0.6464777056757077 0.43135398714629175 0.6464777056757077 0.40690892661810535
+0.4314937684824334 0.6425586555643358 0.4314937684824334 0.6425586555643358 0.4104232441376134
+0.41586015955499483 0.5784981268290521 0.41586015955499483 0.578498126829052 0.6447926806352627
+0.4157013418806035 0.5821330073610256 0.4157013418806034 0.5821330073610255 0.6213288589858275
+0.41609386144409477 0.5871400934179579 0.41609386144409477 0.5871400934179579 0.5933083356698662
+0.41691985388452774 0.5843782985504713 0.41691985388452774 0.5843782985504713 0.6177580441357018
+0.4172922880865029 0.5919348286201664 0.4172922880865029 0.5919348286201664 0.5697228703904966
+0.41803025148606293 0.5888018913161367 0.41803025148606293 0.5888018913161367 0.5956523833714744
+0.4173380887756776 0.5949108394378958 0.4173380887756775 0.5949108394378958 0.5505530698515179
+0.41797926937903473 0.597454187152609 0.4179792693790347 0.597454187152609 0.5372878989538311
+0.4192234063791299 0.5928860256126736 0.4192234063791299 0.5928860256126736 0.5736281997801794
+0.4200877229834894 0.5988898495888423 0.42008772298348945 0.5988898495888423 0.5365919626637115
+0.41895345277196927 0.6025197176098005 0.4189534527719693 0.6025197176098005 0.5104937916520408
+0.42086417576235247 0.6050881590993843 0.4208641757623525 0.6050881590993843 0.5014616890759943
+0.420465178020487 0.6089572667618047 0.42046517802048694 0.6089572667618047 0.48023206669216595
+0.42153580933215773 0.6120670310622582 0.42153580933215773 0.6120670310622582 0.46782535738081527
+0.4230619467946714 0.6070262796919926 0.4230619467946714 0.6070262796919926 0.4957065957013122
+0.4238216425898888 0.6139867628595452 0.4238216425898888 0.6139867628595451 0.46373581582439155
+0.423062482094452 0.6179482316138678 0.423062482094452 0.6179482316138678 0.44727887576824216
+0.427773948652001 0.6274850469401884 0.427773948652001 0.6274850469401884 0.4270454052626299
+0.4259003755936167 0.6206706149333795 0.42590037559361665 0.6206706149333795 0.44249214675436666
+0.42711263992861753 0.624430829294114 0.42711263992861753 0.624430829294114 0.43344490216734227
+0.42029763038282475 0.5772124583617911 0.42029763038282475 0.5772124583617911 0.7020601948039921
+0.4244830600237979 0.575990564579478 0.4244830600237979 0.575990564579478 0.7596591812200871
+0.6006951488144201 0.44463537265673314 0.6006951488144202 0.44463537265673303 0.6881075847336089
+0.6042010185804411 0.4453181482786591 0.6042010185804411 0.44531814827865907 0.6397808286053809
+0.6086651600164281 0.447188645662233 0.608665160016428 0.447188645662233 0.5692783164190859
+0.6059189814863358 0.4472307584351275 0.6059189814863358 0.4472307584351275 0.5953345001784162
+0.6126854445750792 0.4489759577619532 0.6126854445750792 0.4489759577619532 0.5087621302064812
+0.6097083251545883 0.44949270524742 0.6097083251545882 0.44949270524741997 0.5279132922422574
+0.5983773429997693 0.4487594881426753 0.5983773429997693 0.44875948814267536 0.6542276721709664
+0.5960837340557312 0.4526542279831347 0.5960837340557311 0.45265422798313465 0.6186084156699567
+0.6249972182069151 0.4366529428366084 0.6249972182069151 0.4366529428366084 0.5555246984944177
+0.6290590945533534 0.43570721183264305 0.6290590945533534 0.435707211832643 0.534656521545724
+0.6245365627039445 0.43994858596298536 0.6245365627039445 0.43994858596298536 0.5226834443769649
+0.6311901795526438 0.43769954671462385 0.6311901795526438 0.4376995467146239 0.4983811131461028
+0.616274389487305 0.4479375597674156 0.616274389487305 0.4479375597674156 0.4923847903201301
+0.6217400715136848 0.44203596242926796 0.6217400715136848 0.44203596242926796 0.5205330677376407
+0.6194358126077582 0.44516232359420926 0.6194358126077582 0.4451623235942092 0.501468712486913
+0.614217088418234 0.4513078362676278 0.614217088418234 0.4513078362676279 0.4659344567140757
+0.6173404526972184 0.45104497925381715 0.6173404526972184 0.45104497925381715 0.44475868504393307
+0.6340018742673286 0.4380242617212856 0.6340018742673285 0.43802426172128556 0.47586650534489655
+0.6493026631992094 0.42081589015165927 0.6493026631992094 0.42081589015165927 0.53151786451562
+0.6558539480285075 0.42192819535624204 0.6558539480285076 0.4219281953562421 0.4853732768770927
+0.6526326770116234 0.42144294412380523 0.6526326770116234 0.42144294412380523 0.5072028086192835
+0.6467239777143128 0.4236251206336857 0.6467239777143128 0.4236251206336857 0.525851351374159
+0.6441480121989124 0.4265699636505731 0.6441480121989124 0.42656996365057315 0.5179582009388292
+0.641606067011085 0.4295061633496749 0.641606067011085 0.4295061633496749 0.5086487840924465
+0.6364806706150627 0.43522815531305403 0.6364806706150627 0.435228155313054 0.4878915191051809
+0.6390631044324949 0.43240799576073274 0.6390631044324949 0.4324079957607328 0.4983759608648968
+0.7068850216422717 0.3808366414975443 0.7068850216422717 0.3808366414975443 0.45793757300741594
+0.6949987153381154 0.38423963832250374 0.6949987153381154 0.38423963832250374 0.4852197230619227
+0.6892043962599329 0.3868171364534988 0.6892043962599328 0.38681713645349886 0.4985581422045379
+0.6926136977939287 0.38646684320782687 0.6926136977939287 0.38646684320782687 0.48604475023475996
+0.6886835005281235 0.39031845062524806 0.6886835005281235 0.39031845062524806 0.4873203097863037
+0.6820639219130322 0.3970585130265659 0.6820639219130322 0.3970585130265659 0.4890533055353107
+0.6842110137956807 0.3950194598588366 0.6842110137956806 0.3950194598588366 0.4879021405393246
+0.686478308649775 0.3924432403003351 0.6864783086497751 0.3924432403003351 0.4883755337504995
+0.7007549285114387 0.382488497656837 0.7007549285114387 0.382488497656837 0.47132067647045145
+0.6980600409809287 0.38523697288678593 0.6980600409809287 0.38523697288678593 0.4704881370457567
+0.7041212046154901 0.3834961892330678 0.7041212046154901 0.3834961892330678 0.4566224732715502
+0.6813595416324566 0.40028239710406577 0.6813595416324566 0.4002823971040658 0.47844668682530994
+0.6783682413885896 0.4034788978104028 0.6783682413885898 0.40347889781040275 0.47763155558985965
+0.6754049889407739 0.40630171714827457 0.6754049889407739 0.40630171714827457 0.47804193615011226
+0.6726285368874999 0.4090346645975243 0.6726285368874999 0.4090346645975243 0.47753430677515635
+0.6593134252593016 0.4222812036436103 0.6593134252593016 0.4222812036436103 0.4640195690507218
+0.6619134535286545 0.4196589548032053 0.6619134535286545 0.4196589548032053 0.46854614204397443
+0.6699130406248677 0.41172727409882026 0.6699130406248677 0.4117272740988202 0.4763578133931737
+0.6645578448587266 0.41703417988409314 0.6645578448587265 0.41703417988409314 0.4719519389480346
+0.667225678475968 0.4143911992104787 0.667225678475968 0.4143911992104787 0.4745216907768683
+0.7191160464360883 0.3777378407749595 0.7191160464360883 0.3777378407749595 0.43659835770105343
+0.7130259768387669 0.3793804257482241 0.7130259768387669 0.3793804257482241 0.44598892232085113
+0.7163840558849225 0.3802813864101952 0.7163840558849225 0.3802813864101952 0.43395784872863413
+0.7102509151566654 0.38193408975790566 0.7102509151566654 0.3819340897579057 0.44413108338900625
+0.7225095240317759 0.3785930568380625 0.7225095240317759 0.3785930568380625 0.4255116538045574
+0.7253113530058912 0.3760690081638083 0.7253113530058912 0.3760690081638083 0.42840965822160265
+0.7281326708344475 0.3735760149932245 0.7281326708344475 0.3735760149932245 0.43115696739003156
+0.7309659784238574 0.37107971555434255 0.7309659784238574 0.37107971555434255 0.4338119438784224
+0.7338054335488979 0.36855807425257475 0.7338054335488979 0.36855807425257475 0.43637336981872327
+0.7366460258433158 0.36600980938227373 0.7366460258433158 0.36600980938227373 0.438760916413238
+0.7394470997891508 0.3634395331745128 0.7394470997891508 0.3634395331745128 0.44095781257681516
+0.7421212389241062 0.3608337362801531 0.7421212389241062 0.3608337362801531 0.44310615198097025
+0.7446685181789751 0.3582143508442827 0.7446685181789751 0.3582143508442827 0.445141701067612
+0.7477064507277722 0.3591462735621723 0.7477064507277723 0.3591462735621724 0.4357856878248076
+0.7529700648311679 0.35088684171130835 0.7529700648311679 0.3508868417113083 0.4454040256642076
+0.7502848058780669 0.35330896704342557 0.750284805878067 0.35330896704342557 0.44569664021811156
+0.7506037790539095 0.3566368179801457 0.7506037790539094 0.35663681798014574 0.43622171870213006
+0.7563309034479591 0.35167046348078745 0.7563309034479592 0.35167046348078745 0.43556250293223847
+0.7590366435390582 0.3492099964479028 0.7590366435390582 0.3492099964479028 0.43477564126449814
+0.7617358598109037 0.34671349268704477 0.7617358598109037 0.34671349268704477 0.43367601782635395
+0.764474433366603 0.3441686673117011 0.764474433366603 0.3441686673117011 0.4321789124043443
+0.7672755592473527 0.34159171567474694 0.7672755592473527 0.34159171567474694 0.43022845441369156
+0.770129671059388 0.33900402025817306 0.770129671059388 0.33900402025817306 0.42787275811198816
+0.7730250020401238 0.33642313858342404 0.7730250020401238 0.33642313858342404 0.42518137685375956
+0.7756443149117135 0.3338089113670307 0.7756443149117135 0.33380891136703067 0.4230576476131655
+0.7778714937833933 0.33109445180061026 0.7778714937833932 0.33109445180061026 0.42200028722502086
+0.7803269719346616 0.32863408776707104 0.7803269719346616 0.32863408776707104 0.4199950086212147
+0.783429691109125 0.32620855044817343 0.783429691109125 0.3262085504481735 0.41648107782573257
+0.7864876331000769 0.3241564644015947 0.7864876331000769 0.3241564644015947 0.412733520200742
+0.7898539811749403 0.32211296188008537 0.7898539811749403 0.32211296188008537 0.4085769960394993
+0.7932169360014408 0.3200758392686038 0.7932169360014408 0.3200758392686038 0.4047427690469792
+0.7965864325383168 0.31800613576928904 0.7965864325383168 0.3180061357692891 0.4012917923469063
+0.7999733861950014 0.3159064728904685 0.7999733861950014 0.3159064728904685 0.39819187425075236
+0.8033601253678434 0.3138102857610937 0.8033601253678434 0.31381028576109365 0.3953867669449536
+0.8067486177207112 0.31171612462817105 0.8067486177207112 0.31171612462817105 0.3928212030123192
+0.8101385712456307 0.30962348776194104 0.8101385712456307 0.30962348776194104 0.390427701713213
+0.8135289187657118 0.3075313807531065 0.8135289187657119 0.30753138075310643 0.38813112074912864
+0.8169193020608798 0.30543933054390265 0.8169193020608798 0.30543933054390265 0.38585006754218915
+0.820309685356048 0.30334728033469877 0.820309685356048 0.30334728033469877 0.3835033973904021
+0.8237000686512159 0.301255230125494 0.8237000686512159 0.301255230125494 0.3810167063884831
+0.827090451946384 0.2991631799162889 0.8270904519463841 0.2991631799162889 0.3783274905970985
+0.8304808352415526 0.2970711297070836 0.8304808352415526 0.2970711297070836 0.37538951849892316
+0.8338712185367214 0.29497907949787827 0.8338712185367214 0.2949790794978782 0.37217641294159765
+0.8372616018318904 0.2928870292886729 0.8372616018318905 0.2928870292886729 0.3686843339215984
+0.8406519851270592 0.29079497907946755 0.8406519851270592 0.29079497907946755 0.36493367636641344
+0.8440423684222282 0.28870292887026244 0.8440423684222281 0.28870292887026244 0.36096970167673786
+0.8474327517173975 0.2866108786610574 0.8474327517173975 0.28661087866105733 0.35686201341520635
+0.8508231350125666 0.28451882845185233 0.8508231350125666 0.28451882845185233 0.35270277535690836
+0.8542135183077356 0.28242677824264734 0.8542135183077356 0.28242677824264734 0.34860356728384767
+0.8576039016029045 0.2803347280334422 0.8576039016029045 0.2803347280334422 0.34469079704490596
+0.8609942848980734 0.2782426778242372 0.8609942848980733 0.27824267782423723 0.34109965462416464
+0.8643846681932423 0.27615062761503206 0.8643846681932423 0.27615062761503206 0.3379667199165443
+0.8677750514884114 0.274058577405827 0.8677750514884114 0.274058577405827 0.3354215234171865
+0.8711654347835802 0.27196652719662184 0.8711654347835802 0.27196652719662184 0.33357758900180473
+0.8745558180787492 0.26987447698741673 0.874555818078749 0.2698744769874168 0.33252371291534294
+0.8779462013739181 0.2677824267782117 0.8779462013739181 0.2677824267782117 0.3323163818962113
+0.8813365846690872 0.26569037656900657 0.8813365846690872 0.26569037656900657 0.33297423276900645
+0.884726967964256 0.2635983263598014 0.884726967964256 0.2635983263598014 0.33447526423074825
+0.8881173512594249 0.2615062761505963 0.8881173512594248 0.26150627615059635 0.33675714852880995
+0.8915077345545939 0.2594142259413912 0.8915077345545939 0.2594142259413912 0.33972054122569983
+0.8948981178497628 0.2573221757321861 0.8948981178497629 0.257322175732186 0.3432348714803268
+0.8982885011449318 0.25523012552298097 0.8982885011449318 0.25523012552298097 0.34714581861036153
+0.9016788844401007 0.25313807531377586 0.9016788844401006 0.2531380753137759 0.3512835924935023
+0.9050692677352696 0.25104602510457075 0.9050692677352696 0.25104602510457075 0.3554712188558544
+0.9084596510304386 0.24895397489536564 0.9084596510304387 0.2489539748953656 0.3595322236810478
+0.9118500343256075 0.24686192468616053 0.9118500343256075 0.24686192468616053 0.3632973404672802
+0.9152404176207765 0.24476987447695542 0.9152404176207763 0.24476987447695545 0.36661007218256486
+0.9186308009159454 0.2426778242677503 0.9186308009159454 0.2426778242677503 0.3693310956790525
+0.9220211842111143 0.2405857740585452 0.9220211842111145 0.24058577405854517 0.3713415933797137
+0.9254115675062833 0.2384937238493401 0.9254115675062833 0.2384937238493401 0.37254564369416604
+0.9288019508014522 0.23640167364013498 0.9288019508014521 0.236401673640135 0.37287181220886584
+0.9321923340966212 0.23430962343092987 0.9321923340966212 0.23430962343092987 0.3722740742763717
+0.9355827173917901 0.23221757322172476 0.9355827173917902 0.23221757322172473 0.3707321770167833
+0.938973100686959 0.23012552301251965 0.938973100686959 0.23012552301251965 0.3682515219344537
+0.942363483982128 0.22803347280331454 0.9423634839821279 0.22803347280331457 0.36486262211068027
+0.9457538672772969 0.22594142259410943 0.9457538672772969 0.22594142259410943 0.3606201617966937
+0.9491442505724659 0.22384937238490432 0.949144250572466 0.2238493723849043 0.3556016615095425
+0.9525346338676348 0.2217573221756992 0.9525346338676348 0.2217573221756992 0.34990572838243134
+0.9559250171628038 0.2196652719664941 0.9559250171628036 0.21966527196649413 0.34364984992618947
+0.9593154004579727 0.217573221757289 0.9593154004579727 0.217573221757289 0.33696767108303094
+0.9627057837531416 0.21548117154808388 0.9627057837531418 0.21548117154808386 0.3300056829580631
+0.9660961670483106 0.21338912133887877 0.9660961670483106 0.21338912133887877 0.32291925280515305
+0.9694865503434795 0.21129707112967366 0.9694865503434794 0.2112970711296737 0.3158679470808872
+0.9728769336386485 0.20920502092046855 0.9728769336386485 0.20920502092046855 0.30901015229744894
+0.9762673169338174 0.20711297071126344 0.9762673169338175 0.20711297071126342 0.30249708980564005
+0.9796577002289864 0.20502092050205833 0.9796577002289864 0.20502092050205833 0.2964664511194697
+0.9830480835241553 0.20292887029285323 0.9830480835241552 0.20292887029285325 0.29103603666550787
+0.9864384668193242 0.20083682008364812 0.9864384668193242 0.20083682008364812 0.28629793090269123
+0.9898288501144932 0.198744769874443 0.9898288501144933 0.198744769874443 0.2823138419708458
+0.9932192334096621 0.1966527196652379 0.9932192334096621 0.1966527196652379 0.2791122223313574
+0.2008368200836821 0.9932192334096621 0.2008368200836821 0.9932192334096621 0.15778260761339755
+0.2029288702928871 0.9898288501144933 0.2029288702928871 0.9898288501144933 0.1599329277639501
+0.20502092050209209 0.9864384668193242 0.20502092050209209 0.9864384668193242 0.16236811432139012
+0.20711297071129708 0.9830480835241553 0.20711297071129708 0.9830480835241552 0.16501299044405318
+0.2092050209205021 0.9796577002289864 0.2092050209205021 0.9796577002289864 0.16778701585251385
+0.21129707112970716 0.9762673169338174 0.21129707112970716 0.9762673169338175 0.1706079947249818
+0.2133891213389122 0.9728769336386485 0.21338912133891216 0.9728769336386485 0.1733953648820549
+0.21548117154811725 0.9694865503434795 0.21548117154811727 0.9694865503434794 0.17607297200314473
+0.2175732217573223 0.9660961670483106 0.2175732217573223 0.9660961670483106 0.17857131495686643
+0.21966527196652735 0.9627057837531416 0.21966527196652733 0.9627057837531418 0.180829300533309
+0.2217573221757325 0.9593154004579727 0.2217573221757325 0.9593154004579727 0.18279557121438295
+0.22384937238493766 0.9559250171628038 0.22384937238493766 0.9559250171628036 0.1844294752849798
+0.22594142259414288 0.9525346338676349 0.22594142259414288 0.9525346338676349 0.18570174199949177
+0.22803347280334815 0.9491442505724663 0.22803347280334815 0.9491442505724663 0.1865949115387836
+0.2301255230125533 0.9457538672772975 0.23012552301255332 0.9457538672772975 0.18710355397379488
+0.23221757322175837 0.942363483982129 0.23221757322175837 0.942363483982129 0.18723429552077794
+0.23430962343096326 0.9389731006869607 0.23430962343096326 0.9389731006869607 0.1870056549862008
+0.23640167364016773 0.9355827173917927 0.23640167364016773 0.9355827173917927 0.18644767881755195
+0.23849372384937204 0.9321923340966239 0.23849372384937204 0.9321923340966239 0.18560134987726273
+0.24058577405857587 0.9288019508014552 0.24058577405857587 0.9288019508014552 0.18451773357790005
+0.2426778242677797 0.925411567506286 0.2426778242677797 0.925411567506286 0.18325681673112995
+0.2447698744769843 0.9220211842111167 0.2447698744769843 0.9220211842111167 0.18188599175007267
+0.24686192468619003 0.9186308009159473 0.24686192468619003 0.9186308009159473 0.1804781451296161
+0.24895397489539706 0.9152404176207787 0.24895397489539706 0.9152404176207787 0.17910932848014371
+0.25104602510460583 0.9118500343256112 0.25104602510460583 0.9118500343256112 0.17785602642320894
+0.2531380753138161 0.9084596510304447 0.2531380753138161 0.9084596510304447 0.17679208962774032
+0.2552301255230276 0.90506926773528 0.2552301255230276 0.90506926773528 0.17598546962010023
+0.25732217573224087 0.9016788844401177 0.25732217573224087 0.9016788844401177 0.17549496434989784
+0.2594142259414565 0.898288501144957 0.2594142259414565 0.898288501144957 0.17536724256940528
+0.26150627615067673 0.8948981178498041 0.26150627615067673 0.8948981178498041 0.17563444022250466
+0.2635983263598997 0.8915077345546596 0.2635983263598997 0.8915077345546596 0.1763125963007959
+0.2656903765691239 0.8881173512595403 0.2656903765691239 0.8881173512595403 0.1774011141894711
+0.2677824267783295 0.8847269679644271 0.2677824267783295 0.8847269679644271 0.17888330987081844
+0.2698744769874992 0.8813365846693607 0.2698744769874992 0.8813365846693607 0.18072796823068774
+0.2719665271966541 0.8779462013742437 0.2719665271966541 0.8779462013742437 0.1828917066570578
+0.2740585774057566 0.8745558180791182 0.2740585774057566 0.8745558180791182 0.18532186795764347
+0.2761506276148894 0.8711654347839861 0.27615062761488934 0.8711654347839861 0.18795964347801783
+0.2782426778241472 0.8677750514888422 0.2782426778241472 0.8677750514888422 0.19074315621266932
+0.2803347280335428 0.8643846681937936 0.2803347280335428 0.8643846681937936 0.19361029521603634
+0.2824267782430899 0.8609942848988764 0.28242677824309 0.8609942848988764 0.19650116618421865
+0.2845188284527063 0.8576039016043476 0.2845188284527063 0.8576039016043476 0.19936009191172113
+0.286610878662431 0.8542135183099174 0.286610878662431 0.8542135183099174 0.20213715060354417
+0.2887029288716282 0.8508231350158694 0.28870292887162824 0.8508231350158694 0.20478927663530386
+0.2907949790816847 0.8474327517217786 0.29079497908168467 0.8474327517217786 0.20728096887247452
+0.2928870292920637 0.8440423684277234 0.2928870292920637 0.8440423684277235 0.20958465986809335
+0.29497907950364 0.840651985134295 0.29497907950364 0.840651985134295 0.21168079947866034
+0.29707112971708816 0.837261601843172 0.2970711297170881 0.8372616018431721 0.21355770220343387
+0.29916317993153346 0.8338712185539471 0.29916317993153346 0.8338712185539471 0.21521120163490037
+0.30125523014519406 0.8304808352712595 0.30125523014519406 0.8304808352712595 0.2166441494209694
+0.30334728035484243 0.827090451986694 0.30334728035484243 0.8270904519866938 0.21786579099736655
+0.3054393305494885 0.8237000687101378 0.3054393305494885 0.8237000687101378 0.21889104647969296
+0.3075313807472467 0.8203096854130104 0.3075313807472467 0.8203096854130104 0.2197397224155502
+0.30962343093743916 0.8169193021029085 0.3096234309374392 0.8169193021029085 0.220435678336917
+0.31171548170217217 0.8135289193394918 0.31171548170217217 0.8135289193394918 0.22100597210374887
+0.3138076297142871 0.8101385575117339 0.3138076297142871 0.8101385575117339 0.22148011793823794
+0.31590016124603476 0.8067483790850954 0.31590016124603476 0.8067483790850954 0.22188944066640845
+0.3179931152566303 0.8033582425769162 0.3179931152566304 0.8033582425769162 0.22226551575963807
+0.3200871694424525 0.7999707936461703 0.3200871694424525 0.7999707936461703 0.22264223064777042
+0.32217958523211787 0.7965934402262734 0.32217958523211787 0.7965934402262734 0.22305203512210148
+0.3242688463642183 0.7932327322228175 0.3242688463642183 0.7932327322228175 0.22352639910675468
+0.3263533767469568 0.7899018180002049 0.3263533767469568 0.7899018180002049 0.22409816003414051
+0.3340543805592677 0.778131583046959 0.3340543805592677 0.778131583046959 0.22752404335892967
+0.32842220760529117 0.7866081163591853 0.32842220760529117 0.7866081163591853 0.22477967983907723
+0.3324331252428493 0.7804397103223801 0.33243312524284935 0.78043971032238 0.22656854592487027
+0.33040295099195116 0.7833538963228963 0.3304029509919512 0.7833538963228963 0.22549564629780286
+0.3403375175617416 0.7664575530744536 0.3403375175617416 0.7664575530744536 0.23145928589235165
+0.3390718304283537 0.7700589522175045 0.3390718304283537 0.7700589522175045 0.23086631015927825
+0.33783593200386286 0.7736505766959562 0.33783593200386286 0.7736505766959562 0.23053003513393325
+0.3368621307135964 0.7771367648592679 0.3368621307135964 0.7771367648592679 0.23065423718391817
+0.3438707757135042 0.7658128409673844 0.3438707757135042 0.7658128409673844 0.2359101674495057
+0.34508534127656837 0.7622646346950085 0.34508534127656837 0.7622646346950085 0.23677361237562608
+0.3462785179203967 0.7587254038690872 0.3462785179203967 0.7587254038690872 0.23783868298228802
+0.34750734061618205 0.7551630803359213 0.3475073406161821 0.7551630803359214 0.23917537604765168
+0.34846213258342335 0.7514631041524922 0.34846213258342335 0.7514631041524922 0.24032855643356923
+0.3496772590904411 0.7480789038693916 0.3496772590904411 0.7480789038693915 0.24206489805650425
+0.3511365636134979 0.7446182577623964 0.35113656361349793 0.7446182577623964 0.24430907081938644
+0.35459277888502966 0.7438893181428146 0.35459277888502966 0.7438893181428146 0.24939679650338123
+0.35811539057577463 0.7431030409993785 0.35811539057577463 0.7431030409993785 0.2546272070082407
+0.35930623728354855 0.7394855123191788 0.35930623728354855 0.7394855123191788 0.25698754237211263
+0.3604849316468027 0.7358652210181238 0.3604849316468027 0.7358652210181238 0.2594867460963455
+0.36167431817692197 0.7322577889242706 0.36167431817692197 0.7322577889242706 0.2621209013247206
+0.3687035900802736 0.7205806250287033 0.3687035900802736 0.7205806250287033 0.27662616291921993
+0.3675622651436912 0.7241305413610012 0.3675622651436912 0.7241305413610012 0.27375162114676205
+0.366411141904087 0.7277093076418438 0.366411141904087 0.7277093076418438 0.2708712620315769
+0.36524988325192775 0.731308333759384 0.36524988325192775 0.731308333759384 0.26802056090661414
+0.3731660663990337 0.7161701281505486 0.3731660663990337 0.7161701281505487 0.28562646116268403
+0.3720869275124616 0.7196010464710204 0.3720869275124616 0.7196010464710204 0.28275554136692477
+0.37642677576714356 0.7152427782397046 0.37642677576714356 0.7152427782397046 0.29165561682432345
+0.37950798412236664 0.7100564797731822 0.3795079841223666 0.7100564797731821 0.2988787682452198
+0.37942071349787726 0.713678823659054 0.37942071349787726 0.713678823659054 0.2975229250825699
+0.38431354718158817 0.7046960986105106 0.38431354718158817 0.7046960986105106 0.3091610479975968
+0.38345678865719934 0.708610250068734 0.38345678865719934 0.708610250068734 0.3064043390158866
+0.3886656722629535 0.6999680967765117 0.3886656722629535 0.6999680967765117 0.318484696814934
+0.38776768902989023 0.7036882473936439 0.38776768902989023 0.7036882473936439 0.31576882927925914
+0.4044388224238984 0.6743880883984407 0.40443882242389845 0.6743880883984407 0.3523141473865267
+0.3979441966222726 0.6869611434022507 0.3979441966222726 0.6869611434022507 0.3385158356826347
+0.3920874260696663 0.6990035242170854 0.3920874260696663 0.6990035242170854 0.32501097812012475
+0.3929799427949245 0.695319111706406 0.3929799427949245 0.695319111706406 0.3276269477136386
+0.39381590678247685 0.691670826064275 0.39381590678247685 0.691670826064275 0.32995060304907325
+0.39708057295770444 0.6906601515941467 0.39708057295770444 0.6906601515941467 0.3362183587988213
+0.4010704421822554 0.6858718408612333 0.40107044218225546 0.6858718408612333 0.34445906592068715
+0.40357529989545304 0.6783555988037441 0.403575299895453 0.6783555988037441 0.35026074288944503
+0.40276889683478945 0.6825962717847285 0.4027688968347895 0.6825962717847284 0.34818689321518453
+0.4086714790472477 0.6691258912061416 0.4086714790472477 0.6691258912061416 0.36088576724290555
+0.40794060383364633 0.6728935500993333 0.40794060383364633 0.6728935500993333 0.35898933199753236
+0.41201901506005756 0.6676218590479189 0.41201901506005756 0.6676218590479189 0.3672020020447047
+0.4152868149432165 0.6660762752266914 0.4152868149432165 0.6660762752266914 0.3731822994359156
+0.4184730858414878 0.6644826161682129 0.4184730858414878 0.6644826161682129 0.3788342476381023
+0.4215724918679044 0.6628198306399127 0.4215724918679044 0.6628198306399127 0.38417182012127654
+0.4246137878841413 0.661069018735868 0.42461378788414134 0.661069018735868 0.3892818425570785
+0.42753336554005 0.659420980411998 0.42753336554005 0.659420980411998 0.39397656013352517
+0.4304499118226009 0.6578101347828893 0.4304499118226009 0.6578101347828893 0.39844099265083516
+0.4341110938361909 0.6528345259981299 0.4341110938361909 0.6528345259981299 0.4056834841060272
+0.4335092921405862 0.6563612513650824 0.43350929214058626 0.6563612513650824 0.402690456406865
+0.4317438104715247 0.6386504491157158 0.4317438104715247 0.6386504491157158 0.4147296933655538
+0.42992020865858266 0.6291083917953462 0.42992020865858266 0.6291083917953461 0.42654889974635873
+0.4321141222627336 0.63487768864454 0.4321141222627336 0.63487768864454 0.41985540454201303
+0.43230918381136285 0.6312220024796611 0.4323091838113628 0.6312220024796611 0.4256050752600861
+0.4343514481406369 0.6488889906968397 0.4343514481406369 0.6488889906968397 0.408744490565539
+0.4344649035540506 0.6449290360056364 0.4344649035540506 0.6449290360056364 0.4120048666436951
+0.434577692071223 0.641031367878189 0.434577692071223 0.641031367878189 0.41569638673528436
+0.4192181131184311 0.5818405689757435 0.41921811311843105 0.5818405689757435 0.6562937845540074
+0.4192030777960342 0.5855523248669756 0.4192030777960342 0.5855523248669757 0.6275674039933355
+0.41986082106167877 0.5902444771547772 0.4198608210616788 0.5902444771547772 0.5964243726217181
+0.4205212840227112 0.5876978893392271 0.4205212840227112 0.5876978893392271 0.6201009143861782
+0.42047320935689037 0.5953056686961993 0.42047320935689037 0.5953056686961994 0.5625252095172142
+0.4216816817385278 0.5920006192532815 0.4216816817385278 0.5920006192532815 0.5926305178969714
+0.42282964460182204 0.5972506216069251 0.422829644601822 0.597250621606925 0.5575290987574909
+0.42250406272101654 0.6011378091508724 0.4225040627210165 0.6011378091508724 0.5298330217181965
+0.4240050379179045 0.6042416115346659 0.4240050379179045 0.6042416115346659 0.5137775674941291
+0.42416220926618386 0.6100529199553745 0.42416220926618386 0.6100529199553745 0.4822464789807759
+0.4256646774631058 0.6068344889661897 0.4256646774631058 0.6068344889661897 0.5016606709842838
+0.4268874102247995 0.6126470980066546 0.42688741022479954 0.6126470980066546 0.4739642747444757
+0.4261336235552439 0.6166302471938704 0.4261336235552439 0.6166302471938704 0.45657785169178416
+0.4285604984527934 0.6184131691333241 0.4285604984527934 0.6184131691333241 0.45291836641531386
+0.430100559768483 0.6256845514349318 0.430100559768483 0.625684551434932 0.43400965047606127
+0.42998688501741034 0.6214328506331089 0.4299868850174104 0.6214328506331089 0.4449860525450645
+0.4235549705938859 0.5804499956024628 0.4235549705938859 0.5804499956024628 0.7070383081651145
+0.4276863803850288 0.5790496877288281 0.4276863803850288 0.5790496877288281 0.7580675449538204
+0.6029874840105036 0.44881175265901185 0.6029874840105035 0.44881175265901174 0.6030248346716135
+0.6064066066127602 0.4496621010034934 0.6064066066127602 0.4496621010034934 0.556499535777503
+0.6107999957351994 0.4516019937968247 0.6107999957351994 0.4516019937968247 0.4902433128499495
+0.6080529460802244 0.4516034774206134 0.6080529460802244 0.4516034774206134 0.5139826092929226
+0.6118646912107132 0.4539330888510343 0.6118646912107132 0.4539330888510343 0.4512563746011871
+0.6004263433942862 0.45287476781131686 0.6004263433942861 0.4528747678113168 0.568664746788312
+0.5979623827075341 0.4566739592689099 0.5979623827075341 0.4566739592689099 0.5360097622123133
+0.628007597053012 0.43950965788294016 0.628007597053012 0.4395096578829402 0.5017224180527387
+0.6256177659613374 0.4427496397979547 0.6256177659613374 0.4427496397979547 0.4827069532383595
+0.6315176629079421 0.4405688911999122 0.6315176629079421 0.4405688911999122 0.4654556128820406
+0.6200321377593356 0.448372422211814 0.6200321377593356 0.448372422211814 0.45721771175932274
+0.6227858234489708 0.44562861067314347 0.6227858234489708 0.44562861067314347 0.46986727515646115
+0.6152315355622091 0.4540408030644062 0.6152315355622092 0.45404080306440614 0.4239906379838292
+0.6185185511786515 0.45332875783876436 0.6185185511786515 0.4533287578387643 0.40812790439625807
+0.6206589974466707 0.4511754328871359 0.6206589974466707 0.45117543288713596 0.41846067300668016
+0.6345995481385839 0.44115473593601756 0.6345995481385839 0.44115473593601756 0.43891349770218463
+0.656860317288008 0.42474086059098604 0.656860317288008 0.424740860590986 0.45899324608923603
+0.6371932560225014 0.43864732745165297 0.6371932560225014 0.43864732745165297 0.4487870394297226
+0.650217056461778 0.4242840292060216 0.650217056461778 0.42428402920602165 0.4997724911709483
+0.6534564545732473 0.42467536311771753 0.6534564545732473 0.42467536311771753 0.47819317171018527
+0.6475671035425183 0.42723418562800297 0.6475671035425182 0.427234185628003 0.4915977848658239
+0.6450175427309773 0.4302324945465132 0.6450175427309773 0.4302324945465132 0.48117052863498916
+0.6423976323735846 0.4331507211139161 0.6423976323735846 0.4331507211139161 0.47053595209400934
+0.6397861762488015 0.43596121001799926 0.6397861762488014 0.43596121001799926 0.4596351943431523
+0.660098562509182 0.42538600032801915 0.660098562509182 0.42538600032801915 0.43737074794655
+0.7074931256878457 0.38455241657796974 0.7074931256878457 0.38455241657796974 0.44228513964888544
+0.6953028561013784 0.38780759697845824 0.6953028561013784 0.38780759697845824 0.47087672455548174
+0.6920856262228388 0.3899752334631443 0.6920856262228386 0.3899752334631442 0.4749775595213301
+0.6898703858773896 0.3931272048261122 0.6898703858773896 0.39312720482611224 0.47145932046434175
+0.6844709570172248 0.398424864248542 0.6844709570172248 0.398424864248542 0.4724624788812177
+0.6872121550357763 0.3958381037788752 0.6872121550357763 0.3958381037788752 0.47148183789015913
+0.7013736833748835 0.3861856375478729 0.7013736833748835 0.3861856375478729 0.45548756219734726
+0.6986099891778972 0.3888194564981718 0.6986099891778972 0.3888194564981718 0.45494587260898606
+0.7047432804633068 0.38720371126202274 0.7047432804633068 0.38720371126202274 0.4406181723448129
+0.6848771906168186 0.40172995641205095 0.6848771906168186 0.40172995641205095 0.4560093874822763
+0.6820961943920347 0.40437202224557844 0.6820961943920346 0.4043720222455784 0.4560468511338636
+0.6791423669397745 0.407063126328814 0.6791423669397744 0.407063126328814 0.456421953048987
+0.6763078456724366 0.4097629883326121 0.6763078456724366 0.4097629883326121 0.4557978877019285
+0.6735390827344735 0.41242578451544354 0.6735390827344735 0.41242578451544354 0.45452529881555587
+0.6626997067626947 0.4228560624865889 0.6626997067626946 0.42285606248658886 0.4424880517502299
+0.6653734136333069 0.4202622175558267 0.6653734136333069 0.42026221755582677 0.44680882817378187
+0.6707987768018175 0.41506016745747387 0.6707987768018175 0.4150601674574739 0.45264728337192445
+0.668075648706511 0.4176723371207916 0.668075648706511 0.4176723371207916 0.4501031654944752
+0.7197088813588233 0.38111101477234766 0.7197088813588232 0.3811110147723476 0.42271137392743335
+0.713673451398061 0.38287335123452554 0.713673451398061 0.38287335123452554 0.4312604787633547
+0.7170245886727233 0.3837075718847958 0.7170245886727233 0.3837075718847958 0.41947683762184446
+0.7109189585980437 0.385533914295816 0.7109189585980437 0.385533914295816 0.42864843129599756
+0.7231535823537106 0.3819017230005383 0.7231535823537106 0.3819017230005383 0.41174907003429045
+0.7259702925500785 0.3794461522596129 0.7259702925500785 0.3794461522596129 0.4146425975238231
+0.7288078511259415 0.37698296952120464 0.7288078511259415 0.37698296952120464 0.41755187185608716
+0.7316635657693334 0.3745166799482411 0.7316635657693334 0.3745166799482411 0.42037955016575795
+0.7345380776666266 0.37203561932963575 0.7345380776666266 0.37203561932963575 0.4230810552164619
+0.7374430957072766 0.3695242443904048 0.7374430957072766 0.3695242443904048 0.42559540338306484
+0.7403513193384876 0.36698219756336625 0.7403513193384876 0.36698219756336625 0.4278855020801087
+0.7431840579010156 0.36443705323425685 0.7431840579010157 0.36443705323425685 0.4299506404390004
+0.7455648448364977 0.3617464686813631 0.7455648448364977 0.3617464686813631 0.43289781381893094
+0.7484844958332452 0.3618794788029349 0.7484844958332452 0.3618794788029349 0.4261306148362835
+0.7507763400487235 0.36007521616958543 0.7507763400487235 0.36007521616958543 0.42622974618614334
+0.7538402384146978 0.3548020801211284 0.7538402384146979 0.35480208012112835 0.4336570873002627
+0.7530736498890884 0.35825137992303024 0.7530736498890884 0.35825137992303024 0.42615109727168915
+0.7572062758052448 0.35472823714228313 0.7572062758052448 0.35472823714228313 0.42583580213624
+0.7598018639484824 0.3527485056211318 0.7598018639484824 0.35274850562113175 0.4246043209447454
+0.7624145319458928 0.35038239899691537 0.7624145319458928 0.3503823989969153 0.4238606972108629
+0.7650424148597079 0.3478762763127652 0.7650424148597078 0.3478762763127652 0.4230009067014075
+0.7678375661281689 0.34530315452561816 0.7678375661281689 0.34530315452561816 0.4214833954896946
+0.7707260096918583 0.3426786173154852 0.7707260096918583 0.3426786173154852 0.41949950055445523
+0.7737059688156437 0.3400983646099791 0.7737059688156437 0.3400983646099791 0.41695308099456524
+0.7769878332719206 0.337576300250978 0.7769878332719207 0.33757630025097807 0.4134315884016418
+0.7790521862402007 0.33430333436674764 0.7790521862402007 0.33430333436674764 0.41395514663308136
+0.7806012047062052 0.3317781256184079 0.7806012047062052 0.3317781256184079 0.4142548880639946
+0.7834459254664049 0.3306122337428345 0.7834459254664049 0.3306122337428345 0.4095078799204935
+0.7866780566282721 0.3283963722132296 0.7866780566282721 0.32839637221322965 0.4057322262660272
+0.7899188586515302 0.3263159124966816 0.7899188586515303 0.3263159124966816 0.401915338341763
+0.793253288444264 0.3242495856416549 0.793253288444264 0.3242495856416549 0.39817402728956547
+0.7966065521768386 0.32219161247966066 0.7966065521768386 0.32219161247966066 0.3947043406832919
+0.7999808403740488 0.32009249334994866 0.7999808403740488 0.32009249334994866 0.3915890358056678
+0.8033624180420108 0.3179963507647899 0.8033624180420108 0.3179963507647899 0.38876712766590676
+0.8067492937872859 0.31590107921562205 0.8067492937872859 0.31590107921562205 0.3862033582060082
+0.8101386540394024 0.31380771963092596 0.8101386540394024 0.31380771963092596 0.3838418738607996
+0.8135289248985828 0.31171549090859596 0.8135289248985828 0.31171549090859596 0.38161464514858906
+0.8169193020608794 0.30962343096231204 0.8169193020608795 0.30962343096231204 0.37944504218879255
+0.8203096853560482 0.30753138075310776 0.8203096853560482 0.30753138075310776 0.3772521076066935
+0.8237000686512164 0.30543933054390343 0.8237000686512165 0.30543933054390343 0.37495816267722354
+0.827090451946385 0.3033472803346988 0.827090451946385 0.3033472803346988 0.37249441162795854
+0.8304808352415533 0.30125523012549377 0.8304808352415533 0.30125523012549377 0.369805685823596
+0.8338712185367217 0.29916317991628866 0.8338712185367217 0.29916317991628866 0.3668544665703499
+0.8372616018318905 0.29707112970708344 0.8372616018318905 0.29707112970708344 0.36362408154884623
+0.8406519851270592 0.2949790794978781 0.8406519851270592 0.2949790794978781 0.36012097815524285
+0.8440423684222282 0.2928870292886729 0.8440423684222281 0.2928870292886729 0.3563759912163312
+0.8474327517173973 0.29079497907946766 0.8474327517173973 0.29079497907946766 0.3524445202131499
+0.8508231350125665 0.28870292887026255 0.8508231350125665 0.28870292887026255 0.34840551920623003
+0.8542135183077356 0.28661087866105744 0.8542135183077356 0.28661087866105744 0.3443591919608691
+0.8576039016029045 0.28451882845185233 0.8576039016029045 0.28451882845185233 0.34042329011009503
+0.8609942848980733 0.28242677824264734 0.8609942848980733 0.28242677824264734 0.336727951379995
+0.8643846681932423 0.2803347280334423 0.8643846681932423 0.2803347280334423 0.33340910566543996
+0.8677750514884113 0.2782426778242371 0.8677750514884114 0.2782426778242371 0.3306006302212295
+0.8711654347835801 0.27615062761503206 0.8711654347835801 0.27615062761503206 0.3284256462848738
+0.874555818078749 0.2740585774058269 0.874555818078749 0.2740585774058269 0.3269875870137406
+0.8779462013739181 0.27196652719662184 0.8779462013739181 0.27196652719662184 0.32636187092154484
+0.881336584669087 0.26987447698741673 0.8813365846690872 0.2698744769874168 0.32658910932618995
+0.884726967964256 0.2677824267782116 0.884726967964256 0.2677824267782116 0.32767069558269907
+0.8881173512594248 0.26569037656900646 0.8881173512594248 0.26569037656900646 0.329567349938054
+0.8915077345545939 0.2635983263598014 0.8915077345545939 0.2635983263598014 0.33220077682342053
+0.8948981178497628 0.2615062761505963 0.8948981178497629 0.26150627615059635 0.33545813852510215
+0.8982885011449318 0.2594142259413912 0.8982885011449318 0.2594142259413912 0.33919868208959786
+0.9016788844401007 0.2573221757321861 0.9016788844401006 0.257322175732186 0.3432616602236382
+0.9050692677352696 0.25523012552298097 0.9050692677352696 0.25523012552298097 0.3474746811039218
+0.9084596510304386 0.25313807531377586 0.9084596510304387 0.2531380753137759 0.35166176493202356
+0.9118500343256075 0.25104602510457075 0.9118500343256075 0.25104602510457075 0.3556506045441737
+0.9152404176207765 0.24895397489536564 0.9152404176207763 0.2489539748953656 0.3592787538537514
+0.9186308009159454 0.24686192468616053 0.9186308009159454 0.24686192468616053 0.3623986550133614
+0.9220211842111143 0.24476987447695542 0.9220211842111145 0.24476987447695545 0.36488154392013955
+0.9254115675062833 0.2426778242677503 0.9254115675062833 0.2426778242677503 0.3666203456779841
+0.9288019508014522 0.2405857740585452 0.9288019508014521 0.24058577405854517 0.36753169920987466
+0.9321923340966212 0.2384937238493401 0.9321923340966212 0.2384937238493401 0.36755724830313735
+0.9355827173917901 0.23640167364013498 0.9355827173917902 0.236401673640135 0.3666643178037077
+0.938973100686959 0.23430962343092987 0.938973100686959 0.23430962343092987 0.364846067501396
+0.942363483982128 0.23221757322172476 0.9423634839821279 0.23221757322172473 0.36212118784058095
+0.9457538672772969 0.23012552301251965 0.9457538672772969 0.23012552301251965 0.35853317354272757
+0.9491442505724659 0.22803347280331454 0.949144250572466 0.22803347280331457 0.35414918442211785
+0.9525346338676348 0.22594142259410943 0.9525346338676348 0.22594142259410943 0.3490584772847209
+0.9559250171628038 0.22384937238490432 0.9559250171628036 0.2238493723849043 0.34337036916748365
+0.9593154004579727 0.2217573221756992 0.9593154004579727 0.2217573221756992 0.3372116716495404
+0.9627057837531416 0.2196652719664941 0.9627057837531418 0.21966527196649413 0.3307235216881467
+0.9660961670483106 0.217573221757289 0.9660961670483106 0.217573221757289 0.3240575319778416
+0.9694865503434795 0.21548117154808388 0.9694865503434794 0.21548117154808386 0.31737120138475317
+0.9728769336386485 0.21338912133887877 0.9728769336386485 0.21338912133887877 0.3108225734441819
+0.9762673169338174 0.21129707112967366 0.9762673169338175 0.2112970711296737 0.30456421702571296
+0.9796577002289864 0.20920502092046855 0.9796577002289864 0.20920502092046855 0.2987367306726499
+0.9830480835241553 0.20711297071126344 0.9830480835241552 0.20711297071126342 0.2934621304398954
+0.9864384668193242 0.20502092050205833 0.9864384668193242 0.20502092050205833 0.2888376412635816
+0.9898288501144932 0.20292887029285323 0.9898288501144933 0.20292887029285325 0.2849305267046549
+0.9932192334096621 0.20083682008364812 0.9932192334096621 0.20083682008364812 0.28177460701939777
+0.20502092050209209 0.9932192334096621 0.20502092050209209 0.9932192334096621 0.15989415547419175
+0.2071129707112971 0.9898288501144932 0.2071129707112971 0.9898288501144933 0.16195313358371102
+0.20920502092050217 0.9864384668193242 0.20920502092050217 0.9864384668193242 0.16429224440716242
+0.2112970711297072 0.9830480835241553 0.21129707112970716 0.9830480835241552 0.16683602187709368
+0.21338912133891225 0.9796577002289864 0.21338912133891227 0.9796577002289864 0.1695041880064834
+0.2154811715481173 0.9762673169338174 0.2154811715481173 0.9762673169338175 0.17221538910331513
+0.2175732217573223 0.9728769336386485 0.2175732217573223 0.9728769336386485 0.17489048369751403
+0.21966527196652735 0.9694865503434795 0.21966527196652733 0.9694865503434794 0.17745529247779498
+0.2217573221757324 0.9660961670483106 0.22175732217573244 0.9660961670483106 0.17984280168627054
+0.22384937238493752 0.9627057837531418 0.22384937238493752 0.9627057837531418 0.18199486198844697
+0.22594142259414263 0.9593154004579728 0.2259414225941426 0.9593154004579728 0.1838634485732755
+0.22803347280334776 0.9559250171628041 0.22803347280334776 0.9559250171628041 0.18541155252403538
+0.23012552301255298 0.9525346338676354 0.23012552301255298 0.9525346338676354 0.18661376580492942
+0.23221757322175807 0.9491442505724667 0.23221757322175804 0.9491442505724667 0.18745660837106204
+0.23430962343096295 0.9457538672772978 0.23430962343096295 0.9457538672772978 0.18793862976757866
+0.23640167364016773 0.9423634839821293 0.23640167364016773 0.9423634839821293 0.1880703013021762
+0.2384937238493723 0.9389731006869607 0.2384937238493723 0.9389731006869607 0.1878736995296378
+0.24058577405857662 0.9355827173917916 0.24058577405857662 0.9355827173917916 0.18738196795503304
+0.24267782426778103 0.9321923340966226 0.24267782426778103 0.9321923340966226 0.18663853213476456
+0.24476987447698564 0.9288019508014534 0.24476987447698564 0.9288019508014534 0.18569603474606497
+0.24686192468619092 0.9254115675062842 0.24686192468619092 0.9254115675062842 0.18461495342809878
+0.24895397489539692 0.9220211842111152 0.24895397489539692 0.9220211842111151 0.18346186779034904
+0.25104602510460405 0.9186308009159466 0.25104602510460405 0.9186308009159466 0.18230735601072048
+0.2531380753138121 0.915240417620779 0.2531380753138121 0.915240417620779 0.18122352879627157
+0.2552301255230209 0.9118500343256121 0.2552301255230209 0.9118500343256121 0.18028125051699564
+0.2573221757322309 0.9084596510304466 0.2573221757322309 0.9084596510304465 0.17954715208482108
+0.25941422594144203 0.9050692677352822 0.25941422594144203 0.9050692677352822 0.17908060067280698
+0.2615062761506555 0.9016788844401225 0.2615062761506555 0.9016788844401225 0.17893084519936786
+0.2635983263598701 0.8982885011449673 0.2635983263598702 0.8982885011449673 0.17913458755794087
+0.26569037656908473 0.8948981178498253 0.26569037656908473 0.8948981178498253 0.1797142228190796
+0.2677824267782893 0.8915077345546866 0.2677824267782893 0.8915077345546866 0.18067693941035093
+0.2698744769874739 0.8881173512595724 0.2698744769874739 0.8881173512595723 0.18201477742023323
+0.2719665271966502 0.8847269679644304 0.2719665271966502 0.8847269679644304 0.18370562763549872
+0.27405857740579714 0.8813365846692824 0.27405857740579714 0.8813365846692826 0.18571504159928096
+0.27615062761495784 0.8779462013741283 0.27615062761495784 0.8779462013741283 0.1879986386318219
+0.2782426778241822 0.8745558180789647 0.2782426778241822 0.8745558180789647 0.19050485453705301
+0.28033472803347886 0.8711654347838453 0.28033472803347886 0.8711654347838454 0.19317778030625268
+0.2824267782428575 0.8677750514887901 0.2824267782428575 0.8677750514887901 0.19595987765221182
+0.2845188284522821 0.8643846681939268 0.2845188284522821 0.8643846681939268 0.19879441592804944
+0.28661087866177243 0.8609942848991192 0.28661087866177243 0.8609942848991192 0.20162753641923895
+0.2887029288710233 0.857603901604501 0.2887029288710233 0.8576039016045008 0.20440990394408834
+0.29079497908070356 0.8542135183098919 0.29079497908070356 0.8542135183098919 0.2070979464958103
+0.2928870292905639 0.8508231350153205 0.2928870292905639 0.8508231350153205 0.20965471031277652
+0.29497907950103236 0.8474327517210902 0.29497907950103236 0.8474327517210902 0.2120503722721244
+0.29707112971242855 0.8440423684280466 0.2970711297124286 0.8440423684280466 0.21426245701795613
+0.2991631799242823 0.840651985135986 0.29916317992428226 0.840651985135986 0.21627580606634353
+0.3012552301356282 0.8372616018472874 0.3012552301356282 0.8372616018472874 0.21808234290833592
+0.3033472803448745 0.8338712185575909 0.3033472803448745 0.8338712185575909 0.21968067375641828
+0.30543933054627004 0.8304808352719628 0.3054393305462701 0.8304808352719629 0.22107555923166503
+0.30753138074940195 0.8270904519755907 0.30753138074940195 0.8270904519755907 0.2222772885358659
+0.3096234309479484 0.823700068672462 0.3096234309479484 0.823700068672462 0.22330098459767544
+0.31171548115065556 0.8203096853636017 0.31171548115065556 0.8203096853636017 0.22416586649885986
+0.31380753137196266 0.8169193020520522 0.31380753137196266 0.8169193020520522 0.2248944933213788
+0.31589958369585136 0.8135289208970901 0.31589958369585136 0.8135289208970901 0.22551201487258862
+0.31799179157948526 0.8101386064515405 0.31799179157948526 0.8101386064515405 0.22604563653999568
+0.32008456192889007 0.8067489284439785 0.32008456192889007 0.8067489284439785 0.22652431461901038
+0.3221781461232755 0.8033615127929917 0.3221781461232755 0.8033615127929917 0.22697810115604236
+0.3242717512562841 0.7999810047550548 0.3242717512562841 0.7999810047550548 0.2274378040675935
+0.3263646852565538 0.7966138480254424 0.3263646852565538 0.7966138480254424 0.2279346241779732
+0.32845718328482076 0.7932667147400001 0.3284571832848208 0.7932667147400001 0.22849949064040834
+0.33055361678242234 0.7899437306270793 0.33055361678242234 0.7899437306270793 0.22916348506077053
+0.33579755695318125 0.7803641601448326 0.33579755695318125 0.7803641601448326 0.23074658092194103
+0.3326861346306216 0.7866486049217551 0.3326861346306216 0.786648604921755 0.22998444218520678
+0.33438848604741406 0.7834242115180415 0.33438848604741406 0.7834242115180415 0.230438424383724
+0.3426468878635757 0.7693594948149616 0.3426468878635757 0.7693594948149616 0.23525766154406288
+0.34145096646750517 0.7728774871468258 0.34145096646750517 0.7728774871468258 0.2348471230939051
+0.3403323773891735 0.776334824516923 0.3403323773891735 0.776334824516923 0.23470685560436558
+0.3392475083947 0.7797336687812758 0.3392475083947 0.7797336687812758 0.23475938202206806
+0.34739176103027686 0.7651520369292527 0.34739176103027686 0.7651520369292527 0.24035150372264805
+0.34619272402741696 0.7686891846150696 0.34619272402741696 0.7686891846150696 0.23962761783647082
+0.3485827788645796 0.7615961730018292 0.3485827788645796 0.7615961730018292 0.24128930019804676
+0.34975148672053535 0.7580201271951087 0.34975148672053535 0.7580201271951087 0.24242659154945437
+0.3509315364722829 0.7544483935467503 0.3509315364722829 0.7544483935467503 0.24380657303698983
+0.3520873858585531 0.750895702709271 0.3520873858585531 0.750895702709271 0.24538433935202694
+0.35332951441205435 0.747405529036952 0.35332951441205435 0.747405529036952 0.24727680426001217
+0.35685950196782007 0.7466954373166771 0.35685950196782007 0.7466954373166771 0.2523572736278734
+0.3604608197128332 0.7459318223336178 0.3604608197128332 0.7459318223336178 0.25757602046150424
+0.3616965604210119 0.7422564635776149 0.3616965604210119 0.7422564635776149 0.25998607433252174
+0.3629005102330937 0.7385765634149618 0.3629005102330937 0.7385765634149618 0.2625545168341836
+0.3640807326119449 0.7349276789162594 0.3640807326119449 0.7349276789162594 0.26523880967133956
+0.3709973976232878 0.7231236489044348 0.3709973976232878 0.7231236489044348 0.2798228133566903
+0.3698958183871568 0.726693907428244 0.3698958183871568 0.726693907428244 0.27686244174785396
+0.3687808942115678 0.7302932544298243 0.3687808942115678 0.7302932544298243 0.2739134774780996
+0.36765222579955786 0.7339190628145046 0.36765222579955786 0.7339190628145046 0.2710150940683241
+0.37542223154488913 0.7185580165002404 0.37542223154488913 0.7185580165002404 0.2888392295152063
+0.3743837879469374 0.7220629823898154 0.3743837879469374 0.7220629823898154 0.28585799277987345
+0.3787377422258663 0.7173252713019014 0.37873774222586626 0.7173252713019015 0.2949977357437366
+0.3825689550958482 0.7124222425201573 0.3825689550958482 0.7124222425201573 0.30349371596740227
+0.38186010177737656 0.7161140787015051 0.38186010177737656 0.7161140787015051 0.30079114593469564
+0.386900902410416 0.70742913635497 0.386900902410416 0.70742913635497 0.3129319475118162
+0.38603511167064614 0.7111713291113129 0.38603511167064614 0.7111713291113128 0.3099570402069421
+0.3911809707862391 0.7027040687319622 0.3911809707862391 0.7027040687319622 0.322185793802451
+0.39030615771818383 0.7064235359656387 0.39030615771818383 0.7064235359656387 0.31923255563642056
+0.40722115663812525 0.6767266399132708 0.40722115663812525 0.6767266399132708 0.35708452226253345
+0.39456260017680234 0.701725537199577 0.39456260017680234 0.701725537199577 0.3283927846824138
+0.4038770976712055 0.6857333379537721 0.4038770976712055 0.6857333379537721 0.3493210141078949
+0.40020833197242106 0.6895950566157182 0.40020833197242106 0.6895950566157182 0.3420712349155897
+0.39554599674969404 0.698052975097097 0.3955459967496941 0.698052975097097 0.33143530832685486
+0.3963719560314943 0.6943890628558481 0.3963719560314943 0.6943890628558481 0.33402454796452963
+0.39945261802689463 0.6933063396123411 0.39945261802689463 0.6933063396123411 0.3397288219646469
+0.4031755298582177 0.6886274133018717 0.40317552985821775 0.6886274133018717 0.3473768523788654
+0.4065618402051296 0.6805523507514044 0.4065618402051296 0.6805523507514044 0.3551977042639814
+0.4062848106492067 0.6840730169368632 0.4062848106492067 0.6840730169368632 0.3538732014583572
+0.4113535780401816 0.6713633694793028 0.4113535780401816 0.6713633694793028 0.3652989519759015
+0.4107014850178066 0.6751448641805338 0.4107014850178066 0.6751448641805338 0.3634052598335052
+0.41468597300735377 0.6698019016084777 0.41468597300735377 0.6698019016084777 0.37125587330349963
+0.41794172751352415 0.6681990398613795 0.41794172751352415 0.6681990398613795 0.376874085589839
+0.42111215855529904 0.6665340083113648 0.42111215855529904 0.6665340083113648 0.38215853603625755
+0.4242222383447158 0.6648352495846221 0.4242222383447158 0.6648352495846223 0.3871537469725013
+0.42725911425094193 0.6631163994458944 0.42725911425094193 0.6631163994458945 0.39183159039812826
+0.4301322496528654 0.6614134148489909 0.4301322496528654 0.6614134148489909 0.396090518019909
+0.43290024152369155 0.6597290975554859 0.4329002415236916 0.6597290975554859 0.4000203704453225
+0.4354797672909995 0.6586635765189255 0.43547976729099946 0.6586635765189255 0.4031036533446091
+0.43754690705649596 0.6514493255084766 0.43754690705649596 0.6514493255084766 0.4102173877664104
+0.43732350818576604 0.6559490068920943 0.43732350818576604 0.6559490068920945 0.4067908096848453
+0.43481341951751973 0.6371505746946735 0.4348134195175197 0.6371505746946734 0.42018855338911854
+0.43270731704927123 0.6277064862641696 0.4327073170492712 0.6277064862641696 0.432448059222232
+0.434705003436307 0.6298327958747769 0.434705003436307 0.6298327958747769 0.4304462504910834
+0.4354291967665097 0.633144400378554 0.43542919676650976 0.633144400378554 0.42612438823015275
+0.43750670593075996 0.6472876875111537 0.43750670593075996 0.6472876875111537 0.41338173078054824
+0.4375418265876119 0.6433564873420154 0.4375418265876119 0.6433564873420154 0.4167645151693861
+0.4376474639455748 0.6395676926324486 0.4376474639455748 0.6395676926324486 0.4205350748331917
+0.4226920291136783 0.5850885103973706 0.42269202911367826 0.5850885103973705 0.6573979791828846
+0.42282024065610235 0.5888022429608755 0.42282024065610235 0.5888022429608756 0.6249193929101456
+0.4235499888731636 0.5937995178144814 0.4235499888731636 0.5937995178144814 0.5865900357661004
+0.4241624241042019 0.5909657832806815 0.4241624241042019 0.5909657832806815 0.6128912490796372
+0.4252159748530388 0.5985073486702731 0.4252159748530388 0.5985073486702731 0.5553738574563035
+0.4256211033178014 0.5953254695178466 0.4256211033178014 0.5953254695178466 0.5814574873490764
+0.42557184283682226 0.6014678932279369 0.42557184283682226 0.6014678932279369 0.5350308768282585
+0.42636819709563417 0.603893607210085 0.4263681970956342 0.603893607210085 0.5204510327719873
+0.4271990030206413 0.5992943569595034 0.4271990030206413 0.5992943569595034 0.5539840311263352
+0.4276955331095409 0.608858187285006 0.4276955331095409 0.608858187285006 0.4934920263135731
+0.4285673911074315 0.6052117699721425 0.4285673911074315 0.6052117699721425 0.5154876250285892
+0.42982581531116715 0.6112705799973692 0.42982581531116715 0.6112705799973693 0.48347107572851344
+0.42973064828155244 0.615163629908027 0.4297306482815525 0.615163629908027 0.46626108903292474
+0.4310549524685049 0.6181714416892368 0.4310549524685049 0.6181714416892368 0.4561262333351371
+0.4321488310193923 0.6130628055932492 0.4321488310193923 0.6130628055932492 0.4766856480600266
+0.43307396287845523 0.6239022723358053 0.4330739628784553 0.6239022723358053 0.4412633456112935
+0.43349187737248496 0.6198997025766247 0.43349187737248496 0.6198997025766247 0.4525570295919183
+0.4269497750288644 0.5835222668014594 0.4269497750288644 0.5835222668014594 0.7016211954823061
+0.43101229168517036 0.5819754546991934 0.43101229168517036 0.5819754546991934 0.7449251847115638
+0.6050485019117001 0.45309635388086483 0.6050485019117001 0.4530963538808649 0.5207880599393243
+0.6083816656174521 0.4541041212873127 0.6083816656174522 0.4541041212873127 0.4777088347183483
+0.6126331265023912 0.45639137127658974 0.6126331265023913 0.45639137127658974 0.41580037430390693
+0.6152239120484889 0.45677533788040625 0.6152239120484889 0.45677533788040625 0.39224666462293156
+0.6099247354287931 0.45615240741344454 0.6099247354287931 0.45615240741344454 0.43916059909441946
+0.6134491199939592 0.458796238368637 0.6134491199939592 0.458796238368637 0.3835567387651752
+0.6022912358631356 0.4570763147858874 0.6022912358631355 0.4570763147858874 0.4908815980146875
+0.599670605664019 0.4607671884061106 0.599670605664019 0.4607671884061106 0.4684516802930836
+0.6288625537283152 0.4432728022013711 0.6288625537283153 0.44327280220137105 0.45357590884982374
+0.62619180351006 0.4461656884520096 0.6261918035100599 0.4461656884520096 0.4389289799192279
+0.6323567908081964 0.44371801245183007 0.6323567908081964 0.4437180124518301 0.4254810536158334
+0.6236973493416488 0.4492856275536051 0.6236973493416488 0.4492856275536052 0.4195533499295557
+0.6269745758569187 0.44906691846639185 0.6269745758569187 0.44906691846639185 0.39986157127373
+0.6164961013192028 0.4585360814354771 0.6164961013192028 0.4585360814354771 0.3650755089930868
+0.6179105581264526 0.455904019208734 0.6179105581264527 0.455904019208734 0.3828645200447191
+0.6206628457141096 0.45431830192611594 0.6206628457141096 0.45431830192611594 0.38172090909814904
+0.6230008459299741 0.45241106648314683 0.6230008459299741 0.45241106648314683 0.38765218823884645
+0.6352950654857306 0.4438286142699653 0.6352950654857306 0.4438286142699653 0.4058061030471742
+0.6378325272145375 0.4419843239064161 0.6378325272145374 0.4419843239064161 0.41022952546890606
+0.6576001731456715 0.4279309058471257 0.6576001731456715 0.4279309058471257 0.43072050098136033
+0.6548709848434464 0.427033926236512 0.6548709848434464 0.427033926236512 0.45193423293603274
+0.6404124345871907 0.4395347411579829 0.6404124345871907 0.4395347411579829 0.42029372862119624
+0.6516360618995269 0.4278050833485341 0.651636061899527 0.4278050833485341 0.4636065257476139
+0.6485803644609556 0.43098417230701225 0.6485803644609556 0.43098417230701225 0.4539226719089578
+0.6458060767988085 0.4339497612298999 0.6458060767988085 0.43394976122989987 0.44310407890377607
+0.6430808124666799 0.43680724980418645 0.6430808124666799 0.43680724980418645 0.4317808685760605
+0.6607276101335906 0.4285817458132001 0.6607276101335905 0.4285817458132 0.41019684507899673
+0.6633958820396334 0.4260561310953456 0.6633958820396334 0.4260561310953456 0.4162152900695076
+0.7081382523085487 0.3882357772448077 0.7081382523085487 0.3882357772448077 0.42622441847194087
+0.6957690937915915 0.39135662472836774 0.6957690937915916 0.39135662472836774 0.4553665463284123
+0.6930519694960869 0.39398379298837 0.6930519694960869 0.39398379298837 0.45519953358655413
+0.6904416714133206 0.3966841388362454 0.6904416714133205 0.3966841388362454 0.4544551648904939
+0.6876966500690666 0.3992869275736155 0.6876966500690666 0.3992869275736155 0.4547055874930362
+0.6881912573748556 0.4027382483297822 0.6881912573748555 0.4027382483297823 0.4372268067659469
+0.7019771807427689 0.3898497447733938 0.7019771807427689 0.3898497447733938 0.4393346238718525
+0.6991936211736595 0.3924629191478359 0.6991936211736595 0.3924629191478359 0.43852447765092145
+0.7053722429704358 0.3908904867821173 0.7053722429704358 0.3908904867821173 0.42423303379135385
+0.6854443103522552 0.4052811959230347 0.6854443103522553 0.4052811959230347 0.43698678474523317
+0.6827193868580216 0.4079225432304618 0.6827193868580216 0.4079225432304618 0.43594791288437046
+0.6799527624158891 0.41057938547363343 0.6799527624158891 0.41057938547363343 0.4346721335328993
+0.6771748795042036 0.4132111343815774 0.6771748795042036 0.4132111343815774 0.43309588202638
+0.6743955212689491 0.4158224926896253 0.6743955212689491 0.4158224926896253 0.43105350114004803
+0.6660962137132729 0.4235172544885263 0.6660962137132729 0.42351725448852623 0.4212694709998975
+0.6688539316948879 0.4209734073832771 0.6688539316948879 0.4209734073832771 0.4252277160785254
+0.6716190617831556 0.4184096715052705 0.6716190617831556 0.4184096715052705 0.428468632822325
+0.7203490586105464 0.38444442556627934 0.7203490586105464 0.38444442556627934 0.4085998333115119
+0.7144398988902537 0.3863989848324803 0.7144398988902537 0.3863989848324803 0.41577161111410027
+0.7176695855707107 0.38704484728087496 0.7176695855707108 0.38704484728087496 0.40507110385831896
+0.7116164384163799 0.389128139847611 0.7116164384163799 0.389128139847611 0.41276882651634034
+0.7237844391767979 0.3851577882219166 0.7237844391767979 0.3851577882219166 0.3979697599615099
+0.726587178224687 0.3827885774272992 0.726587178224687 0.3827885774272992 0.40085327721489256
+0.7294348597564774 0.3803799027829429 0.7294348597564774 0.3803799027829429 0.40382409334871877
+0.7323079844823873 0.37795292692878196 0.7323079844823873 0.37795292692878196 0.40677901097110986
+0.7352031921490783 0.3755113177086431 0.7352031921490783 0.3755113177086431 0.4096297192704353
+0.7381295271894164 0.3730468315014203 0.7381295271894164 0.3730468315014203 0.41230238893107624
+0.7411127015908962 0.37054310227468923 0.7411127015908962 0.37054310227468923 0.41471692589193104
+0.7442664785083135 0.3679474449434816 0.7442664785083135 0.3679474449434816 0.41672050204224914
+0.7474608795908279 0.36509878919944544 0.7474608795908279 0.36509878919944544 0.41896667580580743
+0.750780760192317 0.3634660485317896 0.750780760192317 0.3634660485317896 0.41665539466248674
+0.7540089045960088 0.3610712982174394 0.7540089045960087 0.3610712982174394 0.41642823362764386
+0.7564121899974473 0.35813185356691885 0.7564121899974473 0.3581318535669188 0.41900889548353243
+0.7596194107892515 0.3562752375137131 0.7596194107892514 0.3562752375137131 0.4163694355120944
+0.7625405026672775 0.3540245350815061 0.7625405026672775 0.3540245350815061 0.41502913788274043
+0.7654560861749035 0.35155547356419187 0.7654560861749035 0.35155547356419187 0.41380367552282743
+0.7682820526670309 0.349079234887814 0.7682820526670309 0.349079234887814 0.4124042332775307
+0.7711372256605622 0.346585023282502 0.7711372256605622 0.346585023282502 0.41063284155487484
+0.7740170847423425 0.3441079079625242 0.7740170847423425 0.3441079079625242 0.4084906721538372
+0.7768955884562986 0.34173377633408464 0.7768955884562986 0.34173377633408464 0.4059550095523858
+0.7804014361341947 0.3370309380382542 0.7804014361341947 0.3370309380382542 0.40591871623382725
+0.7799385088509627 0.3400062184497086 0.7799385088509627 0.3400062184497086 0.4017517488463301
+0.7828450640605812 0.3344968380782224 0.7828450640605811 0.33449683807822245 0.40462276311758105
+0.7865901282725142 0.33256798409797794 0.7865901282725142 0.3325679840979779 0.3991221672704379
+0.7899459299180894 0.3305172417871107 0.7899459299180894 0.3305172417871107 0.3950231217870552
+0.7932915706701676 0.32844382603112615 0.7932915706701676 0.32844382603112615 0.39127918095650016
+0.796631843667107 0.3263570042499743 0.796631843667107 0.3263570042499743 0.3878815939448854
+0.7999926208094662 0.32427256560225964 0.7999926208094662 0.32427256560225964 0.38475768990269527
+0.803366689799944 0.3221801250300341 0.803366689799944 0.3221801250300342 0.3819374601938063
+0.8067504322309204 0.32008580138432563 0.8067504322309204 0.3200858013843257 0.3793886390134187
+0.8101388094570386 0.3179920256255779 0.8101388094570386 0.3179920256255779 0.3770682273120069
+0.8135289187657091 0.3158995815899274 0.813528918765709 0.3158995815899274 0.37491593301711884
+0.8169193020608785 0.3138075313807224 0.8169193020608784 0.3138075313807224 0.37286107982844957
+0.8203096853560474 0.31171548117151765 0.8203096853560474 0.31171548117151765 0.3708249957828429
+0.8237000686512163 0.30962343096231315 0.8237000686512163 0.30962343096231315 0.36872835170319446
+0.8270904519463849 0.30753138075310843 0.8270904519463848 0.30753138075310843 0.3664976286612593
+0.8304808352415538 0.3054393305439036 0.8304808352415538 0.3054393305439036 0.3640701027150122
+0.8338712185367223 0.30334728033469877 0.8338712185367223 0.30334728033469877 0.3613982412406817
+0.8372616018318908 0.30125523012549366 0.8372616018318908 0.30125523012549366 0.3584533551976588
+0.8406519851270593 0.2991631799162885 0.8406519851270593 0.29916317991628855 0.35522839508266385
+0.8440423684222282 0.2970711297070833 0.8440423684222281 0.2970711297070833 0.35173980297081076
+0.8474327517173973 0.2949790794978781 0.8474327517173973 0.2949790794978781 0.3480283391881969
+0.8508231350125665 0.29288702928867294 0.8508231350125665 0.29288702928867294 0.3441587942957241
+0.8542135183077354 0.2907949790794678 0.8542135183077354 0.2907949790794678 0.340218483657803
+0.8576039016029045 0.2887029288702626 0.8576039016029045 0.28870292887026267 0.3363144153802364
+0.8609942848980733 0.2866108786610575 0.8609942848980733 0.2866108786610575 0.3325690390407898
+0.8643846681932423 0.28451882845185245 0.8643846681932423 0.28451882845185245 0.32911454075030716
+0.8677750514884114 0.28242677824264734 0.8677750514884114 0.28242677824264734 0.32608576574021364
+0.8711654347835802 0.2803347280334423 0.8711654347835802 0.2803347280334423 0.32361202864424227
+0.8745558180787492 0.2782426778242372 0.874555818078749 0.27824267782423723 0.3218082990530069
+0.8779462013739181 0.27615062761503206 0.8779462013739181 0.27615062761503206 0.3207664823803202
+0.8813365846690872 0.2740585774058269 0.8813365846690872 0.2740585774058269 0.3205476841322204
+0.884726967964256 0.2719665271966219 0.884726967964256 0.2719665271966219 0.32117637299615237
+0.8881173512594249 0.26987447698741673 0.8881173512594248 0.2698744769874168 0.322637195190205
+0.8915077345545939 0.2677824267782116 0.8915077345545939 0.2677824267782116 0.3248748488413781
+0.8948981178497628 0.2656903765690065 0.8948981178497629 0.26569037656900646 0.32779698071599617
+0.8982885011449318 0.2635983263598014 0.8982885011449318 0.2635983263598014 0.33127963840048413
+0.9016788844401007 0.2615062761505963 0.9016788844401006 0.26150627615059635 0.335174510880681
+0.9050692677352696 0.2594142259413912 0.9050692677352696 0.2594142259413912 0.3393170780407737
+0.9084596510304386 0.2573221757321861 0.9084596510304387 0.257322175732186 0.34353485545556767
+0.9118500343256075 0.25523012552298097 0.9118500343256075 0.25523012552298097 0.3476551057438067
+0.9152404176207765 0.25313807531377586 0.9152404176207763 0.2531380753137759 0.35151161694284877
+0.9186308009159454 0.25104602510457075 0.9186308009159454 0.25104602510457075 0.35495036083718357
+0.9220211842111143 0.24895397489536564 0.9220211842111145 0.2489539748953656 0.35783400581768526
+0.9254115675062833 0.24686192468616053 0.9254115675062833 0.24686192468616053 0.3600453608829252
+0.9288019508014522 0.24476987447695542 0.9288019508014521 0.24476987447695545 0.3614898773525796
+0.9321923340966212 0.2426778242677503 0.9321923340966212 0.2426778242677503 0.3620973470159357
+0.9355827173917901 0.2405857740585452 0.9355827173917902 0.24058577405854517 0.36182292412958766
+0.938973100686959 0.2384937238493401 0.938973100686959 0.2384937238493401 0.3606475750971003
+0.942363483982128 0.23640167364013498 0.9423634839821279 0.236401673640135 0.35857803110860137
+0.9457538672772969 0.23430962343092987 0.9457538672772969 0.23430962343092987 0.35564628948123417
+0.9491442505724659 0.23221757322172476 0.949144250572466 0.23221757322172473 0.3519086806626815
+0.9525346338676348 0.23012552301251965 0.9525346338676348 0.23012552301251965 0.34744449042710174
+0.9559250171628038 0.22803347280331454 0.9559250171628036 0.22803347280331457 0.3423541011446894
+0.9593154004579727 0.22594142259410943 0.9593154004579727 0.22594142259410943 0.33675659335494834
+0.9627057837531416 0.22384937238490432 0.9627057837531418 0.2238493723849043 0.33078673206953835
+0.9660961670483106 0.2217573221756992 0.9660961670483106 0.2217573221756992 0.32459125648976267
+0.9694865503434795 0.2196652719664941 0.9694865503434794 0.21966527196649413 0.3183244050354717
+0.9728769336386485 0.217573221757289 0.9728769336386485 0.217573221757289 0.31214264962555266
+0.9762673169338174 0.21548117154808388 0.9762673169338175 0.21548117154808386 0.3061986934551706
+0.9796577002289864 0.21338912133887877 0.9796577002289864 0.21338912133887877 0.3006349092818498
+0.9830480835241553 0.21129707112967366 0.9830480835241552 0.2112970711296737 0.2955765527257905
+0.9864384668193242 0.20920502092046855 0.9864384668193242 0.20920502092046855 0.2911252514233568
+0.9898288501144932 0.20711297071126344 0.9898288501144933 0.20711297071126342 0.28735340098002965
+0.9932192334096621 0.20502092050205833 0.9932192334096621 0.20502092050205833 0.28430013759139783
+0.20920502092050217 0.9932192334096621 0.20920502092050217 0.9932192334096621 0.16184187663884986
+0.2112970711297072 0.9898288501144932 0.21129707112970716 0.9898288501144933 0.16381043046450552
+0.21338912133891227 0.9864384668193242 0.21338912133891227 0.9864384668193242 0.1660546174152896
+0.2154811715481173 0.9830480835241553 0.2154811715481173 0.9830480835241552 0.1684990819123748
+0.21757322175732235 0.9796577002289864 0.21757322175732233 0.9796577002289864 0.17106425559443164
+0.2196652719665274 0.9762673169338174 0.21966527196652744 0.9762673169338175 0.17367009256161436
+0.2217573221757324 0.9728769336386485 0.22175732217573244 0.9728769336386485 0.17623932906901382
+0.2238493723849375 0.9694865503434794 0.2238493723849375 0.9694865503434794 0.17870018532109408
+0.22594142259414254 0.9660961670483107 0.22594142259414254 0.9660961670483107 0.18098850616401616
+0.22803347280334765 0.9627057837531419 0.22803347280334765 0.962705783753142 0.18304938590930278
+0.2301255230125527 0.9593154004579731 0.2301255230125527 0.959315400457973 0.18483834443224947
+0.2322175732217579 0.9559250171628044 0.23221757322175793 0.9559250171628043 0.18632212458919553
+0.23430962343096282 0.9525346338676355 0.23430962343096282 0.9525346338676356 0.1874791723382521
+0.23640167364016765 0.9491442505724667 0.23640167364016765 0.9491442505724667 0.18829984651249787
+0.2384937238493723 0.9457538672772978 0.2384937238493723 0.9457538672772978 0.18878638880052603
+0.24058577405857698 0.9423634839821288 0.24058577405857698 0.9423634839821288 0.18895266835771451
+0.24267782426778164 0.9389731006869599 0.24267782426778164 0.9389731006869599 0.18882370082333677
+0.2447698744769864 0.9355827173917909 0.2447698744769864 0.9355827173917909 0.18843492915867555
+0.24686192468619153 0.9321923340966215 0.24686192468619153 0.9321923340966215 0.18783124451768526
+0.24895397489539708 0.9288019508014522 0.24895397489539708 0.9288019508014521 0.18706572057907933
+0.25104602510460317 0.9254115675062834 0.25104602510460317 0.9254115675062834 0.1861980362141169
+0.25313807531380994 0.9220211842111152 0.25313807531380994 0.9220211842111151 0.185292571268288
+0.25523012552301727 0.9186308009159473 0.2552301255230173 0.9186308009159473 0.1844161807642113
+0.2573221757322252 0.9152404176207803 0.2573221757322252 0.9152404176207803 0.18363568516608275
+0.2594142259414339 0.9118500343256141 0.2594142259414339 0.9118500343256141 0.18301515739112076
+0.26150627615064365 0.9084596510304502 0.26150627615064365 0.9084596510304502 0.18261313636475437
+0.2635983263598537 0.9050692677352887 0.26359832635985375 0.9050692677352888 0.18247994329512354
+0.26569037656906336 0.9016788844401346 0.2656903765690633 0.9016788844401346 0.18265530845613057
+0.26778242677826763 0.8982885011449819 0.26778242677826763 0.898288501144982 0.18316652077595397
+0.26987447698746075 0.8948981178498426 0.26987447698746075 0.8948981178498426 0.18402728174080119
+0.2719665271966509 0.8915077345546885 0.2719665271966509 0.8915077345546883 0.18523737929480386
+0.27405857740582423 0.8881173512595311 0.27405857740582423 0.8881173512595311 0.18678320702817697
+0.2761506276150032 0.8847269679643687 0.2761506276150032 0.8847269679643687 0.18863905742030088
+0.27824267782421347 0.8813365846691984 0.27824267782421347 0.8813365846691984 0.19076903574864598
+0.280334728033461 0.8779462013740472 0.280334728033461 0.8779462013740472 0.19312938924658193
+0.2824267782427533 0.8745558180789269 0.28242677824275336 0.8745558180789269 0.19567103059135635
+0.2845188284520755 0.871165434783901 0.2845188284520755 0.871165434783901 0.19834205231660498
+0.2866108786614377 0.867775051488907 0.2866108786614377 0.867775051488907 0.20109006890759282
+0.288702928870695 0.8643846681940065 0.288702928870695 0.8643846681940065 0.20386427353947734
+0.29079497908016666 0.860994284899129 0.29079497908016666 0.860994284899129 0.20661714576282156
+0.2928870292897395 0.8576039016042812 0.2928870292897395 0.8576039016042812 0.20930578783851897
+0.2949790794996211 0.8542135183096203 0.29497907949962116 0.8542135183096203 0.21189289786831064
+0.29707112970995797 0.8508231350155803 0.29707112970995797 0.8508231350155803 0.2143474074202443
+0.2991631799204996 0.8474327517220507 0.2991631799204996 0.8474327517220507 0.21664482191693937
+0.30125523013073846 0.8440423684302006 0.30125523013073846 0.8440423684302006 0.2187673061397243
+0.30334728033985775 0.8406519851378679 0.30334728033985775 0.8406519851378679 0.2207035572069407
+0.3054393305448611 0.8372616018475902 0.3054393305448611 0.8372616018475902 0.22244850521866452
+0.30753138075083475 0.8338712185517752 0.3075313807508348 0.8338712185517752 0.22400287873614236
+0.309623430954453 0.8304808352524371 0.309623430954453 0.8304808352524372 0.22537266909033662
+0.3117154811599889 0.8270904519500041 0.3117154811599889 0.8270904519500041 0.22656852472142244
+0.3138075313723269 0.8237000686457415 0.3138075313723269 0.8237000686457415 0.2276051040511278
+0.3158995815966915 0.8203096853438977 0.31589958159669157 0.8203096853438977 0.22850041305230295
+0.31799163185123525 0.8169193020462051 0.31799163185123525 0.8169193020462052 0.22927515112937122
+0.3200836892562074 0.8135289264410037 0.3200836892562074 0.8135289264410037 0.22995209731675192
+0.32217593107062936 0.8101387412736201 0.32217593107062936 0.8101387412736202 0.23055580075453852
+0.32426882661306616 0.8067499778099793 0.32426882661306616 0.8067499778099793 0.23111272648348777
+0.32636249130418526 0.8033657441155254 0.3263624913041853 0.8033657441155254 0.23165071478697533
+0.32845619436930257 0.7999912816261531 0.32845619436930257 0.7999912816261531 0.2321980501200165
+0.33055028505891754 0.7966320900108691 0.33055028505891754 0.7966320900108691 0.23278401354857856
+0.33264765716626926 0.7932890180769552 0.33264765716626926 0.7932890180769552 0.23343706989356014
+0.3347530836000196 0.7899535261752918 0.3347530836000196 0.7899535261752918 0.23418053080848386
+0.3381730572103357 0.7831213527925107 0.3381730572103357 0.7831213527925107 0.2349520585150786
+0.3368380912555457 0.7866175446038749 0.3368380912555457 0.7866175446038749 0.23499902940212866
+0.34500423060651847 0.7721911107608865 0.34500423060651847 0.7721911107608865 0.23912579135543313
+0.34385386127816825 0.7756194363376432 0.34385386127816825 0.7756194363376432 0.23884404094316478
+0.3427529320762495 0.7789743303617328 0.3427529320762495 0.7789743303617328 0.23877111730140263
+0.3417561391203137 0.7823438939252522 0.3417561391203137 0.7823438939252522 0.2389919367123601
+0.3509031049333095 0.7644689481285081 0.3509031049333095 0.7644689481285081 0.24477688603236372
+0.34972069594474214 0.7680156117819643 0.34972069594474214 0.7680156117819643 0.24397445363403594
+0.34854322510554003 0.7715473203918397 0.34854322510554003 0.7715473203918397 0.24339671460998477
+0.3520900825908728 0.7609076321716515 0.3520900825908728 0.7609076321716515 0.24581742220451774
+0.35325848364528945 0.7573470050832519 0.35325848364528945 0.7573470050832519 0.2470724875662198
+0.35441858145822897 0.7537917492909405 0.35441858145822897 0.7537917492909405 0.2485550033481254
+0.35560802618956955 0.7502485521718171 0.35560802618956955 0.7502485521718171 0.25030656702729986
+0.3590710160546757 0.749571689949633 0.3590710160546757 0.749571689949633 0.2551661793736328
+0.36270297714428407 0.7487771163282778 0.36270297714428407 0.7487771163282778 0.26029389378438555
+0.36407337484417746 0.7451235717715214 0.3640733748441774 0.7451235717715213 0.26282211376191716
+0.3653201418067218 0.7413111827731561 0.3653201418067218 0.7413111827731561 0.2654646663688897
+0.36650489187098656 0.7375827857672813 0.36650489187098656 0.7375827857672813 0.2681969328248348
+0.37333324193471285 0.725626346206659 0.37333324193471285 0.725626346206659 0.28282523836311246
+0.37226919387320945 0.7292234490928059 0.37226919387320945 0.7292234490928059 0.27978876965855876
+0.3711905011120485 0.7328487410960455 0.3711905011120485 0.7328487410960455 0.2767898875474239
+0.37009547866179954 0.736509818192304 0.37009547866179954 0.736509818192304 0.27386571345731386
+0.3777281600789577 0.720936468578146 0.3777281600789577 0.720936468578146 0.29186711992953157
+0.37672847974422846 0.7245176383908442 0.37672847974422846 0.7245176383908442 0.28875161721719533
+0.38100770516305094 0.7197522735299028 0.38100770516305094 0.7197522735299028 0.297780558273343
+0.38515260291034376 0.7149255918374057 0.38515260291034376 0.7149255918374057 0.30681725782660285
+0.38427796075581594 0.7185850480038857 0.38427796075581594 0.7185850480038857 0.30363656116048704
+0.38944288895302326 0.7101375262645394 0.38944288895302326 0.7101375262645394 0.31614301740939094
+0.3885639334184667 0.7137918169645839 0.3885639334184667 0.7137918169645839 0.312929764596024
+0.39368972910975436 0.7054293599171607 0.39368972910975436 0.7054293599171607 0.32535121869594635
+0.39285125548465333 0.7091633635141235 0.39285125548465333 0.7091633635141235 0.32218061334869935
+0.41008033142246747 0.6789254181639515 0.41008033142246747 0.6789254181639515 0.36149430021287143
+0.3978621063925724 0.7007442052696236 0.3978621063925724 0.7007442052696237 0.3342872910134378
+0.39698410715527616 0.7044595152349363 0.39698410715527616 0.7044595152349363 0.33113666187667196
+0.4061898048460463 0.687505038261671 0.4061898048460462 0.687505038261671 0.3527440659662162
+0.4026866892919533 0.6920035094853395 0.40268668929195334 0.6920035094853395 0.34550808047255005
+0.39936553358980864 0.697182357447647 0.3993655335898087 0.6971823574476471 0.33824650097615366
+0.4020176384132028 0.6950203804746276 0.40201763841320287 0.6950203804746276 0.34329124524209303
+0.40083361178488813 0.7004017359907069 0.4008336117848882 0.7004017359907069 0.3390648239522721
+0.405627824787586 0.6910563942336041 0.405627824787586 0.6910563942336041 0.3506166320286677
+0.4095599932043923 0.6826346484345779 0.4095599932043923 0.6826346484345779 0.3596441340429722
+0.4091479032801159 0.6862766694212773 0.4091479032801159 0.6862766694212773 0.3578251106277792
+0.4140854177987577 0.6735542359199528 0.4140854177987577 0.6735542359199528 0.36933233700645157
+0.41349463871838754 0.6773266902514 0.41349463871838754 0.6773266902514 0.36736554270508587
+0.4174006362252897 0.6719403354802028 0.4174006362252897 0.6719403354802028 0.3749121802197703
+0.42063635108164094 0.6702702594745343 0.42063635108164094 0.6702702594745343 0.38014440337507077
+0.4238116459613324 0.6685739715675184 0.4238116459613324 0.6685739715675184 0.3850567283398681
+0.42689921070889203 0.6668315162761234 0.426899210708892 0.6668315162761234 0.3896299703924713
+0.4298859771110819 0.6650789575296904 0.4298859771110819 0.6650789575296904 0.39384941102871346
+0.4327526417110154 0.6633242077640803 0.4327526417110154 0.6633242077640803 0.39771324907538247
+0.4355747811339896 0.6616148279338747 0.43557478113398956 0.6616148279338746 0.40125289917269874
+0.4381409656811665 0.6594220137750029 0.4381409656811665 0.6594220137750028 0.40485613142525184
+0.4406065396146348 0.6495228501678151 0.44060653961463475 0.6495228501678151 0.4143582151652086
+0.4408089558377913 0.6535361289136173 0.4408089558377913 0.6535361289136173 0.4112443068329214
+0.4408175914223521 0.6574824568315687 0.44081759142235205 0.6574824568315688 0.4081362956678925
+0.4378743336851932 0.6360483368643884 0.4378743336851932 0.6360483368643884 0.4246787493461525
+0.43614212388508655 0.626359952185866 0.4361421238850865 0.626359952185866 0.43841554605292027
+0.4376303975902763 0.6300269936996074 0.4376303975902763 0.6300269936996074 0.43292696786844337
+0.4384985086742977 0.6329448254361403 0.4384985086742977 0.6329448254361403 0.42922125220752144
+0.44053106307299195 0.6455818653454939 0.440531063072992 0.6455818653454939 0.4176409224321014
+0.4406180363422731 0.6380327295837328 0.4406180363422731 0.6380327295837328 0.4250508169456449
+0.4405291927670455 0.6417444126573439 0.44052919276704555 0.6417444126573439 0.42115933361702546
+0.4262420724466885 0.588255689813252 0.4262420724466885 0.588255689813252 0.6484541741236031
+0.42651813357159163 0.5919708525636069 0.4265181335715917 0.591970852563607 0.6136471446140307
+0.4275748677863052 0.5965665096970203 0.4275748677863052 0.5965665096970203 0.5764901829842232
+0.4280175351184646 0.593988409111766 0.4280175351184646 0.593988409111766 0.5999161417549399
+0.4286980890797765 0.6015433358139641 0.4286980890797766 0.601543335813964 0.5401867550050293
+0.42956514069023166 0.598141151000958 0.42956514069023166 0.598141151000958 0.5674007979351604
+0.4310687064945866 0.6031587834331522 0.4310687064945866 0.6031587834331522 0.5314000421971828
+0.43105222284034256 0.6071588485854479 0.4310522228403425 0.6071588485854479 0.5062239736377808
+0.4328406586026574 0.6101871071628577 0.4328406586026574 0.6101871071628578 0.4905666365176611
+0.43350485321828314 0.6159478561950993 0.4335048532182832 0.6159478561950992 0.46590465404608594
+0.4347386843133879 0.6125974743200513 0.43473868431338797 0.6125974743200513 0.4798373274222712
+0.4360150141779955 0.622330090920131 0.4360150141779955 0.6223300909201309 0.447476774164461
+0.436440447752591 0.6182933385696149 0.436440447752591 0.6182933385696149 0.4591631490787899
+0.4385894803726512 0.6239082086964794 0.4385894803726512 0.6239082086964794 0.445180006254877
+0.4304599260227415 0.5864744018192996 0.4304599260227415 0.5864744018192996 0.6862597189577394
+0.43445977810141545 0.5847541371324204 0.4344597781014155 0.5847541371324204 0.7217400794701656
+0.6068528286464253 0.4575091339127471 0.6068528286464253 0.4575091339127471 0.4473692090245364
+0.6101067505447781 0.4586494856791624 0.6101067505447783 0.45864948567916247 0.4095800326027641
+0.6143504515757936 0.4609635576212039 0.6143504515757936 0.4609635576212039 0.3576149437316396
+0.6116241632456998 0.46072196172358143 0.6116241632456998 0.46072196172358143 0.3784094241263636
+0.6039705883974964 0.46134684628565537 0.6039705883974964 0.4613468462856554 0.42917620292900027
+0.6012088835111465 0.46492452585162836 0.6012088835111465 0.46492452585162836 0.42559912157163
+0.6297611080273725 0.44718263389443186 0.6297611080273725 0.44718263389443186 0.40331663286160346
+0.6339441498776279 0.4465863769663307 0.633944149877628 0.4465863769663307 0.38410349788388043
+0.6290936651425924 0.45042238858525946 0.6290936651425924 0.45042238858525946 0.37104369829808076
+0.6178306510820623 0.4610015189562361 0.6178306510820623 0.46100151895623614 0.3341546753688036
+0.6152608210027892 0.4633273287987174 0.6152608210027893 0.46332732879871746 0.33440081090259083
+0.6261806330284926 0.45226253333323746 0.6261806330284926 0.4522625333332374 0.3686489600967548
+0.6202117901570346 0.4577758532905319 0.6202117901570346 0.4577758532905319 0.348068707859297
+0.6236763314458744 0.4553146818483824 0.6236763314458744 0.4553146818483825 0.35126045183270094
+0.6209896989712063 0.4608534374088595 0.6209896989712061 0.4608534374088595 0.31504405251389883
+0.6359680226100004 0.4487257606998295 0.6359680226100004 0.4487257606998295 0.34933555353386947
+0.6377045510232605 0.44578677958203067 0.6377045510232605 0.4457867795820306 0.37106950412168105
+0.6409066304292269 0.44329179494200044 0.6409066304292269 0.4432917949420005 0.37933137384018584
+0.6580957465671867 0.43104225181213884 0.6580957465671867 0.43104225181213884 0.4036012546476848
+0.6548019173107786 0.43001741827819645 0.6548019173107785 0.43001741827819645 0.42836818729617626
+0.6436681847702808 0.44051589974507843 0.6436681847702808 0.44051589974507843 0.3922391284522258
+0.6520123180895915 0.43218824223817087 0.6520123180895915 0.43218824223817087 0.42473718407933864
+0.6491938656393248 0.434916897140988 0.6491938656393249 0.434916897140988 0.4156252153924931
+0.6464143700214136 0.43773116556024205 0.6464143700214136 0.4377311655602421 0.40441127625512824
+0.6612880336235744 0.4317850935482695 0.6612880336235744 0.4317850935482695 0.3827253338986694
+0.6640326008942737 0.42928670201024977 0.6640326008942737 0.42928670201024977 0.38943883348699254
+0.6667910848235837 0.4267939737223636 0.6667910848235837 0.4267939737223636 0.39513813824813854
+0.7088136915858814 0.3919258612899563 0.7088136915858813 0.3919258612899563 0.40968627346747116
+0.6886931089386511 0.40622161618380725 0.6886931089386511 0.4062216161838073 0.4189551745793199
+0.6964226091875586 0.39507791803041176 0.6964226091875586 0.39507791803041176 0.43788756957604896
+0.6937072254981104 0.39768870366050657 0.6937072254981104 0.39768870366050657 0.4372494854735495
+0.6909763642723759 0.4002243740387064 0.6909763642723759 0.4002243740387064 0.437065598025173
+0.6914338173446887 0.4037219077200734 0.6914338173446887 0.4037219077200734 0.4196021222699274
+0.7025908860846494 0.3935178403325606 0.7025908860846494 0.3935178403325606 0.4226727796591358
+0.6998053502554056 0.39613572854862267 0.6998053502554056 0.39613572854862267 0.42140344787923434
+0.7059904729219467 0.39458705893577917 0.7059904729219467 0.39458705893577917 0.40744879564763786
+0.6860963338456391 0.40879600328821103 0.6860963338456391 0.40879600328821103 0.4171619834788641
+0.683537276813562 0.4114580544563423 0.683537276813562 0.41145805445634226 0.41443994174401694
+0.6808318739670121 0.41406798477049467 0.6808318739670121 0.41406798477049467 0.4121716029132874
+0.6780311418138529 0.4166502993547114 0.6780311418138529 0.4166502993547114 0.4099131137295336
+0.6751994134655709 0.4192251657104274 0.6751994134655709 0.4192251657104274 0.40720439360488675
+0.6695709265509651 0.42428542905547406 0.6695709265509651 0.42428542905547406 0.39998096153891255
+0.6723765904118272 0.4217665063677955 0.6723765904118272 0.4217665063677955 0.40394765337510075
+0.7211113659961104 0.38733558577651045 0.7211113659961104 0.38733558577651045 0.39563389875651006
+0.7190363339708298 0.38949933664489733 0.7190363339708298 0.38949933664489733 0.39207604453991074
+0.7157432683726421 0.39010185868054725 0.7157432683726421 0.3901018586805472 0.3980194743099187
+0.7123371275276507 0.39298014926668035 0.7123371275276505 0.3929801492666804 0.39553224534669296
+0.7243463758826093 0.388380317199029 0.7243463758826093 0.388380317199029 0.3843498014688316
+0.727155184533625 0.38610678288135464 0.727155184533625 0.38610678288135464 0.38707207718782183
+0.7300170572462181 0.38375509781158507 0.7300170572462181 0.38375509781158507 0.3900586486172075
+0.7329087219815529 0.3813710292318149 0.7329087219815529 0.3813710292318149 0.3930987194793742
+0.7447618839835587 0.37164173908032194 0.7447618839835587 0.37164173908032194 0.40369996663408153
+0.7358203567529382 0.3789706439358855 0.7358203567529382 0.3789706439358855 0.39607302426372026
+0.738753872172889 0.3765549848999135 0.738753872172889 0.3765549848999135 0.3988917236126273
+0.7417239048183246 0.3741161561691404 0.7417239048183246 0.3741161561691404 0.4014704911001132
+0.7478628766337637 0.36913911163005436 0.7478628766337637 0.36913911163005436 0.40548218208931613
+0.7510179166748016 0.3668341397177839 0.7510179166748016 0.3668341397177839 0.40610917777077343
+0.754262749509364 0.36463583859493665 0.754262749509364 0.36463583859493665 0.40567469328890055
+0.7570536007232008 0.3621135282458747 0.7570536007232008 0.3621135282458747 0.40671077546680273
+0.7599060040258814 0.3597589779351789 0.7599060040258814 0.3597589779351789 0.40667623003819126
+0.762862519631526 0.3575185864460197 0.762862519631526 0.3575185864460197 0.4056252588688581
+0.7657844427316812 0.35518680990885465 0.7657844427316812 0.35518680990885465 0.4044633658319589
+0.7686754115081281 0.35278741171183975 0.7686754115081281 0.35278741171183975 0.4031503215449654
+0.7715453124959254 0.35037026807324073 0.7715453124959254 0.35037026807324073 0.4015682425807942
+0.7744153282380472 0.3479709569303298 0.7744153282380472 0.3479709569303298 0.39965448445772106
+0.7772740795959847 0.34563545583832406 0.7772740795959847 0.34563545583832406 0.39741739577918334
+0.7802047538092 0.34355615758452723 0.7802047538092 0.34355615758452723 0.394382683194094
+0.783261295098042 0.33833873822868066 0.783261295098042 0.33833873822868066 0.3968084419855993
+0.7831499633257482 0.3416488690288465 0.783149963325748 0.34164886902884645 0.39095216392276405
+0.7866402903447789 0.3365489511447515 0.7866402903447788 0.3365489511447515 0.3920990805791496
+0.7899162560150756 0.334745801457133 0.7899162560150756 0.334745801457133 0.38784459343949446
+0.7932807092709768 0.33263355442651604 0.7932807092709768 0.33263355442651604 0.38418921088796876
+0.796644441134601 0.33053272725329225 0.796644441134601 0.33053272725329225 0.3807956855467843
+0.8000030552063356 0.328450360764929 0.8000030552063356 0.328450360764929 0.37768882874150694
+0.8033718639755384 0.32636102728427896 0.8033718639755384 0.32636102728427896 0.3748878508503502
+0.806751943998122 0.32426939693918144 0.806751943998122 0.32426939693918144 0.3723671790652516
+0.8101390272036686 0.3221762545487818 0.8101390272036685 0.3221762545487818 0.37009677173027006
+0.8135289187657085 0.32008368200833853 0.8135289187657085 0.32008368200833853 0.3680255885931129
+0.8169193020608777 0.3179916317991333 0.8169193020608777 0.3179916317991333 0.3660891724592256
+0.8203096853560466 0.3158995815899282 0.8203096853560466 0.3158995815899282 0.3642126273462509
+0.8237000686512156 0.31380753138072326 0.8237000686512156 0.3138075313807232 0.3623166494804566
+0.8270904519463845 0.3117154811715184 0.8270904519463845 0.3117154811715184 0.3603246054430373
+0.8304808352415535 0.30962343096231354 0.8304808352415535 0.30962343096231354 0.35816769616776417
+0.8338712185367223 0.30753138075310854 0.8338712185367223 0.30753138075310854 0.355789654285429
+0.8372616018318911 0.30543933054390365 0.8372616018318911 0.30543933054390365 0.3531507908896691
+0.8406519851270597 0.30334728033469865 0.8406519851270599 0.30334728033469865 0.3502312590943453
+0.8440423684222284 0.3012552301254936 0.8440423684222284 0.3012552301254936 0.34703343701177797
+0.8474327517173975 0.29916317991628844 0.8474327517173975 0.29916317991628844 0.34358334898417353
+0.8508231350125665 0.2970711297070833 0.8508231350125665 0.2970711297070833 0.33993104310111427
+0.8542135183077353 0.29497907949787816 0.8542135183077352 0.29497907949787816 0.33614983135808235
+0.8576039016029041 0.29288702928867294 0.8576039016029041 0.29288702928867294 0.3323342862595178
+0.8609942848980733 0.2907949790794677 0.8609942848980733 0.2907949790794677 0.3285968881599683
+0.8643846681932423 0.28870292887026267 0.8643846681932423 0.28870292887026267 0.3250632483881826
+0.8677750514884113 0.2866108786610575 0.8677750514884114 0.2866108786610575 0.3218659121843335
+0.8711654347835801 0.28451882845185245 0.8711654347835801 0.28451882845185245 0.31913688562461257
+0.874555818078749 0.2824267782426474 0.874555818078749 0.28242677824264734 0.3169992306645555
+0.8779462013739181 0.2803347280334423 0.8779462013739181 0.2803347280334423 0.31555830652241895
+0.881336584669087 0.2782426778242372 0.8813365846690872 0.27824267782423723 0.31489344917490447
+0.884726967964256 0.276150627615032 0.884726967964256 0.276150627615032 0.31505099883596394
+0.8881173512594248 0.2740585774058269 0.8881173512594248 0.2740585774058269 0.3160395386822176
+0.8915077345545939 0.27196652719662184 0.8915077345545939 0.27196652719662184 0.31782796858415713
+0.8948981178497628 0.26987447698741673 0.8948981178497629 0.2698744769874168 0.32034664330388557
+0.8982885011449318 0.2677824267782116 0.8982885011449318 0.2677824267782116 0.3234913548509706
+0.9016788844401007 0.2656903765690065 0.9016788844401006 0.26569037656900646 0.32712955545639216
+0.9050692677352696 0.2635983263598014 0.9050692677352696 0.2635983263598014 0.33110799408634906
+0.9084596510304386 0.2615062761505963 0.9084596510304387 0.26150627615059635 0.33526090553906274
+0.9118500343256075 0.2594142259413912 0.9118500343256075 0.2594142259413912 0.3394180136016669
+0.9152404176207765 0.2573221757321861 0.9152404176207763 0.257322175732186 0.3434118192376732
+0.9186308009159454 0.25523012552298097 0.9186308009159454 0.25523012552298097 0.34708387024850457
+0.9220211842111143 0.25313807531377586 0.9220211842111145 0.2531380753137759 0.3502899003261805
+0.9254115675062833 0.25104602510457075 0.9254115675062833 0.25104602510457075 0.35290386032366067
+0.9288019508014522 0.24895397489536564 0.9288019508014521 0.2489539748953656 0.3548209421581812
+0.9321923340966212 0.24686192468616053 0.9321923340966212 0.24686192468616053 0.35595972726279385
+0.9355827173917901 0.24476987447695542 0.9355827173917902 0.24476987447695545 0.3562635916240047
+0.938973100686959 0.2426778242677503 0.938973100686959 0.2426778242677503 0.3557014812604273
+0.942363483982128 0.2405857740585452 0.9423634839821279 0.24058577405854517 0.35426814492975733
+0.9457538672772969 0.2384937238493401 0.9457538672772969 0.2384937238493401 0.3519838806335432
+0.9491442505724659 0.23640167364013498 0.949144250572466 0.236401673640135 0.3488938220489426
+0.9525346338676348 0.23430962343092987 0.9525346338676348 0.23430962343092987 0.3450667616155199
+0.9559250171628038 0.23221757322172476 0.9559250171628036 0.23221757322172473 0.34059347935383494
+0.9593154004579727 0.23012552301251965 0.9593154004579727 0.23012552301251965 0.3355845217800199
+0.9627057837531416 0.22803347280331454 0.9627057837531418 0.22803347280331457 0.3301673561234422
+0.9660961670483106 0.22594142259410943 0.9660961670483106 0.22594142259410943 0.32448281630808684
+0.9694865503434795 0.22384937238490432 0.9694865503434794 0.2238493723849043 0.3186807663408158
+0.9728769336386485 0.2217573221756992 0.9728769336386485 0.2217573221756992 0.3129149435645491
+0.9762673169338174 0.2196652719664941 0.9762673169338175 0.21966527196649413 0.3073370184455724
+0.9796577002289864 0.217573221757289 0.9796577002289864 0.217573221757289 0.30209002458554024
+0.9830480835241553 0.21548117154808388 0.9830480835241552 0.21548117154808386 0.29730146705795346
+0.9864384668193242 0.21338912133887877 0.9864384668193242 0.21338912133887877 0.29307658620610627
+0.9898288501144932 0.21129707112967366 0.9898288501144933 0.2112970711296737 0.2894923954498201
+0.9932192334096621 0.20920502092046855 0.9932192334096621 0.20920502092046855 0.28659317108810306
+0.21338912133891227 0.9932192334096621 0.21338912133891227 0.9932192334096621 0.16363468341714923
+0.2154811715481173 0.9898288501144932 0.2154811715481173 0.9898288501144933 0.1655157894583397
+0.21757322175732238 0.9864384668193242 0.21757322175732238 0.9864384668193242 0.1676683812414783
+0.2196652719665274 0.9830480835241553 0.21966527196652744 0.9830480835241552 0.17001763781109178
+0.22175732217573246 0.9796577002289864 0.2217573221757325 0.9796577002289864 0.17248515586387012
+0.22384937238493746 0.9762673169338174 0.2238493723849375 0.9762673169338175 0.1749926541038207
+0.22594142259414252 0.9728769336386485 0.22594142259414252 0.9728769336386485 0.17746517769596545
+0.22803347280334754 0.9694865503434795 0.22803347280334754 0.9694865503434794 0.17983372832745928
+0.2301255230125526 0.9660961670483107 0.2301255230125526 0.9660961670483107 0.18203732180171994
+0.23221757322175762 0.9627057837531421 0.2322175732217576 0.9627057837531421 0.18402452100595634
+0.23430962343096265 0.9593154004579733 0.23430962343096265 0.9593154004579733 0.18575451206772733
+0.2364016736401676 0.9559250171628042 0.2364016736401676 0.9559250171628042 0.1871977931303276
+0.23849372384937242 0.9525346338676353 0.23849372384937242 0.9525346338676354 0.1883365358009874
+0.2405857740585772 0.9491442505724663 0.2405857740585772 0.9491442505724663 0.18916466465815251
+0.24267782426778195 0.9457538672772975 0.24267782426778198 0.9457538672772975 0.1896876840378975
+0.24476987447698687 0.9423634839821283 0.24476987447698687 0.9423634839821283 0.18992226593794811
+0.24686192468619192 0.938973100686959 0.24686192468619192 0.938973100686959 0.18989559964246458
+0.2489539748953972 0.9355827173917901 0.2489539748953972 0.9355827173917902 0.18964449357294247
+0.2510460251046029 0.9321923340966212 0.2510460251046029 0.9321923340966212 0.1892142139433919
+0.2531380753138089 0.9288019508014523 0.2531380753138089 0.9288019508014523 0.18865704434056016
+0.2552301255230152 0.9254115675062842 0.2552301255230152 0.9254115675062842 0.18803055691915946
+0.257322175732222 0.922021184211116 0.257322175732222 0.922021184211116 0.18739560101650746
+0.2594142259414292 0.9186308009159486 0.2594142259414292 0.9186308009159486 0.18681403951380193
+0.2615062761506369 0.9152404176207827 0.2615062761506369 0.9152404176207828 0.18634629652386195
+0.26359832635984465 0.9118500343256182 0.26359832635984465 0.9118500343256182 0.18604881881657098
+0.26569037656905187 0.9084596510304572 0.26569037656905187 0.9084596510304571 0.18597159164130847
+0.267782426778256 0.9050692677352972 0.267782426778256 0.9050692677352972 0.18615587851124038
+0.26987447698745365 0.9016788844401441 0.26987447698745365 0.9016788844401441 0.18663236449416407
+0.2719665271966506 0.8982885011449832 0.27196652719665065 0.8982885011449832 0.18741986618715092
+0.2740585774058396 0.8948981178498207 0.27405857740583967 0.8948981178498207 0.18852472682966392
+0.27615062761503156 0.8915077345546562 0.27615062761503156 0.8915077345546562 0.18994094732429898
+0.27824267782423867 0.8881173512594865 0.27824267782423867 0.8881173512594865 0.1916510254722533
+0.2803347280334635 0.8847269679643236 0.28033472803346354 0.8847269679643236 0.19362740207915496
+0.28242677824271123 0.881336584669174 0.28242677824271123 0.881336584669174 0.19583435784835482
+0.28451882845197746 0.8779462013740692 0.28451882845197746 0.8779462013740692 0.1982301775546826
+0.2866108786612683 0.8745558180789829 0.2866108786612683 0.8745558180789829 0.20076939879535763
+0.288702928870516 0.8711654347839423 0.288702928870516 0.8711654347839423 0.2034049861225837
+0.2907949790798711 0.8677750514889252 0.2907949790798711 0.8677750514889252 0.2060903085380604
+0.2928870292892835 0.8643846681939293 0.2928870292892835 0.8643846681939295 0.20878083985626575
+0.29497907949885344 0.860994284899035 0.29497907949885344 0.860994284899035 0.21143554006108325
+0.2970711297086453 0.8576039016044672 0.2970711297086453 0.8576039016044671 0.21401790720710331
+0.2991631799185247 0.8542135183101666 0.29916317991852465 0.8542135183101666 0.216496712195366
+0.3012552301282166 0.8508231350167282 0.3012552301282166 0.8508231350167282 0.21884644339381118
+0.30334728033731806 0.8474327517230303 0.30334728033731806 0.8474327517230303 0.22104749615252414
+0.30543933054425326 0.8440423684303763 0.30543933054425326 0.8440423684303763 0.22308614566005372
+0.30753138075174946 0.8406519851348041 0.30753138075174946 0.8406519851348041 0.22495434201153583
+0.3096234309580051 0.8372616018374707 0.3096234309580051 0.8372616018374707 0.22664936507978842
+0.31171548116526565 0.8338712185385037 0.31171548116526565 0.8338712185385037 0.22817337478136213
+0.3138075313760661 0.8304808352385598 0.31380753137606604 0.8304808352385598 0.22953288989262302
+0.3158995815918824 0.8270904519392923 0.3158995815918824 0.8270904519392923 0.2307382261141265
+0.31799163181201623 0.82370006864332 0.31799163181201623 0.82370006864332 0.2318029214066146
+0.3200836820449415 0.8203096853581416 0.3200836820449415 0.8203096853581416 0.23274317375577272
+0.3221757323111312 0.8169193021535586 0.3221757323111312 0.8169193021535586 0.23357731340013957
+0.3242678048117979 0.8135289437729353 0.3242678048117979 0.8135289437729353 0.23432536273626334
+0.3263601216811302 0.8101390338504216 0.3263601216811302 0.8101390338504216 0.23500901202275923
+0.32845309071984835 0.8067515531917383 0.32845309071984835 0.8067515531917383 0.23565194059363462
+0.33054658077818605 0.8033707867404964 0.33054658077818605 0.8033707867404963 0.23627927101700255
+0.33264008271805506 0.8000019934766552 0.33264008271805506 0.8000019934766552 0.23691672464706617
+0.334734762504211 0.7966484558509078 0.334734762504211 0.7966484558509078 0.237591124530978
+0.3368355354333949 0.7933036556778746 0.3368355354333949 0.7933036556778746 0.23832974580626373
+0.3389564236585803 0.7899229691589115 0.3389564236585803 0.7899229691589115 0.23915838511285328
+0.3411966998217148 0.7862286138449146 0.3411966998217148 0.7862286138449147 0.24009587124656614
+0.34737784102771546 0.7749759429019529 0.34737784102771546 0.7749759429019529 0.24300537838052558
+0.34622344163434016 0.7783126266630337 0.34622344163434016 0.7783126266630337 0.2427661698270688
+0.3451043786413656 0.781492025879948 0.3451043786413656 0.781492025879948 0.24263952238491635
+0.34418965648060657 0.7841462906891148 0.34418965648060657 0.7841462906891148 0.24262830337631475
+0.35439503766734237 0.7637760532914556 0.35439503766734237 0.7637760532914556 0.2491684120466288
+0.35322317433070793 0.7673278910528153 0.35322317433070793 0.7673278910528153 0.24827506017754816
+0.3520687948234464 0.770867629868563 0.3520687948234464 0.770867629868563 0.24762958038992486
+0.3509124366502361 0.7743543100728415 0.3509124366502361 0.7743543100728415 0.24717705168629125
+0.3556055766204915 0.7602373714868428 0.3556055766204915 0.7602373714868428 0.25035718890105413
+0.3567443728449837 0.7566800586260981 0.3567443728449837 0.7566800586260981 0.25169697678158137
+0.3578807066972582 0.7531300065708568 0.3578807066972582 0.7531300065708568 0.25327371651474734
+0.36121840182808346 0.7523813266764297 0.36121840182808346 0.7523813266764297 0.25783213176017655
+0.3578485712525121 0.7630737015257146 0.3578485712525121 0.7630737015257146 0.2534962809555031
+0.36468051156807174 0.7513993875692132 0.36468051156807174 0.7513993875692132 0.2625952803854726
+0.366713738857863 0.7482548996692522 0.36671373885786307 0.7482548996692522 0.26588844397915873
+0.3677697874089188 0.7440935259291604 0.3677697874089188 0.7440935259291604 0.2682651003199767
+0.36897432031133004 0.7402286593275433 0.36897432031133004 0.7402286593275433 0.2710417084418441
+0.37571869194363616 0.7281187273702998 0.37571869194363616 0.7281187273702998 0.2856332481344983
+0.37469162629193403 0.7317426764523983 0.37469162629193403 0.7317426764523983 0.2825377947159214
+0.37365090256956396 0.7353924012328844 0.37365090256956396 0.7353924012328844 0.27951326622684497
+0.37259862455649745 0.7390817320647112 0.37259862455649745 0.7390817320647112 0.2765987582762069
+0.38007107903920917 0.723358154532855 0.38007107903920917 0.723358154532855 0.29461035935701146
+0.3791210118298685 0.7269692706502333 0.3791210118298685 0.7269692706502333 0.2914214419922096
+0.38337118710108026 0.7221946200611233 0.38337118710108026 0.7221946200611233 0.30037344850697595
+0.3876169366522431 0.7174775124561555 0.3876169366522431 0.7174775124561555 0.309499782828182
+0.3866611834218057 0.7210477391755382 0.3866611834218057 0.7210477391755382 0.3060557324834771
+0.39198768727329125 0.7128795148899963 0.39198768727329125 0.7128795148899963 0.31883227521140106
+0.3910373339684994 0.7165038842669834 0.3910373339684994 0.7165038842669834 0.31529658417836526
+0.3962274851717286 0.7081711142303213 0.3962274851717286 0.7081711142303213 0.32800601779160554
+0.39545212065609564 0.7119481882386811 0.39545212065609564 0.7119481882386811 0.32465008043525123
+0.41292485517286664 0.6811019656990939 0.41292485517286664 0.6811019656990939 0.3653217829141529
+0.40005524844216983 0.7036009093967384 0.40005524844216983 0.7036009093967382 0.3362821964262119
+0.39951314149714773 0.7071361792406027 0.39951314149714773 0.7071361792406027 0.3335088179652496
+0.4086767640426527 0.68990124971164 0.4086767640426527 0.68990124971164 0.3557320488166009
+0.404963163124389 0.6947280111172411 0.404963163124389 0.694728011117241 0.3481089785361516
+0.40348897075081364 0.6982485147108143 0.4034889707508137 0.6982485147108142 0.3442787839198109
+0.4034220507252494 0.7022149391019523 0.40342205072524934 0.7022149391019523 0.3420538660927374
+0.4080541496722385 0.6935616179463974 0.4080541496722385 0.6935616179463974 0.3531988730450166
+0.412360218496567 0.6848784696348771 0.41236021849656707 0.6848784696348771 0.36312425682885174
+0.4118281124161822 0.6886408615236 0.41182811241618217 0.6886408615236 0.36080604025989893
+0.41685581040931097 0.6757047342957531 0.416855810409311 0.6757047342957531 0.3728960056115897
+0.41630857961037004 0.6794970715870257 0.4163085796103701 0.6794970715870257 0.37077190526869547
+0.42015120852511556 0.6740277873533084 0.42015120852511556 0.6740277873533084 0.3780786135592418
+0.42338777829736296 0.6723238965638388 0.42338777829736296 0.6723238965638388 0.38291937128657455
+0.4265388949012932 0.6705667406462479 0.4265388949012932 0.6705667406462479 0.3874069933884398
+0.42960067142025976 0.6687785292803086 0.42960067142025976 0.6687785292803086 0.3915442291567443
+0.4325631320583122 0.666969660838473 0.43256313205831226 0.6669696608384729 0.3953360692420207
+0.4354237974718429 0.6651168470068258 0.4354237974718429 0.6651168470068258 0.39882090751781024
+0.43821272189052807 0.6631586320195817 0.438212721890528 0.6631586320195817 0.40213863191001703
+0.440939323925865 0.661208628427387 0.440939323925865 0.6612086284273869 0.4051817492766245
+0.44355291031549043 0.6477168500932282 0.44355291031549043 0.6477168500932282 0.41807774434075734
+0.44369269547427936 0.6515652436349197 0.4436926954742794 0.6515652436349199 0.41474893703236076
+0.44382095361050905 0.6555577463738285 0.44382095361050905 0.6555577463738285 0.4113169810951344
+0.44381293567036334 0.6593780983125828 0.44381293567036334 0.6593780983125828 0.40793694434811273
+0.44082114852190685 0.6344545195060335 0.44082114852190685 0.6344545195060335 0.4293982916625449
+0.44025360502310307 0.6267997387358757 0.440253605023103 0.6267997387358756 0.44053616518986705
+0.44070014181867423 0.6310093750184785 0.44070014181867423 0.6310093750184785 0.43398937844317304
+0.4434528730040028 0.6438653372286645 0.4434528730040029 0.6438653372286645 0.4215553743873573
+0.4433796187796023 0.6363584319502502 0.44337961877960236 0.6363584319502502 0.429238846435986
+0.44346023128581097 0.6400204304756463 0.44346023128581097 0.6400204304756462 0.42533171258942454
+0.4299389121023956 0.5912571473220556 0.42993891210239565 0.5912571473220556 0.6320151853257377
+0.43039300731788616 0.5948945972726767 0.43039300731788616 0.5948945972726767 0.5970581957022835
+0.4315693633911685 0.599736901066869 0.4315693633911685 0.599736901066869 0.5570102509839261
+0.43195651354561215 0.5968112051957143 0.43195651354561215 0.5968112051957143 0.5818081759448095
+0.43355493297805975 0.6042998923084276 0.43355493297805975 0.6042998923084276 0.524850914635013
+0.43374999833202077 0.6010816764918845 0.43374999833202077 0.6010816764918845 0.547714614289024
+0.43403591837702216 0.607218074493107 0.43403591837702216 0.6072180744931072 0.50687080657783
+0.43515655789130603 0.6096290313910172 0.43515655789130603 0.6096290313910172 0.49385044178403137
+0.4356148272659468 0.6049518861816274 0.43561482726594675 0.6049518861816274 0.5204986681153319
+0.43692899779869965 0.614453521262971 0.43692899779869965 0.614453521262971 0.47264927171995946
+0.43746059352915223 0.6106990077545125 0.43746059352915223 0.6106990077545125 0.48856724439189964
+0.43924029077786997 0.6166800472364778 0.43924029077787 0.6166800472364778 0.46500510458499716
+0.43949114303343345 0.6205722888349398 0.43949114303343345 0.6205722888349398 0.4537019286148879
+0.4410585944708164 0.6234598964460887 0.4410585944708164 0.6234598964460887 0.44741705348405897
+0.44173301243543217 0.618237746344774 0.4417330124354322 0.618237746344774 0.46027645978176424
+0.44362178263435614 0.6249806107687047 0.4436217826343562 0.6249806107687047 0.44570193044161227
+0.43409639174156456 0.5892755366566271 0.4340963917415646 0.5892755366566272 0.6628713441519786
+0.4380212622044028 0.5873833216745356 0.4380212622044028 0.5873833216745356 0.6903389052482124
+0.6084433397584501 0.46199305431799587 0.6084433397584501 0.4619930543179959 0.39069434172258793
+0.6117711543555178 0.4632074726309083 0.6117711543555178 0.4632074726309083 0.3589360840782907
+0.615863941527119 0.46580619081012503 0.615863941527119 0.46580619081012503 0.31861743261839104
+0.613204265387742 0.4653903577020998 0.613204265387742 0.4653903577020998 0.3380738852735232
+0.6054983011304719 0.4656686981515666 0.6054983011304719 0.4656686981515666 0.39178702677961846
+0.6025801927567095 0.469138550459103 0.6025801927567095 0.4691385504591031 0.41384749491818146
+0.6325793608994366 0.4502764610181793 0.6325793608994364 0.4502764610181793 0.35183380798389086
+0.6299726479007416 0.4533233962140567 0.6299726479007416 0.45332339621405676 0.3341340655876603
+0.6185974655409754 0.4635132179078743 0.6185974655409753 0.4635132179078743 0.3114637076299376
+0.6183996687498934 0.4663904669330483 0.6183996687498934 0.4663904669330483 0.2994931139188723
+0.6164659136867191 0.4682260539226284 0.6164659136867191 0.46822605392262845 0.30897769099462696
+0.6269041234865119 0.4559940502669064 0.6269041234865119 0.4559940502669065 0.3242212327605886
+0.6239163236184302 0.45850293836873196 0.6239163236184302 0.45850293836873196 0.31747986343335693
+0.6218937704697844 0.46323187018169737 0.6218937704697844 0.4632318701816974 0.29216295639728385
+0.6242426994603759 0.46134871459580634 0.6242426994603759 0.46134871459580634 0.29109850238271257
+0.6359850742968434 0.45158525431218854 0.6359850742968433 0.4515852543121886 0.31905574820795585
+0.6386553977100822 0.4493048427125659 0.6386553977100822 0.44930484271256593 0.3289166614989402
+0.6413300638356175 0.4467857435771067 0.6413300638356175 0.4467857435771067 0.34115455417451107
+0.6441678996742866 0.4442377304824555 0.6441678996742866 0.4442377304824556 0.352590260244594
+0.6585940436718264 0.43431883320434767 0.6585940436718264 0.43431883320434767 0.37457840193251885
+0.6553347971876503 0.4334159101605772 0.6553347971876503 0.4334159101605772 0.39746450499423397
+0.6469588106036691 0.4414785359713597 0.6469588106036691 0.4414785359713597 0.3657149843140987
+0.6525438170391001 0.435986398487086 0.6525438170391001 0.4359863984870859 0.3888963639799928
+0.6497509847136955 0.43871111753367437 0.6497509847136955 0.43871111753367437 0.3780040363657288
+0.6617688153627689 0.435064471421958 0.6617688153627689 0.435064471421958 0.3545619917264427
+0.6645935704411833 0.43248949437770556 0.6645935704411833 0.4324894943777055 0.3627645887202804
+0.6674152699813779 0.43005551471084663 0.6674152699813779 0.43005551471084663 0.36896883659567953
+0.6702352500524477 0.4275989947650973 0.6702352500524477 0.4275989947650973 0.37448170678807197
+0.7093589071584283 0.3957113140340796 0.7093589071584283 0.3957113140340796 0.3927994119738774
+0.6891762465943692 0.4096148303893233 0.6891762465943692 0.4096148303893233 0.40067200234059275
+0.6918166881200992 0.4071775114524192 0.6918166881200992 0.40717751145241915 0.4020883670106113
+0.6970321475844063 0.39888517348353186 0.6970321475844062 0.39888517348353186 0.419678880176461
+0.6943078857411618 0.4013026193616491 0.6943078857411616 0.4013026193616492 0.41933835555764715
+0.6946008764222525 0.40470388750540337 0.6946008764222525 0.40470388750540337 0.403031178673343
+0.7032155059643204 0.39716678406733813 0.7032155059643204 0.39716678406733813 0.40563223481191907
+0.7003804043954369 0.39969322102397825 0.700380404395437 0.39969322102397825 0.4044609305006372
+0.7065945412835353 0.3983059290990533 0.7065945412835353 0.3983059290990533 0.390249395161055
+0.687001777621004 0.41233806333922945 0.687001777621004 0.41233806333922945 0.3956366441100516
+0.6846075474091828 0.41507047707613315 0.6846075474091827 0.41507047707613315 0.39103916177962716
+0.6817526138947251 0.41757853704521714 0.6817526138947251 0.41757853704521714 0.38892191874727194
+0.6788306668960165 0.42011166572200287 0.6788306668960163 0.4201116657220028 0.38638036029448714
+0.6759390778714724 0.4226367984981141 0.6759390778714724 0.4226367984981141 0.3830976725644329
+0.6730747706759687 0.42512714947439606 0.6730747706759687 0.42512714947439606 0.3791784046555631
+0.7214795558860947 0.3906737323645264 0.7214795558860948 0.3906737323645264 0.3818081727435543
+0.7186479078940965 0.3925245786989592 0.7186479078940965 0.39252457869895924 0.3811328776899426
+0.7126674599284764 0.3969733595326976 0.7126674599284764 0.3969733595326976 0.3783973174583764
+0.7156147433099835 0.3945296737815708 0.7156147433099836 0.39452967378157083 0.38058679297187153
+0.724752601796973 0.39172767862625313 0.7247526017969729 0.39172767862625313 0.37042960877324044
+0.7276446669793262 0.3894529983680685 0.7276446669793262 0.3894529983680685 0.3732089649691297
+0.7305390218278148 0.3871397061458654 0.7305390218278148 0.3871397061458654 0.3762156125291465
+0.7334547513184652 0.3847942824867229 0.7334547513184652 0.3847942824867229 0.37932149815933386
+0.7363871066545157 0.3824304880712534 0.7363871066545157 0.3824304880712534 0.38240362810407863
+0.7483211084666803 0.3728476423177935 0.7483211084666803 0.3728476423177935 0.3926067832744891
+0.7452818250156237 0.37526221742927307 0.7452818250156237 0.37526221742927307 0.39057897880717
+0.7393319892587424 0.3800548933215952 0.7393319892587424 0.3800548933215952 0.38536446460252516
+0.742293260193334 0.3776669703937094 0.742293260193334 0.3776669703937094 0.38811775476814464
+0.7513489925784004 0.37046491452149927 0.7513489925784004 0.37046491452149927 0.3941459155323786
+0.7544366249241538 0.3681192367529643 0.7544366249241538 0.3681192367529644 0.3949654969605851
+0.7574029262954038 0.3658099088978935 0.7574029262954038 0.3658099088978935 0.39544458855709924
+0.7602985350465107 0.36344114358822205 0.7602985350465107 0.36344114358822205 0.395788547937775
+0.7631972330460083 0.3610809734011741 0.7631972330460083 0.3610809734011741 0.39562749702596606
+0.76613134672009 0.3587896918867144 0.76613134672009 0.3587896918867144 0.39475042087582274
+0.7690476099553775 0.3564555369881126 0.7690476099553775 0.3564555369881126 0.393619939396117
+0.7719459453005707 0.35409050347470306 0.7719459453005707 0.35409050347470306 0.392244801592831
+0.7748228188248684 0.35171726930710295 0.7748228188248684 0.35171726930710295 0.39062511333711264
+0.7776980333516685 0.34941291082689385 0.7776980333516685 0.3494129108268939 0.3886108040598774
+0.7805781907000671 0.34719760054398935 0.7805781907000671 0.34719760054398935 0.38623401286901343
+0.7833891945711612 0.3451237266797884 0.7833891945711612 0.3451237266797884 0.3836359622861172
+0.7865917037395714 0.34025666484223444 0.7865917037395714 0.34025666484223444 0.3854400784000407
+0.785698981043679 0.3432968026150536 0.785698981043679 0.3432968026150536 0.38169199272862553
+0.7898719008536006 0.3389694026591761 0.7898719008536005 0.3389694026591761 0.38034777989121515
+0.7932481133582883 0.3368401113804403 0.7932481133582883 0.3368401113804403 0.37679838370304414
+0.7966360135381088 0.3347234937599857 0.7966360135381088 0.3347234937599857 0.3734433837820647
+0.8000064146560297 0.3326347240874739 0.8000064146560298 0.3326347240874739 0.37036706099213906
+0.8033759509595301 0.3305432577876095 0.8033759509595301 0.3305432577876095 0.36760540782819856
+0.8067532818940313 0.32845195001491767 0.8067532818940313 0.32845195001491767 0.3651319108445272
+0.8101392671528765 0.32636020363780355 0.8101392671528765 0.32636020363780355 0.36292104927119967
+0.8135289187657083 0.32426778242674925 0.8135289187657083 0.32426778242674925 0.3609374892222237
+0.8169193020608773 0.3221757322175442 0.8169193020608773 0.3221757322175442 0.35912338627441875
+0.8203096853560462 0.32008368200833887 0.8203096853560462 0.32008368200833887 0.3574085972760937
+0.8237000686512154 0.31799163179913376 0.8237000686512154 0.31799163179913376 0.35571542266952855
+0.8270904519463843 0.31589958158992876 0.8270904519463843 0.31589958158992876 0.3539657231411679
+0.8304808352415533 0.3138075313807237 0.8304808352415533 0.31380753138072365 0.3520861643980131
+0.8338712185367223 0.3117154811715187 0.8338712185367223 0.31171548117151865 0.3500131372476192
+0.8372616018318911 0.30962343096231365 0.8372616018318911 0.30962343096231365 0.3476971339851966
+0.8406519851270601 0.3075313807531086 0.8406519851270601 0.3075313807531086 0.3451064228678676
+0.8440423684222288 0.3054393305439037 0.8440423684222288 0.30543933054390365 0.3422299082928503
+0.8474327517173975 0.3033472803346986 0.8474327517173975 0.3033472803346986 0.339079091417785
+0.8508231350125665 0.30125523012549354 0.8508231350125665 0.30125523012549354 0.33568905434441887
+0.8542135183077354 0.29916317991628844 0.8542135183077354 0.29916317991628844 0.3321183845696077
+0.8576039016029041 0.2970711297070833 0.8576039016029041 0.2970711297070833 0.3284479428485685
+0.8609942848980733 0.2949790794978781 0.8609942848980733 0.2949790794978781 0.3247783683228418
+0.8643846681932423 0.29288702928867294 0.8643846681932423 0.29288702928867294 0.32122622483228996
+0.8677750514884113 0.2907949790794678 0.8677750514884114 0.2907949790794678 0.3179187393656459
+0.8711654347835802 0.28870292887026267 0.8711654347835802 0.28870292887026267 0.3149871840975665
+0.8745558180787492 0.2866108786610576 0.874555818078749 0.28661087866105767 0.31255911567845013
+0.8779462013739181 0.28451882845185256 0.8779462013739181 0.28451882845185256 0.31074989957669197
+0.8813365846690872 0.28242677824264745 0.8813365846690872 0.28242677824264745 0.3096541767867469
+0.884726967964256 0.2803347280334423 0.884726967964256 0.2803347280334423 0.30933811165343733
+0.8881173512594249 0.2782426778242372 0.8881173512594248 0.27824267782423723 0.30983331785331303
+0.8915077345545939 0.27615062761503206 0.8915077345545939 0.27615062761503206 0.31113323874672943
+0.8948981178497628 0.27405857740582695 0.8948981178497629 0.2740585774058269 0.31319245489759767
+0.8982885011449318 0.27196652719662184 0.8982885011449318 0.27196652719662184 0.3159289692794532
+0.9016788844401007 0.26987447698741673 0.9016788844401006 0.2698744769874168 0.31922909153203566
+0.9050692677352696 0.2677824267782116 0.9050692677352696 0.2677824267782116 0.3229542206658556
+0.9084596510304386 0.2656903765690065 0.9084596510304387 0.26569037656900646 0.32694867992026144
+0.9118500343256075 0.2635983263598014 0.9118500343256075 0.2635983263598014 0.33104779109659227
+0.9152404176207765 0.2615062761505963 0.9152404176207763 0.26150627615059635 0.3350855380273324
+0.9186308009159454 0.2594142259413912 0.9186308009159454 0.2594142259413912 0.3389013877112768
+0.9220211842111143 0.2573221757321861 0.9220211842111145 0.257322175732186 0.3423460497706387
+0.9254115675062833 0.25523012552298097 0.9254115675062833 0.25523012552298097 0.3452861219061946
+0.9288019508014522 0.25313807531377586 0.9288019508014521 0.2531380753137759 0.34760767822003696
+0.9321923340966212 0.25104602510457075 0.9321923340966212 0.25104602510457075 0.3492189136119928
+0.9355827173917901 0.24895397489536564 0.9355827173917902 0.2489539748953656 0.3500519740430008
+0.938973100686959 0.24686192468616053 0.938973100686959 0.24686192468616053 0.3500640934397948
+0.942363483982128 0.24476987447695542 0.9423634839821279 0.24476987447695545 0.3492381348631996
+0.9457538672772969 0.2426778242677503 0.9457538672772969 0.2426778242677503 0.3475826040241064
+0.9491442505724659 0.2405857740585452 0.949144250572466 0.24058577405854517 0.345131171773334
+0.9525346338676348 0.2384937238493401 0.9525346338676348 0.2384937238493401 0.3419417110596336
+0.9559250171628038 0.23640167364013498 0.9559250171628036 0.236401673640135 0.33809482425768683
+0.9593154004579727 0.23430962343092987 0.9593154004579727 0.23430962343092987 0.33369181003497245
+0.9627057837531416 0.23221757322172476 0.9627057837531418 0.23221757322172473 0.3288519975258548
+0.9660961670483106 0.23012552301251965 0.9660961670483106 0.23012552301251965 0.32370936403612277
+0.9694865503434795 0.22803347280331454 0.9694865503434794 0.22803347280331457 0.3184083579184265
+0.9728769336386485 0.22594142259410943 0.9728769336386485 0.22594142259410943 0.3130988800337989
+0.9762673169338174 0.22384937238490432 0.9762673169338175 0.2238493723849043 0.30793044520199264
+0.9796577002289864 0.2217573221756992 0.9796577002289864 0.2217573221756992 0.30304565553520574
+0.9830480835241553 0.2196652719664941 0.9830480835241552 0.21966527196649413 0.2985732671057359
+0.9864384668193242 0.217573221757289 0.9864384668193242 0.217573221757289 0.2946213002653651
+0.9898288501144932 0.21548117154808388 0.9898288501144933 0.21548117154808386 0.29127079303033815
+0.9932192334096621 0.21338912133887877 0.9932192334096621 0.21338912133887877 0.2885708735419435
+0.21757322175732233 0.9932192334096621 0.21757322175732233 0.9932192334096621 0.16528501758532613
+0.21966527196652738 0.9898288501144932 0.21966527196652738 0.9898288501144933 0.16708359201475018
+0.22175732217573244 0.9864384668193242 0.22175732217573244 0.9864384668193242 0.16914996929268114
+0.2238493723849375 0.9830480835241553 0.2238493723849375 0.9830480835241552 0.17141030181382244
+0.22594142259414252 0.9796577002289864 0.22594142259414252 0.9796577002289864 0.17378780384022227
+0.22803347280334751 0.9762673169338175 0.22803347280334751 0.9762673169338175 0.1762063947963094
+0.23012552301255262 0.9728769336386486 0.2301255230125526 0.9728769336386486 0.1785938217510558
+0.2322175732217577 0.9694865503434797 0.2322175732217577 0.9694865503434799 0.18088419469202408
+0.23430962343096257 0.966096167048311 0.23430962343096254 0.9660961670483111 0.1830199412751188
+0.2364016736401676 0.9627057837531421 0.2364016736401676 0.9627057837531421 0.18495323086167847
+0.23849372384937242 0.959315400457973 0.23849372384937242 0.959315400457973 0.18664693570415766
+0.24058577405857737 0.9559250171628039 0.24058577405857737 0.9559250171628039 0.18807519767575798
+0.24267782426778228 0.9525346338676348 0.24267782426778228 0.9525346338676348 0.18922365919490927
+0.2447698744769872 0.9491442505724659 0.2447698744769872 0.949144250572466 0.19008940255358645
+0.2468619246861922 0.9457538672772969 0.2468619246861922 0.9457538672772969 0.19068062647263492
+0.2489539748953974 0.9423634839821279 0.24895397489539742 0.9423634839821279 0.19101607470360074
+0.2510460251046027 0.9389731006869587 0.2510460251046027 0.9389731006869587 0.19112422033138157
+0.25313807531380833 0.93558271739179 0.25313807531380833 0.93558271739179 0.1910422021830652
+0.2552301255230143 0.9321923340966215 0.2552301255230143 0.9321923340966215 0.19081450743705955
+0.2573221757322203 0.928801950801453 0.2573221757322203 0.928801950801453 0.190491398225433
+0.2594142259414266 0.9254115675062851 0.25941422594142655 0.9254115675062851 0.190127090719857
+0.2615062761506331 0.9220211842111178 0.2615062761506331 0.9220211842111178 0.18977771340850483
+0.26359832635983965 0.9186308009159513 0.26359832635983965 0.9186308009159513 0.1894990964744658
+0.2656903765690457 0.915240417620787 0.2656903765690457 0.915240417620787 0.18934447414808145
+0.26778242677824987 0.9118500343256227 0.26778242677824987 0.9118500343256227 0.18936221228868297
+0.2698744769874505 0.9084596510304622 0.26987447698745054 0.9084596510304622 0.18959369798175482
+0.27196652719665043 0.9050692677352973 0.27196652719665043 0.9050692677352973 0.19007153946266261
+0.2740585774058459 0.9016788844401317 0.2740585774058459 0.9016788844401317 0.19081821709441218
+0.27615062761504466 0.8982885011449652 0.27615062761504466 0.8982885011449652 0.19184529667485636
+0.27824267782425277 0.8948981178497966 0.27824267782425277 0.8948981178497967 0.19315326733528027
+0.28033472803347076 0.8915077345546324 0.28033472803347076 0.8915077345546324 0.19473200527616388
+0.28242677824269885 0.8881173512594724 0.28242677824269885 0.8881173512594724 0.19656180261996328
+0.28451882845193543 0.8847269679643325 0.2845188284519354 0.8847269679643325 0.1986148491216336
+0.2866108786611857 0.8813365846692007 0.2866108786611857 0.8813365846692008 0.20085702176382328
+0.28870292887041926 0.8779462013740907 0.28870292887041926 0.8779462013740907 0.20324982671721334
+0.29079497907970814 0.8745558180789996 0.29079497907970814 0.8745558180789995 0.20575234788992344
+0.29288702928903 0.8711654347839236 0.29288702928903 0.8711654347839236 0.20832308072439956
+0.29497907949843233 0.8677750514889043 0.29497907949843233 0.8677750514889043 0.21092156197354103
+0.297071129707944 0.8643846681940534 0.297071129707944 0.8643846681940534 0.21350973942857618
+0.29916317991749086 0.8609942848993427 0.2991631799174908 0.8609942848993427 0.21605305534750804
+0.3012552301269213 0.85760390160508 0.3012552301269213 0.8576039016050799 0.21852124116774405
+0.3033472803360387 0.854213518310678 0.3033472803360387 0.8542135183106779 0.2208888383532516
+0.3054393305440115 0.8508231350168085 0.3054393305440115 0.8508231350168085 0.2231354715254603
+0.3075313807523003 0.8474327517214165 0.3075313807523003 0.8474327517214165 0.22524590656573026
+0.3096234309599455 0.8440423684251065 0.3096234309599455 0.8440423684251065 0.2272099294528067
+0.3117154811681145 0.8406519851279413 0.3117154811681145 0.8406519851279413 0.2290220824327018
+0.3138075313781274 0.8372616018302558 0.3138075313781274 0.8372616018302558 0.23068129345566238
+0.3158995815907664 0.8338712185329021 0.3158995815907664 0.8338712185329021 0.2321904333296887
+0.31799163180570195 0.8304808352372365 0.31799163180570195 0.8304808352372365 0.23355583290549917
+0.3200836820208572 0.8270904519444652 0.3200836820208572 0.8270904519444652 0.2347867899665632
+0.32217573223273005 0.8237000686546457 0.32217573223273005 0.8237000686546457 0.23589509232311404
+0.324267782458654 0.8203096853950148 0.324267782458654 0.8203096853950148 0.23689457992438032
+0.32635983287507453 0.8169193024331677 0.32635983287507453 0.8169193024331677 0.23780076476870496
+0.3284519435623991 0.8135289916859104 0.3284519435623991 0.8135289916859104 0.23863061306460273
+0.3305445005806788 0.8101395374943702 0.3305445005806788 0.8101395374943702 0.23940288901875476
+0.33263777202252265 0.8067537560911527 0.33263777202252265 0.8067537560911527 0.24013825875438385
+0.3347309371948685 0.8033768770688846 0.3347309371948685 0.8033768770688846 0.24085839030249526
+0.3368230103851075 0.8000146732830892 0.3368230103851075 0.8000146732830892 0.2415857164777093
+0.3389147275250381 0.7966714040703987 0.3389147275250381 0.7966714040703987 0.24234392700459417
+0.3410087876867576 0.7933503713917501 0.3410087876867576 0.7933503713917501 0.24315701028776224
+0.3431069837509354 0.7900877350911857 0.34310698375093546 0.7900877350911858 0.24405583886921187
+0.3451915853816177 0.7871611072385903 0.3451915853816177 0.7871611072385903 0.2451603683490398
+0.34973621529579413 0.7777467260413187 0.34973621529579413 0.7777467260413187 0.2468535353698094
+0.3485145111517536 0.7810242037889875 0.3485145111517536 0.7810242037889875 0.24658265366769264
+0.3471895913849299 0.7841508098515672 0.3471895913849299 0.7841508098515672 0.24625810248407554
+0.3566748028038152 0.7666271905189985 0.3566748028038152 0.7666271905189985 0.2524915068563334
+0.35555286782098766 0.7701744798608473 0.35555286782098766 0.7701744798608473 0.2517865928527094
+0.35443269023685064 0.7736921369726756 0.35443269023685064 0.7736921369726756 0.2512954572340776
+0.35329840232888504 0.7771965857249219 0.35329840232888504 0.7771965857249219 0.2509749612799281
+0.3591057226850303 0.7595543058013576 0.3591057226850303 0.7595543058013576 0.2548683543614272
+0.36019716596360407 0.7560199135233391 0.36019716596360407 0.7560199135233391 0.2562699170480653
+0.3632726250962035 0.755188426321857 0.3632726250962035 0.755188426321857 0.26035424482456543
+0.3612632462203519 0.7623191317884036 0.36126324622035183 0.7623191317884036 0.25775581839348916
+0.3600411869311701 0.7659237144045009 0.3600411869311701 0.7659237144045009 0.25657659608508593
+0.3675174378808303 0.7515650952422936 0.3675174378808303 0.7515650952422936 0.2662237941129538
+0.36653254265157165 0.7542601957591946 0.3665325426515716 0.7542601957591946 0.26454910272239945
+0.37003808118557113 0.7500511659567476 0.3700380811855712 0.7500511659567476 0.2698441593652609
+0.3705720248057502 0.7464753656369203 0.3705720248057502 0.7464753656369202 0.2714421782769047
+0.3715569975630561 0.7427929112386469 0.3715569975630561 0.7427929112386469 0.27387118616115913
+0.37815357318599974 0.7305890789952767 0.37815357318599974 0.7305890789952767 0.2882472727760905
+0.3771578805118348 0.7342376868201699 0.3771578805118348 0.7342376868201699 0.2851085084922869
+0.37616592621308814 0.7379047817912269 0.37616592621308814 0.7379047817912269 0.2820985525866568
+0.3751847900562928 0.7415905075560777 0.3751847900562928 0.7415905075560777 0.2792685440090934
+0.38246572979043575 0.7258061957466202 0.38246572979043575 0.7258061957466202 0.297102366631436
+0.3815572614362597 0.7294153121034257 0.3815572614362597 0.7294153121034257 0.29386030478617964
+0.385775344354532 0.7246459808393753 0.385775344354532 0.7246459808393753 0.302679939178379
+0.3900117219320651 0.7200142453934962 0.3900117219320651 0.7200142453934962 0.3116681119166535
+0.38905732352933287 0.7235047313807038 0.38905732352933287 0.7235047313807038 0.30812532705468976
+0.393464051425649 0.7191746626235259 0.39346405142564894 0.7191746626235259 0.3171433184891022
+0.39457792660590424 0.7157353399074265 0.39457792660590424 0.7157353399074265 0.32099338891861895
+0.39887421526357114 0.7108947729631385 0.39887421526357114 0.7108947729631385 0.33027521602663534
+0.398194154137425 0.7148450239270799 0.398194154137425 0.7148450239270799 0.32670571972219037
+0.415742237909346 0.6833407375825514 0.415742237909346 0.6833407375825514 0.3684605804393631
+0.4028109923024111 0.7059766180126653 0.4028109923024111 0.7059766180126653 0.3389172549204958
+0.40222419679848526 0.7097160535875521 0.40222419679848526 0.7097160535875521 0.335645923233556
+0.41121278925374705 0.6923669168832907 0.4112127892537471 0.6923669168832908 0.3581713739828123
+0.40730933203115005 0.6972291281402005 0.40730933203115 0.6972291281402007 0.350290388045164
+0.406655530893222 0.7009275376262557 0.406655530893222 0.7009275376262557 0.3472794551218308
+0.406117254752189 0.7047150136629788 0.406117254752189 0.7047150136629788 0.3441499674034216
+0.41054436324827315 0.6960696577122762 0.4105443632482731 0.6960696577122762 0.3552572416910358
+0.41510555863189486 0.6873341342017071 0.41510555863189486 0.6873341342017071 0.36578017141569313
+0.4144747792464831 0.6910693794086763 0.4144747792464831 0.6910693794086763 0.3630447225753532
+0.4196600465755207 0.6778147077052705 0.4196600465755207 0.6778147077052705 0.37590722690928197
+0.4191562312877823 0.6816496178373983 0.4191562312877823 0.6816496178373983 0.37356563173889823
+0.4229576698721353 0.6760948724137844 0.4229576698721353 0.6760948724137844 0.380688798745827
+0.4261729425324483 0.6743220607326386 0.4261729425324483 0.6743220607326386 0.3851003851078069
+0.4293037512859951 0.6725110751344089 0.4293037512859951 0.6725110751344089 0.38914866369877915
+0.4323430670958983 0.6706648117420583 0.43234306709589826 0.6706648117420583 0.392845397814868
+0.43528156286857533 0.6687768180385163 0.4352815628685754 0.6687768180385163 0.39621597769315936
+0.4381473883480435 0.6668491439153117 0.4381473883480435 0.6668491439153117 0.3993148294501181
+0.44092810941364613 0.6648948149830758 0.44092810941364613 0.6648948149830759 0.40214191065012445
+0.4436968836207483 0.6629995352176618 0.4436968836207483 0.6629995352176618 0.40464599169958637
+0.446454479547775 0.6459651473283424 0.446454479547775 0.6459651473283424 0.42146007335014063
+0.44665927485301254 0.6498158783490359 0.44665927485301254 0.6498158783490359 0.41784104407851236
+0.4468063315470043 0.6537334392697917 0.4468063315470043 0.6537334392697917 0.4141339256204953
+0.44664765384066524 0.6612933790796465 0.44664765384066524 0.6612933790796465 0.40667057308249327
+0.4469548158853423 0.6577267405090892 0.4469548158853423 0.6577267405090891 0.41028519399288116
+0.44347742004658935 0.6328189815528759 0.44347742004658935 0.6328189815528759 0.43358642206772174
+0.44351977105587165 0.6290111911803383 0.44351977105587165 0.6290111911803383 0.43895279146366567
+0.44636335179323006 0.6420680206951364 0.44636335179323 0.6420680206951364 0.4252915338231937
+0.4456734773559684 0.6347612243027594 0.4456734773559684 0.6347612243027594 0.432644597396109
+0.4466714568805618 0.6379996161405964 0.44667145688056176 0.6379996161405964 0.42978391538277
+0.4337992178841764 0.594014315383564 0.43379921788417647 0.5940143153835641 0.6104659851281208
+0.43437654153440575 0.5976864288092261 0.4343765415344057 0.597686428809226 0.5756558420907173
+0.43580792455844 0.6022300846653469 0.43580792455844003 0.6022300846653469 0.5390346271236125
+0.43604636085881 0.5995260401255749 0.43604636085881 0.5995260401255749 0.5597652764330261
+0.4373207956932006 0.6071274298029627 0.4373207956932007 0.6071274298029626 0.5070367875517522
+0.4379069653975553 0.6036576138356545 0.4379069653975553 0.6036576138356545 0.5279849766193316
+0.4398890665582747 0.6086260682204355 0.4398890665582747 0.6086260682204355 0.49755696920366305
+0.44020327097324063 0.6125206832164418 0.44020327097324063 0.6125206832164417 0.47997553163114504
+0.4421921468104855 0.6153520919424119 0.4421921468104855 0.6153520919424119 0.468926346356719
+0.4433275203510953 0.6210550854717029 0.44332752035109524 0.6210550854717029 0.45358061319261683
+0.4442836302961267 0.6177000449681931 0.4442836302961268 0.617700044968193 0.46173150932879015
+0.4462879205721972 0.6272422607224774 0.4462879205721972 0.6272422607224774 0.4431803767570253
+0.446452547184819 0.6231458167952668 0.446452547184819 0.6231458167952669 0.45011099607167054
+0.4378428617567185 0.591930574864218 0.43784286175671844 0.591930574864218 0.6333210997855544
+0.4416850173526781 0.5898679283262717 0.4416850173526781 0.5898679283262717 0.6529862684621482
+0.6099985155762087 0.4665120257682275 0.6099985155762085 0.4665120257682274 0.3573220033046564
+0.6132555147945953 0.4679897195963819 0.6132555147945952 0.46798971959638186 0.3320868536158766
+0.6145397035459153 0.4701378275031153 0.6145397035459153 0.4701378275031153 0.32363648455747035
+0.6068529855276856 0.4700626608591026 0.6068529855276856 0.4700626608591026 0.38331410191923015
+0.6037787730878738 0.4734007684022437 0.6037787730878738 0.4734007684022437 0.4311299746803025
+0.6172475092361702 0.4705637175602572 0.6172475092361703 0.4705637175602572 0.30418103422080467
+0.6331932017729032 0.45415638283425414 0.6331932017729032 0.45415638283425414 0.3072979184857822
+0.6302140236008655 0.4568307853454246 0.6302140236008656 0.4568307853454246 0.2968858583404929
+0.6210838647448431 0.46568284926577364 0.6210838647448432 0.4656828492657736 0.2845005174020087
+0.6195144978322206 0.46823791556029754 0.6195144978322206 0.46823791556029754 0.2880126717070046
+0.6274647813246675 0.4597299664916048 0.6274647813246675 0.4597299664916048 0.2855327002916788
+0.6308200455963517 0.4597205006889388 0.6308200455963517 0.4597205006889388 0.2670961180121284
+0.6238873155109528 0.4643560092960135 0.6238873155109528 0.46435600929601345 0.2733908952481141
+0.6264615957799908 0.46276378240678523 0.6264615957799908 0.46276378240678523 0.26787571960097345
+0.6365537585156474 0.4548345878613191 0.6365537585156474 0.4548345878613191 0.28313991372657066
+0.638928745166037 0.45226733262289326 0.6389287451660371 0.45226733262289326 0.2970716444915879
+0.6418107391989885 0.45029339314293 0.6418107391989886 0.45029339314293 0.30309491799038124
+0.6445874646082733 0.4477987924152897 0.6445874646082733 0.4477987924152897 0.3149992346532094
+0.647458089148186 0.44520068281146197 0.647458089148186 0.4452006828114619 0.3272434499463938
+0.6591526204964939 0.43760455008656557 0.6591526204964939 0.43760455008656557 0.34478660023416086
+0.655960940447419 0.43694231694352353 0.655960940447419 0.43694231694352353 0.36440175290356613
+0.650293335294152 0.4424746196952458 0.650293335294152 0.4424746196952459 0.34027440557084176
+0.6530887014595976 0.43967509072100963 0.6530887014595975 0.43967509072100963 0.3532927056959421
+0.6625446482943933 0.43794353473259623 0.6625446482943933 0.43794353473259623 0.32809525701183234
+0.6651928900065828 0.4357011428908845 0.6651928900065828 0.4357011428908845 0.33552154945281987
+0.6679952720086743 0.4333164677339276 0.6679952720086743 0.4333164677339276 0.34264760695542534
+0.6708425835803489 0.430916519835592 0.6708425835803489 0.43091651983559204 0.3488329500647398
+0.6737144044850497 0.4284971404910847 0.6737144044850497 0.4284971404910847 0.35421526591081
+0.7097538474696571 0.39949193281315676 0.7097538474696571 0.39949193281315676 0.3760551536246626
+0.6899251037886138 0.4124396219255484 0.6899251037886138 0.4124396219255484 0.3837187535125865
+0.6922723734082298 0.41062408888565405 0.6922723734082298 0.410624088885654 0.3838580017959194
+0.6947014178740165 0.40824709457619573 0.6947014178740165 0.40824709457619573 0.3862390935090145
+0.6978972054560002 0.4028291648042726 0.6978972054560001 0.4028291648042726 0.3995083688561843
+0.6971027497843258 0.40627317799061624 0.6971027497843258 0.40627317799061624 0.38676329781270846
+0.7039204429964856 0.4007423109769199 0.7039204429964857 0.4007423109769199 0.38825579646399816
+0.7013325815968758 0.4027542699868601 0.7013325815968758 0.4027542699868601 0.3879438910455286
+0.7068624219553894 0.40198057935065384 0.7068624219553894 0.40198057935065384 0.373986603669952
+0.688946324065904 0.41561658398806417 0.6889463240659038 0.41561658398806417 0.37144674052733023
+0.6856973652834318 0.41855629210418477 0.6856973652834318 0.4185562921041848 0.36801947153707754
+0.6825292548562839 0.42110181841313415 0.6825292548562839 0.42110181841313415 0.3658475695152054
+0.6795400370511429 0.4235948644574266 0.6795400370511429 0.4235948644574266 0.3627037435828502
+0.6766112256297657 0.42605847890092147 0.6766112256297657 0.42605847890092147 0.35882065696751764
+0.7218617044501795 0.393912967734204 0.7218617044501795 0.393912967734204 0.3681674205131769
+0.71891317207747 0.3960758468819221 0.7189131720774701 0.3960758468819221 0.3662994380892179
+0.712991337299847 0.40077125044810097 0.712991337299847 0.40077125044810097 0.36188762418835957
+0.715948796805291 0.39835583685259657 0.715948796805291 0.39835583685259657 0.3642445624883435
+0.7251580446197645 0.39509987231722904 0.7251580446197644 0.39509987231722904 0.3563052301804394
+0.7280561155438976 0.3928372137689056 0.7280561155438976 0.3928372137689056 0.35923141578567813
+0.730998295156648 0.39054881534425223 0.730998295156648 0.39054881534425223 0.36227415775352995
+0.7339429993313201 0.3882364936840306 0.7339429993313201 0.3882364936840306 0.3654393087453976
+0.736900852706439 0.385908775655409 0.736900852706439 0.385908775655409 0.36860194764526777
+0.7398670255067984 0.38356762479740786 0.7398670255067984 0.38356762479740786 0.3716851529175884
+0.7517369016280139 0.3740971816769376 0.7517369016280139 0.3740971816769376 0.3817552451133978
+0.7487726565496304 0.3764706164670264 0.7487726565496304 0.3764706164670264 0.3797333603999265
+0.7458076604409055 0.3788495571059202 0.7458076604409055 0.3788495571059202 0.37731089234615567
+0.7428372442335109 0.3812145757648901 0.7428372442335109 0.3812145757648901 0.3746114730195962
+0.7547242509624835 0.3717546892657093 0.7547242509624835 0.3717546892657093 0.3831980673668998
+0.7577132174872885 0.3694404937355886 0.7577132174872885 0.3694404937355886 0.38408840109890585
+0.7606568446039459 0.36711564432013377 0.7606568446039459 0.36711564432013377 0.3846267110943869
+0.7635736200962766 0.3647717906719161 0.7635736200962766 0.3647717906719161 0.3848112869118951
+0.7664971791261103 0.3624415742748685 0.7664971791261103 0.3624415742748685 0.38449081149264835
+0.7694188051229119 0.3601218113282307 0.7694188051229119 0.3601218113282307 0.3837190847839707
+0.7723424643551695 0.357775841577524 0.7723424643551695 0.357775841577524 0.3826253834247486
+0.775245058557254 0.3554583629195271 0.775245058557254 0.3554583629195271 0.3811830269106866
+0.7780961158608223 0.3531940679153232 0.7780961158608223 0.3531940679153232 0.3794817253384273
+0.780969174173684 0.35093757446003737 0.780969174173684 0.35093757446003737 0.37752134978246277
+0.783862162544215 0.34867593316018874 0.783862162544215 0.34867593316018874 0.3754012354801371
+0.786841116004058 0.34636699714612496 0.7868411160040579 0.34636699714612496 0.3731385705138144
+0.7893858364100411 0.343162453151321 0.7893858364100411 0.34316245315132093 0.3736580116428652
+0.7931689264230158 0.34103596036373846 0.7931689264230158 0.34103596036373846 0.3692332626546722
+0.7966152876252608 0.33893261044362066 0.7966152876252607 0.3389326104436207 0.3657960534747588
+0.8000029749993648 0.33682914188504426 0.8000029749993648 0.33682914188504426 0.36277887592755675
+0.8033794831145048 0.33473130982460547 0.8033794831145048 0.33473130982460547 0.3600749913652394
+0.8067555967213765 0.3326357012468651 0.8067555967213765 0.3326357012468651 0.3576723719794097
+0.8101394531573005 0.33054389699573566 0.8101394531573005 0.33054389699573566 0.35553803264764317
+0.8135289187657083 0.32845188284515964 0.8135289187657083 0.32845188284515964 0.35364922321544995
+0.8169193020608772 0.3263598326359546 0.8169193020608772 0.3263598326359545 0.35196148485751616
+0.8203096853560461 0.3242677824267494 0.820309685356046 0.3242677824267494 0.35041019067425067
+0.823700068651215 0.32217573221754425 0.823700068651215 0.32217573221754425 0.34892073624570413
+0.827090451946384 0.32008368200833925 0.8270904519463841 0.32008368200833925 0.34741505278734985
+0.830480835241553 0.3179916317991341 0.830480835241553 0.3179916317991341 0.3458168348970236
+0.833871218536722 0.315899581589929 0.833871218536722 0.315899581589929 0.34405660172508884
+0.8372616018318909 0.31380753138072387 0.8372616018318909 0.31380753138072387 0.34207633509922225
+0.8406519851270599 0.31171548117151876 0.8406519851270599 0.31171548117151876 0.33983350674810936
+0.8440423684222288 0.30962343096231376 0.8440423684222288 0.30962343096231376 0.33730436214652043
+0.8474327517173976 0.3075313807531086 0.8474327517173975 0.3075313807531086 0.33448636658808173
+0.8508231350125666 0.30543933054390365 0.8508231350125666 0.30543933054390365 0.3313997379120534
+0.8542135183077355 0.3033472803346986 0.8542135183077356 0.3033472803346986 0.32808799172557884
+0.8576039016029043 0.30125523012549354 0.8576039016029043 0.30125523012549354 0.3246174144744622
+0.8609942848980733 0.2991631799162884 0.8609942848980733 0.2991631799162884 0.3210753663230727
+0.8643846681932423 0.2970711297070833 0.8643846681932423 0.2970711297070833 0.317567312092226
+0.8677750514884114 0.2949790794978781 0.8677750514884114 0.2949790794978781 0.31421250031815107
+0.8711654347835802 0.29288702928867294 0.8711654347835802 0.29288702928867294 0.31113827504420394
+0.8745558180787492 0.29079497907946783 0.874555818078749 0.2907949790794678 0.30847312604780736
+0.8779462013739181 0.2887029288702628 0.8779462013739181 0.2887029288702628 0.3063387631218462
+0.881336584669087 0.2866108786610577 0.8813365846690872 0.2866108786610577 0.304841719823905
+0.884726967964256 0.2845188284518525 0.884726967964256 0.2845188284518525 0.3040652054994976
+0.8881173512594248 0.28242677824264745 0.8881173512594248 0.28242677824264745 0.30406206281194326
+0.8915077345545939 0.2803347280334423 0.8915077345545939 0.2803347280334423 0.3048496818004947
+0.8948981178497628 0.2782426778242372 0.8948981178497629 0.27824267782423723 0.3064075326582098
+0.8982885011449318 0.27615062761503206 0.8982885011449318 0.27615062761503206 0.30867762950230787
+0.9016788844401007 0.27405857740582695 0.9016788844401006 0.2740585774058269 0.3115678099991219
+0.9050692677352696 0.27196652719662184 0.9050692677352696 0.27196652719662184 0.3149573261053958
+0.9084596510304386 0.26987447698741673 0.9084596510304387 0.2698744769874168 0.3187039879200122
+0.9118500343256075 0.2677824267782116 0.9118500343256075 0.2677824267782116 0.32265202913540053
+0.9152404176207765 0.2656903765690065 0.9152404176207763 0.26569037656900646 0.3266399494270676
+0.9186308009159454 0.2635983263598014 0.9186308009159454 0.2635983263598014 0.3305077755097181
+0.9220211842111143 0.2615062761505963 0.9220211842111145 0.26150627615059635 0.3341033988921435
+0.9254115675062833 0.2594142259413912 0.9254115675062833 0.2594142259413912 0.33728784122210365
+0.9288019508014522 0.2573221757321861 0.9288019508014521 0.257322175732186 0.33993943998358206
+0.9321923340966212 0.25523012552298097 0.9321923340966212 0.25523012552298097 0.34195703319872045
+0.9355827173917901 0.25313807531377586 0.9355827173917902 0.2531380753137759 0.34326226033405055
+0.938973100686959 0.25104602510457075 0.938973100686959 0.25104602510457075 0.3438011014527556
+0.942363483982128 0.24895397489536564 0.9423634839821279 0.2489539748953656 0.3435447607798358
+0.9457538672772969 0.24686192468616053 0.9457538672772969 0.24686192468616053 0.3424899740810636
+0.9491442505724659 0.24476987447695542 0.949144250572466 0.24476987447695545 0.3406587879156435
+0.9525346338676348 0.2426778242677503 0.9525346338676348 0.2426778242677503 0.33809782648045733
+0.9559250171628038 0.2405857740585452 0.9559250171628036 0.24058577405854517 0.33487703042318234
+0.9593154004579727 0.2384937238493401 0.9593154004579727 0.2384937238493401 0.3310878233184942
+0.9627057837531416 0.23640167364013498 0.9627057837531418 0.236401673640135 0.3268406379349875
+0.9660961670483106 0.23430962343092987 0.9660961670483106 0.23430962343092987 0.3222617202236415
+0.9694865503434795 0.23221757322172476 0.9694865503434794 0.23221757322172473 0.3174891308202516
+0.9728769336386485 0.23012552301251965 0.9728769336386485 0.23012552301251965 0.3126678907704324
+0.9762673169338174 0.22803347280331454 0.9762673169338175 0.22803347280331457 0.30794427991055745
+0.9796577002289864 0.22594142259410943 0.9796577002289864 0.22594142259410943 0.30345939975055863
+0.9830480835241553 0.22384937238490432 0.9830480835241552 0.2238493723849043 0.29934225602722037
+0.9864384668193242 0.2217573221756992 0.9864384668193242 0.2217573221756992 0.29570278239859227
+0.9898288501144932 0.2196652719664941 0.9898288501144933 0.21966527196649413 0.292625380312216
+0.9932192334096621 0.217573221757289 0.9932192334096621 0.217573221757289 0.290163640547305
+0.2217573221757324 0.9932192334096621 0.22175732217573244 0.9932192334096621 0.16680845657116786
+0.22384937238493746 0.9898288501144932 0.2238493723849375 0.9898288501144933 0.16853118948088294
+0.2259414225941425 0.9864384668193242 0.2259414225941425 0.9864384668193242 0.17051860856506476
+0.22803347280334751 0.9830480835241553 0.22803347280334751 0.9830480835241552 0.1726982822224411
+0.2301255230125525 0.9796577002289865 0.2301255230125525 0.9796577002289865 0.17499548020516784
+0.2322175732217576 0.9762673169338175 0.2322175732217576 0.9762673169338175 0.17733672584982108
+0.2343096234309626 0.9728769336386488 0.2343096234309626 0.9728769336386488 0.17965281050306678
+0.23640167364016748 0.9694865503434796 0.23640167364016748 0.9694865503434796 0.18188121186045528
+0.2384937238493725 0.9660961670483106 0.2384937238493725 0.9660961670483106 0.18396792720373914
+0.2405857740585774 0.9627057837531418 0.24058577405857742 0.9627057837531418 0.18586877273036337
+0.24267782426778237 0.9593154004579728 0.24267782426778237 0.9593154004579728 0.18755021641952543
+0.24476987447698736 0.9559250171628038 0.24476987447698736 0.9559250171628036 0.18898981163954254
+0.24686192468619236 0.9525346338676347 0.24686192468619236 0.9525346338676347 0.1901762890157435
+0.2489539748953975 0.9491442505724658 0.2489539748953975 0.9491442505724658 0.191109350371402
+0.2510460251046028 0.9457538672772969 0.2510460251046028 0.9457538672772969 0.19179919450460756
+0.25313807531380816 0.942363483982128 0.25313807531380816 0.9423634839821279 0.19226579248822848
+0.25523012552301355 0.938973100686959 0.25523012552301355 0.938973100686959 0.19253792153915697
+0.2573221757322192 0.9355827173917906 0.2573221757322192 0.9355827173917906 0.1926519623160162
+0.259414225941425 0.932192334096622 0.259414225941425 0.932192334096622 0.192650465578608
+0.26150627615063093 0.928801950801454 0.261506276150631 0.9288019508014539 0.19258050108815672
+0.26359832635983677 0.9254115675062865 0.26359832635983677 0.9254115675062865 0.19249181466583845
+0.2656903765690423 0.9220211842111201 0.2656903765690423 0.9220211842111201 0.19243483793464045
+0.2677824267782467 0.9186308009159538 0.2677824267782467 0.918630800915954 0.1924586177682559
+0.269874476987449 0.9152404176207894 0.269874476987449 0.9152404176207894 0.19260875574556272
+0.271966527196651 0.9118500343256226 0.271966527196651 0.9118500343256226 0.19292546748590422
+0.27405857740585027 0.9084596510304555 0.2740585774058503 0.9084596510304553 0.1934418824204829
+0.2761506276150511 0.9050692677352873 0.2761506276150511 0.9050692677352873 0.19418270163497311
+0.27824267782425677 0.9016788844401179 0.27824267782425677 0.9016788844401179 0.19516331222720928
+0.28033472803346976 0.8982885011449508 0.28033472803346976 0.8982885011449507 0.19638942183138697
+0.28242677824269086 0.8948981178497878 0.28242677824269086 0.8948981178497878 0.19785723101807598
+0.28451882845191795 0.891507734554636 0.28451882845191795 0.8915077345546362 0.19955411161373604
+0.28661087866114754 0.8881173512594853 0.2866108786611475 0.8881173512594852 0.20145971408952776
+0.28870292887037224 0.8847269679643458 0.28870292887037224 0.8847269679643458 0.20354739429460691
+0.29079497907962 0.8813365846692127 0.29079497907962 0.8813365846692127 0.2057858331221364
+0.29288702928888927 0.8779462013740919 0.29288702928888927 0.8779462013740919 0.20814072258828056
+0.29497907949820085 0.8745558180790036 0.29497907949820085 0.8745558180790036 0.2105764054256882
+0.2970711297075658 0.8711654347840052 0.29707112970756583 0.8711654347840053 0.21305737790102788
+0.29916317991694347 0.8677750514890809 0.29916317991694347 0.8677750514890809 0.2155495920629916
+0.3012552301262555 0.864384668194376 0.3012552301262555 0.864384668194376 0.21802151973596476
+0.3033472803353955 0.8609942848996098 0.30334728033539543 0.8609942848996098 0.22044496343909373
+0.3054393305439297 0.857603901605112 0.30543933054392974 0.8576039016051119 0.22279561764238323
+0.30753138075263786 0.8542135183098266 0.30753138075263786 0.8542135183098266 0.22505339715106523
+0.30962343096101286 0.8508231350140566 0.30962343096101286 0.8508231350140566 0.22720255843311812
+0.31171548116966113 0.8474327517178363 0.31171548116966113 0.8474327517178363 0.2292316452467346
+0.31380753137927164 0.8440423684213368 0.31380753137927164 0.8440423684213368 0.23113329279404524
+0.31589958159026044 0.8406519851249983 0.3158995815902604 0.8406519851249982 0.23290392562394288
+0.3179916318024743 0.8372616018295241 0.3179916318024743 0.8372616018295241 0.23454338409434117
+0.32008368201486087 0.8338712185355494 0.32008368201486087 0.8338712185355494 0.23605451272424113
+0.32217573222562074 0.8304808352431298 0.32217573222562074 0.8304808352431298 0.23744274135992063
+0.32426778243293825 0.8270904519514293 0.32426778243293825 0.8270904519514293 0.23871568679758268
+0.32635983263609475 0.8237000686587951 0.32635983263609475 0.8237000686587951 0.23988279835839024
+0.32845188292206 0.820309685493541 0.32845188292206 0.820309685493541 0.24095506602867225
+0.3305439339214221 0.8169193034449269 0.33054393392142206 0.8169193034449268 0.24194480418044173
+0.3326361207025653 0.8135291042999881 0.33263612070256526 0.8135291042999881 0.2428657172554454
+0.3347291002792652 0.810140324168496 0.3347291002792652 0.810140324168496 0.24373361222409518
+0.33682291018641464 0.8067567299045889 0.33682291018641464 0.8067567299045889 0.24456598477506838
+0.3389154174055787 0.803384546402321 0.3389154174055787 0.803384546402321 0.24538037478229
+0.34100356107656954 0.8000307678339452 0.34100356107656954 0.8000307678339452 0.24619447449226173
+0.3430856410678566 0.7967044107694555 0.3430856410678566 0.7967044107694555 0.24702848388814871
+0.34515571378654125 0.7934229163276164 0.34515571378654125 0.7934229163276164 0.24790159631019046
+0.3471893486109446 0.7902280555066272 0.3471893486109446 0.7902280555066272 0.2488263671954716
+0.34911300276186896 0.7870711346965641 0.34911300276186896 0.7870711346965641 0.2497146772948621
+0.35208016082879107 0.7805532745788076 0.35208016082879107 0.7805532745788076 0.2506683762480419
+0.35074370663364157 0.7838521253702743 0.35074370663364157 0.7838521253702743 0.2503318268030407
+0.3589812495138378 0.7694710966933891 0.3589812495138378 0.7694710966933891 0.2558400461902138
+0.3579199375393674 0.7729926701747224 0.3579199375393674 0.7729926701747224 0.25532611277047007
+0.35683511119095007 0.7765108280204452 0.35683511119095007 0.7765108280204452 0.25498187633358255
+0.3557039509139751 0.7800146523426712 0.35570395091397516 0.7800146523426711 0.2547507914228255
+0.3629169694830068 0.7589949233040212 0.3629169694830067 0.7589949233040212 0.2597545711388658
+0.36565691830298613 0.7570746355042991 0.36565691830298613 0.7570746355042991 0.2632106371868438
+0.3641338460158108 0.7622697690471715 0.3641338460158108 0.7622697690471715 0.26126019269621453
+0.36315465634639155 0.7653177475917092 0.3631546563463916 0.7653177475917091 0.2602895376834042
+0.36233012726249764 0.7687193112680296 0.36233012726249764 0.7687193112680296 0.25974453408324166
+0.36966920464847164 0.7534068425246966 0.3696692046484716 0.7534068425246966 0.26877424074329065
+0.3685939741407504 0.7570875967132217 0.3685939741407504 0.7570875967132217 0.26697679981384237
+0.37272075646458025 0.7525266311130432 0.37272075646458025 0.7525266311130432 0.2727944310657895
+0.3734195081345969 0.7489254327989825 0.37341950813459684 0.7489254327989824 0.27453023399091186
+0.374244209684893 0.745274635421204 0.374244209684893 0.745274635421204 0.2767020511707868
+0.38061448027528066 0.7330634537683935 0.38061448027528066 0.7330634537683935 0.2906236539097446
+0.37967111387872005 0.7367234692396128 0.37967111387872005 0.7367234692396128 0.28750148516938917
+0.37873241037474714 0.7403999120702878 0.37873241037474714 0.7403999120702878 0.28454147144120273
+0.3778098180652201 0.7440861753191625 0.3778098180652201 0.7440861753191625 0.28180206316358203
+0.38489859369238627 0.7282478441071426 0.38489859369238627 0.7282478441071426 0.2993347345174247
+0.38401624041009125 0.7318726495338671 0.38401624041009125 0.7318726495338671 0.29603005159075607
+0.38820289994875123 0.7270593520103031 0.38820289994875123 0.7270593520103031 0.3046992414604209
+0.3922676794840027 0.7223859921017325 0.3922676794840027 0.7223859921017325 0.31335382030838566
+0.3914503238348384 0.7258631818055717 0.3914503238348384 0.7258631818055717 0.30989639246700657
+0.39495994785788247 0.7217866464137723 0.39495994785788247 0.7217866464137723 0.31734881283811656
+0.39725934390574646 0.7192724570474736 0.3972593439057465 0.7192724570474737 0.32233930819158774
+0.4016381580654995 0.713557398434149 0.4016381580654995 0.713557398434149 0.33213907937024034
+0.40110764707619584 0.7175271873858975 0.40110764707619584 0.7175271873858975 0.32844688518494997
+0.41859407671380844 0.6855715370002394 0.4185940767138084 0.6855715370002394 0.37095000237226183
+0.4055433862074504 0.7084783584174938 0.4055433862074504 0.7084783584174938 0.3407828144014609
+0.4049778833181152 0.712267039620795 0.4049778833181152 0.712267039620795 0.33722642650579204
+0.4137260847803573 0.6947318491770802 0.4137260847803573 0.6947318491770802 0.35999732701858145
+0.40996381335596616 0.699744421310999 0.40996381335596616 0.699744421310999 0.35227626395088724
+0.40943068838253 0.7034697186256301 0.40943068838253 0.7034697186256301 0.3491028475106149
+0.4088597774800935 0.7072261351576635 0.40885977748009344 0.7072261351576635 0.3456554093361835
+0.4130974507073195 0.6985240562397759 0.4130974507073195 0.6985240562397759 0.356786421393255
+0.41675737660419315 0.6934063787805713 0.41675737660419315 0.6934063787805713 0.3642416015868735
+0.4182371461500549 0.6899546825144252 0.41823714615005503 0.689954682514425 0.36808802830138004
+0.4225268722056235 0.6799025332093857 0.4225268722056235 0.6799025332093857 0.37831269368276693
+0.42210557471202464 0.6837711199399165 0.42210557471202464 0.6837711199399165 0.3757384702407199
+0.42580761459613364 0.6781031496595693 0.42580761459613364 0.6781031496595693 0.38266331456646857
+0.42900294875252604 0.676271575142791 0.42900294875252604 0.676271575142791 0.3866243455189366
+0.4321132756476705 0.6744043003439967 0.4321132756476705 0.6744043003439967 0.3902150778315658
+0.4351257516171887 0.6724920612278708 0.4351257516171887 0.6724920612278708 0.39345683987812313
+0.4380674668146205 0.670555036049915 0.4380674668146205 0.670555036049915 0.39637954670334713
+0.4409101549325945 0.6685804510526575 0.4409101549325945 0.6685804510526575 0.39900264942995617
+0.4436318176605197 0.6665712973429976 0.4436318176605197 0.6665712973429976 0.4013536171779793
+0.4493906511043388 0.6442333508838735 0.4493906511043388 0.6442333508838735 0.4245195379984317
+0.4462202562940274 0.6646495207857287 0.44622025629402734 0.6646495207857287 0.40336143803831387
+0.44869094195746906 0.6635014002294146 0.44869094195746906 0.6635014002294146 0.4042454995301121
+0.44959166517412413 0.6480110722070059 0.44959166517412413 0.6480110722070059 0.42065223263142343
+0.44985893403253613 0.6519030925125086 0.44985893403253613 0.6519030925125086 0.4166380748541734
+0.4502099169965311 0.6559860039512566 0.4502099169965312 0.6559860039512566 0.4123282361166453
+0.4504088945463067 0.6605827881305988 0.4504088945463067 0.6605827881305988 0.40730684127129774
+0.4467777560561192 0.6312161790244711 0.44677775605611914 0.6312161790244711 0.43788891078986303
+0.4490168923149514 0.628521990535849 0.4490168923149514 0.628521990535849 0.44248842733143984
+0.44932127887892437 0.6407139538659457 0.4493212788789243 0.6407139538659457 0.4281890041787159
+0.4485880692374667 0.6347136958560818 0.4485880692374667 0.6347136958560818 0.43451828574399753
+0.4496917198207102 0.6375673944846008 0.4496917198207102 0.6375673944846008 0.43173894503493715
+0.437738220467907 0.5966828003759875 0.437738220467907 0.5966828003759875 0.584106564627786
+0.4384745841789145 0.6003072731689107 0.43847458417891444 0.6003072731689106 0.5518684353631756
+0.44005036869216724 0.6051105601693859 0.44005036869216724 0.6051105601693859 0.5167894010789488
+0.4401732919966627 0.6022184490256938 0.4401732919966627 0.6022184490256938 0.5354873164401942
+0.4424424678004853 0.6094844476320446 0.4424424678004853 0.6094844476320446 0.49135599767541155
+0.44231964547926883 0.6062706756019071 0.4423196454792688 0.6062706756019071 0.5074444288127377
+0.44326933353771647 0.6123495984662392 0.44326933353771647 0.6123495984662392 0.47889591358265543
+0.4444747282338773 0.6145975671092613 0.44447472823387735 0.6145975671092613 0.47053172255436737
+0.4445354610298081 0.6099284226128401 0.4445354610298081 0.6099284226128401 0.48731981287201054
+0.44665194313232376 0.6192892108369631 0.44665194313232376 0.6192892108369631 0.4578375553410042
+0.44686232100269513 0.6155375809775847 0.44686232100269513 0.6155375809775848 0.46695684418413735
+0.44925026764241704 0.6212497337498122 0.449250267642417 0.6212497337498122 0.4540908117352875
+0.44957584877652457 0.6250579992219407 0.4495758487765245 0.6250579992219407 0.4478072123747245
+0.45148175414543273 0.6278587325253551 0.45148175414543273 0.6278587325253551 0.44437697827171074
+0.45169077163722904 0.62264865662933 0.45169077163722904 0.62264865662933 0.4519063488748863
+0.44168851569694945 0.5944341852177818 0.4416885156969494 0.5944341852177818 0.6001385737820466
+0.4454453681989843 0.5922041676686661 0.44544536819898434 0.5922041676686661 0.6125987651758528
+0.6113586923162345 0.47108593351502054 0.6113586923162345 0.4710859335150205 0.35091254495302143
+0.6144933288827884 0.4726511499893351 0.6144933288827884 0.4726511499893351 0.33142821082436175
+0.6080025557416658 0.4745076832329561 0.6080025557416658 0.47450768323295606 0.40052281198194223
+0.6047954231426856 0.47770339716973104 0.6047954231426856 0.47770339716973104 0.4676202020267463
+0.6156868016239835 0.47489112113916193 0.6156868016239835 0.47489112113916193 0.33222820768912537
+0.617932661900961 0.47299285513829314 0.617932661900961 0.47299285513829314 0.30494856376873547
+0.6206506882808709 0.47078069287350616 0.6206506882808709 0.47078069287350616 0.2797299239514915
+0.618310115524912 0.47550596458869104 0.618310115524912 0.47550596458869104 0.31276333791595584
+0.6338543454238842 0.45808781225435663 0.6338543454238842 0.45808781225435663 0.2655953730201582
+0.6327554264728976 0.46134624124505985 0.6327554264728976 0.46134624124505985 0.24380179551421147
+0.6232391796481199 0.46778362159603637 0.6232391796481199 0.4677836215960363 0.26436328910546
+0.6296908699213528 0.46295082697751094 0.6296908699213528 0.462950826977511 0.24846145295750308
+0.6268628909626373 0.46551236327028106 0.6268628909626371 0.46551236327028106 0.25007181221358393
+0.6237763786326314 0.4711116129120456 0.6237763786326314 0.4711116129120456 0.25792376637641395
+0.6379056301308739 0.4578216516104489 0.6379056301308738 0.4578216516104489 0.24831085507048653
+0.639451624885949 0.4550961255165888 0.639451624885949 0.45509612551658873 0.2665221488710911
+0.6603695703369147 0.4400654168822502 0.6603695703369147 0.4400654168822502 0.3191058433670436
+0.6422339844758919 0.45357181398871466 0.6422339844758919 0.45357181398871466 0.2686414176472573
+0.644942491691659 0.45138569786737853 0.644942491691659 0.45138569786737853 0.27805050759046734
+0.6478135817301838 0.44888735882536485 0.6478135817301838 0.44888735882536485 0.289997472120712
+0.6507336664615596 0.4462677127426225 0.6507336664615596 0.4462677127426225 0.3026776016302865
+0.6570807106724723 0.4405730844975307 0.6570807106724724 0.44057308449753074 0.3280655010034406
+0.6537704237997828 0.4434910441016296 0.6537704237997827 0.4434910441016296 0.31577069787270867
+0.663014374823323 0.4411908738747607 0.663014374823323 0.4411908738747607 0.29998121781914366
+0.6657248942754913 0.43886029842114765 0.6657248942754913 0.43886029842114765 0.3088858141156345
+0.6685289068113962 0.43654583627488597 0.6685289068113961 0.43654583627488597 0.31654995927771873
+0.671395423718253 0.4342091257510103 0.671395423718253 0.4342091257510103 0.32333912987132357
+0.6742971501746947 0.4318431447516597 0.6742971501746947 0.4318431447516597 0.3293775363408756
+0.6772237970078606 0.4294579486957056 0.6772237970078606 0.4294579486957056 0.3346410785158324
+0.7100531991765595 0.4032039791558331 0.7100531991765595 0.4032039791558331 0.35963606078054594
+0.6922287972535619 0.4140045430254705 0.6922287972535619 0.4140045430254706 0.3675286427857938
+0.6950359004345441 0.4117454210660001 0.6950359004345441 0.4117454210660001 0.36857992004977075
+0.698087848445055 0.40916829645405284 0.6980878484450549 0.4091682964540528 0.3702255183412635
+0.7005237926675415 0.4061918042778691 0.7005237926675416 0.40619180427786905 0.37558945143081873
+0.7039002655294739 0.4043182131415956 0.7039002655294739 0.4043182131415956 0.3729833295583149
+0.7070924686478971 0.4055864716865199 0.7070924686478971 0.4055864716865199 0.3578590621415438
+0.6923612318989707 0.4173421884994297 0.6923612318989707 0.4173421884994298 0.3502919886503384
+0.6893507686169006 0.41972796081068897 0.6893507686169006 0.4197279608106889 0.34830738258489186
+0.6861997408425138 0.4221530848977772 0.6861997408425138 0.4221530848977772 0.34625854982531906
+0.6831551051698738 0.42461646625219623 0.6831551051698738 0.42461646625219623 0.3430748845311468
+0.6801742293254184 0.42705070530732653 0.6801742293254184 0.42705070530732653 0.3391873310271237
+0.7132870464823708 0.40449900013444484 0.713287046482371 0.40449900013444484 0.34556183458420614
+0.7222189444266783 0.3973760975163337 0.7222189444266783 0.3973760975163337 0.3535533514781411
+0.7192555605149704 0.3996943390315178 0.7192555605149704 0.3996943390315178 0.35086793126839244
+0.7162542054675765 0.4020869581726154 0.7162542054675765 0.40208695817261547 0.34818756226721487
+0.7255204181550954 0.3985579637383841 0.7255204181550954 0.3985579637383841 0.3418360928872013
+0.7284370237002076 0.39625268206333447 0.7284370237002076 0.39625268206333447 0.34511141316121297
+0.7314150794407861 0.3939660230956943 0.7314150794407861 0.3939660230956943 0.3482894514112445
+0.7343865041385279 0.39167930905889553 0.7343865041385279 0.39167930905889553 0.3515322948774335
+0.7373715133743999 0.38938623528683713 0.7373715133743999 0.38938623528683713 0.3547596533016295
+0.7403657355823369 0.3870804246008117 0.7403657355823369 0.3870804246008117 0.3579291274940179
+0.7433638164282549 0.38475941984532375 0.7433638164282549 0.38475941984532375 0.3609821471015014
+0.7550798227840381 0.37534817443309904 0.7550798227840381 0.37534817443309904 0.3711273227396347
+0.75218845209311 0.3776975457873067 0.75218845209311 0.3776975457873067 0.36908724504883844
+0.7493020524034429 0.3800691653773571 0.7493020524034429 0.3800691653773571 0.3665678461327373
+0.7463523050411465 0.3824255610971172 0.7463523050411465 0.3824255610971172 0.36385679272828525
+0.7580367786305693 0.37306104491189807 0.7580367786305694 0.37306104491189807 0.3724085873589882
+0.7583132255021814 0.3765800919008219 0.7583132255021815 0.3765800919008219 0.36086927924267953
+0.7610290528351783 0.3707889280489322 0.7610290528351783 0.3707889280489322 0.3731122678475152
+0.7639241858064874 0.36844849869632695 0.7639241858064874 0.36844849869632695 0.3737476663322005
+0.7668570871685948 0.3661135408723579 0.7668570871685948 0.3661135408723579 0.37383897292045787
+0.7697829699701558 0.36379467413071703 0.7697829699701558 0.36379467413071703 0.3734638590117783
+0.7727070928703518 0.3614866933121194 0.7727070928703518 0.3614866933121194 0.37266450960547814
+0.7756162827493853 0.3591934261566738 0.7756162827493852 0.3591934261566738 0.3715217542055154
+0.7784769109169809 0.3569491711152947 0.7784769109169809 0.3569491711152947 0.3700950267040421
+0.7813393691846887 0.354715726700902 0.7813393691846887 0.354715726700902 0.3684241178576117
+0.7842282477144441 0.3524421023269831 0.7842282477144441 0.3524421023269831 0.3666316520429831
+0.7871663853453392 0.3499881846036419 0.7871663853453392 0.3499881846036419 0.3650115981535474
+0.7901928713122349 0.3473288793700442 0.7901928713122349 0.3473288793700442 0.36352823230508274
+0.7932599497335668 0.34517139637614636 0.7932599497335668 0.3451713963761463 0.361024103104119
+0.7966324705573372 0.3431397881717262 0.7966324705573372 0.3431397881717262 0.3577662187519665
+0.800016162060635 0.34103170564447766 0.8000161620606349 0.34103170564447766 0.35487438983743386
+0.8033855276007683 0.33892649463149754 0.8033855276007683 0.33892649463149754 0.35228555498368386
+0.8067616272856215 0.3368245215572176 0.8067616272856215 0.3368245215572176 0.34997599027857945
+0.8101416884474301 0.33472796955191625 0.8101416884474301 0.33472796955191625 0.34794388217238664
+0.8135289187657082 0.33263598326357 0.8135289187657083 0.33263598326356997 0.34616250117255615
+0.8169193020608772 0.3305439330543649 0.8169193020608772 0.3305439330543649 0.34460538212332464
+0.8203096853560461 0.3284518828451598 0.820309685356046 0.32845188284515986 0.3432188814049542
+0.823700068651215 0.3263598326359546 0.823700068651215 0.3263598326359545 0.34193289758454487
+0.827090451946384 0.3242677824267496 0.8270904519463841 0.32426778242674953 0.3406709588135172
+0.8304808352415529 0.3221757322175444 0.8304808352415529 0.3221757322175444 0.33935534686452473
+0.8338712185367219 0.3200836820083393 0.8338712185367217 0.3200836820083393 0.33791222295967666
+0.8372616018318908 0.3179916317991342 0.8372616018318908 0.3179916317991342 0.33627645863513606
+0.8406519851270599 0.3158995815899291 0.8406519851270599 0.3158995815899291 0.3343959564379469
+0.8440423684222288 0.313807531380724 0.8440423684222288 0.313807531380724 0.33223530428440545
+0.8474327517173976 0.3117154811715189 0.8474327517173975 0.311715481171519 0.3297786549699699
+0.8508231350125666 0.30962343096231376 0.8508231350125666 0.30962343096231376 0.3270317519228454
+0.8542135183077356 0.30753138075310876 0.8542135183077356 0.30753138075310876 0.324023033165663
+0.8576039016029045 0.30543933054390365 0.8576039016029045 0.30543933054390365 0.32080374105542675
+0.8609942848980734 0.30334728033469854 0.8609942848980733 0.30334728033469854 0.31744695252590066
+0.8643846681932423 0.30125523012549354 0.8643846681932423 0.30125523012549354 0.3140454333697899
+0.8677750514884113 0.2991631799162884 0.8677750514884114 0.2991631799162884 0.31070822401540216
+0.8711654347835801 0.2970711297070832 0.8711654347835801 0.2970711297070832 0.30755589931959365
+0.874555818078749 0.294979079497878 0.874555818078749 0.294979079497878 0.30471452703284146
+0.8779462013739181 0.29288702928867294 0.8779462013739181 0.29288702928867294 0.3023084887833502
+0.881336584669087 0.29079497907946783 0.8813365846690872 0.2907949790794678 0.30045251905735565
+0.884726967964256 0.2887029288702628 0.884726967964256 0.2887029288702628 0.2992435338053447
+0.8881173512594249 0.2866108786610577 0.8881173512594248 0.2866108786610577 0.2987530071382905
+0.8915077345545939 0.2845188284518525 0.8915077345545939 0.2845188284518525 0.29902074274177276
+0.8948981178497628 0.2824267782426474 0.8948981178497629 0.28242677824264734 0.3000508167766976
+0.8982885011449318 0.2803347280334423 0.8982885011449318 0.2803347280334423 0.30181022365197996
+0.9016788844401007 0.2782426778242372 0.9016788844401006 0.27824267782423723 0.3042303791047771
+0.9050692677352696 0.27615062761503206 0.9050692677352696 0.27615062761503206 0.30721122260734995
+0.9084596510304386 0.27405857740582695 0.9084596510304387 0.2740585774058269 0.31062732351903155
+0.9118500343256075 0.27196652719662184 0.9118500343256075 0.27196652719662184 0.3143352111320317
+0.9152404176207765 0.26987447698741673 0.9152404176207763 0.2698744769874168 0.3181811371887231
+0.9186308009159454 0.2677824267782116 0.9186308009159454 0.2677824267782116 0.3220086045619233
+0.9220211842111143 0.2656903765690065 0.9220211842111145 0.26569037656900646 0.3256651927486372
+0.9254115675062833 0.2635983263598014 0.9254115675062833 0.2635983263598014 0.3290084161951979
+0.9288019508014522 0.2615062761505963 0.9288019508014521 0.26150627615059635 0.3319105222566953
+0.9321923340966212 0.2594142259413912 0.9321923340966212 0.2594142259413912 0.3342622534921573
+0.9355827173917901 0.2573221757321861 0.9355827173917902 0.257322175732186 0.33597566463877127
+0.938973100686959 0.25523012552298097 0.938973100686959 0.25523012552298097 0.3369861086528569
+0.942363483982128 0.25313807531377586 0.9423634839821279 0.2531380753137759 0.3372535019296759
+0.9457538672772969 0.25104602510457075 0.9457538672772969 0.25104602510457075 0.33676295780258764
+0.9491442505724659 0.24895397489536564 0.949144250572466 0.2489539748953656 0.3355248480009109
+0.9525346338676348 0.24686192468616053 0.9525346338676348 0.24686192468616053 0.3335743191471923
+0.9559250171628038 0.24476987447695542 0.9559250171628036 0.24476987447695545 0.33097025871848723
+0.9593154004579727 0.2426778242677503 0.9593154004579727 0.2426778242677503 0.3277936744352528
+0.9627057837531416 0.2405857740585452 0.9627057837531418 0.24058577405854517 0.32414542539913566
+0.9660961670483106 0.2384937238493401 0.9660961670483106 0.2384937238493401 0.32014322656342115
+0.9694865503434795 0.23640167364013498 0.9694865503434794 0.236401673640135 0.31591784658677685
+0.9728769336386485 0.23430962343092987 0.9728769336386485 0.23430962343092987 0.3116084413376972
+0.9762673169338174 0.23221757322172476 0.9762673169338175 0.23221757322172473 0.3073570207893301
+0.9796577002289864 0.23012552301251965 0.9796577002289864 0.23012552301251965 0.3033021429946366
+0.9830480835241553 0.22803347280331454 0.9830480835241552 0.22803347280331457 0.29957206484782345
+0.9864384668193242 0.22594142259410943 0.9864384668193242 0.22594142259410943 0.2962777410891296
+0.9898288501144932 0.22384937238490432 0.9898288501144933 0.2238493723849043 0.29350621820502837
+0.9932192334096621 0.2217573221756992 0.9932192334096621 0.2217573221756992 0.29131507108963617
+0.22594142259414246 0.9932192334096621 0.2259414225941425 0.9932192334096621 0.16822324294095173
+0.22803347280334751 0.9898288501144932 0.22803347280334751 0.9898288501144933 0.1698783862532903
+0.2301255230125525 0.9864384668193242 0.2301255230125525 0.9864384668193242 0.1717957516611913
+0.2322175732217575 0.9830480835241553 0.2322175732217575 0.9830480835241552 0.17390475882875464
+0.2343096234309625 0.9796577002289865 0.2343096234309625 0.9796577002289865 0.17613314432507002
+0.2364016736401675 0.9762673169338176 0.2364016736401675 0.9762673169338177 0.17841039344401668
+0.2384937238493725 0.9728769336386486 0.2384937238493725 0.9728769336386486 0.18067062160286107
+0.2405857740585775 0.9694865503434795 0.2405857740585775 0.9694865503434794 0.1828548550041298
+0.24267782426778248 0.9660961670483106 0.24267782426778248 0.9660961670483106 0.1849127253734816
+0.24476987447698748 0.9627057837531418 0.24476987447698748 0.9627057837531418 0.18680363087557003
+0.2468619246861925 0.9593154004579727 0.2468619246861925 0.9593154004579727 0.18849742999518207
+0.2489539748953976 0.9559250171628038 0.24895397489539758 0.9559250171628036 0.1899747345392886
+0.2510460251046027 0.9525346338676348 0.2510460251046027 0.9525346338676348 0.19122685875430087
+0.253138075313808 0.949144250572466 0.253138075313808 0.949144250572466 0.1922554690761525
+0.25523012552301333 0.945753867277297 0.25523012552301333 0.945753867277297 0.19307196678191849
+0.25732217573221877 0.9423634839821281 0.25732217573221877 0.9423634839821281 0.19369662601454088
+0.2594142259414241 0.9389731006869596 0.2594142259414241 0.9389731006869596 0.19415750365246784
+0.26150627615062966 0.9355827173917913 0.26150627615062966 0.9355827173917913 0.19448913609807364
+0.2635983263598352 0.932192334096623 0.2635983263598352 0.932192334096623 0.1947310416850024
+0.26569037656904043 0.9288019508014558 0.26569037656904043 0.9288019508014557 0.1949260560714138
+0.26778242677824504 0.9254115675062882 0.2677824267782451 0.9254115675062881 0.19511854113736318
+0.2698744769874484 0.9220211842111217 0.2698744769874484 0.9220211842111218 0.19535252418571947
+0.27196652719665154 0.9186308009159538 0.27196652719665154 0.918630800915954 0.19566984134373
+0.2740585774058532 0.9152404176207857 0.2740585774058532 0.9152404176207857 0.19610837375941004
+0.27615062761505554 0.9118500343256168 0.27615062761505554 0.911850034325617 0.1967004737590561
+0.2782426778242602 0.9084596510304475 0.2782426778242602 0.9084596510304476 0.19747167711395877
+0.280334728033469 0.905069267735279 0.280334728033469 0.9050692677352788 0.19843978474426585
+0.28242677824268203 0.9016788844401121 0.282426778242682 0.9016788844401121 0.19961437251709827
+0.2845188284518998 0.898288501144951 0.2845188284518998 0.898288501144951 0.2009967538209023
+0.2866108786611221 0.8948981178497925 0.2866108786611221 0.8948981178497925 0.20258038113237084
+0.28870292887034105 0.8915077345546386 0.28870292887034105 0.8915077345546386 0.20435163583295055
+0.2907949790795736 0.8881173512594921 0.2907949790795736 0.8881173512594921 0.20629092575517635
+0.2928870292888121 0.8847269679643476 0.2928870292888121 0.8847269679643476 0.20837399131461218
+0.2949790794980735 0.8813365846692212 0.2949790794980735 0.881336584669221 0.21057331508745092
+0.29707112970736166 0.8779462013741429 0.29707112970736166 0.8779462013741429 0.2128595353197391
+0.29916317991665375 0.8745558180791048 0.2991631799166537 0.8745558180791048 0.21520277829704848
+0.3012552301259064 0.8711654347841801 0.3012552301259064 0.8711654347841801 0.21757384415219772
+0.30334728033506697 0.8677750514892222 0.30334728033506697 0.8677750514892221 0.2199452020660981
+0.3054393305439053 0.8643846681944014 0.3054393305439053 0.8643846681944014 0.22229177120230162
+0.3075313807528452 0.8609942848991564 0.3075313807528452 0.8609942848991564 0.22459148139387738
+0.3096234309616032 0.857603901603677 0.3096234309616032 0.857603901603677 0.2268256217895024
+0.31171548117050546 0.8542135183079549 0.31171548117050546 0.8542135183079548 0.2289789963131769
+0.31380753137991135 0.8508231350120807 0.31380753137991135 0.8508231350120807 0.23103991221452944
+0.3158995815900424 0.8474327517162826 0.31589958159004233 0.8474327517162826 0.23300003273958483
+0.3179916318008294 0.8440423684209271 0.3179916318008294 0.8440423684209272 0.23485412751621484
+0.32008368201173926 0.8406519851263488 0.32008368201173926 0.8406519851263488 0.23659975505176267
+0.3221757322218474 0.8372616018325907 0.3221757322218474 0.8372616018325907 0.23823691106001085
+0.3242677824302042 0.8338712185392412 0.3242677824302042 0.8338712185392412 0.23976767434065846
+0.3263598326364003 0.8304808352454637 0.3263598326364003 0.8304808352454637 0.24119587872248574
+0.328451882841083 0.8270904519502843 0.328451882841083 0.8270904519502843 0.2425268352153511
+0.33054393304606133 0.8237000686531032 0.33054393304606133 0.8237000686531032 0.24376712305195783
+0.3326359835749824 0.8203096858626865 0.3326359835749824 0.8203096858626865 0.24492446219976435
+0.33472803611910434 0.8169193062825318 0.33472803611910434 0.8169193062825318 0.24600767245650798
+0.3368203243197085 0.8135293177024908 0.3368203243197085 0.8135293177024908 0.24702706949088224
+0.33891369701272883 0.8101415416793117 0.33891369701272883 0.8101415416793117 0.24799540475935708
+0.34100781224028315 0.806760602658267 0.34100781224028315 0.806760602658267 0.24892686356134267
+0.3430987533389689 0.8033935411027945 0.3430987533389689 0.8033935411027945 0.24983458860436183
+0.3451809841808255 0.8000475760046294 0.3451809841808255 0.8000475760046294 0.2507315566288956
+0.3472499366459561 0.7967310067852496 0.3472499366459561 0.7967310067852496 0.25163375389642045
+0.34929384147713444 0.7934486281907946 0.34929384147713444 0.7934486281907946 0.2525499483293203
+0.35127440335924387 0.7901769741880952 0.35127440335924387 0.7901769741880952 0.2534461576617253
+0.3530893812008359 0.7868577360242306 0.35308938120083594 0.7868577360242305 0.2542040298676799
+0.35447173031025464 0.7834447621169035 0.35447173031025464 0.7834447621169035 0.25451507296758086
+0.3613631282555921 0.7722505643019576 0.3613631282555921 0.7722505643019576 0.25925223641246636
+0.36034952094187056 0.7757902503399383 0.36034952094187056 0.7757902503399383 0.25890509937101824
+0.3592976764710554 0.7793319978867084 0.3592976764710554 0.7793319978867084 0.2586935027931321
+0.35820035421936414 0.7829084617547413 0.35820035421936414 0.7829084617547412 0.2585893159043988
+0.36688315245351477 0.7603549672795581 0.36688315245351477 0.7603549672795581 0.2647101469840866
+0.3665570921381469 0.7643041722891164 0.3665570921381469 0.7643041722891164 0.2643818291406257
+0.36567992050145354 0.7678741389276039 0.36567992050145354 0.7678741389276039 0.2636228230602273
+0.3647740868344109 0.7714326796362957 0.3647740868344109 0.7714326796362957 0.26308356637160585
+0.37184455004166805 0.7560793789180786 0.37184455004166805 0.7560793789180787 0.2710957261517128
+0.37066533064490437 0.7596448927474833 0.37066533064490437 0.7596448927474833 0.26932418647956896
+0.3752129843215659 0.7550701618106787 0.3752129843215659 0.7550701618106787 0.27534486255589363
+0.37609405593875994 0.7514483961789965 0.37609405593875994 0.7514483961789965 0.27723031464523135
+0.3769224477527232 0.7477742926911592 0.37692244775272327 0.7477742926911591 0.27934472813469874
+0.3831241653281637 0.7355245226754102 0.3831241653281637 0.7355245226754102 0.2928056698022192
+0.3822270239018411 0.7391962527648009 0.3822270239018411 0.7391962527648009 0.28971625937982476
+0.3813304259083387 0.7428843233562193 0.3813304259083387 0.7428843233562193 0.2868150427266545
+0.38044103118693856 0.746585451618304 0.38044103118693856 0.746585451618304 0.2841516018661748
+0.38736575111878785 0.7306577610790185 0.38736575111878785 0.7306577610790185 0.3013170988229781
+0.3865247969349758 0.7342947892130346 0.3865247969349758 0.7342947892130346 0.29799964529742834
+0.3906611001489699 0.7293941186191021 0.3906611001489699 0.7293941186191021 0.30647799340841925
+0.3946258390237092 0.7246850072098471 0.3946258390237092 0.7246850072098471 0.31485376989085423
+0.3939022586518017 0.7280702407613999 0.3939022586518017 0.7280702407613999 0.3115084920376426
+0.39755101856895414 0.722928197087008 0.39755101856895414 0.722928197087008 0.3199069797305389
+0.40053383314772395 0.721402596495962 0.40053383314772395 0.721402596495962 0.32469635479501563
+0.40445085179920454 0.7160943131204304 0.40445085179920454 0.7160943131204304 0.33353275364934737
+0.40386375176688555 0.719924054809427 0.40386375176688555 0.719924054809427 0.3296727172650313
+0.42176814322678974 0.6875453953183581 0.42176814322678974 0.6875453953183581 0.3730809072008788
+0.4082805836068641 0.7109900823502278 0.4082805836068641 0.7109900823502278 0.3420075059324945
+0.407734752729247 0.7147683218781123 0.407734752729247 0.7147683218781123 0.3382287348233113
+0.41156290155496844 0.7097276114358081 0.41156290155496844 0.7097276114358081 0.3464668519224172
+0.41956703090828473 0.6930236747832689 0.41956703090828473 0.6930236747832689 0.3672226994282038
+0.4162697496221278 0.6969547060378904 0.41626974962212776 0.6969547060378903 0.361292737588472
+0.4127453501563026 0.7022464819121873 0.4127453501563026 0.7022464819121873 0.35374053565081626
+0.41223028311282145 0.7059873121037796 0.41223028311282145 0.7059873121037796 0.3502708648686474
+0.4157600122308428 0.7009403972258132 0.41576001223084275 0.7009403972258132 0.35781607931512655
+0.4190391151278909 0.6959648108599761 0.4190391151278909 0.6959648108599761 0.364624157544633
+0.4218075431419367 0.6911811623734558 0.42180754314193664 0.6911811623734558 0.370622591747932
+0.4254573685713082 0.6819228554283467 0.4254573685713083 0.6819228554283469 0.38005410968061853
+0.42513232396794737 0.6857190465504952 0.42513232396794737 0.6857190465504952 0.3772860465034799
+0.42870500023326724 0.6800574772038205 0.42870500023326724 0.6800574772038205 0.3839355646408074
+0.43187714728455145 0.6781725619157922 0.43187714728455145 0.6781725619157922 0.3874184383159176
+0.4349588184134734 0.6762421226990538 0.4349588184134734 0.6762421226990538 0.39052952369573996
+0.4379721729363099 0.674291789133583 0.4379721729363099 0.674291789133583 0.3932842979366267
+0.4408879049583337 0.672300290699822 0.4408879049583337 0.672300290699822 0.3957135577502928
+0.4437080529224315 0.6702876640485508 0.4437080529224315 0.6702876640485508 0.39783332620431927
+0.44644404575087765 0.6682966442504461 0.44644404575087765 0.6682966442504461 0.39962181331744734
+0.45217666426598524 0.6424724190272911 0.4521766642659852 0.6424724190272911 0.4273049368596155
+0.4524470270631236 0.6461609934410153 0.4524470270631236 0.6461609934410153 0.423193524721243
+0.44904042633748154 0.666330144310687 0.4490404263374815 0.6663301443106872 0.40110069475793303
+0.45141530024395593 0.6639782015329412 0.4514153002439559 0.6639782015329412 0.40298238795203783
+0.4527426564452683 0.6499868260079572 0.4527426564452683 0.6499868260079572 0.41885945190720925
+0.4531446579945137 0.6538852414262937 0.4531446579945137 0.6538852414262938 0.4142746755545083
+0.45368615041662974 0.6577950487999878 0.4536861504166297 0.6577950487999878 0.40940824063107734
+0.4539850432441843 0.6618359933495116 0.45398504324418437 0.6618359933495116 0.4042904381587364
+0.45096423160534715 0.6312373656194583 0.4509642316053472 0.6312373656194582 0.43994775789262164
+0.4521263205913581 0.6388821331389075 0.4521263205913581 0.6388821331389075 0.4313406984407873
+0.4517497737060934 0.6355003955646049 0.4517497737060934 0.6355003955646049 0.43515640811158013
+0.4541194150889044 0.6292009812913696 0.45411941508890447 0.6292009812913696 0.4436866988513853
+0.4417727470139555 0.5991993384179681 0.44177274701395547 0.599199338417968 0.5561016341462214
+0.4426617293327241 0.6028175399133896 0.44266172933272413 0.6028175399133896 0.5276270760969376
+0.4444421909944264 0.6072092523887649 0.44444219099442644 0.607209252388765 0.4996776120163762
+0.44445652820856474 0.6045678741980524 0.44445652820856474 0.6045678741980524 0.5135308694723305
+0.4464100577077016 0.6119082608867253 0.44641005770770154 0.6119082608867253 0.4783055637425706
+0.44667719981925824 0.6084198253095559 0.44667719981925824 0.6084198253095559 0.49113148422168956
+0.448928967117442 0.6131876415481687 0.44892896711744207 0.6131876415481687 0.4723292338385013
+0.4497018465046615 0.6170789626363863 0.44970184650466155 0.6170789626363863 0.4624067167166571
+0.451941510218861 0.6197535862188606 0.45194151021886103 0.6197535862188605 0.456723918141364
+0.4535130083606564 0.6253003436721982 0.45351300836065633 0.6253003436721983 0.44863003978536675
+0.45416381984384435 0.6218418761655671 0.4541638198438443 0.6218418761655671 0.4535895526943406
+0.4568793830731335 0.627184878889184 0.4568793830731335 0.627184878889184 0.44711660151749605
+0.44563653855943264 0.5967539826997699 0.4456365385594326 0.59675398269977 0.5664190244196116
+0.44930201508972595 0.5943769732030274 0.44930201508972595 0.5943769732030274 0.5725904764582066
+0.6124328913114596 0.4757104813088003 0.6124328913114595 0.4757104813088003 0.36753015253828375
+0.6154876593698705 0.47739380342628734 0.6154876593698705 0.4773938034262874 0.3499593199736759
+0.608960123918425 0.47897930169189395 0.608960123918425 0.47897930169189395 0.4332386854105082
+0.6056266495008812 0.4820399206173209 0.6056266495008812 0.4820399206173209 0.5117706968946059
+0.6166290668141814 0.4796074018409423 0.6166290668141814 0.4796074018409423 0.35450119472155506
+0.61872439961383 0.4779524268957672 0.61872439961383 0.4779524268957673 0.3228703132125208
+0.6212072270194443 0.47356401937628034 0.6212072270194443 0.4735640193762803 0.2811995338976739
+0.6208219436213825 0.47624156155635644 0.6208219436213825 0.47624156155635644 0.29484620131591704
+0.6245879430202056 0.4734777910580987 0.6245879430202056 0.4734777910580987 0.25539754280223453
+0.6362325907670449 0.46142759958459767 0.6362325907670449 0.4614275995845976 0.2258603501884173
+0.6333529614314974 0.46421552254400383 0.6333529614314974 0.46421552254400383 0.22103379233208773
+0.6268986215726837 0.4688039079943378 0.6268986215726837 0.4688039079943378 0.23888718812493903
+0.630085517822803 0.46659824079964 0.630085517822803 0.46659824079964 0.22660823827229468
+0.6270856602702324 0.47172225143640567 0.6270856602702324 0.47172225143640567 0.23553404003885656
+0.6397434197020136 0.4601389485314725 0.6397434197020136 0.4601389485314725 0.2199558365300213
+0.6417245878966269 0.45739147043827655 0.6417245878966268 0.4573914704382766 0.23515601593781305
+0.660055497397891 0.4430150412197979 0.660055497397891 0.4430150412197979 0.29542362018959906
+0.6450827519696111 0.4551540858362216 0.6450827519696111 0.4551540858362216 0.24171716776532223
+0.6481217012364153 0.4526051183195194 0.6481217012364153 0.4526051183195194 0.2534287270002759
+0.6510379156976495 0.45006543876937694 0.6510379156976495 0.45006543876937694 0.26590674719427265
+0.6540286530994041 0.44748713225265596 0.6540286530994041 0.44748713225265596 0.27831214049569936
+0.657070459862707 0.4449906102955748 0.657070459862707 0.4449906102955748 0.28929638201127944
+0.6395279865071141 0.46304274381715005 0.6395279865071141 0.46304274381715 0.19876571795134393
+0.6632164974139144 0.4442869154583353 0.6632164974139144 0.4442869154583353 0.2739700401626995
+0.6660766117248295 0.4421583873394451 0.6660766117248295 0.44215838733944507 0.2817735152790353
+0.6689692391953412 0.4397947578084669 0.6689692391953413 0.43979475780846683 0.2905882818753677
+0.6718789927345944 0.4375108045554501 0.6718789927345944 0.43751080455545016 0.29792586213240263
+0.6748153637542056 0.4351978724612026 0.6748153637542056 0.4351978724612026 0.30457818975501344
+0.6777754991109588 0.43286479174029874 0.6777754991109588 0.43286479174029874 0.3104788264404896
+0.6807567138976003 0.43050775265977403 0.6807567138976003 0.43050775265977403 0.3156778516565626
+0.7103433655531478 0.4068841648081527 0.7103433655531478 0.4068841648081527 0.3431913446409272
+0.6953690462308018 0.4151223812080086 0.6953690462308018 0.41512238120800854 0.3511126648711787
+0.698381654664538 0.4127295002210879 0.698381654664538 0.41272950022108784 0.3526048203069901
+0.7011699675628261 0.41022067281586105 0.7011699675628261 0.41022067281586105 0.35527982316792434
+0.7040604117773145 0.4078654147911609 0.7040604117773145 0.40786541479116084 0.3569150521096232
+0.707349798347587 0.4092496654834634 0.707349798347587 0.4092496654834634 0.3411873826503163
+0.695561926600349 0.4185959575115157 0.695561926600349 0.4185959575115157 0.33333086018761726
+0.6926183110774207 0.4209000223567046 0.6926183110774207 0.4209000223567046 0.3311031654010579
+0.6896963347595285 0.42328621945418893 0.6896963347595285 0.42328621945418893 0.3280061749209548
+0.6867324225560352 0.42570619052864006 0.6867324225560352 0.42570619052864006 0.3243970129374322
+0.6837493148665615 0.4281207131685067 0.6837493148665615 0.4281207131685067 0.3202819799452697
+0.7136452166323493 0.40818989449917376 0.7136452166323491 0.4081898944991737 0.32912844959100157
+0.7166395981756057 0.4056889455207532 0.7166395981756057 0.40568894552075324 0.3323573928596803
+0.7226050702914524 0.4009153425850504 0.7226050702914524 0.4009153425850504 0.3384838418346999
+0.7196502292241699 0.4033069222720878 0.7196502292241699 0.4033069222720878 0.33524125965796087
+0.7258990695964779 0.40204488175760195 0.7258990695964779 0.40204488175760195 0.3271867355351179
+0.7288108208208182 0.39965352808694155 0.7288108208208182 0.39965352808694155 0.33101183861637856
+0.731800445121671 0.39737764987741303 0.731800445121671 0.39737764987741303 0.334329921855127
+0.7347936559094488 0.3951150373523366 0.7347936559094488 0.3951150373523366 0.33765289611029403
+0.7378010651108187 0.3928530213239297 0.7378010651108187 0.3928530213239297 0.3409506895562562
+0.7408230596021377 0.3905845485266355 0.7408230596021377 0.3905845485266355 0.34418167821723533
+0.7438611527923915 0.3882957795747474 0.7438611527923915 0.3882957795747474 0.3473192380753484
+0.7468976421572604 0.3859948505726977 0.7468976421572604 0.3859948505726977 0.35028908819625704
+0.7554892190961328 0.37889917337965623 0.7554892190961328 0.37889917337965623 0.3588524596197446
+0.7527586857698444 0.38130054969717264 0.7527586857698444 0.38130054969717264 0.35599298506451577
+0.7499023542455776 0.383675538727139 0.7499023542455775 0.38367553872713905 0.3530925133129697
+0.7584663592333978 0.37998784507159755 0.7584663592333979 0.3799878450715975 0.3497138134379649
+0.7615037068344395 0.37446291894838557 0.7615037068344394 0.3744629189483856 0.36111354748597074
+0.7615881767973872 0.37782122865565043 0.7615881767973872 0.37782122865565043 0.35060017146399985
+0.764342146738561 0.37220846375638145 0.764342146738561 0.37220846375638145 0.3619978824793781
+0.7671974262914693 0.3697852469889169 0.7671974262914693 0.3697852469889169 0.3629274377617015
+0.7701317216707416 0.3674603722546406 0.7701317216707416 0.3674603722546406 0.3629476084462518
+0.7730444365350378 0.3651757281512742 0.7730444365350378 0.3651757281512742 0.36250050986469967
+0.7759607745023356 0.3629074442168243 0.7759607745023356 0.3629074442168243 0.3616466970511298
+0.778829927504371 0.36068814532390814 0.778829927504371 0.36068814532390814 0.36048553081756246
+0.7816820009530591 0.35850060177797555 0.7816820009530591 0.35850060177797555 0.35905055655088436
+0.7845513480747585 0.35630490861244124 0.7845513480747585 0.35630490861244124 0.3574217338004399
+0.7874714757738212 0.3540396715701563 0.7874714757738212 0.3540396715701563 0.35571234009312885
+0.7904669966191809 0.35166895779582047 0.7904669966191809 0.35166895779582047 0.3539972085847065
+0.7935518378140237 0.34945248260240563 0.7935518378140237 0.34945248260240563 0.35179765966573356
+0.7967535550639567 0.3473279603247141 0.7967535550639567 0.3473279603247141 0.34926598250713564
+0.800061770773031 0.34523253174766594 0.800061770773031 0.34523253174766594 0.3466440398611263
+0.8034073879340711 0.34312882241819415 0.803407387934071 0.34312882241819415 0.34421488791470733
+0.8067735691222109 0.34101964630573117 0.8067735691222108 0.34101964630573117 0.3420405456871709
+0.8101482264251544 0.3389153352230181 0.8101482264251544 0.3389153352230181 0.34013481994601774
+0.8135308247926959 0.33681988495286 0.8135308247926959 0.33681988495286 0.33848086098204044
+0.8169193020608772 0.33472803347277513 0.8169193020608772 0.33472803347277513 0.33706146632237766
+0.8203096853560461 0.33263598326357 0.820309685356046 0.33263598326356997 0.3358406823322366
+0.823700068651215 0.33054393305436486 0.823700068651215 0.33054393305436486 0.3347568372088107
+0.827090451946384 0.3284518828451598 0.8270904519463841 0.32845188284515986 0.3337365293184644
+0.8304808352415529 0.3263598326359547 0.8304808352415529 0.3263598326359547 0.33270215014641025
+0.8338712185367219 0.3242677824267496 0.8338712185367217 0.32426778242674953 0.3315770293037223
+0.8372616018318908 0.3221757322175445 0.8372616018318908 0.3221757322175445 0.33029038696407387
+0.8406519851270597 0.32008368200833937 0.8406519851270599 0.3200836820083394 0.3287818877123944
+0.8440423684222287 0.31799163179913426 0.8440423684222287 0.31799163179913426 0.3270056125927021
+0.8474327517173976 0.31589958158992915 0.8474327517173975 0.3158995815899291 0.3249333220330742
+0.8508231350125666 0.31380753138072404 0.8508231350125666 0.31380753138072404 0.32255692253537843
+0.8542135183077355 0.3117154811715189 0.8542135183077356 0.311715481171519 0.3198900710864842
+0.8576039016029045 0.3096234309623138 0.8576039016029045 0.3096234309623138 0.31696885495673355
+0.8609942848980734 0.3075313807531087 0.8609942848980733 0.30753138075310865 0.3138514757557209
+0.8643846681932423 0.30543933054390365 0.8643846681932423 0.30543933054390365 0.31061685319055726
+0.8677750514884113 0.30334728033469854 0.8677750514884114 0.30334728033469854 0.3073620568717477
+0.8711654347835802 0.30125523012549343 0.8711654347835802 0.30125523012549343 0.30419848764677343
+0.8745558180787492 0.2991631799162884 0.874555818078749 0.2991631799162884 0.3012467789219479
+0.8779462013739181 0.2970711297070832 0.8779462013739181 0.2970711297070832 0.2986304869956844
+0.8813365846690872 0.294979079497878 0.8813365846690872 0.294979079497878 0.2964687928311831
+0.884726967964256 0.29288702928867294 0.884726967964256 0.29288702928867294 0.2948686340732349
+0.8881173512594248 0.2907949790794679 0.8881173512594248 0.2907949790794679 0.29391688960746376
+0.8915077345545939 0.2887029288702627 0.8915077345545939 0.2887029288702627 0.2936733911141292
+0.8948981178497628 0.2866108786610576 0.8948981178497629 0.28661087866105767 0.2941655710385937
+0.8982885011449318 0.2845188284518525 0.8982885011449318 0.2845188284518525 0.2953854287160822
+0.9016788844401007 0.2824267782426474 0.9016788844401006 0.28242677824264734 0.2972892091184827
+0.9050692677352696 0.2803347280334423 0.9050692677352696 0.2803347280334423 0.2997998035551744
+0.9084596510304386 0.2782426778242372 0.9084596510304387 0.27824267782423723 0.30281149969577537
+0.9118500343256075 0.27615062761503206 0.9118500343256075 0.27615062761503206 0.30619642851578316
+0.9152404176207765 0.27405857740582695 0.9152404176207763 0.2740585774058269 0.30981193532678725
+0.9186308009159454 0.27196652719662184 0.9186308009159454 0.27196652719662184 0.31350813995410004
+0.9220211842111143 0.26987447698741673 0.9220211842111145 0.2698744769874168 0.3171351006878584
+0.9254115675062833 0.2677824267782116 0.9254115675062833 0.2677824267782116 0.3205491937591715
+0.9288019508014522 0.2656903765690065 0.9288019508014521 0.26569037656900646 0.32361850941079945
+0.9321923340966212 0.2635983263598014 0.9321923340966212 0.2635983263598014 0.32622721384436826
+0.9355827173917901 0.2615062761505963 0.9355827173917902 0.26150627615059635 0.32827892249989915
+0.938973100686959 0.2594142259413912 0.938973100686959 0.2594142259413912 0.32969917867529824
+0.942363483982128 0.2573221757321861 0.9423634839821279 0.257322175732186 0.33043714390379053
+0.9457538672772969 0.25523012552298097 0.9457538672772969 0.25523012552298097 0.3304665951907015
+0.9491442505724659 0.25313807531377586 0.949144250572466 0.2531380753137759 0.32978629934844955
+0.9525346338676348 0.25104602510457075 0.9525346338676348 0.25104602510457075 0.32841980337223836
+0.9559250171628038 0.24895397489536564 0.9559250171628036 0.2489539748953656 0.3264146466395203
+0.9593154004579727 0.24686192468616053 0.9593154004579727 0.24686192468616053 0.3238409688506398
+0.9627057837531416 0.24476987447695542 0.9627057837531418 0.24476987447695545 0.32078946007777165
+0.9660961670483106 0.2426778242677503 0.9660961670483106 0.2426778242677503 0.3173685801238398
+0.9694865503434795 0.2405857740585452 0.9694865503434794 0.24058577405854517 0.3137009695939676
+0.9728769336386485 0.2384937238493401 0.9728769336386485 0.2384937238493401 0.3099189927326696
+0.9762673169338174 0.23640167364013498 0.9762673169338175 0.236401673640135 0.3061594013343068
+0.9796577002289864 0.23430962343092987 0.9796577002289864 0.23430962343092987 0.30255719725779656
+0.9830480835241553 0.23221757322172476 0.9830480835241552 0.23221757322172473 0.2992388989539488
+0.9864384668193242 0.23012552301251965 0.9864384668193242 0.23012552301251965 0.2963155729764999
+0.9898288501144932 0.22803347280331454 0.9898288501144933 0.22803347280331457 0.2938761458042994
+0.9932192334096621 0.22594142259410943 0.9932192334096621 0.22594142259410943 0.2919816203427515
+0.2301255230125525 0.9932192334096621 0.2301255230125525 0.9932192334096621 0.1695497416469127
+0.2322175732217575 0.9898288501144933 0.2322175732217575 0.9898288501144933 0.17114685234225968
+0.2343096234309625 0.9864384668193242 0.2343096234309625 0.9864384668193242 0.17300444009966062
+0.2364016736401675 0.9830480835241553 0.2364016736401675 0.9830480835241552 0.17505419201692238
+0.2384937238493725 0.9796577002289865 0.2384937238493725 0.9796577002289865 0.17722668422455246
+0.2405857740585775 0.9762673169338175 0.2405857740585775 0.9762673169338175 0.1794546651824445
+0.2426778242677825 0.9728769336386485 0.2426778242677825 0.9728769336386485 0.18167578077802038
+0.2447698744769875 0.9694865503434794 0.2447698744769875 0.9694865503434794 0.1838346986242392
+0.24686192468619259 0.9660961670483106 0.24686192468619259 0.9660961670483106 0.18588464977008498
+0.24895397489539764 0.9627057837531418 0.24895397489539764 0.9627057837531418 0.18778844052819252
+0.2510460251046028 0.9593154004579727 0.2510460251046028 0.9593154004579727 0.1895190005573921
+0.2531380753138079 0.9559250171628038 0.2531380753138079 0.9559250171628036 0.1910595327282529
+0.25523012552301305 0.9525346338676349 0.255230125523013 0.9525346338676349 0.19240332210259736
+0.25732217573221833 0.9491442505724661 0.25732217573221833 0.9491442505724662 0.1935532505074127
+0.25941422594142366 0.9457538672772973 0.25941422594142366 0.9457538672772973 0.19452105300736322
+0.261506276150629 0.9423634839821285 0.261506276150629 0.9423634839821285 0.19532634510887179
+0.2635983263598342 0.9389731006869603 0.2635983263598342 0.9389731006869603 0.1959954458731146
+0.26569037656903954 0.9355827173917921 0.26569037656903954 0.9355827173917922 0.19656002274425163
+0.2677824267782442 0.9321923340966239 0.2677824267782442 0.9321923340966239 0.19705558876890808
+0.26987447698744826 0.9288019508014564 0.2698744769874483 0.9288019508014563 0.19751989143387413
+0.271966527196652 0.9254115675062881 0.271966527196652 0.9254115675062881 0.19799124343390814
+0.2740585774058551 0.9220211842111193 0.2740585774058551 0.9220211842111193 0.19850685751331246
+0.27615062761505843 0.9186308009159504 0.27615062761505843 0.9186308009159504 0.19910125774444978
+0.278242677824263 0.9152404176207809 0.278242677824263 0.915240417620781 0.19980484555063968
+0.2803347280334696 0.911850034325612 0.2803347280334696 0.911850034325612 0.2006426979708272
+0.28242677824267864 0.9084596510304438 0.28242677824267864 0.9084596510304438 0.2016336664334266
+0.2845188284518906 0.9050692677352782 0.2845188284518905 0.9050692677352782 0.20278982639745677
+0.28661087866110524 0.9016788844401141 0.28661087866110524 0.9016788844401141 0.20411630310349424
+0.28870292887031934 0.8982885011449522 0.28870292887031934 0.8982885011449522 0.20561146943741268
+0.29079497907954094 0.8948981178497958 0.29079497907954094 0.8948981178497958 0.20726748263234204
+0.2928870292887666 0.8915077345546419 0.2928870292887666 0.8915077345546419 0.2090711013797039
+0.29497907949800256 0.888117351259497 0.29497907949800256 0.888117351259497 0.21100470717369293
+0.29707112970725064 0.8847269679643769 0.29707112970725064 0.8847269679643769 0.21304744511950593
+0.29916317991649943 0.8813365846692777 0.2991631799164995 0.8813365846692777 0.21517640000908742
+0.3012552301257249 0.8779462013742374 0.3012552301257249 0.8779462013742375 0.21736773176862226
+0.3033472803349007 0.8745558180791795 0.3033472803349007 0.8745558180791795 0.21959770809044069
+0.3054393305439045 0.8711654347841918 0.3054393305439045 0.8711654347841918 0.22184358862423134
+0.3075313807529646 0.8677750514889814 0.30753138075296466 0.8677750514889814 0.22408433224957766
+0.30962343096192896 0.8643846681936477 0.30962343096192896 0.8643846681936477 0.22630111499257485
+0.3117154811709683 0.8609942848981853 0.3117154811709683 0.8609942848981852 0.22847766006254364
+0.31380753138027134 0.8576039016026407 0.31380753138027134 0.8576039016026407 0.23060039279234426
+0.31589958158995673 0.8542135183071319 0.31589958158995673 0.8542135183071319 0.23265844192927085
+0.3179916317999943 0.8508231350118488 0.3179916317999943 0.8508231350118488 0.23464351489527466
+0.3200836820101148 0.8474327517169691 0.3200836820101148 0.8474327517169691 0.2365496785750412
+0.32217573221984297 0.8440423684225227 0.322175732219843 0.8440423684225227 0.23837307913810005
+0.3242677824286817 0.8406519851283077 0.3242677824286817 0.8406519851283077 0.24011163455021364
+0.32635983263639895 0.8372616018339017 0.32635983263639895 0.8372616018339017 0.24176473192283487
+0.3284518828432942 0.833871218538803 0.32845188284329424 0.833871218538803 0.24333295880303965
+0.3305439330502625 0.8304808352426875 0.3305439330502625 0.8304808352426875 0.24481789303885718
+0.33263598325851523 0.8270904519456718 0.33263598325851523 0.8270904519456718 0.24622197011026428
+0.3347280334689983 0.8237000686484138 0.3347280334689983 0.8237000686484138 0.2475484399647371
+0.33682008454706264 0.8203096867360035 0.33682008454706264 0.8203096867360035 0.2488014187288059
+0.33891214016055554 0.816919312096749 0.33891214016055554 0.816919312096749 0.24998603187214338
+0.3410044889886721 0.8135296427434989 0.3410044889886721 0.8135296427434989 0.2511091132616156
+0.3430978726549905 0.8101433008798954 0.3430978726549905 0.8101433008798954 0.25218017841275103
+0.3451914207525708 0.8067655093900998 0.3451914207525708 0.8067655093900999 0.25321011957816436
+0.34728021766357203 0.8034030193077552 0.34728021766357203 0.8034030193077552 0.25420862981228337
+0.3493582590320164 0.8000605913174904 0.3493582590320164 0.8000605913174904 0.25518601533697355
+0.35142281923811836 0.7967372773251801 0.35142281923811836 0.7967372773251801 0.2561565168029181
+0.35347034029634167 0.7934158209842556 0.35347034029634167 0.7934158209842556 0.2571295337737666
+0.3554898205939646 0.7900455932583655 0.35548982059396467 0.7900455932583655 0.25809147888416956
+0.3570119171325045 0.7864787812492288 0.3570119171325045 0.7864787812492288 0.2584922290639033
+0.36382737022209105 0.7750020668112443 0.36382737022209105 0.7750020668112443 0.26271613360457174
+0.3628479097382739 0.7785726584026152 0.3628479097382739 0.7785726584026152 0.262497851318312
+0.3618402063890416 0.7821492541340539 0.3618402063890416 0.7821492541340539 0.2624107030663975
+0.3608334697226014 0.7858322077993553 0.3608334697226014 0.7858322077993553 0.26248974366786554
+0.36982132121599914 0.7632291383966079 0.36982132121599914 0.7632291383966079 0.2682080746763857
+0.3690989105503171 0.7668985442260852 0.3690989105503171 0.766898544226085 0.2675212878076223
+0.36818464879448176 0.770538174019702 0.36818464879448176 0.770538174019702 0.2668549165394078
+0.3672794335366126 0.7741390626931048 0.3672794335366126 0.7741390626931048 0.26642549516798897
+0.3742439537996211 0.7586753848659523 0.3742439537996211 0.7586753848659523 0.2736471333002615
+0.3733027298487109 0.7622976079423904 0.3733027298487109 0.7622976079423904 0.27227262926571405
+0.3777044064048074 0.7576687799780085 0.3777044064048074 0.7576687799780085 0.27778372245371297
+0.37865710089054955 0.7539910964416761 0.37865710089054955 0.7539910964416761 0.27964861173135475
+0.37955978102353555 0.750293676726435 0.37955978102353555 0.750293676726435 0.2817635998320549
+0.38567377230497146 0.7379607581244954 0.38567377230497146 0.7379607581244954 0.2947912418919394
+0.3848139040960224 0.7416496197551908 0.3848139040960224 0.7416496197551908 0.2917441298385697
+0.3839473037876549 0.7453613345605804 0.3839473037876549 0.7453613345605804 0.28890544256133394
+0.38307166276409815 0.749099332710757 0.38307166276409815 0.749099332710757 0.2863113020720118
+0.3898687597951027 0.7330080186241469 0.3898687597951027 0.7330080186241469 0.30307918274442486
+0.38906625070302475 0.7366652061133072 0.38906625070302475 0.7366652061133072 0.2997607548540077
+0.39316239638089323 0.7316655992813773 0.39316239638089323 0.7316655992813773 0.3080421410942444
+0.39709710392453146 0.7265392700246849 0.39709710392453146 0.726539270024685 0.31656354799506564
+0.39641214389105867 0.7302615202026191 0.39641214389105867 0.7302615202026191 0.31289931950846
+0.4001231538253278 0.7251228355551667 0.4001231538253278 0.7251228355551667 0.3211943549530081
+0.4032994228757087 0.7237014016243926 0.4032994228757087 0.7237014016243926 0.32582915779912525
+0.4071854785470068 0.7185619495524815 0.40718547854700676 0.7185619495524814 0.3343192667780834
+0.4065900253960784 0.7223217959663476 0.4065900253960784 0.7223217959663476 0.3303354999432999
+0.42489238340939683 0.6895157113394454 0.4248923834093969 0.6895157113394453 0.37435470094799195
+0.4110095060086895 0.7134969082539012 0.4110095060086895 0.7134969082539012 0.34259303326828855
+0.4104924674042345 0.7172905577778167 0.4104924674042345 0.7172905577778167 0.3386058777841065
+0.4147883881065477 0.7084930496694709 0.41478838810654767 0.7084930496694709 0.35052563048632823
+0.41421609963251355 0.7122191125732407 0.41421609963251355 0.7122191125732407 0.3465880086548377
+0.4219939735173478 0.6946113393879161 0.42199397351734774 0.6946113393879161 0.36820475763817795
+0.41889334491682684 0.699368226966337 0.41889334491682684 0.699368226966337 0.36180432061621737
+0.4159898531483358 0.704812985967126 0.41598985314833575 0.704812985967126 0.3548523670500082
+0.41845773691931565 0.702442984107129 0.4184577369193157 0.702442984107129 0.35884128363340434
+0.41771896404743103 0.7079019113604261 0.41771896404743103 0.7079019113604261 0.3533150279381226
+0.42174312895240534 0.6981892339586557 0.42174312895240534 0.6981892339586557 0.36507617892360106
+0.424835724824888 0.6931563958219207 0.424835724824888 0.6931563958219207 0.3714473958769151
+0.428418284940617 0.6838632739120601 0.428418284940617 0.6838632739120601 0.3810590564465764
+0.42814664481917397 0.6876884524614416 0.42814664481917397 0.6876884524614416 0.377965044710249
+0.4316402208782044 0.6819659324664032 0.4316402208782044 0.6819659324664032 0.3844300288869778
+0.4347852640465523 0.6800193652394086 0.4347852640465523 0.6800193652394086 0.38741271099596886
+0.4378640263680647 0.678053477221721 0.4378640263680647 0.678053477221721 0.39000565820440486
+0.4408494028105789 0.6760440266752236 0.4408494028105789 0.6760440266752236 0.3922460114187148
+0.4437451311408604 0.6740045403670557 0.4437451311408604 0.6740045403670557 0.39415313548041886
+0.4465481439769107 0.6719445020322569 0.4465481439769107 0.6719445020322569 0.3957481212145693
+0.44924667183378914 0.6698546120364427 0.44924667183378914 0.6698546120364427 0.3970830043235481
+0.45486170665014203 0.6405672641197253 0.4548617066501421 0.6405672641197252 0.4300088779370203
+0.4552339716262106 0.6442174840404188 0.45523397162621054 0.6442174840404188 0.4255851622930988
+0.4555496505654339 0.6480428787039139 0.4555496505654339 0.6480428787039139 0.4208405502448563
+0.4518373968064003 0.6676466474292966 0.4518373968064003 0.6676466474292965 0.3983516215544561
+0.45441555800660005 0.6655436821212428 0.45441555800660005 0.6655436821212427 0.3992208594764725
+0.45594622699449583 0.6518782698342285 0.4559462269944959 0.6518782698342286 0.4158817378925063
+0.4564244391364464 0.6557622096396888 0.4564244391364464 0.6557622096396888 0.41060404022828295
+0.4568257468411892 0.6596718172537123 0.4568257468411892 0.6596718172537123 0.40509277787544157
+0.45714698299075923 0.663482961133444 0.45714698299075923 0.663482961133444 0.39958010555371354
+0.45437334173999155 0.63322508906309 0.4543733417399915 0.63322508906309 0.43878326662802997
+0.4546425236064979 0.6370128366036173 0.4546425236064979 0.6370128366036173 0.43424137945828994
+0.45698757491510567 0.6312472344925257 0.4569875749151056 0.6312472344925258 0.4419110435507842
+0.4569597828975647 0.6387330626814708 0.4569597828975647 0.6387330626814708 0.432321475677826
+0.4459074869611296 0.6015428763741648 0.44590748696112964 0.6015428763741647 0.5291890338559105
+0.44692976902374626 0.6050519541150852 0.4469297690237463 0.6050519541150852 0.5062610643197432
+0.4489156798505454 0.6096736062638798 0.4489156798505454 0.6096736062638798 0.48331590714735645
+0.4488194050464358 0.6067743894838148 0.4488194050464358 0.6067743894838148 0.4945251476378109
+0.4516488026753598 0.6138521171790303 0.45164880267535973 0.6138521171790304 0.46871275823924646
+0.4513053238233543 0.6105850457633637 0.45130532382335437 0.6105850457633637 0.4775629061355367
+0.45260756378860034 0.6166949751420161 0.4526075637886003 0.616694975142016 0.46220517093614927
+0.4540666869618994 0.6188059324512968 0.45406668696189934 0.6188059324512968 0.45823722613806755
+0.4538362316821053 0.6141104423800561 0.4538362316821053 0.6141104423800561 0.4668449595054506
+0.45654055864280835 0.6194864379101185 0.45654055864280835 0.6194864379101185 0.45741521611111596
+0.4567047168225756 0.623249357302965 0.4567047168225756 0.623249357302965 0.4521772338816394
+0.459539832161812 0.6249057229581731 0.459539832161812 0.6249057229581733 0.45069695578886776
+0.46007895582264063 0.628738062019488 0.4600789558226407 0.6287380620194879 0.4457506687817148
+0.46201585589628075 0.6261641984711039 0.46201585589628075 0.6261641984711039 0.4493308657002542
+0.4496857213257539 0.5989126244385583 0.4496857213257539 0.5989126244385582 0.5348289743730205
+0.45324880233243703 0.5963817442763292 0.4532488023324371 0.5963817442763292 0.5364635035592823
+0.6133747572322354 0.4803245543614129 0.6133747572322354 0.48032455436141286 0.39561453883514014
+0.6097316626866266 0.4834770114051974 0.6097316626866266 0.4834770114051974 0.4708710719103513
+0.6062690397811089 0.4864107324406517 0.6062690397811089 0.48641073244065164 0.5544964466089742
+0.6163536280952342 0.48209050169933 0.6163536280952342 0.48209050169933 0.37619538696116045
+0.6192844972698907 0.4802513441568248 0.6192844972698907 0.4802513441568248 0.33222010059714974
+0.6217731859521416 0.4781642878686836 0.6217731859521417 0.4781642878686836 0.2964095652056347
+0.6235733284252891 0.4757462312484074 0.6235733284252891 0.4757462312484075 0.27009508472914784
+0.6265568016649982 0.474771030970256 0.6265568016649982 0.474771030970256 0.2440528682254504
+0.6333355530743295 0.4677340458286898 0.6333355530743295 0.4677340458286898 0.20404670348855336
+0.6364883657010334 0.465340277089692 0.6364883657010334 0.465340277089692 0.19855512835686032
+0.6303722099743172 0.47037277818301687 0.6303722099743173 0.47037277818301687 0.21490769640530405
+0.6291577096248714 0.47335907560399093 0.6291577096248714 0.47335907560399093 0.2228634179941813
+0.6336873570435388 0.47067612118930713 0.6336873570435388 0.47067612118930713 0.19455266219970943
+0.6423709172285982 0.46093868893956264 0.6423709172285982 0.46093868893956264 0.20232718174395722
+0.6453423648334475 0.45863674121930686 0.6453423648334474 0.4586367412193068 0.2095039299474971
+0.6602935022726836 0.44644618649441314 0.6602935022726836 0.44644618649441314 0.2655008701201254
+0.6483189474500496 0.45631027335622315 0.6483189474500496 0.45631027335622315 0.2187924285716187
+0.651279244925229 0.4538187313454522 0.651279244925229 0.4538187313454522 0.23066876487475038
+0.6542712982389858 0.45129133735550536 0.6542712982389859 0.45129133735550536 0.2431228401306493
+0.6572879929983795 0.4488159402246864 0.6572879929983796 0.44881594022468635 0.2549440887404613
+0.6398021208707727 0.4663229333780126 0.6398021208707726 0.4663229333780126 0.17741482460187677
+0.6424494932849669 0.4641107385266453 0.6424494932849668 0.46411073852664536 0.17883407525829717
+0.6634751750043923 0.4475693946977885 0.6634751750043923 0.4475693946977885 0.2463545245326382
+0.6663839192888178 0.44534157693362 0.6663839192888178 0.44534157693362 0.2557631916631163
+0.6693102402461788 0.4430891295512267 0.6693102402461788 0.4430891295512267 0.264622668210569
+0.6722856765011276 0.44082349379238694 0.6722856765011276 0.44082349379238694 0.2726928133967208
+0.675265262582594 0.4385549833135229 0.675265262582594 0.4385549833135229 0.2799680445164148
+0.6782629175211916 0.4362718329808737 0.6782629175211916 0.4362718329808737 0.2864876529320895
+0.6812824924744669 0.4339673804123428 0.6812824924744669 0.4339673804123428 0.2922892770914931
+0.6843234349424305 0.43162065744704553 0.6843234349424305 0.43162065744704553 0.2975230285366896
+0.7106400587751232 0.4105687698268901 0.7106400587751232 0.4105687698268901 0.32657671025414053
+0.6985683191628199 0.41630109192044995 0.6985683191628199 0.4163010919204499 0.33503770758958235
+0.7015073659517861 0.4139744092729558 0.7015073659517861 0.41397440927295576 0.33697221483920914
+0.7043911327420617 0.41158149970528324 0.7043911327420617 0.4115814997052833 0.3393217625050284
+0.7075874522120007 0.41290302128570583 0.7075874522120006 0.41290302128570583 0.3244539307160102
+0.6957465164070658 0.4220693061883686 0.6957465164070658 0.4220693061883685 0.3153155100241609
+0.6987073068454284 0.4198334636256135 0.6987073068454284 0.4198334636256135 0.317555298023559
+0.6929930881817098 0.4243785016760359 0.6929930881817098 0.4243785016760359 0.3117281436836801
+0.6902449591517873 0.4268252716219849 0.6902449591517873 0.4268252716219849 0.3069777096927
+0.6873454599209972 0.4292404309706327 0.687345459920997 0.42924043097063264 0.30229073668875367
+0.713915040926068 0.41189683615058076 0.713915040926068 0.41189683615058076 0.3127678690407016
+0.7169719916022549 0.40948622910877885 0.7169719916022549 0.40948622910877885 0.31580951530169865
+0.7200635630025665 0.4069417527407374 0.7200635630025665 0.40694175274073746 0.3194674586475628
+0.7230880211244987 0.4045103343362082 0.7230880211244987 0.4045103343362082 0.32295209526828733
+0.7263388422821533 0.40538581554615893 0.7263388422821534 0.40538581554615893 0.31301555802678477
+0.7291665387971817 0.4030396473702099 0.7291665387971817 0.40303964737021 0.3169970551725836
+0.7321666987833665 0.4007680341771243 0.7321666987833665 0.4007680341771243 0.32047494737570853
+0.7351687373652909 0.3985342566944064 0.7351687373652909 0.3985342566944064 0.323869685146358
+0.7381897529245233 0.3963058814139615 0.7381897529245233 0.3963058814139615 0.3272276189446359
+0.7412339050006338 0.3940754076593773 0.7412339050006338 0.3940754076593773 0.33050905753918597
+0.7442998728861073 0.39183154201973786 0.7442998728861073 0.39183154201973786 0.3336897114715352
+0.7474008653353562 0.3895582629451761 0.7474008653353562 0.3895582629451761 0.33673106245823653
+0.7505023761513989 0.38727431317837646 0.7505023761513989 0.38727431317837646 0.33954563599650506
+0.7561342559745745 0.382480669088196 0.7561342559745744 0.38248066908819606 0.34584637161102755
+0.7535362663818657 0.38498073466688354 0.7535362663818655 0.3849807346668835 0.3421827989205433
+0.759062031509665 0.38282871838583654 0.759062031509665 0.38282871838583654 0.3393609589358935
+0.7614551459031618 0.38122919090237206 0.7614551459031618 0.381229190902372 0.3400530250714055
+0.7649363450747504 0.37623356096609545 0.7649363450747505 0.37623356096609545 0.3488878106003877
+0.7639191881790461 0.37952457465444955 0.7639191881790461 0.37952457465444955 0.34075507287374207
+0.7675140981311909 0.3733776953202979 0.7675140981311909 0.3733776953202979 0.3520411789445293
+0.7682606431101222 0.3764113972107399 0.7682606431101222 0.3764113972107399 0.34160654144501457
+0.7704789481728608 0.3710878244878877 0.7704789481728608 0.3710878244878877 0.3522646011926467
+0.7733646399565705 0.36883523263953877 0.7733646399565705 0.36883523263953877 0.35216687216952763
+0.7762653652658612 0.3666020871124365 0.7762653652658612 0.3666020871124365 0.35162600278827494
+0.7791738562914816 0.36438599154958023 0.7791738562914815 0.36438599154958023 0.35070989549776815
+0.78200292513139 0.36225587464359 0.78200292513139 0.36225587464359 0.3495074357102302
+0.7848402247433793 0.3601428280135328 0.7848402247433793 0.3601428280135328 0.34805764360914265
+0.7877233914122681 0.35801343962151 0.7877233914122681 0.35801343962151 0.3464129110041554
+0.7906924854769367 0.355820436460541 0.7906924854769367 0.355820436460541 0.34464519912756547
+0.7937476466855 0.3536764264185615 0.7937476466855 0.3536764264185615 0.34259052538356444
+0.7968961735565708 0.3515420243726441 0.7968961735565708 0.3515420243726441 0.340397076996029
+0.8001354576254259 0.3494309929606463 0.8001354576254259 0.3494309929606463 0.33811644509462363
+0.8034422068060935 0.34734118651111834 0.8034422068060935 0.3473411865111183 0.3358753886569407
+0.8067913508541235 0.3452194730460702 0.8067913508541235 0.3452194730460702 0.33388042420745995
+0.8101584355218409 0.34310722104331814 0.8101584355218409 0.34310722104331814 0.33212032222709365
+0.8135355608733853 0.3410050797678182 0.8135355608733853 0.3410050797678182 0.3306111822513415
+0.8169206254312643 0.33891173392799834 0.8169206254312643 0.33891173392799834 0.32933972515458976
+0.8203099005702622 0.33681998114128814 0.8203099005702622 0.33681998114128814 0.3282862238529571
+0.8237000787017369 0.33472802984860633 0.8237000787017369 0.33472802984860633 0.32740232408660347
+0.827090451946384 0.33263598326357 0.8270904519463841 0.33263598326356997 0.3266198378356537
+0.8304808352415529 0.3305439330543649 0.8304808352415529 0.3305439330543649 0.32586282220142304
+0.8338712185367219 0.3284518828451598 0.8338712185367217 0.32845188284515986 0.3250532957498063
+0.8372616018318908 0.3263598326359547 0.8372616018318908 0.3263598326359547 0.32411631456219886
+0.8406519851270597 0.3242677824267496 0.8406519851270599 0.32426778242674953 0.32298470739163715
+0.8440423684222287 0.3221757322175445 0.8440423684222287 0.3221757322175445 0.32160331302891426
+0.8474327517173976 0.32008368200833937 0.8474327517173975 0.3200836820083394 0.31993257822215776
+0.8508231350125666 0.31799163179913426 0.8508231350125666 0.31799163179913426 0.3179514166230017
+0.8542135183077355 0.31589958158992915 0.8542135183077356 0.3158995815899291 0.31565926008871253
+0.8576039016029045 0.31380753138072404 0.8576039016029045 0.31380753138072404 0.31307724656193203
+0.8609942848980734 0.3117154811715189 0.8609942848980733 0.311715481171519 0.31024848642964103
+0.8643846681932423 0.3096234309623138 0.8643846681932423 0.3096234309623138 0.3072373376179845
+0.8677750514884113 0.3075313807531087 0.8677750514884114 0.30753138075310865 0.3041276073898231
+0.8711654347835802 0.3054393305439036 0.8711654347835802 0.3054393305439036 0.30101959737123024
+0.8745558180787492 0.3033472803346985 0.874555818078749 0.30334728033469854 0.298025931667453
+0.8779462013739181 0.3012552301254934 0.8779462013739181 0.3012552301254934 0.2952661705585507
+0.881336584669087 0.29916317991628827 0.8813365846690872 0.2991631799162882 0.29286032496949926
+0.884726967964256 0.29707112970708316 0.884726967964256 0.29707112970708316 0.29092154966268785
+0.8881173512594249 0.29497907949787805 0.8881173512594248 0.2949790794978781 0.2895484870561314
+0.8915077345545939 0.29288702928867294 0.8915077345545939 0.29288702928867294 0.28881791667482265
+0.8948981178497628 0.29079497907946783 0.8948981178497629 0.2907949790794678 0.2887784776801689
+0.8982885011449318 0.2887029288702627 0.8982885011449318 0.2887029288702627 0.289446215006119
+0.9016788844401007 0.2866108786610576 0.9016788844401006 0.28661087866105767 0.29080252359550035
+0.9050692677352696 0.2845188284518525 0.9050692677352696 0.2845188284518525 0.2927947517272425
+0.9084596510304386 0.2824267782426474 0.9084596510304387 0.28242677824264734 0.29533934723582195
+0.9118500343256075 0.2803347280334423 0.9118500343256075 0.2803347280334423 0.298327088921393
+0.9152404176207765 0.2782426778242372 0.9152404176207763 0.27824267782423723 0.30162972367894914
+0.9186308009159454 0.27615062761503206 0.9186308009159454 0.27615062761503206 0.30510726467157095
+0.9220211842111143 0.27405857740582695 0.9220211842111145 0.2740585774058269 0.30861528056829823
+0.9254115675062833 0.27196652719662184 0.9254115675062833 0.27196652719662184 0.31201166830780375
+0.9288019508014522 0.26987447698741673 0.9288019508014521 0.2698744769874168 0.31516259185411805
+0.9321923340966212 0.2677824267782116 0.9321923340966212 0.2677824267782116 0.31794744018807414
+0.9355827173917901 0.2656903765690065 0.9355827173917902 0.26569037656900646 0.3202627844308547
+0.938973100686959 0.2635983263598014 0.938973100686959 0.2635983263598014 0.3220253911448678
+0.942363483982128 0.2615062761505963 0.9423634839821279 0.26150627615059635 0.3231743832523373
+0.9457538672772969 0.2594142259413912 0.9457538672772969 0.2594142259413912 0.3236726431681203
+0.9491442505724659 0.2573221757321861 0.949144250572466 0.257322175732186 0.32350753601303145
+0.9525346338676348 0.25523012552298097 0.9525346338676348 0.25523012552298097 0.32269100311592647
+0.9559250171628038 0.25313807531377586 0.9559250171628036 0.2531380753137759 0.3212590437072365
+0.9593154004579727 0.25104602510457075 0.9593154004579727 0.25104602510457075 0.319270570140508
+0.9627057837531416 0.24895397489536564 0.9627057837531418 0.2489539748953656 0.316805592855438
+0.9660961670483106 0.24686192468616053 0.9660961670483106 0.24686192468616053 0.313962669873864
+0.9694865503434795 0.24476987447695542 0.9694865503434794 0.24476987447695545 0.31085554768206475
+0.9728769336386485 0.2426778242677503 0.9728769336386485 0.2426778242677503 0.30760893355347546
+0.9762673169338174 0.2405857740585452 0.9762673169338175 0.24058577405854517 0.3043533824488885
+0.9796577002289864 0.2384937238493401 0.9796577002289864 0.2384937238493401 0.3012193619489428
+0.9830480835241553 0.23640167364013498 0.9830480835241552 0.236401673640135 0.2983306777723962
+0.9864384668193242 0.23430962343092987 0.9864384668193242 0.23430962343092987 0.2957975904655314
+0.9898288501144932 0.23221757322172476 0.9898288501144933 0.23221757322172473 0.2937101052258109
+0.9932192334096621 0.23012552301251965 0.9932192334096621 0.23012552301251965 0.29213203099879875
+0.2343096234309625 0.9932192334096621 0.2343096234309625 0.9932192334096621 0.17080983239550065
+0.2364016736401675 0.9898288501144933 0.2364016736401675 0.9898288501144933 0.17235947447622854
+0.2384937238493725 0.9864384668193242 0.2384937238493725 0.9864384668193242 0.17416861014629126
+0.2405857740585775 0.9830480835241553 0.2405857740585775 0.9830480835241552 0.17617157930247726
+0.2426778242677825 0.9796577002289864 0.2426778242677825 0.9796577002289864 0.17830212034359272
+0.24476987447698753 0.9762673169338174 0.24476987447698753 0.9762673169338175 0.18049647874529698
+0.2468619246861926 0.9728769336386485 0.24686192468619259 0.9728769336386485 0.18269595498433758
+0.2489539748953977 0.9694865503434795 0.2489539748953977 0.9694865503434794 0.1848488566266471
+0.2510460251046027 0.9660961670483106 0.2510460251046027 0.9660961670483106 0.1869118758600896
+0.25313807531380783 0.9627057837531416 0.2531380753138079 0.9627057837531418 0.18885094566315871
+0.25523012552301294 0.9593154004579727 0.25523012552301294 0.9593154004579727 0.19064164033161116
+0.2573221757322181 0.9559250171628038 0.2573221757322181 0.9559250171628036 0.19226918588373668
+0.2594142259414233 0.9525346338676349 0.2594142259414233 0.9525346338676349 0.19372813897212215
+0.26150627615062855 0.9491442505724664 0.26150627615062855 0.9491442505724664 0.19502178391851302
+0.26359832635983377 0.9457538672772977 0.26359832635983377 0.9457538672772977 0.196161289384543
+0.26569037656903877 0.9423634839821292 0.26569037656903877 0.9423634839821292 0.19716466074028924
+0.2677824267782436 0.9389731006869607 0.2677824267782436 0.9389731006869607 0.19805552218755199
+0.26987447698744815 0.9355827173917924 0.26987447698744815 0.9355827173917924 0.1988617642254086
+0.27196652719665243 0.9321923340966239 0.27196652719665243 0.9321923340966239 0.1996140966401592
+0.2740585774058562 0.9288019508014552 0.2740585774058562 0.9288019508014552 0.20034455388983094
+0.2761506276150602 0.925411567506286 0.2761506276150602 0.925411567506286 0.2010850071127663
+0.27824267782426476 0.9220211842111167 0.27824267782426476 0.9220211842111167 0.20186574324605353
+0.28033472803347054 0.9186308009159473 0.28033472803347054 0.9186308009159473 0.2027141749706822
+0.2824267782426777 0.9152404176207787 0.2824267782426777 0.9152404176207787 0.20365374365952613
+0.2845188284518865 0.9118500343256112 0.2845188284518865 0.9118500343256112 0.2047030700161718
+0.28661087866109675 0.9084596510304447 0.28661087866109675 0.9084596510304447 0.20587539342107378
+0.2887029288703077 0.9050692677352792 0.28870292887030763 0.9050692677352793 0.20717832205910555
+0.2907949790795221 0.9016788844401168 0.2907949790795221 0.9016788844401168 0.2086138936947233
+0.29288702928873916 0.8982885011449562 0.29288702928873916 0.8982885011449561 0.21017892423690773
+0.29497907949796165 0.8948981178498007 0.29497907949796165 0.8948981178498007 0.21186560092492493
+0.2970711297071895 0.8915077345546587 0.2970711297071895 0.8915077345546587 0.21366226156076
+0.29916317991641667 0.8881173512595278 0.29916317991641667 0.8881173512595278 0.21555429229028586
+0.30125523012562994 0.8847269679644274 0.30125523012562994 0.8847269679644274 0.21752507443237776
+0.30334728033481645 0.8813365846693171 0.30334728033481645 0.881336584669317 0.219556915154464
+0.3054393305439105 0.8779462013742427 0.3054393305439105 0.8779462013742428 0.22163190601888205
+0.30753138075303577 0.8745558180790513 0.30753138075303577 0.8745558180790513 0.22373266584469167
+0.3096234309621102 0.8711654347837943 0.3096234309621102 0.8711654347837943 0.22584293822475002
+0.31171548117122366 0.8677750514884695 0.31171548117122366 0.8677750514884695 0.22794802796938174
+0.3138075313804754 0.8643846681930997 0.3138075313804754 0.8643846681930997 0.23003507365801726
+0.31589958158992915 0.8609942848977461 0.3158995815899291 0.8609942848977461 0.23209316472442262
+0.31799163179957274 0.8576039016025078 0.31799163179957274 0.8576039016025078 0.23411332073599586
+0.32008368200927034 0.8542135183074785 0.32008368200927034 0.8542135183074785 0.23608835763679556
+0.3221757322187776 0.8508231350126788 0.32217573221877766 0.8508231350126788 0.2380126707035044
+0.3242677824278342 0.8474327517180096 0.3242677824278342 0.8474327517180097 0.23988196686085486
+0.32635983263630935 0.8440423684232582 0.32635983263630935 0.8440423684232582 0.24169297988191082
+0.3284518828443386 0.8406519851281665 0.3284518828443386 0.8406519851281665 0.24344320093596714
+0.3305439330523626 0.8372616018325596 0.33054393305236257 0.8372616018325596 0.24513065404901654
+0.3326359832609951 0.8338712185364798 0.3326359832609951 0.8338712185364798 0.2467537414671175
+0.3347280334707344 0.8304808352402443 0.3347280334707344 0.8304808352402443 0.24831117788864468
+0.3368200836816167 0.8270904519443617 0.3368200836816167 0.8270904519443617 0.24980202535667537
+0.3389121338930677 0.8237000686492717 0.3389121338930677 0.8237000686492717 0.2512258326444452
+0.34100418552014866 0.8203096876260418 0.34100418552014866 0.8203096876260417 0.25258287640056404
+0.3430962441662658 0.8169193178805938 0.3430962441662658 0.8169193178805937 0.2538744920197007
+0.34518856178321916 0.8135301188648333 0.34518856178321916 0.8135301188648333 0.25510400357832763
+0.3472814677495874 0.8101456486305647 0.3472814677495874 0.8101456486305647 0.25627754335470504
+0.34937350120883415 0.8067714820550406 0.34937350120883415 0.8067714820550406 0.25740286754360664
+0.3514607626726229 0.8034129563164587 0.3514607626726229 0.8034129563164587 0.2584883053267348
+0.35354081169585644 0.80007039027962 0.35354081169585644 0.80007039027962 0.2595452234510951
+0.3556201367756336 0.7967334883192412 0.3556201367756336 0.7967334883192412 0.26059457083162935
+0.35772115812663224 0.7933713878605966 0.35772115812663224 0.7933713878605966 0.2616787821689241
+0.3599867467480064 0.7897839265417766 0.35998674674800635 0.7897839265417766 0.2629287783871174
+0.3663560783455648 0.7777415663688242 0.3663560783455648 0.7777415663688242 0.2661749102444136
+0.36347131619282524 0.7881059996783846 0.3634713161928253 0.7881059996783845 0.2659509599115764
+0.3654133868470132 0.7813678684813596 0.36541338684701324 0.7813678684813596 0.266066892526907
+0.36444618821387403 0.7848676764384145 0.36444618821387403 0.7848676764384145 0.2660147234689303
+0.3724517011346185 0.765931757814132 0.3724517011346185 0.765931757814132 0.27128100604613586
+0.37160413929330355 0.7695802927485599 0.37160413929330355 0.7695802927485599 0.2705627249341516
+0.37071992571714535 0.7732141686599593 0.37071992571714535 0.7732141686599593 0.27004449064202657
+0.3698311161782532 0.7768401198323022 0.3698311161782532 0.7768401198323022 0.269730395764312
+0.3758780788808975 0.7649811531275558 0.3758780788808975 0.7649811531275558 0.2750644021071225
+0.3767556421353089 0.7613237672500509 0.3767556421353089 0.7613237672500509 0.27623573395266604
+0.3801560079295139 0.760345700603517 0.3801560079295139 0.760345700603517 0.2800677868503126
+0.3812007493522849 0.7566065688961757 0.3812007493522849 0.7566065688961757 0.28190561387473073
+0.3821705080116163 0.7528587578301608 0.3821705080116163 0.7528587578301608 0.2839808157337939
+0.3882512768458724 0.7403527761545353 0.3882512768458724 0.7403527761545353 0.29657985888096333
+0.38742507996274056 0.7440688452203322 0.38742507996274056 0.7440688452203322 0.29358821311758804
+0.38658522352644137 0.7478261935446254 0.38658522352644137 0.7478261935446254 0.2908219022788558
+0.3857190395215473 0.7516441327790848 0.3857190395215473 0.7516441327790848 0.2883024678868708
+0.3924099342431207 0.7353156236497428 0.3924099342431207 0.7353156236497428 0.3046187040207004
+0.3916436766661209 0.7389992351578215 0.3916436766661209 0.7389992351578215 0.3013109057517038
+0.39571263348272384 0.7339265237013829 0.39571263348272384 0.7339265237013829 0.3093547962136613
+0.3995772725391851 0.7288105415481834 0.3995772725391851 0.7288105415481834 0.31756552265560245
+0.3989534088195316 0.7324963343921741 0.3989534088195316 0.7324963343921741 0.3139295902969898
+0.40273779227710227 0.7274018224469287 0.40273779227710227 0.7274018224469287 0.3220439427724929
+0.40595253088343375 0.7260372670161171 0.40595253088343375 0.7260372670161171 0.3263416251731129
+0.40994378776169826 0.7210887158170981 0.40994378776169826 0.7210887158170981 0.33450462110430396
+0.4092824618742423 0.7247836535992834 0.4092824618742423 0.7247836535992834 0.3303907002741688
+0.4278838374665135 0.6915479914733712 0.4278838374665135 0.6915479914733712 0.3746160384155432
+0.41376618249576474 0.7160022336725137 0.41376618249576474 0.7160022336725137 0.34257106522922104
+0.4133096296777068 0.7198462046501395 0.4133096296777068 0.7198462046501395 0.3383933247042456
+0.41721176713808794 0.711121222758416 0.417211767138088 0.711121222758416 0.34988266205276114
+0.41695270027846104 0.7146803809341651 0.41695270027846104 0.7146803809341651 0.34615542304534236
+0.4247186094237223 0.6967762084641429 0.42471860942372236 0.6967762084641428 0.3682754523280308
+0.421367980178181 0.7019111177128787 0.42136798017818095 0.7019111177128786 0.36153956010928817
+0.42020853703042454 0.7055352081258212 0.4202085370304246 0.705535208125821 0.35742624358777336
+0.4204540044017042 0.7094983043605649 0.4204540044017042 0.709498304360565 0.35362504276783474
+0.4243829683334835 0.7004742669931598 0.4243829683334835 0.7004742669931598 0.36468336303077203
+0.42771800199041143 0.695305961893193 0.42771800199041143 0.695305961893193 0.3711804418182441
+0.4314026322891342 0.6857934262277944 0.4314026322891342 0.6857934262277944 0.3812171624251309
+0.4311470747910257 0.6896862400838711 0.4311470747910257 0.6896862400838711 0.3777267341753338
+0.43460947441244063 0.6838284366729682 0.43460947441244063 0.6838284366729682 0.38408009427622153
+0.4377510669193574 0.6818378379332682 0.43775106691935745 0.6818378379332682 0.3865259038257258
+0.4408021409914609 0.679808834460308 0.4408021409914609 0.679808834460308 0.38858585979481286
+0.443768262814344 0.6777492034960518 0.443768262814344 0.6777492034960518 0.3902811415234928
+0.44665401532089477 0.6756628876207478 0.4466540153208948 0.6756628876207477 0.3916343504318505
+0.4494357794006628 0.6735340097827989 0.44943577940066287 0.6735340097827988 0.3927096278677766
+0.4521643398319455 0.671370216019435 0.4521643398319455 0.6713702160194349 0.39351822491981187
+0.4582225052443987 0.641987677209859 0.4582225052443988 0.641987677209859 0.4281456028890832
+0.4583119671308407 0.6460442171387647 0.4583119671308407 0.6460442171387647 0.42265517943285974
+0.45871582048403137 0.6498809084846426 0.4587158204840314 0.6498809084846426 0.4171990102979308
+0.4547455542894716 0.6692063632393581 0.4547455542894716 0.6692063632393581 0.3941142890032509
+0.4573583304489599 0.6671137498449428 0.4573583304489599 0.6671137498449428 0.39425886265431265
+0.45922358844593664 0.653721092248338 0.45922358844593664 0.653721092248338 0.4114523202086131
+0.4597202641259131 0.6576217882755719 0.4597202641259131 0.6576217882755718 0.4053720442243854
+0.460148758501022 0.6615753979126294 0.46014875850102205 0.6615753979126294 0.3990374534640371
+0.46014846090259937 0.6651571263186251 0.46014846090259937 0.6651571263186251 0.3935891545351414
+0.4577765315850105 0.6351517204452996 0.4577765315850106 0.6351517204452996 0.43713872638196805
+0.45972500662604643 0.6323476540290757 0.45972500662604643 0.6323476540290757 0.4407783262837631
+0.45988276598835787 0.6385192904828899 0.4598827659883579 0.6385192904828899 0.43243131471797286
+0.4621685262945354 0.6315489888502611 0.46216852629453536 0.6315489888502611 0.44187582987725876
+0.45017219038725753 0.6036267287450781 0.4501721903872574 0.603626728745078 0.5061125131943597
+0.4513531255890805 0.6071664745916511 0.45135312558908053 0.6071664745916511 0.48856443085178775
+0.4536327689525685 0.6114699387096871 0.4536327689525685 0.6114699387096872 0.4728206262933334
+0.4533237691062439 0.6087814502474977 0.4533237691062439 0.6087814502474977 0.48016407157600643
+0.455834790884394 0.6159273218082322 0.45583479088439394 0.6159273218082321 0.46298755526446783
+0.45585173801481366 0.6124314359924465 0.45585173801481366 0.6124314359924465 0.469258206013091
+0.4585160498969837 0.6170020024018728 0.45851604989698375 0.6170020024018728 0.46112702287867063
+0.4595987530746304 0.6207669884295184 0.4595987530746304 0.6207669884295184 0.45620634643730845
+0.4620444693246782 0.6232213726636839 0.4620444693246782 0.6232213726636839 0.4533652023092168
+0.46400508179381283 0.6287142659136754 0.46400508179381283 0.6287142659136754 0.446056591648582
+0.4644109403784604 0.6252415688004991 0.4644109403784604 0.6252415688004991 0.4510132667846882
+0.4538271654020474 0.6008507141761509 0.4538271654020474 0.6008507141761509 0.5085491851392315
+0.4572730721656755 0.5982279412338039 0.4572730721656755 0.5982279412338039 0.5075258726392201
+0.614043305474151 0.48500730955947935 0.6140433054741509 0.48500730955947935 0.42782821329108767
+0.6173968399423284 0.484404955740105 0.6173968399423284 0.484404955740105 0.381516724056186
+0.6102974176487851 0.48801710349322264 0.6102974176487851 0.48801710349322264 0.5059255856679438
+0.6067265963746756 0.4908123661152941 0.6067265963746756 0.4908123661152941 0.5894617064513169
+0.619772395377003 0.4827273242875538 0.619772395377003 0.4827273242875538 0.34361098468126966
+0.6226954592333026 0.4807277252722435 0.6226954592333026 0.4807277252722435 0.30224629824319577
+0.6169014979310833 0.48691819341139464 0.6169014979310833 0.48691819341139464 0.40508918487912954
+0.6199134116329311 0.48528143795258605 0.6199134116329311 0.485281437952586 0.3586145607130658
+0.6255394875491548 0.47806643808250193 0.6255394875491548 0.47806643808250193 0.26377542025630146
+0.6257509686910531 0.48133648521435485 0.6257509686910531 0.48133648521435485 0.27740671877193984
+0.6293966811002357 0.4762543983921318 0.6293966811002357 0.47625439839213174 0.2271926794876605
+0.6367589619803203 0.46926045220975315 0.6367589619803203 0.4692604522097531 0.1804259920072742
+0.6323550316878748 0.4737157949177216 0.6323550316878749 0.47371579491772164 0.2019461899393629
+0.6355180745121771 0.4724031228587541 0.6355180745121771 0.4724031228587541 0.1820375518493185
+0.6454429327599799 0.462098596800872 0.6454429327599799 0.462098596800872 0.1811475276363105
+0.6484233036391535 0.459894331056033 0.6484233036391535 0.459894331056033 0.18775831453556394
+0.6606559671295187 0.44999902392917795 0.6606559671295188 0.44999902392917795 0.23440462128702091
+0.651461974318018 0.4575518371387831 0.651461974318018 0.45755183713878317 0.1972968901780565
+0.6544991362624378 0.4550643945225456 0.6544991362624378 0.4550643945225456 0.209229899266798
+0.6575371628454454 0.452474753472329 0.6575371628454453 0.452474753472329 0.22243489314843554
+0.6409179161304175 0.4693542342391921 0.6409179161304176 0.4693542342391921 0.1589047635517381
+0.6426700016207831 0.4668291543856426 0.6426700016207831 0.46682915438564254 0.16169970033900427
+0.64550510708044 0.4655073837990963 0.64550510708044 0.46550738379909623 0.15743954583198547
+0.6638794918812483 0.45098546141701856 0.6638794918812483 0.45098546141701856 0.21762193527443544
+0.66661386511457 0.4485954447888125 0.66661386511457 0.4485954447888125 0.22962166787151503
+0.6696111262290213 0.44635018976611157 0.6696111262290213 0.44635018976611157 0.23918748276246496
+0.6726280850141996 0.4441366454177762 0.6726280850141996 0.44413664541777625 0.24776068267041587
+0.6756476036421414 0.4419127552894719 0.6756476036421414 0.4419127552894719 0.25564682566727565
+0.6786823129485566 0.4396788417228044 0.6786823129485566 0.4396788417228044 0.26277189493103076
+0.68173846627358 0.43742931561840787 0.68173846627358 0.43742931561840787 0.2691524964118444
+0.6848253264721308 0.4351494462767924 0.6848253264721308 0.4351494462767924 0.27486846147285404
+0.6879538605519003 0.4328087116213329 0.6879538605519003 0.4328087116213329 0.28008947648900434
+0.7109201670444854 0.41420011481301866 0.7109201670444855 0.4142001148130187 0.31014010964210437
+0.6959921604419746 0.4252448288405493 0.6959921604419746 0.4252448288405493 0.2984757457376734
+0.7017734245987457 0.41764924666216985 0.7017734245987457 0.4176492466621698 0.31906084924528016
+0.7047501056569612 0.41532607627226176 0.7047501056569612 0.41532607627226176 0.32133960720448534
+0.7079919128948443 0.41640567663951555 0.7079919128948443 0.4164056766395156 0.30786390653037143
+0.6988069783791696 0.4232711179029423 0.6988069783791696 0.4232711179029423 0.3004385181366487
+0.7017866759244199 0.4211140615682347 0.7017866759244199 0.4211140615682347 0.30267893441966137
+0.6936601889827159 0.4279453451904365 0.693660188982716 0.4279453451904365 0.290986516744967
+0.6910419108911406 0.43039484348808227 0.6910419108911406 0.43039484348808227 0.28511882534322003
+0.7141345428496768 0.4156197366829569 0.7141345428496768 0.4156197366829569 0.29643304098056306
+0.7171782686525184 0.41331627197266596 0.7171782686525184 0.4133162719726659 0.29939575383295375
+0.7203899411965514 0.4108880559873313 0.7203899411965514 0.4108880559873313 0.30263746707758843
+0.7240147793757439 0.4083661095677148 0.7240147793757439 0.40836610956771485 0.3056135588171211
+0.7275091220524568 0.4080784776284115 0.7275091220524568 0.4080784776284115 0.3000658293543928
+0.7297599893596232 0.40616303069647414 0.7297599893596232 0.40616303069647414 0.30360412375664003
+0.7325339732989956 0.40410293759033195 0.7325339732989956 0.40410293759033195 0.3068527230052411
+0.735504970261478 0.40193932905237845 0.735504970261478 0.40193932905237845 0.31022444146066713
+0.7385320548646059 0.3997561188634196 0.7385320548646059 0.3997561188634196 0.3135980485091278
+0.7415892339496049 0.39756443857931695 0.7415892339496049 0.39756443857931695 0.31692511255536987
+0.7509617891857395 0.39089705818505327 0.7509617891857395 0.39089705818505327 0.3261027956817512
+0.7446724122142724 0.3953624900685999 0.7446724122142724 0.3953624900685999 0.3201571013773723
+0.7477891400758917 0.3931431376601861 0.7477891400758917 0.3931431376601861 0.32323995639063613
+0.754289554075143 0.3885838990057911 0.754289554075143 0.3885838990057911 0.3286475056952898
+0.7577575398677515 0.3859970501833937 0.7577575398677514 0.38599705018339364 0.33148673408079093
+0.7612027379098403 0.3846437032602559 0.7612027379098403 0.3846437032602559 0.3297901076765047
+0.7646622737754167 0.3824172092784738 0.7646622737754168 0.38241720927847384 0.33053961974291846
+0.7672193867314702 0.37969686583623385 0.76721938673147 0.37969686583623385 0.3340281381242817
+0.7709636301599192 0.3746289306356121 0.7709636301599191 0.3746289306356121 0.3412843309952583
+0.7706106414423148 0.37811442536491635 0.7706106414423148 0.3781144253649163 0.33207125801683673
+0.7736445965866762 0.37246275244549715 0.7736445965866762 0.37246275244549715 0.3417602335229233
+0.776543433890779 0.3702651898362095 0.776543433890779 0.3702651898362095 0.34149786878419214
+0.7794510429701504 0.36808587940940324 0.7794510429701504 0.36808587940940324 0.34083324459935227
+0.7823166570536645 0.3659584138762715 0.7823166570536645 0.3659584138762715 0.3398631805020477
+0.7851171613831225 0.3639175450874986 0.7851171613831225 0.3639175450874986 0.33861493514165614
+0.787931750694057 0.3618995631160274 0.787931750694057 0.3618995631160274 0.3371398612701107
+0.7908474930597208 0.35987909430523635 0.7908474930597208 0.35987909430523635 0.33537541522715647
+0.7938791341550461 0.35783711692278647 0.7938791341550461 0.35783711692278647 0.3333891222979142
+0.7970036632001302 0.35573959799651855 0.7970036632001302 0.35573959799651855 0.3313852861121489
+0.8002080951183196 0.353627108956651 0.8002080951183196 0.353627108956651 0.3293691844373598
+0.8034843174595677 0.3515208063945409 0.8034843174595677 0.3515208063945409 0.32738201909486714
+0.8068114845539194 0.34941310332377307 0.8068114845539194 0.34941310332377307 0.32553928238048063
+0.8101682851064763 0.347300054145447 0.8101682851064763 0.347300054145447 0.3239301302604746
+0.8135412344203304 0.34519289063712505 0.8135412344203304 0.34519289063712505 0.3225700234039937
+0.8169229374602085 0.3430958011766774 0.8169229374602086 0.3430958011766774 0.3214553446815462
+0.8203104581629183 0.3410038362801846 0.8203104581629183 0.3410038362801846 0.32057115022704447
+0.823700133251867 0.3389121034720782 0.823700133251867 0.3389121034720782 0.31988410134121525
+0.827090451946384 0.33682008368198024 0.8270904519463841 0.3368200836819803 0.31933405479929067
+0.8304808352415529 0.33472803347277513 0.8304808352415529 0.33472803347277513 0.3188482126655514
+0.8338712185367219 0.33263598326357 0.8338712185367217 0.33263598326356997 0.31834874795137
+0.8372616018318908 0.3305439330543649 0.8372616018318908 0.3305439330543649 0.31775803582271345
+0.8406519851270597 0.3284518828451598 0.8406519851270599 0.32845188284515986 0.3170035108560767
+0.8440423684222287 0.3263598326359547 0.8440423684222287 0.3263598326359547 0.3160221150677624
+0.8474327517173976 0.3242677824267496 0.8474327517173975 0.32426778242674953 0.3147641828098436
+0.8508231350125666 0.3221757322175445 0.8508231350125666 0.3221757322175445 0.3131966459882523
+0.8542135183077355 0.32008368200833937 0.8542135183077356 0.3200836820083394 0.31130548340965863
+0.8576039016029045 0.31799163179913426 0.8576039016029045 0.31799163179913426 0.30909736063083454
+0.8609942848980734 0.31589958158992915 0.8609942848980733 0.3158995815899291 0.3066004123879054
+0.8643846681932423 0.31380753138072404 0.8643846681932423 0.31380753138072404 0.303864112690384
+0.8677750514884113 0.3117154811715189 0.8677750514884114 0.311715481171519 0.3009581647334844
+0.8711654347835802 0.3096234309623138 0.8711654347835802 0.3096234309623138 0.29797033314510674
+0.8745558180787492 0.3075313807531087 0.874555818078749 0.30753138075310865 0.295003146444385
+0.8779462013739181 0.3054393305439036 0.8779462013739181 0.3054393305439036 0.2921694314207008
+0.881336584669087 0.3033472803346985 0.8813365846690872 0.30334728033469854 0.28958671627483473
+0.884726967964256 0.3012552301254934 0.884726967964256 0.3012552301254934 0.2873706630539037
+0.8881173512594249 0.29916317991628827 0.8881173512594248 0.2991631799162882 0.2856278567150485
+0.8915077345545939 0.29707112970708316 0.8915077345545939 0.29707112970708316 0.2844484630962216
+0.8948981178497628 0.29497907949787805 0.8948981178497629 0.2949790794978781 0.2838994250759445
+0.8982885011449318 0.29288702928867294 0.8982885011449318 0.29288702928867294 0.2840189371889872
+0.9016788844401007 0.29079497907946783 0.9016788844401006 0.2907949790794678 0.2848128749722545
+0.9050692677352696 0.2887029288702627 0.9050692677352696 0.2887029288702627 0.28625364237982215
+0.9084596510304386 0.2866108786610576 0.9084596510304387 0.28661087866105767 0.28828157555754114
+0.9118500343256075 0.2845188284518525 0.9118500343256075 0.2845188284518525 0.29080868424227807
+0.9152404176207765 0.2824267782426474 0.9152404176207763 0.28242677824264734 0.2937242158102369
+0.9186308009159454 0.2803347280334423 0.9186308009159454 0.2803347280334423 0.2969013592369425
+0.9220211842111143 0.2782426778242372 0.9220211842111145 0.27824267782423723 0.30020438615572925
+0.9254115675062833 0.27615062761503206 0.9254115675062833 0.27615062761503206 0.30349562616681874
+0.9288019508014522 0.27405857740582695 0.9288019508014521 0.2740585774058269 0.30664183994469
+0.9321923340966212 0.27196652719662184 0.9321923340966212 0.27196652719662184 0.30951973201758154
+0.9355827173917901 0.26987447698741673 0.9355827173917902 0.2698744769874168 0.3120204967356707
+0.938973100686959 0.2677824267782116 0.938973100686959 0.2677824267782116 0.31405339789491843
+0.942363483982128 0.2656903765690065 0.9423634839821279 0.26569037656900646 0.31554844334640225
+0.9457538672772969 0.2635983263598014 0.9457538672772969 0.2635983263598014 0.3164582387232901
+0.9491442505724659 0.2615062761505963 0.949144250572466 0.26150627615059635 0.31675910026651644
+0.9525346338676348 0.2594142259413912 0.9525346338676348 0.2594142259413912 0.316451485943888
+0.9559250171628038 0.2573221757321861 0.9559250171628036 0.257322175732186 0.3155597746795085
+0.9593154004579727 0.25523012552298097 0.9593154004579727 0.25523012552298097 0.3141313914360912
+0.9627057837531416 0.25313807531377586 0.9627057837531418 0.2531380753137759 0.31223524581943723
+0.9660961670483106 0.25104602510457075 0.9660961670483106 0.25104602510457075 0.3099594285066561
+0.9694865503434795 0.24895397489536564 0.9694865503434794 0.2489539748953656 0.30740809889685444
+0.9728769336386485 0.24686192468616053 0.9728769336386485 0.24686192468616053 0.3046975062558141
+0.9762673169338174 0.24476987447695542 0.9762673169338175 0.24476987447695545 0.30195112359715975
+0.9796577002289864 0.2426778242677503 0.9796577002289864 0.2426778242677503 0.29929394584133723
+0.9830480835241553 0.2405857740585452 0.9830480835241552 0.24058577405854517 0.2968461136287064
+0.9864384668193242 0.2384937238493401 0.9864384668193242 0.2384937238493401 0.294716163573348
+0.9898288501144932 0.23640167364013498 0.9898288501144933 0.236401673640135 0.2929943523044573
+0.9932192334096621 0.23430962343092987 0.9932192334096621 0.23430962343092987 0.29174661849724165
+0.2384937238493725 0.9932192334096621 0.2384937238493725 0.9932192334096621 0.17202624812070777
+0.2405857740585775 0.9898288501144933 0.2405857740585775 0.9898288501144933 0.17353965889901837
+0.2426778242677825 0.9864384668193242 0.2426778242677825 0.9864384668193242 0.17531235684173838
+0.24476987447698761 0.9830480835241553 0.2447698744769876 0.9830480835241552 0.17728167794999347
+0.2468619246861926 0.9796577002289864 0.24686192468619259 0.9796577002289864 0.17938478521926934
+0.2489539748953977 0.9762673169338174 0.2489539748953977 0.9762673169338175 0.18156157897907932
+0.2510460251046028 0.9728769336386485 0.2510460251046028 0.9728769336386485 0.18375704997428757
+0.25313807531380783 0.9694865503434795 0.2531380753138079 0.9694865503434794 0.18592304712121102
+0.2552301255230129 0.9660961670483106 0.2552301255230129 0.9660961670483106 0.18801948407282112
+0.257322175732218 0.9627057837531416 0.257322175732218 0.9627057837531418 0.19001503832367986
+0.2594142259414231 0.9593154004579728 0.2594142259414231 0.9593154004579728 0.1918874085431583
+0.2615062761506283 0.9559250171628041 0.2615062761506283 0.9559250171628041 0.19362319632466118
+0.2635983263598335 0.9525346338676354 0.26359832635983343 0.9525346338676354 0.19521747311963053
+0.2656903765690386 0.9491442505724668 0.2656903765690386 0.9491442505724667 0.19667308592285712
+0.2677824267782435 0.945753867277298 0.26778242677824343 0.9457538672772979 0.19799974894295255
+0.26987447698744815 0.9423634839821293 0.26987447698744815 0.9423634839821293 0.1992129644347739
+0.27196652719665265 0.9389731006869607 0.27196652719665265 0.9389731006869607 0.20033281454805008
+0.274058577405857 0.9355827173917919 0.274058577405857 0.935582717391792 0.2013826672211181
+0.2761506276150614 0.9321923340966228 0.2761506276150614 0.9321923340966228 0.20238784206831975
+0.27824267782426604 0.9288019508014534 0.2782426778242661 0.9288019508014534 0.20337428574733543
+0.2803347280334713 0.9254115675062842 0.2803347280334713 0.9254115675062842 0.20436730909013434
+0.2824267782426773 0.9220211842111152 0.2824267782426773 0.9220211842111151 0.2053904389302549
+0.28451882845188453 0.9186308009159466 0.28451882845188453 0.9186308009159466 0.20646443483257457
+0.28661087866109264 0.915240417620779 0.28661087866109264 0.915240417620779 0.20760651403698496
+0.2887029288703015 0.9118500343256121 0.2887029288703015 0.9118500343256121 0.2088298167271314
+0.29079497907951174 0.9084596510304465 0.29079497907951174 0.9084596510304465 0.21014312886369302
+0.29288702928872373 0.9050692677352822 0.29288702928872373 0.9050692677352822 0.21155086263957346
+0.2949790794979385 0.9016788844401208 0.2949790794979385 0.9016788844401208 0.21305327699096785
+0.297071129707156 0.8982885011449664 0.297071129707156 0.8982885011449664 0.21464690456178195
+0.2991631799163726 0.8948981178498179 0.2991631799163726 0.894898117849818 0.21632513886827812
+0.3012552301255805 0.8915077345546858 0.3012552301255805 0.8915077345546859 0.21807892739378767
+0.3033472803347737 0.8881173512595483 0.3033472803347737 0.8881173512595483 0.21989751348182593
+0.30543933054391714 0.8847269679644295 0.30543933054391714 0.8847269679644295 0.2217691719883312
+0.30753138075307795 0.8813365846692484 0.30753138075307795 0.8813365846692484 0.22368188992503732
+0.3096234309622117 0.8779462013740327 0.3096234309622117 0.8779462013740327 0.22562395265939902
+0.31171548117136544 0.8745558180787802 0.31171548117136544 0.8745558180787804 0.22758440741770428
+0.3138075313805918 0.8711654347835037 0.31380753138059175 0.8711654347835037 0.2295533877339531
+0.3158995815899253 0.8677750514882338 0.3158995815899253 0.8677750514882338 0.23152229417300932
+0.3179916317993616 0.8643846681930225 0.3179916317993616 0.8643846681930224 0.23348383743036258
+0.3200836820088319 0.8609942848979198 0.3200836820088319 0.8609942848979198 0.23543195928677266
+0.32217573221821133 0.8576039016029386 0.32217573221821133 0.8576039016029388 0.23736165454534605
+0.32426778242736315 0.8542135183080314 0.32426778242736315 0.8542135183080314 0.2392687227821466
+0.32635983263621354 0.8508231350130907 0.32635983263621354 0.8508231350130907 0.24114948235368328
+0.32845188284482263 0.8474327517179839 0.32845188284482263 0.8474327517179839 0.24300048054087123
+0.33054393305340624 0.8440423684226169 0.3305439330534062 0.8440423684226169 0.24481823295366614
+0.3326359832622733 0.8406519851270021 0.3326359832622732 0.8406519851270021 0.24659902244661835
+0.3347280334716842 0.8372616018312904 0.3347280334716842 0.8372616018312904 0.2483387829849053
+0.3368200836816879 0.8338712185357305 0.3368200836816879 0.8338712185357305 0.25003308745323233
+0.33891213389203007 0.8304808352405603 0.33891213389203007 0.8304808352405603 0.25167725072991903
+0.34100418410209415 0.8270904519459091 0.34100418410209415 0.8270904519459091 0.2532665509618293
+0.3430962343113178 0.8237000686514454 0.3430962343113178 0.8237000686514454 0.2547965633468378
+0.3451882845190317 0.820309685357519 0.3451882845190317 0.820309685357519 0.2562635941165954
+0.34728033472494174 0.8169193020614068 0.34728033472494174 0.8169193020614068 0.2576651820839125
+0.349372657734999 0.8135310906762715 0.349372657734999 0.8135310906762715 0.2590013867400396
+0.35146476883254546 0.8101489784898209 0.35146476883254546 0.8101489784898209 0.2602746387266282
+0.35355508178945816 0.8067788303368072 0.35355508178945816 0.8067788303368072 0.26149009067623424
+0.355641759010711 0.8034246869636399 0.355641759010711 0.8034246869636398 0.2626557478572841
+0.35772785269979934 0.8000830660294151 0.35772785269979934 0.8000830660294153 0.2637851458787346
+0.35983384904615545 0.7967435086997052 0.35983384904615545 0.7967435086997052 0.2649058312940466
+0.36183704583781395 0.7935133878089479 0.36183704583781395 0.7935133878089479 0.2659257530270358
+0.3634698974456764 0.7909562155034557 0.3634698974456764 0.7909562155034557 0.26674840074493494
+0.3689391384707695 0.7804908098196363 0.3689391384707695 0.7804908098196363 0.2695908886036484
+0.36582300133523543 0.790120896176108 0.36582300133523543 0.790120896176108 0.2688927714554541
+0.3670599197124102 0.787581507199903 0.3670599197124102 0.7875815071999029 0.2694774366682308
+0.36805883041935256 0.7841692213374306 0.36805883041935256 0.7841692213374306 0.2695962620782688
+0.37502425437375986 0.768623026078996 0.37502425437375986 0.768623026078996 0.2742003809377232
+0.37415215025082266 0.7722565574912253 0.37415215025082266 0.7722565574912253 0.27357020119186576
+0.37327800307376857 0.7758889622193 0.37327800307376857 0.7758889622193 0.27316260757651306
+0.3724190550870115 0.7795448601788002 0.3724190550870115 0.7795448601788002 0.2729618372025977
+0.37846082855102536 0.767687404852241 0.37846082855102536 0.767687404852241 0.2777721641073829
+0.3792720834170951 0.7640243041314451 0.3792720834170951 0.7640243041314451 0.27872746323282965
+0.3824409784996722 0.7629765501446377 0.38244097849967224 0.7629765501446376 0.28208724748623837
+0.383697833881298 0.7592511550171294 0.383697833881298 0.7592511550171294 0.28399428016032907
+0.38481271121747246 0.7555117446270682 0.38481271121747246 0.7555117446270682 0.2860580018365579
+0.3908652872992849 0.7427107493736772 0.3908652872992849 0.7427107493736772 0.2981776750884028
+0.390076219805725 0.746463139659857 0.390076219805725 0.746463139659857 0.2952617987109147
+0.3892680488234856 0.7503027006322504 0.3892680488234856 0.7503027006322504 0.29258087693299645
+0.3884060827861697 0.7542660673296472 0.3884060827861697 0.7542660673296472 0.29014033786737525
+0.39499791134588785 0.7376107062867351 0.39499791134588785 0.7376107062867351 0.30592088977230586
+0.3942660569724914 0.7413187518535107 0.3942660569724914 0.7413187518535107 0.3026437218310958
+0.3983079216649845 0.7361741071505838 0.3983079216649845 0.7361741071505837 0.3103979274949454
+0.4021480701801112 0.7310722427807352 0.4021480701801112 0.7310722427807352 0.3183031026813304
+0.401544764621099 0.7347398059105329 0.40154476462109906 0.7347398059105329 0.3146566139369141
+0.40533154366614 0.7296770913982877 0.40533154366614 0.7296770913982877 0.32246574622134494
+0.4085084564959463 0.7283559004467828 0.4085084564959463 0.7283559004467827 0.32633948672667096
+0.4128018693558287 0.7237336435053174 0.4128018693558287 0.7237336435053175 0.3340701388148885
+0.41189810135246796 0.7271645988440365 0.411898101352468 0.7271645988440366 0.3299616449342037
+0.4308092999840774 0.6937292898539917 0.4308092999840774 0.6937292898539917 0.3738248709537591
+0.4166153059489228 0.7184871700675477 0.4166153059489228 0.7184871700675477 0.3420071444896898
+0.416238165099792 0.7224749070605431 0.416238165099792 0.7224749070605431 0.3375836308063935
+0.42015593963921005 0.7132691977952885 0.4201559396392101 0.7132691977952885 0.3495172333430623
+0.41986529416071444 0.7170313601404606 0.41986529416071444 0.7170313601404606 0.3453122584752941
+0.4274379244155739 0.6990058211733099 0.4274379244155739 0.6990058211733099 0.3675172356255066
+0.42391324265716074 0.7042104654450955 0.42391324265716074 0.7042104654450955 0.360798388448897
+0.42355797786084315 0.7079686879275289 0.42355797786084315 0.7079686879275289 0.3567637572896334
+0.42336270966192235 0.7117591091042728 0.4233627096619223 0.7117591091042729 0.3525931347394408
+0.42708629526223096 0.7027556578196017 0.4270862952622309 0.7027556578196017 0.36357360564134883
+0.4305437492085274 0.6975071019195505 0.4305437492085274 0.6975071019195505 0.3699929565065582
+0.434429220136978 0.6876919654683326 0.434429220136978 0.6876919654683326 0.3804919987087681
+0.43420564647591586 0.6916583773288671 0.43420564647591586 0.6916583773288671 0.376593749665741
+0.4376432746300563 0.6856541550131734 0.4376432746300563 0.6856541550131734 0.38281900304673555
+0.44075551752715475 0.6835940081663715 0.44075551752715475 0.6835940081663715 0.3847176922609851
+0.44378275334626305 0.6815132814360375 0.4437827533462631 0.6815132814360375 0.38621097149913647
+0.4467261290975179 0.6794012049584515 0.4467261290975179 0.6794012049584515 0.3873367072408474
+0.44957523505491254 0.6772490929993394 0.44957523505491254 0.6772490929993394 0.38814580167668394
+0.4612795444460925 0.6413180225654356 0.46127954444609254 0.6413180225654356 0.4279470635084949
+0.45235296729462876 0.6750782808905565 0.45235296729462876 0.6750782808905565 0.3886356088052034
+0.45503523357306996 0.6728847544753783 0.4550352335730699 0.6728847544753783 0.3888646052211376
+0.46111445023106706 0.644418359464461 0.46111445023106706 0.6444183594644609 0.4235768084084139
+0.4614876176623197 0.6479240328573036 0.46148761766231966 0.6479240328573036 0.41814337122684914
+0.46199262268241315 0.6516652408297897 0.46199262268241315 0.6516652408297897 0.4120098218150185
+0.4576145735396526 0.6706865494934229 0.4576145735396526 0.670686549493423 0.3888614274939526
+0.4601029865870289 0.6686213568994939 0.4601029865870289 0.6686213568994939 0.3884496921322261
+0.4625632844704753 0.6555117414628041 0.4625632844704753 0.6555117414628041 0.40537507703843145
+0.4624491130707803 0.6670566198356308 0.4624491130707803 0.6670566198356308 0.3870846873585133
+0.46319944345261244 0.6594834075935766 0.4631994434526124 0.6594834075935766 0.3981926571828786
+0.4638352294522742 0.6640579153624359 0.4638352294522741 0.6640579153624359 0.389768896750721
+0.4618647253215095 0.634976875764428 0.46186472532150946 0.634976875764428 0.43713882885302413
+0.46305968790019136 0.6390147411499837 0.46305968790019136 0.6390147411499837 0.4307305384593469
+0.4649122697857933 0.6326304779317782 0.4649122697857933 0.6326304779317783 0.43992832220406114
+0.46745416072345203 0.6302405766917366 0.467454160723452 0.6302405766917366 0.4431413049549535
+0.4544938697110297 0.6056458007878481 0.4544938697110297 0.6056458007878481 0.4880086191444066
+0.45583208047816237 0.6090592996191223 0.45583208047816237 0.6090592996191223 0.47643130250531573
+0.45815952264280035 0.6134989462569939 0.45815952264280035 0.6134989462569939 0.4663417415789885
+0.4578135973955474 0.610528549304472 0.4578135973955474 0.610528549304472 0.4715127956317572
+0.461237861494783 0.617426370052782 0.461237861494783 0.6174263700527821 0.46077103930214675
+0.4605664492115502 0.6142648185041631 0.4605664492115502 0.6142648185041631 0.46493171866699384
+0.4626077831787719 0.6200776557170338 0.4626077831787719 0.6200776557170338 0.4576298978161067
+0.4641456199182905 0.6221317680009013 0.46414561991829045 0.6221317680009013 0.45527522175032364
+0.4633495818935415 0.6175356032933681 0.4633495818935415 0.6175356032933681 0.4611194231956327
+0.4669948658032356 0.6264359882371205 0.4669948658032356 0.6264359882371205 0.4494191223171497
+0.4666629963679209 0.6226254628192675 0.4666629963679209 0.6226254628192675 0.4553644922766889
+0.4697607070912355 0.6280377693210604 0.46976070709123546 0.6280377693210603 0.4462725596261552
+0.45803153159700355 0.6026835263950713 0.45803153159700355 0.6026835263950713 0.4893147494992544
+0.46136640700850373 0.5999144531596671 0.46136640700850373 0.5999144531596671 0.488386241949534
+0.6144949950027048 0.48973946647772404 0.6144949950027048 0.4897394664777241 0.4565994017468037
+0.6178686711414763 0.4892635465702466 0.6178686711414763 0.4892635465702466 0.4074119806107678
+0.6107161459230651 0.49257819877145265 0.6107161459230651 0.49257819877145265 0.5319960447142432
+0.6070045617676406 0.49523522036896245 0.6070045617676406 0.49523522036896245 0.6124987314589908
+0.6229905360883309 0.4836079809042336 0.6229905360883309 0.48360798090423357 0.31591691704369834
+0.6200990554977475 0.4877628923611715 0.6200990554977475 0.4877628923611715 0.3714048407197365
+0.6223381619688786 0.4862614918935946 0.6223381619688786 0.4862614918935946 0.3376682342159648
+0.6173952568699823 0.4917745289569584 0.6173952568699823 0.49177452895695845 0.42671065927892843
+0.6204525504058634 0.4901226516439843 0.6204525504058634 0.49012265164398433 0.3795616169833902
+0.6263127409537413 0.48382133779847947 0.6263127409537413 0.4838213377984795 0.284647119182725
+0.6290302314056689 0.47946378920904986 0.6290302314056689 0.4794637892090499 0.24102146074721278
+0.6289739769985145 0.4823085316168907 0.6289739769985144 0.4823085316168907 0.2535657314727609
+0.6323580097261341 0.4774906571870394 0.6323580097261341 0.4774906571870394 0.20901025417863542
+0.6389798047247474 0.47279744676926966 0.6389798047247474 0.4727974467692696 0.1616907629180027
+0.6359295435371268 0.47536086726580806 0.6359295435371268 0.475360867265808 0.18048756113843542
+0.6484490536121048 0.4635056144512199 0.6484490536121048 0.4635056144512199 0.15995091122297253
+0.6515200885845117 0.4612597711997335 0.6515200885845117 0.4612597711997335 0.16680206536407757
+0.6615407884599549 0.45371861238446887 0.6615407884599548 0.4537186123844688 0.20130729436689118
+0.654629649049344 0.4588855570093733 0.654629649049344 0.4588855570093733 0.17675054596211984
+0.6578154881976052 0.45636415081383114 0.6578154881976052 0.45636415081383114 0.18898803376859044
+0.6425578889811795 0.4718013352962773 0.6425578889811795 0.47180133529627727 0.14400109496612828
+0.6447734341847796 0.4692026905772205 0.6447734341847796 0.46920269057722047 0.1416009759789245
+0.6482835156613099 0.4672523699801354 0.6482835156613099 0.4672523699801355 0.1367876087996981
+0.6648254627581909 0.4535114313353158 0.6648254627581909 0.4535114313353158 0.19531010913889094
+0.6671234644243011 0.45158093416688794 0.667123464424301 0.4515809341668879 0.2052304411161547
+0.6699458298147348 0.44956685719855244 0.6699458298147348 0.44956685719855244 0.21428723330799682
+0.6729298070600603 0.4474328250535528 0.6729298070600603 0.4474328250535528 0.22330566171513108
+0.6759674949435136 0.44527162795586595 0.6759674949435136 0.44527162795586595 0.23169301165839454
+0.6790323521862414 0.443093179059663 0.6790323521862414 0.443093179059663 0.23937759867631483
+0.6821192657532368 0.4408980883766675 0.6821192657532368 0.4408980883766675 0.24633901083122214
+0.6852349758935405 0.4386795270761891 0.6852349758935405 0.4386795270761891 0.25260397910081495
+0.6884062847186297 0.4364249666342115 0.6884062847186297 0.4364249666342115 0.2582009733349904
+0.6917293872882078 0.4341270699800606 0.6917293872882078 0.4341270699800606 0.2629780057875031
+0.6965091735440511 0.4282970779648663 0.6965091735440511 0.4282970779648664 0.2814545662256691
+0.7112446623017141 0.41780102813728354 0.7112446623017141 0.41780102813728354 0.2936950677686149
+0.6990048582007009 0.4267790366270543 0.699004858200701 0.42677903662705424 0.282609639695323
+0.705249345542329 0.4194426040679402 0.7052493455423291 0.4194426040679402 0.3012582779083988
+0.7086862632671616 0.41964798932714886 0.7086862632671616 0.41964798932714886 0.2916249013296392
+0.7016043458339267 0.4245860003544111 0.7016043458339266 0.42458600035441113 0.28657158747143563
+0.7041723793109301 0.42285413636517466 0.7041723793109301 0.42285413636517466 0.28820578689436005
+0.6951310641822792 0.4314061639106473 0.6951310641822791 0.4314061639106473 0.2691265035439365
+0.7141949061015852 0.4193125613460695 0.7141949061015852 0.4193125613460695 0.28064037243417655
+0.7172879488242264 0.41710730034807203 0.7172879488242264 0.41710730034807203 0.2833876961343174
+0.7204323041407931 0.4148701930512564 0.7204323041407931 0.4148701930512564 0.286241693976693
+0.723641028818029 0.41270010477515623 0.723641028818029 0.41270010477515623 0.28882020164847527
+0.726819892446148 0.4109765223061459 0.726819892446148 0.41097652230614584 0.2898911158984308
+0.7298139349964056 0.4094787815587901 0.7298139349964056 0.4094787815587901 0.2905658610622652
+0.7328091071103967 0.407409295860967 0.7328091071103967 0.407409295860967 0.2936056210033952
+0.7357915599422825 0.4053123354941537 0.7357915599422825 0.4053123354941537 0.2968530966618533
+0.7388290819771005 0.40317962294517 0.7388290819771005 0.40317962294517 0.3001939515896214
+0.7419015554026384 0.40103084010884865 0.7419015554026384 0.40103084010884865 0.30352893678311643
+0.7449976650552381 0.3988712963387702 0.7449976650552381 0.3988712963387702 0.3067966247385802
+0.7545104485664724 0.3923082849201691 0.7545104485664725 0.3923082849201691 0.3154828925485209
+0.7512783509101748 0.3945144514006209 0.7512783509101748 0.3945144514006209 0.3128643494753212
+0.7481187020727473 0.39670014799161724 0.7481187020727473 0.39670014799161724 0.30993417156007097
+0.7578498882993079 0.39011627212805705 0.757849888299308 0.39011627212805705 0.31754142507251104
+0.7611565966458552 0.3880190889233366 0.7611565966458552 0.3880190889233366 0.3189962737821516
+0.7645581976161878 0.3860321098979084 0.7645581976161878 0.3860321098979084 0.31944098217626166
+0.7675591206913588 0.38356663265508967 0.7675591206913587 0.38356663265508967 0.32168571345464597
+0.7705646074514886 0.3816123698520444 0.7705646074514886 0.3816123698520444 0.32196638712418896
+0.7737279711696324 0.3760647041224779 0.7737279711696324 0.3760647041224779 0.3316634181822389
+0.7737345303095216 0.37964636897068993 0.7737345303095217 0.37964636897068993 0.3215805977096012
+0.776738907097452 0.373918972813288 0.7767389070974521 0.37391897281328795 0.33137207465169566
+0.7797075556807559 0.3717590970370939 0.7797075556807559 0.3717590970370939 0.33087429178782246
+0.7826562509922559 0.36958929812684943 0.7826562509922558 0.36958929812684943 0.3301466891291914
+0.7854483632150027 0.3675676727330188 0.7854483632150027 0.3675676727330188 0.3291456033529425
+0.7881365449131642 0.3657089345223554 0.7881365449131642 0.3657089345223554 0.3278221826946753
+0.7909168057837084 0.363745217216106 0.7909168057837084 0.363745217216106 0.3264842168259592
+0.7939242359143447 0.36197762516657833 0.7939242359143447 0.36197762516657833 0.32417198478889325
+0.79705777422685 0.35993662535739884 0.79705777422685 0.35993662535739884 0.32226368546438877
+0.8002513871688107 0.3578222806730267 0.8002513871688107 0.3578222806730267 0.32048145992477256
+0.8035140153281485 0.3557073117489605 0.8035140153281485 0.3557073117489605 0.3187172262139492
+0.8068281313105228 0.35359759172631183 0.8068281313105228 0.35359759172631183 0.3170593582921532
+0.8101757180539265 0.3514888941975646 0.8101757180539265 0.3514888941975646 0.3155998582622978
+0.8135451625452398 0.34938141154948915 0.8135451625452398 0.34938141154948915 0.3143864896684257
+0.8169249877669246 0.3472809814381204 0.8169249877669246 0.3472809814381204 0.31342957108894326
+0.8203110739241186 0.3451877966382027 0.8203110739241186 0.3451877966382027 0.312715868954186
+0.8237002411392265 0.34309613886392903 0.8237002411392265 0.34309613886392903 0.3122218512798322
+0.827090451946384 0.34100418410039046 0.8270904519463841 0.3410041841003904 0.3118974103060607
+0.8304808352415529 0.33891213389118535 0.8304808352415529 0.33891213389118535 0.31167442670490125
+0.8338712185367219 0.33682008368198024 0.8338712185367217 0.3368200836819803 0.3114765884562931
+0.8372616018318908 0.33472803347277513 0.8372616018318908 0.33472803347277513 0.31122503729882767
+0.8406519851270597 0.33263598326357 0.8406519851270599 0.33263598326356997 0.310843265079358
+0.8440423684222287 0.3305439330543649 0.8440423684222287 0.3305439330543649 0.31026171281974296
+0.8474327517173976 0.3284518828451598 0.8474327517173975 0.32845188284515986 0.3094218932783821
+0.8508231350125666 0.3263598326359547 0.8508231350125666 0.3263598326359547 0.30827989794465444
+0.8542135183077355 0.3242677824267496 0.8542135183077356 0.32426778242674953 0.30680919955610997
+0.8576039016029045 0.3221757322175445 0.8576039016029045 0.3221757322175445 0.30500269376264105
+0.8609942848980734 0.32008368200833937 0.8609942848980733 0.3200836820083394 0.3028739382262513
+0.8643846681932423 0.31799163179913426 0.8643846681932423 0.31799163179913426 0.3004575470346966
+0.8677750514884113 0.31589958158992915 0.8677750514884114 0.3158995815899291 0.29780868804570826
+0.8711654347835802 0.31380753138072404 0.8711654347835802 0.31380753138072404 0.29500161801002034
+0.8745558180787492 0.3117154811715189 0.874555818078749 0.311715481171519 0.29212718455235326
+0.8779462013739181 0.3096234309623138 0.8779462013739181 0.3096234309623138 0.2892892368917033
+0.881336584669087 0.3075313807531087 0.8813365846690872 0.30753138075310865 0.2865999311377377
+0.884726967964256 0.3054393305439036 0.884726967964256 0.3054393305439036 0.2841740017671581
+0.8881173512594249 0.3033472803346985 0.8881173512594248 0.30334728033469854 0.28212220190258247
+0.8915077345545939 0.3012552301254934 0.8915077345545939 0.3012552301254934 0.28054428071285326
+0.8948981178497628 0.29916317991628827 0.8948981178497629 0.2991631799162882 0.27952203679523513
+0.8982885011449318 0.29707112970708316 0.8982885011449318 0.29707112970708316 0.2791131139583827
+0.9016788844401007 0.29497907949787805 0.9016788844401006 0.2949790794978781 0.27934623660699326
+0.9050692677352696 0.29288702928867294 0.9050692677352696 0.29288702928867294 0.28021847803479266
+0.9084596510304386 0.29079497907946783 0.9084596510304387 0.2907949790794678 0.28169491688616904
+0.9118500343256075 0.2887029288702627 0.9118500343256075 0.2887029288702627 0.2837107128122789
+0.9152404176207765 0.2866108786610576 0.9152404176207763 0.28661087866105767 0.2861753034705134
+0.9186308009159454 0.2845188284518525 0.9186308009159454 0.2845188284518525 0.28897817455542624
+0.9220211842111143 0.2824267782426474 0.9220211842111145 0.28242677824264734 0.29199553429257646
+0.9254115675062833 0.2803347280334423 0.9254115675062833 0.2803347280334423 0.29509723874648075
+0.9288019508014522 0.2782426778242372 0.9288019508014521 0.27824267782423723 0.2981534298955715
+0.9321923340966212 0.27615062761503206 0.9321923340966212 0.27615062761503206 0.30104051242074975
+0.9355827173917901 0.27405857740582695 0.9355827173917902 0.2740585774058269 0.3036462593940062
+0.938973100686959 0.27196652719662184 0.938973100686959 0.27196652719662184 0.30587397020121115
+0.942363483982128 0.26987447698741673 0.9423634839821279 0.2698744769874168 0.3076456935004585
+0.9457538672772969 0.2677824267782116 0.9457538672772969 0.2677824267782116 0.3089045751482234
+0.9491442505724659 0.2656903765690065 0.949144250572466 0.26569037656900646 0.30961640442750177
+0.9525346338676348 0.2635983263598014 0.9525346338676348 0.2635983263598014 0.30977042211318534
+0.9559250171628038 0.2615062761505963 0.9559250171628036 0.26150627615059635 0.30937943038454524
+0.9593154004579727 0.2594142259413912 0.9593154004579727 0.2594142259413912 0.30847921486130075
+0.9627057837531416 0.2573221757321861 0.9627057837531418 0.257322175732186 0.3071272590743342
+0.9660961670483106 0.25523012552298097 0.9660961670483106 0.25523012552298097 0.3054007069294424
+0.9694865503434795 0.25313807531377586 0.9694865503434794 0.2531380753137759 0.3033935151486941
+0.9728769336386485 0.25104602510457075 0.9728769336386485 0.25104602510457075 0.30121274238736767
+0.9762673169338174 0.24895397489536564 0.9762673169338175 0.2489539748953656 0.2989739526704851
+0.9796577002289864 0.24686192468616053 0.9796577002289864 0.24686192468616053 0.2967957750183498
+0.9830480835241553 0.24476987447695542 0.9830480835241552 0.24476987447695545 0.2947937613468315
+0.9864384668193242 0.2426778242677503 0.9864384668193242 0.2426778242677503 0.2930738146433567
+0.9898288501144932 0.2405857740585452 0.9898288501144933 0.24058577405854517 0.29172559959648253
+0.9932192334096621 0.2384937238493401 0.9932192334096621 0.2384937238493401 0.29081646517042437
+0.2426778242677825 0.9932192334096621 0.2426778242677825 0.9932192334096621 0.17322187466280778
+0.24476987447698761 0.9898288501144932 0.2447698744769876 0.9898288501144933 0.17471060339424627
+0.2468619246861926 0.9864384668193242 0.24686192468619259 0.9864384668193242 0.1764591765294141
+0.24895397489539772 0.9830480835241553 0.24895397489539772 0.9830480835241552 0.17840821714592134
+0.2510460251046027 0.9796577002289864 0.2510460251046027 0.9796577002289864 0.18049850618707938
+0.2531380753138078 0.9762673169338174 0.2531380753138078 0.9762673169338175 0.18267367457859954
+0.2552301255230129 0.9728769336386485 0.2552301255230129 0.9728769336386485 0.18488234786277633
+0.2573221757322179 0.9694865503434795 0.2573221757322179 0.9694865503434794 0.1870797221287339
+0.25941422594142305 0.9660961670483106 0.259414225941423 0.9660961670483106 0.18922859811351642
+0.2615062761506281 0.9627057837531418 0.2615062761506281 0.9627057837531418 0.19129992789660052
+0.26359832635983316 0.9593154004579731 0.26359832635983316 0.959315400457973 0.19327294024455108
+0.2656903765690383 0.9559250171628044 0.2656903765690383 0.9559250171628043 0.1951349120001307
+0.2677824267782432 0.9525346338676355 0.2677824267782432 0.9525346338676356 0.19688064891850285
+0.2698744769874481 0.9491442505724668 0.2698744769874481 0.9491442505724667 0.198511733672416
+0.27196652719665276 0.9457538672772978 0.27196652719665276 0.9457538672772978 0.20003559362488135
+0.27405857740585743 0.942363483982129 0.27405857740585743 0.942363483982129 0.20146443747215628
+0.27615062761506204 0.9389731006869599 0.27615062761506204 0.9389731006869599 0.20281410817704357
+0.2782426778242668 0.935582717391791 0.2782426778242668 0.9355827173917909 0.20410289931060402
+0.28033472803347187 0.9321923340966216 0.28033472803347187 0.9321923340966215 0.205350382174081
+0.2824267782426774 0.9288019508014523 0.2824267782426774 0.9288019508014523 0.2065762908582318
+0.2845188284518836 0.9254115675062834 0.2845188284518836 0.9254115675062834 0.207799510677987
+0.2866108786610904 0.9220211842111152 0.2866108786610904 0.9220211842111151 0.2090372113332473
+0.2887029288702978 0.9186308009159473 0.2887029288702978 0.9186308009159473 0.21030415917483766
+0.29079497907950597 0.9152404176207803 0.29079497907950597 0.9152404176207803 0.21161223305895457
+0.29288702928871496 0.9118500343256141 0.29288702928871496 0.9118500343256141 0.21297015594627658
+0.2949790794979255 0.9084596510304493 0.2949790794979255 0.9084596510304493 0.2143834406185852
+0.2970711297071373 0.9050692677352884 0.2970711297071373 0.9050692677352884 0.21585453395226883
+0.2991631799163483 0.9016788844401309 0.2991631799163483 0.9016788844401308 0.21738313151532543
+0.30125523012555483 0.8982885011449806 0.30125523012555483 0.8982885011449806 0.21896662411204007
+0.3033472803347525 0.8948981178498286 0.3033472803347525 0.8948981178498286 0.22060063120989182
+0.30543933054392286 0.8915077345546866 0.30543933054392286 0.8915077345546866 0.2222795734025583
+0.3075313807531029 0.8881173512595115 0.3075313807531029 0.8881173512595115 0.2239972371660106
+0.3096234309622685 0.8847269679643178 0.3096234309622685 0.8847269679643178 0.22574728972135974
+0.31171548117144465 0.8813365846691044 0.31171548117144465 0.8813365846691044 0.22752370912709033
+0.3138075313806588 0.8779462013738776 0.3138075313806588 0.8779462013738776 0.2293211039519072
+0.3158995815899299 0.8745558180786531 0.3158995815899299 0.8745558180786531 0.23113490719339816
+0.3179916317992567 0.8711654347834585 0.31799163179925666 0.8711654347834585 0.2329614397399475
+0.320083682008605 0.8677750514883201 0.320083682008605 0.8677750514883201 0.23479784896541342
+0.32217573221791035 0.8643846681932459 0.32217573221791035 0.8643846681932459 0.23664193744249548
+0.3242677824271013 0.8609942848982136 0.32426778242710125 0.8609942848982136 0.23849190479379048
+0.3263598326361363 0.8576039016031691 0.3263598326361363 0.8576039016031691 0.24034603197304702
+0.32845188284504107 0.8542135183080445 0.32845188284504107 0.8542135183080445 0.24220234145605782
+0.3305439330539204 0.850823135012789 0.3305439330539204 0.850823135012789 0.24405826867893401
+0.3326359832629295 0.847432751717404 0.3326359832629295 0.847432751717404 0.24591037946422753
+0.3347280334722041 0.8440423684219605 0.3347280334722041 0.8440423684219605 0.24775416514453505
+0.33682008368177874 0.8406519851265802 0.33682008368177874 0.8406519851265802 0.24958394182453003
+0.3389121338915393 0.8372616018313844 0.3389121338915393 0.8372616018313844 0.25139287308865427
+0.3410041841012473 0.8338712185364248 0.3410041841012473 0.8338712185364248 0.2531731269906059
+0.3430962343106417 0.8304808352416408 0.3430962343106417 0.8304808352416408 0.2549161690000867
+0.3451882845189918 0.8270904519472085 0.3451882845189918 0.8270904519472085 0.256613183557497
+0.34728033472639547 0.8237000686514889 0.34728033472639547 0.8237000686514889 0.25825560556562044
+0.34937248407755805 0.8203099155587162 0.34937248407755805 0.8203099155587162 0.259835846101158
+0.35146473228065167 0.8169199109380244 0.35146473228065167 0.8169199109380244 0.26134779757168286
+0.3535569405302312 0.8135332011644009 0.3535569405302312 0.8135332011644009 0.2627879427288034
+0.35564803939123574 0.8101542091105793 0.35564803939123574 0.8101542091105793 0.26415547536057327
+0.35773655784607544 0.8067885066785884 0.35773655784607544 0.8067885066785884 0.26545315646810935
+0.35982161844609917 0.8034400184983453 0.35982161844609917 0.8034400184983453 0.2666878706599985
+0.36190237359926986 0.8001017289516607 0.36190237359926986 0.8001017289516607 0.2678675725710126
+0.3639460340708665 0.7967770508430193 0.3639460340708665 0.7967770508430193 0.2689865228839094
+0.36592094505228645 0.7932862813798414 0.3659209450522865 0.7932862813798414 0.2700196564625974
+0.3715656872480295 0.7832335565882468 0.3715656872480295 0.7832335565882468 0.2729210063845253
+0.36919292827297906 0.7906744771189559 0.369192928272979 0.7906744771189559 0.27252483102625885
+0.37062142168150874 0.7869531144946502 0.37062142168150874 0.7869531144946502 0.27290965407475526
+0.3775835515700677 0.7713000642132649 0.3775835515700677 0.7713000642132649 0.2770052776903968
+0.37669797566263424 0.7749175349858771 0.37669797566263424 0.7749175349858771 0.27646770800071035
+0.37501948238229627 0.78218878240537 0.37501948238229627 0.78218878240537 0.2760479773091538
+0.3758446062321817 0.7785438040727765 0.3758446062321817 0.7785438040727765 0.276163037092137
+0.3859035090764 0.761714076522715 0.3859035090764 0.761714076522715 0.28569353932536723
+0.38106401666841866 0.770365216681744 0.38106401666841866 0.770365216681744 0.2803851665251999
+0.38193937940037126 0.7668326446620277 0.3819393794003712 0.7668326446620277 0.28127488802005335
+0.3848313883541754 0.7656993319922869 0.3848313883541754 0.7656993319922868 0.2841276145429285
+0.38767917448114 0.7584253350638299 0.38767917448114003 0.7584253350638299 0.2881674182228649
+0.3935267086052061 0.7450486439132841 0.3935267086052061 0.7450486439132841 0.29958297876019263
+0.3927869706171911 0.7488217052749729 0.3927869706171911 0.7488217052749729 0.29677531673420715
+0.3920662840344226 0.7526228074288325 0.3920662840344226 0.7526228074288325 0.2942857746904389
+0.39141861992952554 0.7564058075996806 0.39141861992952554 0.7564058075996806 0.29220149221194475
+0.39762245669743207 0.7398801779196376 0.39762245669743207 0.7398801779196376 0.30697829553972994
+0.39692568177263454 0.7436026694485527 0.39692568177263454 0.7436026694485527 0.30376050368404206
+0.4009324076487287 0.7384153979786238 0.4009324076487287 0.7384153979786238 0.3111495927154458
+0.404744123783018 0.7333136845928054 0.404744123783018 0.7333136845928054 0.31870649537193546
+0.40416258533221217 0.7369725699802352 0.4041625853322122 0.7369725699802352 0.3150739327690544
+0.4079097128177244 0.7318994346605412 0.4079097128177244 0.7318994346605412 0.3225213187940375
+0.41102162037787066 0.7304693280228295 0.41102162037787066 0.7304693280228295 0.3260944520223981
+0.4137186991225193 0.7295937284553382 0.41371869912251935 0.7295937284553382 0.328573923125811
+0.41572290077004637 0.7270032241549517 0.4157229007700463 0.7270032241549516 0.3325193385102673
+0.43410083306388536 0.6961013098672828 0.43410083306388536 0.6961013098672827 0.3719896622302305
+0.4195589181852948 0.720891954700004 0.4195589181852948 0.720891954700004 0.3409222535862057
+0.41940401177277864 0.7249276823866377 0.4194040117727786 0.7249276823866379 0.33634764797673317
+0.42309038243862646 0.7155345997273924 0.42309038243862646 0.7155345997273924 0.34827317627884163
+0.4228177662095281 0.7193330966573348 0.4228177662095281 0.7193330966573348 0.34383995521553484
+0.4301342012980538 0.7012233280780175 0.43013420129805374 0.7012233280780175 0.3659845778647349
+0.42680522536176907 0.7065303417014257 0.42680522536176907 0.7065303417014257 0.35945651902808096
+0.4265882793128706 0.7102833513737542 0.4265882793128705 0.7102833513737542 0.35521253644431594
+0.42631329777772903 0.7140285904996407 0.42631329777772903 0.7140285904996407 0.3508265475964221
+0.42984420950734503 0.705089723526602 0.429844209507345 0.7050897235266022 0.3616527522142301
+0.433062234499163 0.6996769006515078 0.433062234499163 0.6996769006515078 0.3679573518001482
+0.43756721822329525 0.6895311574833213 0.4375672182232952 0.6895311574833213 0.3788354851252333
+0.43750180318811493 0.6933377517317889 0.4375018031881149 0.6933377517317889 0.37469658845603465
+0.44072757137926244 0.687411461190486 0.44072757137926244 0.6874114611904859 0.38061130352528366
+0.4438027038203763 0.6852992282188904 0.4438027038203763 0.6852992282188904 0.3819282204694789
+0.4468032392909164 0.683168366706853 0.4468032392909164 0.683168366706853 0.38282757159454334
+0.44971381195642524 0.6809954574427586 0.44971381195642524 0.6809954574427586 0.38337580372918384
+0.4525534454954376 0.6788070422003494 0.4525534454954376 0.6788070422003494 0.383560037687416
+0.46375862538382306 0.6423609936237086 0.4637586253838231 0.6423609936237086 0.42502895008944946
+0.4553018013907774 0.6765900006373592 0.4553018013907774 0.6765900006373592 0.3834511061297701
+0.45797506442680413 0.674366553365091 0.45797506442680413 0.674366553365091 0.38303809033813785
+0.46415781826896635 0.6459239202113226 0.46415781826896635 0.6459239202113226 0.4189801843255459
+0.4646807761335582 0.6495900572563632 0.46468077613355824 0.6495900572563632 0.41237148111819794
+0.4652857958148329 0.6533631678589972 0.4652857958148329 0.6533631678589972 0.405217872523196
+0.4605507770721023 0.6722057056433548 0.4605507770721023 0.6722057056433548 0.38227762236787655
+0.4630421511818847 0.670015407353568 0.4630421511818847 0.670015407353568 0.3813222780278194
+0.46595799230114326 0.6572157519705513 0.46595799230114326 0.6572157519705514 0.3975352229551378
+0.46511673723011476 0.6674312932440313 0.46511673723011476 0.6674312932440313 0.38162744133052123
+0.4668398450156354 0.6611188541381366 0.4668398450156354 0.6611188541381366 0.38906508637837905
+0.4674826842950265 0.6650630827100057 0.46748268429502643 0.6650630827100058 0.38075612229621036
+0.4660804863168662 0.6403207791591066 0.4660804863168662 0.6403207791591066 0.42659280431953484
+0.4654610899279598 0.6365720948160257 0.4654610899279598 0.6365720948160257 0.43338933043547984
+0.46780938202787253 0.634285460027176 0.46780938202787253 0.634285460027176 0.4358680617143725
+0.4708896932402454 0.6317557796981178 0.4708896932402454 0.6317557796981178 0.43853554680664614
+0.47250983754435494 0.6289834288984054 0.47250983754435494 0.6289834288984054 0.44291891079129114
+0.45889617827700324 0.6074040984778608 0.4588961782770032 0.6074040984778607 0.47679188522900157
+0.46037451045351285 0.6108395495307771 0.4603745104535129 0.6108395495307771 0.4698457490283157
+0.4628050634924815 0.6148986983127693 0.46280506349248146 0.6148986983127694 0.46429358664983683
+0.46240970197556264 0.6122690892969873 0.46240970197556264 0.6122690892969873 0.4675652927325202
+0.4655316309809835 0.6191895587510703 0.46553163098098344 0.6191895587510702 0.4599350785022755
+0.4652308029597367 0.6157184000735871 0.4652308029597367 0.615718400073587 0.46435792244866697
+0.46840401006617866 0.6200374621617414 0.46840401006617866 0.6200374621617414 0.459879269748894
+0.469677041946477 0.623755522621278 0.46967704194647697 0.623755522621278 0.45407498418759495
+0.47225620557894077 0.626021078680447 0.47225620557894077 0.6260210786804469 0.4492863977377802
+0.47478919386681284 0.6277314674216387 0.4747891938668128 0.6277314674216387 0.44413792326276136
+0.46230242989416775 0.6043464381110503 0.46230242989416775 0.6043464381110503 0.47868569148965934
+0.46552585906275756 0.6014293557164124 0.4655258590627575 0.6014293557164124 0.4800984608851718
+0.6148657686924194 0.4944941825667931 0.6148657686924194 0.4944941825667932 0.47510232516777373
+0.618278370742556 0.49419796160291635 0.618278370742556 0.49419796160291635 0.4243843850435754
+0.6109288846975617 0.49716710903518035 0.6109288846975617 0.4971671090351803 0.5468012772667414
+0.6071125139592516 0.4996625691409582 0.6071125139592516 0.4996625691409582 0.6210938711974419
+0.625059866679814 0.4859919539223223 0.625059866679814 0.4859919539223223 0.30783451580104276
+0.6230977773302774 0.48825558562424454 0.6230977773302774 0.4882555856242446 0.33977655109661237
+0.620730467025752 0.4927160632907559 0.620730467025752 0.4927160632907559 0.3871611476573084
+0.6237925422208965 0.4909080089667365 0.6237925422208965 0.4909080089667364 0.3438176226488326
+0.6176720281497061 0.49668168891407727 0.6176720281497062 0.4966816889140773 0.4393725301734102
+0.6207340804065392 0.49532348563774753 0.6207340804065392 0.4953234856377476 0.3951044721844221
+0.642105908378445 0.47467883331590527 0.642105908378445 0.47467883331590527 0.14306755007950026
+0.6281132732770132 0.48530847256934584 0.6281132732770133 0.4853084725693458 0.274900931700011
+0.632320807049018 0.4812538495787781 0.6323208070490179 0.4812538495787781 0.22171023585032604
+0.6307468919421249 0.4841310244592779 0.6307468919421249 0.4841310244592779 0.2460473581713783
+0.6355448756961537 0.4788471477412326 0.6355448756961537 0.4788471477412326 0.1898390847933998
+0.6389117591562178 0.47670568851606 0.6389117591562178 0.47670568851606004 0.16314023391478805
+0.6355905178519727 0.48182557378056884 0.6355905178519727 0.48182557378056884 0.19837816269140035
+0.6515096165038939 0.46501538861776437 0.6515096165038939 0.46501538861776437 0.13954901901445324
+0.6642648401069081 0.45641797677885254 0.6642648401069081 0.45641797677885254 0.17388552795355752
+0.6546439083043297 0.46270358086812635 0.6546439083043297 0.46270358086812635 0.14692380525042273
+0.6611054098554413 0.45812447587104926 0.6611054098554413 0.45812447587104926 0.16699458379956525
+0.6578580383579667 0.4603683866541501 0.6578580383579667 0.4603683866541501 0.1567112113066086
+0.6451131400722123 0.47280752348729577 0.6451131400722123 0.47280752348729577 0.1292991853511576
+0.6481572302235694 0.4707783546703082 0.6481572302235694 0.4707783546703082 0.12101509891769958
+0.6513789499293765 0.46870894802697605 0.6513789499293764 0.468708948026976 0.11793397360866002
+0.6673187289185423 0.4548541719293511 0.6673187289185423 0.4548541719293511 0.18006486845666167
+0.6702064519059449 0.4527592275862173 0.6702064519059449 0.4527592275862173 0.1902598369294385
+0.6731880900546379 0.4506906549053282 0.673188090054638 0.45069065490532817 0.19962196099857996
+0.6762335054872856 0.44859768994274457 0.6762335054872856 0.44859768994274457 0.2084291136691455
+0.6793267295771878 0.4464787028389788 0.6793267295771878 0.4464787028389788 0.2166099611053356
+0.6824430980036257 0.44434069250961045 0.6824430980036257 0.44434069250961045 0.22410593225756362
+0.6855783335255389 0.4421834317320215 0.6855783335255389 0.4421834317320215 0.230909158254901
+0.6887390869619621 0.44000002850992925 0.6887390869619621 0.4400000285099292 0.2370547378550609
+0.6919550711440376 0.4377850163409648 0.6919550711440375 0.43778501634096484 0.242534890759622
+0.6952753708444663 0.435577361681183 0.6952753708444663 0.43557736168118305 0.24707511548479158
+0.6986746056366289 0.4301713231963592 0.6986746056366289 0.43017132319635915 0.2667553171427545
+0.7111312457598994 0.42143663756141003 0.7111312457598994 0.42143663756141 0.27821904025470173
+0.7017945927490864 0.42808022988382954 0.7017945927490864 0.4280802298838296 0.26949294177927535
+0.7075837978202505 0.42305407555188423 0.7075837978202505 0.4230540755518843 0.2791364674266604
+0.7048806601453877 0.42583473816292294 0.7048806601453877 0.4258347381629229 0.27281034852913916
+0.698470768774254 0.43347466994541684 0.698470768774254 0.43347466994541684 0.25084244542403816
+0.7141885996152256 0.4229808259898933 0.7141885996152256 0.4229808259898933 0.2651676171492901
+0.7173237361477772 0.42084642740352757 0.7173237361477772 0.42084642740352757 0.2678568693318643
+0.7204664172629841 0.4186772576785309 0.7204664172629841 0.41867725767853087 0.27072069405755744
+0.7236302200904491 0.4165321675457822 0.7236302200904491 0.4165321675457822 0.2735402288736677
+0.7267874154331693 0.4145211391767556 0.7267874154331694 0.4145211391767556 0.2759917114536367
+0.729922613250036 0.4126553315548098 0.7299226132500359 0.4126553315548098 0.27805712514575104
+0.7329539140100577 0.4107342564543533 0.7329539140100577 0.4107342564543533 0.28059750610048145
+0.7359960072066384 0.4086859448675883 0.7359960072066384 0.4086859448675883 0.2837179556300673
+0.7390624633110695 0.4065982508268086 0.7390624633110695 0.4065982508268086 0.2870019369010475
+0.7421594125045062 0.40449344051494546 0.7421594125045062 0.40449344051494546 0.2903107008066654
+0.7452743012652405 0.40237578151463954 0.7452743012652405 0.40237578151463954 0.29359021981747224
+0.7484037446632472 0.4002450775623941 0.7484037446632472 0.4002450775623941 0.2967847114330305
+0.7579453926033514 0.39380743769195753 0.7579453926033514 0.39380743769195753 0.30500610829342184
+0.7547287349720833 0.39595351088229086 0.7547287349720833 0.39595351088229086 0.3025953769077288
+0.7515514662414029 0.39810369077201463 0.7515514662414029 0.39810369077201463 0.29981575743352634
+0.7611809747352163 0.39169918107049756 0.7611809747352164 0.39169918107049756 0.30692966248916026
+0.7644213698366769 0.38960689189811704 0.7644213698366769 0.38960689189811704 0.3083967544709973
+0.7675936992660023 0.38746489783269794 0.7675936992660023 0.38746489783269794 0.3097094174495705
+0.7706791600079422 0.38533329211327766 0.7706791600079422 0.38533329211327766 0.31075467183494504
+0.7737816014359232 0.3832883391232306 0.7737816014359232 0.3832883391232306 0.3111001934964754
+0.776839979643694 0.37757702850302205 0.776839979643694 0.37757702850302205 0.32125402152880195
+0.7769099780172414 0.3812376126356183 0.7769099780172414 0.3812376126356183 0.31103910904932613
+0.7798980262798002 0.37544103637165205 0.7798980262798002 0.37544103637165205 0.32086007781287335
+0.7829134782638223 0.3732980430921697 0.7829134782638222 0.3732980430921697 0.320261623418486
+0.7858477360275741 0.3711893854161706 0.7858477360275741 0.3711893854161706 0.3194947851392254
+0.7885999543164841 0.3690589770221066 0.7885999543164841 0.3690589770221066 0.31894406537798314
+0.7907034434437616 0.3669387840132895 0.7907034434437616 0.3669387840132895 0.31948387080159235
+0.793784010232718 0.36625687149676456 0.7937840102327182 0.3662568714967645 0.31481190187181224
+0.7970571807063065 0.3642161130141163 0.7970571807063065 0.3642161130141163 0.31288386819219016
+0.8002369658802749 0.36203089286589124 0.8002369658802749 0.36203089286589124 0.3115108446369385
+0.8035155138463748 0.3598951756468541 0.8035155138463747 0.3598951756468541 0.30995193336911403
+0.8068340322256446 0.35777927023596806 0.8068340322256446 0.35777927023596806 0.3084674806499905
+0.8101803409151286 0.3556720331699028 0.8101803409151286 0.3556720331699028 0.3071608993491867
+0.8135466946957753 0.35356757236437103 0.8135466946957753 0.35356757236437103 0.3060938668237931
+0.816925822429918 0.3514667118771015 0.816925822429918 0.3514667118771015 0.3052903857481475
+0.8203113226300228 0.3493721067122137 0.8203113226300228 0.3493721067122137 0.3047455141118865
+0.8237003156869234 0.3472801833093863 0.8237003156869234 0.3472801833093863 0.30443992511688195
+0.827090451946384 0.3451882845188007 0.8270904519463841 0.34518828451880074 0.30433299929582613
+0.8304808352415529 0.34309623430959557 0.8304808352415529 0.34309623430959557 0.304362655751226
+0.8338712185367219 0.34100418410039046 0.8338712185367217 0.3410041841003904 0.30445535915236976
+0.8372616018318908 0.33891213389118535 0.8372616018318908 0.33891213389118535 0.30453240968791323
+0.8406519851270597 0.33682008368198024 0.8406519851270599 0.3368200836819803 0.30451479237437856
+0.8440423684222287 0.33472803347277513 0.8440423684222287 0.33472803347277513 0.304327865949336
+0.8474327517173976 0.33263598326357 0.8474327517173975 0.33263598326356997 0.30390567209876385
+0.8508231350125666 0.3305439330543649 0.8508231350125666 0.3305439330543649 0.3031947001057489
+0.8542135183077355 0.3284518828451598 0.8542135183077356 0.32845188284515986 0.30215700053529854
+0.8576039016029045 0.3263598326359547 0.8576039016029045 0.3263598326359547 0.3007725838401008
+0.8609942848980734 0.3242677824267496 0.8609942848980733 0.32426778242674953 0.2990410638352176
+0.8643846681932423 0.3221757322175445 0.8643846681932423 0.3221757322175445 0.29698251336119647
+0.8677750514884113 0.32008368200833937 0.8677750514884114 0.3200836820083394 0.2946374941248448
+0.8711654347835802 0.31799163179913426 0.8711654347835802 0.31799163179913426 0.2920662105457144
+0.8745558180787492 0.31589958158992915 0.874555818078749 0.3158995815899291 0.2893467260781119
+0.8779462013739181 0.31380753138072404 0.8779462013739181 0.31380753138072404 0.28657217942645635
+0.881336584669087 0.3117154811715189 0.8813365846690872 0.311715481171519 0.28384695844757984
+0.884726967964256 0.3096234309623138 0.884726967964256 0.3096234309623138 0.28128184266027706
+0.8881173512594249 0.3075313807531087 0.8881173512594248 0.30753138075310865 0.27898821933658224
+0.8915077345545939 0.3054393305439036 0.8915077345545939 0.3054393305439036 0.27707161274647024
+0.8948981178497628 0.3033472803346985 0.8948981178497629 0.30334728033469854 0.27562492619355855
+0.8982885011449318 0.3012552301254934 0.8982885011449318 0.3012552301254934 0.2747219488014601
+0.9016788844401007 0.29916317991628827 0.9016788844401006 0.2991631799162882 0.2744117760975042
+0.9050692677352696 0.29707112970708316 0.9050692677352696 0.29707112970708316 0.2747147875652643
+0.9084596510304386 0.29497907949787805 0.9084596510304387 0.2949790794978781 0.27562068883823726
+0.9118500343256075 0.29288702928867294 0.9118500343256075 0.29288702928867294 0.2770888738771666
+0.9152404176207765 0.29079497907946783 0.9152404176207763 0.2907949790794678 0.27905104840945943
+0.9186308009159454 0.2887029288702627 0.9186308009159454 0.2887029288702627 0.2814157592958535
+0.9220211842111143 0.2866108786610576 0.9220211842111145 0.28661087866105767 0.28407426726695273
+0.9254115675062833 0.2845188284518525 0.9254115675062833 0.2845188284518525 0.2869071201344912
+0.9288019508014522 0.2824267782426474 0.9288019508014521 0.28242677824264734 0.2897908243135392
+0.9321923340966212 0.2803347280334423 0.9321923340966212 0.2803347280334423 0.2926041362175942
+0.9355827173917901 0.2782426778242372 0.9355827173917902 0.27824267782423723 0.2952336525269186
+0.938973100686959 0.27615062761503206 0.938973100686959 0.27615062761503206 0.2975785276313891
+0.942363483982128 0.27405857740582695 0.9423634839821279 0.2740585774058269 0.2995542625528354
+0.9457538672772969 0.27196652719662184 0.9457538672772969 0.27196652719662184 0.30109558391658625
+0.9491442505724659 0.26987447698741673 0.949144250572466 0.2698744769874168 0.3021584672394026
+0.9525346338676348 0.2677824267782116 0.9525346338676348 0.2677824267782116 0.3027213647220965
+0.9559250171628038 0.2656903765690065 0.9559250171628036 0.26569037656900646 0.3027856838595317
+0.9593154004579727 0.2635983263598014 0.9593154004579727 0.2635983263598014 0.3023755384369498
+0.9627057837531416 0.2615062761505963 0.9627057837531418 0.26150627615059635 0.3015367652814718
+0.9660961670483106 0.2594142259413912 0.9660961670483106 0.2594142259413912 0.3003351749492919
+0.9694865503434795 0.2573221757321861 0.9694865503434794 0.257322175732186 0.29885398879810504
+0.9728769336386485 0.25523012552298097 0.9728769336386485 0.25523012552298097 0.29719041572706817
+0.9762673169338174 0.25313807531377586 0.9762673169338175 0.2531380753137759 0.29545134693490166
+0.9796577002289864 0.25104602510457075 0.9796577002289864 0.25104602510457075 0.29374820320985884
+0.9830480835241553 0.24895397489536564 0.9830480835241552 0.2489539748953656 0.292191059624825
+0.9864384668193242 0.24686192468616053 0.9864384668193242 0.24686192468616053 0.29088229224903794
+0.9898288501144932 0.24476987447695542 0.9898288501144933 0.24476987447695545 0.2899101239642663
+0.9932192334096621 0.2426778242677503 0.9932192334096621 0.2426778242677503 0.28934256225548166
+0.2468619246861926 0.9932192334096621 0.24686192468619259 0.9932192334096621 0.17441903099738923
+0.24895397489539772 0.9898288501144932 0.24895397489539772 0.9898288501144933 0.1758945603677258
+0.2510460251046027 0.9864384668193242 0.2510460251046027 0.9864384668193242 0.1776312124701472
+0.2531380753138078 0.9830480835241553 0.2531380753138078 0.9830480835241552 0.1795731273648985
+0.2552301255230128 0.9796577002289864 0.2552301255230128 0.9796577002289864 0.18166482206674672
+0.25732217573221783 0.9762673169338174 0.2573221757322179 0.9762673169338175 0.18385364883417607
+0.259414225941423 0.9728769336386485 0.259414225941423 0.9728769336386485 0.18609172265903887
+0.26150627615062805 0.9694865503434795 0.261506276150628 0.9694865503434794 0.18833730332541662
+0.2635983263598331 0.9660961670483107 0.2635983263598331 0.9660961670483107 0.19055566158583834
+0.265690376569038 0.9627057837531422 0.265690376569038 0.9627057837531422 0.19271948471064196
+0.267782426778243 0.9593154004579733 0.267782426778243 0.9593154004579733 0.19480888809309027
+0.269874476987448 0.9559250171628042 0.269874476987448 0.9559250171628042 0.19681110171723817
+0.2719665271966529 0.9525346338676353 0.2719665271966529 0.9525346338676354 0.19871989746441235
+0.2740585774058577 0.9491442505724663 0.2740585774058577 0.9491442505724663 0.20053481857488822
+0.2761506276150624 0.9457538672772975 0.2761506276150624 0.9457538672772975 0.2022602679520378
+0.27824267782426726 0.9423634839821283 0.27824267782426726 0.9423634839821283 0.20390450819643813
+0.28033472803347237 0.9389731006869595 0.2803347280334724 0.9389731006869596 0.20547862331838926
+0.28242677824267765 0.9355827173917906 0.28242677824267765 0.9355827173917906 0.2069954895431456
+0.2845188284518833 0.9321923340966213 0.2845188284518833 0.9321923340966213 0.20846879979580565
+0.2866108786610893 0.9288019508014526 0.2866108786610893 0.9288019508014526 0.2099121825993853
+0.2887029288702957 0.9254115675062842 0.28870292887029564 0.9254115675062842 0.21133845064541482
+0.2907949790795026 0.922021184211116 0.2907949790795026 0.922021184211116 0.21275900687910795
+0.29288702928871013 0.9186308009159486 0.2928870292887101 0.9186308009159486 0.21418342661427667
+0.2949790794979183 0.9152404176207823 0.2949790794979183 0.9152404176207823 0.21561922336538533
+0.2970711297071269 0.9118500343256182 0.2970711297071269 0.9118500343256182 0.21707179448792782
+0.29916317991633495 0.9084596510304555 0.29916317991633495 0.9084596510304553 0.2185445312956437
+0.3012552301255405 0.9050692677352964 0.3012552301255405 0.9050692677352964 0.22003906807171117
+0.30334728033474107 0.9016788844401368 0.30334728033474107 0.9016788844401368 0.22155563620546062
+0.30543933054392836 0.8982885011449807 0.3054393305439284 0.8982885011449807 0.22309348422843475
+0.3075313807531182 0.8948981178498087 0.3075313807531182 0.8948981178498087 0.22465132214915265
+0.30962343096230077 0.8915077345546273 0.30962343096230077 0.8915077345546273 0.22622774923230057
+0.31171548117148906 0.8881173512594351 0.31171548117148906 0.8881173512594351 0.22782162799899472
+0.3138075313806976 0.8847269679642347 0.3138075313806976 0.8847269679642347 0.22943237330373809
+0.3158995815899364 0.8813365846690351 0.3158995815899364 0.8813365846690351 0.23106013332011185
+0.3179916317992056 0.8779462013738507 0.3179916317992056 0.8779462013738507 0.2327058485409597
+0.32008368200848797 0.8745558180786951 0.32008368200848797 0.8745558180786951 0.2343711848667077
+0.3221757322177506 0.8711654347835737 0.3221757322177506 0.8711654347835737 0.23605834692640368
+0.32426778242695603 0.867775051488476 0.32426778242695603 0.867775051488476 0.23776978737176238
+0.32635983263608104 0.8643846681933747 0.32635983263608104 0.8643846681933747 0.23950783643590315
+0.3284518828451358 0.860994284898235 0.3284518828451359 0.8609942848982349 0.2412742830026171
+0.33054393305417107 0.85760390160303 0.33054393305417107 0.85760390160303 0.24306994327895035
+0.33263598326326427 0.8542135183077578 0.3326359832632643 0.8542135183077578 0.24489425548455832
+0.334728033472486 0.8508231350124511 0.334728033472486 0.8508231350124511 0.24674493849928184
+0.3368200836818587 0.8474327517171695 0.3368200836818587 0.8474327517171695 0.24861774909205456
+0.3389121338913322 0.8440423684219734 0.3389121338913322 0.8440423684219734 0.2505063663886182
+0.34100418410079375 0.8406519851268924 0.34100418410079375 0.8406519851268924 0.2524024240773684
+0.34309623431011493 0.8372616018319028 0.34309623431011493 0.8372616018319029 0.25429570117004824
+0.34518828451921885 0.8338712185369288 0.34518828451921885 0.8338712185369289 0.25617447171904534
+0.34728033472812864 0.8304808352418763 0.34728033472812864 0.8304808352418763 0.25802600350281385
+0.34937237900562684 0.8270904683040143 0.34937237900562684 0.8270904683040143 0.2598371825310217
+0.35146445619212346 0.8237001841724636 0.35146445619212346 0.8237001841724636 0.2615952839627012
+0.3535567620222042 0.8203103421713952 0.3535567620222042 0.8203103421713952 0.26328887631293313
+0.35564945961339856 0.8169216838397847 0.35564945961339856 0.8169216838397847 0.2649086104636397
+0.3577414679653117 0.8135370236441144 0.3577414679653117 0.8135370236441144 0.2664471390126985
+0.35983126149466665 0.8101617955138535 0.35983126149466665 0.8101617955138535 0.26790082885961297
+0.36191776810494886 0.8068008206074865 0.36191776810494886 0.8068008206074865 0.26927078164338064
+0.3640002677320377 0.8034578027800201 0.3640002677320377 0.8034578027800201 0.2705624919439293
+0.366079512235151 0.8001430601138786 0.366079512235151 0.8001430601138786 0.27178731882176344
+0.3680540874431255 0.7969372807115094 0.3680540874431255 0.7969372807115094 0.2728718684060718
+0.36947090459337306 0.7940253400041541 0.36947090459337306 0.7940253400041541 0.27345773465157497
+0.3719519471706457 0.7928869842811926 0.3719519471706457 0.7928869842811926 0.27549967654205537
+0.3741744520727684 0.7858906131192864 0.3741744520727684 0.7858906131192863 0.2760504545353754
+0.37347037270392547 0.7898409171527486 0.3734703727039254 0.7898409171527485 0.2763121087317162
+0.38009066748395126 0.7739499996374372 0.38009066748395126 0.7739499996374372 0.27964119370370805
+0.37922252094536807 0.7775534075930247 0.37922252094536807 0.7775534075930247 0.2792143988770184
+0.37767050409144715 0.7847497974289492 0.37767050409144715 0.7847497974289492 0.278972622895508
+0.37842521596789863 0.7811553340666938 0.37842521596789863 0.7811553340666938 0.2790168576221678
+0.38345914272912873 0.7729672369372051 0.38345914272912873 0.7729672369372053 0.2826790931271454
+0.3887567790291966 0.7615882794575208 0.3887567790291966 0.7615882794575208 0.28826216566994617
+0.3880330426862766 0.7644404531537017 0.3880330426862766 0.7644404531537017 0.28707839576498134
+0.38477897458494625 0.7695052467952168 0.3847789745849463 0.7695052467952168 0.28385613092980516
+0.38735722012842133 0.7673286728281296 0.38735722012842133 0.7673286728281296 0.28616108067912305
+0.3911298920822762 0.7599446907302629 0.3911298920822763 0.759944690730263 0.2908062079649441
+0.39623751267957713 0.7473378812090065 0.39623751267957713 0.7473378812090065 0.3008075043020932
+0.39556941811844415 0.7510947209973607 0.39556941811844415 0.7510947209973607 0.29816082872603106
+0.3949503544309521 0.7548460845494477 0.3949503544309521 0.7548460845494477 0.2958836580319661
+0.39443803402524874 0.7585379974122652 0.39443803402524874 0.7585379974122652 0.29404730335810925
+0.40027540268786016 0.7421332264925513 0.40027540268786016 0.7421332264925513 0.30777673055242816
+0.3996274224031408 0.7458591023105642 0.3996274224031408 0.7458591023105642 0.30465775511713855
+0.40357536522813753 0.740663557352963 0.40357536522813753 0.740663557352963 0.31159396021299807
+0.40736252486660685 0.7355298764562319 0.4073625248666069 0.7355298764562318 0.3187862128322638
+0.4068104317722565 0.7391619081581227 0.40681043177225645 0.7391619081581227 0.3152099295989725
+0.4105131597278047 0.7340554538230365 0.4105131597278047 0.7340554538230365 0.3222821457197264
+0.41363775616145954 0.7326232806302542 0.41363775616145954 0.7326232806302543 0.32546662262596
+0.4163397625884704 0.7305247180321027 0.4163397625884704 0.7305247180321027 0.32900424522301486
+0.41917222862505965 0.7288140050782282 0.4191722286250597 0.7288140050782282 0.33195914540489224
+0.4357814258618708 0.6990159013616729 0.4357814258618708 0.6990159013616729 0.36841830200284187
+0.43784585999822806 0.6969333509619893 0.43784585999822806 0.6969333509619893 0.37048272415739353
+0.4225894725712981 0.7231445402567909 0.42258947257129803 0.7231445402567909 0.3393634374119859
+0.42234389348696794 0.7270493292935688 0.42234389348696794 0.7270493292935688 0.33479630960830886
+0.4260268712598165 0.7178046247325551 0.4260268712598165 0.7178046247325551 0.346313688141107
+0.4257746085306118 0.7215994597596374 0.4257746085306118 0.7215994597596374 0.34173598670011335
+0.42921454482605714 0.7162759454584714 0.42921454482605714 0.7162759454584714 0.34835120242288925
+0.43286736617586985 0.7033031879297185 0.4328673661758699 0.7033031879297185 0.3638126138352363
+0.42989363570492384 0.7088882834097604 0.42989363570492384 0.7088882834097604 0.3572799695685589
+0.4295974162726838 0.7125285819903016 0.4295974162726837 0.7125285819903016 0.3529210349757437
+0.43262256252104325 0.7072458528759579 0.4326225625210433 0.7072458528759579 0.35917919727701336
+0.4355670167419442 0.7019797849954157 0.43556701674194415 0.7019797849954158 0.3649998261885128
+0.4407271720801547 0.6912233591486706 0.4407271720801547 0.6912233591486706 0.37629864038188904
+0.44082838704339955 0.6949941402731382 0.4408283870433996 0.6949941402731382 0.3717845791512615
+0.4438377983328863 0.6891105870881419 0.4438377983328863 0.6891105870881419 0.3774202080342767
+0.44688589672162077 0.6869631036183521 0.44688589672162077 0.6869631036183521 0.37810507787611747
+0.4498558576223923 0.6847710191568032 0.4498558576223923 0.6847710191568032 0.37840016816656524
+0.45275560910204854 0.6825603124480074 0.45275560910204854 0.6825603124480074 0.37829513932507236
+0.45556375065351995 0.6803165901854543 0.45556375065351995 0.6803165901854543 0.3778672382439236
+0.4666148763977648 0.6438207114258646 0.46661487639776483 0.6438207114258646 0.4200107481446053
+0.46855391648742395 0.641850881052959 0.4685539164874239 0.641850881052959 0.4212179466260121
+0.45828867362066905 0.6780548024686537 0.45828867362066905 0.6780548024686537 0.3771264684573646
+0.4609304188519702 0.675784639561156 0.4609304188519702 0.6757846395611561 0.3760957467542048
+0.4672985507334742 0.6474234053848728 0.4672985507334742 0.6474234053848728 0.41272098914976807
+0.46791840873374835 0.6512012206057645 0.4679184087337483 0.6512012206057644 0.4049123631140213
+0.46862663573609936 0.654981893840586 0.46862663573609936 0.6549818938405859 0.3966467983307558
+0.46346630669374506 0.6734604961273855 0.46346630669374506 0.6734604961273855 0.3749435051419279
+0.46590372468937746 0.6709847485368272 0.4659037246893774 0.6709847485368271 0.37391717852063877
+0.46937571487655266 0.6587687734276968 0.46937571487655266 0.6587687734276968 0.388012873011696
+0.46831266888943907 0.6687083286271696 0.46831266888943907 0.6687083286271696 0.37228577769103804
+0.47080540393651976 0.6664444537670335 0.47080540393651976 0.6664444537670335 0.37005379277230244
+0.4701687922611903 0.6626551970386328 0.4701687922611903 0.6626551970386328 0.3788405383139402
+0.4690399882155254 0.6382042348636813 0.4690399882155254 0.6382042348636813 0.42776310564284253
+0.4708077500442537 0.6352263206042869 0.4708077500442537 0.6352263206042869 0.43153790874163606
+0.47314711203359633 0.6342179980193433 0.47314711203359633 0.6342179980193433 0.4310393425912218
+0.474737137912498 0.6312981416701166 0.474737137912498 0.6312981416701166 0.43595449597990654
+0.463353004057348 0.6090578609892645 0.463353004057348 0.6090578609892646 0.4720043221410077
+0.4649345443838297 0.612352701811392 0.4649345443838297 0.612352701811392 0.4682788957278002
+0.4676836925815778 0.6165783489505012 0.4676836925815779 0.6165783489505011 0.4644771136348547
+0.4670803044260059 0.6137554893224222 0.4670803044260059 0.6137554893224222 0.4677675053078675
+0.4711066737758908 0.6202592542078939 0.4711066737758908 0.6202592542078939 0.4603968916803227
+0.47019418342454516 0.6171103153582438 0.47019418342454516 0.6171103153582438 0.4653358654625693
+0.4725538349419368 0.6228716429214152 0.47255383494193687 0.6228716429214152 0.45564531875803155
+0.47424796497722704 0.624745948516905 0.474247964977227 0.624745948516905 0.45127655909057535
+0.47323167030632773 0.6202007115388672 0.4732316703063278 0.6202007115388672 0.4611366956239863
+0.47749081136032406 0.6287435669281253 0.47749081136032406 0.6287435669281253 0.4390328993427964
+0.4766771424948697 0.6249665744753936 0.4766771424948697 0.6249665744753936 0.4497373460727146
+0.4666439784375565 0.6058162832793831 0.4666439784375565 0.6058162832793831 0.4762967118122186
+0.4697468922799703 0.602765373176962 0.4697468922799703 0.602765373176962 0.48174862170096006
+0.6150575056044028 0.4992425363174121 0.6150575056044029 0.49924253631741206 0.4820714432821402
+0.6184037911098421 0.4991017534268242 0.6184037911098421 0.4991017534268242 0.43213479901846713
+0.6109024045819584 0.5017677442648395 0.6109024045819584 0.5017677442648395 0.549223994213662
+0.6070427398276247 0.5040852885945319 0.6070427398276247 0.504085288594532 0.6146183796824635
+0.6268397504388072 0.48848515786878577 0.6268397504388074 0.4884851578687858 0.3012615315151311
+0.6267635095923927 0.4917628321904017 0.6267635095923927 0.4917628321904017 0.3142981124648823
+0.6239248166652123 0.4939368929801183 0.6239248166652124 0.49393689298011834 0.35252197406095576
+0.6207384485103553 0.49789686615330675 0.6207384485103553 0.49789686615330675 0.3996440779302027
+0.6230603513456537 0.4965114408853106 0.6230603513456537 0.4965114408853106 0.3684920033821941
+0.6421266608590798 0.4779629615460482 0.6421266608590798 0.4779629615460483 0.14481374892926333
+0.6449268962986822 0.47599743377058196 0.6449268962986822 0.47599743377058196 0.1272670291076425
+0.6307955020646285 0.4870020416940799 0.6307955020646285 0.48700204169407985 0.2572170644026943
+0.6339967536607419 0.48470988076160726 0.6339967536607419 0.48470988076160726 0.22104829943738386
+0.6387922014492562 0.4806775668966831 0.6387922014492561 0.48067756689668306 0.17195917722492607
+0.6372979514046937 0.48363942392454307 0.6372979514046937 0.48363942392454307 0.19137044923324725
+0.6674074009348255 0.45793067725733505 0.6674074009348255 0.457930677257335 0.15717061134616592
+0.6545735284179224 0.46649490153638035 0.6545735284179224 0.46649490153638035 0.12093473373125296
+0.6642217100011906 0.4598621406759 0.6642217100011906 0.4598621406759 0.1479766066814443
+0.6577724120538817 0.4641973471553083 0.6577724120538817 0.4641973471553083 0.12847141238532392
+0.6609889692266 0.46196527372165086 0.6609889692266 0.46196527372165086 0.13804753914894544
+0.6480377038365459 0.4742253265430869 0.6480377038365459 0.4742253265430869 0.11268190197041696
+0.6512042041514551 0.4722905399645835 0.6512042041514551 0.4722905399645834 0.10341998385299123
+0.6544175427872796 0.47020893726078333 0.6544175427872796 0.47020893726078333 0.10049141563469864
+0.670319718062127 0.45599156277894615 0.6703197180621271 0.45599156277894615 0.16677971309605852
+0.6733448056489922 0.45395787775245633 0.6733448056489922 0.4539578777524564 0.17658163153375697
+0.6764355617190745 0.451925963926146 0.6764355617190745 0.451925963926146 0.18574352089366908
+0.6795567721286776 0.44986605848745226 0.6795567721286776 0.44986605848745226 0.19439082395279808
+0.6827044168157969 0.4477865004756178 0.6827044168157969 0.4477865004756178 0.20238801651556382
+0.6858692771143405 0.4456851448102392 0.6858692771143405 0.4456851448102392 0.2097203624350414
+0.689040464383566 0.4435608577574068 0.689040464383566 0.4435608577574068 0.21640659740324084
+0.6922019495592925 0.4414048359936375 0.6922019495592925 0.4414048359936375 0.22253932229067797
+0.6953586063937668 0.43922224734020016 0.6953586063937668 0.43922224734020016 0.2281265242664656
+0.698474829278288 0.43707348488256553 0.698474829278288 0.43707348488256553 0.23302283406632965
+0.7016716062238131 0.4315798739907446 0.7016716062238131 0.43157987399074466 0.2531046318160388
+0.7110007067822369 0.42502834993354127 0.7110007067822369 0.42502834993354127 0.26294492904738803
+0.7049205869588026 0.42947423359047543 0.7049205869588026 0.4294742335904754 0.2559720050032857
+0.7078906316357276 0.4271963774073115 0.7078906316357276 0.4271963774073115 0.2599345859182524
+0.7015967105160258 0.4350343098118811 0.7015967105160258 0.4350343098118811 0.23686238033369
+0.7141788134398199 0.42668390342802204 0.7141788134398199 0.42668390342802204 0.24968173063486201
+0.7173365032969471 0.4245651365935929 0.7173365032969471 0.4245651365935929 0.2526108524729835
+0.7204894652983453 0.42242392581881805 0.7204894652983453 0.4224239258188181 0.2556286202465723
+0.7299526074158758 0.416098875352707 0.7299526074158758 0.416098875352707 0.26475341205726566
+0.7236427898056604 0.42027950864082686 0.7236427898056604 0.4202795086408269 0.25871045891168937
+0.7268138472920349 0.4181434479987418 0.7268138472920348 0.4181434479987418 0.26182657289283556
+0.7330493139467548 0.41410462163198347 0.7330493139467548 0.4141046216319834 0.26764207962776476
+0.736131888575416 0.4120838572246672 0.7361318885754161 0.4120838572246672 0.27073431433826894
+0.7392214621959041 0.4100178391904167 0.7392214621959042 0.4100178391904166 0.27404879820151495
+0.7423595032137063 0.4079585545610361 0.7423595032137063 0.4079585545610361 0.27729048350713087
+0.7455012388057263 0.4058856368131109 0.7455012388057263 0.4058856368131109 0.2805462767154849
+0.7331037663229076 0.41755423760018534 0.7331037663229076 0.41755423760018534 0.25461801630457015
+0.7486487355020334 0.40379529005468157 0.7486487355020334 0.40379529005468157 0.2837685488119383
+0.7518019015680384 0.40168977350276663 0.7518019015680384 0.40168977350276663 0.28688721577786586
+0.761280015212849 0.395328842828256 0.761280015212849 0.395328842828256 0.294894314058963
+0.7581216892722346 0.3974421614982588 0.7581216892722346 0.3974421614982588 0.29254180667130414
+0.7549588785180353 0.39956996855310306 0.7549588785180353 0.39956996855310306 0.2898386080596607
+0.7644331240069973 0.3932634847085293 0.7644331240069971 0.3932634847085293 0.29675153710317553
+0.7676099169564572 0.39117143437657703 0.7676099169564572 0.39117143437657703 0.29827348374795776
+0.7707393061762436 0.3890816352691866 0.7707393061762436 0.3890816352691866 0.2994622237127245
+0.7738456390007751 0.3869881365074613 0.7738456390007751 0.3869881365074613 0.3003127674993536
+0.7769735866552532 0.3849174284190824 0.7769735866552532 0.3849174284190824 0.3006740648560973
+0.7800260828917627 0.37915639779735133 0.7800260828917627 0.37915639779735133 0.31073825824554024
+0.7801245917622257 0.3828562402209021 0.7801245917622257 0.3828562402209021 0.30060706858315484
+0.7831266929644892 0.377055965308148 0.7831266929644892 0.377055965308148 0.31020716767487344
+0.7861847155282492 0.37491614475262997 0.7861847155282492 0.37491614475262997 0.3095974567383715
+0.7892601731143186 0.3727350200803692 0.7892601731143186 0.3727350200803692 0.30884761937890565
+0.792385658060194 0.37014298232943127 0.7923856580601941 0.3701429823294312 0.308830748516369
+0.7964417050743209 0.36847571761630815 0.7964417050743209 0.3684757176163082 0.3046405827433052
+0.8000843843777258 0.36623826602883286 0.8000843843777258 0.36623826602883286 0.3026853163749205
+0.8034668196305349 0.36407993255223664 0.8034668196305349 0.36407993255223664 0.30116830790482213
+0.8068177843312552 0.3619556714218998 0.8068177843312551 0.3619556714218998 0.2998200289723267
+0.8101768126093473 0.3598500936984277 0.8101768126093473 0.3598500936984277 0.29865107765145843
+0.8135463939082327 0.3577501284705044 0.8135463939082327 0.3577501284705044 0.297724125490171
+0.816925589365714 0.35565158864955665 0.816925589365714 0.35565158864955665 0.29707024075121297
+0.8203111839228482 0.3535565856364757 0.8203111839228482 0.3535565856364757 0.2966898313462354
+0.8237002699218281 0.35146430392461386 0.823700269921828 0.35146430392461386 0.29656700886962767
+0.827090451946384 0.3493723849372109 0.8270904519463841 0.34937238493721084 0.2966684638729748
+0.8304808352415529 0.3472803347280058 0.8304808352415529 0.3472803347280058 0.2969388722573989
+0.8338712185367219 0.3451882845188007 0.8338712185367217 0.34518828451880074 0.29730865661323874
+0.8372616018318908 0.34309623430959557 0.8372616018318908 0.34309623430959557 0.2977005977909075
+0.8406519851270597 0.34100418410039046 0.8406519851270599 0.3410041841003904 0.2980345740897716
+0.8440423684222287 0.33891213389118535 0.8440423684222287 0.33891213389118535 0.29823227999003793
+0.8474327517173976 0.33682008368198024 0.8474327517173975 0.3368200836819803 0.2982216700631312
+0.8508231350125666 0.33472803347277513 0.8508231350125666 0.33472803347277513 0.29794093688438567
+0.8542135183077355 0.33263598326357 0.8542135183077356 0.33263598326356997 0.2973418956405048
+0.8576039016029045 0.3305439330543649 0.8576039016029045 0.3305439330543649 0.29639269900465964
+0.8609942848980734 0.3284518828451598 0.8609942848980733 0.32845188284515986 0.2950798392035003
+0.8643846681932423 0.3263598326359547 0.8643846681932423 0.3263598326359547 0.2934094099683882
+0.8677750514884113 0.3242677824267496 0.8677750514884114 0.32426778242674953 0.2914076020985803
+0.8711654347835802 0.3221757322175445 0.8711654347835802 0.3221757322175445 0.2891203973941068
+0.8745558180787492 0.32008368200833937 0.874555818078749 0.3200836820083394 0.28661241291781203
+0.8779462013739181 0.31799163179913426 0.8779462013739181 0.31799163179913426 0.28396483858274774
+0.881336584669087 0.31589958158992915 0.8813365846690872 0.3158995815899291 0.2812724151895711
+0.884726967964256 0.31380753138072404 0.884726967964256 0.31380753138072404 0.27863942766400757
+0.8881173512594249 0.3117154811715189 0.8881173512594248 0.311715481171519 0.27617474917008783
+0.8915077345545939 0.3096234309623138 0.8915077345545939 0.3096234309623138 0.27398607157058136
+0.8948981178497628 0.3075313807531087 0.8948981178497629 0.30753138075310865 0.27217359240673483
+0.8982885011449318 0.3054393305439036 0.8982885011449318 0.3054393305439036 0.2708235794497648
+0.9016788844401007 0.3033472803346985 0.9016788844401006 0.30334728033469854 0.27000236582599385
+0.9050692677352696 0.3012552301254934 0.9050692677352696 0.3012552301254934 0.2697513962646833
+0.9084596510304386 0.29916317991628827 0.9084596510304387 0.2991631799162882 0.2700839074679395
+0.9118500343256075 0.29707112970708316 0.9118500343256075 0.29707112970708316 0.2709836668181034
+0.9152404176207765 0.29497907949787805 0.9152404176207763 0.2949790794978781 0.2724059360651485
+0.9186308009159454 0.29288702928867294 0.9186308009159454 0.29288702928867294 0.27428052901998434
+0.9220211842111143 0.29079497907946783 0.9220211842111145 0.2907949790794678 0.2765165689383969
+0.9254115675062833 0.2887029288702627 0.9254115675062833 0.2887029288702627 0.27900838290964924
+0.9288019508014522 0.2866108786610576 0.9288019508014521 0.28661087866105767 0.2816419225423057
+0.9321923340966212 0.2845188284518525 0.9321923340966212 0.2845188284518525 0.2843011590474302
+0.9355827173917901 0.2824267782426474 0.9355827173917902 0.28242677824264734 0.28687402717085986
+0.938973100686959 0.2803347280334423 0.938973100686959 0.2803347280334423 0.28925764089444983
+0.942363483982128 0.2782426778242372 0.9423634839821279 0.27824267782423723 0.29136263837515325
+0.9457538672772969 0.27615062761503206 0.9457538672772969 0.27615062761503206 0.293116614153458
+0.9491442505724659 0.27405857740582695 0.949144250572466 0.2740585774058269 0.29446665792366217
+0.9525346338676348 0.27196652719662184 0.9525346338676348 0.27196652719662184 0.29538104550627237
+0.9559250171628038 0.26987447698741673 0.9559250171628036 0.2698744769874168 0.29585012790923676
+0.9593154004579727 0.2677824267782116 0.9593154004579727 0.2677824267782116 0.2958864481091124
+0.9627057837531416 0.2656903765690065 0.9627057837531418 0.26569037656900646 0.29552409115263517
+0.9660961670483106 0.2635983263598014 0.9660961670483106 0.2635983263598014 0.29481724905058065
+0.9694865503434795 0.2615062761505963 0.9694865503434794 0.26150627615059635 0.2938379649107032
+0.9728769336386485 0.2594142259413912 0.9728769336386485 0.2594142259413912 0.2926730181882704
+0.9762673169338174 0.2573221757321861 0.9762673169338175 0.257322175732186 0.2914199323850251
+0.9796577002289864 0.25523012552298097 0.9796577002289864 0.25523012552298097 0.29018213472892657
+0.9830480835241553 0.25313807531377586 0.9830480835241552 0.2531380753137759 0.28906337774822083
+0.9864384668193242 0.25104602510457075 0.9864384668193242 0.25104602510457075 0.2881616417082637
+0.9898288501144932 0.24895397489536564 0.9898288501144933 0.2489539748953656 0.28756286056721997
+0.9932192334096621 0.24686192468616053 0.9932192334096621 0.24686192468616053 0.28733492659283716
+0.2510460251046027 0.9932192334096621 0.2510460251046027 0.9932192334096621 0.1756387532440626
+0.25313807531380783 0.9898288501144932 0.2531380753138079 0.9898288501144933 0.1771121164721544
+0.25523012552301283 0.9864384668193242 0.2552301255230129 0.9864384668193242 0.1788485314367512
+0.25732217573221783 0.9830480835241553 0.2573221757322179 0.9830480835241552 0.18079581735667064
+0.2594142259414228 0.9796577002289864 0.2594142259414229 0.9796577002289864 0.1829022668210064
+0.261506276150628 0.9762673169338175 0.261506276150628 0.9762673169338175 0.1851188598327804
+0.26359832635983305 0.9728769336386486 0.263598326359833 0.9728769336386486 0.1874009710917406
+0.26569037656903816 0.9694865503434797 0.26569037656903816 0.9694865503434799 0.18970956219957905
+0.267782426778243 0.966096167048311 0.267782426778243 0.9660961670483111 0.1920118908981386
+0.26987447698744793 0.9627057837531421 0.26987447698744793 0.9627057837531421 0.19428179342290716
+0.2719665271966529 0.959315400457973 0.2719665271966529 0.959315400457973 0.19649960722836088
+0.27405857740585776 0.9559250171628039 0.27405857740585776 0.9559250171628039 0.19865180401347363
+0.2761506276150627 0.9525346338676348 0.2761506276150627 0.9525346338676348 0.20073040086380642
+0.27824267782426765 0.9491442505724659 0.27824267782426765 0.949144250572466 0.20273221307432934
+0.2803347280334726 0.9457538672772969 0.28033472803347254 0.9457538672772969 0.2046580073622903
+0.28242677824267787 0.9423634839821279 0.28242677824267787 0.9423634839821279 0.20651160935978377
+0.2845188284518832 0.9389731006869592 0.2845188284518832 0.9389731006869592 0.20829901451074653
+0.28661087866108886 0.9355827173917904 0.28661087866108886 0.9355827173917904 0.2100275464630216
+0.28870292887029464 0.9321923340966216 0.28870292887029464 0.9321923340966215 0.2117051013082953
+0.29079497907950075 0.928801950801453 0.29079497907950075 0.928801950801453 0.21333950921581715
+0.29288702928870713 0.9254115675062851 0.29288702928870713 0.9254115675062851 0.21493803695718214
+0.2949790794979141 0.9220211842111175 0.2949790794979141 0.9220211842111175 0.2165070456141491
+0.2970711297071212 0.9186308009159513 0.2970711297071212 0.9186308009159513 0.21805180774838415
+0.29916317991632774 0.9152404176207859 0.29916317991632774 0.9152404176207859 0.21957647805682054
+0.3012552301255326 0.9118500343256227 0.3012552301255326 0.9118500343256227 0.22108420173370893
+0.30334728033473485 0.9084596510304589 0.30334728033473485 0.9084596510304589 0.22257733612639385
+0.3054393305439309 0.9050692677352958 0.3054393305439309 0.905069267735296 0.2240577544394673
+0.30753138075312664 0.9016788844401261 0.30753138075312664 0.9016788844401261 0.22552719568171084
+0.30962343096231887 0.8982885011449507 0.30962343096231887 0.8982885011449507 0.2269876230281039
+0.3117154811715143 0.8948981178497689 0.3117154811715143 0.8948981178497689 0.22844155334435198
+0.3138075313807202 0.8915077345545828 0.3138075313807202 0.8915077345545829 0.22989232367430937
+0.31589958158994236 0.888117351259397 0.31589958158994236 0.888117351259397 0.2313442657687428
+0.31799163179918105 0.8847269679642186 0.31799163179918105 0.8847269679642186 0.2328027668937631
+0.32008368200842796 0.8813365846690554 0.3200836820084279 0.8813365846690554 0.2342742037964134
+0.322175732217666 0.8779462013739101 0.322175732217666 0.8779462013739101 0.23576574637139716
+0.32426778242687554 0.8745558180787779 0.32426778242687554 0.8745558180787779 0.2372850377596403
+0.3263598326360438 0.8711654347836456 0.3263598326360438 0.8711654347836456 0.23883976774061957
+0.32845188284517446 0.8677750514884952 0.3284518828451745 0.8677750514884952 0.24043716570641174
+0.33054393305429147 0.8643846681933124 0.33054393305429147 0.8643846681933124 0.24208344751900499
+0.3326359832634338 0.8609942848980947 0.3326359832634338 0.8609942848980946 0.24378325643810508
+0.3347280334726374 0.8576039016028574 0.3347280334726374 0.8576039016028574 0.2455391414227632
+0.3368200836819164 0.8542135183076289 0.3368200836819164 0.854213518307629 0.247351115992433
+0.3389121338912496 0.8508231350124397 0.3389121338912496 0.8508231350124397 0.24921633729707623
+0.3410041841005838 0.8474327517173065 0.3410041841005838 0.8474327517173065 0.25112893825937505
+0.34309623430985675 0.8440423684222192 0.34309623430985675 0.8440423684222192 0.25308003615080515
+0.34518828451902833 0.8406519851271442 0.34518828451902833 0.8406519851271442 0.2550579295971529
+0.34728033472810454 0.8372616018320375 0.34728033472810454 0.8372616018320375 0.25704848382192086
+0.3493723849371406 0.8338712185368659 0.3493723849371406 0.8338712185368659 0.2590356920041162
+0.35146443514621667 0.8304808352416265 0.35146443514621667 0.8304808352416265 0.2610023899287373
+0.3535564708660484 0.8270904919058042 0.3535564708660484 0.8270904919058042 0.2629310790885478
+0.3556485985268954 0.823700364467555 0.3556485985268954 0.823700364467555 0.26480494486170686
+0.3577410842199653 0.8203109625459649 0.3577410842199653 0.8203109625459649 0.2666088842477921
+0.35983404297475285 0.8169238966201845 0.35983404297475285 0.8169238966201845 0.26833033175685356
+0.36192586726870896 0.8135423152763194 0.36192586726870896 0.8135423152763194 0.26995903431891527
+0.364014574036933 0.810170746900677 0.364014574036933 0.810170746900677 0.27148903946713837
+0.36609997392613614 0.806812124897415 0.36609997392613614 0.806812124897415 0.2729212087407901
+0.3681794074954418 0.8034592430470022 0.3681794074954418 0.8034592430470022 0.2742594469030611
+0.3862914643202135 0.7726104897269965 0.3862914643202135 0.7726104897269965 0.28505826571964665
+0.37022878236212575 0.8000733232448095 0.37022878236212575 0.8000733232448095 0.27549685543868957
+0.37222847342657106 0.796331985409921 0.37222847342657106 0.796331985409921 0.27657790627664186
+0.3748879686199955 0.7934785164614907 0.3748879686199955 0.7934785164614907 0.278288293708455
+0.3769680827234649 0.7881810123960152 0.3769680827234649 0.7881810123960152 0.2790003571790078
+0.37675681496790897 0.7912180126475801 0.37675681496790897 0.7912180126475801 0.27935469407811614
+0.38251286839509024 0.7765897224049331 0.38251286839509024 0.7765897224049331 0.2820738250586248
+0.3817623365893397 0.7801569224114125 0.3817623365893397 0.7801569224114125 0.28181839066551934
+0.38031823330404474 0.7872629595034843 0.38031823330404474 0.7872629595034843 0.2816940517550551
+0.3810318455667591 0.7837392904886294 0.3810318455667591 0.7837392904886294 0.281713030536011
+0.38560419482704855 0.7757224251754684 0.38560419482704855 0.7757224251754683 0.28461026169787224
+0.39105615252698367 0.7633215652985863 0.3910561525269837 0.7633215652985862 0.2899640374481422
+0.390293322329625 0.7669901781357557 0.390293322329625 0.7669901781357557 0.2887522077612182
+0.38884054375240457 0.7704563425687578 0.38884054375240457 0.7704563425687577 0.2873015386818592
+0.39401632443359436 0.7621465431206706 0.39401632443359436 0.7621465431206706 0.2926376700849678
+0.3989953150905177 0.749597825119131 0.3989953150905177 0.749597825119131 0.3018335559373648
+0.39838958182663964 0.7533437634785088 0.39838958182663964 0.7533437634785088 0.2993454119644891
+0.39782018865143226 0.7570714103800387 0.39782018865143226 0.7570714103800387 0.2972304879739796
+0.3972911596537063 0.7607984652140509 0.3972911596537063 0.7607984652140508 0.29548663253603863
+0.40296839584219163 0.7443690749189016 0.40296839584219163 0.7443690749189016 0.30832486365370887
+0.4023708928318717 0.7480991308971151 0.4023708928318717 0.7480991308971151 0.3053226730095837
+0.406257045951753 0.7428531812139528 0.406257045951753 0.7428531812139528 0.31180167865061076
+0.4099990132729144 0.7376244018498116 0.4099990132729144 0.7376244018498116 0.31862914083664645
+0.4094888508467464 0.7412867264308312 0.4094888508467464 0.7412867264308312 0.3150924629018013
+0.4131379156561199 0.7360187718581668 0.41313791565611985 0.7360187718581668 0.3218652640877801
+0.4162144280692984 0.7341733869076404 0.41621442806929837 0.7341733869076404 0.32513101520363946
+0.4191266630795926 0.7325437960952255 0.4191266630795926 0.7325437960952255 0.3278635288906457
+0.4221124264596532 0.7308727619680943 0.4221124264596532 0.7308727619680943 0.3303967612767486
+0.43833118500613394 0.7003881603321696 0.43833118500613394 0.7003881603321696 0.36619687603869894
+0.44103907652894797 0.6986860515574067 0.44103907652894797 0.6986860515574067 0.3671280917649397
+0.42553378317563717 0.7253716816057583 0.4255337831756371 0.7253716816057584 0.33718990891880257
+0.4252545205027371 0.7292298428525218 0.4252545205027371 0.7292298428525218 0.33260557605274865
+0.4289492656295532 0.7200693432354653 0.4289492656295532 0.7200693432354653 0.3436741155091498
+0.4287291692705854 0.7238828244352328 0.4287291692705854 0.7238828244352328 0.33896437465914236
+0.43229653145082314 0.7148176555534491 0.4322965314508231 0.714817655553449 0.3498482419885884
+0.43204743695681297 0.7185670288065212 0.43204743695681297 0.7185670288065212 0.34512962789288154
+0.4356332325933189 0.7054188396305803 0.43563323259331893 0.7054188396305802 0.36079286392617244
+0.43321113100116987 0.711072656772059 0.43321113100116987 0.7110726567720589 0.3544262564557429
+0.4354531327359662 0.7084931115086042 0.4354531327359662 0.7084931115086042 0.35698066253199684
+0.43517472356588954 0.7139874171408184 0.43517472356588954 0.7139874171408184 0.35003290333000314
+0.438383274906712 0.703982404337273 0.438383274906712 0.703982404337273 0.36169268852100217
+0.44389679741151516 0.6929453500812927 0.44389679741151516 0.6929453500812927 0.3726811861021507
+0.4439596130534363 0.6968389781576809 0.4439596130534363 0.6968389781576808 0.3676774869909896
+0.446974347346841 0.6907967988683111 0.446974347346841 0.6907967988683111 0.37315734986518784
+0.47145863338729815 0.6413590169406084 0.47145863338729815 0.6413590169406084 0.41822116885982347
+0.4500032929438878 0.6885813545585537 0.4500032929438878 0.6885813545585537 0.3732140305584679
+0.4529634526319506 0.6863435993386093 0.4529634526319506 0.6863435993386093 0.3728348038516223
+0.45583098426284563 0.6840705179582195 0.45583098426284563 0.6840705179582195 0.37210182227664784
+0.458612600203896 0.6817752853870246 0.458612600203896 0.6817752853870246 0.3710299017797627
+0.47008868705990786 0.6449592574864546 0.4700886870599078 0.6449592574864546 0.41322971554114807
+0.4613089433576474 0.6794561977220371 0.4613089433576474 0.6794561977220371 0.36966309732343444
+0.4639138711437631 0.677095045401506 0.4639138711437631 0.677095045401506 0.3680941974473617
+0.4705150232976253 0.6489869713336667 0.47051502329762535 0.6489869713336667 0.40451455868629305
+0.47122553294627534 0.6527790823005281 0.4712255329462753 0.6527790823005281 0.3955178198196189
+0.4720415683228188 0.6565527844486124 0.4720415683228188 0.6565527844486124 0.3860680778995648
+0.46644854708521966 0.6746694510953866 0.4664485470852196 0.6746694510953866 0.36637944754416707
+0.4688892289521169 0.6723324626590407 0.4688892289521169 0.6723324626590407 0.3643461146227265
+0.4728637647362896 0.660400264075157 0.4728637647362896 0.660400264075157 0.37621829028423437
+0.4713257050706848 0.6700508244162567 0.4713257050706848 0.6700508244162567 0.36183730958726384
+0.47392003030553376 0.6678747335327799 0.47392003030553376 0.6678747335327798 0.3582190354286335
+0.473622217629879 0.6643145979371043 0.47362221762987905 0.6643145979371043 0.36623777561109433
+0.4731514957380889 0.6376676802504608 0.4731514957380889 0.6376676802504608 0.4236158085689893
+0.47598224351216545 0.6350722926622019 0.4759822435121654 0.635072292662202 0.42510199275469046
+0.4782785243800608 0.632529967813723 0.47827852438006074 0.632529967813723 0.42784335372338544
+0.48049414447447814 0.630098951467936 0.4804941444744781 0.6300989514679359 0.4307998704269114
+0.46789511438268716 0.6104316433088436 0.4678951143826872 0.6104316433088436 0.47273679426022175
+0.46965729687146796 0.6136976137280488 0.469657296871468 0.6136976137280489 0.4700331017456589
+0.47258696698177227 0.6175734444766883 0.4725869669817722 0.6175734444766884 0.4659734641746897
+0.4718500022091896 0.6149530044147651 0.4718500022091896 0.6149530044147651 0.47010462257186736
+0.47544689495479364 0.6216656632994764 0.47544689495479364 0.6216656632994765 0.45832380162593317
+0.47493783968926445 0.6182035187526002 0.47493783968926445 0.6182035187526002 0.4662396035400933
+0.4783706195400143 0.62231756858164 0.4783706195400143 0.6223175685816401 0.45599512727693575
+0.47996537880358897 0.6258338514560046 0.47996537880358897 0.6258338514560046 0.44447186994288895
+0.48279755285596665 0.6278396065991303 0.48279755285596665 0.6278396065991303 0.43369586515674685
+0.47105004554429336 0.6070882543466359 0.47105004554429336 0.6070882543466359 0.48041380084420543
+0.47401994810459175 0.6039205307242256 0.47401994810459175 0.6039205307242256 0.49076295378796647
+0.6177220613802692 0.5014965925434891 0.6177220613802693 0.5014965925434892 0.4412808455718447
+0.6209148219543913 0.5001895041186356 0.6209148219543913 0.5001895041186356 0.3985042817478548
+0.6149514836930712 0.5039868002784481 0.6149514836930711 0.5039868002784481 0.47857178127911704
+0.6183720049373647 0.5039797927635995 0.6183720049373647 0.5039797927635995 0.42820225318963356
+0.6107309031203018 0.5063394423722336 0.6107309031203018 0.5063394423722336 0.5375219511847527
+0.6067889175618258 0.5085029789489005 0.6067889175618258 0.5085029789489005 0.5937730650737042
+0.6271414103411375 0.4942886965540094 0.6271414103411375 0.49428869655400937 0.317268693014346
+0.6302555214894193 0.4901671868574793 0.6302555214894193 0.4901671868574793 0.2737371029024119
+0.629916869011038 0.49302498932494593 0.629916869011038 0.49302498932494593 0.2854297333826325
+0.6257485269334617 0.49641308036286025 0.6257485269334618 0.4964130803628603 0.3369020945395955
+0.6236669183759801 0.4985580470373597 0.6236669183759801 0.4985580470373597 0.36355037203640533
+0.6429527500459483 0.4810921148317609 0.6429527500459483 0.4810921148317609 0.14504484242259183
+0.644936211121509 0.4787597790785643 0.644936211121509 0.4787597790785643 0.12885221448849907
+0.6478747781589301 0.47759855891677594 0.6478747781589301 0.47759855891677594 0.11145093629077867
+0.6337864715028056 0.48848003287255876 0.6337864715028055 0.48848003287255876 0.23593403780136638
+0.6374106866224676 0.48663990640137944 0.6374106866224675 0.4866399064013795 0.19999669383472773
+0.6407237959512254 0.48432796562224156 0.6407237959512254 0.4843279656222416 0.16840474115416987
+0.667316534562167 0.4612908069487888 0.667316534562167 0.4612908069487888 0.1332878260347943
+0.6703572336572878 0.45926018384027856 0.6703572336572878 0.45926018384027856 0.1438679687747537
+0.6576686179329618 0.4679913444717021 0.6576686179329618 0.46799134447170215 0.103791772183347
+0.6642471053212012 0.4634436334777238 0.6642471053212012 0.4634436334777238 0.1221662327575177
+0.6609014100835097 0.46566059567983975 0.6609014100835097 0.4656605956798398 0.11212021671557997
+0.6509427228734587 0.475876046721546 0.6509427228734587 0.475876046721546 0.09673729802792928
+0.6541832497741176 0.4739064418121029 0.6541832497741176 0.4739064418121029 0.08693473399411057
+0.6574745692770962 0.47181040081921927 0.6574745692770962 0.47181040081921927 0.08393776736811755
+0.6734449965490481 0.4572451557718429 0.6734449965490481 0.4572451557718429 0.1541160075725415
+0.6765744918331537 0.4552555281101199 0.6765744918331537 0.4552555281101199 0.16373833161851084
+0.679725225494438 0.45324560224768734 0.679725225494438 0.45324560224768734 0.17287781134316993
+0.6829051739478036 0.4512238477188632 0.6829051739478036 0.4512238477188632 0.18135703524103694
+0.6861071255419655 0.4491797166574724 0.6861071255419655 0.4491797166574724 0.18918362995700208
+0.6893253108194528 0.44710350999417914 0.6893253108194529 0.44710350999417914 0.19638986259567168
+0.6925136063755762 0.44501455866719336 0.6925136063755762 0.44501455866719336 0.20294208833082852
+0.6956004079771999 0.4428549453851797 0.6956004079771999 0.4428549453851797 0.20928260702829646
+0.6985616998411115 0.4406507323698143 0.6985616998411115 0.4406507323698143 0.2154035981311664
+0.7015377189208659 0.4385386694401227 0.7015377189208659 0.4385386694401227 0.22049912997497897
+0.7047799596405327 0.43303441246682167 0.7047799596405327 0.43303441246682167 0.23998050842545718
+0.7110315616986397 0.42881842184273583 0.7110315616986397 0.42881842184273583 0.24657140954435217
+0.7079260632472772 0.4309674559422994 0.7079260632472772 0.4309674559422994 0.24317805038406945
+0.7046541925751413 0.43651627323174425 0.7046541925751413 0.4365162732317442 0.22445181749677887
+0.7141862959322407 0.4304148042672118 0.7141862959322407 0.4304148042672118 0.23425775462451903
+0.7173408722209696 0.42829029399070623 0.7173408722209696 0.42829029399070623 0.23757049359812868
+0.7205136104686543 0.42615743901321795 0.7205136104686543 0.42615743901321795 0.24081951616311806
+0.7237162554798182 0.4239846179536817 0.7237162554798182 0.42398461795368175 0.24416884304889477
+0.7300396765229712 0.4196137859111174 0.7300396765229712 0.4196137859111175 0.25128056728953885
+0.7269061393831588 0.4217898826371122 0.7269061393831588 0.4217898826371122 0.2476792689296761
+0.7331522229391937 0.4210496252617587 0.7331522229391937 0.42104962526175876 0.24167294523910424
+0.7362332742434323 0.41550308210161396 0.7362332742434323 0.41550308210161396 0.25790121953622047
+0.7393674904534229 0.413455953228335 0.7393674904534229 0.413455953228335 0.2612206925435315
+0.7425142073398205 0.41140603536198217 0.7425142073398207 0.41140603536198217 0.26456152518747905
+0.7456871422393165 0.409379919078192 0.7456871422393165 0.409379919078192 0.26776946528412543
+0.7488602534182585 0.4073349257667402 0.7488602534182585 0.4073349257667402 0.2709777632905293
+0.7362800321633713 0.4189400489645527 0.7362800321633713 0.41894004896455267 0.24529732429660464
+0.7520375104839729 0.4052685499669857 0.7520375104839729 0.4052685499669857 0.2741311803364441
+0.7645324427419266 0.3968291892792499 0.7645324427419266 0.3968291892792499 0.2852575098239045
+0.7552039025868166 0.4031814627393403 0.7552039025868166 0.40318146273934025 0.27718480478076596
+0.7614664679173683 0.3989316027210425 0.7614664679173683 0.3989316027210425 0.2828626225430774
+0.7583505556931219 0.40106638660322885 0.7583505556931219 0.40106638660322885 0.28011457018348307
+0.7676731440109381 0.3948004856622216 0.7676731440109381 0.3948004856622216 0.2869618735319342
+0.7676762122731373 0.3982684173511014 0.7676762122731374 0.39826841735110147 0.27626141035130103
+0.770801822108485 0.392814185636814 0.770801822108485 0.392814185636814 0.28818611368990593
+0.7739107222755502 0.3907200539249651 0.7739107222755502 0.3907200539249651 0.28937291004712473
+0.7770397199622914 0.3886081771282534 0.7770397199622914 0.3886081771282534 0.29021277587210315
+0.7802004034085114 0.3865410174324877 0.7802004034085114 0.3865410174324877 0.29049225216988356
+0.7832850112627378 0.3808022497174645 0.7832850112627378 0.3808022497174645 0.30018278823675915
+0.7833891227011092 0.3845070103395982 0.7833891227011093 0.3845070103395982 0.29030527380107346
+0.7864502995204495 0.3787397412901187 0.7864502995204495 0.3787397412901187 0.2994939659234959
+0.7896546330836793 0.37666845016625655 0.7896546330836793 0.37666845016625655 0.2985301392765494
+0.7929085723490304 0.37451462666383883 0.7929085723490304 0.37451462666383883 0.29748906087703403
+0.7963594779818363 0.37243009012502276 0.7963594779818363 0.37243009012502276 0.29583544715131355
+0.7999203961076672 0.3703805179480207 0.7999203961076672 0.3703805179480207 0.2938688701885288
+0.8033852938361442 0.3682483252841507 0.8033852938361442 0.3682483252841507 0.2923809779457846
+0.8067764889943995 0.36611767638683723 0.8067764889943995 0.36611767638683723 0.291170252475026
+0.8101550031115653 0.3640175831756339 0.8101550031115653 0.3640175831756339 0.29013000101185255
+0.8135425038430514 0.3619293977752489 0.8135425038430514 0.3619293977752489 0.2893126056833633
+0.816924711737045 0.35983486738181897 0.816924711737045 0.35983486738181897 0.28880367253123995
+0.8203109222900734 0.3577408637384949 0.8203109222900734 0.3577408637384949 0.2885825571591342
+0.8237001528527989 0.35564847903526337 0.8237001528527989 0.35564847903526337 0.28863582980913377
+0.827090451946384 0.3535564853556211 0.8270904519463841 0.3535564853556212 0.28893559741402425
+0.8304808352415529 0.351464435146416 0.8304808352415529 0.351464435146416 0.2894334150539531
+0.8338712185367219 0.3493723849372109 0.8338712185367217 0.34937238493721084 0.2900647209974779
+0.8372616018318908 0.3472803347280058 0.8372616018318908 0.3472803347280058 0.2907550089064015
+0.8406519851270597 0.3451882845188007 0.8406519851270599 0.34518828451880074 0.2914243959144977
+0.8440423684222287 0.34309623430959557 0.8440423684222287 0.34309623430959557 0.291992308980749
+0.8474327517173976 0.34100418410039046 0.8474327517173975 0.3410041841003904 0.29238201000142744
+0.8508231350125666 0.33891213389118535 0.8508231350125666 0.33891213389118535 0.29252474172853304
+0.8542135183077355 0.33682008368198024 0.8542135183077356 0.3368200836819803 0.29236334378467993
+0.8576039016029045 0.33472803347277513 0.8576039016029045 0.33472803347277513 0.29185524611338226
+0.8609942848980734 0.33263598326357 0.8609942848980733 0.33263598326356997 0.29097478928707116
+0.8643846681932423 0.3305439330543649 0.8643846681932423 0.3305439330543649 0.289714845409253
+0.8677750514884113 0.3284518828451598 0.8677750514884114 0.32845188284515986 0.28808772156158907
+0.8711654347835802 0.3263598326359547 0.8711654347835802 0.3263598326359547 0.28612532363978144
+0.8745558180787492 0.3242677824267496 0.874555818078749 0.32426778242674953 0.2838785470884336
+0.8779462013739181 0.3221757322175445 0.8779462013739181 0.3221757322175445 0.28141584869663855
+0.881336584669087 0.32008368200833937 0.8813365846690872 0.3200836820083394 0.2788209477381218
+0.884726967964256 0.31799163179913426 0.884726967964256 0.31799163179913426 0.2761896141500693
+0.8881173512594249 0.31589958158992915 0.8881173512594248 0.3158995815899291 0.273625535639227
+0.8915077345545939 0.31380753138072404 0.8915077345545939 0.31380753138072404 0.2712353227247673
+0.8948981178497628 0.3117154811715189 0.8948981178497629 0.311715481171519 0.2691228137862583
+0.8982885011449318 0.3096234309623138 0.8982885011449318 0.3096234309623138 0.2673829740635338
+0.9016788844401007 0.3075313807531087 0.9016788844401006 0.30753138075310865 0.26609582181127317
+0.9050692677352696 0.3054393305439036 0.9050692677352696 0.3054393305439036 0.26532092575248334
+0.9084596510304386 0.3033472803346985 0.9084596510304387 0.30334728033469854 0.2650930583312819
+0.9118500343256075 0.3012552301254934 0.9118500343256075 0.3012552301254934 0.26541952562248333
+0.9152404176207765 0.29916317991628827 0.9152404176207763 0.2991631799162882 0.26627952022160045
+0.9186308009159454 0.29707112970708316 0.9186308009159454 0.29707112970708316 0.26762558752177396
+0.9220211842111143 0.29497907949787805 0.9220211842111145 0.2949790794978781 0.26938701815177324
+0.9254115675062833 0.29288702928867294 0.9254115675062833 0.29288702928867294 0.27147474807987404
+0.9288019508014522 0.29079497907946783 0.9288019508014521 0.2907949790794678 0.27378721315405324
+0.9321923340966212 0.2887029288702627 0.9321923340966212 0.2887029288702627 0.27621658220549644
+0.9355827173917901 0.2866108786610576 0.9355827173917902 0.28661087866105767 0.27865486358663644
+0.938973100686959 0.2845188284518525 0.938973100686959 0.2845188284518525 0.28099950522686346
+0.942363483982128 0.2824267782426474 0.9423634839821279 0.28242677824264734 0.2831582466586146
+0.9457538672772969 0.2803347280334423 0.9457538672772969 0.2803347280334423 0.28505310210151574
+0.9491442505724659 0.2782426778242372 0.949144250572466 0.27824267782423723 0.28662344065804096
+0.9525346338676348 0.27615062761503206 0.9525346338676348 0.27615062761503206 0.2878281800230198
+0.9559250171628038 0.27405857740582695 0.9559250171628036 0.2740585774058269 0.2886471290850359
+0.9593154004579727 0.27196652719662184 0.9593154004579727 0.27196652719662184 0.2890815112379534
+0.9627057837531416 0.26987447698741673 0.9627057837531418 0.2698744769874168 0.28915368358260446
+0.9660961670483106 0.2677824267782116 0.9660961670483106 0.2677824267782116 0.2889060463202649
+0.9694865503434795 0.2656903765690065 0.9694865503434794 0.26569037656900646 0.2883991196826908
+0.9728769336386485 0.2635983263598014 0.9728769336386485 0.2635983263598014 0.28770876057377254
+0.9762673169338174 0.2615062761505963 0.9762673169338175 0.26150627615059635 0.2869225053909301
+0.9796577002289864 0.2594142259413912 0.9796577002289864 0.2594142259413912 0.28613506596913224
+0.9830480835241553 0.2573221757321861 0.9830480835241552 0.257322175732186 0.2854430760038746
+0.9864384668193242 0.25523012552298097 0.9864384668193242 0.25523012552298097 0.28493928334518454
+0.9898288501144932 0.25313807531377586 0.9898288501144933 0.2531380753137759 0.2847064975816536
+0.9932192334096621 0.25104602510457075 0.9932192334096621 0.25104602510457075 0.28481170997805844
+0.2552301255230128 0.9932192334096621 0.2552301255230128 0.9932192334096621 0.17690010863639613
+0.25732217573221783 0.9898288501144932 0.2573221757322179 0.9898288501144933 0.17838151665579272
+0.2594142259414229 0.9864384668193242 0.2594142259414229 0.9864384668193242 0.18012846086700016
+0.2615062761506279 0.9830480835241553 0.2615062761506279 0.9830480835241552 0.18209252993441585
+0.26359832635983294 0.9796577002289864 0.26359832635983294 0.9796577002289864 0.18422575270258212
+0.265690376569038 0.9762673169338175 0.265690376569038 0.9762673169338175 0.18648256342497527
+0.267782426778243 0.9728769336386488 0.267782426778243 0.9728769336386488 0.18882129192362393
+0.26987447698744793 0.9694865503434796 0.26987447698744793 0.9694865503434796 0.1912051763162961
+0.27196652719665293 0.9660961670483106 0.27196652719665293 0.9660961670483106 0.1936029327205759
+0.2740585774058578 0.9627057837531418 0.2740585774058579 0.9627057837531418 0.19598893855375818
+0.27615062761506276 0.9593154004579728 0.27615062761506276 0.9593154004579728 0.19834309676581954
+0.27824267782426776 0.9559250171628038 0.27824267782426776 0.9559250171628036 0.20065045117804023
+0.2803347280334728 0.9525346338676347 0.28033472803347287 0.9525346338676347 0.20290062117956884
+0.282426778242678 0.9491442505724658 0.282426778242678 0.9491442505724658 0.20508711958851586
+0.2845188284518832 0.9457538672772969 0.2845188284518832 0.9457538672772969 0.20720661183132286
+0.2866108786610886 0.942363483982128 0.2866108786610886 0.9423634839821279 0.20925816833077845
+0.2887029288702941 0.9389731006869592 0.2887029288702941 0.9389731006869592 0.21124255524946034
+0.29079497907949975 0.9355827173917907 0.29079497907949975 0.9355827173917907 0.21316160141778875
+0.2928870292887055 0.932192334096622 0.2928870292887055 0.932192334096622 0.21501767125821966
+0.29497907949791163 0.928801950801454 0.29497907949791163 0.9288019508014539 0.21681326477033205
+0.29707112970711774 0.9254115675062867 0.29707112970711774 0.9254115675062867 0.21855075629963225
+0.2991631799163236 0.9220211842111198 0.29916317991632363 0.9220211842111198 0.22023227418217659
+0.301255230125529 0.9186308009159545 0.30125523012552907 0.9186308009159544 0.22185971388081419
+0.3033472803347319 0.9152404176207879 0.3033472803347319 0.9152404176207879 0.22343486842269247
+0.30543933054393113 0.9118500343256226 0.30543933054393113 0.9118500343256226 0.2249596523252648
+0.30753138075313124 0.9084596510304529 0.30753138075313124 0.9084596510304529 0.22643638920369422
+0.3096234309623292 0.9050692677352804 0.3096234309623292 0.9050692677352804 0.2278681292151579
+0.31171548117152853 0.9016788844401048 0.31171548117152853 0.9016788844401048 0.2292589606095301
+0.3138075313807336 0.8982885011449264 0.3138075313807336 0.8982885011449264 0.23061427998736472
+0.3158995815899472 0.894898117849748 0.3158995815899472 0.894898117849748 0.23194098837704338
+0.31799163179916984 0.8915077345545731 0.31799163179916984 0.8915077345545731 0.23324758481857896
+0.3200836820083974 0.8881173512594063 0.3200836820083974 0.8881173512594064 0.2345441356115585
+0.3221757322176213 0.884726967964249 0.3221757322176213 0.884726967964249 0.23584210552606313
+0.32426778242683124 0.8813365846690991 0.32426778242683124 0.8813365846690991 0.2371540467956644
+0.3263598326360199 0.87794620137395 0.3263598326360199 0.87794620137395 0.2384931522157361
+0.3284518828451885 0.8745558180787922 0.3284518828451885 0.8745558180787922 0.23987268962342598
+0.33054393305434837 0.8711654347836185 0.3305439330543484 0.8711654347836185 0.24130534573913867
+0.3326359832635186 0.8677750514884273 0.3326359832635186 0.8677750514884274 0.24280251695075541
+0.33472803347271785 0.8643846681932247 0.33472803347271785 0.8643846681932247 0.2443735921733525
+0.3368200836819544 0.8609942848980249 0.3368200836819544 0.8609942848980249 0.24602527748871558
+0.33891213389121955 0.8576039016028424 0.33891213389121955 0.8576039016028424 0.24776101310206045
+0.34100418410048877 0.8542135183076868 0.34100418410048877 0.8542135183076868 0.24958052982622483
+0.3430962343097321 0.8508231350125545 0.3430962343097321 0.8508231350125545 0.2514795848628453
+0.3451882845189287 0.8474327517174304 0.3451882845189287 0.8474327517174304 0.25344990566562137
+0.3472803347280791 0.8440423684222935 0.3472803347280791 0.8440423684222935 0.25547935718585074
+0.34937238493720707 0.8406519851271281 0.34937238493720707 0.840651985127128 0.2575523331769208
+0.351464435146349 0.8372616018319313 0.351464435146349 0.8372616018319313 0.25965035792863794
+0.3535564853555355 0.833871218536716 0.3535564853555355 0.833871218536716 0.2617528721302982
+0.355648535564776 0.8304808352415044 0.355648535564776 0.8304808352415044 0.263838166502878
+0.357740567220197 0.8270905031149701 0.357740567220197 0.8270905031149701 0.2658843983345065
+0.35983275471895965 0.8237005259499052 0.35983275471895965 0.8237005259499052 0.26787082004069024
+0.3619253772645106 0.8203116789633512 0.3619253772645106 0.8203116789633512 0.26977888331283767
+0.3640182465921466 0.8169263702992358 0.3640182465921466 0.8169263702992356 0.2715929427292243
+0.3661098442105621 0.8135483724539313 0.3661098442105621 0.8135483724539313 0.2733008148330493
+0.3681988630281377 0.8101805412695581 0.3681988630281377 0.8101805412695581 0.2748959397312453
+0.37028734048498274 0.8068219403495891 0.37028734048498274 0.8068219403495892 0.27638035035573166
+0.37238037921058437 0.8034542678259247 0.37238037921058437 0.8034542678259246 0.2777619309329982
+0.388858904281341 0.7743541887972569 0.388858904281341 0.7743541887972568 0.28723428932168954
+0.37443088684178555 0.8000799582274943 0.37443088684178555 0.8000799582274943 0.2790087190529657
+0.37657464913016625 0.7968423208267321 0.37657464913016625 0.7968423208267321 0.2802543157091579
+0.37834555432075556 0.7937508784507701 0.3783455543207555 0.7937508784507701 0.28119273322437044
+0.37951420430893584 0.7905630713387501 0.37951420430893584 0.7905630713387501 0.28159413582687914
+0.38503096054388924 0.779134903071951 0.38503096054388924 0.779134903071951 0.2844253865619473
+0.3843595519596346 0.7827020307868998 0.3843595519596346 0.7827020307868998 0.28429315410972217
+0.38296975001700484 0.7898751150742129 0.38296975001700484 0.7898751150742128 0.28422656225545606
+0.3836558295049261 0.7863248845366996 0.3836558295049261 0.7863248845366996 0.28423156956265205
+0.38828487220953195 0.7780072555931965 0.38828487220953195 0.7780072555931965 0.28690260610205653
+0.3934599348209502 0.7657418986783702 0.3934599348209502 0.7657418986783702 0.29142688022979796
+0.39258339345084037 0.7693715226513227 0.3925833934508404 0.7693715226513227 0.29027641415989075
+0.3920162326886369 0.7730347946513655 0.3920162326886369 0.7730347946513655 0.2896014634150177
+0.3967217289333027 0.7644783146381449 0.3967217289333027 0.7644783146381449 0.2940600711286929
+0.4017860490183594 0.7518446208638467 0.4017860490183594 0.7518446208638467 0.30263121672983
+0.4012163920049297 0.7556031419125482 0.4012163920049297 0.7556031419125482 0.30027977994209315
+0.4006513832900798 0.7593699522433052 0.4006513832900798 0.7593699522433052 0.2982771084681288
+0.40006226508710196 0.7631320239135778 0.4000622650871019 0.7631320239135778 0.29661421893301837
+0.4057002575055437 0.7465745923379229 0.40570025750554367 0.7465745923379229 0.3086292991718367
+0.4051474090311109 0.7503191738360818 0.40514740903111085 0.7503191738360818 0.30574428243265056
+0.40897764573853573 0.7449976161606005 0.40897764573853573 0.7449976161606005 0.3117578845127407
+0.41266753787246535 0.7396648686039913 0.4126675378724654 0.7396648686039913 0.3181994451397483
+0.4122027579158091 0.7433719634215602 0.4122027579158091 0.7433719634215602 0.3146993492335964
+0.41579055258730024 0.7379615955145054 0.41579055258730024 0.7379615955145055 0.3211528656159053
+0.41883782655636953 0.7362713131299174 0.41883782655636953 0.7362713131299174 0.323824599371959
+0.42184589118413396 0.7346012589510564 0.4218458911841339 0.7346012589510565 0.3262134271411681
+0.424934719979056 0.733001853283891 0.424934719979056 0.733001853283891 0.3282318898869017
+0.4411935815905322 0.7023299201752167 0.4411935815905322 0.7023299201752167 0.36238057810081875
+0.4440773539851988 0.7005819960840274 0.4440773539851988 0.7005819960840274 0.36267732848243805
+0.42848330328829554 0.7277105111860201 0.4284833032882956 0.7277105111860201 0.33427959703430665
+0.4281287273573456 0.7314730607713725 0.4281287273573456 0.7314730607713725 0.3297974591784862
+0.4318911875348619 0.722352567270638 0.43189118753486183 0.722352567270638 0.3403413014937197
+0.43174180461595874 0.7262047684502623 0.43174180461595874 0.7262047684502623 0.33549964189116266
+0.4349688698205 0.7171938158885188 0.43496886982050004 0.7171938158885188 0.34598206761324074
+0.4349447712598386 0.7207924339282629 0.4349447712598386 0.7207924339282629 0.3413127102746146
+0.43831050550762957 0.7077145913391699 0.43831050550762957 0.7077145913391699 0.3569501720388883
+0.4374483892600116 0.7114127501103941 0.4374483892600116 0.7114127501103942 0.35258195593050445
+0.43802968690093164 0.7153512988074369 0.43802968690093164 0.7153512988074368 0.347017903298412
+0.44120598041793746 0.7060350884272604 0.4412059804179375 0.7060350884272603 0.35750318427380684
+0.4470526150457225 0.69470587212972 0.4470526150457225 0.69470587212972 0.3679575161694694
+0.44701507220478454 0.6987488098332464 0.4470150722047846 0.6987488098332464 0.3625300842823895
+0.4501549815206797 0.6924494595724151 0.45015498152067973 0.6924494595724151 0.3677951572619434
+0.47311128526936147 0.6440566480620948 0.47311128526936147 0.6440566480620948 0.40957641806634293
+0.4748344721309044 0.6417366859486422 0.4748344721309044 0.6417366859486422 0.41146801115149695
+0.45318296813841813 0.6901603436848865 0.45318296813841813 0.6901603436848865 0.3671748375342292
+0.4561098481113317 0.6878532015606208 0.45610984811133176 0.6878532015606208 0.36615290299868547
+0.4589469437527523 0.6855277030724727 0.4589469437527523 0.6855277030724727 0.3647574719517357
+0.4616992836570815 0.6831783847547156 0.4616992836570815 0.6831783847547156 0.36303040684941007
+0.4731732221411495 0.6471362404071028 0.4731732221411495 0.6471362404071028 0.402922351025734
+0.46436172897282174 0.6807939497270533 0.46436172897282174 0.6807939497270533 0.36104879630962133
+0.46695481581991016 0.6783916258647401 0.46695481581991016 0.6783916258647401 0.35879002981621116
+0.47383044423672355 0.6506121144366189 0.47383044423672355 0.6506121144366189 0.3939798321406586
+0.47463749374545183 0.6542966848564794 0.4746374937454519 0.6542966848564794 0.3839983360077078
+0.47552165036027877 0.6580881434465939 0.47552165036027877 0.6580881434465939 0.3733597419164996
+0.4694653389009499 0.6759830938682385 0.46946533890094994 0.6759830938682385 0.356305232984022
+0.4718701890867457 0.6735973635448629 0.4718701890867458 0.6735973635448628 0.3536670761531033
+0.4764697296975951 0.6620241441622471 0.4764697296975951 0.6620241441622471 0.36204773923582706
+0.47415499865302496 0.671347677302923 0.47415499865302496 0.671347677302923 0.3507620674706184
+0.4763690660172399 0.6695860145303361 0.4763690660172399 0.6695860145303361 0.34672589444481755
+0.4775056015215202 0.666488805250578 0.47750560152152033 0.6664888052505779 0.34923349217294364
+0.4769747488379699 0.6389621481464928 0.4769747488379699 0.6389621481464928 0.4136788801552198
+0.47919145107987016 0.6364929054156414 0.4791914510798701 0.6364929054156415 0.4152050260807685
+0.48191643441036675 0.6336991936437506 0.48191643441036675 0.6336991936437507 0.4169770007541485
+0.4832849015574882 0.6307686918077628 0.4832849015574882 0.6307686918077628 0.4228629947735863
+0.4854972038923286 0.6293062996836292 0.4854972038923286 0.6293062996836292 0.4226152232513036
+0.47250385528592814 0.611639344967275 0.4725038552859281 0.6116393449672751 0.47680961535277355
+0.4743825984477431 0.6148299316554864 0.47438259844774316 0.6148299316554864 0.473005690262307
+0.477405538061278 0.6188923571773822 0.477405538061278 0.6188923571773822 0.4653747744130127
+0.4766000059812364 0.6160944811478072 0.4766000059812364 0.6160944811478072 0.47215244079984925
+0.48108558429163706 0.6222327473877375 0.48108558429163706 0.6222327473877375 0.45453682123276146
+0.47992465863874173 0.6192156032194724 0.47992465863874173 0.6192156032194723 0.4647064711506736
+0.4828408825631709 0.6246341885489974 0.4828408825631709 0.6246341885489973 0.44453398620421813
+0.4847028058447453 0.6263956566304515 0.4847028058447453 0.6263956566304515 0.4349703037075493
+0.4831826699745662 0.6219611278601052 0.48318266997456616 0.6219611278601052 0.45357454439867
+0.48725501439572844 0.6265306355358542 0.48725501439572844 0.6265306355358541 0.42890872052162266
+0.4755020135833261 0.6081930412426038 0.4755020135833261 0.6081930412426039 0.4883098850368172
+0.47833529292811505 0.6049017032490899 0.47833529292811505 0.6049017032490899 0.5036354054066247
+0.617478691040312 0.5063576366430028 0.6174786910403122 0.5063576366430028 0.4334157068460102
+0.6209607656140816 0.5027362182248021 0.6209607656140816 0.5027362182248022 0.39594943988267867
+0.6241249848340131 0.5012910782562385 0.6241249848340131 0.5012910782562385 0.3582204720092588
+0.620747077345531 0.5053216268566487 0.620747077345531 0.5053216268566487 0.39325695134353206
+0.614615047576305 0.5087208435856851 0.6146150475763051 0.5087208435856851 0.4640299243215282
+0.6180126181695751 0.5088582518022402 0.6180126181695751 0.5088582518022402 0.4154402363276275
+0.6104100724052511 0.5109061738403903 0.6104100724052511 0.5109061738403903 0.5130477887712952
+0.6063509468344782 0.512911737693673 0.6063509468344782 0.512911737693673 0.560523560595044
+0.628899980419496 0.4959222294009648 0.628899980419496 0.4959222294009648 0.3018783191983869
+0.6334309829239754 0.49224806331795595 0.6334309829239754 0.4922480633179559 0.2500212668219579
+0.631708381749364 0.4949686128242135 0.631708381749364 0.4949686128242135 0.27190555570597513
+0.6274085623275905 0.49904292423453434 0.6274085623275906 0.4990429242345344 0.3209338675650239
+0.6272516811762652 0.5023603890075885 0.6272516811762651 0.5023603890075884 0.32165242546457695
+0.6443893455083979 0.483604861268133 0.6443893455083979 0.48360486126813307 0.14131632906525027
+0.6467482853862216 0.4812195545788955 0.6467482853862218 0.4812195545788955 0.12166421859029788
+0.6504628006686892 0.47959054179095506 0.6504628006686892 0.4795905417909551 0.0985697693373248
+0.6403249595315235 0.4881727736507372 0.6403249595315234 0.48817277365073725 0.18190704503068797
+0.6368293822556004 0.4901131182028508 0.6368293822556003 0.4901131182028508 0.21474570238259136
+0.6366370518699063 0.4930998894944422 0.6366370518699063 0.4930998894944422 0.2233339292120215
+0.6437769091762886 0.48646688282629197 0.6437769091762887 0.48646688282629197 0.1524199092841733
+0.6673389796570942 0.46467532558184244 0.6673389796570942 0.4646753255818425 0.11022749950244849
+0.6703388944054225 0.46256194168071274 0.6703388944054226 0.4625619416807128 0.12163294171646812
+0.6734705488646218 0.46054184511622825 0.6734705488646218 0.46054184511622825 0.13243229683568755
+0.6608721281196228 0.46957575134263374 0.6608721281196228 0.46957575134263374 0.08770705291201746
+0.6647150329430456 0.4672076550048508 0.6647150329430457 0.46720765500485084 0.09639557693488454
+0.6538862485954273 0.47763821724064376 0.6538862485954273 0.47763821724064376 0.0814923363291083
+0.6571739600887483 0.47561332049182475 0.6571739600887483 0.47561332049182475 0.07127900850219719
+0.6605318117821799 0.4735662959601334 0.6605318117821799 0.4735662959601334 0.06815608857439016
+0.6766538582900118 0.45858019876681316 0.6766538582900118 0.45858019876681316 0.14254958908612878
+0.6798385411524249 0.4566212629406952 0.6798385411524249 0.4566212629406952 0.15214017692517612
+0.6830449927481461 0.4546511560043547 0.6830449927481461 0.45465115600435463 0.16112332430824497
+0.6862785005261887 0.4526662245530817 0.6862785005261887 0.4526662245530817 0.16942670878301944
+0.6895459053804813 0.45065094898528113 0.6895459053804814 0.4506509489852811 0.17708081514622256
+0.6928413401849847 0.4486156696293651 0.6928413401849847 0.4486156696293651 0.18401950232152833
+0.6960649658205622 0.4465572978068637 0.6960649658205621 0.44655729780686376 0.190394860412203
+0.6989016198728912 0.4442800001333694 0.6989016198728911 0.4442800001333694 0.19757188641641218
+0.7014666958950831 0.4419521243864872 0.7014666958950831 0.4419521243864872 0.2048464470130815
+0.7044717594555232 0.4399995897591234 0.7044717594555232 0.4399995897591234 0.20920703396412185
+0.7079041537875703 0.43463263585946393 0.7079041537875703 0.43463263585946393 0.22720687925642832
+0.7110259155552575 0.43265132515735205 0.7110259155552575 0.43265132515735205 0.23031560112323277
+0.7076336419619619 0.43803541418399267 0.7076336419619619 0.43803541418399267 0.21300879080875304
+0.7141873896522303 0.4340452521770393 0.7141873896522303 0.4340452521770393 0.21955289491220273
+0.717351670007254 0.4319994328758478 0.717351670007254 0.4319994328758478 0.22286538767242847
+0.7204929677709382 0.4299134014060726 0.7204929677709382 0.42991340140607265 0.22627871979184208
+0.7237150498997421 0.42776201330057906 0.7237150498997421 0.427762013300579 0.22977838051374802
+0.727064813146854 0.4254697209902097 0.7270648131468541 0.4254697209902097 0.23360665606385614
+0.7301896804934933 0.4232288702291029 0.7301896804934933 0.4232288702291029 0.2376020591425538
+0.7332682510131358 0.4242980509194212 0.7332682510131358 0.42429805091942113 0.2298144984566393
+0.736347487380449 0.42227478140422836 0.7363474873804491 0.4222747814042283 0.23329026477592674
+0.7394671539987209 0.4168797739599604 0.7394671539987209 0.4168797739599604 0.24872259205539113
+0.742642590289765 0.41486333007268356 0.742642590289765 0.41486333007268356 0.2520393100525024
+0.7458345884605866 0.41285204883243076 0.7458345884605865 0.4128520488324307 0.255319059663571
+0.7490328611959544 0.4108551618230934 0.7490328611959544 0.4108551618230934 0.2584935063675213
+0.7522476289303875 0.40883326004807413 0.7522476289303875 0.40883326004807413 0.26163428048172727
+0.73954510132187 0.42026261520189445 0.73954510132187 0.42026261520189445 0.23664673427082164
+0.7554590488845471 0.4067865726756748 0.7554590488845471 0.4067865726756748 0.26470438077612907
+0.7646661107186711 0.4003829640596219 0.7646661107186711 0.4003829640596219 0.27381945674298924
+0.7586407120755122 0.4047089378290485 0.7586407120755122 0.4047089378290485 0.2676958681329921
+0.7617124515184104 0.40256920862699364 0.7617124515184104 0.40256920862699364 0.2707453529989708
+0.7675140689913542 0.40184175752112067 0.7675140689913542 0.40184175752112067 0.26552821362106355
+0.7709987366690346 0.3964561907010393 0.7709987366690346 0.3964561907010393 0.2770034408675513
+0.7706479319436073 0.39977751570507947 0.7706479319436071 0.3997775157050794 0.2676002717542121
+0.7739789391986904 0.39457879487256114 0.7739789391986904 0.39457879487256114 0.27806398038330166
+0.7770679602644748 0.392270245062289 0.7770679602644748 0.392270245062289 0.2798893431452562
+0.7802710013257279 0.3902188356482423 0.7802710013257279 0.3902188356482423 0.28039317506976374
+0.7834989907366984 0.38816587440156003 0.7834989907366984 0.38816587440156 0.28051857868968
+0.7866162531856381 0.38252229597626447 0.7866162531856381 0.38252229597626447 0.2896360442226557
+0.7867044689322903 0.38621054618497613 0.7867044689322903 0.38621054618497613 0.28013877329173603
+0.7898903808336369 0.3805346020867088 0.7898903808336369 0.3805346020867088 0.28865796931316584
+0.793233657156391 0.37857056612387385 0.793233657156391 0.37857056612387385 0.2873205966203582
+0.7965770022898635 0.3765690376568773 0.7965770022898635 0.3765690376568773 0.285962271572119
+0.7999265173615484 0.37450069404179026 0.7999265173615484 0.37450069404179026 0.28473386072984525
+0.8033259263971411 0.37239114699042347 0.8033259263971412 0.37239114699042347 0.28354862015785726
+0.8067447480847384 0.37028739927794835 0.8067447480847384 0.37028739927794835 0.2824473092338479
+0.8101449403223633 0.3681978228690744 0.8101449403223633 0.3681978228690744 0.2815390508331907
+0.8135353072089644 0.36610848006623364 0.8135353072089643 0.3661084800662336 0.2808895610339373
+0.8169232586819591 0.3640173685690458 0.8169232586819591 0.3640173685690458 0.28052592421467
+0.8203106146454916 0.36192482666754816 0.8203106146454916 0.36192482666754816 0.2804606325157614
+0.823700068651215 0.35983263598323645 0.823700068651215 0.35983263598323645 0.2806827132326748
+0.827090451946384 0.35774058577403134 0.8270904519463841 0.3577405857740313 0.2811698642417193
+0.8304808352415529 0.35564853556482623 0.8304808352415529 0.35564853556482623 0.28188048294034257
+0.8338712185367219 0.3535564853556211 0.8338712185367217 0.3535564853556212 0.28275591896006697
+0.8372616018318908 0.351464435146416 0.8372616018318908 0.351464435146416 0.2837255009326806
+0.8406519851270597 0.3493723849372109 0.8406519851270599 0.34937238493721084 0.2847108575227597
+0.8440423684222287 0.3472803347280058 0.8440423684222287 0.3472803347280058 0.2856305049756853
+0.8474327517173976 0.3451882845188007 0.8474327517173975 0.34518828451880074 0.28640439724659345
+0.8508231350125666 0.34309623430959557 0.8508231350125666 0.34309623430959557 0.2869581929677258
+0.8542135183077355 0.34100418410039046 0.8542135183077356 0.3410041841003904 0.28722706309071594
+0.8576039016029045 0.33891213389118535 0.8576039016029045 0.33891213389118535 0.28715892697004713
+0.8609942848980734 0.33682008368198024 0.8609942848980733 0.3368200836819803 0.286717054697154
+0.8643846681932423 0.33472803347277513 0.8643846681932423 0.33472803347277513 0.2858820061791713
+0.8677750514884113 0.33263598326357 0.8677750514884114 0.33263598326356997 0.28465289322176734
+0.8711654347835802 0.3305439330543649 0.8711654347835802 0.3305439330543649 0.28304795263637894
+0.8745558180787492 0.3284518828451598 0.874555818078749 0.32845188284515986 0.2811044104342711
+0.8779462013739181 0.3263598326359547 0.8779462013739181 0.3263598326359547 0.2788776046502874
+0.881336584669087 0.3242677824267496 0.8813365846690872 0.32426778242674953 0.2764393233020252
+0.884726967964256 0.3221757322175445 0.884726967964256 0.3221757322175445 0.2738753115935797
+0.8881173512594249 0.32008368200833937 0.8881173512594248 0.3200836820083394 0.27128191696321463
+0.8915077345545939 0.31799163179913426 0.8915077345545939 0.31799163179913426 0.26876188042560983
+0.8948981178497628 0.31589958158992915 0.8948981178497629 0.3158995815899291 0.26641935432717795
+0.8982885011449318 0.31380753138072404 0.8982885011449318 0.31380753138072404 0.2643543307553782
+0.9016788844401007 0.3117154811715189 0.9016788844401006 0.311715481171519 0.26265679167710165
+0.9050692677352696 0.3096234309623138 0.9050692677352696 0.3096234309623138 0.2614010181667887
+0.9084596510304386 0.3075313807531087 0.9084596510304387 0.30753138075310865 0.2606405865953949
+0.9118500343256075 0.3054393305439036 0.9118500343256075 0.3054393305439036 0.2604045959977963
+0.9152404176207765 0.3033472803346985 0.9152404176207763 0.30334728033469854 0.2606955865910004
+0.9186308009159454 0.3012552301254934 0.9186308009159454 0.3012552301254934 0.2614894254047048
+0.9220211842111143 0.29916317991628827 0.9220211842111145 0.2991631799162882 0.2627371854974947
+0.9254115675062833 0.29707112970708316 0.9254115675062833 0.29707112970708316 0.26436878893641363
+0.9288019508014522 0.29497907949787805 0.9288019508014521 0.2949790794978781 0.2662979819570756
+0.9321923340966212 0.29288702928867294 0.9321923340966212 0.29288702928867294 0.2684281043231253
+0.9355827173917901 0.29079497907946783 0.9355827173917902 0.2907949790794678 0.2706581117193401
+0.938973100686959 0.2887029288702627 0.938973100686959 0.2887029288702627 0.27288838807644256
+0.942363483982128 0.2866108786610576 0.9423634839821279 0.28661087866105767 0.27502600642942515
+0.9457538672772969 0.2845188284518525 0.9457538672772969 0.2845188284518525 0.27698922496484224
+0.9491442505724659 0.2824267782426474 0.949144250572466 0.28242677824264734 0.2787111128628758
+0.9525346338676348 0.2803347280334423 0.9525346338676348 0.2803347280334423 0.28014227580215617
+0.9559250171628038 0.2782426778242372 0.9559250171628036 0.27824267782423723 0.28125269246575085
+0.9593154004579727 0.27615062761503206 0.9593154004579727 0.27615062761503206 0.28203268699122047
+0.9627057837531416 0.27405857740582695 0.9627057837531418 0.2740585774058269 0.28249305701122074
+0.9660961670483106 0.27196652719662184 0.9660961670483106 0.27196652719662184 0.282664362277203
+0.9694865503434795 0.26987447698741673 0.9694865503434794 0.2698744769874168 0.2825953639799854
+0.9728769336386485 0.2677824267782116 0.9728769336386485 0.2677824267782116 0.2823505983709747
+0.9762673169338174 0.2656903765690065 0.9762673169338175 0.26569037656900646 0.282007078181635
+0.9796577002289864 0.2635983263598014 0.9796577002289864 0.2635983263598014 0.2816501485252942
+0.9830480835241553 0.2615062761505963 0.9830480835241552 0.26150627615059635 0.28136858458856184
+0.9864384668193242 0.2594142259413912 0.9864384668193242 0.2594142259413912 0.2812491052798522
+0.9898288501144932 0.2573221757321861 0.9898288501144933 0.257322175732186 0.28137058070759796
+0.9932192334096621 0.25523012552298097 0.9932192334096621 0.25523012552298097 0.281798312834967
+0.2594142259414228 0.9932192334096621 0.2594142259414229 0.9932192334096621 0.17821956707511352
+0.2615062761506278 0.9898288501144932 0.2615062761506279 0.9898288501144933 0.17971806108580354
+0.2635983263598329 0.9864384668193242 0.2635983263598329 0.9864384668193242 0.1814850156721802
+0.265690376569038 0.9830480835241553 0.265690376569038 0.9830480835241552 0.1834758059764117
+0.267782426778243 0.9796577002289865 0.267782426778243 0.9796577002289865 0.1856460820513385
+0.2698744769874479 0.9762673169338176 0.2698744769874479 0.9762673169338177 0.1879534869869918
+0.27196652719665293 0.9728769336386486 0.27196652719665293 0.9728769336386486 0.1903589393774874
+0.27405857740585793 0.9694865503434795 0.27405857740585793 0.9694865503434794 0.1928274831928303
+0.2761506276150629 0.9660961670483106 0.2761506276150629 0.9660961670483106 0.19532874124160357
+0.27824267782426787 0.9627057837531418 0.27824267782426787 0.9627057837531418 0.19783702870319655
+0.28033472803347287 0.9593154004579727 0.28033472803347287 0.9593154004579727 0.20033119314783435
+0.282426778242678 0.9559250171628038 0.282426778242678 0.9559250171628036 0.2027942500112256
+0.2845188284518832 0.9525346338676348 0.2845188284518832 0.9525346338676348 0.20521288025862847
+0.2866108786610884 0.949144250572466 0.2866108786610884 0.949144250572466 0.20757685187388034
+0.2887029288702937 0.945753867277297 0.28870292887029375 0.945753867277297 0.20987842004669757
+0.2907949790794992 0.9423634839821281 0.2907949790794992 0.9423634839821281 0.2121117531596188
+0.2928870292887047 0.9389731006869594 0.2928870292887047 0.9389731006869594 0.21427242320557863
+0.29497907949791025 0.9355827173917911 0.2949790794979102 0.9355827173917911 0.21635699025659583
+0.29707112970711586 0.9321923340966233 0.29707112970711586 0.9321923340966233 0.21836270119616677
+0.2991631799163213 0.9288019508014554 0.2991631799163213 0.9288019508014554 0.22028731332700802
+0.30125523012552646 0.9254115675062886 0.30125523012552646 0.9254115675062886 0.2221290439607216
+0.3033472803347302 0.9220211842111211 0.3033472803347302 0.9220211842111211 0.2238866380427742
+0.30543933054393224 0.918630800915954 0.30543933054393224 0.918630800915954 0.22555953764689898
+0.3075313807531342 0.9152404176207846 0.3075313807531342 0.9152404176207846 0.22714813014815102
+0.30962343096233513 0.9118500343256138 0.30962343096233513 0.9118500343256138 0.22865404635309514
+0.3117154811715368 0.9084596510304412 0.3117154811715368 0.9084596510304411 0.23008047604575554
+0.31380753138074136 0.9050692677352674 0.31380753138074136 0.9050692677352675 0.2314324664310603
+0.31589958158995063 0.901678884440093 0.31589958158995063 0.901678884440093 0.23271716888626218
+0.31799163179916495 0.8982885011449205 0.31799163179916495 0.8982885011449205 0.2339440012823001
+0.32008368200838216 0.8948981178497523 0.32008368200838216 0.8948981178497523 0.2351246969050473
+0.3221757322175979 0.8915077345545889 0.3221757322175978 0.8915077345545889 0.2362732166702611
+0.3242677824268068 0.8881173512594294 0.3242677824268068 0.8881173512594295 0.2374055088383005
+0.32635983263600504 0.8847269679642711 0.32635983263600504 0.8847269679642711 0.23853910968340422
+0.3284518828451925 0.8813365846691091 0.3284518828451925 0.8813365846691091 0.23969258932161622
+0.3305439330543746 0.8779462013739393 0.33054393305437463 0.8779462013739393 0.2408848587224793
+0.3326359832635606 0.8745558180787599 0.3326359832635606 0.8745558180787599 0.24213436614279046
+0.3347280334727601 0.8711654347835746 0.3347280334727601 0.8711654347835746 0.24345822287627583
+0.33682008368197786 0.8677750514883896 0.33682008368197786 0.8677750514883896 0.24487130813673022
+0.3389121338912105 0.8643846681932127 0.3389121338912105 0.8643846681932127 0.24638540981208304
+0.34100418410044697 0.8609942848980481 0.34100418410044697 0.8609942848980481 0.24800846057633255
+0.34309623430967284 0.8576039016028951 0.34309623430967284 0.857603901602895 0.24974392660859013
+0.3451882845188776 0.854213518307747 0.3451882845188776 0.8542135183077469 0.25159039870324146
+0.3472803347280604 0.8508231350125945 0.3472803347280604 0.8508231350125947 0.2535414233357373
+0.34937238493723105 0.8474327517174293 0.34937238493723105 0.8474327517174293 0.2555855954529073
+0.35146443514640596 0.8440423684222499 0.35146443514640596 0.8440423684222499 0.25770691709575805
+0.3535564853555993 0.8406519851270612 0.3535564853555993 0.8406519851270612 0.2598854083791156
+0.3556485355648165 0.837261601831873 0.3556485355648165 0.837261601831873 0.26209794166990624
+0.3577405857740508 0.8338712185366947 0.3577405857740508 0.8338712185366947 0.2643192574228647
+0.35983263598328746 0.8304808352415299 0.35983263598328746 0.8304808352415299 0.266523111845189
+0.36192467241673615 0.8270904899378141 0.36192467241673615 0.8270904899378141 0.2686834830982187
+0.36401689861611847 0.8237006095768716 0.36401689861611847 0.8237006095768716 0.27077592341662426
+0.3661095067897974 0.820312492196673 0.3661095067897974 0.820312492196673 0.2727786777218361
+0.36820194395871275 0.8169292683989732 0.36820194395871275 0.8169292683989732 0.2746733795691623
+0.3702933643137214 0.8135553466590865 0.3702933643137214 0.8135553466590865 0.27644670254705433
+0.37238461771193926 0.8101932905055259 0.37238461771193926 0.8101932905055259 0.27809285687722657
+0.37447991663666685 0.8068430010874154 0.37447991663666685 0.8068430010874154 0.27961461566016244
+0.376579291463945 0.8035107629988684 0.376579291463945 0.8035107629988684 0.2810189562307142
+0.39157509918662853 0.7767460857917788 0.39157509918662853 0.7767460857917788 0.28925102633085903
+0.3787038107161734 0.8002562190983475 0.3787038107161734 0.8002562190983475 0.28233716837525885
+0.38088164543936504 0.7969908450549033 0.38088164543936504 0.7969908450549034 0.2836046278419913
+0.3820444965110211 0.7935017754049536 0.3820444965110212 0.7935017754049536 0.28404219352461807
+0.38767292152283744 0.781604197008669 0.38767292152283744 0.781604197008669 0.2867136872532637
+0.38550864566633547 0.7926106651831015 0.38550864566633547 0.7926106651831014 0.2864239245780706
+0.3870034180300561 0.7852519872040378 0.3870034180300561 0.7852519872040378 0.28660150359377473
+0.3862857316103381 0.7889451464185409 0.3862857316103381 0.7889451464185409 0.28652436691490335
+0.39099090600946046 0.7804284244416588 0.39099090600946046 0.7804284244416588 0.28897665327158895
+0.3960886872513551 0.7681432682257405 0.3960886872513551 0.7681432682257405 0.2929070247956766
+0.39542414229913714 0.7718182210956601 0.39542414229913714 0.7718182210956601 0.2920163235502136
+0.39486396997610723 0.7754865477715392 0.39486396997610723 0.7754865477715392 0.29143872328328513
+0.39942339308431224 0.7668778848305114 0.39942339308431224 0.7668778848305114 0.2952601639672335
+0.4045986602323018 0.7540890954106384 0.4045986602323018 0.7540890954106384 0.303178271963491
+0.40404569321104566 0.7578900582833118 0.4040456932110457 0.7578900582833118 0.3009462654177984
+0.40281905420729 0.7655496409836982 0.40281905420729 0.7655496409836982 0.29748786730934523
+0.4034662335586468 0.7617177800106479 0.4034662335586468 0.7617177800106479 0.2990528654522247
+0.40846468915217543 0.7487385523452234 0.40846468915217543 0.7487385523452234 0.3086856442409616
+0.4079515140314842 0.7525145849096221 0.4079515140314842 0.7525145849096221 0.3059135331167541
+0.4117353697270916 0.7471080123266756 0.4117353697270916 0.7471080123266756 0.31144439565668414
+0.4153794315307681 0.7417099643765104 0.4153794315307681 0.7417099643765104 0.31743982554448896
+0.4149626428463961 0.7454486069969559 0.4149626428463961 0.7454486069969559 0.313995557290268
+0.41849506445784757 0.7400174748820995 0.41849506445784757 0.7400174748820995 0.31995385236840995
+0.42155435996004487 0.738330366428977 0.42155435996004487 0.738330366428977 0.3221968901496827
+0.42461177898992614 0.7366985288002678 0.42461177898992614 0.7366985288002678 0.3240988274922214
+0.4276582515674479 0.7351355915704896 0.4276582515674479 0.7351355915704896 0.32560118330489946
+0.4441240806216402 0.7043056299090824 0.44412408062164027 0.7043056299090824 0.3576238368173839
+0.44708496714677853 0.7025501597410506 0.44708496714677853 0.7025501597410506 0.357215808833018
+0.43151149875110845 0.7301041049429496 0.43151149875110845 0.7301041049429496 0.33069401472416754
+0.4309469713170988 0.7337003453034177 0.4309469713170988 0.7337003453034177 0.32650376110287493
+0.43493453494106243 0.7246039950421962 0.43493453494106243 0.7246039950421962 0.33636653864791416
+0.4349011339098386 0.7285746078245369 0.4349011339098386 0.7285746078245369 0.33130850091427716
+0.4380343631378431 0.719122621302709 0.4380343631378431 0.719122621302709 0.3419550981723574
+0.4380509796611085 0.7229052496234583 0.43805097966110845 0.7229052496234583 0.3368916529197084
+0.44103738851117075 0.7097955694135277 0.44103738851117075 0.7097955694135277 0.3525831579509857
+0.441084022142556 0.717346008021655 0.441084022142556 0.717346008021655 0.3422531283460804
+0.44092219829510043 0.7134739745962388 0.44092219829510043 0.7134739745962388 0.34767156977808794
+0.4440863503437027 0.7080469346311166 0.44408635034370275 0.7080469346311166 0.3525210496818349
+0.4502700760685586 0.6963926292281581 0.4502700760685587 0.696392629228158 0.3621955319949912
+0.4505195602747576 0.7008743110979558 0.4505195602747576 0.700874311097956 0.35556733076620517
+0.4534330674921012 0.6940369402931915 0.4534330674921012 0.6940369402931915 0.36125936512548334
+0.47563636356594124 0.6449378897634253 0.47563636356594124 0.6449378897634253 0.4022533373251987
+0.477832038274786 0.6426542007688746 0.477832038274786 0.6426542007688746 0.4024032302116591
+0.45641040459989823 0.6916596225573709 0.4564104045998983 0.6916596225573709 0.36002174531834874
+0.45929542381659444 0.6893031362454684 0.45929542381659444 0.6893031362454684 0.3583292464733132
+0.46209935545907704 0.6869299376135314 0.46209935545907704 0.6869299376135314 0.3562517869169286
+0.46481619395347346 0.684521427725069 0.46481619395347346 0.684521427725069 0.3538758200896925
+0.4763299647627557 0.6484037819455042 0.4763299647627557 0.6484037819455041 0.392525543054771
+0.46746426859955714 0.6821037270512345 0.4674642685995572 0.6821037270512345 0.35116243281912757
+0.47002607940935875 0.6796617855651804 0.47002607940935875 0.6796617855651804 0.3482268991745485
+0.47715304033635797 0.6520053247318436 0.4771530403363579 0.6520053247318436 0.3819077530732491
+0.4780590209513398 0.6557321497717118 0.4780590209513398 0.6557321497717118 0.37057343995285924
+0.4790586267377881 0.6595225697278149 0.4790586267377881 0.659522569727815 0.3586181181141122
+0.47251004042041733 0.6772236297165628 0.4725100404204174 0.6772236297165629 0.3450494395077531
+0.4748937775872505 0.6748175296409782 0.47489377758725043 0.6748175296409782 0.34170000018522484
+0.4802465924070741 0.6633304931778443 0.4802465924070742 0.6633304931778444 0.34578989316720293
+0.47720313946545123 0.6724792689884087 0.4772031394654512 0.6724792689884086 0.3380742781188925
+0.47906156014066914 0.6697395875769907 0.47906156014066914 0.6697395875769906 0.33670103472190127
+0.4812387283813637 0.6671979137186108 0.48123872838136367 0.6671979137186108 0.33352331471045177
+0.4806302795932445 0.6402550356626674 0.48063027959324456 0.6402550356626674 0.40142830568951726
+0.4821406221973823 0.6371462341715942 0.4821406221973823 0.6371462341715942 0.40589338091573557
+0.4843307187426224 0.6359340686384763 0.4843307187426224 0.6359340686384763 0.4032785206879759
+0.48571333276769874 0.6329036762386827 0.48571333276769874 0.6329036762386827 0.4093998154293898
+0.48832157788388886 0.6301452850500954 0.4883215778838888 0.6301452850500954 0.41150995484706426
+0.4771331377895775 0.6127218912333443 0.47713313778957744 0.6127218912333444 0.4816413244216929
+0.4791464479179968 0.6158624929457261 0.4791464479179968 0.615862492945726 0.4747323940793389
+0.48222911967717386 0.6194262745354678 0.4822291196771738 0.6194262745354678 0.4633406113707879
+0.481403747120124 0.616908364994271 0.48140374712012407 0.616908364994271 0.4723238531274097
+0.48555514956610146 0.6232705402450689 0.48555514956610146 0.6232705402450689 0.4455339726190731
+0.4847383134441388 0.6198475363867175 0.4847383134441388 0.6198475363867174 0.4603200006403591
+0.4885223621264417 0.6235290346939987 0.4885223621264417 0.6235290346939987 0.43861571796526716
+0.4904815780873047 0.6270173732072105 0.4904815780873047 0.6270173732072105 0.4178439023480194
+0.47999033621392573 0.6091174431484037 0.4799903362139258 0.6091174431484037 0.4969569220766807
+0.48268721588697444 0.6057101000688153 0.48268721588697444 0.6057101000688153 0.5167897730406388
+0.6204709650635448 0.5078256751844221 0.6204709650635448 0.5078256751844221 0.3883273299479271
+0.624174860216162 0.5043100420992639 0.624174860216162 0.5043100420992639 0.3537425896979215
+0.6230251849712118 0.506720383471715 0.6230251849712118 0.506720383471715 0.3610953933625178
+0.620441967314188 0.510142378068626 0.620441967314188 0.510142378068626 0.3783955654186179
+0.6171707236008419 0.511220748858257 0.617170723600842 0.511220748858257 0.4135574551981947
+0.6142295641162676 0.5134727977268394 0.6142295641162675 0.5134727977268394 0.4375029869803843
+0.6175959721563818 0.5137516901479443 0.6175959721563818 0.5137516901479443 0.3919739232225151
+0.60987222990053 0.5154708711657786 0.60987222990053 0.5154708711657786 0.47959539236302756
+0.6057217805667495 0.5173012146060736 0.6057217805667495 0.5173012146060736 0.518671187971418
+0.63146684205106 0.4977889370426632 0.63146684205106 0.4977889370426632 0.2778632599047614
+0.6348272343412502 0.4958588450345378 0.6348272343412501 0.4958588450345377 0.24409335306727684
+0.627353905437156 0.5048067997218335 0.627353905437156 0.5048067997218335 0.31689529584990894
+0.6307006274638746 0.5009662171812105 0.6307006274638746 0.5009662171812105 0.28627303997431025
+0.6301706647056196 0.5037528887660205 0.6301706647056196 0.5037528887660204 0.2892055786286735
+0.6468788274673902 0.48483314129087596 0.6468788274673902 0.48483314129087596 0.12799141349121101
+0.6500698314838486 0.48308755039668716 0.6500698314838486 0.48308755039668716 0.10508836450100127
+0.6534599314303274 0.4813078201823924 0.6534599314303274 0.4813078201823924 0.08401105899426398
+0.6434762652923971 0.48974192225139773 0.6434762652923971 0.48974192225139773 0.1622843662349043
+0.6399120122254538 0.4922277541488295 0.6399120122254539 0.49222775414882947 0.1946566946658273
+0.6381856476032519 0.4950516667680372 0.6381856476032519 0.4950516667680372 0.21348109437386506
+0.6464137382773388 0.4880467881805625 0.6464137382773388 0.4880467881805625 0.13807793775743582
+0.6680653176989116 0.46729237541452856 0.6680653176989116 0.46729237541452856 0.09280697809796704
+0.6705972753365534 0.4655254045900964 0.6705972753365534 0.46552540459009645 0.10236622143475628
+0.6735500459832641 0.46378013022957915 0.6735500459832641 0.46378013022957915 0.1119710956275655
+0.6766871908005393 0.4618926160541414 0.6766871908005393 0.4618926160541414 0.12230976419978168
+0.6639548654936476 0.47159496609239593 0.6639548654936477 0.47159496609239593 0.07127282795542027
+0.667245442758574 0.4701608450619864 0.667245442758574 0.47016084506198647 0.07603786986146051
+0.6568104179895751 0.47936576880458404 0.6568104179895751 0.47936576880458404 0.06721828263505407
+0.6601560039324467 0.47737450521643915 0.6601560039324467 0.47737450521643915 0.056620826158109865
+0.6635576930278879 0.47540270220549025 0.6635576930278879 0.47540270220549025 0.05373403348095109
+0.6798881870117084 0.45998771394286075 0.6798881870117084 0.45998771394286075 0.1323208591129155
+0.683119515925501 0.4580751984814595 0.683119515925501 0.45807519848145956 0.14175328903511167
+0.6863771505441113 0.4561480376160305 0.6863771505441113 0.4561480376160305 0.15053171014453
+0.6896669132466373 0.4542005419119599 0.6896669132466373 0.4542005419119599 0.15861799251694933
+0.6930169796241238 0.4522282277026464 0.6930169796241238 0.4522282277026464 0.16598973568703354
+0.6965503117796052 0.4502215648543665 0.6965503117796051 0.45022156485436643 0.17258482370088415
+0.7017626389096245 0.4448876040579469 0.7017626389096245 0.4448876040579469 0.19119085974004388
+0.7002564993345748 0.44784306612472835 0.7002564993345749 0.44784306612472846 0.1798707104264219
+0.7043777031023735 0.44350214647749664 0.7043777031023736 0.4435021464774966 0.19404842892221286
+0.7071827341091232 0.4415273180858527 0.7071827341091232 0.4415273180858527 0.1988412021897915
+0.7112133970968663 0.4367166985331993 0.7112133970968663 0.43671669853319933 0.21317443222909405
+0.7098475826600351 0.43999083811587425 0.7098475826600351 0.43999083811587425 0.20168635418753902
+0.7146004507682076 0.4372186375590471 0.7146004507682076 0.4372186375590471 0.20636120468012162
+0.717465361690216 0.4356600965391323 0.7174653616902161 0.43566009653913224 0.20855627547219555
+0.7204371827906232 0.433671118922228 0.7204371827906232 0.433671118922228 0.21212835782459447
+0.7236022255380531 0.4315978836677103 0.7236022255380531 0.4315978836677103 0.21565966871951323
+0.7269004269941355 0.42944901677258185 0.7269004269941356 0.4294490167725819 0.21926521949967645
+0.7307176309618312 0.4270891177420957 0.7307176309618313 0.4270891177420957 0.22299892393157833
+0.7341000204507278 0.42706203184782854 0.7341000204507278 0.42706203184782854 0.2190814649303144
+0.7366145858996394 0.42529137726435184 0.7366145858996394 0.42529137726435184 0.22243819672900447
+0.7396309270211242 0.4235646777727198 0.7396309270211242 0.4235646777727197 0.2251277182533318
+0.7427305231486926 0.41828998317188165 0.7427305231486926 0.41828998317188165 0.23992209793115207
+0.7459347365141427 0.41632292932594667 0.7459347365141427 0.41632292932594667 0.24316814862554478
+0.7491572102652615 0.41435612698939 0.7491572102652615 0.41435612698939 0.24636456291113573
+0.7523963797776302 0.4123802555367293 0.7523963797776302 0.4123802555367293 0.24949410527624286
+0.7556726539000739 0.4103772536222299 0.7556726539000739 0.4103772536222299 0.2525404656742792
+0.7427864105258094 0.42168806732160086 0.7427864105258094 0.42168806732160086 0.22822520202660126
+0.7589492075746449 0.40834872593942984 0.7589492075746449 0.4083487259394298 0.25547758333493426
+0.764987640994125 0.4040154759877496 0.764987640994125 0.4040154759877496 0.26198718555532347
+0.7621764738914183 0.4063018787589282 0.7621764738914183 0.40630187875892826 0.2582841957700844
+0.767857803941749 0.4046410486899413 0.767857803941749 0.40464104868994133 0.25655991116205146
+0.7703675035305432 0.4032530379081684 0.7703675035305432 0.4032530379081684 0.25758749120184876
+0.7742406154985824 0.3985507833314593 0.7742406154985825 0.3985507833314594 0.2662749178304542
+0.7729356686022989 0.40185014241418826 0.7729356686022989 0.4018501424141883 0.25844819428541665
+0.7772006306408524 0.3958741575080621 0.7772006306408524 0.39587415750806215 0.26960350565458807
+0.7775842750864487 0.3990433250916684 0.7775842750864487 0.3990433250916684 0.26019876575021395
+0.7802898994875015 0.3938778767558811 0.7802898994875015 0.3938778767558811 0.2704486096697554
+0.7834837029381371 0.39185573648666705 0.7834837029381371 0.39185573648666705 0.2708901860877307
+0.7868235607054148 0.3898229073156826 0.7868235607054147 0.38982290731568264 0.2708194720194291
+0.7899782358636045 0.38433962623872076 0.7899782358636046 0.3843396262387207 0.27919279347848985
+0.7899454623568782 0.3879473355596153 0.7899454623568783 0.3879473355596153 0.2704240968380876
+0.793381782207159 0.38256683758686144 0.793381782207159 0.38256683758686144 0.2776244178152952
+0.7966542159565717 0.38086072718259156 0.7966542159565718 0.3808607271825916 0.27601466947021325
+0.8000179039286678 0.3786634867933262 0.8000179039286678 0.3786634867933261 0.27534934119300053
+0.8033583974641143 0.37656988473707126 0.8033583974641143 0.37656988473707126 0.27448707545517365
+0.8067442555752242 0.37447499588935323 0.8067442555752242 0.37447499588935323 0.2736451180393074
+0.8101385297618943 0.3723826638914365 0.8101385297618943 0.3723826638914365 0.27295024869079926
+0.8135314309370152 0.37029169867901496 0.8135314309370152 0.37029169867901496 0.2724771241652932
+0.8169215488984549 0.3682004462344242 0.8169215488984548 0.3682004462344242 0.2722738257877228
+0.8203102935960275 0.36610860987425986 0.8203102935960275 0.36610860987425986 0.27236343804320556
+0.8237000988922851 0.3640167046387941 0.8237000988922851 0.3640167046387941 0.2727469632593302
+0.827090451946384 0.36192468619244156 0.8270904519463841 0.3619246861924416 0.27340981281371585
+0.8304808352415529 0.35983263598323645 0.8304808352415529 0.35983263598323645 0.2743175411381657
+0.8338712185367219 0.35774058577403134 0.8338712185367217 0.3577405857740313 0.2754181362570413
+0.8372616018318908 0.35564853556482623 0.8372616018318908 0.35564853556482623 0.2766457700935016
+0.8406519851270597 0.3535564853556211 0.8406519851270599 0.3535564853556212 0.2779247690290351
+0.8440423684222287 0.351464435146416 0.8440423684222287 0.351464435146416 0.27917403927166456
+0.8474327517173976 0.3493723849372109 0.8474327517173975 0.34937238493721084 0.2803115841075435
+0.8508231350125666 0.3472803347280058 0.8508231350125666 0.3472803347280058 0.2812588428927032
+0.8542135183077355 0.3451882845188007 0.8542135183077356 0.34518828451880074 0.2819446494540976
+0.8576039016029045 0.34309623430959557 0.8576039016029045 0.34309623430959557 0.28230867549206073
+0.8609942848980734 0.34100418410039046 0.8609942848980733 0.3410041841003904 0.28230428154486426
+0.8643846681932423 0.33891213389118535 0.8643846681932423 0.33891213389118535 0.28190073870772464
+0.8677750514884113 0.33682008368198024 0.8677750514884114 0.3368200836819803 0.2810848076818395
+0.8711654347835802 0.33472803347277513 0.8711654347835802 0.33472803347277513 0.27986166990381994
+0.8745558180787492 0.33263598326357 0.874555818078749 0.33263598326356997 0.2782552021088914
+0.8779462013739181 0.3305439330543649 0.8779462013739181 0.3305439330543649 0.27630757513676835
+0.881336584669087 0.3284518828451598 0.8813365846690872 0.32845188284515986 0.2740781450894827
+0.884726967964256 0.3263598326359547 0.884726967964256 0.3263598326359547 0.2716415958378477
+0.8881173512594249 0.3242677824267496 0.8881173512594248 0.32426778242674953 0.26908529308846996
+0.8915077345545939 0.3221757322175445 0.8915077345545939 0.3221757322175445 0.26650582936907735
+0.8948981178497628 0.32008368200833937 0.8948981178497629 0.3200836820083394 0.26400478378391273
+0.8982885011449318 0.31799163179913426 0.8982885011449318 0.31799163179913426 0.2616837950707613
+0.9016788844401007 0.31589958158992915 0.9016788844401006 0.3158995815899291 0.25963914989436887
+0.9050692677352696 0.31380753138072404 0.9050692677352696 0.31380753138072404 0.2579562086202252
+0.9084596510304386 0.3117154811715189 0.9084596510304387 0.311715481171519 0.25670410372576424
+0.9118500343256075 0.3096234309623138 0.9118500343256075 0.3096234309623138 0.25593121750094155
+0.9152404176207765 0.3075313807531087 0.9152404176207763 0.30753138075310865 0.25566194151271643
+0.9186308009159454 0.3054393305439036 0.9186308009159454 0.3054393305439036 0.2558951203807707
+0.9220211842111143 0.3033472803346985 0.9220211842111145 0.30334728033469854 0.25660439374988747
+0.9254115675062833 0.3012552301254934 0.9254115675062833 0.3012552301254934 0.2577404101852428
+0.9288019508014522 0.29916317991628827 0.9288019508014521 0.2991631799162882 0.25923465153658937
+0.9321923340966212 0.29707112970708316 0.9321923340966212 0.29707112970708316 0.2610044308342707
+0.9355827173917901 0.29497907949787805 0.9355827173917902 0.2949790794978781 0.2629585438141302
+0.938973100686959 0.29288702928867294 0.938973100686959 0.29288702928867294 0.2650030656656837
+0.942363483982128 0.29079497907946783 0.9423634839821279 0.2907949790794678 0.2670468667040597
+0.9457538672772969 0.2887029288702627 0.9457538672772969 0.2887029288702627 0.26900653757511245
+0.9491442505724659 0.2866108786610576 0.949144250572466 0.28661087866105767 0.2708105327562418
+0.9525346338676348 0.2845188284518525 0.9525346338676348 0.2845188284518525 0.272402437851414
+0.9559250171628038 0.2824267782426474 0.9559250171628036 0.28242677824264734 0.2737433316646222
+0.9593154004579727 0.2803347280334423 0.9593154004579727 0.2803347280334423 0.27481324867879625
+0.9627057837531416 0.2782426778242372 0.9627057837531418 0.27824267782423723 0.2756117579215183
+0.9660961670483106 0.27615062761503206 0.9660961670483106 0.27615062761503206 0.276157669476131
+0.9694865503434795 0.27405857740582695 0.9694865503434794 0.2740585774058269 0.27648786985469614
+0.9728769336386485 0.27196652719662184 0.9728769336386485 0.27196652719662184 0.27665528146686397
+0.9762673169338174 0.26987447698741673 0.9762673169338175 0.2698744769874168 0.27672594810826084
+0.9796577002289864 0.2677824267782116 0.9796577002289864 0.2677824267782116 0.2767752750286452
+0.9830480835241553 0.2656903765690065 0.9830480835241552 0.26569037656900646 0.2768835033752659
+0.9864384668193242 0.2635983263598014 0.9864384668193242 0.2635983263598014 0.2771305745405693
+0.9898288501144932 0.2615062761505963 0.9898288501144933 0.26150627615059635 0.27759063288279173
+0.9932192334096621 0.2594142259413912 0.9932192334096621 0.2594142259413912 0.278326509481811
+0.2635983263598329 0.9932192334096621 0.2635983263598329 0.9932192334096621 0.17961045733321626
+0.2656903765690379 0.9898288501144933 0.2656903765690379 0.9898288501144933 0.18113360172271084
+0.26778242677824293 0.9864384668193242 0.26778242677824293 0.9864384668193242 0.18292844083243162
+0.26987447698744793 0.9830480835241553 0.26987447698744793 0.9830480835241552 0.18495408158140414
+0.27196652719665293 0.9796577002289865 0.27196652719665293 0.9796577002289865 0.18716961068303906
+0.2740585774058579 0.9762673169338175 0.2740585774058579 0.9762673169338175 0.18953557379423192
+0.2761506276150629 0.9728769336386485 0.2761506276150629 0.9728769336386485 0.192015065894498
+0.278242677824268 0.9694865503434794 0.278242677824268 0.9694865503434794 0.19457444062134785
+0.280334728033473 0.9660961670483106 0.280334728033473 0.9660961670483106 0.1971836756653742
+0.28242677824267803 0.9627057837531418 0.282426778242678 0.9627057837531418 0.1998164494524295
+0.28451882845188314 0.9593154004579727 0.28451882845188314 0.9593154004579727 0.20244999312579529
+0.2866108786610883 0.9559250171628038 0.2866108786610883 0.9559250171628036 0.20506478368103084
+0.28870292887029353 0.9525346338676349 0.28870292887029353 0.9525346338676349 0.20764414118946936
+0.29079497907949875 0.9491442505724661 0.29079497907949875 0.9491442505724662 0.21017378706643983
+0.2928870292887041 0.9457538672772973 0.2928870292887041 0.9457538672772973 0.21264141246881038
+0.29497907949790947 0.9423634839821284 0.29497907949790947 0.9423634839821284 0.2150362969035405
+0.29707112970711486 0.9389731006869604 0.29707112970711486 0.9389731006869603 0.21734900749213446
+0.29916317991632 0.9355827173917922 0.2991631799163201 0.9355827173917922 0.21957119942967065
+0.3012552301255249 0.9321923340966243 0.3012552301255249 0.9321923340966244 0.22169552831886388
+0.3033472803347293 0.9288019508014562 0.3033472803347293 0.9288019508014562 0.2237156755597904
+0.3054393305439325 0.9254115675062885 0.3054393305439325 0.9254115675062885 0.22562647914175835
+0.30753138075313585 0.9220211842111193 0.30753138075313585 0.9220211842111193 0.22742415430246418
+0.30962343096233846 0.9186308009159494 0.30962343096233846 0.9186308009159493 0.22910658183507307
+0.3117154811715415 0.9152404176207782 0.3117154811715415 0.9152404176207781 0.2306736365207551
+0.3138075313807461 0.9118500343256065 0.3138075313807461 0.9118500343256065 0.23212752436425407
+0.3158995815899532 0.9084596510304347 0.3158995815899532 0.9084596510304347 0.23347309508458694
+0.31799163179916295 0.9050692677352637 0.31799163179916295 0.9050692677352637 0.23471809570615074
+0.32008368200837456 0.9016788844400946 0.32008368200837456 0.9016788844400946 0.2358733321529296
+0.32217573221758566 0.8982885011449282 0.3221757322175857 0.8982885011449282 0.236952708539933
+0.3242677824267935 0.8948981178497641 0.3242677824267935 0.8948981178497641 0.23797311848333028
+0.32635983263599594 0.891507734554601 0.32635983263599594 0.891507734554601 0.2389541693309045
+0.32845188284519267 0.8881173512594359 0.3284518828451927 0.8881173512594359 0.23991772883163345
+0.33054393305438623 0.8847269679642672 0.33054393305438623 0.8847269679642672 0.24088729439004328
+0.33263598326358096 0.8813365846690941 0.33263598326358096 0.8813365846690943 0.24188719744741374
+0.33472803347278185 0.8779462013739173 0.33472803347278185 0.8779462013739173 0.24294166914282425
+0.3368200836819917 0.8745558180787402 0.3368200836819917 0.8745558180787402 0.2440738072911595
+0.3389121338912091 0.8711654347835663 0.3389121338912091 0.8711654347835663 0.2453044975456299
+0.34100418410042926 0.8677750514883983 0.34100418410042926 0.8677750514883983 0.24665135178356137
+0.3430962343096453 0.8643846681932362 0.3430962343096453 0.8643846681932362 0.24812773260969287
+0.3451882845188519 0.8609942848980771 0.3451882845188519 0.8609942848980771 0.24974193302740802
+0.3472803347280484 0.8576039016029161 0.3472803347280484 0.8576039016029161 0.2514965740251847
+0.34937238493723854 0.85421351830775 0.34937238493723854 0.85421351830775 0.2533882702024856
+0.3514644351464295 0.8508231350125772 0.3514644351464295 0.8508231350125772 0.2554075957538045
+0.35355648535562795 0.8474327517174002 0.35355648535562795 0.8474327517174002 0.257539362139174
+0.3556485355648367 0.8440423684222226 0.3556485355648367 0.8440423684222226 0.2597631970921323
+0.35774058577405327 0.840651985127049 0.35774058577405327 0.840651985127049 0.2620543947622229
+0.3598326359832717 0.8372616018318811 0.3598326359832717 0.8372616018318811 0.2643849908035811
+0.36192468619248536 0.8338712185367182 0.36192468619248536 0.8338712185367182 0.266725005347809
+0.3640167364016909 0.8304808352415566 0.3640167364016909 0.8304808352415566 0.2690437913521795
+0.36610878102611594 0.8270904673483269 0.36610878102611594 0.8270904673483269 0.2713114158697096
+0.368200962715776 0.8237007164877256 0.368200962715776 0.8237007164877256 0.2735000150926397
+0.3702932049358057 0.8203136724622141 0.3702932049358057 0.8203136724622141 0.27558483555365343
+0.37238482547406737 0.8169333001950018 0.37238482547406737 0.8169333001950018 0.27754537711164273
+0.3744763387233779 0.8135645118331647 0.3744763387233779 0.8135645118331647 0.279368043470351
+0.3765712487813146 0.8102105999323922 0.3765712487813146 0.8102105999323922 0.28104857185936605
+0.37867760344762474 0.8068747300660372 0.37867760344762474 0.8068747300660372 0.28259361155198853
+0.38080315193083475 0.8035564016879913 0.38080315193083475 0.8035564016879914 0.2840180572516251
+0.3943151381964476 0.7792032906476694 0.3943151381964476 0.7792032906476694 0.2910700728355775
+0.38297651724722837 0.8002166610504925 0.38297651724722837 0.8002166610504925 0.28536051567105875
+0.3852384461587551 0.796567105475033 0.3852384461587551 0.7965671054750328 0.28666590725546565
+0.39037715026626474 0.7840775190688994 0.39037715026626474 0.7840775190688994 0.2888099296625901
+0.3880969537454179 0.7943785466576632 0.3880969537454179 0.7943785466576632 0.28816895284549116
+0.38898934140515345 0.7913643607048974 0.38898934140515345 0.7913643607048974 0.2885270490811374
+0.3897157219938571 0.7877391790101882 0.3897157219938571 0.7877391790101882 0.28868852467208456
+0.3937419122217707 0.782881701933276 0.3937419122217707 0.782881701933276 0.29083429489132046
+0.39764530036966045 0.7779746097763146 0.39764530036966045 0.7779746097763146 0.2929852296727624
+0.3987820113426988 0.770592167917398 0.3987820113426988 0.770592167917398 0.29422163099312476
+0.3981961888874252 0.7742825405524636 0.3981961888874252 0.7742825405524636 0.2934837378902071
+0.40206633413848736 0.7693679957429849 0.4020663341384873 0.7693679957429849 0.2961982179667793
+0.40743380345301267 0.7563328306498431 0.40743380345301267 0.7563328306498431 0.3034659401929897
+0.40689820506822744 0.7602124653156942 0.40689820506822744 0.7602124653156942 0.3013482429599898
+0.4055095355718119 0.7679833872032312 0.40550953557181196 0.7679833872032312 0.29810063532417036
+0.4063164633724778 0.7641472152755626 0.4063164633724778 0.7641472152755626 0.2995689846517449
+0.4112669610926296 0.750885919910976 0.41126696109262967 0.750885919910976 0.3084686906304537
+0.41079457033792965 0.7546992216217256 0.4107945703379297 0.7546992216217258 0.3058135700568813
+0.4145368653731325 0.7492029623284212 0.41453686537313245 0.7492029623284212 0.3108340235922744
+0.4181411178667782 0.7437574491867349 0.41814111786677816 0.7437574491867349 0.31632849824968107
+0.41776624097079185 0.7475005062980918 0.4177662409707919 0.7475005062980918 0.3129781481513208
+0.42125300741445737 0.7420582580337223 0.4212530074144574 0.7420582580337224 0.31840463477580966
+0.4243282659216215 0.7403900982156548 0.4243282659216215 0.7403900982156548 0.3201722850592175
+0.42737124611627403 0.7387346376828864 0.42737124611627403 0.7387346376828864 0.3216228972364305
+0.43036177981252727 0.7370522717081414 0.43036177981252727 0.7370522717081415 0.3227920867540162
+0.43298251035718094 0.7359462695327192 0.43298251035718094 0.7359462695327192 0.32305106051988425
+0.4469934033105914 0.7062680685380965 0.4469934033105914 0.7062680685380965 0.3520924966352385
+0.4497803324836985 0.7045221429838945 0.4497803324836985 0.7045221429838945 0.3512155284013812
+0.4347628858769353 0.7331751918888018 0.43476288587693535 0.7331751918888018 0.3256804813294401
+0.43826963994055623 0.7308067223142263 0.4382696399405562 0.7308067223142264 0.32642140225566724
+0.4380770166083674 0.7267975590979948 0.4380770166083674 0.7267975590979948 0.3317408291688823
+0.44113544726311976 0.7211481665016354 0.44113544726311976 0.7211481665016354 0.33701007831164254
+0.44118058882121924 0.7249744045826256 0.4411805888212193 0.7249744045826256 0.33179183530342904
+0.44410221646713094 0.7118209064255646 0.44410221646713094 0.7118209064255646 0.34726850183207997
+0.4442201816350564 0.719379831973869 0.4442201816350564 0.719379831973869 0.33660273249704237
+0.44417505644911204 0.7156008292139481 0.44417505644911204 0.7156008292139481 0.3419206786092817
+0.4470550327337455 0.7100563450731688 0.4470550327337455 0.7100563450731688 0.3466494483019384
+0.453752070346547 0.6979074628581885 0.453752070346547 0.6979074628581885 0.3551227576948028
+0.45243015717746393 0.7036518185254718 0.45243015717746393 0.7036518185254718 0.3486451247113561
+0.4543594298386045 0.7014402925633659 0.4543594298386045 0.7014402925633659 0.34890320175394
+0.45675748686772144 0.695480767501041 0.4567574868677214 0.6954807675010412 0.3536905079920209
+0.47861031756740546 0.646093217197792 0.47861031756740546 0.6460932171977919 0.39176172056648045
+0.48038164689910934 0.6439679122177744 0.48038164689910934 0.6439679122177744 0.39190213467908047
+0.45966487214704216 0.6930972401671406 0.45966487214704216 0.6930972401671406 0.3517550942254816
+0.4625117698530022 0.6907041448248127 0.4625117698530022 0.6907041448248127 0.34935313484340297
+0.4652804168656448 0.6882735390096797 0.46528041686564486 0.6882735390096797 0.3465992215698926
+0.46798074629774367 0.6858318879195936 0.4679807462977436 0.6858318879195936 0.3434684128013575
+0.47958015421833533 0.6496128452777974 0.47958015421833533 0.6496128452777974 0.3800870532432996
+0.47059429768780725 0.683360103637496 0.4705942976878072 0.683360103637496 0.3400890124830165
+0.473124877963024 0.680873779618388 0.473124877963024 0.680873779618388 0.3364795082556997
+0.48049888695305815 0.6533454192681526 0.48049888695305815 0.6533454192681526 0.3678915349014049
+0.48151584114876805 0.6570810663322557 0.48151584114876805 0.6570810663322558 0.35520615033134634
+0.48262253183949816 0.6608079996623458 0.48262253183949816 0.6608079996623458 0.34210664335584634
+0.4755649058982238 0.6783794017794443 0.4755649058982238 0.6783794017794443 0.3327122244132139
+0.4779037823817884 0.675862651647944 0.4779037823817884 0.675862651647944 0.32892322142267516
+0.4836949345031382 0.6645972621227411 0.4836949345031382 0.6645972621227411 0.32897117102800827
+0.48009635822705854 0.673208200358185 0.4800963582270585 0.673208200358185 0.32563156850053815
+0.4822769091242714 0.6707888766419355 0.4822769091242714 0.6707888766419355 0.3216164601526646
+0.48463523526623203 0.6683193059582622 0.48463523526623203 0.6683193059582622 0.31661043317795073
+0.4832294253027164 0.6432331456587931 0.48322942530271634 0.6432331456587931 0.38485189368273925
+0.48466202456087687 0.6393287032595008 0.4846620245608769 0.6393287032595006 0.39170546232658193
+0.48722117977678775 0.6365925358788536 0.48722117977678775 0.6365925358788536 0.3916745717941515
+0.48942099310816506 0.6338784581499864 0.48942099310816506 0.6338784581499864 0.393543539022911
+0.49143873883935835 0.6310526238911655 0.49143873883935835 0.6310526238911655 0.3971439321988481
+0.4934276207031678 0.6288216945299407 0.49342762070316776 0.6288216945299406 0.39925425247908986
+0.4818036007786676 0.6135204823088847 0.4818036007786675 0.6135204823088847 0.4851939379876381
+0.48392403815125573 0.6165418355321239 0.4839240381512557 0.616541835532124 0.47402646314859126
+0.48728867218534216 0.6202839502983659 0.48728867218534216 0.6202839502983659 0.45533326923438505
+0.4862468470491689 0.617604236022878 0.4862468470491689 0.617604236022878 0.46857371315237833
+0.4912531842806418 0.6233484358034088 0.4912531842806418 0.6233484358034088 0.4323829317330697
+0.48985559261173 0.6204332954675386 0.48985559261173 0.6204332954675386 0.4501928405049637
+0.49315188920871933 0.6256929209912041 0.4931518892087193 0.6256929209912041 0.4150000347277238
+0.49513169428900655 0.627283225781889 0.4951316942890066 0.627283225781889 0.39963310694866744
+0.49333544204225865 0.6229367133691552 0.4933354420422587 0.6229367133691552 0.4282240908894213
+0.4845216680757893 0.6098810114504706 0.4845216680757893 0.6098810114504706 0.5035692180249748
+0.4870711244615002 0.6063432654254874 0.4870711244615002 0.6063432654254876 0.5271397349548694
+0.6233915963835003 0.5087730776372551 0.6233915963835003 0.5087730776372551 0.34957409822282254
+0.6257604221348759 0.5069337991560204 0.6257604221348759 0.5069337991560204 0.3292269535236278
+0.6166158575682138 0.51604559627874 0.6166158575682138 0.5160455962787401 0.3873310921314505
+0.6235856905009949 0.5114753397899566 0.6235856905009949 0.5114753397899566 0.3357293785627262
+0.6203147402773255 0.5126714354860943 0.6203147402773254 0.5126714354860943 0.36639379251864107
+0.6198592081803279 0.5151988099960199 0.6198592081803279 0.5151988099960199 0.3561510336172256
+0.6135832537398369 0.5181956417858014 0.613583253739837 0.5181956417858014 0.406133022113679
+0.6169440154969815 0.5185970078256575 0.6169440154969815 0.5185970078256575 0.3644705706005556
+0.6049078357524441 0.5216572996926477 0.6049078357524441 0.5216572996926477 0.4741433458955759
+0.6091290606438886 0.5200035442724156 0.6091290606438885 0.5200035442724156 0.4419021007011725
+0.6342919544148135 0.4995630960461526 0.6342919544148135 0.4995630960461526 0.25168673713903084
+0.6380536832948538 0.4980346338015776 0.6380536832948538 0.4980346338015776 0.21759393592383172
+0.6288768118589337 0.5065390708520403 0.6288768118589337 0.5065390708520403 0.29711758758864165
+0.6336138723799741 0.5032887643924467 0.6336138723799741 0.5032887643924467 0.256324659667692
+0.6316718501478934 0.5058431107045945 0.6316718501478934 0.5058431107045945 0.27071750825815016
+0.6496657314437327 0.4865197680280258 0.6496657314437327 0.4865197680280258 0.11396761127936249
+0.6529873633067673 0.484855869351427 0.6529873633067673 0.48485586935142694 0.09123733256650678
+0.6563664585545714 0.48306049990317207 0.6563664585545714 0.48306049990317207 0.07060270893754422
+0.6440288078332981 0.49296470765821837 0.6440288078332981 0.49296470765821837 0.16439817527681666
+0.646193562237281 0.4907998841752737 0.646193562237281 0.4907998841752737 0.14517307694431023
+0.6415410235784543 0.49602568787081813 0.6415410235784543 0.4960256878708181 0.18757262361826024
+0.6492194342389432 0.489886020964188 0.6492194342389431 0.489886020964188 0.12333420526108817
+0.6704298577992908 0.4688926468338668 0.6704298577992908 0.4688926468338668 0.08209148840193714
+0.6735316697995576 0.46699762115143856 0.6735316697995576 0.46699762115143856 0.09277866751379961
+0.6766710447035824 0.46516815230728126 0.6766710447035824 0.46516815230728126 0.10329185381283386
+0.6798833428130178 0.46331193055131514 0.6798833428130178 0.46331193055131514 0.11370140234766236
+0.66694142139401 0.47358738104474435 0.66694142139401 0.47358738104474435 0.05753801114707213
+0.6702719120997613 0.4719719829479846 0.6702719120997614 0.47197198294798465 0.06476090293918611
+0.6597715376638232 0.48112779238245745 0.6597715376638232 0.48112779238245745 0.05356807364740348
+0.6631662573165624 0.4790565016175064 0.6631662573165623 0.4790565016175064 0.04313513702995953
+0.6666898876690605 0.477139184734609 0.6666898876690605 0.477139184734609 0.04143528557951867
+0.6831384206169662 0.46146483337448085 0.6831384206169662 0.46146483337448085 0.12351722733724159
+0.6864213683407252 0.45959714703465243 0.6864213683407252 0.45959714703465243 0.13273731529090993
+0.6897248667175475 0.4577120661149621 0.6897248667175475 0.4577120661149621 0.1412580849028898
+0.6930545680302004 0.45580466494647287 0.6930545680302004 0.4558046649464728 0.14906530604120613
+0.6964428391228338 0.45387597588843304 0.6964428391228338 0.45387597588843304 0.1561311245424339
+0.6999375515969082 0.45195938916983863 0.6999375515969081 0.45195938916983863 0.16229007885309754
+0.7037618529495046 0.44681785807392604 0.7037618529495046 0.446817858073926 0.18074817450274042
+0.7033120875887969 0.4501109640915327 0.7033120875887969 0.4501109640915327 0.1675949480079001
+0.706948861446594 0.4450253359214634 0.7069488614465939 0.44502533592146337 0.18480560467429766
+0.7103485139957352 0.44296865894900517 0.7103485139957352 0.44296865894900517 0.1892842917930138
+0.7132262485540884 0.44047398347149 0.7132262485540883 0.44047398347148997 0.1955822980083335
+0.7168685204044853 0.4391852790739264 0.7168685204044855 0.4391852790739264 0.1961336225480961
+0.7201618681019339 0.4373529389309767 0.7201618681019339 0.4373529389309767 0.1989696742555718
+0.7234071455753169 0.43538796835934 0.7234071455753169 0.43538796835933996 0.2022269409952491
+0.7300306289872589 0.43147668201560224 0.7300306289872589 0.43147668201560224 0.2083669245520742
+0.7266866980620713 0.4334007526417803 0.7266866980620713 0.4334007526417803 0.2054545671691319
+0.7333571119727916 0.42999417931281425 0.7333571119727916 0.4299941793128142 0.20990582573073202
+0.7365425224062405 0.4286374340004597 0.7365425224062405 0.4286374340004597 0.21119493602421494
+0.7396803847556361 0.42683187069708056 0.7396803847556361 0.42683187069708056 0.2141194906734136
+0.7428065911227044 0.4250499459169101 0.7428065911227044 0.4250499459169101 0.21701979868454502
+0.7459901990794199 0.41977668960105957 0.7459901990794199 0.41977668960105957 0.23140669371543512
+0.7492228866271892 0.4178525297077855 0.7492228866271892 0.4178525297077855 0.2345864370405699
+0.7524797034763001 0.41591772611524086 0.7524797034763001 0.41591772611524086 0.23771938983271876
+0.7557697258993658 0.413965349148019 0.7557697258993658 0.413965349148019 0.2407691868303755
+0.7591172673054644 0.4119843305276824 0.7591172673054644 0.4119843305276824 0.24369413732986625
+0.7460076130786256 0.4232001790188413 0.7460076130786256 0.42320017901884127 0.220108164978937
+0.7626220192611249 0.409941402797268 0.7626220192611249 0.40994140279726793 0.2464348935917006
+0.7662900585679074 0.407669549640327 0.7662900585679074 0.4076695496403269 0.24941228522432318
+0.7698347069163696 0.4066051524922807 0.7698347069163695 0.40660515249228074 0.24853178582925564
+0.7734289376437739 0.404762168392739 0.7734289376437739 0.404762168392739 0.24964498796056941
+0.7762446349610044 0.40226381095965424 0.7762446349610043 0.4022638109596542 0.25315822952675787
+0.7803588528406782 0.39750257237682485 0.7803588528406782 0.39750257237682485 0.260567012410748
+0.7797325227840861 0.4009675462835701 0.7797325227840862 0.40096754628357006 0.25221385539844093
+0.7833523303665242 0.39555500670589017 0.7833523303665242 0.39555500670589017 0.26145015246542064
+0.7866496865636441 0.3935385737509564 0.786649686563644 0.3935385737509564 0.26176052436176894
+0.7903396406601911 0.3917504938284666 0.7903396406601911 0.3917504938284666 0.2606552995774312
+0.7933037886598764 0.3862873406627364 0.7933037886598764 0.38628734066273646 0.26899108371450214
+0.7926328571936542 0.3893261316229982 0.7926328571936542 0.3893261316229982 0.26286125565887763
+0.7966286660436236 0.3849880384654734 0.7966286660436236 0.3849880384654734 0.26665370112729153
+0.7999982300123948 0.3828675591755511 0.7999982300123948 0.3828675591755511 0.2660977825905995
+0.8033820685008513 0.38073198009646503 0.8033820685008513 0.38073198009646503 0.2655276845764876
+0.8067546414039662 0.37865813700947326 0.8067546414039662 0.37865813700947326 0.2648936508126434
+0.8101397039404238 0.3765692884830423 0.8101397039404238 0.3765692884830423 0.2644100073459262
+0.8135295246083013 0.37447724140989497 0.8135295246083013 0.37447724140989497 0.26412502384860187
+0.8169202317741363 0.3723847252921886 0.8169202317741363 0.3723847252921886 0.2640879893285706
+0.8203099919387685 0.3702925785256976 0.8203099919387685 0.3702925785256976 0.2643322767996772
+0.8237000899077221 0.36820081533509813 0.8237000899077221 0.36820081533509813 0.26487010651462617
+0.827090451946384 0.3661087866108518 0.8270904519463841 0.3661087866108517 0.2656964362246266
+0.8304808352415529 0.36401673640164667 0.8304808352415529 0.36401673640164667 0.2667846556155163
+0.8338712185367219 0.36192468619244156 0.8338712185367217 0.3619246861924416 0.26809009467805395
+0.8372616018318908 0.35983263598323645 0.8372616018318908 0.35983263598323645 0.269552656531793
+0.8406519851270597 0.35774058577403134 0.8406519851270599 0.3577405857740313 0.2711004556423214
+0.8440423684222287 0.35564853556482623 0.8440423684222287 0.35564853556482623 0.27265401956105945
+0.8474327517173976 0.3535564853556211 0.8474327517173975 0.3535564853556212 0.274130715355366
+0.8508231350125666 0.351464435146416 0.8508231350125666 0.351464435146416 0.2754491099253294
+0.8542135183077355 0.3493723849372109 0.8542135183077356 0.34937238493721084 0.2765330367714514
+0.8576039016029045 0.3472803347280058 0.8576039016029045 0.3472803347280058 0.27731521112567714
+0.8609942848980734 0.3451882845188007 0.8609942848980733 0.34518828451880074 0.2777402977659155
+0.8643846681932423 0.34309623430959557 0.8643846681932423 0.34309623430959557 0.27776738370923426
+0.8677750514884113 0.34100418410039046 0.8677750514884114 0.3410041841003904 0.2773718388079112
+0.8711654347835802 0.33891213389118535 0.8711654347835802 0.33891213389118535 0.27654656209966905
+0.8745558180787492 0.33682008368198024 0.874555818078749 0.3368200836819803 0.27530261361795055
+0.8779462013739181 0.33472803347277513 0.8779462013739181 0.33472803347277513 0.27366922415565137
+0.881336584669087 0.33263598326357 0.8813365846690872 0.33263598326356997 0.271693163482094
+0.884726967964256 0.3305439330543649 0.884726967964256 0.3305439330543649 0.2694374354216303
+0.8881173512594249 0.3284518828451598 0.8881173512594248 0.32845188284515986 0.26697926138453626
+0.8915077345545939 0.3263598326359547 0.8915077345545939 0.3263598326359547 0.2644073186832831
+0.8948981178497628 0.3242677824267496 0.8948981178497629 0.32426778242674953 0.26181822321211284
+0.8982885011449318 0.3221757322175445 0.8982885011449318 0.3221757322175445 0.2593122942049291
+0.9016788844401007 0.32008368200833937 0.9016788844401006 0.3200836820083394 0.256988715171324
+0.9050692677352696 0.31799163179913426 0.9050692677352696 0.31799163179913426 0.25494030649087324
+0.9084596510304386 0.31589958158992915 0.9084596510304387 0.3158995815899291 0.2532482381375574
+0.9118500343256075 0.31380753138072404 0.9118500343256075 0.31380753138072404 0.2519771108709068
+0.9152404176207765 0.3117154811715189 0.9152404176207763 0.311715481171519 0.2511708885939954
+0.9186308009159454 0.3096234309623138 0.9186308009159454 0.3096234309623138 0.25085014325449156
+0.9220211842111143 0.3075313807531087 0.9220211842111145 0.30753138075310865 0.25101096213047475
+0.9254115675062833 0.3054393305439036 0.9254115675062833 0.3054393305439036 0.25162567743671377
+0.9288019508014522 0.3033472803346985 0.9288019508014521 0.30334728033469854 0.25264534875003486
+0.9321923340966212 0.3012552301254934 0.9321923340966212 0.3012552301254934 0.25400371345312084
+0.9355827173917901 0.29916317991628827 0.9355827173917902 0.2991631799162882 0.25562216780557295
+0.938973100686959 0.29707112970708316 0.938973100686959 0.29707112970708316 0.25741527748276294
+0.942363483982128 0.29497907949787805 0.9423634839821279 0.2949790794978781 0.25929633894823767
+0.9457538672772969 0.29288702928867294 0.9457538672772969 0.29288702928867294 0.26118259702294616
+0.9491442505724659 0.29079497907946783 0.949144250572466 0.2907949790794678 0.2629998356646784
+0.9525346338676348 0.2887029288702627 0.9525346338676348 0.2887029288702627 0.26468616808256046
+0.9559250171628038 0.2866108786610576 0.9559250171628036 0.28661087866105767 0.2661949394675522
+0.9593154004579727 0.2845188284518525 0.9593154004579727 0.2845188284518525 0.267496713305779
+0.9627057837531416 0.2824267782426474 0.9627057837531418 0.28242677824264734 0.2685803421738149
+0.9660961670483106 0.2803347280334423 0.9660961670483106 0.2803347280334423 0.26945313326868753
+0.9694865503434795 0.2782426778242372 0.9694865503434794 0.27824267782423723 0.27014011721035397
+0.9728769336386485 0.27615062761503206 0.9728769336386485 0.27615062761503206 0.27068242578403057
+0.9762673169338174 0.27405857740582695 0.9762673169338175 0.2740585774058269 0.27113478954457215
+0.9796577002289864 0.27196652719662184 0.9796577002289864 0.27196652719662184 0.2715621874503082
+0.9830480835241553 0.26987447698741673 0.9830480835241552 0.2698744769874168 0.2720357232511473
+0.9864384668193242 0.2677824267782116 0.9864384668193242 0.2677824267782116 0.27262786826419044
+0.9898288501144932 0.2656903765690065 0.9898288501144933 0.26569037656900646 0.2734072921376958
+0.9932192334096621 0.2635983263598014 0.9932192334096621 0.2635983263598014 0.27443358923655986
+0.26778242677824293 0.9932192334096621 0.26778242677824293 0.9932192334096621 0.18108253216109846
+0.26987447698744793 0.9898288501144933 0.26987447698744793 0.9898288501144933 0.18263616125908932
+0.27196652719665293 0.9864384668193242 0.27196652719665293 0.9864384668193242 0.1844648904732142
+0.27405857740585793 0.9830480835241553 0.27405857740585793 0.9830480835241552 0.18653143635885241
+0.2761506276150629 0.9796577002289865 0.2761506276150629 0.9796577002289865 0.18879807719015937
+0.278242677824268 0.9762673169338175 0.278242677824268 0.9762673169338175 0.19122790745172266
+0.28033472803347304 0.9728769336386485 0.280334728033473 0.9728769336386485 0.1937857573458761
+0.28242677824267814 0.9694865503434795 0.28242677824267814 0.9694865503434794 0.1964387886428691
+0.28451882845188314 0.9660961670483106 0.28451882845188314 0.9660961670483106 0.1991568036666238
+0.28661087866108825 0.9627057837531416 0.2866108786610883 0.9627057837531418 0.20191231987009076
+0.28870292887029336 0.9593154004579727 0.28870292887029336 0.9593154004579727 0.2046804697381889
+0.2907949790794986 0.9559250171628038 0.2907949790794986 0.9559250171628036 0.20743878658336126
+0.2928870292887038 0.9525346338676349 0.2928870292887038 0.9525346338676349 0.21016693303156567
+0.29497907949790897 0.9491442505724663 0.29497907949790897 0.9491442505724663 0.21284642218127067
+0.29707112970711425 0.9457538672772977 0.29707112970711425 0.9457538672772977 0.2154603727311147
+0.2991631799163194 0.942363483982129 0.2991631799163194 0.942363483982129 0.21799332967436266
+0.3012552301255244 0.9389731006869609 0.3012552301255244 0.9389731006869609 0.22043117208329013
+0.30334728033472896 0.9355827173917924 0.30334728033472896 0.9355827173917924 0.22276111953656966
+0.3054393305439328 0.9321923340966242 0.30543933054393285 0.9321923340966242 0.22497183925940453
+0.30753138075313685 0.9288019508014552 0.30753138075313685 0.9288019508014552 0.22705364735417774
+0.3096234309623406 0.9254115675062858 0.30962343096234063 0.9254115675062858 0.22899878983222746
+0.31171548117154435 0.9220211842111158 0.31171548117154435 0.9220211842111158 0.23080178267760296
+0.3138075313807489 0.918630800915945 0.3138075313807489 0.9186308009159451 0.23245978497645006
+0.31589958158995485 0.9152404176207743 0.31589958158995485 0.9152404176207743 0.23397297527193897
+0.3179916317991624 0.9118500343256041 0.3179916317991624 0.9118500343256041 0.23534489876432405
+0.32008368200837095 0.9084596510304351 0.32008368200837095 0.9084596510304351 0.23658275177949947
+0.3221757322175794 0.9050692677352674 0.3221757322175794 0.9050692677352675 0.23769757012252035
+0.3242677824267864 0.9016788844401008 0.3242677824267864 0.9016788844401008 0.23870428962342047
+0.32635983263599055 0.8982885011449347 0.3263598326359905 0.8982885011449347 0.23962165055666554
+0.3284518828451917 0.8948981178497681 0.3284518828451917 0.8948981178497682 0.24047192292416478
+0.33054393305439117 0.8915077345545998 0.33054393305439117 0.8915077345545998 0.24128043710733052
+0.33263598326359073 0.8881173512594289 0.33263598326359073 0.8881173512594289 0.2420749143245561
+0.33472803347279306 0.8847269679642565 0.33472803347279306 0.8847269679642565 0.2428846036978539
+0.3368200836819995 0.8813365846690835 0.3368200836819995 0.8813365846690836 0.24373924722441354
+0.33891213389121 0.8779462013739119 0.33891213389121 0.8779462013739119 0.24466790978462424
+0.34100418410042216 0.8745558180787429 0.34100418410042216 0.874555818078743 0.24569772717146296
+0.3430962343096329 0.8711654347835766 0.3430962343096329 0.8711654347835766 0.24685263916621625
+0.3451882845188396 0.867775051488412 0.3451882845188396 0.867775051488412 0.24815218477911025
+0.3472803347280415 0.8643846681932472 0.3472803347280415 0.8643846681932473 0.24961044085349923
+0.34937238493724027 0.8609942848980797 0.34937238493724027 0.8609942848980797 0.25123518177442
+0.35146443514643894 0.8576039016029099 0.35146443514643894 0.8576039016029099 0.2530273265070952
+0.3535564853556405 0.8542135183077377 0.3535564853556405 0.8542135183077377 0.2549807203955674
+0.3556485355648464 0.8508231350125649 0.3556485355648464 0.8508231350125649 0.25708227514128296
+0.3577405857740558 0.8474327517173937 0.3577405857740558 0.8474327517173937 0.2593124641586926
+0.35983263598326637 0.844042368422225 0.35983263598326637 0.844042368422225 0.2616461453975183
+0.36192468619247514 0.8406519851270584 0.36192468619247514 0.8406519851270584 0.2640536626877883
+0.3640167364016807 0.8372616018318922 0.3640167364016807 0.8372616018318922 0.26650216172560737
+0.3661087866108837 0.8338712185367255 0.3661087866108837 0.8338712185367255 0.2689570487704676
+0.36820083682008714 0.8304808352415572 0.36820083682008714 0.8304808352415572 0.27138351855463266
+0.3702928860719001 0.8270904545867187 0.3702928860719001 0.8270904545867187 0.27374807939759976
+0.37238485190811227 0.8237010937450004 0.37238485190811227 0.8237010937450006 0.2760197166369925
+0.37447617613148015 0.8203157905941342 0.37447617613148015 0.8203157905941342 0.2781709487950297
+0.3765664099925887 0.8169392001861593 0.3765664099925887 0.8169392001861592 0.2801798947882772
+0.3786579986881133 0.8135761861534413 0.3786579986881133 0.8135761861534413 0.2820335368025726
+0.380757518254363 0.810230184129311 0.380757518254363 0.810230184129311 0.28372946146559275
+0.38287714124730066 0.8069043140340099 0.38287714124730066 0.8069043140340099 0.2852759655222363
+0.38503103953259205 0.8035992264424183 0.38503103953259205 0.8035992264424184 0.2866871831810384
+0.39709508342376537 0.7816618342931108 0.39709508342376537 0.7816618342931108 0.2926566385879508
+0.3872010097056498 0.800330168544262 0.3872010097056498 0.800330168544262 0.2879644037526639
+0.3892488121788901 0.7973668508076979 0.3892488121788901 0.7973668508076979 0.2890665921270747
+0.39314230444116544 0.7865464664445692 0.39314230444116544 0.7865464664445692 0.2906790207018935
+0.3917363443893106 0.7942086733645702 0.39173634438931065 0.7942086733645704 0.29038534270628497
+0.39249638621016447 0.7902495942201839 0.39249638621016447 0.7902495942201839 0.29055161229134147
+0.39653999110919796 0.785336347060923 0.39653999110919796 0.785336347060923 0.2924370068257156
+0.40043577922748885 0.7804377726335973 0.4004357792274888 0.7804377726335973 0.2942686843641973
+0.4009759624307101 0.7767602364078687 0.4009759624307101 0.7767602364078687 0.2947072340475807
+0.40148404388615105 0.773062396333622 0.40148404388615105 0.773062396333622 0.29531188329327623
+0.4045586051923449 0.7717865114795561 0.4045586051923449 0.7717865114795561 0.29686423803109707
+0.41031240750459763 0.7585743403664286 0.4103124075045976 0.7585743403664286 0.303490111350472
+0.4098139255458739 0.7626114598460848 0.4098139255458739 0.7626114598460848 0.30147807501534146
+0.4079047063671912 0.770241242928504 0.4079047063671912 0.770241242928504 0.2983980198328942
+0.40939205015308033 0.7668077168090817 0.40939205015308033 0.7668077168090816 0.29985219587493867
+0.4141069353173763 0.7529935766671163 0.4141069353173763 0.7529935766671163 0.3079761518900963
+0.41369573926706943 0.7568073236261598 0.41369573926706943 0.7568073236261598 0.30546318233156705
+0.41737862277567744 0.7512625502249067 0.41737862277567744 0.7512625502249067 0.3099273860149527
+0.4209392981527953 0.7457850155376273 0.42093929815279535 0.7457850155376273 0.3148777502899995
+0.42059627115164044 0.7495363663177294 0.42059627115164044 0.7495363663177294 0.31162814374252407
+0.42405049203506434 0.7440932647734874 0.42405049203506434 0.7440932647734874 0.316483660061674
+0.427120816976307 0.7424019524680814 0.427120816976307 0.7424019524680814 0.3177997744206272
+0.4301452708398837 0.740719081254378 0.4301452708398837 0.7407190812543779 0.3187988004091342
+0.43313074986928324 0.7389526613003619 0.4331307498692833 0.7389526613003619 0.3195499808537256
+0.4356653166157558 0.7366471784327828 0.43566531661575586 0.7366471784327828 0.32093972030080536
+0.44983547059723517 0.7081529857552139 0.44983547059723517 0.7081529857552139 0.3458960529150365
+0.4524019129256135 0.7066262439227663 0.45240191292561344 0.7066262439227663 0.34435895542966577
+0.4383184924077222 0.734697615957206 0.4383184924077222 0.734697615957206 0.32154215828968874
+0.4413521152136755 0.7326981356953859 0.4413521152136755 0.7326981356953858 0.32154818885544256
+0.44126240124014066 0.7288348006139082 0.44126240124014066 0.7288348006139082 0.32659488980806156
+0.44424724733532656 0.7231738462913281 0.44424724733532656 0.7231738462913281 0.3313290615506635
+0.44431046602962676 0.7269932439915417 0.4443104660296267 0.7269932439915417 0.3260762732509917
+0.44729595338179995 0.7213829074652635 0.4472959533817999 0.7213829074652635 0.3303212379550191
+0.44734117010217267 0.7139496710756273 0.4473411701021726 0.7139496710756273 0.3407822607072361
+0.44738972001618915 0.7176341757785286 0.44738972001618915 0.7176341757785286 0.33548231928207567
+0.44996971642720984 0.7120989045603057 0.44996971642720984 0.7120989045603058 0.3400133631026379
+0.45717041414254084 0.6992167320958332 0.45717041414254084 0.6992167320958332 0.34728892917344417
+0.4550895503646457 0.7047961020593755 0.45508955036464566 0.7047961020593755 0.3426694855376207
+0.4576624154173358 0.7028590371609461 0.4576624154173358 0.7028590371609461 0.34082849421864597
+0.4600571946559639 0.6969003164999431 0.4600571946559639 0.6969003164999431 0.3450674398293765
+0.4821585176624332 0.6469135463237945 0.4821585176624331 0.6469135463237946 0.3784683935741931
+0.46293804365363683 0.6945098865596336 0.46293804365363683 0.6945098865596336 0.3423412216150304
+0.4657571035222767 0.6920568474833652 0.4657571035222768 0.6920568474833652 0.33922682337131027
+0.4685091530528416 0.6895834767123769 0.4685091530528416 0.6895834767123769 0.3357079683055199
+0.47117497971608047 0.6870813106903726 0.4711749797160804 0.6870813106903726 0.33189944882377226
+0.4828285581650668 0.6508746764881033 0.4828285581650668 0.6508746764881033 0.36561997533329765
+0.4737577494904785 0.6845603114216766 0.4737577494904785 0.6845603114216766 0.32783118217330415
+0.4762544814495584 0.682019969535231 0.4762544814495584 0.682019969535231 0.32357393340755647
+0.48392586225223555 0.6546411506555734 0.48392586225223555 0.6546411506555733 0.3516969825128385
+0.485063159147112 0.6583490400735851 0.485063159147112 0.6583490400735851 0.33771024888817897
+0.4861723837013714 0.6621223939949847 0.4861723837013714 0.6621223939949847 0.3237087684164118
+0.47865858150954543 0.6794518428250127 0.4786585815095455 0.6794518428250127 0.3192369119432729
+0.48099612677751796 0.6768336380864506 0.48099612677751796 0.6768336380864506 0.31484255363659375
+0.48729979839094034 0.66593753562924 0.48729979839094034 0.66593753562924 0.3096300332484225
+0.48787479978496473 0.6694574684036716 0.4878747997849647 0.6694574684036717 0.2989753663980271
+0.4832033297739775 0.674331464175762 0.4832033297739775 0.674331464175762 0.31039251559524356
+0.48542624295632764 0.6719367880638032 0.4854262429563276 0.6719367880638032 0.3053160440801606
+0.4850642654158164 0.6457639960610755 0.4850642654158164 0.6457639960610755 0.3709311641609029
+0.4864686000570744 0.643190247360554 0.48646860005707443 0.643190247360554 0.37325203229041
+0.48847092034033657 0.6403890713693084 0.4884709203403366 0.6403890713693084 0.37425280254617443
+0.49047866785334127 0.6378461775998359 0.4904786678533412 0.6378461775998359 0.3747030706825092
+0.49286698052063826 0.6346459466596628 0.49286698052063826 0.6346459466596627 0.3767617421490277
+0.4941575244906472 0.6317429463657696 0.4941575244906472 0.6317429463657696 0.3831283322779202
+0.49620773013185004 0.6301359070902719 0.4962077301318501 0.6301359070902719 0.3814250080189682
+0.4977264400991197 0.6272684653751956 0.49772644009911976 0.6272684653751956 0.38875759939494675
+0.486508643897364 0.6141920826550555 0.486508643897364 0.6141920826550554 0.48508672933547714
+0.4887743461199132 0.6171649814554394 0.48877434611991327 0.6171649814554394 0.46839451560125545
+0.4921756724352758 0.6204761072392124 0.4921756724352759 0.6204761072392123 0.44453592171869355
+0.4911321129430223 0.6180727844981307 0.4911321129430223 0.6180727844981307 0.4599651520584348
+0.4958543964246086 0.6240156496822763 0.49585439642460866 0.6240156496822763 0.413772243598058
+0.49470606770326997 0.6207204667176628 0.49470606770326997 0.6207204667176628 0.4361074056902585
+0.4986450308190531 0.6239415755063206 0.49864503081905304 0.6239415755063206 0.40276004489259115
+0.48907363858159447 0.6104338472684596 0.4890736385815945 0.6104338472684595 0.5061008483837018
+0.4914782654949667 0.6067976722156871 0.4914782654949667 0.606797672215687 0.5323865817241246
+0.627065348316186 0.50954089015279 0.627065348316186 0.50954089015279 0.30665996620630903
+0.6265311339647881 0.5127338784816953 0.6265311339647881 0.5127338784816953 0.29901829449301637
+0.6194525737609202 0.5177410978468258 0.6194525737609203 0.5177410978468258 0.3438316217246666
+0.6232385665125761 0.514238263396119 0.6232385665125761 0.514238263396119 0.3253827309328278
+0.6219375388065493 0.5167447768203955 0.6219375388065493 0.5167447768203955 0.3244157821818331
+0.6158376011159801 0.5209107976402332 0.6158376011159801 0.5209107976402332 0.35876431772764866
+0.6192307912999567 0.5200919055766873 0.6192307912999567 0.5200919055766873 0.3304728760590309
+0.6127472341457769 0.5228749379280379 0.612747234145777 0.5228749379280379 0.37527449133853275
+0.616089873112182 0.5234282397090348 0.616089873112182 0.5234282397090348 0.3386669602607736
+0.6039142464232775 0.5259712187395008 0.6039142464232775 0.5259712187395008 0.4357695610262246
+0.6081970338996396 0.5244887815816963 0.6081970338996396 0.5244887815816962 0.4072752449743056
+0.6370894669578678 0.5014411788244801 0.6370894669578678 0.5014411788244802 0.2261498246821354
+0.640824344497979 0.4998874434542466 0.640824344497979 0.4998874434542467 0.19530100034091305
+0.6367175766101317 0.5044187541749918 0.6367175766101317 0.5044187541749918 0.22674952945575672
+0.6311257214201658 0.508585226819285 0.6311257214201658 0.5085852268192851 0.26921064995328686
+0.6346548644978156 0.5070359534785954 0.6346548644978157 0.5070359534785954 0.24058275051924638
+0.6524245676350778 0.48840909025407725 0.6524245676350778 0.48840909025407725 0.10074188627537949
+0.6592680905091907 0.48491331987211056 0.6592680905091907 0.48491331987211056 0.057911285791969365
+0.6558177376311891 0.4867200339929642 0.655817737631189 0.4867200339929642 0.07843561312694819
+0.6452520768482393 0.4955911548601153 0.6452520768482393 0.49559115486011523 0.15894340099444212
+0.6477979068179633 0.49340184264287557 0.6477979068179635 0.4934018426428755 0.1384652532186362
+0.644408625845891 0.49839987399819896 0.644408625845891 0.498399873998199 0.16717998978211324
+0.6516321019181882 0.4920531385685454 0.6516321019181882 0.4920531385685454 0.1115572729430262
+0.6733869557320801 0.4702440258441278 0.6733869557320801 0.4702440258441278 0.07454177148945083
+0.6765624549151601 0.46843521156699425 0.6765624549151602 0.46843521156699425 0.085403078793016
+0.6797858366883704 0.46663834201734 0.6797858366883704 0.46663834201733995 0.09612183865322634
+0.6830861230277603 0.4648512348807485 0.6830861230277603 0.4648512348807485 0.10635312017708139
+0.669928786193578 0.4752545770647459 0.669928786193578 0.4752545770647459 0.04789001738712952
+0.673135644046011 0.4734658145219364 0.673135644046011 0.4734658145219364 0.05766870875741668
+0.6696841815846188 0.47861372831976234 0.6696841815846187 0.4786137283197624 0.03282677049679083
+0.6628379251812254 0.4829719628277669 0.6628379251812254 0.4829719628277669 0.0402351577356514
+0.6668611655502223 0.480920132392052 0.6668611655502223 0.4809201323920521 0.028723346247029886
+0.6864003367429493 0.46304356930537255 0.6864003367429493 0.46304356930537255 0.11600502154169158
+0.6897318005243788 0.46121650418233834 0.6897318005243788 0.46121650418233834 0.12495997272425563
+0.6930673826058696 0.4593645370351022 0.6930673826058696 0.4593645370351022 0.13319599570507853
+0.6963903474462297 0.45748101872903724 0.6963903474462297 0.4574810187290373 0.1407337958394259
+0.6997021503928306 0.45557085737440306 0.6997021503928306 0.4555708573744031 0.14758974278754525
+0.7029946494563485 0.4536849779883231 0.7029946494563485 0.45368497798832313 0.1536481038125924
+0.7066412253164869 0.448454413616884 0.7066412253164868 0.44845441361688393 0.17151484091342076
+0.706280746878958 0.4519060795754962 0.7062807468789581 0.45190607957549617 0.1586556055997909
+0.7100565563596197 0.44660874257853256 0.7100565563596196 0.4466087425785325 0.17560953436357707
+0.7131872760591583 0.44458159178443574 0.7131872760591583 0.44458159178443574 0.18020714504900148
+0.7164431342929743 0.442729855876112 0.7164431342929743 0.4427298558761121 0.18373353547746832
+0.7198068835031476 0.44097715626049705 0.7198068835031476 0.4409771562604971 0.18652938467107352
+0.723127857149697 0.439108874407983 0.723127857149697 0.439108874407983 0.18960635894682734
+0.7264301925685647 0.43719465204800606 0.7264301925685647 0.43719465204800606 0.19275725419208625
+0.7330733838530817 0.43352420675363185 0.7330733838530817 0.43352420675363185 0.19844908635920377
+0.7297495687090997 0.43529831298744176 0.7297495687090997 0.43529831298744176 0.19578924488627758
+0.7363704910695049 0.4318800181649592 0.7363704910695049 0.4318800181649592 0.20075165251996663
+0.7395560463668107 0.430199567402874 0.7395560463668107 0.430199567402874 0.20330327589142794
+0.7427499093537402 0.428427036527733 0.7427499093537402 0.428427036527733 0.2062095032682326
+0.7459685505815016 0.42662027517072304 0.7459685505815016 0.42662027517072304 0.20923705392565942
+0.7492485198489081 0.4213234710635732 0.7492485198489081 0.4213234710635732 0.22324726487934485
+0.7525159281939481 0.4194325393833059 0.7525159281939481 0.4194325393833059 0.22636927409828655
+0.755808617481124 0.41752859622008404 0.755808617481124 0.41752859622008404 0.22942633185118333
+0.7591407187432604 0.41560789788818003 0.7591407187432604 0.41560789788818003 0.23236713502108497
+0.7625492784543162 0.41366535377096747 0.7625492784543163 0.4136653537709675 0.23511640881464915
+0.7492224924459578 0.42478951360031153 0.7492224924459578 0.42478951360031153 0.212327675646818
+0.7660723881345947 0.4117301777067387 0.7660723881345947 0.41173017770673864 0.23748742093616385
+0.7695396817361259 0.40994581887166287 0.7695396817361259 0.40994581887166287 0.23922988605693707
+0.7730645369780763 0.40822019680432464 0.7730645369780763 0.4082201968043247 0.24037089509354584
+0.7762207080558378 0.40625884792616135 0.7762207080558378 0.40625884792616135 0.242269265913183
+0.779424557124048 0.4044549515888289 0.779424557124048 0.4044549515888289 0.24340844340454945
+0.78303591002703 0.3992059071732852 0.78303591002703 0.3992059071732852 0.2524738427864555
+0.7827062386163681 0.4027443906081744 0.7827062386163681 0.4027443906081744 0.24388355296190342
+0.7862959575421331 0.39734949130625935 0.7862959575421331 0.39734949130625935 0.25274523720689945
+0.7896148720506453 0.3956342215949115 0.7896148720506453 0.3956342215949115 0.25234087371898
+0.7929833892729463 0.39438351114634834 0.7929833892729463 0.39438351114634834 0.2506519292758322
+0.793727670894459 0.3916008213494783 0.793727670894459 0.3916008213494783 0.2559525797737542
+0.7961024331601918 0.3891187654877748 0.7961024331601917 0.3891187654877748 0.2581647232794653
+0.7999192878741024 0.38704738988231724 0.7999192878741024 0.38704738988231724 0.25710167997673533
+0.8033642700855688 0.38492893227070796 0.8033642700855687 0.38492893227070796 0.25665628595666545
+0.8067601565724608 0.3828454663831726 0.8067601565724608 0.3828454663831726 0.25624934616687317
+0.8101447718280652 0.38075787582513176 0.8101447718280653 0.38075787582513176 0.2559729147292286
+0.8135304899091652 0.3786650548179449 0.8135304899091652 0.3786650548179449 0.2558792153596052
+0.8169198124932796 0.376570641304209 0.8169198124932796 0.376570641304209 0.2560121415802384
+0.8203098452489527 0.374477119568369 0.8203098452489527 0.374477119568369 0.25641032384088774
+0.8237000783677711 0.3723849277218411 0.8237000783677711 0.3723849277218411 0.2570955557717642
+0.827090451946384 0.370292887029262 0.8270904519463841 0.37029288702926205 0.25807247950693496
+0.8304808352415529 0.3682008368200569 0.8304808352415529 0.3682008368200569 0.25932377738865126
+0.8338712185367219 0.3661087866108518 0.8338712185367217 0.3661087866108517 0.26081261128104427
+0.8372616018318908 0.36401673640164667 0.8372616018318908 0.36401673640164667 0.26248538596985327
+0.8406519851270597 0.36192468619244156 0.8406519851270599 0.3619246861924416 0.26427499097481816
+0.8440423684222287 0.35983263598323645 0.8440423684222287 0.35983263598323645 0.2661047262025244
+0.8474327517173976 0.35774058577403134 0.8474327517173975 0.3577405857740313 0.26789258080804634
+0.8508231350125666 0.35564853556482623 0.8508231350125666 0.35564853556482623 0.2695555629977768
+0.8542135183077355 0.3535564853556211 0.8542135183077356 0.3535564853556212 0.2710138311215058
+0.8576039016029045 0.351464435146416 0.8576039016029045 0.351464435146416 0.27219444402147425
+0.8609942848980734 0.3493723849372109 0.8609942848980733 0.34937238493721084 0.27303461451826766
+0.8643846681932423 0.3472803347280058 0.8643846681932423 0.3472803347280058 0.2734844040111199
+0.8677750514884113 0.3451882845188007 0.8677750514884114 0.34518828451880074 0.2735088340506127
+0.8711654347835802 0.34309623430959557 0.8711654347835802 0.34309623430959557 0.27308941224331335
+0.8745558180787492 0.34100418410039046 0.874555818078749 0.3410041841003904 0.2722250773247144
+0.8779462013739181 0.33891213389118535 0.8779462013739181 0.33891213389118535 0.27093256517487146
+0.881336584669087 0.33682008368198024 0.8813365846690872 0.3368200836819803 0.2692461877831733
+0.884726967964256 0.33472803347277513 0.884726967964256 0.33472803347277513 0.26721700466720755
+0.8881173512594249 0.33263598326357 0.8881173512594248 0.33263598326356997 0.26491135532327975
+0.8915077345545939 0.3305439330543649 0.8915077345545939 0.3305439330543649 0.2624087169192586
+0.8948981178497628 0.3284518828451598 0.8948981178497629 0.32845188284515986 0.2597988594732464
+0.8982885011449318 0.3263598326359547 0.8982885011449318 0.3263598326359547 0.2571782975030476
+0.9016788844401007 0.3242677824267496 0.9016788844401006 0.32426778242674953 0.2546460880193449
+0.9050692677352696 0.3221757322175445 0.9050692677352696 0.3221757322175445 0.2522991018143539
+0.9084596510304386 0.32008368200833937 0.9084596510304387 0.3200836820083394 0.2502269935307068
+0.9118500343256075 0.31799163179913426 0.9118500343256075 0.31799163179913426 0.24850720145392446
+0.9152404176207765 0.31589958158992915 0.9152404176207763 0.3158995815899291 0.24720039560151655
+0.9186308009159454 0.31380753138072404 0.9186308009159454 0.31380753138072404 0.24634683194941573
+0.9220211842111143 0.3117154811715189 0.9220211842111145 0.311715481171519 0.24596403515063267
+0.9254115675062833 0.3096234309623138 0.9254115675062833 0.3096234309623138 0.24604611207948643
+0.9288019508014522 0.3075313807531087 0.9288019508014521 0.30753138075310865 0.2465648095292737
+0.9321923340966212 0.3054393305439036 0.9321923340966212 0.3054393305439036 0.24747221094974756
+0.9355827173917901 0.3033472803346985 0.9355827173917902 0.30334728033469854 0.2487047699090561
+0.938973100686959 0.3012552301254934 0.938973100686959 0.3012552301254934 0.25018824507956766
+0.942363483982128 0.29916317991628827 0.9423634839821279 0.2991631799162882 0.2518430535354987
+0.9457538672772969 0.29707112970708316 0.9457538672772969 0.29707112970708316 0.25358959008429105
+0.9491442505724659 0.29497907949787805 0.949144250572466 0.2949790794978781 0.2553531450166506
+0.9525346338676348 0.29288702928867294 0.9525346338676348 0.29288702928867294 0.2570681592119158
+0.9559250171628038 0.29079497907946783 0.9559250171628036 0.2907949790794678 0.25868165678188415
+0.9593154004579727 0.2887029288702627 0.9593154004579727 0.2887029288702627 0.2601557747668326
+0.9627057837531416 0.2866108786610576 0.9627057837531418 0.28661087866105767 0.26146936130666826
+0.9660961670483106 0.2845188284518525 0.9660961670483106 0.2845188284518525 0.2626186410893834
+0.9694865503434795 0.2824267782426474 0.9694865503434794 0.28242677824264734 0.2636169574850494
+0.9728769336386485 0.2803347280334423 0.9728769336386485 0.2803347280334423 0.26449360432815533
+0.9762673169338174 0.2782426778242372 0.9762673169338175 0.27824267782423723 0.26529176658971076
+0.9796577002289864 0.27615062761503206 0.9796577002289864 0.27615062761503206 0.26606560674384655
+0.9830480835241553 0.27405857740582695 0.9830480835241552 0.2740585774058269 0.26687656863805126
+0.9864384668193242 0.27196652719662184 0.9864384668193242 0.27196652719662184 0.26778902538274507
+0.9898288501144932 0.26987447698741673 0.9898288501144933 0.2698744769874168 0.26886546884196333
+0.9932192334096621 0.2677824267782116 0.9932192334096621 0.2677824267782116 0.2701615155469161
+0.27196652719665293 0.9932192334096621 0.27196652719665293 0.9932192334096621 0.18264166147751412
+0.27405857740585793 0.9898288501144932 0.27405857740585793 0.9898288501144933 0.18422969087873817
+0.2761506276150629 0.9864384668193242 0.2761506276150629 0.9864384668193242 0.18609625660195683
+0.278242677824268 0.9830480835241553 0.278242677824268 0.9830480835241552 0.18820750200911315
+0.28033472803347304 0.9796577002289864 0.280334728033473 0.9796577002289864 0.19052860233358462
+0.2824267782426781 0.9762673169338174 0.2824267782426781 0.9762673169338175 0.19302481445964045
+0.2845188284518832 0.9728769336386485 0.2845188284518832 0.9728769336386485 0.1956622514624903
+0.28661087866108825 0.9694865503434795 0.2866108786610883 0.9694865503434794 0.19840839546409872
+0.2887029288702933 0.9660961670483106 0.2887029288702933 0.9660961670483106 0.20123238371377059
+0.2907949790794984 0.9627057837531418 0.2907949790794984 0.9627057837531418 0.20410511573202436
+0.2928870292887036 0.9593154004579728 0.2928870292887036 0.9593154004579728 0.20699923489519448
+0.29497907949790875 0.9559250171628041 0.29497907949790875 0.9559250171628041 0.20988903753155982
+0.29707112970711386 0.9525346338676353 0.29707112970711386 0.9525346338676354 0.21275035805580314
+0.29916317991631897 0.9491442505724667 0.29916317991631897 0.9491442505724667 0.2155604713187004
+0.3012552301255241 0.945753867277298 0.3012552301255241 0.9457538672772979 0.21829804436195663
+0.3033472803347286 0.9423634839821297 0.3033472803347286 0.9423634839821297 0.22094316005215145
+0.3054393305439332 0.9389731006869607 0.3054393305439332 0.9389731006869607 0.22347742530714784
+0.3075313807531375 0.9355827173917919 0.3075313807531375 0.935582717391792 0.22588416732450153
+0.3096234309623417 0.9321923340966228 0.30962343096234163 0.9321923340966228 0.2281487127258075
+0.31171548117154596 0.9288019508014532 0.31171548117154596 0.9288019508014532 0.23025873706880504
+0.3138075313807507 0.9254115675062834 0.3138075313807507 0.9254115675062834 0.23220466586970243
+0.31589958158995607 0.9220211842111135 0.31589958158995607 0.9220211842111133 0.23398010315642456
+0.3179916317991623 0.9186308009159435 0.3179916317991623 0.9186308009159435 0.23558225961662962
+0.3200836820083693 0.9152404176207742 0.3200836820083693 0.9152404176207742 0.2370123495654728
+0.3221757322175762 0.9118500343256061 0.3221757322175762 0.9118500343256061 0.2382759242042324
+0.3242677824267825 0.9084596510304382 0.3242677824267825 0.9084596510304382 0.23938310799263054
+0.3263598326359874 0.905069267735271 0.3263598326359874 0.9050692677352711 0.24034870552457668
+0.32845188284519083 0.9016788844401032 0.32845188284519083 0.9016788844401032 0.2411921483016053
+0.33054393305439306 0.8982885011449345 0.33054393305439306 0.8982885011449345 0.24193725457826262
+0.3326359832635952 0.894898117849765 0.3326359832635952 0.894898117849765 0.24261178143169523
+0.33472803347279867 0.8915077345545943 0.33472803347279867 0.8915077345545942 0.24324675681608196
+0.33682008368200395 0.8881173512594237 0.33682008368200395 0.8881173512594237 0.24387559091699607
+0.33891213389121116 0.8847269679642533 0.33891213389121116 0.8847269679642533 0.24453298064650228
+0.3410041841004195 0.8813365846690843 0.3410041841004195 0.8813365846690843 0.2452536381549507
+0.3430962343096274 0.8779462013739163 0.3430962343096274 0.8779462013739163 0.24607089266155183
+0.3451882845188336 0.8745558180787492 0.3451882845188336 0.874555818078749 0.24701523287860558
+0.3472803347280377 0.871165434783582 0.3472803347280377 0.871165434783582 0.2481128723640016
+0.34937238493724027 0.867775051488414 0.34937238493724027 0.867775051488414 0.24938442954944204
+0.3514644351464425 0.864384668193245 0.3514644351464425 0.864384668193245 0.2508438155048071
+0.3535564853556458 0.8609942848980748 0.3535564853556458 0.8609942848980748 0.2524974141959581
+0.3556485355648508 0.8576039016029045 0.3556485355648508 0.8576039016029045 0.2543436220542967
+0.35774058577405743 0.8542135183077345 0.35774058577405743 0.8542135183077345 0.25637278782404455
+0.35983263598326465 0.8508231350125653 0.35983263598326465 0.8508231350125653 0.2585675631404301
+0.36192468619247126 0.8474327517173972 0.36192468619247126 0.8474327517173972 0.2609036432466889
+0.3640167364016768 0.8440423684222296 0.3640167364016768 0.8440423684222296 0.2633508497693349
+0.3661087866108808 0.8406519851270616 0.3661087866108808 0.8406519851270616 0.2658744867084262
+0.3682008368200846 0.8372616018318929 0.3682008368200846 0.8372616018318929 0.26843688843345864
+0.37029288702929164 0.8338712185367237 0.37029288702929164 0.8338712185367237 0.2709990745713134
+0.3723849372385062 0.8304808352415544 0.3723849372385062 0.8304808352415544 0.273522430250638
+0.37447698744770413 0.8270904519463841 0.37447698744770413 0.8270904519463841 0.27597034231711653
+0.3765684523290916 0.8237020841905557 0.3765684523290916 0.8237020841905557 0.2783087498155486
+0.3786582750982057 0.8203192733198547 0.3786582750982057 0.8203192733198547 0.280508154857394
+0.380746575429422 0.8169468482297795 0.380746575429422 0.8169468482297795 0.2825460299873032
+0.38283699271397215 0.8135881474959766 0.38283699271397215 0.8135881474959766 0.28440999251625626
+0.38493802481060135 0.8102466639937508 0.38493802481060135 0.8102466639937508 0.28609805218985546
+0.3870659998913835 0.8069284138473337 0.3870659998913835 0.8069284138473337 0.2876184465237737
+0.38926500650965734 0.803660945334503 0.3892650065096573 0.803660945334503 0.288993282642327
+0.3998863272778994 0.7841040634091117 0.3998863272778994 0.7841040634091118 0.29395806852144646
+0.3914473397759509 0.8005708991182254 0.39144733977595086 0.8005708991182255 0.29017840016559765
+0.3926233513073395 0.7975816107545656 0.3926233513073395 0.7975816107545656 0.2907526398585145
+0.3952993451461549 0.795945988563175 0.3952993451461549 0.795945988563175 0.29205660312384096
+0.39598418570859845 0.788990393194716 0.39598418570859845 0.788990393194716 0.2922709923477884
+0.3953828209613985 0.7925602938950748 0.3953828209613985 0.7925602938950748 0.29208170629650915
+0.39938642465513907 0.7877501957720584 0.39938642465513907 0.7877501957720584 0.2937392888339074
+0.4031412519850623 0.7828668917089897 0.4031412519850623 0.7828668917089897 0.29522457261639584
+0.4037730295550746 0.7792167230201191 0.4037730295550746 0.7792167230201191 0.29566395643159593
+0.4043154062246305 0.7755844863160688 0.4043154062246305 0.7755844863160687 0.2962124448508438
+0.40717325344037525 0.7742918745223872 0.4071732534403752 0.7742918745223872 0.29736217007532423
+0.41329985274428876 0.7606670471640516 0.41329985274428876 0.7606670471640516 0.30329217406831527
+0.4129659533112302 0.7645033806451914 0.4129659533112302 0.7645033806451914 0.3015054686498299
+0.410729289326167 0.7698538426458389 0.41072928932616704 0.7698538426458389 0.29914970219716835
+0.4102371999578212 0.7727896595949891 0.4102371999578212 0.7727896595949891 0.2983070270851695
+0.41296771555288164 0.7680316953599724 0.41296771555288164 0.7680316953599724 0.3001794208734994
+0.417007041603589 0.7550474890688017 0.417007041603589 0.7550474890688017 0.30720567726330045
+0.41665874065143355 0.7588532576466077 0.41665874065143355 0.7588532576466077 0.3048298820974011
+0.4202632564026269 0.7532979161462584 0.4202632564026269 0.7532979161462584 0.3087016937057662
+0.4237613112964355 0.7478116691460288 0.4237613112964355 0.7478116691460288 0.3130623890414976
+0.423468034152239 0.7515491079030246 0.423468034152239 0.7515491079030246 0.3099414689901221
+0.4268673821151401 0.7460661741453828 0.4268673821151401 0.7460661741453828 0.31423850836823647
+0.42991793980654736 0.7442865744534481 0.42991793980654736 0.7442865744534481 0.31515942166148153
+0.4329055906221145 0.7424328406134552 0.4329055906221145 0.7424328406134552 0.3158675939643483
+0.435765708786072 0.7403642195362865 0.435765708786072 0.7403642195362865 0.31659873470521505
+0.4385393747638797 0.7384160540929606 0.4385393747638798 0.7384160540929606 0.31692972827395427
+0.45276602651909564 0.7100427590527287 0.45276602651909564 0.7100427590527287 0.3387626440315634
+0.4554242301919309 0.708389715517768 0.45542423019193096 0.708389715517768 0.33672325901096817
+0.44143083043011844 0.7365105149626423 0.44143083043011844 0.7365105149626423 0.31676860045454047
+0.444444790416731 0.7346115970245842 0.444444790416731 0.7346115970245842 0.3160577683691402
+0.44438972299218493 0.7308257424274079 0.44438972299218493 0.7308257424274079 0.3209303352806359
+0.4473405099903414 0.7251850703274685 0.4473405099903414 0.7251850703274685 0.3250033226461684
+0.447442428047059 0.729016313619237 0.44744242804705897 0.729016313619237 0.31970849327716916
+0.4502673734822681 0.7196748432151863 0.45026737348226803 0.7196748432151862 0.3287155922674471
+0.45029233911070765 0.723367833741376 0.45029233911070765 0.723367833741376 0.323488702941132
+0.45091449919484655 0.7158902542532497 0.4509144991948465 0.7158902542532496 0.3332231134034109
+0.4529017029618398 0.7131978290753888 0.4529017029618398 0.7131978290753888 0.3338970171643041
+0.4530778335606881 0.7186315748990719 0.4530778335606881 0.7186315748990719 0.3257529382186396
+0.4604338877290722 0.7007125159915146 0.4604338877290722 0.7007125159915146 0.338373104118725
+0.45809243681644846 0.7064904256186794 0.45809243681644846 0.7064904256186794 0.3344825664954146
+0.4608223707235477 0.7044820685026472 0.4608223707235477 0.7044820685026472 0.33172521813068934
+0.46337607600077213 0.6983816523149101 0.46337607600077213 0.6983816523149101 0.33519314143019163
+0.48541525606858227 0.6488490313652252 0.4854152560685822 0.6488490313652252 0.36094881475149304
+0.4662443725924088 0.6958904349763427 0.46624437259240886 0.6958904349763427 0.3317618207890575
+0.46905452087315713 0.6933709493483766 0.4690545208731571 0.6933709493483766 0.3278730992464447
+0.471771558827093 0.6908289445670396 0.471771558827093 0.6908289445670396 0.3236688561767375
+0.47440448387621387 0.6882747125938518 0.47440448387621387 0.6882747125938518 0.3191619077089984
+0.4863377171781728 0.6522495714484391 0.4863377171781728 0.6522495714484391 0.3478266941951484
+0.47695471365772085 0.6857032684666161 0.47695471365772085 0.6857032684666161 0.3144134882884781
+0.47941347760314285 0.6831056088390649 0.47941347760314285 0.6831056088390649 0.3095389931707446
+0.48746352232024154 0.655868299511576 0.48746352232024154 0.655868299511576 0.33326125237380294
+0.4886809578485313 0.6595715785681883 0.4886809578485313 0.6595715785681883 0.31812133913654045
+0.49004295191968456 0.6633908155498986 0.49004295191968456 0.6633908155498985 0.3021342918058014
+0.4818043746085518 0.6804992925797823 0.4818043746085518 0.6804992925797823 0.3044849711244723
+0.48411675809925664 0.677897987683688 0.48411675809925664 0.677897987683688 0.2993300963791911
+0.49134831819461355 0.6678481391178028 0.4913483181946136 0.6678481391178028 0.2852208569975772
+0.4903982984481661 0.6710938679447707 0.4903982984481662 0.6710938679447707 0.282870764661452
+0.4883208323488255 0.6728005147279124 0.48832083234882545 0.6728005147279124 0.2897528458515994
+0.4863064651921456 0.6753401206237956 0.4863064651921456 0.6753401206237956 0.29428208455004
+0.48768484768125686 0.6463840044376574 0.4876848476812569 0.6463840044376575 0.3585906282876416
+0.4896718173189891 0.6439940541457957 0.48967181731898907 0.6439940541457957 0.3573419623169682
+0.4923239264165952 0.6413795213722238 0.4923239264165952 0.6413795213722236 0.35417077306408246
+0.4934517865501541 0.6381224615526306 0.4934517865501541 0.6381224615526306 0.36051067142830673
+0.49561956686710845 0.6368103534159772 0.4956195668671085 0.6368103534159772 0.35529352893220645
+0.49668109634338237 0.6336519655585563 0.49668109634338237 0.6336519655585563 0.3634785326693159
+0.4989759352988578 0.6307038628694889 0.4989759352988578 0.6307038628694889 0.36572955855659467
+0.5007254805987552 0.6274305767797792 0.5007254805987552 0.6274305767797791 0.3739118298563919
+0.49124778180143125 0.6147320449506815 0.4912477818014312 0.6147320449506815 0.4796652900484139
+0.4936071717467613 0.6175574933777819 0.4936071717467612 0.6175574933777819 0.45773051260702896
+0.4972558702647477 0.6209331400772324 0.49725587026474777 0.6209331400772324 0.4259197881093108
+0.496007853305967 0.6184036965603188 0.496007853305967 0.6184036965603188 0.4458574928849169
+0.5014184166911237 0.6236407804220413 0.5014184166911236 0.6236407804220413 0.391788589832293
+0.49978324673369395 0.6209122408605653 0.49978324673369395 0.6209122408605653 0.415972323280935
+0.503565380906473 0.6257616661898182 0.503565380906473 0.6257616661898182 0.3689211024907364
+0.5035219006323619 0.6230563158543387 0.5035219006323619 0.6230563158543387 0.38520828061794804
+0.49365208904956814 0.6108329240531924 0.49365208904956814 0.6108329240531924 0.5028071044958984
+0.4958983583041194 0.6070627312350356 0.4958983583041194 0.6070627312350356 0.5312001360527603
+0.626408216903027 0.5153025147203535 0.626408216903027 0.5153025147203535 0.2880436602838191
+0.6301696363252409 0.5116876441313397 0.6301696363252409 0.5116876441313397 0.26800543455954134
+0.6294158753537662 0.514461539158612 0.6294158753537662 0.5144615391586119 0.26381601814484895
+0.6222318095029832 0.5189079730606286 0.6222318095029832 0.5189079730606286 0.30866939193147425
+0.6246821533372349 0.5171953663368822 0.6246821533372349 0.5171953663368822 0.2949006815277351
+0.6148474906373018 0.5256237248540742 0.6148474906373017 0.5256237248540742 0.33673884589411435
+0.6222134547451407 0.521646838676617 0.6222134547451407 0.521646838676617 0.29350972786234414
+0.6188507691056753 0.5226142424242236 0.6188507691056753 0.5226142424242236 0.31832638631204774
+0.6181906611455186 0.5251134024442721 0.6181906611455186 0.525113402444272 0.3106147557218513
+0.60275849658518 0.5302415619300138 0.6027584965851799 0.5302415619300138 0.41478198846646935
+0.6116107099223752 0.5274790774811735 0.6116107099223752 0.5274790774811735 0.35495016750114106
+0.6149565619576001 0.52819936481826 0.6149565619576001 0.52819936481826 0.32449232610911666
+0.6071074525216223 0.5289335423678546 0.6071074525216223 0.5289335423678546 0.38544106676635
+0.6438177953884603 0.5016575561577213 0.6438177953884603 0.5016575561577213 0.1715997027695224
+0.6401188688462813 0.5037757444047838 0.6401188688462813 0.5037757444047838 0.19908124504329835
+0.63811081036872 0.5065521297746534 0.63811081036872 0.5065521297746534 0.21151034700761012
+0.6338796799986479 0.5106241119610165 0.6338796799986479 0.5106241119610165 0.23792912116861872
+0.6377445400931612 0.5095117116804893 0.6377445400931611 0.5095117116804894 0.20815779471455534
+0.655204845513592 0.4904082048395586 0.655204845513592 0.4904082048395586 0.08771211657180557
+0.662162208934813 0.48692860556927603 0.662162208934813 0.48692860556927603 0.04602227796228251
+0.6586526750895219 0.488671024557027 0.658652675089522 0.488671024557027 0.06610462173784083
+0.6476333750246481 0.49701572362838564 0.6476333750246481 0.4970157236283857 0.1433373175118938
+0.6510425981527361 0.4955608147466358 0.6510425981527361 0.49556081474663577 0.11947309775581823
+0.6469006598823359 0.5001779067994231 0.6469006598823359 0.5001779067994231 0.1494243314224405
+0.6544804297150698 0.49401476067427935 0.6544804297150698 0.49401476067427935 0.09670886364590382
+0.6763973331798381 0.47171637677565476 0.6763973331798381 0.47171637677565476 0.06861020629732907
+0.6796683231353287 0.46997539678276695 0.6796683231353287 0.46997539678276695 0.07967889285947817
+0.6829743999991886 0.46823029944890515 0.6829743999991886 0.4682302994489051 0.0903947511517676
+0.6863155713689508 0.46647911093485694 0.6863155713689508 0.46647911093485694 0.10049119631510717
+0.6728496703680057 0.4767493708194389 0.6728496703680057 0.47674937081943897 0.04186354854344237
+0.676156946860269 0.47494010463276426 0.676156946860269 0.4749401046327643 0.053335713563341276
+0.6701928081171729 0.48127997884599727 0.6701928081171729 0.48127997884599727 0.022496514716980484
+0.672861521533902 0.4797252815379695 0.672861521533902 0.4797252815379695 0.029122653412512273
+0.66575411085485 0.4852310694681821 0.66575411085485 0.4852310694681821 0.028330656692403453
+0.6691382470735793 0.4840735558960625 0.6691382470735793 0.4840735558960625 0.01679043018328937
+0.6896815853818691 0.4647129256738436 0.6896815853818691 0.46471292567384365 0.10986088954866742
+0.6930737011845602 0.4629073206952538 0.6930737011845602 0.4629073206952538 0.11853722506948418
+0.6964136270222757 0.46109181183759435 0.6964136270222757 0.46109181183759435 0.12637296456210922
+0.6996549833301794 0.459189657385722 0.6996549833301794 0.459189657385722 0.13369693366756955
+0.7027925314044836 0.45723412508506384 0.7027925314044836 0.45723412508506384 0.1404992617562503
+0.7059380951734134 0.4553900052229393 0.7059380951734134 0.4553900052229393 0.1462605088122304
+0.7096071593551133 0.4501622965108656 0.7096071593551133 0.45016229651086553 0.1629312704784925
+0.7091947435840215 0.4536484022088714 0.7091947435840215 0.4536484022088714 0.15102348019420642
+0.7128994443362838 0.4483607783280023 0.7128994443362838 0.4483607783280023 0.16697806332784182
+0.7161583156304397 0.44649677642404845 0.7161583156304397 0.44649677642404845 0.170878553827838
+0.7194885490268526 0.4446478227970043 0.7194885490268526 0.4446478227970044 0.17437930992541104
+0.7228254141478269 0.4428043989818357 0.7228254141478269 0.4428043989818357 0.17761020339410127
+0.7261503801796029 0.44092870459253225 0.7261503801796029 0.44092870459253225 0.18080709829627153
+0.7294712524030498 0.4390376191450523 0.7294712524030498 0.4390376191450523 0.18398176475498954
+0.7361184612609631 0.43534436273953175 0.7361184612609631 0.43534436273953175 0.1900385922717975
+0.7328170451391063 0.4371489437029227 0.7328170451391064 0.4371489437029226 0.18711242786308893
+0.7393761461411237 0.43359399517841385 0.7393761461411237 0.43359399517841385 0.19286172412337832
+0.7391685580670161 0.437044373674641 0.7391685580670161 0.43704437367464094 0.18271246625460114
+0.7426138123241668 0.43183372606374026 0.7426138123241667 0.4318337260637403 0.19577231646104398
+0.7458602013315271 0.43005335186321814 0.7458602013315271 0.43005335186321814 0.19878406036932542
+0.7491380316797823 0.42825539689098235 0.7491380316797823 0.42825539689098235 0.2018524618783499
+0.7525016911541379 0.4229422797518776 0.7525016911541379 0.4229422797518776 0.21542914759175844
+0.7558004154098802 0.4210788787080951 0.7558004154098802 0.4210788787080951 0.21850408554764592
+0.7591189770110193 0.41920309052473725 0.7591189770110193 0.4192030905247373 0.22149299637379885
+0.7624670844764201 0.4173178623704141 0.7624670844764201 0.41731786237041407 0.2243293414707959
+0.7658559310553127 0.4154395558590939 0.7658559310553127 0.4154395558590939 0.22690892244797942
+0.7524365623677439 0.4264599907612756 0.7524365623677439 0.4264599907612756 0.20489729741827048
+0.7692695936334296 0.41360654074386566 0.7692695936334296 0.41360654074386566 0.22910581719884648
+0.7727070747391415 0.41183985565132186 0.7727070747391415 0.41183985565132186 0.2308075662662903
+0.7759799675592159 0.409997518358664 0.7759799675592159 0.409997518358664 0.23256291113176944
+0.7792053007124559 0.40815552100202357 0.7792053007124559 0.40815552100202357 0.2340725050990243
+0.7824379376145362 0.40633959275338927 0.7824379376145362 0.4063395927533893 0.23520631731444655
+0.7859493112085136 0.40096923403289186 0.7859493112085136 0.4009692340328918 0.24429554918027604
+0.7856570516762685 0.4045461150883079 0.7856570516762685 0.4045461150883079 0.23600272679031628
+0.7891736440620319 0.39919403597218056 0.7891736440620319 0.39919403597218056 0.24447097763090372
+0.7922469142029249 0.39758922356525805 0.7922469142029249 0.39758922356525805 0.2442193304590304
+0.7947959629540633 0.3965259983197384 0.7947959629540633 0.3965259983197384 0.24329783866280769
+0.7965800341853112 0.3934252046618035 0.7965800341853112 0.39342520466180353 0.24788695592185347
+0.7999620084715823 0.39120162812210024 0.7999620084715823 0.39120162812210024 0.24811090077667994
+0.8033869412918886 0.3891288216062338 0.8033869412918886 0.3891288216062338 0.247876961834234
+0.806764577676514 0.3870431970036641 0.806764577676514 0.3870431970036641 0.2477415497970934
+0.8101506099397989 0.3849526760935938 0.8101506099397989 0.3849526760935938 0.2476840320024953
+0.8135351083905774 0.38285689985998844 0.8135351083905774 0.38285689985998844 0.24778407469354732
+0.8169211527131198 0.3807591343239931 0.8169211527131198 0.3807591343239931 0.24809048281771737
+0.8203101817332842 0.3786628900005053 0.8203101817332842 0.3786628900005053 0.2486415287534325
+0.8237001239118341 0.37656923471594955 0.8237001239118341 0.37656923471594955 0.24946743410923508
+0.827090451946384 0.3744769874476722 0.8270904519463841 0.37447698744767216 0.2505817848914829
+0.8304808352415529 0.3723849372384671 0.8304808352415529 0.3723849372384671 0.25197800248559976
+0.8338712185367219 0.370292887029262 0.8338712185367217 0.37029288702926205 0.2536278193510562
+0.8372616018318908 0.3682008368200569 0.8372616018318908 0.3682008368200569 0.25548476603368736
+0.8406519851270597 0.3661087866108518 0.8406519851270599 0.3661087866108517 0.2574873789158479
+0.8440423684222287 0.36401673640164667 0.8440423684222287 0.36401673640164667 0.2595627898118709
+0.8474327517173976 0.36192468619244156 0.8474327517173975 0.3619246861924416 0.2616307999236552
+0.8508231350125666 0.35983263598323645 0.8508231350125666 0.35983263598323645 0.263608126005797
+0.8542135183077355 0.35774058577403134 0.8542135183077356 0.3577405857740313 0.26541254994348534
+0.8576039016029045 0.35564853556482623 0.8576039016029045 0.35564853556482623 0.2669667664124286
+0.8609942848980734 0.3535564853556211 0.8609942848980733 0.3535564853556212 0.2682017906402047
+0.8643846681932423 0.351464435146416 0.8643846681932423 0.351464435146416 0.2690598473367216
+0.8677750514884113 0.3493723849372109 0.8677750514884114 0.34937238493721084 0.2694967061946969
+0.8711654347835802 0.3472803347280058 0.8711654347835802 0.3472803347280058 0.2694834573941369
+0.8745558180787492 0.3451882845188007 0.874555818078749 0.34518828451880074 0.2690077338128534
+0.8779462013739181 0.34309623430959557 0.8779462013739181 0.34309623430959557 0.26807438821054935
+0.881336584669087 0.34100418410039046 0.8813365846690872 0.3410041841003904 0.2667056270460979
+0.884726967964256 0.33891213389118535 0.884726967964256 0.33891213389118535 0.2649405913457632
+0.8881173512594249 0.33682008368198024 0.8881173512594248 0.3368200836819803 0.2628343627417881
+0.8915077345545939 0.33472803347277513 0.8915077345545939 0.33472803347277513 0.2604563633726731
+0.8948981178497628 0.33263598326357 0.8948981178497629 0.33263598326356997 0.25788811640697956
+0.8982885011449318 0.3305439330543649 0.8982885011449318 0.3305439330543649 0.2552203449532984
+0.9016788844401007 0.3284518828451598 0.9016788844401006 0.32845188284515986 0.25254941678458387
+0.9050692677352696 0.3263598326359547 0.9050692677352696 0.3263598326359547 0.24997319522441844
+0.9084596510304386 0.3242677824267496 0.9084596510304387 0.32426778242674953 0.24758643362842056
+0.9118500343256075 0.3221757322175445 0.9118500343256075 0.3221757322175445 0.245475946191176
+0.9152404176207765 0.32008368200833937 0.9152404176207763 0.3200836820083394 0.24371588595848603
+0.9186308009159454 0.31799163179913426 0.9186308009159454 0.31799163179913426 0.24236353740008118
+0.9220211842111143 0.31589958158992915 0.9220211842111145 0.3158995815899291 0.24145605700956782
+0.9254115675062833 0.31380753138072404 0.9254115675062833 0.31380753138072404 0.24100854817201203
+0.9288019508014522 0.3117154811715189 0.9288019508014521 0.311715481171519 0.24101373020208317
+0.9321923340966212 0.3096234309623138 0.9321923340966212 0.3096234309623138 0.24144327444759361
+0.9355827173917901 0.3075313807531087 0.9355827173917902 0.30753138075310865 0.24225067241772583
+0.938973100686959 0.3054393305439036 0.938973100686959 0.3054393305439036 0.24337531981672342
+0.942363483982128 0.3033472803346985 0.9423634839821279 0.30334728033469854 0.24474738441972343
+0.9457538672772969 0.3012552301254934 0.9457538672772969 0.3012552301254934 0.24629299086324238
+0.9491442505724659 0.29916317991628827 0.949144250572466 0.2991631799162882 0.24793929306877896
+0.9525346338676348 0.29707112970708316 0.9525346338676348 0.29707112970708316 0.24961908987272216
+0.9559250171628038 0.29497907949787805 0.9559250171628036 0.2949790794978781 0.25127474152132906
+0.9593154004579727 0.29288702928867294 0.9593154004579727 0.29288702928867294 0.25286123946854483
+0.9627057837531416 0.29079497907946783 0.9627057837531418 0.2907949790794678 0.25434835523778765
+0.9660961670483106 0.2887029288702627 0.9660961670483106 0.2887029288702627 0.25572184224771904
+0.9694865503434795 0.2866108786610576 0.9694865503434794 0.28661087866105767 0.2569836913920241
+0.9728769336386485 0.2845188284518525 0.9728769336386485 0.2845188284518525 0.2581514550138739
+0.9762673169338174 0.2824267782426474 0.9762673169338175 0.28242677824264734 0.2592566644004312
+0.9796577002289864 0.2803347280334423 0.9796577002289864 0.2803347280334423 0.26034238217935174
+0.9830480835241553 0.2782426778242372 0.9830480835241552 0.27824267782423723 0.26145996010971917
+0.9864384668193242 0.27615062761503206 0.9864384668193242 0.27615062761503206 0.2626651183023235
+0.9898288501144932 0.27405857740582695 0.9898288501144933 0.2740585774058269 0.26401352247433146
+0.9932192334096621 0.27196652719662184 0.9932192334096621 0.27196652719662184 0.26555610394661433
+0.2761506276150629 0.9932192334096621 0.2761506276150629 0.9932192334096621 0.18428966589183826
+0.27824267782426804 0.9898288501144932 0.278242677824268 0.9898288501144933 0.18591397538620646
+0.28033472803347304 0.9864384668193242 0.280334728033473 0.9864384668193242 0.18782015182825262
+0.2824267782426781 0.9830480835241553 0.2824267782426781 0.9830480835241552 0.18997753059883213
+0.28451882845188314 0.9796577002289864 0.28451882845188314 0.9796577002289864 0.1923538521921819
+0.2866108786610882 0.9762673169338174 0.2866108786610882 0.9762673169338175 0.19491613196792953
+0.2887029288702933 0.9728769336386485 0.2887029288702933 0.9728769336386485 0.19763131911427953
+0.2907949790794983 0.9694865503434795 0.2907949790794983 0.9694865503434794 0.20046675894575358
+0.2928870292887034 0.9660961670483107 0.2928870292887034 0.9660961670483107 0.20339048972154591
+0.2949790794979086 0.9627057837531419 0.2949790794979086 0.962705783753142 0.2063714151878702
+0.29707112970711363 0.9593154004579731 0.29707112970711363 0.959315400457973 0.2093793977580325
+0.29916317991631863 0.9559250171628043 0.29916317991631863 0.9559250171628043 0.21238531589400242
+0.3012552301255237 0.9525346338676354 0.30125523012552374 0.9525346338676354 0.21536112423155104
+0.30334728033472863 0.9491442505724667 0.30334728033472863 0.9491442505724667 0.21827994760123734
+0.3054393305439332 0.9457538672772977 0.3054393305439332 0.9457538672772977 0.22111623144639658
+0.30753138075313785 0.9423634839821288 0.30753138075313785 0.9423634839821288 0.2238459620998948
+0.3096234309623424 0.9389731006869599 0.3096234309623424 0.9389731006869599 0.2264469615974006
+0.31171548117154696 0.9355827173917909 0.31171548117154696 0.9355827173917909 0.22889925361323218
+0.31380753138075174 0.9321923340966215 0.31380753138075174 0.9321923340966215 0.23118548996554597
+0.3158995815899569 0.9288019508014521 0.31589958158995696 0.9288019508014521 0.23329142106699188
+0.31799163179916246 0.9254115675062825 0.31799163179916246 0.9254115675062825 0.23520638870283192
+0.32008368200836845 0.9220211842111131 0.3200836820083684 0.9220211842111131 0.23692381553865918
+0.3221757322175747 0.9186308009159445 0.3221757322175747 0.9186308009159445 0.23844166270321274
+0.3242677824267805 0.915240417620776 0.3242677824267805 0.915240417620776 0.23976282458172946
+0.32635983263598567 0.9118500343256076 0.3263598326359856 0.9118500343256076 0.24089542857352123
+0.32845188284519 0.9084596510304398 0.32845188284519006 0.9084596510304398 0.24185300709550428
+0.3305439330543938 0.9050692677352713 0.3305439330543938 0.9050692677352713 0.24265450976656977
+0.3326359832635974 0.901678884440102 0.3326359832635974 0.901678884440102 0.2433241258538533
+0.33472803347280133 0.8982885011449322 0.33472803347280133 0.8982885011449323 0.24389089121304516
+0.3368200836820063 0.8948981178497623 0.3368200836820063 0.8948981178497623 0.24438806071587602
+0.3389121338912122 0.8915077345545926 0.3389121338912122 0.8915077345545926 0.24485223711817336
+0.3410041841004188 0.8881173512594236 0.3410041841004188 0.8881173512594236 0.24532226087970924
+0.3430962343096251 0.884726967964255 0.3430962343096251 0.884726967964255 0.24583788257591502
+0.3451882845188308 0.8813365846690867 0.3451882845188308 0.8813365846690867 0.24643825953600054
+0.3472803347280357 0.8779462013739187 0.3472803347280357 0.8779462013739187 0.24716033961781844
+0.3493723849372398 0.8745558180787502 0.3493723849372398 0.8745558180787502 0.24803721508260776
+0.3514644351464437 0.8711654347835814 0.3514644351464437 0.8711654347835814 0.2490965451592475
+0.35355648535564793 0.8677750514884123 0.35355648535564793 0.8677750514884123 0.2503591537198979
+0.3556485355648528 0.8643846681932427 0.3556485355648528 0.8643846681932427 0.25183790578269033
+0.3577405857740583 0.8609942848980735 0.3577405857740583 0.8609942848980735 0.2535369520390467
+0.3598326359832642 0.8576039016029045 0.3598326359832642 0.8576039016029045 0.2554514050846002
+0.36192468619246987 0.8542135183077356 0.36192468619246987 0.8542135183077356 0.25756747751278114
+0.3640167364016751 0.8508231350125671 0.3640167364016751 0.8508231350125671 0.2598630751648097
+0.36610878661087987 0.8474327517173986 0.36610878661087987 0.8474327517173986 0.262308803884947
+0.36820083682008437 0.84404236842223 0.36820083682008437 0.8440423684222299 0.2648693197531759
+0.3702928870292888 0.8406519851270611 0.3702928870292888 0.8406519851270611 0.2675049339847864
+0.37238493723849503 0.8372616018318917 0.37238493723849503 0.8372616018318917 0.2701733754106488
+0.37447698744771585 0.8338712185367229 0.37447698744771585 0.8338712185367229 0.27283161449856236
+0.3765690376569581 0.830480835241555 0.3765690376569581 0.830480835241555 0.2754376596237824
+0.37866089610736897 0.8270908958702673 0.37866089610736897 0.8270908958702673 0.27795201840996353
+0.3807516856803182 0.8237037742471324 0.3807516856803182 0.8237037742471324 0.280338460161317
+0.382839567203838 0.8203237335553658 0.382839567203838 0.8203237335553658 0.28256578796799464
+0.38492551019739946 0.8169543251454822 0.38492551019739946 0.8169543251454822 0.2846118482109674
+0.3870091063568247 0.8135937471567097 0.3870091063568247 0.8135937471567097 0.2864634401804256
+0.3890969845614749 0.8102498232696607 0.3890969845614749 0.8102498232696608 0.2881162206976798
+0.3911995811772959 0.8069180694497105 0.3911995811772959 0.8069180694497105 0.2895795595948618
+0.39334750939259616 0.8035504975202564 0.39334750939259616 0.8035504975202564 0.2908911051263568
+0.40262998435022185 0.7865244393922016 0.40262998435022185 0.7865244393922016 0.2949323623267379
+0.39538491504639106 0.7998156419191592 0.39538491504639106 0.7998156419191592 0.2920398034315305
+0.3980687710040218 0.7973999282268142 0.3980687710040218 0.7973999282268142 0.2930189465712456
+0.3984793804189584 0.7946470892459842 0.3984793804189584 0.7946470892459842 0.2933147310451148
+0.3989453267431269 0.7913129497974764 0.3989453267431269 0.7913129497974764 0.2935548394607252
+0.40221569608439367 0.7901836938148272 0.40221569608439367 0.7901836938148272 0.29469012176062565
+0.40633460322154275 0.7815859587204484 0.40633460322154275 0.7815859587204484 0.29625916510954925
+0.4057540963228823 0.7853207902831768 0.40575409632288223 0.7853207902831768 0.29585827327774394
+0.4074351742410134 0.7780649923337415 0.4074351742410133 0.7780649923337416 0.2969066559327893
+0.4098029012704175 0.7757195259426912 0.4098029012704175 0.7757195259426912 0.29767733383449513
+0.4091484991290697 0.7810632756100879 0.4091484991290697 0.7810632756100879 0.29683481586758276
+0.4163532039828109 0.7626534291390286 0.4163532039828109 0.7626534291390286 0.30281846855499844
+0.41614754571506 0.7663801877062052 0.41614754571506 0.7663801877062052 0.3011826588999204
+0.4131453876287217 0.7713944361277714 0.4131453876287217 0.7713944361277713 0.29922931438657224
+0.41266778431982654 0.7752361429209667 0.4126677843198266 0.7752361429209667 0.29828676275698823
+0.41603793834258873 0.770028962214055 0.41603793834258873 0.770028962214055 0.2998853341866363
+0.41994730581509 0.7570791512649327 0.41994730581509004 0.7570791512649327 0.30611048112095
+0.419651866157003 0.7608678464384298 0.419651866157003 0.7608678464384298 0.30386983140282475
+0.423185622196473 0.7553115985349542 0.423185622196473 0.7553115985349542 0.30713799613893883
+0.42661905985815246 0.7497812293209236 0.42661905985815246 0.7497812293209236 0.310927774838544
+0.4263743067598999 0.7535273831061743 0.4263743067598999 0.7535273831061743 0.3079149100957888
+0.42970954700409775 0.7479652299699459 0.42970954700409775 0.7479652299699459 0.31168027595965236
+0.4327435299102875 0.7460965560433831 0.4327435299102875 0.7460965560433831 0.3122040192364355
+0.43572566020483045 0.7441665369797038 0.43572566020483045 0.7441665369797038 0.31251162875711597
+0.4385987837238192 0.7421741538036989 0.43859878372381916 0.7421741538036989 0.3126285851083071
+0.4414892118277092 0.7402624260162631 0.4414892118277092 0.7402624260162631 0.31230332856970205
+0.45567450338438475 0.7120994315407161 0.4556745033843848 0.7120994315407162 0.3307843356151395
+0.4583947934662242 0.7101942134870382 0.4583947934662242 0.7101942134870382 0.3283115248086225
+0.44444275856212667 0.7383865985249468 0.4444427585621266 0.7383865985249468 0.31148008894018125
+0.44749870985757073 0.7365904245989693 0.44749870985757073 0.7365904245989693 0.30998032882477283
+0.4475239617472966 0.7328432177100116 0.44752396174729653 0.7328432177100116 0.3146192519751023
+0.4504546022341691 0.7271947976482267 0.45045460223416905 0.7271947976482266 0.31800713890353216
+0.45063494587929803 0.7310626935226562 0.45063494587929803 0.7310626935226562 0.3126099048366154
+0.45305400559799763 0.7219041804051055 0.45305400559799763 0.7219041804051055 0.3211973973524
+0.4533324387269105 0.7254619292541046 0.4533324387269105 0.7254619292541046 0.3158133262220599
+0.4551247009669922 0.7159019340469817 0.45512470096699215 0.7159019340469817 0.32627409004259394
+0.45602858856133605 0.7197866625748366 0.45602858856133605 0.7197866625748367 0.3189749835395626
+0.4635917797237864 0.7023242750092888 0.46359177972378646 0.702324275009289 0.32851015043082626
+0.4611612607350062 0.708221416984301 0.4611612607350062 0.708221416984301 0.3252751169365303
+0.4639843862094184 0.7062091644487153 0.46398438620941834 0.7062091644487153 0.3215490621238366
+0.46671449905540774 0.6998177396889571 0.46671449905540774 0.6998177396889571 0.3242550631963999
+0.48865522715260656 0.6498490080837079 0.48865522715260656 0.6498490080837079 0.3442235688653375
+0.46962599244920233 0.6972055344628136 0.4696259924492024 0.6972055344628137 0.31994635783051617
+0.47238811133891234 0.6946018856137283 0.47238811133891234 0.6946018856137283 0.31541423179563255
+0.4750652754345827 0.6920145239212263 0.4750652754345827 0.6920145239212263 0.31050605263071945
+0.4776639133067617 0.6894136980294298 0.47766391330676167 0.6894136980294298 0.30530061382455104
+0.489778631502826 0.653379296897445 0.489778631502826 0.653379296897445 0.32904304566672876
+0.48017442402327076 0.6867875989460354 0.48017442402327076 0.6867875989460354 0.29991726436862426
+0.48261781950156313 0.6841581203092679 0.4826178195015631 0.6841581203092679 0.29430124752550674
+0.49100192928451925 0.6570137173449278 0.4910019292845193 0.6570137173449276 0.3132273471223293
+0.49234180071825917 0.660685204934158 0.4923418007182592 0.660685204934158 0.2969047353115796
+0.49386132220545265 0.6643094052338612 0.4938613222054526 0.6643094052338611 0.2799679029829117
+0.48496867228335133 0.6815177763510474 0.48496867228335133 0.6815177763510474 0.28864374544753074
+0.48722335295564917 0.6788909812486796 0.48722335295564917 0.6788909812486796 0.28300265419027065
+0.49512737048475614 0.6681654969741911 0.49512737048475614 0.6681654969741911 0.2642330404038363
+0.49315597077072615 0.6708869170054549 0.4931559707707262 0.6708869170054549 0.2689579973996766
+0.4914455125742522 0.6737979857263164 0.4914455125742521 0.6737979857263164 0.2718771255444037
+0.4893659390583627 0.6762912821417562 0.48936593905836273 0.6762912821417562 0.27752313495796427
+0.49079220258506684 0.6473197138831601 0.49079220258506684 0.6473197138831601 0.34182680986921915
+0.49236421490168325 0.6449951138560849 0.49236421490168325 0.6449951138560849 0.3415584510890776
+0.4952142352567525 0.6441514091548929 0.4952142352567525 0.6441514091548929 0.33016428780063783
+0.49623359093828195 0.6402342887430947 0.49623359093828195 0.6402342887430947 0.33910384451186143
+0.49853612079485016 0.6371794832072062 0.49853612079485016 0.6371794832072063 0.3391684760155779
+0.5004006856088348 0.6342867987900727 0.5004006856088347 0.6342867987900727 0.3419784296891994
+0.502114179011204 0.631449463623058 0.5021141790112039 0.631449463623058 0.3462587120624013
+0.504026076036368 0.628929217057341 0.504026076036368 0.628929217057341 0.34915991683760333
+0.5057144702861738 0.6272108545697617 0.5057144702861738 0.6272108545697617 0.3496446467611488
+0.4959919056662791 0.6150290196173003 0.49599190566627904 0.6150290196173004 0.46891368464574945
+0.4984763040435721 0.6177841085315071 0.4984763040435722 0.6177841085315071 0.44157860510049574
+0.5022694604564057 0.6207423073414262 0.5022694604564056 0.6207423073414261 0.405896082392357
+0.5008701029179695 0.6183954012025442 0.5008701029179695 0.6183954012025442 0.427947235399328
+0.5061918330399535 0.6239277329194908 0.5061918330399536 0.6239277329194907 0.36654860071396994
+0.5047372261884125 0.620754196198379 0.5047372261884125 0.620754196198379 0.39413708388165225
+0.49823657588108067 0.611009506103255 0.49823657588108067 0.611009506103255 0.4936055157900839
+0.5003257798257555 0.6071345005099301 0.5003257798257555 0.6071345005099301 0.5232235801226147
+0.6278876069391657 0.5172213217404096 0.6278876069391658 0.5172213217404096 0.2652557790809064
+0.6330000589625842 0.514180217990917 0.6330000589625842 0.514180217990917 0.2334470489163221
+0.630833118690139 0.5166871975338608 0.630833118690139 0.5166871975338608 0.2419121723624876
+0.6258743450680971 0.5200278531063638 0.6258743450680971 0.5200278531063639 0.2696301202022198
+0.6251602769260423 0.5231794831197566 0.6251602769260423 0.5231794831197566 0.2615825696832686
+0.6175769862817435 0.5276260300738369 0.6175769862817435 0.5276260300738369 0.30576414566534943
+0.6216660759672158 0.5245120148100071 0.6216660759672158 0.5245120148100071 0.2845130653718743
+0.6202112471849688 0.5268565210273843 0.6202112471849688 0.5268565210273843 0.2875122921814764
+0.6014326385734928 0.534463170560439 0.6014326385734928 0.5344631705604391 0.4217960704509028
+0.6058105665798992 0.533339412894209 0.6058105665798993 0.5333394128942092 0.38739991942540325
+0.6136702667252464 0.5303409697168104 0.6136702667252464 0.5303409697168106 0.3295668659028972
+0.6170773562213335 0.5299270219654053 0.6170773562213335 0.5299270219654053 0.3048093753446725
+0.6103651091031932 0.5320821959326029 0.6103651091031931 0.5320821959326029 0.35306170258244995
+0.6136475690050225 0.5329375776733218 0.6136475690050225 0.5329375776733218 0.3303133666895577
+0.644128819903711 0.5048851816347655 0.644128819903711 0.5048851816347656 0.16665981415841566
+0.6464779163005782 0.5028720857355338 0.6464779163005782 0.5028720857355338 0.15146337966433462
+0.6413700634715804 0.5077447083533134 0.6413700634715803 0.5077447083533134 0.18330549063618068
+0.6365832586929199 0.5127439176654729 0.6365832586929199 0.5127439176654729 0.20848374193982436
+0.6404050835432495 0.5114950693933565 0.6404050835432495 0.5114950693933565 0.182150724222685
+0.63596336039541 0.515544065417128 0.63596336039541 0.515544065417128 0.20426516609926498
+0.6579830939174509 0.4923711331931757 0.6579830939174509 0.49237113319317577 0.0748006476742719
+0.6650033365504919 0.48900770379973413 0.6650033365504919 0.4890077037997341 0.03503225130822792
+0.6614889343851341 0.49066440427085944 0.6614889343851341 0.4906644042708594 0.05417809484269264
+0.6502949235247237 0.49893359374156565 0.6502949235247238 0.4989335937415657 0.12624270252829536
+0.6537173887860949 0.4975496146076457 0.6537173887860949 0.49754961460764574 0.10410698669564479
+0.649545037627119 0.5022430694764487 0.649545037627119 0.5022430694764487 0.13080684606162077
+0.6572249742002049 0.49602355735100834 0.6572249742002049 0.4960235573510083 0.08262026217729129
+0.6794781006659111 0.473277819882384 0.6794781006659111 0.473277819882384 0.06468289559868594
+0.6828092725344218 0.4715947191349848 0.6828092725344218 0.4715947191349848 0.07580652786378594
+0.6861690998769229 0.4699005040634616 0.6861690998769229 0.4699005040634616 0.08632932932363484
+0.6895598907784702 0.4681965488180326 0.6895598907784702 0.4681965488180326 0.09608872554833375
+0.6759538934557149 0.4782018152039764 0.6759538934557149 0.4782018152039765 0.03936305741709039
+0.6792431233865794 0.4765648825164419 0.6792431233865796 0.4765648825164419 0.05118350353892459
+0.6724167105879715 0.48307242192407884 0.6724167105879716 0.4830724219240788 0.016336292379760555
+0.6756588805711251 0.4814114922065142 0.6756588805711251 0.4814114922065142 0.027107032667827182
+0.6685482051788038 0.4874665852616698 0.6685482051788038 0.4874665852616698 0.017768944181989075
+0.6720048523732112 0.4861284219397546 0.6720048523732113 0.4861284219397546 0.00728331163635397
+0.6929887905489616 0.4664729057482966 0.6929887905489616 0.46647290574829653 0.1050570134684073
+0.696478186510868 0.4647079180351036 0.696478186510868 0.46470791803510364 0.11329416874504651
+0.69981065034779 0.4629112571402489 0.69981065034779 0.4629112571402489 0.1206823974735255
+0.7028189761575316 0.4608518231474364 0.7028189761575315 0.4608518231474364 0.12804613168210024
+0.7056286564074403 0.4587716067176347 0.7056286564074403 0.4587716067176347 0.13494030958473466
+0.708737243309229 0.45709483976224635 0.708737243309229 0.45709483976224635 0.13989490988613715
+0.7125702439032817 0.4519953699344474 0.7125702439032818 0.4519953699344474 0.1549370432426509
+0.7120395389786154 0.4553916673341906 0.7120395389786154 0.4553916673341906 0.1443900597417169
+0.71581711471009 0.4503198927356842 0.7158171147100899 0.4503198927356841 0.15853870594258798
+0.7191848835450071 0.44836014357867965 0.7191848835450071 0.44836014357867965 0.1626734250321772
+0.7225216475105795 0.4465094417720962 0.7225216475105795 0.4465094417720962 0.16616953141099267
+0.7258753114978392 0.4446443066054034 0.7258753114978392 0.4446443066054034 0.16950158621237413
+0.7292553153883624 0.4427329772586725 0.7292553153883624 0.4427329772586725 0.17282910394474713
+0.732621979723362 0.440794093130948 0.732621979723362 0.4407940931309479 0.17620241920437743
+0.7359093651695854 0.43886863515216123 0.7359093651695855 0.4388686351521613 0.1795826360557151
+0.7389756398048237 0.44051073511406624 0.7389756398048237 0.44051073511406624 0.17301941042780564
+0.7424312961976316 0.4352595731344191 0.7424312961976316 0.43525957313441915 0.18575646918588803
+0.7422059926229204 0.43868119667184113 0.7422059926229204 0.4386811966718412 0.17626171509686264
+0.7457057088974567 0.4334895783385586 0.7457057088974567 0.4334895783385586 0.18879319332433953
+0.7489753178194304 0.4317146776581515 0.7489753178194304 0.43171467765815147 0.1918825591708826
+0.7523286897203564 0.42997329891740943 0.7523286897203564 0.42997329891740943 0.19484338402506496
+0.7557484542680143 0.42463585338228 0.7557484542680143 0.42463585338228 0.20798040843586543
+0.7590703629045699 0.42279335366135795 0.7590703629045699 0.42279335366135795 0.21102735732656244
+0.7623971032939224 0.42093665029320054 0.7623971032939224 0.42093665029320054 0.2139820522862865
+0.7657252636992135 0.4190777305963717 0.7657252636992135 0.4190777305963717 0.21676844836416506
+0.7690491034276722 0.4172438598831292 0.7690491034276722 0.4172438598831292 0.21928243489671342
+0.7556620302630895 0.4281873720094685 0.7556620302630895 0.4281873720094685 0.19792530923593013
+0.7723981379860904 0.41544522699884334 0.7723981379860904 0.41544522699884334 0.22143646133120368
+0.7757114038914671 0.41366240532970683 0.7757114038914671 0.41366240532970683 0.22329981568104681
+0.7789696845626204 0.41185227873114477 0.7789696845626204 0.41185227873114477 0.22498850382326016
+0.7821958208509955 0.41003355382527457 0.7821958208509955 0.41003355382527457 0.2264385672228851
+0.7854063724639421 0.40820417140926285 0.7854063724639421 0.40820417140926285 0.2276440067476926
+0.7888270925272288 0.40277558166367705 0.7888270925272288 0.40277558166367705 0.23654162196659803
+0.7885827818535183 0.40637933303227536 0.7885827818535183 0.40637933303227536 0.22859842757157425
+0.7919298930958162 0.4010408169126045 0.7919298930958162 0.40104081691260446 0.23685948542797483
+0.7950197562635627 0.3992740622134203 0.7950197562635627 0.3992740622134203 0.23707653500222628
+0.7977153832945039 0.39712987026246754 0.7977153832945039 0.39712987026246754 0.2383346810483453
+0.8003212017698549 0.39523509873228957 0.8003212017698548 0.3952350987322895 0.239161104841811
+0.8035092336027703 0.3932634679189963 0.8035092336027702 0.3932634679189963 0.23930964505514687
+0.8068218732579931 0.39125173314142153 0.8068218732579931 0.39125173314142153 0.23936046485736165
+0.8101669988272651 0.3891582178493389 0.8101669988272651 0.3891582178493389 0.23957439102526698
+0.8135421968590646 0.3870550479363367 0.8135421968590645 0.38705504793633677 0.2398865214644462
+0.8169261748354945 0.38495137814214714 0.8169261748354945 0.38495137814214714 0.24036696278522393
+0.8203118577732385 0.3828506402554895 0.8203118577732385 0.3828506402554895 0.24107001072715675
+0.8237005384909937 0.3807542439759699 0.8237005384909937 0.3807542439759699 0.2420295963783378
+0.8270904801047078 0.37866115506025083 0.8270904801047078 0.37866115506025083 0.24326840655548176
+0.8304808352415529 0.3765690376568773 0.8304808352415529 0.3765690376568773 0.24479080625490865
+0.8338712185367219 0.3744769874476722 0.8338712185367217 0.37447698744767216 0.24657836427228172
+0.8372616018318908 0.3723849372384671 0.8372616018318908 0.3723849372384671 0.24859235409989502
+0.8406519851270597 0.370292887029262 0.8406519851270599 0.37029288702926205 0.25077770308133734
+0.8440423684222287 0.3682008368200569 0.8440423684222287 0.3682008368200569 0.25306633139949214
+0.8474327517173976 0.3661087866108518 0.8474327517173975 0.3661087866108517 0.2553809621035666
+0.8508231350125666 0.36401673640164667 0.8508231350125666 0.36401673640164667 0.25763922875496253
+0.8542135183077355 0.36192468619244156 0.8542135183077356 0.3619246861924416 0.2597577956019264
+0.8576039016029045 0.35983263598323645 0.8576039016029045 0.35983263598323645 0.2616562628429972
+0.8609942848980734 0.35774058577403134 0.8609942848980733 0.3577405857740313 0.26326069638410926
+0.8643846681932423 0.35564853556482623 0.8643846681932423 0.35564853556482623 0.2645066840757113
+0.8677750514884113 0.3535564853556211 0.8677750514884114 0.3535564853556212 0.2653418704318566
+0.8711654347835802 0.351464435146416 0.8711654347835802 0.351464435146416 0.26572795612103556
+0.8745558180787492 0.3493723849372109 0.874555818078749 0.34937238493721084 0.265642167618197
+0.8779462013739181 0.3472803347280058 0.8779462013739181 0.3472803347280058 0.265078208875718
+0.881336584669087 0.3451882845188007 0.8813365846690872 0.34518828451880074 0.26404670398666985
+0.884726967964256 0.34309623430959557 0.884726967964256 0.34309623430959557 0.2625751308704501
+0.8881173512594249 0.34100418410039046 0.8881173512594248 0.3410041841003904 0.26070723414437164
+0.8915077345545939 0.33891213389118535 0.8915077345545939 0.33891213389118535 0.25850189372892457
+0.8948981178497628 0.33682008368198024 0.8948981178497629 0.3368200836819803 0.2560314179535155
+0.8982885011449318 0.33472803347277513 0.8982885011449318 0.33472803347277513 0.2533792303081836
+0.9016788844401007 0.33263598326357 0.9016788844401006 0.33263598326356997 0.25063693261087444
+0.9050692677352696 0.3305439330543649 0.9050692677352696 0.3305439330543649 0.24790075946742188
+0.9084596510304386 0.3284518828451598 0.9084596510304387 0.32845188284515986 0.24526749334636588
+0.9118500343256075 0.3263598326359547 0.9118500343256075 0.3263598326359547 0.24282998631745265
+0.9152404176207765 0.3242677824267496 0.9152404176207763 0.32426778242674953 0.24067252654422946
+0.9186308009159454 0.3221757322175445 0.9186308009159454 0.3221757322175445 0.23886637898498433
+0.9220211842111143 0.32008368200833937 0.9220211842111145 0.3200836820083394 0.23746589623538483
+0.9254115675062833 0.31799163179913426 0.9254115675062833 0.31799163179913426 0.23650561006680385
+0.9288019508014522 0.31589958158992915 0.9288019508014521 0.3158995815899291 0.23599865701942457
+0.9321923340966212 0.31380753138072404 0.9321923340966212 0.31380753138072404 0.2359367600476667
+0.9355827173917901 0.3117154811715189 0.9355827173917902 0.311715481171519 0.23629180347914724
+0.938973100686959 0.3096234309623138 0.938973100686959 0.3096234309623138 0.23701884017060357
+0.942363483982128 0.3075313807531087 0.9423634839821279 0.30753138075310865 0.23806020289141339
+0.9457538672772969 0.3054393305439036 0.9457538672772969 0.3054393305439036 0.23935029076144368
+0.9491442505724659 0.3033472803346985 0.949144250572466 0.30334728033469854 0.24082057806584087
+0.9525346338676348 0.3012552301254934 0.9525346338676348 0.3012552301254934 0.24240443623822042
+0.9559250171628038 0.29916317991628827 0.9559250171628036 0.2991631799162882 0.2440414449791232
+0.9593154004579727 0.29707112970708316 0.9593154004579727 0.29707112970708316 0.2456809670670815
+0.9627057837531416 0.29497907949787805 0.9627057837531418 0.2949790794978781 0.24728485124484575
+0.9660961670483106 0.29288702928867294 0.9660961670483106 0.29288702928867294 0.24882919665935296
+0.9694865503434795 0.29079497907946783 0.9694865503434794 0.2907949790794678 0.250305158546463
+0.9728769336386485 0.2887029288702627 0.9728769336386485 0.2887029288702627 0.25171880298618937
+0.9762673169338174 0.2866108786610576 0.9762673169338175 0.28661087866105767 0.25309003703114014
+0.9796577002289864 0.2845188284518525 0.9796577002289864 0.2845188284518525 0.25445065855269405
+0.9830480835241553 0.2824267782426474 0.9830480835241552 0.28242677824264734 0.25584159566937487
+0.9864384668193242 0.2803347280334423 0.9864384668193242 0.2803347280334423 0.25730944355872026
+0.9898288501144932 0.2782426778242372 0.9898288501144933 0.27824267782423723 0.25890245734815526
+0.9932192334096621 0.27615062761503206 0.9932192334096621 0.27615062761503206 0.26066621874194545
+0.28033472803347304 0.9932192334096621 0.280334728033473 0.9932192334096621 0.18602429465378012
+0.2824267782426781 0.9898288501144932 0.2824267782426781 0.9898288501144933 0.18768468552163006
+0.28451882845188314 0.9864384668193242 0.28451882845188314 0.9864384668193242 0.18963004116318063
+0.2866108786610882 0.9830480835241553 0.2866108786610882 0.9830480835241552 0.19183261236652935
+0.28870292887029325 0.9796577002289864 0.2887029288702933 0.9796577002289864 0.19426234906483342
+0.29079497907949825 0.9762673169338174 0.2907949790794983 0.9762673169338175 0.1968876183566017
+0.29288702928870336 0.9728769336386485 0.29288702928870336 0.9728769336386485 0.1996757793953974
+0.29497907949790836 0.9694865503434795 0.29497907949790836 0.9694865503434794 0.2025936279611633
+0.29707112970711347 0.9660961670483107 0.2970711297071134 0.9660961670483107 0.20560773619043946
+0.2991631799163185 0.9627057837531421 0.2991631799163185 0.9627057837531421 0.20868472000490926
+0.3012552301255235 0.9593154004579731 0.3012552301255235 0.959315400457973 0.21179146876225838
+0.3033472803347285 0.9559250171628042 0.3033472803347285 0.9559250171628042 0.21489536955172825
+0.3054393305439333 0.9525346338676353 0.3054393305439333 0.9525346338676354 0.21796455353061892
+0.3075313807531381 0.9491442505724663 0.3075313807531381 0.9491442505724663 0.2209681848715157
+0.30962343096234285 0.9457538672772974 0.30962343096234285 0.9457538672772973 0.22387680522800243
+0.3117154811715476 0.9423634839821283 0.3117154811715476 0.9423634839821283 0.2266627388793108
+0.3138075313807524 0.938973100686959 0.3138075313807524 0.938973100686959 0.22930055640759184
+0.3158995815899574 0.9355827173917898 0.3158995815899574 0.9355827173917898 0.23176758821455876
+0.31799163179916273 0.9321923340966211 0.31799163179916273 0.9321923340966211 0.2340444735432672
+0.3200836820083683 0.9288019508014518 0.3200836820083683 0.9288019508014518 0.2361157259500959
+0.3221757322175739 0.9254115675062828 0.32217573221757384 0.9254115675062827 0.2379702922988867
+0.32426778242677945 0.9220211842111139 0.32426778242677945 0.9220211842111139 0.23960207921007823
+0.3263598326359847 0.9186308009159454 0.3263598326359847 0.9186308009159454 0.2410104183840502
+0.3284518828451895 0.9152404176207768 0.3284518828451895 0.9152404176207768 0.24220044027231502
+0.33054393305439395 0.9118500343256081 0.33054393305439395 0.9118500343256081 0.24318332423103614
+0.3326359832635983 0.9084596510304395 0.3326359832635983 0.9084596510304394 0.24397639273460206
+0.3347280334728027 0.9050692677352701 0.3347280334728027 0.90506926773527 0.24460301779966712
+0.3368200836820076 0.9016788844401008 0.3368200836820076 0.9016788844401008 0.2450923100053047
+0.3389121338912129 0.8982885011449313 0.3389121338912129 0.8982885011449312 0.24547856509287877
+0.34100418410041855 0.8948981178497624 0.34100418410041855 0.8948981178497624 0.24580045088322253
+0.3430962343096242 0.8915077345545935 0.3430962343096242 0.8915077345545935 0.24609992889594265
+0.34518828451882966 0.8881173512594248 0.34518828451882966 0.8881173512594248 0.24642092104230692
+0.34728033472803466 0.8847269679642561 0.34728033472803466 0.8847269679642561 0.2468077519395053
+0.34937238493723943 0.8813365846690875 0.34937238493723943 0.8813365846690875 0.24730342069766295
+0.35146443514644404 0.8779462013739187 0.35146443514644404 0.8779462013739187 0.24794778026654798
+0.35355648535564876 0.8745558180787495 0.35355648535564876 0.8745558180787495 0.24877572428735792
+0.3556485355648537 0.8711654347835806 0.3556485355648537 0.8711654347835806 0.24981549683975743
+0.35774058577405876 0.8677750514884114 0.35774058577405876 0.8677750514884114 0.2510872455303483
+0.35983263598326404 0.8643846681932424 0.35983263598326404 0.8643846681932424 0.25260193018357574
+0.36192468619246937 0.8609942848980738 0.36192468619246937 0.8609942848980738 0.25436067726451533
+0.3640167364016745 0.857603901602905 0.3640167364016745 0.857603901602905 0.2563546361129467
+0.3661087866108794 0.8542135183077363 0.3661087866108794 0.8542135183077363 0.25856535169117434
+0.36820083682008425 0.8508231350125673 0.36820083682008425 0.8508231350125673 0.26096562602402124
+0.37029288702928914 0.8474327517173985 0.37029288702928914 0.8474327517173986 0.26352080311082715
+0.37238493723849403 0.8440423684222295 0.37238493723849403 0.8440423684222295 0.26619038468061645
+0.37447698744769903 0.8406519851270605 0.37447698744769903 0.8406519851270605 0.2689298691992395
+0.3765690376569111 0.8372616018318917 0.3765690376569111 0.8372616018318917 0.2716927038405474
+0.3786610878661869 0.8338712185367245 0.3786610878661869 0.8338712185367246 0.27443224642543024
+0.38075313807552563 0.830480835241559 0.38075313807552563 0.830480835241559 0.2771036492302518
+0.38284472274292064 0.8270914635233712 0.38284472274292064 0.8270914635233712 0.2796649496093493
+0.38493463892599195 0.8237057315183868 0.38493463892599195 0.8237057315183868 0.2820784199053569
+0.38702081959032747 0.8203272840813468 0.38702081959032747 0.8203272840813468 0.28431250546265424
+0.3891035888884198 0.8169580626931253 0.3891035888884198 0.8169580626931253 0.28634548805060983
+0.39118278235182874 0.8135956313331607 0.39118278235182874 0.8135956313331608 0.28816535473161003
+0.39326303382501604 0.8102331230487686 0.39326303382501604 0.8102331230487686 0.2897707685129549
+0.39536954091112064 0.8068706823000888 0.39536954091112064 0.8068706823000887 0.29117130255765145
+0.39741867293516075 0.8034667469998518 0.39741867293516075 0.8034667469998517 0.2923524737235054
+0.40539610977595414 0.7889210013650452 0.40539610977595414 0.7889210013650452 0.2955824984267715
+0.39939884490259414 0.8002743731111828 0.3993988449025942 0.8002743731111828 0.293287727761023
+0.4011616384318537 0.7969442002517197 0.4011616384318537 0.7969442002517199 0.29408513842629974
+0.40187402698704006 0.7937493042100245 0.40187402698704006 0.7937493042100244 0.29445643275226113
+0.40498431971213555 0.792831277519384 0.4049843197121356 0.792831277519384 0.2952772000254052
+0.40868918553149347 0.7842006350435535 0.4086891855314935 0.7842006350435535 0.29648129524207006
+0.4084643155222892 0.7876738302811308 0.4084643155222892 0.7876738302811308 0.2961888938374524
+0.41154508608811996 0.7787249529915907 0.41154508608811996 0.7787249529915908 0.2975809284573745
+0.41186427037024714 0.7825913966404642 0.41186427037024714 0.7825913966404642 0.29706233378652347
+0.4193952653178499 0.7646488552336853 0.41939526531784993 0.7646488552336853 0.30197989995281876
+0.4191921150838899 0.7684140919821192 0.4191921150838899 0.7684140919821192 0.30041837321835535
+0.4151319543211748 0.7774193209655911 0.4151319543211747 0.7774193209655911 0.2980015259738382
+0.4157500921259728 0.7737021990206587 0.41575009212597275 0.7737021990206587 0.2988240320977884
+0.4189314969651502 0.7721358473331157 0.41893149696515014 0.7721358473331157 0.29916387955370505
+0.4229154795919399 0.7590956773447645 0.4229154795919399 0.7590956773447645 0.30466911120908424
+0.4226604034666537 0.7628959012678703 0.4226604034666536 0.7628959012678703 0.30253992503763466
+0.42613670618168004 0.7573008663347598 0.42613670618168004 0.7573008663347598 0.3052229586626816
+0.42950667768895223 0.7516947746480963 0.4295066776889522 0.7516947746480963 0.30846060980388307
+0.4293077571989959 0.7554576162357796 0.4293077571989959 0.7554576162357796 0.30554439037537273
+0.4325846553186296 0.7498142514225528 0.4325846553186296 0.7498142514225528 0.3087731644396792
+0.43561236110453455 0.7478967882687236 0.43561236110453455 0.7478967882687236 0.308839528220364
+0.4385796585941082 0.7459244856232727 0.43857965859410813 0.7459244856232727 0.3086784742329498
+0.4415044853851735 0.7440009291459534 0.4415044853851735 0.7440009291459534 0.30815448179321553
+0.4444279838224572 0.7420999432994776 0.44442798382245724 0.7420999432994776 0.30723316491234903
+0.45855881427964257 0.7139508541931027 0.45855881427964257 0.7139508541931027 0.322418251125192
+0.461446153935648 0.711988304770589 0.461446153935648 0.711988304770589 0.31897881764564745
+0.44737031121573323 0.740256794192823 0.4473703112157333 0.740256794192823 0.3058093723576287
+0.4504546165964237 0.7385846970687991 0.4504546165964238 0.7385846970687991 0.3035073812004256
+0.4507331149447679 0.734955244507206 0.4507331149447679 0.734955244507206 0.30750351199372167
+0.45367513488215794 0.7292001496412408 0.45367513488215794 0.7292001496412408 0.3102200598485379
+0.45398043342033795 0.733166438010015 0.45398043342033795 0.733166438010015 0.3045990531172374
+0.4563184985170032 0.723534550388758 0.4563184985170032 0.723534550388758 0.3131517680328661
+0.45665247495993483 0.7272748363205169 0.45665247495993483 0.7272748363205169 0.30742208225379697
+0.45884672466271104 0.717726642786468 0.45884672466271104 0.717726642786468 0.3163280073162011
+0.45924709138036945 0.721508125696228 0.45924709138036945 0.721508125696228 0.3101117059498298
+0.4672940229413922 0.7042541794773625 0.4672940229413922 0.7042541794773625 0.3157637895022522
+0.46420743094204237 0.7099580540316729 0.46420743094204237 0.7099580540316729 0.31530753595889033
+0.4668409231248241 0.707970460258053 0.4668409231248241 0.707970460258053 0.3112858450977287
+0.47026655160465775 0.7010433112012858 0.47026655160465775 0.7010433112012858 0.3118852195224489
+0.49198936669690907 0.6508364054268857 0.49198936669690907 0.6508364054268857 0.3254160876191024
+0.4730460770276609 0.6983830737885535 0.4730460770276608 0.6983830737885536 0.30711856928965053
+0.4757415855284046 0.6957708411158362 0.4757415855284046 0.6957708411158362 0.3019045661945167
+0.4783817245272253 0.6931496358867161 0.4783817245272253 0.6931496358867161 0.29627514235219826
+0.4809426066576241 0.690495289275022 0.48094260665762417 0.690495289275022 0.2904103715748128
+0.49323262056678485 0.654451260461419 0.4932326205667849 0.654451260461419 0.3087140208715257
+0.48343817057852717 0.6878353767944017 0.48343817057852717 0.6878353767944017 0.28427189798156877
+0.4858417966328917 0.6851577316801603 0.4858417966328917 0.6851577316801603 0.27806720739423096
+0.49457989603470837 0.6580619864184514 0.49457989603470837 0.6580619864184514 0.2917299924727854
+0.49599512410375535 0.6616638136272457 0.4959951241037554 0.6616638136272456 0.27472087063290584
+0.4973448919408503 0.6653529901519737 0.49734489194085024 0.6653529901519737 0.25825849984370625
+0.49859654194407677 0.6689860560519646 0.49859654194407677 0.6689860560519646 0.24297755966140525
+0.48815670709111075 0.6824779351368031 0.48815670709111075 0.6824779351368031 0.27184219142852056
+0.49038284586661207 0.679803286376132 0.4903828458666121 0.679803286376132 0.26567550544916946
+0.49646227033500717 0.6716380662053965 0.49646227033500717 0.6716380662053965 0.24931945694190852
+0.49450760721419307 0.6742432899897512 0.4945076072141931 0.6742432899897511 0.2547249023199072
+0.492489111378001 0.6771034260902837 0.492489111378001 0.6771034260902837 0.25988618427695065
+0.4943893636618145 0.6478568861091281 0.49438936366181446 0.6478568861091282 0.3223005096216646
+0.49717347470895656 0.6464515703688327 0.49717347470895656 0.6464515703688327 0.31199127620546324
+0.4983825921245036 0.643830935198839 0.4983825921245036 0.643830935198839 0.3145921463644232
+0.5001149981095862 0.6408611221403951 0.5001149981095862 0.6408611221403951 0.3161924907852837
+0.5019474572173157 0.6380364351652303 0.5019474572173158 0.6380364351652305 0.3174325502746571
+0.504165225698783 0.6348259034687317 0.5041652256987829 0.6348259034687317 0.3194895006764568
+0.505033173800537 0.6317109791346285 0.505033173800537 0.6317109791346285 0.3295283515418586
+0.5070037716150648 0.6300117620470003 0.5070037716150648 0.6300117620470003 0.3279021502808503
+0.5090919910332639 0.6237925422208962 0.509091991033264 0.6237925422208962 0.3528008475098596
+0.5082582710134022 0.6268985976027432 0.5082582710134022 0.6268985976027431 0.3385305683454238
+0.5007400384804845 0.6150871384134096 0.5007400384804845 0.6150871384134096 0.45319416187274386
+0.5033030479664639 0.6177039204369154 0.5033030479664639 0.6177039204369154 0.4221482315463297
+0.5073219948955369 0.6207841868239655 0.5073219948955369 0.6207841868239655 0.38095472055539165
+0.5058161379620776 0.6183143901705885 0.5058161379620776 0.6183143901705885 0.4057203332910372
+0.5117310554680516 0.6231281484661545 0.5117310554680516 0.6231281484661545 0.34426478225088003
+0.509866654029274 0.620467409059277 0.509866654029274 0.6204674090592769 0.3704519044556003
+0.5028279083168707 0.6109755286298885 0.5028279083168706 0.6109755286298885 0.4788867865329565
+0.5047562908727468 0.6070181686261563 0.5047562908727468 0.6070181686261563 0.509017796202305
+0.6301363340831966 0.5195371609694482 0.6301363340831966 0.5195371609694482 0.2360360692780685
+0.6337257181119823 0.5180357478099177 0.6337257181119823 0.5180357478099177 0.2132619294323425
+0.5999186353459672 0.5386255184250834 0.5999186353459672 0.5386255184250834 0.46032010043720356
+0.6247431699012784 0.525746848381055 0.6247431699012784 0.525746848381055 0.25616856303658564
+0.6288089476438609 0.5225033636632638 0.6288089476438609 0.5225033636632638 0.23545686684538578
+0.627757802111784 0.5251321200134068 0.627757802111784 0.5251321200134068 0.23551354317788195
+0.6202380663859685 0.5289950366486087 0.6202380663859685 0.5289950366486087 0.2828563610712534
+0.6228092160800488 0.5274357516768111 0.6228092160800488 0.5274357516768111 0.26658513489452323
+0.604351900521083 0.5376861114484469 0.604351900521083 0.5376861114484469 0.41822691733448814
+0.6090208510123711 0.5366349533407992 0.609020851012371 0.5366349533407994 0.37715156950375084
+0.6165599837938239 0.5323875183193519 0.6165599837938239 0.5323875183193519 0.3092326190333457
+0.6200363352430027 0.5317273951906069 0.6200363352430028 0.5317273951906069 0.2844233560462604
+0.6123155342637239 0.5350471011331526 0.6123155342637238 0.5350471011331526 0.34601886361854367
+0.6156902954344531 0.5348116588887945 0.6156902954344531 0.5348116588887945 0.3219045498350497
+0.6122705065664156 0.537595412570126 0.6122705065664156 0.537595412570126 0.3607413138234443
+0.6450882731940129 0.507673773141011 0.6450882731940129 0.507673773141011 0.1556453871539905
+0.6478639327962364 0.5056728651344787 0.6478639327962364 0.5056728651344787 0.1392147020352057
+0.6439940483519283 0.5103193484441343 0.6439940483519283 0.5103193484441343 0.15838401716644027
+0.6433190472242467 0.513389453461611 0.6433190472242467 0.513389453461611 0.15595639828096208
+0.6394195430637326 0.5152612766415576 0.6394195430637327 0.5152612766415575 0.1790127393782401
+0.637179883388408 0.5177945804992597 0.637179883388408 0.5177945804992597 0.18773167162785787
+0.6608233566960291 0.49440025971137413 0.660823356696029 0.4944002597113741 0.06181160927039416
+0.6679998268395854 0.49098516878309284 0.6679998268395854 0.4909851687830928 0.02388223561534583
+0.6643228662573695 0.4925983423131593 0.6643228662573694 0.4925983423131593 0.042565504569671904
+0.6528477105130901 0.5010768908197184 0.6528477105130901 0.5010768908197184 0.10995183247445454
+0.656374379888664 0.4996602461109847 0.656374379888664 0.49966024611098464 0.08890941318359837
+0.6516906901029708 0.5047460787635742 0.6516906901029708 0.5047460787635742 0.11504699366794059
+0.6599689113664039 0.49814357665367237 0.6599689113664039 0.4981435766536723 0.06868119315600936
+0.6825847920359113 0.4749496210487177 0.6825847920359113 0.4749496210487177 0.06269799491149185
+0.6859607188826095 0.4733165662524284 0.6859607188826095 0.4733165662524284 0.07361430625306253
+0.6893665885717875 0.47167177651979714 0.6893665885717875 0.47167177651979714 0.0837364656543545
+0.6928086792597754 0.47001264785935365 0.6928086792597754 0.47001264785935365 0.09301617219595977
+0.6789496379126396 0.4798301838843333 0.6789496379126395 0.4798301838843333 0.03933871258302602
+0.6823073075112686 0.4782710979297741 0.6823073075112686 0.4782710979297741 0.05130936241219076
+0.6752398199672821 0.48464756582293117 0.6752398199672821 0.48464756582293117 0.016222887964328928
+0.678559640834713 0.48310231250528285 0.6785596408347131 0.48310231250528285 0.029157406867983432
+0.6713897528344273 0.48937298660539624 0.6713897528344273 0.48937298660539624 0.007699864308304946
+0.6747356303451086 0.4878552951016086 0.6747356303451086 0.4878552951016086 0.007316043918576854
+0.6963163727070775 0.4683307095912166 0.6963163727070775 0.46833070959121664 0.10148670900879542
+0.6999892023406362 0.46662049038456876 0.6999892023406362 0.46662049038456876 0.10922626594287473
+0.705641566234737 0.4617160708227285 0.705641566234737 0.4617160708227285 0.12575820331700102
+0.7038682328721488 0.464557821625593 0.703868232872149 0.464557821625593 0.11710147518681756
+0.7083709677460417 0.4605284083577881 0.7083709677460418 0.4605284083577881 0.12951723269423795
+0.7112522063215202 0.45884260704037544 0.7112522063215202 0.45884260704037544 0.13429528042033334
+0.7156999807240965 0.45439006830699735 0.7156999807240965 0.4543900683069974 0.14619421848782413
+0.7140790911491087 0.45752827923539946 0.7140790911491087 0.45752827923539946 0.1376464138938156
+0.7188962137702005 0.4519584898662463 0.7188962137702005 0.45195848986624637 0.15199441772888977
+0.7222273610908981 0.45019912335231277 0.7222273610908981 0.45019912335231277 0.15542393381320932
+0.725544246622431 0.4483862183071046 0.725544246622431 0.4483862183071046 0.15880267267487727
+0.7289574791673347 0.4465009095411448 0.7289574791673347 0.4465009095411448 0.16217976052319802
+0.7190476120482988 0.45516133294212135 0.7190476120482988 0.45516133294212135 0.14292819444626975
+0.7324997423333536 0.4444600471067416 0.7324997423333536 0.44446004710674153 0.16580546366302526
+0.7357883499868971 0.442510802791006 0.7357883499868971 0.442510802791006 0.16929944581714482
+0.7387444074167114 0.44402655016087383 0.7387444074167114 0.44402655016087383 0.16378759354942363
+0.741857292102722 0.442050691481258 0.741857292102722 0.44205069148125803 0.16748565446746558
+0.7455175686657171 0.43691462156259014 0.7455175686657171 0.43691462156259014 0.1793323082831411
+0.7452877499441121 0.4403043942835587 0.7452877499441121 0.4403043942835588 0.17049344777388645
+0.7488361867366938 0.43516893179127497 0.7488361867366938 0.43516893179127497 0.18238477085662255
+0.7521836152172042 0.433450733679559 0.7521836152172042 0.433450733679559 0.18538109131100136
+0.7555388900456704 0.4317190845847321 0.7555388900456704 0.4317190845847321 0.18841399439369835
+0.7590026048976569 0.4263796055389395 0.7590026048976569 0.42637960553893955 0.2010065056266708
+0.772180590766793 0.4190318509500434 0.772180590766793 0.4190318509500434 0.2123196400937669
+0.7623402557765354 0.4245478886865112 0.7623402557765354 0.4245478886865112 0.2040516107737104
+0.7656528185968856 0.42269566479241344 0.7656528185968856 0.42269566479241344 0.2070170638552333
+0.7689279547818955 0.42083593965456156 0.7689279547818955 0.42083593965456156 0.20983903432521803
+0.758906297896285 0.4299560168576468 0.758906297896285 0.4299560168576468 0.19149315236519307
+0.7754723933714065 0.4172890826803721 0.7754723933714064 0.4172890826803721 0.21437625453974682
+0.7787416495186239 0.4155540652792935 0.7787416495186239 0.41555406527929345 0.2161598666056804
+0.775206782911179 0.4208150432136526 0.775206782911179 0.42081504321365254 0.20602330075334388
+0.7819704769522343 0.4137590207559129 0.7819704769522343 0.4137590207559129 0.21783402615758088
+0.7851595304240179 0.41190372739546016 0.7851595304240179 0.41190372739546016 0.2194125935180772
+0.7883311638258165 0.4100887608625217 0.7883311638258165 0.4100887608625217 0.22063604793324407
+0.7916183550084852 0.4045760701582116 0.7916183550084853 0.4045760701582117 0.22941161259741163
+0.7914692438437765 0.4083453805767785 0.7914692438437765 0.40834538057677855 0.2214923288692113
+0.7946906549276065 0.4028604694415665 0.7946906549276065 0.4028604694415665 0.2297937453959362
+0.7977842320944791 0.40106503130868626 0.7977842320944791 0.40106503130868626 0.23013411676091292
+0.8007101367358413 0.3991224072807359 0.8007101367358412 0.39912240728073595 0.23082793153256811
+0.8037330127934131 0.39732635267661065 0.8037330127934131 0.39732635267661065 0.23105823667939032
+0.80694014791706 0.39538357123328455 0.80694014791706 0.39538357123328455 0.23133646477932715
+0.8102418444072084 0.3933775523067753 0.8102418444072085 0.3933775523067753 0.2316472823314055
+0.81357412717892 0.39125951976652273 0.81357412717892 0.39125951976652273 0.23221662597446466
+0.8169392323831869 0.38914724122336897 0.8169392323831869 0.38914724122336897 0.2328866107834547
+0.8203164568132224 0.38704066860077213 0.8203164568132223 0.38704066860077213 0.23374031751391836
+0.8237018957144877 0.3849402886820629 0.8237018957144876 0.3849402886820629 0.23482584436458334
+0.8270907011924405 0.3828455520884324 0.8270907011924405 0.3828455520884324 0.2361757254113139
+0.8304808410310963 0.38075314792331505 0.8304808410310963 0.38075314792331505 0.23780521514228892
+0.8338712185367219 0.37866108786608244 0.8338712185367217 0.3786610878660825 0.23970657841530382
+0.8372616018318908 0.3765690376568773 0.8372616018318908 0.3765690376568773 0.24184960975572636
+0.8406519851270597 0.3744769874476722 0.8406519851270599 0.37447698744767216 0.24418626116298223
+0.8440423684222287 0.3723849372384671 0.8440423684222287 0.3723849372384671 0.24665408513750894
+0.8474327517173976 0.370292887029262 0.8474327517173975 0.37029288702926205 0.2491797452085609
+0.8508231350125666 0.3682008368200569 0.8508231350125666 0.3682008368200569 0.2516829293556328
+0.8542135183077355 0.3661087866108518 0.8542135183077356 0.3661087866108517 0.25408039093159607
+0.8576039016029045 0.36401673640164667 0.8576039016029045 0.36401673640164667 0.25628986976750706
+0.8609942848980734 0.36192468619244156 0.8609942848980733 0.3619246861924416 0.2582337102378763
+0.8643846681932423 0.35983263598323645 0.8643846681932423 0.35983263598323645 0.2598420575591494
+0.8677750514884113 0.35774058577403134 0.8677750514884114 0.3577405857740313 0.2610555683434024
+0.8711654347835802 0.35564853556482623 0.8711654347835802 0.35564853556482623 0.2618276115680343
+0.8745558180787492 0.3535564853556211 0.874555818078749 0.3535564853556212 0.2621259610028374
+0.8779462013739181 0.351464435146416 0.8779462013739181 0.351464435146416 0.2619339916701895
+0.881336584669087 0.3493723849372109 0.8813365846690872 0.34937238493721084 0.261251394102461
+0.884726967964256 0.3472803347280058 0.884726967964256 0.3472803347280058 0.2600944141501693
+0.8881173512594249 0.3451882845188007 0.8881173512594248 0.34518828451880074 0.25849561579165364
+0.8915077345545939 0.34309623430959557 0.8915077345545939 0.34309623430959557 0.2565031525076397
+0.8948981178497628 0.34100418410039046 0.8948981178497629 0.3410041841003904 0.25417952212319816
+0.8982885011449318 0.33891213389118535 0.8982885011449318 0.33891213389118535 0.25159977389232635
+0.9016788844401007 0.33682008368198024 0.9016788844401006 0.3368200836819803 0.24884913909796366
+0.9050692677352696 0.33472803347277513 0.9050692677352696 0.33472803347277513 0.24602007237688708
+0.9084596510304386 0.33263598326357 0.9084596510304387 0.33263598326356997 0.24320872518333395
+0.9118500343256075 0.3305439330543649 0.9118500343256075 0.3305439330543649 0.24051092850539293
+0.9152404176207765 0.3284518828451598 0.9152404176207763 0.32845188284515986 0.2380178382514058
+0.9186308009159454 0.3263598326359547 0.9186308009159454 0.3263598326359547 0.23581148578236408
+0.9220211842111143 0.3242677824267496 0.9220211842111145 0.32426778242674953 0.23396056133713183
+0.9254115675062833 0.3221757322175445 0.9254115675062833 0.3221757322175445 0.2325168156588786
+0.9288019508014522 0.32008368200833937 0.9288019508014521 0.3200836820083394 0.23151246952342028
+0.9321923340966212 0.31799163179913426 0.9321923340966212 0.31799163179913426 0.23095895479509987
+0.9355827173917901 0.31589958158992915 0.9355827173917902 0.3158995815899291 0.2308471747599967
+0.938973100686959 0.31380753138072404 0.938973100686959 0.31380753138072404 0.23114928868555795
+0.942363483982128 0.3117154811715189 0.9423634839821279 0.311715481171519 0.2318218355828219
+0.9457538672772969 0.3096234309623138 0.9457538672772969 0.3096234309623138 0.23280985790331976
+0.9491442505724659 0.3075313807531087 0.949144250572466 0.30753138075310865 0.23405159789116195
+0.9525346338676348 0.3054393305439036 0.9525346338676348 0.3054393305439036 0.23548332617041848
+0.9559250171628038 0.3033472803346985 0.9559250171628036 0.30334728033469854 0.23704391124547045
+0.9593154004579727 0.3012552301254934 0.9593154004579727 0.3012552301254934 0.23867882467643778
+0.9627057837531416 0.29916317991628827 0.9627057837531418 0.2991631799162882 0.24034337295552308
+0.9660961670483106 0.29707112970708316 0.9660961670483106 0.29707112970708316 0.24200503347193122
+0.9694865503434795 0.29497907949787805 0.9694865503434794 0.2949790794978781 0.24364483840210013
+0.9728769336386485 0.29288702928867294 0.9728769336386485 0.29288702928867294 0.24525779611528362
+0.9762673169338174 0.29079497907946783 0.9762673169338175 0.2907949790794678 0.24685237018792705
+0.9796577002289864 0.2887029288702627 0.9796577002289864 0.2887029288702627 0.2484490596782721
+0.9830480835241553 0.2866108786610576 0.9830480835241552 0.28661087866105767 0.25007814925040467
+0.9864384668193242 0.2845188284518525 0.9864384668193242 0.2845188284518525 0.2517767302490188
+0.9898288501144932 0.2824267782426474 0.9898288501144933 0.28242677824264734 0.25358513637188956
+0.9932192334096621 0.2803347280334423 0.9932192334096621 0.2803347280334423 0.25554298781214063
+0.28451882845188314 0.9932192334096621 0.28451882845188314 0.9932192334096621 0.1878393436409516
+0.2866108786610882 0.9898288501144932 0.2866108786610882 0.9898288501144933 0.18953356867259186
+0.28870292887029325 0.9864384668193242 0.2887029288702933 0.9864384668193242 0.19151550942024917
+0.29079497907949825 0.9830480835241553 0.2907949790794983 0.9830480835241552 0.19376002456318506
+0.2928870292887033 0.9796577002289864 0.2928870292887033 0.9796577002289864 0.19623890633056743
+0.2949790794979083 0.9762673169338175 0.2949790794979083 0.9762673169338175 0.19892147742249267
+0.2970711297071134 0.9728769336386486 0.2970711297071134 0.9728769336386486 0.20177511402259565
+0.2991631799163184 0.9694865503434796 0.2991631799163184 0.9694865503434796 0.20476570440322736
+0.30125523012552347 0.966096167048311 0.3012552301255234 0.9660961670483111 0.20785806090013306
+0.3033472803347284 0.9627057837531422 0.3033472803347284 0.9627057837531422 0.21101630726048484
+0.3054393305439334 0.9593154004579731 0.3054393305439334 0.959315400457973 0.214204263910839
+0.3075313807531383 0.9559250171628039 0.3075313807531383 0.9559250171628039 0.2173858512901137
+0.30962343096234307 0.9525346338676348 0.30962343096234307 0.9525346338676348 0.22052552693742886
+0.31171548117154785 0.9491442505724659 0.31171548117154785 0.949144250572466 0.22358876638436345
+0.31380753138075285 0.945753867277297 0.31380753138075285 0.945753867277297 0.22654259181334505
+0.3158995815899579 0.942363483982128 0.3158995815899579 0.9423634839821279 0.22935614646163674
+0.31799163179916295 0.9389731006869587 0.31799163179916295 0.9389731006869587 0.23200130723246226
+0.3200836820083682 0.93558271739179 0.3200836820083682 0.93558271739179 0.2344533231041057
+0.3221757322175736 0.9321923340966211 0.3221757322175736 0.9321923340966211 0.23669146274639077
+0.32426778242677895 0.9288019508014521 0.32426778242677895 0.9288019508014521 0.238699651205557
+0.3263598326359841 0.9254115675062833 0.32635983263598417 0.9254115675062833 0.24046707249353685
+0.3284518828451891 0.9220211842111145 0.32845188284518917 0.9220211842111145 0.24198871229757044
+0.33054393305439395 0.9186308009159457 0.33054393305439395 0.9186308009159457 0.24326581272807823
+0.33263598326359856 0.9152404176207766 0.33263598326359856 0.9152404176207766 0.24430620904405878
+0.3347280334728033 0.9118500343256078 0.3347280334728033 0.9118500343256078 0.24512451675859567
+0.3368200836820082 0.9084596510304387 0.3368200836820083 0.9084596510304387 0.24574213672395498
+0.33891213389121333 0.9050692677352696 0.33891213389121333 0.9050692677352696 0.2461870462217712
+0.3410041841004186 0.9016788844401007 0.3410041841004186 0.9016788844401006 0.2464933464516814
+0.34309623430962394 0.8982885011449318 0.34309623430962394 0.8982885011449318 0.24670054202048694
+0.34518828451882905 0.8948981178497629 0.34518828451882905 0.8948981178497629 0.2468525370669712
+0.34728033472803427 0.8915077345545942 0.34728033472803427 0.8915077345545942 0.24699634638298903
+0.3493723849372392 0.888117351259425 0.3493723849372392 0.888117351259425 0.2471805387547261
+0.35146443514644404 0.8847269679642563 0.35146443514644404 0.8847269679642563 0.24745345338433558
+0.353556485355649 0.8813365846690874 0.353556485355649 0.8813365846690874 0.24786125710669868
+0.355648535564854 0.8779462013739184 0.355648535564854 0.8779462013739184 0.2484459372236425
+0.3577405857740591 0.8745558180787494 0.35774058577405915 0.8745558180787495 0.24924334788954416
+0.3598326359832642 0.8711654347835806 0.3598326359832642 0.8711654347835806 0.2502814421838417
+0.3619246861924692 0.8677750514884116 0.3619246861924692 0.8677750514884116 0.2515788228247664
+0.3640167364016742 0.8643846681932428 0.3640167364016742 0.8643846681932427 0.25314372923866063
+0.36610878661087926 0.860994284898074 0.36610878661087926 0.860994284898074 0.25497354767097086
+0.3682008368200842 0.8576039016029051 0.3682008368200842 0.8576039016029052 0.25705488785752123
+0.3702928870292892 0.8542135183077362 0.3702928870292892 0.8542135183077361 0.2593642208987866
+0.3723849372384942 0.8508231350125672 0.3723849372384942 0.8508231350125673 0.26186902607779733
+0.37447698744769914 0.8474327517173984 0.37447698744769914 0.8474327517173984 0.2645293564178877
+0.37656903765690425 0.8440423684222295 0.37656903765690425 0.8440423684222295 0.2672997084121765
+0.37866108786610925 0.8406519851270605 0.37866108786610925 0.8406519851270605 0.27013107201978576
+0.3807531380753475 0.837261601831892 0.3807531380753475 0.837261601831892 0.27297304121275473
+0.382845188284864 0.8338712185367315 0.382845188284864 0.8338712185367315 0.2757758797084568
+0.3849372384945103 0.8304808352415741 0.3849372384945103 0.8304808352415741 0.2784924566273726
+0.3870286182089526 0.827091781103033 0.3870286182089526 0.827091781103033 0.2810790641079665
+0.3891180121328919 0.8237065159615465 0.3891180121328919 0.8237065159615465 0.28349733270487537
+0.39120375448307093 0.8203273355745258 0.39120375448307093 0.8203273355745256 0.28571653336570607
+0.39328579811847403 0.8169549249491742 0.39328579811847403 0.8169549249491742 0.28771583655180416
+0.3953684265802489 0.813586272952958 0.3953684265802489 0.813586272952958 0.28948527813902153
+0.3974552356319508 0.8102166671533365 0.3974552356319508 0.8102166671533365 0.2910223978515846
+0.3995334797570042 0.8068392204615021 0.3995334797570042 0.8068392204615021 0.2923300607497667
+0.40157934414051494 0.8034757769107537 0.40157934414051494 0.8034757769107536 0.29341042122293365
+0.4081121238728839 0.7913682320441863 0.4081121238728839 0.7913682320441863 0.29584852584771076
+0.4035600135870422 0.8001413900490282 0.40356001358704224 0.8001413900490281 0.29427801164212336
+0.40451031414837113 0.7966898512864727 0.4045103141483711 0.7966898512864727 0.2948640592406662
+0.4076495634029778 0.79518690967384 0.4076495634029778 0.79518690967384 0.29546732608732634
+0.41157567161304814 0.7862731617960189 0.41157567161304814 0.7862731617960189 0.29660794798683116
+0.4112587303997517 0.7899591275204075 0.41125873039975164 0.7899591275204075 0.2961903709825227
+0.41477339737663077 0.7809440945720714 0.4147733973766307 0.7809440945720714 0.2973647520700599
+0.41474268628546807 0.7847259151991951 0.414742686285468 0.7847259151991951 0.29680544001312725
+0.4224154636165613 0.7667054280187315 0.4224154636165613 0.7667054280187315 0.3007422545195641
+0.4221488158110145 0.7705070493753868 0.42214881581101443 0.7705070493753868 0.2992659904837573
+0.41817513246054705 0.7794880115253936 0.4181751324605471 0.7794880115253936 0.2974003551525732
+0.418583842939703 0.775850188656721 0.418583842939703 0.775850188656721 0.2981684371316473
+0.4218311736537393 0.7742840576023124 0.4218311736537393 0.7742840576023124 0.29808076705495984
+0.4259054919356669 0.7611061761190813 0.4259054919356669 0.7611061761190813 0.3028591516230788
+0.4256737467542033 0.7649454959403715 0.4256737467542033 0.7649454959403715 0.30082314630034673
+0.4291139918625673 0.759260690269132 0.4291139918625673 0.759260690269132 0.30294393376050893
+0.4324288216249219 0.7535669076280894 0.43242882162492186 0.7535669076280894 0.30563128504858333
+0.4322786798544324 0.7573672372566098 0.4322786798544324 0.7573672372566098 0.30278735425063236
+0.4355026257835828 0.7516482734684565 0.4355026257835828 0.7516482734684565 0.3054607991617529
+0.4385255250078845 0.7496899836858161 0.4385255250078845 0.7496899836858161 0.3050412846292663
+0.44149807836474037 0.7477386075147501 0.44149807836474037 0.7477386075147501 0.30431497509311894
+0.4444337393020133 0.7458051516505542 0.4444337393020133 0.7458051516505542 0.3032439028953642
+0.44733278568870843 0.7438934871377181 0.44733278568870843 0.7438934871377181 0.30180107790705574
+0.461802771355966 0.7157490445042834 0.461802771355966 0.7157490445042834 0.3126379194092604
+0.46456555879898787 0.7137799715240729 0.46456555879898787 0.7137799715240729 0.30873566878522585
+0.4501733000418051 0.7419919663424351 0.4501733000418051 0.7419919663424351 0.3000157021882053
+0.4526841693971876 0.7406758407813843 0.4526841693971876 0.7406758407813843 0.29762547215018703
+0.4542403336535807 0.7377555301233258 0.4542403336535807 0.7377555301233257 0.2985839994244542
+0.4570278898888687 0.7311248957038581 0.4570278898888687 0.7311248957038581 0.3016638383768156
+0.4575315867714589 0.7351834995920494 0.4575315867714589 0.7351834995920495 0.2956175790030622
+0.45959838505293704 0.7252753327235634 0.459598385052937 0.7252753327235634 0.3041775994875588
+0.4599640959275726 0.7290585056246709 0.45996409592757265 0.7290585056246709 0.2983817927217513
+0.46217694128488773 0.7194902992567352 0.46217694128488773 0.7194902992567352 0.30641272477769893
+0.46252933749538944 0.7232557553678332 0.46252933749538944 0.7232557553678332 0.30036275713043503
+0.4694265008814272 0.7068769618659518 0.4694265008814272 0.7068769618659518 0.3053904233632183
+0.47115159204385393 0.7045232128533526 0.4711515920438539 0.7045232128533526 0.3037037900222814
+0.4672463028483699 0.7115790062043068 0.4672463028483698 0.7115790062043068 0.30477592812607224
+0.4696911363958056 0.7098319861616289 0.4696911363958057 0.709831986161629 0.30022130642015354
+0.4737648374939807 0.7020719528478528 0.47376483749398074 0.7020719528478528 0.2988983225199367
+0.49541436126037797 0.6517924166082585 0.4954143612603779 0.6517924166082585 0.3047944526942463
+0.47643793611124097 0.6995332434164339 0.4764379361112409 0.6995332434164339 0.29338876110542755
+0.4791085001328401 0.6969192448523893 0.4791085001328401 0.6969192448523893 0.28735826555010013
+0.4817197681040471 0.6942368174014751 0.4817197681040471 0.6942368174014751 0.2810348019080822
+0.48426597205602717 0.6915374029969857 0.4842659720560272 0.6915374029969857 0.2744198818877062
+0.49678498044909564 0.6554624826975184 0.49678498044909564 0.6554624826975184 0.2866965170422428
+0.48672300566073917 0.6888223042075347 0.48672300566073917 0.6888223042075347 0.267690629948312
+0.4890939921053004 0.6860998271522124 0.4890939921053004 0.6860998271522124 0.26090730196799067
+0.49822405528085295 0.6590407063829634 0.49822405528085295 0.6590407063829634 0.2689168302678672
+0.4996770834726085 0.6626923934314406 0.4996770834726085 0.6626923934314406 0.2513766945437291
+0.5010551219506586 0.6664307324149429 0.5010551219506586 0.6664307324149429 0.23467817380020262
+0.501913351374789 0.6698879007327077 0.501913351374789 0.6698879007327077 0.22212894671094685
+0.4996747063646443 0.6724410183967552 0.4996747063646443 0.6724410183967552 0.22960518555260565
+0.49137468031352216 0.683370219820374 0.4913746803135222 0.683370219820374 0.25418609918278773
+0.49355262199214 0.6806247038630237 0.49355262199213995 0.6806247038630237 0.2477159855821858
+0.4976806620283062 0.6751088761513719 0.49768066202830624 0.6751088761513718 0.23553690325022503
+0.49566389361569574 0.6778544200786849 0.4956638936156957 0.6778544200786848 0.24144520378367293
+0.4977776902229557 0.6494515734657806 0.49777769022295576 0.6494515734657806 0.2990397232533107
+0.4998269473836117 0.6469176445284477 0.4998269473836117 0.6469176445284477 0.2958673547038757
+0.5016096408488684 0.6443540079628013 0.5016096408488684 0.6443540079628013 0.2948314509582837
+0.5039805867336975 0.6415315825651995 0.5039805867336975 0.6415315825651994 0.2923435419791967
+0.5049595687517348 0.6381835050488671 0.5049595687517348 0.6381835050488671 0.3003529482460258
+0.5069179494243701 0.6366480175296279 0.5069179494243701 0.6366480175296279 0.29647844714152866
+0.5077794650710497 0.6334486903859199 0.5077794650710495 0.6334486903859199 0.3068275431110407
+0.509889870749469 0.6303027908827838 0.5098898707494691 0.6303027908827837 0.31192543311693105
+0.5115540854571239 0.6268757625958195 0.5115540854571239 0.6268757625958195 0.32289502815121257
+0.5137007109803454 0.6223284371499386 0.5137007109803454 0.6223284371499386 0.3408019342816891
+0.5139949088213749 0.6251023296416338 0.5139949088213749 0.6251023296416339 0.32280894552906275
+0.5055069683052 0.6149286440928099 0.5055069683052 0.61492864409281 0.4336176830431874
+0.5082281271202393 0.6174488503751613 0.5082281271202395 0.6174488503751613 0.4000456860028076
+0.5121812562159964 0.6201761070110063 0.5121812562159964 0.6201761070110062 0.3613541645022385
+0.5107266035999553 0.6179156970856493 0.5107266035999553 0.6179156970856493 0.38414649204584345
+0.5146882710678332 0.6199335903559436 0.5146882710678332 0.6199335903559436 0.3525807138298731
+0.5074200499892705 0.6107434283874528 0.5074200499892704 0.6107434283874528 0.4600775560242331
+0.5091807570655772 0.6067250031445048 0.5091807570655772 0.606725003144505 0.4902478714344209
+0.6325324173252649 0.5216967043019636 0.6325324173252649 0.5216967043019637 0.21001605356049044
+0.6364929563765196 0.5207833619398795 0.6364929563765197 0.5207833619398795 0.1841393107068111
+0.6026916291117179 0.5419626649995212 0.6026916291117179 0.5419626649995212 0.4751612043917302
+0.5982302972748063 0.5427228789618979 0.5982302972748063 0.5427228789618979 0.5248207256697892
+0.6259601109410657 0.5277331677980888 0.6259601109410657 0.5277331677980888 0.24365195752782168
+0.6312639134562998 0.5252470611941402 0.6312639134562997 0.5252470611941402 0.21060666293834965
+0.6288133193108664 0.5274397159886898 0.6288133193108664 0.5274397159886898 0.22446013666644707
+0.6237172573047136 0.5303974999576077 0.6237172573047136 0.5303974999576077 0.2584390424782957
+0.6227778422291733 0.5334140608481467 0.6227778422291733 0.5334140608481467 0.27053713933194645
+0.6074241297161616 0.5411010702252154 0.6074241297161614 0.5411010702252154 0.4271540425475017
+0.6108583953625158 0.5396400821968963 0.6108583953625158 0.5396400821968963 0.38727653371527865
+0.6106149528170377 0.5421940417047798 0.6106149528170377 0.5421940417047798 0.4147648938348988
+0.6192394517545526 0.5345828190345487 0.6192394517545526 0.5345828190345489 0.29766287773480027
+0.6148740877115099 0.5372228303789153 0.6148740877115099 0.5372228303789153 0.34062702814032164
+0.6175142988853257 0.5367022825755461 0.6175142988853257 0.5367022825755461 0.3196442850272256
+0.6142991467891498 0.5394383877050957 0.6142991467891498 0.5394383877050957 0.3613452197414344
+0.6473541605338715 0.5092638944448351 0.6473541605338715 0.5092638944448352 0.13715427898345636
+0.6507572057244495 0.5080258591470684 0.6507572057244495 0.5080258591470684 0.11693960850749592
+0.6464236237462482 0.5123056586804315 0.6464236237462481 0.5123056586804315 0.13722766731121952
+0.6432590677072898 0.5167360847470273 0.6432590677072899 0.5167360847470271 0.14801008889288855
+0.6457735460175404 0.5148916385797999 0.6457735460175404 0.5148916385797999 0.1356882434401506
+0.6402986840467767 0.5193366457350075 0.6402986840467767 0.5193366457350076 0.16164846411157696
+0.67087066874101 0.49269915191005104 0.67087066874101 0.49269915191005104 0.01410340199001161
+0.6636673963575835 0.4965465768331318 0.6636673963575835 0.4965465768331318 0.04911270160585073
+0.6678678530098431 0.49476373323936595 0.6678678530098432 0.49476373323936595 0.028567547077129544
+0.6554479149028688 0.5033165346857417 0.6554479149028688 0.5033165346857417 0.09326824530792426
+0.6590375039739288 0.5018497851178222 0.6590375039739288 0.5018497851178222 0.07369293099469003
+0.6544131605107371 0.5068585913050091 0.6544131605107371 0.5068585913050091 0.0960927835570955
+0.6626858570820124 0.5003810347977136 0.6626858570820123 0.5003810347977136 0.05498074345006188
+0.6857021276093057 0.4766953761782049 0.6857021276093057 0.4766953761782049 0.06260021992854202
+0.6891240022530281 0.47510925868400733 0.6891240022530281 0.47510925868400733 0.07302861196359928
+0.6925701396403944 0.47351201054915687 0.6925701396403944 0.47351201054915687 0.08255004405735498
+0.6960468221237789 0.47189993946498915 0.6960468221237789 0.47189993946498915 0.09118165313335182
+0.6819577451940977 0.4815901844326505 0.6819577451940977 0.4815901844326505 0.041647179331451685
+0.6853775864347087 0.48007071617334557 0.6853775864347087 0.48007071617334557 0.05326040396244446
+0.6781267070857001 0.4863693221335639 0.6781267070857001 0.48636932213356393 0.021089438894075174
+0.6815434236239574 0.484898279892509 0.6815434236239574 0.484898279892509 0.033890296186071596
+0.6741793335288443 0.4911032966362008 0.6741793335288443 0.4911032966362008 0.0038664105379092894
+0.6776251934347342 0.489574355736544 0.677625193434734 0.489574355736544 0.015517269862120112
+0.6995865554584448 0.4702703560549879 0.6995865554584447 0.4702703560549879 0.09897927086218593
+0.7032362092902515 0.46869872287419034 0.7032362092902514 0.4686987228741904 0.10580168616686146
+0.7074587583675714 0.46382547331091334 0.7074587583675714 0.46382547331091334 0.1202920828054911
+0.7067449931750595 0.4670850848433255 0.7067449931750595 0.4670850848433255 0.11184312871659331
+0.7107901945401816 0.46231022719299025 0.7107901945401816 0.46231022719299025 0.12493230946952827
+0.7143459344080691 0.46054239491083115 0.714345934408069 0.4605423949108312 0.12969805321634675
+0.7174201779415963 0.4583035461818972 0.7174201779415963 0.4583035461818973 0.1351232492450629
+0.7220480092994883 0.4538428595195814 0.7220480092994883 0.4538428595195814 0.14548571904643645
+0.7251709499105979 0.4521295370327591 0.7251709499105979 0.4521295370327591 0.1488309750092555
+0.7285244664404434 0.450322315942407 0.7285244664404434 0.45032231594240707 0.15214785680934925
+0.7320457927215788 0.44845959202653934 0.7320457927215788 0.44845959202653934 0.15542009768828471
+0.7211496895663687 0.457301385305016 0.7211496895663688 0.457301385305016 0.13701653159732727
+0.735992318536598 0.4463802836288905 0.7359923185365981 0.44638028362889054 0.15899660286923092
+0.7393040180905583 0.446700677270159 0.7393040180905583 0.44670067727015905 0.15687465905473807
+0.7419346000647468 0.44521913101910104 0.7419346000647468 0.4452191310191011 0.15953897085143717
+0.7450730588512213 0.44364590126267206 0.7450730588512213 0.44364590126267206 0.16229342600012656
+0.7486392031179457 0.43860630909299386 0.7486392031179457 0.43860630909299386 0.17346997177460532
+0.7484007613484254 0.44201061014289467 0.7484007613484254 0.44201061014289467 0.16518739678625957
+0.7519977298884924 0.4369155825072655 0.7519977298884924 0.4369155825072655 0.17647229922472915
+0.7553729141207568 0.43522370239155467 0.7553729141207568 0.43522370239155467 0.17949497717376708
+0.7587660184401046 0.43351155059195023 0.7587660184401046 0.4335115505919502 0.18255423626316122
+0.7622806319021809 0.42816124621950347 0.7622806319021809 0.4281612462195035 0.19457619447654684
+0.7720305810329822 0.4225631094739496 0.7720305810329822 0.42256310947394965 0.20364093000931657
+0.7656342193783123 0.42632834853540175 0.7656342193783123 0.42632834853540175 0.1976414351578499
+0.7688890822738923 0.4244526365855911 0.7688890822738923 0.4244526365855911 0.2006868110483906
+0.7621829296338878 0.43176729369432354 0.7621829296338878 0.4317672936943236 0.18563807427693302
+0.7747939485689992 0.42421942138120194 0.7747939485689992 0.4242194213812019 0.19837007423845987
+0.7786307580962412 0.4192437941100049 0.7786307580962412 0.41924379411000495 0.20761634429588519
+0.7818063126372854 0.41761173159695303 0.7818063126372854 0.41761173159695303 0.20921627369678927
+0.7781324256306514 0.4225430006863436 0.7781324256306514 0.4225430006863436 0.20049263947809456
+0.7849336203285813 0.4156036990084937 0.7849336203285812 0.4156036990084937 0.2114630626945115
+0.7847959916060339 0.4191269468172786 0.7847959916060337 0.41912694681727863 0.2041636881588371
+0.7880956329487221 0.41374338207179484 0.7880956329487221 0.41374338207179484 0.21305614475538534
+0.7911972626523051 0.41196412474793737 0.7911972626523051 0.41196412474793737 0.21427304586306714
+0.7945436090412152 0.4066955783649495 0.7945436090412152 0.4066955783649496 0.22201485799619383
+0.7942392245287287 0.41030510474743026 0.7942392245287287 0.41030510474743026 0.21509183672850749
+0.7977018021243575 0.40511310311734244 0.7977018021243575 0.40511310311734244 0.22215219687658952
+0.8008226047625423 0.4033594525542634 0.8008226047625423 0.4033594525542634 0.22250906679150276
+0.8039061334570464 0.40144808397516357 0.8039061334570464 0.40144808397516357 0.22313122605311375
+0.8070615952583102 0.39951487937242963 0.8070615952583102 0.39951487937242963 0.22365761919612234
+0.8102930968743633 0.39754491688252075 0.8102930968743633 0.39754491688252075 0.22417480373248935
+0.8136151871657061 0.3954502475952557 0.8136151871657061 0.3954502475952557 0.22487942456725704
+0.8169579772050115 0.3933449563047516 0.8169579772050115 0.3933449563047516 0.22570383679514247
+0.8203247526688074 0.3912325452455092 0.8203247526688074 0.3912325452455092 0.22669861726359256
+0.8237045882944063 0.3891273616533968 0.8237045882944063 0.3891273616533968 0.2278997887598941
+0.8270913434963675 0.3870302417312714 0.8270913434963675 0.3870302417312714 0.229346081724125
+0.8304808971010612 0.38493728569776886 0.8304808971010612 0.38493728569776886 0.23106297208376916
+0.8338712185367219 0.38284518828449265 0.8338712185367217 0.3828451882844926 0.23305364258970696
+0.8372616018318908 0.38075313807528754 0.8372616018318908 0.38075313807528754 0.23529704356141198
+0.8406519851270597 0.37866108786608244 0.8406519851270599 0.3786610878660825 0.23775270007905266
+0.8440423684222287 0.3765690376568773 0.8440423684222287 0.3765690376568773 0.24036452271081157
+0.8474327517173976 0.3744769874476722 0.8474327517173975 0.37447698744767216 0.24306403364397736
+0.8508231350125666 0.3723849372384671 0.8508231350125666 0.3723849372384671 0.24577403161916075
+0.8542135183077355 0.370292887029262 0.8542135183077356 0.37029288702926205 0.24841250256945177
+0.8576039016029045 0.3682008368200569 0.8576039016029045 0.3682008368200569 0.250896512808866
+0.8609942848980734 0.3661087866108518 0.8609942848980733 0.3661087866108517 0.253145879972505
+0.8643846681932423 0.36401673640164667 0.8643846681932423 0.36401673640164667 0.2550864812948897
+0.8677750514884113 0.36192468619244156 0.8677750514884114 0.3619246861924416 0.25665311709179756
+0.8711654347835802 0.35983263598323645 0.8711654347835802 0.35983263598323645 0.2577918927395855
+0.8745558180787492 0.35774058577403134 0.874555818078749 0.3577405857740313 0.2584621129697235
+0.8779462013739181 0.35564853556482623 0.8779462013739181 0.35564853556482623 0.2586376989947972
+0.881336584669087 0.3535564853556211 0.8813365846690872 0.3535564853556212 0.2583081444820716
+0.884726967964256 0.351464435146416 0.884726967964256 0.351464435146416 0.2574790237117642
+0.8881173512594249 0.3493723849372109 0.8881173512594248 0.34937238493721084 0.2561720572105115
+0.8915077345545939 0.3472803347280058 0.8915077345545939 0.3472803347280058 0.25442472920476883
+0.8948981178497628 0.3451882845188007 0.8948981178497629 0.34518828451880074 0.25228943970777884
+0.8982885011449318 0.34309623430959557 0.8982885011449318 0.34309623430959557 0.24983216445553222
+0.9016788844401007 0.34100418410039046 0.9016788844401006 0.3410041841003904 0.24713059135
+0.9050692677352696 0.33891213389118535 0.9050692677352696 0.33891213389118535 0.2442717064882218
+0.9084596510304386 0.33682008368198024 0.9084596510304387 0.3368200836819803 0.24134882087684098
+0.9118500343256075 0.33472803347277513 0.9118500343256075 0.33472803347277513 0.2384580650599317
+0.9152404176207765 0.33263598326357 0.9152404176207763 0.33263598326356997 0.2356944358181561
+0.9186308009159454 0.3305439330543649 0.9186308009159454 0.3305439330543649 0.2331475551842843
+0.9220211842111143 0.3284518828451598 0.9220211842111145 0.32845188284515986 0.23089738858380016
+0.9254115675062833 0.3263598326359547 0.9254115675062833 0.3263598326359547 0.22901024882885
+0.9288019508014522 0.3242677824267496 0.9288019508014521 0.32426778242674953 0.22753546220335338
+0.9321923340966212 0.3221757322175445 0.9321923340966212 0.3221757322175445 0.22650306780303278
+0.9355827173917901 0.32008368200833937 0.9355827173917902 0.3200836820083394 0.22592284673263707
+0.938973100686959 0.31799163179913426 0.938973100686959 0.31799163179913426 0.22578483720295897
+0.942363483982128 0.31589958158992915 0.9423634839821279 0.3158995815899291 0.2260613099526618
+0.9457538672772969 0.31380753138072404 0.9457538672772969 0.31380753138072404 0.22670999571412223
+0.9491442505724659 0.3117154811715189 0.949144250572466 0.311715481171519 0.22767821363802734
+0.9525346338676348 0.3096234309623138 0.9525346338676348 0.3096234309623138 0.2289074739414512
+0.9559250171628038 0.3075313807531087 0.9559250171628036 0.30753138075310865 0.2303381250179725
+0.9593154004579727 0.3054393305439036 0.9593154004579727 0.3054393305439036 0.2319136703547053
+0.9627057837531416 0.3033472803346985 0.9627057837531418 0.30334728033469854 0.23358446848449474
+0.9660961670483106 0.3012552301254934 0.9660961670483106 0.3012552301254934 0.23531062433398464
+0.9694865503434795 0.29916317991628827 0.9694865503434794 0.2991631799162882 0.23706396451341516
+0.9728769336386485 0.29707112970708316 0.9728769336386485 0.29707112970708316 0.23882905407578356
+0.9762673169338174 0.29497907949787805 0.9762673169338175 0.2949790794978781 0.2406032584329009
+0.9796577002289864 0.29288702928867294 0.9796577002289864 0.29288702928867294 0.24239588727989805
+0.9830480835241553 0.29079497907946783 0.9830480835241552 0.2907949790794678 0.24422648540401362
+0.9864384668193242 0.2887029288702627 0.9864384668193242 0.2887029288702627 0.2461223652083366
+0.9898288501144932 0.2866108786610576 0.9898288501144933 0.28661087866105767 0.24811551190514194
+0.9932192334096621 0.2845188284518525 0.9932192334096621 0.2845188284518525 0.25023903472034076
+0.2887029288702932 0.9932192334096621 0.2887029288702932 0.9932192334096621 0.18972490109604137
+0.29079497907949825 0.9898288501144932 0.2907949790794983 0.9898288501144933 0.1914487616508955
+0.2928870292887033 0.9864384668193242 0.2928870292887033 0.9864384668193242 0.1934626437222677
+0.2949790794979083 0.9830480835241553 0.2949790794979083 0.9830480835241552 0.1957436865717239
+0.29707112970711336 0.9796577002289865 0.29707112970711336 0.9796577002289865 0.1982651582670205
+0.29916317991631836 0.9762673169338176 0.29916317991631836 0.9762673169338177 0.20099696315824464
+0.3012552301255234 0.9728769336386488 0.3012552301255234 0.9728769336386488 0.20390614455176181
+0.3033472803347283 0.9694865503434799 0.3033472803347283 0.9694865503434799 0.20695738676695466
+0.30543933054393335 0.9660961670483109 0.30543933054393335 0.9660961670483109 0.21011352479578585
+0.3075313807531383 0.9627057837531418 0.3075313807531383 0.9627057837531418 0.2133360714598129
+0.30962343096234324 0.9593154004579728 0.3096234309623433 0.9593154004579728 0.2165857714938959
+0.3117154811715481 0.9559250171628038 0.3117154811715481 0.9559250171628036 0.21982318983637075
+0.31380753138075307 0.9525346338676347 0.31380753138075307 0.9525346338676347 0.22300933812199328
+0.3158995815899581 0.9491442505724658 0.3158995815899581 0.9491442505724658 0.22610633948695288
+0.3179916317991632 0.9457538672772969 0.3179916317991632 0.9457538672772969 0.22907812774118322
+0.32008368200836834 0.9423634839821279 0.32008368200836834 0.9423634839821279 0.2318911730494108
+0.3221757322175735 0.938973100686959 0.3221757322175735 0.938973100686959 0.23451522266288927
+0.3242677824267787 0.9355827173917902 0.32426778242677873 0.9355827173917902 0.236924042016215
+0.32635983263598384 0.9321923340966212 0.32635983263598384 0.9321923340966212 0.2390961386177957
+0.32845188284518895 0.9288019508014522 0.32845188284518895 0.9288019508014521 0.24101544853433385
+0.33054393305439383 0.9254115675062834 0.33054393305439383 0.9254115675062834 0.24267196279661205
+0.3326359832635986 0.9220211842111145 0.3326359832635986 0.9220211842111145 0.24406226865215144
+0.33472803347280355 0.9186308009159455 0.33472803347280355 0.9186308009159455 0.24518997823399927
+0.33682008368200855 0.9152404176207765 0.33682008368200855 0.9152404176207763 0.24606601497923752
+0.33891213389121355 0.9118500343256075 0.33891213389121355 0.9118500343256075 0.24670872623963522
+0.3410041841004186 0.9084596510304387 0.3410041841004186 0.9084596510304387 0.24714378940093695
+0.34309623430962377 0.9050692677352696 0.34309623430962377 0.9050692677352696 0.24740387912349313
+0.34518828451882894 0.9016788844401007 0.34518828451882894 0.9016788844401006 0.2475280659396906
+0.3472803347280339 0.8982885011449319 0.3472803347280338 0.8982885011449319 0.24756092249931835
+0.3493723849372388 0.8948981178497629 0.3493723849372388 0.8948981178497629 0.24755132441266345
+0.351464435146444 0.891507734554594 0.351464435146444 0.891507734554594 0.2475509488736177
+0.353556485355649 0.8881173512594251 0.353556485355649 0.8881173512594253 0.2476124964285331
+0.35564853556485404 0.8847269679642563 0.35564853556485404 0.8847269679642563 0.24778768869564646
+0.35774058577405915 0.8813365846690874 0.35774058577405915 0.8813365846690874 0.24812512533091716
+0.3598326359832642 0.8779462013739184 0.3598326359832642 0.8779462013739184 0.24866811318049467
+0.3619246861924692 0.8745558180787495 0.3619246861924692 0.8745558180787495 0.2494526040613768
+0.3640167364016742 0.8711654347835806 0.3640167364016742 0.8711654347835806 0.2505053892036872
+0.3661087866108792 0.8677750514884116 0.3661087866108792 0.8677750514884116 0.2518426933120988
+0.3682008368200842 0.8643846681932428 0.3682008368200842 0.8643846681932427 0.2534692873486665
+0.3702928870292892 0.860994284898074 0.3702928870292892 0.860994284898074 0.25537819821420177
+0.3723849372384942 0.8576039016029051 0.3723849372384942 0.8576039016029052 0.25755104115287836
+0.3744769874476993 0.8542135183077362 0.37447698744769925 0.8542135183077361 0.2599589453152906
+0.37656903765690425 0.8508231350125672 0.37656903765690425 0.8508231350125673 0.2625639934714891
+0.3786610878661092 0.8474327517173984 0.3786610878661092 0.8474327517173984 0.26532106060537547
+0.38075313807531436 0.8440423684222295 0.38075313807531436 0.8440423684222295 0.2681799168857162
+0.3828451882845193 0.8406519851270605 0.38284518828451924 0.8406519851270605 0.27108745830176323
+0.3849372384938818 0.8372616018318934 0.3849372384938818 0.8372616018318934 0.273989939992675
+0.3870292887044247 0.8338712185367689 0.3870292887044247 0.833871218536769 0.27683510823442997
+0.38912133891473316 0.8304808352416168 0.38912133891473316 0.8304808352416168 0.2795741524766499
+0.39121270289437765 0.8270917089829325 0.39121270289437765 0.8270917089829325 0.2821624960490959
+0.3933023843752939 0.8237055700612065 0.3933023843752939 0.8237055700612065 0.2845620761652394
+0.3953893005618834 0.8203237704877308 0.3953893005618834 0.8203237704877308 0.2867432185424576
+0.39747344013872676 0.8169473204834948 0.39747344013872676 0.8169473204834948 0.2886856085153396
+0.39955792890396596 0.8135748810616543 0.39955792890396596 0.8135748810616544 0.2903797716361863
+0.4016443697528563 0.8101998782907996 0.4016443697528563 0.8101998782907996 0.2918272354617788
+0.40373597191843874 0.806807172711402 0.40373597191843874 0.806807172711402 0.2930412025987111
+0.405840839958767 0.8033296569291365 0.405840839958767 0.8033296569291365 0.29405828683632945
+0.41091970442419484 0.7936372459053102 0.41091970442419484 0.7936372459053102 0.29573651433192105
+0.4080130553316189 0.7994022243073334 0.40801305533161886 0.7994022243073334 0.2949698598955473
+0.41063271943328084 0.7965892564683229 0.4106327194332808 0.7965892564683229 0.29530470135058706
+0.41443498786270755 0.7884878642849844 0.41443498786270755 0.7884878642849844 0.2963033399774533
+0.4140724804604252 0.7922684382058878 0.4140724804604252 0.7922684382058877 0.2958038222574901
+0.41795009972153957 0.7832157889558718 0.41795009972153957 0.7832157889558718 0.29671948373159723
+0.417666629180333 0.7869381715306039 0.417666629180333 0.786938171530604 0.2961340989283599
+0.42541536291768783 0.7688158761633893 0.42541536291768783 0.7688158761633893 0.29910704887597556
+0.4250933569360731 0.7726784526451813 0.4250933569360731 0.7726784526451813 0.2977214321139104
+0.42119299783544445 0.7817362426088686 0.42119299783544445 0.7817362426088686 0.2963493658671585
+0.42149124498960894 0.7780227857563257 0.42149124498960894 0.7780227857563257 0.2971374044588069
+0.42473828428088606 0.7765100218471439 0.42473828428088606 0.7765100218471438 0.2966021514494714
+0.42892464740972286 0.7631196957845737 0.42892464740972286 0.7631196957845737 0.30065711450567006
+0.42871527937218057 0.7670238605621843 0.4287152793721805 0.7670238605621843 0.2986964075338363
+0.43213066859490606 0.7612125498839886 0.43213066859490606 0.7612125498839886 0.30025843816874326
+0.43539253390493887 0.7554192927370426 0.43539253390493887 0.7554192927370426 0.3023957144411107
+0.4352834921984634 0.7592273946032474 0.4352834921984634 0.7592273946032474 0.2996395759190648
+0.4384607331965806 0.7534591271408786 0.4384607331965806 0.7534591271408786 0.3017316984641268
+0.4414865959692187 0.7514831179541317 0.4414865959692187 0.7514831179541317 0.30078170776422036
+0.44445306144845564 0.7495202890706749 0.4444530614484556 0.7495202890706749 0.2995237134997874
+0.44737775418350323 0.7475655364941629 0.4473777541835032 0.7475655364941628 0.2979309275046033
+0.4502479771477926 0.7456403874840497 0.4502479771477926 0.7456403874840497 0.29598116055412943
+0.4651042496789741 0.7174857352473095 0.4651042496789741 0.7174857352473095 0.3020345003014068
+0.46767628033680975 0.7154760237975379 0.46767628033680975 0.7154760237975379 0.2979524584604676
+0.45308127776598944 0.743656107389854 0.45308127776598944 0.743656107389854 0.29372200474384075
+0.455429303448052 0.7411518762445345 0.45542930344805205 0.7411518762445345 0.29254362652023197
+0.457907262077663 0.7390299036201785 0.457907262077663 0.7390299036201785 0.29036391158173713
+0.46036361337174997 0.7328659450346555 0.46036361337174997 0.7328659450346554 0.2927010811651454
+0.4607769521757578 0.7367663463872747 0.4607769521757578 0.7367663463872747 0.2871405592467405
+0.46288075791992994 0.7270316279954967 0.46288075791992994 0.7270316279954967 0.2944928678966186
+0.46326923470686515 0.7308178211343206 0.46326923470686515 0.7308178211343206 0.2887412467232288
+0.46550509428436665 0.7212306811436702 0.46550509428436665 0.7212306811436702 0.2957834514167004
+0.4657691956641479 0.7250067271698435 0.4657691956641479 0.7250067271698435 0.29003907238829485
+0.47215482990125984 0.7078049705793624 0.47215482990125984 0.7078049705793624 0.29555585318194405
+0.47456400655906483 0.7056629401140114 0.47456400655906483 0.7056629401140114 0.29070804328438493
+0.47032260932399483 0.713209599513023 0.4703226093239948 0.7132095995130231 0.2934090420207254
+0.4727827149635295 0.7113415441905232 0.4727827149635296 0.7113415441905232 0.2883820225051928
+0.4771228616174063 0.7032859357134805 0.4771228616174063 0.7032859357134805 0.2851258074718536
+0.49898606799371065 0.6528568355993721 0.49898606799371065 0.6528568355993721 0.2818591723051629
+0.4798414662507042 0.7007642380916692 0.4798414662507042 0.7007642380916693 0.27853437394574265
+0.48250658435126814 0.6980389855553396 0.48250658435126814 0.6980389855553396 0.27178417221576084
+0.4851082923562522 0.6952754906364546 0.48510829235625225 0.6952754906364546 0.2647313206701065
+0.4876163353278018 0.6925127906828766 0.48761633532780185 0.6925127906828766 0.25752949430219463
+0.5003931671464897 0.6563915602196725 0.5003931671464897 0.6563915602196725 0.2636976358605645
+0.49003903536640636 0.689750789283296 0.4900390353664063 0.689750789283296 0.25023071619510584
+0.4923755730153962 0.6869815442399615 0.4923755730153962 0.6869815442399615 0.2429492075471518
+0.5019152906571829 0.6599714537282674 0.501915290657183 0.6599714537282674 0.24537646868678406
+0.5035709490903332 0.6636958436031843 0.5035709490903332 0.6636958436031843 0.22669381769916977
+0.5052305087048272 0.6679886737361159 0.5052305087048272 0.6679886737361159 0.207681272036287
+0.5045597745472541 0.6713025532572067 0.5045597745472541 0.6713025532572067 0.2043585405931517
+0.5026143811159457 0.6731761394126359 0.5026143811159457 0.6731761394126359 0.21154978043205433
+0.5007733480503439 0.6758485210394661 0.5007733480503439 0.6758485210394661 0.21679654636487244
+0.4946109691177245 0.6841969084617019 0.4946109691177245 0.6841969084617019 0.23588742259075898
+0.4967737547441944 0.6814109550843206 0.4967737547441944 0.6814109550843206 0.22899468295601985
+0.4988310518031592 0.6786224879619597 0.4988310518031592 0.6786224879619597 0.22257655395319778
+0.5010840832518438 0.6502718654437529 0.5010840832518438 0.650271865443753 0.27787022894553765
+0.5029355381969149 0.6476101675086645 0.5029355381969149 0.6476101675086645 0.2760674870279138
+0.5043538966056239 0.6451752376449745 0.5043538966056239 0.6451752376449745 0.27647678090518196
+0.5070360058103346 0.6440317806349145 0.5070360058103346 0.6440317806349145 0.2659851929263947
+0.5078039648762339 0.6399526605168588 0.5078039648762339 0.639952660516859 0.2779027816470347
+0.5098815227240496 0.6368293282277613 0.5098815227240497 0.6368293282277612 0.2807039418541604
+0.5115579700664193 0.6337941040601156 0.5115579700664193 0.6337941040601156 0.28696686383018494
+0.5131654756210513 0.6307659093364795 0.5131654756210513 0.6307659093364794 0.2951148027133041
+0.5147442068393154 0.6281319829555484 0.5147442068393154 0.6281319829555484 0.30305166120708343
+0.5163110436772498 0.6229844775988113 0.5163110436772498 0.6229844775988113 0.32756671725007563
+0.5161737858101305 0.6263190099037937 0.5161737858101305 0.6263190099037937 0.3083992050380956
+0.510269186821904 0.6145344440018312 0.5102691868219039 0.6145344440018311 0.41294513759900997
+0.5130877938123631 0.6169516749809707 0.5130877938123631 0.6169516749809708 0.3801248120527165
+0.5172588804997188 0.6197561705912378 0.5172588804997188 0.6197561705912378 0.3450404515887651
+0.5155899412213253 0.6174046748036973 0.5155899412213253 0.6174046748036973 0.3664475212214731
+0.5119966662656122 0.6103306802562357 0.5119966662656122 0.6103306802562357 0.43992108595052626
+0.513585897755635 0.6062573783881476 0.513585897755635 0.6062573783881476 0.47007745846511334
+0.5963750151575445 0.5467491335861677 0.5963750151575445 0.5467491335861677 0.6057399191044519
+0.6350724781221013 0.5240034159917112 0.6350724781221012 0.5240034159917112 0.18692472868735263
+0.6390038404406578 0.5230259388114317 0.6390038404406578 0.5230259388114317 0.16289345200205296
+0.6342234421224013 0.526838929590016 0.6342234421224013 0.526838929590016 0.18973182853706658
+0.6055642733778641 0.5454833041254064 0.6055642733778642 0.5454833041254065 0.4965425329920913
+0.6009071827623842 0.5461815745187791 0.6009071827623842 0.5461815745187791 0.5497545507241428
+0.6279037490188141 0.5302278294200101 0.6279037490188141 0.5302278294200101 0.23106545358839356
+0.631700637741034 0.529066952487663 0.631700637741034 0.5290669524876631 0.2062420312181341
+0.626423895405083 0.5330445574273224 0.626423895405083 0.5330445574273224 0.24684929814985487
+0.6222715978227702 0.535926281684853 0.6222715978227702 0.535926281684853 0.2849492599786901
+0.6251896811782371 0.5356229042337692 0.6251896811782371 0.5356229042337692 0.2656213442438659
+0.6090478970404194 0.5441599054568897 0.6090478970404193 0.5441599054568896 0.4500578869694271
+0.613533069283573 0.541850408558323 0.613533069283573 0.541850408558323 0.38984829319294295
+0.6124392054758583 0.5441986183267676 0.6124392054758583 0.5441986183267676 0.42387615357488917
+0.6087326301979609 0.546704605796602 0.6087326301979609 0.546704605796602 0.48535031503331555
+0.6201234505580011 0.5376166998172673 0.6201234505580011 0.5376166998172672 0.3089340998878534
+0.6174803124741219 0.538814678661486 0.6174803124741218 0.538814678661486 0.3349287302201878
+0.6170384808979962 0.5414118426886987 0.6170384808979962 0.5414118426886986 0.3609033454443127
+0.6498360696247006 0.5113535421741099 0.6498360696247006 0.5113535421741099 0.11704335108368003
+0.6533814075481479 0.5102599566468936 0.6533814075481478 0.5102599566468936 0.09729523831970553
+0.6488490313652254 0.5145847439314167 0.6488490313652254 0.5145847439314167 0.1167985258098817
+0.6439937800579129 0.5195723056432038 0.6439937800579129 0.5195723056432038 0.13709918067308202
+0.6469011912998746 0.5178287010524714 0.6469011912998744 0.5178287010524714 0.12241097841472359
+0.6427063170432671 0.5221543354254401 0.6427063170432671 0.52215433542544 0.141106831526834
+0.6711625411023183 0.49538904551503826 0.6711625411023183 0.49538904551503826 0.015977658379690937
+0.6739517660680716 0.4940536635880593 0.6739517660680717 0.4940536635880593 0.007656338847439764
+0.6664085645061664 0.49897551018623904 0.6664085645061664 0.49897551018623904 0.03726439465078068
+0.6698905984936687 0.49806836070448546 0.6698905984936686 0.4980683607044854 0.022329930891096902
+0.658059200006418 0.5054977393537461 0.6580592000064182 0.5054977393537462 0.07669770668082702
+0.6616782998120976 0.5040819949489861 0.6616782998120976 0.5040819949489861 0.05864473283318088
+0.6570110685861024 0.5090553093221094 0.6570110685861024 0.5090553093221094 0.07827234796347103
+0.6653539258364775 0.5026664338172854 0.6653539258364775 0.5026664338172854 0.04152929947587017
+0.6888214999693097 0.4785421686734151 0.6888214999693097 0.4785421686734151 0.06393106382523263
+0.6922860816068713 0.4770013138056764 0.6922860816068713 0.4770013138056764 0.07364935243163107
+0.6957582846903815 0.47544500533387607 0.6957582846903815 0.47544500533387607 0.08242090975669437
+0.6992250363518634 0.4738648097640734 0.6992250363518634 0.4738648097640734 0.09028614491669006
+0.6849887786232718 0.48343148126162006 0.6849887786232718 0.4834314812616201 0.045693383638204944
+0.6884568452854151 0.48195965270966945 0.6884568452854151 0.4819596527096694 0.05649858060067281
+0.6810748089041531 0.4881854165096173 0.6810748089041531 0.4881854165096173 0.028134524761319068
+0.6845397212502364 0.48677525840980884 0.6845397212502364 0.48677525840980884 0.03987071931157035
+0.6771533542769865 0.492806519972635 0.6771533542769865 0.492806519972635 0.01285550469839841
+0.6805651800042887 0.49145079240810385 0.6805651800042886 0.4914507924081039 0.02425205986333043
+0.7026772191289756 0.47228070241941333 0.7026772191289757 0.47228070241941333 0.09726517104174472
+0.7061210095439873 0.4706552152214177 0.7061210095439873 0.4706552152214177 0.10352964997234122
+0.7102183044891541 0.46568306892110645 0.7102183044891541 0.46568306892110645 0.11658037134691575
+0.7095509340021678 0.46911323271806393 0.7095509340021678 0.469113232718064 0.10888415255228334
+0.7137507040282134 0.4641243216897387 0.7137507040282135 0.4641243216897388 0.12107978242744766
+0.7170468040816044 0.46240299208035124 0.7170468040816044 0.46240299208035124 0.12536992838726682
+0.7204591078439369 0.4608495072593961 0.7204591078439369 0.46084950725939605 0.12891777593069353
+0.7246036254731232 0.45576753062025827 0.7246036254731232 0.45576753062025827 0.139958627427462
+0.7279926879433103 0.45408077006711806 0.7279926879433103 0.45408077006711806 0.14306404977957055
+0.7314405417675979 0.45237163161568206 0.7314405417675979 0.452371631615682 0.1460592561412829
+0.734947423524878 0.4507197760510328 0.734947423524878 0.4507197760510328 0.14881677763175696
+0.723949826765054 0.4593413909467736 0.723949826765054 0.4593413909467737 0.13198112743501803
+0.7383053875521111 0.4495165271839301 0.738305387552111 0.44951652718393015 0.1506513507241198
+0.7415183435641184 0.44839854638350113 0.7415183435641185 0.44839854638350113 0.15230630633925016
+0.7448204126391085 0.4469280042276626 0.7448204126391085 0.4469280042276626 0.15480759545169323
+0.7481312762195168 0.4453740607077858 0.7481312762195168 0.4453740607077858 0.15756384843469265
+0.7517655530432096 0.44036525986566727 0.7517655530432096 0.44036525986566727 0.16814781636058038
+0.7514967989781128 0.4437829961374114 0.7514967989781128 0.4437829961374114 0.160460703048813
+0.7585610195364233 0.43704792322025837 0.7585610195364233 0.43704792322025837 0.17421196274124437
+0.7551515440472601 0.43871360697220846 0.7551515440472601 0.43871360697220846 0.1711587846184375
+0.7620094375175107 0.43535516092496396 0.7620094375175107 0.43535516092496396 0.17729863289392625
+0.7656152192122821 0.4299833359656868 0.7656152192122821 0.4299833359656868 0.18872079707986322
+0.7720496553246466 0.4261717540627748 0.7720496553246466 0.4261717540627748 0.1950864519821539
+0.7690280373132102 0.4281303552761004 0.7690280373132102 0.4281303552761004 0.19182403179257582
+0.77493032468276 0.42692521338279116 0.77493032468276 0.4269252133827911 0.1922929536225542
+0.7655094176817578 0.4336341847166005 0.7655094176817578 0.4336341847166005 0.1803771256442225
+0.7774652793641768 0.42595932855506224 0.7774652793641766 0.4259593285550622 0.1933950126342041
+0.781724700944092 0.42161416901911297 0.7817247009440919 0.4216141690191129 0.20069143769546624
+0.7801567507699655 0.4246327614600305 0.7801567507699655 0.4246327614600305 0.19511399088910775
+0.7849786731943778 0.4222829370944581 0.7849786731943778 0.4222829370944581 0.19772598117822104
+0.7878827810113055 0.4173462014652325 0.7878827810113055 0.41734620146523244 0.20587593196166162
+0.7877441546097419 0.4209051563018354 0.7877441546097419 0.4209051563018354 0.19906874609274142
+0.7909764597395106 0.4155459575512832 0.7909764597395106 0.41554595755128326 0.20739335458810837
+0.7940718510272751 0.41375616267781584 0.7940718510272751 0.41375616267781584 0.2086443734054881
+0.7975049826364325 0.40897208216067626 0.7975049826364325 0.4089720821606763 0.21495484177128768
+0.7966407083498814 0.41209627994526554 0.7966407083498814 0.41209627994526554 0.20982449813006823
+0.8008668368319761 0.4077241343092318 0.8008668368319761 0.40772413430923177 0.21444465622590766
+0.8039664873315533 0.4056839553344205 0.8039664873315534 0.4056839553344204 0.21551604766305976
+0.8071460175932393 0.4036831588030303 0.8071460175932393 0.4036831588030303 0.21634772631067903
+0.8103641624906017 0.40168737600941284 0.8103641624906018 0.40168737600941284 0.2171041549434964
+0.8136444072945169 0.39963894623257373 0.8136444072945169 0.39963894623257373 0.2179238826988759
+0.8169796700342157 0.3975355940783898 0.8169796700342157 0.3975355940783898 0.21888387022251685
+0.8203351372715328 0.39542482481631686 0.8203351372715328 0.39542482481631686 0.2199928142363252
+0.8237085010919469 0.39331555103622934 0.8237085010919468 0.39331555103622934 0.22129344656471053
+0.827092430134417 0.3912152660836081 0.827092430134417 0.3912152660836081 0.22281997830208286
+0.8304810750812123 0.38912144127904663 0.8304810750812123 0.38912144127904663 0.22460379468186661
+0.833871222900619 0.38702928677972054 0.833871222900619 0.38702928677972054 0.22665875550386996
+0.8372616018318908 0.38493723849369776 0.8372616018318908 0.38493723849369776 0.22897337691927833
+0.8406519851270597 0.38284518828449265 0.8406519851270599 0.3828451882844926 0.2315151680451002
+0.8440423684222287 0.38075313807528754 0.8440423684222287 0.38075313807528754 0.23423499761220848
+0.8474327517173976 0.37866108786608244 0.8474327517173975 0.3786610878660825 0.23707005642692372
+0.8508231350125666 0.3765690376568773 0.8508231350125666 0.3765690376568773 0.23994721971547375
+0.8542135183077355 0.3744769874476722 0.8542135183077356 0.37447698744767216 0.24278677616248331
+0.8576039016029045 0.3723849372384671 0.8576039016029045 0.3723849372384671 0.2455062477607898
+0.8609942848980734 0.370292887029262 0.8609942848980733 0.37029288702926205 0.24802407631856607
+0.8643846681932423 0.3682008368200569 0.8643846681932423 0.3682008368200569 0.2502630143511548
+0.8677750514884113 0.3661087866108518 0.8677750514884114 0.3661087866108517 0.2521531183745862
+0.8711654347835802 0.36401673640164667 0.8711654347835802 0.36401673640164667 0.253634292566528
+0.8745558180787492 0.36192468619244156 0.874555818078749 0.3619246861924416 0.2546583666782565
+0.8779462013739181 0.35983263598323645 0.8779462013739181 0.35983263598323645 0.25519071398951193
+0.881336584669087 0.35774058577403134 0.8813365846690872 0.3577405857740313 0.25521142509642797
+0.884726967964256 0.35564853556482623 0.884726967964256 0.35564853556482623 0.2547160542550831
+0.8881173512594249 0.3535564853556211 0.8881173512594248 0.3535564853556212 0.25371594964441924
+0.8915077345545939 0.351464435146416 0.8915077345545939 0.351464435146416 0.2522381696497495
+0.8948981178497628 0.3493723849372109 0.8948981178497629 0.34937238493721084 0.2503249761509037
+0.8982885011449318 0.3472803347280058 0.8982885011449318 0.3472803347280058 0.24803288481484378
+0.9016788844401007 0.3451882845188007 0.9016788844401006 0.34518828451880074 0.24543124384949033
+0.9050692677352696 0.34309623430959557 0.9050692677352696 0.34309623430959557 0.24260030956661738
+0.9084596510304386 0.34100418410039046 0.9084596510304387 0.3410041841003904 0.23962879329091732
+0.9118500343256075 0.33891213389118535 0.9118500343256075 0.33891213389118535 0.23661087415467022
+0.9152404176207765 0.33682008368198024 0.9152404176207763 0.3368200836819803 0.23364271039738685
+0.9186308009159454 0.33472803347277513 0.9186308009159454 0.33472803347277513 0.23081854017388784
+0.9220211842111143 0.33263598326357 0.9220211842111145 0.33263598326356997 0.22822653919058175
+0.9254115675062833 0.3305439330543649 0.9254115675062833 0.3305439330543649 0.22594468718220043
+0.9288019508014522 0.3284518828451598 0.9288019508014521 0.32845188284515986 0.22403697048258917
+0.9321923340966212 0.3263598326359547 0.9321923340966212 0.3263598326359547 0.22255028992482104
+0.9355827173917901 0.3242677824267496 0.9355827173917902 0.32426778242674953 0.22151242893498643
+0.938973100686959 0.3221757322175445 0.938973100686959 0.3221757322175445 0.22093135332946504
+0.942363483982128 0.32008368200833937 0.9423634839821279 0.3200836820083394 0.22079596833621465
+0.9457538672772969 0.31799163179913426 0.9457538672772969 0.31799163179913426 0.22107827694677587
+0.9491442505724659 0.31589958158992915 0.949144250572466 0.3158995815899291 0.2217367073557516
+0.9525346338676348 0.31380753138072404 0.9525346338676348 0.31380753138072404 0.22272024531547618
+0.9559250171628038 0.3117154811715189 0.9559250171628036 0.311715481171519 0.22397294388300396
+0.9593154004579727 0.3096234309623138 0.9593154004579727 0.3096234309623138 0.22543839056142786
+0.9627057837531416 0.3075313807531087 0.9627057837531418 0.30753138075310865 0.22706377376249973
+0.9660961670483106 0.3054393305439036 0.9660961670483106 0.3054393305439036 0.2288032812032019
+0.9694865503434795 0.3033472803346985 0.9694865503434794 0.30334728033469854 0.23062065787039873
+0.9728769336386485 0.3012552301254934 0.9728769336386485 0.3012552301254934 0.23249083407786195
+0.9762673169338174 0.29916317991628827 0.9762673169338175 0.2991631799162882 0.23440059824377305
+0.9796577002289864 0.29707112970708316 0.9796577002289864 0.29707112970708316 0.23634833569466476
+0.9830480835241553 0.29497907949787805 0.9830480835241552 0.2949790794978781 0.23834289002650175
+0.9864384668193242 0.29288702928867294 0.9864384668193242 0.29288702928867294 0.24040163448493804
+0.9898288501144932 0.29079497907946783 0.9898288501144933 0.2907949790794678 0.242547873118881
+0.9932192334096621 0.2887029288702627 0.9932192334096621 0.2887029288702627 0.2448077274851235
+0.29288702928870325 0.9932192334096621 0.2928870292887033 0.9932192334096621 0.19166770232552918
+0.29497907949790825 0.9898288501144932 0.2949790794979083 0.9898288501144933 0.19341520345201113
+0.29707112970711336 0.9864384668193242 0.29707112970711336 0.9864384668193242 0.19545450577861342
+0.29916317991631836 0.9830480835241553 0.29916317991631836 0.9830480835241552 0.19776469282801065
+0.30125523012552335 0.9796577002289865 0.30125523012552335 0.9796577002289865 0.20032015347267548
+0.30334728033472835 0.9762673169338176 0.30334728033472835 0.9762673169338177 0.20309103138527443
+0.3054393305439333 0.9728769336386487 0.3054393305439333 0.9728769336386486 0.20604373706632603
+0.30753138075313824 0.9694865503434796 0.3075313807531383 0.9694865503434796 0.20914151942571188
+0.3096234309623433 0.9660961670483106 0.3096234309623433 0.9660961670483106 0.21234509398166382
+0.3117154811715483 0.9627057837531418 0.3117154811715483 0.9627057837531418 0.21561332428706662
+0.3138075313807533 0.9593154004579727 0.3138075313807533 0.9593154004579727 0.21890395225439493
+0.3158995815899583 0.9559250171628038 0.3158995815899583 0.9559250171628036 0.22217437173971658
+0.31799163179916345 0.9525346338676348 0.3179916317991634 0.9525346338676348 0.22538243819386275
+0.3200836820083685 0.949144250572466 0.3200836820083685 0.949144250572466 0.22848730551332985
+0.32217573221757356 0.9457538672772969 0.32217573221757356 0.9457538672772969 0.23145027950983119
+0.3242677824267787 0.942363483982128 0.32426778242677873 0.9423634839821279 0.2342356757082222
+0.32635983263598367 0.938973100686959 0.3263598326359837 0.938973100686959 0.2368116674778741
+0.3284518828451888 0.9355827173917901 0.3284518828451888 0.9355827173917902 0.23915110876682552
+0.3305439330543938 0.9321923340966212 0.3305439330543938 0.9321923340966212 0.24123231388135755
+0.3326359832635988 0.9288019508014522 0.3326359832635988 0.9288019508014521 0.2430397747673839
+0.3347280334728038 0.9254115675062834 0.3347280334728038 0.9254115675062834 0.2445647940467495
+0.3368200836820087 0.9220211842111145 0.3368200836820087 0.9220211842111145 0.24580600962089852
+0.3389121338912137 0.9186308009159454 0.3389121338912137 0.9186308009159454 0.24676978402762687
+0.3410041841004188 0.9152404176207765 0.3410041841004188 0.9152404176207763 0.2474704290906419
+0.34309623430962377 0.9118500343256075 0.34309623430962377 0.9118500343256075 0.2479302340719081
+0.3451882845188289 0.9084596510304386 0.3451882845188288 0.9084596510304387 0.24817926408342927
+0.34728033472803393 0.9050692677352696 0.34728033472803393 0.9050692677352696 0.248254895767943
+0.349372384937239 0.9016788844401007 0.349372384937239 0.9016788844401006 0.2482010603244802
+0.35146443514644404 0.8982885011449319 0.35146443514644404 0.8982885011449319 0.24806717115388954
+0.35355648535564904 0.8948981178497629 0.35355648535564904 0.8948981178497629 0.24790672607618328
+0.3556485355648541 0.8915077345545941 0.35564853556485415 0.891507734554594 0.24777559325562706
+0.3577405857740591 0.8881173512594251 0.35774058577405915 0.8881173512594253 0.247730015879615
+0.35983263598326415 0.8847269679642563 0.35983263598326415 0.8847269679642563 0.2478244021071915
+0.3619246861924692 0.8813365846690874 0.3619246861924692 0.8813365846690874 0.2481090008078536
+0.3640167364016742 0.8779462013739184 0.3640167364016742 0.8779462013739184 0.2486275951658797
+0.3661087866108792 0.8745558180787495 0.3661087866108792 0.8745558180787495 0.24941536892973915
+0.3682008368200842 0.8711654347835806 0.3682008368200842 0.8711654347835806 0.2504971074401498
+0.3702928870292892 0.8677750514884117 0.3702928870292892 0.8677750514884117 0.2518858828566887
+0.3723849372384942 0.8643846681932428 0.3723849372384942 0.8643846681932427 0.2535823391510473
+0.3744769874476992 0.860994284898074 0.3744769874476992 0.860994284898074 0.2555746410678031
+0.3765690376569043 0.857603901602905 0.37656903765690425 0.857603901602905 0.25783909028424223
+0.3786610878661093 0.8542135183077362 0.37866108786610925 0.8542135183077361 0.2603413517197359
+0.3807531380753143 0.8508231350125672 0.38075313807531425 0.8508231350125673 0.26303818323846156
+0.3828451882845193 0.8474327517173983 0.38284518828451924 0.8474327517173982 0.26587952975791246
+0.3849372384937243 0.8440423684222295 0.38493723849372424 0.8440423684222295 0.26881083051040905
+0.3870292887029294 0.8406519851270605 0.3870292887029294 0.8406519851270605 0.2717753940883145
+0.3891213389128663 0.8372616018318992 0.3891213389128663 0.8372616018318993 0.27471671512831897
+0.3912133891276488 0.8338712185369715 0.3912133891276488 0.8338712185369715 0.2775806331246475
+0.3933054393369754 0.8304808352416216 0.3933054393369754 0.8304808352416216 0.2803172628156314
+0.395396974561264 0.8270913611499621 0.395396974561264 0.8270913611499621 0.28288194587982174
+0.3974874884931499 0.8237038877506767 0.3974874884931499 0.8237038877506767 0.28523739401584586
+0.3995761875607405 0.8203201882606819 0.3995761875607405 0.820320188260682 0.2873545688275687
+0.4016625902708737 0.8169428393628358 0.40166259027087375 0.8169428393628358 0.28921381152109465
+0.40375019837299914 0.8135716724308439 0.40375019837299914 0.8135716724308439 0.2908073957731457
+0.40584725290946283 0.8101985656349183 0.40584725290946283 0.8101985656349183 0.2921399917601301
+0.40797716246507026 0.80680317216621 0.40797716246507026 0.80680317216621 0.29322517334308484
+0.41018014554413473 0.8033484220299566 0.4101801455441347 0.8033484220299566 0.29408435738088695
+0.4137020011010695 0.7960065735872175 0.4137020011010695 0.7960065735872175 0.295258583553093
+0.4127443595142539 0.7998051264269188 0.4127443595142539 0.7998051264269188 0.2946955554817791
+0.4173455978615788 0.7906559454896116 0.4173455978615788 0.7906559454896116 0.2955751820100195
+0.4169402838183681 0.7942468650542871 0.4169402838183682 0.7942468650542871 0.2950255207238704
+0.4209090376860302 0.7854365526644297 0.4209090376860302 0.7854365526644297 0.29566658402742724
+0.4206048666208413 0.7891031289185997 0.4206048666208413 0.7891031289185997 0.29504161180196314
+0.42843597725446114 0.7710275054694637 0.4284359772544612 0.7710275054694637 0.29703275157809056
+0.4279831699183824 0.7749220922686834 0.4279831699183824 0.7749220922686834 0.29580397649227114
+0.4241493405906469 0.7839730039199768 0.42414934059064696 0.7839730039199768 0.29489172899997707
+0.42440526869807 0.7802617191838546 0.42440526869807 0.7802617191838546 0.2956921094922747
+0.42748293376848523 0.7788016696265327 0.4274829337684852 0.7788016696265326 0.2947846034158091
+0.4319784192896943 0.7650913502276421 0.4319784192896943 0.7650913502276421 0.298057018350066
+0.4318151335663709 0.7690532574117794 0.43181513356637086 0.7690532574117794 0.296156985745619
+0.4351936157639778 0.7630504589786021 0.4351936157639778 0.7630504589786021 0.29719746083775084
+0.4383966769645041 0.7572297022338456 0.4383966769645041 0.7572297022338456 0.29875090485121486
+0.43834397091408667 0.7610250181162113 0.43834397091408667 0.7610250181162113 0.2960725216562547
+0.4414599219425874 0.7552410610989964 0.4414599219425874 0.7552410610989964 0.2975710298210459
+0.4444732721205089 0.7532505757274377 0.44447327212050886 0.7532505757274377 0.29609440668638703
+0.4474313500283105 0.7512497497655654 0.4474313500283105 0.7512497497655654 0.2943250731575678
+0.45032543439617156 0.7492198993225991 0.4503254343961716 0.7492198993225991 0.29228581541772103
+0.453146918136258 0.7471308634329136 0.453146918136258 0.7471308634329136 0.2900246715825943
+0.46885299588644724 0.7191478858042022 0.4688529958864472 0.7191478858042021 0.28954953113005083
+0.4706493901245391 0.7162272946649475 0.4706493901245391 0.7162272946649475 0.28815391427012027
+0.45582029933233126 0.7448309252668865 0.4558202993323313 0.7448309252668865 0.2878745461220226
+0.4584204920235518 0.7427195344153414 0.4584204920235518 0.7427195344153414 0.28527581777942723
+0.4611551566721903 0.7406064551103866 0.46115515667219037 0.7406064551103865 0.2819966833180587
+0.46367011423369153 0.7345783684984912 0.4636701142336915 0.7345783684984912 0.28323507279503257
+0.4640228497791465 0.7384103320332999 0.4640228497791465 0.7384103320332999 0.27802390714023306
+0.46615485594988443 0.7287953128954462 0.46615485594988443 0.7287953128954462 0.28418886451835274
+0.4665819211455822 0.7325815111369121 0.4665819211455822 0.7325815111369121 0.27847979269220874
+0.4685777316681886 0.7230314437267973 0.46857773166818856 0.7230314437267973 0.2850875606645051
+0.4689676042717688 0.7267875672509313 0.4689676042717688 0.7267875672509313 0.2791820443326533
+0.471304948755232 0.7217080372222873 0.471304948755232 0.7217080372222873 0.27882034362177355
+0.4752905846919638 0.7092538402216014 0.4752905846919638 0.7092538402216014 0.2829466181439821
+0.47785605693673816 0.7070524492276554 0.4778560569367381 0.7070524492276554 0.27689190235496947
+0.47334058367411347 0.7150352372511884 0.4733405836741134 0.7150352372511884 0.28141159516006947
+0.47589654579403956 0.7129136314163357 0.47589654579403956 0.7129136314163357 0.2757203938716133
+0.48051273875956074 0.7047647934491856 0.48051273875956074 0.7047647934491855 0.26999216476172433
+0.5024653699850298 0.6537696543805289 0.5024653699850298 0.6537696543805289 0.25931759591843834
+0.4832791519393036 0.7019698742232736 0.48327915193930354 0.7019698742232735 0.26270735768925246
+0.4859823273244615 0.699068248126776 0.4859823273244615 0.699068248126776 0.25513665881060393
+0.4885370558579819 0.6962359029513552 0.48853705585798185 0.6962359029513552 0.24753532064227599
+0.4909986055920392 0.6934272411984096 0.4909986055920392 0.6934272411984096 0.2398216309978695
+0.503985881822486 0.6572473305546447 0.5039858818224862 0.6572473305546448 0.2407918477738544
+0.4933845696890928 0.6906219191362104 0.4933845696890928 0.6906219191362104 0.23203885246299297
+0.49567520489393074 0.687800566530567 0.49567520489393074 0.687800566530567 0.22442899891704196
+0.5056408088267803 0.660760796815167 0.5056408088267803 0.660760796815167 0.22225617416753804
+0.5074173280715437 0.6642384720397767 0.5074173280715436 0.6642384720397767 0.20416642893446194
+0.5090229671532228 0.6679813637251836 0.5090229671532228 0.6679813637251836 0.18765398411032488
+0.5072903436589593 0.6708683051719392 0.5072903436589593 0.6708683051719392 0.1905329848991082
+0.5058174143565813 0.6739158148518279 0.5058174143565813 0.6739158148518279 0.19242790066732532
+0.5039650465157325 0.6765774349477227 0.5039650465157325 0.6765774349477227 0.1976803758441629
+0.5020275368880108 0.6793430825073622 0.5020275368880108 0.6793430825073622 0.20355039361043162
+0.49789380148714674 0.6849818811927529 0.49789380148714674 0.6849818811927529 0.21696904093706673
+0.5000089682082356 0.6821567271201271 0.5000089682082356 0.6821567271201271 0.20998089263468697
+0.504486881860243 0.6509664197019672 0.504486881860243 0.6509664197019672 0.2563614960035974
+0.5065839692807408 0.6478512527549404 0.5065839692807409 0.6478512527549404 0.25496826457892313
+0.5092652831317704 0.6462318337696878 0.5092652831317704 0.6462318337696878 0.24649249331043319
+0.5102282573568206 0.643448075693677 0.5102282573568208 0.643448075693677 0.25208447983907295
+0.5117850719162005 0.6403394987800303 0.5117850719162006 0.6403394987800303 0.25718346862736813
+0.5133401868435832 0.6374014986415364 0.5133401868435832 0.6374014986415365 0.263127168005814
+0.5152691997500655 0.6339947141120184 0.5152691997500655 0.6339947141120182 0.2718338073163323
+0.515925123762079 0.6308325964821256 0.515925123762079 0.6308325964821256 0.28514395955627586
+0.5176518615641331 0.6288962897734383 0.5176518615641331 0.6288962897734383 0.2908169549747208
+0.519297772225309 0.622625846102719 0.519297772225309 0.6226258461027189 0.3229774734188951
+0.5197551398011165 0.6192710849458006 0.5197551398011165 0.6192710849458006 0.3428498521889834
+0.5186546026129174 0.625750758741169 0.5186546026129174 0.625750758741169 0.30601234751040557
+0.5217907567360726 0.6217502241236674 0.5217907567360726 0.6217502241236675 0.326285931135182
+0.5150022093796512 0.6140400011787572 0.5150022093796512 0.6140400011787571 0.39425701604852265
+0.5179125983212727 0.6163453709732974 0.5179125983212726 0.6163453709732974 0.36632928381640045
+0.5219955546374673 0.618751567069755 0.5219955546374672 0.6187515670697551 0.344349231436881
+0.5204048387833505 0.616629639857242 0.5204048387833505 0.616629639857242 0.359129090722213
+0.5165434472001583 0.6097450553850752 0.5165434472001583 0.6097450553850753 0.42269736056424395
+0.5179621447066644 0.6056109788284975 0.5179621447066644 0.6056109788284975 0.4532070738791692
+0.5943602204234483 0.5506943684774567 0.5943602204234483 0.5506943684774567 0.693976641409087
+0.5989279311322282 0.5503234283448494 0.5989279311322281 0.5503234283448494 0.6339460852484717
+0.5921875077486127 0.5545485505373703 0.5921875077486128 0.5545485505373703 0.7824229415977303
+0.6417372409710431 0.5251579197938657 0.6417372409710431 0.5251579197938657 0.1450602395809908
+0.6376679972749755 0.5268439040301257 0.6376679972749754 0.5268439040301257 0.16904482875346627
+0.6351499111722836 0.5291898359628937 0.6351499111722836 0.5291898359628937 0.1858445341722747
+0.6071613495930637 0.54865318306443 0.6071613495930636 0.54865318306443 0.5258381744805685
+0.6036570082701256 0.5498490806382184 0.6036570082701255 0.5498490806382184 0.576629182905794
+0.6066943851038261 0.551188819698648 0.6066943851038261 0.551188819698648 0.5655638926038153
+0.6302614334464418 0.5325765278507547 0.6302614334464418 0.5325765278507547 0.22241729058157958
+0.6342886956601306 0.5319487674071363 0.6342886956601306 0.5319487674071363 0.19773667760210148
+0.6286880287271711 0.5360075350599735 0.6286880287271711 0.5360075350599735 0.24762289395705842
+0.6232405802201808 0.5379590026883438 0.6232405802201808 0.5379590026883437 0.2920335181829867
+0.6261856673656272 0.5380005247347996 0.6261856673656272 0.5380005247347996 0.2749138176380858
+0.6114152796646948 0.5465290374476925 0.6114152796646949 0.5465290374476925 0.4609277081484991
+0.6159482343588808 0.5442194787277002 0.6159482343588808 0.5442194787277002 0.3983803929818936
+0.6140758113994271 0.5462388378730081 0.6140758113994271 0.5462388378730081 0.4360497571651548
+0.6105984809262167 0.5487114438492956 0.6105984809262167 0.5487114438492956 0.4961471653990875
+0.6208180709761597 0.5404357673726192 0.6208180709761598 0.5404357673726192 0.3271718968062081
+0.6194880667929825 0.5434499025557153 0.6194880667929824 0.5434499025557153 0.3652689905952447
+0.652234900831054 0.5136800317108953 0.6522349008310541 0.5136800317108953 0.09810050455032428
+0.6558660488670538 0.5125730096787012 0.6558660488670539 0.5125730096787012 0.07926791483871047
+0.650820924508336 0.5172008482081876 0.650820924508336 0.5172008482081876 0.10026697129037178
+0.6461230314443822 0.5213675383298718 0.6461230314443823 0.5213675383298718 0.12181536854121257
+0.6496014139223857 0.5204171186194247 0.6496014139223857 0.5204171186194247 0.10320779802280718
+0.6449538844000935 0.52436257306515 0.6449538844000936 0.52436257306515 0.12715697472271567
+0.6732318191989979 0.49736031813322923 0.6732318191989979 0.4973603181332292 0.011563845345190582
+0.6765925613787509 0.49598439659952853 0.6765925613787509 0.4959843965995285 0.011981125826297486
+0.6689857587360608 0.501426919813564 0.6689857587360608 0.501426919813564 0.0260725475630342
+0.6724980938279028 0.5003842257573868 0.6724980938279028 0.5003842257573868 0.013974124375249633
+0.6607318477353263 0.5077427717812663 0.6607318477353264 0.5077427717812663 0.060003338103914956
+0.6643853084701603 0.5062211553744972 0.6643853084701603 0.5062211553744972 0.04349369430421297
+0.6595738438015853 0.511370125663083 0.6595738438015853 0.511370125663083 0.06119323525352784
+0.6681417663226692 0.5048976029138196 0.6681417663226692 0.5048976029138196 0.027654646942817083
+0.6919499856955088 0.48047607247096763 0.6919499856955088 0.48047607247096763 0.06633696370141763
+0.6954642387970895 0.47896953654591895 0.6954642387970895 0.47896953654591895 0.07524170216797611
+0.6989447593318312 0.4774469972573887 0.6989447593318312 0.4774469972573887 0.08315994549397741
+0.7023341491964933 0.47585123270274404 0.7023341491964933 0.47585123270274404 0.09019304517550403
+0.6880279374824226 0.48535953041622 0.6880279374824226 0.48535953041622 0.05065814733582354
+0.69154367169612 0.4839360264698462 0.69154367169612 0.4839360264698462 0.06050193646741064
+0.684031440835826 0.4901076679367142 0.684031440835826 0.4901076679367142 0.03559189336787613
+0.6875319974013938 0.4887510976863392 0.6875319974013938 0.4887510976863392 0.04620361018488719
+0.6800031288839553 0.49467799667028695 0.6800031288839553 0.49467799667028695 0.021721281183873595
+0.6834755919540633 0.49340195436662504 0.6834755919540633 0.4934019543666251 0.03253518022931312
+0.7056139940270295 0.47418586965144865 0.7056139940270295 0.47418586965144865 0.09647694698031044
+0.7089033065470784 0.47258361147666944 0.7089033065470786 0.47258361147666944 0.10200362190074146
+0.7130143136610766 0.4676407032043033 0.7130143136610766 0.46764070320430323 0.11344754192770017
+0.7123038970802782 0.47109281559540206 0.7123038970802781 0.471092815595402 0.10678002521391676
+0.7164539780810285 0.46611514003546645 0.7164539780810285 0.46611514003546645 0.1175503269272402
+0.719850943162761 0.4644831736269048 0.719850943162761 0.4644831736269048 0.12138624455294976
+0.7233246031218324 0.4629611496128101 0.7233246031218324 0.4629611496128101 0.12465748818596255
+0.7273895338961519 0.45775873470261813 0.7273895338961519 0.45775873470261813 0.13495560911016455
+0.7308305025905639 0.4561304013771403 0.7308305025905639 0.4561304013771403 0.137856689516334
+0.7343023773848133 0.4545169342298549 0.7343023773848133 0.4545169342298549 0.14062587300466325
+0.7377453714227101 0.45302331430604176 0.7377453714227101 0.45302331430604176 0.14314393891060284
+0.7267821611664048 0.46140338161192807 0.7267821611664048 0.46140338161192807 0.12769050931356382
+0.741163133105273 0.4516494283786515 0.7411631331052729 0.45164942837865146 0.14543229988481055
+0.7444541794466718 0.45022615197943966 0.7444541794466718 0.45022615197943966 0.14787298570113885
+0.7477996600087122 0.4487256777709967 0.7477996600087122 0.4487256777709967 0.15054895170361346
+0.7511762067870839 0.44718851556888223 0.7511762067870839 0.44718851556888223 0.15337900095958523
+0.754892707484386 0.44217697688211466 0.754892707484386 0.44217697688211466 0.16344321914426638
+0.7545821680512431 0.4456299231539635 0.7545821680512431 0.4456299231539635 0.15632674279399705
+0.761748449334437 0.4389270041606514 0.761748449334437 0.4389270041606514 0.1695613064574302
+0.7583085159330475 0.4405602368065082 0.7583085159330475 0.4405602368065082 0.16648304998821747
+0.7652333635259172 0.43726534432372016 0.7652333635259172 0.43726534432372016 0.17266196382597365
+0.7690556137016483 0.4318773178828342 0.7690556137016483 0.4318773178828342 0.18342458460316988
+0.7729262958036265 0.4299040052280296 0.7729262958036264 0.4299040052280296 0.18669855848465391
+0.7766269484651658 0.429205776184415 0.7766269484651658 0.429205776184415 0.1871397365040592
+0.7687822890540831 0.43558695706798234 0.7687822890540831 0.4355869570679824 0.1757128807265357
+0.7803408629489752 0.4277080562397904 0.7803408629489752 0.4277080562397904 0.18905810724063762
+0.7834555869259126 0.42535101165112066 0.7834555869259124 0.4253510116511206 0.19254916289056498
+0.7869809630054316 0.4243164504879865 0.7869809630054316 0.42431645048798655 0.19318975381643974
+0.7907071082324583 0.4191465582700413 0.7907071082324583 0.4191465582700413 0.20083239030248978
+0.7902858135159062 0.42274213660987314 0.7902858135159062 0.42274213660987314 0.19468705632176342
+0.7938902358938983 0.4173173523712042 0.7938902358938983 0.4173173523712042 0.20236727193181894
+0.7973238461314123 0.41527682178055714 0.7973238461314124 0.4152768217805571 0.2038683122644305
+0.800063637425558 0.41217122835984815 0.8000636374255581 0.41217122835984815 0.20737408142959385
+0.8038878406230766 0.4099854170169221 0.8038878406230766 0.4099854170169221 0.20836711660341758
+0.8071703810817041 0.40790315018774564 0.8071703810817041 0.40790315018774564 0.2094418021880676
+0.8104162758232983 0.4058514006242127 0.8104162758232983 0.4058514006242127 0.21043557669477164
+0.813689301090104 0.40379720695394217 0.813689301090104 0.4037972069539421 0.21141501176788233
+0.8170005804600832 0.40171879630545854 0.8170005804600832 0.40171879630545854 0.21246984994832188
+0.8203463596393172 0.3996140139305808 0.8203463596393172 0.3996140139305808 0.2136702388358889
+0.8237133025089723 0.39750427381434855 0.8237133025089723 0.39750427381434855 0.21504717309670732
+0.8270938708617681 0.39540098984418065 0.8270938708617681 0.39540098984418065 0.2166346257469506
+0.8304813785749388 0.3933056575847605 0.8304813785749389 0.3933056575847605 0.21846446422783708
+0.8338712439927886 0.39121337790274957 0.8338712439927886 0.39121337790274957 0.22055832480740026
+0.8372616018318908 0.389121338912108 0.8372616018318908 0.389121338912108 0.22291472999960735
+0.8406519851270597 0.3870292887029029 0.8406519851270599 0.38702928870290293 0.22550950082274632
+0.8440423684222287 0.38493723849369776 0.8440423684222287 0.38493723849369776 0.2283009277938115
+0.8474327517173976 0.38284518828449265 0.8474327517173975 0.3828451882844926 0.23123256500769318
+0.8508231350125666 0.38075313807528754 0.8508231350125666 0.38075313807528754 0.23423623119265877
+0.8542135183077355 0.37866108786608244 0.8542135183077356 0.3786610878660825 0.2372355058909615
+0.8576039016029045 0.3765690376568773 0.8576039016029045 0.3765690376568773 0.24014942925422336
+0.8609942848980734 0.3744769874476722 0.8609942848980733 0.37447698744767216 0.2428961649626812
+0.8643846681932423 0.3723849372384671 0.8643846681932423 0.3723849372384671 0.24539644278419906
+0.8677750514884113 0.370292887029262 0.8677750514884114 0.37029288702926205 0.24757665781334579
+0.8711654347835802 0.3682008368200569 0.8711654347835802 0.3682008368200569 0.24937155688972854
+0.8745558180787492 0.3661087866108518 0.874555818078749 0.3661087866108517 0.2507264836097764
+0.8779462013739181 0.36401673640164667 0.8779462013739181 0.36401673640164667 0.25159918044435686
+0.881336584669087 0.36192468619244156 0.8813365846690872 0.3619246861924416 0.2519611611309996
+0.884726967964256 0.35983263598323645 0.884726967964256 0.35983263598323645 0.25179867128436356
+0.8881173512594249 0.35774058577403134 0.8881173512594248 0.3577405857740313 0.2511132527950277
+0.8915077345545939 0.35564853556482623 0.8915077345545939 0.35564853556482623 0.24992192046177975
+0.8948981178497628 0.3535564853556211 0.8948981178497629 0.3535564853556212 0.2482569493843423
+0.8982885011449318 0.351464435146416 0.8982885011449318 0.351464435146416 0.24616526062029057
+0.9016788844401007 0.3493723849372109 0.9016788844401006 0.34937238493721084 0.24370738222598023
+0.9050692677352696 0.3472803347280058 0.9050692677352696 0.3472803347280058 0.24095595524173732
+0.9084596510304386 0.3451882845188007 0.9084596510304387 0.34518828451880074 0.2379937524101239
+0.9118500343256075 0.34309623430959557 0.9118500343256075 0.34309623430959557 0.2349111853092041
+0.9152404176207765 0.34100418410039046 0.9152404176207763 0.3410041841003904 0.23180329762841997
+0.9186308009159454 0.33891213389118535 0.9186308009159454 0.33891213389118535 0.22876628260153756
+0.9220211842111143 0.33682008368198024 0.9220211842111145 0.3368200836819803 0.22589362292280787
+0.9254115675062833 0.33472803347277513 0.9254115675062833 0.33472803347277513 0.22327202866221207
+0.9288019508014522 0.33263598326357 0.9288019508014521 0.33263598326356997 0.22097743218771512
+0.9321923340966212 0.3305439330543649 0.9321923340966212 0.3305439330543649 0.2190713701378081
+0.9355827173917901 0.3284518828451598 0.9355827173917902 0.32845188284515986 0.21759811697991074
+0.938973100686959 0.3263598326359547 0.938973100686959 0.3263598326359547 0.21658291049744363
+0.942363483982128 0.3242677824267496 0.9423634839821279 0.32426778242674953 0.2160315163889088
+0.9457538672772969 0.3221757322175445 0.9457538672772969 0.3221757322175445 0.2159312265399557
+0.9491442505724659 0.32008368200833937 0.949144250572466 0.3200836820083394 0.2162532033273057
+0.9525346338676348 0.31799163179913426 0.9525346338676348 0.31799163179913426 0.2169559118686287
+0.9559250171628038 0.31589958158992915 0.9559250171628036 0.3158995815899291 0.2179892612849594
+0.9593154004579727 0.31380753138072404 0.9593154004579727 0.31380753138072404 0.2192990257368033
+0.9627057837531416 0.3117154811715189 0.9627057837531418 0.311715481171519 0.22083113510198596
+0.9660961670483106 0.3096234309623138 0.9660961670483106 0.3096234309623138 0.2225354949614822
+0.9694865503434795 0.3075313807531087 0.9694865503434794 0.30753138075310865 0.2243690899396373
+0.9728769336386485 0.3054393305439036 0.9728769336386485 0.3054393305439036 0.2262982199824999
+0.9762673169338174 0.3033472803346985 0.9762673169338175 0.30334728033469854 0.22829980104982575
+0.9796577002289864 0.3012552301254934 0.9796577002289864 0.3012552301254934 0.23036172480758177
+0.9830480835241553 0.29916317991628827 0.9830480835241552 0.2991631799162882 0.23248231845230952
+0.9864384668193242 0.29707112970708316 0.9864384668193242 0.29707112970708316 0.23466898174540576
+0.9898288501144932 0.29497907949787805 0.9898288501144933 0.2949790794978781 0.23693611004520523
+0.9932192334096621 0.29288702928867294 0.9932192334096621 0.29288702928867294 0.23930244389921107
+0.2970711297071133 0.9932192334096621 0.2970711297071133 0.9932192334096621 0.19365157003810418
+0.2991631799163183 0.9898288501144933 0.2991631799163183 0.9898288501144933 0.195415122388557
+0.30125523012552335 0.9864384668193243 0.30125523012552335 0.9864384668193243 0.19747166620241152
+0.3033472803347283 0.9830480835241554 0.3033472803347283 0.9830480835241554 0.19980189395659956
+0.30543933054393335 0.9796577002289865 0.30543933054393335 0.9796577002289865 0.20238098088056197
+0.3075313807531383 0.9762673169338175 0.3075313807531383 0.9762673169338175 0.20517900644451706
+0.3096234309623433 0.9728769336386485 0.3096234309623433 0.9728769336386485 0.20816150262483282
+0.3117154811715483 0.9694865503434794 0.3117154811715483 0.9694865503434794 0.21129011703879927
+0.3138075313807533 0.9660961670483106 0.3138075313807533 0.9660961670483106 0.21452337560459908
+0.31589958158995834 0.9627057837531416 0.31589958158995834 0.9627057837531418 0.2178175273275403
+0.3179916317991635 0.9593154004579727 0.3179916317991635 0.9593154004579727 0.22112745298307004
+0.32008368200836856 0.9559250171628038 0.32008368200836856 0.9559250171628036 0.22440761955622465
+0.3221757322175737 0.9525346338676348 0.32217573221757373 0.9525346338676348 0.2276130629438435
+0.3242677824267787 0.9491442505724659 0.32426778242677873 0.949144250572466 0.2307003822826054
+0.3263598326359837 0.9457538672772969 0.3263598326359837 0.9457538672772969 0.23362873004408533
+0.32845188284518867 0.942363483982128 0.3284518828451887 0.9423634839821279 0.23636078252420736
+0.3305439330543937 0.938973100686959 0.3305439330543937 0.938973100686959 0.23886367540645279
+0.3326359832635988 0.9355827173917901 0.3326359832635988 0.9355827173917902 0.24110988861011415
+0.3347280334728038 0.9321923340966212 0.3347280334728038 0.9321923340966212 0.2430780636012344
+0.3368200836820088 0.9288019508014522 0.3368200836820088 0.9288019508014521 0.24475373472913117
+0.3389121338912138 0.9254115675062833 0.3389121338912138 0.9254115675062833 0.2461299539711201
+0.3410041841004188 0.9220211842111143 0.3410041841004188 0.9220211842111145 0.24720778578391656
+0.3430962343096238 0.9186308009159454 0.3430962343096238 0.9186308009159454 0.24799664571194543
+0.3451882845188289 0.9152404176207765 0.3451882845188288 0.9152404176207763 0.24851445325657182
+0.34728033472803393 0.9118500343256075 0.34728033472803393 0.9118500343256075 0.24878756672065452
+0.349372384937239 0.9084596510304386 0.349372384937239 0.9084596510304387 0.248850466018924
+0.3514644351464441 0.9050692677352696 0.35146443514644415 0.9050692677352696 0.24874514980067222
+0.35355648535564915 0.9016788844401007 0.35355648535564915 0.9016788844401006 0.24852021698775226
+0.35564853556485415 0.8982885011449319 0.35564853556485415 0.8982885011449319 0.2482296115194287
+0.35774058577405915 0.894898117849763 0.35774058577405915 0.8948981178497631 0.24793102421207378
+0.35983263598326415 0.8915077345545941 0.35983263598326415 0.891507734554594 0.24768396821068786
+0.3619246861924691 0.8881173512594251 0.36192468619246915 0.8881173512594253 0.2475475744754181
+0.36401673640167415 0.8847269679642562 0.36401673640167415 0.8847269679642561 0.24757818930927408
+0.36610878661087914 0.8813365846690874 0.36610878661087914 0.8813365846690874 0.24782689307065883
+0.3682008368200842 0.8779462013739184 0.3682008368200842 0.8779462013739184 0.2483370917322905
+0.3702928870292892 0.8745558180787495 0.3702928870292892 0.8745558180787495 0.24914235336350146
+0.37238493723849425 0.8711654347835807 0.37238493723849425 0.8711654347835808 0.2502646629245943
+0.3744769874476992 0.8677750514884117 0.3744769874476992 0.8677750514884117 0.2517132467321122
+0.3765690376569042 0.8643846681932428 0.3765690376569042 0.8643846681932427 0.25348407308434995
+0.37866108786610925 0.860994284898074 0.37866108786610925 0.860994284898074 0.25556007378688067
+0.3807531380753143 0.8576039016029051 0.38075313807531425 0.8576039016029052 0.2579120629904504
+0.3828451882845194 0.8542135183077362 0.3828451882845194 0.8542135183077361 0.2605002667661153
+0.3849372384937244 0.8508231350125672 0.3849372384937244 0.8508231350125673 0.26327632940706497
+0.3870292887029294 0.8474327517173984 0.3870292887029294 0.8474327517173984 0.266185636465464
+0.38912133891213446 0.8440423684222295 0.38912133891213446 0.8440423684222295 0.26916979063383867
+0.39121338912133946 0.8406519851270605 0.39121338912133946 0.8406519851270605 0.27216909089310115
+0.39330543933386647 0.8372616018319267 0.39330543933386647 0.8372616018319267 0.2751248913559734
+0.3953974895655139 0.8338712185380891 0.3953974895655139 0.8338712185380891 0.2779817465250643
+0.3974894994670115 0.8304809022091657 0.3974894994670115 0.8304809022091657 0.280689234272904
+0.3995812660623068 0.8270910532091759 0.3995812660623068 0.8270910532091759 0.28320330616769995
+0.4016724157198601 0.823703086304525 0.40167241571986007 0.823703086304525 0.2854872527444345
+0.4037624560695227 0.8203201087974851 0.4037624560695227 0.8203201087974851 0.2875126081383004
+0.40585172524068924 0.8169462506597397 0.4058517252406892 0.8169462506597397 0.2892605898641072
+0.40794382487606157 0.813583694911795 0.40794382487606157 0.813583694911795 0.2907235199597702
+0.4100453109096641 0.8102327858274284 0.41004531090966406 0.8102327858274284 0.2919028276783803
+0.41222312313082643 0.8069044674015842 0.41222312313082643 0.8069044674015843 0.2927888875159983
+0.4144040341858355 0.8036667210532785 0.41440403418583555 0.8036667210532785 0.29336787289415867
+0.4165350825647804 0.7979000094987911 0.4165350825647804 0.7979000094987913 0.2943632958439446
+0.4164537943682729 0.8011536736391953 0.41645379436827296 0.8011536736391953 0.29350757639783553
+0.4202765612119892 0.7926847116082246 0.4202765612119892 0.7926847116082246 0.29443513703320584
+0.420009877813567 0.7961775982734393 0.420009877813567 0.7961775982734393 0.29377476485273873
+0.4238663103145209 0.7876476162709003 0.4238663103145209 0.7876476162709003 0.2941788441830239
+0.42355684803561705 0.7912534574278041 0.42355684803561705 0.7912534574278042 0.29350007032881176
+0.43159377737993443 0.7734886045630178 0.4315937773799345 0.7734886045630178 0.2944240917649528
+0.4305546898904543 0.7770262994607604 0.43055468989045437 0.7770262994607604 0.29369639556197685
+0.4271243066469561 0.7862249465681557 0.42712430664695605 0.7862249465681557 0.29298120733190514
+0.427374699555706 0.782525867314486 0.427374699555706 0.782525867314486 0.2938004520108645
+0.4301080733745493 0.7809602312954442 0.4301080733745493 0.7809602312954443 0.2927216619660484
+0.43511731626082845 0.7669132691105007 0.43511731626082845 0.7669132691105007 0.2950426875141576
+0.4350867126483631 0.7707940695734877 0.4350867126483631 0.7707940695734877 0.29312811350645074
+0.4383125211295826 0.764839726497263 0.4383125211295826 0.764839726497263 0.2936811502931516
+0.4414424608903783 0.7590109814987709 0.44144246089037825 0.759010981498771 0.2946644674555721
+0.44144209332194073 0.7628013847799284 0.44144209332194073 0.7628013847799284 0.29204223111374655
+0.44449422611975353 0.7570001988164959 0.4444942261197536 0.7570001988164959 0.29296179894591057
+0.4474934251408349 0.7549732885339738 0.44749342514083496 0.7549732885339738 0.29097534803702946
+0.4504280383945891 0.7529047421395609 0.45042803839458917 0.7529047421395609 0.28873916828891527
+0.4532980422103812 0.7507944653725632 0.4532980422103812 0.7507944653725632 0.28625926280473707
+0.4561011537999388 0.7486331580344658 0.4561011537999388 0.7486331580344658 0.28356006377268933
+0.4731101674056842 0.7187875539026027 0.4731101674056842 0.7187875539026027 0.2771605483493818
+0.4588065415918892 0.7464406481981896 0.4588065415918892 0.7464406481981896 0.2806705508354624
+0.4615188587532311 0.7442983064601756 0.4615188587532311 0.7442983064601756 0.27731350906335234
+0.46429764191506784 0.742168282776125 0.4642976419150679 0.742168282776125 0.2733481198378854
+0.46697413041854735 0.7363614154461523 0.46697413041854735 0.7363614154461523 0.2731257642429581
+0.46723094820058314 0.7401089538852768 0.46723094820058314 0.7401089538852768 0.2684152898218451
+0.46946046412277664 0.7305603730405075 0.4694604641227766 0.7305603730405075 0.2732176285945788
+0.46996326980376346 0.7343800890070669 0.4699632698037634 0.7343800890070669 0.2674339592993982
+0.47161371263525964 0.7249996777410697 0.4716137126352597 0.7249996777410698 0.2737475368792332
+0.47223634065985803 0.7285230548811104 0.47223634065985803 0.7285230548811104 0.26763188645882674
+0.47436398970933247 0.7225467047901243 0.4743639897093325 0.7225467047901243 0.26828606686923745
+0.478489639680762 0.7107457632002313 0.478489639680762 0.7107457632002313 0.2693715906541843
+0.48115501107319597 0.7085072262486746 0.48115501107319597 0.7085072262486746 0.26222137495333125
+0.47638800996111974 0.7166387980231792 0.4763880099611198 0.7166387980231792 0.2690498779515594
+0.47908830320083534 0.7144631793376325 0.47908830320083534 0.7144631793376325 0.2622122100792186
+0.4842727638485894 0.7062629135202718 0.48427276384858947 0.7062629135202717 0.25257230200043607
+0.5059567678114589 0.6545661562700069 0.505956767811459 0.6545661562700068 0.23732220823714936
+0.48692593571916554 0.7028472441041139 0.48692593571916554 0.7028472441041139 0.24559317159020067
+0.4894947053859059 0.69995231916796 0.48949470538590584 0.6999523191679601 0.23775027010057093
+0.49198111411106793 0.6971238840403516 0.491981114111068 0.6971238840403516 0.2296795220944399
+0.4944063049111395 0.6942904111796596 0.4944063049111395 0.6942904111796596 0.22146995513842768
+0.5076173633435984 0.657970748258083 0.5076173633435984 0.6579707482580829 0.21882159090500153
+0.49674834063980455 0.6914334172534838 0.49674834063980455 0.6914334172534838 0.21336991233121114
+0.4990204407999282 0.6885761565885975 0.4990204407999282 0.6885761565885975 0.20541172027735713
+0.5093380399755371 0.6614409327070457 0.5093380399755371 0.6614409327070457 0.2010431596836264
+0.5110059183224168 0.6649705810774594 0.5110059183224168 0.6649705810774594 0.18477018797448616
+0.5125558479629234 0.6685208856674332 0.5125558479629234 0.6685208856674332 0.17047844865347306
+0.5106263277180928 0.67135445925922 0.5106263277180928 0.67135445925922 0.1731163128371793
+0.5088135166997272 0.6741488118903799 0.5088135166997273 0.6741488118903799 0.1764968900480981
+0.5071340444538462 0.6771288378000081 0.5071340444538462 0.6771288378000081 0.1797317245737241
+0.505256767674176 0.6799891020798748 0.505256767674176 0.6799891020798748 0.18485655719397698
+0.5032714309641745 0.6828466579034935 0.5032714309641745 0.6828466579034935 0.1910102112784324
+0.501192247289073 0.685710554599129 0.501192247289073 0.685710554599129 0.19792082060715455
+0.5078962003244851 0.6517238957854298 0.5078962003244851 0.6517238957854298 0.23541240684054096
+0.5101139790358138 0.6492194342389428 0.5101139790358138 0.6492194342389429 0.23223009206484083
+0.5119471999540269 0.6464137242675745 0.5119471999540269 0.6464137242675746 0.23343133157912907
+0.513506985025241 0.643700454653342 0.513506985025241 0.643700454653342 0.23703219985081816
+0.5156443955074168 0.6406960306969304 0.5156443955074169 0.6406960306969304 0.2417386958192141
+0.5163493324774493 0.6372959159503621 0.5163493324774493 0.6372959159503621 0.25387847351668175
+0.5181701433045538 0.6355973550417527 0.5181701433045538 0.6355973550417527 0.2575404749378707
+0.5187505678492562 0.6323210656121633 0.5187505678492562 0.6323210656121633 0.27191131908693733
+0.5205585036389496 0.6290138889573265 0.5205585036389496 0.6290138889573265 0.28668944833952875
+0.5236792189029553 0.6208092604473406 0.5236792189029553 0.6208092604473406 0.33317988685460753
+0.5244754508015549 0.6183070672555591 0.5244754508015549 0.6183070672555591 0.34955243175512557
+0.521923358469521 0.6254899710141223 0.521923358469521 0.6254899710141223 0.30540454169489223
+0.524093411270172 0.6235533151654228 0.524093411270172 0.6235533151654228 0.31828761457727256
+0.5196860391008515 0.6133167951829954 0.5196860391008515 0.6133167951829953 0.383990297776056
+0.5226770835920964 0.6154718844966451 0.5226770835920965 0.6154718844966451 0.36560164160860165
+0.5250996305999632 0.615624602165353 0.5250996305999632 0.615624602165353 0.36725587732422244
+0.5210533646586607 0.6089762607730973 0.5210533646586607 0.6089762607730974 0.4140386208998037
+0.5223060330255104 0.6047827962675291 0.5223060330255104 0.6047827962675291 0.445407840456663
+0.5967623474667054 0.5543663646236893 0.5967623474667053 0.5543663646236893 0.720555301465054
+0.6015821887116228 0.5541131796305908 0.6015821887116228 0.5541131796305908 0.6605794673226385
+0.5898597429570417 0.5583103607743277 0.5898597429570417 0.5583103607743277 0.8658583871979867
+0.5944206490325988 0.5583071821135028 0.5944206490325988 0.5583071821135029 0.8043552286881699
+0.5873819635558055 0.5619778204344172 0.5873819635558055 0.5619778204344171 0.9402977442529888
+0.6413590169406083 0.5285413666127025 0.6413590169406084 0.5285413666127025 0.15091408078353855
+0.6440576887570668 0.526886911154411 0.6440576887570668 0.526886911154411 0.1340083128060073
+0.6381250180433056 0.5309025359091994 0.6381250180433055 0.5309025359091994 0.17378689614087223
+0.6095852050360404 0.5510553787036208 0.6095852050360405 0.5510553787036208 0.536768154282372
+0.6050751117177288 0.5530911235953446 0.6050751117177288 0.5530911235953447 0.6085195926748214
+0.6083951416337292 0.553296818063865 0.6083951416337293 0.553296818063865 0.578222407753041
+0.6046011941403259 0.5555680920321141 0.6046011941403259 0.5555680920321141 0.6476317010262825
+0.6325367637862074 0.5350364179752028 0.6325367637862075 0.5350364179752028 0.22101982236876463
+0.6365142034970278 0.5344434037304414 0.6365142034970278 0.5344434037304414 0.1972443057324211
+0.6314387557322635 0.537842357390512 0.6314387557322635 0.537842357390512 0.24461685227772517
+0.6287800017698929 0.5399294538326415 0.6287800017698929 0.5399294538326415 0.27541872675009876
+0.6250300449326542 0.54048372785927 0.6250300449326542 0.5404837278592699 0.3016921911398422
+0.618805932451297 0.5459333130380997 0.618805932451297 0.5459333130380997 0.39758100423633647
+0.6138345183526642 0.5483590263625083 0.6138345183526642 0.5483590263625083 0.4647299353379449
+0.6166454984711525 0.5473740367344979 0.6166454984711525 0.5473740367344978 0.43050370781862796
+0.6131997824793616 0.5509225672189558 0.6131997824793616 0.5509225672189558 0.5030942271407718
+0.6233718985383434 0.5432516289342628 0.6233718985383434 0.5432516289342627 0.3382206907070641
+0.6219086754769998 0.5457839982534651 0.6219086754769999 0.545783998253465 0.37468891289058104
+0.6546477984802729 0.5161065358513421 0.6546477984802729 0.5161065358513421 0.080589330478747
+0.6583385823326177 0.5149623317225789 0.6583385823326177 0.5149623317225789 0.06271127200967169
+0.6533274864979504 0.5195487589629192 0.6533274864979504 0.5195487589629192 0.08406573560924895
+0.6484119837338347 0.5236737452217205 0.6484119837338347 0.5236737452217205 0.1087553009185017
+0.6520047709328269 0.5228717390293317 0.6520047709328268 0.5228717390293317 0.09062699201569864
+0.6471362404071028 0.5268267778588509 0.6471362404071028 0.5268267778588509 0.11879460326679757
+0.675898255892139 0.49917983236567137 0.675898255892139 0.49917983236567137 0.011455866685387901
+0.6793393448522036 0.4979069117908167 0.6793393448522035 0.49790691179081664 0.01969309593963549
+0.6716216034294802 0.5035693855021672 0.6716216034294802 0.5035693855021672 0.015267768404858537
+0.6751119681877108 0.5023281082243417 0.6751119681877108 0.5023281082243417 0.010308773143068524
+0.6633958749230837 0.5100706316436487 0.6633958749230837 0.5100706316436487 0.04376061158435249
+0.6677265564379185 0.5086953496051301 0.6677265564379186 0.5086953496051301 0.025460891780639792
+0.6620996403653285 0.5138166998301936 0.6620996403653284 0.5138166998301936 0.04546846108383418
+0.6708117937704235 0.5067905245062518 0.6708117937704235 0.5067905245062518 0.0149323381517467
+0.6950917039782972 0.48250218492492203 0.6950917039782972 0.482502184924922 0.06942523796968571
+0.6986828564962538 0.4810277765052473 0.6986828564962538 0.4810277765052473 0.07750396643130557
+0.7021855550556176 0.4795514034242552 0.7021855550556176 0.4795514034242552 0.08453232497442538
+0.705358331283643 0.47777761369988575 0.705358331283643 0.47777761369988575 0.0907208664474526
+0.6910615313854674 0.4873866725984592 0.6910615313854674 0.4873866725984592 0.0559529680665788
+0.6946265350119769 0.486013998040656 0.6946265350119769 0.486013998040656 0.06482807757779042
+0.6869889186644155 0.49210304779278813 0.6869889186644155 0.49210304779278813 0.04290736122278605
+0.6905304008748678 0.49079581918129883 0.6905304008748678 0.49079581918129883 0.052518847937483785
+0.6828484931435369 0.49668239592426233 0.6828484931435369 0.4966823959242623 0.030142409043686712
+0.6863799397624675 0.49544690623353516 0.6863799397624675 0.49544690623353516 0.040334626162139516
+0.7082805805115667 0.4759725779818544 0.7082805805115667 0.4759725779818544 0.09621807359078337
+0.7115495451866239 0.4744870232414579 0.7115495451866239 0.4744870232414579 0.10100341998966929
+0.7158080852615958 0.46971577148816873 0.7158080852615959 0.46971577148816873 0.11084826996604881
+0.7149994166168316 0.473054403593064 0.7149994166168315 0.473054403593064 0.10529958357437126
+0.7192530182909191 0.4683238781233321 0.7192530182909191 0.4683238781233321 0.11438378111857604
+0.7227197444715671 0.46662438612962825 0.7227197444715671 0.46662438612962825 0.11807901518370535
+0.7261899493795764 0.46505525722911684 0.7261899493795764 0.46505525722911684 0.12121418909480423
+0.7301884685932486 0.45982094104057475 0.7301884685932486 0.45982094104057475 0.130569562180786
+0.7406304552935944 0.4550808680960121 0.7406304552935944 0.4550808680960121 0.13878278269988975
+0.7336771945564173 0.45822661229182865 0.7336771945564173 0.45822661229182865 0.13336034802843114
+0.7371755159077996 0.4566278218523443 0.7371755159077996 0.45662782185234435 0.1361109180142209
+0.7296777297559798 0.46346057853912637 0.7296777297559798 0.46346057853912637 0.12416770264979478
+0.7440165784192194 0.4535907595892395 0.7440165784192194 0.4535907595892395 0.14139348011862182
+0.7435355835617233 0.4570140004223311 0.7435355835617233 0.4570140004223311 0.13540572081441324
+0.7473941717631525 0.4520892863366647 0.7473941717631525 0.4520892863366646 0.14409634975452726
+0.7507928914631127 0.4505959419111387 0.7507928914631127 0.4505959419111387 0.14688067505128155
+0.7542155474205609 0.4490845154668775 0.7542155474205609 0.4490845154668775 0.14979280251459223
+0.7580086756707844 0.444057946799351 0.7580086756707844 0.444057946799351 0.15935874287083826
+0.7576546641327445 0.4475579945289445 0.7576546641327445 0.44755799452894446 0.15281333647191175
+0.7649081865273001 0.44087240043955056 0.7649081865273001 0.44087240043955056 0.16555859006035348
+0.7614501108637534 0.442472721615311 0.7614501108637534 0.442472721615311 0.16244695250488103
+0.7683976347363112 0.439258337310527 0.7683976347363112 0.43925833731052694 0.16865020441532927
+0.7724324598059252 0.4339873381053736 0.7724324598059252 0.4339873381053736 0.17847128525086894
+0.7760596892426394 0.43250351963587175 0.7760596892426394 0.43250351963587175 0.18089434791862058
+0.7798113743828213 0.4312087963035471 0.7798113743828213 0.4312087963035471 0.1827129214502969
+0.7719289203335925 0.4376591273043042 0.7719289203335925 0.4376591273043042 0.17162877500847795
+0.783114949162388 0.4292858921876893 0.783114949162388 0.42928589218768926 0.18550640719310896
+0.7863701256711905 0.4277472381669749 0.7863701256711905 0.42774723816697496 0.18745224178072517
+0.7896548285226328 0.42628497723117376 0.7896548285226328 0.4262849772311737 0.18901958587590997
+0.7934308685638664 0.4210175898195813 0.7934308685638664 0.4210175898195813 0.19629546371060055
+0.7928320868097835 0.4246877869470303 0.7928320868097835 0.4246877869470303 0.19063575531228372
+0.7968286105302465 0.4191605913401589 0.7968286105302465 0.4191605913401589 0.19778683457896032
+0.8004809987939453 0.4167561438395176 0.8004809987939453 0.4167561438395176 0.1996805872205245
+0.8037247711217534 0.414387152225588 0.8037247711217536 0.41438715222558803 0.20158683350208131
+0.8071771846741231 0.41215873328669106 0.8071771846741232 0.4121587332866911 0.20297608239911005
+0.810430531680749 0.4100538122037792 0.8104305316807491 0.4100538122037792 0.20419452553159242
+0.8137117702599621 0.40797249200045343 0.8137117702599621 0.40797249200045343 0.20533862399936934
+0.8170181488128921 0.4058950224342687 0.8170181488128921 0.4058950224342687 0.20649985963421943
+0.8203576037791231 0.4037971024414804 0.8203576037791231 0.4037971024414804 0.20777093330523896
+0.8237186737527323 0.40169145737879036 0.8237186737527323 0.40169145737879036 0.20919915942583003
+0.8270956661282286 0.39958741552015714 0.8270956661282286 0.39958741552015714 0.21082403094956312
+0.8304817741859077 0.3974901686978857 0.8304817741859077 0.3974901686978857 0.2126777851601749
+0.8338712880501294 0.39539747137574327 0.8338712880501294 0.39539747137574327 0.21478514942755947
+0.8372616018318908 0.3933054393305182 0.8372616018318908 0.3933054393305182 0.21715385105253235
+0.8406519851270597 0.3912133891213131 0.8406519851270599 0.39121338912131304 0.21976845945448975
+0.8440423684222287 0.389121338912108 0.8440423684222287 0.389121338912108 0.22259503518592458
+0.8474327517173976 0.3870292887029029 0.8474327517173975 0.38702928870290293 0.22558407011453685
+0.8508231350125666 0.38493723849369776 0.8508231350125666 0.38493723849369776 0.22867308835572997
+0.8542135183077355 0.38284518828449265 0.8542135183077356 0.3828451882844926 0.2317898591038828
+0.8576039016029045 0.38075313807528754 0.8576039016029045 0.38075313807528754 0.2348559288490725
+0.8609942848980734 0.37866108786608244 0.8609942848980733 0.3786610878660825 0.237790219866437
+0.8643846681932423 0.3765690376568773 0.8643846681932423 0.3765690376568773 0.2405124917552964
+0.8677750514884113 0.3744769874476722 0.8677750514884114 0.37447698744767216 0.2429465215992189
+0.8711654347835802 0.3723849372384671 0.8711654347835802 0.3723849372384671 0.24502291402509016
+0.8745558180787492 0.370292887029262 0.874555818078749 0.37029288702926205 0.24668149776826673
+0.8779462013739181 0.3682008368200569 0.8779462013739181 0.3682008368200569 0.24787329752538081
+0.881336584669087 0.3661087866108518 0.8813365846690872 0.3661087866108517 0.24856208932175364
+0.884726967964256 0.36401673640164667 0.884726967964256 0.36401673640164667 0.2487255564564653
+0.8881173512594249 0.36192468619244156 0.8881173512594248 0.3619246861924416 0.24835606394420537
+0.8915077345545939 0.35983263598323645 0.8915077345545939 0.35983263598323645 0.24746106468698778
+0.8948981178497628 0.35774058577403134 0.8948981178497629 0.3577405857740313 0.24606314236177992
+0.8982885011449318 0.35564853556482623 0.8982885011449318 0.35564853556482623 0.2441996857738297
+0.9016788844401007 0.3535564853556211 0.9016788844401006 0.3535564853556212 0.24192217860529283
+0.9050692677352696 0.351464435146416 0.9050692677352696 0.351464435146416 0.23929507867261732
+0.9084596510304386 0.3493723849372109 0.9084596510304387 0.34937238493721084 0.23639425414393211
+0.9118500343256075 0.3472803347280058 0.9118500343256075 0.3472803347280058 0.23330494368198318
+0.9152404176207765 0.3451882845188007 0.9152404176207763 0.34518828451880074 0.2301192171450761
+0.9186308009159454 0.34309623430959557 0.9186308009159454 0.34309623430959557 0.2269329378361229
+0.9220211842111143 0.34100418410039046 0.9220211842111145 0.3410041841003904 0.22384227029276968
+0.9254115675062833 0.33891213389118535 0.9254115675062833 0.33891213389118535 0.2209398405695713
+0.9288019508014522 0.33682008368198024 0.9288019508014521 0.3368200836819803 0.2183107348137813
+0.9321923340966212 0.33472803347277513 0.9321923340966212 0.33472803347277513 0.21602860482763983
+0.9355827173917901 0.33263598326357 0.9355827173917902 0.33263598326356997 0.21415221624034844
+0.938973100686959 0.3305439330543649 0.938973100686959 0.3305439330543649 0.2127228012895314
+0.942363483982128 0.3284518828451598 0.9423634839821279 0.32845188284515986 0.2117625428607884
+0.9457538672772969 0.3263598326359547 0.9457538672772969 0.3263598326359547 0.21127441176757253
+0.9491442505724659 0.3242677824267496 0.949144250572466 0.32426778242674953 0.21124341850957937
+0.9525346338676348 0.3221757322175445 0.9525346338676348 0.3221757322175445 0.21163915703552708
+0.9559250171628038 0.32008368200833937 0.9559250171628036 0.3200836820083394 0.21241935379306073
+0.9593154004579727 0.31799163179913426 0.9593154004579727 0.31799163179913426 0.21353402673711167
+0.9627057837531416 0.31589958158992915 0.9627057837531418 0.3158995815899291 0.21492982326887686
+0.9660961670483106 0.31380753138072404 0.9660961670483106 0.31380753138072404 0.21655413824062641
+0.9694865503434795 0.3117154811715189 0.9694865503434794 0.311715481171519 0.21835869188878573
+0.9728769336386485 0.3096234309623138 0.9728769336386485 0.3096234309623138 0.2203023461577178
+0.9762673169338174 0.3075313807531087 0.9762673169338175 0.30753138075310865 0.22235303395923448
+0.9796577002289864 0.3054393305439036 0.9796577002289864 0.3054393305439036 0.2244887564071183
+0.9830480835241553 0.3033472803346985 0.9830480835241552 0.30334728033469854 0.22669766437659208
+0.9864384668193242 0.3012552301254934 0.9864384668193242 0.3012552301254934 0.22897728589388833
+0.9898288501144932 0.29916317991628827 0.9898288501144933 0.2991631799162882 0.23133299578057817
+0.9932192334096621 0.29707112970708316 0.9932192334096621 0.29707112970708316 0.23377585426513905
+0.30125523012552335 0.9932192334096621 0.30125523012552335 0.9932192334096621 0.19565791468401564
+0.30334728033472835 0.9898288501144932 0.30334728033472835 0.9898288501144933 0.1974285707746838
+0.30543933054393335 0.9864384668193242 0.30543933054393335 0.9864384668193242 0.19949277309866595
+0.30753138075313835 0.9830480835241553 0.30753138075313835 0.9830480835241552 0.201832497757894
+0.30962343096234335 0.9796577002289865 0.30962343096234335 0.9796577002289865 0.20442339991144579
+0.31171548117154835 0.9762673169338175 0.31171548117154835 0.9762673169338175 0.20723523508052802
+0.31380753138075346 0.9728769336386485 0.3138075313807534 0.9728769336386485 0.21023246702078993
+0.31589958158995846 0.9694865503434795 0.3158995815899584 0.9694865503434794 0.2133750399919814
+0.3179916317991635 0.9660961670483106 0.3179916317991635 0.9660961670483106 0.216619286823966
+0.32008368200836856 0.9627057837531416 0.32008368200836856 0.9627057837531418 0.21991894110827379
+0.3221757322175737 0.9593154004579727 0.32217573221757373 0.9593154004579727 0.22322622169624853
+0.3242677824267787 0.9559250171628038 0.32426778242677873 0.9559250171628036 0.22649295966323102
+0.32635983263598367 0.9525346338676348 0.3263598326359837 0.9525346338676348 0.2296717410904157
+0.32845188284518867 0.9491442505724659 0.3284518828451887 0.949144250572466 0.23271704258144957
+0.3305439330543937 0.9457538672772969 0.3305439330543937 0.9457538672772969 0.23558633971237694
+0.3326359832635988 0.942363483982128 0.3326359832635988 0.9423634839821279 0.23824117117229762
+0.3347280334728038 0.938973100686959 0.3347280334728038 0.938973100686959 0.24064814294734668
+0.3368200836820088 0.9355827173917901 0.3368200836820088 0.9355827173917902 0.24277985744179423
+0.3389121338912138 0.9321923340966212 0.3389121338912138 0.9321923340966212 0.24461575192494014
+0.34100418410041883 0.9288019508014522 0.34100418410041883 0.9288019508014521 0.24614282920732714
+0.3430962343096239 0.9254115675062833 0.3430962343096238 0.9254115675062833 0.24735626109114553
+0.3451882845188289 0.9220211842111143 0.3451882845188288 0.9220211842111145 0.24825984206121707
+0.34728033472803393 0.9186308009159454 0.34728033472803393 0.9186308009159454 0.2488662671182855
+0.349372384937239 0.9152404176207765 0.349372384937239 0.9152404176207763 0.24919720397562353
+0.35146443514644404 0.9118500343256075 0.35146443514644404 0.9118500343256075 0.24928312662368166
+0.3535564853556491 0.9084596510304386 0.35355648535564915 0.9084596510304387 0.24916287538376772
+0.35564853556485415 0.9050692677352696 0.35564853556485415 0.9050692677352696 0.2488829092306941
+0.3577405857740592 0.9016788844401007 0.3577405857740592 0.9016788844401006 0.24849622090658754
+0.3598326359832642 0.8982885011449319 0.3598326359832642 0.8982885011449319 0.24806089590867142
+0.3619246861924692 0.894898117849763 0.3619246861924692 0.8948981178497631 0.24763831441915954
+0.3640167364016742 0.8915077345545941 0.3640167364016742 0.891507734554594 0.247291021587396
+0.3661087866108792 0.8881173512594251 0.3661087866108792 0.8881173512594253 0.24708032580238992
+0.3682008368200842 0.8847269679642563 0.3682008368200842 0.8847269679642563 0.24706372409514787
+0.3702928870292892 0.8813365846690874 0.3702928870292892 0.8813365846690874 0.24729229340014913
+0.3723849372384942 0.8779462013739184 0.3723849372384942 0.8779462013739184 0.2478082186153782
+0.3744769874476992 0.8745558180787495 0.3744769874476992 0.8745558180787495 0.24864264478719714
+0.3765690376569043 0.8711654347835807 0.37656903765690425 0.8711654347835808 0.2498140341629798
+0.3786610878661092 0.8677750514884117 0.3786610878661092 0.8677750514884117 0.2513271760727221
+0.3807531380753143 0.8643846681932428 0.38075313807531425 0.8643846681932427 0.25317294122655376
+0.38284518828451936 0.860994284898074 0.38284518828451936 0.860994284898074 0.2553288006483174
+0.3849372384937244 0.857603901602905 0.3849372384937244 0.857603901602905 0.2577600557042283
+0.3870292887029294 0.8542135183077362 0.3870292887029294 0.8542135183077361 0.2604216625854576
+0.38912133891213446 0.8508231350125672 0.38912133891213446 0.8508231350125673 0.2632604919984049
+0.39121338912133946 0.8474327517173984 0.39121338912133946 0.8474327517173984 0.26621784696494927
+0.39330543933054457 0.8440423684222295 0.39330543933054457 0.8440423684222295 0.2692320669401844
+0.39539748953974957 0.8406519851270605 0.39539748953974957 0.8406519851270605 0.27224106900766043
+0.3974895397636032 0.8372616018320459 0.3974895397636032 0.8372616018320459 0.2751847089450277
+0.3995815900594258 0.8338712185443603 0.3995815900594258 0.8338712185443603 0.2780068796941882
+0.4016736351785976 0.8304808456543483 0.4016736351785976 0.8304808456543483 0.2806572760828328
+0.40376541305655805 0.8270909972384421 0.40376541305655805 0.8270909972384421 0.2830925232039833
+0.4058565831329582 0.8237038458925884 0.4058565831329582 0.8237038458925884 0.285276660172839
+0.40794727082012344 0.8203237421919484 0.40794727082012344 0.8203237421919484 0.2871820309299294
+0.4100393063371555 0.8169558325444987 0.4100393063371555 0.8169558325444987 0.2887907220604132
+0.4121370572781929 0.8136043684809837 0.4121370572781929 0.8136043684809838 0.2900947218348828
+0.4142514569248013 0.8102718546648779 0.4142514569248013 0.8102718546648778 0.29109171171584997
+0.41636210332214013 0.8069779477613624 0.41636210332214013 0.8069779477613624 0.2917919274922825
+0.4183811081117473 0.8037442899364814 0.4183811081117473 0.8037442899364814 0.29225309130856475
+0.4201502158974537 0.8000698694473322 0.4201502158974537 0.8000698694473323 0.2927735564737422
+0.42320189312196277 0.7946712744856059 0.42320189312196277 0.7946712744856059 0.2928315585408517
+0.4228688395298304 0.7975014813162736 0.42286883952983045 0.7975014813162736 0.29221044092943677
+0.4267311031076841 0.7898679440681254 0.4267311031076841 0.7898679440681254 0.29228671422289493
+0.4263579399223418 0.7934418418048624 0.4263579399223418 0.7934418418048624 0.2915795755100637
+0.42990808635176886 0.7885409080883491 0.42990808635176886 0.7885409080883491 0.29071514959720096
+0.43328404269038384 0.7764113792086079 0.43328404269038384 0.7764113792086079 0.29203963463626964
+0.43539705181113786 0.7743081733336018 0.4353970518111378 0.7743081733336018 0.291317802571152
+0.43304683487812184 0.779281729732271 0.43304683487812184 0.7792817297322711 0.2911937210892593
+0.43070881910261216 0.7847889905128563 0.4307088191026121 0.7847889905128563 0.2912488551673688
+0.4328789939039137 0.7822348400378899 0.43287899390391366 0.7822348400378899 0.2903707860952865
+0.43831845761423577 0.7686519839414222 0.43831845761423577 0.7686519839414222 0.2915509085827033
+0.4384199697997056 0.7723873945404982 0.4384199697997056 0.7723873945404982 0.28962515015036355
+0.44146265264257223 0.766599681547432 0.4414626526425723 0.766599681547432 0.28969142456834757
+0.44452446332444556 0.7607702930325075 0.44452446332444556 0.7607702930325075 0.2901139178937669
+0.44456706764474546 0.7645603374140698 0.44456706764474546 0.7645603374140698 0.28753730666019345
+0.4475598356403519 0.7587245360655489 0.4475598356403519 0.7587245360655489 0.28790109467955066
+0.450536954356626 0.7566357191617402 0.45053695435662605 0.7566357191617402 0.28543543107356656
+0.45345545663486125 0.7545081007277892 0.45345545663486125 0.7545081007277892 0.28271626922517396
+0.4563217737217642 0.7523545592150204 0.45632177372176413 0.7523545592150204 0.27972344195960336
+0.45912273390912856 0.7501622921806739 0.45912273390912856 0.7501622921806739 0.2764884502829039
+0.4768712537290052 0.7202089195622897 0.47687125372900513 0.7202089195622897 0.2628477500607889
+0.46185690652537553 0.7479985781510248 0.46185690652537553 0.7479985781510248 0.27294940646610694
+0.46458192396192455 0.7458546804152781 0.4645819239619246 0.7458546804152782 0.2689860714223928
+0.4673605198990842 0.7437372494859216 0.46736051989908417 0.7437372494859216 0.264406590722947
+0.47037094467243956 0.7381562923503509 0.4703709446724396 0.738156292350351 0.26223100149643935
+0.4703614786216449 0.7418203128960486 0.47036147862164496 0.7418203128960484 0.25851561350720553
+0.47286026168440615 0.7322969042496187 0.47286026168440615 0.7322969042496187 0.2614652824342303
+0.47353189677882845 0.7363240378188595 0.47353189677882845 0.7363240378188595 0.2551767613846398
+0.47499465333597257 0.7263279415570497 0.47499465333597257 0.7263279415570497 0.2616860625416062
+0.4756423686668141 0.730077284813171 0.4756423686668141 0.730077284813171 0.2553496953070828
+0.4777363298858676 0.7240117086051968 0.4777363298858676 0.7240117086051968 0.2553011679321206
+0.48167041111689773 0.7122194700056276 0.48167041111689773 0.7122194700056276 0.2552788914143473
+0.48412852176753646 0.7099979005627388 0.48412852176753646 0.7099979005627387 0.2482176565527732
+0.4797177462353541 0.7181234389675158 0.4797177462353542 0.7181234389675158 0.2552933588160831
+0.4823432009227355 0.7159884001495512 0.4823432009227355 0.7159884001495512 0.2479471991966106
+0.4866143518061284 0.708697128421397 0.4866143518061284 0.708697128421397 0.23927494156014834
+0.4881381583685182 0.7062076113463431 0.4881381583685182 0.7062076113463432 0.2357418239465975
+0.5095932662506897 0.6552068519909945 0.5095932662506897 0.6552068519909945 0.21639024256893546
+0.4905315335204286 0.7035711701249622 0.4905315335204286 0.7035711701249622 0.22811418930500535
+0.4929921419226417 0.7008230242045705 0.4929921419226417 0.7008230242045705 0.21982852429830793
+0.49544395073273034 0.6979954510530719 0.49544395073273034 0.6979954510530719 0.211248460690429
+0.49783491201215785 0.6951042077818276 0.49783491201215785 0.6951042077818276 0.2027107625495033
+0.5113345451060299 0.6586352697964017 0.5113345451060299 0.6586352697964016 0.1987993382440434
+0.5001560567141844 0.692198592144767 0.5001560567141844 0.692198592144767 0.194339311210744
+0.5023823054222686 0.6892886846213527 0.5023823054222686 0.6892886846213527 0.18642197437599506
+0.5130913320044581 0.6621429650987493 0.513091332004458 0.6621429650987493 0.1826507198446505
+0.514779325296144 0.665755445700249 0.514779325296144 0.665755445700249 0.1684120788573048
+0.515961862929655 0.669166640332834 0.5159618629296548 0.669166640332834 0.15776603177065854
+0.5139386055127867 0.671896634603195 0.5139386055127867 0.671896634603195 0.1586579325457196
+0.5121366853209365 0.674710754497189 0.5121366853209365 0.674710754497189 0.16038343082234244
+0.5104222702568065 0.677591802388337 0.5104222702568065 0.677591802388337 0.16290450867559245
+0.5085120658641334 0.6805451526919551 0.5085120658641334 0.6805451526919551 0.16723087987241125
+0.5065630873831507 0.6834691869570947 0.5065630873831507 0.6834691869570947 0.17263273478766242
+0.5045180892685983 0.6863804773847316 0.5045180892685983 0.6863804773847316 0.17911564460436513
+0.5115756285066331 0.6524366946325477 0.5115756285066331 0.6524366946325477 0.21532216946433894
+0.5134576279321509 0.6496695816096085 0.5134576279321509 0.6496695816096086 0.21637146254274017
+0.5150936555575522 0.6468588719873934 0.5150936555575522 0.6468588719873934 0.22028208117903927
+0.5162999825898229 0.6443462186307678 0.5162999825898229 0.6443462186307678 0.22583543041849524
+0.5188949149439964 0.6429586240717547 0.5188949149439964 0.6429586240717547 0.22636346203688865
+0.5193342741022892 0.638829986141632 0.5193342741022892 0.6388299861416319 0.24228298089073205
+0.5211454623080938 0.6355452165459803 0.5211454623080938 0.6355452165459803 0.25580979098547957
+0.5270015777092012 0.6179181847938412 0.5270015777092012 0.6179181847938412 0.3588563612501527
+0.5225287037522297 0.6323707600393168 0.5225287037522297 0.6323707600393168 0.2712489553266992
+0.5238401118786624 0.6292563116837946 0.5238401118786625 0.6292563116837946 0.28823531495249327
+0.5263996393676454 0.6212669045604193 0.5263996393676454 0.6212669045604192 0.337398351529172
+0.5252283509245639 0.6264794523247565 0.5252283509245639 0.6264794523247565 0.30542562980813065
+0.5265222089419006 0.6245879430202056 0.5265222089419006 0.6245879430202056 0.31954526852710086
+0.524319259883249 0.612429969774055 0.524319259883249 0.6124299697740548 0.3872080358405326
+0.5273396381375097 0.6144742522047479 0.5273396381375096 0.614474252204748 0.38116038492282134
+0.5294712547207369 0.6172614264513531 0.5294712547207369 0.6172614264513531 0.3744762853151813
+0.5298906516669548 0.6145337704986437 0.5298906516669548 0.6145337704986437 0.39308115300824265
+0.5255285809782286 0.6080148898127209 0.5255285809782286 0.608014889812721 0.4195673581941249
+0.526615211217307 0.6037664116537678 0.5266152112173071 0.6037664116537678 0.45239548707900895
+0.5992191549987029 0.5582364355023339 0.5992191549987028 0.5582364355023338 0.7440783383919373
+0.6028391966016933 0.5573592022687633 0.6028391966016934 0.5573592022687633 0.6907319666438401
+0.6022312500086264 0.5598471043133968 0.6022312500086264 0.5598471043133968 0.7289866306358502
+0.5919045361640518 0.5621492686463443 0.5919045361640518 0.5621492686463442 0.8814624650922568
+0.5966688208448225 0.562251025739454 0.5966688208448225 0.562251025739454 0.8227782006843133
+0.5847498646937481 0.5655382099781154 0.5847498646937481 0.5655382099781154 1.0027430217156466
+0.5892692506616983 0.5659063005586789 0.5892692506616983 0.5659063005586789 0.9481804192576205
+0.5819634276501429 0.5689789919440855 0.5819634276501429 0.5689789919440855 1.051042392931784
+0.6418734252133269 0.5314572759459126 0.6418734252133269 0.5314572759459126 0.157409236042802
+0.6449580076854827 0.5299215143630852 0.6449580076854827 0.5299215143630852 0.1374979879085403
+0.6402788874678028 0.5338925386665935 0.6402788874678028 0.5338925386665935 0.17635451228335053
+0.6119229096772509 0.5534653771715459 0.6119229096772508 0.5534653771715458 0.5478341650939923
+0.607228325005938 0.5555615157802166 0.6072283250059379 0.5555615157802166 0.6205268753269298
+0.6098910996860134 0.555431527869318 0.6098910996860134 0.555431527869318 0.5924062163959489
+0.6062811486646463 0.557715438885655 0.6062811486646463 0.557715438885655 0.65836234002879
+0.6389440321465079 0.5368961911697143 0.638944032146508 0.5368961911697143 0.2009304579607166
+0.6349118221957278 0.5379839712665322 0.6349118221957278 0.5379839712665322 0.22800983573110886
+0.6322771621823184 0.5402544088182105 0.6322771621823184 0.5402544088182105 0.2591651816748281
+0.6312591416577145 0.5430687326126143 0.6312591416577145 0.5430687326126143 0.2902415791699781
+0.6272329702783707 0.5431889456146084 0.6272329702783707 0.5431889456146085 0.31404832706527724
+0.619757143365789 0.5481095847666337 0.619757143365789 0.5481095847666336 0.41645275042719915
+0.617072257175133 0.5503782350516001 0.617072257175133 0.5503782350516001 0.46468482283237483
+0.6155335446203882 0.5531361006942768 0.6155335446203881 0.5531361006942768 0.5120207857444329
+0.6254834891413606 0.546426227091265 0.6254834891413606 0.5464262270912651 0.35872500718120676
+0.6227539906749079 0.5482956818821669 0.6227539906749079 0.5482956818821669 0.3976559969458445
+0.6570622057095643 0.5185034329154143 0.6570622057095643 0.5185034329154145 0.06602540355220153
+0.6607800992026011 0.5174034586086649 0.6607800992026011 0.5174034586086648 0.04911819373829534
+0.6557198981244935 0.521969321243845 0.6557198981244935 0.5219693212438451 0.072942483310576
+0.6506085890209747 0.5261837379787009 0.6506085890209747 0.5261837379787009 0.10172304619770652
+0.6542971689204132 0.5253834491683494 0.6542971689204132 0.5253834491683494 0.08460157465772618
+0.6489642392981527 0.5295083042182447 0.6489642392981527 0.5295083042182447 0.11881724641930443
+0.678625861354977 0.5011356676141031 0.678625861354977 0.5011356676141031 0.01768064238097916
+0.6821559112756521 0.4999404215023444 0.6821559112756521 0.49994042150234447 0.027997358411560484
+0.6742827133317567 0.5055232593240411 0.6742827133317567 0.5055232593240411 0.007927362263404502
+0.6778430870830279 0.5043053206866728 0.677843087083028 0.5043053206866728 0.015212534410075777
+0.670931078396393 0.5095522786493856 0.670931078396393 0.5095522786493856 0.010867342412672888
+0.6659258603313691 0.5127303842867946 0.6659258603313692 0.5127303842867946 0.028917278084393955
+0.6694597923173272 0.5120958838307059 0.6694597923173272 0.5120958838307059 0.014304238078307096
+0.6645707721764839 0.5163335145089059 0.6645707721764839 0.516333514508906 0.03301092567935332
+0.6737502448236504 0.5085661430250331 0.6737502448236504 0.5085661430250331 0.004038296735769303
+0.6982569886566102 0.484628481061717 0.6982569886566102 0.484628481061717 0.07288635706043266
+0.7020626718629402 0.4832490641068448 0.7020626718629402 0.4832490641068448 0.08027847431637757
+0.7080729849846081 0.47885331670112474 0.7080729849846081 0.47885331670112474 0.09231340458862695
+0.7061011544096969 0.4815180137760382 0.7061011544096969 0.4815180137760383 0.08734193158804991
+0.6940983205121481 0.48948203746816565 0.6940983205121481 0.48948203746816565 0.061289776708245765
+0.6977015341888948 0.48815823446098144 0.6977015341888948 0.48815823446098144 0.06922387049836522
+0.6899373160599276 0.4941976895588289 0.6899373160599276 0.4941976895588289 0.04984520167459705
+0.6935185403544422 0.49293793114363255 0.6935185403544422 0.49293793114363255 0.05855150866799581
+0.6857098990754027 0.49876825005747266 0.6857098990754027 0.49876825005747266 0.03816689347500634
+0.6892863962077088 0.4975822462597144 0.6892863962077088 0.4975822462597144 0.04766818181936921
+0.7108867480937677 0.4779176713823524 0.7108867480937677 0.47791767138235247 0.09606568720801269
+0.7139753614415976 0.4764176844082782 0.7139753614415976 0.4764176844082782 0.10025911510062523
+0.7187361297292988 0.47234253892172734 0.7187361297292989 0.4723425389217274 0.10820396549741605
+0.7168582660652746 0.4753444512577979 0.7168582660652746 0.4753444512577979 0.1034133148878155
+0.7221101056391791 0.4702017590199324 0.7221101056391791 0.4702017590199324 0.11247486300617317
+0.7255891358241943 0.4687095097480281 0.7255891358241943 0.4687095097480281 0.1155404544413318
+0.7220048186191665 0.4733934593326755 0.7220048186191665 0.4733934593326755 0.1082969822240806
+0.729052782128964 0.4671637997978351 0.729052782128964 0.4671637997978351 0.11844410513090688
+0.7332412684156794 0.46177337842500255 0.7332412684156794 0.4617733784250025 0.12712971252039454
+0.7401490517120541 0.45858234211603066 0.740149051712054 0.4585823421160306 0.1326418147253781
+0.7367216404935771 0.46022633964872206 0.7367216404935771 0.46022633964872206 0.1298036291469686
+0.7326124656607255 0.4655453484150484 0.7326124656607255 0.4655453484150484 0.1213089598218665
+0.7430703854712986 0.46044891807528765 0.7430703854712987 0.4604489180752877 0.13002939671044314
+0.7469179068435798 0.45549481844805256 0.7469179068435797 0.45549481844805256 0.138158753095404
+0.7464296842242493 0.4588884729355663 0.7464296842242493 0.4588884729355663 0.13283610973520396
+0.7503487698809486 0.4539941983705665 0.7503487698809486 0.4539941983705665 0.14098452989979163
+0.7538024551916171 0.4525231554758198 0.7538024551916171 0.45252315547581984 0.14387417728319604
+0.7572593248576327 0.45104285254840765 0.7572593248576327 0.45104285254840765 0.1468807702163416
+0.7611072787708393 0.44601541101906966 0.7611072787708393 0.44601541101906966 0.15591876699610288
+0.7607290581468327 0.4495461110358721 0.7607290581468327 0.4495461110358721 0.14999610196467186
+0.7680303043152312 0.44287997111014593 0.7680303043152312 0.44287997111014593 0.162240296305217
+0.764567127548578 0.444456336211182 0.764567127548578 0.444456336211182 0.15907449282570027
+0.7714982147197835 0.4412943058572622 0.7714982147197835 0.4412943058572622 0.16536024574597197
+0.7825008096966005 0.4330618188734457 0.7825008096966005 0.4330618188734457 0.17928409999030592
+0.7754892417614002 0.43610528402097826 0.7754892417614002 0.43610528402097826 0.17440590630849753
+0.7790718152368964 0.43460991797288706 0.7790718152368964 0.43460991797288706 0.17690658915595647
+0.7749724240978108 0.4397253642724517 0.7749724240978108 0.4397253642724516 0.16835453404648734
+0.7858229781612086 0.43144492314515825 0.7858229781612086 0.4314449231451583 0.18158596847117717
+0.7890883435356071 0.4298651922194347 0.7890883435356071 0.4298651922194347 0.18360618290574823
+0.7922729014743525 0.4282967167783715 0.7922729014743525 0.4282967167783715 0.1853916763592254
+0.7960308465687883 0.42304946637439333 0.7960308465687883 0.4230494663743933 0.19210417226981594
+0.7953090740749253 0.42673445235906315 0.7953090740749253 0.4267344523590632 0.1869978646768876
+0.7998148672295684 0.4215461738556999 0.7998148672295685 0.42154617385569987 0.19300271254640558
+0.8036768103441592 0.4187865425864893 0.8036768103441592 0.41878654258648934 0.19531764712485702
+0.807062154869658 0.41646484826405966 0.807062154869658 0.41646484826405966 0.1970153829709408
+0.8104052316438155 0.41427922042891385 0.8104052316438155 0.41427922042891385 0.19843802154146253
+0.8137122086078064 0.41215979944592185 0.8137122086078064 0.41215979944592185 0.19973241973143122
+0.8170285417348687 0.4100669385246228 0.8170285417348687 0.4100669385246228 0.20099762238556787
+0.8203658768341717 0.4079749370914883 0.8203658768341718 0.4079749370914883 0.20232341801828932
+0.8237239189089975 0.40587513797391317 0.8237239189089977 0.40587513797391317 0.2037814832260023
+0.8270977579463462 0.4037733272211607 0.8270977579463462 0.4037733272211607 0.20541902842234183
+0.8304822862783109 0.4016750956507935 0.8304822862783109 0.4016750956507935 0.20727223468825495
+0.8338713488982438 0.39958161780106266 0.8338713488982438 0.39958161780106266 0.20936762943597056
+0.8372616018318908 0.3974895397489284 0.8372616018318908 0.3974895397489284 0.2117194004597547
+0.8406519851270597 0.3953974895397233 0.8406519851270599 0.39539748953972337 0.21432103669982625
+0.8440423684222287 0.3933054393305182 0.8440423684222287 0.3933054393305182 0.21714666043747147
+0.8474327517173976 0.3912133891213131 0.8474327517173975 0.39121338912131304 0.2201541562414093
+0.8508231350125666 0.389121338912108 0.8508231350125666 0.389121338912108 0.22328740677160355
+0.8542135183077355 0.3870292887029029 0.8542135183077356 0.38702928870290293 0.22647917509855087
+0.8576039016029045 0.38493723849369776 0.8576039016029045 0.38493723849369776 0.22965442206002687
+0.8609942848980734 0.38284518828449265 0.8609942848980733 0.3828451882844926 0.23273379818298648
+0.8643846681932423 0.38075313807528754 0.8643846681932423 0.38075313807528754 0.23563708975840567
+0.8677750514884113 0.37866108786608244 0.8677750514884114 0.3786610878660825 0.23828645344925947
+0.8711654347835802 0.3765690376568773 0.8711654347835802 0.3765690376568773 0.24060933020623912
+0.8745558180787492 0.3744769874476722 0.874555818078749 0.37447698744767216 0.24254097819248346
+0.8779462013739181 0.3723849372384671 0.8779462013739181 0.3723849372384671 0.24402660142177565
+0.881336584669087 0.370292887029262 0.8813365846690872 0.37029288702926205 0.2450230751320979
+0.884726967964256 0.3682008368200569 0.884726967964256 0.3682008368200569 0.2455002820303687
+0.8881173512594249 0.3661087866108518 0.8881173512594248 0.3661087866108517 0.24544207786797353
+0.8915077345545939 0.36401673640164667 0.8915077345545939 0.36401673640164667 0.24484690279779667
+0.8948981178497628 0.36192468619244156 0.8948981178497629 0.3619246861924416 0.2437280486864121
+0.8982885011449318 0.35983263598323645 0.8982885011449318 0.35983263598323645 0.24211358359544688
+0.9016788844401007 0.35774058577403134 0.9016788844401006 0.3577405857740313 0.24004592425687118
+0.9050692677352696 0.35564853556482623 0.9050692677352696 0.35564853556482623 0.23758103675409484
+0.9084596510304386 0.3535564853556211 0.9084596510304387 0.3535564853556212 0.23478723630360085
+0.9118500343256075 0.351464435146416 0.9118500343256075 0.351464435146416 0.2317435512148229
+0.9152404176207765 0.3493723849372109 0.9152404176207763 0.34937238493721084 0.22853761696293465
+0.9186308009159454 0.3472803347280058 0.9186308009159454 0.3472803347280058 0.22526307800561216
+0.9220211842111143 0.3451882845188007 0.9220211842111145 0.34518828451880074 0.22201650216461247
+0.9254115675062833 0.34309623430959557 0.9254115675062833 0.34309623430959557 0.21889385889922272
+0.9288019508014522 0.34100418410039046 0.9288019508014521 0.3410041841003904 0.21598667934606972
+0.9321923340966212 0.33891213389118535 0.9321923340966212 0.33891213389118535 0.21337809735047775
+0.9355827173917901 0.33682008368198024 0.9355827173917902 0.3368200836819803 0.2111390533596215
+0.938973100686959 0.33472803347277513 0.938973100686959 0.33472803347277513 0.2093250053691431
+0.942363483982128 0.33263598326357 0.9423634839821279 0.33263598326356997 0.20797350786181656
+0.9457538672772969 0.3305439330543649 0.9457538672772969 0.3305439330543649 0.207102970908615
+0.9491442505724659 0.3284518828451598 0.949144250572466 0.32845188284515986 0.20671279312401736
+0.9525346338676348 0.3263598326359547 0.9525346338676348 0.3263598326359547 0.20678489181957796
+0.9559250171628038 0.3242677824267496 0.9559250171628036 0.32426778242674953 0.20728646842684495
+0.9593154004579727 0.3221757322175445 0.9593154004579727 0.3221757322175445 0.208173690614732
+0.9627057837531416 0.32008368200833937 0.9627057837531418 0.3200836820083394 0.20939587841729382
+0.9660961670483106 0.31799163179913426 0.9660961670483106 0.31799163179913426 0.21089976289894166
+0.9694865503434795 0.31589958158992915 0.9694865503434794 0.3158995815899291 0.21263343276908667
+0.9728769336386485 0.31380753138072404 0.9728769336386485 0.31380753138072404 0.21454967275528958
+0.9762673169338174 0.3117154811715189 0.9762673169338175 0.311715481171519 0.2166085002519176
+0.9796577002289864 0.3096234309623138 0.9796577002289864 0.3096234309623138 0.21877880266829594
+0.9830480835241553 0.3075313807531087 0.9830480835241552 0.30753138075310865 0.22103905589547237
+0.9864384668193242 0.3054393305439036 0.9864384668193242 0.3054393305439036 0.22337716246283804
+0.9898288501144932 0.3033472803346985 0.9898288501144933 0.30334728033469854 0.22578949014499525
+0.9932192334096621 0.3012552301254934 0.9932192334096621 0.3012552301254934 0.22827922390928448
+0.30543933054393335 0.9932192334096621 0.30543933054393335 0.9932192334096621 0.19766626899039721
+0.3075313807531384 0.9898288501144932 0.3075313807531384 0.9898288501144933 0.19943398121690295
+0.30962343096234335 0.9864384668193242 0.30962343096234335 0.9864384668193242 0.2014951291001614
+0.3117154811715484 0.9830480835241553 0.3117154811715484 0.9830480835241552 0.2038326647162256
+0.31380753138075346 0.9796577002289864 0.3138075313807534 0.9796577002289864 0.2064224504287467
+0.31589958158995846 0.9762673169338174 0.3158995815899584 0.9762673169338175 0.20923370479408585
+0.31799163179916357 0.9728769336386485 0.31799163179916357 0.9728769336386485 0.2122296894456773
+0.32008368200836856 0.9694865503434795 0.32008368200836856 0.9694865503434794 0.2153686034988347
+0.3221757322175737 0.9660961670483106 0.32217573221757373 0.9660961670483106 0.21860464319013292
+0.3242677824267787 0.9627057837531416 0.32426778242677873 0.9627057837531418 0.22188918097925817
+0.3263598326359837 0.9593154004579727 0.3263598326359837 0.9593154004579727 0.2251720193991893
+0.3284518828451887 0.9559250171628038 0.3284518828451887 0.9559250171628036 0.22840267919401305
+0.3305439330543937 0.9525346338676348 0.3305439330543937 0.9525346338676348 0.2315316872351059
+0.3326359832635988 0.9491442505724659 0.3326359832635988 0.949144250572466 0.23451183602201173
+0.3347280334728038 0.9457538672772969 0.3347280334728038 0.9457538672772969 0.23729939225667487
+0.3368200836820088 0.942363483982128 0.3368200836820088 0.9423634839821279 0.2398552364088922
+0.3389121338912138 0.938973100686959 0.3389121338912138 0.938973100686959 0.2421459180756487
+0.3410041841004188 0.9355827173917901 0.3410041841004188 0.9355827173917902 0.24414461322399375
+0.3430962343096238 0.9321923340966212 0.3430962343096238 0.9321923340966212 0.24583196918798825
+0.34518828451882894 0.9288019508014522 0.34518828451882894 0.9288019508014521 0.2471968217319543
+0.34728033472803393 0.9254115675062833 0.34728033472803393 0.9254115675062833 0.2482367658018295
+0.349372384937239 0.9220211842111143 0.349372384937239 0.9220211842111145 0.2489585580133544
+0.35146443514644404 0.9186308009159454 0.35146443514644404 0.9186308009159454 0.24937832479994296
+0.3535564853556491 0.9152404176207765 0.35355648535564915 0.9152404176207763 0.24952154594248507
+0.3556485355648541 0.9118500343256075 0.35564853556485415 0.9118500343256075 0.2494227796419268
+0.3577405857740591 0.9084596510304386 0.35774058577405915 0.9084596510304387 0.24912509341121017
+0.3598326359832642 0.9050692677352696 0.3598326359832642 0.9050692677352696 0.24867916627214437
+0.3619246861924692 0.9016788844401007 0.3619246861924692 0.9016788844401006 0.2481420338066224
+0.3640167364016742 0.8982885011449319 0.3640167364016742 0.8982885011449319 0.24757546044710696
+0.3661087866108792 0.894898117849763 0.3661087866108792 0.8948981178497631 0.2470439446544799
+0.3682008368200842 0.8915077345545941 0.3682008368200842 0.891507734554594 0.24661239304832785
+0.3702928870292892 0.8881173512594251 0.3702928870292892 0.8881173512594253 0.2463435380764727
+0.3723849372384942 0.8847269679642563 0.3723849372384942 0.8847269679642563 0.24629521683052738
+0.3744769874476992 0.8813365846690874 0.3744769874476992 0.8813365846690874 0.24651766965591457
+0.37656903765690425 0.8779462013739184 0.37656903765690425 0.8779462013739184 0.2470510475415246
+0.37866108786610925 0.8745558180787495 0.37866108786610925 0.8745558180787495 0.2479233277454813
+0.38075313807531436 0.8711654347835807 0.38075313807531436 0.8711654347835808 0.24914882089794546
+0.3828451882845193 0.8677750514884117 0.38284518828451924 0.8677750514884117 0.25072740828111023
+0.3849372384937244 0.8643846681932428 0.3849372384937244 0.8643846681932427 0.2526445802938761
+0.38702928870292946 0.860994284898074 0.38702928870292946 0.860994284898074 0.2548722676221216
+0.38912133891213446 0.8576039016029051 0.38912133891213446 0.8576039016029052 0.2573703799185398
+0.3912133891213395 0.8542135183077362 0.39121338912133957 0.8542135183077361 0.26008890636797655
+0.3933054393305445 0.8508231350125672 0.39330543933054457 0.8508231350125673 0.26297039708239905
+0.39539748953974957 0.8474327517173983 0.39539748953974957 0.8474327517173982 0.2659526359140251
+0.39748953974895457 0.8440423684222295 0.39748953974895457 0.8440423684222295 0.26897133002260243
+0.3995815899581596 0.8406519851270605 0.3995815899581596 0.8406519851270605 0.27196267165573457
+0.4016736402296977 0.8372616018325488 0.4016736402296977 0.8372616018325488 0.2748656643807274
+0.40376569075751007 0.8338712185801662 0.40376569075751007 0.8338712185801661 0.2776241412703435
+0.4058577413272406 0.8304808352953542 0.4058577413272406 0.8304808352953542 0.2801884371100958
+0.40794927696595695 0.8270913408205769 0.407949276965957 0.8270913408205768 0.2825161538823861
+0.4100400744136629 0.8237056514768035 0.4100400744136629 0.8237056514768035 0.284572415327831
+0.41213096540726285 0.820328699140627 0.41213096540726285 0.820328699140627 0.2863308358725342
+0.41422422142113074 0.8169658650956421 0.41422422142113074 0.8169658650956421 0.28777487540481544
+0.41632174796101723 0.813620632603964 0.41632174796101723 0.813620632603964 0.28889897660062247
+0.4184139183471364 0.8102943346915179 0.4184139183471364 0.8102943346915179 0.289714072078743
+0.4204698898415389 0.80697910942791 0.4204698898415389 0.8069791094279101 0.29025722115328806
+0.4224457269316466 0.8036176805217621 0.4224457269316466 0.8036176805217622 0.29059664108450883
+0.42434391890416445 0.8003769236096856 0.4243439189041645 0.8003769236096856 0.2906765870340146
+0.4258370456446355 0.7969672070999593 0.4258370456446355 0.7969672070999593 0.29091173345637594
+0.4295691661336985 0.792097388507537 0.4295691661336985 0.792097388507537 0.28995512780408145
+0.42925158349045256 0.7957937792401439 0.4292515834904526 0.795793779240144 0.2891170846526237
+0.43271740730334246 0.7876182306153138 0.4327174073033425 0.7876182306153138 0.28887559189628376
+0.4325977158163196 0.7906479482581051 0.4325977158163196 0.7906479482581051 0.28811105202486104
+0.4358057991843134 0.7777009300880945 0.43580579918431345 0.7777009300880945 0.28968562307047896
+0.43859505292531914 0.7760467402544077 0.43859505292531914 0.7760467402544077 0.2878749874835061
+0.43569561368011184 0.7815089485468504 0.43569561368011184 0.7815089485468504 0.288439755829836
+0.4348701786024449 0.7850846699368349 0.4348701786024449 0.785084669936835 0.28800991375311696
+0.44151173361223783 0.7703779677072177 0.44151173361223783 0.7703779677072177 0.28759101217604677
+0.44161081018694 0.7741454324328519 0.44161081018694 0.7741454324328519 0.28567259688209035
+0.44462157815758824 0.7683643644833502 0.44462157815758824 0.7683643644833502 0.2852154545071031
+0.4476323431104909 0.7625018707996675 0.4476323431104909 0.7625018707996675 0.2850966718806855
+0.44771019535039963 0.7663090854910757 0.44771019535039963 0.7663090854910757 0.28254672075159215
+0.45064778785948767 0.7603982021687816 0.4506477878594877 0.7603982021687816 0.282395950315278
+0.4536108267190997 0.7582541073405821 0.4536108267190997 0.7582541073405821 0.2794352724564701
+0.45652865423111905 0.7560887673881033 0.45652865423111905 0.7560887673881033 0.2761862987256054
+0.45939137880334324 0.7538973584638469 0.4593913788033433 0.7538973584638469 0.2726648152090836
+0.4621906149881097 0.7517007950210598 0.4621906149881097 0.7517007950210598 0.2688656775081852
+0.48043885242826084 0.7218029001825865 0.48043885242826084 0.7218029001825865 0.2482866609537089
+0.4649182255974776 0.7495303320448358 0.4649182255974776 0.7495303320448358 0.26477997908956935
+0.46762688668727614 0.747362438689806 0.46762688668727614 0.747362438689806 0.2603027641891335
+0.4702693676905064 0.74518861440601 0.4702693676905065 0.7451886144060101 0.25554794170896483
+0.4726451993418145 0.7437961366994872 0.4726451993418145 0.7437961366994872 0.25032743613890457
+0.47402023768323975 0.7407688704002005 0.4740202376832397 0.7407688704002003 0.24935863688096588
+0.4763282260520066 0.7339178484189922 0.4763282260520066 0.7339178484189922 0.2490792302438075
+0.47710589547911103 0.7378237473284531 0.47710589547911103 0.7378237473284531 0.2427506561538093
+0.4783784596408523 0.7278078055016189 0.4783784596408523 0.7278078055016189 0.24882347130173632
+0.4790582450220378 0.7315909032410982 0.4790582450220378 0.7315909032410982 0.24252532494309656
+0.4811106226991747 0.725539739760554 0.48111062269917465 0.725539739760554 0.24168299723718187
+0.48481779005632103 0.7136143505349379 0.48481779005632103 0.7136143505349378 0.24089421312217343
+0.4871220393452521 0.7116229155587651 0.48712203934525217 0.7116229155587651 0.23355150824191204
+0.48317347780694786 0.7196352043082497 0.4831734778069478 0.7196352043082497 0.240472269267391
+0.4855759708642289 0.7174283839471028 0.4855759708642289 0.7174283839471028 0.23339090702456253
+0.48941027570074547 0.709394301118866 0.4894102757007454 0.709394301118866 0.22614041935826093
+0.49162775975338785 0.7070732451093508 0.49162775975338785 0.7070732451093508 0.2187313485472087
+0.5132786492268667 0.6558049353115721 0.5132786492268667 0.6558049353115721 0.19846251179366403
+0.49401049997295293 0.7045235768174337 0.49401049997295293 0.7045235768174337 0.21038873398815758
+0.49648684776850494 0.7017667366957981 0.496486847768505 0.7017667366957981 0.2014215077996331
+0.4989376723496952 0.6988430456160154 0.4989376723496952 0.6988430456160154 0.19243579393008733
+0.5013115647260513 0.6958601875292111 0.5013115647260512 0.6958601875292111 0.18371263539764005
+0.5150913909703831 0.6592433977219063 0.5150913909703831 0.6592433977219062 0.1830008543789828
+0.5035837908305641 0.6928933849538614 0.5035837908305641 0.6928933849538614 0.17549082221921797
+0.5057693159025184 0.6899407546680628 0.5057693159025184 0.6899407546680628 0.16790398471818527
+0.5170196368165041 0.6628036845195568 0.517019636816504 0.6628036845195568 0.16935176014219275
+0.5190483330879389 0.6669710650451244 0.5190483330879389 0.6669710650451243 0.15710505779880188
+0.5187061655554579 0.6702028574937036 0.5187061655554579 0.6702028574937036 0.15076806865959116
+0.51700488791964 0.6723974321916035 0.51700488791964 0.6723974321916035 0.1492708483351245
+0.5153397205106302 0.675181466003144 0.5153397205106302 0.675181466003144 0.14837881690495935
+0.5136352145429297 0.6781031045661232 0.5136352145429298 0.6781031045661231 0.1490082609953687
+0.511804844159049 0.6810589714341634 0.511804844159049 0.6810589714341634 0.15150965661705776
+0.5098688351003319 0.6840231819639854 0.5098688351003319 0.6840231819639854 0.1557075232547616
+0.5078689908890841 0.6869883684406912 0.507868990889084 0.6869883684406912 0.1611978951519193
+0.5151398015159505 0.6529663808583557 0.5151398015159505 0.6529663808583557 0.20035088130229092
+0.5168972537921467 0.6500953627538419 0.5168972537921467 0.6500953627538419 0.20471310989285788
+0.5187534998976788 0.6467991373673908 0.5187534998976789 0.6467991373673908 0.2127230040515158
+0.5213005205582845 0.6449623225550403 0.5213005205582845 0.6449623225550403 0.21833090507262135
+0.5220368140580094 0.6421180464660409 0.5220368140580094 0.6421180464660409 0.22952066174041078
+0.523331443830303 0.6389044395245237 0.523331443830303 0.6389044395245237 0.24393470467404607
+0.5246324610558293 0.6358519655799886 0.5246324610558294 0.6358519655799886 0.25963474744968856
+0.5316658577305995 0.6164802476342676 0.5316658577305996 0.6164802476342676 0.39311954004903704
+0.5292847994962109 0.6206349356746783 0.529284799496211 0.6206349356746782 0.35419722939631043
+0.5317228305533124 0.6195637437861244 0.5317228305533125 0.6195637437861244 0.3758396588526052
+0.5262139650350728 0.6322743279606553 0.5262139650350727 0.6322743279606554 0.28052519071478027
+0.5266196043144336 0.6290938263049899 0.5266196043144336 0.6290938263049899 0.29703856762819936
+0.5289951679312082 0.623878085011274 0.5289951679312082 0.623878085011274 0.3349289068882418
+0.5282214419229677 0.6270866885999369 0.5282214419229677 0.6270866885999369 0.3141558499095201
+0.5289324515655515 0.61132467462336 0.5289324515655515 0.6113246746233602 0.4082253594114778
+0.532081607134655 0.6132259667518177 0.5320816071346551 0.6132259667518177 0.41599980669933095
+0.529967209230526 0.6068400880790437 0.529967209230526 0.6068400880790437 0.44317994289731516
+0.5308811746358313 0.6025590225579592 0.5308811746358312 0.6025590225579592 0.47783421385803
+0.6003208511798288 0.5615326582692189 0.6003208511798288 0.5615326582692189 0.7709020856904
+0.6051281723291012 0.5599879338188839 0.6051281723291012 0.5599879338188839 0.6991132242940403
+0.6036538062748716 0.5621228449640221 0.6036538062748716 0.562122844964022 0.7400798695614755
+0.5996011732906898 0.5639881792554664 0.5996011732906898 0.5639881792554664 0.805952572384266
+0.5940399044873874 0.5662220303009946 0.5940399044873875 0.5662220303009945 0.8928395579688841
+0.5977021499892918 0.5656393716633044 0.5977021499892919 0.5656393716633045 0.8441476194084704
+0.5968696668468179 0.5680712990688639 0.5968696668468179 0.5680712990688639 0.8745542547494155
+0.5790384827771483 0.5723020302144194 0.5790384827771483 0.5723020302144194 1.083634420173954
+0.5759861059799113 0.5755103497754931 0.5759861059799113 0.5755103497754931 1.0996150861693172
+0.5864726461047328 0.5695385245653276 0.5864726461047328 0.5695385245653276 1.0024133043202597
+0.5912744735448177 0.5700805227700438 0.5912744735448178 0.570080522770044 0.9517384472341106
+0.5835025963998633 0.5730284063450717 0.5835025963998633 0.5730284063450717 1.042689145489806
+0.6438027244936376 0.5334077550627003 0.6438027244936376 0.5334077550627003 0.15815015830298176
+0.6474103256185707 0.5327075967267437 0.6474103256185707 0.5327075967267437 0.13988067424635195
+0.6422965677885377 0.5362341504026338 0.6422965677885378 0.5362341504026338 0.1818080845665074
+0.6145807583369205 0.5555076054756155 0.6145807583369205 0.5555076054756155 0.5503616458212817
+0.6123618995954481 0.5567987339097289 0.612361899595448 0.556798733909729 0.5868802205237306
+0.6094954701255654 0.5575763872142783 0.6094954701255654 0.5575763872142784 0.6241326513756715
+0.6086681060260849 0.5601755417581914 0.6086681060260849 0.5601755417581914 0.6645363531037006
+0.6384649897597121 0.5400867007376392 0.6384649897597122 0.5400867007376392 0.22772548063749368
+0.6411977221702378 0.5387363822144464 0.6411977221702378 0.5387363822144464 0.20465726764642297
+0.6351303571766796 0.5421560154072501 0.6351303571766796 0.5421560154072501 0.26148123038650656
+0.633256477652511 0.5456140052039098 0.633256477652511 0.5456140052039098 0.3046239435600677
+0.6294656627595728 0.5459668407459718 0.6294656627595728 0.5459668407459718 0.3296515381126672
+0.6280860991208492 0.5485817509643424 0.6280860991208492 0.5485817509643424 0.3661913130886357
+0.6213523015786221 0.5508810893561938 0.6213523015786221 0.5508810893561938 0.43838903749917474
+0.6177007940871669 0.5557098885702854 0.6177007940871669 0.5557098885702852 0.5262885370466841
+0.6193166545453409 0.5533971131619385 0.6193166545453409 0.5533971131619385 0.48473692506210103
+0.6252268200628496 0.5503623875146384 0.6252268200628496 0.5503623875146384 0.40512509719609013
+0.6595305839632488 0.5209780108092844 0.6595305839632487 0.5209780108092844 0.05605544327393619
+0.6633038210654215 0.5197532331572643 0.6633038210654215 0.5197532331572643 0.04051315901548791
+0.6580821096280077 0.5244975385295372 0.6580821096280077 0.5244975385295372 0.06841540434390658
+0.6528041157625176 0.5288016330265118 0.6528041157625176 0.5288016330265118 0.10146118745056064
+0.6565629768908257 0.52797554819067 0.6565629768908257 0.5279755481906702 0.08565612832654702
+0.6511960422961122 0.5321172904806124 0.6511960422961122 0.5321172904806124 0.12300665746097796
+0.6814095753800381 0.5031891905607915 0.6814095753800381 0.5031891905607915 0.025862464008175563
+0.6849830347672419 0.5020653930638271 0.6849830347672419 0.5020653930638271 0.03618747073146072
+0.6771048877490288 0.5074918272816951 0.6771048877490288 0.5074918272816951 0.01269325960458455
+0.6806303848440598 0.5063965919512519 0.6806303848440597 0.506396591951252 0.023819892654009963
+0.672902045637598 0.5116205418307509 0.6729020456375981 0.5116205418307508 0.0018324104182882944
+0.6683017685721472 0.5153798354169647 0.6683017685721472 0.5153798354169647 0.018695242517355826
+0.6718771602870984 0.5146276699204518 0.6718771602870984 0.5146276699204518 0.00925493888333951
+0.6671909211445364 0.5187634807129258 0.6671909211445364 0.5187634807129258 0.027187425252406524
+0.6763051167609012 0.5106037788890189 0.6763051167609012 0.5106037788890189 0.011014834813623026
+0.701376630401298 0.48681962833165027 0.701376630401298 0.4868196283316503 0.07638986702657191
+0.7051476429737106 0.4855488824365922 0.7051476429737106 0.4855488824365923 0.08276121189634746
+0.7097381106243664 0.48108070666549285 0.7097381106243664 0.4810807066654928 0.09176351234073186
+0.7087636226785073 0.4842592567815885 0.7087636226785073 0.4842592567815885 0.08815471458826431
+0.6971146507834539 0.4916684514243365 0.6971146507834539 0.4916684514243365 0.06640676881479594
+0.7007162722706505 0.4903732950209904 0.7007162722706505 0.4903732950209904 0.07341179661229136
+0.6928896334277849 0.49638035109617 0.6928896334277849 0.49638035109617 0.05638135075728714
+0.6965167997623833 0.49515612869968506 0.6965167997623833 0.4951561286996851 0.06426541336041179
+0.6885774743448428 0.500942443439847 0.6885774743448428 0.500942443439847 0.04578303888174103
+0.6921992027651688 0.49980808814801003 0.6921992027651688 0.49980808814801003 0.05456463344431306
+0.7131962924271568 0.4798549153370597 0.7131962924271568 0.47985491533705976 0.0960831517005017
+0.7168633395819305 0.4783909554317067 0.7168633395819305 0.4783909554317067 0.10023584637268439
+0.7201185953193956 0.4763641726909267 0.7201185953193957 0.4763641726909267 0.10418415695562536
+0.7283833100582026 0.47088231327212277 0.7283833100582026 0.47088231327212277 0.11348268830277519
+0.7250783106710128 0.47232203729408456 0.7250783106710128 0.47232203729408456 0.11074182513311297
+0.7239204306563971 0.4757097421461546 0.7239204306563972 0.4757097421461545 0.10669523102636978
+0.731869408563299 0.4693232219441057 0.731869408563299 0.46932322194410575 0.11624883186508382
+0.7362843926822398 0.4638367624196317 0.7362843926822399 0.4638367624196316 0.12423693602834372
+0.7397310767724313 0.4621809306549844 0.7397310767724313 0.4621809306549844 0.12704739300186615
+0.735549212418191 0.46771434936458867 0.7355492124181912 0.4677143493645887 0.11902863399671544
+0.7425513790014362 0.4639326037539465 0.7425513790014362 0.46393260375394657 0.12521800381671744
+0.7458168186472074 0.4622229128845288 0.7458168186472074 0.4622229128845288 0.12815734855200198
+0.7498828176844962 0.45740146773553 0.7498828176844962 0.45740146773553 0.13565787282796873
+0.7493754869591479 0.46076994413262806 0.7493754869591479 0.46076994413262806 0.13095486986743185
+0.7533517898527926 0.4559366268119086 0.7533517898527925 0.45593662681190855 0.13857307466378302
+0.7568251320358362 0.4545021263344033 0.7568251320358362 0.4545021263344033 0.14156574231076105
+0.7603178060440774 0.4530533820877693 0.7603178060440774 0.4530533820877693 0.14468815631506726
+0.764206271266279 0.4480281750912108 0.764206271266279 0.4480281750912108 0.15319359168905192
+0.7638149822840078 0.4515833056259637 0.7638149822840078 0.45158330562596377 0.1479156058279936
+0.7711253016383447 0.44492268995818396 0.7711253016383447 0.44492268995818396 0.15965908529232295
+0.767679155155586 0.4464865522068058 0.767679155155586 0.4464865522068058 0.15643266345464535
+0.774533627255342 0.44332414661205377 0.7745336272553419 0.4433241466120537 0.1628459020351335
+0.7852795757201055 0.4351346888905385 0.7852795757201055 0.4351346888905385 0.17614919851654784
+0.7819041655161826 0.4366866947408538 0.7819041655161826 0.4366866947408538 0.17372197777199438
+0.7784537667632666 0.43819917186167096 0.7784537667632666 0.43819917186167096 0.1711416307848177
+0.7779316185788868 0.44176985353698583 0.7779316185788868 0.44176985353698583 0.16585153603116354
+0.7885831741495951 0.43353415582850213 0.7885831741495951 0.43353415582850213 0.1784308321081376
+0.7918294508658481 0.43191055206719314 0.7918294508658481 0.43191055206719314 0.1805107113011751
+0.7949199219392281 0.4302965180782459 0.7949199219392281 0.4302965180782459 0.18235226802931728
+0.7983333973105862 0.4252633159666437 0.7983333973105862 0.4252633159666437 0.18826835798428598
+0.7978550158852299 0.42912763644291196 0.7978550158852299 0.42912763644291196 0.18348198174601024
+0.8013186466898204 0.42489865122671794 0.8013186466898204 0.42489865122671794 0.1880062046269753
+0.8036810029017627 0.4228930941006445 0.8036810029017626 0.4228930941006445 0.18993493501523118
+0.8070274839941192 0.42068414913038105 0.8070274839941192 0.42068414913038105 0.19166039780182254
+0.8103659068521436 0.41849762432261345 0.8103659068521436 0.41849762432261345 0.19320868716214742
+0.8136951128241771 0.4163541369621926 0.8136951128241771 0.41635413696219264 0.1946228402820921
+0.8170253183167371 0.4142446097661035 0.8170253183167372 0.4142446097661035 0.1959747853283568
+0.8203683965004859 0.41215058760243634 0.8203683965004859 0.41215058760243634 0.1973463463058319
+0.8237274994731849 0.41005543302095426 0.8237274994731848 0.4100554330209542 0.19881677679562637
+0.827099856802706 0.40795741439046956 0.827099856802706 0.40795741439046956 0.20044442395457282
+0.8304829195814348 0.40585998632998427 0.8304829195814348 0.40585998632998427 0.202271751601645
+0.833871427917578 0.4037658576181729 0.833871427917578 0.4037658576181729 0.2043291748264048
+0.8372616018318908 0.40167364016733864 0.8372616018318908 0.4016736401673386 0.20663531733537469
+0.8406519851270597 0.39958158995813353 0.8406519851270599 0.3995815899581335 0.20919185257488956
+0.8440423684222287 0.3974895397489284 0.8440423684222287 0.3974895397489284 0.2119811714355142
+0.8474327517173976 0.3953974895397233 0.8474327517173975 0.39539748953972337 0.21496889150604373
+0.8508231350125666 0.3933054393305182 0.8508231350125666 0.3933054393305182 0.21810579811781403
+0.8542135183077355 0.3912133891213131 0.8542135183077356 0.39121338912131304 0.2213303550242142
+0.8576039016029045 0.389121338912108 0.8576039016029045 0.389121338912108 0.22457176135183696
+0.8609942848980734 0.3870292887029029 0.8609942848980733 0.38702928870290293 0.2277532941855183
+0.8643846681932423 0.38493723849369776 0.8643846681932423 0.38493723849369776 0.23079570312228534
+0.8677750514884113 0.38284518828449265 0.8677750514884114 0.3828451882844926 0.233620471228795
+0.8711654347835802 0.38075313807528754 0.8711654347835802 0.38075313807528754 0.2361528119898746
+0.8745558180787492 0.37866108786608244 0.874555818078749 0.3786610878660825 0.2383243232511211
+0.8779462013739181 0.3765690376568773 0.8779462013739181 0.3765690376568773 0.24007526055795278
+0.881336584669087 0.3744769874476722 0.8813365846690872 0.37447698744767216 0.2413564214850352
+0.884726967964256 0.3723849372384671 0.884726967964256 0.3723849372384671 0.24213065014801075
+0.8881173512594249 0.370292887029262 0.8881173512594248 0.37029288702926205 0.2423739791340064
+0.8915077345545939 0.3682008368200569 0.8915077345545939 0.3682008368200569 0.24207642698678603
+0.8948981178497628 0.3661087866108518 0.8948981178497629 0.3661087866108517 0.24124246529751733
+0.8982885011449318 0.36401673640164667 0.8982885011449318 0.36401673640164667 0.23989116206469327
+0.9016788844401007 0.36192468619244156 0.9016788844401006 0.3619246861924416 0.23805599853854512
+0.9050692677352696 0.35983263598323645 0.9050692677352696 0.35983263598323645 0.23578434626718173
+0.9084596510304386 0.35774058577403134 0.9084596510304387 0.3577405857740313 0.2331365806053118
+0.9118500343256075 0.35564853556482623 0.9118500343256075 0.35564853556482623 0.23018479807159478
+0.9152404176207765 0.3535564853556211 0.9152404176207763 0.3535564853556212 0.22701110000146738
+0.9186308009159454 0.351464435146416 0.9186308009159454 0.351464435146416 0.2237054073633555
+0.9220211842111143 0.3493723849372109 0.9220211842111145 0.34937238493721084 0.22036278583114485
+0.9254115675062833 0.3472803347280058 0.9254115675062833 0.3472803347280058 0.2170802910467479
+0.9288019508014522 0.3451882845188007 0.9288019508014521 0.34518828451880074 0.21395339509338718
+0.9321923340966212 0.34309623430959557 0.9321923340966212 0.34309623430959557 0.21107212644595294
+0.9355827173917901 0.34100418410039046 0.9355827173917902 0.3410041841003904 0.2085171402464321
+0.938973100686959 0.33891213389118535 0.938973100686959 0.33891213389118535 0.20635601799680492
+0.942363483982128 0.33682008368198024 0.9423634839821279 0.3368200836819803 0.20464015205258476
+0.9457538672772969 0.33472803347277513 0.9457538672772969 0.33472803347277513 0.203402574769634
+0.9491442505724659 0.33263598326357 0.949144250572466 0.33263598326356997 0.20265702675231886
+0.9525346338676348 0.3305439330543649 0.9525346338676348 0.3305439330543649 0.20239842370316327
+0.9559250171628038 0.3284518828451598 0.9559250171628036 0.32845188284515986 0.20260470043954146
+0.9593154004579727 0.3263598326359547 0.9593154004579727 0.3263598326359547 0.20323982498063406
+0.9627057837531416 0.3242677824267496 0.9627057837531418 0.32426778242674953 0.20425762943384787
+0.9660961670483106 0.3221757322175445 0.9660961670483106 0.3221757322175445 0.20560602824690968
+0.9694865503434795 0.32008368200833937 0.9694865503434794 0.3200836820083394 0.20723119532391274
+0.9728769336386485 0.31799163179913426 0.9728769336386485 0.31799163179913426 0.20908133456809921
+0.9762673169338174 0.31589958158992915 0.9762673169338175 0.3158995815899291 0.21110977651775606
+0.9796577002289864 0.31380753138072404 0.9796577002289864 0.31380753138072404 0.21327723955727415
+0.9830480835241553 0.3117154811715189 0.9830480835241552 0.311715481171519 0.21555318838223594
+0.9864384668193242 0.3096234309623138 0.9864384668193242 0.3096234309623138 0.21791629620336242
+0.9898288501144932 0.3075313807531087 0.9898288501144933 0.30753138075310865 0.22035407050971076
+0.9932192334096621 0.3054393305439036 0.9932192334096621 0.3054393305439036 0.22286173986918986
+0.3096234309623434 0.9932192334096621 0.3096234309623434 0.9932192334096621 0.19965483254988972
+0.31171548117154846 0.9898288501144932 0.3117154811715484 0.9898288501144933 0.20140872110070407
+0.31380753138075346 0.9864384668193242 0.3138075313807534 0.9864384668193242 0.20345525441372
+0.3158995815899585 0.9830480835241553 0.3158995815899585 0.9830480835241552 0.20577807690422942
+0.31799163179916357 0.9796577002289864 0.31799163179916357 0.9796577002289864 0.20835302311926293
+0.32008368200836856 0.9762673169338174 0.32008368200836856 0.9762673169338175 0.21114860954284434
+0.3221757322175737 0.9728769336386485 0.32217573221757373 0.9728769336386485 0.2141268157201979
+0.3242677824267787 0.9694865503434795 0.32426778242677873 0.9694865503434794 0.21724410930343044
+0.3263598326359837 0.9660961670483106 0.3263598326359837 0.9660961670483106 0.22045265902800046
+0.32845188284518867 0.9627057837531416 0.3284518828451887 0.9627057837531418 0.22370167629764579
+0.3305439330543937 0.9593154004579727 0.3305439330543937 0.9593154004579727 0.22693882876032825
+0.3326359832635987 0.9559250171628038 0.3326359832635987 0.9559250171628036 0.23011167605290053
+0.3347280334728038 0.9525346338676348 0.3347280334728038 0.9525346338676348 0.2331690866871405
+0.3368200836820088 0.9491442505724659 0.3368200836820088 0.949144250572466 0.23606260404160181
+0.3389121338912138 0.9457538672772969 0.3389121338912138 0.9457538672772969 0.23874773731934026
+0.3410041841004188 0.942363483982128 0.3410041841004188 0.9423634839821279 0.24118515938130866
+0.3430962343096238 0.938973100686959 0.3430962343096238 0.938973100686959 0.24334179727329489
+0.3451882845188289 0.9355827173917901 0.3451882845188288 0.9355827173917902 0.24519180304877605
+0.34728033472803393 0.9321923340966212 0.34728033472803393 0.9321923340966212 0.24671739234788906
+0.349372384937239 0.9288019508014522 0.349372384937239 0.9288019508014521 0.2479095364016459
+0.35146443514644404 0.9254115675062833 0.35146443514644404 0.9254115675062833 0.24876849000121767
+0.3535564853556491 0.9220211842111143 0.35355648535564915 0.9220211842111145 0.24930413385015102
+0.3556485355648541 0.9186308009159454 0.35564853556485415 0.9186308009159454 0.2495361050300002
+0.3577405857740591 0.9152404176207765 0.35774058577405915 0.9152404176207763 0.2494936846476892
+0.35983263598326415 0.9118500343256075 0.35983263598326415 0.9118500343256075 0.24921540795199573
+0.3619246861924691 0.9084596510304386 0.36192468619246915 0.9084596510304387 0.2487483605250996
+0.3640167364016742 0.9050692677352696 0.3640167364016742 0.9050692677352696 0.2481471262018111
+0.3661087866108792 0.9016788844401007 0.3661087866108792 0.9016788844401006 0.24747236011798687
+0.3682008368200842 0.8982885011449319 0.3682008368200842 0.8982885011449319 0.24678897580101442
+0.3702928870292892 0.894898117849763 0.3702928870292892 0.8948981178497631 0.2461639601105252
+0.3723849372384942 0.8915077345545941 0.3723849372384942 0.891507734554594 0.24566386449949593
+0.3744769874476992 0.8881173512594251 0.3744769874476992 0.8881173512594253 0.24535206369051885
+0.3765690376569042 0.8847269679642563 0.3765690376569042 0.8847269679642563 0.24528591868277158
+0.37866108786610925 0.8813365846690874 0.37866108786610925 0.8813365846690874 0.24551402218357607
+0.3807531380753143 0.8779462013739184 0.38075313807531425 0.8779462013739184 0.24607373123289913
+0.3828451882845193 0.8745558180787495 0.38284518828451924 0.8745558180787495 0.2469891944511375
+0.38493723849372435 0.8711654347835807 0.38493723849372435 0.8711654347835808 0.24827005405560956
+0.3870292887029294 0.8677750514884117 0.3870292887029294 0.8677750514884117 0.24991094607996542
+0.38912133891213446 0.8643846681932428 0.38912133891213446 0.8643846681932427 0.25189184415694377
+0.39121338912133957 0.860994284898074 0.39121338912133957 0.860994284898074 0.2541792067875181
+0.3933054393305445 0.857603901602905 0.39330543933054457 0.857603901602905 0.25672781118796184
+0.3953974895397495 0.8542135183077362 0.39539748953974957 0.8542135183077361 0.2594831017743251
+0.3974895397489546 0.8508231350125672 0.3974895397489546 0.8508231350125673 0.2623838549926815
+0.3995815899581596 0.8474327517173984 0.3995815899581596 0.8474327517173984 0.26536496408311777
+0.4016736401673647 0.8440423684222295 0.4016736401673647 0.8440423684222295 0.26836017119575023
+0.4037656903765697 0.8406519851270605 0.4037656903765697 0.8406519851270605 0.2713046108886416
+0.40585774083931314 0.8372616018345695 0.40585774083931314 0.8372616018345695 0.2741370692901696
+0.4079497921614572 0.8338712187877139 0.4079497921614572 0.8338712187877139 0.2768019012241458
+0.4100418427144729 0.8304808352595234 0.4100418427144729 0.8304808352595234 0.279250581815138
+0.4121330726691772 0.8270918855461922 0.4121330726691772 0.8270918855461922 0.2814419994943638
+0.4142234475351181 0.8237076791676893 0.4142234475351181 0.8237076791676893 0.28334292763786983
+0.41631423387854144 0.8203331442006867 0.41631423387854144 0.8203331442006867 0.2849288788486366
+0.41840648850763507 0.8169729508482829 0.4184064885076351 0.8169729508482829 0.2861864059718781
+0.4204974666001442 0.813628683472376 0.42049746660014425 0.813628683472376 0.28711669142752433
+0.42257774329984094 0.810294279807774 0.42257774329984094 0.810294279807774 0.28773889429568905
+0.42463746334845875 0.8069499080212276 0.4246374633484588 0.8069499080212276 0.2880863958525392
+0.42669140625707275 0.803587327943262 0.42669140625707275 0.803587327943262 0.288180458387122
+0.4288702928870111 0.7999673855850018 0.42887029288701106 0.7999673855850018 0.288088693827879
+0.4324149151260415 0.7941617613163636 0.4324149151260415 0.7941617613163636 0.28719398748306074
+0.4321393560276552 0.7978017697402622 0.4321393560276552 0.7978017697402623 0.2861993315920191
+0.4355362042699259 0.7889072777819475 0.43553620426992584 0.7889072777819476 0.28619146682918245
+0.4355073541349947 0.7925199221309635 0.4355073541349947 0.7925199221309635 0.2850291084619749
+0.438639185155701 0.7797679885353033 0.43863918515570094 0.7797679885353032 0.2863741597285297
+0.44164175131700717 0.7779031016873997 0.44164175131700717 0.7779031016873997 0.2840135957693036
+0.4383040081620405 0.7835062175383041 0.43830400816204046 0.783506217538304 0.2853690670440466
+0.43826293167563307 0.78701967811165 0.43826293167563307 0.78701967811165 0.2841987453794434
+0.44468296880167446 0.7721789352899485 0.4446829688016745 0.7721789352899485 0.28312507347235494
+0.44472024770055696 0.7759977183043293 0.444720247700557 0.7759977183043293 0.28126944143901905
+0.44778609261153385 0.770154199351721 0.44778609261153385 0.770154199351721 0.2802329166538749
+0.4507609130844996 0.7641961869156616 0.45076091308449956 0.7641961869156616 0.27960971374024673
+0.45087351291125505 0.7680464393409169 0.45087351291125505 0.7680464393409169 0.27705416263289084
+0.45376562855997843 0.7620339003384536 0.45376562855997843 0.7620339003384536 0.27640870442863236
+0.4567250438316636 0.7598478126933289 0.4567250438316636 0.7598478126933289 0.27292372631420303
+0.4596408910502432 0.7576326969853031 0.4596408910502432 0.7576326969853032 0.2691509677307073
+0.46249844627167624 0.7554206239891388 0.4624984462716762 0.7554206239891387 0.2650880045543555
+0.46525897873501904 0.7532251416489152 0.46525897873501904 0.7532251416489152 0.2608076056561546
+0.4838921915795526 0.7233147507682384 0.4838921915795526 0.7233147507682384 0.23367784177699366
+0.4679795961601232 0.7510221788404373 0.4679795961601232 0.7510221788404373 0.2562081944226064
+0.47063510590403634 0.748819441259151 0.47063510590403634 0.748819441259151 0.25134000104602233
+0.4732048417505532 0.7467143407165279 0.4732048417505532 0.7467143407165279 0.24616877194855044
+0.4754078759620716 0.7441165946383688 0.4754078759620716 0.7441165946383688 0.2421469494060466
+0.4777974735143804 0.7417050584741777 0.4777974735143804 0.7417050584741777 0.23701363854260846
+0.4797706886808421 0.7353942130627518 0.4797706886808421 0.7353942130627518 0.23639077639377806
+0.48048890840674163 0.7391867845461728 0.48048890840674163 0.7391867845461729 0.23053599227903984
+0.4817702602037768 0.7293043064131461 0.4817702602037768 0.7293043064131463 0.2353953111438766
+0.4824747023835821 0.7330840242260165 0.4824747023835821 0.7330840242260165 0.22922838963029232
+0.48446810620473596 0.7270567949695508 0.48446810620473596 0.7270567949695508 0.22767416846336327
+0.4880292949903249 0.7149384403032548 0.4880292949903248 0.7149384403032548 0.22587502578163776
+0.49032516313915203 0.7128757107884006 0.49032516313915203 0.7128757107884006 0.21813351055437205
+0.4870616985458706 0.7209984112655834 0.4870616985458706 0.7209984112655833 0.2235704747260621
+0.48861165089378605 0.717956483987358 0.488611650893786 0.717956483987358 0.22015813916650112
+0.49265231899305073 0.7105707380331902 0.49265231899305073 0.7105707380331902 0.2100676003561118
+0.4950219642581715 0.7081542785324108 0.4950219642581715 0.7081542785324108 0.20150895860164894
+0.5169427514387361 0.6563377686145971 0.5169427514387362 0.6563377686145971 0.1860144415752695
+0.4974356118082921 0.7056019128582955 0.49743561180829216 0.7056019128582954 0.19250849944581125
+0.5000368998662271 0.7027542518110252 0.5000368998662271 0.7027542518110251 0.18257241122192938
+0.5025118589924995 0.6995774388251574 0.5025118589924995 0.6995774388251573 0.1734155884226598
+0.5048208011255251 0.6965286206580088 0.5048208011255251 0.6965286206580088 0.1650288912270104
+0.5188814312297036 0.6597357629905608 0.5188814312297038 0.6597357629905608 0.17402596368387693
+0.5070310141110095 0.6935240263486951 0.5070310141110096 0.6935240263486951 0.15738183183968857
+0.5091771306734865 0.6905340943317081 0.5091771306734865 0.6905340943317081 0.15059887807621067
+0.5209857429046074 0.6631476220224689 0.5209857429046075 0.6631476220224689 0.16505897353809307
+0.5228691836179312 0.6666913077531732 0.5228691836179312 0.6666913077531732 0.15911647746456717
+0.5213626852037228 0.6696846539735694 0.5213626852037229 0.6696846539735694 0.15124905121876897
+0.5201530586363327 0.6727944959253865 0.5201530586363327 0.6727944959253865 0.14499244613324677
+0.5185735802368717 0.6756261773601029 0.5185735802368717 0.6756261773601029 0.14110727835544998
+0.5168783518194975 0.6785532256109887 0.5168783518194974 0.6785532256109886 0.13911137816057473
+0.5150912936176181 0.6815328550763636 0.5150912936176181 0.6815328550763636 0.13914686148840752
+0.5132119912516128 0.6845333070004722 0.5132119912516128 0.6845333070004722 0.1411926604600461
+0.5112278658707012 0.6875313659727871 0.5112278658707012 0.6875313659727871 0.1451510532210116
+0.5186948253774707 0.6534477010710529 0.5186948253774707 0.6534477010710528 0.1914868714325557
+0.520386730758725 0.6504977834140091 0.520386730758725 0.650497783414009 0.19958282005740927
+0.5224014410832236 0.64787477815893 0.5224014410832236 0.64787477815893 0.20929005418446558
+0.5239970091459822 0.6449268684838008 0.5239970091459822 0.6449268684838008 0.22238526665344346
+0.5253261896304541 0.6421100056330699 0.5253261896304541 0.6421100056330699 0.23641157843724767
+0.5272097749255964 0.6389571376067235 0.5272097749255965 0.6389571376067235 0.2559726396169765
+0.527578691464911 0.6355069708033321 0.527578691464911 0.6355069708033321 0.2719237456813531
+0.529338588112281 0.6336995278130222 0.529338588112281 0.6336995278130222 0.28899078021781727
+0.5346291000380874 0.6131631082402306 0.5346291000380874 0.6131631082402306 0.4376854243133099
+0.5341891192659168 0.6158539668789772 0.5341891192659168 0.6158539668789772 0.41749981748232656
+0.5336277406715576 0.6184395016684697 0.5336277406715576 0.6184395016684697 0.3972323216763893
+0.5342092458386709 0.6211972329515042 0.5342092458386709 0.6211972329515042 0.38658698986226575
+0.532078084862098 0.6233691183364737 0.532078084862098 0.6233691183364737 0.35781547374917483
+0.5295941518109007 0.6303723509558061 0.5295941518109007 0.6303723509558061 0.30574958117264944
+0.5311026760592606 0.6269857241402074 0.5311026760592606 0.6269857241402074 0.33189940588702976
+0.5335095157467706 0.6099463031848191 0.5335095157467706 0.6099463031848192 0.4481426153745795
+0.5367957100313048 0.6117269769559623 0.5367957100313047 0.6117269769559623 0.46820121542039833
+0.5350942335441765 0.6011811369148753 0.5350942335441765 0.6011811369148753 0.521726192244753
+0.5343610775201483 0.6054708714253755 0.5343610775201483 0.6054708714253755 0.48516373800239304
+0.5728044618867635 0.5785914422858681 0.5728044618867635 0.5785914422858681 1.098855849069176
+0.5694965887303229 0.5815328057610369 0.569496588730323 0.5815328057610368 1.0818132884068363
+0.6022287857207029 0.5642541392464984 0.6022287857207029 0.5642541392464984 0.7792895320329958
+0.6070955263986839 0.5627074707232746 0.6070955263986839 0.5627074707232746 0.7103345729624327
+0.6049198423527593 0.5644088271769123 0.6049198423527593 0.5644088271769123 0.7515571822843969
+0.6010852587188036 0.5662637013588565 0.6010852587188036 0.5662637013588565 0.8118817889441695
+0.5949128251602565 0.5696466891362607 0.5949128251602565 0.5696466891362607 0.908109027456808
+0.5997627382577635 0.5683948247035946 0.5997627382577635 0.5683948247035947 0.8454460438449595
+0.5981858552834759 0.5704023947688055 0.5981858552834759 0.5704023947688056 0.8778763897323526
+0.5940180980049028 0.5720228295789394 0.5940180980049028 0.5720228295789394 0.9321975072830189
+0.5804397392372309 0.5764280227285402 0.5804397392372308 0.5764280227285402 1.0672798876744916
+0.5771981728938744 0.5796921854930465 0.5771981728938744 0.5796921854930465 1.0763039505036343
+0.5882675294584945 0.5737585169731874 0.5882675294584944 0.5737585169731875 0.9985622023530032
+0.5919858606935051 0.5734961747596004 0.5919858606935051 0.5734961747596002 0.960176420931251
+0.5909496853469361 0.5758395110129043 0.5909496853469361 0.5758395110129043 0.978161153203977
+0.5850714023045207 0.5772654129262631 0.5850714023045206 0.5772654129262632 1.031733877748079
+0.6459276055197114 0.5359111307311579 0.6459276055197113 0.5359111307311579 0.16507588610977753
+0.6495789878014601 0.5353424265356157 0.6495789878014601 0.5353424265356157 0.1482222672439908
+0.6443691442788346 0.5388787778744578 0.6443691442788345 0.5388787778744578 0.19281190396861494
+0.6153720574626387 0.55774703621241 0.6153720574626388 0.55774703621241 0.571341259490639
+0.6125422414248501 0.5597755641948131 0.6125422414248501 0.5597755641948131 0.622131414359754
+0.6107045958362365 0.5625262509898169 0.6107045958362365 0.5625262509898169 0.6718110733808826
+0.6182930601739395 0.558248249881678 0.6182930601739395 0.558248249881678 0.5521259044014857
+0.6386813399017925 0.5429975673319609 0.6386813399017925 0.5429975673319609 0.2522254321731026
+0.6419186765608276 0.5417673138084887 0.6419186765608275 0.5417673138084887 0.22695494100143845
+0.6370233784225713 0.5453178557243755 0.6370233784225713 0.5453178557243755 0.28236357726921363
+0.6356026168265787 0.5481200322324111 0.6356026168265787 0.5481200322324112 0.31800045583945774
+0.6313873186412089 0.5492546259190674 0.6313873186412088 0.5492546259190673 0.3538310202136585
+0.6285282235930578 0.5510369827025023 0.6285282235930578 0.5510369827025023 0.39103727668305344
+0.6231813104591148 0.5535878664890869 0.623181310459115 0.5535878664890869 0.4575483210139364
+0.6210884351680959 0.556689794595007 0.6210884351680958 0.556689794595007 0.5108087045442932
+0.6272023258720343 0.5537271141169107 0.6272023258720343 0.5537271141169108 0.43081262758713873
+0.6619845136050546 0.5235296816285218 0.6619845136050547 0.5235296816285216 0.053572984659553784
+0.6664416550352898 0.522463389975056 0.6664416550352898 0.522463389975056 0.040238707862819946
+0.6603975162640109 0.5271492201365519 0.6603975162640109 0.5271492201365519 0.07166913396468798
+0.6550026544939418 0.5314013789410823 0.6550026544939418 0.5314013789410823 0.10721273345339345
+0.6587940976689599 0.5306197019639475 0.6587940976689599 0.5306197019639475 0.09312285919739399
+0.6533700482940598 0.5347395694847842 0.6533700482940598 0.5347395694847842 0.13239574155066466
+0.6842024735522312 0.5053437588585218 0.6842024735522312 0.5053437588585218 0.03436875469938444
+0.6878073018437152 0.5042834269347513 0.6878073018437152 0.5042834269347513 0.0441106490368059
+0.6798168237488157 0.5095594729802182 0.6798168237488157 0.5095594729802181 0.022336144583148018
+0.6833804095896662 0.5085733770908829 0.6833804095896662 0.508573377090883 0.032970111726755964
+0.6753727590831998 0.5136998703432284 0.6753727590831998 0.5136998703432284 0.01252799583503827
+0.6707861580663241 0.5177280505276644 0.6707861580663241 0.5177280505276644 0.01888696815137023
+0.6743388305928283 0.5167809896382679 0.6743388305928283 0.5167809896382679 0.018529875209484705
+0.6697415138126012 0.5209227738886038 0.6697415138126012 0.5209227738886036 0.030958527174408123
+0.6788824197456098 0.5127050661673531 0.6788824197456097 0.512705066167353 0.022165275018767774
+0.704331063561182 0.48905217536401874 0.704331063561182 0.48905217536401874 0.0796254758077558
+0.7078676337408247 0.4877376464133377 0.7078676337408246 0.48773764641333767 0.08497852547681715
+0.7123291343006958 0.4831606150193201 0.7123291343006958 0.4831606150193201 0.09260510107086393
+0.7113980600217498 0.48650967637875014 0.7113980600217498 0.48650967637875014 0.08960405570931668
+0.7001223731230284 0.49393187312349873 0.7001223731230284 0.49393187312349873 0.0712399108028297
+0.7036500357279016 0.49261234875548654 0.7036500357279016 0.49261234875548654 0.07729599625105327
+0.6958601189809139 0.4986505127159011 0.6958601189809138 0.49865051271590116 0.06253087492764552
+0.6995532693275601 0.49748920618357423 0.6995532693275601 0.49748920618357423 0.06966497184217918
+0.6914408559826338 0.5032164042972453 0.6914408559826338 0.5032164042972455 0.05299649991961634
+0.6951113386122789 0.50213806665742 0.6951113386122789 0.50213806665742 0.06103923769582444
+0.7159797977718245 0.48196358109728515 0.7159797977718245 0.48196358109728515 0.0965986580173933
+0.7194075504552837 0.4802946565241142 0.7194075504552836 0.4802946565241141 0.10026026613747403
+0.7229089346063292 0.47910010789819935 0.7229089346063292 0.4791001078981994 0.10324870344879776
+0.7310233705810273 0.47303946879472697 0.7310233705810273 0.47303946879472697 0.11197321624843738
+0.7274783008220346 0.4744656676233176 0.7274783008220346 0.4744656676233176 0.10934809462772742
+0.7265337736545513 0.4779574716379832 0.7265337736545513 0.47795747163798324 0.1059103066856608
+0.7345974441902815 0.47159071778550427 0.7345974441902815 0.47159071778550427 0.11451542258835966
+0.7396096112739818 0.4660586179162871 0.7396096112739817 0.4660586179162872 0.12193348403629566
+0.7381825421219821 0.4701872855951908 0.7381825421219821 0.4701872855951908 0.11698022915127448
+0.7428836176163541 0.4666465892885143 0.7428836176163541 0.4666465892885143 0.12208744118949491
+0.7456447307382219 0.46536241335642925 0.7456447307382219 0.4653624133564293 0.12435411967454861
+0.7488912080727039 0.4640746010381231 0.7488912080727039 0.4640746010381231 0.1268799184934638
+0.7528608954334235 0.45934605666912076 0.7528608954334235 0.4593460566691208 0.13383735002528188
+0.7523394508437731 0.46272293425897004 0.7523394508437731 0.46272293425897004 0.12968070124576317
+0.7563507120926184 0.4579368383473194 0.7563507120926184 0.4579368383473194 0.13684241385118903
+0.7598530795194679 0.45653072501865727 0.7598530795194679 0.45653072501865727 0.13997249912448032
+0.7633755168921535 0.45511208545861165 0.7633755168921535 0.45511208545861165 0.14322579564689053
+0.7673259141995219 0.4500859411034727 0.7673259141995219 0.4500859411034727 0.1512198212421445
+0.7669275573774316 0.45366899970900004 0.7669275573774316 0.45366899970900004 0.14658458858143045
+0.7741927480307482 0.44695846632870834 0.7741927480307482 0.44695846632870834 0.15784575330069264
+0.7708146007807551 0.448550770010214 0.7708146007807551 0.448550770010214 0.15455228735598484
+0.7774617613424049 0.4453241598293001 0.7774617613424049 0.4453241598293001 0.16106421102840396
+0.7880929960678839 0.437236787864955 0.7880929960678839 0.437236787864955 0.1736322259201102
+0.7847591520754046 0.43881384397711204 0.7847591520754046 0.43881384397711204 0.1711679484107638
+0.7813536357553748 0.4402969066777784 0.7813536357553748 0.4402969066777784 0.1686027867774724
+0.7808215587372761 0.44378165110541323 0.7808215587372761 0.4437816511054132 0.16407089832657018
+0.7913824846021289 0.43561134239131727 0.7913824846021288 0.43561134239131727 0.1759346811096949
+0.7909267605431715 0.43930578783475616 0.7909267605431715 0.43930578783475616 0.17179729520128328
+0.7946165490363176 0.43398359059636993 0.7946165490363176 0.43398359059637 0.17799189845512567
+0.7977385262546401 0.4324006152043046 0.7977385262546401 0.4324006152043047 0.17977538505777016
+0.800848407390764 0.4280043627683603 0.800848407390764 0.4280043627683603 0.1844701971104716
+0.8000557394577221 0.4309284579977798 0.8000557394577221 0.4309284579977798 0.18126709722146933
+0.8038675655886665 0.42674679765173645 0.8038675655886663 0.42674679765173645 0.18538311558602671
+0.8070361391688806 0.4247900594322647 0.8070361391688806 0.4247900594322647 0.18697641337754825
+0.8103464398021692 0.4226758562135618 0.8103464398021692 0.4226758562135618 0.18855522372704103
+0.8136755752030739 0.42054324678431004 0.8136755752030739 0.42054324678431004 0.1900368288136942
+0.8170140379980393 0.4184267610545951 0.8170140379980392 0.4184267610545951 0.1914483420028619
+0.8203646738640406 0.41632776820849315 0.8203646738640406 0.41632776820849315 0.19285094089538937
+0.8237278096689801 0.41423455998242725 0.8237278096689801 0.41423455998242725 0.1943184752052943
+0.8271012868544233 0.4121397638458686 0.8271012868544233 0.4121397638458686 0.19591662472977453
+0.8304835770056304 0.4100442110420865 0.8304835770056304 0.4100442110420865 0.19769435371176905
+0.8338715326616769 0.407950123107412 0.8338715326616769 0.407950123107412 0.19968776916600997
+0.8372616018318908 0.40585774058574886 0.8372616018318908 0.40585774058574886 0.20192030550100903
+0.8406519851270597 0.40376569037654375 0.8406519851270599 0.4037656903765438 0.20440066325489833
+0.8440423684222287 0.40167364016733864 0.8440423684222287 0.4016736401673386 0.20711948451266884
+0.8474327517173976 0.39958158995813353 0.8474327517173975 0.3995815899581335 0.21005034935191338
+0.8508231350125666 0.3974895397489284 0.8508231350125666 0.3974895397489284 0.21315138255620844
+0.8542135183077355 0.3953974895397233 0.8542135183077356 0.39539748953972337 0.21636735739128224
+0.8576039016029045 0.3933054393305182 0.8576039016029045 0.3933054393305182 0.21963244931461243
+0.8609942848980734 0.3912133891213131 0.8609942848980733 0.39121338912131304 0.22287338652467473
+0.8643846681932423 0.389121338912108 0.8643846681932423 0.389121338912108 0.2260127555828398
+0.8677750514884113 0.3870292887029029 0.8677750514884114 0.38702928870290293 0.22897225891554954
+0.8711654347835802 0.38493723849369776 0.8711654347835802 0.38493723849369776 0.23167577264314487
+0.8745558180787492 0.38284518828449265 0.874555818078749 0.3828451882844926 0.2340521056421622
+0.8779462013739181 0.38075313807528754 0.8779462013739181 0.38075313807528754 0.23603740587261282
+0.881336584669087 0.37866108786608244 0.8813365846690872 0.3786610878660825 0.23757719394542906
+0.884726967964256 0.3765690376568773 0.884726967964256 0.3765690376568773 0.23862802616118395
+0.8881173512594249 0.3744769874476722 0.8881173512594248 0.37447698744767216 0.23915880128749298
+0.8915077345545939 0.3723849372384671 0.8915077345545939 0.3723849372384671 0.23915172940504606
+0.8948981178497628 0.370292887029262 0.8948981178497629 0.37029288702926205 0.2386029794682993
+0.8982885011449318 0.3682008368200569 0.8982885011449318 0.3682008368200569 0.23752301661464906
+0.9016788844401007 0.3661087866108518 0.9016788844401006 0.3661087866108517 0.23593663204447887
+0.9050692677352696 0.36401673640164667 0.9050692677352696 0.36401673640164667 0.23388265844741982
+0.9084596510304386 0.36192468619244156 0.9084596510304387 0.3619246861924416 0.23141335331585178
+0.9118500343256075 0.35983263598323645 0.9118500343256075 0.35983263598323645 0.2285934221288403
+0.9152404176207765 0.35774058577403134 0.9152404176207763 0.3577405857740313 0.22549864496357339
+0.9186308009159454 0.35564853556482623 0.9186308009159454 0.35564853556482623 0.2222140662057037
+0.9220211842111143 0.3535564853556211 0.9220211842111145 0.3535564853556212 0.21883171146678085
+0.9254115675062833 0.351464435146416 0.9254115675062833 0.351464435146416 0.21544781337735489
+0.9288019508014522 0.3493723849372109 0.9288019508014521 0.34937238493721084 0.21215956357413016
+0.9321923340966212 0.3472803347280058 0.9321923340966212 0.3472803347280058 0.20906146521011507
+0.9355827173917901 0.3451882845188007 0.9355827173917902 0.34518828451880074 0.20624143740181097
+0.938973100686959 0.34309623430959557 0.938973100686959 0.34309623430959557 0.20377691119147714
+0.942363483982128 0.34100418410039046 0.9423634839821279 0.3410041841003904 0.2017312374019
+0.9457538672772969 0.33891213389118535 0.9457538672772969 0.33891213389118535 0.2001507743030714
+0.9491442505724659 0.33682008368198024 0.949144250572466 0.3368200836819803 0.19906301122650014
+0.9525346338676348 0.33472803347277513 0.9525346338676348 0.33472803347277513 0.19847599819898834
+0.9559250171628038 0.33263598326357 0.9559250171628036 0.33263598326356997 0.19837919778220933
+0.9593154004579727 0.3305439330543649 0.9593154004579727 0.3305439330543649 0.19874568405363435
+0.9627057837531416 0.3284518828451598 0.9627057837531418 0.32845188284515986 0.19953543066286136
+0.9660961670483106 0.3263598326359547 0.9660961670483106 0.3263598326359547 0.20069929883122953
+0.9694865503434795 0.3242677824267496 0.9694865503434794 0.32426778242674953 0.20218328238975777
+0.9728769336386485 0.3221757322175445 0.9728769336386485 0.3221757322175445 0.20393259042164882
+0.9762673169338174 0.32008368200833937 0.9762673169338175 0.3200836820083394 0.20589522800033858
+0.9796577002289864 0.31799163179913426 0.9796577002289864 0.31799163179913426 0.20802484223733717
+0.9830480835241553 0.31589958158992915 0.9830480835241552 0.3158995815899291 0.21028270772064664
+0.9864384668193242 0.31380753138072404 0.9864384668193242 0.31380753138072404 0.2126388156333321
+0.9898288501144932 0.3117154811715189 0.9898288501144933 0.311715481171519 0.21507209841454045
+0.9932192334096621 0.3096234309623138 0.9932192334096621 0.3096234309623138 0.21756986869603256
+0.31380753138075346 0.9932192334096621 0.3138075313807534 0.9932192334096621 0.20160100532923564
+0.31589958158995846 0.9898288501144932 0.3158995815899584 0.9898288501144933 0.20332962550418185
+0.31799163179916357 0.9864384668193242 0.31799163179916357 0.9864384668193242 0.20534941766737472
+0.3200836820083686 0.9830480835241553 0.3200836820083686 0.9830480835241552 0.2076444639088917
+0.3221757322175737 0.9796577002289864 0.32217573221757373 0.9796577002289864 0.21019037609953575
+0.3242677824267787 0.9762673169338174 0.32426778242677873 0.9762673169338175 0.21295485113338788
+0.3263598326359837 0.9728769336386485 0.3263598326359837 0.9728769336386485 0.21589855733058957
+0.32845188284518867 0.9694865503434795 0.3284518828451887 0.9694865503434794 0.2189762943906047
+0.3305439330543937 0.9660961670483106 0.3305439330543937 0.9660961670483106 0.22213835755223266
+0.3326359832635988 0.9627057837531416 0.3326359832635988 0.9627057837531418 0.2253320339507732
+0.3347280334728038 0.9593154004579727 0.3347280334728038 0.9593154004579727 0.22850316385299665
+0.3368200836820088 0.9559250171628038 0.3368200836820088 0.9559250171628036 0.23159770893246476
+0.3389121338912138 0.9525346338676348 0.3389121338912138 0.9525346338676348 0.23456328135458035
+0.3410041841004188 0.9491442505724659 0.3410041841004188 0.949144250572466 0.23735059894377122
+0.3430962343096238 0.9457538672772969 0.3430962343096238 0.9457538672772969 0.23991484157020224
+0.3451882845188289 0.942363483982128 0.3451882845188288 0.9423634839821279 0.24221689129242294
+0.34728033472803393 0.938973100686959 0.34728033472803393 0.938973100686959 0.2442244434650724
+0.349372384937239 0.9355827173917901 0.349372384937239 0.9355827173917902 0.24591297808212984
+0.35146443514644404 0.9321923340966212 0.35146443514644404 0.9321923340966212 0.24726658039062285
+0.3535564853556491 0.9288019508014522 0.35355648535564915 0.9288019508014521 0.24827859766910923
+0.3556485355648541 0.9254115675062833 0.35564853556485415 0.9254115675062833 0.24895211543278242
+0.3577405857740591 0.9220211842111143 0.35774058577405915 0.9220211842111145 0.24930023164314016
+0.35983263598326415 0.9186308009159454 0.35983263598326415 0.9186308009159454 0.24934610229099533
+0.3619246861924691 0.9152404176207765 0.36192468619246915 0.9152404176207763 0.2491227266961411
+0.36401673640167415 0.9118500343256075 0.36401673640167415 0.9118500343256075 0.248672437032585
+0.3661087866108792 0.9084596510304386 0.3661087866108792 0.9084596510304387 0.24804605535210136
+0.3682008368200842 0.9050692677352696 0.3682008368200842 0.9050692677352696 0.24730168458212795
+0.3702928870292892 0.9016788844401007 0.3702928870292892 0.9016788844401006 0.24650310978208598
+0.3723849372384942 0.8982885011449319 0.3723849372384942 0.8982885011449319 0.24571780450039435
+0.3744769874476992 0.8948981178497629 0.3744769874476992 0.8948981178497629 0.24501456586141215
+0.37656903765690425 0.8915077345545941 0.37656903765690425 0.891507734554594 0.24446084090954343
+0.37866108786610925 0.8881173512594251 0.37866108786610925 0.8881173512594253 0.24411985301095881
+0.38075313807531425 0.8847269679642563 0.38075313807531425 0.8847269679642563 0.24404768470658242
+0.38284518828451924 0.8813365846690874 0.38284518828451924 0.8813365846690874 0.2442905131381878
+0.3849372384937244 0.8779462013739184 0.3849372384937244 0.8779462013739184 0.24488221528121132
+0.3870292887029294 0.8745558180787495 0.3870292887029294 0.8745558180787495 0.2458425533405959
+0.38912133891213446 0.8711654347835807 0.38912133891213446 0.8711654347835808 0.2471761113559002
+0.39121338912133946 0.8677750514884117 0.39121338912133946 0.8677750514884117 0.24887208548534012
+0.3933054393305445 0.8643846681932428 0.39330543933054457 0.8643846681932427 0.25090494366680827
+0.3953974895397496 0.860994284898074 0.3953974895397496 0.860994284898074 0.2532358816580483
+0.3974895397489546 0.8576039016029051 0.3974895397489546 0.8576039016029052 0.2558149284709434
+0.3995815899581596 0.8542135183077362 0.3995815899581596 0.8542135183077361 0.2585835069896017
+0.4016736401673646 0.8508231350125672 0.4016736401673646 0.8508231350125673 0.26147723959330893
+0.4037656903765697 0.8474327517173984 0.4037656903765697 0.8474327517173984 0.26442880078611847
+0.4058577405857748 0.8440423684222295 0.4058577405857748 0.8440423684222295 0.267370650851041
+0.4079497907949798 0.8406519851270605 0.4079497907949798 0.8406519851270605 0.27023752628490577
+0.41004184197630344 0.8372616018421836 0.41004184197630344 0.8372616018421836 0.27296860488254054
+0.4121338959121466 0.8338712200058039 0.4121338959121466 0.8338712200058039 0.2755092999928072
+0.41422587940501127 0.8304810464834175 0.41422587940501127 0.8304810464834175 0.27781253703765185
+0.41631706007873026 0.8270927148132272 0.41631706007873026 0.8270927148132273 0.2798390684138011
+0.4184073693262788 0.8237100792565228 0.4184073693262788 0.823710079256523 0.28155753230128727
+0.4204981608485616 0.8203375435326671 0.42049816084856156 0.8203375435326671 0.2829461826619913
+0.4225895762421406 0.8169790678703519 0.4225895762421406 0.8169790678703519 0.2839951044191413
+0.42467944543280783 0.813635185422578 0.42467944543280783 0.813635185422578 0.2847083591201935
+0.4267674871630071 0.8103011658151011 0.4267674871630071 0.8103011658151011 0.2850997792500865
+0.42886895138957754 0.8069853420925293 0.42886895138957754 0.8069853420925294 0.28516861698023366
+0.43098116762275857 0.8036291667467049 0.43098116762275857 0.8036291667467049 0.2849448279910139
+0.43253701304961 0.8007986711289111 0.43253701304961006 0.8007986711289112 0.2846928632851813
+0.43542362213779756 0.7960950576950024 0.43542362213779756 0.7960950576950024 0.2838703903403664
+0.43532437151161446 0.7995408111974559 0.43532437151161446 0.7995408111974559 0.28268140842960054
+0.4385051566981144 0.7907793979522236 0.43850515669811435 0.7907793979522236 0.2826657823977876
+0.4385551037679148 0.7944717820503605 0.4385551037679148 0.7944717820503605 0.2812852862958992
+0.4415824475132637 0.7816513869189375 0.4415824475132637 0.7816513869189375 0.2825985020618362
+0.44469942539367396 0.779811034944411 0.44469942539367396 0.779811034944411 0.27964593462157855
+0.44152385243917636 0.7853450559423534 0.4415238524391763 0.7853450559423534 0.2812896922050738
+0.44154896354378553 0.7890258797344994 0.44154896354378553 0.7890258797344994 0.2799111813073854
+0.4478396970285771 0.7779172756244345 0.4478396970285771 0.7779172756244345 0.27633700145111306
+0.4478409764928866 0.7740340837584146 0.4478409764928866 0.7740340837584146 0.27815387170139233
+0.45097333544984614 0.7719784175623264 0.45097333544984614 0.7719784175623264 0.2747061874271774
+0.45392304728737304 0.76586009405513 0.45392304728737304 0.76586009405513 0.2736108091562773
+0.45408022275275367 0.7697669826940087 0.45408022275275367 0.7697669826940087 0.2710088535427571
+0.45692314862883077 0.7636397973807613 0.45692314862883077 0.7636397973807613 0.26989613685354147
+0.45986627813770947 0.7614051347836313 0.45986627813770947 0.7614051347836313 0.26591520769885074
+0.4627629007892549 0.7591740665201163 0.4627629007892549 0.7591740665201163 0.2616303894309571
+0.4655927736421777 0.756944688564734 0.4655927736421777 0.756944688564734 0.2570806819032773
+0.46835583474346504 0.7547074279256779 0.46835583474346504 0.7547074279256779 0.2522767277327212
+0.4871029261925699 0.7248644869532026 0.4871029261925699 0.7248644869532025 0.21955069921448603
+0.48970511366232117 0.7233456058211313 0.48970511366232117 0.7233456058211313 0.21032664269728113
+0.4710477840133975 0.7524456031614597 0.4710477840133975 0.7524456031614597 0.24724748795836585
+0.4736647090891892 0.7501641710329059 0.4736647090891892 0.7501641710329059 0.24200860480772
+0.4761892741331699 0.7477529648280012 0.47618927413316997 0.7477529648280012 0.23673981290719373
+0.478610159344298 0.7453756599877703 0.478610159344298 0.7453756599877703 0.23133691976288348
+0.4811688504969684 0.7429759779614503 0.4811688504969684 0.7429759779614503 0.2250825409826962
+0.483183800275479 0.7368468087384501 0.4831838002754791 0.7368468087384502 0.22334995868492938
+0.4838577789260241 0.7405902392793338 0.4838577789260241 0.7405902392793338 0.2178822921909183
+0.4851649810416453 0.7308058937306502 0.48516498104164535 0.7308058937306502 0.22150653511960813
+0.48590022669120647 0.7345721798278206 0.4859002266912064 0.7345721798278206 0.21547506158348836
+0.48779388556508585 0.7285811178476274 0.4877938855650859 0.7285811178476274 0.21339811346024562
+0.49118904695745474 0.7165023583294239 0.49118904695745474 0.716502358329424 0.21055763800455948
+0.49354583695688053 0.7141669996970998 0.49354583695688053 0.7141669996970998 0.20229854972117647
+0.4912731276346688 0.7202996677659245 0.49127312763466874 0.7202996677659244 0.2065884045955219
+0.4959739107202432 0.7117636153233379 0.49597391072024327 0.7117636153233379 0.19336891660568759
+0.498418754128022 0.7093292787982356 0.498418754128022 0.7093292787982356 0.18402282631941091
+0.5206303748196484 0.6567815823188298 0.5206303748196484 0.6567815823188298 0.18108474750578926
+0.501343324346715 0.706875715371123 0.501343324346715 0.7068757153711231 0.17211872517122748
+0.5036402885045721 0.703189939493782 0.5036402885045721 0.703189939493782 0.1642071138893757
+0.5060579220209064 0.7001346423135616 0.5060579220209064 0.7001346423135616 0.15529837903972288
+0.5083072915096991 0.6971214661095887 0.5083072915096992 0.6971214661095887 0.14756336238927123
+0.5226214615636956 0.6600987350559464 0.5226214615636956 0.6600987350559464 0.17398417553495238
+0.5104920783097869 0.69410529780591 0.5104920783097869 0.69410529780591 0.14084622538173916
+0.5125918317698149 0.6910675702214321 0.5125918317698149 0.6910675702214321 0.1355974090794402
+0.5246424739095393 0.6635199340073893 0.5246424739095393 0.6635199340073893 0.16999824371352926
+0.5264325985834919 0.6669291819521116 0.5264325985834919 0.6669291819521116 0.1682822242515181
+0.5247374334242293 0.6699009673504772 0.5247374334242293 0.6699009673504772 0.15654264533124532
+0.523225361751251 0.672792889792746 0.5232253617512511 0.672792889792746 0.1475384277549906
+0.5217439439732591 0.675903714965162 0.5217439439732591 0.675903714965162 0.14009130354161814
+0.5201226492955643 0.6789233632187007 0.5201226492955643 0.6789233632187007 0.13474392626015932
+0.5183891523881988 0.6819465172719817 0.5183891523881988 0.6819465172719817 0.13157243495199547
+0.5165557939942441 0.6849840956661656 0.5165557939942441 0.6849840956661656 0.1306860745573408
+0.5146260659646952 0.6880294302910311 0.5146260659646952 0.6880294302910311 0.13206655991544378
+0.5223664580271026 0.653852198170298 0.5223664580271025 0.653852198170298 0.19059598876855466
+0.52412834820944 0.650935434836756 0.52412834820944 0.650935434836756 0.20266682250841672
+0.5257844209356338 0.6480311443822883 0.5257844209356338 0.6480311443822883 0.21700088372738432
+0.5367083817232065 0.6152356158148191 0.5367083817232065 0.615235615814819 0.4452143152060389
+0.5393059583256555 0.6115733201128573 0.5393059583256555 0.6115733201128573 0.4967291083415044
+0.5390780457169558 0.6143188411053238 0.5390780457169558 0.6143188411053239 0.47646714329862333
+0.5271846050523177 0.6451157345934163 0.5271846050523177 0.6451157345934163 0.23262097770219645
+0.5281915456525968 0.6425351618969343 0.5281915456525968 0.6425351618969343 0.2467030653221572
+0.5306457657608068 0.6409179161304178 0.5306457657608067 0.6409179161304178 0.26701905010474297
+0.5307677669296471 0.6368760127241262 0.530767766929647 0.6368760127241261 0.2841364676594628
+0.5322974744968109 0.6333205208157233 0.5322974744968109 0.6333205208157233 0.31042739253053653
+0.5364220387148937 0.618579462357558 0.5364220387148936 0.618579462357558 0.42238410971074014
+0.5367208359817667 0.6219644255735564 0.5367208359817667 0.6219644255735564 0.40579142936600465
+0.5355971935890036 0.6240430878713703 0.5355971935890036 0.6240430878713702 0.3836356430720463
+0.5343751673442921 0.6270474911106134 0.5343751673442921 0.6270474911106135 0.3572699367011942
+0.5333653131609909 0.6301458282166064 0.5333653131609909 0.6301458282166063 0.3335126473114347
+0.5660730867363674 0.5843358798069493 0.5660730867363674 0.5843358798069493 1.0494061298984698
+0.5625325500681149 0.5869965133632439 0.5625325500681148 0.5869965133632439 1.0031055313851291
+0.5380422384078142 0.6083778978905143 0.5380422384078142 0.6083778978905142 0.5038622352045808
+0.539247168097234 0.5996491338159623 0.539247168097234 0.5996491338159623 0.5809375277540118
+0.5386744057814914 0.6039255938457323 0.5386744057814914 0.6039255938457323 0.5423244799081671
+0.5588773411720175 0.5895033381768775 0.5588773411720175 0.5895033381768774 0.9449082579449151
+0.5551229570784996 0.5918547983948483 0.5551229570784996 0.5918547983948484 0.8773341700280257
+0.5433322231762372 0.5979517694641953 0.5433322231762371 0.5979517694641953 0.6508187529820261
+0.5473446691087712 0.5960833780621979 0.5473446691087712 0.5960833780621978 0.7265011416631596
+0.5512775148566537 0.5940494998709931 0.5512775148566537 0.5940494998709931 0.8033687423857495
+0.5738303088644365 0.5828147798952219 0.5738303088644364 0.582814779895222 1.0694170895328936
+0.5703460728082925 0.5857825586346801 0.5703460728082925 0.58578255863468 1.0473217771672803
+0.6096252031856823 0.5648616498213936 0.6096252031856823 0.5648616498213936 0.7080340844842178
+0.6043004218880098 0.566470924815199 0.6043004218880098 0.566470924815199 0.779259602971553
+0.6072194705947442 0.5659732093721974 0.6072194705947442 0.5659732093721974 0.7439407985125746
+0.6031938110651168 0.5689155287849285 0.6031938110651168 0.5689155287849285 0.8133341605835884
+0.5966116940000268 0.5724599761918951 0.5966116940000267 0.5724599761918951 0.9079576923222664
+0.601673053566828 0.5710895037392116 0.6016730535668281 0.5710895037392117 0.8467587735926693
+0.599285153869163 0.5727520757730074 0.599285153869163 0.5727520757730074 0.8823784003011605
+0.5953137992166189 0.5744381818227413 0.595313799216619 0.5744381818227414 0.9314652465229899
+0.5818548777976835 0.5807753661325803 0.5818548777976834 0.5807753661325803 1.0490706061308621
+0.5784408639169274 0.584114290229196 0.5784408639169273 0.5841142902291959 1.0515382216951445
+0.5887947509483424 0.5771658975410782 0.5887947509483425 0.5771658975410782 1.000229030804607
+0.5937438224293763 0.576464778054288 0.5937438224293762 0.5764647780542881 0.9546492886121866
+0.5919564632049623 0.5783121877363677 0.5919564632049622 0.5783121877363677 0.9754605192211655
+0.5876856800897994 0.5794773148944384 0.5876856800897994 0.5794773148944384 1.010980379824636
+0.5855491227028867 0.5807963818223627 0.5855491227028867 0.5807963818223626 1.0256201098278783
+0.5843881090052208 0.5830884218977721 0.5843881090052208 0.5830884218977721 1.0287239035118367
+0.6479029025631483 0.5385386341521853 0.6479029025631483 0.5385386341521853 0.17711089737909383
+0.6516639567160734 0.5380349543017885 0.6516639567160735 0.5380349543017885 0.1609934295518551
+0.6459805923962658 0.5417323235021212 0.6459805923962659 0.5417323235021212 0.2103215779561313
+0.6167175724260283 0.5605989186149545 0.6167175724260283 0.5605989186149545 0.5936507652392998
+0.6125942401848249 0.565265337266762 0.6125942401848249 0.5652653372667621 0.6835943120282222
+0.6144759885019498 0.5630060806643116 0.6144759885019498 0.5630060806643115 0.6415377661416449
+0.6205864417257683 0.5604956114157331 0.6205864417257683 0.5604956114157331 0.5595165316847887
+0.6405514271403168 0.5451639348737717 0.6405514271403168 0.5451639348737717 0.26408421447114677
+0.6441855202786332 0.5447755101250235 0.6441855202786332 0.5447755101250235 0.24476171550038925
+0.6389180518375497 0.5478555792969491 0.6389180518375497 0.5478555792969492 0.29843921726170336
+0.6347333133256223 0.5514190192642947 0.6347333133256222 0.5514190192642947 0.35800183780065936
+0.6376505808859427 0.5502272003315385 0.6376505808859427 0.5502272003315385 0.32924472857826714
+0.6312092224991925 0.5532568633612386 0.6312092224991925 0.5532568633612386 0.39917039668352045
+0.6250486552042094 0.5564259475859338 0.6250486552042095 0.5564259475859338 0.4774366309452042
+0.6234921301112561 0.5589638850617341 0.6234921301112561 0.5589638850617341 0.5183990049557803
+0.6290045620995848 0.556462061289397 0.6290045620995848 0.556462061289397 0.4496754737669369
+0.6695653682694808 0.5236248002263999 0.6695653682694808 0.5236248002263999 0.04268106252751378
+0.6643060149711061 0.5263806159986665 0.6643060149711061 0.5263806159986665 0.06042357294223266
+0.6678949312257905 0.5260521284918084 0.6678949312257904 0.5260521284918084 0.055153421164370775
+0.6626669569749345 0.5298619574584441 0.6626669569749345 0.5298619574584441 0.08136877929416902
+0.6572560961704508 0.5340782835144089 0.6572560961704507 0.5340782835144089 0.1179310901757702
+0.6611108667417839 0.5331756177278416 0.6611108667417839 0.5331756177278416 0.10417409181318367
+0.6555211884094064 0.5374602346367543 0.6555211884094064 0.5374602346367543 0.14592803647010635
+0.6869931688237644 0.5075757899075184 0.6869931688237644 0.5075757899075183 0.04280195826798872
+0.6906359970004425 0.5065748195837533 0.6906359970004425 0.5065748195837533 0.05176575754195787
+0.6824914371051544 0.5117832596938178 0.6824914371051544 0.5117832596938178 0.0324702806999966
+0.6861170981840811 0.5108510469528399 0.6861170981840811 0.5108510469528399 0.042141730276721696
+0.6779337409289433 0.5158763123981072 0.6779337409289433 0.515876312398107 0.025017011179625324
+0.6732667539887335 0.5198935535887718 0.6732667539887335 0.5198935535887718 0.028132548432178894
+0.6769181145416384 0.5189770019028748 0.6769181145416384 0.5189770019028748 0.031115106412919948
+0.6724956435962526 0.5228342344024834 0.6724956435962525 0.5228342344024836 0.03975863195707491
+0.6815431894690129 0.5149701442340688 0.6815431894690129 0.514970144234069 0.03369817667600759
+0.707062698371344 0.4912211382603037 0.707062698371344 0.4912211382603037 0.08251432446994149
+0.7104694942607362 0.48991055642580883 0.7104694942607362 0.4899105564258088 0.08708351667701048
+0.7149611511255201 0.48532371839122335 0.71496115112552 0.4853237183912233 0.09361799058370117
+0.7139774232398768 0.4887143916929637 0.7139774232398768 0.4887143916929637 0.09113422754256163
+0.7064895543152837 0.49479338799830846 0.7064895543152837 0.49479338799830846 0.08083583687225693
+0.7031782527259209 0.49630222276579905 0.7031782527259209 0.4963022227657991 0.07583077017431054
+0.6988471573475107 0.5010539520125376 0.6988471573475107 0.5010539520125376 0.06829931216750874
+0.7027564253735772 0.4999921640590037 0.7027564253735772 0.49999216405900365 0.0749521972742334
+0.694305964313067 0.5055645088795441 0.694305964313067 0.5055645088795441 0.05985761588810063
+0.6980110021395544 0.5045411657083035 0.6980110021395544 0.5045411657083035 0.0671085983763904
+0.7185127764906895 0.48408701397034654 0.7185127764906895 0.48408701397034654 0.0971186068312625
+0.7220404737128419 0.4827585043001069 0.722040473712842 0.48275850430010697 0.10023889737942211
+0.7256166368981143 0.48150874587665976 0.7256166368981143 0.48150874587665976 0.10300663809421391
+0.7336930895872605 0.47530849197621206 0.7336930895872605 0.475308491976212 0.11088412830863616
+0.7301205865341208 0.47666252367539474 0.7301205865341208 0.47666252367539474 0.10844141321886784
+0.7292075777991096 0.48024925667692847 0.7292075777991096 0.48024925667692847 0.10552633114606995
+0.7372670418699282 0.4739714890382016 0.7372670418699282 0.4739714890382016 0.11327203470266543
+0.7416529308852968 0.46936694518986505 0.7416529308852969 0.46936694518986505 0.11892896743106056
+0.7408189592916249 0.4727678129349761 0.7408189592916249 0.4727678129349761 0.1155996688174853
+0.744955042712393 0.46851834405023424 0.7449550427123929 0.46851834405023424 0.12089251574148237
+0.7483681679470506 0.46732488740930417 0.7483681679470506 0.46732488740930417 0.1233698929060884
+0.7517921029141891 0.4660565222869825 0.7517921029141891 0.4660565222869825 0.12607787105472934
+0.755828362456627 0.46135871485288726 0.755828362456627 0.46135871485288726 0.13266134342960065
+0.7552754898715112 0.4647472823199008 0.7552754898715112 0.4647472823199008 0.12901754579421854
+0.7593391499276853 0.459991495959258 0.7593391499276853 0.459991495959258 0.13579867371691132
+0.7628722892946925 0.45861782962093445 0.7628722892946925 0.45861782962093445 0.13907590623023466
+0.7664414673097051 0.457228968228613 0.7664414673097051 0.457228968228613 0.14247752384061355
+0.770507183926037 0.45219319965890986 0.770507183926037 0.45219319965890986 0.1500136897714843
+0.7700905818119778 0.4558120729588488 0.7700905818119778 0.4558120729588488 0.14600025633924474
+0.7771635494805654 0.4489665545032971 0.7771635494805654 0.4489665545032971 0.1567146692389422
+0.7740572325437359 0.4506568295544038 0.7740572325437359 0.4506568295544038 0.15345579513542204
+0.7800225154557429 0.44721006261212237 0.7800225154557429 0.4472100626121223 0.15991323924760145
+0.7799694742911674 0.4499834383213705 0.7799694742911674 0.4499834383213705 0.1570718174134388
+0.7876225681288092 0.44101896438270094 0.7876225681288092 0.44101896438270094 0.16919181908547362
+0.7842997696667157 0.44250787124305646 0.7842997696667157 0.4425078712430564 0.1666438910740368
+0.783422586367207 0.44572212567126895 0.783422586367207 0.44572212567126895 0.1628818021388145
+0.7904823619888955 0.4429292172470258 0.7904823619888955 0.4429292172470258 0.1681581171613241
+0.7941875539529516 0.4376708676938968 0.7941875539529516 0.4376708676938968 0.17406772791171032
+0.7936944421120606 0.44134139688092444 0.7936944421120606 0.4413413968809245 0.1705273790004634
+0.7975062849595783 0.4359586755315095 0.7975062849595783 0.4359586755315095 0.17617162606445202
+0.8007609677945143 0.4339205741087878 0.8007609677945143 0.43392057410878776 0.17833220780267578
+0.8033210322194895 0.43097722685972906 0.8033210322194896 0.4309772268597291 0.18115668689103423
+0.8069691998190143 0.4289133284346958 0.8069691998190143 0.4289133284346958 0.18288139674058954
+0.8103273148351603 0.4268323908260645 0.8103273148351603 0.4268323908260645 0.18448259534180408
+0.8136616293400375 0.42472163080743935 0.8136616293400375 0.42472163080743935 0.18599420817501608
+0.8170023598085775 0.42261011319156566 0.8170023598085775 0.42261011319156566 0.18743277324566918
+0.820357389408786 0.4205088006669521 0.820357389408786 0.4205088006669521 0.18884478834771154
+0.8237249050745948 0.41841490641376405 0.8237249050745948 0.41841490641376405 0.19029346373570108
+0.8271012499839533 0.4163216685914597 0.8271012499839533 0.41632166859145964 0.19184407247529875
+0.8304840120748375 0.41422774255750133 0.8304840120748375 0.41422774255750133 0.19355077651380256
+0.8338716507473861 0.4121342828936833 0.8338716507473861 0.4121342828936833 0.1954554387383901
+0.8372616018318908 0.4100418410041591 0.8372616018318908 0.41004184100415914 0.197587457693037
+0.8406519851270597 0.40794979079495397 0.8406519851270599 0.4079497907949539 0.1999620041515273
+0.8440423684222287 0.40585774058574886 0.8440423684222287 0.40585774058574886 0.2025777155147448
+0.8474327517173976 0.40376569037654375 0.8474327517173975 0.4037656903765438 0.20541625633423075
+0.8508231350125666 0.40167364016733864 0.8508231350125666 0.4016736401673386 0.20844342305312466
+0.8542135183077355 0.39958158995813353 0.8542135183077356 0.3995815899581335 0.21161081058173212
+0.8576039016029045 0.3974895397489284 0.8576039016029045 0.3974895397489284 0.21485822294979376
+0.8609942848980734 0.3953974895397233 0.8609942848980733 0.39539748953972337 0.2181165897173909
+0.8643846681932423 0.3933054393305182 0.8643846681932423 0.3933054393305182 0.22131114417720646
+0.8677750514884113 0.3912133891213131 0.8677750514884114 0.39121338912131304 0.22436464586916083
+0.8711654347835802 0.389121338912108 0.8711654347835802 0.389121338912108 0.22720047557798176
+0.8745558180787492 0.3870292887029029 0.874555818078749 0.38702928870290293 0.22974548271648695
+0.8779462013739181 0.38493723849369776 0.8779462013739181 0.38493723849369776 0.23193251289428532
+0.881336584669087 0.38284518828449265 0.8813365846690872 0.3828451882844926 0.23370258187408835
+0.884726967964256 0.38075313807528754 0.884726967964256 0.38075313807528754 0.2350066891410925
+0.8881173512594249 0.37866108786608244 0.8881173512594248 0.3786610878660825 0.23580728061755596
+0.8915077345545939 0.3765690376568773 0.8915077345545939 0.3765690376568773 0.23607937757204064
+0.8948981178497628 0.3744769874476722 0.8948981178497629 0.37447698744767216 0.2358113897239409
+0.8982885011449318 0.3723849372384671 0.8982885011449318 0.3723849372384671 0.23500562688620819
+0.9016788844401007 0.370292887029262 0.9016788844401006 0.37029288702926205 0.233678516700218
+0.9050692677352696 0.3682008368200569 0.9050692677352696 0.3682008368200569 0.2318605271228811
+0.9084596510304386 0.3661087866108518 0.9084596510304387 0.3661087866108517 0.22959578208427203
+0.9118500343256075 0.36401673640164667 0.9118500343256075 0.36401673640164667 0.22694134791194545
+0.9152404176207765 0.36192468619244156 0.9152404176207763 0.3619246861924416 0.22396615784393445
+0.9186308009159454 0.35983263598323645 0.9186308009159454 0.35983263598323645 0.22074953410323442
+0.9220211842111143 0.35774058577403134 0.9220211842111145 0.3577405857740313 0.21737926456330128
+0.9254115675062833 0.35564853556482623 0.9254115675062833 0.35564853556482623 0.21394919824462086
+0.9288019508014522 0.3535564853556211 0.9288019508014521 0.3535564853556212 0.21055634595525954
+0.9321923340966212 0.351464435146416 0.9321923340966212 0.351464435146416 0.20729751435233743
+0.9355827173917901 0.3493723849372109 0.9355827173917902 0.34937238493721084 0.20426556614521277
+0.938973100686959 0.3472803347280058 0.938973100686959 0.3472803347280058 0.20154548299968492
+0.942363483982128 0.3451882845188007 0.9423634839821279 0.34518828451880074 0.19921049899780832
+0.9457538672772969 0.34309623430959557 0.9457538672772969 0.34309623430959557 0.1973186494329001
+0.9491442505724659 0.34100418410039046 0.949144250572466 0.3410041841003904 0.19591011413313428
+0.9525346338676348 0.33891213389118535 0.9525346338676348 0.33891213389118535 0.19500570117878538
+0.9559250171628038 0.33682008368198024 0.9559250171628036 0.3368200836819803 0.19460670585882658
+0.9593154004579727 0.33472803347277513 0.9593154004579727 0.33472803347277513 0.19469620554963388
+0.9627057837531416 0.33263598326357 0.9627057837531418 0.33263598326356997 0.1952416521369714
+0.9660961670483106 0.3305439330543649 0.9660961670483106 0.3305439330543649 0.19619844877689305
+0.9694865503434795 0.3284518828451598 0.9694865503434794 0.32845188284515986 0.19751408817914587
+0.9728769336386485 0.3263598326359547 0.9728769336386485 0.3263598326359547 0.1991324030601764
+0.9762673169338174 0.3242677824267496 0.9762673169338175 0.32426778242674953 0.20099752743640806
+0.9796577002289864 0.3221757322175445 0.9796577002289864 0.3221757322175445 0.20305726344421374
+0.9830480835241553 0.32008368200833937 0.9830480835241552 0.3200836820083394 0.20526566117121145
+0.9864384668193242 0.31799163179913426 0.9864384668193242 0.31799163179913426 0.20758472379930784
+0.9898288501144932 0.31589958158992915 0.9898288501144933 0.3158995815899291 0.20998523380551817
+0.9932192334096621 0.31380753138072404 0.9932192334096621 0.31380753138072404 0.2124467552472918
+0.31799163179916357 0.9932192334096621 0.31799163179916357 0.9932192334096621 0.20348189278505815
+0.32008368200836856 0.9898288501144932 0.32008368200836856 0.9898288501144933 0.20517349296799056
+0.3221757322175737 0.9864384668193242 0.32217573221757373 0.9864384668193242 0.20715412086687482
+0.3242677824267787 0.9830480835241553 0.32426778242677873 0.9830480835241552 0.20940807416527887
+0.32635983263598367 0.9796577002289864 0.3263598326359837 0.9796577002289864 0.21191058844616553
+0.32845188284518867 0.9762673169338174 0.3284518828451887 0.9762673169338175 0.21462846954906464
+0.3305439330543937 0.9728769336386485 0.3305439330543937 0.9728769336386485 0.2175210922496185
+0.3326359832635988 0.9694865503434795 0.3326359832635988 0.9694865503434794 0.22054169552089897
+0.3347280334728038 0.9660961670483106 0.3347280334728038 0.9660961670483106 0.22363889235096038
+0.3368200836820088 0.9627057837531416 0.3368200836820088 0.9627057837531418 0.22675831051988782
+0.3389121338912138 0.9593154004579727 0.3389121338912138 0.9593154004579727 0.22984428764329154
+0.34100418410041883 0.9559250171628038 0.34100418410041883 0.9559250171628036 0.23284155598869913
+0.3430962343096239 0.9525346338676348 0.3430962343096238 0.9525346338676348 0.23569686686183644
+0.3451882845188289 0.9491442505724659 0.3451882845188288 0.949144250572466 0.2383605181433497
+0.34728033472803393 0.9457538672772969 0.34728033472803393 0.9457538672772969 0.24078776011566597
+0.349372384937239 0.942363483982128 0.349372384937239 0.9423634839821279 0.24294006319576547
+0.35146443514644404 0.938973100686959 0.35146443514644404 0.938973100686959 0.24478623638951683
+0.3535564853556491 0.9355827173917901 0.35355648535564915 0.9355827173917902 0.24630338743505756
+0.3556485355648541 0.9321923340966212 0.35564853556485415 0.9321923340966212 0.24747771514319283
+0.35774058577405915 0.9288019508014522 0.35774058577405915 0.9288019508014521 0.248305121876345
+0.3598326359832641 0.9254115675062833 0.35983263598326415 0.9254115675062833 0.248791629946551
+0.3619246861924691 0.9220211842111143 0.36192468619246915 0.9220211842111145 0.248953580491264
+0.36401673640167415 0.9186308009159454 0.36401673640167415 0.9186308009159454 0.24881758773103435
+0.3661087866108792 0.9152404176207765 0.3661087866108792 0.9152404176207763 0.24842021625960928
+0.3682008368200842 0.9118500343256075 0.3682008368200842 0.9118500343256075 0.24780734533180857
+0.3702928870292892 0.9084596510304386 0.3702928870292892 0.9084596510304387 0.24703318359839985
+0.3723849372384942 0.9050692677352696 0.3723849372384942 0.9050692677352696 0.24615890243436897
+0.3744769874476992 0.9016788844401007 0.3744769874476992 0.9016788844401006 0.2452508682365381
+0.3765690376569042 0.8982885011449318 0.3765690376569042 0.8982885011449318 0.24437847597875287
+0.37866108786610925 0.8948981178497629 0.37866108786610925 0.8948981178497629 0.24361161911344095
+0.3807531380753143 0.8915077345545941 0.38075313807531425 0.891507734554594 0.2430178738114255
+0.3828451882845193 0.8881173512594251 0.38284518828451924 0.8881173512594253 0.2426595247112641
+0.38493723849372435 0.8847269679642562 0.38493723849372435 0.8847269679642561 0.24259060739433883
+0.3870292887029294 0.8813365846690873 0.3870292887029294 0.8813365846690874 0.24285417930298173
+0.38912133891213446 0.8779462013739184 0.38912133891213446 0.8779462013739184 0.24348004450333735
+0.39121338912133946 0.8745558180787495 0.39121338912133946 0.8745558180787495 0.24448313989321901
+0.39330543933054457 0.8711654347835807 0.39330543933054457 0.8711654347835808 0.24586273879729345
+0.39539748953974957 0.8677750514884117 0.39539748953974957 0.8677750514884117 0.24760254852082086
+0.3974895397489546 0.8643846681932428 0.3974895397489546 0.8643846681932427 0.24967168529796405
+0.3995815899581596 0.860994284898074 0.3995815899581596 0.860994284898074 0.2520264211118252
+0.4016736401673646 0.8576039016029051 0.4016736401673646 0.8576039016029052 0.25461252852980104
+0.4037656903765696 0.8542135183077362 0.4037656903765696 0.8542135183077361 0.2573680121605752
+0.4058577405857747 0.8508231350125672 0.4058577405857747 0.8508231350125673 0.2602260103508422
+0.4079497907949798 0.8474327517173984 0.4079497907949798 0.8474327517173984 0.26311767263979874
+0.41004184100418484 0.8440423684222295 0.4100418410041849 0.8440423684222295 0.26597485735669796
+0.4121338912133899 0.8406519851270605 0.4121338912133899 0.8406519851270605 0.26873253902556543
+0.41422594486025166 0.8372616018684084 0.4142259448602516 0.8372616018684084 0.27133085658862566
+0.41631800763223975 0.8338712272226162 0.41631800763223975 0.8338712272226162 0.2737167678919175
+0.4184099696050576 0.8304813744930389 0.4184099696050576 0.8304813744930389 0.2758449384010118
+0.4205014093253094 0.8270940247420656 0.4205014093253094 0.8270940247420656 0.27767807811604034
+0.4225923813448047 0.8237131896090856 0.42259238134480465 0.8237131896090856 0.27918713431222236
+0.4246839198841297 0.820343178074625 0.4246839198841297 0.820343178074625 0.2803530551524063
+0.4267765359817028 0.8169872680392296 0.4267765359817028 0.8169872680392295 0.2811683624903943
+0.42887085666299835 0.8136460811171297 0.42887085666299835 0.8136460811171297 0.28163648703516836
+0.43097126870469565 0.8103135659774022 0.43097126870469565 0.8103135659774022 0.2817686770104197
+0.43308323866908294 0.8069542859007344 0.433083238669083 0.8069542859007344 0.2815956190740851
+0.435214498388354 0.8034370876087515 0.43521449838835397 0.8034370876087513 0.28121298819260326
+0.43860063225856466 0.7980742997346093 0.43860063225856466 0.7980742997346093 0.2798337700394277
+0.43803041419237465 0.8010232789510303 0.43803041419237465 0.8010232789510303 0.2791821022446952
+0.4416203827964325 0.7927318479039217 0.4416203827964325 0.7927318479039217 0.27845063852773316
+0.4416544730025241 0.7964618523129611 0.4416544730025241 0.7964618523129611 0.27695800418706207
+0.4446641751931522 0.7835820996893036 0.4446641751931522 0.7835820996893036 0.2781690511951356
+0.44774381809315256 0.7818129309373363 0.4477438180931525 0.7818129309373364 0.2747696768507193
+0.44467822867637036 0.7873014397946841 0.44467822867637036 0.7873014397946841 0.27669859193867213
+0.4446994899423753 0.7909749683234354 0.44469948994237535 0.7909749683234354 0.2752350484685992
+0.4509022511159957 0.779900099469374 0.4509022511159957 0.779900099469374 0.2709669964638876
+0.4510367004626928 0.775975531234999 0.4510367004626928 0.775975531234999 0.2725866725335861
+0.4542199814221175 0.7738892324115744 0.4542199814221175 0.7738892324115744 0.26853902657489254
+0.4571333447472863 0.7674739825295309 0.45713334474728634 0.7674739825295309 0.2670594847656647
+0.4573581146986441 0.7713537302645741 0.4573581146986441 0.7713537302645741 0.2643780627693531
+0.4601199847666886 0.7652002146143401 0.46011998476668853 0.7652002146143401 0.26284812732496915
+0.4630498345699012 0.7629421286351302 0.4630498345699012 0.7629421286351302 0.25835333910834835
+0.46592403472808686 0.7606881073127676 0.46592403472808686 0.7606881073127676 0.2535766794042285
+0.4687367108366198 0.7584232872690836 0.4687367108366198 0.7584232872690836 0.2485409507939982
+0.4714753876896683 0.756125791533369 0.4714753876896683 0.756125791533369 0.24329781166526157
+0.4902909528763116 0.7265753174946028 0.4902909528763116 0.7265753174946027 0.20508276687244154
+0.49280258865424603 0.723975647076052 0.49280258865424603 0.723975647076052 0.19676946342096382
+0.4741454398386933 0.7538005728581653 0.47414543983869334 0.7538005728581653 0.23784048363023788
+0.4767555001234698 0.7514413967881235 0.47675550012346973 0.7514413967881235 0.23216341453580416
+0.47927563265524786 0.7490374974266195 0.4792756326552478 0.7490374974266195 0.2263694949683233
+0.48182184930395017 0.7466658665980049 0.48182184930395017 0.7466658665980049 0.22004033918752733
+0.4844377572629505 0.7443332781725052 0.4844377572629505 0.7443332781725052 0.21298789232143714
+0.48716838302891863 0.7420616382749939 0.4871683830289186 0.7420616382749939 0.2049904276092742
+0.4866027424150807 0.7383396311452617 0.4866027424150808 0.7383396311452617 0.2098422630966593
+0.48858736196402774 0.7322951230136577 0.4885873619640277 0.7322951230136577 0.2071483984137754
+0.4893877287672453 0.7360722975445301 0.4893877287672453 0.7360722975445301 0.20111330352947762
+0.4911870935703078 0.7300241466293523 0.4911870935703078 0.7300241466293523 0.19861913061771364
+0.4943195054240948 0.7178379121846303 0.4943195054240948 0.7178379121846303 0.19538847639085552
+0.49681768386255526 0.7154374978052154 0.49681768386255526 0.7154374978052154 0.1861000139965526
+0.4952222893049085 0.7214812556972925 0.4952222893049085 0.7214812556972925 0.18829786968348047
+0.49922813803767435 0.7129867574913048 0.49922813803767435 0.7129867574913048 0.17691590132790944
+0.5015242002423497 0.710591008058004 0.5015242002423497 0.710591008058004 0.16799600815071128
+0.5243944319421358 0.6571478234159359 0.5243944319421358 0.6571478234159359 0.18532703144427776
+0.5038809681206652 0.7090853303788787 0.5038809681206652 0.7090853303788787 0.15794084659889143
+0.5051467664343741 0.7064398901137801 0.5051467664343741 0.7064398901137801 0.15411148720390985
+0.5073566183347843 0.7036425291321603 0.5073566183347843 0.7036425291321603 0.14606542368027234
+0.5096071298522632 0.7007180285944575 0.5096071298522632 0.7007180285944575 0.1384363879668273
+0.5118198212454687 0.697710115955776 0.5118198212454687 0.697710115955776 0.13192637926682008
+0.5264489858908277 0.6605212300837534 0.5264489858908278 0.6605212300837534 0.18328601823355373
+0.5139655312134407 0.6946419443102442 0.5139655312134407 0.6946419443102442 0.12704554107061525
+0.5160463446428144 0.6915547322892118 0.5160463446428144 0.6915547322892118 0.12415643471017572
+0.5284435086344575 0.6639912899754995 0.5284435086344575 0.6639912899754995 0.18372057240051864
+0.5298835338851817 0.6672717640023407 0.5298835338851817 0.6672717640023408 0.18377461828477462
+0.5280168045483158 0.6702013677522214 0.5280168045483159 0.6702013677522213 0.16811205759716255
+0.5265179668406624 0.6731064028790424 0.5265179668406624 0.6731064028790424 0.1561613384138771
+0.5249883247420719 0.6760777025376536 0.5249883247420719 0.6760777025376536 0.14577272883456402
+0.5233857442597526 0.6792017571042098 0.5233857442597526 0.6792017571042098 0.1368926212562376
+0.5217029471064468 0.6822902016172993 0.5217029471064468 0.6822902016172993 0.1301367969449133
+0.5199147002762404 0.6853725000826026 0.5199147002762404 0.6853725000826026 0.12566395229643945
+0.5180284969135102 0.688460380844944 0.5180284969135102 0.688460380844944 0.12365838639907602
+0.5261039268475401 0.6541662719790521 0.5261039268475401 0.6541662719790521 0.19910987752066725
+0.5277340408577004 0.6511826799302816 0.5277340408577004 0.6511826799302814 0.21495860317666357
+0.5413611271892681 0.6100589879822256 0.5413611271892681 0.6100589879822255 0.5317749249773812
+0.5412526702829348 0.6133838966302603 0.5412526702829349 0.6133838966302604 0.5076448121316507
+0.5292650385619433 0.6481455947691682 0.5292650385619434 0.6481455947691682 0.2326705195311127
+0.5391362765720813 0.6177713393508629 0.5391362765720813 0.6177713393508629 0.45569588754155527
+0.5414598999385887 0.6164598970916674 0.5414598999385887 0.6164598970916674 0.49019959323559
+0.5308306242810786 0.6447468156114573 0.5308306242810786 0.6447468156114572 0.2540058726967751
+0.5332402040620396 0.6427251080408938 0.5332402040620396 0.6427251080408938 0.27846617198103074
+0.533872817437389 0.6399012078354324 0.533872817437389 0.6399012078354324 0.29462631955923735
+0.534746972438743 0.6365226655181083 0.534746972438743 0.6365226655181083 0.31586618669868666
+0.5357864470931669 0.6333775822788485 0.5357864470931669 0.6333775822788485 0.339029453044265
+0.5391555036706556 0.620984674822113 0.5391555036706556 0.620984674822113 0.4367800982462877
+0.538691021176127 0.6243512265809109 0.538691021176127 0.6243512265809109 0.4126379649086407
+0.5372317841907785 0.6265031439161912 0.5372317841907785 0.6265031439161912 0.3862547445840039
+0.5371537019946618 0.6297414730258131 0.5371537019946618 0.6297414730258132 0.3690652458596252
+0.5667571824572861 0.5886260918817859 0.5667571824572861 0.5886260918817859 1.0108638641556402
+0.563034133499724 0.5913128079103276 0.5630341334997241 0.5913128079103275 0.9616786912965701
+0.5425093770453413 0.6068149100706006 0.5425093770453414 0.6068149100706007 0.5696271220740852
+0.5429373683086881 0.6022663652186507 0.5429373683086881 0.6022663652186507 0.6100579085413371
+0.5591974719551296 0.5938368401612903 0.5591974719551295 0.5938368401612903 0.9017198527776208
+0.5552549675938159 0.5961858878868437 0.5552549675938159 0.5961858878868437 0.8334986382103283
+0.5471273453154739 0.6004162788145118 0.5471273453154738 0.6004162788145119 0.6840385481249611
+0.5512364332616004 0.5983830047494878 0.5512364332616003 0.5983830047494879 0.7598578348124442
+0.5438922823399662 0.6099403087136366 0.5438922823399662 0.6099403087136366 0.5643505182425035
+0.5458902092953508 0.608356891245829 0.5458902092953508 0.6083568912458289 0.6021926393160483
+0.5749205711108034 0.5872944398294068 0.5749205711108035 0.5872944398294068 1.0389868996931952
+0.5712155494930582 0.5902438200409384 0.5712155494930582 0.5902438200409384 1.0127095549505667
+0.6101636444333851 0.5671699467341542 0.610163644433385 0.5671699467341541 0.7264617148602338
+0.6071553628759324 0.5690101429518011 0.6071553628759324 0.5690101429518011 0.7738847037251324
+0.6052218563527235 0.57153387843395 0.6052218563527235 0.57153387843395 0.8143176755693969
+0.613034561988226 0.5678615595118831 0.613034561988226 0.5678615595118831 0.7057281030173566
+0.6038961770791031 0.5736355294893679 0.6038961770791031 0.5736355294893679 0.8426992982053905
+0.5985221803352733 0.574818770964185 0.5985221803352733 0.574818770964185 0.9022498453171871
+0.6014816925937208 0.5745147291457102 0.6014816925937208 0.5745147291457102 0.8719382173062095
+0.5972808407227957 0.5772384005862234 0.5972808407227957 0.5772384005862233 0.9253785608887358
+0.5821653551653723 0.5842803521386113 0.5821653551653724 0.5842803521386113 1.036325323127955
+0.5808614874753532 0.5865122928919405 0.5808614874753532 0.5865122928919405 1.0323408681656672
+0.5785620050858836 0.5876452416477204 0.5785620050858836 0.5876452416477204 1.032434101361307
+0.5772167633253181 0.5897781712197379 0.5772167633253181 0.5897781712197379 1.0214463059918382
+0.5902860698055719 0.5801776625556535 0.5902860698055719 0.5801776625556535 0.9918136378028163
+0.5954004736797023 0.579274694791442 0.5954004736797023 0.579274694791442 0.9490188927110815
+0.5929001093567259 0.5807782872662514 0.5929001093567259 0.5807782872662514 0.9722884274020182
+0.5852408771460164 0.5856760693305298 0.5852408771460164 0.58567606933053 1.0184624423221518
+0.5887887663513318 0.5819978371524995 0.5887887663513318 0.5819978371524995 1.0032538527927624
+0.5871303122141456 0.5839139400647763 0.5871303122141455 0.5839139400647763 1.01212485912607
+0.6498928784159258 0.541325064307395 0.6498928784159258 0.541325064307395 0.1929751960026944
+0.6537153301708262 0.540799457536457 0.6537153301708262 0.540799457536457 0.1768164572886074
+0.6480242320538184 0.5444843375769869 0.6480242320538184 0.5444843375769869 0.22706887698923248
+0.6239139043649928 0.5614296544152586 0.6239139043649928 0.5614296544152586 0.5429758659619675
+0.6183261330835375 0.563539664626201 0.6183261330835376 0.5635396646262009 0.6128005524180925
+0.6159696121799721 0.5664978417498502 0.6159696121799721 0.5664978417498502 0.6653069405681281
+0.622376545619209 0.5639931567468762 0.622376545619209 0.5639931567468762 0.583563334249042
+0.6424629643820686 0.5477765021813508 0.6424629643820686 0.5477765021813507 0.2809014332926487
+0.6461615945110076 0.5475675919178058 0.6461615945110076 0.5475675919178058 0.2629552088324289
+0.6407139538659458 0.550678721121074 0.6407139538659458 0.550678721121074 0.3182942770378854
+0.6347673735149901 0.5543831969582365 0.6347673735149901 0.5543831969582365 0.3897872629983985
+0.638010662976054 0.5534251036819173 0.638010662976054 0.5534251036819172 0.36114300168318175
+0.6328450235880693 0.5565160271133306 0.6328450235880693 0.5565160271133306 0.4249718304780254
+0.6267554837977567 0.55981495552467 0.6267554837977567 0.55981495552467 0.503597150441602
+0.6312219647239361 0.5591719091340861 0.6312219647239362 0.5591719091340862 0.4646301930441287
+0.6712530976774693 0.5258514743740479 0.6712530976774693 0.5258514743740479 0.053541741011989726
+0.666459459541846 0.5292242402579758 0.666459459541846 0.5292242402579758 0.07319173784768036
+0.6700817812439683 0.5287714562445264 0.6700817812439683 0.5287714562445264 0.0689340070205987
+0.6650709213012305 0.532505682690766 0.6650709213012305 0.532505682690766 0.09421289242652021
+0.6595035512417553 0.5368235107776026 0.6595035512417553 0.5368235107776026 0.13219992865175592
+0.6640184976194092 0.5361303614322741 0.6640184976194092 0.5361303614322742 0.11959382163381725
+0.6576181478632731 0.5402856322054849 0.6576181478632731 0.5402856322054849 0.1624495704133878
+0.6897715886823428 0.5099144334647697 0.6897715886823428 0.5099144334647697 0.05104975066446384
+0.6934533623422707 0.5089660214174966 0.6934533623422707 0.5089660214174966 0.059133395685121666
+0.6851822136025795 0.5141016212619423 0.6851822136025795 0.5141016212619424 0.04267209372678096
+0.6888493491547621 0.5132279315405889 0.6888493491547621 0.5132279315405889 0.051219107517833706
+0.6805446044566917 0.5181566477403631 0.6805446044566917 0.5181566477403631 0.03751213442036988
+0.6759056925068703 0.5220882387634225 0.6759056925068703 0.5220882387634225 0.04050014558001042
+0.679505804896768 0.5213002077373841 0.679505804896768 0.521300207737384 0.0442144548313475
+0.6748274584678023 0.5251204102821632 0.6748274584678023 0.5251204102821632 0.05222700514601903
+0.6841925936165238 0.5173320184941693 0.6841925936165238 0.5173320184941693 0.045051405293463416
+0.7095532047486444 0.49325427271341576 0.7095532047486444 0.49325427271341576 0.08504760886093359
+0.712952513462362 0.4920334449307138 0.712952513462362 0.4920334449307138 0.08905114527787196
+0.717571523683322 0.4876415140049377 0.717571523683322 0.4876415140049377 0.09467949241926278
+0.7164902260511015 0.4909009276526366 0.7164902260511016 0.49090092765263654 0.09265848633137348
+0.7090983517578866 0.4960924369776822 0.7090983517578866 0.4960924369776822 0.08398353008334672
+0.7068896341713999 0.4985951020638355 0.7068896341714 0.4985951020638355 0.08100649438209662
+0.7017907896511795 0.5035125967510226 0.7017907896511795 0.5035125967510226 0.07360429115748489
+0.7056343604309434 0.5025683709714952 0.7056343604309435 0.5025683709714953 0.07934085624790377
+0.6971487218013793 0.5079988079626372 0.6971487218013793 0.5079988079626371 0.06635936119918978
+0.7008419671402938 0.5070032394817447 0.7008419671402938 0.5070032394817447 0.0727199781104328
+0.7211161621953449 0.486540109504412 0.7211161621953449 0.486540109504412 0.0977171733217413
+0.724722403375064 0.4851199968651801 0.724722403375064 0.4851199968651801 0.10060923865929529
+0.7282979525291039 0.48384629417032127 0.7282979525291039 0.48384629417032127 0.10313061764396168
+0.736362038003449 0.4776348306558013 0.736362038003449 0.4776348306558013 0.1102591373827909
+0.732794818221094 0.47894381701110883 0.732794818221094 0.47894381701110883 0.10792248464645708
+0.7318917878407234 0.4825618331474664 0.7318917878407234 0.4825618331474664 0.10549982479746499
+0.739961544155654 0.47632735320226494 0.739961544155654 0.476327353202265 0.11264322864650768
+0.7443345476663827 0.47166518198116514 0.7443345476663827 0.4716651819811651 0.11791028515865674
+0.7435189346033173 0.47508509564603374 0.7435189346033173 0.47508509564603374 0.11505844140034589
+0.7477265430186041 0.4705818544682689 0.7477265430186041 0.4705818544682689 0.12027459337020015
+0.7511783318761808 0.46937983357604524 0.7511783318761808 0.46937983357604524 0.12293384136623638
+0.7546686503828971 0.4681251951340419 0.7546686503828971 0.4681251951340419 0.12583466130489976
+0.7587906906538061 0.4634231988714071 0.7587906906538061 0.4634231988714071 0.1321490461353335
+0.7581930769594004 0.4668448623957799 0.7581930769594004 0.4668448623957799 0.12895576498348363
+0.7623274174245708 0.4620933047382811 0.7623274174245708 0.4620933047382811 0.1354410537464881
+0.7658893467069161 0.4607562376650021 0.7658893467069161 0.4607562376650021 0.13886684724738033
+0.769493511775058 0.4594065839592801 0.769493511775058 0.4594065839592801 0.14240178023758318
+0.7738262203346471 0.4543832843890017 0.7738262203346471 0.4543832843890017 0.14958952212935742
+0.7731664441544928 0.4580431991555478 0.7731664441544926 0.45804319915554786 0.14601718678894737
+0.7778426299817227 0.45272458269903865 0.7778426299817226 0.45272458269903865 0.15349982220774352
+0.7826229584636422 0.44914512522373384 0.7826229584636422 0.4491451252237338 0.15918661764053424
+0.7815903680544354 0.45235681589343607 0.7815903680544354 0.45235681589343607 0.1559931625573747
+0.7871759065669174 0.4450741118856213 0.7871759065669173 0.44507411188562124 0.16500698174258036
+0.785361578358306 0.44808355088617835 0.785361578358306 0.44808355088617835 0.16148085850338617
+0.7903522754932039 0.4460437452234776 0.7903522754932039 0.4460437452234777 0.16541020833371553
+0.7931222190892107 0.44479129727467415 0.7931222190892107 0.44479129727467415 0.16749330385642003
+0.7964861415073287 0.44343516819850215 0.7964861415073287 0.4434351681985022 0.16969868808253188
+0.7969988024644525 0.4398244129285031 0.7969988024644525 0.4398244129285031 0.17266792875141115
+0.80048087022722 0.43788365582050776 0.80048087022722 0.43788365582050776 0.17487811512804952
+0.8037799302465864 0.4352163218221108 0.8037799302465863 0.4352163218221108 0.1773958645114855
+0.8069568976487832 0.4331294771512042 0.8069568976487832 0.43312947715120415 0.17925846730110587
+0.8103116190159892 0.43101220526072165 0.8103116190159892 0.43101220526072165 0.18094942601127337
+0.8136526228389145 0.4288997696388988 0.8136526228389144 0.4288997696388988 0.18249110017639178
+0.8169951850251068 0.42679296370682757 0.8169951850251068 0.42679296370682757 0.18393482782144221
+0.8203509347308132 0.4246929033396947 0.8203509347308132 0.4246929033396947 0.18533260511211072
+0.8237207658940338 0.42259774248634363 0.8237207658940339 0.42259774248634363 0.1867435141833995
+0.8270996751770929 0.4205043184254464 0.827099675177093 0.4205043184254464 0.18822875607921222
+0.8304839309881621 0.41841113148082565 0.8304839309881621 0.41841113148082565 0.1898445482950224
+0.8338717277833907 0.41631830312209606 0.8338717277833908 0.416318303122096 0.19163778902234022
+0.8372616018318908 0.4142259414225693 0.8372616018318908 0.4142259414225693 0.19364402344502385
+0.8406519851270597 0.4121338912133642 0.8406519851270599 0.41213389121336425 0.19588497968361085
+0.8440423684222287 0.4100418410041591 0.8440423684222287 0.41004184100415914 0.19836697312332283
+0.8474327517173976 0.40794979079495397 0.8474327517173975 0.4079497907949539 0.20107977639762417
+0.8508231350125666 0.40585774058574886 0.8508231350125666 0.40585774058574886 0.20399709032880178
+0.8542135183077355 0.40376569037654375 0.8542135183077356 0.4037656903765438 0.2070777499773575
+0.8576039016029045 0.40167364016733864 0.8576039016029045 0.4016736401673386 0.2102677562084427
+0.8609942848980734 0.39958158995813353 0.8609942848980733 0.3995815899581335 0.2135029170004552
+0.8643846681932423 0.3974895397489284 0.8643846681932423 0.3974895397489284 0.2167118589579464
+0.8677750514884113 0.3953974895397233 0.8677750514884114 0.39539748953972337 0.21981918159261807
+0.8711654347835802 0.3933054393305182 0.8711654347835802 0.3933054393305182 0.22274856402275675
+0.8745558180787492 0.3912133891213131 0.874555818078749 0.39121338912131304 0.22542568267019805
+0.8779462013739181 0.389121338912108 0.8779462013739181 0.389121338912108 0.22778084793716516
+0.881336584669087 0.3870292887029029 0.8813365846690872 0.38702928870290293 0.22975131019374082
+0.884726967964256 0.38493723849369776 0.884726967964256 0.38493723849369776 0.23128321720283743
+0.8881173512594249 0.38284518828449265 0.8881173512594248 0.3828451882844926 0.2323332259523043
+0.8915077345545939 0.38075313807528754 0.8915077345545939 0.38075313807528754 0.23286978316481474
+0.8948981178497628 0.37866108786608244 0.8948981178497629 0.3786610878660825 0.23287409262324044
+0.8982885011449318 0.3765690376568773 0.8982885011449318 0.3765690376568773 0.23234078594618415
+0.9016788844401007 0.3744769874476722 0.9016788844401006 0.37447698744767216 0.2312783082303227
+0.9050692677352696 0.3723849372384671 0.9050692677352696 0.3723849372384671 0.2297090222093687
+0.9084596510304386 0.370292887029262 0.9084596510304387 0.37029288702926205 0.22766902504742134
+0.9118500343256075 0.3682008368200569 0.9118500343256075 0.3682008368200569 0.225207661212687
+0.9152404176207765 0.3661087866108518 0.9152404176207763 0.3661087866108517 0.22238670384111545
+0.9186308009159454 0.36401673640164667 0.9186308009159454 0.36401673640164667 0.21927916689558424
+0.9220211842111143 0.36192468619244156 0.9220211842111145 0.3619246861924416 0.21596770347605013
+0.9254115675062833 0.35983263598323645 0.9254115675062833 0.35983263598323645 0.21254254532089648
+0.9288019508014522 0.35774058577403134 0.9288019508014521 0.3577405857740313 0.20909894966779977
+0.9321923340966212 0.35564853556482623 0.9321923340966212 0.35564853556482623 0.2057341478130084
+0.9355827173917901 0.3535564853556211 0.9355827173917902 0.3535564853556212 0.20254383977575144
+0.938973100686959 0.351464435146416 0.938973100686959 0.351464435146416 0.19961835279410955
+0.942363483982128 0.3493723849372109 0.9423634839821279 0.34937238493721084 0.19703867221838622
+0.9457538672772969 0.3472803347280058 0.9457538672772969 0.3472803347280058 0.1948726459548874
+0.9491442505724659 0.3451882845188007 0.949144250572466 0.34518828451880074 0.1931717323161318
+0.9525346338676348 0.34309623430959557 0.9525346338676348 0.34309623430959557 0.19196867620726502
+0.9559250171628038 0.34100418410039046 0.9559250171628036 0.3410041841003904 0.1912764375507442
+0.9593154004579727 0.33891213389118535 0.9593154004579727 0.33891213389118535 0.19108855638274339
+0.9627057837531416 0.33682008368198024 0.9627057837531418 0.3368200836819803 0.19138094572720224
+0.9660961670483106 0.33472803347277513 0.9660961670483106 0.33472803347277513 0.19211490219885854
+0.9694865503434795 0.33263598326357 0.9694865503434794 0.33263598326356997 0.19324096578801467
+0.9728769336386485 0.3305439330543649 0.9728769336386485 0.3305439330543649 0.1947031795122475
+0.9762673169338174 0.3284518828451598 0.9762673169338175 0.32845188284515986 0.19644330445764258
+0.9796577002289864 0.3263598326359547 0.9796577002289864 0.3263598326359547 0.19840461849165067
+0.9830480835241553 0.3242677824267496 0.9830480835241552 0.32426778242674953 0.200535036238336
+0.9864384668193242 0.3221757322175445 0.9864384668193242 0.3221757322175445 0.20278940270861742
+0.9898288501144932 0.32008368200833937 0.9898288501144933 0.3200836820083394 0.2051309118858415
+0.9932192334096621 0.31799163179913426 0.9932192334096621 0.31799163179913426 0.20753167540600295
+0.3221757322175737 0.9932192334096621 0.32217573221757373 0.9932192334096621 0.20527476940414394
+0.3242677824267787 0.9898288501144932 0.32426778242677873 0.9898288501144933 0.20691753282677192
+0.3263598326359837 0.9864384668193242 0.3263598326359837 0.9864384668193242 0.2088465291350012
+0.3284518828451887 0.9830480835241553 0.3284518828451887 0.9830480835241552 0.21104608446356435
+0.3305439330543937 0.9796577002289864 0.3305439330543937 0.9796577002289864 0.21349094564618618
+0.3326359832635988 0.9762673169338174 0.3326359832635988 0.9762673169338175 0.21614699955815045
+0.3347280334728038 0.9728769336386485 0.3347280334728038 0.9728769336386485 0.2189723872974578
+0.3368200836820088 0.9694865503434795 0.3368200836820088 0.9694865503434794 0.22191893173301588
+0.3389121338912138 0.9660961670483106 0.3389121338912138 0.9660961670483106 0.224933784642519
+0.3410041841004188 0.9627057837531416 0.3410041841004188 0.9627057837531418 0.22796119951978291
+0.3430962343096238 0.9593154004579727 0.3430962343096238 0.9593154004579727 0.23094434536748712
+0.34518828451882894 0.9559250171628038 0.34518828451882894 0.9559250171628036 0.23382709163895823
+0.34728033472803393 0.9525346338676348 0.34728033472803393 0.9525346338676348 0.236555711263824
+0.349372384937239 0.9491442505724659 0.349372384937239 0.949144250572466 0.23908046448353767
+0.35146443514644404 0.9457538672772969 0.35146443514644404 0.9457538672772969 0.24135703919000928
+0.3535564853556491 0.942363483982128 0.35355648535564915 0.9423634839821279 0.2433478327551655
+0.3556485355648541 0.938973100686959 0.35564853556485415 0.938973100686959 0.2450230658580935
+0.3577405857740591 0.9355827173917901 0.35774058577405915 0.9355827173917902 0.24636172090910155
+0.35983263598326415 0.9321923340966212 0.35983263598326415 0.9321923340966212 0.24735229689458146
+0.36192468619246915 0.9288019508014522 0.36192468619246915 0.9288019508014521 0.24799336943516173
+0.36401673640167415 0.9254115675062833 0.36401673640167415 0.9254115675062833 0.24829394016980902
+0.3661087866108792 0.9220211842111143 0.3661087866108792 0.9220211842111145 0.24827355387697603
+0.3682008368200842 0.9186308009159454 0.3682008368200842 0.9186308009159454 0.2479621557537506
+0.3702928870292892 0.9152404176207765 0.3702928870292892 0.9152404176207763 0.24739965596138544
+0.3723849372384942 0.9118500343256075 0.3723849372384942 0.9118500343256075 0.24663516524384552
+0.37447698744769925 0.9084596510304386 0.37447698744769925 0.9084596510304387 0.24572586592714105
+0.3765690376569042 0.9050692677352696 0.3765690376569042 0.9050692677352696 0.2447354891364293
+0.3786610878661093 0.9016788844401007 0.37866108786610925 0.9016788844401006 0.2437323840419321
+0.38075313807531425 0.8982885011449319 0.38075313807531425 0.8982885011449319 0.24278719041714417
+0.3828451882845193 0.8948981178497629 0.38284518828451924 0.8948981178497629 0.2419701625497803
+0.38493723849372435 0.8915077345545941 0.38493723849372435 0.891507734554594 0.2413482389692896
+0.3870292887029294 0.8881173512594251 0.3870292887029294 0.8881173512594253 0.2409820035090149
+0.38912133891213446 0.8847269679642562 0.38912133891213446 0.8847269679642561 0.24092273015801077
+0.39121338912133946 0.8813365846690874 0.39121338912133946 0.8813365846690874 0.2412097355832349
+0.39330543933054457 0.8779462013739184 0.39330543933054457 0.8779462013739184 0.24186826779961781
+0.39539748953974957 0.8745558180787495 0.39539748953974957 0.8745558180787495 0.24290812986814084
+0.3974895397489546 0.8711654347835807 0.3974895397489546 0.8711654347835808 0.24432317390208702
+0.3995815899581596 0.8677750514884117 0.3995815899581596 0.8677750514884117 0.2460917122957702
+0.4016736401673646 0.8643846681932428 0.4016736401673646 0.8643846681932427 0.24817779639870688
+0.4037656903765697 0.860994284898074 0.4037656903765697 0.860994284898074 0.2505332266726846
+0.4058577405857747 0.8576039016029051 0.4058577405857747 0.8576039016029052 0.253100098099182
+0.4079497907949797 0.8542135183077362 0.40794979079497967 0.8542135183077361 0.255813657957156
+0.4100418410041848 0.8508231350125672 0.4100418410041848 0.8508231350125673 0.2586052589617591
+0.41213389121338984 0.8474327517173984 0.4121338912133899 0.8474327517173984 0.2614052212364528
+0.414225941422595 0.8440423684222295 0.414225941422595 0.8440423684222295 0.2641454606737695
+0.4163179916318 0.8406519851270605 0.4163179916318 0.8406519851270605 0.2667617884194467
+0.418410052640746 0.8372616019472172 0.418410052640746 0.8372616019472172 0.2691958218239638
+0.4205021510544556 0.833871270261123 0.4205021510544556 0.833871270261123 0.2713964473483527
+0.42259425165140335 0.8304817561086475 0.42259425165140335 0.8304817561086475 0.27332038084311755
+0.42468619821740833 0.827095583188413 0.42468619821740833 0.827095583188413 0.27493227421685545
+0.42677808011178614 0.8237168389504489 0.42677808011178614 0.8237168389504489 0.2762056213847639
+0.4288708464516091 0.8203500444877494 0.4288708464516091 0.8203500444877495 0.2771235683118117
+0.43096569441771165 0.8169983549060164 0.43096569441771165 0.8169983549060164 0.2776800592239866
+0.433064860395777 0.8136624832979483 0.433064860395777 0.8136624832979483 0.27787822053006034
+0.4351721768349394 0.8103402400990957 0.4351721768349394 0.8103402400990957 0.27772799816501004
+0.4372904374944926 0.8070468638306831 0.4372904374944926 0.8070468638306831 0.27723618635882463
+0.4394422048601492 0.803983179257225 0.4394422048601491 0.8039831792572248 0.2762813185847787
+0.44166182878608423 0.8004149685928481 0.4416618287860842 0.8004149685928483 0.27532486421021835
+0.44472172554883027 0.794626677316098 0.44472172554883027 0.794626677316098 0.27372976415639294
+0.4446565896375942 0.7981763263085071 0.4446565896375942 0.7981763263085071 0.27228844788141565
+0.44774937775174073 0.785569263493465 0.4477493777517408 0.785569263493465 0.2731993600420151
+0.4506133287997619 0.7838464349703685 0.45061332879976185 0.7838464349703685 0.26965498486025763
+0.44781754913814403 0.7892676000030677 0.44781754913814403 0.7892676000030677 0.27158399201644684
+0.4478079650153732 0.7928955103655566 0.4478079650153732 0.7928955103655566 0.27008043014336985
+0.45371429576449895 0.7817296345848175 0.4537142957644989 0.7817296345848175 0.2655663595181433
+0.45444396126673364 0.7781340785838704 0.45444396126673364 0.7781340785838705 0.266065435056773
+0.4576171468042492 0.7751677346909909 0.4576171468042492 0.7751677346909909 0.2618436872179182
+0.4603927442958747 0.7690129725221716 0.4603927442958747 0.7690129725221716 0.25994439955383347
+0.4607039952780385 0.7728082565732851 0.46070399527803846 0.7728082565732851 0.25715247984517114
+0.4633563235964972 0.7667270234183571 0.4633563235964972 0.7667270234183571 0.2552377243284176
+0.4662656498185657 0.7644521565680952 0.4662656498185657 0.7644521565680952 0.25024880862902643
+0.4691195103124568 0.7621653798517335 0.4691195103124568 0.7621653798517335 0.24499407290213004
+0.4719047321378085 0.7598432228706589 0.4719047321378085 0.7598432228706589 0.2395249385630314
+0.47462509845791123 0.7574912988165945 0.47462509845791123 0.7574912988165945 0.23383635078569465
+0.49374656186166793 0.7276459480803822 0.49374656186166793 0.7276459480803822 0.1898603236032014
+0.49626709007776615 0.7251698214596436 0.49626709007776615 0.7251698214596436 0.18088859980670655
+0.47729233765651774 0.7551215633472741 0.47729233765651774 0.7551215633472741 0.22789447455698894
+0.47989442854946424 0.7527224410525998 0.47989442854946424 0.7527224410525998 0.22174768263221512
+0.48245656896563455 0.7503278438376445 0.48245656896563455 0.7503278438376445 0.2152971074911971
+0.48501686792127857 0.7479829957565077 0.48501686792127857 0.7479829957565077 0.20838130632740767
+0.487593430156871 0.7457236097676139 0.487593430156871 0.745723609767614 0.20090174224801657
+0.490400062529518 0.7434856200548736 0.490400062529518 0.7434856200548737 0.19208910226086126
+0.490119182676535 0.7398982763961346 0.49011918267653504 0.7398982763961346 0.19557282947824986
+0.4920903011073614 0.7337175175757656 0.4920903011073614 0.7337175175757656 0.19221861406539428
+0.49302655774926024 0.7376110573085408 0.49302655774926024 0.7376110573085408 0.18583784898039865
+0.4946917197420846 0.7312951571791101 0.4946917197420846 0.7312951571791101 0.18328203453466793
+0.4977842017806979 0.7190651661606865 0.4977842017806979 0.7190651661606865 0.17871093289467918
+0.5001928435528633 0.716672477540224 0.5001928435528633 0.7166724775402241 0.1694782082324561
+0.4988113526017298 0.722701730943778 0.4988113526017299 0.7227017309437781 0.1714185862715956
+0.5025091966043898 0.7142092995904208 0.5025091966043896 0.7142092995904208 0.16052964334605202
+0.5046524481092847 0.7119668715228042 0.5046524481092848 0.7119668715228044 0.15215533955779373
+0.5281964710566168 0.6574662580380521 0.5281964710566168 0.6574662580380521 0.19898786500288357
+0.5067381014706024 0.7095531668286821 0.5067381014706024 0.7095531668286821 0.14430951786125004
+0.5087561875194815 0.707050802274559 0.5087561875194816 0.707050802274559 0.1371300661084309
+0.5109314156771089 0.7043218720028218 0.5109314156771089 0.7043218720028218 0.12998360373330087
+0.5131632148786898 0.7013750651864746 0.5131632148786897 0.7013750651864746 0.12381281913172944
+0.5153517335664035 0.6982825460459742 0.5153517335664035 0.6982825460459742 0.1194712215950411
+0.5304099226996108 0.6609001714015915 0.5304099226996107 0.6609001714015915 0.2021356584050407
+0.517484144879811 0.6951276696498474 0.517484144879811 0.6951276696498474 0.1174201445210525
+0.5195138230379182 0.6919662922329718 0.5195138230379182 0.6919662922329718 0.11804080725190082
+0.5327759591427469 0.6648241568353741 0.5327759591427469 0.6648241568353742 0.2075802935734395
+0.5327217256514558 0.6680781348631698 0.5327217256514558 0.6680781348631698 0.19950403224232083
+0.5312032963936338 0.6704235972962835 0.5312032963936338 0.6704235972962835 0.18475697762038387
+0.5297843100552587 0.6733465876590171 0.5297843100552587 0.6733465876590171 0.1707022003317932
+0.5283119482526986 0.676341426951494 0.5283119482526986 0.676341426951494 0.15774750594642317
+0.5267038286400069 0.6794414177115282 0.5267038286400069 0.6794414177115282 0.145737385920903
+0.5250300091766954 0.6825643084319761 0.5250300091766954 0.6825643084319761 0.13546940715813197
+0.5232916204863984 0.6856954665599416 0.5232916204863985 0.6856954665599416 0.127264525806051
+0.5214483419049237 0.6888247187828113 0.5214483419049237 0.6888247187828113 0.1213612520793691
+0.5298072176011888 0.6544111801736745 0.5298072176011887 0.6544111801736746 0.2162357353564666
+0.5313339732431867 0.6513760766800754 0.5313339732431867 0.6513760766800755 0.23494774907120472
+0.5436286267688261 0.6126219025411425 0.5436286267688261 0.6126219025411425 0.542232459687371
+0.5432317472682682 0.6152274975446681 0.5432317472682682 0.6152274975446681 0.5193342192604291
+0.5327503869353203 0.6482684684732244 0.5327503869353203 0.6482684684732244 0.2550176530275589
+0.5440232942701528 0.6178372087619595 0.5440232942701528 0.6178372087619595 0.5117506542059185
+0.5420373655211389 0.6202205991569295 0.5420373655211389 0.6202205991569295 0.4737012597501345
+0.5345368239425267 0.645519725376146 0.5345368239425267 0.645519725376146 0.27834094689195354
+0.5359081735902511 0.6425205032576246 0.5359081735902511 0.6425205032576246 0.30119823223653314
+0.5370148851776642 0.6395457980914208 0.5370148851776642 0.6395457980914206 0.32309830745171947
+0.5385894381979494 0.6362615088355523 0.5385894381979494 0.6362615088355524 0.3522617369401564
+0.5387383733942743 0.6328097643533374 0.5387383733942743 0.6328097643533374 0.36967573776933504
+0.5415145437303109 0.6239183075300028 0.5415145437303109 0.6239183075300029 0.445711485430873
+0.5402993294680687 0.6274864557087438 0.5402993294680688 0.6274864557087438 0.4127157251514103
+0.5402794993110615 0.6308200455963517 0.5402794993110615 0.6308200455963517 0.3951757911925344
+0.5674333449563553 0.593142677293476 0.5674333449563553 0.5931426772934759 0.9724893591533083
+0.5635001473429821 0.5958401055574376 0.5635001473429821 0.5958401055574375 0.920676636059561
+0.5468834021117653 0.6049979892549646 0.5468834021117653 0.6049979892549645 0.6420343613213418
+0.5483755007067697 0.6080260401671194 0.5483755007067697 0.6080260401671194 0.6371718696932922
+0.5594975856841506 0.5983994969524087 0.5594975856841505 0.5983994969524087 0.859163787688182
+0.55535192718148 0.6007050492562542 0.55535192718148 0.6007050492562543 0.790580343087963
+0.5511643963478944 0.6029488720750313 0.5511643963478944 0.6029488720750313 0.716970990054684
+0.546072629070899 0.6118514623949664 0.546072629070899 0.6118514623949664 0.5784449286657859
+0.5483704949299611 0.6107870758656048 0.5483704949299611 0.6107870758656048 0.6158461905695612
+0.5748908442039116 0.5907492260952278 0.5748908442039116 0.5907492260952277 1.0145942043506653
+0.5710847677519276 0.5937835600884356 0.5710847677519276 0.5937835600884355 0.9827526443796044
+0.5695218791770212 0.5958244644896988 0.5695218791770212 0.5958244644896988 0.9588814361164779
+0.5734234451381323 0.5928436115501893 0.5734234451381323 0.5928436115501893 0.9968595113519381
+0.6112629265817475 0.5701041136155902 0.6112629265817474 0.5701041136155903 0.7436343650092035
+0.60886865818617 0.5723076893263652 0.6088686581861699 0.5723076893263652 0.7852502759216548
+0.6069235798958336 0.5743255777210154 0.6069235798958336 0.5743255777210154 0.8187726226932616
+0.6151823865612005 0.5702705581930586 0.6151823865612006 0.5702705581930586 0.7090397716822406
+0.6042435167026176 0.5759849465695362 0.6042435167026176 0.5759849465695362 0.8547412892681959
+0.6011528470904758 0.5775035132467966 0.6011528470904758 0.5775035132467966 0.8917161849908234
+0.5989525099255231 0.5798912068069678 0.598952509925523 0.5798912068069678 0.9208883884125009
+0.6069518160112672 0.5768998498641846 0.6069518160112672 0.5768998498641846 0.8355038139382275
+0.5833886280476098 0.5874348906514612 0.5833886280476098 0.5874348906514612 1.0205890848339096
+0.5859331301720931 0.5882328833909322 0.5859331301720931 0.5882328833909322 1.0084808759912463
+0.5778250752582993 0.5923785295370279 0.5778250752582993 0.5923785295370277 1.0055634216615041
+0.5817556289001734 0.5890902023533592 0.5817556289001734 0.5890902023533592 1.0187968856364964
+0.5798939840683764 0.5908234606301838 0.5798939840683764 0.5908234606301838 1.0135388928848543
+0.5974541871526093 0.5820207306209655 0.5974541871526093 0.5820207306209655 0.9392915847943006
+0.5919377321244286 0.5827235433932353 0.5919377321244285 0.5827235433932353 0.9816873929008011
+0.5949189237474715 0.582680565106364 0.5949189237474714 0.5826805651063641 0.9601073848129594
+0.5884480430083792 0.5871335061439183 0.5884480430083793 0.5871335061439183 1.000149546905497
+0.5904265424184302 0.5849993104408415 0.5904265424184302 0.5849993104408416 0.9916894669546025
+0.6518740226639425 0.5440886464974461 0.6518740226639425 0.5440886464974461 0.2101997597480029
+0.6557211896347795 0.5436011608988606 0.6557211896347795 0.5436011608988606 0.1943691020963267
+0.6499748747444839 0.5472795067196592 0.6499748747444839 0.5472795067196592 0.24540988520732718
+0.6263580127929042 0.5638779108798945 0.6263580127929042 0.5638779108798945 0.550735981698372
+0.6199377095006279 0.5665747007688956 0.6199377095006279 0.5665747007688956 0.6310996809068462
+0.6182362669490549 0.5689669909945014 0.6182362669490549 0.5689669909945014 0.6693429462870365
+0.6239504509691588 0.5669635516222015 0.6239504509691588 0.5669635516222015 0.6016207140904544
+0.644233959883032 0.5506076668838458 0.644233959883032 0.5506076668838458 0.3008659496152429
+0.6480052042926686 0.5504182258208653 0.6480052042926686 0.5504182258208653 0.2826115094985435
+0.6420255391280818 0.5537120243317553 0.6420255391280819 0.5537120243317553 0.3428061057653276
+0.6363428319109649 0.5566210821054666 0.6363428319109649 0.5566210821054666 0.4044789304813458
+0.6400140686395912 0.5565390329595886 0.6400140686395912 0.5565390329595886 0.38257476321567635
+0.6345241867797471 0.5592010498315582 0.6345241867797471 0.5592010498315582 0.4432587655416829
+0.6300540956389704 0.5623447957055785 0.6300540956389704 0.5623447957055784 0.5071343816590234
+0.632982025426171 0.5614688767792246 0.632982025426171 0.5614688767792246 0.4773462346109609
+0.6736317677693049 0.5281327828842606 0.6736317677693049 0.5281327828842607 0.06611882340548308
+0.6687362037368348 0.5317735798816587 0.6687362037368348 0.5317735798816586 0.08676917090537067
+0.672344951161285 0.5311325608475728 0.672344951161285 0.5311325608475728 0.08211973179194793
+0.6674337027304591 0.5348682769431687 0.6674337027304591 0.5348682769431687 0.1071986776005222
+0.6670572130018844 0.5375474605622117 0.6670572130018844 0.5375474605622117 0.1255937672206772
+0.6615808813892824 0.5398458246336707 0.6615808813892824 0.5398458246336707 0.15050231675073908
+0.6651670469915154 0.539833424568762 0.6651670469915154 0.539833424568762 0.14438754139698118
+0.659667558686651 0.5431616827786032 0.659667558686651 0.5431616827786031 0.1805477203850253
+0.692548148832158 0.512346313853843 0.692548148832158 0.512346313853843 0.059122175609784444
+0.6962897261441346 0.511422359807154 0.6962897261441346 0.511422359807154 0.066291699192057
+0.687868808353813 0.5165147655293003 0.687868808353813 0.5165147655293003 0.052760798398005966
+0.691576963707946 0.5156983008193043 0.691576963707946 0.5156983008193042 0.06016161238324547
+0.6831482049041963 0.5205448161578882 0.6831482049041963 0.5205448161578882 0.049829250299976084
+0.6784150484182737 0.5244161976475596 0.6784150484182737 0.5244161976475596 0.053715022072251296
+0.6820612232855567 0.5237086952844622 0.6820612232855567 0.5237086952844622 0.057196540560611166
+0.6772547546494149 0.5274899458405822 0.6772547546494149 0.5274899458405821 0.06565697555536132
+0.6868273247418443 0.5197845810032512 0.6868273247418443 0.5197845810032512 0.05619565461442067
+0.7119744185206314 0.49535390456417905 0.7119744185206313 0.495353904564179 0.0873503066279032
+0.71528971331831 0.4942429448009427 0.71528971331831 0.4942429448009427 0.09081065143803248
+0.7202881121405537 0.49049034731934826 0.7202881121405537 0.49049034731934826 0.09576988502015073
+0.7182199840102376 0.49329807993531993 0.7182199840102376 0.49329807993531993 0.09350346587505545
+0.7105849470334731 0.4984655175486723 0.710584947033473 0.4984655175486723 0.08556362427699342
+0.7093549733072404 0.5015789305671655 0.7093549733072404 0.5015789305671655 0.08413482326134379
+0.7045467909928891 0.5059832191880923 0.7045467909928891 0.5059832191880923 0.07829288098070165
+0.7081766471718359 0.5049717149352079 0.7081766471718359 0.5049717149352079 0.08303340895970936
+0.6999716157470611 0.5105100844073949 0.6999716157470611 0.5105100844073949 0.07255720100839967
+0.7035785851340668 0.5094759994971133 0.7035785851340668 0.5094759994971133 0.07789853962637051
+0.723859463600021 0.48861823627147105 0.723859463600021 0.48861823627147105 0.09874294868780913
+0.7274010616033019 0.4874329524285697 0.7274010616033019 0.4874329524285697 0.10120099832952277
+0.7234513144580197 0.4918091925614566 0.7234513144580197 0.4918091925614566 0.09758726564561457
+0.7309559404838301 0.48618861099958655 0.7309559404838301 0.4861886109995865 0.10351620502731008
+0.7391386393485506 0.4798862001512225 0.7391386393485506 0.47988620015122246 0.1101966318522307
+0.7354964862075452 0.48124219116664685 0.7354964862075452 0.48124219116664685 0.10781914471908301
+0.7346010324666129 0.4848964323223366 0.7346010324666129 0.4848964323223366 0.10580900444723118
+0.742728422683944 0.4785642352910453 0.742728422683944 0.4785642352910453 0.11262569416771444
+0.7470179622830782 0.473898016092084 0.7470179622830782 0.473898016092084 0.11754461922606708
+0.7462570287335413 0.4772848309369106 0.7462570287335413 0.4772848309369106 0.1151474856642039
+0.7504992550591738 0.47271457589002513 0.7504992550591738 0.47271457589002513 0.12018767873927909
+0.7539998569439692 0.4715020340603171 0.7539998569439693 0.47150203406031715 0.12305679305608598
+0.7575360220876959 0.47026173481785805 0.757536022087696 0.470261734817858 0.1261637367775588
+0.7617369796207827 0.4655549179856458 0.7617369796207827 0.4655549179856458 0.13226024261968763
+0.7610946591026987 0.4690186793928144 0.7610946591026987 0.46901867939281433 0.12947306858378696
+0.7652971644177446 0.46425896817306805 0.7652971644177446 0.46425896817306805 0.13571430998808479
+0.7688777418476143 0.46295700669560347 0.7688777418476143 0.46295700669560347 0.1392806049146217
+0.7724871876541489 0.4616486591566625 0.7724871876541489 0.4616486591566625 0.14291787616545093
+0.7769192430222759 0.45673002536489665 0.7769192430222759 0.45673002536489665 0.1496129120679641
+0.7761330343236303 0.46035063766484347 0.7761330343236303 0.46035063766484347 0.14656982431560953
+0.7806643059476989 0.4555255395430106 0.7806643059476989 0.4555255395430106 0.1530716409363253
+0.7853516132216128 0.45107029173933144 0.7853516132216128 0.45107029173933144 0.15915743331807267
+0.7843551721033208 0.4543962521775784 0.7843551721033207 0.4543962521775784 0.15625542535392842
+0.788525232065928 0.44902412708221284 0.7885252320659281 0.44902412708221284 0.16235180877507768
+0.7922508100838306 0.4482738917513812 0.7922508100838305 0.44827389175138116 0.16468674478744452
+0.7954188235173969 0.44670613039587515 0.795418823517397 0.4467061303958752 0.1670706776254385
+0.7981844064066379 0.4455860801325092 0.7981844064066379 0.4455860801325092 0.16882072494433578
+0.8001379508588223 0.4426004618022819 0.8001379508588223 0.4426004618022819 0.1714236218067391
+0.8037296421746664 0.4398273888971372 0.8037296421746664 0.4398273888971372 0.17406323183105066
+0.8070392693997954 0.43743422416870414 0.8070392693997954 0.43743422416870414 0.17616715436354524
+0.8103279523378183 0.43523482899280247 0.8103279523378183 0.43523482899280247 0.17793641282518247
+0.813653757118982 0.43309207028663227 0.813653757118982 0.43309207028663227 0.17950893250998812
+0.816994098602116 0.43097777727863434 0.816994098602116 0.43097777727863434 0.18094724485636113
+0.8203483346336525 0.4288783288063797 0.8203483346336525 0.4288783288063797 0.18231165499314939
+0.8237177448033358 0.426782729228991 0.8237177448033358 0.426782729228991 0.18366492473347887
+0.8270977011502553 0.42468824789583 0.8270977011502553 0.42468824789583 0.1850665598357675
+0.8304832803600671 0.42259479911368514 0.8304832803600671 0.42259479911368514 0.1865727832687327
+0.8338716965328108 0.4205022807773653 0.8338716965328107 0.4205022807773653 0.18823396071059315
+0.8372616018318908 0.4184100418409795 0.8372616018318908 0.41841004184097946 0.19009134299630207
+0.8406519851270597 0.4163179916317744 0.8406519851270599 0.41631799163177435 0.19217320987741646
+0.8440423684222287 0.4142259414225693 0.8440423684222287 0.4142259414225693 0.19449330161226805
+0.8474327517173976 0.4121338912133642 0.8474327517173975 0.41213389121336425 0.19704943701824437
+0.8508231350125666 0.4100418410041591 0.8508231350125666 0.41004184100415914 0.19982336242391344
+0.8542135183077355 0.40794979079495397 0.8542135183077356 0.4079497907949539 0.20278148286038203
+0.8576039016029045 0.40585774058574886 0.8576039016029045 0.40585774058574886 0.2058764836509663
+0.8609942848980734 0.40376569037654375 0.8609942848980733 0.4037656903765438 0.2090496575849388
+0.8643846681932423 0.40167364016733864 0.8643846681932423 0.4016736401673386 0.2122337100809993
+0.8677750514884113 0.39958158995813353 0.8677750514884114 0.3995815899581335 0.21535581033399895
+0.8711654347835802 0.3974895397489284 0.8711654347835802 0.3974895397489284 0.21834068231757983
+0.8745558180787492 0.3953974895397233 0.874555818078749 0.39539748953972337 0.22111357328103473
+0.8779462013739181 0.3933054393305182 0.8779462013739181 0.3933054393305182 0.2236029866824518
+0.881336584669087 0.3912133891213131 0.8813365846690872 0.39121338912131304 0.22574311201229436
+0.884726967964256 0.389121338912108 0.884726967964256 0.389121338912108 0.2274759203856868
+0.8881173512594249 0.3870292887029029 0.8881173512594248 0.38702928870290293 0.2287529203841043
+0.8915077345545939 0.38493723849369776 0.8915077345545939 0.38493723849369776 0.22953658406856592
+0.8948981178497628 0.38284518828449265 0.8948981178497629 0.3828451882844926 0.22980146020649653
+0.8982885011449318 0.38075313807528754 0.8982885011449318 0.38075313807528754 0.22953499265516333
+0.9016788844401007 0.37866108786608244 0.9016788844401006 0.3786610878660825 0.22873805835783498
+0.9050692677352696 0.3765690376568773 0.9050692677352696 0.3765690376568773 0.22742523288980318
+0.9084596510304386 0.3744769874476722 0.9084596510304387 0.37447698744767216 0.2256247828392073
+0.9118500343256075 0.3723849372384671 0.9118500343256075 0.3723849372384671 0.22337837412941794
+0.9152404176207765 0.370292887029262 0.9152404176207763 0.37029288702926205 0.2207404742617101
+0.9186308009159454 0.3682008368200569 0.9186308009159454 0.3682008368200569 0.21777741526194774
+0.9220211842111143 0.3661087866108518 0.9220211842111145 0.3661087866108517 0.2145660744414268
+0.9254115675062833 0.36401673640164667 0.9254115675062833 0.36401673640164667 0.21119212463419254
+0.9288019508014522 0.36192468619244156 0.9288019508014521 0.3619246861924416 0.20774780845965024
+0.9321923340966212 0.35983263598323645 0.9321923340966212 0.35983263598323645 0.20432920779595118
+0.9355827173917901 0.35774058577403134 0.9355827173917902 0.3577405857740313 0.20103301588221156
+0.938973100686959 0.35564853556482623 0.938973100686959 0.35564853556482623 0.19795287951378035
+0.942363483982128 0.3535564853556211 0.9423634839821279 0.3535564853556212 0.1951754619323661
+0.9457538672772969 0.351464435146416 0.9457538672772969 0.351464435146416 0.19277647378869325
+0.9491442505724659 0.3493723849372109 0.949144250572466 0.34937238493721084 0.1908170095232489
+0.9525346338676348 0.3472803347280058 0.9525346338676348 0.3472803347280058 0.18934058035253734
+0.9559250171628038 0.3451882845188007 0.9559250171628036 0.34518828451880074 0.1883712230485508
+0.9593154004579727 0.34309623430959557 0.9593154004579727 0.34309623430959557 0.1879129690934546
+0.9627057837531416 0.34100418410039046 0.9627057837531418 0.3410041841003904 0.18795078983160327
+0.9660961670483106 0.33891213389118535 0.9660961670483106 0.33891213389118535 0.1884529257519064
+0.9694865503434795 0.33682008368198024 0.9694865503434794 0.3368200836819803 0.18937431422075077
+0.9728769336386485 0.33472803347277513 0.9728769336386485 0.33472803347277513 0.1906606979342448
+0.9762673169338174 0.33263598326357 0.9762673169338175 0.33263598326356997 0.19225295143046403
+0.9796577002289864 0.3305439330543649 0.9796577002289864 0.3305439330543649 0.19409120116432235
+0.9830480835241553 0.3284518828451598 0.9830480835241552 0.32845188284515986 0.1961184095753333
+0.9864384668193242 0.3263598326359547 0.9864384668193242 0.3263598326359547 0.19828321116651226
+0.9898288501144932 0.3242677824267496 0.9898288501144933 0.32426778242674953 0.20054190018244142
+0.9932192334096621 0.3221757322175445 0.9932192334096621 0.3221757322175445 0.20285955844687767
+0.3263598326359837 0.9932192334096621 0.3263598326359837 0.9932192334096621 0.20695749151700513
+0.32845188284518867 0.9898288501144932 0.3284518828451887 0.9898288501144933 0.20853975679990366
+0.3305439330543937 0.9864384668193242 0.3305439330543937 0.9864384668193242 0.21040483981406458
+0.3326359832635987 0.9830480835241553 0.3326359832635987 0.9830480835241552 0.2125369441533239
+0.3347280334728038 0.9796577002289864 0.3347280334728038 0.9796577002289864 0.2149102554953469
+0.3368200836820088 0.9762673169338174 0.3368200836820088 0.9762673169338175 0.21748975416384128
+0.3389121338912138 0.9728769336386485 0.3389121338912138 0.9728769336386485 0.22023244461057281
+0.3410041841004188 0.9694865503434795 0.3410041841004188 0.9694865503434794 0.2230889092867738
+0.3430962343096238 0.9660961670483106 0.3430962343096238 0.9660961670483106 0.22600508250040705
+0.3451882845188289 0.9627057837531416 0.3451882845188288 0.9627057837531418 0.2289241413750581
+0.34728033472803393 0.9593154004579727 0.34728033472803393 0.9593154004579727 0.23178842261302687
+0.349372384937239 0.9559250171628038 0.349372384937239 0.9559250171628036 0.23454129110883729
+0.35146443514644404 0.9525346338676348 0.35146443514644404 0.9525346338676348 0.2371289054546941
+0.3535564853556491 0.9491442505724659 0.35355648535564915 0.949144250572466 0.23950184288334622
+0.3556485355648541 0.9457538672772969 0.35564853556485415 0.9457538672772969 0.2416165602879202
+0.3577405857740591 0.942363483982128 0.35774058577405915 0.9423634839821279 0.24343667783615278
+0.35983263598326415 0.938973100686959 0.35983263598326415 0.938973100686959 0.24493407735941333
+0.3619246861924691 0.9355827173917901 0.36192468619246915 0.9355827173917902 0.24608980961751814
+0.3640167364016742 0.9321923340966212 0.3640167364016742 0.9321923340966212 0.2468948033929961
+0.3661087866108792 0.9288019508014522 0.3661087866108792 0.9288019508014521 0.2473503658669052
+0.3682008368200842 0.9254115675062833 0.3682008368200842 0.9254115675062833 0.24746845857141309
+0.3702928870292892 0.9220211842111143 0.3702928870292892 0.9220211842111145 0.2472717271221807
+0.3723849372384942 0.9186308009159454 0.3723849372384942 0.9186308009159454 0.24679325674904054
+0.37447698744769925 0.9152404176207765 0.37447698744769925 0.9152404176207763 0.24607602047065955
+0.37656903765690425 0.9118500343256075 0.37656903765690425 0.9118500343256075 0.24517198409883798
+0.3786610878661093 0.9084596510304386 0.37866108786610925 0.9084596510304387 0.24414083408265821
+0.38075313807531425 0.9050692677352696 0.38075313807531425 0.9050692677352696 0.24304830288085863
+0.38284518828451924 0.9016788844401007 0.38284518828451924 0.9016788844401006 0.24196408452136922
+0.3849372384937244 0.8982885011449318 0.3849372384937244 0.8982885011449318 0.24095936210650484
+0.3870292887029294 0.8948981178497629 0.3870292887029294 0.8948981178497629 0.24010400946460128
+0.38912133891213446 0.8915077345545941 0.38912133891213446 0.891507734554594 0.2394635783401922
+0.3912133891213395 0.8881173512594251 0.39121338912133957 0.8881173512594253 0.2390962341528519
+0.39330543933054457 0.8847269679642563 0.39330543933054457 0.8847269679642563 0.2390498474741902
+0.3953974895397496 0.8813365846690874 0.3953974895397496 0.8813365846690874 0.2393594729500136
+0.3974895397489546 0.8779462013739184 0.3974895397489546 0.8779462013739184 0.2400454416174693
+0.3995815899581596 0.8745558180787495 0.3995815899581596 0.8745558180787495 0.24111225094359592
+0.4016736401673647 0.8711654347835807 0.4016736401673647 0.8711654347835808 0.24254836252330972
+0.4037656903765697 0.8677750514884117 0.4037656903765697 0.8677750514884117 0.24432692241940437
+0.4058577405857747 0.8643846681932428 0.4058577405857747 0.8643846681932427 0.24640732192275497
+0.4079497907949798 0.860994284898074 0.4079497907949798 0.860994284898074 0.24873743590937214
+0.4100418410041847 0.857603901602905 0.41004184100418467 0.857603901602905 0.25125632557848004
+0.4121338912133897 0.8542135183077362 0.41213389121338967 0.8542135183077361 0.253897177055678
+0.41422594142259483 0.8508231350125672 0.4142259414225949 0.8508231350125673 0.2565902632992321
+0.41631799163179994 0.8474327517173983 0.4163179916318 0.8474327517173982 0.25926575426368786
+0.41841004184100494 0.8440423684222295 0.418410041841005 0.8440423684222295 0.2618562477996514
+0.4205020920502101 0.8406519851270605 0.4205020920502101 0.8406519851270605 0.2642989412676661
+0.4225941702440253 0.8372616021336055 0.4225941702440253 0.8372616021336053 0.26653738315999803
+0.4246863567240419 0.833871352577855 0.4246863567240419 0.833871352577855 0.2685226779232633
+0.4267787228032922 0.8304822640645773 0.42677872280329227 0.8304822640645773 0.27021379323557543
+0.42887122943995065 0.8270972920481222 0.42887122943995065 0.8270972920481222 0.2715776066238829
+0.4309636964193793 0.8237208336483189 0.4309636964193793 0.8237208336483189 0.2725902576995041
+0.4330571425280087 0.8203574799802354 0.4330571425280087 0.8203574799802354 0.2732370787808898
+0.43515352358742526 0.8170105988647992 0.43515352358742526 0.8170105988647992 0.27351292346753325
+0.43725563816906104 0.8136830978483358 0.43725563816906104 0.8136830978483358 0.27342000935539673
+0.43936736217556954 0.810387292923702 0.43936736217556954 0.810387292923702 0.2729598259068853
+0.441496500754728 0.8071812142688974 0.44149650075472807 0.8071812142688976 0.27210769133844076
+0.44376884381533854 0.8038975914287053 0.4437688438153385 0.8038975914287053 0.27079580646252915
+0.4451563748935805 0.8010491235403844 0.4451563748935805 0.8010491235403844 0.2702133276623971
+0.4477579232728663 0.796414880178275 0.4477579232728663 0.796414880178275 0.26861837483319834
+0.4477855197197874 0.7997280353720388 0.44778551971978736 0.7997280353720387 0.2670498529291996
+0.45097408044871673 0.7876019595566819 0.45097408044871673 0.7876019595566818 0.26747316343066835
+0.45357926448466024 0.7857436098809611 0.4535792644846603 0.785743609880961 0.26399287768228036
+0.4509908684206973 0.7912595438182158 0.4509908684206973 0.7912595438182158 0.2658617469601556
+0.4508598796134392 0.7948292500837832 0.45085987961343926 0.7948292500837831 0.2644790603733668
+0.4563765216369701 0.7809553796579354 0.45637652163697007 0.7809553796579354 0.26117912422805534
+0.4563888644712681 0.7838437258593544 0.4563888644712681 0.7838437258593544 0.25979765408378636
+0.45828989530081277 0.7787062322447786 0.45828989530081277 0.7787062322447786 0.2587518095175571
+0.4611241684986938 0.776525254948044 0.4611241684986938 0.776525254948044 0.2543104827969908
+0.4636852681924708 0.7705142472890357 0.4636852681924708 0.7705142472890357 0.25225627504627185
+0.4640465291782984 0.774275599724895 0.4640465291782984 0.774275599724895 0.2493666190337667
+0.466619420191635 0.7682326886920423 0.466619420191635 0.7682326886920423 0.24707014625852733
+0.46950697956666954 0.7659330492115557 0.46950697956666954 0.7659330492115557 0.2416079368452648
+0.47233385153940305 0.7635916588776944 0.47233385153940305 0.7635916588776944 0.2359203235771586
+0.475101959761598 0.7612172397884228 0.475101959761598 0.7612172397884228 0.2300026587393557
+0.4778200556807297 0.7588262341157832 0.4778200556807297 0.7588262341157832 0.22382454102673213
+0.49724268993759324 0.7288385719623763 0.49724268993759324 0.7288385719623763 0.1741489803471272
+0.4997804448681411 0.7263777641816124 0.49978044486814105 0.7263777641816124 0.16471161329353168
+0.48048037762515144 0.7564131182253734 0.48048037762515144 0.7564131182253734 0.21741533009735714
+0.4830807918384594 0.7539908326250773 0.4830807918384594 0.7539908326250773 0.21077924310496446
+0.48564990332866786 0.7515675469722678 0.48564990332866786 0.7515675469722679 0.20382398766699827
+0.4881420573291605 0.7492805336222711 0.48814205732916044 0.7492805336222711 0.19662569333536872
+0.49062493860431355 0.7469969500273583 0.4906249386043136 0.7469969500273583 0.18904948358352633
+0.4929078356497258 0.7451833870026778 0.4929078356497258 0.7451833870026778 0.18153573547391852
+0.49405425556795135 0.7420387000422916 0.4940542555679514 0.7420387000422916 0.17906437215683071
+0.4956635669868436 0.7350413268096591 0.4956635669868436 0.7350413268096591 0.17682312002089076
+0.4968313952038307 0.738876947037465 0.49683139520383074 0.7388769470374649 0.16977937271278024
+0.4982254291776324 0.7325128772073041 0.4982254291776324 0.7325128772073041 0.16768386523577808
+0.5013475593339258 0.7202524241041295 0.5013475593339258 0.7202524241041295 0.16167610729993084
+0.5036095583409298 0.7178219964783277 0.5036095583409298 0.7178219964783277 0.1529798312154933
+0.5023796344147561 0.7238954947140881 0.5023796344147561 0.7238954947140881 0.15474894201316725
+0.5058861625333204 0.7151765652339097 0.5058861625333204 0.7151765652339098 0.14435150816095652
+0.5079907970862149 0.7129430704556188 0.5079907970862149 0.7129430704556188 0.13645250845310505
+0.5320143413583986 0.6576508711743061 0.5320143413583986 0.6576508711743062 0.2209302597864666
+0.5100992189665449 0.7104879798032645 0.5100992189665449 0.7104879798032645 0.12907077512302134
+0.5122553354121305 0.7078688497342761 0.5122553354121305 0.7078688497342761 0.12232205272466344
+0.5144527649694862 0.7051305228994036 0.5144527649694862 0.7051305228994035 0.11668190019431997
+0.5167229451019437 0.7020482837426442 0.5167229451019438 0.7020482837426442 0.112885640379054
+0.5189547440790674 0.6987921974308584 0.5189547440790675 0.6987921974308584 0.11176966310998582
+0.534327871194193 0.6608365318293214 0.534327871194193 0.6608365318293216 0.22872784159606782
+0.5210483261231174 0.6955152959168417 0.5210483261231174 0.6955152959168417 0.11375602002789313
+0.5229967763068549 0.6923000950634042 0.5229967763068549 0.6923000950634042 0.11855547557444
+0.5365364962285013 0.6642066440679902 0.5365364962285013 0.6642066440679902 0.23700170899181086
+0.5353024112681691 0.6673407094099333 0.5353024112681691 0.6673407094099333 0.21962497143524917
+0.5344434275675469 0.6705304467719171 0.534443427567547 0.6705304467719171 0.20585702750691756
+0.5330142781846195 0.6734958090962399 0.5330142781846195 0.6734958090962399 0.18975343154903743
+0.5315883556590482 0.6765297601883306 0.5315883556590482 0.6765297601883306 0.17480739083310717
+0.5300302350336014 0.6796455549138588 0.5300302350336014 0.6796455549138588 0.1603944848497477
+0.5283981339640643 0.682794216124656 0.5283981339640643 0.682794216124656 0.14723888425050524
+0.5266746953572748 0.685951978469533 0.5266746953572748 0.685951978469533 0.13561340180071382
+0.5248848773181961 0.6891244602790282 0.5248848773181961 0.6891244602790282 0.12595561009282508
+0.533541621337974 0.6545468386323824 0.533541621337974 0.6545468386323824 0.24074856584599222
+0.5350375775231213 0.651464538194091 0.5350375775231213 0.651464538194091 0.2619969725434472
+0.5459613044616197 0.6152692619810983 0.5459613044616197 0.6152692619810983 0.552936514649113
+0.5365343216536579 0.6484215798779837 0.5365343216536579 0.6484215798779837 0.2847338545663906
+0.5466824868983076 0.6184217540812049 0.5466824868983076 0.6184217540812049 0.5401949008042374
+0.5456741577789498 0.6205315817067577 0.5456741577789498 0.6205315817067577 0.5143358267012134
+0.5447785080971465 0.6235301277882509 0.5447785080971465 0.6235301277882509 0.4855197026176776
+0.5379563426350497 0.645418228717346 0.5379563426350497 0.6454182287173459 0.3083413992033051
+0.5391076643129091 0.6423748956112166 0.5391076643129091 0.6423748956112166 0.3310940632156924
+0.5398642450887432 0.6396940074905899 0.5398642450887432 0.6396940074905899 0.3495731264311693
+0.5421783483895511 0.6379056301308736 0.5421783483895511 0.6379056301308736 0.38097663942121757
+0.5418975955506683 0.6338544874969552 0.5418975955506683 0.6338544874969552 0.39717705469353465
+0.5440419694605365 0.6268715217092888 0.5440419694605366 0.6268715217092887 0.45753763535125896
+0.5431723957163788 0.6302126456541597 0.5431723957163789 0.6302126456541597 0.4295443884062939
+0.5671620869481024 0.5966307294811243 0.5671620869481026 0.5966307294811243 0.9388171407386329
+0.5654807771859078 0.5986086694008362 0.5654807771859078 0.5986086694008362 0.9093145092865358
+0.5630409973849917 0.5993430629412448 0.5630409973849916 0.5993430629412448 0.8832023495244056
+0.5613542254030317 0.6012270566192413 0.5613542254030317 0.6012270566192413 0.8502257863004811
+0.550319402332568 0.6063612004635048 0.550319402332568 0.606361200463505 0.6763440653597933
+0.5504479097879352 0.6096963797348549 0.5504479097879352 0.6096963797348548 0.6506818275262679
+0.5589194266459093 0.6018022251612307 0.5589194266459093 0.6018022251612307 0.8204313734073266
+0.5570700775297662 0.6035996746068228 0.5570700775297662 0.6035996746068228 0.7833958077631843
+0.554666154389047 0.6041734821062852 0.554666154389047 0.6041734821062851 0.7501869619349116
+0.5528114778307247 0.6059552607897289 0.5528114778307247 0.6059552607897289 0.711554581465381
+0.5509652461647854 0.612660885229464 0.5509652461647853 0.612660885229464 0.6342932157576894
+0.5487078048766397 0.6141622895947157 0.5487078048766397 0.6141622895947157 0.5951320242919755
+0.5758348408259721 0.5939551759020874 0.575834840825972 0.5939551759020874 0.9934588016893056
+0.57831420630581 0.5949718657155734 0.57831420630581 0.5949718657155734 0.9895674064677247
+0.5699374958977551 0.5985055754588265 0.5699374958977551 0.5985055754588265 0.9386645308310461
+0.5720929254379853 0.5970783372254005 0.5720929254379853 0.5970783372254004 0.9601384201369983
+0.5740912234157919 0.5954862756242575 0.5740912234157919 0.5954862756242575 0.978996048438541
+0.6184701584513708 0.5714703147799881 0.6184701584513708 0.5714703147799881 0.6905186071821591
+0.6126743271519495 0.5731103940643812 0.6126743271519494 0.5731103940643812 0.7562928491514452
+0.6100683471995058 0.5758352479427412 0.6100683471995058 0.5758352479427412 0.8007009626116253
+0.6166645419091988 0.5739015906598102 0.6166645419091988 0.5739015906598102 0.7272740501721459
+0.6050580746476197 0.579031718560684 0.6050580746476197 0.579031718560684 0.8645911220052552
+0.6003525270397068 0.5829546134353192 0.6003525270397069 0.5829546134353193 0.9193326741641291
+0.6025341230829054 0.5810406641788021 0.6025341230829054 0.5810406641788021 0.8953682494164407
+0.608944503484289 0.5795139201053434 0.608944503484289 0.5795139201053434 0.8338279697325851
+0.5878069396428858 0.5901177183656934 0.5878069396428858 0.5901177183656934 0.996181299464363
+0.5848471281241998 0.5900509201590995 0.5848471281241999 0.5900509201590997 1.0065697343751963
+0.5809557486327135 0.5939940271951495 0.5809557486327135 0.5939940271951495 0.9959069334748536
+0.5830695442483786 0.5920719368037112 0.5830695442483788 0.5920719368037112 1.002845012610994
+0.5975835841171584 0.5843850718280574 0.5975835841171584 0.5843850718280574 0.9433952019579631
+0.5904374450471136 0.589790836275614 0.5904374450471136 0.589790836275614 0.9857281075547382
+0.5943063486098726 0.5857011233954992 0.5943063486098726 0.5857011233954993 0.9675713443546163
+0.5919980423247668 0.5878674578529167 0.5919980423247669 0.5878674578529167 0.9806616215735717
+0.6003129560288916 0.585574483369981 0.6003129560288916 0.585574483369981 0.9259530762957923
+0.6538646447519737 0.5469016812258362 0.6538646447519737 0.5469016812258362 0.22851801468411528
+0.6578163360195275 0.5463597493775976 0.6578163360195274 0.5463597493775976 0.21182978554687618
+0.6518825092285324 0.550156505433495 0.6518825092285324 0.550156505433495 0.26487178549291873
+0.6297649727362241 0.5653005721232579 0.6297649727362241 0.5653005721232579 0.5398471536452835
+0.627690636424017 0.5672986900214191 0.627690636424017 0.5672986900214191 0.5756118333128043
+0.6215929921704829 0.5701161654551361 0.6215929921704829 0.5701161654551362 0.6519175067764039
+0.625741949795995 0.5699183831021444 0.625741949795995 0.5699183831021443 0.6160894498666564
+0.6459534456968317 0.5535530731401541 0.6459534456968318 0.5535530731401542 0.322117004923703
+0.6498228349661733 0.5533421132882264 0.6498228349661733 0.5533421132882265 0.30289706152543405
+0.6438686618891268 0.5565722414853713 0.6438686618891268 0.5565722414853713 0.36229463072376017
+0.6380512229518575 0.55939639612634 0.6380512229518575 0.5593963961263401 0.4234402838639037
+0.6417424950977697 0.559483437980817 0.6417424950977697 0.559483437980817 0.4029213389849479
+0.6360483368643877 0.5621256663148102 0.6360483368643877 0.5621256663148103 0.4640257801829026
+0.6331451574171213 0.5645993304660349 0.6331451574171213 0.5645993304660349 0.5088531157656496
+0.6760254925576249 0.53052718401208 0.6760254925576249 0.53052718401208 0.07978903826883806
+0.6710264064422201 0.5341392623059438 0.6710264064422201 0.5341392623059438 0.10023676740899896
+0.6747682310049004 0.533526663920357 0.6747682310049004 0.533526663920357 0.09589443527771774
+0.6700877315305103 0.5369388406833037 0.6700877315305104 0.5369388406833037 0.11859890843573932
+0.6685790861375281 0.5399663991835499 0.6685790861375281 0.5399663991835499 0.14064008891735555
+0.663510485933091 0.5428403360392969 0.663510485933091 0.5428403360392969 0.1697756973505676
+0.6671810543778327 0.5427302313867604 0.6671810543778327 0.5427302313867602 0.16247211867182398
+0.661808962499162 0.5460187696524844 0.661808962499162 0.5460187696524844 0.19855947409498687
+0.695334661509424 0.5148696220256831 0.695334661509424 0.5148696220256831 0.06704881937950019
+0.699163612956224 0.5140480677232783 0.699163612956224 0.5140480677232783 0.07336083354030797
+0.6905381270698935 0.5190240615983743 0.6905381270698935 0.5190240615983743 0.06268427891081228
+0.6942890824754214 0.5182585881312677 0.6942890824754214 0.5182585881312677 0.06894071720523852
+0.6857449740475329 0.5230064324744533 0.6857449740475329 0.5230064324744533 0.06188439932668122
+0.6809106282973255 0.5268478154599884 0.6809106282973255 0.5268478154599884 0.06713286709970757
+0.6846005464490997 0.5262062876105803 0.6846005464490997 0.5262062876105803 0.070002184848096
+0.6797000711678641 0.5299505204348508 0.6797000711678641 0.5299505204348508 0.07943255647059894
+0.6894585681457346 0.5223037954480434 0.6894585681457346 0.5223037954480434 0.06710600456923123
+0.714241755938417 0.4975011277377897 0.714241755938417 0.4975011277377897 0.08945382599048814
+0.7178593819271109 0.4963701839850174 0.717859381927111 0.49637018398501737 0.09279818027990162
+0.7213081109858291 0.4946243713052047 0.7213081109858291 0.4946243713052047 0.0956484855081031
+0.7130252865083099 0.5007441739831608 0.7130252865083099 0.5007441739831608 0.08816802942821698
+0.7117984083407691 0.5040346917373602 0.7117984083407691 0.5040346917373602 0.08711948221059972
+0.7070959759978853 0.5083619993077529 0.7070959759978853 0.5083619993077529 0.08244026002936722
+0.7105909146950712 0.5073412670168741 0.7105909146950712 0.5073412670168741 0.08639462184645548
+0.7027992163742967 0.5131166150291253 0.7027992163742968 0.5131166150291254 0.07855243916743739
+0.706215944551975 0.5118808395685696 0.706215944551975 0.5118808395685696 0.08267308908183131
+0.7265986942681971 0.49100234377797725 0.7265986942681971 0.4910023437779772 0.09971566190288704
+0.7299721922440797 0.48981152653237875 0.7299721922440797 0.48981152653237875 0.10190077469600878
+0.72516151720169 0.49428394734478026 0.72516151720169 0.49428394734478026 0.09826383469411892
+0.7335761862181515 0.48857694317277073 0.7335761862181515 0.48857694317277073 0.10411984832107098
+0.7420089789298179 0.48210765477085255 0.7420089789298179 0.48210765477085255 0.11061412478405508
+0.7382868389621461 0.48342997991074876 0.7382868389621461 0.4834299799107487 0.10818470503730775
+0.7373563240748832 0.48728799066898354 0.7373563240748832 0.48728799066898354 0.10643224416407406
+0.7454917914855382 0.4806888183926041 0.7454917914855382 0.4806888183926041 0.11312138024200989
+0.7447613211281728 0.48404266982643596 0.7447613211281728 0.4840426698264359 0.11147363966688591
+0.7497763818858078 0.47606304848785075 0.7497763818858078 0.4760630484878508 0.11780928419755843
+0.7490129047453893 0.4794071520623693 0.7490129047453893 0.4794071520623692 0.1157662101782299
+0.7533045502552843 0.47486652416277986 0.7533045502552843 0.47486652416277986 0.12066695868796129
+0.7568512946825429 0.47367013158744625 0.7568512946825429 0.47367013158744625 0.12375075992970098
+0.7604159923365136 0.4724658650786877 0.7604159923365136 0.47246586507868765 0.12705659009132633
+0.764662222883556 0.46776115148898206 0.764662222883556 0.46776115148898206 0.13295464285079442
+0.7639939250621021 0.4712515562214132 0.7639939250621021 0.4712515562214132 0.13055613166573898
+0.7682411718906232 0.46649400665124574 0.7682411718906232 0.46649400665124574 0.13656653002189653
+0.7718269447173899 0.4652162113321064 0.7718269447173899 0.4652162113321064 0.14025607768708162
+0.7754146433526063 0.46393176195440783 0.7754146433526063 0.46393176195440783 0.1439635089942417
+0.779798796381188 0.4590852090268949 0.779798796381188 0.4590852090268949 0.15016016356518266
+0.7790113481992349 0.46266577209243187 0.7790113481992349 0.4626657720924319 0.14762874179655683
+0.7834796261432506 0.45786035209621867 0.7834796261432507 0.4578603520962186 0.15361329049630348
+0.7878529236363666 0.45300422729505074 0.7878529236363666 0.45300422729505074 0.15932157771666355
+0.7869929078148653 0.45661403715203663 0.7869929078148653 0.45661403715203663 0.1567785872890157
+0.7913315171012588 0.45161907079444913 0.7913315171012588 0.45161907079444913 0.16218812314926792
+0.7947287675463062 0.45030374687853425 0.7947287675463062 0.4503037468785342 0.1647108678284739
+0.7980044025792099 0.4487511321967883 0.7980044025792098 0.4487511321967883 0.16707663540032483
+0.8008747135704317 0.4464375080690982 0.8008747135704316 0.44643750806909827 0.16935840662404367
+0.803851803356368 0.44409829821102353 0.803851803356368 0.4440982982110235 0.1715858305656931
+0.8070914679968486 0.4417346939046123 0.8070914679968485 0.4417346939046123 0.17364970393809975
+0.8103633781526987 0.43947738385554275 0.8103633781526988 0.43947738385554275 0.17545060503999357
+0.813667751623338 0.4372998412778375 0.813667751623338 0.4372998412778375 0.17703118608949106
+0.816999489628529 0.435168872594559 0.816999489628529 0.435168872594559 0.1784509420895228
+0.8203504136659486 0.43306443837494196 0.8203504136659486 0.43306443837494196 0.17976832648925542
+0.8237172934129093 0.43096836668777644 0.8237172934129093 0.43096836668777644 0.1810466611250039
+0.827096577740939 0.42887319864849865 0.827096577740939 0.42887319864849865 0.18234703567762048
+0.8304825519916642 0.4267789198589558 0.8304825519916642 0.4267789198589558 0.18372631055214114
+0.833871544719567 0.4246862931005544 0.8338715447195671 0.4246862931005544 0.1852369568211952
+0.8372616018318908 0.42259414225938974 0.8372616018318908 0.42259414225938974 0.18692497285786014
+0.8406519851270597 0.42050209205018463 0.8406519851270599 0.4205020920501847 0.18882494356231372
+0.8440423684222287 0.4184100418409795 0.8440423684222287 0.41841004184097946 0.19095777581169496
+0.8474327517173976 0.4163179916317744 0.8474327517173975 0.41631799163177435 0.1933291971700968
+0.8508231350125666 0.4142259414225693 0.8508231350125666 0.4142259414225693 0.1959290575741328
+0.8542135183077355 0.4121338912133642 0.8542135183077356 0.41213389121336425 0.19873157928107446
+0.8576039016029045 0.4100418410041591 0.8576039016029045 0.41004184100415914 0.20169654347330876
+0.8609942848980734 0.40794979079495397 0.8609942848980733 0.4079497907949539 0.2047712670256376
+0.8643846681932423 0.40585774058574886 0.8643846681932423 0.40585774058574886 0.20789316176099923
+0.8677750514884113 0.40376569037654375 0.8677750514884114 0.4037656903765438 0.2109926460267539
+0.8711654347835802 0.40167364016733864 0.8711654347835802 0.4016736401673386 0.2139961905093121
+0.8745558180787492 0.39958158995813353 0.874555818078749 0.3995815899581335 0.21682931620246818
+0.8779462013739181 0.3974895397489284 0.8779462013739181 0.3974895397489284 0.2194194096828828
+0.881336584669087 0.3953974895397233 0.8813365846690872 0.39539748953972337 0.22169826841868587
+0.884726967964256 0.3933054393305182 0.884726967964256 0.3933054393305182 0.22360432954038756
+0.8881173512594249 0.3912133891213131 0.8881173512594248 0.39121338912131304 0.22508456600830026
+0.8915077345545939 0.389121338912108 0.8915077345545939 0.389121338912108 0.22609605405915564
+0.8948981178497628 0.3870292887029029 0.8948981178497629 0.38702928870290293 0.22660722658172291
+0.8982885011449318 0.38493723849369776 0.8982885011449318 0.38493723849369776 0.22659883069047337
+0.9016788844401007 0.38284518828449265 0.9016788844401006 0.3828451882844926 0.22606460621581867
+0.9050692677352696 0.38075313807528754 0.9050692677352696 0.38075313807528754 0.22501169667830964
+0.9084596510304386 0.37866108786608244 0.9084596510304387 0.3786610878660825 0.22346079664157095
+0.9118500343256075 0.3765690376568773 0.9118500343256075 0.3765690376568773 0.2214460298309954
+0.9152404176207765 0.3744769874476722 0.9152404176207763 0.37447698744767216 0.21901454156768543
+0.9186308009159454 0.3723849372384671 0.9186308009159454 0.3723849372384671 0.21622577752129182
+0.9220211842111143 0.370292887029262 0.9220211842111145 0.37029288702926205 0.21315040964078572
+0.9254115675062833 0.3682008368200569 0.9254115675062833 0.3682008368200569 0.20986886140122604
+0.9288019508014522 0.3661087866108518 0.9288019508014521 0.3661087866108517 0.2064693815419739
+0.9321923340966212 0.36401673640164667 0.9321923340966212 0.36401673640164667 0.20304562310007437
+0.9355827173917901 0.36192468619244156 0.9355827173917902 0.3619246861924416 0.19969370872663372
+0.938973100686959 0.35983263598323645 0.938973100686959 0.35983263598323645 0.19650880974963772
+0.942363483982128 0.35774058577403134 0.9423634839821279 0.3577405857740313 0.1935813380201162
+0.9457538672772969 0.35564853556482623 0.9457538672772969 0.35564853556482623 0.19099294230028396
+0.9491442505724659 0.3535564853556211 0.949144250572466 0.3535564853556212 0.18881260048660342
+0.9525346338676348 0.351464435146416 0.9525346338676348 0.351464435146416 0.18709317975514014
+0.9559250171628038 0.3493723849372109 0.9559250171628036 0.34937238493721084 0.1858688668873338
+0.9593154004579727 0.3472803347280058 0.9593154004579727 0.3472803347280058 0.18515382382511245
+0.9627057837531416 0.3451882845188007 0.9627057837531418 0.34518828451880074 0.18494229163407583
+0.9660961670483106 0.34309623430959557 0.9660961670483106 0.34309623430959557 0.18521017093863332
+0.9694865503434795 0.34100418410039046 0.9694865503434794 0.3410041841003904 0.1859178950843042
+0.9728769336386485 0.33891213389118535 0.9728769336386485 0.33891213389118535 0.18701423840182038
+0.9762673169338174 0.33682008368198024 0.9762673169338175 0.3368200836819803 0.18844060667702453
+0.9796577002289864 0.33472803347277513 0.9796577002289864 0.33472803347277513 0.19013535242227772
+0.9830480835241553 0.33263598326357 0.9830480835241552 0.33263598326356997 0.19203772741691963
+0.9864384668193242 0.3305439330543649 0.9864384668193242 0.3305439330543649 0.1940911963963995
+0.9898288501144932 0.3284518828451598 0.9898288501144933 0.32845188284515986 0.1962459548626275
+0.9932192334096621 0.3263598326359547 0.9932192334096621 0.3263598326359547 0.19846059673703306
+0.3305439330543937 0.9932192334096621 0.3305439330543937 0.9932192334096621 0.20850885387859794
+0.3326359832635988 0.9898288501144932 0.3326359832635988 0.9898288501144933 0.21001931101797253
+0.3347280334728038 0.9864384668193242 0.3347280334728038 0.9864384668193242 0.2118085887900608
+0.3368200836820088 0.9830480835241553 0.3368200836820088 0.9830480835241552 0.21386065360009213
+0.3389121338912138 0.9796577002289864 0.3389121338912138 0.9796577002289864 0.21614909569983423
+0.3410041841004188 0.9762673169338174 0.3410041841004188 0.9762673169338175 0.21863803782227328
+0.3430962343096238 0.9728769336386485 0.3430962343096238 0.9728769336386485 0.22128347673401957
+0.3451882845188289 0.9694865503434795 0.3451882845188288 0.9694865503434794 0.224034955009254
+0.34728033472803393 0.9660961670483106 0.34728033472803393 0.9660961670483106 0.22683744925567637
+0.349372384937239 0.9627057837531416 0.349372384937239 0.9627057837531418 0.22963336434068451
+0.35146443514644404 0.9593154004579727 0.35146443514644404 0.9593154004579727 0.2323645370331966
+0.3535564853556491 0.9559250171628038 0.35355648535564915 0.9559250171628036 0.23497417209971214
+0.3556485355648541 0.9525346338676348 0.35564853556485415 0.9525346338676348 0.23740865482223028
+0.3577405857740591 0.9491442505724659 0.35774058577405915 0.949144250572466 0.23961920282208385
+0.35983263598326415 0.9457538672772969 0.35983263598326415 0.9457538672772969 0.24156333502959818
+0.3619246861924691 0.942363483982128 0.36192468619246915 0.9423634839821279 0.24320614589457176
+0.36401673640167415 0.938973100686959 0.36401673640167415 0.938973100686959 0.24452137859949027
+0.3661087866108792 0.9355827173917901 0.3661087866108792 0.9355827173917902 0.24549229270818482
+0.3682008368200842 0.9321923340966212 0.3682008368200842 0.9321923340966212 0.24611232014061438
+0.3702928870292892 0.9288019508014522 0.3702928870292892 0.9288019508014521 0.24638549941829102
+0.3723849372384942 0.9254115675062833 0.3723849372384942 0.9254115675062833 0.24632667256190308
+0.37447698744769925 0.9220211842111143 0.37447698744769925 0.9220211842111145 0.24596142265760876
+0.37656903765690425 0.9186308009159454 0.37656903765690425 0.9186308009159454 0.24532572389819238
+0.3786610878661093 0.9152404176207765 0.37866108786610925 0.9152404176207763 0.24446527109499136
+0.38075313807531425 0.9118500343256075 0.38075313807531425 0.9118500343256075 0.24343445390997168
+0.3828451882845193 0.9084596510304386 0.38284518828451924 0.9084596510304387 0.24229494450290548
+0.38493723849372435 0.9050692677352696 0.38493723849372435 0.9050692677352696 0.24111387838527373
+0.38702928870292946 0.9016788844401007 0.38702928870292946 0.9016788844401006 0.23996162938735224
+0.38912133891213446 0.8982885011449319 0.38912133891213446 0.8982885011449319 0.23890921226532294
+0.39121338912133946 0.8948981178497629 0.39121338912133946 0.8948981178497629 0.23802539009650822
+0.3933054393305445 0.891507734554594 0.39330543933054457 0.891507734554594 0.23737361456059494
+0.3953974895397495 0.8881173512594251 0.39539748953974957 0.8881173512594253 0.23700897793754436
+0.3974895397489546 0.8847269679642562 0.3974895397489546 0.8847269679642561 0.23697539521524133
+0.3995815899581596 0.8813365846690874 0.3995815899581596 0.8813365846690874 0.23730325089062362
+0.4016736401673647 0.8779462013739184 0.4016736401673647 0.8779462013739184 0.23800772813109153
+0.4037656903765697 0.8745558180787495 0.4037656903765697 0.8745558180787495 0.2390879847918823
+0.4058577405857748 0.8711654347835807 0.4058577405857748 0.8711654347835808 0.24052725744485404
+0.4079497907949798 0.8677750514884117 0.4079497907949798 0.8677750514884117 0.24229387584367945
+0.4100418410041848 0.8643846681932428 0.4100418410041848 0.8643846681932427 0.24434307554819704
+0.41213389121338984 0.860994284898074 0.4121338912133899 0.860994284898074 0.2466194237657975
+0.41422594142259483 0.8576039016029051 0.4142259414225949 0.8576039016029052 0.2490596340530711
+0.41631799163179983 0.8542135183077362 0.4163179916317999 0.8542135183077361 0.2515955413050839
+0.41841004184100494 0.8508231350125672 0.418410041841005 0.8508231350125673 0.2541570331994732
+0.42050209205021 0.8474327517173984 0.42050209205021 0.8474327517173984 0.2566747770283306
+0.42259414225941505 0.8440423684222295 0.42259414225941505 0.8440423684222295 0.2590826300555577
+0.4246861924686207 0.8406519851270607 0.42468619246862077 0.8406519851270607 0.26131966793065065
+0.42677829183412846 0.8372616023746939 0.42677829183412846 0.8372616023746939 0.2633317611776364
+0.42887056957963327 0.8338713991754155 0.42887056957963327 0.8338713991754155 0.2650725548822372
+0.4309633344143033 0.8304828310096886 0.4309633344143033 0.8304828310096886 0.266503126617546
+0.4330564425187335 0.8270991783629452 0.4330564425187335 0.8270991783629452 0.2675929786461783
+0.43514912552193064 0.8237249805562398 0.43514912552193064 0.8237249805562398 0.26832147116339683
+0.4372426012046915 0.8203646239207988 0.43724260120469155 0.8203646239207988 0.2686762406505345
+0.43933844423904334 0.817019639509887 0.4393384442390433 0.817019639509887 0.268655745007758
+0.441440041750173 0.8136924853985414 0.441440041750173 0.8136924853985414 0.26826296267485844
+0.4435500182980652 0.8103837237042991 0.44355001829806523 0.8103837237042991 0.26750896242888395
+0.44571694381760185 0.807035170322998 0.44571694381760185 0.807035170322998 0.26637479440498263
+0.44787430184482746 0.8034347839909541 0.44787430184482746 0.8034347839909541 0.2651139589259183
+0.45071586010217324 0.7982334816236669 0.45071586010217324 0.7982334816236669 0.2631073185459925
+0.45038747677830987 0.8010471256580679 0.4503874767783099 0.8010471256580679 0.26222003439879643
+0.45445362351472585 0.7895490943733162 0.45445362351472596 0.7895490943733162 0.26079759583839984
+0.45647595070966407 0.7868223186847381 0.45647595070966407 0.7868223186847381 0.2582722832317087
+0.4538908262592867 0.7933446645073956 0.4538908262592867 0.7933446645073956 0.2600322262068042
+0.45367420762685345 0.7968899861481057 0.45367420762685345 0.7968899861481057 0.2587302330833017
+0.45900093990398283 0.7819895058460298 0.4590009399039828 0.7819895058460298 0.25580091316496795
+0.459186214327832 0.785821906501645 0.45918621432783197 0.7858219065016449 0.2536247530242475
+0.4616196726771545 0.7801618018098534 0.4616196726771545 0.7801618018098534 0.2514491985471979
+0.46447028168438137 0.7780331282904999 0.46447028168438137 0.7780331282904999 0.24645009058181652
+0.46698769634671683 0.7720224594731491 0.46698769634671683 0.7720224594731491 0.2440086780399934
+0.46737130846945907 0.7758195908125639 0.467371308469459 0.7758195908125639 0.24102794203239206
+0.4698997413581633 0.7697275928564499 0.4698997413581633 0.7697275928564499 0.23835360785211782
+0.47276464031786275 0.7673757897287213 0.47276464031786275 0.7673757897287213 0.2324531333491858
+0.4755772794143736 0.7649784734876665 0.4755772794143736 0.7649784734876665 0.22631566054005595
+0.47834340417531923 0.762562572988082 0.47834340417531923 0.7625625729880819 0.21991222051489742
+0.4810515291952157 0.7601211215141236 0.4810515291952157 0.7601211215141236 0.21328440041249072
+0.5007507825474483 0.7300396403869911 0.5007507825474483 0.7300396403869911 0.15833800489847036
+0.5032368792788429 0.727607656924265 0.5032368792788429 0.727607656924265 0.14891491315610958
+0.483700446374938 0.7576765761566051 0.483700446374938 0.7576765761566051 0.206429377158975
+0.48630116256538763 0.7552368847195586 0.48630116256538763 0.7552368847195586 0.19931494863817337
+0.4888466436293611 0.7528547488043619 0.4888466436293611 0.7528547488043619 0.19194122355912982
+0.4913153924721038 0.7504503204200371 0.4913153924721038 0.7504503204200371 0.1844570176220931
+0.4937975010149245 0.7480810528633256 0.4937975010149245 0.7480810528633256 0.17651431819302707
+0.49566242053192144 0.7453146120255396 0.4956624205319215 0.7453146120255396 0.17086998808244555
+0.49785590076104064 0.7426876618414608 0.49785590076104064 0.7426876618414608 0.1635901663663398
+0.4992411272715448 0.7361674527373279 0.49924112727154485 0.7361674527373278 0.16136371114947498
+0.5002967327355798 0.7399533604562937 0.5002967327355798 0.7399533604562937 0.15504693591663618
+0.5017632189884712 0.7337006511685011 0.5017632189884712 0.7337006511685011 0.15206397090014026
+0.5053683368082194 0.7212974392634223 0.5053683368082194 0.7212974392634222 0.1430501350779372
+0.5067211883339173 0.7181196977499484 0.5067211883339173 0.7181196977499484 0.13885531470234103
+0.5057003292025121 0.7251819397339923 0.5057003292025121 0.7251819397339921 0.13951366558137657
+0.5081855107047776 0.7234401930952328 0.5081855107047776 0.7234401930952328 0.12978231985623456
+0.5092196903833159 0.7164228611737388 0.5092196903833158 0.7164228611737388 0.12916294059807545
+0.5113388306358606 0.7140310905193072 0.5113388306358607 0.7140310905193071 0.12198157896757368
+0.5358057991827737 0.6577393082194544 0.5358057991827737 0.6577393082194544 0.24886320221506622
+0.5134913144312566 0.7114152827149979 0.5134913144312566 0.7114152827149979 0.11565851952503457
+0.5157245745635937 0.7087631869630839 0.5157245745635937 0.7087631869630839 0.11044572165086007
+0.518421962179196 0.7060585624741743 0.518421962179196 0.7060585624741743 0.10650212639089449
+0.5204101075591677 0.7022168912024698 0.5204101075591677 0.7022168912024699 0.10749113449665172
+0.5225454423979051 0.6989845402428729 0.5225454423979051 0.6989845402428729 0.11084744998628937
+0.5380198770020925 0.6609493807423842 0.5380198770020925 0.6609493807423842 0.2579050691849007
+0.524561883309012 0.6957800368263003 0.524561883309012 0.6957800368263003 0.11711198361138377
+0.5264906221277058 0.6925740332494955 0.5264906221277058 0.6925740332494955 0.12598689701453256
+0.5401091829336209 0.6641735515091002 0.5401091829336209 0.6641735515091002 0.2666885958106228
+0.5386718779117717 0.667269413528571 0.5386718779117717 0.667269413528571 0.24632963462396276
+0.5373995533676574 0.6702641122765992 0.5373995533676573 0.6702641122765992 0.2286810974376939
+0.5362097039165757 0.6734995350081722 0.5362097039165757 0.6734995350081722 0.21213502389539726
+0.5348476093784491 0.6766452077779623 0.5348476093784491 0.6766452077779624 0.19568410609953482
+0.5333520421264812 0.6797900269487226 0.5333520421264812 0.6797900269487226 0.17955780025551424
+0.5317671599928055 0.6829664573917179 0.5317671599928055 0.6829664573917179 0.16421316561504315
+0.5300958400532799 0.6861616083581183 0.5300958400532799 0.6861616083581183 0.1499462111834248
+0.5283269110888134 0.6893612850694737 0.5283269110888132 0.6893612850694737 0.13704244447161154
+0.5373163302677425 0.6546112240033785 0.5373163302677425 0.6546112240033785 0.2708918697143931
+0.5387742340088728 0.6514775387250809 0.5387742340088728 0.6514775387250809 0.29399773074983143
+0.5489409167563537 0.6173426643002747 0.5489409167563536 0.6173426643002747 0.5753698000487711
+0.540154240220767 0.6483614590099828 0.540154240220767 0.6483614590099828 0.3178155332681673
+0.5488190573850904 0.620681208674499 0.5488190573850904 0.6206812086744992 0.5511317076100126
+0.5476157144440443 0.622899267578384 0.5476157144440443 0.622899267578384 0.5224626016765261
+0.5477431871741832 0.6261605338386548 0.5477431871741832 0.6261605338386548 0.5041753588614828
+0.5414300314478515 0.6452097595915479 0.5414300314478515 0.6452097595915479 0.3422222259626659
+0.5426866911745489 0.6416843559303673 0.5426866911745489 0.6416843559303674 0.3695377728081911
+0.5448726823592844 0.6394722568227416 0.5448726823592844 0.6394722568227416 0.40198763342276667
+0.5451418502727415 0.6365887670211671 0.5451418502727415 0.6365887670211671 0.41869921633505597
+0.5458569980278434 0.6332035628761283 0.5458569980278433 0.6332035628761283 0.4435222659533387
+0.5466497032496387 0.6299463350276038 0.5466497032496386 0.6299463350276038 0.46993547750732906
+0.5678018322981504 0.5999427051638022 0.5678018322981505 0.5999427051638023 0.9137034691282512
+0.5701950249991836 0.6011264767428943 0.5701950249991836 0.6011264767428943 0.918306254805169
+0.5659195783505652 0.6013173729667536 0.5659195783505652 0.6013173729667535 0.8886718298776665
+0.5615806662980103 0.6039125126189404 0.5615806662980103 0.6039125126189404 0.8283011066794593
+0.5638284083695151 0.6027292921955699 0.5638284083695151 0.6027292921955699 0.8592541265049328
+0.5527622279693972 0.6086555293162675 0.5527622279693972 0.6086555293162675 0.6884871295322715
+0.5525416141222779 0.6112273563945873 0.5525416141222779 0.6112273563945873 0.6647564852218922
+0.559359399832234 0.6051008684671813 0.559359399832234 0.6051008684671811 0.7950593937387849
+0.557318747597304 0.6063363995876385 0.557318747597304 0.6063363995876384 0.7621529234491217
+0.5551524202571922 0.6076472881465744 0.5551524202571922 0.6076472881465743 0.7258092424993282
+0.5617214388364029 0.6065732185297203 0.5617214388364029 0.6065732185297203 0.8061617786328371
+0.5537041426533793 0.6137913866448481 0.5537041426533794 0.6137913866448481 0.6588961903910592
+0.5520195106185192 0.6163008231421739 0.5520195106185192 0.6163008231421739 0.6203615245173831
+0.5770425565322018 0.5966880480715653 0.5770425565322018 0.5966880480715653 0.9770667658656983
+0.5799586893715077 0.5970716913662938 0.5799586893715077 0.5970716913662938 0.9782129067523756
+0.5728512265260877 0.600430739650039 0.5728512265260877 0.6004307396500391 0.9374270554177181
+0.5751964577843739 0.5986455790733876 0.5751964577843739 0.5986455790733877 0.9592901466032057
+0.6206751914538822 0.5740936283852659 0.6206751914538823 0.5740936283852659 0.6947579742895609
+0.6140613437954232 0.5762316002671104 0.6140613437954232 0.5762316002671105 0.7680388944753286
+0.6120542018716078 0.5784577042507872 0.6120542018716078 0.5784577042507872 0.8004472963823671
+0.6179691489190873 0.5769248891833686 0.6179691489190873 0.5769248891833686 0.7396959130494504
+0.612086140203811 0.5809589705712389 0.612086140203811 0.5809589705712389 0.8152300929297807
+0.6062519587103145 0.5821554673169588 0.6062519587103145 0.5821554673169588 0.8694679877474741
+0.6034372365653882 0.5846978397797115 0.6034372365653882 0.5846978397797115 0.9011294881906962
+0.6101642431297232 0.5832564266846344 0.6101642431297232 0.5832564266846344 0.8429851562705121
+0.5903050392337783 0.592178138017888 0.5903050392337783 0.592178138017888 0.9815829369291308
+0.5825955012116655 0.596845632356791 0.5825955012116655 0.596845632356791 0.9799260925582658
+0.5868372478265478 0.5932481075101648 0.5868372478265478 0.5932481075101647 0.9899811580211474
+0.5844555880998311 0.5950859441056571 0.5844555880998311 0.595085944105657 0.9871573453891936
+0.5981788048556771 0.5875598059043997 0.5981788048556771 0.5875598059043997 0.9437097338553722
+0.5932066459336343 0.5910021308544895 0.5932066459336341 0.5910021308544895 0.9712032705742445
+0.5954807276090551 0.5893033647854061 0.5954807276090551 0.5893033647854061 0.9607465500855364
+0.5929204916819956 0.5935433807185446 0.5929204916819956 0.5935433807185446 0.9684365454651802
+0.6020233011268891 0.5882932570041428 0.6020233011268891 0.5882932570041427 0.9196430713402454
+0.6558790211257004 0.5498486443763406 0.6558790211257004 0.5498486443763406 0.24801103399589328
+0.6604738774967119 0.5495901242902249 0.6604738774967119 0.5495901242902249 0.23160351871035711
+0.6537484754901949 0.553148861170042 0.6537484754901949 0.553148861170042 0.28525776472484976
+0.6312150617946483 0.5676516611481365 0.6312150617946483 0.5676516611481365 0.5527545751453263
+0.6291233765916263 0.5700514800655081 0.6291233765916263 0.5700514800655081 0.591243134560138
+0.6244324391012162 0.5728940970983029 0.6244324391012163 0.5728940970983029 0.6537143591472102
+0.6274935238097898 0.5722070776240025 0.6274935238097898 0.5722070776240025 0.6233125976997984
+0.6477310050690163 0.5564711327928651 0.6477310050690163 0.556471132792865 0.34225505902776954
+0.6516156349481204 0.5563039318686078 0.6516156349481204 0.5563039318686078 0.32306807513324176
+0.6455836726843168 0.559509395873621 0.6455836726843168 0.5595093958736211 0.3824012799469428
+0.6395497099346932 0.5623687993985057 0.6395497099346931 0.5623687993985057 0.44463396760919843
+0.6433423551817582 0.5624853492085142 0.6433423551817582 0.5624853492085142 0.4235316002327338
+0.6370591195433744 0.5652436380642616 0.6370591195433742 0.5652436380642616 0.48887764050356725
+0.6349000987765443 0.5679713357168045 0.6349000987765443 0.5679713357168045 0.5298555194258247
+0.6784394158775128 0.5330194436374407 0.6784394158775128 0.5330194436374408 0.0938967287533833
+0.6735025118979022 0.5365305239440361 0.6735025118979022 0.5365305239440361 0.1140014973736095
+0.6771421926238724 0.5360581173643089 0.6771421926238724 0.536058117364309 0.11034311098427653
+0.6721791160875176 0.5394763559308641 0.6721791160875176 0.5394763559308641 0.13365565801011312
+0.670726412152559 0.5423910789378558 0.670726412152559 0.5423910789378558 0.15494221615268045
+0.6655243211956674 0.5455796394439573 0.6655243211956674 0.5455796394439573 0.18693492835089034
+0.6691873184146565 0.5452580432143745 0.6691873184146565 0.5452580432143747 0.17770696250034604
+0.6639171786590554 0.5485141155237512 0.6639171786590553 0.5485141155237513 0.21359586668779826
+0.6981087504617921 0.5174892240579857 0.6981087504617921 0.5174892240579857 0.07481129307342727
+0.7020644906846865 0.5167357790177767 0.7020644906846866 0.5167357790177767 0.08029416827507986
+0.693198907351813 0.5215963284802408 0.693198907351813 0.5215963284802408 0.07240452666402909
+0.6969732487446837 0.52087852288045 0.6969732487446837 0.5208785228804499 0.07750329760763199
+0.6883209814732009 0.5255639873154044 0.6883209814732009 0.5255639873154044 0.0737147681687738
+0.6833979725779757 0.5293724968296817 0.6833979725779757 0.5293724968296817 0.08050708261061044
+0.6871251480323819 0.5287932293018459 0.6871251480323819 0.5287932293018459 0.08260351455845383
+0.6821401475120185 0.5325034701092547 0.6821401475120185 0.5325034701092547 0.09325989110620077
+0.692069375737235 0.5249126045922955 0.692069375737235 0.5249126045922955 0.07780176299952275
+0.7166660236754443 0.49972808349368 0.7166660236754443 0.49972808349368 0.09160002286355372
+0.7202845063037291 0.4985866581570971 0.7202845063037291 0.4985866581570971 0.09454203217945095
+0.7238726325081846 0.49759738993043057 0.7238726325081846 0.4975973899304305 0.09711142304907323
+0.7154316712696535 0.5031300384491979 0.7154316712696535 0.503130038449198 0.0906334231593565
+0.7141796668602468 0.5064371037654248 0.7141796668602468 0.5064371037654248 0.08992786663595914
+0.7094172008100117 0.5105835620902589 0.7094172008100116 0.5105835620902589 0.08608952371746635
+0.7128768534490089 0.5096584164937137 0.7128768534490089 0.5096584164937137 0.08948378975624964
+0.7087165923547097 0.5133908387198256 0.7087165923547097 0.5133908387198256 0.08658684050585279
+0.7063107171650524 0.5156968540779917 0.7063107171650523 0.5156968540779917 0.08521023145255223
+0.7288052330300699 0.4933040533241342 0.7288052330300699 0.4933040533241342 0.1005566518360702
+0.7324417249698575 0.4921989937908773 0.7324417249698575 0.4921989937908773 0.10272808463489015
+0.7275554123630746 0.49672528829251134 0.7275554123630746 0.49672528829251134 0.09944587635966319
+0.7361334889476909 0.491077167999078 0.7361334889476909 0.491077167999078 0.10489167736282558
+0.7416490732875765 0.48595668089196387 0.7416490732875766 0.4859566808919639 0.10911781028378331
+0.7398728439306899 0.490038323275938 0.7398728439306899 0.49003832327593794 0.10711335049416341
+0.7482050991451955 0.48270094739996067 0.7482050991451955 0.48270094739996067 0.11403092670755467
+0.7448904173202384 0.48680134974062866 0.7448904173202384 0.4868013497406286 0.11075172774477851
+0.7477212133094878 0.4856892539895085 0.7477212133094878 0.4856892539895085 0.1128348265504439
+0.7525699087498382 0.47820626205441313 0.7525699087498382 0.47820626205441313 0.11861417219259944
+0.7518054118069012 0.48149071215180017 0.7518054118069012 0.48149071215180017 0.11686273644026436
+0.7561390472561219 0.4770410823517002 0.7561390472561219 0.47704108235170023 0.12168253969941493
+0.7597097301080192 0.4758819336959661 0.7597097301080192 0.4758819336959661 0.12497278221131324
+0.7632927423211481 0.4747155610452631 0.7632927423211481 0.4747155610452631 0.1284754161272724
+0.7675847635499874 0.4700221291315739 0.7675847635499874 0.4700221291315739 0.1342126579901234
+0.7668992037836858 0.473533943833549 0.7668992037836858 0.473533943833549 0.13216622055006752
+0.7711781067122603 0.46877439607240384 0.7711781067122603 0.46877439607240384 0.13796800133579665
+0.7747545438426566 0.4675020628738706 0.7747545438426567 0.4675020628738706 0.14174911568701828
+0.7782734225445065 0.46620899950845823 0.7782734225445065 0.46620899950845823 0.1454610612352383
+0.7825810816011293 0.4614081340236593 0.7825810816011293 0.4614081340236593 0.15116935202227458
+0.7817719691065164 0.4649372256718031 0.7817719691065164 0.4649372256718031 0.14907097052702237
+0.7861345477204066 0.46018888591224644 0.7861345477204066 0.46018888591224644 0.15452987404153637
+0.7904841841173965 0.45529658548424806 0.7904841841173965 0.45529658548424806 0.15977644803223898
+0.7896482270467926 0.4589468984289699 0.7896482270467926 0.4589468984289699 0.15767105886757563
+0.7939425190346887 0.45394840220713095 0.7939425190346886 0.453948402207131 0.16254655591700137
+0.7974245329614522 0.4525238539255807 0.7974245329614522 0.4525238539255807 0.1651056266840273
+0.8011386006344897 0.4509306222888129 0.8011386006344897 0.4509306222888129 0.16753029226412594
+0.8041000343562174 0.4480914804508343 0.8041000343562174 0.4480914804508343 0.16985645878617375
+0.8071770111812215 0.4458982561421772 0.8071770111812215 0.4458982561421772 0.1717422860371642
+0.8104018776468919 0.4436856842371179 0.8104018776468919 0.4436856842371179 0.17348874163779507
+0.8136867459414973 0.44150710700186874 0.8136867459414973 0.44150710700186874 0.1750401186075825
+0.8170097633786844 0.4393650198909667 0.8170097633786844 0.4393650198909667 0.1764216584377369
+0.8203559444164449 0.437252246426185 0.8203559444164449 0.43725224642618504 0.17767870720776754
+0.8237195618954054 0.43515387395151595 0.8237195618954054 0.435153873951516 0.1788687103542972
+0.8270968247792218 0.4330582200749142 0.8270968247792218 0.4330582200749142 0.18005298839070216
+0.8304822875983459 0.4309634583357073 0.8304822875983459 0.4309634583357073 0.18128981162443736
+0.8338713976943285 0.42887039245736175 0.8338713976943285 0.42887039245736175 0.18263395546683178
+0.8372616018318908 0.42677824267779996 0.8372616018318908 0.4267782426778 0.18413499941479872
+0.8406519851270597 0.42468619246859485 0.8406519851270599 0.4246861924685948 0.18583333744182748
+0.8440423684222287 0.42259414225938974 0.8440423684222287 0.42259414225938974 0.18775674447528837
+0.8474327517173976 0.42050209205018463 0.8474327517173975 0.4205020920501847 0.18991865110153186
+0.8508231350125666 0.4184100418409795 0.8508231350125666 0.41841004184097946 0.19231699347757372
+0.8542135183077355 0.4163179916317744 0.8542135183077356 0.41631799163177435 0.19493398191419622
+0.8576039016029045 0.4142259414225693 0.8576039016029045 0.4142259414225693 0.19773683339625683
+0.8609942848980734 0.4121338912133642 0.8609942848980733 0.41213389121336425 0.20067936505046077
+0.8643846681932423 0.4100418410041591 0.8643846681932423 0.41004184100415914 0.20370426854657733
+0.8677750514884113 0.40794979079495397 0.8677750514884114 0.4079497907949539 0.20674584429958306
+0.8711654347835802 0.40585774058574886 0.8711654347835802 0.40585774058574886 0.20973297036473534
+0.8745558180787492 0.40376569037654375 0.874555818078749 0.4037656903765438 0.2125921064013112
+0.8779462013739181 0.40167364016733864 0.8779462013739181 0.4016736401673386 0.21525017593130938
+0.881336584669087 0.39958158995813353 0.8813365846690872 0.3995815899581335 0.21763721828039675
+0.884726967964256 0.3974895397489284 0.884726967964256 0.3974895397489284 0.21968874595712842
+0.8881173512594249 0.3953974895397233 0.8881173512594248 0.39539748953972337 0.22134777864814037
+0.8915077345545939 0.3933054393305182 0.8915077345545939 0.3933054393305182 0.22256654981220012
+0.8948981178497628 0.3912133891213131 0.8948981178497629 0.39121338912131304 0.22330789671435272
+0.8982885011449318 0.389121338912108 0.8982885011449318 0.389121338912108 0.22354635146848947
+0.9016788844401007 0.3870292887029029 0.9016788844401006 0.38702928870290293 0.2232689513140598
+0.9050692677352696 0.38493723849369776 0.9050692677352696 0.38493723849369776 0.2224757827247461
+0.9084596510304386 0.38284518828449265 0.9084596510304387 0.3828451882844926 0.2211802673375948
+0.9118500343256075 0.38075313807528754 0.9118500343256075 0.38075313807528754 0.21940918894185116
+0.9152404176207765 0.37866108786608244 0.9152404176207763 0.3786610878660825 0.21720245041599398
+0.9186308009159454 0.3765690376568773 0.9186308009159454 0.3765690376568773 0.21461253804027766
+0.9220211842111143 0.3744769874476722 0.9220211842111145 0.37447698744767216 0.21170365882063139
+0.9254115675062833 0.3723849372384671 0.9254115675062833 0.3723849372384671 0.2085505058155979
+0.9288019508014522 0.370292887029262 0.9288019508014521 0.37029288702926205 0.20523659957514992
+0.9321923340966212 0.3682008368200569 0.9321923340966212 0.3682008368200569 0.20185215477489535
+0.9355827173917901 0.3661087866108518 0.9355827173917902 0.3661087866108517 0.1984914355302392
+0.938973100686959 0.36401673640164667 0.938973100686959 0.36401673640164667 0.19524959696640765
+0.942363483982128 0.36192468619244156 0.9423634839821279 0.3619246861924416 0.19221906935924526
+0.9457538672772969 0.35983263598323645 0.9457538672772969 0.35983263598323645 0.18948562480820874
+0.9491442505724659 0.35774058577403134 0.949144250572466 0.3577405857740313 0.18712436641946925
+0.9525346338676348 0.35564853556482623 0.9525346338676348 0.35564853556482623 0.18519597623077447
+0.9559250171628038 0.3535564853556211 0.9559250171628036 0.3535564853556212 0.18374362044007986
+0.9593154004579727 0.351464435146416 0.9593154004579727 0.351464435146416 0.18279090703738196
+0.9627057837531416 0.3493723849372109 0.9627057837531418 0.34937238493721084 0.18234120207377488
+0.9660961670483106 0.3472803347280058 0.9660961670483106 0.3472803347280058 0.18237844256689192
+0.9694865503434795 0.3451882845188007 0.9694865503434794 0.34518828451880074 0.182869371964594
+0.9728769336386485 0.34309623430959557 0.9728769336386485 0.34309623430959557 0.18376692231636402
+0.9762673169338174 0.34100418410039046 0.9762673169338175 0.3410041841003904 0.18501432709400314
+0.9796577002289864 0.33891213389118535 0.9796577002289864 0.33891213389118535 0.1865494980486876
+0.9830480835241553 0.33682008368198024 0.9830480835241552 0.3368200836819803 0.1883092356159433
+0.9864384668193242 0.33472803347277513 0.9864384668193242 0.33472803347277513 0.1902329381530924
+0.9898288501144932 0.33263598326357 0.9898288501144933 0.33263598326356997 0.192265594935036
+0.9932192334096621 0.3305439330543649 0.9932192334096621 0.3305439330543649 0.19435996099611408
+0.3347280334728038 0.9932192334096621 0.3347280334728038 0.9932192334096621 0.20990888760179463
+0.3368200836820088 0.9898288501144932 0.3368200836820088 0.9898288501144933 0.2113367475132729
+0.3389121338912138 0.9864384668193242 0.3389121338912138 0.9864384668193242 0.21303889448840493
+0.34100418410041883 0.9830480835241553 0.34100418410041883 0.9830480835241552 0.21499897874990292
+0.3430962343096239 0.9796577002289864 0.3430962343096238 0.9796577002289864 0.21718999641139455
+0.3451882845188289 0.9762673169338174 0.3451882845188288 0.9762673169338175 0.2195752939683775
+0.34728033472803393 0.9728769336386485 0.34728033472803393 0.9728769336386485 0.2221100160790149
+0.349372384937239 0.9694865503434795 0.349372384937239 0.9694865503434794 0.22474288483454455
+0.35146443514644404 0.9660961670483106 0.35146443514644404 0.9660961670483106 0.22741818872260658
+0.3535564853556491 0.9627057837531416 0.35355648535564915 0.9627057837531418 0.2300778646487391
+0.3556485355648541 0.9593154004579727 0.35564853556485415 0.9593154004579727 0.23266357238521365
+0.35774058577405915 0.9559250171628038 0.35774058577405915 0.9559250171628036 0.23511868245662107
+0.3598326359832641 0.9525346338676348 0.35983263598326415 0.9525346338676348 0.23739012102700816
+0.3619246861924691 0.9491442505724659 0.36192468619246915 0.949144250572466 0.23943003538944455
+0.36401673640167415 0.9457538672772969 0.36401673640167415 0.9457538672772969 0.24119725923512855
+0.3661087866108792 0.942363483982128 0.3661087866108792 0.9423634839821279 0.24265856733742044
+0.3682008368200842 0.938973100686959 0.3682008368200842 0.938973100686959 0.24378971485111692
+0.3702928870292892 0.9355827173917901 0.3702928870292892 0.9355827173917902 0.24457625780335082
+0.3723849372384942 0.9321923340966212 0.3723849372384942 0.9321923340966212 0.24501414942320965
+0.3744769874476992 0.9288019508014522 0.3744769874476992 0.9288019508014521 0.24511010261991836
+0.37656903765690425 0.9254115675062833 0.37656903765690425 0.9254115675062833 0.2448817030478935
+0.3786610878661093 0.9220211842111143 0.37866108786610925 0.9220211842111145 0.24435725070213285
+0.38075313807531425 0.9186308009159454 0.38075313807531425 0.9186308009159454 0.24357530194291924
+0.3828451882845193 0.9152404176207765 0.38284518828451924 0.9152404176207763 0.24258387963945252
+0.38493723849372435 0.9118500343256075 0.38493723849372435 0.9118500343256075 0.24143931856055043
+0.3870292887029294 0.9084596510304386 0.3870292887029294 0.9084596510304387 0.2402047184749936
+0.38912133891213446 0.9050692677352696 0.38912133891213446 0.9050692677352696 0.23894799113327372
+0.3912133891213395 0.9016788844401007 0.39121338912133957 0.9016788844401006 0.23773951157364523
+0.39330543933054457 0.8982885011449318 0.39330543933054457 0.8982885011449318 0.2366494200320868
+0.3953974895397495 0.8948981178497629 0.39539748953974957 0.8948981178497629 0.23574466679182257
+0.3974895397489546 0.8915077345545941 0.3974895397489546 0.891507734554594 0.2350859437884274
+0.3995815899581596 0.8881173512594251 0.3995815899581596 0.8881173512594253 0.23472469501969592
+0.4016736401673646 0.8847269679642563 0.4016736401673646 0.8847269679642563 0.23470043118477513
+0.4037656903765697 0.8813365846690874 0.4037656903765697 0.8813365846690874 0.2350385806266582
+0.4058577405857748 0.8779462013739184 0.4058577405857748 0.8779462013739184 0.23574908045120166
+0.4079497907949798 0.8745558180787495 0.4079497907949798 0.8745558180787495 0.23682584815466465
+0.4100418410041848 0.8711654347835807 0.4100418410041848 0.8711654347835808 0.2382471841761686
+0.41213389121338984 0.8677750514884117 0.4121338912133899 0.8677750514884117 0.23997705626919605
+0.4142259414225949 0.8643846681932428 0.4142259414225949 0.8643846681932427 0.2419671271220167
+0.41631799163179994 0.860994284898074 0.4163179916318 0.860994284898074 0.24415932365667745
+0.4184100418410049 0.8576039016029051 0.4184100418410049 0.8576039016029052 0.24648871835759698
+0.42050209205021 0.8542135183077363 0.42050209205021 0.8542135183077363 0.2488864989663568
+0.42259414225941505 0.8508231350125673 0.42259414225941505 0.8508231350125673 0.25128283475904617
+0.4246861924686202 0.8474327517173986 0.4246861924686202 0.8474327517173986 0.2536094937971057
+0.42677824267782577 0.8440423684222299 0.42677824267782577 0.8440423684222299 0.25580211480485954
+0.4288702928870322 0.8406519851270619 0.4288702928870322 0.8406519851270619 0.2578020811578406
+0.4309623539448336 0.8372616020047954 0.43096235394483356 0.8372616020047953 0.25955797169850797
+0.4330544392826448 0.8338712193277406 0.4330544392826448 0.8338712193277406 0.2610266208520709
+0.4351480256181646 0.8304833285465859 0.4351480256181646 0.8304833285465859 0.26216968509895394
+0.43724172347523643 0.8271007989467173 0.43724172347523643 0.8271007989467173 0.2629612731107061
+0.4393347305081994 0.8237282501382905 0.4393347305081994 0.8237282501382905 0.2633835930481399
+0.44142808694972246 0.8203690136104513 0.4414280869497224 0.8203690136104512 0.2634275917871247
+0.443522874831421 0.8170213557250857 0.443522874831421 0.8170213557250857 0.2630963982438008
+0.445610306715615 0.8136696035721084 0.445610306715615 0.8136696035721084 0.26242413830972877
+0.4477342896322356 0.8103414713721192 0.4477342896322356 0.8103414713721192 0.2613390587656467
+0.44987770856041687 0.8069722371730125 0.44987770856041687 0.8069722371730125 0.25992039832118113
+0.4518405919040486 0.8037172159013463 0.4518405919040486 0.8037172159013463 0.2584225079895366
+0.453279077061314 0.8003884201741465 0.453279077061314 0.8003884201741464 0.25769289954057184
+0.4566737281671697 0.7922530509391108 0.4566737281671697 0.7922530509391108 0.2553997678394255
+0.45865805554671596 0.7894974172815813 0.45865805554671596 0.7894974172815814 0.2529664940399235
+0.4566955360836202 0.7952595923217268 0.4566955360836202 0.7952595923217268 0.2539630212092809
+0.45660475837025005 0.7989106647542268 0.4566047583702501 0.7989106647542269 0.25235192126813405
+0.4619702286228886 0.7838133922581808 0.4619702286228886 0.7838133922581808 0.24892025370747575
+0.46198874826678216 0.7875992323409549 0.46198874826678216 0.7875992323409547 0.2470605465169937
+0.46484407665858973 0.7817646811080233 0.4648440766585898 0.7817646811080233 0.2437236074800687
+0.4677444173677825 0.7796190405955016 0.46774441736778255 0.7796190405955016 0.23815577685214404
+0.4702950023467725 0.7735540920196874 0.4702950023467725 0.7735540920196874 0.23520471522558584
+0.4706771619105528 0.7774083835693787 0.4706771619105528 0.7774083835693787 0.23217093869615926
+0.4731978176117116 0.7712117746177122 0.4731978176117116 0.7712117746177122 0.22908517010462903
+0.47605535914788116 0.7687885169384564 0.47605535914788116 0.7687885169384564 0.22273127335528056
+0.478860690432567 0.766329201125781 0.478860690432567 0.7663292011257808 0.2161387890572639
+0.48161013625882115 0.7638540963799284 0.48161013625882115 0.7638540963799284 0.20931727541072864
+0.4843127180087109 0.7613804763376307 0.48431271800871084 0.7613804763376307 0.202233403864867
+0.5042635053271886 0.7312489958438695 0.5042635053271886 0.7312489958438695 0.14266452659743553
+0.5067068634961934 0.7288228529974313 0.5067068634961934 0.7288228529974313 0.1334658791938671
+0.48693765799349986 0.7589275330137776 0.48693765799349986 0.7589275330137776 0.19498422568106563
+0.48951887284199935 0.7564756956975314 0.4895188728419994 0.7564756956975315 0.18748288888710027
+0.4920153249763554 0.7539964134315423 0.4920153249763554 0.7539964134315423 0.17990978068221272
+0.49444531094714467 0.751478582363908 0.49444531094714467 0.751478582363908 0.17223492896615655
+0.49672620583989546 0.7487816395444263 0.4967262058398955 0.7487816395444263 0.16490230052490773
+0.49897983952660807 0.746291289707676 0.49897983952660807 0.746291289707676 0.1572749819382848
+0.5013024648697613 0.7436754887511201 0.5013024648697613 0.7436754887511201 0.14916692119995442
+0.5027846097452578 0.7373417840585019 0.5027846097452578 0.7373417840585019 0.14600104216229418
+0.5037648498207794 0.7410863350167131 0.5037648498207794 0.7410863350167131 0.14025845236808088
+0.5053134155554041 0.7349020473815878 0.5053134155554041 0.7349020473815878 0.1365627776539737
+0.50952817963296 0.7202645044360998 0.50952817963296 0.7202645044360997 0.12586249863520618
+0.5090249518075822 0.7266032069435185 0.5090249518075822 0.7266032069435185 0.12485544387349277
+0.5113267688968693 0.7238070042475915 0.5113267688968693 0.7238070042475915 0.11703562905497432
+0.5123689485753852 0.7175733608357037 0.5123689485753852 0.7175733608357037 0.11616140260485495
+0.5146820305703661 0.7149855344421955 0.5146820305703662 0.7149855344421955 0.1097096491023364
+0.5396147539362417 0.6578410029349537 0.5396147539362417 0.6578410029349538 0.28091237109661443
+0.5168351028153549 0.7123461541036704 0.5168351028153549 0.7123461541036704 0.10535358697845822
+0.5189096985008699 0.7097454191191594 0.5189096985008699 0.7097454191191596 0.10308714897181907
+0.5211319275846937 0.7080496218816159 0.5211319275846937 0.7080496218816159 0.1023265113746096
+0.5221779765365302 0.7053120448692756 0.5221779765365301 0.7053120448692756 0.10468334407408841
+0.5241393863396979 0.7023530995574793 0.5241393863396979 0.7023530995574793 0.10927259045026709
+0.5261510990945614 0.6992467747677688 0.5261510990945614 0.6992467747677688 0.11685660040790742
+0.5418823694168026 0.661072774762724 0.5418823694168026 0.661072774762724 0.291314927047922
+0.528118101532942 0.6960500029241542 0.528118101532942 0.6960500029241542 0.12711363219367125
+0.5435694651064205 0.664236436379902 0.5435694651064206 0.6642364363799019 0.2969711904245082
+0.5299953944675296 0.6927988948092895 0.5299953944675296 0.6927988948092895 0.13946713750083461
+0.5419750132465119 0.6673066659638544 0.5419750132465119 0.6673066659638544 0.274163122349389
+0.5407086104261699 0.6703247979439494 0.5407086104261699 0.6703247979439494 0.2553615812245251
+0.5394393914552758 0.6734082099513795 0.5394393914552759 0.6734082099513795 0.23734906029240602
+0.5381048999154354 0.6766506297662144 0.5381048999154353 0.6766506297662144 0.21945146776784585
+0.5366782052709711 0.6798621033870803 0.5366782052709711 0.6798621033870803 0.20205961168490152
+0.5351458121808766 0.6830771300260968 0.5351458121808766 0.6830771300260968 0.18510992906625265
+0.5335198537300503 0.6863060244964049 0.5335198537300503 0.6863060244964049 0.16884923931399068
+0.5318049715504564 0.689548694324515 0.5318049715504564 0.689548694324515 0.15354159015138724
+0.5411240338333265 0.6545977569046918 0.5411240338333264 0.6545977569046918 0.3050395070525543
+0.5424797966168691 0.6514031736148147 0.5424797966168691 0.6514031736148147 0.3289721565754955
+0.5515836992825377 0.6200721229428807 0.5515836992825377 0.6200721229428807 0.5883164258389618
+0.5437519970292208 0.6482294788359136 0.5437519970292208 0.6482294788359136 0.3533737360755504
+0.5506704619766418 0.6236952291479755 0.5506704619766419 0.6236952291479755 0.5535979330078392
+0.5495049224907986 0.6291166621255355 0.5495049224907986 0.6291166621255355 0.5069748906241606
+0.5509604286464423 0.6270682177855393 0.5509604286464423 0.6270682177855393 0.535751884487084
+0.5449400217031433 0.645035847248522 0.5449400217031433 0.645035847248522 0.3783654813979842
+0.5464138449203599 0.6420980946170787 0.5464138449203598 0.6420980946170786 0.40634433091966166
+0.5475250766506224 0.6389991040749714 0.5475250766506224 0.6389991040749714 0.4326952274232992
+0.5484126529478325 0.636090836347073 0.5484126529478325 0.6360908363470729 0.4567892639233199
+0.5497183433088375 0.6325974290671584 0.5497183433088376 0.6325974290671584 0.489836428515626
+0.5716976487123872 0.6034378044750379 0.5716976487123872 0.603437804475038 0.9083210033083029
+0.5688182256586926 0.6027644898490084 0.5688182256586926 0.6027644898490084 0.8966566528383092
+0.5667998810049255 0.6046184681227286 0.5667998810049255 0.6046184681227286 0.8671812287035231
+0.5643618052648818 0.6060551884087512 0.5643618052648818 0.6060551884087512 0.835222948360368
+0.5553026348347133 0.6110492683570439 0.5553026348347133 0.6110492683570438 0.69959392273908
+0.5601564168416604 0.6080466489487493 0.5601564168416604 0.6080466489487493 0.7780528189049863
+0.5580532789219678 0.6097137887224823 0.5580532789219678 0.6097137887224823 0.7418068133597616
+0.563008495704058 0.6089400021667237 0.5630084957040581 0.6089400021667237 0.7985480883714601
+0.5562911681215746 0.6142619398926257 0.5562911681215746 0.6142619398926257 0.685379781927173
+0.5554559261707815 0.6164578085941261 0.5554559261707815 0.6164578085941262 0.6592716362832557
+0.5547799080103686 0.6196177423181997 0.5547799080103686 0.6196177423181997 0.6289213847779123
+0.5822928074937617 0.5991761216400275 0.5822928074937616 0.5991761216400276 0.9676593268164165
+0.57435048371046 0.6033557228800159 0.57435048371046 0.6033557228800159 0.9217127705998884
+0.5788599214897554 0.5999977007477919 0.5788599214897553 0.5999977007477918 0.9592210210732242
+0.5762794139328058 0.6016256922064303 0.5762794139328058 0.6016256922064303 0.9416239558936689
+0.6238851418185253 0.5757239489587359 0.6238851418185253 0.5757239489587359 0.6817120471770647
+0.6217119178072942 0.5776243925615194 0.6217119178072942 0.5776243925615194 0.7141163551536036
+0.6151526560010526 0.579775153444325 0.6151526560010526 0.5797751534443248 0.783118120025395
+0.6195821719830314 0.5799918942266282 0.6195821719830316 0.5799918942266283 0.748086094352388
+0.6141150965323822 0.5837916483711043 0.6141150965323822 0.5837916483711042 0.8144909657396234
+0.607373478148377 0.5853914325958053 0.6073734781483769 0.5853914325958053 0.8735600580157795
+0.605212311820633 0.5874749605569705 0.605212311820633 0.5874749605569705 0.8956097496712317
+0.6112068353491401 0.586417823521014 0.6112068353491401 0.586417823521014 0.848651767682227
+0.5906214652704929 0.5953666543828219 0.5906214652704929 0.5953666543828219 0.9725345405186495
+0.5851628573406441 0.5983817943843182 0.5851628573406441 0.5983817943843182 0.971323666762734
+0.5876835795854777 0.5969232083664688 0.5876835795854777 0.5969232083664688 0.9744687603796821
+0.5847915692578212 0.6008930651599702 0.5847915692578212 0.6008930651599702 0.9592495198028604
+0.5990912349801355 0.5907157804428987 0.5990912349801355 0.5907157804428987 0.9403436169113136
+0.5961050708118076 0.5929747704756314 0.5961050708118076 0.5929747704756315 0.9556400642733723
+0.5943941556356657 0.5964119489458382 0.5943941556356657 0.5964119489458382 0.9577852325487306
+0.6028888434090447 0.5920636642514732 0.6028888434090448 0.592063664251473 0.9190444351485426
+0.6050416270248689 0.5899654627267937 0.6050416270248689 0.5899654627267937 0.9023814957338769
+0.6633675723377656 0.5512005810545259 0.6633675723377656 0.5512005810545259 0.2366888964779485
+0.6577318351853109 0.5530414886315801 0.6577318351853109 0.5530414886315801 0.2697578524754923
+0.6613042746671189 0.5533262993947552 0.6613042746671188 0.5533262993947553 0.26049215760080296
+0.6555529881604115 0.5561696991781155 0.6555529881604115 0.5561696991781155 0.3055215024363469
+0.6326646141756903 0.5705825360558147 0.6326646141756903 0.5705825360558147 0.5700459322459684
+0.6304459625801692 0.5731421582507268 0.6304459625801692 0.5731421582507269 0.609240779132072
+0.6273657157677409 0.5753201911156183 0.6273657157677409 0.5753201911156182 0.6513449018434029
+0.6494855952286199 0.5594319702644716 0.6494855952286199 0.5594319702644716 0.3620998923022063
+0.653416717202338 0.5592386748671497 0.653416717202338 0.5592386748671497 0.3421422838987506
+0.6472431506756966 0.5625330973923784 0.6472431506756965 0.5625330973923784 0.4025955476149647
+0.6410277448143972 0.565457900004613 0.6410277448143972 0.565457900004613 0.465862565586691
+0.6449050104957273 0.5655567818355045 0.6449050104957273 0.5655567818355046 0.4437799092866637
+0.638690638686049 0.5682738573202983 0.638690638686049 0.5682738573202983 0.5072768204913968
+0.6363551395209639 0.5710051642550875 0.6363551395209638 0.5710051642550874 0.5479797963373577
+0.680827301291758 0.535606784212116 0.680827301291758 0.535606784212116 0.10812532606837609
+0.6758079279264263 0.5390484373955522 0.6758079279264263 0.5390484373955521 0.1284837238745199
+0.6794759453543101 0.5386590039815202 0.6794759453543101 0.5386590039815201 0.12480988650611179
+0.6743645120637167 0.5419998932045282 0.6743645120637166 0.5419998932045282 0.14827856251886687
+0.6728668827657458 0.5449397713546065 0.6728668827657458 0.5449397713546064 0.16978148822379133
+0.667540927290207 0.5481163408470762 0.667540927290207 0.5481163408470762 0.20219056377035138
+0.6712773951556559 0.5478512276946796 0.6712773951556558 0.5478512276946796 0.19286148584885446
+0.6663839675568477 0.5508630232635463 0.6663839675568477 0.5508630232635463 0.22604715645103357
+0.7008274064003127 0.5201447645694588 0.7008274064003127 0.5201447645694587 0.08229011264910195
+0.7047622744775823 0.519521308832668 0.7047622744775824 0.519521308832668 0.08677614457584402
+0.6958235091741192 0.5242487365816678 0.6958235091741192 0.5242487365816678 0.08190872611046957
+0.6995711772967327 0.5235563866717249 0.6995711772967327 0.5235563866717249 0.08577773297983239
+0.6908868713294849 0.5282057047891614 0.6908868713294849 0.5282057047891614 0.08531792998507527
+0.6858702421790689 0.5319869869828429 0.6858702421790689 0.5319869869828429 0.09372770389492642
+0.6896341007546317 0.531467802415763 0.6896341007546317 0.531467802415763 0.09498208938107587
+0.6845531178076242 0.535152216392988 0.6845531178076242 0.535152216392988 0.10700903273168194
+0.6946852797450662 0.5275935034528894 0.6946852797450661 0.5275935034528895 0.08829057395290428
+0.7190703170523505 0.5021786926160624 0.7190703170523505 0.5021786926160624 0.09365409527222307
+0.7226933682169701 0.5011328663696655 0.7226933682169702 0.5011328663696655 0.09626361182844312
+0.7263625675513891 0.5001919621042372 0.7263625675513891 0.5001919621042372 0.09861375061206214
+0.7178483522372527 0.5056569235759154 0.7178483522372527 0.5056569235759154 0.09304950055358913
+0.7165023089316541 0.5088096385859295 0.7165023089316541 0.5088096385859294 0.09260385466811762
+0.7116459305199305 0.5129320023705999 0.7116459305199304 0.5129320023705999 0.08955221237191356
+0.7149532449749043 0.5119774030072644 0.7149532449749043 0.5119774030072644 0.09229061979548775
+0.7099931687265789 0.5158609354917081 0.7099931687265789 0.5158609354917081 0.08960116102878753
+0.7085071476415535 0.518863417442314 0.7085071476415535 0.518863417442314 0.09045654045040265
+0.7312391058402794 0.49573361888403883 0.7312391058402793 0.49573361888403883 0.10161162261342414
+0.7349301641595526 0.49468856059984917 0.7349301641595526 0.49468856059984917 0.10371904610106501
+0.7300448035628557 0.4992325814355607 0.7300448035628557 0.4992325814355607 0.10076166908012417
+0.7386236903330111 0.4936721964860497 0.7386236903330111 0.4936721964860497 0.10585824774423645
+0.743446790325335 0.48946038661581126 0.743446790325335 0.4894603866158112 0.10932043838729379
+0.742291286072401 0.49277733030543014 0.742291286072401 0.4927773303054302 0.10809924356437815
+0.7510660589369199 0.48473652684513996 0.7510660589369199 0.48473652684513996 0.11539019966317678
+0.7468687427801 0.488888694593486 0.7468687427800998 0.488888694593486 0.11158358211732149
+0.7502875787872779 0.48792759962813315 0.7502875787872779 0.4879275996281331 0.1141358140279239
+0.7553761508985813 0.48037602106071264 0.7553761508985813 0.4803760210607127 0.1198858558727363
+0.7545894700297756 0.48367927594082505 0.7545894700297756 0.4836792759408251 0.11833165454061578
+0.7589561744984578 0.47926058113950654 0.7589561744984578 0.4792605811395065 0.12315540513396049
+0.762552151225676 0.4781427433539352 0.762552151225676 0.4781427433539352 0.1266577059973313
+0.7661710334138253 0.4770150230092935 0.7661710334138253 0.4770150230092935 0.13036804242723446
+0.770522750988686 0.47233008473828586 0.770522750988686 0.4723300847382859 0.1359934360211477
+0.7698265387378046 0.4758697487452686 0.7698265387378046 0.4758697487452686 0.13425611328454154
+0.7741322446274191 0.4710895695965738 0.7741322446274191 0.4710895695965737 0.1398718322115893
+0.7776373563909795 0.4697856961523094 0.7776373563909794 0.4697856961523094 0.14365259492157578
+0.781031178447916 0.4684303261839616 0.781031178447916 0.4684303261839616 0.1472854042333341
+0.7852812295316401 0.46371410475172276 0.7852812295316401 0.46371410475172276 0.15254337205854618
+0.7844538679373444 0.46719675481444733 0.7844538679373444 0.46719675481444733 0.15080190273191332
+0.7888247425648659 0.4625915687899558 0.7888247425648659 0.4625915687899558 0.15583080626276424
+0.793137010070407 0.45764687702785123 0.793137010070407 0.45764687702785123 0.16059533695497286
+0.7923142617528445 0.4613473392284518 0.7923142617528445 0.4613473392284518 0.1588873519521179
+0.7966346659455695 0.4563490314495559 0.7966346659455695 0.4563490314495559 0.16327929433891344
+0.8004256068535708 0.45528940465315865 0.8004256068535708 0.45528940465315865 0.16578794803662658
+0.8033475377858134 0.4536039902248693 0.8033475377858134 0.4536039902248693 0.16768891189132257
+0.8044939527435607 0.4512612973487647 0.8044939527435607 0.4512612973487647 0.16885420758060224
+0.8072034628896749 0.4499563794832355 0.8072034628896748 0.44995637948323547 0.1703094683874217
+0.8104168598789712 0.4478263229126578 0.8104168598789713 0.4478263229126577 0.17200717981302563
+0.8137023971745062 0.4456900787505493 0.8137023971745062 0.4456900787505493 0.17350671755772354
+0.8170203867706981 0.44355852644207755 0.8170203867706981 0.44355852644207755 0.17482961479402356
+0.8203630241767706 0.44144180653119847 0.8203630241767706 0.44144180653119847 0.17601234086255035
+0.8237234936614112 0.43933970883847645 0.8237234936614112 0.43933970883847645 0.17710315847431615
+0.8270982894703072 0.4372428719173518 0.8270982894703071 0.43724287191735184 0.1781601461085951
+0.8304825949955238 0.43514803656228995 0.8304825949955238 0.43514803656228995 0.17924226461847936
+0.8338713751585054 0.4330545883609059 0.8338713751585054 0.4330545883609059 0.18040679197919032
+0.8372616079862082 0.4309623528286151 0.8372616079862082 0.4309623528286151 0.18170650206296868
+0.8406519851270597 0.42887029288700507 0.8406519851270599 0.4288702928870051 0.1831868834952506
+0.8440423684222287 0.42677824267779996 0.8440423684222287 0.4267782426778 0.18488220835781874
+0.8474327517173976 0.42468619246859485 0.8474327517173975 0.4246861924685948 0.1868133548964204
+0.8508231350125666 0.42259414225938974 0.8508231350125666 0.42259414225938974 0.18898626024671086
+0.8542135183077355 0.42050209205018463 0.8542135183077356 0.4205020920501847 0.1913912228266952
+0.8576039016029045 0.4184100418409795 0.8576039016029045 0.41841004184097946 0.1940031683216152
+0.8609942848980734 0.4163179916317744 0.8609942848980733 0.41631799163177435 0.196782831011016
+0.8643846681932423 0.4142259414225693 0.8643846681932423 0.4142259414225693 0.1996787055279101
+0.8677750514884113 0.4121338912133642 0.8677750514884114 0.41213389121336425 0.20262956473637703
+0.8711654347835802 0.4100418410041591 0.8711654347835802 0.41004184100415914 0.20556731760583888
+0.8745558180787492 0.40794979079495397 0.874555818078749 0.4079497907949539 0.20841999318310833
+0.8779462013739181 0.40585774058574886 0.8779462013739181 0.40585774058574886 0.2111146725866588
+0.881336584669087 0.40376569037654375 0.8813365846690872 0.4037656903765438 0.21358023781990934
+0.884726967964256 0.40167364016733864 0.884726967964256 0.4016736401673386 0.21574985329161664
+0.8881173512594249 0.39958158995813353 0.8881173512594248 0.3995815899581335 0.21756313609605907
+0.8915077345545939 0.3974895397489284 0.8915077345545939 0.3974895397489284 0.2189680010627942
+0.8948981178497628 0.3953974895397233 0.8948981178497629 0.39539748953972337 0.21992218601498328
+0.8982885011449318 0.3933054393305182 0.8982885011449318 0.3933054393305182 0.22039447297701045
+0.9016788844401007 0.3912133891213131 0.9016788844401006 0.39121338912131304 0.22036562429100706
+0.9050692677352696 0.389121338912108 0.9050692677352696 0.389121338912108 0.21982905071360911
+0.9084596510304386 0.3870292887029029 0.9084596510304387 0.38702928870290293 0.21879122312418983
+0.9118500343256075 0.38493723849369776 0.9118500343256075 0.38493723849369776 0.21727183153999344
+0.9152404176207765 0.38284518828449265 0.9152404176207763 0.3828451882844926 0.21530368535794822
+0.9186308009159454 0.38075313807528754 0.9186308009159454 0.38075313807528754 0.21293233759685573
+0.9220211842111143 0.37866108786608244 0.9220211842111145 0.3786610878660825 0.21021540398013575
+0.9254115675062833 0.3765690376568773 0.9254115675062833 0.3765690376568773 0.20722153605375773
+0.9288019508014522 0.3744769874476722 0.9288019508014521 0.37447698744767216 0.20402899818229073
+0.9321923340966212 0.3723849372384671 0.9321923340966212 0.3723849372384671 0.2007237945658014
+0.9355827173917901 0.370292887029262 0.9355827173917902 0.37029288702926205 0.1973972992951503
+0.938973100686959 0.3682008368200569 0.938973100686959 0.3682008368200569 0.19414336606291324
+0.942363483982128 0.3661087866108518 0.9423634839821279 0.3661087866108517 0.19105494048672292
+0.9457538672772969 0.36401673640164667 0.9457538672772969 0.36401673640164667 0.18822027020586107
+0.9491442505724659 0.36192468619244156 0.949144250572466 0.3619246861924416 0.18571890225374824
+0.9525346338676348 0.35983263598323645 0.9525346338676348 0.35983263598323645 0.18361775928945223
+0.9559250171628038 0.35774058577403134 0.9559250171628036 0.3577405857740313 0.18196767004054085
+0.9593154004579727 0.35564853556482623 0.9593154004579727 0.35564853556482623 0.1808007620039693
+0.9627057837531416 0.3535564853556211 0.9627057837531418 0.3535564853556212 0.18012907840186146
+0.9660961670483106 0.351464435146416 0.9660961670483106 0.351464435146416 0.17994464889864617
+0.9694865503434795 0.3493723849372109 0.9694865503434794 0.34937238493721084 0.1802210465158837
+0.9728769336386485 0.3472803347280058 0.9728769336386485 0.3472803347280058 0.18091624923320412
+0.9762673169338174 0.3451882845188007 0.9762673169338175 0.34518828451880074 0.18197644976076868
+0.9796577002289864 0.34309623430959557 0.9796577002289864 0.34309623430959557 0.18334036212568686
+0.9830480835241553 0.34100418410039046 0.9830480835241552 0.3410041841003904 0.18494357078725707
+0.9864384668193242 0.33891213389118535 0.9864384668193242 0.33891213389118535 0.18672253959714571
+0.9898288501144932 0.33682008368198024 0.9898288501144933 0.3368200836819803 0.1886180101901772
+0.9932192334096621 0.33472803347277513 0.9932192334096621 0.33472803347277513 0.19057763786555681
+0.3389121338912138 0.9932192334096621 0.3389121338912138 0.9932192334096621 0.21113909950338974
+0.3410041841004188 0.9898288501144932 0.3410041841004188 0.9898288501144933 0.2124742364089646
+0.3430962343096238 0.9864384668193242 0.3430962343096238 0.9864384668193242 0.21407864192030276
+0.34518828451882894 0.9830480835241553 0.34518828451882894 0.9830480835241552 0.21593560529321312
+0.34728033472803393 0.9796577002289864 0.34728033472803393 0.9796577002289864 0.21801756224961213
+0.349372384937239 0.9762673169338174 0.349372384937239 0.9762673169338175 0.2202871923863355
+0.35146443514644404 0.9728769336386485 0.35146443514644404 0.9728769336386485 0.22269896515178197
+0.3535564853556491 0.9694865503434795 0.35355648535564915 0.9694865503434794 0.22520101466606016
+0.3556485355648541 0.9660961670483106 0.35564853556485415 0.9660961670483106 0.2277372149291901
+0.3577405857740591 0.9627057837531416 0.35774058577405915 0.9627057837531418 0.23024933393364724
+0.35983263598326415 0.9593154004579727 0.35983263598326415 0.9593154004579727 0.2326791631368518
+0.36192468619246915 0.9559250171628038 0.36192468619246915 0.9559250171628036 0.23497054211458443
+0.36401673640167415 0.9525346338676348 0.36401673640167415 0.9525346338676348 0.2370712220877658
+0.3661087866108792 0.9491442505724659 0.3661087866108792 0.949144250572466 0.23893453289468455
+0.3682008368200842 0.9457538672772969 0.3682008368200842 0.9457538672772969 0.24052083396442467
+0.3702928870292892 0.942363483982128 0.3702928870292892 0.9423634839821279 0.2417987403676167
+0.3723849372384942 0.938973100686959 0.3723849372384942 0.938973100686959 0.24274612041030472
+0.37447698744769925 0.9355827173917901 0.37447698744769925 0.9355827173917902 0.24335086230336014
+0.3765690376569042 0.9321923340966212 0.3765690376569042 0.9321923340966212 0.24361140515810123
+0.37866108786610925 0.9288019508014522 0.37866108786610925 0.9288019508014521 0.24353702490914594
+0.3807531380753143 0.9254115675062833 0.38075313807531425 0.9254115675062833 0.2431478597064778
+0.3828451882845193 0.9220211842111143 0.38284518828451924 0.9220211842111145 0.24247465285860506
+0.38493723849372435 0.9186308009159454 0.38493723849372435 0.9186308009159454 0.24155818573773338
+0.3870292887029294 0.9152404176207765 0.3870292887029294 0.9152404176207763 0.2404483696925808
+0.38912133891213446 0.9118500343256075 0.38912133891213446 0.9118500343256075 0.239202966892293
+0.3912133891213395 0.9084596510304386 0.39121338912133957 0.9084596510304387 0.23788591746291066
+0.39330543933054457 0.9050692677352696 0.39330543933054457 0.9050692677352696 0.23656526669012792
+0.3953974895397496 0.9016788844401007 0.3953974895397496 0.9016788844401006 0.23531071334038775
+0.3974895397489546 0.8982885011449319 0.3974895397489546 0.8982885011449319 0.2341908386920393
+0.3995815899581596 0.894898117849763 0.3995815899581596 0.8948981178497631 0.23327012339788636
+0.4016736401673646 0.8915077345545941 0.4016736401673646 0.891507734554594 0.23260590993226807
+0.4037656903765696 0.8881173512594251 0.4037656903765696 0.8881173512594253 0.23224551252470851
+0.4058577405857747 0.8847269679642562 0.4058577405857747 0.8847269679642561 0.2322237022919876
+0.40794979079497967 0.8813365846690874 0.40794979079497967 0.8813365846690874 0.23256079173942149
+0.4100418410041848 0.8779462013739184 0.4100418410041848 0.8779462013739184 0.23326150383225852
+0.41213389121338984 0.8745558180787495 0.4121338912133899 0.8745558180787495 0.23431473871757982
+0.4142259414225948 0.8711654347835807 0.4142259414225948 0.8711654347835808 0.23569425740060587
+0.41631799163179994 0.8677750514884117 0.4163179916318 0.8677750514884117 0.23736020426584795
+0.41841004184100494 0.8643846681932428 0.418410041841005 0.8643846681932427 0.23926130835884382
+0.42050209205021 0.860994284898074 0.42050209205021 0.860994284898074 0.2413375510278644
+0.42259414225941494 0.8576039016029051 0.422594142259415 0.8576039016029052 0.24352307045388163
+0.42468619246862005 0.8542135183077363 0.42468619246862005 0.8542135183077363 0.24574908843672752
+0.42677824267782527 0.8508231350125675 0.4267782426778252 0.8508231350125675 0.24794668202334727
+0.42887029288703077 0.847432751717399 0.42887029288703077 0.847432751717399 0.2500492704508827
+0.4309623430962373 0.8440423684222308 0.4309623430962373 0.8440423684222308 0.2519947360940844
+0.4330543933054459 0.8406519851270645 0.4330543933054459 0.8406519851270645 0.2537271400765501
+0.43514646363301596 0.8372616030671329 0.43514646363301596 0.8372616030671329 0.2551979997648633
+0.4372386944693896 0.8338713328242195 0.4372386944693896 0.8338713328242197 0.2563669379154215
+0.4393322085684277 0.8304834861541823 0.4393322085684277 0.8304834861541824 0.25719907792747426
+0.4414265468062994 0.827101758663003 0.4414265468062994 0.8271017586630031 0.2576696308504032
+0.4435202961089177 0.8237298789148083 0.4435202961089177 0.8237298789148083 0.25776512258736967
+0.44561497275888184 0.8203704319474262 0.44561497275888184 0.8203704319474262 0.2574785019948471
+0.4477145958853084 0.8170215622650119 0.44771459588530843 0.8170215622650119 0.25680996124862476
+0.44982918386933507 0.8136805704042093 0.44982918386933507 0.8136805704042093 0.25575446222580883
+0.45196648919798804 0.8103348411308973 0.45196648919798804 0.8103348411308974 0.254321547855445
+0.45413371692612714 0.8069699638736333 0.4541337169261271 0.8069699638736333 0.25252989550957833
+0.4564036108701269 0.8031917674187874 0.4564036108701269 0.8031917674187873 0.25051594691027773
+0.45958442016474155 0.7932494093014719 0.4595844201647416 0.793249409301472 0.24930005504046762
+0.46235061313761355 0.7911982350661476 0.46235061313761355 0.7911982350661476 0.24453082377437182
+0.45974527591341924 0.7969097782800488 0.45974527591341924 0.7969097782800488 0.247137653886126
+0.4599947838672201 0.8005358881007559 0.4599947838672201 0.8005358881007559 0.244718225962519
+0.46512529615574855 0.7854987399610898 0.46512529615574855 0.7854987399610898 0.241234121934336
+0.4653868984101041 0.7891916655980356 0.4653868984101041 0.7891916655980356 0.2388101925231461
+0.4680488172073189 0.7834080862227868 0.4680488172073189 0.7834080862227868 0.2354971284465038
+0.47102100446427125 0.7812635999832334 0.47102100446427125 0.7812635999832334 0.22929590952025536
+0.4736228699515119 0.7751178192536264 0.4736228699515119 0.7751178192536264 0.2258057254894115
+0.47400170928551055 0.7790710511713415 0.4740017092855106 0.7790710511713415 0.22270057226960285
+0.4765431532010988 0.7726979261596011 0.4765431532010988 0.7726979261596011 0.21917640885159195
+0.4793885739096732 0.7701379365112576 0.4793885739096732 0.7701379365112576 0.21242177957157063
+0.4821725872006873 0.7676170446020549 0.4821725872006873 0.7676170446020549 0.2054339858249942
+0.4849059925553405 0.7651164540141577 0.4849059925553405 0.7651164540141577 0.19819425345793254
+0.48757798635404676 0.7626297334567709 0.48757798635404676 0.7626297334567709 0.19074894073044713
+0.5078096840203375 0.7324344901556253 0.5078096840203375 0.7324344901556253 0.12729326538392471
+0.5102103890541535 0.7299732593472207 0.5102103890541535 0.7299732593472207 0.11865822555141294
+0.49019204799213006 0.7601399877010837 0.49019204799213006 0.7601399877010837 0.18311073226455554
+0.4927329605435972 0.7576214835062087 0.4927329605435972 0.7576214835062087 0.17536757929402538
+0.49520317575555245 0.7550717949773019 0.49520317575555245 0.7550717949773019 0.1675419703267977
+0.4976051428662154 0.7524822974103972 0.4976051428662154 0.7524822974103972 0.15966825590558967
+0.4999272863287965 0.7498771530493294 0.4999272863287965 0.7498771530493294 0.1518160663861259
+0.5022558795163117 0.7472968376163638 0.5022558795163117 0.7472968376163638 0.1436851100275142
+0.5046638789241237 0.7447407106215279 0.5046638789241237 0.7447407106215279 0.13503324615644108
+0.506328732927352 0.7385924372863116 0.506328732927352 0.7385924372863116 0.1307900485238532
+0.50720602408566 0.742249980034873 0.5072060240856598 0.742249980034873 0.12573313983260803
+0.5089287823905186 0.7361098879256908 0.5089287823905186 0.7361098879256908 0.12125435293384201
+0.5135434993802934 0.7211206571908435 0.5135434993802934 0.7211206571908435 0.11025524141752853
+0.5125667274155064 0.7273813006279729 0.5125667274155062 0.7273813006279729 0.11082323824454508
+0.51489122465484 0.7246760138986124 0.51489122465484 0.7246760138986125 0.10410888193829977
+0.5159143985426417 0.7185148078540862 0.5159143985426417 0.7185148078540862 0.10415780638596787
+0.5181284171792568 0.715954825410631 0.5181284171792568 0.715954825410631 0.10030803351605798
+0.5436388944173023 0.6577547081192326 0.5436388944173024 0.6577547081192326 0.31812290272885857
+0.5201886658387094 0.7131547728326442 0.5201886658387095 0.7131547728326443 0.09908962667975312
+0.5221300620327045 0.7108515496040588 0.5221300620327045 0.7108515496040589 0.09988651061359956
+0.5240199386741681 0.7082805333414111 0.5240199386741681 0.7082805333414112 0.10329758247214581
+0.5258043601498307 0.7056405337288748 0.5258043601498307 0.7056405337288748 0.1089175690503124
+0.5277472878911715 0.7027124573128773 0.5277472878911715 0.7027124573128773 0.11748164341435845
+0.5297907624924216 0.6995940821848297 0.5297907624924215 0.6995940821848298 0.12910153287994128
+0.5463398041894276 0.661567413165495 0.5463398041894276 0.661567413165495 0.3309224209480588
+0.5316894149801624 0.6962918640240502 0.5316894149801624 0.6962918640240502 0.14259415436768885
+0.5465233712104234 0.6648222892923068 0.5465233712104234 0.6648222892923068 0.3220556139513793
+0.5451689060774952 0.6672616265891622 0.5451689060774952 0.6672616265891622 0.3024602146961169
+0.5335354623794419 0.6929638812262994 0.5335354623794419 0.6929638812262994 0.15775294101291837
+0.5439918836639434 0.6703033798540554 0.5439918836639434 0.6703033798540554 0.2834091682924653
+0.5427597933795394 0.6734039851060412 0.5427597933795393 0.6734039851060412 0.2646229255304573
+0.541422150576084 0.6766190749912789 0.541422150576084 0.6766190749912789 0.24560952884550957
+0.5400151441804153 0.6798637339757617 0.5400151441804154 0.6798637339757617 0.22697475727438562
+0.5385370942061678 0.6831222431899479 0.5385370942061679 0.6831222431899479 0.20883919364015083
+0.5369580077059761 0.6863867683607529 0.5369580077059761 0.6863867683607529 0.1911044130409405
+0.5352891457603693 0.6896638102259214 0.5352891457603693 0.6896638102259214 0.17400097947467938
+0.5449212191893533 0.6544621464899388 0.5449212191893533 0.6544621464899388 0.3416159633984029
+0.5461672332482996 0.6512281523311255 0.5461672332482995 0.6512281523311255 0.36583629984975413
+0.5542723409482524 0.6227950700741611 0.5542723409482524 0.6227950700741611 0.6012159172152992
+0.5474111521729266 0.6480463475233615 0.5474111521729266 0.6480463475233615 0.3910843480180665
+0.5537814228763842 0.6262010753023163 0.5537814228763843 0.6262010753023163 0.5733861477960178
+0.5528270210550581 0.6298982937301192 0.552827021055058 0.6298982937301192 0.5399483214932449
+0.5486576704367602 0.6448749878007906 0.5486576704367602 0.6448749878007906 0.4174877511325436
+0.5498111045653642 0.6417602178629268 0.5498111045653643 0.6417602178629268 0.44392181736475206
+0.5507653577481226 0.638697062759358 0.5507653577481227 0.6386970627593581 0.46914112074474407
+0.551354855941913 0.6359746998806238 0.551354855941913 0.6359746998806238 0.4895141862694018
+0.5534222494487794 0.6339516134830255 0.5534222494487794 0.6339516134830255 0.5231259111078904
+0.5739720994045466 0.6057292629324061 0.5739720994045466 0.6057292629324061 0.9027265093662661
+0.5704886917625664 0.6061384716464407 0.5704886917625664 0.6061384716464407 0.8805548708382369
+0.5676658577108346 0.6076878410410904 0.5676658577108346 0.6076878410410904 0.8484756748924537
+0.5655585621753567 0.609173215248975 0.5655585621753567 0.609173215248975 0.8192959334653469
+0.5584602980381193 0.6128846322817496 0.5584602980381193 0.6128846322817497 0.7205528415419455
+0.5614791823813996 0.6116057520932879 0.5614791823813996 0.6116057520932879 0.7623896200756928
+0.5649262286968149 0.6114484897691788 0.564926228696815 0.6114484897691788 0.795688142969428
+0.5585462417872985 0.6163111518164075 0.5585462417872985 0.6163111518164075 0.6948073899256481
+0.5574945306874903 0.6186647457479052 0.5574945306874903 0.6186647457479052 0.6658766089750253
+0.5579700043680785 0.6218212040340971 0.5579700043680785 0.621821204034097 0.648818836427183
+0.5824073481934089 0.6024638078761144 0.582407348193409 0.6024638078761145 0.9497333242057219
+0.576881072229287 0.6049847101371022 0.5768810722292869 0.6049847101371021 0.9204198660121853
+0.5794722177004982 0.6037655489806084 0.5794722177004982 0.6037655489806085 0.936533307247004
+0.5762665517402177 0.6075276700933345 0.5762665517402177 0.6075276700933345 0.9003858339520081
+0.6251775310344431 0.5782097122139145 0.6251775310344431 0.5782097122139146 0.6909600955779465
+0.6229091870033867 0.5805134925746048 0.6229091870033868 0.5805134925746048 0.7252555643311122
+0.617984885402191 0.5828991013245616 0.617984885402191 0.5828991013245616 0.7791381262678203
+0.6210873285188601 0.5824914298049342 0.6210873285188601 0.5824914298049342 0.7522303997017059
+0.6172425158706809 0.585758103391221 0.6172425158706809 0.585758103391221 0.8000976645214555
+0.6148722083469916 0.5873889868372949 0.6148722083469916 0.5873889868372949 0.8254763170638423
+0.6082532063573849 0.5890426699862107 0.6082532063573849 0.5890426699862107 0.8789974678952487
+0.6124627795799821 0.5896357766510346 0.6124627795799821 0.5896357766510346 0.8512845526541227
+0.5912320960698303 0.598497914641175 0.5912320960698302 0.598497914641175 0.9617574354006276
+0.5880130672154491 0.600568289279039 0.5880130672154492 0.600568289279039 0.9596203298373506
+0.5860818684216599 0.603878522093745 0.5860818684216599 0.603878522093745 0.9451758996345249
+0.599954649063779 0.593964577281286 0.599954649063779 0.593964577281286 0.9359983127089988
+0.5976881168398234 0.5958821605794072 0.5976881168398234 0.5958821605794072 0.9452484881832162
+0.594940295426674 0.6002627169036123 0.594940295426674 0.6002627169036123 0.9473656547633097
+0.5972529515807358 0.5983559049742861 0.5972529515807358 0.5983559049742861 0.9436212718338943
+0.6037243931094859 0.595327787801724 0.6037243931094859 0.595327787801724 0.9165342233607472
+0.6068218101056085 0.5929379824175326 0.6068218101056085 0.5929379824175326 0.8966754921637019
+0.6647585633090941 0.5537093428003516 0.6647585633090941 0.5537093428003516 0.25304413365019607
+0.6594323741717276 0.5561653033800023 0.6594323741717276 0.5561653033800021 0.2908521922419088
+0.6630752047555517 0.5563667438471431 0.6630752047555517 0.5563667438471431 0.2799262416747133
+0.657460712591771 0.5592041212918072 0.657460712591771 0.5592041212918072 0.32460277418752814
+0.6339447900973123 0.5736669075803523 0.6339447900973124 0.5736669075803523 0.588306121234338
+0.6313123365750417 0.5762871359638947 0.6313123365750418 0.5762871359638947 0.6293648004293444
+0.6288130754550009 0.578777207699752 0.6288130754550009 0.578777207699752 0.6674735569224849
+0.6513166858882319 0.5625217959655561 0.6513166858882319 0.5625217959655561 0.38171804198378595
+0.6558265741981253 0.5626634471336831 0.6558265741981254 0.5626634471336831 0.3617509017093665
+0.6488255845755257 0.5656932912066035 0.6488255845755257 0.5656932912066034 0.42319430350024895
+0.6425511316232532 0.5685121202415944 0.6425511316232532 0.5685121202415945 0.48501425244637025
+0.6464394092644206 0.5686582352106999 0.6464394092644206 0.5686582352106999 0.4630773787813988
+0.6401640646013272 0.5713327560024642 0.6401640646013272 0.5713327560024642 0.5254541168282213
+0.6377089739983567 0.5741088636595223 0.6377089739983567 0.5741088636595223 0.5658334227087584
+0.6831980073029862 0.538265249209117 0.6831980073029862 0.538265249209117 0.12219836126875137
+0.6780586333138352 0.5416794995020483 0.6780586333138352 0.5416794995020483 0.1432579750446611
+0.6817824253947234 0.5413511850787226 0.6817824253947234 0.5413511850787226 0.13925438741845866
+0.6765801556939067 0.5446716139331005 0.6765801556939067 0.5446716139331005 0.16337022384995367
+0.6750516652317291 0.5476351374863975 0.6750516652317291 0.5476351374863975 0.18502333609231378
+0.6698395705392229 0.5507231498634818 0.6698395705392229 0.5507231498634818 0.21681335008877003
+0.6735055473168732 0.550562938642708 0.6735055473168732 0.5505629386427079 0.20798250691833073
+0.668357670544673 0.5535281408997984 0.668357670544673 0.5535281408997984 0.24162845517679843
+0.7032923232377469 0.5228491262729067 0.7032923232377469 0.5228491262729067 0.08930506712597376
+0.7070497939191543 0.5221348979233198 0.7070497939191543 0.5221348979233199 0.09251876134938526
+0.6984209411570194 0.5269736547577636 0.6984209411570194 0.5269736547577636 0.09122414607347595
+0.7020853036404833 0.5262469117266896 0.7020853036404833 0.5262469117266896 0.09375733897441162
+0.6934475347405589 0.5309363467342435 0.6934475347405589 0.5309363467342435 0.09671915319737427
+0.6921158020801331 0.5342338525668828 0.6921158020801331 0.5342338525668828 0.10714239151322656
+0.6883131352434027 0.5346956048977044 0.6883131352434027 0.5346956048977044 0.10676317928356795
+0.6869544457619194 0.5378706484739972 0.6869544457619194 0.5378706484739971 0.120496099811864
+0.6973280516054061 0.5303812236080478 0.697328051605406 0.5303812236080478 0.09868740210038303
+0.7214692259192803 0.5048490622977496 0.7214692259192804 0.5048490622977496 0.09569239026954134
+0.7251723154997335 0.5037143656939644 0.7251723154997335 0.5037143656939644 0.09804871113433979
+0.728847197659264 0.5027449739328728 0.728847197659264 0.5027449739328728 0.10016498237289907
+0.7203158064898931 0.5087158438728118 0.720315806489893 0.5087158438728118 0.09558679126152983
+0.7180161081300361 0.5113412786605862 0.7180161081300361 0.5113412786605862 0.0946224423070744
+0.7135992694281804 0.5152296009566506 0.7135992694281804 0.5152296009566505 0.09274331361659978
+0.7173684699292433 0.5143712078260072 0.7173684699292434 0.5143712078260072 0.09546898160657102
+0.7122040465438472 0.5183461250515868 0.7122040465438472 0.518346125051587 0.09367760296482043
+0.7107325523092188 0.5215176865932978 0.7107325523092188 0.5215176865932979 0.09536880353614878
+0.733738511813737 0.4982297860051821 0.733738511813737 0.4982297860051821 0.10282096108167744
+0.7374174287938787 0.49721634980286755 0.7374174287938787 0.4972163498028675 0.10488564968775793
+0.7325462529966806 0.5017636929704004 0.7325462529966806 0.5017636929704005 0.10217571669414116
+0.7411030722683791 0.49623295396890005 0.7411030722683791 0.49623295396890005 0.10705991923075941
+0.7459304554035046 0.49196344040591455 0.7459304554035046 0.49196344040591455 0.11049147167420943
+0.7447752510971127 0.4952938317279194 0.7447752510971127 0.49529383172791946 0.10939945017076906
+0.7537769529442278 0.48694375694357434 0.7537769529442278 0.48694375694357434 0.11698274345299632
+0.7493808584900399 0.49113408745539616 0.7493808584900399 0.49113408745539616 0.112974226446218
+0.7528916299212178 0.49019862299219974 0.7528916299212178 0.4901986229921997 0.11576681951738961
+0.7581613819239132 0.48261347067576077 0.7581613819239132 0.48261347067576077 0.12155620237113741
+0.7573370544594926 0.48592978232583944 0.7573370544594926 0.48592978232583944 0.12014817127191257
+0.7617602708730047 0.48154251770041995 0.7617602708730047 0.48154251770041995 0.12503931544663563
+0.7653857043747897 0.4804647270863453 0.7653857043747897 0.4804647270863453 0.12875310513036578
+0.7690493954799403 0.47937539614188296 0.7690493954799403 0.47937539614188296 0.13266768275649857
+0.7735122321089251 0.47469286141587924 0.7735122321089251 0.47469286141587924 0.13826253521883639
+0.7727762411693031 0.4782698130226339 0.7727762411693031 0.4782698130226339 0.13675646308444842
+0.7804213661818065 0.4720036546084202 0.7804213661818064 0.47200365460842025 0.14580718167475457
+0.7771800356581321 0.4734502109429488 0.7771800356581321 0.47345021094294887 0.14227578233170893
+0.783437522094238 0.47051040654380866 0.7834375220942381 0.47051040654380866 0.14910523140892284
+0.7830693180271571 0.4733237594324824 0.7830693180271571 0.4733237594324824 0.14822247930313576
+0.7881152107460316 0.4662113320646029 0.7881152107460316 0.4662113320646029 0.15432026663042056
+0.7870860976977242 0.4693771336707853 0.7870860976977242 0.4693771336707853 0.15277514592631755
+0.7915390628436842 0.4651522052759965 0.7915390628436842 0.4651522052759965 0.1574120157066724
+0.7957881073464289 0.46001343447925 0.7957881073464289 0.46001343447924997 0.1617091796640653
+0.7949484206448886 0.4637330513686877 0.7949484206448886 0.46373305136868764 0.16035739312072128
+0.7990594244964025 0.4590256997704349 0.7990594244964025 0.4590256997704349 0.1640369637652251
+0.8019433461693567 0.4586266574045522 0.8019433461693566 0.4586266574045522 0.16580286509160078
+0.8040217753464403 0.4565341146808951 0.8040217753464401 0.45653411468089505 0.16737162181546583
+0.8066854357466138 0.4537447951507551 0.8066854357466138 0.45374479515075505 0.1691738572436128
+0.8103237150198495 0.4518936871195627 0.8103237150198496 0.4518936871195627 0.17091444995987262
+0.813699677428909 0.4498390362106261 0.813699677428909 0.4498390362106261 0.17238150097754823
+0.8170288685928025 0.44773975497965496 0.8170288685928025 0.44773975497965496 0.17363745651342866
+0.8203703802205292 0.4456307205529859 0.8203703802205292 0.44563072055298586 0.1747341239924721
+0.8237280635663079 0.4435266325149198 0.8237280635663079 0.4435266325149198 0.17571663561631076
+0.8271005612729376 0.44142795884555514 0.8271005612729375 0.44142795884555514 0.1766382935475906
+0.8304833208808681 0.43933237130529607 0.8304833208808681 0.43933237130529607 0.17755738505398486
+0.8338715015644876 0.4372388487385199 0.8338715015644876 0.43723884873852 0.17853263452545376
+0.8372616018318908 0.4351464435146204 0.8372616018318908 0.43514644351462034 0.1796201924152644
+0.8406519851270597 0.4330543933054153 0.8406519851270599 0.43305439330541523 0.18086995909996936
+0.8440423684222287 0.4309623430962102 0.8440423684222287 0.4309623430962102 0.18232231050056577
+0.8474327517173976 0.42887029288700507 0.8474327517173975 0.4288702928870051 0.18400525582937277
+0.8508231350125666 0.42677824267779996 0.8508231350125666 0.4267782426778 0.1859325887978769
+0.8542135183077355 0.42468619246859485 0.8542135183077356 0.4246861924685948 0.1881027304075584
+0.8576039016029045 0.42259414225938974 0.8576039016029045 0.42259414225938974 0.19049852453703028
+0.8609942848980734 0.42050209205018463 0.8609942848980733 0.4205020920501847 0.19308798338222252
+0.8643846681932423 0.4184100418409795 0.8643846681932423 0.41841004184097946 0.19582588065953388
+0.8677750514884113 0.4163179916317744 0.8677750514884114 0.41631799163177435 0.1986560133920162
+0.8711654347835802 0.4142259414225693 0.8711654347835802 0.4142259414225693 0.20151391221283402
+0.8745558180787492 0.4121338912133642 0.874555818078749 0.41213389121336425 0.20432977646607356
+0.8779462013739181 0.4100418410041591 0.8779462013739181 0.41004184100415914 0.2070314362880817
+0.881336584669087 0.40794979079495397 0.8813365846690872 0.4079497907949539 0.2095471871339791
+0.884726967964256 0.40585774058574886 0.884726967964256 0.40585774058574886 0.21180839068948745
+0.8881173512594249 0.40376569037654375 0.8881173512594248 0.4037656903765438 0.21375178058438885
+0.8915077345545939 0.40167364016733864 0.8915077345545939 0.4016736401673386 0.2153214466240159
+0.8948981178497628 0.39958158995813353 0.8948981178497629 0.3995815899581335 0.2164704957462477
+0.8982885011449318 0.3974895397489284 0.8982885011449318 0.3974895397489284 0.21716240232882475
+0.9016788844401007 0.3953974895397233 0.9016788844401006 0.39539748953972337 0.21737206669800893
+0.9050692677352696 0.3933054393305182 0.9050692677352696 0.3933054393305182 0.21708660083771839
+0.9084596510304386 0.3912133891213131 0.9084596510304387 0.39121338912131304 0.21630585618350098
+0.9118500343256075 0.389121338912108 0.9118500343256075 0.389121338912108 0.21504270132476647
+0.9152404176207765 0.3870292887029029 0.9152404176207763 0.38702928870290293 0.21332304827498785
+0.9186308009159454 0.38493723849369776 0.9186308009159454 0.38493723849369776 0.21118561524133786
+0.9220211842111143 0.38284518828449265 0.9220211842111145 0.3828451882844926 0.20868140203055588
+0.9254115675062833 0.38075313807528754 0.9254115675062833 0.38075313807528754 0.20587284217112847
+0.9288019508014522 0.37866108786608244 0.9288019508014521 0.3786610878660825 0.20283258504130394
+0.9321923340966212 0.3765690376568773 0.9321923340966212 0.3765690376568773 0.19964185446430746
+0.9355827173917901 0.3744769874476722 0.9355827173917902 0.37447698744767216 0.1963883315702268
+0.938973100686959 0.3723849372384671 0.938973100686959 0.3723849372384671 0.19316352490130073
+0.942363483982128 0.370292887029262 0.9423634839821279 0.37029288702926205 0.1900596260544426
+0.9457538672772969 0.3682008368200569 0.9457538672772969 0.3682008368200569 0.18716590944135095
+0.9491442505724659 0.3661087866108518 0.949144250572466 0.3661087866108517 0.1845648198724483
+0.9525346338676348 0.36401673640164667 0.9525346338676348 0.36401673640164667 0.18232799242962694
+0.9559250171628038 0.36192468619244156 0.9559250171628036 0.3619246861924416 0.1805125445752205
+0.9593154004579727 0.35983263598323645 0.9593154004579727 0.35983263598323645 0.17915804001579502
+0.9627057837531416 0.35774058577403134 0.9627057837531418 0.3577405857740313 0.17828451596887118
+0.9660961670483106 0.35564853556482623 0.9660961670483106 0.35564853556482623 0.1778918719673138
+0.9694865503434795 0.3535564853556211 0.9694865503434794 0.3535564853556212 0.17796074731403863
+0.9728769336386485 0.351464435146416 0.9728769336386485 0.351464435146416 0.1784548030697596
+0.9762673169338174 0.3493723849372109 0.9762673169338175 0.34937238493721084 0.17932412751763846
+0.9796577002289864 0.3472803347280058 0.9796577002289864 0.3472803347280058 0.1805093512170274
+0.9830480835241553 0.3451882845188007 0.9830480835241552 0.34518828451880074 0.18194601456969703
+0.9864384668193242 0.34309623430959557 0.9864384668193242 0.34309623430959557 0.18356877191584153
+0.9898288501144932 0.34100418410039046 0.9898288501144933 0.3410041841003904 0.18531511330772935
+0.9932192334096621 0.33891213389118535 0.9932192334096621 0.33891213389118535 0.18712840264652508
+0.3430962343096238 0.9932192334096621 0.3430962343096238 0.9932192334096621 0.21218265479152063
+0.3451882845188289 0.9898288501144932 0.3451882845188288 0.9898288501144933 0.2134157216477547
+0.34728033472803393 0.9864384668193242 0.34728033472803393 0.9864384668193242 0.2149126105011617
+0.349372384937239 0.9830480835241553 0.349372384937239 0.9830480835241552 0.21665623699242523
+0.35146443514644404 0.9796577002289864 0.35146443514644404 0.9796577002289864 0.21861853916264515
+0.3535564853556491 0.9762673169338174 0.35355648535564915 0.9762673169338175 0.22076166248243045
+0.3556485355648541 0.9728769336386485 0.35564853556485415 0.9728769336386485 0.22303959421135602
+0.3577405857740591 0.9694865503434795 0.35774058577405915 0.9694865503434794 0.2254001206907883
+0.35983263598326415 0.9660961670483106 0.35983263598326415 0.9660961670483106 0.2277869738124556
+0.3619246861924691 0.9627057837531416 0.36192468619246915 0.9627057837531418 0.2301420415844074
+0.3640167364016742 0.9593154004579727 0.3640167364016742 0.9593154004579727 0.23240753734705735
+0.3661087866108792 0.9559250171628038 0.3661087866108792 0.9559250171628036 0.23452804697574928
+0.3682008368200842 0.9525346338676348 0.3682008368200842 0.9525346338676348 0.23645239829156517
+0.3702928870292892 0.9491442505724659 0.3702928870292892 0.949144250572466 0.23813531837266022
+0.3723849372384942 0.9457538672772969 0.3723849372384942 0.9457538672772969 0.23953886066743982
+0.37447698744769925 0.942363483982128 0.37447698744769925 0.9423634839821279 0.24063359428469736
+0.37656903765690425 0.938973100686959 0.37656903765690425 0.938973100686959 0.24139955300755925
+0.3786610878661093 0.9355827173917901 0.37866108786610925 0.9355827173917902 0.24182694234798338
+0.38075313807531425 0.9321923340966212 0.38075313807531425 0.9321923340966212 0.24191660038364352
+0.38284518828451936 0.9288019508014522 0.38284518828451936 0.9288019508014521 0.24168020325789993
+0.3849372384937244 0.9254115675062833 0.3849372384937244 0.9254115675062833 0.24114020011795265
+0.3870292887029294 0.9220211842111143 0.3870292887029294 0.9220211842111145 0.24032945602125597
+0.38912133891213446 0.9186308009159454 0.38912133891213446 0.9186308009159454 0.23929057625797104
+0.3912133891213395 0.9152404176207765 0.39121338912133957 0.9152404176207763 0.2380748832502644
+0.39330543933054457 0.9118500343256075 0.39330543933054457 0.9118500343256075 0.23674101972415776
+0.39539748953974957 0.9084596510304386 0.39539748953974957 0.9084596510304387 0.23535316152881738
+0.3974895397489546 0.9050692677352696 0.3974895397489546 0.9050692677352696 0.23397884255674653
+0.3995815899581596 0.9016788844401007 0.3995815899581596 0.9016788844401006 0.2326864241785668
+0.4016736401673647 0.8982885011449319 0.4016736401673647 0.8982885011449319 0.23154228213445147
+0.4037656903765696 0.894898117849763 0.4037656903765696 0.8948981178497631 0.23060783169482926
+0.4058577405857747 0.8915077345545941 0.4058577405857747 0.891507734554594 0.22993656024663167
+0.4079497907949797 0.8881173512594251 0.40794979079497967 0.8881173512594253 0.22957127507740208
+0.4100418410041848 0.8847269679642563 0.4100418410041848 0.8847269679642563 0.22954179137292838
+0.41213389121338984 0.8813365846690874 0.4121338912133899 0.8813365846690874 0.2298632716392444
+0.4142259414225949 0.8779462013739184 0.4142259414225949 0.8779462013739184 0.23053537916232889
+0.4163179916317999 0.8745558180787495 0.4163179916317999 0.8745558180787495 0.23154232967015528
+0.41841004184100483 0.8711654347835807 0.4184100418410049 0.8711654347835808 0.23285383054520634
+0.42050209205020994 0.8677750514884117 0.42050209205021 0.8677750514884117 0.2344268042224825
+0.42259414225941494 0.8643846681932428 0.422594142259415 0.8643846681932427 0.23620771955512798
+0.42468619246862 0.860994284898074 0.42468619246862 0.860994284898074 0.23813531360873363
+0.42677824267782505 0.8576039016029052 0.42677824267782505 0.8576039016029052 0.24014347938597433
+0.42887029288703027 0.8542135183077364 0.4288702928870302 0.8542135183077363 0.24216411704285914
+0.43096234309623593 0.8508231350125678 0.43096234309623593 0.8508231350125678 0.24412978692190943
+0.4330543933054425 0.8474327517173998 0.43305439330544254 0.8474327517173998 0.2459760508428975
+0.4351464435146513 0.8440423684222335 0.4351464435146513 0.8440423684222335 0.24764343422190602
+0.43723849372386486 0.8406519851270712 0.43723849372386486 0.8406519851270712 0.249078979420179
+0.4393305439330764 0.8372616018319067 0.4393305439330764 0.8372616018319067 0.250237389431528
+0.441422594142292 0.8338712185367428 0.441422594142292 0.8338712185367428 0.251081791985928
+0.4435161601973661 0.8304836000558783 0.4435161601973661 0.8304836000558783 0.25157926711976014
+0.4456105150698388 0.8271021221789355 0.4456105150698388 0.8271021221789355 0.25170867633164035
+0.447705603649075 0.8237308013404098 0.447705603649075 0.8237308013404098 0.25145693187677925
+0.44980385193679656 0.8203722967382242 0.44980385193679656 0.8203722967382242 0.2508169481608282
+0.4519121010527929 0.8170267278259392 0.4519121010527929 0.8170267278259392 0.2497826184278499
+0.4540392906100827 0.81369138952072 0.4540392906100827 0.81369138952072 0.24835015778001446
+0.4561970566197701 0.8103665953341709 0.4561970566197701 0.8103665953341709 0.24651043237759893
+0.45840549655403406 0.807066090390354 0.4584054965540341 0.807066090390354 0.2442258875527021
+0.4607853012748142 0.8040413002132842 0.46078530127481426 0.8040413002132842 0.2410721151512573
+0.46275476876599436 0.7948376199878454 0.46275476876599436 0.7948376199878454 0.24183378678823017
+0.4657439833840984 0.7928529250846372 0.4657439833840984 0.7928529250846372 0.23614039260633857
+0.46302827619388004 0.7984116832090854 0.46302827619388004 0.7984116832090854 0.2393587274333169
+0.46340483055920567 0.8017476731803337 0.4634048305592056 0.8017476731803336 0.23666720964402632
+0.4683439348865868 0.7871598130946751 0.4683439348865868 0.7871598130946751 0.23289478083647505
+0.4686942280349622 0.7908441938770162 0.4686942280349622 0.7908441938770162 0.23017006605691812
+0.47120853157919224 0.7851407263805468 0.47120853157919224 0.7851407263805469 0.2268271447382331
+0.47422895480877963 0.7829887938800274 0.47422895480877963 0.7829887938800274 0.22005808786333025
+0.477022375353425 0.7767636879840379 0.477022375353425 0.7767636879840379 0.21564753334694783
+0.477648261113298 0.7809285521216294 0.477648261113298 0.7809285521216295 0.21171741284321824
+0.47994084243897966 0.773991665640067 0.47994084243897966 0.773991665640067 0.20869044473553053
+0.48275904794900965 0.7713986781275058 0.48275904794900965 0.7713986781275058 0.20155098207225994
+0.4855173042895999 0.7688659039616278 0.4855173042895999 0.7688659039616278 0.19417674813458194
+0.48822447659357565 0.7663522187461088 0.48822447659357565 0.7663522187461088 0.18657055034922146
+0.4908756523962732 0.7638358083675043 0.4908756523962731 0.7638358083675043 0.17877311931090759
+0.5114347991363436 0.7335523536426852 0.5114347991363436 0.7335523536426852 0.11246945151378916
+0.5138143223724515 0.730938544226542 0.5138143223724515 0.730938544226542 0.10488309821582607
+0.49345797811454534 0.7612896953252402 0.49345797811454534 0.7612896953252402 0.17086356697243812
+0.49597438356250806 0.7587152269281141 0.49597438356250806 0.7587152269281141 0.16285894359281586
+0.4984341838688034 0.7561232841924643 0.4984341838688034 0.7561232841924643 0.15475412716420955
+0.500824801972058 0.7535090550747093 0.5008248019720581 0.7535090550747093 0.14664214976946566
+0.5031733332796388 0.7509008902117814 0.5031733332796388 0.7509008902117814 0.13846140036937696
+0.5055137192004855 0.7483114857868007 0.5055137192004855 0.7483114857868007 0.13014534525799534
+0.5079407180627238 0.7458246803155163 0.5079407180627237 0.7458246803155163 0.12138115551557975
+0.5099743668042684 0.7398670455052369 0.5099743668042684 0.7398670455052369 0.11564245806258273
+0.5105396133841872 0.7434467903253353 0.5105396133841872 0.7434467903253353 0.11201532923879258
+0.512711695899406 0.7373109535826978 0.512711695899406 0.7373109535826979 0.106227689996627
+0.5172193557900215 0.7220395887821777 0.5172193557900214 0.7220395887821777 0.09884545428564034
+0.5161362920640491 0.7282893015661973 0.516136292064049 0.7282893015661972 0.09862266814505821
+0.5184728395409336 0.7256327652934097 0.5184728395409336 0.7256327652934097 0.09398231099240613
+0.5195441397605266 0.7194148804629658 0.5195441397605266 0.7194148804629658 0.09570679055090725
+0.5215592587445521 0.7168395321163805 0.521559258744552 0.7168395321163805 0.09537988102420453
+0.5475993520661457 0.6574406395581964 0.5475993520661459 0.6574406395581964 0.3568395427441499
+0.5235706800294098 0.7139725718874123 0.5235706800294099 0.7139725718874123 0.09770005738468328
+0.5254955491923862 0.7115655334226684 0.5254955491923862 0.7115655334226684 0.10219005532737956
+0.5273967350824841 0.708918260491764 0.5273967350824841 0.708918260491764 0.10920245179133616
+0.5293259078321103 0.7061507052814934 0.5293259078321103 0.7061507052814934 0.1186972000049794
+0.5312719449842798 0.7032574170323985 0.5312719449842797 0.7032574170323985 0.1305341321162905
+0.550010890874437 0.6606346581391758 0.5500108908744369 0.6606346581391759 0.368629370130455
+0.5333820111030751 0.6999215628500292 0.5333820111030753 0.6999215628500292 0.14588512019042874
+0.5490624952865228 0.6638474992528598 0.549062495286523 0.6638474992528599 0.3486983877899519
+0.5353147579055645 0.6964227601496992 0.5353147579055645 0.6964227601496992 0.16244292049261919
+0.5484338225864076 0.6671264779291362 0.5484338225864076 0.667126477929136 0.33219963294146515
+0.5472592642705123 0.670197010895345 0.5472592642705124 0.670197010895345 0.3123520273793074
+0.5370909476782382 0.6930421765363325 0.5370909476782382 0.6930421765363325 0.1795016768287627
+0.5460667682394815 0.6733328452099984 0.5460667682394815 0.6733328452099984 0.2929446637540328
+0.5447614653153755 0.676555113828842 0.5447614653153755 0.676555113828842 0.2732054414484335
+0.5433929113086662 0.679818203942494 0.5433929113086662 0.679818203942494 0.25375531444804683
+0.5419337006089534 0.6831019228503886 0.5419337006089534 0.6831019228503886 0.23449448069170079
+0.5404089843173914 0.6864052936963775 0.5404089843173914 0.6864052936963775 0.21570707470280093
+0.5387863921657347 0.6897130577397443 0.5387863921657347 0.6897130577397443 0.19728208737870415
+0.5486257062424087 0.6541661477386684 0.5486257062424088 0.6541661477386684 0.3789392078598013
+0.54991645438073 0.6509606105523281 0.54991645438073 0.6509606105523281 0.40448225519365427
+0.5572392459233461 0.6256372993130268 0.5572392459233461 0.6256372993130269 0.6152494154140519
+0.5511272473213301 0.6477426531704716 0.5511272473213301 0.6477426531704716 0.430376392294428
+0.5566734759764175 0.6289457011378009 0.5566734759764175 0.6289457011378009 0.5879949955931824
+0.5562510059626702 0.6323695330041991 0.5562510059626701 0.6323695330041991 0.5627989443103926
+0.5522485874724786 0.6445403807452722 0.5522485874724786 0.6445403807452722 0.45640194027322595
+0.5532609843191211 0.6413282844030196 0.5532609843191211 0.6413282844030196 0.48245932338639236
+0.5542295875856081 0.6376473371428134 0.5542295875856081 0.6376473371428134 0.5117456497371466
+0.5561820475053536 0.6352875576901855 0.5561820475053536 0.6352875576901855 0.5450874392625327
+0.573773006902133 0.6088132630896743 0.5737730069021331 0.6088132630896742 0.8794490128092401
+0.5706941229444453 0.6099181720151396 0.5706941229444453 0.6099181720151395 0.8525613418260564
+0.5680060560242047 0.611019620793805 0.5680060560242047 0.611019620793805 0.824599754256874
+0.561309958841645 0.6154680230013991 0.5613099588416449 0.615468023001399 0.7301945231909291
+0.5644395996255318 0.6147386797627319 0.5644395996255317 0.6147386797627319 0.7659553470393586
+0.567113694360465 0.6135086727573814 0.567113694360465 0.6135086727573814 0.7982416461495159
+0.5607141489436711 0.6191200439769285 0.5607141489436711 0.6191200439769285 0.6969661649949084
+0.5600542507000869 0.6245698036790622 0.5600542507000869 0.6245698036790622 0.6518905796533544
+0.5612389668318296 0.6223564409010646 0.5612389668318296 0.6223564409010646 0.6790696264306307
+0.5828156705222777 0.6057601224343837 0.5828156705222777 0.6057601224343837 0.9317382767756818
+0.5794722191899097 0.6074863806467394 0.5794722191899097 0.6074863806467395 0.9130721029494565
+0.5771986364295532 0.6106061252054716 0.577198636429553 0.6106061252054716 0.8838900820737575
+0.6263795421013398 0.5812991268679653 0.6263795421013398 0.5812991268679654 0.7039437850613441
+0.6239109928874775 0.5837101569663931 0.6239109928874775 0.5837101569663931 0.7382653141525818
+0.6206810466019027 0.585615124051379 0.6206810466019027 0.585615124051379 0.7738002937470502
+0.6182634369272653 0.5883336389865256 0.6182634369272653 0.5883336389865256 0.8048490914818579
+0.6158136211219996 0.5903682600299206 0.6158136211219994 0.5903682600299206 0.8305124959148996
+0.6107373750940032 0.5923808157936828 0.6107373750940032 0.5923808157936828 0.870835632995609
+0.6138211903349743 0.5922422587941987 0.6138211903349743 0.5922422587941987 0.8500514586262378
+0.5917695467673905 0.6017891305023538 0.5917695467673906 0.6017891305023538 0.9499092553728703
+0.5894363688435679 0.6036214105848567 0.5894363688435679 0.6036214105848567 0.9454586159763929
+0.5863528016917241 0.6078252904941246 0.5863528016917242 0.6078252904941247 0.925606873969883
+0.588841268118603 0.6060620975743638 0.588841268118603 0.6060620975743638 0.9351582655370919
+0.5955111326342593 0.6035353203491368 0.5955111326342593 0.6035353203491368 0.9373776185878587
+0.6005661719502058 0.5977709961703566 0.6005661719502058 0.5977709961703566 0.931480386603887
+0.5987810851762027 0.6014411863759029 0.5987810851762027 0.6014411863759029 0.933486242567649
+0.6048210315024173 0.5986355500920093 0.6048210315024173 0.5986355500920092 0.9115196806537185
+0.6072938519278126 0.5965939564089501 0.6072938519278126 0.5965939564089501 0.8981201263471931
+0.6098133738166605 0.5951915199538945 0.6098133738166605 0.5951915199538945 0.8819525952556084
+0.6666518179398626 0.5563146929873182 0.6666518179398625 0.5563146929873182 0.26808013725299557
+0.6611972298408505 0.5590788732530646 0.6611972298408505 0.5590788732530646 0.3089964891787384
+0.6648704994744649 0.5590650737862315 0.6648704994744649 0.5590650737862316 0.29565069471141614
+0.6593506676741535 0.5618844458321786 0.6593506676741535 0.5618844458321784 0.33976068108479857
+0.6351795491459564 0.5768691116226851 0.6351795491459563 0.5768691116226851 0.606135245973681
+0.6325804132692635 0.579483158799451 0.6325804132692635 0.579483158799451 0.6449577956856373
+0.6300067303840947 0.5820022813909932 0.6300067303840947 0.5820022813909932 0.6817746117535907
+0.6585804188132443 0.5645147198475065 0.6585804188132443 0.5645147198475065 0.3649989365403851
+0.6528087991163081 0.5658957924273696 0.6528087991163081 0.5658957924273696 0.4041859387000773
+0.6563493660722712 0.5664649784319968 0.6563493660722712 0.5664649784319967 0.39172136078750924
+0.6503419875527914 0.5688606083329734 0.6503419875527915 0.5688606083329734 0.44283329315792314
+0.6440857218931838 0.5716017355089704 0.6440857218931838 0.5716017355089704 0.5029442576202007
+0.6479962326269233 0.5717097740582389 0.6479962326269232 0.571709774058239 0.48039547803857596
+0.6415903693528993 0.5744812144150272 0.6415903693528993 0.5744812144150272 0.5431357454145016
+0.6390197960851256 0.5772973075566037 0.6390197960851256 0.5772973075566038 0.5829949477604631
+0.6855385217480622 0.5410195229400278 0.6855385217480622 0.5410195229400278 0.1361533791630626
+0.6803137384295921 0.5444031795000285 0.6803137384295921 0.5444031795000285 0.15800776655475166
+0.6840715468211274 0.5441345110094602 0.6840715468211274 0.5441345110094602 0.15356861496858162
+0.678797255980605 0.547422047085889 0.678797255980605 0.547422047085889 0.17832671005684222
+0.6772345592341136 0.5504118950833677 0.6772345592341136 0.5504118950833677 0.2001081228379152
+0.6719617197118728 0.5534258729435181 0.6719617197118728 0.5534258729435181 0.2318486521540468
+0.6756520089040606 0.5533443110989464 0.6756520089040606 0.5533443110989466 0.2229854465489121
+0.6703119440545935 0.5562427761969619 0.6703119440545935 0.5562427761969619 0.25687689271095554
+0.7056751114452045 0.5254322464829622 0.7056751114452045 0.5254322464829623 0.09594653040848501
+0.709255003572019 0.5247086623413194 0.709255003572019 0.5247086623413194 0.0980900110943776
+0.7010244636737254 0.5298214395950378 0.7010244636737254 0.5298214395950378 0.10051863595061328
+0.7045278050324703 0.5288486165797421 0.7045278050324703 0.528848616579742 0.1012751084777009
+0.6959898006619596 0.5337690379164524 0.6959898006619597 0.5337690379164525 0.10795596886877197
+0.6945631486487934 0.537067721080079 0.6945631486487934 0.537067721080079 0.11900140933781166
+0.6907407334835379 0.5374718930902422 0.6907407334835379 0.5374718930902422 0.11949319925128911
+0.68932333290893 0.5406804235532381 0.68932333290893 0.540680423553238 0.13378022577909812
+0.6999248009997867 0.5334154832494047 0.6999248009997867 0.5334154832494047 0.10935929682738817
+0.7240298461427279 0.5071461444069493 0.724029846142728 0.5071461444069493 0.09779766885982001
+0.7276588615351237 0.5062514722837878 0.7276588615351237 0.5062514722837878 0.0998452399510058
+0.731315402725349 0.5053089020549436 0.731315402725349 0.5053089020549436 0.10177292012579307
+0.7233559569311414 0.510287278565843 0.7233559569311414 0.510287278565843 0.09806657260446261
+0.7209839869554333 0.5129174406460542 0.7209839869554333 0.5129174406460542 0.09742523387419179
+0.7159445011175936 0.5176723835898502 0.7159445011175936 0.5176723835898502 0.09633561369564415
+0.7196233726632641 0.5168009075572364 0.7196233726632641 0.5168009075572364 0.09844491647783453
+0.7144471199750478 0.5209323288681031 0.7144471199750478 0.5209323288681031 0.09786938910035553
+0.7129172907682629 0.5241126364631793 0.7129172907682629 0.5241126364631793 0.10020412810145708
+0.7362644988982004 0.50074148191894 0.7362644988982004 0.50074148191894 0.10417996629875646
+0.7399869057827704 0.49970612181639384 0.7399869057827705 0.4997061218163939 0.10628445122894782
+0.7350770198809055 0.5043221126158401 0.7350770198809055 0.5043221126158403 0.10372053523752643
+0.7436776542611468 0.4986877085307855 0.7436776542611468 0.4986877085307855 0.1085364492704065
+0.7483649267019076 0.49438786389961104 0.7483649267019076 0.49438786389961104 0.11190840677409565
+0.7473018973284993 0.49770182610065433 0.7473018973284993 0.49770182610065433 0.11097120663533645
+0.7564570494075045 0.4892309264268091 0.7564570494075045 0.4892309264268091 0.1188728695727841
+0.7519147508357991 0.49347205691726276 0.7519147508357991 0.49347205691726276 0.1146438911867954
+0.7554987043137841 0.4925299565814926 0.7554987043137841 0.4925299565814926