diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f849f64..c0227bb 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -151,8 +151,11 @@ jobs:
- name: Run container and check /health
run: |
# Start the API in the background; it will boot in degraded mode
- # since no policy is mounted, but /health should still respond.
- docker run -d --name api-smoke -p 8000:8000 food-rescue-serve:smoke
+ # since no policy is mounted and MLflow is not available in CI.
+ # FOOD_RESCUE_DISABLE_MLFLOW_REGISTRY=1 prevents hanging on MLflow connection.
+ docker run -d --name api-smoke \
+ -e FOOD_RESCUE_DISABLE_MLFLOW_REGISTRY=1 \
+ -p 8000:8000 food-rescue-serve:smoke
# Give uvicorn ~10s to come up
for i in $(seq 1 30); do
if curl -fsS http://localhost:8000/health > /dev/null; then
diff --git a/agents/dqn.py b/agents/dqn.py
index cfa24be..b4bb21c 100644
--- a/agents/dqn.py
+++ b/agents/dqn.py
@@ -84,31 +84,49 @@ def forward(self, x: torch.Tensor) -> torch.Tensor:
# -----------------------------
class ReplayBuffer:
- """Fixed-size circular buffer of (s, a, r, s', done) tuples."""
+ """Fixed-size circular buffer of (s, a, r, s', done, next_mask) tuples.
- def __init__(self, capacity: int, seed: Optional[int] = None):
+ The next_mask field is a boolean array of legal actions in the next state.
+ It enables training-time action masking in the Bellman target: we only
+ take max over valid next-state actions, so the target isn't polluted by
+ Q-values of actions the env wouldn't allow.
+
+ Older transitions stored without a mask are auto-padded to all-True for
+ backward compatibility with checkpoints / replay snapshots saved before v5.
+ """
+
+ def __init__(self, capacity: int, num_actions: int, seed: Optional[int] = None):
self._buf: deque = deque(maxlen=capacity)
self._rng = random.Random(seed)
+ self.num_actions = num_actions
def push(self, obs: np.ndarray, action: int, reward: float,
- next_obs: np.ndarray, done: bool) -> None:
- self._buf.append((obs, action, reward, next_obs, done))
+ next_obs: np.ndarray, done: bool,
+ next_mask: Optional[np.ndarray] = None) -> None:
+ self._buf.append((obs, action, reward, next_obs, done, next_mask))
def sample(self, batch_size: int) -> tuple[np.ndarray, ...]:
batch = self._rng.sample(self._buf, batch_size)
- obs, actions, rewards, next_obs, dones = zip(*batch)
+ obs, actions, rewards, next_obs, dones, next_masks = zip(*batch)
+
+ # Pad missing masks with all-True so we don't break legacy training
+ padded_masks = [
+ m if m is not None else np.ones(self.num_actions, dtype=bool)
+ for m in next_masks
+ ]
+
return (
np.stack(obs).astype(np.float32),
np.array(actions, dtype=np.int64),
np.array(rewards, dtype=np.float32),
np.stack(next_obs).astype(np.float32),
np.array(dones, dtype=np.float32),
+ np.stack(padded_masks).astype(bool),
)
def __len__(self) -> int:
return len(self._buf)
-
# -----------------------------
# DQN Agent
# -----------------------------
@@ -138,6 +156,11 @@ def __init__(
self.config = config if config is not None else DQNConfig()
self.obs_dim = obs_dim
self.num_actions = num_actions
+ self.replay = ReplayBuffer(
+ capacity=self.config.replay_buffer_size,
+ num_actions=num_actions,
+ seed=seed,
+ )
if seed is not None:
torch.manual_seed(seed)
@@ -153,7 +176,6 @@ def __init__(
self.target_net.eval()
self.optimizer = optim.Adam(self.q_net.parameters(), lr=self.config.learning_rate)
- self.replay = ReplayBuffer(self.config.replay_buffer_size, seed=seed)
self._step_count = 0 # global step counter (for target updates)
self._episode_count = 0 # for ε annealing
@@ -169,47 +191,73 @@ def epsilon(self) -> float:
return c.epsilon_start + (c.epsilon_end - c.epsilon_start) * progress
def select_action(self, env: FoodRescueEnv, obs: np.ndarray) -> int:
+ # Get action mask from env (or use all-valid if env doesn't support it,
+ # to maintain backward compat with older code paths)
+ if hasattr(env, "action_mask"):
+ mask = env.action_mask()
+ else:
+ mask = np.ones(self.num_actions, dtype=bool)
+
+ valid_actions = np.flatnonzero(mask)
+
eps = self.epsilon() if self._training else 0.0
if self._training and self._np_rng.random() < eps:
- return int(self._np_rng.integers(0, self.num_actions))
+ # Random exploration, but only among valid actions
+ return int(self._np_rng.choice(valid_actions))
with torch.no_grad():
obs_t = torch.from_numpy(obs.astype(np.float32)).unsqueeze(0).to(self.device)
q_values = self.q_net(obs_t).squeeze(0).cpu().numpy()
- # Random tie-breaking
- max_val = q_values.max()
- best = np.flatnonzero(q_values == max_val)
- return int(self._np_rng.choice(best))
+ # Mask out invalid actions by setting their Q-values to -inf
+ masked_q = np.where(mask, q_values, -np.inf)
+
+ # Random tie-breaking among the best valid actions
+ max_val = masked_q.max()
+ best = np.flatnonzero(masked_q == max_val)
+ return int(self._np_rng.choice(best))
# ---- Training ----
- def store_transition(self, obs, action, reward, next_obs, done) -> None:
- self.replay.push(obs, action, reward, next_obs, done)
+ def store_transition(self, obs, action, reward, next_obs, done, next_mask=None) -> None:
+ self.replay.push(obs, action, reward, next_obs, done, next_mask)
def train_step(self) -> Optional[float]:
"""
One gradient step on a sampled batch. Returns the loss, or None if
the replay buffer is too small to train yet.
+
+ Uses action masking in the Bellman target: max_a' Q(s', a') is taken
+ only over actions that are valid in s'. This sharpens credit
+ assignment when the env has structural action constraints.
"""
if not self._training:
return None
if len(self.replay) < self.config.min_replay_to_train:
return None
- obs_b, act_b, rew_b, next_obs_b, done_b = self.replay.sample(self.config.batch_size)
+ obs_b, act_b, rew_b, next_obs_b, done_b, next_mask_b = self.replay.sample(
+ self.config.batch_size
+ )
obs_t = torch.from_numpy(obs_b).to(self.device)
act_t = torch.from_numpy(act_b).to(self.device)
rew_t = torch.from_numpy(rew_b).to(self.device)
next_obs_t = torch.from_numpy(next_obs_b).to(self.device)
done_t = torch.from_numpy(done_b).to(self.device)
+ # Convert mask to a float tensor that we'll use to set invalid Q-values
+ # to a very negative number before taking the max.
+ next_mask_t = torch.from_numpy(next_mask_b).to(self.device)
# Current Q(s, a)
q_pred = self.q_net(obs_t).gather(1, act_t.unsqueeze(1)).squeeze(1)
- # Bootstrap target: r + gamma * max_a' Q_target(s', a'), zeroed at terminal
+ # Bootstrap target: r + gamma * max_a' Q_target(s', a'), masked.
+ # Invalid actions get -1e9 so they never win the argmax.
with torch.no_grad():
- q_next_max = self.target_net(next_obs_t).max(dim=1).values
+ q_next = self.target_net(next_obs_t)
+ # Where mask is False, replace Q with -inf (very negative float).
+ q_next_masked = q_next.masked_fill(~next_mask_t, -1e9)
+ q_next_max = q_next_masked.max(dim=1).values
target = rew_t + self.config.discount * q_next_max * (1.0 - done_t)
loss = nn.functional.smooth_l1_loss(q_pred, target)
@@ -219,6 +267,7 @@ def train_step(self) -> Optional[float]:
torch.nn.utils.clip_grad_norm_(self.q_net.parameters(), self.config.grad_clip)
self.optimizer.step()
+ # Periodic target network sync
self._step_count += 1
if self._step_count % self.config.target_update_interval == 0:
self.target_net.load_state_dict(self.q_net.state_dict())
diff --git a/api/policy_loader.py b/api/policy_loader.py
index c774566..4683cf4 100644
--- a/api/policy_loader.py
+++ b/api/policy_loader.py
@@ -5,8 +5,9 @@
1. From the MLflow Model Registry (production-style): set
FOOD_RESCUE_MODEL_NAME and FOOD_RESCUE_MODEL_VERSION env vars
-2. From a local file path: set FOOD_RESCUE_MODEL_PATH
-3. Built-in default: look for experiments/policies/dqn_tuned.pt
+2. From the MLflow Model Registry defaults: food_rescue_dqn @ latest
+3. From a local file path: set FOOD_RESCUE_MODEL_PATH
+4. Built-in fallback: look for experiments/policies/dqn_v5_masked.pt
(or any DQN policy file in that folder)
Only DQN policies are supported for serving — they take an obs vector directly,
@@ -66,7 +67,11 @@ def _load_from_mlflow_registry(
# Download the artifact directory
local_dir = mlflow.artifacts.download_artifacts(source_uri)
- return _load_dqn_from_dir(Path(local_dir), source=f"mlflow:{model_name}:{version}")
+ agent, info = _load_dqn_from_dir(Path(local_dir), source=f"mlflow:{model_name}:{version}")
+ # Override the cosmetic fields so /info reflects the real registry version
+ info["model_name"] = model_name
+ info["model_version"] = str(version)
+ return agent, info
def _load_from_path(path: str) -> tuple[DQNAgent, dict[str, Any]]:
@@ -129,7 +134,10 @@ def load_policy_from_env() -> tuple[DQNAgent, dict[str, Any]]:
Resolution order:
1. FOOD_RESCUE_MODEL_NAME + FOOD_RESCUE_MODEL_VERSION -> MLflow Registry
2. FOOD_RESCUE_MODEL_PATH -> local file or directory
- 3. Default: experiments/policies/dqn_tuned.pt or dqn_v1.pt
+ 3. Default MLflow Registry model food_rescue_dqn @ latest (skipped if unavailable)
+ 4. Local DQN fallback files
+
+ Raises FileNotFoundError if no policy can be loaded via any method.
"""
model_name = os.environ.get("FOOD_RESCUE_MODEL_NAME")
model_version = os.environ.get("FOOD_RESCUE_MODEL_VERSION")
@@ -141,18 +149,30 @@ def load_policy_from_env() -> tuple[DQNAgent, dict[str, Any]]:
if model_path:
return _load_from_path(model_path)
- # Fallback: look for any DQN policy
+ # Try MLflow registry default, but don't fail if it's unavailable (e.g., CI environment)
+ # Can be disabled entirely with FOOD_RESCUE_DISABLE_MLFLOW_REGISTRY=1
+ if not os.environ.get("FOOD_RESCUE_DISABLE_MLFLOW_REGISTRY"):
+ try:
+ return _load_from_mlflow_registry("food_rescue_dqn", "latest")
+ except Exception as e:
+ print(f" MLflow registry not available ({type(e).__name__}), trying local fallback...")
+ else:
+ print(" MLflow registry disabled via FOOD_RESCUE_DISABLE_MLFLOW_REGISTRY")
+
+ # Fallback: look for any DQN policy on local disk
candidates = [
+ Path("experiments/policies/dqn_v5_masked.pt"),
Path("experiments/policies/dqn_tuned.pt"),
Path("experiments/policies/dqn_v3_normalized.pt"),
]
for c in candidates:
if c.exists():
+ print(f" Found local policy: {c}")
return _load_from_path(str(c))
raise FileNotFoundError(
- "No policy could be loaded. Set FOOD_RESCUE_MODEL_NAME + "
- "FOOD_RESCUE_MODEL_VERSION (for MLflow registry), or "
- "FOOD_RESCUE_MODEL_PATH (for local file), or place a DQN policy at "
- "experiments/policies/dqn_tuned.pt or dqn_v1.pt."
+ "No policy could be loaded. Please set one of:\n"
+ " - FOOD_RESCUE_MODEL_NAME + FOOD_RESCUE_MODEL_VERSION (MLflow registry)\n"
+ " - FOOD_RESCUE_MODEL_PATH (local file or directory)\n"
+ " - Place a DQN policy at experiments/policies/dqn_v5_masked.pt or similar"
)
diff --git a/configs/dqn_v4_dense.yaml b/configs/dqn_v4_dense.yaml
new file mode 100644
index 0000000..855c4c5
--- /dev/null
+++ b/configs/dqn_v4_dense.yaml
@@ -0,0 +1,59 @@
+run:
+ run_id: dqn_v4_dense
+ agent: dqn
+ scenario: weekday
+ num_episodes: 1500
+ seed: 42
+ output_dir: experiments
+ description: |
+ v4: dense pickup signal + γ back to 0.95 + higher ε floor.
+
+ Diagnosis of v3 (see scripts/eval_dqn_in_python.py output):
+ - Q-values collapsed to a flat ~18-20 across all 11 actions
+ - Average q-spread per step: 1.19 (healthy is 5-15)
+ - Step 0 Q-values identical across 5 different random seeds
+ - Model treated every action as equally good; survived only by
+ env forgiveness and random tie-breaking
+ - Root cause: γ=0.99 with sparse delivery-only reward smoothed
+ value across all states; the network learned ONE mean value
+
+ v4 fixes:
+ - Add pickup reward (dense intermediate signal at 0.2 per unit
+ loaded). Breaks the value-smoothing symmetry — picking up at a
+ donor with food is now a learnable positive event, not just a
+ precursor to delivery.
+ - γ=0.95 (was 0.99). Preserves discrimination between near-term
+ and far-term consequences. With 200-step episodes, γ=0.95
+ values reward 14 steps out at ~50% — appropriate horizon.
+ - ε_end=0.10 (was 0.02). Keep exploring throughout training;
+ model needs to discover non-greedy good actions.
+ - min_replay_to_train=1000 (was 5000). Start learning sooner.
+
+agent_params:
+ hidden_sizes: [128, 128]
+ learning_rate: 0.0005
+ discount: 0.95
+ epsilon_start: 1.0
+ epsilon_end: 0.10
+ epsilon_decay_episodes: 1200
+ replay_buffer_size: 100000
+ batch_size: 64
+ min_replay_to_train: 1000
+ target_update_interval: 500
+ grad_clip: 1.0
+ device: auto
+
+# Normalized scale (delivery=1, not 10) keeps DQN TD targets bounded.
+# New pickup reward gives the dense intermediate signal v3 was missing.
+reward_weights:
+ delivery: 1.0
+ pickup: 0.2
+ spoilage: 0.5
+ distance: 0.01
+ unmet_demand: 0.1
+ priority_bonus: 0.05
+ oversupply_penalty: 0.03
+
+eval:
+ n_episodes: 5
+ eval_seeds: [100, 101, 102, 103, 104]
diff --git a/configs/dqn_v5_masked.yaml b/configs/dqn_v5_masked.yaml
new file mode 100644
index 0000000..48a7973
--- /dev/null
+++ b/configs/dqn_v5_masked.yaml
@@ -0,0 +1,51 @@
+run:
+ run_id: dqn_v5_masked
+ agent: dqn
+ scenario: weekday
+ num_episodes: 1500
+ seed: 42
+ output_dir: experiments
+ description: |
+ v5: DQN with full training-time action masking.
+
+ Diagnosis of v4: pickup reward alone didn't break the flat-Q problem.
+ Inference-time masking on v4 (no retraining) lifted delivered from 75
+ to 85, proving the constraint mattered. But Q-values stayed flat
+ (spread 1.16) because training itself was polluted: the agent spent
+ many episodes taking actions the env would convert to idle.
+
+ v5 fixes:
+ - Action mask consulted during action selection (already in v4 at
+ inference; now also at training-time exploration)
+ - Bellman target uses max_a' Q(s', a') taken only over a' valid in s'
+ - Replay buffer stores next_state mask alongside each transition
+
+ Hyperparameters unchanged from v4 to make the comparison clean —
+ the only variable is masking. Any improvement is attributable to it.
+
+agent_params:
+ hidden_sizes: [128, 128]
+ learning_rate: 0.0005
+ discount: 0.95
+ epsilon_start: 1.0
+ epsilon_end: 0.10
+ epsilon_decay_episodes: 1200
+ replay_buffer_size: 100000
+ batch_size: 64
+ min_replay_to_train: 1000
+ target_update_interval: 500
+ grad_clip: 1.0
+ device: auto
+
+reward_weights:
+ delivery: 1.0
+ pickup: 0.2
+ spoilage: 0.5
+ distance: 0.01
+ unmet_demand: 0.1
+ priority_bonus: 0.05
+ oversupply_penalty: 0.03
+
+eval:
+ n_episodes: 5
+ eval_seeds: [100, 101, 102, 103, 104]
diff --git a/experiments/policies/dqn_v4_dense.meta.json b/experiments/policies/dqn_v4_dense.meta.json
new file mode 100644
index 0000000..318b64f
--- /dev/null
+++ b/experiments/policies/dqn_v4_dense.meta.json
@@ -0,0 +1,23 @@
+{
+ "config": {
+ "hidden_sizes": [
+ 128,
+ 128
+ ],
+ "learning_rate": 0.0005,
+ "discount": 0.95,
+ "epsilon_start": 1.0,
+ "epsilon_end": 0.1,
+ "epsilon_decay_episodes": 1200,
+ "replay_buffer_size": 100000,
+ "batch_size": 64,
+ "min_replay_to_train": 1000,
+ "target_update_interval": 500,
+ "grad_clip": 1.0,
+ "device": "auto"
+ },
+ "obs_dim": 31,
+ "num_actions": 11,
+ "step_count": 299001,
+ "episode_count": 1500
+}
\ No newline at end of file
diff --git a/experiments/policies/dqn_v4_dense.pt b/experiments/policies/dqn_v4_dense.pt
new file mode 100644
index 0000000..141f012
Binary files /dev/null and b/experiments/policies/dqn_v4_dense.pt differ
diff --git a/experiments/policies/dqn_v5_masked.meta.json b/experiments/policies/dqn_v5_masked.meta.json
new file mode 100644
index 0000000..318b64f
--- /dev/null
+++ b/experiments/policies/dqn_v5_masked.meta.json
@@ -0,0 +1,23 @@
+{
+ "config": {
+ "hidden_sizes": [
+ 128,
+ 128
+ ],
+ "learning_rate": 0.0005,
+ "discount": 0.95,
+ "epsilon_start": 1.0,
+ "epsilon_end": 0.1,
+ "epsilon_decay_episodes": 1200,
+ "replay_buffer_size": 100000,
+ "batch_size": 64,
+ "min_replay_to_train": 1000,
+ "target_update_interval": 500,
+ "grad_clip": 1.0,
+ "device": "auto"
+ },
+ "obs_dim": 31,
+ "num_actions": 11,
+ "step_count": 299001,
+ "episode_count": 1500
+}
\ No newline at end of file
diff --git a/experiments/policies/dqn_v5_masked.pt b/experiments/policies/dqn_v5_masked.pt
new file mode 100644
index 0000000..a7fac19
Binary files /dev/null and b/experiments/policies/dqn_v5_masked.pt differ
diff --git a/experiments/prediction_log.db b/experiments/prediction_log.db
index d403d3c..b6f3b80 100644
Binary files a/experiments/prediction_log.db and b/experiments/prediction_log.db differ
diff --git a/experiments/results/dqn_v4_dense.csv b/experiments/results/dqn_v4_dense.csv
new file mode 100644
index 0000000..2c103da
--- /dev/null
+++ b/experiments/results/dqn_v4_dense.csv
@@ -0,0 +1,1501 @@
+episode,total_reward,steps,epsilon,replay_size,mean_loss,delivered_units,spoiled_units,deliveries_count,distance
+0,-159.53100000000003,200,0.99925,200,0.0,6.0,359.0,1,178
+1,-159.7755999999999,200,0.9985,400,0.0,10.0,357.0,2,177
+2,-123.27720000000002,200,0.99775,600,0.0,25.0,313.0,7,177
+3,-193.89359999999996,200,0.997,800,0.0,0.0,391.0,0,175
+4,-161.77040000000014,200,0.99625,1000,0.8608203530311584,0.0,335.0,0,176
+5,-83.65180000000001,200,0.9955,1200,0.6887676227092743,22.0,231.0,5,178
+6,-149.3818,200,0.99475,1400,0.6640902449190617,9.0,331.0,2,171
+7,-137.8296,200,0.994,1600,0.6539507790654898,11.0,320.0,2,182
+8,-179.50420000000005,200,0.99325,1800,0.6529592133313418,6.0,372.0,1,183
+9,-137.657,200,0.9925,2000,0.6678806897997857,7.0,305.0,1,174
+10,-128.90580000000006,200,0.99175,2200,0.6254155810177326,12.0,293.0,2,179
+11,-158.84159999999994,200,0.991,2400,0.6150782965868712,0.0,326.0,0,184
+12,-161.70759999999999,200,0.99025,2600,0.6226393391937017,13.0,354.0,3,175
+13,-159.65820000000005,200,0.9895,2800,0.6094430965185166,2.0,326.0,1,179
+14,-142.42079999999996,200,0.98875,3000,0.6251111087948084,18.0,336.0,4,179
+15,-161.81879999999995,200,0.988,3200,0.6251673173904418,9.0,358.0,2,176
+16,-152.60439999999997,200,0.98725,3400,0.6303588412702084,5.0,320.0,1,173
+17,-135.95459999999994,200,0.9865,3600,0.596940286308527,0.0,276.0,0,181
+18,-132.01560000000006,200,0.98575,3800,0.5966099449992179,0.0,262.0,0,180
+19,-122.92979999999996,200,0.985,4000,0.5791653046756983,17.0,290.0,2,184
+20,-157.00499999999997,200,0.98425,4200,0.6081209681928158,0.0,334.0,0,177
+21,-131.3792,200,0.9835,4400,0.5939411807060242,17.0,334.0,4,174
+22,-123.6698,200,0.98275,4600,0.593469287455082,12.0,300.0,2,182
+23,-134.7216,200,0.982,4800,0.5914494799822569,17.0,333.0,4,167
+24,-122.75339999999989,200,0.98125,5000,0.5990192935615778,0.0,266.0,0,179
+25,-81.6988,200,0.9805,5200,0.5971714606881142,17.0,223.0,2,184
+26,-94.49719999999999,200,0.97975,5400,0.575966135263443,9.0,217.0,2,177
+27,-85.77979999999998,200,0.979,5600,0.574726570174098,17.0,229.0,1,176
+28,-124.73819999999999,200,0.97825,5800,0.5425729340314865,12.0,278.0,3,180
+29,-139.409,200,0.9775,6000,0.5376959811151028,4.0,305.0,1,184
+30,-124.6528,200,0.97675,6200,0.5587126253545285,20.0,303.0,4,173
+31,-169.75880000000004,200,0.976,6400,0.5629205202311277,0.0,342.0,0,181
+32,-96.76719999999995,200,0.97525,6600,0.5518585508316756,20.0,260.0,5,172
+33,-175.71960000000004,200,0.9745,6800,0.5437536036968231,0.0,358.0,0,179
+34,-137.6806,200,0.97375,7000,0.5350421224534512,4.0,301.0,1,176
+35,-135.3498,200,0.973,7200,0.5238680526614189,4.0,307.0,1,181
+36,-53.80100000000001,200,0.97225,7400,0.5264521089941263,36.0,203.0,5,170
+37,-140.3266,200,0.9715,7600,0.5199705830216408,28.0,366.0,6,177
+38,-179.03280000000004,200,0.97075,7800,0.5218867671489715,0.0,368.0,0,173
+39,-110.19439999999996,200,0.97,8000,0.5344300822913647,7.0,266.0,3,175
+40,-135.19819999999999,200,0.96925,8200,0.5105789981037379,15.0,326.0,5,179
+41,-182.58220000000017,200,0.9685,8400,0.5265495567023755,0.0,370.0,0,174
+42,-158.9268,200,0.96775,8600,0.5156604527682066,5.0,336.0,2,172
+43,-177.00039999999993,200,0.967,8800,0.5092881787568331,0.0,363.0,0,177
+44,-169.3552,200,0.96625,9000,0.5090735741704703,7.0,368.0,1,173
+45,-149.7834,200,0.9655,9200,0.540997186973691,15.0,361.0,3,178
+46,-152.0548,200,0.96475,9400,0.5304026965796947,3.0,341.0,1,177
+47,-127.12779999999992,200,0.964,9600,0.5132436848431826,17.0,307.0,3,174
+48,-141.23360000000002,200,0.96325,9800,0.5356006478518247,1.0,293.0,1,175
+49,-142.70560000000003,200,0.9625,10000,0.5272066029906273,0.0,289.0,0,184
+50,-154.42000000000007,200,0.96175,10200,0.5175718525797128,0.0,315.0,0,178
+51,-110.20439999999996,200,0.961,10400,0.525378257110715,0.0,255.0,0,184
+52,-165.21599999999998,200,0.96025,10600,0.5339602275937796,16.0,382.0,4,180
+53,-167.27179999999984,200,0.9595,10800,0.5456509713083506,0.0,335.0,0,169
+54,-147.78440000000003,200,0.95875,11000,0.5162452608346939,16.0,351.0,2,174
+55,-131.15919999999994,200,0.958,11200,0.5182933781296015,0.0,272.0,0,184
+56,-137.09440000000006,200,0.95725,11400,0.5064024967700242,0.0,285.0,0,170
+57,-99.3702,200,0.9565,11600,0.5002929364144802,49.0,341.0,10,177
+58,-156.31819999999996,200,0.95575,11800,0.5039441902190447,0.0,325.0,0,171
+59,-128.24560000000002,200,0.955,12000,0.5183858150243759,10.0,285.0,2,181
+60,-172.2734,200,0.95425,12200,0.5100191742181778,0.0,377.0,0,170
+61,-159.41479999999999,200,0.9535,12400,0.5076100265979767,0.0,338.0,0,178
+62,-127.5544,200,0.95275,12600,0.4965913973748684,0.0,256.0,0,180
+63,-178.6833999999999,200,0.952,12800,0.5181049181520939,0.0,356.0,0,183
+64,-130.33459999999994,200,0.95125,13000,0.5058133871108293,7.0,282.0,2,176
+65,-162.72200000000004,200,0.9505,13200,0.49417821936309336,9.0,357.0,2,178
+66,-140.27979999999997,200,0.94975,13400,0.5009821676462889,15.0,328.0,3,173
+67,-133.9196,200,0.949,13600,0.5082203684002161,9.0,305.0,3,184
+68,-118.53939999999993,200,0.94825,13800,0.5222529742866755,31.0,328.0,7,177
+69,-82.53399999999996,200,0.9475,14000,0.5157758628576994,36.0,263.0,5,172
+70,-103.7224,200,0.94675,14200,0.5177373292297125,32.0,310.0,6,174
+71,-132.8092,200,0.946,14400,0.504613238722086,20.0,333.0,4,179
+72,-117.7924,200,0.94525,14600,0.5046536201238632,6.0,262.0,1,171
+73,-137.05480000000009,200,0.9445,14800,0.499304146245122,0.0,287.0,0,177
+74,-125.62119999999994,200,0.94375,15000,0.5061666961759329,0.0,254.0,0,178
+75,-135.49499999999995,200,0.943,15200,0.5115330585837364,14.0,312.0,4,182
+76,-128.84219999999993,200,0.94225,15400,0.5086422011256218,5.0,275.0,1,177
+77,-147.94840000000002,200,0.9415,15600,0.5071011493355035,4.0,318.0,1,174
+78,-138.67520000000005,200,0.94075,15800,0.5025928261131049,5.0,312.0,1,178
+79,-144.2208,200,0.94,16000,0.4967206336557865,20.0,344.0,4,178
+80,-96.59019999999998,200,0.93925,16200,0.4942345109581947,9.0,232.0,2,175
+81,-162.7982,200,0.9385,16400,0.497323240339756,0.0,335.0,0,178
+82,-155.20159999999996,200,0.93775,16600,0.4941839238256216,7.0,345.0,2,184
+83,-124.88119999999999,200,0.9369999999999999,16800,0.49382623851299284,22.0,320.0,4,177
+84,-159.39439999999996,200,0.93625,17000,0.5094106321036815,4.0,354.0,2,184
+85,-105.31579999999997,200,0.9355,17200,0.4910699901729822,20.0,270.0,4,180
+86,-111.69699999999993,200,0.93475,17400,0.5020867922902107,3.0,244.0,1,183
+87,-166.8946,200,0.9339999999999999,17600,0.4949809889495373,5.0,357.0,1,177
+88,-186.84659999999985,200,0.93325,17800,0.5039583610743285,0.0,377.0,0,180
+89,-121.40959999999994,200,0.9325,18000,0.49861043706536295,3.0,261.0,1,180
+90,-172.94579999999993,200,0.93175,18200,0.48411380395293235,7.0,373.0,2,179
+91,-161.76740000000004,200,0.931,18400,0.4994890207052231,7.0,349.0,2,180
+92,-160.70719999999994,200,0.93025,18600,0.48971266150474546,0.0,332.0,0,171
+93,-88.57860000000002,200,0.9295,18800,0.4891544004529715,26.0,259.0,7,170
+94,-112.80639999999994,200,0.92875,19000,0.48737077169120313,7.0,253.0,1,178
+95,-109.99439999999998,200,0.9279999999999999,19200,0.5302584224194288,6.0,236.0,1,177
+96,-152.19580000000002,200,0.92725,19400,0.4952570892870426,0.0,310.0,0,181
+97,-124.4286,200,0.9265,19600,0.5043910998851061,4.0,272.0,1,177
+98,-127.55019999999995,200,0.92575,19800,0.4897611482441425,8.0,284.0,2,182
+99,-151.94779999999994,200,0.925,20000,0.4851012539118528,13.0,351.0,2,176
+100,-147.94479999999996,200,0.92425,20200,0.5122027548402548,0.0,314.0,0,179
+101,-173.18399999999997,200,0.9235,20400,0.48009510718286036,6.0,378.0,2,174
+102,-169.6682000000001,200,0.92275,20600,0.5208253738284111,15.0,389.0,4,178
+103,-56.85920000000002,200,0.922,20800,0.501158974096179,40.0,228.0,8,178
+104,-172.6428,200,0.92125,21000,0.49088254921138286,11.0,395.0,2,168
+105,-158.18380000000005,200,0.9205,21200,0.48750368669629096,3.0,342.0,1,180
+106,-139.826,200,0.91975,21400,0.5047871943563222,16.0,324.0,2,174
+107,-95.59160000000003,200,0.919,21600,0.5124077837914228,22.0,274.0,8,183
+108,-122.10480000000001,200,0.91825,21800,0.514461038634181,17.0,309.0,2,174
+109,-119.99259999999992,200,0.9175,22000,0.5150075453519821,11.0,275.0,2,177
+110,-138.3848,200,0.91675,22200,0.5109291926771402,25.0,349.0,7,177
+111,-165.1873999999999,200,0.916,22400,0.4928783532232046,0.0,339.0,0,184
+112,-146.10999999999993,200,0.91525,22600,0.48906894505023957,16.0,342.0,4,178
+113,-163.24099999999999,200,0.9145,22800,0.4904431176930666,8.0,353.0,1,186
+114,-125.06199999999997,200,0.91375,23000,0.48693119645118715,3.0,269.0,1,180
+115,-119.35160000000003,200,0.913,23200,0.48651071786880495,20.0,315.0,3,182
+116,-161.21980000000002,200,0.91225,23400,0.4865003468841314,3.0,342.0,1,169
+117,-140.74360000000001,200,0.9115,23600,0.5029334256798029,0.0,289.0,0,182
+118,-131.11519999999996,200,0.91075,23800,0.5119088088721037,15.0,307.0,3,172
+119,-76.6822,200,0.91,24000,0.4871825709939003,10.0,184.0,3,177
+120,-143.45679999999993,200,0.90925,24200,0.4791324464976788,7.0,326.0,2,177
+121,-154.29339999999996,200,0.9085,24400,0.5050202062726021,0.0,322.0,0,171
+122,-131.68419999999998,200,0.9077500000000001,24600,0.4854502598941326,12.0,303.0,2,180
+123,-103.25639999999999,200,0.907,24800,0.47883855864405633,7.0,239.0,2,170
+124,-136.33380000000002,200,0.90625,25000,0.48710437446832655,25.0,343.0,5,172
+125,-136.1538,200,0.9055,25200,0.4981309648603201,0.0,294.0,0,175
+126,-127.91300000000001,200,0.9047499999999999,25400,0.48674115233123305,17.0,311.0,3,179
+127,-118.03799999999993,200,0.904,25600,0.4816984145343304,19.0,297.0,4,174
+128,-104.35679999999996,200,0.90325,25800,0.5161728775501251,0.0,221.0,0,177
+129,-115.0906,200,0.9025,26000,0.4905762048065662,27.0,306.0,6,178
+130,-125.41339999999997,200,0.90175,26200,0.5040911318361759,15.0,301.0,4,169
+131,-137.05500000000006,200,0.901,26400,0.5028536231815814,8.0,316.0,3,178
+132,-92.3144,200,0.90025,26600,0.5028970501571893,14.0,236.0,2,173
+133,-141.83279999999996,200,0.8995,26800,0.527548234835267,23.0,349.0,5,178
+134,-107.52599999999998,200,0.8987499999999999,27000,0.5089684787392617,14.0,262.0,7,171
+135,-133.02900000000002,200,0.898,27200,0.5284070420265198,15.0,323.0,3,183
+136,-142.585,200,0.89725,27400,0.515028510838747,10.0,323.0,2,170
+137,-131.45219999999998,200,0.8965,27600,0.5210844944417476,33.0,354.0,7,176
+138,-113.42239999999994,200,0.89575,27800,0.5165644983202219,12.0,274.0,2,176
+139,-113.18820000000001,200,0.895,28000,0.5073727521300316,33.0,332.0,8,186
+140,-30.13399999999998,200,0.89425,28200,0.5162930299341678,44.0,179.0,7,179
+141,-136.90319999999994,200,0.8935,28400,0.49553149051964285,8.0,295.0,2,184
+142,-83.0098,200,0.8927499999999999,28600,0.5074951109290123,18.0,219.0,3,180
+143,-123.42859999999996,200,0.892,28800,0.4799841707199812,21.0,313.0,7,177
+144,-130.1672,200,0.89125,29000,0.5010517611354589,15.0,313.0,3,172
+145,-137.07699999999997,200,0.8905,29200,0.4978829101473093,6.0,297.0,1,176
+146,-164.87499999999997,200,0.88975,29400,0.49704149555414917,17.0,384.0,4,169
+147,-158.46320000000003,200,0.889,29600,0.5006395594030618,13.0,372.0,3,175
+148,-172.89440000000002,200,0.88825,29800,0.5045398832112551,3.0,378.0,1,163
+149,-123.99539999999999,200,0.8875,30000,0.4860621150583029,28.0,341.0,5,176
+150,-89.85439999999998,200,0.88675,30200,0.5032175788283348,35.0,283.0,9,176
+151,-61.61779999999997,200,0.886,30400,0.5187788760662079,32.0,227.0,10,172
+152,-204.41519999999994,200,0.88525,30600,0.5121306004375219,0.0,434.0,0,188
+153,-157.35799999999995,200,0.8845000000000001,30800,0.5364587631076574,6.0,346.0,3,180
+154,-162.28740000000008,200,0.88375,31000,0.5151027148962021,0.0,335.0,1,175
+155,-107.73999999999997,200,0.883,31200,0.496780626103282,31.0,308.0,7,179
+156,-120.98559999999998,200,0.88225,31400,0.49461274951696393,18.0,293.0,4,178
+157,-114.819,200,0.8815,31600,0.5063225328922272,14.0,267.0,4,174
+158,-159.3086,200,0.88075,31800,0.5145773920416832,6.0,356.0,2,187
+159,-138.41219999999998,200,0.88,32000,0.5132395882159472,12.0,315.0,2,176
+160,-82.924,200,0.87925,32200,0.5089562437683344,18.0,209.0,5,176
+161,-92.27620000000003,200,0.8785,32400,0.4841751027107239,21.0,260.0,3,176
+162,-149.36800000000005,200,0.87775,32600,0.49997632056474683,21.0,367.0,4,174
+163,-135.93880000000001,200,0.877,32800,0.49997823089361193,0.0,308.0,0,183
+164,-120.48480000000004,200,0.87625,33000,0.513526326417923,0.0,239.0,0,174
+165,-101.92779999999996,200,0.8755,33200,0.5063671439141035,22.0,279.0,4,172
+166,-129.93959999999998,200,0.87475,33400,0.48387782633304594,26.0,331.0,4,177
+167,-84.2338,200,0.874,33600,0.5072908236831427,37.0,292.0,15,173
+168,-141.98039999999992,200,0.87325,33800,0.5048532220721245,0.0,303.0,0,180
+169,-145.23020000000005,200,0.8725,34000,0.5055826509743929,19.0,346.0,3,183
+170,-123.1362,200,0.87175,34200,0.5080710892379284,6.0,280.0,1,178
+171,-138.13,200,0.871,34400,0.5154408058524131,6.0,305.0,2,172
+172,-113.52420000000001,200,0.87025,34600,0.5096778127551079,22.0,298.0,5,176
+173,-118.65159999999995,200,0.8694999999999999,34800,0.5050853453576565,2.0,259.0,1,180
+174,-121.27799999999998,200,0.86875,35000,0.5016996216028928,16.0,298.0,3,172
+175,-123.96680000000003,200,0.868,35200,0.49656113028526305,13.0,294.0,5,171
+176,-165.61520000000004,200,0.86725,35400,0.4888960254192352,4.0,368.0,1,175
+177,-113.24139999999998,200,0.8665,35600,0.4977844773977995,19.0,305.0,3,175
+178,-94.47380000000004,200,0.86575,35800,0.5001507800072431,27.0,276.0,6,185
+179,-89.69939999999998,200,0.865,36000,0.5001212419569492,19.0,246.0,5,182
+180,-123.1068,200,0.86425,36200,0.4625058340281248,7.0,270.0,1,178
+181,-127.65500000000002,200,0.8634999999999999,36400,0.4914265277981758,14.0,304.0,3,179
+182,-161.41219999999998,200,0.86275,36600,0.5041170459985733,18.0,381.0,4,175
+183,-106.18379999999996,200,0.862,36800,0.5092712733149528,20.0,276.0,6,174
+184,-149.71699999999996,200,0.86125,37000,0.4901745194941759,0.0,318.0,0,176
+185,-88.97059999999998,200,0.8605,37200,0.48324602387845517,22.0,260.0,7,162
+186,-142.436,200,0.85975,37400,0.5053136107325554,0.0,282.0,0,173
+187,-114.72319999999998,200,0.859,37600,0.4949937214702368,34.0,338.0,10,177
+188,-99.79499999999999,200,0.85825,37800,0.4944967520236969,14.0,239.0,2,180
+189,-85.32800000000002,200,0.8575,38000,0.5226736854761839,41.0,305.0,12,178
+190,-168.7054,200,0.85675,38200,0.49248089242726567,7.0,371.0,1,177
+191,-112.69879999999995,200,0.856,38400,0.5073001836240292,7.0,278.0,1,179
+192,-196.1527999999999,200,0.8552500000000001,38600,0.5033447666466236,4.0,410.0,1,179
+193,-132.1724,200,0.8545,38800,0.5101766000688076,3.0,313.0,3,169
+194,-76.61299999999999,200,0.85375,39000,0.4979062908142805,32.0,237.0,8,176
+195,-111.68799999999999,200,0.853,39200,0.5203018900007009,24.0,303.0,4,183
+196,-111.186,200,0.85225,39400,0.4847759582102299,22.0,294.0,5,183
+197,-69.74439999999997,200,0.8514999999999999,39600,0.5015841548144817,37.0,247.0,7,174
+198,-170.289,200,0.85075,39800,0.4815849274396896,12.0,390.0,4,186
+199,-100.12519999999998,200,0.85,40000,0.4970025458931923,26.0,280.0,6,176
+200,-73.15860000000005,200,0.84925,40200,0.5061202135682106,46.0,268.0,9,180
+201,-115.71499999999997,200,0.8485,40400,0.5184606742858887,29.0,323.0,6,180
+202,-157.6816,200,0.84775,40600,0.4969318976998329,0.0,322.0,0,173
+203,-113.927,200,0.847,40800,0.508577728047967,6.0,262.0,1,178
+204,-68.61859999999999,200,0.84625,41000,0.5108433754742145,47.0,273.0,10,174
+205,-126.34819999999998,200,0.8455,41200,0.4792377398908138,5.0,280.0,3,178
+206,-119.28040000000006,200,0.84475,41400,0.5148367315530777,29.0,333.0,8,182
+207,-108.02699999999999,200,0.844,41600,0.5165644624084235,24.0,291.0,4,176
+208,-124.60499999999996,200,0.84325,41800,0.5071502144634724,15.0,300.0,5,179
+209,-117.93559999999997,200,0.8425,42000,0.513142817094922,10.0,280.0,2,169
+210,-140.54160000000002,200,0.84175,42200,0.4948134737461805,21.0,345.0,4,171
+211,-164.32140000000004,200,0.841,42400,0.5053635907918215,11.0,373.0,3,184
+212,-104.78699999999999,200,0.8402499999999999,42600,0.4791196594387293,31.0,294.0,5,179
+213,-121.45120000000007,200,0.8395,42800,0.5181376326829195,3.0,269.0,1,180
+214,-72.71079999999999,200,0.83875,43000,0.5026906384527683,44.0,279.0,8,182
+215,-90.83380000000004,200,0.838,43200,0.5132812132686376,15.0,231.0,4,180
+216,-144.4122,200,0.83725,43400,0.5014252464473248,36.0,404.0,7,173
+217,-161.2418000000001,200,0.8365,43600,0.5053750690072775,29.0,389.0,5,179
+218,-125.04059999999997,200,0.83575,43800,0.5108233313262462,4.0,267.0,1,176
+219,-133.75419999999997,200,0.835,44000,0.5211794255673885,4.0,298.0,1,174
+220,-131.86759999999998,200,0.8342499999999999,44200,0.5115920477360487,19.0,312.0,3,177
+221,-77.58139999999999,200,0.8335,44400,0.4962129671126604,40.0,271.0,9,160
+222,-187.20820000000003,200,0.83275,44600,0.5167784351110458,0.0,397.0,0,171
+223,-152.1036,200,0.832,44800,0.5176556399464607,15.0,372.0,3,171
+224,-132.94060000000005,200,0.83125,45000,0.49669838838279246,24.0,354.0,9,170
+225,-126.8942,200,0.8305,45200,0.5292435573786497,10.0,280.0,2,175
+226,-99.85579999999997,200,0.82975,45400,0.4991346380114555,19.0,261.0,4,183
+227,-133.70279999999997,200,0.829,45600,0.5036975625902415,34.0,363.0,10,177
+228,-109.15900000000005,200,0.82825,45800,0.5266236282140017,12.0,252.0,2,175
+229,-81.8526,200,0.8275,46000,0.5090872021764516,12.0,200.0,2,175
+230,-147.4596,200,0.82675,46200,0.4993305906653404,0.0,299.0,0,172
+231,-162.5194,200,0.8260000000000001,46400,0.5230118253827095,0.0,331.0,0,173
+232,-118.11460000000001,200,0.82525,46600,0.5195492362231016,14.0,288.0,7,178
+233,-151.2644,200,0.8245,46800,0.5080845522135496,13.0,340.0,2,178
+234,-90.85719999999998,200,0.82375,47000,0.5256061634421348,28.0,270.0,7,174
+235,-144.5986,200,0.823,47200,0.5210330075025559,15.0,342.0,3,183
+236,-121.42300000000003,200,0.8222499999999999,47400,0.5064236775785684,23.0,311.0,5,175
+237,-136.23080000000002,200,0.8215,47600,0.49255568385124204,12.0,320.0,3,180
+238,-81.1248,200,0.82075,47800,0.5181431061029435,25.0,252.0,11,171
+239,-114.0372,200,0.82,48000,0.49615817964076997,17.0,285.0,3,176
+240,-89.39299999999997,200,0.81925,48200,0.4974988275021315,33.0,271.0,10,175
+241,-132.48779999999996,200,0.8185,48400,0.5334911139309406,27.0,338.0,5,183
+242,-138.93959999999993,200,0.81775,48600,0.5062676163762808,11.0,316.0,3,182
+243,-68.7756,200,0.817,48800,0.5203488072752953,47.0,272.0,8,169
+244,-155.13580000000007,200,0.81625,49000,0.519622301235795,8.0,360.0,2,174
+245,-162.26299999999995,200,0.8155,49200,0.5159599218517542,0.0,337.0,0,174
+246,-90.01739999999997,200,0.81475,49400,0.5068774642050267,18.0,229.0,3,171
+247,-94.84839999999998,200,0.8140000000000001,49600,0.5082179195433855,22.0,265.0,4,176
+248,-96.06479999999995,200,0.81325,49800,0.5126222905516624,16.0,257.0,4,165
+249,-130.804,200,0.8125,50000,0.5182045068591833,21.0,327.0,4,172
+250,-131.0064,200,0.81175,50200,0.48934755004942415,19.0,327.0,4,167
+251,-121.87500000000004,200,0.8109999999999999,50400,0.5021289436519146,9.0,275.0,3,170
+252,-113.23979999999997,200,0.81025,50600,0.5230012346059084,13.0,264.0,2,170
+253,-70.2732,200,0.8095,50800,0.48839734323322775,40.0,258.0,13,175
+254,-62.86179999999999,200,0.80875,51000,0.49176857739686963,50.0,274.0,15,174
+255,-115.94919999999996,200,0.808,51200,0.5065286408364773,39.0,354.0,8,176
+256,-110.33780000000009,200,0.80725,51400,0.4996141538023949,28.0,308.0,11,180
+257,-79.4286,200,0.8065,51600,0.5058349440246821,28.0,250.0,6,168
+258,-140.40780000000007,200,0.80575,51800,0.5058986016362905,16.0,344.0,4,166
+259,-105.10140000000004,200,0.8049999999999999,52000,0.5140052311867476,14.0,274.0,3,172
+260,-88.32299999999998,200,0.80425,52200,0.5143662995100021,23.0,243.0,5,173
+261,-88.28979999999999,200,0.8035,52400,0.518715622201562,24.0,252.0,6,173
+262,-87.54479999999997,200,0.80275,52600,0.5150534395128489,16.0,223.0,3,168
+263,-111.28420000000003,200,0.802,52800,0.5303185652196407,19.0,289.0,4,175
+264,-153.12699999999992,200,0.80125,53000,0.4932360881567001,9.0,345.0,2,179
+265,-72.8026,200,0.8005,53200,0.5085135004669428,32.0,233.0,7,174
+266,-105.1212,200,0.79975,53400,0.5169980321079493,20.0,270.0,3,176
+267,-125.79800000000004,200,0.7989999999999999,53600,0.5040984684228897,30.0,344.0,5,168
+268,-118.46280000000002,200,0.79825,53800,0.5069163621962071,35.0,338.0,7,171
+269,-95.56140000000008,200,0.7975,54000,0.5167757435888052,36.0,286.0,9,179
+270,-104.01979999999999,200,0.79675,54200,0.5318156043440103,29.0,304.0,7,180
+271,-121.89719999999996,200,0.796,54400,0.5259362395107746,8.0,289.0,2,165
+272,-112.49639999999995,200,0.79525,54600,0.5271455818787217,17.0,309.0,4,177
+273,-101.107,200,0.7945,54800,0.5173067442327738,19.0,274.0,5,168
+274,-102.71499999999997,200,0.79375,55000,0.49837898030877115,24.0,281.0,3,186
+275,-123.66299999999997,200,0.7929999999999999,55200,0.5127016853541135,9.0,276.0,2,168
+276,-114.05019999999999,200,0.79225,55400,0.5247716511040926,28.0,306.0,5,183
+277,-143.86359999999996,200,0.7915,55600,0.5405958876758814,19.0,359.0,4,172
+278,-144.2831999999999,200,0.79075,55800,0.5000825679302215,12.0,334.0,2,175
+279,-87.79279999999997,200,0.79,56000,0.5216079154610633,25.0,260.0,6,176
+280,-119.83160000000002,200,0.78925,56200,0.545035204179585,30.0,332.0,6,183
+281,-95.09739999999998,200,0.7885,56400,0.4952313257008791,33.0,284.0,8,170
+282,-133.49220000000003,200,0.78775,56600,0.5133905392885209,19.0,329.0,6,176
+283,-126.64099999999998,200,0.787,56800,0.5183563353121281,10.0,283.0,2,169
+284,-84.6458,200,0.78625,57000,0.5208495201170444,34.0,259.0,6,175
+285,-51.32899999999997,200,0.7855,57200,0.5316558425873518,46.0,225.0,10,176
+286,-95.5944,200,0.7847500000000001,57400,0.5322732251137495,15.0,235.0,3,173
+287,-73.40619999999996,200,0.784,57600,0.531803871691227,25.0,218.0,5,163
+288,-144.37760000000006,200,0.78325,57800,0.5141054788231849,24.0,360.0,5,169
+289,-110.61659999999998,200,0.7825,58000,0.5332685165852308,31.0,301.0,5,170
+290,-68.905,200,0.78175,58200,0.5312812103331089,24.0,197.0,5,176
+291,-160.56839999999997,200,0.7809999999999999,58400,0.5174075002968311,10.0,360.0,2,171
+292,-130.05240000000003,200,0.78025,58600,0.49569097377359866,11.0,304.0,2,175
+293,-97.11419999999994,200,0.7795,58800,0.5055831979215145,11.0,230.0,2,185
+294,-184.72639999999996,200,0.77875,59000,0.506504996046424,0.0,404.0,0,175
+295,-82.30899999999998,200,0.778,59200,0.5092078042030335,19.0,231.0,5,176
+296,-91.62760000000003,200,0.77725,59400,0.5103396771848202,31.0,275.0,6,176
+297,-111.02979999999998,200,0.7765,59600,0.49822076559066775,11.0,274.0,3,170
+298,-91.09639999999997,200,0.7757499999999999,59800,0.5147391029447317,37.0,290.0,9,175
+299,-80.02699999999999,200,0.775,60000,0.530212239548564,30.0,248.0,8,170
+300,-105.20680000000003,200,0.77425,60200,0.5299085964262485,38.0,304.0,7,165
+301,-86.76019999999998,200,0.7735000000000001,60400,0.5186320301145315,33.0,275.0,9,174
+302,-138.3772,200,0.77275,60600,0.5082292044907808,6.0,320.0,1,178
+303,-87.54119999999996,200,0.772,60800,0.5169427504390478,35.0,293.0,9,180
+304,-90.23560000000002,200,0.77125,61000,0.5266120606660842,31.0,268.0,10,184
+305,-97.75079999999996,200,0.7705,61200,0.5011445759236812,12.0,239.0,3,166
+306,-118.66960000000003,200,0.7697499999999999,61400,0.5257622706145049,13.0,290.0,3,175
+307,-67.15499999999999,200,0.769,61600,0.5170229192823171,37.0,255.0,7,171
+308,-102.65619999999997,200,0.76825,61800,0.48738334693014623,33.0,304.0,9,174
+309,-104.23159999999997,200,0.7675,62000,0.5054172426462173,17.0,262.0,6,174
+310,-141.1082,200,0.76675,62200,0.5033586350083351,12.0,339.0,3,171
+311,-128.3816,200,0.766,62400,0.5019769365340472,13.0,297.0,2,176
+312,-139.61939999999996,200,0.76525,62600,0.5265916660428047,7.0,304.0,1,179
+313,-117.87680000000003,200,0.7645,62800,0.5327863404899835,17.0,295.0,4,169
+314,-80.0148,200,0.7637499999999999,63000,0.5093438009917736,35.0,269.0,8,180
+315,-109.15719999999997,200,0.763,63200,0.5365998668968678,42.0,339.0,7,165
+316,-96.981,200,0.76225,63400,0.5456551933288574,33.0,288.0,6,175
+317,-114.32119999999998,200,0.7615,63600,0.5362075604498386,24.0,317.0,7,167
+318,-98.17439999999993,200,0.76075,63800,0.5315942529588937,32.0,289.0,7,172
+319,-117.3918,200,0.76,64000,0.5372757951915265,28.0,316.0,9,171
+320,-79.2702,200,0.75925,64200,0.5188997587561608,29.0,234.0,7,174
+321,-98.965,200,0.7585,64400,0.5078949018567801,25.0,292.0,8,175
+322,-114.99080000000001,200,0.75775,64600,0.5408814986050129,36.0,330.0,9,173
+323,-108.0526,200,0.757,64800,0.5384061536937952,11.0,248.0,3,176
+324,-51.27980000000002,200,0.75625,65000,0.5485340201854706,53.0,253.0,12,171
+325,-109.1486,200,0.7555000000000001,65200,0.5351976679265499,7.0,254.0,1,181
+326,-147.8952,200,0.75475,65400,0.5359319899976254,4.0,322.0,1,174
+327,-68.6558,200,0.754,65600,0.5397483737021684,49.0,287.0,9,181
+328,-92.83740000000002,200,0.75325,65800,0.5548541224002839,27.0,263.0,5,176
+329,-107.71240000000004,200,0.7525,66000,0.5470491015911102,31.0,302.0,6,178
+330,-109.8748,200,0.75175,66200,0.5585575157403946,18.0,278.0,5,180
+331,-103.09599999999995,200,0.751,66400,0.5354720599204302,21.0,276.0,4,173
+332,-93.08680000000003,200,0.75025,66600,0.5433482280373574,39.0,296.0,9,167
+333,-146.89000000000004,200,0.7495,66800,0.5482427959144115,18.0,355.0,5,175
+334,-128.2244,200,0.74875,67000,0.545754411444068,22.0,318.0,5,160
+335,-181.85760000000002,200,0.748,67200,0.5341668294370174,8.0,391.0,2,172
+336,-74.75200000000002,200,0.74725,67400,0.5360195488482714,33.0,241.0,6,177
+337,-83.235,200,0.7464999999999999,67600,0.5498973025381565,18.0,218.0,3,180
+338,-118.31479999999993,200,0.74575,67800,0.5532922696322202,12.0,291.0,3,176
+339,-80.97420000000001,200,0.745,68000,0.5344582182914018,28.0,241.0,5,171
+340,-74.71279999999999,200,0.74425,68200,0.531076468154788,45.0,273.0,9,184
+341,-63.64700000000001,200,0.7435,68400,0.5304279896616936,18.0,194.0,8,174
+342,-125.2174,200,0.74275,68600,0.521778554469347,17.0,308.0,3,178
+343,-101.52739999999994,200,0.742,68800,0.5386102107167244,27.0,286.0,6,179
+344,-104.40239999999997,200,0.74125,69000,0.5320823526382447,21.0,287.0,6,181
+345,-143.1154,200,0.7404999999999999,69200,0.5334701083600522,16.0,341.0,4,176
+346,-78.49160000000005,200,0.7397499999999999,69400,0.5406422786414623,27.0,222.0,5,170
+347,-132.74039999999997,200,0.739,69600,0.5392056821286678,4.0,291.0,1,177
+348,-61.27180000000002,200,0.7382500000000001,69800,0.569618388414383,37.0,242.0,9,180
+349,-118.18199999999997,200,0.7375,70000,0.5393239186704158,22.0,329.0,10,166
+350,-130.51199999999997,200,0.73675,70200,0.592327728420496,22.0,322.0,4,171
+351,-106.63919999999996,200,0.736,70400,0.5788473001122475,24.0,292.0,6,169
+352,-106.28320000000005,200,0.73525,70600,0.5629808836430311,18.0,260.0,4,182
+353,-152.70139999999995,200,0.7344999999999999,70800,0.5614722634106875,2.0,325.0,1,169
+354,-100.02340000000007,200,0.73375,71000,0.5803876905143261,29.0,276.0,7,179
+355,-144.83540000000002,200,0.733,71200,0.5552113237977028,12.0,324.0,2,165
+356,-78.73619999999997,200,0.7322500000000001,71400,0.5549593470990658,51.0,301.0,10,168
+357,-54.793199999999985,200,0.7315,71600,0.5681958527117967,37.0,219.0,13,178
+358,-91.27860000000005,200,0.73075,71800,0.5732372096925974,37.0,290.0,6,176
+359,-97.55420000000007,200,0.73,72000,0.5566775906085968,25.0,273.0,3,173
+360,-117.7544,200,0.72925,72200,0.6021310314536095,12.0,273.0,3,173
+361,-87.86659999999998,200,0.7284999999999999,72400,0.5965507204830647,47.0,314.0,8,167
+362,-111.38780000000003,200,0.72775,72600,0.5858691672980786,27.0,300.0,6,182
+363,-56.67119999999998,200,0.727,72800,0.5899744461476802,35.0,216.0,10,179
+364,-89.74179999999997,200,0.7262500000000001,73000,0.5985780438035726,20.0,250.0,6,180
+365,-105.34739999999996,200,0.7255,73200,0.6630790737271309,19.0,277.0,5,180
+366,-80.12260000000002,200,0.72475,73400,0.6374049943685531,40.0,266.0,7,171
+367,-74.76079999999997,200,0.724,73600,0.6071907006204128,15.0,200.0,3,171
+368,-134.22699999999998,200,0.72325,73800,0.5723147028684616,17.0,313.0,4,176
+369,-92.799,200,0.7224999999999999,74000,0.5766639176011086,42.0,303.0,8,170
+370,-95.82319999999997,200,0.72175,74200,0.6083126516640186,29.0,275.0,9,167
+371,-71.45480000000002,200,0.721,74400,0.620553380921483,38.0,248.0,8,184
+372,-137.31440000000006,200,0.7202500000000001,74600,0.6294751546531916,21.0,344.0,6,182
+373,-54.51860000000001,200,0.7195,74800,0.6336381003260613,43.0,231.0,9,165
+374,-98.5034,200,0.71875,75000,0.6312381148338317,23.0,267.0,8,192
+375,-121.43319999999996,200,0.718,75200,0.5844947925209999,32.0,332.0,7,170
+376,-83.46420000000003,200,0.7172499999999999,75400,0.5736109846830368,24.0,250.0,6,180
+377,-59.99419999999999,200,0.7164999999999999,75600,0.6139607231318951,46.0,243.0,10,181
+378,-120.959,200,0.71575,75800,0.6143703903257847,27.0,314.0,5,178
+379,-77.46679999999998,200,0.7150000000000001,76000,0.608573839366436,42.0,274.0,9,179
+380,-119.19639999999998,200,0.71425,76200,0.7187354271113873,34.0,350.0,9,174
+381,-69.04519999999998,200,0.7135,76400,0.6964440008997917,39.0,260.0,9,178
+382,-95.3128,200,0.71275,76600,0.7108114399015903,33.0,297.0,11,183
+383,-73.60099999999997,200,0.712,76800,0.6767129592597485,38.0,262.0,9,171
+384,-98.1502,200,0.7112499999999999,77000,0.6798666372895241,35.0,305.0,8,176
+385,-83.2712,200,0.7105,77200,0.7144162377715111,32.0,268.0,5,163
+386,-50.60480000000001,200,0.70975,77400,0.7378072956204415,60.0,268.0,10,169
+387,-122.99999999999999,200,0.7090000000000001,77600,0.6999555407464504,15.0,307.0,3,180
+388,-122.58239999999994,200,0.70825,77800,0.6792598749697208,22.0,312.0,5,178
+389,-164.02720000000002,200,0.7075,78000,0.6843639689683915,15.0,386.0,6,170
+390,-74.24239999999999,200,0.70675,78200,0.6138330732285976,28.0,232.0,5,185
+391,-138.81440000000006,200,0.706,78400,0.6039132881164551,14.0,330.0,5,177
+392,-152.37060000000005,200,0.7052499999999999,78600,0.6328120765089988,15.0,355.0,2,173
+393,-103.88519999999998,200,0.7045,78800,0.6572723281383515,29.0,294.0,8,184
+394,-102.45319999999997,200,0.70375,79000,0.6567311082780362,27.0,293.0,6,185
+395,-92.69159999999995,200,0.703,79200,0.6981745047867298,25.0,260.0,5,177
+396,-60.519999999999996,200,0.70225,79400,0.7098814688622952,48.0,266.0,10,184
+397,-69.74860000000001,200,0.7015,79600,0.7185747040808201,35.0,247.0,12,184
+398,-116.34799999999998,200,0.70075,79800,0.7550538001954555,25.0,311.0,6,166
+399,-120.6738,200,0.7,80000,0.729429829120636,23.0,306.0,7,174
+400,-99.87960000000004,200,0.6992499999999999,80200,0.6222363379597664,20.0,253.0,5,174
+401,-69.0962,200,0.6984999999999999,80400,0.6396031132340432,43.0,275.0,16,177
+402,-83.2278,200,0.69775,80600,0.6288671129196882,21.0,230.0,8,182
+403,-128.21,200,0.6970000000000001,80800,0.6407611110806465,39.0,385.0,9,173
+404,-112.45180000000002,200,0.69625,81000,0.6291575093567371,36.0,330.0,7,181
+405,-87.44660000000005,200,0.6955,81200,0.6575422471016645,44.0,304.0,8,172
+406,-77.20519999999996,200,0.69475,81400,0.6652048054337502,33.0,249.0,11,167
+407,-90.80739999999996,200,0.694,81600,0.6924165911227464,22.0,250.0,4,176
+408,-110.70339999999999,200,0.6932499999999999,81800,0.7004169833660125,38.0,324.0,8,179
+409,-72.67739999999998,200,0.6925,82000,0.7067952336370945,44.0,275.0,10,175
+410,-117.97680000000008,200,0.69175,82200,0.6906316396594048,23.0,304.0,11,173
+411,-97.21480000000001,200,0.6910000000000001,82400,0.7212777796387673,36.0,309.0,8,176
+412,-68.77819999999998,200,0.69025,82600,0.6832103015482426,22.0,201.0,6,177
+413,-129.09959999999998,200,0.6895,82800,0.7044438499212266,15.0,311.0,3,178
+414,-106.76019999999998,200,0.68875,83000,0.7027362991869449,34.0,312.0,6,175
+415,-41.12180000000002,200,0.688,83200,0.6647567884624004,53.0,237.0,12,175
+416,-100.4802,200,0.68725,83400,0.668382648229599,21.0,263.0,7,182
+417,-102.43699999999995,200,0.6865,83600,0.7003010006248951,40.0,318.0,9,166
+418,-84.83260000000001,200,0.68575,83800,0.7438964739441871,29.0,255.0,6,178
+419,-56.051199999999966,200,0.685,84000,0.7491636684536934,36.0,206.0,9,171
+420,-99.30019999999996,200,0.68425,84200,0.6491026486456394,45.0,334.0,13,179
+421,-130.92819999999995,200,0.6835,84400,0.6481881533563137,24.0,352.0,5,181
+422,-87.10459999999999,200,0.68275,84600,0.6490021508932113,41.0,298.0,13,175
+423,-116.47659999999995,200,0.6819999999999999,84800,0.637282525151968,44.0,355.0,9,176
+424,-96.58319999999999,200,0.6812499999999999,85000,0.670823178589344,21.0,260.0,4,167
+425,-77.47460000000002,200,0.6805,85200,0.679635786190629,30.0,245.0,8,178
+426,-65.77479999999997,200,0.67975,85400,0.7046377293765544,51.0,272.0,10,175
+427,-121.49140000000001,200,0.679,85600,0.6942187595367432,48.0,381.0,10,172
+428,-124.074,200,0.67825,85800,0.6492664220929146,30.0,337.0,4,171
+429,-51.16799999999998,200,0.6775,86000,0.6320593324303627,46.0,240.0,14,167
+430,-58.46679999999999,200,0.67675,86200,0.6922806464135647,44.0,239.0,10,177
+431,-44.78099999999999,200,0.6759999999999999,86400,0.706689628213644,61.0,257.0,17,177
+432,-87.51180000000001,200,0.6752499999999999,86600,0.6982647515833378,24.0,244.0,6,175
+433,-66.09279999999998,200,0.6745,86800,0.6797152104228735,41.0,257.0,7,179
+434,-80.81360000000001,200,0.6737500000000001,87000,0.686452018469572,57.0,328.0,17,179
+435,-69.62999999999997,200,0.673,87200,0.6466350182890892,30.0,225.0,5,178
+436,-54.668400000000005,200,0.67225,87400,0.6763509039580822,60.0,278.0,13,159
+437,-68.17520000000002,200,0.6715,87600,0.6453025932610035,23.0,202.0,8,179
+438,-78.67420000000001,200,0.67075,87800,0.6298853242397309,34.0,253.0,8,175
+439,-72.99199999999996,200,0.67,88000,0.6908202578127384,56.0,306.0,11,178
+440,-121.58079999999995,200,0.66925,88200,0.7535658758878708,49.0,390.0,15,176
+441,-92.72760000000001,200,0.6685,88400,0.7496882417798042,50.0,332.0,10,178
+442,-45.477799999999995,200,0.6677500000000001,88600,0.6914496569335461,71.0,289.0,16,173
+443,-121.29940000000002,200,0.667,88800,0.6560883229970932,33.0,338.0,9,177
+444,-115.08619999999995,200,0.66625,89000,0.6662252181768418,28.0,324.0,7,170
+445,-97.92119999999997,200,0.6655,89200,0.7053027611970901,22.0,270.0,7,182
+446,-74.87719999999999,200,0.66475,89400,0.7085218244791031,37.0,258.0,6,173
+447,-67.9392,200,0.6639999999999999,89600,0.704664646089077,47.0,278.0,9,175
+448,-88.14939999999999,200,0.66325,89800,0.7432435454428196,53.0,322.0,12,172
+449,-106.21259999999998,200,0.6625,90000,0.7689258028566838,31.0,304.0,5,184
+450,-93.89280000000002,200,0.66175,90200,0.7739744849503041,34.0,294.0,8,173
+451,-92.45540000000001,200,0.661,90400,0.7466744719445706,31.0,273.0,7,170
+452,-126.42399999999991,200,0.66025,90600,0.7485599352419376,37.0,362.0,9,183
+453,-43.42179999999999,200,0.6595,90800,0.7172211575508117,51.0,232.0,10,167
+454,-41.004,200,0.65875,91000,0.7117166878283023,58.0,242.0,15,176
+455,-100.84779999999995,200,0.6579999999999999,91200,0.7539289212226867,32.0,295.0,7,170
+456,-60.78739999999999,200,0.6572499999999999,91400,0.7655463164299726,42.0,248.0,15,179
+457,-104.14019999999996,200,0.6565000000000001,91600,0.7266598296165466,28.0,283.0,7,171
+458,-60.87920000000001,200,0.65575,91800,0.6373958414793015,50.0,256.0,10,173
+459,-110.9056,200,0.655,92000,0.664604227244854,41.0,352.0,8,163
+460,-103.80220000000001,200,0.65425,92200,0.7965285500884056,36.0,312.0,7,176
+461,-57.48299999999999,200,0.6535,92400,0.8446404960751533,46.0,235.0,9,167
+462,-28.952799999999993,200,0.6527499999999999,92600,0.7536122561991214,60.0,221.0,14,167
+463,-96.18159999999996,200,0.652,92800,0.7059136359393596,28.0,282.0,8,173
+464,-44.913599999999995,200,0.65125,93000,0.726063332632184,43.0,195.0,11,174
+465,-67.20299999999999,200,0.6505000000000001,93200,0.784851132184267,29.0,220.0,5,177
+466,-41.30339999999999,200,0.64975,93400,0.7659605506062508,49.0,211.0,13,182
+467,-51.05999999999999,200,0.649,93600,0.7699120956659317,63.0,272.0,12,180
+468,-89.10600000000002,200,0.64825,93800,0.7565764425694943,24.0,248.0,7,160
+469,-95.24060000000003,200,0.6475,94000,0.7276665938645601,37.0,294.0,6,191
+470,-74.757,200,0.6467499999999999,94200,0.7411604717373848,24.0,206.0,5,172
+471,-43.316,200,0.646,94400,0.7377981805801391,72.0,279.0,16,183
+472,-55.56159999999999,200,0.64525,94600,0.7748828069865703,43.0,248.0,16,176
+473,-51.166599999999995,200,0.6445,94800,0.7967476172745228,39.0,229.0,12,176
+474,-93.74900000000002,200,0.64375,95000,0.7577205118536949,41.0,307.0,8,167
+475,-61.50879999999995,200,0.643,95200,0.5790194295346737,50.0,266.0,11,170
+476,-118.48739999999997,200,0.64225,95400,0.5707655118405819,36.0,354.0,8,180
+477,-124.66800000000003,200,0.6415,95600,0.6406736698746681,27.0,322.0,7,177
+478,-84.6636,200,0.6407499999999999,95800,0.7422412231564521,22.0,255.0,7,170
+479,-53.8604,200,0.6399999999999999,96000,0.7209875370562077,51.0,247.0,15,173
+480,-61.05599999999998,200,0.63925,96200,0.7020147289335728,44.0,252.0,12,173
+481,-106.09279999999995,200,0.6385000000000001,96400,0.7163457821309567,18.0,273.0,8,179
+482,-92.08760000000004,200,0.63775,96600,0.692038988173008,38.0,296.0,8,167
+483,-70.31240000000001,200,0.637,96800,0.6709091092646122,29.0,221.0,7,172
+484,-72.95479999999999,200,0.63625,97000,0.6703189778327941,48.0,271.0,10,171
+485,-54.490399999999994,200,0.6355,97200,0.6869003753364086,55.0,267.0,13,164
+486,-84.30819999999999,200,0.6347499999999999,97400,0.659473544061184,35.0,272.0,6,168
+487,-79.3286,200,0.634,97600,0.7408902670443058,75.0,362.0,15,172
+488,-76.79380000000002,200,0.6332500000000001,97800,0.7211443340033292,43.0,278.0,13,174
+489,-74.33859999999996,200,0.6325000000000001,98000,0.7406747218966484,59.0,315.0,14,179
+490,-126.23920000000001,200,0.63175,98200,0.6798813284933567,21.0,323.0,6,180
+491,-43.50059999999998,200,0.631,98400,0.6491509176790714,42.0,226.0,14,178
+492,-107.38119999999996,200,0.63025,98600,0.6622716917097569,32.0,308.0,9,185
+493,-41.96179999999999,200,0.6295,98800,0.6609460662305355,49.0,220.0,14,182
+494,-70.09319999999998,200,0.62875,99000,0.6416266225278378,51.0,272.0,11,154
+495,-30.485199999999985,200,0.628,99200,0.7406829443573951,57.0,217.0,10,171
+496,-125.4022,200,0.62725,99400,0.7210112017393112,40.0,368.0,9,178
+497,-133.60859999999994,200,0.6265000000000001,99600,0.7136657737195492,34.0,359.0,7,171
+498,-87.11359999999996,200,0.62575,99800,0.721243591606617,22.0,248.0,6,178
+499,-35.6772,200,0.625,100000,0.7060103440284728,49.0,201.0,11,179
+500,-87.63719999999999,200,0.62425,100000,0.748342902213335,28.0,251.0,7,169
+501,-30.372399999999985,200,0.6234999999999999,100000,0.7613185738027096,63.0,252.0,16,180
+502,-106.5418,200,0.6227499999999999,100000,0.7322004596889019,35.0,308.0,6,169
+503,-99.02459999999998,200,0.622,100000,0.6897798132896423,28.0,281.0,7,173
+504,-77.82079999999998,200,0.62125,100000,0.7035047750175,47.0,290.0,10,171
+505,-52.83299999999996,200,0.6205,100000,0.6944783176481724,51.0,263.0,13,160
+506,-75.45380000000002,200,0.61975,100000,0.6684945127367974,58.0,327.0,13,171
+507,-95.928,200,0.619,100000,0.6975052107870578,37.0,309.0,7,163
+508,-103.25060000000002,200,0.61825,100000,0.7184875112771988,40.0,327.0,12,183
+509,-74.46080000000003,200,0.6174999999999999,100000,0.6948229403793812,39.0,285.0,13,186
+510,-20.623200000000026,200,0.6167499999999999,100000,0.7129161341488361,68.0,232.0,15,170
+511,-48.736000000000004,200,0.616,100000,0.7226584969460964,47.0,224.0,13,172
+512,-137.81519999999998,200,0.6152500000000001,100000,0.640507740676403,31.0,366.0,7,175
+513,-124.28139999999996,200,0.6145,100000,0.6905241300910712,44.0,384.0,10,164
+514,-86.41480000000003,200,0.61375,100000,0.6816938592493534,27.0,268.0,7,181
+515,-73.20939999999999,200,0.613,100000,0.7188695163279771,45.0,271.0,9,170
+516,-50.60479999999999,200,0.61225,100000,0.6975484423339366,44.0,222.0,8,184
+517,-81.92320000000002,200,0.6114999999999999,100000,0.6795672799646855,43.0,286.0,11,173
+518,-60.88319999999997,200,0.61075,100000,0.6347355014085769,57.0,284.0,12,178
+519,-63.90999999999999,200,0.61,100000,0.6576019021123648,38.0,222.0,10,180
+520,-36.492999999999995,200,0.6092500000000001,100000,0.7052265501767397,65.0,268.0,18,166
+521,-66.72579999999998,200,0.6085,100000,0.7031616504490376,30.0,234.0,8,169
+522,-88.78359999999999,200,0.60775,100000,0.7237505401670933,56.0,342.0,14,172
+523,-79.3832,200,0.607,100000,0.7236465941369533,62.0,347.0,13,177
+524,-59.233799999999995,200,0.60625,100000,0.7166913808882236,32.0,211.0,10,169
+525,-56.169,200,0.6054999999999999,100000,0.6875597876310349,44.0,235.0,11,168
+526,-26.018799999999988,200,0.60475,100000,0.6735404099524022,60.0,221.0,15,164
+527,-39.51319999999998,200,0.604,100000,0.6871634895354509,58.0,246.0,12,177
+528,-75.98299999999999,200,0.60325,100000,0.7393397127091884,36.0,255.0,9,172
+529,-62.03939999999996,200,0.6025,100000,0.7328146593272686,41.0,231.0,11,169
+530,-64.84719999999996,200,0.60175,100000,0.6653047654777765,66.0,305.0,15,170
+531,-117.77099999999999,200,0.601,100000,0.6723299690335989,31.0,324.0,7,174
+532,-100.40480000000001,200,0.60025,100000,0.637734205275774,43.0,327.0,9,168
+533,-96.20259999999996,200,0.5994999999999999,100000,0.6169756859540939,51.0,331.0,12,172
+534,-76.00120000000003,200,0.5987499999999999,100000,0.6221910400688648,32.0,248.0,12,168
+535,-51.32519999999999,200,0.598,100000,0.7890913063287734,68.0,296.0,19,164
+536,-24.397800000000004,200,0.5972500000000001,100000,0.8251594039052725,67.0,243.0,18,163
+537,-43.3534,200,0.5965,100000,0.8083431947231293,56.0,239.0,13,159
+538,-67.99159999999999,200,0.59575,100000,0.8082529467344284,54.0,284.0,11,179
+539,-81.50660000000003,200,0.595,100000,0.8144085213541985,51.0,303.0,14,167
+540,-89.59699999999997,200,0.59425,100000,0.6829741698503494,41.0,289.0,8,169
+541,-109.028,200,0.5934999999999999,100000,0.7002025809139013,25.0,296.0,5,175
+542,-117.78959999999998,200,0.59275,100000,0.7357725304365158,18.0,316.0,4,176
+543,-24.34279999999998,200,0.5920000000000001,100000,0.7623517842590809,64.0,226.0,12,160
+544,-51.935399999999994,200,0.59125,100000,0.7590982531756163,48.0,235.0,11,167
+545,-52.672200000000004,200,0.5905,100000,0.7917753455042839,35.0,203.0,11,171
+546,-60.773199999999996,200,0.58975,100000,0.8114150370657444,44.0,245.0,9,180
+547,-119.15419999999999,200,0.589,100000,0.7368025979399682,31.0,322.0,7,176
+548,-36.05319999999999,200,0.5882499999999999,100000,0.6951551860570908,59.0,250.0,17,170
+549,-65.62259999999998,200,0.5875,100000,0.6893623659014702,36.0,224.0,8,176
+550,-10.967399999999975,200,0.58675,100000,0.6768979817628861,89.0,277.0,16,169
+551,-42.71419999999997,200,0.586,100000,0.6971737703680992,72.0,280.0,16,182
+552,-40.031799999999976,200,0.58525,100000,0.693981761559844,75.0,312.0,20,174
+553,-25.86999999999999,200,0.5845,100000,0.6980645267665386,66.0,245.0,21,167
+554,-82.21739999999997,200,0.58375,100000,0.7131629875302314,29.0,255.0,12,167
+555,-19.595599999999987,200,0.583,100000,0.614942519441247,79.0,275.0,25,159
+556,-88.5136,200,0.5822499999999999,100000,0.6428988701105118,53.0,340.0,12,154
+557,-72.99699999999994,200,0.5814999999999999,100000,0.6798103016614914,40.0,262.0,6,176
+558,-78.04559999999995,200,0.58075,100000,0.7654598397016525,47.0,298.0,9,170
+559,-74.50679999999998,200,0.58,100000,0.7877536808699369,44.0,294.0,14,170
+560,-40.818000000000005,200,0.57925,100000,0.6810225377976894,62.0,252.0,17,176
+561,-56.65119999999998,200,0.5785,100000,0.6817232298851014,54.0,298.0,15,164
+562,-103.96640000000001,200,0.57775,100000,0.7383014464378357,41.0,341.0,8,173
+563,-44.02039999999999,200,0.577,100000,0.7937931649386882,61.0,246.0,14,175
+564,-81.1988,200,0.5762499999999999,100000,0.7879634939134121,36.0,275.0,13,150
+565,-3.4902000000000064,200,0.5754999999999999,100000,0.7056784062087536,79.0,219.0,18,169
+566,-77.72979999999998,200,0.5747500000000001,100000,0.6960608543455601,38.0,274.0,8,171
+567,-62.53299999999995,200,0.5740000000000001,100000,0.701737579703331,57.0,282.0,14,182
+568,-54.34780000000002,200,0.57325,100000,0.7655736650526523,58.0,271.0,13,168
+569,-1.6841999999999933,200,0.5725,100000,0.7245367567241192,78.0,218.0,21,164
+570,-76.23539999999994,200,0.57175,100000,0.7101375058293342,31.0,237.0,7,177
+571,3.6632000000000153,200,0.571,100000,0.6896241830289364,57.0,145.0,11,171
+572,-72.7386,200,0.57025,100000,0.7596534614264965,55.0,307.0,14,177
+573,-12.009799999999974,200,0.5695,100000,0.7443460310995579,67.0,220.0,17,171
+574,-69.54839999999999,200,0.56875,100000,0.7933826365321874,42.0,278.0,11,158
+575,-89.4976,200,0.5680000000000001,100000,0.7077186591178178,25.0,274.0,5,159
+576,-95.44919999999995,200,0.56725,100000,0.6983057072758675,41.0,296.0,9,159
+577,-73.33400000000005,200,0.5665,100000,0.7313332757353783,44.0,270.0,11,182
+578,-96.70699999999997,200,0.56575,100000,0.6995445388555527,51.0,330.0,9,180
+579,-74.81020000000001,200,0.565,100000,0.6848266625404358,27.0,234.0,8,170
+580,-80.40199999999999,200,0.5642499999999999,100000,0.6891469420492649,52.0,294.0,12,170
+581,-64.07919999999997,200,0.5635,100000,0.6954434368014336,58.0,284.0,10,187
+582,-63.30680000000001,200,0.56275,100000,0.7261165291070938,56.0,278.0,9,179
+583,-17.374000000000013,200,0.5619999999999999,100000,0.7811208896338939,63.0,216.0,15,172
+584,-102.25639999999999,200,0.56125,100000,0.7764280590415001,26.0,294.0,9,159
+585,-36.079400000000014,200,0.5605,100000,0.7894951166212558,72.0,278.0,15,177
+586,-43.99539999999998,200,0.55975,100000,0.7651265883445739,60.0,258.0,14,173
+587,-56.308599999999984,200,0.5589999999999999,100000,0.7127752356231213,65.0,316.0,21,175
+588,-60.87540000000001,200,0.5582499999999999,100000,0.698373948186636,41.0,236.0,9,173
+589,-39.365799999999986,200,0.5575,100000,0.7075562486052513,61.0,259.0,14,166
+590,-74.93559999999994,200,0.5567500000000001,100000,0.7580846339464188,40.0,267.0,13,180
+591,1.6525999999999978,200,0.556,100000,0.7719624856114388,72.0,198.0,14,165
+592,-87.66659999999999,200,0.55525,100000,0.7913974064588547,45.0,300.0,8,176
+593,-13.768400000000003,200,0.5545,100000,0.7342852519452572,61.0,184.0,13,166
+594,-47.042399999999994,200,0.55375,100000,0.7894816426932811,55.0,260.0,18,167
+595,-70.88279999999997,200,0.5529999999999999,100000,0.7433514190465211,60.0,313.0,15,183
+596,-57.38820000000006,200,0.55225,100000,0.7066219169646502,59.0,286.0,15,172
+597,-62.1432,200,0.5515,100000,0.7205494989454746,42.0,267.0,15,170
+598,-9.77000000000001,200,0.5507500000000001,100000,0.7983293221890926,61.0,184.0,16,167
+599,19.70720000000001,200,0.55,100000,0.761550597473979,71.0,155.0,20,159
+600,-134.22600000000003,200,0.54925,100000,0.763778890222311,45.0,404.0,11,174
+601,-21.66320000000001,200,0.5485,100000,0.762436018884182,56.0,208.0,12,177
+602,-59.2916,200,0.54775,100000,0.7555003507435322,55.0,277.0,17,177
+603,-53.97719999999998,200,0.547,100000,0.732544779330492,49.0,250.0,8,172
+604,-26.24660000000002,200,0.54625,100000,0.7395528516173363,62.0,226.0,13,164
+605,-137.66060000000002,200,0.5455,100000,0.6988675359636545,23.0,358.0,11,167
+606,-21.516999999999996,200,0.54475,100000,0.7202703350782395,77.0,268.0,21,174
+607,-131.13240000000008,200,0.5439999999999999,100000,0.7671040152013302,29.0,358.0,8,171
+608,-88.84239999999997,200,0.54325,100000,0.7948637871444225,42.0,301.0,7,163
+609,-60.04480000000001,200,0.5425,100000,0.7871542198956013,52.0,258.0,11,155
+610,-76.85759999999995,200,0.54175,100000,0.7005464592576027,43.0,274.0,12,177
+611,-99.32819999999995,200,0.5409999999999999,100000,0.7123983445763588,26.0,300.0,12,161
+612,-78.46799999999995,200,0.5402499999999999,100000,0.7872467504441738,57.0,307.0,12,167
+613,-58.72379999999998,200,0.5394999999999999,100000,0.8704436300694942,44.0,257.0,10,176
+614,-71.92780000000002,200,0.5387500000000001,100000,0.8952826292812824,46.0,284.0,12,173
+615,-25.112199999999966,200,0.538,100000,0.8185099886357784,65.0,239.0,16,174
+616,-42.726400000000005,200,0.53725,100000,0.803987428471446,51.0,224.0,11,170
+617,-63.1982,200,0.5365,100000,0.7574079738557339,66.0,307.0,11,169
+618,-47.138999999999996,200,0.53575,100000,0.7207039020955562,74.0,291.0,16,170
+619,-5.366599999999981,200,0.5349999999999999,100000,0.7205446004867554,66.0,209.0,19,164
+620,-80.81619999999998,200,0.53425,100000,0.7304235978424549,39.0,288.0,15,160
+621,-21.5366,200,0.5335000000000001,100000,0.7372415642440319,68.0,235.0,14,177
+622,-67.04599999999998,200,0.5327500000000001,100000,0.8080557070672512,56.0,297.0,19,173
+623,-20.668199999999985,200,0.532,100000,0.8238896296918392,76.0,258.0,20,171
+624,-79.5164,200,0.53125,100000,0.8342883615195751,64.0,333.0,14,176
+625,-83.92499999999995,200,0.5305,100000,0.8287401691079139,54.0,320.0,12,151
+626,-62.72019999999997,200,0.5297499999999999,100000,0.8703302332758903,53.0,290.0,16,180
+627,9.10240000000001,200,0.529,100000,0.7818414026498794,89.0,227.0,23,177
+628,-75.67599999999999,200,0.52825,100000,0.7945708377659321,51.0,305.0,10,154
+629,-101.99699999999996,200,0.5275,100000,0.7599397157132626,39.0,315.0,10,170
+630,-42.2166,200,0.5267499999999999,100000,0.8827660149335861,54.0,249.0,18,161
+631,-39.6732,200,0.526,100000,0.8542608796060085,44.0,211.0,11,169
+632,-84.70899999999997,200,0.52525,100000,0.8427323192358017,46.0,298.0,11,167
+633,-134.82339999999994,200,0.5245,100000,0.8405285459756852,33.0,360.0,7,160
+634,-49.933599999999984,200,0.5237499999999999,100000,0.8541430500149727,47.0,238.0,11,174
+635,-34.09879999999999,200,0.5229999999999999,100000,0.7964461179077625,50.0,222.0,12,175
+636,-8.074000000000003,200,0.5222499999999999,100000,0.7763569238781929,78.0,233.0,18,182
+637,-55.28019999999999,200,0.5215000000000001,100000,0.7511050614714623,37.0,215.0,8,180
+638,-68.66199999999999,200,0.52075,100000,0.7629771994799376,39.0,261.0,15,173
+639,-42.32239999999999,200,0.52,100000,0.7642904990911483,81.0,321.0,16,169
+640,-33.448999999999984,200,0.51925,100000,0.8479329413175583,69.0,270.0,19,167
+641,-22.894599999999972,200,0.5185,100000,0.8578831167519092,68.0,227.0,13,183
+642,-42.6424,200,0.5177499999999999,100000,0.8379424488544465,55.0,242.0,16,168
+643,-20.239599999999996,200,0.517,100000,0.8399066907167435,63.0,223.0,18,182
+644,-8.596000000000004,200,0.51625,100000,0.8256017437577248,64.0,196.0,16,185
+645,-54.221199999999996,200,0.5155000000000001,100000,0.7958328299224376,33.0,209.0,9,176
+646,-48.68660000000001,200,0.51475,100000,0.795304874330759,35.0,202.0,10,160
+647,3.022800000000011,200,0.514,100000,0.8340905357897281,61.0,156.0,12,179
+648,-35.1738,200,0.51325,100000,0.8382441987097263,62.0,253.0,18,175
+649,-48.29499999999999,200,0.5125,100000,0.8732111613452435,39.0,193.0,10,180
+650,-16.992199999999983,200,0.5117499999999999,100000,0.8317409884929657,59.0,210.0,20,174
+651,-94.5004,200,0.511,100000,0.8297583651542664,27.0,271.0,6,157
+652,-19.102999999999998,200,0.51025,100000,0.8710110132396222,55.0,200.0,19,181
+653,-24.151400000000013,200,0.5095,100000,0.9253450766205787,70.0,254.0,19,168
+654,-113.11260000000004,200,0.50875,100000,0.8755679470300675,31.0,317.0,8,159
+655,-22.69059999999999,200,0.508,100000,0.8363194282352925,76.0,247.0,15,175
+656,-60.460399999999986,200,0.50725,100000,0.8807995314896107,48.0,254.0,14,169
+657,-57.58479999999997,200,0.5065,100000,0.850716225206852,60.0,286.0,13,177
+658,-14.840999999999992,200,0.5057499999999999,100000,0.8529268445074558,71.0,234.0,16,169
+659,-22.760799999999982,200,0.5049999999999999,100000,0.8706731387972831,61.0,230.0,12,170
+660,-38.40860000000001,200,0.5042500000000001,100000,0.80344178840518,56.0,233.0,18,162
+661,-41.87100000000001,200,0.5035000000000001,100000,0.833618328422308,48.0,227.0,15,169
+662,-53.2414,200,0.50275,100000,0.7841456563770771,47.0,228.0,11,146
+663,-27.40659999999998,200,0.502,100000,0.7902894188463688,53.0,221.0,19,180
+664,-27.242199999999993,200,0.50125,100000,0.785787868052721,49.0,209.0,12,177
+665,38.757800000000046,200,0.5005,100000,0.7977091453969478,86.0,157.0,22,184
+666,-39.896800000000006,200,0.49975,100000,0.7978329989314079,51.0,227.0,14,185
+667,-86.65259999999998,200,0.499,100000,0.8142274105548859,42.0,294.0,7,162
+668,-67.45080000000003,200,0.49824999999999997,100000,0.8145186324417591,51.0,275.0,15,164
+669,-121.27199999999998,200,0.49749999999999994,100000,0.7852895745635032,20.0,298.0,5,176
+670,-77.6596,200,0.4967499999999999,100000,0.8370059540867806,46.0,298.0,14,168
+671,-55.74059999999999,200,0.4959999999999999,100000,0.8419740380346775,61.0,283.0,11,170
+672,-36.46220000000001,200,0.49524999999999997,100000,0.8085117837786675,65.0,267.0,17,150
+673,-36.26219999999999,200,0.49450000000000005,100000,0.8035290689766407,51.0,221.0,15,180
+674,-73.74160000000003,200,0.49375,100000,0.7725263631343842,63.0,329.0,15,174
+675,-24.782999999999983,200,0.493,100000,0.8754649606347084,67.0,245.0,17,180
+676,-42.88280000000001,200,0.49224999999999997,100000,0.8977959100902081,72.0,291.0,20,177
+677,-26.95539999999999,200,0.49150000000000005,100000,0.9138802245259285,66.0,234.0,14,154
+678,-63.0064,200,0.49075,100000,0.8547990727424621,49.0,271.0,10,143
+679,-19.7468,200,0.49,100000,0.8572370274364949,71.0,241.0,21,161
+680,-33.33519999999999,200,0.48924999999999996,100000,0.8106738886237145,46.0,192.0,10,170
+681,-36.29919999999999,200,0.48849999999999993,100000,0.8349571768939495,79.0,295.0,15,167
+682,-24.134800000000002,200,0.4877499999999999,100000,0.8496111534535885,66.0,250.0,17,157
+683,-63.25099999999998,200,0.487,100000,0.9028597335517407,45.0,269.0,14,146
+684,-64.73519999999998,200,0.48624999999999996,100000,0.9062758475542069,43.0,268.0,12,158
+685,-93.02639999999997,200,0.48550000000000004,100000,0.795705855935812,53.0,345.0,13,152
+686,-96.87460000000004,200,0.48475,100000,0.814932896643877,42.0,324.0,11,166
+687,-46.94620000000002,200,0.484,100000,0.8635298179090023,71.0,296.0,13,168
+688,-67.58299999999991,200,0.48324999999999996,100000,0.8834554800391197,54.0,280.0,9,164
+689,-3.7135999999999894,200,0.48250000000000004,100000,0.8886027532815933,83.0,239.0,19,178
+690,-63.069999999999965,200,0.48175,100000,0.8488622643053532,35.0,235.0,6,166
+691,-49.679399999999994,200,0.481,100000,0.8172901447117329,47.0,246.0,15,172
+692,-45.448799999999984,200,0.48024999999999995,100000,0.8131616212427616,49.0,241.0,10,177
+693,-19.244799999999984,200,0.4794999999999999,100000,0.8114211031794548,58.0,216.0,19,178
+694,-44.604399999999984,200,0.4787499999999999,100000,0.8190900054574013,60.0,282.0,25,169
+695,-19.89739999999999,200,0.478,100000,0.8562588858604431,55.0,203.0,13,178
+696,-23.8412,200,0.47724999999999995,100000,0.8628059725463391,70.0,252.0,20,164
+697,-65.13459999999999,200,0.47650000000000003,100000,0.8629630985110999,44.0,249.0,9,161
+698,-38.288999999999994,200,0.47575,100000,0.813696311712265,59.0,236.0,14,167
+699,-15.129799999999982,200,0.475,100000,0.8072126856446267,74.0,241.0,16,164
+700,-74.44940000000001,200,0.47425000000000006,100000,0.8583210721611977,43.0,277.0,12,170
+701,-18.116599999999984,200,0.47350000000000003,100000,0.8274844359606505,59.0,211.0,19,174
+702,-17.40119999999999,200,0.47275,100000,0.8538312532007695,66.0,222.0,13,162
+703,5.830000000000005,200,0.472,100000,0.8000983607769012,64.0,197.0,20,168
+704,-73.12840000000001,200,0.47124999999999995,100000,0.8044257110357285,29.0,219.0,8,175
+705,-68.2896,200,0.4704999999999999,100000,0.8290080113708973,56.0,295.0,14,187
+706,-77.88460000000002,200,0.46975,100000,0.8376540932059288,42.0,279.0,13,176
+707,-63.965199999999975,200,0.469,100000,0.8492300979793072,46.0,266.0,13,178
+708,-29.992600000000017,200,0.46824999999999994,100000,0.8554928071796895,60.0,262.0,19,163
+709,-16.126800000000014,200,0.4675,100000,0.8765328180789947,74.0,257.0,17,155
+710,-32.09359999999999,200,0.46675,100000,0.9023638117313385,56.0,236.0,14,140
+711,-54.52719999999999,200,0.46599999999999997,100000,0.8631155414879322,47.0,256.0,17,172
+712,-26.199800000000003,200,0.46525000000000005,100000,0.8765241001546383,51.0,223.0,13,154
+713,-75.63000000000001,200,0.4645,100000,0.8628907690942288,38.0,277.0,10,172
+714,-116.78640000000007,200,0.46375,100000,0.8497209618985653,18.0,295.0,4,160
+715,-5.944000000000002,200,0.46299999999999997,100000,0.8504797567427158,69.0,194.0,15,168
+716,-9.006199999999993,200,0.46224999999999994,100000,0.8898272486031056,84.0,262.0,15,166
+717,-80.40499999999999,200,0.4614999999999999,100000,0.8400532829761506,40.0,280.0,9,150
+718,-5.591000000000005,200,0.46075,100000,0.808797721117735,73.0,221.0,23,168
+719,-49.0804,200,0.45999999999999996,100000,0.8051759186387062,54.0,266.0,16,182
+720,-5.064199999999991,200,0.45924999999999994,100000,0.8264414527267218,64.0,191.0,15,167
+721,-68.544,200,0.4585,100000,0.7878560449182987,49.0,303.0,13,155
+722,-66.11420000000003,200,0.45775,100000,0.8293393443524838,42.0,267.0,14,177
+723,-93.02439999999997,200,0.45699999999999996,100000,0.8563539680838584,45.0,330.0,9,162
+724,-8.020400000000002,200,0.45625000000000004,100000,0.8095446220040321,50.0,164.0,12,162
+725,5.5012000000000185,200,0.4555,100000,0.828622916340828,68.0,192.0,16,173
+726,-26.007,200,0.45475,100000,0.8407558345794678,63.0,265.0,20,181
+727,-115.22920000000002,200,0.45399999999999996,100000,0.849048962444067,18.0,297.0,4,143
+728,-37.79919999999998,200,0.45324999999999993,100000,0.8709168472886085,61.0,253.0,18,162
+729,-41.089199999999984,200,0.4525,100000,0.8348365797847509,65.0,274.0,14,172
+730,-45.1966,200,0.45175,100000,0.8139058776199818,73.0,304.0,18,156
+731,-8.57979999999998,200,0.45099999999999996,100000,0.8904950903356075,67.0,219.0,16,151
+732,-67.03399999999996,200,0.45024999999999993,100000,0.828912111967802,42.0,253.0,10,185
+733,-91.11480000000002,200,0.4495,100000,0.8246605378389359,53.0,332.0,12,180
+734,-28.663399999999978,200,0.44875,100000,0.8018626317381858,32.0,174.0,17,169
+735,-32.26819999999999,200,0.44800000000000006,100000,0.7822699438035489,47.0,235.0,11,155
+736,-71.72959999999998,200,0.44725000000000004,100000,0.7904623433947563,34.0,255.0,7,171
+737,-9.472,200,0.4465,100000,0.846938491910696,59.0,183.0,14,164
+738,-22.235799999999976,200,0.44575,100000,0.8317978709936142,61.0,222.0,16,171
+739,-82.41919999999999,200,0.44499999999999995,100000,0.8104432319104672,40.0,298.0,11,176
+740,-20.558199999999978,200,0.4442499999999999,100000,0.8568535785377026,57.0,224.0,19,170
+741,-56.5612,200,0.4435,100000,0.8425178825855255,53.0,276.0,15,163
+742,-4.699000000000005,200,0.44275,100000,0.944550446420908,72.0,215.0,22,172
+743,33.856,200,0.44199999999999995,100000,0.9273870921134949,89.0,175.0,24,168
+744,-11.030599999999984,200,0.4412499999999999,100000,0.9107779970765114,79.0,254.0,17,157
+745,-5.511999999999997,200,0.4405,100000,0.843445825278759,65.0,197.0,15,169
+746,-39.58139999999998,200,0.43975,100000,0.8625212099403143,42.0,227.0,24,172
+747,20.3332,200,0.43900000000000006,100000,0.8858685177564621,75.0,180.0,19,171
+748,-20.218799999999977,200,0.43825000000000003,100000,0.8680234961211681,66.0,240.0,19,168
+749,-57.00559999999998,200,0.4375,100000,0.8749738359451293,61.0,288.0,20,181
+750,-26.018799999999995,200,0.43674999999999997,100000,0.856154837757349,65.0,242.0,18,174
+751,9.577400000000017,200,0.43599999999999994,100000,0.8361964487284422,69.0,177.0,15,150
+752,-38.54359999999999,200,0.43525,100000,0.8837881323695183,51.0,247.0,15,164
+753,-75.03559999999999,200,0.4345,100000,0.9057212713360786,51.0,289.0,12,178
+754,-40.1244,200,0.43374999999999997,100000,0.9402030898630619,71.0,284.0,20,151
+755,-10.406,200,0.43299999999999994,100000,0.8822382409870625,67.0,222.0,26,174
+756,-40.551999999999964,200,0.4322499999999999,100000,0.8207631787657738,58.0,259.0,16,178
+757,-51.635799999999975,200,0.4315,100000,0.8697022166848183,49.0,256.0,12,180
+758,-52.76579999999999,200,0.4307500000000001,100000,0.9446615846455098,54.0,269.0,15,162
+759,-35.15259999999998,200,0.43000000000000005,100000,0.8953259164094924,77.0,309.0,16,159
+760,-75.17479999999998,200,0.42925,100000,0.8774803784489632,41.0,283.0,14,170
+761,-40.98099999999998,200,0.4285,100000,0.8768489462137222,69.0,329.0,24,174
+762,-62.12399999999999,200,0.42774999999999996,100000,0.8909819854795933,58.0,305.0,11,174
+763,-39.19020000000001,200,0.42699999999999994,100000,0.8931214015185833,60.0,267.0,10,174
+764,-23.986999999999995,200,0.42625,100000,0.8761875711381435,62.0,213.0,17,182
+765,-24.703399999999995,200,0.4255,100000,0.8572578316926956,45.0,196.0,20,187
+766,21.199399999999997,200,0.42474999999999996,100000,0.8601588355004788,68.0,157.0,18,165
+767,-67.96860000000001,200,0.42399999999999993,100000,0.8702338966727257,63.0,330.0,17,170
+768,-55.66160000000002,200,0.4232499999999999,100000,0.822873211875558,61.0,288.0,15,163
+769,-33.907599999999995,200,0.4225,100000,0.8385701721906662,63.0,254.0,20,172
+770,16.641600000000025,200,0.42175000000000007,100000,0.8833240224421024,71.0,200.0,20,164
+771,-16.81859999999999,200,0.42100000000000004,100000,0.8683164863288403,67.0,234.0,18,166
+772,-69.42919999999998,200,0.42025,100000,0.856117600351572,54.0,310.0,13,160
+773,-32.64179999999999,200,0.4195,100000,0.841289795190096,64.0,259.0,22,166
+774,-20.46619999999999,200,0.41874999999999996,100000,0.8277585132420063,44.0,178.0,10,169
+775,-12.622599999999991,200,0.41800000000000004,100000,0.8937655979394913,66.0,212.0,17,172
+776,-6.9192,200,0.41725,100000,0.8587228727340698,70.0,216.0,20,165
+777,-6.934799999999999,200,0.4165,100000,0.8760724785923958,52.0,165.0,13,166
+778,-89.2544,200,0.41574999999999995,100000,0.8477753381431102,53.0,346.0,20,166
+779,-50.598200000000006,200,0.4149999999999999,100000,0.828814155459404,46.0,240.0,13,182
+780,-42.153399999999976,200,0.4142499999999999,100000,0.9311086991429329,51.0,246.0,13,143
+781,-36.93099999999998,200,0.4135,100000,0.9303133037686347,51.0,216.0,12,151
+782,18.714599999999976,200,0.41275000000000006,100000,0.881107923835516,79.0,171.0,20,170
+783,-30.28780000000003,200,0.41200000000000003,100000,0.8672186259925365,55.0,223.0,13,177
+784,-44.7284,200,0.41125,100000,0.8742840091139078,70.0,283.0,18,180
+785,-49.49819999999998,200,0.4105,100000,0.8087414126098156,61.0,274.0,16,154
+786,-11.617399999999991,200,0.40974999999999995,100000,0.8602487462759018,74.0,260.0,24,171
+787,-84.33379999999994,200,0.40900000000000003,100000,0.8494411820173263,26.0,250.0,7,167
+788,-32.474799999999995,200,0.40825,100000,0.8187743453681469,65.0,247.0,13,169
+789,-23.84899999999999,200,0.4075,100000,0.7815463876724243,41.0,190.0,11,167
+790,-13.187599999999989,200,0.40674999999999994,100000,0.8556829589605331,57.0,199.0,16,172
+791,-3.829999999999996,200,0.4059999999999999,100000,0.8519055913388729,67.0,203.0,17,163
+792,-49.724599999999995,200,0.4052499999999999,100000,0.873974190056324,57.0,292.0,17,168
+793,-40.076399999999985,200,0.40449999999999997,100000,0.91416679084301,56.0,246.0,14,145
+794,-92.03060000000005,200,0.40375000000000005,100000,0.9337493751943111,39.0,287.0,11,184
+795,-15.610799999999973,200,0.403,100000,0.8580207096040249,80.0,274.0,25,168
+796,-49.94399999999998,200,0.40225,100000,0.8595430758595467,63.0,290.0,13,173
+797,-6.457000000000003,200,0.40149999999999997,100000,0.8742755696177482,48.0,176.0,19,175
+798,-72.01159999999999,200,0.40074999999999994,100000,0.9160682956874371,42.0,296.0,22,162
+799,-48.62919999999996,200,0.4,100000,0.9118202829360962,70.0,301.0,21,174
+800,-12.683400000000006,200,0.39925,100000,0.9090511937439442,71.0,229.0,20,188
+801,-4.328999999999982,200,0.39849999999999997,100000,0.8632523737847805,73.0,222.0,19,175
+802,-23.639599999999994,200,0.39774999999999994,100000,0.9005601046979428,69.0,245.0,14,151
+803,-69.79440000000001,200,0.3969999999999999,100000,0.9221062657237052,54.0,301.0,22,168
+804,-41.88919999999998,200,0.39625,100000,0.8778681993484497,66.0,287.0,17,164
+805,-18.487199999999987,200,0.39549999999999996,100000,0.9057435412704945,80.0,256.0,15,176
+806,4.1820000000000075,200,0.39475000000000005,100000,0.9672321636974811,76.0,200.0,17,167
+807,-18.578600000000005,200,0.394,100000,0.9215277677774429,70.0,238.0,17,179
+808,-9.358200000000002,200,0.39325,100000,0.881112102419138,76.0,248.0,23,181
+809,-6.482599999999995,200,0.39249999999999996,100000,0.8921471546590328,74.0,235.0,20,146
+810,-69.9032,200,0.39175000000000004,100000,0.9147864057123661,42.0,266.0,11,173
+811,-35.07459999999998,200,0.391,100000,0.9017156866192818,59.0,237.0,14,161
+812,-68.72859999999997,200,0.39025,100000,0.9435131767392159,59.0,331.0,14,165
+813,-100.60259999999997,200,0.38949999999999996,100000,0.9582036924362183,32.0,298.0,8,176
+814,-69.93099999999997,200,0.38874999999999993,100000,0.932558361440897,64.0,344.0,20,180
+815,-55.494800000000005,200,0.3879999999999999,100000,0.9407814998924732,43.0,257.0,17,179
+816,-51.35279999999999,200,0.38725,100000,0.9428819984197616,46.0,241.0,13,144
+817,-39.263600000000025,200,0.38649999999999995,100000,0.8893871827423573,58.0,249.0,11,168
+818,-6.033799999999998,200,0.38575000000000004,100000,0.8579784059524536,67.0,202.0,14,164
+819,-11.260399999999983,200,0.385,100000,0.8918423762917519,61.0,200.0,15,175
+820,59.72520000000004,200,0.38425,100000,0.8808893775939941,105.0,180.0,27,181
+821,-22.334199999999992,200,0.38349999999999995,100000,0.8959944719076156,52.0,191.0,15,174
+822,14.485200000000024,200,0.38275000000000003,100000,0.871190424412489,82.0,196.0,17,164
+823,-27.057599999999976,200,0.382,100000,0.895196331590414,52.0,232.0,18,172
+824,-27.518400000000003,200,0.38125,100000,0.8680834382772445,59.0,228.0,14,165
+825,-5.706600000000007,200,0.38049999999999995,100000,0.8033845560252666,74.0,228.0,15,176
+826,-63.13239999999998,200,0.3797499999999999,100000,0.8054760098457336,48.0,263.0,9,162
+827,-12.428199999999999,200,0.379,100000,0.7928046254813671,77.0,252.0,22,164
+828,-30.9426,200,0.37825,100000,0.8746493577957153,56.0,238.0,23,161
+829,-14.177199999999988,200,0.37749999999999995,100000,0.8873273237049579,69.0,233.0,20,181
+830,-8.463199999999993,200,0.37675000000000003,100000,0.9451636326313019,58.0,187.0,16,166
+831,-23.26519999999999,200,0.376,100000,0.8974805043637752,73.0,264.0,14,150
+832,35.8022,200,0.37525,100000,0.8859225246310234,89.0,176.0,27,183
+833,-112.8858,200,0.37450000000000006,100000,0.8803700862824917,41.0,366.0,15,162
+834,-2.196399999999984,200,0.37375,100000,0.8382903474569321,66.0,195.0,21,176
+835,-44.318599999999996,200,0.373,100000,0.8778854882717133,58.0,251.0,11,167
+836,-51.791000000000004,200,0.37224999999999997,100000,0.8625101996958255,49.0,261.0,17,170
+837,-52.84599999999999,200,0.37149999999999994,100000,0.8500290976464748,29.0,208.0,15,163
+838,-47.19939999999999,200,0.3707499999999999,100000,0.8994776113331318,50.0,250.0,16,190
+839,1.9219999999999986,200,0.37,100000,0.9139046947658062,49.0,154.0,24,186
+840,-82.98580000000003,200,0.36924999999999997,100000,0.8323043923079968,38.0,277.0,11,168
+841,-34.4368,200,0.36849999999999994,100000,0.83863944709301,48.0,217.0,17,160
+842,-37.462399999999995,200,0.36775,100000,0.8779267281293869,66.0,284.0,16,176
+843,-51.56539999999999,200,0.367,100000,0.8758764527738094,54.0,289.0,16,147
+844,-4.512400000000005,200,0.36624999999999996,100000,0.8564827272295952,103.0,302.0,22,161
+845,-49.32619999999998,200,0.36550000000000005,100000,0.8813666906952858,51.0,250.0,12,167
+846,-31.576199999999996,200,0.36475,100000,0.9121006989479065,67.0,256.0,15,176
+847,-55.75840000000001,200,0.364,100000,0.8750704397261143,59.0,295.0,23,179
+848,30.035400000000006,200,0.36324999999999996,100000,0.870807125121355,99.0,230.0,22,162
+849,-49.74379999999999,200,0.36249999999999993,100000,0.8560880829393863,55.0,274.0,16,168
+850,-2.262599999999988,200,0.36175,100000,0.8653369337320328,63.0,199.0,25,165
+851,-26.737999999999975,200,0.361,100000,0.8903048281371594,61.0,236.0,18,161
+852,-5.066999999999989,200,0.36024999999999996,100000,0.8263313248753548,87.0,259.0,21,145
+853,-94.32779999999998,200,0.35949999999999993,100000,0.8352714380621911,30.0,276.0,11,168
+854,-16.101199999999952,200,0.35875,100000,0.80878722012043,67.0,227.0,21,175
+855,-33.28860000000001,200,0.358,100000,0.8563561157882214,72.0,278.0,20,171
+856,-58.345200000000006,200,0.35725000000000007,100000,0.8641467390954495,66.0,305.0,16,157
+857,-110.73640000000002,200,0.35650000000000004,100000,0.8819537582993507,30.0,353.0,8,146
+858,-40.99619999999998,200,0.35575,100000,0.8779015854001045,47.0,234.0,12,156
+859,-8.30520000000001,200,0.355,100000,0.8960688868165017,70.0,213.0,19,155
+860,-83.25959999999999,200,0.35424999999999995,100000,0.9351869881153106,69.0,378.0,15,173
+861,-67.972,200,0.3534999999999999,100000,0.8928858734667301,50.0,297.0,10,164
+862,-64.17759999999998,200,0.35275,100000,0.9596219620108605,39.0,249.0,11,181
+863,-9.319799999999997,200,0.352,100000,0.9160330808162689,57.0,203.0,26,157
+864,-20.323,200,0.35124999999999995,100000,0.9426774187386036,72.0,256.0,20,167
+865,-86.7254,200,0.3504999999999999,100000,0.9211604519188404,46.0,321.0,12,169
+866,29.61739999999999,200,0.34975,100000,0.9609960667788983,82.0,191.0,21,149
+867,-78.8642,200,0.349,100000,0.899564387947321,53.0,293.0,7,150
+868,24.667399999999972,200,0.34825000000000006,100000,0.8883370664715767,78.0,190.0,19,179
+869,-91.45099999999995,200,0.34750000000000003,100000,0.8900660978257656,62.0,375.0,25,168
+870,-5.453599999999971,200,0.34675,100000,0.877970067858696,67.0,220.0,19,174
+871,0.8146000000000049,200,0.346,100000,0.9002228857576847,65.0,179.0,14,165
+872,-39.225999999999964,200,0.34524999999999995,100000,0.8771245610713959,64.0,278.0,14,162
+873,-51.256399999999964,200,0.3444999999999999,100000,0.8674003249406814,39.0,223.0,10,172
+874,18.024600000000007,200,0.34375,100000,0.8977794647216797,70.0,166.0,16,157
+875,-41.92359999999998,200,0.34299999999999997,100000,0.9617998504638672,57.0,252.0,13,160
+876,-42.737199999999994,200,0.34224999999999994,100000,0.9690631082654,58.0,243.0,12,174
+877,-93.62000000000002,200,0.3414999999999999,100000,0.9259219713509083,34.0,302.0,10,166
+878,5.1628,200,0.34075,100000,0.8725478518009185,56.0,143.0,15,165
+879,-24.430599999999995,200,0.3400000000000001,100000,0.8725003936886787,74.0,264.0,15,160
+880,-17.106999999999992,200,0.33925000000000005,100000,0.9010512821376324,37.0,176.0,20,162
+881,-100.57000000000002,200,0.3385,100000,0.8778471657633782,26.0,271.0,7,163
+882,-87.26859999999999,200,0.33775,100000,0.9464010471105575,45.0,334.0,14,159
+883,23.953200000000013,200,0.33699999999999997,100000,0.9628779931366444,65.0,149.0,23,161
+884,-55.039799999999985,200,0.33624999999999994,100000,0.976205545514822,43.0,241.0,11,160
+885,38.641000000000005,200,0.3355,100000,0.9112279857695103,88.0,180.0,23,171
+886,-35.41879999999998,200,0.33475,100000,0.8840595637261868,64.0,269.0,16,147
+887,-39.895199999999996,200,0.33399999999999996,100000,0.8867831486463547,46.0,224.0,16,171
+888,-70.92539999999998,200,0.33324999999999994,100000,0.9036361233890057,51.0,293.0,16,166
+889,-92.24239999999998,200,0.3324999999999999,100000,0.9129692363739014,35.0,298.0,9,170
+890,29.914200000000044,200,0.33175,100000,0.8347492150962352,70.0,133.0,18,161
+891,-1.0614000000000021,200,0.33100000000000007,100000,0.861395513266325,73.0,230.0,20,178
+892,-64.2586,200,0.33025000000000004,100000,0.8459642490744591,50.0,277.0,12,163
+893,-58.08219999999998,200,0.3295,100000,0.8634630174934864,46.0,263.0,13,164
+894,-12.844600000000051,200,0.32875,100000,0.8654856079816818,61.0,211.0,17,171
+895,-1.413399999999984,200,0.32799999999999996,100000,0.8847679743170738,71.0,200.0,19,162
+896,-8.52339999999999,200,0.32724999999999993,100000,0.8657298558950424,50.0,179.0,23,161
+897,26.182599999999997,200,0.3265,100000,0.9159655225276947,79.0,173.0,23,156
+898,-4.9725999999999875,200,0.32575,100000,0.8738906192779541,78.0,234.0,16,159
+899,15.416400000000001,200,0.32499999999999996,100000,0.9004991099238395,82.0,198.0,17,171
+900,-29.692200000000007,200,0.3242499999999999,100000,0.9389123195409774,77.0,284.0,20,170
+901,-54.336399999999976,200,0.3234999999999999,100000,0.9225770485401154,43.0,259.0,10,181
+902,-53.173199999999994,200,0.32275,100000,0.9050808675587177,51.0,269.0,15,177
+903,-9.004399999999992,200,0.32200000000000006,100000,0.8825297498703003,72.0,246.0,18,171
+904,-61.101199999999984,200,0.32125000000000004,100000,0.8491127797961235,59.0,287.0,14,172
+905,-29.371599999999983,200,0.3205,100000,0.8743433348834515,42.0,184.0,10,165
+906,-91.09440000000001,200,0.31975,100000,0.8496267060935497,32.0,308.0,13,165
+907,-25.970600000000022,200,0.31899999999999995,100000,0.9104716974496841,52.0,223.0,19,170
+908,-15.838399999999993,200,0.31825000000000003,100000,0.9027162495255471,73.0,239.0,10,180
+909,0.4082000000000019,200,0.3175,100000,0.8684311904013157,69.0,200.0,18,168
+910,36.86879999999998,200,0.31675,100000,0.8418105292320252,87.0,183.0,24,166
+911,-74.70319999999998,200,0.31599999999999995,100000,0.8575299389660358,45.0,274.0,12,160
+912,-53.065000000000005,200,0.3152499999999999,100000,0.8560712164640427,34.0,202.0,14,182
+913,-85.46739999999998,200,0.3144999999999999,100000,0.8983732467889786,44.0,322.0,14,166
+914,-43.79899999999998,200,0.31375,100000,0.8420185630023479,68.0,273.0,17,144
+915,-8.761600000000005,200,0.31300000000000006,100000,0.8816809889674186,68.0,232.0,24,174
+916,-51.4198,200,0.31225,100000,0.8761399467289448,74.0,304.0,22,166
+917,-23.391,200,0.3115,100000,0.8325011955201626,81.0,289.0,19,164
+918,-31.830200000000023,200,0.31074999999999997,100000,0.8419791387021541,78.0,290.0,19,182
+919,-10.386999999999993,200,0.30999999999999994,100000,0.8508221873641014,73.0,233.0,15,169
+920,-48.786599999999986,200,0.30925,100000,0.8926737359166146,73.0,318.0,16,175
+921,24.7818,200,0.3085,100000,0.8905998323857784,54.0,104.0,20,169
+922,-41.9952,200,0.30774999999999997,100000,0.9649561123549938,64.0,268.0,17,173
+923,-26.745599999999992,200,0.30699999999999994,100000,0.929557653516531,67.0,254.0,23,180
+924,-64.88539999999998,200,0.3062499999999999,100000,0.8946171654760837,39.0,253.0,9,176
+925,-25.932599999999994,200,0.3055,100000,0.8245968284457922,73.0,261.0,16,180
+926,-65.85019999999999,200,0.30474999999999997,100000,0.8374639470875264,57.0,295.0,12,153
+927,2.8431999999999893,200,0.30400000000000005,100000,0.8678162208199501,71.0,224.0,23,176
+928,-13.409200000000006,200,0.30325,100000,0.8660376708209515,65.0,218.0,16,171
+929,-23.93099999999998,200,0.3025,100000,0.8616981154680252,74.0,254.0,14,169
+930,-19.188,200,0.30174999999999996,100000,0.8386921975016594,72.0,238.0,21,159
+931,-78.0296,200,0.30100000000000005,100000,0.8194660392403602,41.0,275.0,14,161
+932,-57.5862,200,0.30025,100000,0.8897423861920833,35.0,240.0,13,171
+933,14.951000000000027,200,0.2995,100000,0.9252372971177101,86.0,212.0,24,159
+934,-33.32000000000003,200,0.29874999999999996,100000,0.9173867256939411,67.0,270.0,21,170
+935,-64.49659999999999,200,0.29799999999999993,100000,0.9412467019259929,47.0,255.0,11,153
+936,-31.937199999999994,200,0.2972499999999999,100000,0.9103782719373703,72.0,270.0,18,163
+937,-25.368000000000016,200,0.2965,100000,0.8775207193940878,41.0,190.0,16,148
+938,-84.79099999999995,200,0.29574999999999996,100000,0.8190558433532715,28.0,272.0,11,155
+939,0.40220000000003164,200,0.29500000000000004,100000,0.8276014763116837,75.0,218.0,20,183
+940,-30.302599999999995,200,0.29425,100000,0.8963206496834755,47.0,221.0,17,150
+941,-40.035999999999994,200,0.2935,100000,0.8862689706683159,64.0,256.0,15,172
+942,45.1388,200,0.29274999999999995,100000,0.8373435992002487,86.0,170.0,21,168
+943,-61.309399999999926,200,0.29200000000000004,100000,0.8728831109404563,53.0,253.0,11,160
+944,-29.620599999999992,200,0.29125,100000,0.8634692956507206,62.0,263.0,23,173
+945,-32.822999999999986,200,0.2905,100000,0.8373129004240036,71.0,265.0,18,165
+946,-24.1892,200,0.28974999999999995,100000,0.8502325591444969,71.0,245.0,15,179
+947,7.390400000000006,200,0.2889999999999999,100000,0.8366042931377887,59.0,185.0,25,176
+948,-41.48439999999998,200,0.2882499999999999,100000,0.8637420111894607,56.0,281.0,22,170
+949,-17.1106,200,0.2875,100000,0.8599897933006286,69.0,239.0,18,180
+950,-4.73199999999998,200,0.28674999999999995,100000,0.8300899641215801,68.0,231.0,32,171
+951,-39.72579999999999,200,0.28600000000000003,100000,0.8282619747519493,53.0,250.0,17,159
+952,-7.104400000000009,200,0.28525,100000,0.8790636326372624,62.0,210.0,26,171
+953,-46.74899999999998,200,0.2845,100000,0.857754730284214,50.0,246.0,17,151
+954,-21.159599999999976,200,0.28375000000000006,100000,0.8316346402466297,62.0,229.0,17,174
+955,-24.6114,200,0.28300000000000003,100000,0.8302725702524185,72.0,270.0,15,139
+956,10.491199999999989,200,0.28225,100000,0.8423832939565181,85.0,233.0,16,168
+957,-4.558999999999996,200,0.2815,100000,0.89148850902915,71.0,212.0,23,168
+958,-43.45479999999997,200,0.28074999999999994,100000,0.8850611202418804,69.0,300.0,19,168
+959,-21.600199999999997,200,0.2799999999999999,100000,0.9197533994913101,59.0,214.0,17,164
+960,-63.54319999999997,200,0.27925,100000,0.8675413085520267,41.0,242.0,12,161
+961,-46.409800000000004,200,0.27849999999999997,100000,0.8373654100298882,53.0,260.0,12,157
+962,-19.06779999999998,200,0.27774999999999994,100000,0.8838885807991028,75.0,262.0,20,150
+963,-42.4594,200,0.277,100000,0.8696742759644985,44.0,224.0,10,151
+964,-28.25059999999999,200,0.27625,100000,0.8551642318069935,52.0,198.0,13,168
+965,-76.88639999999998,200,0.27549999999999997,100000,0.8318564154207706,47.0,296.0,16,154
+966,-74.87659999999998,200,0.27475000000000005,100000,0.8373192825913429,35.0,289.0,16,143
+967,-48.75880000000001,200,0.274,100000,0.8235083429515362,74.0,324.0,16,165
+968,-27.97719999999999,200,0.27325,100000,0.8539645867049694,50.0,189.0,9,146
+969,17.50759999999999,200,0.27249999999999996,100000,0.8500363568216562,78.0,194.0,20,159
+970,-12.436599999999995,200,0.27174999999999994,100000,0.8486099594831467,64.0,231.0,26,176
+971,-14.306199999999983,200,0.2709999999999999,100000,0.8477204318344593,59.0,233.0,22,160
+972,-9.082600000000001,200,0.27025,100000,0.8909357914328575,66.0,236.0,25,157
+973,-35.38820000000001,200,0.26949999999999996,100000,0.8819359883666038,61.0,274.0,16,155
+974,-22.52019999999999,200,0.26874999999999993,100000,0.8683270105719566,53.0,212.0,18,156
+975,3.192800000000016,200,0.268,100000,0.8823565299808979,72.0,201.0,19,176
+976,-21.388600000000014,200,0.26725,100000,0.8825051885843277,51.0,190.0,15,161
+977,44.04220000000004,200,0.26650000000000007,100000,0.8666723240911961,79.0,158.0,25,156
+978,-37.4392,200,0.26575000000000004,100000,0.8351020359247923,57.0,237.0,12,155
+979,3.4228000000000236,200,0.265,100000,0.8426177966594696,80.0,209.0,23,162
+980,-14.62740000000002,200,0.26425,100000,0.8524515357613563,66.0,220.0,23,166
+981,-13.77459999999999,200,0.26349999999999996,100000,0.8913311794400215,54.0,195.0,22,169
+982,32.480600000000024,200,0.26274999999999993,100000,0.8451008795201779,66.0,126.0,23,173
+983,-40.5562,200,0.262,100000,0.8733448734879494,53.0,253.0,11,169
+984,-16.01759999999997,200,0.26125,100000,0.8325137968361378,65.0,237.0,19,176
+985,-16.75879999999999,200,0.26049999999999995,100000,0.8938196854293347,63.0,220.0,25,168
+986,-29.88679999999999,200,0.2597499999999999,100000,0.8642531912028789,64.0,228.0,15,169
+987,8.766999999999989,200,0.259,100000,0.852129265293479,67.0,201.0,25,194
+988,-5.318800000000008,200,0.25825,100000,0.878973698168993,68.0,233.0,21,186
+989,-19.432799999999993,200,0.25750000000000006,100000,0.845274550318718,49.0,185.0,9,176
+990,58.35879999999995,200,0.25675000000000003,100000,0.790078795850277,87.0,144.0,26,161
+991,-19.7482,200,0.256,100000,0.8471714328229427,49.0,185.0,14,174
+992,-27.37799999999998,200,0.25525,100000,0.8429857432842255,55.0,228.0,13,169
+993,30.16280000000001,200,0.25449999999999995,100000,0.8515615457296372,75.0,146.0,18,159
+994,-55.42079999999997,200,0.2537499999999999,100000,0.8660542103648186,69.0,307.0,18,177
+995,-30.325000000000006,200,0.253,100000,0.8554767933487892,66.0,251.0,19,153
+996,5.070400000000022,200,0.25225,100000,0.8622678957879544,68.0,188.0,16,175
+997,-25.04099999999999,200,0.25149999999999995,100000,0.8083616391569376,62.0,257.0,14,139
+998,18.2118,200,0.2507499999999999,100000,0.8314024937152863,88.0,214.0,21,162
+999,-53.939199999999985,200,0.25,100000,0.8338798245787621,67.0,314.0,18,163
+1000,33.200000000000024,200,0.24925000000000008,100000,0.9359546454250812,78.0,168.0,25,148
+1001,-54.17999999999999,200,0.24850000000000005,100000,0.8909211632609367,46.0,264.0,16,166
+1002,-41.73999999999999,200,0.24775000000000003,100000,0.8735248475521803,57.0,272.0,19,168
+1003,3.7161999999999864,200,0.247,100000,0.8886100082099437,64.0,170.0,15,152
+1004,-12.055599999999991,200,0.24624999999999997,100000,0.8768691703677177,83.0,258.0,18,169
+1005,-22.40199999999998,200,0.24549999999999994,100000,0.8695329532027245,56.0,212.0,16,164
+1006,-17.80619999999999,200,0.24475000000000002,100000,0.8497307130694389,52.0,203.0,14,177
+1007,23.503000000000032,200,0.244,100000,0.8608608575165272,52.0,134.0,24,164
+1008,53.097200000000015,200,0.24324999999999997,100000,0.9088288250565529,97.0,168.0,21,163
+1009,18.51800000000005,200,0.24249999999999994,100000,0.8925649742037058,69.0,178.0,30,174
+1010,-24.358000000000015,200,0.2417499999999999,100000,0.8539662012457847,51.0,188.0,15,170
+1011,-30.452799999999986,200,0.241,100000,0.8807156057655812,51.0,228.0,13,147
+1012,12.146400000000023,200,0.24025000000000007,100000,0.8605604422092438,84.0,219.0,18,148
+1013,-42.536399999999965,200,0.23950000000000005,100000,0.8577536571025849,51.0,270.0,19,146
+1014,-40.81439999999996,200,0.23875000000000002,100000,0.8418788884580135,59.0,269.0,14,161
+1015,-55.05679999999997,200,0.238,100000,0.8036672174930573,42.0,258.0,15,156
+1016,-24.040999999999983,200,0.23724999999999996,100000,0.8076371374726296,79.0,281.0,26,139
+1017,-6.722800000000006,200,0.23649999999999993,100000,0.8444187597930431,64.0,206.0,17,152
+1018,14.545000000000023,200,0.23575000000000002,100000,0.8975699889659882,63.0,171.0,21,167
+1019,-8.727999999999975,200,0.235,100000,0.8931503249704837,69.0,230.0,19,164
+1020,-26.835800000000003,200,0.23424999999999996,100000,0.8020354069769382,74.0,270.0,18,165
+1021,-2.1980000000000075,200,0.23349999999999993,100000,0.8322732900083065,86.0,246.0,21,175
+1022,13.420000000000014,200,0.2327499999999999,100000,0.8598464447259903,70.0,177.0,21,148
+1023,-39.82379999999999,200,0.23199999999999998,100000,0.9127531035989523,32.0,190.0,14,145
+1024,-30.52459999999998,200,0.23125000000000007,100000,0.9246207784116268,70.0,251.0,14,158
+1025,-9.1598,200,0.23050000000000004,100000,0.8381128372251987,72.0,243.0,20,171
+1026,-31.918000000000003,200,0.22975,100000,0.8010518625378609,63.0,249.0,13,169
+1027,69.84500000000006,200,0.22899999999999998,100000,0.8059077866375446,91.0,120.0,27,167
+1028,36.27680000000002,200,0.22824999999999995,100000,0.8360034768283368,83.0,180.0,30,171
+1029,106.7076,200,0.22750000000000004,100000,0.8098530870676041,108.0,108.0,35,167
+1030,59.74319999999998,200,0.22675,100000,0.8078744488954545,86.0,125.0,21,171
+1031,-31.425199999999975,200,0.22599999999999998,100000,0.7990860058367253,71.0,276.0,13,165
+1032,-17.168599999999973,200,0.22524999999999995,100000,0.8259398429095746,52.0,210.0,21,163
+1033,6.841200000000011,200,0.22449999999999992,100000,0.8498179207742215,44.0,120.0,15,151
+1034,-8.59460000000001,200,0.2237499999999999,100000,0.8762433204799891,60.0,192.0,18,147
+1035,22.176399999999973,200,0.22299999999999998,100000,0.8287056782841682,104.0,244.0,23,145
+1036,9.021600000000007,200,0.22225000000000006,100000,0.8161480374634266,67.0,187.0,16,164
+1037,-39.82279999999997,200,0.22150000000000003,100000,0.8501775424182415,47.0,213.0,14,135
+1038,-54.632000000000005,200,0.22075,100000,0.8939037892222405,51.0,259.0,15,163
+1039,10.387800000000004,200,0.21999999999999997,100000,0.8331387113034725,73.0,191.0,19,140
+1040,21.374599999999962,200,0.21924999999999994,100000,0.8577920708060265,79.0,175.0,16,168
+1041,-21.96060000000001,200,0.21850000000000003,100000,0.852707392424345,62.0,229.0,17,134
+1042,-41.1076,200,0.21775,100000,0.8794138233363629,50.0,250.0,20,156
+1043,3.1127999999999973,200,0.21699999999999997,100000,0.8609540201723576,80.0,206.0,19,171
+1044,27.353600000000007,200,0.21624999999999994,100000,0.8398034770786762,84.0,189.0,28,169
+1045,52.50379999999996,200,0.2154999999999999,100000,0.8318503876030445,101.0,196.0,31,167
+1046,-13.206999999999988,200,0.21474999999999989,100000,0.8611699798703194,63.0,221.0,25,157
+1047,15.80040000000001,200,0.21399999999999997,100000,0.872977820634842,62.0,164.0,20,146
+1048,61.33560000000001,200,0.21325000000000005,100000,0.8842727115750313,96.0,162.0,34,172
+1049,35.22880000000001,200,0.21250000000000002,100000,0.874352760463953,71.0,140.0,23,154
+1050,-13.986799999999997,200,0.21175,100000,0.838136573061347,63.0,237.0,20,163
+1051,0.38260000000001737,200,0.21099999999999997,100000,0.8303488384187222,89.0,257.0,19,179
+1052,1.990199999999979,200,0.21025000000000005,100000,0.8189580298960208,65.0,209.0,22,162
+1053,44.66359999999998,200,0.20950000000000002,100000,0.8010679666697978,100.0,195.0,29,168
+1054,38.59080000000001,200,0.20875,100000,0.8282359308749437,100.0,206.0,28,166
+1055,14.099200000000005,200,0.20799999999999996,100000,0.7981179264187813,76.0,188.0,20,180
+1056,-17.030999999999985,200,0.20724999999999993,100000,0.8439327497780323,55.0,216.0,21,165
+1057,-20.970999999999986,200,0.2064999999999999,100000,0.8222188487648964,80.0,260.0,18,169
+1058,-5.133799999999999,200,0.20575,100000,0.8931308735907078,71.0,204.0,17,127
+1059,-18.466399999999986,200,0.20499999999999996,100000,0.8295163203030824,78.0,257.0,16,149
+1060,-55.681000000000026,200,0.20425000000000004,100000,0.8221842791140079,69.0,308.0,14,157
+1061,-26.730999999999995,200,0.20350000000000001,100000,0.8372350361943245,59.0,228.0,18,174
+1062,-30.41499999999999,200,0.20274999999999999,100000,0.8521683099865913,70.0,269.0,20,174
+1063,-12.458799999999977,200,0.20199999999999996,100000,0.8319997999072075,71.0,212.0,14,170
+1064,20.600200000000005,200,0.20125000000000004,100000,0.8402236406505108,68.0,158.0,17,148
+1065,25.03660000000004,200,0.2005,100000,0.800211201608181,89.0,207.0,20,149
+1066,13.639000000000012,200,0.19974999999999998,100000,0.8091219864785671,86.0,241.0,29,142
+1067,-56.409,200,0.19899999999999995,100000,0.8215694990754128,42.0,244.0,14,154
+1068,-25.98400000000001,200,0.19824999999999993,100000,0.8481075492501259,80.0,289.0,30,159
+1069,6.249000000000006,200,0.1974999999999999,100000,0.8739894516766071,51.0,153.0,23,146
+1070,28.336200000000023,200,0.19674999999999998,100000,0.8640681876242161,63.0,169.0,25,178
+1071,-20.093400000000006,200,0.19599999999999995,100000,0.8757170043885708,46.0,179.0,15,176
+1072,10.35920000000003,200,0.19525000000000003,100000,0.84533174097538,72.0,201.0,25,187
+1073,69.24900000000001,200,0.1945,100000,0.8224856586754322,84.0,123.0,34,177
+1074,-44.390800000000006,200,0.19374999999999998,100000,0.8081309995055199,66.0,284.0,20,147
+1075,-120.44820000000001,200,0.19300000000000006,100000,0.8394904543459415,46.0,387.0,9,155
+1076,-19.148199999999974,200,0.19225000000000003,100000,0.8166859748959542,54.0,206.0,19,152
+1077,-12.617599999999985,200,0.1915,100000,0.8261889134347439,33.0,155.0,19,161
+1078,-25.181399999999993,200,0.19074999999999998,100000,0.8546119712293148,92.0,311.0,22,167
+1079,0.028000000000004376,200,0.18999999999999995,100000,0.8573057952523232,76.0,230.0,21,169
+1080,-27.825000000000014,200,0.18924999999999992,100000,0.7920160947740078,50.0,221.0,19,169
+1081,-23.63079999999998,200,0.1885,100000,0.8069140475988388,49.0,226.0,27,157
+1082,12.886600000000033,200,0.18774999999999997,100000,0.8125891514122486,75.0,192.0,28,172
+1083,2.7861999999999925,200,0.18699999999999994,100000,0.8253148709237575,95.0,264.0,23,162
+1084,3.6811999999999987,200,0.18625000000000003,100000,0.8356659418344498,76.0,213.0,17,153
+1085,63.132600000000004,200,0.1855,100000,0.8859607258439064,113.0,206.0,25,176
+1086,-2.5829999999999993,200,0.18474999999999997,100000,0.882455209940672,56.0,181.0,17,140
+1087,45.60840000000003,200,0.18400000000000005,100000,0.880489017367363,80.0,150.0,19,156
+1088,43.160799999999995,200,0.18325000000000002,100000,0.8439922206103802,73.0,159.0,33,161
+1089,16.408799999999964,200,0.1825,100000,0.8443416547775269,90.0,234.0,27,169
+1090,46.1844,200,0.18174999999999997,100000,0.836658483594656,95.0,178.0,28,175
+1091,21.857400000000005,200,0.18099999999999994,100000,0.8746121142804623,80.0,194.0,24,167
+1092,-30.83299999999995,200,0.1802499999999999,100000,0.8633870497345925,76.0,286.0,18,151
+1093,54.88719999999998,200,0.1795,100000,0.8516296067833901,89.0,157.0,31,161
+1094,-2.0269999999999566,200,0.17874999999999996,100000,0.8428328253328801,69.0,205.0,18,169
+1095,58.6354,200,0.17799999999999994,100000,0.8888614004850388,97.0,183.0,28,171
+1096,-24.188600000000005,200,0.17725000000000002,100000,0.8799625317752361,71.0,261.0,17,145
+1097,-68.51619999999997,200,0.1765,100000,0.844424440562725,33.0,259.0,17,166
+1098,38.85059999999998,200,0.17574999999999996,100000,0.8270188947021961,69.0,148.0,25,152
+1099,46.59580000000001,200,0.17500000000000004,100000,0.8119241261482238,86.0,185.0,30,163
+1100,25.61659999999996,200,0.17425000000000002,100000,0.8421520151942968,71.0,179.0,21,156
+1101,-32.974799999999945,200,0.1735,100000,0.82650485470891,45.0,235.0,27,177
+1102,12.027600000000048,200,0.17274999999999996,100000,0.8455293102562428,68.0,194.0,19,148
+1103,73.98179999999998,200,0.17199999999999993,100000,0.8227059385925531,104.0,147.0,23,152
+1104,19.45500000000001,200,0.17125,100000,0.8380425117909909,52.0,148.0,22,150
+1105,48.44620000000004,200,0.17049999999999998,100000,0.7619986145198345,95.0,192.0,26,169
+1106,-10.385199999999996,200,0.16974999999999996,100000,0.80366778627038,47.0,185.0,25,157
+1107,28.930800000000005,200,0.16899999999999993,100000,0.852356583327055,90.0,216.0,32,161
+1108,39.49660000000001,200,0.16825,100000,0.8513005033135415,77.0,150.0,24,170
+1109,-42.2732,200,0.16749999999999998,100000,0.9005856868624688,49.0,249.0,11,150
+1110,28.515399999999985,200,0.16675000000000006,100000,0.8329670625925064,66.0,181.0,36,154
+1111,11.825999999999983,200,0.16600000000000004,100000,0.7940892188251019,74.0,219.0,21,141
+1112,-31.164399999999993,200,0.16525,100000,0.8354012328386307,51.0,212.0,17,148
+1113,-29.917599999999986,200,0.16449999999999998,100000,0.7778080366551876,49.0,216.0,21,150
+1114,59.71679999999999,200,0.16374999999999995,100000,0.8335733313858509,89.0,154.0,35,169
+1115,-54.46619999999996,200,0.16299999999999992,100000,0.8247283442318439,65.0,302.0,17,133
+1116,50.9382,200,0.16225,100000,0.8224709002673626,90.0,145.0,26,174
+1117,106.00919999999998,200,0.16149999999999998,100000,0.8515326051414013,122.0,140.0,37,174
+1118,5.901399999999999,200,0.16074999999999995,100000,0.8674603860080242,71.0,215.0,16,154
+1119,34.81020000000003,200,0.15999999999999992,100000,0.9104967780411244,89.0,211.0,24,146
+1120,-1.2404000000000024,200,0.15925,100000,0.839038259536028,71.0,219.0,23,140
+1121,30.87960000000004,200,0.15849999999999997,100000,0.8511708235740661,81.0,159.0,20,190
+1122,-19.977599999999992,200,0.15775000000000006,100000,0.8424928098917007,59.0,224.0,21,147
+1123,57.00080000000003,200,0.15700000000000003,100000,0.8614897684752941,86.0,149.0,27,180
+1124,34.900000000000034,200,0.15625,100000,0.8893294617533684,71.0,155.0,25,160
+1125,-1.5681999999999687,200,0.15549999999999997,100000,0.8950682748854161,86.0,259.0,22,166
+1126,23.569600000000026,200,0.15474999999999994,100000,0.9074195859581232,70.0,158.0,23,154
+1127,-0.11659999999997805,200,0.15400000000000003,100000,0.858574233353138,59.0,177.0,11,181
+1128,-9.902599999999998,200,0.15325,100000,0.8281570854783058,61.0,207.0,16,170
+1129,32.90920000000003,200,0.15249999999999997,100000,0.8033795255422592,105.0,229.0,21,173
+1130,-35.4046,200,0.15174999999999994,100000,0.8443078089505434,64.0,280.0,19,148
+1131,-102.04220000000001,200,0.1509999999999999,100000,0.8239711640775204,35.0,295.0,12,118
+1132,-34.622199999999985,200,0.15025,100000,0.8301430363953114,60.0,251.0,16,138
+1133,11.071999999999989,200,0.14950000000000008,100000,0.8523183573782444,83.0,237.0,18,141
+1134,11.026199999999996,200,0.14875000000000005,100000,0.846889300942421,66.0,205.0,28,154
+1135,27.536799999999992,200,0.14800000000000002,100000,0.8178150695562363,89.0,199.0,19,158
+1136,31.791600000000013,200,0.14725,100000,0.8093762768805027,90.0,199.0,25,190
+1137,-4.782599999999992,200,0.14649999999999996,100000,0.849244372099638,62.0,202.0,20,168
+1138,2.4752000000000085,200,0.14574999999999994,100000,0.8507890674471855,59.0,198.0,28,158
+1139,35.14279999999998,200,0.14500000000000002,100000,0.8531287930905819,83.0,186.0,23,179
+1140,-2.192599999999999,200,0.14425,100000,0.8358604012429715,58.0,185.0,23,147
+1141,-40.22379999999997,200,0.14349999999999996,100000,0.83675157725811,53.0,254.0,18,154
+1142,-25.469800000000014,200,0.14274999999999993,100000,0.8334296508133412,67.0,260.0,19,160
+1143,-1.3001999999999978,200,0.1419999999999999,100000,0.8516028581559658,60.0,191.0,20,144
+1144,7.939000000000004,200,0.14125,100000,0.8221327690780162,62.0,176.0,24,153
+1145,18.4392,200,0.14050000000000007,100000,0.865758941322565,92.0,244.0,29,168
+1146,66.35699999999997,200,0.13975000000000004,100000,0.8476573804020882,82.0,117.0,22,158
+1147,-39.55819999999998,200,0.139,100000,0.8642386630177498,46.0,231.0,16,163
+1148,71.84599999999999,200,0.13824999999999998,100000,0.8615872789919377,96.0,155.0,33,175
+1149,-64.79519999999998,200,0.13749999999999996,100000,0.8721181231737137,44.0,267.0,13,170
+1150,15.393999999999997,200,0.13675000000000004,100000,0.8628362719714642,76.0,202.0,22,171
+1151,104.46219999999998,200,0.136,100000,0.8394009071588516,97.0,91.0,32,170
+1152,22.089399999999987,200,0.13524999999999998,100000,0.8847363023459911,67.0,155.0,16,179
+1153,-41.345199999999984,200,0.13449999999999995,100000,0.9154200410842895,61.0,294.0,20,162
+1154,32.260999999999996,200,0.13374999999999992,100000,0.8847428493201732,68.0,145.0,26,171
+1155,-51.480999999999995,200,0.1329999999999999,100000,0.8761978025734425,53.0,264.0,18,155
+1156,-31.850399999999972,200,0.13224999999999998,100000,0.8620940777659416,40.0,221.0,18,157
+1157,31.45760000000001,200,0.13150000000000006,100000,0.8707045637071132,79.0,194.0,33,164
+1158,8.78100000000001,200,0.13075000000000003,100000,0.8300264815986157,96.0,279.0,25,153
+1159,-13.620599999999962,200,0.13,100000,0.8298621797561645,60.0,210.0,17,150
+1160,47.539600000000036,200,0.12924999999999998,100000,0.8685459488630295,81.0,147.0,28,163
+1161,15.047600000000001,200,0.12849999999999995,100000,0.8670544880628586,69.0,181.0,19,155
+1162,-12.681400000000007,200,0.12775000000000003,100000,0.8255228878557682,65.0,229.0,21,189
+1163,-45.09659999999998,200,0.127,100000,0.8362188729643821,50.0,252.0,16,148
+1164,63.938000000000024,200,0.12624999999999997,100000,0.8480323886871338,100.0,165.0,25,149
+1165,9.996799999999993,200,0.12549999999999994,100000,0.86219771951437,88.0,225.0,21,155
+1166,2.9504000000000103,200,0.12474999999999992,100000,0.8797137559950352,70.0,190.0,15,125
+1167,31.33260000000001,200,0.12399999999999989,100000,0.8563138511776924,60.0,155.0,39,190
+1168,72.63039999999995,200,0.12324999999999997,100000,0.8429568848013878,97.0,147.0,35,174
+1169,84.99619999999996,200,0.12250000000000005,100000,0.8942324469983578,110.0,165.0,37,167
+1170,2.4748000000000023,200,0.12175000000000002,100000,0.8258326004445553,77.0,216.0,23,147
+1171,50.6682,200,0.121,100000,0.8617356579005718,70.0,125.0,28,165
+1172,-9.672999999999973,200,0.12024999999999997,100000,0.8564149299263955,59.0,233.0,24,155
+1173,47.612000000000016,200,0.11949999999999994,100000,0.8740604096651077,81.0,173.0,37,154
+1174,48.09180000000002,200,0.11875000000000002,100000,0.9205195766687393,84.0,162.0,25,178
+1175,-4.37,200,0.118,100000,0.8620895504951477,37.0,153.0,21,167
+1176,38.07,200,0.11724999999999997,100000,0.8813102339208126,100.0,220.0,24,173
+1177,50.581599999999995,200,0.11649999999999994,100000,0.8739950904250144,90.0,159.0,23,175
+1178,10.95380000000001,200,0.11574999999999991,100000,0.8868567380309105,60.0,180.0,22,136
+1179,-35.460199999999965,200,0.11499999999999999,100000,0.852124814838171,70.0,292.0,22,167
+1180,-38.04319999999998,200,0.11424999999999996,100000,0.8145478041470051,67.0,281.0,19,168
+1181,29.68299999999997,200,0.11350000000000005,100000,0.8189817233383656,70.0,152.0,18,146
+1182,16.646600000000007,200,0.11275000000000002,100000,0.8050081726908683,78.0,217.0,25,141
+1183,34.57060000000003,200,0.11199999999999999,100000,0.8101912322640419,82.0,188.0,26,174
+1184,42.06579999999998,200,0.11124999999999996,100000,0.8314918279647827,68.0,141.0,24,146
+1185,0.27380000000001564,200,0.11050000000000004,100000,0.9050335104763508,43.0,143.0,16,154
+1186,36.72559999999999,200,0.10975000000000001,100000,0.8696349148452281,104.0,217.0,27,160
+1187,16.498199999999972,200,0.10899999999999999,100000,0.8774706093966961,81.0,214.0,24,163
+1188,87.5916,200,0.10824999999999996,100000,0.895842786282301,98.0,114.0,38,174
+1189,-42.8862,200,0.10749999999999993,100000,0.8714445178210736,62.0,297.0,19,139
+1190,59.285000000000025,200,0.1067499999999999,100000,0.8993536022305488,97.0,179.0,35,164
+1191,81.55279999999998,200,0.10599999999999998,100000,0.8575150226056576,108.0,141.0,28,146
+1192,48.174400000000006,200,0.10524999999999995,100000,0.845697070658207,77.0,130.0,21,125
+1193,70.668,200,0.10450000000000004,100000,0.8443113188445568,80.0,99.0,21,156
+1194,23.86699999999998,200,0.10375000000000001,100000,0.8575507526099682,77.0,211.0,25,157
+1195,73.873,200,0.10299999999999998,100000,0.8555765318870544,99.0,169.0,27,144
+1196,14.373200000000013,200,0.10224999999999995,100000,0.8254559510946273,99.0,290.0,31,128
+1197,13.701999999999979,200,0.10150000000000003,100000,0.8434845913946628,75.0,180.0,23,165
+1198,55.81099999999993,200,0.10075,100000,0.8622064842283725,105.0,201.0,28,148
+1199,57.22900000000002,200,0.1,100000,0.8305572764575482,93.0,168.0,33,164
+1200,67.0738,200,0.1,100000,0.8777273918688298,87.0,124.0,25,184
+1201,15.858799999999999,200,0.1,100000,0.8733241906762124,71.0,186.0,19,170
+1202,18.397799999999986,200,0.1,100000,0.8541208592802286,60.0,177.0,24,137
+1203,51.60339999999997,200,0.1,100000,0.8408029340207577,69.0,106.0,25,148
+1204,55.65260000000001,200,0.1,100000,0.8240539208054543,90.0,158.0,27,146
+1205,38.446400000000004,200,0.1,100000,0.8572773264348507,95.0,202.0,28,180
+1206,45.74940000000001,200,0.1,100000,0.8448623383045196,90.0,160.0,22,145
+1207,7.1873999999999905,200,0.1,100000,0.8379212069511414,73.0,201.0,19,122
+1208,-64.965,200,0.1,100000,0.7997319819033146,58.0,302.0,14,132
+1209,41.82760000000001,200,0.1,100000,0.819145270884037,87.0,160.0,19,127
+1210,26.538799999999984,200,0.1,100000,0.8389203061163425,74.0,184.0,25,160
+1211,6.157600000000004,200,0.1,100000,0.8787257701158524,98.0,260.0,24,156
+1212,30.595000000000006,200,0.1,100000,0.8872659122943878,84.0,163.0,20,158
+1213,54.20420000000001,200,0.1,100000,0.8430496779084206,88.0,166.0,26,150
+1214,9.093599999999997,200,0.1,100000,0.8742528490722179,82.0,232.0,24,161
+1215,29.373200000000008,200,0.1,100000,0.8938530993461609,88.0,217.0,24,145
+1216,28.744200000000017,200,0.1,100000,0.8727793189883232,72.0,177.0,23,157
+1217,33.66439999999999,200,0.1,100000,0.8959851266443729,96.0,206.0,28,169
+1218,-38.01459999999999,200,0.1,100000,0.8350145341455937,50.0,250.0,21,146
+1219,10.963400000000007,200,0.1,100000,0.8374363915622234,77.0,223.0,19,151
+1220,46.02480000000002,200,0.1,100000,0.8212121407687664,91.0,199.0,25,168
+1221,-6.519599999999989,200,0.1,100000,0.8535993860661983,72.0,240.0,25,158
+1222,52.48979999999999,200,0.1,100000,0.8337215653061867,102.0,168.0,22,150
+1223,22.127400000000012,200,0.1,100000,0.8210860055685043,92.0,226.0,26,165
+1224,53.77199999999998,200,0.1,100000,0.8559440663456916,96.0,174.0,25,154
+1225,-31.97699999999999,200,0.1,100000,0.8321675895154477,62.0,258.0,23,172
+1226,32.20920000000001,200,0.1,100000,0.8526662856340408,95.0,212.0,26,147
+1227,64.03900000000003,200,0.1,100000,0.8011567501723766,103.0,166.0,26,151
+1228,-12.890999999999984,200,0.1,100000,0.833063973635435,47.0,193.0,20,160
+1229,-15.548999999999994,200,0.1,100000,0.829140691012144,60.0,220.0,17,174
+1230,-9.134799999999993,200,0.1,100000,0.8256042116880417,87.0,287.0,26,173
+1231,48.05380000000003,200,0.1,100000,0.8073277665674686,96.0,215.0,29,159
+1232,65.59860000000005,200,0.1,100000,0.8669433081150055,87.0,140.0,31,148
+1233,2.2602000000000206,200,0.1,100000,0.8388035029172898,77.0,230.0,23,133
+1234,-19.30999999999998,200,0.1,100000,0.860390667617321,53.0,193.0,14,159
+1235,17.991799999999998,200,0.1,100000,0.7872490008175373,73.0,193.0,28,148
+1236,58.249599999999994,200,0.1,100000,0.7842854158580304,79.0,140.0,33,164
+1237,88.2958,200,0.1,100000,0.8379775403439998,119.0,170.0,27,171
+1238,75.66940000000001,200,0.1,100000,0.8297309510409832,95.0,138.0,25,142
+1239,56.4466,200,0.1,100000,0.8601651008427144,81.0,123.0,27,173
+1240,43.15500000000001,200,0.1,100000,0.8588167713582515,78.0,178.0,37,162
+1241,21.125400000000006,200,0.1,100000,0.7984083460271358,94.0,215.0,23,183
+1242,33.5766,200,0.1,100000,0.8436850570142269,86.0,193.0,27,168
+1243,50.07800000000002,200,0.1,100000,0.8470261868834496,72.0,147.0,32,151
+1244,60.005000000000045,200,0.1,100000,0.8323361073434353,74.0,99.0,24,156
+1245,58.12859999999998,200,0.1,100000,0.8821552914381027,95.0,162.0,30,145
+1246,71.18359999999998,200,0.1,100000,0.854335834234953,104.0,177.0,30,187
+1247,37.502199999999995,200,0.1,100000,0.8612492296099663,74.0,185.0,28,186
+1248,-3.361999999999992,200,0.1,100000,0.804130784869194,60.0,198.0,21,141
+1249,15.024600000000012,200,0.1,100000,0.8048053130507469,64.0,170.0,29,180
+1250,86.81159999999996,200,0.1,100000,0.7947692693769932,114.0,165.0,34,168
+1251,77.53160000000007,200,0.1,100000,0.803653572499752,100.0,154.0,34,153
+1252,17.17439999999999,200,0.1,100000,0.8413390311598777,85.0,214.0,32,147
+1253,35.98299999999994,200,0.1,100000,0.8319059911370278,90.0,186.0,22,145
+1254,-63.69399999999999,200,0.1,100000,0.8240968683362007,52.0,268.0,14,115
+1255,-35.878199999999985,200,0.1,100000,0.8942370356619358,49.0,257.0,20,133
+1256,8.684600000000012,200,0.1,100000,0.8849949629604816,59.0,196.0,19,152
+1257,-13.753400000000008,200,0.1,100000,0.8433088785409928,65.0,223.0,22,177
+1258,13.480199999999979,200,0.1,100000,0.8201474177837372,70.0,197.0,25,157
+1259,45.92020000000001,200,0.1,100000,0.8320823121070862,82.0,172.0,28,169
+1260,-11.908599999999977,200,0.1,100000,0.8474936799705028,81.0,238.0,16,154
+1261,23.771799999999992,200,0.1,100000,0.879976882636547,77.0,204.0,29,161
+1262,-8.490400000000005,200,0.1,100000,0.8594872890412808,56.0,196.0,20,143
+1263,39.629600000000075,200,0.1,100000,0.8634505222737789,77.0,166.0,29,168
+1264,-46.14279999999997,200,0.1,100000,0.8593190704286099,67.0,304.0,20,146
+1265,-21.7388,200,0.1,100000,0.8316615274548531,69.0,233.0,18,172
+1266,-13.827799999999975,200,0.1,100000,0.8468559800833464,63.0,230.0,25,139
+1267,36.013799999999996,200,0.1,100000,0.8284017311036587,82.0,189.0,25,149
+1268,47.52820000000002,200,0.1,100000,0.8568928970396519,104.0,206.0,29,173
+1269,62.21240000000002,200,0.1,100000,0.8236421579122544,85.0,133.0,22,153
+1270,-48.279199999999996,200,0.1,100000,0.8250309260189533,64.0,308.0,14,154
+1271,14.088600000000012,200,0.1,100000,0.8383137108385563,82.0,227.0,22,154
+1272,35.324400000000004,200,0.1,100000,0.8368201893568039,111.0,267.0,31,171
+1273,13.902400000000009,200,0.1,100000,0.8455105982720852,70.0,198.0,21,155
+1274,-37.157999999999994,200,0.1,100000,0.8519437375664711,72.0,300.0,22,160
+1275,93.13180000000004,200,0.1,100000,0.8237232738733291,104.0,140.0,32,157
+1276,58.929399999999966,200,0.1,100000,0.8108342008292675,105.0,179.0,27,166
+1277,-12.7822,200,0.1,100000,0.7780570003390312,66.0,234.0,18,170
+1278,-20.589599999999994,200,0.1,100000,0.7832748253643512,56.0,235.0,28,164
+1279,-12.005799999999994,200,0.1,100000,0.7818370763957501,71.0,244.0,14,166
+1280,25.158000000000015,200,0.1,100000,0.7920040066540242,71.0,151.0,21,147
+1281,-1.374599999999974,200,0.1,100000,0.792790502756834,87.0,249.0,21,147
+1282,7.741600000000018,200,0.1,100000,0.8317401012778283,74.0,233.0,28,173
+1283,31.480000000000036,200,0.1,100000,0.8451706598699092,77.0,193.0,33,164
+1284,54.74299999999995,200,0.1,100000,0.8393190582096577,79.0,147.0,32,159
+1285,19.527799999999985,200,0.1,100000,0.8325835233926773,65.0,172.0,26,140
+1286,-18.639399999999988,200,0.1,100000,0.8540545687079429,71.0,267.0,26,172
+1287,89.607,200,0.1,100000,0.8542932721227408,109.0,160.0,31,161
+1288,39.56260000000004,200,0.1,100000,0.8435812413692474,77.0,155.0,25,156
+1289,13.035599999999972,200,0.1,100000,0.8613309907913208,55.0,171.0,24,146
+1290,50.67880000000001,200,0.1,100000,0.8522655603289604,92.0,170.0,28,175
+1291,16.907199999999996,200,0.1,100000,0.8485025928914547,82.0,217.0,23,173
+1292,82.57539999999996,200,0.1,100000,0.8393366768956184,96.0,97.0,24,177
+1293,-36.63959999999998,200,0.1,100000,0.814018788933754,59.0,265.0,19,163
+1294,62.66180000000004,200,0.1,100000,0.8459444969892502,74.0,104.0,24,151
+1295,44.772200000000005,200,0.1,100000,0.8135988280177117,77.0,152.0,28,150
+1296,53.627399999999994,200,0.1,100000,0.8431769712269306,103.0,209.0,29,138
+1297,34.77120000000003,200,0.1,100000,0.8177135597169399,90.0,203.0,27,160
+1298,-10.869799999999989,200,0.1,100000,0.817064303457737,55.0,207.0,20,183
+1299,-14.375599999999993,200,0.1,100000,0.8597058117389679,58.0,207.0,13,164
+1300,35.202200000000026,200,0.1,100000,0.8201835677027702,88.0,192.0,23,158
+1301,18.99079999999998,200,0.1,100000,0.8487767884135247,85.0,205.0,24,174
+1302,86.15819999999998,200,0.1,100000,0.8381548769772053,107.0,154.0,30,166
+1303,18.0438,200,0.1,100000,0.804137418717146,87.0,220.0,32,188
+1304,3.151000000000015,200,0.1,100000,0.8502460144460201,51.0,183.0,22,155
+1305,9.242600000000056,200,0.1,100000,0.8430139043927193,81.0,221.0,20,154
+1306,21.181599999999992,200,0.1,100000,0.8411376555263996,91.0,257.0,26,157
+1307,54.59179999999999,200,0.1,100000,0.8637698891758919,102.0,195.0,26,163
+1308,30.478799999999985,200,0.1,100000,0.8741688388586044,84.0,211.0,32,156
+1309,31.20819999999999,200,0.1,100000,0.8388801488280296,78.0,169.0,24,151
+1310,68.45620000000004,200,0.1,100000,0.8252202565222979,91.0,139.0,27,166
+1311,36.5708,200,0.1,100000,0.8664533086121082,88.0,207.0,31,175
+1312,-53.445199999999986,200,0.1,100000,0.8719362792372704,48.0,249.0,20,133
+1313,2.0733999999999653,200,0.1,100000,0.8823451766371727,67.0,239.0,23,152
+1314,-41.112999999999985,200,0.1,100000,0.8512336303293705,66.0,287.0,18,138
+1315,-9.435599999999994,200,0.1,100000,0.8666161477565766,72.0,243.0,22,149
+1316,27.43660000000001,200,0.1,100000,0.8578204709291458,89.0,191.0,25,180
+1317,26.94420000000001,200,0.1,100000,0.8232486881315708,74.0,176.0,22,146
+1318,0.30919999999999614,200,0.1,100000,0.7975210942327976,70.0,195.0,19,143
+1319,54.05420000000001,200,0.1,100000,0.8521431793272495,95.0,173.0,27,153
+1320,1.09060000000001,200,0.1,100000,0.801768511980772,76.0,228.0,20,152
+1321,24.222999999999995,200,0.1,100000,0.7542028070241212,80.0,210.0,27,138
+1322,0.22920000000000318,200,0.1,100000,0.8072376281023026,93.0,265.0,31,155
+1323,20.127600000000005,200,0.1,100000,0.829572692066431,76.0,219.0,33,177
+1324,10.21680000000001,200,0.1,100000,0.8331169943511486,51.0,152.0,24,172
+1325,20.9142,200,0.1,100000,0.8463151919841766,69.0,163.0,17,166
+1326,37.81300000000003,200,0.1,100000,0.8331454987823963,67.0,154.0,29,160
+1327,18.2556,200,0.1,100000,0.7942505246400833,91.0,232.0,19,160
+1328,7.053599999999984,200,0.1,100000,0.7990492168068886,63.0,201.0,26,160
+1329,57.878800000000005,200,0.1,100000,0.7630749061703682,93.0,185.0,26,154
+1330,-3.493399999999988,200,0.1,100000,0.8019300612807274,79.0,232.0,20,158
+1331,-16.2448,200,0.1,100000,0.8196047477424144,54.0,219.0,27,137
+1332,9.927200000000042,200,0.1,100000,0.7990183959901332,81.0,213.0,19,165
+1333,57.444599999999994,200,0.1,100000,0.7813008160889149,108.0,202.0,26,163
+1334,81.90679999999998,200,0.1,100000,0.8117115296423435,93.0,111.0,33,177
+1335,1.593199999999989,200,0.1,100000,0.8303711028397083,92.0,261.0,24,151
+1336,-38.489999999999995,200,0.1,100000,0.8445909705758095,56.0,254.0,20,148
+1337,92.43159999999997,200,0.1,100000,0.8223148152977228,98.0,104.0,30,161
+1338,40.88300000000001,200,0.1,100000,0.7734281788766384,85.0,170.0,26,150
+1339,42.28720000000002,200,0.1,100000,0.8016991828382015,84.0,157.0,27,156
+1340,33.77000000000002,200,0.1,100000,0.8135947392880917,70.0,149.0,24,155
+1341,77.87439999999998,200,0.1,100000,0.7844406668841839,107.0,143.0,27,158
+1342,-16.649199999999986,200,0.1,100000,0.7893954855203629,66.0,230.0,18,139
+1343,24.782400000000028,200,0.1,100000,0.8149037799239158,75.0,180.0,25,175
+1344,33.81840000000001,200,0.1,100000,0.811232455521822,91.0,212.0,27,146
+1345,2.3574000000000197,200,0.1,100000,0.7814921559393406,74.0,224.0,28,167
+1346,17.410400000000003,200,0.1,100000,0.7918656671047211,69.0,194.0,32,168
+1347,56.80840000000003,200,0.1,100000,0.8200916661322117,100.0,196.0,37,153
+1348,10.420400000000011,200,0.1,100000,0.8237697833776474,69.0,191.0,23,163
+1349,85.29360000000005,200,0.1,100000,0.8437879155576229,94.0,143.0,44,179
+1350,18.3704,200,0.1,100000,0.7974580490589142,77.0,208.0,20,167
+1351,31.65940000000001,200,0.1,100000,0.8081604881584644,78.0,184.0,31,181
+1352,30.579,200,0.1,100000,0.8182205545902252,77.0,189.0,33,180
+1353,11.916000000000025,200,0.1,100000,0.8219291470944882,77.0,214.0,23,162
+1354,82.7486,200,0.1,100000,0.8094983732700348,91.0,135.0,37,170
+1355,58.25020000000001,200,0.1,100000,0.7724721266329289,104.0,186.0,28,183
+1356,55.6054,200,0.1,100000,0.764410928785801,91.0,179.0,31,175
+1357,70.36060000000002,200,0.1,100000,0.789422248005867,70.0,79.0,26,154
+1358,41.668000000000006,200,0.1,100000,0.851308785378933,76.0,154.0,36,179
+1359,21.06580000000002,200,0.1,100000,0.8437267573177815,62.0,173.0,28,179
+1360,-17.415399999999977,200,0.1,100000,0.7835161677002906,57.0,217.0,21,169
+1361,31.698400000000003,200,0.1,100000,0.7813372252881527,73.0,166.0,26,142
+1362,65.5416,200,0.1,100000,0.7940823099017144,110.0,165.0,19,172
+1363,-1.9805999999999961,200,0.1,100000,0.8143164904415607,54.0,175.0,22,166
+1364,27.294000000000036,200,0.1,100000,0.8022529374063015,88.0,228.0,24,162
+1365,32.91959999999997,200,0.1,100000,0.842941447943449,52.0,125.0,23,180
+1366,-18.895800000000026,200,0.1,100000,0.8556607756763697,70.0,243.0,23,154
+1367,54.84360000000002,200,0.1,100000,0.8129581205546856,102.0,205.0,36,173
+1368,2.1546000000000056,200,0.1,100000,0.7879004651308059,66.0,231.0,25,167
+1369,63.18500000000002,200,0.1,100000,0.7842856186628342,91.0,145.0,21,147
+1370,9.528600000000008,200,0.1,100000,0.8358102071285248,72.0,200.0,20,155
+1371,58.62600000000005,200,0.1,100000,0.8336264964938164,84.0,138.0,29,163
+1372,14.992400000000016,200,0.1,100000,0.8496366767585277,80.0,207.0,18,126
+1373,41.043400000000005,200,0.1,100000,0.8349583917856216,93.0,182.0,23,162
+1374,-16.03659999999998,200,0.1,100000,0.8088883690536022,73.0,247.0,25,167
+1375,-9.272999999999973,200,0.1,100000,0.833764398097992,83.0,256.0,25,162
+1376,95.40780000000002,200,0.1,100000,0.8490122047066688,107.0,106.0,25,157
+1377,-37.464399999999955,200,0.1,100000,0.8118383021652699,47.0,242.0,16,163
+1378,14.078399999999974,200,0.1,100000,0.8365473285317421,86.0,221.0,27,163
+1379,-26.77459999999998,200,0.1,100000,0.8307033108174801,55.0,221.0,17,146
+1380,27.487399999999994,200,0.1,100000,0.7816814431548118,86.0,194.0,20,139
+1381,18.429600000000008,200,0.1,100000,0.7830247157812118,71.0,178.0,24,173
+1382,21.28020000000004,200,0.1,100000,0.779609596580267,84.0,205.0,25,178
+1383,-10.504199999999996,200,0.1,100000,0.8023079918324947,55.0,201.0,21,158
+1384,6.404200000000007,200,0.1,100000,0.7952738618850708,65.0,200.0,31,159
+1385,43.022600000000025,200,0.1,100000,0.7960916928946972,102.0,204.0,31,172
+1386,34.827,200,0.1,100000,0.8015078754723072,78.0,173.0,33,180
+1387,96.00419999999997,200,0.1,100000,0.8253126369416713,129.0,181.0,32,161
+1388,-33.846000000000004,200,0.1,100000,0.8354532395303249,70.0,285.0,21,150
+1389,-26.43479999999999,200,0.1,100000,0.8291650073230267,68.0,257.0,17,176
+1390,-12.613999999999976,200,0.1,100000,0.8046654875576497,68.0,239.0,26,160
+1391,-41.51719999999999,200,0.1,100000,0.8664766231179237,44.0,227.0,26,177
+1392,38.2642,200,0.1,100000,0.8154087863862515,80.0,162.0,29,182
+1393,18.12800000000003,200,0.1,100000,0.7883628797531128,99.0,221.0,18,153
+1394,35.838600000000014,200,0.1,100000,0.8151633286476135,86.0,176.0,27,175
+1395,-1.9107999999999974,200,0.1,100000,0.841731830984354,54.0,209.0,37,165
+1396,21.393,200,0.1,100000,0.8154048031568527,80.0,202.0,22,146
+1397,27.787000000000003,200,0.1,100000,0.8136371073126792,109.0,265.0,28,169
+1398,50.07839999999999,200,0.1,100000,0.8519879539310932,86.0,153.0,28,164
+1399,20.19279999999998,200,0.1,100000,0.8077731393277645,73.0,188.0,26,174
+1400,61.771599999999985,200,0.1,100000,0.807333824634552,98.0,175.0,39,172
+1401,-6.608399999999983,200,0.1,100000,0.8095624524354935,73.0,245.0,30,146
+1402,-56.3962,200,0.1,100000,0.8139343975484371,60.0,273.0,12,163
+1403,37.2696,200,0.1,100000,0.8412923718988895,83.0,184.0,22,170
+1404,56.1188,200,0.1,100000,0.8690293139219284,111.0,197.0,29,154
+1405,20.186799999999998,200,0.1,100000,0.8199254286289215,63.0,151.0,17,147
+1406,32.847200000000015,200,0.1,100000,0.8298947355151176,92.0,194.0,23,129
+1407,33.12420000000001,200,0.1,100000,0.8211154542863369,85.0,162.0,18,170
+1408,-14.74659999999998,200,0.1,100000,0.8622904714941978,78.0,265.0,24,168
+1409,-29.11220000000001,200,0.1,100000,0.8388923129439354,53.0,228.0,16,128
+1410,52.79139999999997,200,0.1,100000,0.8218268862366677,96.0,178.0,24,144
+1411,49.87660000000004,200,0.1,100000,0.8374734649062157,94.0,179.0,27,164
+1412,58.69960000000005,200,0.1,100000,0.8269372354447841,77.0,140.0,32,174
+1413,45.50019999999998,200,0.1,100000,0.8508076611161232,77.0,156.0,25,154
+1414,-45.4776,200,0.1,100000,0.8145171166956424,55.0,280.0,26,173
+1415,83.0964,200,0.1,100000,0.8434783379733563,110.0,164.0,36,170
+1416,44.68439999999999,200,0.1,100000,0.8581690296530724,87.0,171.0,23,160
+1417,-65.76140000000002,200,0.1,100000,0.8486993201076984,62.0,308.0,16,127
+1418,109.34660000000002,200,0.1,100000,0.8023721216619015,107.0,96.0,34,157
+1419,-9.462799999999993,200,0.1,100000,0.8063890099525451,66.0,219.0,18,165
+1420,62.184799999999974,200,0.1,100000,0.8207296730577945,93.0,176.0,29,163
+1421,44.60180000000001,200,0.1,100000,0.8267395269870758,85.0,171.0,22,168
+1422,13.057600000000008,200,0.1,100000,0.7961745071411133,65.0,186.0,21,168
+1423,2.913000000000001,200,0.1,100000,0.8264225853979588,63.0,194.0,20,170
+1424,-24.776399999999995,200,0.1,100000,0.8107837294042111,76.0,267.0,17,163
+1425,-0.6073999999999907,200,0.1,100000,0.8223970858752727,54.0,188.0,24,168
+1426,-8.969200000000003,200,0.1,100000,0.8010259281098843,58.0,195.0,22,151
+1427,27.151600000000016,200,0.1,100000,0.828504696637392,74.0,158.0,15,184
+1428,-50.2732,200,0.1,100000,0.7983748270571231,66.0,312.0,15,156
+1429,69.2638,200,0.1,100000,0.8222621981799603,96.0,166.0,33,174
+1430,54.966600000000064,200,0.1,100000,0.8037872022390365,99.0,175.0,26,174
+1431,5.434000000000017,200,0.1,100000,0.8081380967795849,103.0,294.0,29,160
+1432,-17.95220000000001,200,0.1,100000,0.7711293523013591,64.0,230.0,23,152
+1433,0.7346000000000033,200,0.1,100000,0.7777861180901527,84.0,237.0,22,159
+1434,39.03960000000001,200,0.1,100000,0.816511045396328,74.0,147.0,27,167
+1435,60.69400000000005,200,0.1,100000,0.8148252874612808,89.0,139.0,32,177
+1436,-14.871799999999999,200,0.1,100000,0.7996071951091289,47.0,225.0,24,147
+1437,15.547199999999988,200,0.1,100000,0.7848117173463106,77.0,207.0,23,142
+1438,54.468800000000016,200,0.1,100000,0.8445852883160114,76.0,128.0,29,173
+1439,-5.769399999999988,200,0.1,100000,0.8285163141787052,44.0,153.0,21,153
+1440,45.10580000000002,200,0.1,100000,0.8407944416999817,85.0,170.0,26,165
+1441,11.823400000000014,200,0.1,100000,0.817483727633953,63.0,179.0,22,161
+1442,14.47480000000001,200,0.1,100000,0.8144135917723179,84.0,229.0,22,161
+1443,33.82780000000002,200,0.1,100000,0.8328699350357056,91.0,205.0,20,165
+1444,78.27999999999996,200,0.1,100000,0.8209471365809441,101.0,151.0,37,175
+1445,57.82280000000005,200,0.1,100000,0.8300275768339634,102.0,200.0,33,173
+1446,-12.947799999999994,200,0.1,100000,0.7972513198852539,74.0,245.0,20,165
+1447,-4.614999999999984,200,0.1,100000,0.8404591651260853,76.0,231.0,18,134
+1448,-17.3408,200,0.1,100000,0.8598993329703808,72.0,242.0,21,149
+1449,50.19400000000002,200,0.1,100000,0.8115691605210305,92.0,154.0,25,162
+1450,21.276000000000018,200,0.1,100000,0.809738892763853,94.0,232.0,24,135
+1451,10.1834,200,0.1,100000,0.8009234607219696,79.0,224.0,20,168
+1452,-5.27619999999997,200,0.1,100000,0.808998404443264,75.0,246.0,28,165
+1453,28.61360000000002,200,0.1,100000,0.8274579985439777,102.0,271.0,31,169
+1454,21.452000000000012,200,0.1,100000,0.8562736739218235,65.0,176.0,25,181
+1455,-66.16979999999998,200,0.1,100000,0.74076865747571,35.0,287.0,13,123
+1456,17.320799999999995,200,0.1,100000,0.7579553508758545,74.0,185.0,20,134
+1457,34.11660000000004,200,0.1,100000,0.7696070656180382,65.0,163.0,40,171
+1458,-8.51219999999998,200,0.1,100000,0.7995701791346073,56.0,192.0,18,169
+1459,-19.922,200,0.1,100000,0.7705707961320877,54.0,198.0,17,157
+1460,27.41060000000001,200,0.1,100000,0.8568771433830261,91.0,225.0,23,177
+1461,13.363799999999998,200,0.1,100000,0.8477905343472958,89.0,220.0,22,175
+1462,48.82380000000003,200,0.1,100000,0.8509199042618275,94.0,178.0,37,166
+1463,-7.381999999999975,200,0.1,100000,0.8206822779774666,63.0,231.0,31,171
+1464,39.85200000000004,200,0.1,100000,0.8281694532930851,78.0,155.0,25,148
+1465,36.22640000000004,200,0.1,100000,0.8456613500416279,103.0,245.0,31,167
+1466,9.081400000000002,200,0.1,100000,0.8577640631794929,63.0,182.0,26,160
+1467,8.444599999999998,200,0.1,100000,0.8381280724704265,84.0,246.0,31,162
+1468,-45.525400000000005,200,0.1,100000,0.7845346067845821,56.0,263.0,21,124
+1469,-44.53759999999999,200,0.1,100000,0.801948719471693,36.0,224.0,22,140
+1470,-28.327999999999985,200,0.1,100000,0.8264547961950303,40.0,187.0,17,121
+1471,33.163800000000016,200,0.1,100000,0.7981072089076042,96.0,223.0,28,184
+1472,-15.496399999999982,200,0.1,100000,0.8485510742664337,67.0,236.0,26,172
+1473,6.9789999999999965,200,0.1,100000,0.8473393277823925,83.0,224.0,22,168
+1474,28.036199999999987,200,0.1,100000,0.8296103946864605,59.0,133.0,30,144
+1475,50.833599999999976,200,0.1,100000,0.819190191179514,108.0,209.0,32,176
+1476,-0.2683999999999764,200,0.1,100000,0.7881900329887866,56.0,170.0,18,124
+1477,-59.42399999999999,200,0.1,100000,0.8241840244829655,60.0,328.0,27,140
+1478,43.435400000000016,200,0.1,100000,0.8322043602913618,75.0,145.0,26,158
+1479,82.83699999999997,200,0.1,100000,0.8349539229273796,105.0,152.0,31,166
+1480,-11.431999999999997,200,0.1,100000,0.7913746331632138,42.0,178.0,28,154
+1481,55.28599999999999,200,0.1,100000,0.800010225623846,106.0,196.0,24,172
+1482,-2.5153999999999996,200,0.1,100000,0.8040766054391861,79.0,240.0,26,187
+1483,33.3852,200,0.1,100000,0.7806826132535934,86.0,193.0,26,174
+1484,42.06999999999999,200,0.1,100000,0.7872379252314567,90.0,194.0,24,158
+1485,2.610000000000003,200,0.1,100000,0.8213917410373688,65.0,189.0,21,171
+1486,-7.018400000000004,200,0.1,100000,0.837021606117487,65.0,208.0,18,169
+1487,58.66600000000005,200,0.1,100000,0.8155544677376747,83.0,119.0,25,176
+1488,31.676400000000033,200,0.1,100000,0.8714421777427197,99.0,211.0,22,157
+1489,-8.190399999999993,200,0.1,100000,0.8375487168133259,87.0,277.0,22,172
+1490,0.8706000000000167,200,0.1,100000,0.8094888010621071,59.0,175.0,24,166
+1491,65.76960000000007,200,0.1,100000,0.8118360213935375,62.0,76.0,24,158
+1492,11.081199999999997,200,0.1,100000,0.7788857197761536,91.0,237.0,21,156
+1493,-5.424599999999973,200,0.1,100000,0.7631766521930694,67.0,236.0,28,175
+1494,72.41799999999996,200,0.1,100000,0.7851866073906422,104.0,174.0,30,177
+1495,5.054800000000001,200,0.1,100000,0.7599901750683784,58.0,183.0,22,160
+1496,-50.40980000000002,200,0.1,100000,0.7995081797242165,73.0,333.0,32,174
+1497,56.56219999999998,200,0.1,100000,0.76928964830935,66.0,109.0,34,189
+1498,93.94300000000004,200,0.1,100000,0.7633055953681469,120.0,143.0,33,164
+1499,40.02740000000002,200,0.1,100000,0.790446720123291,71.0,155.0,27,154
diff --git a/experiments/results/dqn_v4_dense_meta.json b/experiments/results/dqn_v4_dense_meta.json
new file mode 100644
index 0000000..df7ed4c
--- /dev/null
+++ b/experiments/results/dqn_v4_dense_meta.json
@@ -0,0 +1,105 @@
+{
+ "run_id": "dqn_v4_dense",
+ "agent": "dqn",
+ "scenario": "weekday",
+ "num_episodes": 1500,
+ "seed": 42,
+ "git_commit": "ba3b051a87c71a0dd6db53d8e6d7b0bf5edd312f",
+ "wall_time_seconds": 2244.8660871982574,
+ "eval_summary": {
+ "eval_mean_reward": 13.598280000000006,
+ "eval_std_reward": 40.917405917501654,
+ "eval_mean_delivered": 74.6,
+ "eval_mean_spoiled": 197.0,
+ "eval_n_episodes": 5
+ },
+ "eval_per_seed": [
+ {
+ "seed": 100,
+ "total_reward": -1.0044000000000124,
+ "delivered_units": 75.0,
+ "spoiled_units": 230.0,
+ "deliveries_count": 24,
+ "distance": 155
+ },
+ {
+ "seed": 101,
+ "total_reward": 1.4250000000000504,
+ "delivered_units": 63.0,
+ "spoiled_units": 186.0,
+ "deliveries_count": 25,
+ "distance": 176
+ },
+ {
+ "seed": 102,
+ "total_reward": -36.79879999999999,
+ "delivered_units": 57.0,
+ "spoiled_units": 257.0,
+ "deliveries_count": 29,
+ "distance": 153
+ },
+ {
+ "seed": 103,
+ "total_reward": 87.48379999999997,
+ "delivered_units": 123.0,
+ "spoiled_units": 168.0,
+ "deliveries_count": 35,
+ "distance": 164
+ },
+ {
+ "seed": 104,
+ "total_reward": 16.885800000000014,
+ "delivered_units": 55.0,
+ "spoiled_units": 144.0,
+ "deliveries_count": 22,
+ "distance": 158
+ }
+ ],
+ "config_raw": {
+ "run": {
+ "run_id": "dqn_v4_dense",
+ "agent": "dqn",
+ "scenario": "weekday",
+ "num_episodes": 1500,
+ "seed": 42,
+ "output_dir": "experiments",
+ "description": "v4: dense pickup signal + \u03b3 back to 0.95 + higher \u03b5 floor.\n\nDiagnosis of v3 (see scripts/eval_dqn_in_python.py output):\n- Q-values collapsed to a flat ~18-20 across all 11 actions\n- Average q-spread per step: 1.19 (healthy is 5-15)\n- Step 0 Q-values identical across 5 different random seeds\n- Model treated every action as equally good; survived only by\n env forgiveness and random tie-breaking\n- Root cause: \u03b3=0.99 with sparse delivery-only reward smoothed\n value across all states; the network learned ONE mean value\n\nv4 fixes:\n- Add pickup reward (dense intermediate signal at 0.2 per unit\n loaded). Breaks the value-smoothing symmetry \u2014 picking up at a\n donor with food is now a learnable positive event, not just a\n precursor to delivery.\n- \u03b3=0.95 (was 0.99). Preserves discrimination between near-term\n and far-term consequences. With 200-step episodes, \u03b3=0.95\n values reward 14 steps out at ~50% \u2014 appropriate horizon.\n- \u03b5_end=0.10 (was 0.02). Keep exploring throughout training;\n model needs to discover non-greedy good actions.\n- min_replay_to_train=1000 (was 5000). Start learning sooner.\n"
+ },
+ "agent_params": {
+ "hidden_sizes": [
+ 128,
+ 128
+ ],
+ "learning_rate": 0.0005,
+ "discount": 0.95,
+ "epsilon_start": 1.0,
+ "epsilon_end": 0.1,
+ "epsilon_decay_episodes": 1200,
+ "replay_buffer_size": 100000,
+ "batch_size": 64,
+ "min_replay_to_train": 1000,
+ "target_update_interval": 500,
+ "grad_clip": 1.0,
+ "device": "auto"
+ },
+ "reward_weights": {
+ "delivery": 1.0,
+ "pickup": 0.2,
+ "spoilage": 0.5,
+ "distance": 0.01,
+ "unmet_demand": 0.1,
+ "priority_bonus": 0.05,
+ "oversupply_penalty": 0.03
+ },
+ "eval": {
+ "n_episodes": 5,
+ "eval_seeds": [
+ 100,
+ 101,
+ 102,
+ 103,
+ 104
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/experiments/results/dqn_v5_masked.csv b/experiments/results/dqn_v5_masked.csv
new file mode 100644
index 0000000..4438c58
--- /dev/null
+++ b/experiments/results/dqn_v5_masked.csv
@@ -0,0 +1,1501 @@
+episode,total_reward,steps,epsilon,replay_size,mean_loss,delivered_units,spoiled_units,deliveries_count,distance
+0,-163.66580000000008,200,0.99925,200,0.0,8.0,357.0,1,158
+1,-79.96059999999999,200,0.9985,400,0.0,44.0,294.0,13,154
+2,-78.7464,200,0.99775,600,0.0,38.0,279.0,8,154
+3,-133.69759999999997,200,0.997,800,0.0,24.0,353.0,6,162
+4,-147.29020000000008,200,0.99625,1000,1.0630216598510742,7.0,328.0,2,162
+5,-110.66139999999996,200,0.9955,1200,0.739743984490633,3.0,250.0,1,160
+6,-87.34660000000004,200,0.99475,1400,0.696955192387104,38.0,299.0,9,167
+7,-135.66839999999996,200,0.994,1600,0.7025836017727852,7.0,324.0,1,163
+8,-176.08679999999995,200,0.99325,1800,0.7342401142418384,5.0,380.0,1,164
+9,-134.79499999999987,200,0.9925,2000,0.71546763792634,6.0,306.0,1,164
+10,-105.66119999999995,200,0.99175,2200,0.69916489392519,17.0,282.0,5,166
+11,-132.0236,200,0.991,2400,0.666095275580883,10.0,316.0,3,164
+12,-154.38260000000002,200,0.99025,2600,0.7030134581029415,8.0,359.0,2,160
+13,-131.15899999999993,200,0.9895,2800,0.6788029707968235,12.0,315.0,3,170
+14,-85.809,200,0.98875,3000,0.6942561192810536,41.0,298.0,8,155
+15,-149.6996000000001,200,0.988,3200,0.6819604301452636,14.0,353.0,2,159
+16,-113.61939999999998,200,0.98725,3400,0.7253056955337525,23.0,299.0,4,156
+17,-95.1058,200,0.9865,3600,0.6942886967957019,21.0,254.0,6,150
+18,-128.94560000000007,200,0.98575,3800,0.6963118405640125,0.0,262.0,0,173
+19,-114.29899999999998,200,0.985,4000,0.6496279235184192,19.0,288.0,4,161
+20,-117.98859999999998,200,0.98425,4200,0.7009047049283982,23.0,311.0,5,151
+21,-106.0494,200,0.9835,4400,0.6915671867132187,34.0,323.0,8,161
+22,-116.44019999999993,200,0.98275,4600,0.6836094890534877,20.0,292.0,4,162
+23,-145.87019999999995,200,0.982,4800,0.6808979584276676,9.0,333.0,1,155
+24,-89.45779999999996,200,0.98125,5000,0.6892307016253472,17.0,248.0,2,165
+25,-76.01679999999999,200,0.9805,5200,0.7189160180091858,22.0,218.0,4,170
+26,-54.923199999999994,200,0.97975,5400,0.6989409244060516,26.0,190.0,8,148
+27,-100.76519999999998,200,0.979,5600,0.6852505917847157,6.0,240.0,1,147
+28,-88.00139999999998,200,0.97825,5800,0.6516547618806362,25.0,242.0,6,160
+29,-100.44699999999999,200,0.9775,6000,0.66406520023942,20.0,275.0,6,172
+30,-134.29899999999992,200,0.97675,6200,0.6815989384055138,8.0,309.0,3,158
+31,-157.90880000000007,200,0.976,6400,0.6727169930934906,0.0,342.0,0,156
+32,-107.22460000000004,200,0.97525,6600,0.6834062580764294,14.0,266.0,4,161
+33,-118.85879999999997,200,0.9745,6800,0.7103399273753166,29.0,329.0,4,165
+34,-137.975,200,0.97375,7000,0.6855551046133042,0.0,305.0,0,162
+35,-147.62980000000002,200,0.973,7200,0.6309097076952458,2.0,311.0,1,159
+36,-92.59199999999994,200,0.97225,7400,0.646193437576294,10.0,226.0,2,152
+37,-123.29739999999998,200,0.9715,7600,0.6677956114709377,35.0,360.0,7,162
+38,-171.78280000000007,200,0.97075,7800,0.6669632302224636,0.0,368.0,0,168
+39,-114.90920000000001,200,0.97,8000,0.6713883198052645,10.0,270.0,4,155
+40,-130.33859999999993,200,0.96925,8200,0.6576765331625939,17.0,322.0,3,152
+41,-140.8874,200,0.9685,8400,0.6931257797777652,22.0,344.0,4,164
+42,-135.6466,200,0.96775,8600,0.6890677919983864,12.0,329.0,3,158
+43,-142.13160000000005,200,0.967,8800,0.7007414670288563,16.0,344.0,3,166
+44,-132.05759999999998,200,0.96625,9000,0.690820570141077,28.0,347.0,5,158
+45,-152.20039999999995,200,0.9655,9200,0.6735710595548153,12.0,364.0,2,171
+46,-130.88679999999997,200,0.96475,9400,0.693679591268301,15.0,328.0,2,168
+47,-142.46959999999996,200,0.964,9600,0.6973262339830398,8.0,316.0,1,163
+48,-103.5488,200,0.96325,9800,0.7391782800853253,23.0,271.0,6,156
+49,-102.68220000000002,200,0.9625,10000,0.7472709645330906,19.0,270.0,5,154
+50,-93.52979999999997,200,0.96175,10200,0.690517785847187,33.0,282.0,6,167
+51,-100.55300000000001,200,0.961,10400,0.7144283350557089,9.0,246.0,1,156
+52,-151.24820000000003,200,0.96025,10600,0.7236057442426681,20.0,380.0,4,163
+53,-152.5762,200,0.9595,10800,0.7285063156485557,7.0,326.0,2,163
+54,-163.7598000000001,200,0.95875,11000,0.7305529569089413,5.0,362.0,1,153
+55,-124.24919999999997,200,0.958,11200,0.7333244533836841,0.0,272.0,0,153
+56,-136.26440000000002,200,0.95725,11400,0.7248237121105194,0.0,285.0,0,167
+57,-124.17459999999998,200,0.9565,11600,0.7207703061401844,31.0,335.0,8,154
+58,-140.33999999999997,200,0.95575,11800,0.7072939239442348,9.0,316.0,3,153
+59,-130.29759999999993,200,0.955,12000,0.7040613500773907,5.0,290.0,2,166
+60,-118.72139999999999,200,0.95425,12200,0.696133314371109,25.0,353.0,6,151
+61,-107.01500000000001,200,0.9535,12400,0.6948070511221885,28.0,304.0,7,163
+62,-72.10059999999997,200,0.95275,12600,0.6708214078843594,24.0,223.0,6,154
+63,-136.67199999999997,200,0.952,12800,0.6988019908964634,13.0,337.0,4,161
+64,-94.0452,200,0.95125,13000,0.6666697046160698,24.0,274.0,5,160
+65,-131.139,200,0.9505,13200,0.6849036139249801,26.0,346.0,5,168
+66,-157.36099999999993,200,0.94975,13400,0.6925074976682662,7.0,342.0,2,160
+67,-59.79239999999997,200,0.949,13600,0.6958860194683075,48.0,259.0,14,158
+68,-121.70800000000003,200,0.94825,13800,0.7005809508264065,26.0,333.0,4,154
+69,-109.7712,200,0.9475,14000,0.6953657975792885,8.0,262.0,1,154
+70,-119.17299999999999,200,0.94675,14200,0.7428182910382748,28.0,325.0,4,157
+71,-113.44239999999999,200,0.946,14400,0.7231018199026584,31.0,327.0,6,151
+72,-67.4472,200,0.94525,14600,0.7140193861722947,31.0,239.0,6,163
+73,-108.66420000000001,200,0.9445,14800,0.6997793386876583,13.0,270.0,3,162
+74,-54.322400000000016,200,0.94375,15000,0.7029564909636974,28.0,199.0,14,153
+75,-146.59959999999995,200,0.943,15200,0.7083571346104145,5.0,326.0,1,177
+76,-111.053,200,0.94225,15400,0.6783521746098995,14.0,266.0,3,164
+77,-121.79259999999998,200,0.9415,15600,0.705639198422432,16.0,311.0,4,167
+78,-95.97479999999999,200,0.94075,15800,0.7035727334022522,28.0,281.0,8,166
+79,-134.73579999999995,200,0.94,16000,0.6921832370758056,24.0,344.0,5,171
+80,-80.07299999999998,200,0.93925,16200,0.6750645415484905,17.0,225.0,3,166
+81,-110.00339999999998,200,0.9385,16400,0.6863275010883808,22.0,294.0,7,162
+82,-120.38059999999999,200,0.93775,16600,0.6697902999818325,30.0,329.0,7,151
+83,-115.00240000000001,200,0.9369999999999999,16800,0.6665901319682598,21.0,306.0,7,164
+84,-147.908,200,0.93625,17000,0.6804727457463742,10.0,337.0,3,171
+85,-101.51599999999996,200,0.9355,17200,0.6998926109075546,20.0,270.0,4,151
+86,-27.51139999999998,200,0.93475,17400,0.6970687974989415,39.0,178.0,12,163
+87,-120.53639999999993,200,0.9339999999999999,17600,0.7162552616000175,31.0,329.0,5,157
+88,-144.93439999999995,200,0.93325,17800,0.7196035987138748,21.0,356.0,3,166
+89,-84.72279999999999,200,0.9325,18000,0.7496429546177388,22.0,242.0,6,157
+90,-117.8062,200,0.93175,18200,0.7354608330130578,35.0,342.0,7,151
+91,-132.2148,200,0.931,18400,0.703889195472002,18.0,338.0,3,166
+92,-112.84239999999997,200,0.93025,18600,0.725768923163414,26.0,304.0,5,161
+93,-94.2342,200,0.9295,18800,0.6830945634841918,21.0,255.0,5,159
+94,-61.781400000000005,200,0.92875,19000,0.6956059578061103,29.0,231.0,8,157
+95,-68.10480000000003,200,0.9279999999999999,19200,0.8252919216454029,29.0,217.0,6,166
+96,-117.36880000000002,200,0.92725,19400,0.8034457601606846,15.0,279.0,6,162
+97,-70.40839999999997,200,0.9265,19600,0.788954371958971,34.0,242.0,8,156
+98,-72.5506,200,0.92575,19800,0.7566706544160843,38.0,254.0,6,153
+99,-143.13559999999998,200,0.925,20000,0.7395168823003769,16.0,348.0,2,162
+100,-69.18879999999997,200,0.92425,20200,0.694589059650898,39.0,259.0,10,162
+101,-178.03839999999994,200,0.9235,20400,0.672454814016819,6.0,382.0,1,151
+102,-120.32880000000004,200,0.92275,20600,0.7726345856487751,42.0,361.0,14,162
+103,-50.962599999999995,200,0.922,20800,0.8184641559422016,41.0,214.0,10,150
+104,-145.83839999999995,200,0.92125,21000,0.8270896904170513,24.0,375.0,5,164
+105,-147.35099999999997,200,0.9205,21200,0.7317187924683094,10.0,335.0,2,160
+106,-137.46959999999993,200,0.91975,21400,0.7570103125274181,14.0,317.0,2,167
+107,-87.9186,200,0.919,21600,0.7673626728355885,31.0,276.0,9,160
+108,-119.98399999999992,200,0.91825,21800,0.767185205668211,13.0,300.0,4,166
+109,-91.71479999999998,200,0.9175,22000,0.7500486959517002,27.0,259.0,5,158
+110,-140.4016,200,0.91675,22200,0.7483385649323463,27.0,346.0,4,154
+111,-134.2346,200,0.916,22400,0.7399477326869964,16.0,323.0,3,162
+112,-139.163,200,0.91525,22600,0.7503798687458039,18.0,340.0,4,167
+113,-110.9718,200,0.9145,22800,0.7793622328341008,25.0,303.0,8,155
+114,-96.82539999999999,200,0.91375,23000,0.7655742867290973,20.0,264.0,4,175
+115,-139.93479999999994,200,0.913,23200,0.8302187582850457,10.0,314.0,2,161
+116,-72.69700000000002,200,0.91225,23400,0.8265720283985138,50.0,288.0,11,151
+117,-79.879,200,0.9115,23600,0.8234626285731792,29.0,260.0,6,145
+118,-92.27100000000002,200,0.91075,23800,0.8155864316225052,32.0,282.0,10,161
+119,-80.2552,200,0.91,24000,0.813736961632967,10.0,184.0,3,142
+120,-85.92459999999997,200,0.90925,24200,0.773167145550251,35.0,284.0,8,155
+121,-101.42479999999998,200,0.9085,24400,0.7656536823511124,29.0,284.0,8,148
+122,-136.00560000000004,200,0.9077500000000001,24600,0.8068301175534726,9.0,306.0,1,157
+123,-101.65119999999996,200,0.907,24800,0.7919466483592987,9.0,237.0,1,160
+124,-151.08380000000002,200,0.90625,25000,0.800338595956564,12.0,346.0,5,172
+125,-85.38779999999996,200,0.9055,25200,0.8574251365661621,30.0,260.0,4,155
+126,-137.30099999999993,200,0.9047499999999999,25400,0.8523331397771835,10.0,318.0,3,162
+127,-79.79639999999998,200,0.904,25600,0.8347181954979896,36.0,266.0,9,156
+128,-75.83259999999999,200,0.90325,25800,0.8077566300332546,19.0,202.0,5,155
+129,-117.23379999999996,200,0.9025,26000,0.8122245378792285,23.0,304.0,4,163
+130,-126.1336,200,0.90175,26200,0.828625476360321,17.0,305.0,6,170
+131,-72.47460000000002,200,0.901,26400,0.8321167479455471,43.0,272.0,11,152
+132,-44.14679999999999,200,0.90025,26600,0.7778717662394047,38.0,207.0,8,159
+133,-148.622,200,0.8995,26800,0.7912156374752521,17.0,354.0,3,164
+134,-92.6802,200,0.8987499999999999,27000,0.782278707921505,27.0,270.0,5,161
+135,-115.23399999999995,200,0.898,27200,0.8072633655369281,25.0,317.0,5,151
+136,-66.52899999999998,200,0.89725,27400,0.8121430553495884,57.0,291.0,11,169
+137,-113.46180000000001,200,0.8965,27600,0.8186644276976586,40.0,347.0,9,156
+138,-63.861399999999975,200,0.89575,27800,0.8406170360744,38.0,249.0,9,172
+139,-134.42219999999995,200,0.895,28000,0.8589011269807816,25.0,352.0,4,155
+140,-27.526799999999987,200,0.89425,28200,0.8587608605623245,38.0,173.0,8,170
+141,-81.22520000000002,200,0.8935,28400,0.8244440704584122,36.0,264.0,9,163
+142,-45.102799999999945,200,0.8927499999999999,28600,0.8525628072023391,33.0,201.0,7,164
+143,-83.26799999999996,200,0.892,28800,0.8356181399524212,44.0,301.0,10,157
+144,-106.40939999999996,200,0.89125,29000,0.8470991607010364,28.0,300.0,5,160
+145,-67.63600000000002,200,0.8905,29200,0.9355864748358727,40.0,260.0,9,159
+146,-134.2308,200,0.88975,29400,0.9273509830236435,28.0,359.0,8,155
+147,-122.09779999999999,200,0.889,29600,0.9017610178887844,36.0,360.0,9,161
+148,-103.0712,200,0.88825,29800,0.866333791911602,44.0,334.0,8,163
+149,-74.60759999999999,200,0.8875,30000,0.8552892044186592,48.0,291.0,15,159
+150,-100.2448,200,0.88675,30200,0.8440598712861538,28.0,297.0,6,165
+151,-84.71600000000004,200,0.886,30400,0.8262459729611874,25.0,234.0,7,159
+152,-161.45640000000003,200,0.88525,30600,0.8537112592160702,24.0,406.0,7,152
+153,-151.78619999999998,200,0.8845000000000001,30800,0.898275815397501,6.0,348.0,3,167
+154,-115.495,200,0.88375,31000,0.8634520721435547,22.0,309.0,7,171
+155,-86.17179999999999,200,0.883,31200,0.7879794286191464,37.0,289.0,7,163
+156,-138.8868,200,0.88225,31400,0.8260890471935273,3.0,310.0,1,161
+157,-81.11020000000005,200,0.8815,31600,0.8814314258098602,31.0,248.0,7,166
+158,-130.61099999999996,200,0.88075,31800,0.9363237103819847,23.0,342.0,7,169
+159,-85.72619999999996,200,0.88,32000,0.9516170611977577,34.0,287.0,8,164
+160,-31.726800000000008,200,0.87925,32200,0.8816737097501754,42.0,173.0,11,172
+161,-72.7922,200,0.8785,32400,0.8775493633747101,36.0,248.0,8,168
+162,-114.05460000000004,200,0.87775,32600,0.8702012787759305,36.0,341.0,8,167
+163,-87.55579999999993,200,0.877,32800,0.84594656214118,25.0,257.0,10,160
+164,-26.80599999999998,200,0.87625,33000,0.8493383750319481,37.0,164.0,11,154
+165,-104.46839999999999,200,0.8755,33200,0.8471464122831821,21.0,285.0,5,152
+166,-94.19980000000005,200,0.87475,33400,0.8269823262095451,41.0,308.0,6,171
+167,-101.4734,200,0.874,33600,0.8530239038169384,35.0,314.0,8,162
+168,-45.17299999999998,200,0.87325,33800,0.8548207567632198,47.0,226.0,16,167
+169,-115.395,200,0.8725,34000,0.8971311783790589,27.0,318.0,8,162
+170,-107.09259999999999,200,0.87175,34200,0.8388256700336933,17.0,269.0,3,145
+171,-60.73819999999997,200,0.871,34400,0.8400130918622017,51.0,260.0,11,152
+172,-75.6514,200,0.87025,34600,0.7797202265262604,45.0,284.0,11,152
+173,-76.06020000000001,200,0.8694999999999999,34800,0.7337661969661713,29.0,238.0,5,159
+174,-139.60119999999995,200,0.86875,35000,0.7419726011157036,5.0,312.0,1,168
+175,-57.16300000000002,200,0.868,35200,0.8256650149822236,50.0,262.0,10,168
+176,-95.35059999999997,200,0.86725,35400,0.7957732479274273,40.0,322.0,8,154
+177,-87.10099999999997,200,0.8665,35600,0.9019212913513184,31.0,272.0,4,155
+178,-115.39820000000003,200,0.86575,35800,0.9448405930399895,15.0,293.0,3,158
+179,-50.489999999999995,200,0.865,36000,0.9498299223184585,38.0,214.0,10,159
+180,-109.14439999999999,200,0.86425,36200,0.8668464884161949,13.0,257.0,5,154
+181,-72.63899999999997,200,0.8634999999999999,36400,0.8813239556550979,36.0,274.0,12,172
+182,-144.99659999999994,200,0.86275,36600,0.8445252208411693,28.0,373.0,7,167
+183,-71.27460000000002,200,0.862,36800,0.8397566996514797,42.0,261.0,9,165
+184,-140.548,200,0.86125,37000,0.8371605359017849,5.0,313.0,1,169
+185,-45.82439999999999,200,0.8605,37200,0.8188085961341858,45.0,233.0,11,151
+186,-116.6546,200,0.85975,37400,0.8279232507944108,11.0,271.0,4,167
+187,-78.56260000000005,200,0.859,37600,0.8445842929184437,58.0,330.0,13,162
+188,-89.42200000000003,200,0.85825,37800,0.8834667597711087,11.0,230.0,3,170
+189,-136.11580000000006,200,0.8575,38000,0.8901489108800889,20.0,336.0,4,157
+190,-122.65539999999999,200,0.85675,38200,0.7941879326105118,31.0,336.0,8,159
+191,-69.38059999999999,200,0.856,38400,0.7931025698781013,32.0,252.0,6,160
+192,-171.94580000000002,200,0.8552500000000001,38600,0.7829766334593296,15.0,401.0,3,164
+193,-135.1302,200,0.8545,38800,0.8346056012809276,12.0,312.0,4,169
+194,-82.55000000000001,200,0.85375,39000,0.8262497015297413,30.0,248.0,8,171
+195,-122.69360000000002,200,0.853,39200,0.8581778866052627,15.0,312.0,3,154
+196,-30.94979999999999,200,0.85225,39400,0.8889035113155842,62.0,234.0,14,175
+197,-33.69799999999998,200,0.8514999999999999,39600,0.885692335665226,48.0,232.0,14,174
+198,-110.54900000000005,200,0.85075,39800,0.8405909985303879,39.0,359.0,10,172
+199,-37.53659999999997,200,0.85,40000,0.8707447995245456,54.0,239.0,15,167
+200,-88.7368,200,0.84925,40200,0.8694626857340336,32.0,272.0,7,165
+201,-104.09,200,0.8485,40400,0.8844532595574855,29.0,305.0,8,162
+202,-99.6754,200,0.84775,40600,0.9056642960011959,32.0,289.0,7,162
+203,-63.27479999999999,200,0.847,40800,0.9467703568935394,33.0,227.0,12,149
+204,-75.06700000000001,200,0.84625,41000,0.9294280442595482,42.0,272.0,7,166
+205,-103.7944,200,0.8455,41200,0.85486214697361,21.0,274.0,6,167
+206,-102.92480000000002,200,0.84475,41400,0.8961885379254818,38.0,319.0,9,159
+207,-118.93739999999997,200,0.844,41600,0.889486748278141,14.0,305.0,3,171
+208,-105.0488,200,0.84325,41800,0.8910532531142235,25.0,296.0,5,172
+209,-75.58499999999998,200,0.8425,42000,0.8813967925310134,26.0,237.0,9,162
+210,-152.42819999999995,200,0.84175,42200,0.8737489280104637,12.0,356.0,3,163
+211,-105.78500000000003,200,0.841,42400,0.8852424065768719,36.0,326.0,10,161
+212,-76.09999999999998,200,0.8402499999999999,42600,0.8362225288152695,40.0,273.0,11,159
+213,-116.90019999999996,200,0.8395,42800,0.8450448222458362,4.0,268.0,1,158
+214,-50.849399999999996,200,0.83875,43000,0.8086571508646011,54.0,264.0,11,160
+215,-46.1682,200,0.838,43200,0.8422247014939785,40.0,207.0,9,167
+216,-102.21339999999995,200,0.83725,43400,0.8520586588978767,55.0,387.0,12,161
+217,-156.6242,200,0.8365,43600,0.8530940940976143,27.0,391.0,5,145
+218,-108.05559999999994,200,0.83575,43800,0.8715881994366645,13.0,255.0,3,154
+219,-56.59559999999997,200,0.835,44000,0.8754076167941094,41.0,245.0,14,156
+220,-85.55599999999998,200,0.8342499999999999,44200,0.970434475839138,42.0,289.0,7,156
+221,-76.09479999999999,200,0.8335,44400,0.9353948950767517,30.0,249.0,14,163
+222,-107.18100000000001,200,0.83275,44600,0.9061557671427727,46.0,349.0,8,168
+223,-113.8322,200,0.832,44800,0.868658615797758,33.0,335.0,9,153
+224,-144.7406000000001,200,0.83125,45000,0.8791340655088424,26.0,380.0,6,161
+225,-74.4562,200,0.8305,45200,0.9491055464744568,34.0,257.0,9,168
+226,-80.66579999999998,200,0.82975,45400,0.9529449498653412,32.0,247.0,4,163
+227,-129.71599999999998,200,0.829,45600,0.9735942149162292,40.0,376.0,7,163
+228,-51.48199999999999,200,0.82825,45800,0.9838291423022747,49.0,228.0,9,166
+229,-9.795599999999997,200,0.8275,46000,0.9327742233872414,39.0,139.0,14,168
+230,-86.029,200,0.82675,46200,0.8171660268306732,36.0,268.0,7,160
+231,-100.02459999999998,200,0.8260000000000001,46400,0.8367554427683354,34.0,298.0,10,159
+232,-109.35880000000002,200,0.82525,46600,0.8846855328977108,24.0,301.0,6,152
+233,-139.03659999999996,200,0.8245,46800,0.9491765421628952,15.0,330.0,3,161
+234,-96.80019999999999,200,0.82375,47000,0.9609047649800777,20.0,267.0,6,174
+235,-114.1636,200,0.823,47200,0.9104428528249264,35.0,330.0,9,168
+236,-81.56880000000002,200,0.8222499999999999,47400,0.8600580337643623,43.0,291.0,8,158
+237,-51.47279999999997,200,0.8215,47600,0.8866099621355533,37.0,234.0,20,163
+238,-64.58339999999998,200,0.82075,47800,0.8533157832920552,43.0,262.0,10,161
+239,-69.69539999999999,200,0.82,48000,0.9096367424726486,38.0,252.0,10,166
+240,-86.06339999999994,200,0.81925,48200,0.896335359364748,41.0,283.0,9,161
+241,-122.99959999999999,200,0.8185,48400,0.8843071776628494,26.0,333.0,7,173
+242,-71.02000000000001,200,0.81775,48600,0.9339433266222477,49.0,273.0,10,158
+243,-100.28139999999999,200,0.817,48800,0.9452209839224816,31.0,288.0,6,172
+244,-115.42000000000002,200,0.81625,49000,0.9677284546196461,20.0,315.0,9,162
+245,-150.85600000000008,200,0.8155,49200,0.8539812254905701,5.0,328.0,2,157
+246,-55.002599999999994,200,0.81475,49400,0.8769920597970485,33.0,211.0,7,157
+247,-22.954999999999995,200,0.8140000000000001,49600,0.9138714882731438,58.0,221.0,13,154
+248,-85.7288,200,0.81325,49800,0.936237959265709,20.0,248.0,6,160
+249,-79.14,200,0.8125,50000,0.9206517831981182,57.0,304.0,10,167
+250,-84.9306,200,0.81175,50200,0.8483769325911998,44.0,299.0,11,158
+251,-75.31080000000004,200,0.8109999999999999,50400,0.841678027510643,30.0,233.0,13,171
+252,-73.45599999999997,200,0.81025,50600,0.8625750195980072,34.0,243.0,7,151
+253,-115.70380000000002,200,0.8095,50800,0.8742316134274006,19.0,301.0,3,161
+254,-69.84740000000001,200,0.80875,51000,0.8647411179542541,51.0,279.0,13,153
+255,-146.11699999999993,200,0.808,51200,0.8555145090818406,21.0,374.0,4,162
+256,-107.3064,200,0.80725,51400,0.8708154597878456,31.0,314.0,9,154
+257,-46.426399999999994,200,0.8065,51600,0.8496483136713505,38.0,208.0,12,161
+258,-62.011600000000016,200,0.80575,51800,0.8606399454176425,58.0,294.0,15,167
+259,-31.057400000000005,200,0.8049999999999999,52000,0.8991881063580514,54.0,212.0,13,162
+260,-56.22039999999996,200,0.80425,52200,0.9165126165747642,37.0,220.0,7,168
+261,-114.40539999999997,200,0.8035,52400,0.9333269284665584,11.0,276.0,1,153
+262,-35.443200000000004,200,0.80275,52600,0.94468427374959,33.0,187.0,9,164
+263,-83.8272,200,0.802,52800,0.9347173255681992,34.0,271.0,6,165
+264,-126.4946,200,0.80125,53000,0.9166013741493225,25.0,329.0,8,153
+265,-23.310799999999993,200,0.8005,53200,0.880610940605402,53.0,212.0,14,157
+266,-89.74380000000002,200,0.79975,53400,0.9188308081030846,28.0,261.0,6,157
+267,-114.12100000000001,200,0.7989999999999999,53600,0.8278614634275436,34.0,327.0,5,167
+268,-120.12219999999996,200,0.79825,53800,0.813007989525795,29.0,334.0,8,158
+269,-52.580999999999996,200,0.7975,54000,0.7972713512182236,58.0,261.0,15,157
+270,-69.5986,200,0.79675,54200,0.9321038092672825,50.0,291.0,9,167
+271,-47.73739999999999,200,0.796,54400,0.9734518224000931,46.0,232.0,13,163
+272,-97.94619999999998,200,0.79525,54600,0.9647463917732239,29.0,284.0,11,158
+273,-51.69639999999999,200,0.7945,54800,0.9828729709982872,41.0,235.0,9,155
+274,-92.41760000000002,200,0.79375,55000,0.9747997261583805,24.0,267.0,6,167
+275,-76.2406,200,0.7929999999999999,55200,0.880869907438755,32.0,252.0,6,162
+276,-91.84059999999998,200,0.79225,55400,0.9145155313611031,33.0,294.0,7,148
+277,-75.74499999999996,200,0.7915,55600,0.9428080813586712,52.0,309.0,13,167
+278,-86.90159999999999,200,0.79075,55800,0.9221173200011253,53.0,313.0,10,148
+279,-38.45959999999999,200,0.79,56000,0.9530958946049214,53.0,232.0,13,168
+280,-73.14119999999997,200,0.78925,56200,0.943848297894001,40.0,274.0,21,156
+281,-79.04339999999999,200,0.7885,56400,0.9408468218147754,39.0,264.0,8,153
+282,-90.79479999999995,200,0.78775,56600,0.9606863817572594,44.0,304.0,10,162
+283,-68.66299999999997,200,0.787,56800,0.9285537418723107,31.0,238.0,11,166
+284,-55.615999999999985,200,0.78625,57000,0.8921080543100834,51.0,246.0,9,161
+285,-69.68859999999997,200,0.7855,57200,0.8922643682360649,39.0,239.0,9,144
+286,-16.764800000000008,200,0.7847500000000001,57400,0.918200666308403,42.0,163.0,15,161
+287,-58.394199999999984,200,0.784,57600,0.8988457250595093,31.0,212.0,6,159
+288,-99.29220000000001,200,0.78325,57800,0.8428942950069904,42.0,325.0,10,177
+289,-122.45119999999994,200,0.7825,58000,0.8965209951996803,22.0,310.0,5,167
+290,-48.41799999999999,200,0.78175,58200,0.8739726853370666,29.0,190.0,8,163
+291,-130.83479999999997,200,0.7809999999999999,58400,0.8837884718179703,20.0,334.0,6,160
+292,-85.30739999999997,200,0.78025,58600,0.8961360812187195,38.0,288.0,7,167
+293,-54.29600000000001,200,0.7795,58800,0.919351115077734,36.0,206.0,9,161
+294,-81.54999999999998,200,0.77875,59000,0.9581185153126717,49.0,322.0,15,160
+295,-63.38960000000001,200,0.778,59200,0.8480719986557961,33.0,218.0,9,165
+296,-94.75019999999998,200,0.77725,59400,0.8940687428414822,31.0,282.0,9,158
+297,-21.724999999999994,200,0.7765,59600,0.8817042271792889,66.0,222.0,13,169
+298,-94.95419999999996,200,0.7757499999999999,59800,0.8659925988316536,19.0,267.0,9,155
+299,-32.068599999999996,200,0.775,60000,0.8740570566058159,52.0,214.0,15,165
+300,-97.31179999999999,200,0.77425,60200,0.9534547817707062,39.0,302.0,9,161
+301,-92.48359999999998,200,0.7735000000000001,60400,0.9220360819995403,28.0,280.0,8,149
+302,-90.36999999999999,200,0.77275,60600,0.8850567656755447,36.0,295.0,7,149
+303,-87.6884,200,0.772,60800,0.8819558222591877,39.0,296.0,8,155
+304,-84.89580000000004,200,0.77125,61000,0.8807146283984184,41.0,283.0,9,158
+305,-56.18159999999998,200,0.7705,61200,0.8401959353685379,30.0,198.0,11,155
+306,-34.59619999999999,200,0.7697499999999999,61400,0.863050835877657,54.0,225.0,15,165
+307,-48.59959999999999,200,0.769,61600,0.8543904599547386,50.0,251.0,10,163
+308,-69.92559999999997,200,0.76825,61800,0.8478899964690209,51.0,274.0,12,155
+309,-51.23659999999998,200,0.7675,62000,0.8660785487294197,39.0,226.0,11,168
+310,-105.71619999999997,200,0.76675,62200,0.8908434544503688,33.0,316.0,7,165
+311,-105.9752,200,0.766,62400,0.8613524812459946,25.0,282.0,7,167
+312,-63.1936,200,0.76525,62600,0.9314277943968773,37.0,238.0,12,170
+313,-80.47479999999999,200,0.7645,62800,0.9789404095709324,34.0,261.0,11,157
+314,-75.71039999999995,200,0.7637499999999999,63000,0.9788637842237949,25.0,246.0,9,166
+315,-79.20459999999996,200,0.763,63200,0.9023540210723877,54.0,316.0,14,163
+316,-45.55979999999999,200,0.76225,63400,0.906347811371088,57.0,250.0,12,157
+317,-89.7584,200,0.7615,63600,0.8693773430585862,37.0,294.0,10,164
+318,-87.76139999999997,200,0.76075,63800,0.8638036596775055,35.0,283.0,9,166
+319,-38.6722,200,0.76,64000,0.8501453015208245,67.0,261.0,19,162
+320,-12.845199999999997,200,0.75925,64200,0.9216950125992298,64.0,194.0,15,147
+321,-82.85219999999998,200,0.7585,64400,0.9184766422212124,36.0,283.0,11,155
+322,-113.96319999999997,200,0.75775,64600,0.9079443320631981,36.0,334.0,9,163
+323,-72.39820000000003,200,0.757,64800,0.9130078256130219,27.0,224.0,8,159
+324,-53.26459999999999,200,0.75625,65000,0.9008291597664356,46.0,241.0,9,155
+325,-54.099200000000025,200,0.7555000000000001,65200,0.8590806558728218,44.0,225.0,6,149
+326,-45.801999999999985,200,0.75475,65400,0.8763611543178559,61.0,260.0,11,161
+327,-38.89679999999999,200,0.754,65600,0.871642400175333,57.0,260.0,15,157
+328,-100.40079999999995,200,0.75325,65800,0.9369735252857209,22.0,268.0,6,169
+329,-86.76680000000003,200,0.7525,66000,0.9216394756734371,39.0,286.0,7,169
+330,-53.7712,200,0.75175,66200,0.7773914289474487,52.0,249.0,10,165
+331,-20.351400000000005,200,0.751,66400,0.8170168413221837,52.0,200.0,17,170
+332,-115.14919999999996,200,0.75025,66600,0.8885889072716237,32.0,316.0,9,160
+333,-103.3902,200,0.7495,66800,0.9345211154222488,43.0,334.0,9,155
+334,-83.35979999999999,200,0.74875,67000,0.946720570474863,46.0,294.0,11,170
+335,-52.68259999999999,200,0.748,67200,0.9425435288250447,68.0,294.0,17,162
+336,-52.81799999999999,200,0.74725,67400,0.9530123502016068,34.0,208.0,11,157
+337,-39.57280000000001,200,0.7464999999999999,67600,0.8738462416827679,35.0,176.0,12,165
+338,-77.30040000000005,200,0.74575,67800,0.8275919045507908,35.0,265.0,8,172
+339,-77.0516,200,0.745,68000,0.777950159907341,25.0,237.0,7,165
+340,-66.34579999999998,200,0.74425,68200,0.903908123075962,46.0,267.0,11,160
+341,-46.551799999999986,200,0.7435,68400,0.877702804505825,33.0,186.0,9,167
+342,-44.85539999999998,200,0.74275,68600,0.8339796598255634,68.0,271.0,14,156
+343,-36.871399999999966,200,0.742,68800,0.8374459131062031,59.0,250.0,15,168
+344,-23.631599999999974,200,0.74125,69000,0.814807441085577,65.0,239.0,19,163
+345,-117.83200000000002,200,0.7404999999999999,69200,0.893779830634594,26.0,323.0,6,164
+346,-17.81159999999998,200,0.7397499999999999,69400,0.8814145173132419,52.0,189.0,13,147
+347,-74.05419999999998,200,0.739,69600,0.9359384042024612,35.0,256.0,11,165
+348,-38.9566,200,0.7382500000000001,69800,0.9758847397565842,43.0,221.0,13,158
+349,-13.776400000000002,200,0.7375,70000,0.9372153849899769,63.0,238.0,29,163
+350,-76.7852,200,0.73675,70200,0.9509610830247403,52.0,303.0,12,159
+351,-25.476800000000008,200,0.736,70400,0.9605536752939224,61.0,219.0,17,171
+352,-62.92659999999998,200,0.73525,70600,0.9457177013158798,32.0,225.0,8,157
+353,-72.952,200,0.7344999999999999,70800,0.9449271857738495,47.0,276.0,11,156
+354,-58.480599999999974,200,0.73375,71000,0.9671938335895538,45.0,255.0,14,159
+355,-78.6124,200,0.733,71200,0.9490648625791073,39.0,273.0,13,158
+356,-90.13339999999997,200,0.7322500000000001,71400,0.958727206736803,38.0,306.0,10,157
+357,-8.803599999999989,200,0.7315,71600,0.9581168209016323,62.0,201.0,16,160
+358,-38.80879999999997,200,0.73075,71800,0.9832893480360508,56.0,256.0,16,161
+359,-51.93819999999998,200,0.73,72000,0.9709573887288571,43.0,223.0,12,159
+360,-48.16259999999999,200,0.72925,72200,0.9365866476297379,38.0,213.0,15,167
+361,-70.4382,200,0.7284999999999999,72400,0.9246132528781891,51.0,292.0,11,164
+362,-70.29599999999999,200,0.72775,72600,0.908907487988472,45.0,276.0,11,161
+363,-53.378799999999984,200,0.727,72800,0.8677557416260242,32.0,222.0,7,156
+364,-42.7298,200,0.7262500000000001,73000,0.8722457934916019,39.0,211.0,13,161
+365,-48.12580000000001,200,0.7255,73200,0.9356175085902214,46.0,229.0,14,146
+366,-73.03399999999999,200,0.72475,73400,0.9208515718579292,43.0,263.0,9,152
+367,7.257000000000019,200,0.724,73600,0.8827284495532512,59.0,144.0,15,157
+368,-73.63180000000001,200,0.72325,73800,0.8983168686926365,46.0,285.0,7,162
+369,-86.00739999999996,200,0.7224999999999999,74000,0.888329803198576,42.0,298.0,9,159
+370,-88.72439999999997,200,0.72175,74200,0.9028556922078133,29.0,272.0,10,169
+371,-22.9736,200,0.721,74400,0.9123105502128601,59.0,215.0,12,175
+372,-69.41299999999998,200,0.7202500000000001,74600,0.9166001230478287,57.0,298.0,13,153
+373,-14.571399999999988,200,0.7195,74800,0.9109786206483841,53.0,184.0,17,160
+374,-15.842400000000017,200,0.71875,75000,0.8979434698820115,53.0,204.0,25,161
+375,-106.16859999999997,200,0.718,75200,0.8352004966139793,30.0,310.0,12,157
+376,-14.579999999999984,200,0.7172499999999999,75400,0.8431883196532727,61.0,211.0,14,156
+377,-22.52939999999999,200,0.7164999999999999,75600,0.8885386493802071,57.0,212.0,12,176
+378,-55.254800000000024,200,0.71575,75800,0.9445068702101708,63.0,276.0,14,167
+379,-53.65460000000001,200,0.7150000000000001,76000,0.9478468805551529,50.0,255.0,14,162
+380,-107.74199999999996,200,0.71425,76200,0.9728233416378498,36.0,326.0,14,159
+381,-82.54300000000003,200,0.7135,76400,0.9509643271565438,27.0,257.0,7,159
+382,-58.071399999999976,200,0.71275,76600,0.9344178245961666,50.0,281.0,15,169
+383,-1.203599999999986,200,0.712,76800,0.8527913975715637,59.0,190.0,22,169
+384,-74.20819999999999,200,0.7112499999999999,77000,0.8711156779527665,44.0,270.0,12,166
+385,12.204800000000013,200,0.7105,77200,1.029692153930664,65.0,178.0,19,164
+386,14.043600000000039,200,0.70975,77400,1.0093857389688492,88.0,210.0,15,163
+387,-41.3272,200,0.7090000000000001,77600,0.9594567443430424,63.0,267.0,13,150
+388,-53.02899999999996,200,0.70825,77800,0.9131477142870427,54.0,266.0,13,152
+389,-56.69119999999995,200,0.7075,78000,0.918531986027956,61.0,310.0,18,168
+390,-63.284600000000005,200,0.70675,78200,0.9626016807556153,31.0,226.0,9,154
+391,-71.8668,200,0.706,78400,1.0109199976921082,42.0,282.0,17,165
+392,-96.77579999999998,200,0.7052499999999999,78600,1.034842970520258,44.0,332.0,8,160
+393,-67.26360000000001,200,0.7045,78800,1.1231759138405324,48.0,285.0,14,168
+394,-64.63539999999999,200,0.70375,79000,1.087320403009653,44.0,262.0,11,164
+395,-33.57959999999999,200,0.703,79200,0.9341298571228981,54.0,222.0,12,171
+396,26.86499999999998,200,0.70225,79400,0.9376773492991924,88.0,196.0,21,163
+397,-45.31179999999997,200,0.7015,79600,0.98397864818573,44.0,237.0,11,163
+398,-96.34639999999999,200,0.70075,79800,0.9990188249945641,40.0,300.0,8,167
+399,-131.9464,200,0.7,80000,0.9970564378798008,21.0,328.0,8,160
+400,-43.72799999999998,200,0.6992499999999999,80200,0.8120438209176064,45.0,217.0,10,161
+401,-32.176,200,0.6984999999999999,80400,0.8286318553984166,66.0,275.0,18,164
+402,-50.07979999999999,200,0.69775,80600,0.8600533629953862,29.0,200.0,12,161
+403,-92.47599999999997,200,0.6970000000000001,80800,0.8971407163143158,57.0,356.0,14,168
+404,-75.65820000000002,200,0.69625,81000,0.8806798346340656,48.0,305.0,11,172
+405,-121.64739999999998,200,0.6955,81200,0.9453297272324562,22.0,319.0,4,174
+406,-5.753799999999984,200,0.69475,81400,0.9339709134399891,62.0,200.0,25,170
+407,-7.700799999999999,200,0.694,81600,0.9283316560089588,68.0,198.0,13,164
+408,-84.3704,200,0.6932499999999999,81800,0.9765283314883709,53.0,304.0,11,155
+409,-72.47619999999995,200,0.6925,82000,0.9732368230819702,45.0,278.0,13,168
+410,-85.25039999999997,200,0.69175,82200,0.9509853765368461,42.0,295.0,13,146
+411,-57.75880000000001,200,0.6910000000000001,82400,1.01081760764122,48.0,268.0,15,172
+412,-43.08799999999997,200,0.69025,82600,0.9179881866276264,31.0,174.0,10,164
+413,-86.07000000000001,200,0.6895,82800,0.9233970859646797,30.0,271.0,9,157
+414,-96.8426,200,0.68875,83000,0.9044546970725059,35.0,309.0,7,174
+415,-39.6104,200,0.688,83200,0.8807449215650558,47.0,228.0,12,160
+416,-10.682599999999951,200,0.68725,83400,0.8672829435765743,56.0,197.0,16,147
+417,-67.30319999999996,200,0.6865,83600,0.8739234703779221,46.0,293.0,13,168
+418,-16.662799999999972,200,0.68575,83800,0.930897262096405,50.0,190.0,18,177
+419,-9.166999999999987,200,0.685,84000,0.8966324728727341,59.0,175.0,15,169
+420,-85.92280000000001,200,0.68425,84200,0.9835027202963829,41.0,308.0,17,158
+421,-55.223000000000006,200,0.6835,84400,0.9961546021699905,55.0,280.0,19,142
+422,-71.3498,200,0.68275,84600,0.9585818786919117,45.0,275.0,16,166
+423,-73.76719999999999,200,0.6819999999999999,84800,0.9222174426913261,58.0,329.0,13,145
+424,-32.8494,200,0.6812499999999999,85000,0.9200534576177597,45.0,207.0,15,167
+425,-34.58879999999999,200,0.6805,85200,0.9798778609931469,44.0,234.0,13,159
+426,-50.65759999999998,200,0.67975,85400,0.9594687950611115,54.0,247.0,14,159
+427,-74.45379999999999,200,0.679,85600,0.9697080844640732,62.0,339.0,17,171
+428,-43.86159999999996,200,0.67825,85800,0.9956783901154995,67.0,286.0,17,163
+429,-71.00439999999998,200,0.6775,86000,0.9591581143438817,29.0,244.0,8,159
+430,-32.7048,200,0.67675,86200,0.9313852071762085,50.0,220.0,14,173
+431,-26.876200000000008,200,0.6759999999999999,86400,0.9457334460318089,56.0,233.0,16,169
+432,-1.5415999999999908,200,0.6752499999999999,86600,0.9227355372905731,63.0,180.0,21,167
+433,-29.021799999999978,200,0.6745,86800,0.9367808766663075,52.0,229.0,17,163
+434,-73.01059999999997,200,0.6737500000000001,87000,0.8987373280525207,62.0,330.0,17,156
+435,-32.185999999999986,200,0.673,87200,0.9186261992156506,54.0,210.0,11,176
+436,-38.1804,200,0.67225,87400,0.9640918058156968,58.0,266.0,16,173
+437,-59.89099999999997,200,0.6715,87600,0.9255910739302635,31.0,207.0,8,131
+438,-38.30979999999998,200,0.67075,87800,0.9546967627108097,52.0,229.0,16,166
+439,-48.33099999999997,200,0.67,88000,0.9715247640013694,63.0,277.0,16,155
+440,-81.02980000000002,200,0.66925,88200,0.9317139668762684,63.0,357.0,22,164
+441,-47.870599999999996,200,0.6685,88400,0.9146434047818184,66.0,297.0,18,160
+442,-51.92939999999998,200,0.6677500000000001,88600,0.8962577080726624,67.0,288.0,18,172
+443,-44.488,200,0.667,88800,0.904420327693224,63.0,280.0,22,163
+444,-48.95319999999998,200,0.66625,89000,0.9383583629131317,64.0,288.0,15,169
+445,-57.47079999999997,200,0.6655,89200,0.9952954134345054,49.0,248.0,13,165
+446,8.153400000000005,200,0.66475,89400,1.026222916841507,77.0,209.0,17,172
+447,-51.30179999999999,200,0.6639999999999999,89600,0.984369446337223,57.0,266.0,13,161
+448,-33.63159999999998,200,0.66325,89800,1.0044153490662575,76.0,280.0,20,166
+449,-15.504800000000007,200,0.6625,90000,0.9884092895686627,76.0,257.0,17,166
+450,-24.063199999999963,200,0.66175,90200,1.0301533550024033,62.0,236.0,24,166
+451,-22.298600000000004,200,0.661,90400,1.0120026077330113,63.0,221.0,17,164
+452,-75.178,200,0.66025,90600,0.9549719974398613,49.0,310.0,18,176
+453,-30.5934,200,0.6595,90800,0.8992885468900204,40.0,190.0,18,159
+454,-44.03819999999999,200,0.65875,91000,0.8918547722697258,50.0,242.0,11,149
+455,-92.22779999999996,200,0.6579999999999999,91200,0.9535019560158253,37.0,300.0,7,149
+456,-84.80419999999997,200,0.6572499999999999,91400,0.9619527065753937,24.0,269.0,10,169
+457,-72.64019999999996,200,0.6565000000000001,91600,0.9389296139776707,43.0,278.0,8,154
+458,-61.48519999999997,200,0.65575,91800,0.8853664174675941,40.0,242.0,10,162
+459,-65.41779999999997,200,0.655,92000,0.8957341761887073,48.0,291.0,17,158
+460,-34.015999999999984,200,0.65425,92200,0.980127828270197,72.0,273.0,18,167
+461,-35.95980000000002,200,0.6535,92400,0.9758190898597241,57.0,225.0,9,152
+462,-29.87419999999998,200,0.6527499999999999,92600,0.9795483221113682,47.0,220.0,14,154
+463,-50.095,200,0.652,92800,0.9448757374286652,57.0,271.0,15,153
+464,15.21699999999999,200,0.65125,93000,0.9508882936835289,68.0,156.0,18,158
+465,-40.217400000000005,200,0.6505000000000001,93200,0.942487004250288,39.0,201.0,9,154
+466,-25.4598,200,0.64975,93400,0.976274946630001,57.0,209.0,12,159
+467,-3.959400000000014,200,0.649,93600,0.9927750968933106,73.0,217.0,21,166
+468,5.49620000000003,200,0.64825,93800,1.0045134896039962,71.0,196.0,18,164
+469,-55.12060000000001,200,0.6475,94000,1.0150548274815083,45.0,250.0,14,177
+470,22.661599999999993,200,0.6467499999999999,94200,0.9524429214000701,72.0,158.0,16,159
+471,-36.13420000000002,200,0.646,94400,0.9322785013914108,62.0,260.0,19,162
+472,-49.89999999999999,200,0.64525,94600,0.9606098811328411,41.0,237.0,23,163
+473,33.736199999999975,200,0.6445,94800,0.9725089627504349,88.0,202.0,21,173
+474,-29.992199999999997,200,0.64375,95000,0.9705711472034454,65.0,250.0,20,163
+475,-53.478999999999985,200,0.643,95200,0.9615995106101036,44.0,241.0,15,171
+476,-91.95200000000001,200,0.64225,95400,0.9484519508481025,45.0,322.0,14,173
+477,-45.00819999999999,200,0.6415,95600,0.9309853000938892,64.0,287.0,18,153
+478,-17.106599999999982,200,0.6407499999999999,95800,0.910047123581171,58.0,219.0,19,165
+479,-50.97619999999996,200,0.6399999999999999,96000,0.906525436937809,51.0,266.0,15,154
+480,-41.39099999999996,200,0.63925,96200,0.9202023601531982,48.0,243.0,15,161
+481,-93.018,200,0.6385000000000001,96400,0.9612718115746975,25.0,261.0,10,152
+482,-39.95739999999999,200,0.63775,96600,0.9902820318937302,56.0,245.0,19,164
+483,-10.185199999999995,200,0.637,96800,1.0243600618839264,47.0,165.0,15,167
+484,-52.139999999999986,200,0.63625,97000,1.0330682015419006,55.0,259.0,13,171
+485,-6.972400000000029,200,0.6355,97200,0.9142154562473297,84.0,239.0,19,147
+486,-34.60659999999997,200,0.6347499999999999,97400,0.8979889383912086,69.0,252.0,11,157
+487,-71.18579999999999,200,0.634,97600,0.9618144848942757,60.0,332.0,19,159
+488,-43.20300000000001,200,0.6332500000000001,97800,1.0005442517995835,56.0,262.0,17,166
+489,-96.9206,200,0.6325000000000001,98000,1.0120571067929267,43.0,330.0,8,177
+490,-68.14880000000001,200,0.63175,98200,0.9253733414411545,48.0,281.0,17,156
+491,-11.342399999999994,200,0.631,98400,0.9437611882388591,47.0,187.0,23,148
+492,-79.21460000000003,200,0.63025,98600,0.9608594220876694,47.0,289.0,15,148
+493,-33.579199999999986,200,0.6295,98800,0.9431501559913158,39.0,207.0,12,157
+494,-16.772999999999993,200,0.62875,99000,0.9378102433681488,80.0,255.0,18,158
+495,-17.777600000000007,200,0.628,99200,1.0655517360568048,54.0,206.0,12,169
+496,-63.64979999999999,200,0.62725,99400,1.05496087372303,70.0,322.0,20,163
+497,-16.665999999999997,200,0.6265000000000001,99600,1.001667523086071,76.0,280.0,23,163
+498,-6.866599999999989,200,0.62575,99800,1.0102650032937526,66.0,200.0,15,156
+499,38.2494,200,0.625,100000,1.0156275579333305,81.0,145.0,20,153
+500,-66.58959999999996,200,0.62425,100000,0.9413171333074569,29.0,239.0,8,161
+501,-47.5084,200,0.6234999999999999,100000,0.9349520061910153,54.0,245.0,20,159
+502,-24.5324,200,0.6227499999999999,100000,0.9680583104491234,69.0,250.0,17,153
+503,9.426200000000009,200,0.622,100000,1.032858602106571,83.0,215.0,20,169
+504,-83.89199999999995,200,0.62125,100000,0.9906657776236534,38.0,278.0,10,152
+505,-26.727800000000002,200,0.6205,100000,0.9609856660664081,45.0,221.0,20,167
+506,-112.96819999999998,200,0.61975,100000,0.9336583919823169,30.0,341.0,8,158
+507,-22.843399999999985,200,0.619,100000,0.9739815205335617,68.0,251.0,21,162
+508,-2.928199999999978,200,0.61825,100000,1.0571688379347324,88.0,269.0,26,177
+509,-22.116600000000002,200,0.6174999999999999,100000,1.0319105069339276,63.0,246.0,20,168
+510,-19.69719999999999,200,0.6167499999999999,100000,1.00470511674881,50.0,208.0,19,151
+511,-31.34559999999998,200,0.616,100000,0.9710361529886723,51.0,209.0,14,152
+512,-143.65400000000002,200,0.6152500000000001,100000,0.9776182359457016,16.0,365.0,6,159
+513,-106.42359999999998,200,0.6145,100000,1.0231951700150967,53.0,376.0,13,170
+514,14.798800000000025,200,0.61375,100000,1.0399322746694089,69.0,188.0,23,166
+515,6.804200000000005,200,0.613,100000,0.9818397299945354,82.0,228.0,19,155
+516,-19.96899999999998,200,0.61225,100000,0.9781458772718906,52.0,193.0,13,168
+517,-82.42400000000002,200,0.6114999999999999,100000,0.963166518509388,39.0,273.0,15,155
+518,-47.747399999999985,200,0.61075,100000,1.0019452476501465,41.0,243.0,18,165
+519,4.699400000000006,200,0.61,100000,0.9477776832878589,69.0,178.0,20,153
+520,-54.868799999999986,200,0.6092500000000001,100000,0.9604246190190315,51.0,264.0,20,161
+521,-31.192800000000005,200,0.6085,100000,0.9402584111690522,51.0,212.0,13,151
+522,-102.90419999999999,200,0.60775,100000,1.0049497686326503,29.0,323.0,14,171
+523,-87.20219999999999,200,0.607,100000,0.9998139902949333,46.0,338.0,12,169
+524,6.337600000000018,200,0.60625,100000,1.0468191684782504,61.0,174.0,17,145
+525,-13.50519999999997,200,0.6054999999999999,100000,0.9953548699617386,59.0,206.0,15,147
+526,-16.60839999999999,200,0.60475,100000,1.0134549321234225,63.0,211.0,17,170
+527,-26.467199999999984,200,0.604,100000,0.9547465245425701,59.0,229.0,14,152
+528,-60.959399999999974,200,0.60325,100000,0.9809060709178448,37.0,239.0,13,166
+529,-29.299000000000003,200,0.6025,100000,0.940533562451601,52.0,205.0,14,168
+530,-59.884799999999984,200,0.60175,100000,1.098448394984007,69.0,306.0,16,152
+531,-61.56380000000002,200,0.601,100000,1.0754553323984146,45.0,274.0,13,168
+532,-33.205799999999975,200,0.60025,100000,1.0134288197755814,72.0,291.0,14,168
+533,-69.2366,200,0.5994999999999999,100000,1.0027384810149669,59.0,318.0,16,156
+534,-73.02559999999998,200,0.5987499999999999,100000,0.9831630469858647,38.0,268.0,9,155
+535,-86.65859999999999,200,0.598,100000,0.9859247374534607,35.0,295.0,13,169
+536,-17.90199999999999,200,0.5972500000000001,100000,1.0221089653670787,71.0,229.0,21,167
+537,8.145199999999978,200,0.5965,100000,0.9806821882724762,69.0,208.0,16,166
+538,-54.24900000000001,200,0.59575,100000,0.936836097985506,52.0,259.0,16,165
+539,-81.12960000000002,200,0.595,100000,0.944005932956934,33.0,284.0,13,163
+540,-19.85999999999998,200,0.59425,100000,1.001707461029291,60.0,229.0,19,165
+541,-17.791000000000004,200,0.5934999999999999,100000,1.011704953610897,64.0,232.0,20,157
+542,-0.8221999999999889,200,0.59275,100000,0.953792266100645,68.0,223.0,19,167
+543,-17.694799999999997,200,0.5920000000000001,100000,0.9584919774532318,57.0,202.0,14,157
+544,23.12600000000003,200,0.59125,100000,0.9200626759231091,75.0,172.0,19,166
+545,-25.1768,200,0.5905,100000,1.0350186175107956,41.0,174.0,14,154
+546,-14.238799999999998,200,0.58975,100000,1.0266152676939964,61.0,223.0,11,162
+547,-45.79519999999998,200,0.589,100000,1.003714406043291,60.0,271.0,19,163
+548,-35.8498,200,0.5882499999999999,100000,0.9774196715652943,50.0,242.0,18,153
+549,17.053199999999993,200,0.5875,100000,0.9693314430117607,69.0,165.0,19,163
+550,-65.27120000000001,200,0.58675,100000,0.9389995785057544,56.0,304.0,11,163
+551,-30.929000000000013,200,0.586,100000,0.951387393027544,69.0,279.0,15,160
+552,-31.122799999999984,200,0.58525,100000,0.9881118270754814,68.0,283.0,23,160
+553,-39.15199999999999,200,0.5845,100000,1.0420560607314109,61.0,257.0,14,167
+554,-51.709,200,0.58375,100000,1.064389519095421,46.0,239.0,12,151
+555,-59.75559999999999,200,0.583,100000,0.9646476349234581,54.0,281.0,19,175
+556,-69.01359999999995,200,0.5822499999999999,100000,0.977118968963623,46.0,302.0,17,163
+557,-58.63100000000002,200,0.5814999999999999,100000,0.9898940749466419,44.0,259.0,9,174
+558,-23.60979999999998,200,0.58075,100000,1.0422092899680138,49.0,220.0,20,156
+559,-34.622400000000006,200,0.58,100000,1.017284672856331,68.0,276.0,19,177
+560,10.763000000000009,200,0.57925,100000,1.0232866056263448,73.0,197.0,25,172
+561,-23.967199999999977,200,0.5785,100000,0.9863485518097878,64.0,245.0,23,164
+562,-102.3802,200,0.57775,100000,1.0122889518737792,28.0,315.0,15,159
+563,15.336000000000016,200,0.577,100000,0.9782495096325874,76.0,191.0,24,169
+564,-14.38659999999999,200,0.5762499999999999,100000,0.9848030792176723,64.0,223.0,24,161
+565,-10.826999999999988,200,0.5754999999999999,100000,1.007632877379656,85.0,246.0,15,161
+566,-16.620199999999993,200,0.5747500000000001,100000,1.0211114066839218,72.0,235.0,17,167
+567,-15.050799999999994,200,0.5740000000000001,100000,1.0099995665252208,66.0,226.0,20,162
+568,18.6966,200,0.57325,100000,1.0184528097510337,87.0,220.0,26,163
+569,24.722200000000015,200,0.5725,100000,1.0174102729558945,83.0,188.0,26,143
+570,-52.9738,200,0.57175,100000,0.9737530295550824,44.0,231.0,7,168
+571,2.9184000000000085,200,0.571,100000,0.9298036327958107,51.0,141.0,15,166
+572,-63.6784,200,0.57025,100000,0.9804792521893978,49.0,289.0,15,153
+573,31.17120000000002,200,0.5695,100000,0.9892449373006821,78.0,182.0,24,155
+574,-29.38319999999998,200,0.56875,100000,1.0333749309182167,64.0,259.0,17,162
+575,12.537600000000007,200,0.5680000000000001,100000,1.0551793420314788,67.0,183.0,25,182
+576,-19.95479999999998,200,0.56725,100000,1.0557049858570098,72.0,255.0,18,167
+577,-28.690399999999975,200,0.5665,100000,1.0497478719055653,54.0,229.0,19,155
+578,-93.52299999999997,200,0.56575,100000,0.9769483660161495,44.0,311.0,12,162
+579,-12.140599999999996,200,0.565,100000,1.02051426500082,58.0,197.0,21,167
+580,-61.429199999999966,200,0.5642499999999999,100000,1.1151050448417663,57.0,283.0,17,160
+581,-30.168600000000005,200,0.5635,100000,1.045178209543228,73.0,264.0,17,169
+582,-72.6718,200,0.56275,100000,1.0395967355370521,47.0,283.0,10,170
+583,-26.640999999999984,200,0.5619999999999999,100000,0.95735939219594,54.0,210.0,16,168
+584,-13.63220000000001,200,0.56125,100000,0.9371457929909229,61.0,212.0,19,155
+585,-43.37939999999999,200,0.5605,100000,0.9757967248558999,60.0,258.0,16,158
+586,-3.9664000000000126,200,0.55975,100000,0.9467242185771465,69.0,207.0,21,158
+587,-72.0044,200,0.5589999999999999,100000,0.9814276023209095,40.0,290.0,25,167
+588,-18.070199999999986,200,0.5582499999999999,100000,0.9830426008999348,56.0,195.0,16,146
+589,-16.556200000000008,200,0.5575,100000,0.9897353775799275,69.0,222.0,21,149
+590,-5.084799999999983,200,0.5567500000000001,100000,1.0677131345868112,62.0,208.0,20,169
+591,52.476400000000005,200,0.556,100000,1.069359216541052,85.0,142.0,27,162
+592,-35.36919999999999,200,0.55525,100000,1.0453669372200967,59.0,245.0,17,152
+593,21.34939999999998,200,0.5545,100000,0.955659805983305,81.0,181.0,16,158
+594,-39.27719999999998,200,0.55375,100000,0.9760388946533203,63.0,269.0,17,167
+595,-46.840999999999994,200,0.5529999999999999,100000,1.0892289623618125,66.0,286.0,17,173
+596,-54.490399999999994,200,0.55225,100000,1.07436572432518,49.0,266.0,17,170
+597,-56.68479999999999,200,0.5515,100000,1.0537268897891046,43.0,270.0,16,161
+598,11.833400000000063,200,0.5507500000000001,100000,0.9653923788666725,62.0,178.0,17,162
+599,24.829200000000014,200,0.55,100000,0.9564311438798905,67.0,161.0,22,158
+600,-101.47680000000001,200,0.54925,100000,0.9938236327469349,51.0,372.0,17,160
+601,9.349199999999996,200,0.5485,100000,1.035304811000824,63.0,171.0,20,170
+602,5.070200000000009,200,0.54775,100000,1.0312644869089127,87.0,230.0,20,163
+603,-9.109399999999983,200,0.547,100000,1.0478298076987267,63.0,208.0,17,144
+604,-5.90479999999998,200,0.54625,100000,1.0567904248833657,48.0,170.0,22,166
+605,-132.46519999999998,200,0.5455,100000,1.0419562561810016,28.0,363.0,10,174
+606,-27.039799999999993,200,0.54475,100000,1.0907594409585,74.0,270.0,25,148
+607,-47.8562,200,0.5439999999999999,100000,1.0341164392232896,68.0,287.0,20,161
+608,-37.81120000000002,200,0.54325,100000,1.0102175608277322,60.0,262.0,14,162
+609,-57.74339999999999,200,0.5425,100000,1.0111202648282052,42.0,246.0,14,163
+610,-102.17760000000006,200,0.54175,100000,1.0203624625504017,34.0,297.0,8,146
+611,-60.03500000000001,200,0.5409999999999999,100000,1.0574165807664395,49.0,274.0,20,164
+612,-5.658399999999987,200,0.5402499999999999,100000,1.0738558554649353,77.0,258.0,26,171
+613,21.375799999999995,200,0.5394999999999999,100000,1.0378269404172897,67.0,166.0,25,171
+614,-56.58859999999998,200,0.5387500000000001,100000,1.037951713502407,47.0,270.0,14,151
+615,-43.02719999999997,200,0.538,100000,1.1749689491093158,56.0,246.0,12,178
+616,56.76659999999996,200,0.53725,100000,1.1705124431848526,85.0,142.0,25,164
+617,-45.20359999999996,200,0.5365,100000,1.0693737882375718,62.0,275.0,19,178
+618,-42.364000000000004,200,0.53575,100000,0.9709757725894451,67.0,290.0,12,170
+619,16.611600000000013,200,0.5349999999999999,100000,0.9907190881669521,76.0,205.0,21,160
+620,-56.962399999999995,200,0.53425,100000,1.0065020036697387,57.0,293.0,15,171
+621,9.288800000000021,200,0.5335000000000001,100000,0.9797047510743141,67.0,191.0,22,142
+622,-25.750999999999976,200,0.5327500000000001,100000,1.0129398059844972,66.0,262.0,25,160
+623,5.279199999999993,200,0.532,100000,1.007215817719698,90.0,250.0,23,162
+624,-48.153599999999976,200,0.53125,100000,0.9934874650835991,72.0,300.0,16,170
+625,-55.80620000000002,200,0.5305,100000,1.042198854982853,58.0,283.0,20,164
+626,-66.20939999999996,200,0.5297499999999999,100000,1.0338512209057809,61.0,311.0,12,169
+627,-9.725399999999969,200,0.529,100000,1.030282546877861,73.0,223.0,21,162
+628,-36.58,200,0.52825,100000,1.0499687543511391,49.0,238.0,20,157
+629,-37.710599999999964,200,0.5275,100000,1.063093792796135,79.0,289.0,15,157
+630,-30.251199999999987,200,0.5267499999999999,100000,0.935874349027872,67.0,256.0,16,166
+631,10.742799999999994,200,0.526,100000,0.9784987956285477,66.0,176.0,20,171
+632,-58.64500000000001,200,0.52525,100000,1.0014411164820194,42.0,249.0,20,149
+633,-45.490999999999985,200,0.5245,100000,1.0500460997223855,67.0,301.0,22,167
+634,-9.211199999999966,200,0.5237499999999999,100000,1.0513223050534726,58.0,197.0,20,169
+635,26.68160000000001,200,0.5229999999999999,100000,1.0469954161345958,78.0,180.0,24,160
+636,-32.04159999999996,200,0.5222499999999999,100000,1.0065891276299954,66.0,252.0,16,159
+637,10.88120000000003,200,0.5215000000000001,100000,1.0429354290664197,63.0,162.0,17,168
+638,-39.276599999999995,200,0.52075,100000,1.0689185094833373,57.0,266.0,16,163
+639,-68.3934,200,0.52,100000,1.020278249979019,55.0,305.0,17,163
+640,-12.595399999999987,200,0.51925,100000,0.9958591285347939,61.0,228.0,27,159
+641,-21.372799999999984,200,0.5185,100000,1.005656081587076,48.0,195.0,15,167
+642,-41.21799999999999,200,0.5177499999999999,100000,1.0116734221577643,46.0,224.0,18,159
+643,15.31280000000001,200,0.517,100000,1.0175314390659331,64.0,191.0,26,161
+644,27.65619999999998,200,0.51625,100000,1.0249798028171062,57.0,124.0,24,167
+645,18.465800000000012,200,0.5155000000000001,100000,1.0017511765658855,73.0,173.0,16,156
+646,22.087000000000003,200,0.51475,100000,1.0087936194241047,78.0,175.0,20,174
+647,50.960400000000014,200,0.514,100000,0.9626708123087883,74.0,107.0,20,147
+648,-28.473399999999973,200,0.51325,100000,0.9816423743963242,51.0,231.0,20,166
+649,33.8772,200,0.5125,100000,1.0139680910110473,85.0,152.0,17,159
+650,4.938200000000046,200,0.5117499999999999,100000,1.0685607159137727,62.0,189.0,26,157
+651,-16.179599999999986,200,0.511,100000,1.0384179630875587,60.0,208.0,17,156
+652,-27.459199999999992,200,0.51025,100000,1.0284119927883149,53.0,214.0,17,166
+653,-3.9513999999999863,200,0.5095,100000,1.0570671175420285,67.0,226.0,21,169
+654,-61.26359999999999,200,0.50875,100000,1.0143823455274106,55.0,292.0,16,162
+655,6.137200000000004,200,0.508,100000,0.9677610862255096,73.0,204.0,18,162
+656,-63.612800000000014,200,0.50725,100000,0.9822520320117474,35.0,259.0,12,164
+657,-20.61299999999998,200,0.5065,100000,0.9455555573105812,63.0,244.0,20,172
+658,-33.023999999999994,200,0.5057499999999999,100000,0.9513682380318642,49.0,227.0,17,159
+659,-17.82099999999997,200,0.5049999999999999,100000,0.9460777734220028,61.0,226.0,18,161
+660,-40.07519999999999,200,0.5042500000000001,100000,0.934193012714386,42.0,212.0,17,159
+661,-42.54000000000002,200,0.5035000000000001,100000,0.9518718226253986,45.0,218.0,14,170
+662,-23.115999999999975,200,0.50275,100000,1.0239923188090325,54.0,205.0,17,149
+663,-21.471000000000007,200,0.502,100000,1.0694598051905633,58.0,232.0,20,181
+664,10.577999999999982,200,0.50125,100000,1.0902994707226754,66.0,172.0,18,151
+665,24.62499999999999,200,0.5005,100000,0.9606939248740674,73.0,166.0,17,165
+666,-35.089199999999984,200,0.49975,100000,0.9581971155107021,50.0,210.0,15,165
+667,-65.54499999999999,200,0.499,100000,0.9519183944165707,52.0,284.0,10,155
+668,-13.16119999999999,200,0.49824999999999997,100000,0.9434581437706947,72.0,240.0,18,161
+669,-57.45399999999998,200,0.49749999999999994,100000,0.9563149903714657,43.0,242.0,16,155
+670,24.28460000000006,200,0.4967499999999999,100000,0.9782458306849002,86.0,205.0,32,179
+671,-43.1526,200,0.4959999999999999,100000,0.9783943481743336,53.0,256.0,18,160
+672,-21.318800000000003,200,0.49524999999999997,100000,0.9409131373465062,62.0,237.0,23,155
+673,41.501000000000005,200,0.49450000000000005,100000,0.8963767679035664,86.0,165.0,27,155
+674,-30.219199999999994,200,0.49375,100000,0.9030915902554989,82.0,302.0,20,173
+675,-40.10059999999999,200,0.493,100000,0.9754752244055271,52.0,235.0,18,169
+676,-64.39099999999995,200,0.49224999999999997,100000,0.9226584327220917,66.0,332.0,12,176
+677,-34.838399999999986,200,0.49150000000000005,100000,0.9127953559160232,49.0,210.0,17,159
+678,-24.919599999999996,200,0.49075,100000,1.0005634868144988,65.0,230.0,17,169
+679,-26.747400000000013,200,0.49,100000,0.9832841688394547,62.0,235.0,19,145
+680,3.5672000000000033,200,0.48924999999999996,100000,0.934774309694767,67.0,186.0,14,155
+681,-43.02879999999999,200,0.48849999999999993,100000,0.9486317896842956,38.0,227.0,24,169
+682,-33.182000000000016,200,0.4877499999999999,100000,0.9496357628703117,51.0,237.0,19,160
+683,-17.202399999999976,200,0.487,100000,1.018179594874382,70.0,242.0,20,154
+684,18.092200000000005,200,0.48624999999999996,100000,1.0047528375685215,76.0,185.0,27,161
+685,-118.3838,200,0.48550000000000004,100000,1.0198045936226845,37.0,353.0,10,158
+686,-4.158999999999936,200,0.48475,100000,0.9892956145107746,80.0,251.0,27,172
+687,-11.2662,200,0.484,100000,1.0257976391911507,84.0,270.0,23,162
+688,-39.09660000000001,200,0.48324999999999996,100000,1.0715261602401733,39.0,223.0,18,143
+689,-63.82699999999999,200,0.48250000000000004,100000,1.0508968105912209,39.0,263.0,9,159
+690,12.193199999999987,200,0.48175,100000,0.9860753594338894,79.0,188.0,19,163
+691,-9.255799999999994,200,0.481,100000,0.9927834707498551,71.0,228.0,23,164
+692,3.009200000000014,200,0.48024999999999995,100000,1.0292962524294853,80.0,215.0,16,161
+693,-11.923599999999974,200,0.4794999999999999,100000,1.0486363005638122,62.0,231.0,18,152
+694,-29.347799999999957,200,0.4787499999999999,100000,1.0923628495633602,75.0,301.0,24,171
+695,-3.271999999999988,200,0.478,100000,0.9136351178586483,60.0,178.0,19,153
+696,-1.5227999999999728,200,0.47724999999999995,100000,0.9108746626973152,54.0,188.0,28,165
+697,-47.37720000000001,200,0.47650000000000003,100000,0.9813977141678333,47.0,235.0,13,148
+698,12.465600000000002,200,0.47575,100000,0.9783967845141888,80.0,197.0,18,161
+699,-3.532399999999982,200,0.475,100000,0.9604244405031204,61.0,193.0,26,160
+700,-28.51699999999999,200,0.47425000000000006,100000,0.9965558266639709,56.0,233.0,17,169
+701,-42.020599999999995,200,0.47350000000000003,100000,0.9601615649461747,44.0,213.0,18,169
+702,16.3544,200,0.47275,100000,0.9918615324795246,88.0,205.0,15,168
+703,-9.635800000000001,200,0.472,100000,0.9667651815712452,50.0,190.0,22,166
+704,-10.623200000000008,200,0.47124999999999995,100000,0.9951798719167709,60.0,183.0,15,128
+705,-42.06819999999999,200,0.4704999999999999,100000,1.1307249176502228,73.0,288.0,15,159
+706,-60.584399999999995,200,0.46975,100000,1.102489307820797,48.0,276.0,10,173
+707,-21.34599999999998,200,0.469,100000,1.0295437090098858,47.0,189.0,25,169
+708,-54.01200000000003,200,0.46824999999999994,100000,0.9909662832319737,50.0,263.0,17,169
+709,-54.188799999999986,200,0.4675,100000,0.9790593831241131,61.0,276.0,15,161
+710,-34.931,200,0.46675,100000,0.9734118708968162,53.0,231.0,16,164
+711,-72.06739999999999,200,0.46599999999999997,100000,0.9404794903099537,42.0,267.0,14,159
+712,30.671000000000017,200,0.46525000000000005,100000,0.9556393620371818,87.0,192.0,27,172
+713,4.202799999999987,200,0.4645,100000,0.9552227318286896,82.0,237.0,23,177
+714,-76.3254,200,0.46375,100000,1.007806043624878,39.0,257.0,10,143
+715,-18.668200000000006,200,0.46299999999999997,100000,0.9686121289432049,62.0,206.0,14,160
+716,5.1136000000000035,200,0.46224999999999994,100000,0.9498054337501526,93.0,243.0,20,170
+717,8.14460000000001,200,0.4614999999999999,100000,0.9547566793859005,77.0,194.0,24,151
+718,-42.12539999999997,200,0.46075,100000,0.9604536266624928,49.0,232.0,19,171
+719,-22.119799999999973,200,0.45999999999999996,100000,0.9795938546955586,57.0,228.0,19,168
+720,18.6628,200,0.45924999999999994,100000,0.9600288942456245,67.0,165.0,18,165
+721,7.0813999999999995,200,0.4585,100000,0.9409200148284436,76.0,227.0,28,159
+722,-54.57899999999998,200,0.45775,100000,0.972659414112568,56.0,276.0,18,171
+723,-18.592799999999983,200,0.45699999999999996,100000,1.034787367284298,76.0,273.0,21,183
+724,39.801399999999994,200,0.45625000000000004,100000,0.9815768845379352,77.0,146.0,17,147
+725,63.309399999999954,200,0.4555,100000,0.9194421605765819,98.0,151.0,23,162
+726,-44.53660000000001,200,0.45475,100000,0.9326408864557743,64.0,293.0,20,154
+727,4.375000000000006,200,0.45399999999999996,100000,0.9070929664373398,71.0,196.0,23,161
+728,-23.492999999999995,200,0.45324999999999993,100000,0.9034684054553509,64.0,247.0,21,157
+729,-9.748600000000012,200,0.4525,100000,0.9103711386024952,80.0,263.0,19,152
+730,-32.940200000000004,200,0.45175,100000,0.9699585364758968,66.0,266.0,21,149
+731,33.61139999999998,200,0.45099999999999996,100000,0.9613903492689133,87.0,189.0,25,173
+732,12.337399999999999,200,0.45024999999999993,100000,0.9211829008162021,84.0,215.0,25,167
+733,-21.831399999999984,200,0.4495,100000,0.9525955672562122,91.0,289.0,22,165
+734,34.65380000000002,200,0.44875,100000,0.9608099760115146,75.0,153.0,27,161
+735,15.96839999999998,200,0.44800000000000006,100000,0.9247664292156696,73.0,188.0,23,155
+736,21.71379999999998,200,0.44725000000000004,100000,0.9621804459393024,51.0,122.0,30,174
+737,-32.0622,200,0.4465,100000,0.9557699672877789,42.0,178.0,11,170
+738,-55.5392,200,0.44575,100000,0.9599568508565426,40.0,235.0,13,179
+739,-58.53060000000001,200,0.44499999999999995,100000,0.9815240694582462,38.0,247.0,23,172
+740,13.238800000000035,200,0.4442499999999999,100000,1.0064437507092954,83.0,227.0,21,154
+741,-19.959600000000005,200,0.4435,100000,1.0325821268558502,63.0,241.0,26,163
+742,-9.875600000000023,200,0.44275,100000,1.0085224969685078,59.0,201.0,24,156
+743,9.10099999999999,200,0.44199999999999995,100000,0.9896227997541428,71.0,183.0,19,166
+744,-19.76619999999999,200,0.4412499999999999,100000,1.018352321833372,69.0,254.0,21,149
+745,6.6833999999999705,200,0.4405,100000,1.0180034020543098,59.0,150.0,14,123
+746,-0.183599999999978,200,0.43975,100000,0.9977928459644317,76.0,231.0,26,170
+747,31.471599999999984,200,0.43900000000000006,100000,1.0001316809654235,67.0,150.0,29,171
+748,-9.316799999999986,200,0.43825000000000003,100000,0.9451828575134278,73.0,237.0,20,169
+749,-78.14739999999999,200,0.4375,100000,0.9907112385332585,43.0,301.0,17,156
+750,-8.8908,200,0.43674999999999997,100000,0.942368420958519,53.0,191.0,20,172
+751,19.445800000000006,200,0.43599999999999994,100000,0.9120449174940586,70.0,156.0,20,159
+752,21.97939999999999,200,0.43525,100000,0.9366355475783348,74.0,187.0,26,166
+753,-82.3942,200,0.4345,100000,0.9167988362908364,33.0,266.0,17,158
+754,-23.065999999999985,200,0.43374999999999997,100000,0.9902281479537487,79.0,269.0,18,162
+755,-18.462999999999994,200,0.43299999999999994,100000,1.022745224237442,72.0,246.0,21,175
+756,-21.332599999999996,200,0.4322499999999999,100000,1.0106120151281357,69.0,251.0,17,166
+757,-5.323399999999975,200,0.4315,100000,0.9795724552869797,69.0,210.0,22,160
+758,-60.712200000000024,200,0.4307500000000001,100000,0.9552331489324569,51.0,268.0,14,156
+759,-15.052599999999996,200,0.43000000000000005,100000,0.9647405532002449,68.0,242.0,18,152
+760,-25.975599999999993,200,0.42925,100000,0.9510234704613686,64.0,247.0,26,169
+761,-123.37899999999999,200,0.4285,100000,0.9543239134550094,51.0,392.0,17,160
+762,-44.05719999999996,200,0.42774999999999996,100000,0.9972338742017746,66.0,287.0,16,167
+763,-50.792,200,0.42699999999999994,100000,0.9809046559035778,44.0,241.0,19,155
+764,-18.28459999999998,200,0.42625,100000,1.0144892844557762,58.0,207.0,19,171
+765,-6.036199999999986,200,0.4255,100000,0.9498042732477188,71.0,222.0,17,171
+766,20.5916,200,0.42474999999999996,100000,0.9735485491156578,71.0,161.0,17,171
+767,-52.04439999999998,200,0.42399999999999993,100000,0.9754155984520912,79.0,326.0,19,154
+768,-55.505800000000015,200,0.4232499999999999,100000,0.9479492817819118,56.0,272.0,14,177
+769,-44.16699999999999,200,0.4225,100000,0.9742997781932354,66.0,272.0,15,178
+770,-33.71059999999999,200,0.42175000000000007,100000,0.8760690048336983,45.0,225.0,13,161
+771,69.15299999999998,200,0.42100000000000004,100000,0.8738562053442002,103.0,171.0,30,165
+772,-37.83039999999998,200,0.42025,100000,0.9489898981153965,61.0,265.0,19,162
+773,-35.162,200,0.4195,100000,1.0085938242077828,53.0,240.0,23,163
+774,61.1662,200,0.41874999999999996,100000,1.0168231958150864,81.0,108.0,22,153
+775,-5.774999999999983,200,0.41800000000000004,100000,0.994846361130476,70.0,219.0,17,167
+776,23.769200000000016,200,0.41725,100000,1.0255968318879605,83.0,186.0,22,172
+777,32.04359999999998,200,0.4165,100000,0.9634533511102199,68.0,137.0,22,163
+778,-58.13260000000004,200,0.41574999999999995,100000,0.9283069522678852,57.0,301.0,23,158
+779,-36.563799999999965,200,0.4149999999999999,100000,0.9323437920212746,56.0,236.0,16,141
+780,-59.78300000000002,200,0.4142499999999999,100000,0.9818938541412353,44.0,250.0,18,159
+781,-9.585400000000018,200,0.4135,100000,0.9717677949368954,71.0,215.0,15,178
+782,48.31140000000004,200,0.41275000000000006,100000,0.9583818084001541,79.0,139.0,29,177
+783,5.3034,200,0.41200000000000003,100000,0.9516900727152824,57.0,164.0,20,158
+784,-36.26779999999999,200,0.41125,100000,0.9727079243957997,46.0,239.0,27,175
+785,-74.80379999999998,200,0.4105,100000,0.9542042075097561,56.0,299.0,14,156
+786,-11.494800000000003,200,0.40974999999999995,100000,0.9943746563792228,74.0,262.0,25,182
+787,-7.559799999999991,200,0.40900000000000003,100000,0.934213949739933,57.0,183.0,18,152
+788,-16.953799999999987,200,0.40825,100000,0.9267678035795689,70.0,247.0,20,174
+789,7.524000000000011,200,0.4075,100000,0.8963046722114086,62.0,166.0,20,149
+790,-10.354799999999994,200,0.40674999999999994,100000,0.9660035736858845,56.0,190.0,16,161
+791,38.36039999999999,200,0.4059999999999999,100000,0.9436141359806061,89.0,171.0,24,158
+792,-83.68939999999995,200,0.4052499999999999,100000,0.9179551759362221,40.0,288.0,19,170
+793,-10.640799999999999,200,0.40449999999999997,100000,0.8899285954236984,66.0,216.0,21,161
+794,-18.936799999999995,200,0.40375000000000005,100000,0.8518373000621796,54.0,225.0,23,169
+795,-78.317,200,0.403,100000,0.9270761984586716,52.0,322.0,16,169
+796,-3.74119999999996,200,0.40225,100000,0.9279166425764561,71.0,222.0,26,174
+797,50.32740000000001,200,0.40149999999999997,100000,0.9296696038544178,93.0,166.0,23,167
+798,-42.892999999999994,200,0.40074999999999994,100000,0.9032521198689938,65.0,294.0,22,168
+799,-78.64439999999999,200,0.4,100000,0.9196800242364407,58.0,336.0,15,145
+800,-12.021599999999987,200,0.39925,100000,0.9071595160663128,75.0,241.0,20,160
+801,3.9976000000000025,200,0.39849999999999997,100000,0.9098167358338833,65.0,199.0,26,176
+802,-46.338400000000014,200,0.39774999999999994,100000,0.9217378154397011,50.0,240.0,13,166
+803,-56.131199999999986,200,0.3969999999999999,100000,0.8915664222836495,53.0,297.0,20,166
+804,35.67559999999998,200,0.39625,100000,0.9355122970044613,113.0,246.0,28,164
+805,12.246399999999989,200,0.39549999999999996,100000,0.9572147303819656,98.0,248.0,23,157
+806,20.6064,200,0.39475000000000005,100000,0.982607002556324,78.0,182.0,22,174
+807,1.4170000000000111,200,0.394,100000,1.033596530407667,63.0,206.0,22,164
+808,19.04220000000001,200,0.39325,100000,0.9681255900859833,88.0,220.0,29,173
+809,-1.1659999999999964,200,0.39249999999999996,100000,0.9405520910024643,73.0,217.0,25,146
+810,-94.56580000000004,200,0.39175000000000004,100000,0.9715221218764782,31.0,279.0,10,116
+811,8.370400000000012,200,0.391,100000,0.9639857338368892,74.0,202.0,21,167
+812,-32.7186,200,0.39025,100000,1.0097142380475999,53.0,253.0,29,163
+813,10.87180000000001,200,0.38949999999999996,100000,1.0428029762208462,81.0,221.0,24,137
+814,-102.42819999999996,200,0.38874999999999993,100000,0.9992688845098019,32.0,335.0,17,161
+815,5.9828000000000126,200,0.3879999999999999,100000,0.9434694623947144,90.0,259.0,22,153
+816,3.6694000000000067,200,0.38725,100000,0.9524803881347179,63.0,181.0,28,167
+817,3.690400000000024,200,0.38649999999999995,100000,0.9572851413488388,65.0,202.0,20,155
+818,-63.0254,200,0.38575000000000004,100000,0.9314402298629284,35.0,235.0,9,149
+819,54.73779999999999,200,0.385,100000,0.9710060346126557,85.0,140.0,28,168
+820,9.463399999999998,200,0.38425,100000,0.9460584470629692,60.0,175.0,24,144
+821,25.31240000000001,200,0.38349999999999995,100000,0.9574944621324539,83.0,177.0,17,170
+822,43.24640000000001,200,0.38275000000000003,100000,0.972144041210413,74.0,134.0,26,157
+823,4.871400000000004,200,0.382,100000,0.9423255507647991,58.0,179.0,25,155
+824,-22.18959999999998,200,0.38125,100000,0.9644523866474628,44.0,193.0,18,155
+825,6.945400000000041,200,0.38049999999999995,100000,0.9051997336745262,83.0,214.0,21,158
+826,-20.256999999999973,200,0.3797499999999999,100000,0.8781133556365966,69.0,227.0,18,163
+827,-8.466799999999985,200,0.379,100000,0.8861778515577317,67.0,225.0,24,150
+828,3.9394000000000124,200,0.37825,100000,0.8881191480159759,69.0,217.0,20,161
+829,4.002600000000008,200,0.37749999999999995,100000,0.8707650808990002,73.0,208.0,25,174
+830,-15.51960000000001,200,0.37675000000000003,100000,0.9125772786140441,57.0,197.0,15,178
+831,-28.2252,200,0.376,100000,0.9124600169062614,60.0,235.0,18,131
+832,-6.988399999999998,200,0.37525,100000,0.9395519007742404,57.0,191.0,17,169
+833,-2.8677999999999852,200,0.37450000000000006,100000,0.942460106164217,85.0,271.0,30,162
+834,9.929600000000015,200,0.37375,100000,0.9305994790792466,73.0,199.0,24,164
+835,14.158999999999974,200,0.373,100000,0.9779486081004143,79.0,199.0,23,173
+836,-16.64799999999999,200,0.37224999999999997,100000,1.0250103721022605,69.0,249.0,20,166
+837,-14.060199999999996,200,0.37149999999999994,100000,0.9452164521813393,57.0,211.0,16,152
+838,29.80540000000002,200,0.3707499999999999,100000,0.9337871116399765,82.0,185.0,32,168
+839,-23.879999999999995,200,0.37,100000,0.87922089189291,51.0,189.0,20,164
+840,-51.26780000000001,200,0.36924999999999997,100000,0.8999175389111042,46.0,244.0,18,164
+841,11.267200000000003,200,0.36849999999999994,100000,0.9193235728144645,80.0,216.0,21,173
+842,-59.561399999999985,200,0.36775,100000,0.9000018788874149,49.0,278.0,15,144
+843,-18.25899999999999,200,0.367,100000,0.9884720259904861,54.0,213.0,22,175
+844,-36.96300000000001,200,0.36624999999999996,100000,0.9591436818242073,68.0,291.0,20,160
+845,38.71060000000001,200,0.36550000000000005,100000,0.8944630578160286,97.0,201.0,21,169
+846,14.708199999999998,200,0.36475,100000,0.9105641603469848,72.0,201.0,24,181
+847,-58.633799999999965,200,0.364,100000,0.9337374198436738,51.0,290.0,17,158
+848,-28.009199999999964,200,0.36324999999999996,100000,0.9320664688944816,61.0,242.0,23,179
+849,-27.04979999999998,200,0.36249999999999993,100000,0.9650158561766148,70.0,265.0,22,159
+850,-5.191599999999991,200,0.36175,100000,0.8643194341659546,62.0,196.0,19,156
+851,71.02680000000002,200,0.361,100000,0.8954458901286125,110.0,177.0,33,154
+852,17.637800000000027,200,0.36024999999999996,100000,0.9304283337295055,103.0,251.0,21,167
+853,-55.553199999999954,200,0.35949999999999993,100000,0.9535707205533981,48.0,264.0,15,154
+854,-11.4126,200,0.35875,100000,0.9669551359117031,68.0,233.0,19,164
+855,-24.675599999999996,200,0.358,100000,0.9254406912624836,70.0,263.0,21,177
+856,-14.974799999999966,200,0.35725000000000007,100000,0.9365991605818271,79.0,244.0,22,173
+857,-3.5569999999999933,200,0.35650000000000004,100000,0.9131096124649047,70.0,221.0,31,159
+858,-14.999999999999995,200,0.35575,100000,0.9006662641465664,47.0,186.0,21,148
+859,-4.0017999999999745,200,0.355,100000,0.9122639259696007,62.0,209.0,19,147
+860,-125.17160000000003,200,0.35424999999999995,100000,0.9555171118676662,36.0,368.0,15,158
+861,-23.649599999999992,200,0.3534999999999999,100000,0.962439194470644,70.0,259.0,17,167
+862,-51.49319999999999,200,0.35275,100000,0.959082008600235,50.0,242.0,16,151
+863,-1.1187999999999825,200,0.352,100000,0.9620117874443531,57.0,197.0,23,178
+864,-0.5235999999999734,200,0.35124999999999995,100000,0.9619076664745808,71.0,227.0,28,161
+865,-26.537399999999973,200,0.3504999999999999,100000,0.8776749630272388,72.0,270.0,25,165
+866,46.08420000000001,200,0.34975,100000,0.9017760609090328,73.0,146.0,27,160
+867,-82.71939999999991,200,0.349,100000,0.8897020986676216,42.0,291.0,12,159
+868,-18.232,200,0.34825000000000006,100000,0.9643375332653522,49.0,209.0,17,169
+869,-121.94139999999997,200,0.34750000000000003,100000,0.9504624049365521,45.0,401.0,17,169
+870,26.211399999999998,200,0.34675,100000,0.9079414637386799,84.0,191.0,22,159
+871,-6.237400000000019,200,0.346,100000,0.9420786301791668,48.0,160.0,17,153
+872,-19.224999999999998,200,0.34524999999999995,100000,0.8898199957609176,84.0,280.0,20,156
+873,-22.897600000000004,200,0.3444999999999999,100000,0.9112705153226852,46.0,185.0,16,148
+874,-0.26539999999998504,200,0.34375,100000,0.9118312115967274,58.0,181.0,15,155
+875,-27.572200000000006,200,0.34299999999999997,100000,0.9115822121500969,51.0,212.0,18,161
+876,0.6813999999999952,200,0.34224999999999994,100000,0.9376241831481457,66.0,203.0,23,151
+877,-39.390399999999985,200,0.3414999999999999,100000,0.9125561568140984,59.0,259.0,20,167
+878,47.38700000000001,200,0.34075,100000,0.9388359449803829,79.0,120.0,18,140
+879,-49.88819999999999,200,0.3400000000000001,100000,0.950787673741579,57.0,286.0,13,167
+880,-20.01379999999999,200,0.33925000000000005,100000,0.9320077423751354,42.0,179.0,23,167
+881,-37.755400000000016,200,0.3385,100000,0.9201352035999298,58.0,228.0,15,159
+882,-4.632999999999983,200,0.33775,100000,0.875693793296814,90.0,283.0,26,156
+883,25.580399999999997,200,0.33699999999999997,100000,0.8691818012297153,60.0,142.0,20,150
+884,5.772599999999993,200,0.33624999999999994,100000,0.8687667869031429,71.0,194.0,19,158
+885,47.50359999999998,200,0.3355,100000,0.8743694062530994,75.0,120.0,28,157
+886,0.5920000000000094,200,0.33475,100000,0.8669837859272956,69.0,208.0,26,138
+887,40.4332,200,0.33399999999999996,100000,0.8489760917425155,86.0,175.0,25,167
+888,-2.942999999999992,200,0.33324999999999994,100000,0.8530792683362961,78.0,254.0,27,155
+889,30.037400000000012,200,0.3324999999999999,100000,0.8380898530781269,78.0,190.0,30,164
+890,66.57620000000003,200,0.33175,100000,0.9414335171878337,93.0,121.0,23,155
+891,-48.06039999999998,200,0.33100000000000007,100000,0.8895498605072498,50.0,268.0,16,166
+892,-14.12439999999999,200,0.33025000000000004,100000,0.8750355476140976,72.0,243.0,26,150
+893,23.001200000000008,200,0.3295,100000,0.8456070290505886,86.0,223.0,26,160
+894,-32.227,200,0.32875,100000,0.8592866410315037,51.0,210.0,18,157
+895,-8.87339999999999,200,0.32799999999999996,100000,0.8777908436954022,64.0,192.0,23,139
+896,18.281400000000055,200,0.32724999999999993,100000,0.897028373926878,57.0,156.0,27,176
+897,30.603200000000005,200,0.3265,100000,0.8880201202630996,64.0,155.0,22,167
+898,37.02799999999998,200,0.32575,100000,0.8658824515342712,83.0,183.0,23,173
+899,-2.2569999999999935,200,0.32499999999999996,100000,0.8943709917366505,68.0,194.0,17,160
+900,-34.865599999999965,200,0.3242499999999999,100000,0.9305221788585186,69.0,268.0,23,179
+901,-4.4073999999999955,200,0.3234999999999999,100000,0.9734386447072029,63.0,215.0,20,157
+902,-35.3498,200,0.32275,100000,0.9448546086251736,60.0,249.0,18,176
+903,-15.129599999999993,200,0.32200000000000006,100000,0.9254072982072831,72.0,238.0,18,159
+904,-3.875599999999999,200,0.32125000000000004,100000,0.908033658862114,84.0,253.0,26,170
+905,101.17520000000003,200,0.3205,100000,0.8948016303777695,111.0,104.0,30,163
+906,-45.25019999999999,200,0.31975,100000,0.9048551626503467,58.0,270.0,24,161
+907,10.361400000000035,200,0.31899999999999995,100000,0.8937441396713257,82.0,217.0,24,154
+908,39.660000000000004,200,0.31825000000000003,100000,0.8682715198397637,102.0,203.0,18,156
+909,17.675400000000007,200,0.3175,100000,0.8949709577858448,75.0,181.0,17,146
+910,54.138400000000004,200,0.31675,100000,0.9030621758103371,75.0,120.0,29,162
+911,-23.071599999999993,200,0.31599999999999995,100000,0.9159156759083271,56.0,233.0,22,160
+912,1.8778000000000028,200,0.3152499999999999,100000,0.9521454367041587,67.0,180.0,18,144
+913,-51.50279999999997,200,0.3144999999999999,100000,0.9277214434742928,57.0,297.0,22,170
+914,-13.613000000000001,200,0.31375,100000,0.9586847676336765,91.0,277.0,18,142
+915,-4.791600000000001,200,0.31300000000000006,100000,0.9101254276931285,71.0,238.0,24,156
+916,-69.15160000000002,200,0.31225,100000,0.9499223653972149,44.0,287.0,18,154
+917,-5.749599999999993,200,0.3115,100000,0.917279994636774,69.0,237.0,22,177
+918,25.239400000000014,200,0.31074999999999997,100000,0.9209091924130917,111.0,264.0,27,167
+919,5.000200000000013,200,0.30999999999999994,100000,0.9471422234177589,78.0,223.0,24,153
+920,-81.99139999999993,200,0.30925,100000,0.9482658612728119,48.0,317.0,16,130
+921,36.336200000000005,200,0.3085,100000,0.9418976095318794,77.0,146.0,20,142
+922,22.962600000000037,200,0.30774999999999997,100000,0.9320853973925114,89.0,211.0,37,159
+923,-37.68579999999997,200,0.30699999999999994,100000,0.9433517560362816,69.0,270.0,19,176
+924,15.557400000000008,200,0.3062499999999999,100000,0.9548291574418545,81.0,195.0,19,162
+925,40.186200000000035,200,0.3055,100000,0.865613094419241,100.0,212.0,26,165
+926,42.41279999999996,200,0.30474999999999997,100000,0.8579910899698734,89.0,177.0,28,180
+927,24.386400000000002,200,0.30400000000000005,100000,0.8808669081330299,84.0,208.0,24,172
+928,30.06020000000001,200,0.30325,100000,0.9176953047513962,76.0,174.0,26,164
+929,-0.2653999999999974,200,0.3025,100000,0.9357542583346367,54.0,194.0,23,162
+930,20.9352,200,0.30174999999999996,100000,0.9087379176914692,89.0,213.0,27,157
+931,27.382000000000023,200,0.30100000000000005,100000,0.8950044141709804,80.0,201.0,23,171
+932,-24.48759999999998,200,0.30025,100000,0.912062591612339,53.0,224.0,22,163
+933,0.43020000000001524,200,0.2995,100000,0.9168839135766029,65.0,196.0,20,141
+934,-4.648400000000011,200,0.29874999999999996,100000,0.9228213860094547,72.0,224.0,28,160
+935,72.9798000000001,200,0.29799999999999993,100000,0.9535828728973865,115.0,186.0,30,152
+936,13.886999999999976,200,0.2972499999999999,100000,0.9033225919306278,74.0,198.0,29,172
+937,74.50380000000003,200,0.2965,100000,0.8929213725030423,111.0,153.0,26,167
+938,-10.754600000000005,200,0.29574999999999996,100000,0.871174968034029,65.0,217.0,26,167
+939,28.01079999999999,200,0.29500000000000004,100000,0.9088346782326698,81.0,186.0,24,152
+940,-53.09159999999998,200,0.29425,100000,0.8626680839061737,48.0,251.0,16,154
+941,7.179400000000024,200,0.2935,100000,0.8922535394132137,80.0,210.0,20,168
+942,79.8974,200,0.29274999999999995,100000,0.9009251755475998,105.0,146.0,29,153
+943,1.9726000000000161,200,0.29200000000000004,100000,0.8583474297821522,77.0,214.0,22,183
+944,-8.355799999999984,200,0.29125,100000,0.9055181667208672,64.0,236.0,25,177
+945,55.23520000000005,200,0.2905,100000,0.8752276965975762,106.0,196.0,25,156
+946,-52.5572,200,0.28974999999999995,100000,0.8671822193264961,40.0,247.0,20,166
+947,4.304200000000013,200,0.2889999999999999,100000,0.9111599934101104,85.0,234.0,20,163
+948,-11.04499999999997,200,0.2882499999999999,100000,0.9657172173261642,70.0,256.0,26,171
+949,-16.09939999999998,200,0.2875,100000,0.9863515652716159,64.0,233.0,20,167
+950,9.937399999999984,200,0.28674999999999995,100000,0.8860007198154927,80.0,214.0,28,175
+951,-7.138600000000006,200,0.28600000000000003,100000,0.9267682991921902,48.0,186.0,29,167
+952,-30.616000000000007,200,0.28525,100000,0.9034115472435951,49.0,229.0,25,166
+953,-35.6212,200,0.2845,100000,0.9419299964606762,51.0,247.0,15,160
+954,3.185400000000015,200,0.28375000000000006,100000,0.9105338868498802,62.0,195.0,25,156
+955,-4.158000000000002,200,0.28300000000000003,100000,0.872083630412817,77.0,242.0,25,157
+956,30.9462,200,0.28225,100000,0.8380595403909683,84.0,201.0,27,146
+957,-6.804399999999977,200,0.2815,100000,0.8196464417874814,69.0,215.0,19,149
+958,-39.597999999999985,200,0.28074999999999994,100000,0.8483513231575489,57.0,279.0,24,166
+959,46.74659999999999,200,0.2799999999999999,100000,0.8410184594988823,94.0,176.0,30,171
+960,-55.70339999999999,200,0.27925,100000,0.8204619652032852,55.0,257.0,14,176
+961,8.64600000000003,200,0.27849999999999997,100000,0.8620052522420883,78.0,207.0,18,158
+962,19.81020000000002,200,0.27774999999999994,100000,0.8635177277028561,80.0,208.0,31,162
+963,10.043199999999986,200,0.277,100000,0.89113574847579,83.0,213.0,18,151
+964,6.8652,200,0.27625,100000,0.9211440314352513,72.0,197.0,16,154
+965,-36.88919999999999,200,0.27549999999999997,100000,0.8375958827137947,53.0,260.0,23,174
+966,-69.27019999999997,200,0.27475000000000005,100000,0.8129696094989777,43.0,277.0,19,136
+967,-39.772599999999976,200,0.274,100000,0.85779078155756,41.0,247.0,26,177
+968,75.70560000000002,200,0.27325,100000,0.8661031289398671,93.0,99.0,28,178
+969,22.454999999999995,200,0.27249999999999996,100000,0.883361688554287,85.0,210.0,24,169
+970,36.345000000000034,200,0.27174999999999994,100000,0.8523202687501907,102.0,217.0,28,165
+971,-27.536999999999974,200,0.2709999999999999,100000,0.8819146089255809,74.0,260.0,16,136
+972,-52.25039999999998,200,0.27025,100000,0.8392940460145474,47.0,270.0,13,163
+973,2.487399999999992,200,0.26949999999999996,100000,0.8346266104280948,83.0,245.0,25,155
+974,-3.5912000000000157,200,0.26874999999999993,100000,0.8445431551337242,73.0,219.0,24,167
+975,55.56340000000004,200,0.268,100000,0.809689489454031,94.0,166.0,28,164
+976,3.9770000000000207,200,0.26725,100000,0.8184512391686439,65.0,188.0,16,167
+977,-25.536199999999987,200,0.26650000000000007,100000,0.8407581877708435,42.0,188.0,20,173
+978,74.5014,200,0.26575000000000004,100000,0.8464264172315598,94.0,136.0,29,174
+979,-7.235399999999993,200,0.265,100000,0.8372880248725414,53.0,177.0,26,180
+980,24.353399999999997,200,0.26425,100000,0.8485670763254166,90.0,204.0,26,152
+981,84.5856,200,0.26349999999999996,100000,0.8407981909811497,104.0,135.0,31,165
+982,2.2466000000000204,200,0.26274999999999993,100000,0.8440667530894279,43.0,138.0,25,148
+983,46.27160000000002,200,0.262,100000,0.8504364180564881,107.0,213.0,24,156
+984,-46.50479999999999,200,0.26125,100000,0.8637214942276478,38.0,220.0,16,155
+985,5.042800000000002,200,0.26049999999999995,100000,0.8500784750282765,81.0,238.0,26,159
+986,29.899399999999993,200,0.2597499999999999,100000,0.8781037947535515,88.0,175.0,22,174
+987,-28.47639999999998,200,0.259,100000,0.8680999085307122,44.0,208.0,24,165
+988,20.094400000000004,200,0.25825,100000,0.8653821271657943,91.0,232.0,27,168
+989,68.12819999999998,200,0.25750000000000006,100000,0.8566489900648594,81.0,120.0,26,146
+990,28.416600000000017,200,0.25675000000000003,100000,0.8892544828355312,83.0,172.0,21,151
+991,80.97680000000001,200,0.256,100000,0.9049284774065017,94.0,118.0,30,177
+992,-27.94780000000001,200,0.25525,100000,0.8575148342549801,51.0,216.0,20,146
+993,50.56040000000003,200,0.25449999999999995,100000,0.8226317343115807,77.0,134.0,22,172
+994,-40.95839999999999,200,0.2537499999999999,100000,0.8871004223823548,69.0,291.0,17,162
+995,-12.566199999999977,200,0.253,100000,0.8654273861646652,56.0,232.0,23,175
+996,61.51560000000005,200,0.25225,100000,0.8797844396531582,103.0,155.0,26,174
+997,41.616600000000005,200,0.25149999999999995,100000,0.8640370187163353,89.0,181.0,32,162
+998,10.164600000000013,200,0.2507499999999999,100000,0.8917353454232216,82.0,217.0,22,142
+999,14.784799999999995,200,0.25,100000,0.856390400081873,101.0,270.0,31,148
+1000,6.133400000000014,200,0.24925000000000008,100000,0.9139093397557736,70.0,200.0,21,154
+1001,14.21260000000006,200,0.24850000000000005,100000,0.9102273587882519,92.0,239.0,21,171
+1002,-22.699,200,0.24775000000000003,100000,0.8753492365032435,69.0,262.0,24,156
+1003,79.93620000000003,200,0.247,100000,0.8336775957047939,94.0,115.0,34,150
+1004,-25.7026,200,0.24624999999999997,100000,0.8276810729503632,61.0,230.0,18,170
+1005,55.39400000000002,200,0.24549999999999994,100000,0.8347087712585926,95.0,161.0,27,155
+1006,7.878200000000003,200,0.24475000000000002,100000,0.8428968086838722,45.0,148.0,28,173
+1007,38.6246,200,0.244,100000,0.857108614295721,58.0,115.0,21,157
+1008,6.189000000000012,200,0.24324999999999997,100000,0.7949206203222274,63.0,185.0,19,145
+1009,-11.098799999999976,200,0.24249999999999994,100000,0.8239718955755234,70.0,234.0,19,177
+1010,116.53480000000008,200,0.2417499999999999,100000,0.8429941555857658,97.0,68.0,39,154
+1011,42.42920000000002,200,0.241,100000,0.833270661085844,72.0,140.0,26,171
+1012,-24.556399999999982,200,0.24025000000000007,100000,0.8302136962115765,57.0,233.0,16,160
+1013,-15.599799999999975,200,0.23950000000000005,100000,0.8625915816426277,59.0,233.0,26,142
+1014,-16.00139999999998,200,0.23875000000000002,100000,0.875565879046917,77.0,262.0,17,164
+1015,39.67860000000002,200,0.238,100000,0.903082966208458,80.0,171.0,35,170
+1016,-27.33719999999997,200,0.23724999999999996,100000,0.8972809147834778,75.0,287.0,20,168
+1017,15.638999999999996,200,0.23649999999999993,100000,0.925303210914135,69.0,181.0,19,156
+1018,30.260000000000012,200,0.23575000000000002,100000,0.8580133712291718,85.0,182.0,22,157
+1019,13.708200000000046,200,0.235,100000,0.8540903683006763,67.0,199.0,30,158
+1020,-3.4072000000000062,200,0.23424999999999996,100000,0.8140697348117828,70.0,220.0,28,171
+1021,15.824200000000003,200,0.23349999999999993,100000,0.8470625084638596,78.0,219.0,30,174
+1022,-29.19859999999998,200,0.2327499999999999,100000,0.8456216964125634,53.0,210.0,14,127
+1023,65.93440000000001,200,0.23199999999999998,100000,0.8513902068138123,103.0,154.0,26,165
+1024,80.34740000000002,200,0.23125000000000007,100000,0.8740279662609101,112.0,178.0,29,181
+1025,-10.593800000000002,200,0.23050000000000004,100000,0.8420710483193398,63.0,226.0,25,178
+1026,-18.898799999999977,200,0.22975,100000,0.8767253816127777,68.0,237.0,18,138
+1027,-13.400799999999995,200,0.22899999999999998,100000,0.8719838625192642,38.0,150.0,18,165
+1028,42.66680000000002,200,0.22824999999999995,100000,0.91989541888237,84.0,166.0,30,149
+1029,-6.685399999999986,200,0.22750000000000004,100000,0.8851417237520218,53.0,179.0,19,160
+1030,44.38339999999998,200,0.22675,100000,0.7955845825374126,61.0,96.0,25,161
+1031,12.654800000000007,200,0.22599999999999998,100000,0.850979356020689,74.0,197.0,25,166
+1032,37.39120000000003,200,0.22524999999999995,100000,0.8417197731137276,71.0,165.0,30,156
+1033,30.458000000000002,200,0.22449999999999992,100000,0.8611479716002941,58.0,102.0,20,160
+1034,39.205600000000004,200,0.2237499999999999,100000,0.847628195732832,84.0,172.0,25,141
+1035,9.9206,200,0.22299999999999998,100000,0.856947565972805,73.0,219.0,28,144
+1036,37.66700000000002,200,0.22225000000000006,100000,0.867579381018877,79.0,153.0,22,164
+1037,10.635999999999985,200,0.22150000000000003,100000,0.9188949726521969,79.0,189.0,20,159
+1038,42.7222,200,0.22075,100000,0.8625596357882023,67.0,156.0,36,178
+1039,81.84260000000003,200,0.21999999999999997,100000,0.8892532713711262,101.0,140.0,30,167
+1040,50.66899999999999,200,0.21924999999999994,100000,0.8122307467460632,84.0,147.0,23,142
+1041,33.07640000000003,200,0.21850000000000003,100000,0.8056401641666889,85.0,192.0,24,159
+1042,17.019600000000032,200,0.21775,100000,0.8061698941886425,83.0,218.0,30,167
+1043,64.2636,200,0.21699999999999997,100000,0.8080456750094891,95.0,139.0,25,170
+1044,1.665400000000012,200,0.21624999999999994,100000,0.8463935805857181,63.0,197.0,29,171
+1045,24.218400000000027,200,0.2154999999999999,100000,0.8168858970701695,88.0,210.0,29,180
+1046,3.8568000000000002,200,0.21474999999999989,100000,0.8215516078472137,80.0,236.0,29,177
+1047,13.846000000000018,200,0.21399999999999997,100000,0.8298983766138553,67.0,173.0,20,140
+1048,1.5676000000000059,200,0.21325000000000005,100000,0.8608404159545898,74.0,211.0,22,174
+1049,52.46120000000001,200,0.21250000000000002,100000,0.8314765068888664,97.0,163.0,23,180
+1050,39.8102,200,0.21175,100000,0.8814319869875908,74.0,180.0,32,170
+1051,27.896400000000014,200,0.21099999999999997,100000,0.8251967759430409,98.0,238.0,27,157
+1052,-20.818399999999993,200,0.21025000000000005,100000,0.8241247923672199,51.0,208.0,24,149
+1053,56.51120000000003,200,0.20950000000000002,100000,0.8489085024595261,83.0,145.0,42,176
+1054,43.930400000000034,200,0.20875,100000,0.8477285058796405,77.0,150.0,29,155
+1055,0.8146000000000068,200,0.20799999999999996,100000,0.8264258351922035,61.0,194.0,15,173
+1056,-27.526200000000003,200,0.20724999999999993,100000,0.8198418332636357,40.0,212.0,21,153
+1057,27.810400000000023,200,0.2064999999999999,100000,0.8739140883088112,89.0,215.0,31,165
+1058,-16.652799999999974,200,0.20575,100000,0.8793226407468319,48.0,203.0,20,180
+1059,70.37660000000002,200,0.20499999999999996,100000,0.8697440160810948,119.0,194.0,27,176
+1060,-26.092399999999994,200,0.20425000000000004,100000,0.8438188655674458,70.0,266.0,24,173
+1061,56.59060000000001,200,0.20350000000000001,100000,0.86225974842906,93.0,163.0,31,168
+1062,-0.46380000000001215,200,0.20274999999999999,100000,0.8244052545726299,69.0,228.0,26,159
+1063,64.39739999999996,200,0.20199999999999996,100000,0.8459168876707553,98.0,161.0,31,173
+1064,69.75559999999993,200,0.20125000000000004,100000,0.8019035184383392,84.0,117.0,28,160
+1065,41.1844,200,0.2005,100000,0.8754078276455403,101.0,209.0,29,174
+1066,70.38360000000002,200,0.19974999999999998,100000,0.8537220765650272,105.0,181.0,34,182
+1067,20.72000000000002,200,0.19899999999999995,100000,0.833213602155447,81.0,209.0,26,159
+1068,-33.668600000000005,200,0.19824999999999993,100000,0.8873677784204483,84.0,319.0,27,157
+1069,57.13180000000003,200,0.1974999999999999,100000,0.8671675926446915,79.0,129.0,25,161
+1070,8.937800000000001,200,0.19674999999999998,100000,0.8616404749453068,48.0,172.0,36,180
+1071,44.271,200,0.19599999999999995,100000,0.8627943748235702,71.0,138.0,27,167
+1072,16.852800000000013,200,0.19525000000000003,100000,0.8378044857084751,64.0,177.0,23,165
+1073,103.489,200,0.1945,100000,0.9093652421236038,110.0,117.0,33,184
+1074,2.2855999999999863,200,0.19374999999999998,100000,0.8766473866999149,69.0,222.0,28,168
+1075,45.40100000000007,200,0.19300000000000006,100000,0.8067908726632596,113.0,249.0,39,167
+1076,75.70519999999998,200,0.19225000000000003,100000,0.8523593996465206,115.0,172.0,29,174
+1077,107.49859999999993,200,0.1915,100000,0.8204820390045643,104.0,93.0,35,174
+1078,10.432200000000014,200,0.19074999999999998,100000,0.8516927541792393,83.0,259.0,34,171
+1079,7.801800000000004,200,0.18999999999999995,100000,0.8490560422837734,67.0,204.0,29,180
+1080,40.01240000000005,200,0.18924999999999992,100000,0.8364406318962574,90.0,199.0,24,177
+1081,24.912799999999972,200,0.1885,100000,0.8629784792661667,94.0,226.0,27,182
+1082,52.91139999999999,200,0.18774999999999997,100000,0.8370967561006546,95.0,174.0,34,174
+1083,77.81559999999998,200,0.18699999999999994,100000,0.8402764539420605,106.0,174.0,37,168
+1084,51.15480000000009,200,0.18625000000000003,100000,0.853111202865839,89.0,169.0,28,170
+1085,5.33160000000001,200,0.1855,100000,0.8780916641652584,76.0,238.0,23,167
+1086,45.832600000000006,200,0.18474999999999997,100000,0.886173165589571,77.0,147.0,24,170
+1087,66.93979999999999,200,0.18400000000000005,100000,0.8948213136196137,82.0,108.0,33,172
+1088,31.352999999999987,200,0.18325000000000002,100000,0.8532474426925183,95.0,215.0,26,174
+1089,17.763999999999985,200,0.1825,100000,0.8732013121247292,84.0,220.0,27,182
+1090,22.75540000000001,200,0.18174999999999997,100000,0.7919635301828385,92.0,203.0,25,183
+1091,28.21499999999997,200,0.18099999999999994,100000,0.8081860233843327,80.0,200.0,23,164
+1092,20.840400000000017,200,0.1802499999999999,100000,0.8364974494278431,101.0,256.0,26,173
+1093,57.61560000000004,200,0.1795,100000,0.8181897401809692,87.0,150.0,31,170
+1094,8.632400000000004,200,0.17874999999999996,100000,0.8529952570796013,68.0,188.0,20,164
+1095,62.712199999999996,200,0.17799999999999994,100000,0.769540623575449,95.0,156.0,34,152
+1096,9.198199999999972,200,0.17725000000000002,100000,0.7721605458855629,74.0,210.0,28,171
+1097,4.180199999999995,200,0.1765,100000,0.8060672353208065,67.0,213.0,25,156
+1098,83.67180000000002,200,0.17574999999999996,100000,0.8103765368461608,113.0,147.0,28,169
+1099,19.415200000000027,200,0.17500000000000004,100000,0.82911022990942,90.0,212.0,28,168
+1100,55.328000000000024,200,0.17425000000000002,100000,0.8568375346064567,76.0,126.0,27,185
+1101,-23.04339999999999,200,0.1735,100000,0.8626825992763042,68.0,261.0,29,159
+1102,53.4876,200,0.17274999999999996,100000,0.8862285763025284,68.0,125.0,33,185
+1103,102.38619999999996,200,0.17199999999999993,100000,0.8134385238587857,107.0,126.0,34,145
+1104,40.55439999999999,200,0.17125,100000,0.8570216721296311,73.0,154.0,26,149
+1105,107.30259999999994,200,0.17049999999999998,100000,0.8587468804419041,119.0,147.0,35,179
+1106,21.805200000000028,200,0.16974999999999996,100000,0.8554793459177017,75.0,191.0,26,173
+1107,9.117800000000003,200,0.16899999999999993,100000,0.8401209245622158,83.0,240.0,28,156
+1108,68.0496,200,0.16825,100000,0.8434685702621937,87.0,133.0,25,172
+1109,117.17000000000002,200,0.16749999999999998,100000,0.879637883901596,130.0,142.0,34,177
+1110,-48.066799999999986,200,0.16675000000000006,100000,0.8587998265028,50.0,269.0,25,168
+1111,19.151200000000017,200,0.16600000000000004,100000,0.8561397811770439,87.0,220.0,27,178
+1112,57.8434,200,0.16525,100000,0.8346965181827545,84.0,149.0,28,174
+1113,-16.858400000000007,200,0.16449999999999998,100000,0.8432670447230339,63.0,228.0,22,180
+1114,6.866200000000006,200,0.16374999999999995,100000,0.8664328210055828,69.0,199.0,31,178
+1115,30.608999999999995,200,0.16299999999999992,100000,0.8716852523386478,90.0,226.0,31,186
+1116,-10.72959999999998,200,0.16225,100000,0.8510919293761253,52.0,195.0,21,170
+1117,58.816400000000016,200,0.16149999999999998,100000,0.8990984743833542,80.0,143.0,33,172
+1118,88.73400000000007,200,0.16074999999999995,100000,0.8664479351043701,111.0,147.0,30,143
+1119,76.30940000000001,200,0.15999999999999992,100000,0.8860471546649933,104.0,163.0,29,178
+1120,76.25040000000006,200,0.15925,100000,0.8528084833920002,99.0,147.0,40,193
+1121,102.50920000000005,200,0.15849999999999997,100000,0.856390742212534,103.0,106.0,35,181
+1122,7.875800000000028,200,0.15775000000000006,100000,0.8399432675540447,64.0,192.0,24,161
+1123,36.59980000000003,200,0.15700000000000003,100000,0.8505177946388721,71.0,139.0,29,179
+1124,27.28600000000001,200,0.15625,100000,0.8241167153418064,77.0,174.0,21,180
+1125,-13.002999999999991,200,0.15549999999999997,100000,0.8855498264729976,62.0,222.0,24,155
+1126,11.231200000000035,200,0.15474999999999994,100000,0.8755880424380302,70.0,179.0,22,166
+1127,65.58480000000002,200,0.15400000000000003,100000,0.8396021930873394,84.0,123.0,28,165
+1128,26.05100000000001,200,0.15325,100000,0.8220794400572777,76.0,186.0,24,167
+1129,77.89399999999996,200,0.15249999999999997,100000,0.8080751183629036,114.0,176.0,36,171
+1130,93.72059999999995,200,0.15174999999999994,100000,0.7980942960083485,128.0,196.0,44,181
+1131,45.23200000000002,200,0.1509999999999999,100000,0.7735355080664158,101.0,213.0,26,174
+1132,54.16200000000005,200,0.15025,100000,0.7972682961821556,91.0,181.0,37,151
+1133,73.9348,200,0.14950000000000008,100000,0.8731721314787865,105.0,169.0,32,154
+1134,67.8594,200,0.14875000000000005,100000,0.8545862199366092,104.0,173.0,38,182
+1135,40.277800000000006,200,0.14800000000000002,100000,0.7879299026727676,86.0,182.0,22,177
+1136,112.51060000000008,200,0.14725,100000,0.7950556239485741,116.0,129.0,36,181
+1137,41.86280000000001,200,0.14649999999999996,100000,0.8112215739488602,81.0,171.0,28,162
+1138,37.965800000000016,200,0.14574999999999994,100000,0.8226447194814682,91.0,203.0,32,185
+1139,61.40299999999999,200,0.14500000000000002,100000,0.8508701324462891,93.0,155.0,29,164
+1140,33.99080000000005,200,0.14425,100000,0.8955367717146874,84.0,177.0,25,184
+1141,79.80520000000001,200,0.14349999999999996,100000,0.8694740185141563,114.0,173.0,34,171
+1142,136.3048,200,0.14274999999999993,100000,0.8775345695018768,153.0,165.0,43,160
+1143,30.948600000000017,200,0.1419999999999999,100000,0.8395012786984444,78.0,172.0,23,155
+1144,65.24200000000005,200,0.14125,100000,0.8316157147288322,93.0,143.0,27,173
+1145,14.280199999999995,200,0.14050000000000007,100000,0.8391955049335956,81.0,218.0,33,177
+1146,93.92720000000001,200,0.13975000000000004,100000,0.8253310100734234,98.0,102.0,31,162
+1147,-4.4511999999999965,200,0.139,100000,0.8545946542918682,67.0,223.0,22,173
+1148,86.82679999999999,200,0.13824999999999998,100000,0.821815199404955,103.0,146.0,35,168
+1149,11.546799999999976,200,0.13749999999999996,100000,0.8301033009588719,70.0,193.0,23,180
+1150,-6.889200000000004,200,0.13675000000000004,100000,0.8042028987407684,73.0,214.0,20,178
+1151,18.204400000000025,200,0.136,100000,0.8319881221652031,49.0,124.0,23,157
+1152,60.092599999999976,200,0.13524999999999998,100000,0.7843844872713089,99.0,146.0,28,147
+1153,40.933199999999985,200,0.13449999999999995,100000,0.8661873823404312,94.0,211.0,35,191
+1154,75.1438,200,0.13374999999999992,100000,0.8484740409255028,87.0,106.0,31,180
+1155,-4.069199999999985,200,0.1329999999999999,100000,0.8317427144944668,77.0,244.0,24,156
+1156,33.70399999999999,200,0.13224999999999998,100000,0.820042739957571,73.0,173.0,29,154
+1157,34.03700000000003,200,0.13150000000000006,100000,0.8375292521715164,97.0,231.0,29,160
+1158,-13.332800000000008,200,0.13075000000000003,100000,0.8341724628210068,71.0,274.0,27,175
+1159,80.24879999999995,200,0.13,100000,0.8268329913914204,100.0,132.0,39,174
+1160,13.521600000000017,200,0.12924999999999998,100000,0.8259920370578766,73.0,200.0,28,172
+1161,44.37059999999999,200,0.12849999999999995,100000,0.8137382949888706,74.0,132.0,28,165
+1162,24.405200000000047,200,0.12775000000000003,100000,0.8512965999543667,76.0,188.0,30,129
+1163,92.19260000000004,200,0.127,100000,0.8462742586433888,113.0,145.0,36,189
+1164,67.49079999999992,200,0.12624999999999997,100000,0.8787937460839749,101.0,162.0,29,155
+1165,100.14800000000001,200,0.12549999999999994,100000,0.8119315551221371,116.0,146.0,39,180
+1166,38.8862,200,0.12474999999999992,100000,0.8180261039733887,81.0,163.0,22,139
+1167,78.03599999999999,200,0.12399999999999989,100000,0.822110605686903,92.0,136.0,37,165
+1168,-14.223399999999987,200,0.12324999999999997,100000,0.8155449874699116,70.0,221.0,20,180
+1169,20.705599999999997,200,0.12250000000000005,100000,0.844230765402317,77.0,207.0,24,174
+1170,57.966600000000035,200,0.12175000000000002,100000,0.8642685429751873,85.0,147.0,32,182
+1171,102.311,200,0.121,100000,0.8628356882929802,100.0,101.0,35,169
+1172,-28.49539999999999,200,0.12024999999999997,100000,0.8330714283883571,49.0,232.0,23,160
+1173,1.746600000000032,200,0.11949999999999994,100000,0.8097685298323631,74.0,232.0,27,163
+1174,55.24440000000002,200,0.11875000000000002,100000,0.8250585266947746,82.0,141.0,26,145
+1175,51.73819999999999,200,0.118,100000,0.8411827835440636,89.0,144.0,28,169
+1176,44.9014,200,0.11724999999999997,100000,0.8462080246210099,88.0,190.0,35,165
+1177,-12.019599999999988,200,0.11649999999999994,100000,0.8430736002326011,57.0,195.0,21,136
+1178,61.717999999999954,200,0.11574999999999991,100000,0.85736897200346,90.0,140.0,31,186
+1179,14.475999999999999,200,0.11499999999999999,100000,0.8673059621453285,88.0,251.0,34,179
+1180,6.294200000000011,200,0.11424999999999996,100000,0.791272832006216,76.0,236.0,32,178
+1181,28.996000000000038,200,0.11350000000000005,100000,0.7846703353524208,67.0,157.0,25,156
+1182,-11.945399999999987,200,0.11275000000000002,100000,0.7770271065831185,56.0,205.0,22,165
+1183,103.84940000000002,200,0.11199999999999999,100000,0.8125544079393149,107.0,104.0,37,175
+1184,77.31480000000008,200,0.11124999999999996,100000,0.7741438883543015,100.0,135.0,34,170
+1185,98.63580000000006,200,0.11050000000000004,100000,0.7980674673616887,91.0,92.0,32,157
+1186,39.64719999999999,200,0.10975000000000001,100000,0.7977554953098297,81.0,180.0,32,117
+1187,76.79879999999999,200,0.10899999999999999,100000,0.8442803230881691,94.0,126.0,41,177
+1188,79.50779999999999,200,0.10824999999999996,100000,0.8499919641017913,80.0,109.0,33,165
+1189,-12.666399999999985,200,0.10749999999999993,100000,0.8535977427661419,80.0,287.0,23,162
+1190,90.88899999999995,200,0.1067499999999999,100000,0.8228900554776192,130.0,185.0,35,167
+1191,117.92660000000002,200,0.10599999999999998,100000,0.8305289420485497,123.0,109.0,34,173
+1192,65.50980000000001,200,0.10524999999999995,100000,0.8219288699328899,80.0,110.0,25,167
+1193,34.491399999999985,200,0.10450000000000004,100000,0.8006954395771027,59.0,116.0,18,135
+1194,66.11479999999999,200,0.10375000000000001,100000,0.7756700867414474,113.0,195.0,35,181
+1195,13.852400000000028,200,0.10299999999999998,100000,0.8401849871873855,76.0,208.0,25,166
+1196,18.675600000000028,200,0.10224999999999995,100000,0.8501765295118093,105.0,274.0,31,178
+1197,111.82760000000005,200,0.10150000000000003,100000,0.8358387157320977,125.0,128.0,40,173
+1198,91.57559999999995,200,0.10075,100000,0.8342250452935696,123.0,165.0,34,158
+1199,75.80500000000002,200,0.1,100000,0.8236385976523161,118.0,192.0,31,167
+1200,33.92720000000004,200,0.1,100000,0.8027825412154198,77.0,160.0,28,152
+1201,84.03299999999997,200,0.1,100000,0.8251372918486595,115.0,146.0,29,181
+1202,47.24439999999999,200,0.1,100000,0.8180831106007099,97.0,195.0,24,170
+1203,74.90240000000001,200,0.1,100000,0.7725265221297741,86.0,110.0,34,172
+1204,37.84479999999998,200,0.1,100000,0.8016306620836258,67.0,152.0,29,164
+1205,115.71100000000004,200,0.1,100000,0.8512020711600781,132.0,150.0,35,162
+1206,63.09939999999996,200,0.1,100000,0.8681607629358769,74.0,103.0,26,144
+1207,60.149599999999985,200,0.1,100000,0.8371980060636998,80.0,142.0,36,192
+1208,1.3328000000000118,200,0.1,100000,0.7922867873311042,91.0,260.0,27,172
+1209,51.031600000000026,200,0.1,100000,0.8140088133513927,90.0,147.0,22,161
+1210,45.614800000000045,200,0.1,100000,0.8091690331697464,78.0,164.0,31,150
+1211,48.708199999999984,200,0.1,100000,0.8153972567617893,105.0,212.0,31,167
+1212,81.8452,200,0.1,100000,0.8300243775546551,105.0,128.0,27,181
+1213,84.50880000000004,200,0.1,100000,0.8402108983695507,94.0,114.0,36,177
+1214,94.04219999999998,200,0.1,100000,0.8405692774057388,128.0,177.0,29,172
+1215,99.74160000000006,200,0.1,100000,0.7986755269765854,128.0,164.0,39,177
+1216,102.41779999999999,200,0.1,100000,0.832957052886486,102.0,103.0,42,187
+1217,28.48660000000002,200,0.1,100000,0.8507736560702324,91.0,219.0,32,181
+1218,15.06780000000001,200,0.1,100000,0.8692770224809646,95.0,239.0,24,156
+1219,101.29779999999998,200,0.1,100000,0.8580828019976616,100.0,119.0,42,181
+1220,60.35460000000001,200,0.1,100000,0.8227882452309132,100.0,187.0,31,161
+1221,41.348999999999954,200,0.1,100000,0.839868217408657,78.0,175.0,35,186
+1222,105.28040000000001,200,0.1,100000,0.8058262792229652,107.0,103.0,37,173
+1223,32.92740000000001,200,0.1,100000,0.7977507930994033,75.0,178.0,33,180
+1224,113.21560000000005,200,0.1,100000,0.83506382599473,132.0,150.0,32,184
+1225,34.02399999999997,200,0.1,100000,0.81894017085433,93.0,202.0,31,166
+1226,45.506600000000084,200,0.1,100000,0.8183993494510651,90.0,181.0,25,154
+1227,22.384000000000032,200,0.1,100000,0.8638424292206764,74.0,172.0,19,157
+1228,83.54620000000003,200,0.1,100000,0.8559907108545304,87.0,105.0,39,183
+1229,29.988200000000024,200,0.1,100000,0.8621233569085598,78.0,176.0,32,152
+1230,15.214799999999986,200,0.1,100000,0.8174465203285217,78.0,223.0,36,156
+1231,86.2016,200,0.1,100000,0.8045653986930847,109.0,173.0,44,185
+1232,99.59920000000004,200,0.1,100000,0.8657707515358924,103.0,129.0,34,158
+1233,26.54860000000002,200,0.1,100000,0.8757374708354473,78.0,199.0,26,180
+1234,33.93599999999999,200,0.1,100000,0.8232905668020248,56.0,131.0,27,149
+1235,34.327800000000025,200,0.1,100000,0.8404158717393875,73.0,167.0,31,162
+1236,82.32259999999994,200,0.1,100000,0.8360463225841522,77.0,95.0,34,156
+1237,74.36219999999994,200,0.1,100000,0.8240146254003048,113.0,181.0,32,164
+1238,66.1592,200,0.1,100000,0.8527871629595757,101.0,150.0,30,179
+1239,41.6658,200,0.1,100000,0.8510309058427811,63.0,117.0,26,163
+1240,44.99199999999998,200,0.1,100000,0.8092347206175328,82.0,165.0,36,188
+1241,87.88060000000004,200,0.1,100000,0.839018678367138,126.0,173.0,34,176
+1242,13.804199999999966,200,0.1,100000,0.8483283668756485,70.0,186.0,23,179
+1243,112.06179999999993,200,0.1,100000,0.83797109156847,118.0,125.0,41,172
+1244,100.67420000000004,200,0.1,100000,0.8110246729850769,95.0,77.0,31,152
+1245,87.0206,200,0.1,100000,0.7893976545333863,116.0,148.0,33,187
+1246,88.69480000000001,200,0.1,100000,0.7781933180987834,114.0,175.0,41,177
+1247,90.20360000000004,200,0.1,100000,0.7903766017407179,127.0,192.0,32,163
+1248,128.84480000000002,200,0.1,100000,0.8233566810190678,140.0,132.0,37,181
+1249,109.71680000000006,200,0.1,100000,0.8016801401972771,117.0,131.0,33,161
+1250,57.90140000000003,200,0.1,100000,0.8204820820689201,93.0,189.0,32,176
+1251,76.59160000000003,200,0.1,100000,0.8296988980472088,106.0,156.0,37,175
+1252,36.99680000000003,200,0.1,100000,0.8392244698107243,98.0,207.0,34,185
+1253,55.88679999999998,200,0.1,100000,0.8258823077380657,93.0,161.0,30,165
+1254,64.81180000000002,200,0.1,100000,0.8473111198842526,101.0,180.0,34,175
+1255,17.68920000000003,200,0.1,100000,0.8596824225783348,88.0,229.0,32,151
+1256,103.7246,200,0.1,100000,0.8392897914350033,99.0,109.0,41,172
+1257,38.00139999999998,200,0.1,100000,0.8062943691015243,78.0,183.0,28,170
+1258,48.120400000000046,200,0.1,100000,0.861389599442482,98.0,190.0,32,188
+1259,14.369200000000006,200,0.1,100000,0.8619156169891358,78.0,190.0,21,176
+1260,102.51199999999993,200,0.1,100000,0.8625783422589302,129.0,161.0,38,162
+1261,45.14739999999993,200,0.1,100000,0.8745518501102925,88.0,166.0,33,173
+1262,31.492200000000032,200,0.1,100000,0.8312162600457669,70.0,152.0,28,177
+1263,89.91119999999995,200,0.1,100000,0.8363525143265724,115.0,143.0,36,181
+1264,9.16340000000003,200,0.1,100000,0.821225661188364,68.0,238.0,34,173
+1265,88.89740000000006,200,0.1,100000,0.783841241300106,96.0,133.0,36,169
+1266,100.79420000000002,200,0.1,100000,0.8376211862266064,113.0,148.0,44,172
+1267,48.914,200,0.1,100000,0.8238335202634335,96.0,187.0,27,166
+1268,34.11440000000003,200,0.1,100000,0.8375969806313515,93.0,215.0,25,162
+1269,63.950200000000024,200,0.1,100000,0.8436448214948178,88.0,127.0,26,158
+1270,50.33800000000004,200,0.1,100000,0.8709480430185795,91.0,183.0,34,170
+1271,116.26399999999997,200,0.1,100000,0.8784701310098171,96.0,86.0,41,173
+1272,12.712800000000016,200,0.1,100000,0.8056403703987598,91.0,253.0,31,173
+1273,115.43680000000002,200,0.1,100000,0.8285777293145656,108.0,109.0,36,176
+1274,5.394400000000003,200,0.1,100000,0.8241360960900783,96.0,271.0,36,183
+1275,100.45200000000007,200,0.1,100000,0.8225920268893242,123.0,150.0,35,189
+1276,60.72160000000004,200,0.1,100000,0.8303778375685215,118.0,217.0,29,150
+1277,-40.56759999999999,200,0.1,100000,0.8370976515114308,65.0,276.0,21,138
+1278,27.138200000000037,200,0.1,100000,0.8565343624353409,92.0,243.0,38,170
+1279,72.14020000000002,200,0.1,100000,0.8536003850400448,108.0,161.0,34,184
+1280,61.46740000000001,200,0.1,100000,0.7776772931218148,85.0,124.0,25,131
+1281,54.53919999999994,200,0.1,100000,0.8149860976636409,95.0,178.0,32,188
+1282,39.133400000000016,200,0.1,100000,0.7658012972772121,91.0,202.0,35,167
+1283,7.015200000000014,200,0.1,100000,0.818589852899313,87.0,245.0,23,169
+1284,29.55980000000004,200,0.1,100000,0.76715083822608,64.0,153.0,29,180
+1285,81.27340000000002,200,0.1,100000,0.843179801851511,101.0,133.0,32,164
+1286,-28.548999999999992,200,0.1,100000,0.8193327543139458,69.0,268.0,26,144
+1287,92.67259999999999,200,0.1,100000,0.8137275132536889,125.0,173.0,32,170
+1288,70.14679999999994,200,0.1,100000,0.8234303885698319,79.0,106.0,31,182
+1289,55.75219999999995,200,0.1,100000,0.799436360746622,86.0,160.0,33,171
+1290,76.59160000000001,200,0.1,100000,0.7740575921535492,103.0,157.0,34,173
+1291,83.08559999999999,200,0.1,100000,0.7866646827757359,84.0,122.0,38,186
+1292,119.25160000000002,200,0.1,100000,0.8343049342930317,115.0,86.0,34,176
+1293,33.5922,200,0.1,100000,0.8688229739665985,87.0,197.0,31,172
+1294,107.91959999999997,200,0.1,100000,0.8624104692041874,103.0,71.0,30,173
+1295,52.69839999999998,200,0.1,100000,0.8262595987319946,86.0,151.0,31,164
+1296,69.78380000000004,200,0.1,100000,0.8479858420789241,103.0,170.0,28,151
+1297,58.76459999999995,200,0.1,100000,0.8384732925891876,92.0,179.0,39,186
+1298,65.18399999999998,200,0.1,100000,0.8296409115195275,80.0,123.0,38,173
+1299,27.131600000000045,200,0.1,100000,0.86381970718503,67.0,148.0,25,164
+1300,16.192800000000016,200,0.1,100000,0.8230900268256665,84.0,212.0,24,170
+1301,76.19719999999998,200,0.1,100000,0.842312363833189,109.0,161.0,33,181
+1302,61.20320000000009,200,0.1,100000,0.8295516383647918,92.0,146.0,32,185
+1303,58.1532,200,0.1,100000,0.797088375389576,115.0,225.0,30,163
+1304,70.39439999999998,200,0.1,100000,0.7914177078008652,84.0,122.0,34,158
+1305,79.07939999999996,200,0.1,100000,0.8485134370625019,102.0,152.0,35,163
+1306,33.077400000000026,200,0.1,100000,0.8331010545790195,75.0,190.0,38,162
+1307,68.29899999999998,200,0.1,100000,0.8419162845611572,80.0,135.0,36,178
+1308,92.16199999999999,200,0.1,100000,0.8142989274859428,123.0,178.0,40,192
+1309,88.14199999999998,200,0.1,100000,0.8078945937752724,117.0,151.0,26,170
+1310,57.41700000000004,200,0.1,100000,0.8069258071482182,96.0,147.0,26,157
+1311,43.220000000000034,200,0.1,100000,0.8267523750662804,88.0,203.0,31,172
+1312,30.8474,200,0.1,100000,0.844932491928339,65.0,156.0,36,166
+1313,86.39420000000007,200,0.1,100000,0.8189704082906246,107.0,150.0,44,179
+1314,39.595400000000005,200,0.1,100000,0.8553071248531342,81.0,188.0,31,177
+1315,26.713000000000005,200,0.1,100000,0.82896856456995,74.0,205.0,31,166
+1316,62.19640000000004,200,0.1,100000,0.8766544085741043,98.0,177.0,27,167
+1317,48.81440000000003,200,0.1,100000,0.8477347277104854,88.0,171.0,25,167
+1318,80.18139999999997,200,0.1,100000,0.7960259510576725,101.0,149.0,36,174
+1319,107.36579999999998,200,0.1,100000,0.7916058943420649,125.0,146.0,33,182
+1320,33.97120000000002,200,0.1,100000,0.7992581807076931,65.0,155.0,32,171
+1321,55.86440000000002,200,0.1,100000,0.7988385397195816,95.0,183.0,32,160
+1322,31.496200000000034,200,0.1,100000,0.8138266523182393,97.0,246.0,32,166
+1323,44.311800000000076,200,0.1,100000,0.7866062414646149,84.0,207.0,38,184
+1324,64.18859999999997,200,0.1,100000,0.8102780224382877,76.0,118.0,33,161
+1325,81.68879999999999,200,0.1,100000,0.824216801226139,85.0,100.0,33,181
+1326,64.67080000000006,200,0.1,100000,0.8587697277963161,82.0,129.0,32,181
+1327,88.52320000000006,200,0.1,100000,0.8362425953149796,123.0,170.0,33,170
+1328,54.29880000000011,200,0.1,100000,0.8990983365476132,93.0,185.0,30,167
+1329,68.26599999999996,200,0.1,100000,0.8656024408340454,101.0,158.0,35,167
+1330,68.37420000000002,200,0.1,100000,0.8455731010437012,99.0,176.0,33,182
+1331,26.712799999999998,200,0.1,100000,0.8339657513797283,92.0,210.0,24,175
+1332,92.07519999999998,200,0.1,100000,0.8636919705569744,115.0,143.0,33,166
+1333,70.70660000000004,200,0.1,100000,0.8341128341853619,102.0,170.0,30,167
+1334,75.01240000000004,200,0.1,100000,0.8419862593710422,93.0,122.0,29,185
+1335,118.55059999999997,200,0.1,100000,0.8093393382430076,122.0,134.0,39,184
+1336,70.72580000000002,200,0.1,100000,0.8293962053954601,98.0,161.0,38,181
+1337,56.338000000000065,200,0.1,100000,0.8450377096235752,81.0,133.0,24,155
+1338,38.077400000000004,200,0.1,100000,0.8058124332129956,91.0,178.0,23,168
+1339,37.087799999999994,200,0.1,100000,0.7969378934800625,80.0,161.0,23,171
+1340,32.50860000000001,200,0.1,100000,0.8049177686870098,85.0,194.0,22,186
+1341,91.107,200,0.1,100000,0.819113482683897,109.0,130.0,32,174
+1342,77.37759999999996,200,0.1,100000,0.8179401239752769,112.0,161.0,33,185
+1343,101.34180000000005,200,0.1,100000,0.8337305726110935,132.0,162.0,27,164
+1344,98.88600000000001,200,0.1,100000,0.8207824201881886,114.0,149.0,39,181
+1345,114.49600000000001,200,0.1,100000,0.8331552481651306,113.0,136.0,52,177
+1346,-9.796799999999978,200,0.1,100000,0.8660018743574619,63.0,225.0,28,180
+1347,74.2828,200,0.1,100000,0.8340946266055107,108.0,170.0,44,161
+1348,67.15920000000003,200,0.1,100000,0.8586307379603386,100.0,159.0,28,171
+1349,54.434000000000076,200,0.1,100000,0.849796357601881,88.0,157.0,36,168
+1350,78.78960000000004,200,0.1,100000,0.863997098505497,77.0,111.0,39,184
+1351,82.95279999999998,200,0.1,100000,0.8503011357784271,102.0,155.0,39,187
+1352,81.17760000000001,200,0.1,100000,0.8424418473243713,105.0,143.0,33,193
+1353,47.11120000000001,200,0.1,100000,0.8140192866325379,96.0,191.0,30,185
+1354,39.518600000000035,200,0.1,100000,0.7982152009010315,76.0,167.0,34,172
+1355,89.77559999999995,200,0.1,100000,0.8128754130005836,101.0,131.0,47,177
+1356,74.54219999999998,200,0.1,100000,0.8530996921658516,110.0,184.0,35,160
+1357,94.5424,200,0.1,100000,0.7503907132148743,72.0,54.0,35,175
+1358,56.30839999999998,200,0.1,100000,0.7982788950204849,85.0,165.0,33,191
+1359,88.74579999999999,200,0.1,100000,0.7903654842078686,104.0,136.0,36,155
+1360,10.299000000000005,200,0.1,100000,0.8186663886904717,68.0,193.0,22,171
+1361,74.18020000000008,200,0.1,100000,0.8375791622698308,98.0,137.0,33,175
+1362,49.8388,200,0.1,100000,0.8519571305811405,75.0,145.0,26,160
+1363,13.990000000000006,200,0.1,100000,0.8335497198998928,87.0,212.0,19,152
+1364,57.02680000000001,200,0.1,100000,0.8479779413342476,93.0,179.0,34,183
+1365,88.378,200,0.1,100000,0.8320356515049935,86.0,97.0,31,156
+1366,59.175599999999974,200,0.1,100000,0.841666426807642,113.0,223.0,29,179
+1367,41.11560000000005,200,0.1,100000,0.8072461615502834,99.0,220.0,35,168
+1368,82.34539999999997,200,0.1,100000,0.8141014556586742,113.0,178.0,36,155
+1369,72.89740000000002,200,0.1,100000,0.7948688662052155,95.0,132.0,27,180
+1370,43.01320000000002,200,0.1,100000,0.8366929692029953,69.0,146.0,36,137
+1371,73.88939999999998,200,0.1,100000,0.8236881999671459,96.0,128.0,31,180
+1372,61.032599999999995,200,0.1,100000,0.8120625011622906,85.0,139.0,28,169
+1373,142.65939999999992,200,0.1,100000,0.8285021011531353,133.0,105.0,43,190
+1374,103.90099999999998,200,0.1,100000,0.8127342139184475,124.0,154.0,42,183
+1375,26.76779999999999,200,0.1,100000,0.7774393917620182,79.0,192.0,31,171
+1376,166.65279999999996,200,0.1,100000,0.8081774552166462,156.0,83.0,35,177
+1377,27.784599999999983,200,0.1,100000,0.7955698753893375,71.0,170.0,33,183
+1378,39.05420000000003,200,0.1,100000,0.7873194873332977,83.0,185.0,27,156
+1379,112.6226,200,0.1,100000,0.7971395860612392,141.0,148.0,33,166
+1380,45.70219999999999,200,0.1,100000,0.8469004355370998,93.0,171.0,31,146
+1381,73.27759999999996,200,0.1,100000,0.8397715704143047,97.0,155.0,30,181
+1382,113.15619999999991,200,0.1,100000,0.8743445602059364,138.0,160.0,36,184
+1383,53.88520000000002,200,0.1,100000,0.832037892639637,84.0,140.0,35,170
+1384,34.145400000000016,200,0.1,100000,0.8026286050677299,93.0,208.0,31,181
+1385,56.00640000000002,200,0.1,100000,0.8274348104000091,113.0,220.0,32,158
+1386,72.12639999999998,200,0.1,100000,0.786059073805809,97.0,162.0,35,172
+1387,56.96979999999996,200,0.1,100000,0.8397566242516041,94.0,159.0,33,182
+1388,71.97580000000004,200,0.1,100000,0.8673544365167618,143.0,246.0,36,185
+1389,98.98060000000001,200,0.1,100000,0.8423510155081749,119.0,157.0,35,175
+1390,93.31020000000002,200,0.1,100000,0.8239220769703388,125.0,174.0,39,190
+1391,38.34319999999996,200,0.1,100000,0.8070866532623768,95.0,217.0,30,169
+1392,109.30680000000005,200,0.1,100000,0.830810475051403,124.0,131.0,32,171
+1393,66.94560000000001,200,0.1,100000,0.8216778041422367,107.0,177.0,31,170
+1394,60.271800000000006,200,0.1,100000,0.8125919488072395,103.0,179.0,32,184
+1395,65.30939999999998,200,0.1,100000,0.8113215610384941,99.0,193.0,35,183
+1396,62.77059999999999,200,0.1,100000,0.8023903360962867,96.0,181.0,35,161
+1397,88.60340000000002,200,0.1,100000,0.8578339782357216,125.0,194.0,37,182
+1398,72.37199999999997,200,0.1,100000,0.8650745320320129,98.0,150.0,33,150
+1399,83.92520000000005,200,0.1,100000,0.8261145508289337,106.0,140.0,36,161
+1400,92.65759999999999,200,0.1,100000,0.8084599304199219,125.0,174.0,40,173
+1401,67.1976,200,0.1,100000,0.814142474681139,104.0,186.0,34,165
+1402,67.31120000000007,200,0.1,100000,0.8415492515265942,101.0,172.0,32,183
+1403,88.05220000000001,200,0.1,100000,0.8463640899956226,100.0,119.0,32,174
+1404,52.66960000000002,200,0.1,100000,0.8598300915956497,97.0,173.0,42,187
+1405,74.62000000000006,200,0.1,100000,0.8433679936826229,80.0,95.0,26,160
+1406,88.85360000000001,200,0.1,100000,0.8045283143222332,101.0,140.0,35,164
+1407,104.70379999999994,200,0.1,100000,0.826520584076643,114.0,111.0,32,168
+1408,69.66100000000002,200,0.1,100000,0.85119774132967,119.0,214.0,28,150
+1409,82.73980000000002,200,0.1,100000,0.8049890086054802,94.0,130.0,35,165
+1410,132.84180000000006,200,0.1,100000,0.838185404241085,126.0,105.0,35,167
+1411,124.02499999999995,200,0.1,100000,0.8417875289916992,127.0,129.0,42,178
+1412,108.71200000000007,200,0.1,100000,0.83541582390666,110.0,135.0,38,181
+1413,96.31360000000001,200,0.1,100000,0.8138707919418812,115.0,136.0,27,171
+1414,42.470199999999984,200,0.1,100000,0.8051312653720379,103.0,230.0,31,179
+1415,79.61999999999995,200,0.1,100000,0.8403226391971111,108.0,152.0,32,170
+1416,68.31420000000001,200,0.1,100000,0.8606811539828777,117.0,186.0,27,174
+1417,45.30639999999997,200,0.1,100000,0.8320483927428722,92.0,214.0,31,163
+1418,110.72159999999998,200,0.1,100000,0.8372835862636566,100.0,70.0,36,171
+1419,46.4922,200,0.1,100000,0.8254590754210949,84.0,174.0,32,175
+1420,98.639,200,0.1,100000,0.876269563883543,108.0,126.0,30,167
+1421,61.805599999999984,200,0.1,100000,0.8803996504843234,103.0,163.0,27,168
+1422,80.22200000000004,200,0.1,100000,0.836173607558012,98.0,129.0,38,150
+1423,67.77439999999996,200,0.1,100000,0.8258413930237293,96.0,151.0,29,174
+1424,65.92320000000004,200,0.1,100000,0.8094622460007668,110.0,187.0,30,178
+1425,73.10940000000001,200,0.1,100000,0.8597237858176231,83.0,135.0,36,148
+1426,133.71099999999996,200,0.1,100000,0.8734357644617557,140.0,126.0,38,170
+1427,-0.9108000000000005,200,0.1,100000,0.8880935877561569,44.0,136.0,15,139
+1428,33.07520000000004,200,0.1,100000,0.8538245320320129,94.0,230.0,33,160
+1429,45.035,200,0.1,100000,0.8641612648963928,77.0,160.0,34,144
+1430,90.3932,200,0.1,100000,0.860919481664896,110.0,157.0,42,176
+1431,43.75260000000003,200,0.1,100000,0.8409821043908596,99.0,223.0,32,177
+1432,63.200599999999994,200,0.1,100000,0.8754968203604221,107.0,181.0,34,172
+1433,61.280000000000065,200,0.1,100000,0.8364642252027988,88.0,149.0,37,166
+1434,61.0456,200,0.1,100000,0.8734531052410602,81.0,126.0,29,167
+1435,107.7487999999999,200,0.1,100000,0.8075195592641831,137.0,156.0,30,172
+1436,90.60600000000001,200,0.1,100000,0.7994555570185184,117.0,150.0,37,185
+1437,95.813,200,0.1,100000,0.8585869197547435,116.0,146.0,35,188
+1438,48.65820000000002,200,0.1,100000,0.8792740198969841,86.0,148.0,24,164
+1439,138.52479999999997,200,0.1,100000,0.8564137615263462,111.0,65.0,41,169
+1440,97.35239999999995,200,0.1,100000,0.8685406038165092,97.0,108.0,38,167
+1441,98.56820000000005,200,0.1,100000,0.8642342528700828,94.0,95.0,37,183
+1442,116.47919999999995,200,0.1,100000,0.8554477204382419,122.0,129.0,40,185
+1443,129.7302,200,0.1,100000,0.842786291539669,113.0,88.0,42,186
+1444,75.40420000000012,200,0.1,100000,0.8365820702910424,104.0,157.0,32,165
+1445,41.070600000000006,200,0.1,100000,0.8368434010446072,102.0,223.0,28,158
+1446,89.31579999999995,200,0.1,100000,0.8786908107995987,102.0,141.0,38,173
+1447,85.21040000000002,200,0.1,100000,0.8847106723487377,112.0,144.0,31,166
+1448,60.251800000000024,200,0.1,100000,0.8507432045042514,121.0,209.0,30,172
+1449,50.55880000000002,200,0.1,100000,0.8702616132795811,93.0,147.0,24,179
+1450,13.443799999999996,200,0.1,100000,0.8370057186484336,89.0,228.0,17,147
+1451,91.73080000000003,200,0.1,100000,0.861146567761898,107.0,133.0,38,170
+1452,31.69360000000003,200,0.1,100000,0.8071497355401516,97.0,244.0,33,175
+1453,46.71580000000001,200,0.1,100000,0.8576993301510811,109.0,229.0,30,170
+1454,101.56480000000008,200,0.1,100000,0.7982796293497085,118.0,146.0,32,172
+1455,108.43860000000001,200,0.1,100000,0.8673662643134594,124.0,167.0,41,168
+1456,57.69599999999999,200,0.1,100000,0.847890322059393,99.0,175.0,19,169
+1457,89.41659999999999,200,0.1,100000,0.8699431118369102,112.0,164.0,41,168
+1458,53.38619999999999,200,0.1,100000,0.8305251814424992,82.0,145.0,28,156
+1459,94.60160000000002,200,0.1,100000,0.830639673769474,109.0,118.0,34,146
+1460,70.98859999999993,200,0.1,100000,0.8680338080227376,106.0,184.0,38,176
+1461,69.49440000000001,200,0.1,100000,0.8696442663669586,102.0,165.0,32,179
+1462,67.20360000000001,200,0.1,100000,0.8638748079538345,114.0,193.0,31,177
+1463,109.57720000000003,200,0.1,100000,0.824453192204237,135.0,174.0,47,183
+1464,80.27420000000002,200,0.1,100000,0.8299842192232609,102.0,131.0,30,167
+1465,74.75120000000001,200,0.1,100000,0.870389156639576,132.0,229.0,41,178
+1466,100.77460000000004,200,0.1,100000,0.8850625391304493,112.0,132.0,37,187
+1467,8.401000000000039,200,0.1,100000,0.8560761480033398,77.0,225.0,29,135
+1468,93.98339999999993,200,0.1,100000,0.8373243825137615,121.0,175.0,40,166
+1469,68.09819999999999,200,0.1,100000,0.8437043967843055,102.0,185.0,34,170
+1470,50.5416,200,0.1,100000,0.8546948426961899,87.0,164.0,29,168
+1471,82.70800000000003,200,0.1,100000,0.8420874257385731,130.0,209.0,30,161
+1472,102.9816,200,0.1,100000,0.825453016012907,117.0,149.0,44,176
+1473,75.6496000000001,200,0.1,100000,0.8159716668725013,123.0,199.0,28,177
+1474,81.75500000000001,200,0.1,100000,0.8430244176089764,98.0,130.0,34,170
+1475,104.29459999999997,200,0.1,100000,0.8603227819502354,123.0,158.0,38,176
+1476,64.95360000000001,200,0.1,100000,0.8403093571960926,94.0,155.0,27,126
+1477,27.910800000000037,200,0.1,100000,0.8580454491078854,108.0,275.0,32,164
+1478,134.4418,200,0.1,100000,0.8518296931684017,142.0,131.0,42,170
+1479,27.484599999999993,200,0.1,100000,0.8394895282387733,77.0,175.0,25,163
+1480,109.05340000000004,200,0.1,100000,0.827112730294466,120.0,135.0,41,192
+1481,71.91239999999999,200,0.1,100000,0.7859686581790447,100.0,153.0,31,179
+1482,8.107800000000019,200,0.1,100000,0.8452299997210503,83.0,225.0,25,170
+1483,79.59860000000002,200,0.1,100000,0.8751086592674255,96.0,152.0,36,176
+1484,119.14339999999999,200,0.1,100000,0.8618951235711575,118.0,123.0,35,170
+1485,111.15640000000008,200,0.1,100000,0.8577280935645103,115.0,127.0,33,188
+1486,83.40639999999998,200,0.1,100000,0.8399412782490253,102.0,143.0,31,172
+1487,106.92480000000002,200,0.1,100000,0.8246801729500294,93.0,84.0,39,177
+1488,69.32900000000004,200,0.1,100000,0.8605689731240272,113.0,174.0,25,183
+1489,22.083600000000057,200,0.1,100000,0.8508985750377178,83.0,213.0,29,171
+1490,89.61760000000004,200,0.1,100000,0.8262770685553551,115.0,153.0,37,181
+1491,33.64180000000005,200,0.1,100000,0.8306492710113526,57.0,104.0,23,157
+1492,42.31899999999997,200,0.1,100000,0.8767662012577057,99.0,200.0,35,169
+1493,24.767199999999985,200,0.1,100000,0.8982190561294555,57.0,166.0,32,185
+1494,48.764399999999995,200,0.1,100000,0.8589508551359176,103.0,208.0,27,178
+1495,102.28139999999999,200,0.1,100000,0.8493588797748088,111.0,122.0,32,177
+1496,36.633000000000024,200,0.1,100000,0.8215058498084545,136.0,322.0,34,180
+1497,78.55200000000004,200,0.1,100000,0.8437616619467735,68.0,79.0,41,179
+1498,109.51120000000003,200,0.1,100000,0.8605361944437027,123.0,142.0,39,165
+1499,68.8088,200,0.1,100000,0.8609820802509784,83.0,122.0,39,188
diff --git a/experiments/results/dqn_v5_masked_meta.json b/experiments/results/dqn_v5_masked_meta.json
new file mode 100644
index 0000000..1f19a74
--- /dev/null
+++ b/experiments/results/dqn_v5_masked_meta.json
@@ -0,0 +1,105 @@
+{
+ "run_id": "dqn_v5_masked",
+ "agent": "dqn",
+ "scenario": "weekday",
+ "num_episodes": 1500,
+ "seed": 42,
+ "git_commit": "c33ddcb6dc6ff4b8fcff4f5073aa78b6518eef7c",
+ "wall_time_seconds": 3488.513890028,
+ "eval_summary": {
+ "eval_mean_reward": 106.65819999999997,
+ "eval_std_reward": 28.625535867682913,
+ "eval_mean_delivered": 116.4,
+ "eval_mean_spoiled": 137.2,
+ "eval_n_episodes": 5
+ },
+ "eval_per_seed": [
+ {
+ "seed": 100,
+ "total_reward": 148.06600000000003,
+ "delivered_units": 132.0,
+ "spoiled_units": 108.0,
+ "deliveries_count": 43,
+ "distance": 193
+ },
+ {
+ "seed": 101,
+ "total_reward": 130.09999999999994,
+ "delivered_units": 136.0,
+ "spoiled_units": 131.0,
+ "deliveries_count": 40,
+ "distance": 189
+ },
+ {
+ "seed": 102,
+ "total_reward": 77.44219999999997,
+ "delivered_units": 102.0,
+ "spoiled_units": 178.0,
+ "deliveries_count": 42,
+ "distance": 181
+ },
+ {
+ "seed": 103,
+ "total_reward": 75.71639999999995,
+ "delivered_units": 96.0,
+ "spoiled_units": 150.0,
+ "deliveries_count": 38,
+ "distance": 189
+ },
+ {
+ "seed": 104,
+ "total_reward": 101.9664,
+ "delivered_units": 116.0,
+ "spoiled_units": 119.0,
+ "deliveries_count": 28,
+ "distance": 169
+ }
+ ],
+ "config_raw": {
+ "run": {
+ "run_id": "dqn_v5_masked",
+ "agent": "dqn",
+ "scenario": "weekday",
+ "num_episodes": 1500,
+ "seed": 42,
+ "output_dir": "experiments",
+ "description": "v5: DQN with full training-time action masking.\n\nDiagnosis of v4: pickup reward alone didn't break the flat-Q problem.\nInference-time masking on v4 (no retraining) lifted delivered from 75\nto 85, proving the constraint mattered. But Q-values stayed flat\n(spread 1.16) because training itself was polluted: the agent spent\nmany episodes taking actions the env would convert to idle.\n\nv5 fixes:\n- Action mask consulted during action selection (already in v4 at\n inference; now also at training-time exploration)\n- Bellman target uses max_a' Q(s', a') taken only over a' valid in s'\n- Replay buffer stores next_state mask alongside each transition\n\nHyperparameters unchanged from v4 to make the comparison clean \u2014\nthe only variable is masking. Any improvement is attributable to it.\n"
+ },
+ "agent_params": {
+ "hidden_sizes": [
+ 128,
+ 128
+ ],
+ "learning_rate": 0.0005,
+ "discount": 0.95,
+ "epsilon_start": 1.0,
+ "epsilon_end": 0.1,
+ "epsilon_decay_episodes": 1200,
+ "replay_buffer_size": 100000,
+ "batch_size": 64,
+ "min_replay_to_train": 1000,
+ "target_update_interval": 500,
+ "grad_clip": 1.0,
+ "device": "auto"
+ },
+ "reward_weights": {
+ "delivery": 1.0,
+ "pickup": 0.2,
+ "spoilage": 0.5,
+ "distance": 0.01,
+ "unmet_demand": 0.1,
+ "priority_bonus": 0.05,
+ "oversupply_penalty": 0.03
+ },
+ "eval": {
+ "n_episodes": 5,
+ "eval_seeds": [
+ 100,
+ 101,
+ 102,
+ 103,
+ 104
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/index.html b/index.html
index 1b3a7c7..79abc7e 100644
--- a/index.html
+++ b/index.html
@@ -582,7 +582,7 @@
@@ -1421,6 +1421,11 @@
S = initState("weekday");
draw();
updatePanel();
+ if (document.getElementById("policy-select").value === "api-dqn") {
+ document.getElementById("tb-api-pill").style.display = "flex";
+ setApiStatus("checking…", "");
+ checkApiHealth();
+ }