Run 10: organic recovery achieved - minerals are not a commons
Recovery blocker was material, not motivational. Two fixes: (1) harvest floors and commons debris apply only to living, regenerating resources - stone does not regrow, so "leave half" merely stranded the world supply and kept the homeless homeless forever; minerals now quarry to depletion for every soul equally. (2) Matter conservation: idle variety-gathering touches only renewables, and packs may only shed what the land replaces - lossy make-room had milled 900+ stone to dust during demand flapping. Verified over 260 headless days: year-1 winter still wrecks the naive town, it rebuilds in 20 days, famine survivors found the first granaries from hunger memory, and year-2 winter passes with zero ruins on stored reserves. The town has a history now: naive youth, catastrophe, learning, resilient maturity. Remaining tuning in FINDINGS.md: granary sprawl, post-famine nourishment. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
+34
-8
@@ -183,14 +183,40 @@ counted as sheltered; a bed must exist when you lie down in it).
|
|||||||
**Verified working:** bootstrap founding near town, ~2,200 construction
|
**Verified working:** bootstrap founding near town, ~2,200 construction
|
||||||
deliveries, first roofs by day 3, three seasons of stability.
|
deliveries, first roofs by day 3, three seasons of stability.
|
||||||
|
|
||||||
**Open problem (paused here):** the loop cannot recover from loss. The
|
**Open problem (later resolved in run 10):** the loop cannot recover from
|
||||||
winter crisis (food labor starving firewood logistics) ruins shelters,
|
loss. The winter crisis ruins shelters and rebuilding stalls.
|
||||||
and rebuilding then stalls — 4 foundings in 240 days, sites incomplete
|
|
||||||
for months, no granary despite two famines. Organic construction works
|
## Run 10 — The mineral question: recovery achieved
|
||||||
forward but not backward; post-collapse recovery needs its own
|
|
||||||
diagnosis. Suspects: founding cadence still too rare under post-famine
|
Demand diagnostics found the recovery blocker was *material*, not
|
||||||
food pressure; construction-material demand losing priority to the
|
motivational: homeless villagers correctly demanded stone (462/525
|
||||||
food reserve during recovery.
|
villager-days) but could not get it, twice over:
|
||||||
|
|
||||||
|
1. **The commons ethic stranded the stone.** Respectful souls won't take
|
||||||
|
the last half of any deposit — but stone doesn't regrow, so once all
|
||||||
|
deposits sat at the floor, the world's remaining stone was morally
|
||||||
|
untouchable and the homeless stayed homeless forever. *Fix: the
|
||||||
|
harvest floor is an ethic of regrowth — floors and commons debris now
|
||||||
|
apply only to living, regenerating resources. Minerals quarry to
|
||||||
|
depletion, for every soul equally.*
|
||||||
|
2. **Lossy packs milled the mountains to dust.** Idle variety-gathering
|
||||||
|
mined stone as busywork, and the make-room rule vaporized cargo on
|
||||||
|
every demand flap — 900+ stone destroyed in packs. *Fix: idle
|
||||||
|
gathering touches only what regrows, and packs may only shed what the
|
||||||
|
land replaces. Minerals are mined on purpose and conserved.*
|
||||||
|
|
||||||
|
**Verified (260-day headless run):** year-1 winter still wrecks the naive
|
||||||
|
town — then it rebuilds within 20 days, the famine survivors found the
|
||||||
|
first granaries (memory, as designed), storage grows through autumn, and
|
||||||
|
**year-2 winter passes with zero ruins** on granary reserves. The town
|
||||||
|
now has a history: naive youth, catastrophe, learning, resilient
|
||||||
|
maturity. Organic civilization works end-to-end.
|
||||||
|
|
||||||
|
Remaining tuning (non-blocking): granary sprawl (hunger-scarred souls
|
||||||
|
keep founding storage — ~10 granaries by day 200; needs a satiation
|
||||||
|
rule), and chronically low average nourishment in the post-famine years
|
||||||
|
(likely endless granary-stocking labor crowding out comfort — related to
|
||||||
|
sprawl).
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
+19
-3
@@ -78,6 +78,11 @@ public class Npc
|
|||||||
/// who they are becoming. Indexed by (int)NpcState.</summary>
|
/// who they are becoming. Indexed by (int)NpcState.</summary>
|
||||||
public int[] StateTicksToday = new int[5];
|
public int[] StateTicksToday = new int[5];
|
||||||
|
|
||||||
|
// --- Diagnostics (read-only views for the stats logger) ---------------
|
||||||
|
public MaterialKind CurrentDemand(GameManager gm) => PickGatherTarget(gm);
|
||||||
|
public int RoughNights => _unshelteredRests;
|
||||||
|
public bool HungerMemory => _hungerMemory;
|
||||||
|
|
||||||
public NpcState DominantStateToday()
|
public NpcState DominantStateToday()
|
||||||
{
|
{
|
||||||
int best = 0;
|
int best = 0;
|
||||||
@@ -116,6 +121,17 @@ public class Npc
|
|||||||
private static readonly MaterialKind[] GatherKinds =
|
private static readonly MaterialKind[] GatherKinds =
|
||||||
{ MaterialKind.Wood, MaterialKind.Stone, MaterialKind.Clay };
|
{ MaterialKind.Wood, MaterialKind.Stone, MaterialKind.Clay };
|
||||||
|
|
||||||
|
// Idle variety only touches what regrows. Minerals are mined on purpose
|
||||||
|
// (construction, a roof of your own) — never as a hobby. Run 10 taught
|
||||||
|
// us that idle mining + lossy packs can mill a world's stone to dust.
|
||||||
|
private static readonly MaterialKind[] VarietyKinds =
|
||||||
|
{ MaterialKind.Wood, MaterialKind.Food };
|
||||||
|
|
||||||
|
// What a pack may shed to make room: only matter the land replaces.
|
||||||
|
// Set-down stone is stone destroyed — and the world doesn't make more.
|
||||||
|
private static readonly MaterialKind[] DroppableKinds =
|
||||||
|
{ MaterialKind.Wood, MaterialKind.Food, MaterialKind.Clay };
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// One simulation tick = one in-game minute (SPEC §9).
|
/// One simulation tick = one in-game minute (SPEC §9).
|
||||||
/// Order per SPEC §10: vitals check → day/night bias → state behavior → fatigue.
|
/// Order per SPEC §10: vitals check → day/night bias → state behavior → fatigue.
|
||||||
@@ -253,9 +269,9 @@ public class Npc
|
|||||||
return MaterialKind.Wood;
|
return MaterialKind.Wood;
|
||||||
}
|
}
|
||||||
|
|
||||||
MaterialKind best = GatherKinds[(int)(Mathf.Abs(PersonalityModifier) * 100f) % GatherKinds.Length];
|
MaterialKind best = VarietyKinds[(int)(Mathf.Abs(PersonalityModifier) * 100f) % VarietyKinds.Length];
|
||||||
float least = float.MaxValue;
|
float least = float.MaxValue;
|
||||||
foreach (var kind in GatherKinds)
|
foreach (var kind in VarietyKinds)
|
||||||
{
|
{
|
||||||
Inventory.TryGetValue(kind, out float have);
|
Inventory.TryGetValue(kind, out float have);
|
||||||
if (have < least) { least = have; best = kind; }
|
if (have < least) { least = have; best = kind; }
|
||||||
@@ -292,7 +308,7 @@ public class Npc
|
|||||||
Inventory.TryGetValue(demanded, out float haveDemanded);
|
Inventory.TryGetValue(demanded, out float haveDemanded);
|
||||||
if (haveDemanded >= EffectiveCapacity * 0.25f) return;
|
if (haveDemanded >= EffectiveCapacity * 0.25f) return;
|
||||||
|
|
||||||
foreach (var kind in GatherKinds)
|
foreach (var kind in DroppableKinds)
|
||||||
{
|
{
|
||||||
if (kind == demanded) continue;
|
if (kind == demanded) continue;
|
||||||
if (TotalCarried() <= EffectiveCapacity * 0.5f) break;
|
if (TotalCarried() <= EffectiveCapacity * 0.5f) break;
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ public static class StatsLogger
|
|||||||
|
|
||||||
private const string NpcHeader =
|
private const string NpcHeader =
|
||||||
"day,npc,name,soul,town,dominant,gather_ticks,build_ticks,trade_ticks,rest_ticks,social_ticks," +
|
"day,npc,name,soul,town,dominant,gather_ticks,build_ticks,trade_ticks,rest_ticks,social_ticks," +
|
||||||
"nourish,health,debris";
|
"nourish,health,debris,demand,rough_nights,hunger_mem";
|
||||||
|
|
||||||
private const string GiftHeader =
|
private const string GiftHeader =
|
||||||
"day,giver,giver_soul,receiver,receiver_soul,material,amount";
|
"day,giver,giver_soul,receiver,receiver_soul,material,amount";
|
||||||
@@ -167,7 +167,10 @@ public static class StatsLogger
|
|||||||
.Append(t[(int)NpcState.Socializing]).Append(',')
|
.Append(t[(int)NpcState.Socializing]).Append(',')
|
||||||
.Append(npc.Nourishment.ToString("0.000", ci)).Append(',')
|
.Append(npc.Nourishment.ToString("0.000", ci)).Append(',')
|
||||||
.Append(npc.Health.ToString("0.0", ci)).Append(',')
|
.Append(npc.Health.ToString("0.0", ci)).Append(',')
|
||||||
.Append(npc.Imprint.Total.ToString("0.0000", ci)).Append('\n');
|
.Append(npc.Imprint.Total.ToString("0.0000", ci)).Append(',')
|
||||||
|
.Append(npc.CurrentDemand(gm)).Append(',')
|
||||||
|
.Append(npc.RoughNights).Append(',')
|
||||||
|
.Append(npc.HungerMemory ? 1 : 0).Append('\n');
|
||||||
System.Array.Clear(npc.StateTicksToday, 0, npc.StateTicksToday.Length);
|
System.Array.Clear(npc.StateTicksToday, 0, npc.StateTicksToday.Length);
|
||||||
}
|
}
|
||||||
File.AppendAllText(_npcPath, npcRows.ToString());
|
File.AppendAllText(_npcPath, npcRows.ToString());
|
||||||
|
|||||||
+18
-5
@@ -82,15 +82,22 @@ public class World
|
|||||||
{
|
{
|
||||||
if (node.Kind == MaterialKind.Water) return requested; // unlimited at source
|
if (node.Kind == MaterialKind.Water) return requested; // unlimited at source
|
||||||
|
|
||||||
float floorFraction = npc.Soul.Sustainability * 0.5f; // how much of the node they leave standing
|
// Reciprocity is with the living land: floors and the commons line
|
||||||
|
// apply only to what regrows. Minerals quarry to depletion, for
|
||||||
|
// every soul equally, with no mark on anyone.
|
||||||
|
bool living = node.RegenPerDay > 0f;
|
||||||
|
|
||||||
|
float floorFraction = living ? npc.Soul.Sustainability * 0.5f : 0f;
|
||||||
float takeable = Math.Max(0f, node.Amount - node.MaxAmount * floorFraction);
|
float takeable = Math.Max(0f, node.Amount - node.MaxAmount * floorFraction);
|
||||||
float taken = Math.Min(requested, takeable);
|
float taken = Math.Min(requested, takeable);
|
||||||
node.Amount -= taken;
|
node.Amount -= taken;
|
||||||
HarvestedToday += taken;
|
HarvestedToday += taken;
|
||||||
|
|
||||||
// The moral line sits below any respectful harvest floor (nature souls
|
if (living)
|
||||||
// stop at 45%) — ordinary sustainable taking never grazes it, while
|
{
|
||||||
// strip-harvesting (selfish floor ~10%) lives deep inside it.
|
// The moral line sits below any respectful harvest floor (nature
|
||||||
|
// souls stop at 45%) — ordinary sustainable taking never grazes
|
||||||
|
// it, while strip-harvesting (selfish ~10%) lives deep inside it.
|
||||||
float commons = node.MaxAmount * 0.4f;
|
float commons = node.MaxAmount * 0.4f;
|
||||||
if (node.Amount < commons)
|
if (node.Amount < commons)
|
||||||
{
|
{
|
||||||
@@ -98,6 +105,7 @@ public class World
|
|||||||
npc.Imprint.OthersRegard =
|
npc.Imprint.OthersRegard =
|
||||||
Math.Clamp(npc.Imprint.OthersRegard + takenBelow * 0.004f, 0f, 1f);
|
Math.Clamp(npc.Imprint.OthersRegard + takenBelow * 0.004f, 0f, 1f);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return taken;
|
return taken;
|
||||||
}
|
}
|
||||||
@@ -146,7 +154,12 @@ public class World
|
|||||||
foreach (var node in Nodes)
|
foreach (var node in Nodes)
|
||||||
{
|
{
|
||||||
if (node.Kind != kind || node.IsDepleted) continue;
|
if (node.Kind != kind || node.IsDepleted) continue;
|
||||||
if (node.Kind != MaterialKind.Water && node.Amount <= node.MaxAmount * minFraction)
|
// The harvest floor is an ethic of regrowth — it applies only to
|
||||||
|
// living, regenerating things. Leaving half a berry bush lets it
|
||||||
|
// live; leaving half a stone deposit protects nobody, and once
|
||||||
|
// stranded it homelessly, we learned that the hard way (run 9).
|
||||||
|
if (node.Kind != MaterialKind.Water && node.RegenPerDay > 0f &&
|
||||||
|
node.Amount <= node.MaxAmount * minFraction)
|
||||||
continue;
|
continue;
|
||||||
float d = position.DistanceSquaredTo(node.Cell);
|
float d = position.DistanceSquaredTo(node.Cell);
|
||||||
if (d < bestDist) { best = node; bestDist = d; }
|
if (d < bestDist) { best = node; bestDist = d; }
|
||||||
|
|||||||
+169
-246
@@ -1,247 +1,170 @@
|
|||||||
day,giver,giver_soul,receiver,receiver_soul,material,amount
|
day,giver,giver_soul,receiver,receiver_soul,material,amount
|
||||||
110,South_M,Selfish,South_E,Nature,Refusal,0.0
|
3,North_Q,Generational,North_V,Generational,Stone,3.0
|
||||||
110,South_M,Selfish,South_H,Nature,Refusal,0.0
|
3,North_S,Generational,South_O,Selfish,Stone,3.0
|
||||||
110,South_O,Selfish,South_E,Nature,Refusal,0.0
|
4,North_Y,Generational,South_M,Selfish,Stone,3.0
|
||||||
110,South_O,Selfish,South_H,Nature,Refusal,0.0
|
4,North_X,Generational,South_C,Nature,Stone,3.0
|
||||||
110,South_M,Selfish,North_X,Generational,Refusal,0.0
|
4,North_W,Generational,South_N,Selfish,Stone,3.0
|
||||||
110,South_N,Selfish,South_E,Nature,Refusal,0.0
|
92,South_M,Selfish,North_X,Generational,Refusal,0.0
|
||||||
110,South_N,Selfish,South_H,Nature,Refusal,0.0
|
92,South_N,Selfish,North_Y,Generational,Refusal,0.0
|
||||||
110,South_O,Selfish,North_X,Generational,Refusal,0.0
|
92,South_M,Selfish,North_X,Generational,Refusal,0.0
|
||||||
110,South_O,Selfish,South_E,Nature,Refusal,0.0
|
92,South_N,Selfish,North_Y,Generational,Refusal,0.0
|
||||||
110,South_M,Selfish,South_H,Nature,Refusal,0.0
|
92,South_N,Selfish,South_A,Nature,Refusal,0.0
|
||||||
110,South_N,Selfish,North_X,Generational,Refusal,0.0
|
92,South_N,Selfish,South_G,Nature,Refusal,0.0
|
||||||
110,South_N,Selfish,South_E,Nature,Refusal,0.0
|
92,South_N,Selfish,South_L,Nature,Refusal,0.0
|
||||||
110,South_O,Selfish,South_H,Nature,Refusal,0.0
|
92,South_N,Selfish,South_A,Nature,Refusal,0.0
|
||||||
110,South_M,Selfish,North_X,Generational,Refusal,0.0
|
92,South_N,Selfish,South_G,Nature,Refusal,0.0
|
||||||
110,South_M,Selfish,South_E,Nature,Refusal,0.0
|
92,South_N,Selfish,South_L,Nature,Refusal,0.0
|
||||||
110,South_N,Selfish,South_H,Nature,Refusal,0.0
|
92,South_O,Selfish,North_X,Generational,Refusal,0.0
|
||||||
110,South_O,Selfish,North_X,Generational,Refusal,0.0
|
92,South_O,Selfish,North_X,Generational,Refusal,0.0
|
||||||
110,South_N,Selfish,North_X,Generational,Refusal,0.0
|
92,South_M,Selfish,North_Y,Generational,Refusal,0.0
|
||||||
121,North_S,Generational,North_U,Generational,Food,3.0
|
92,South_O,Selfish,North_Y,Generational,Refusal,0.0
|
||||||
121,North_P,Generational,South_N,Selfish,Food,3.0
|
92,South_O,Selfish,North_Y,Generational,Refusal,0.0
|
||||||
121,North_R,Generational,South_O,Selfish,Food,3.0
|
92,South_O,Selfish,South_A,Nature,Refusal,0.0
|
||||||
121,North_Q,Generational,South_M,Selfish,Food,3.0
|
92,South_O,Selfish,South_G,Nature,Refusal,0.0
|
||||||
121,North_S,Generational,South_G,Nature,Food,3.0
|
92,South_O,Selfish,South_L,Nature,Refusal,0.0
|
||||||
121,North_W,Generational,South_G,Nature,Food,3.0
|
92,South_M,Selfish,North_Y,Generational,Refusal,0.0
|
||||||
122,North_P,Generational,North_Y,Generational,Food,3.0
|
92,South_M,Selfish,South_A,Nature,Refusal,0.0
|
||||||
122,North_R,Generational,South_H,Nature,Food,3.0
|
92,South_M,Selfish,South_G,Nature,Refusal,0.0
|
||||||
122,North_S,Generational,South_H,Nature,Food,3.0
|
92,South_M,Selfish,South_L,Nature,Refusal,0.0
|
||||||
122,North_P,Generational,South_M,Selfish,Food,3.0
|
92,South_M,Selfish,South_A,Nature,Refusal,0.0
|
||||||
122,North_R,Generational,South_M,Selfish,Food,3.0
|
92,South_M,Selfish,South_G,Nature,Refusal,0.0
|
||||||
122,North_Q,Generational,South_I,Nature,Food,3.0
|
92,South_M,Selfish,South_L,Nature,Refusal,0.0
|
||||||
122,South_B,Nature,South_I,Nature,Food,3.0
|
92,South_O,Selfish,South_A,Nature,Refusal,0.0
|
||||||
122,North_P,Generational,South_N,Selfish,Food,3.0
|
92,South_O,Selfish,South_G,Nature,Refusal,0.0
|
||||||
122,North_W,Generational,South_N,Selfish,Food,3.0
|
92,South_O,Selfish,South_L,Nature,Refusal,0.0
|
||||||
122,North_T,Generational,South_J,Nature,Food,3.0
|
92,South_N,Selfish,North_X,Generational,Refusal,0.0
|
||||||
122,North_S,Generational,South_O,Selfish,Food,3.0
|
92,South_N,Selfish,North_X,Generational,Refusal,0.0
|
||||||
122,South_A,Nature,South_J,Nature,Food,3.0
|
93,South_N,Selfish,North_W,Generational,Refusal,0.0
|
||||||
122,North_P,Generational,South_O,Selfish,Food,3.0
|
93,South_N,Selfish,South_D,Nature,Refusal,0.0
|
||||||
122,North_S,Generational,South_C,Nature,Food,3.0
|
93,South_N,Selfish,North_T,Generational,Refusal,0.0
|
||||||
122,North_P,Generational,South_D,Nature,Food,3.0
|
93,South_N,Selfish,North_U,Generational,Refusal,0.0
|
||||||
123,South_G,Nature,South_L,Nature,Food,3.0
|
93,South_N,Selfish,North_W,Generational,Refusal,0.0
|
||||||
123,South_C,Nature,South_F,Nature,Food,3.0
|
93,South_N,Selfish,South_D,Nature,Refusal,0.0
|
||||||
123,South_H,Nature,South_L,Nature,Food,3.0
|
93,South_N,Selfish,North_T,Generational,Refusal,0.0
|
||||||
124,North_W,Generational,South_M,Selfish,Food,3.0
|
93,South_N,Selfish,North_U,Generational,Refusal,0.0
|
||||||
124,South_A,Nature,South_O,Selfish,Food,3.0
|
93,South_N,Selfish,South_H,Nature,Refusal,0.0
|
||||||
124,South_J,Nature,South_N,Selfish,Food,3.0
|
93,South_N,Selfish,South_H,Nature,Refusal,0.0
|
||||||
125,North_Q,Generational,South_M,Selfish,Food,3.0
|
93,South_N,Selfish,North_Q,Generational,Refusal,0.0
|
||||||
125,North_U,Generational,South_O,Selfish,Food,3.0
|
93,South_N,Selfish,North_Q,Generational,Refusal,0.0
|
||||||
125,North_Q,Generational,South_N,Selfish,Food,3.0
|
93,South_N,Selfish,North_S,Generational,Refusal,0.0
|
||||||
127,North_Q,Generational,South_M,Selfish,Food,3.0
|
93,South_N,Selfish,North_S,Generational,Refusal,0.0
|
||||||
127,North_V,Generational,South_O,Selfish,Food,3.0
|
94,South_O,Selfish,North_Q,Generational,Refusal,0.0
|
||||||
127,North_X,Generational,South_N,Selfish,Food,3.0
|
94,South_N,Selfish,North_R,Generational,Refusal,0.0
|
||||||
129,North_P,Generational,South_M,Selfish,Food,3.0
|
94,South_M,Selfish,North_Q,Generational,Refusal,0.0
|
||||||
129,North_Q,Generational,South_O,Selfish,Food,3.0
|
94,South_N,Selfish,North_R,Generational,Refusal,0.0
|
||||||
129,North_R,Generational,South_N,Selfish,Food,3.0
|
94,South_M,Selfish,North_Q,Generational,Refusal,0.0
|
||||||
130,North_P,Generational,South_M,Selfish,Food,3.0
|
94,South_O,Selfish,North_Q,Generational,Refusal,0.0
|
||||||
131,North_Q,Generational,South_N,Selfish,Food,3.0
|
94,South_O,Selfish,South_D,Nature,Refusal,0.0
|
||||||
131,South_E,Nature,South_O,Selfish,Food,3.0
|
94,South_O,Selfish,South_H,Nature,Refusal,0.0
|
||||||
132,North_P,Generational,South_M,Selfish,Food,3.0
|
94,South_M,Selfish,South_D,Nature,Refusal,0.0
|
||||||
132,North_Q,Generational,South_O,Selfish,Food,3.0
|
94,South_M,Selfish,South_H,Nature,Refusal,0.0
|
||||||
133,North_P,Generational,South_N,Selfish,Food,3.0
|
94,South_O,Selfish,South_D,Nature,Refusal,0.0
|
||||||
134,North_P,Generational,South_M,Selfish,Food,3.0
|
94,South_O,Selfish,South_H,Nature,Refusal,0.0
|
||||||
134,North_P,Generational,South_O,Selfish,Food,3.0
|
94,South_O,Selfish,North_R,Generational,Refusal,0.0
|
||||||
134,North_Q,Generational,South_N,Selfish,Food,3.0
|
94,South_M,Selfish,South_D,Nature,Refusal,0.0
|
||||||
135,North_P,Generational,South_M,Selfish,Food,3.0
|
94,South_M,Selfish,South_H,Nature,Refusal,0.0
|
||||||
136,North_U,Generational,South_O,Selfish,Food,3.0
|
94,South_M,Selfish,North_R,Generational,Refusal,0.0
|
||||||
136,North_Q,Generational,South_N,Selfish,Food,3.0
|
94,South_O,Selfish,North_R,Generational,Refusal,0.0
|
||||||
137,North_P,Generational,South_M,Selfish,Food,3.0
|
94,South_M,Selfish,North_R,Generational,Refusal,0.0
|
||||||
137,North_P,Generational,South_O,Selfish,Food,3.0
|
94,South_O,Selfish,North_S,Generational,Refusal,0.0
|
||||||
138,North_S,Generational,South_N,Selfish,Food,3.0
|
94,South_O,Selfish,North_T,Generational,Refusal,0.0
|
||||||
139,North_P,Generational,South_M,Selfish,Food,3.0
|
94,South_O,Selfish,North_U,Generational,Refusal,0.0
|
||||||
139,North_S,Generational,South_O,Selfish,Food,3.0
|
94,South_O,Selfish,North_W,Generational,Refusal,0.0
|
||||||
140,North_Q,Generational,South_N,Selfish,Food,3.0
|
94,South_M,Selfish,North_S,Generational,Refusal,0.0
|
||||||
141,North_R,Generational,South_M,Selfish,Food,3.0
|
94,South_M,Selfish,North_T,Generational,Refusal,0.0
|
||||||
141,North_U,Generational,South_O,Selfish,Food,3.0
|
94,South_M,Selfish,North_U,Generational,Refusal,0.0
|
||||||
141,North_W,Generational,South_N,Selfish,Food,3.0
|
94,South_M,Selfish,North_W,Generational,Refusal,0.0
|
||||||
142,North_W,Generational,South_M,Selfish,Food,3.0
|
94,South_O,Selfish,North_S,Generational,Refusal,0.0
|
||||||
143,North_P,Generational,South_O,Selfish,Food,3.0
|
94,South_O,Selfish,North_T,Generational,Refusal,0.0
|
||||||
143,North_R,Generational,South_N,Selfish,Food,3.0
|
94,South_O,Selfish,North_U,Generational,Refusal,0.0
|
||||||
144,North_P,Generational,South_M,Selfish,Food,3.0
|
94,South_O,Selfish,North_W,Generational,Refusal,0.0
|
||||||
144,North_P,Generational,South_O,Selfish,Food,3.0
|
94,South_M,Selfish,North_S,Generational,Refusal,0.0
|
||||||
145,North_Q,Generational,South_N,Selfish,Food,3.0
|
94,South_M,Selfish,North_T,Generational,Refusal,0.0
|
||||||
146,North_P,Generational,South_M,Selfish,Food,3.0
|
94,South_M,Selfish,North_U,Generational,Refusal,0.0
|
||||||
146,North_P,Generational,South_O,Selfish,Food,3.0
|
94,South_M,Selfish,North_W,Generational,Refusal,0.0
|
||||||
147,North_P,Generational,South_N,Selfish,Food,3.0
|
94,South_M,Selfish,South_E,Nature,Refusal,0.0
|
||||||
147,North_P,Generational,South_M,Selfish,Food,3.0
|
94,South_O,Selfish,South_E,Nature,Refusal,0.0
|
||||||
148,North_P,Generational,South_O,Selfish,Food,3.0
|
94,South_O,Selfish,South_E,Nature,Refusal,0.0
|
||||||
148,North_V,Generational,South_N,Selfish,Food,3.0
|
94,South_M,Selfish,South_E,Nature,Refusal,0.0
|
||||||
149,North_X,Generational,South_M,Selfish,Food,3.0
|
94,South_M,Selfish,South_C,Nature,Refusal,0.0
|
||||||
149,North_P,Generational,South_O,Selfish,Food,3.0
|
94,South_M,Selfish,South_K,Nature,Refusal,0.0
|
||||||
150,North_V,Generational,South_N,Selfish,Food,3.0
|
94,South_O,Selfish,South_C,Nature,Refusal,0.0
|
||||||
151,North_P,Generational,South_M,Selfish,Food,3.0
|
94,South_M,Selfish,South_C,Nature,Refusal,0.0
|
||||||
151,North_V,Generational,South_O,Selfish,Food,3.0
|
94,South_O,Selfish,South_K,Nature,Refusal,0.0
|
||||||
152,North_Y,Generational,South_N,Selfish,Food,3.0
|
94,South_O,Selfish,South_C,Nature,Refusal,0.0
|
||||||
152,North_Q,Generational,South_M,Selfish,Food,3.0
|
94,South_M,Selfish,South_K,Nature,Refusal,0.0
|
||||||
153,North_P,Generational,South_O,Selfish,Food,3.0
|
94,South_O,Selfish,South_K,Nature,Refusal,0.0
|
||||||
154,North_P,Generational,South_N,Selfish,Food,3.0
|
94,South_N,Selfish,South_E,Nature,Refusal,0.0
|
||||||
154,North_R,Generational,South_M,Selfish,Food,3.0
|
94,South_N,Selfish,South_E,Nature,Refusal,0.0
|
||||||
155,North_P,Generational,South_O,Selfish,Food,3.0
|
94,South_N,Selfish,South_C,Nature,Refusal,0.0
|
||||||
156,North_T,Generational,South_M,Selfish,Food,3.0
|
94,South_N,Selfish,South_K,Nature,Refusal,0.0
|
||||||
156,North_U,Generational,South_N,Selfish,Food,3.0
|
94,South_N,Selfish,South_C,Nature,Refusal,0.0
|
||||||
156,North_R,Generational,South_O,Selfish,Food,3.0
|
94,South_N,Selfish,South_K,Nature,Refusal,0.0
|
||||||
157,North_Q,Generational,South_N,Selfish,Food,3.0
|
95,South_N,Selfish,North_P,Generational,Refusal,0.0
|
||||||
157,North_S,Generational,South_M,Selfish,Food,3.0
|
95,South_N,Selfish,North_P,Generational,Refusal,0.0
|
||||||
158,North_Q,Generational,South_O,Selfish,Food,3.0
|
95,South_M,Selfish,North_P,Generational,Refusal,0.0
|
||||||
159,North_P,Generational,South_N,Selfish,Food,3.0
|
95,South_O,Selfish,North_P,Generational,Refusal,0.0
|
||||||
159,North_V,Generational,South_M,Selfish,Food,3.0
|
95,South_O,Selfish,North_P,Generational,Refusal,0.0
|
||||||
160,North_R,Generational,South_O,Selfish,Food,3.0
|
95,South_M,Selfish,North_P,Generational,Refusal,0.0
|
||||||
161,North_P,Generational,South_M,Selfish,Food,3.0
|
96,South_N,Selfish,North_V,Generational,Refusal,0.0
|
||||||
161,North_Q,Generational,South_N,Selfish,Food,3.0
|
96,South_N,Selfish,North_V,Generational,Refusal,0.0
|
||||||
161,North_Q,Generational,South_O,Selfish,Food,3.0
|
96,South_O,Selfish,North_V,Generational,Refusal,0.0
|
||||||
162,North_P,Generational,South_M,Selfish,Food,3.0
|
96,South_O,Selfish,North_V,Generational,Refusal,0.0
|
||||||
163,North_Q,Generational,South_N,Selfish,Food,3.0
|
96,South_M,Selfish,North_V,Generational,Refusal,0.0
|
||||||
163,North_S,Generational,South_O,Selfish,Food,3.0
|
96,South_M,Selfish,North_V,Generational,Refusal,0.0
|
||||||
164,North_Q,Generational,South_M,Selfish,Food,3.0
|
128,North_Q,Generational,North_P,Generational,Stone,3.0
|
||||||
164,North_Q,Generational,South_N,Selfish,Food,3.0
|
135,North_Y,Generational,North_V,Generational,Stone,3.0
|
||||||
165,North_P,Generational,South_O,Selfish,Food,3.0
|
138,South_A,Nature,North_R,Generational,Stone,3.0
|
||||||
166,North_P,Generational,South_M,Selfish,Food,3.0
|
141,South_E,Nature,North_R,Generational,Stone,3.0
|
||||||
166,North_R,Generational,South_N,Selfish,Food,3.0
|
154,North_X,Generational,North_V,Generational,Stone,3.0
|
||||||
167,North_Q,Generational,South_O,Selfish,Food,3.0
|
161,South_G,Nature,North_P,Generational,Stone,3.0
|
||||||
168,North_P,Generational,South_M,Selfish,Food,3.0
|
168,South_C,Nature,North_W,Generational,Stone,3.0
|
||||||
168,North_S,Generational,South_N,Selfish,Food,3.0
|
178,North_S,Generational,North_V,Generational,Stone,3.0
|
||||||
168,North_S,Generational,South_O,Selfish,Food,3.0
|
188,South_A,Nature,South_B,Nature,Food,0.2
|
||||||
169,North_X,Generational,South_M,Selfish,Food,3.0
|
214,North_Q,Generational,South_L,Nature,Food,0.2
|
||||||
170,North_P,Generational,South_N,Selfish,Food,3.0
|
214,South_E,Nature,South_K,Nature,Food,0.2
|
||||||
170,North_P,Generational,South_O,Selfish,Food,3.0
|
214,South_G,Nature,South_K,Nature,Food,0.1
|
||||||
171,North_P,Generational,South_M,Selfish,Food,3.0
|
214,South_E,Nature,South_B,Nature,Food,0.2
|
||||||
171,North_V,Generational,South_N,Selfish,Food,3.0
|
214,South_G,Nature,South_B,Nature,Food,0.2
|
||||||
172,North_P,Generational,South_O,Selfish,Food,3.0
|
214,South_E,Nature,South_B,Nature,Food,0.2
|
||||||
173,North_P,Generational,South_M,Selfish,Food,3.0
|
214,South_G,Nature,South_B,Nature,Food,0.2
|
||||||
173,North_Q,Generational,South_N,Selfish,Food,3.0
|
214,South_E,Nature,South_B,Nature,Food,0.2
|
||||||
174,North_V,Generational,South_O,Selfish,Food,3.0
|
214,South_G,Nature,South_B,Nature,Food,0.2
|
||||||
174,North_R,Generational,South_M,Selfish,Food,3.0
|
214,South_G,Nature,South_B,Nature,Food,0.2
|
||||||
175,North_P,Generational,South_N,Selfish,Food,3.0
|
214,South_G,Nature,South_B,Nature,Food,0.2
|
||||||
175,North_P,Generational,South_O,Selfish,Food,3.0
|
214,South_G,Nature,South_B,Nature,Food,0.2
|
||||||
176,North_P,Generational,South_M,Selfish,Food,3.0
|
214,South_G,Nature,South_B,Nature,Food,0.2
|
||||||
177,North_P,Generational,South_N,Selfish,Food,3.0
|
214,South_G,Nature,South_B,Nature,Food,0.2
|
||||||
177,North_Q,Generational,South_O,Selfish,Food,3.0
|
214,South_G,Nature,South_B,Nature,Food,0.2
|
||||||
178,North_P,Generational,South_M,Selfish,Food,3.0
|
214,South_G,Nature,South_B,Nature,Food,0.2
|
||||||
179,North_T,Generational,South_N,Selfish,Food,3.0
|
214,South_G,Nature,South_B,Nature,Food,0.2
|
||||||
179,South_D,Nature,South_O,Selfish,Food,3.0
|
215,South_E,Nature,South_B,Nature,Food,0.0
|
||||||
179,North_Y,Generational,South_M,Selfish,Food,3.0
|
215,South_E,Nature,South_O,Selfish,Food,0.2
|
||||||
180,North_V,Generational,South_N,Selfish,Food,3.0
|
215,South_E,Nature,South_O,Selfish,Food,0.2
|
||||||
180,North_X,Generational,South_O,Selfish,Food,3.0
|
215,South_E,Nature,South_O,Selfish,Food,0.2
|
||||||
181,North_P,Generational,South_M,Selfish,Food,3.0
|
215,South_E,Nature,South_O,Selfish,Food,0.2
|
||||||
182,North_Q,Generational,South_N,Selfish,Food,3.0
|
215,South_G,Nature,South_O,Selfish,Food,0.0
|
||||||
182,North_R,Generational,South_O,Selfish,Food,3.0
|
216,North_T,Generational,South_J,Nature,Food,0.2
|
||||||
183,North_P,Generational,South_M,Selfish,Food,3.0
|
216,South_E,Nature,South_B,Nature,Food,0.1
|
||||||
184,North_P,Generational,South_N,Selfish,Food,3.0
|
217,North_V,Generational,South_M,Selfish,Food,0.8
|
||||||
184,North_Q,Generational,South_O,Selfish,Food,3.0
|
218,North_T,Generational,South_E,Nature,Food,0.2
|
||||||
184,North_Y,Generational,South_M,Selfish,Food,3.0
|
220,North_T,Generational,North_X,Generational,Food,0.2
|
||||||
186,North_T,Generational,South_N,Selfish,Food,3.0
|
221,North_P,Generational,South_C,Nature,Food,0.2
|
||||||
186,North_T,Generational,South_O,Selfish,Food,3.0
|
221,South_E,Nature,South_O,Selfish,Food,0.2
|
||||||
186,North_Y,Generational,South_M,Selfish,Food,3.0
|
223,North_P,Generational,South_O,Selfish,Food,0.2
|
||||||
187,North_Y,Generational,South_O,Selfish,Food,3.0
|
224,South_E,Nature,South_O,Selfish,Food,0.1
|
||||||
187,North_V,Generational,South_N,Selfish,Food,3.0
|
224,South_E,Nature,North_X,Generational,Food,0.2
|
||||||
188,North_P,Generational,South_M,Selfish,Food,3.0
|
225,North_S,Generational,South_G,Nature,Stone,3.0
|
||||||
189,North_T,Generational,South_O,Selfish,Food,3.0
|
228,North_T,Generational,South_O,Selfish,Food,0.2
|
||||||
189,North_Q,Generational,South_N,Selfish,Food,3.0
|
228,North_V,Generational,South_O,Selfish,Food,0.2
|
||||||
189,North_Q,Generational,South_M,Selfish,Food,3.0
|
229,South_E,Nature,South_N,Selfish,Food,0.9
|
||||||
191,North_Y,Generational,South_N,Selfish,Food,3.0
|
232,South_E,Nature,North_U,Generational,Food,0.3
|
||||||
191,North_Y,Generational,South_O,Selfish,Food,3.0
|
232,North_T,Generational,South_N,Selfish,Food,0.8
|
||||||
191,North_R,Generational,South_M,Selfish,Food,3.0
|
233,North_P,Generational,South_N,Selfish,Food,1.2
|
||||||
192,North_P,Generational,South_O,Selfish,Food,3.0
|
233,North_T,Generational,South_N,Selfish,Food,0.2
|
||||||
193,North_R,Generational,South_M,Selfish,Food,3.0
|
235,North_T,Generational,South_B,Nature,Food,0.2
|
||||||
193,North_U,Generational,South_N,Selfish,Food,3.0
|
236,North_P,Generational,South_B,Nature,Food,0.2
|
||||||
194,North_P,Generational,South_O,Selfish,Food,3.0
|
238,North_T,Generational,South_C,Nature,Food,0.2
|
||||||
194,North_Q,Generational,South_N,Selfish,Food,3.0
|
238,North_P,Generational,South_B,Nature,Food,0.2
|
||||||
195,North_R,Generational,South_M,Selfish,Food,3.0
|
239,South_E,Nature,South_B,Nature,Food,0.2
|
||||||
196,North_P,Generational,South_O,Selfish,Food,3.0
|
240,North_T,Generational,South_B,Nature,Food,0.2
|
||||||
196,North_T,Generational,South_M,Selfish,Food,3.0
|
|
||||||
196,North_U,Generational,South_N,Selfish,Food,3.0
|
|
||||||
198,North_Q,Generational,South_M,Selfish,Food,3.0
|
|
||||||
198,North_Y,Generational,South_N,Selfish,Food,3.0
|
|
||||||
198,North_R,Generational,South_O,Selfish,Food,3.0
|
|
||||||
199,North_Q,Generational,South_O,Selfish,Food,3.0
|
|
||||||
200,North_Y,Generational,South_M,Selfish,Food,3.0
|
|
||||||
200,North_Q,Generational,South_N,Selfish,Food,3.0
|
|
||||||
201,North_P,Generational,South_O,Selfish,Food,3.0
|
|
||||||
201,North_P,Generational,South_M,Selfish,Food,3.0
|
|
||||||
201,North_P,Generational,South_N,Selfish,Food,3.0
|
|
||||||
203,North_P,Generational,South_O,Selfish,Food,3.0
|
|
||||||
203,North_Q,Generational,South_M,Selfish,Food,3.0
|
|
||||||
203,North_R,Generational,South_N,Selfish,Food,3.0
|
|
||||||
204,North_P,Generational,South_O,Selfish,Food,3.0
|
|
||||||
205,North_P,Generational,South_M,Selfish,Food,3.0
|
|
||||||
205,North_V,Generational,South_N,Selfish,Food,3.0
|
|
||||||
206,North_S,Generational,South_O,Selfish,Food,3.0
|
|
||||||
206,North_R,Generational,South_M,Selfish,Food,3.0
|
|
||||||
207,North_P,Generational,South_N,Selfish,Food,3.0
|
|
||||||
208,North_R,Generational,South_O,Selfish,Food,3.0
|
|
||||||
208,North_S,Generational,South_M,Selfish,Food,3.0
|
|
||||||
209,North_P,Generational,South_N,Selfish,Food,3.0
|
|
||||||
210,North_P,Generational,South_M,Selfish,Food,3.0
|
|
||||||
210,North_R,Generational,South_O,Selfish,Food,3.0
|
|
||||||
210,North_Q,Generational,South_N,Selfish,Food,3.0
|
|
||||||
211,North_P,Generational,South_O,Selfish,Food,3.0
|
|
||||||
211,South_K,Nature,South_M,Selfish,Food,3.0
|
|
||||||
212,North_P,Generational,South_N,Selfish,Food,3.0
|
|
||||||
213,North_P,Generational,South_O,Selfish,Food,3.0
|
|
||||||
213,North_S,Generational,South_M,Selfish,Food,3.0
|
|
||||||
214,North_P,Generational,South_N,Selfish,Food,3.0
|
|
||||||
215,North_P,Generational,South_M,Selfish,Food,3.0
|
|
||||||
215,North_U,Generational,South_O,Selfish,Food,3.0
|
|
||||||
216,North_S,Generational,South_N,Selfish,Food,3.0
|
|
||||||
217,South_G,Nature,South_M,Selfish,Food,3.0
|
|
||||||
217,South_B,Nature,South_O,Selfish,Food,3.0
|
|
||||||
242,North_X,Generational,South_D,Nature,Food,3.0
|
|
||||||
242,North_X,Generational,South_M,Selfish,Food,3.0
|
|
||||||
242,North_X,Generational,South_M,Selfish,Food,3.0
|
|
||||||
242,North_Q,Generational,South_E,Nature,Food,3.0
|
|
||||||
242,North_R,Generational,South_F,Nature,Food,3.0
|
|
||||||
242,North_X,Generational,South_N,Selfish,Food,3.0
|
|
||||||
242,South_I,Nature,South_O,Selfish,Food,3.0
|
|
||||||
242,North_Y,Generational,South_O,Selfish,Food,3.0
|
|
||||||
243,South_I,Nature,South_M,Selfish,Food,3.0
|
|
||||||
243,North_Y,Generational,South_N,Selfish,Food,3.0
|
|
||||||
243,North_Q,Generational,South_N,Selfish,Food,3.0
|
|
||||||
243,North_T,Generational,South_O,Selfish,Food,3.0
|
|
||||||
244,North_P,Generational,South_M,Selfish,Food,3.0
|
|
||||||
245,North_P,Generational,South_N,Selfish,Food,3.0
|
|
||||||
245,North_R,Generational,South_O,Selfish,Food,3.0
|
|
||||||
246,North_P,Generational,South_M,Selfish,Food,3.0
|
|
||||||
247,North_Y,Generational,South_N,Selfish,Food,3.0
|
|
||||||
247,North_P,Generational,South_O,Selfish,Food,3.0
|
|
||||||
248,North_S,Generational,South_M,Selfish,Food,3.0
|
|
||||||
248,North_X,Generational,South_O,Selfish,Food,3.0
|
|
||||||
248,North_U,Generational,South_N,Selfish,Food,3.0
|
|
||||||
249,North_T,Generational,South_M,Selfish,Food,3.0
|
|
||||||
250,North_P,Generational,South_O,Selfish,Food,3.0
|
|
||||||
250,North_Q,Generational,South_N,Selfish,Food,3.0
|
|
||||||
251,North_R,Generational,South_M,Selfish,Food,3.0
|
|
||||||
252,North_P,Generational,South_N,Selfish,Food,3.0
|
|
||||||
252,North_Q,Generational,South_O,Selfish,Food,3.0
|
|
||||||
253,North_P,Generational,South_M,Selfish,Food,3.0
|
|
||||||
253,North_Q,Generational,South_O,Selfish,Food,3.0
|
|
||||||
254,North_P,Generational,South_N,Selfish,Food,3.0
|
|
||||||
254,North_P,Generational,South_M,Selfish,Food,3.0
|
|
||||||
255,North_U,Generational,South_O,Selfish,Food,3.0
|
|
||||||
255,North_S,Generational,South_N,Selfish,Food,3.0
|
|
||||||
256,North_S,Generational,South_M,Selfish,Food,3.0
|
|
||||||
257,North_S,Generational,South_O,Selfish,Food,3.0
|
|
||||||
257,North_T,Generational,South_N,Selfish,Food,3.0
|
|
||||||
258,North_P,Generational,South_M,Selfish,Food,3.0
|
|
||||||
259,North_Q,Generational,South_O,Selfish,Food,3.0
|
|
||||||
259,North_R,Generational,South_N,Selfish,Food,3.0
|
|
||||||
260,North_X,Generational,South_M,Selfish,Food,3.0
|
|
||||||
|
|||||||
|
+6501
-6501
File diff suppressed because it is too large
Load Diff
+260
-260
@@ -1,261 +1,261 @@
|
|||||||
day,season,wood,stone,clay,food,harvested,trades,avg_fatigue,avg_nourish,avg_health,carried,gather_ticks,build_ticks,trade_ticks,rest_ticks,social_ticks,shelters_done,ruins,avg_cond,upkeep_stock,burn_per_day,modules,granary_food,avg_debris,refusals,incomplete_sites
|
day,season,wood,stone,clay,food,harvested,trades,avg_fatigue,avg_nourish,avg_health,carried,gather_ticks,build_ticks,trade_ticks,rest_ticks,social_ticks,shelters_done,ruins,avg_cond,upkeep_stock,burn_per_day,modules,granary_food,avg_debris,refusals,incomplete_sites
|
||||||
1,spring,1640.1,792.0,242.5,778.0,573.5,0,0.0,0.766,100.0,352.8,10437,514,0,3729,9320,0,0,0.000,0.0,0.0,0,0.0,0.0015,0,0
|
1,spring,1579.9,960.0,400.0,654.0,564.5,0,0.0,0.766,100.0,564.5,7719,690,0,3081,12510,0,0,0.000,0.0,0.0,0,0.0,0.0023,0,0
|
||||||
2,spring,1607.8,690.0,162.5,742.0,391.3,0,5.8,0.915,100.0,523.1,13179,388,0,13682,8751,0,0,0.000,0.0,0.0,0,0.0,0.0018,0,0
|
2,spring,1628.7,960.0,400.0,740.0,48.0,0,0.0,0.915,100.0,562.5,1471,1181,0,12000,21348,0,0,0.000,0.0,0.0,0,0.0,0.0023,0,0
|
||||||
3,spring,1529.4,540.0,160.0,684.0,530.5,0,3.5,0.814,100.0,551.4,11617,448,137,14025,9773,0,0,0.000,0.0,0.0,0,0.0,0.0021,0,0
|
3,spring,1670.7,960.0,400.0,775.0,42.0,0,0.0,0.814,100.0,579.5,1401,1185,0,12000,21414,0,0,0.000,0.0,0.0,0,0.0,0.0023,0,0
|
||||||
4,spring,1363.4,424.0,165.0,792.0,381.6,0,0.9,0.733,100.0,506.6,8143,5900,233,13962,7762,3,0,1.000,20.0,10.0,8,0.0,0.0021,0,1
|
4,spring,1388.2,672.0,400.0,741.0,774.3,2,0.6,0.732,100.0,546.3,8936,5465,774,13777,7048,4,0,0.975,18.0,14.0,12,0.0,0.0023,0,0
|
||||||
5,spring,1257.9,410.0,170.0,758.0,356.7,0,0.5,0.862,100.0,528.5,9582,4020,319,13537,8542,4,0,1.000,22.8,16.0,16,0.0,0.0021,0,0
|
5,spring,1193.7,672.0,400.0,627.0,628.9,3,5.5,0.861,100.0,554.3,10735,1562,313,13932,9458,4,0,0.988,22.4,16.0,16,0.0,0.0023,0,0
|
||||||
6,spring,1331.7,410.0,172.5,734.0,162.3,0,0.0,0.771,100.0,569.8,4400,1142,900,12000,17558,4,0,1.000,24.0,16.0,16,0.0,0.0021,0,0
|
6,spring,923.7,672.0,400.0,565.0,715.6,0,5.7,0.770,100.0,562.3,11066,665,2,13937,10330,4,0,1.000,24.0,16.0,16,0.0,0.0023,0,0
|
||||||
7,spring,1410.7,410.0,175.5,780.0,56.2,0,0.0,0.910,100.0,546.0,1970,1643,1046,12000,19341,4,0,1.000,16.4,16.0,16,0.0,0.0024,0,0
|
7,spring,929.9,672.0,400.0,580.0,362.8,0,4.1,0.909,100.0,534.7,10678,990,18,13854,10460,4,0,1.000,24.0,16.0,16,0.0,0.0023,0,0
|
||||||
8,spring,1449.5,410.0,171.5,782.0,109.0,0,0.0,0.809,100.0,565.0,3596,1238,978,12000,18188,4,0,1.000,17.2,16.0,16,0.0,0.0024,0,0
|
8,spring,915.3,672.0,400.0,581.0,393.6,0,3.4,0.808,100.0,563.6,10707,923,22,13805,10543,4,0,1.000,24.0,16.0,16,0.0,0.0025,0,0
|
||||||
9,spring,1491.1,410.0,176.5,784.0,86.8,0,0.0,0.737,100.0,577.0,2998,1661,991,12000,18350,4,0,1.000,18.8,16.0,16,0.0,0.0024,0,0
|
9,spring,929.3,672.0,400.0,577.0,370.0,0,5.6,0.736,100.0,560.6,10746,932,4,13932,10386,4,0,1.000,24.0,16.0,16,0.0,0.0026,0,0
|
||||||
10,spring,1521.0,410.0,177.5,782.0,94.4,0,0.0,0.856,100.0,575.6,3485,1467,968,12000,18080,4,0,1.000,16.3,16.0,16,0.0,0.0024,0,0
|
10,spring,926.4,672.0,400.0,571.0,392.9,0,3.3,0.855,100.0,549.1,11834,1145,23,13704,9294,4,0,1.000,23.9,16.0,16,0.0,0.0026,0,0
|
||||||
11,spring,1554.7,410.0,180.0,786.0,57.2,0,0.0,0.775,100.0,567.0,2145,1690,1038,12000,19127,4,0,1.000,17.4,16.0,16,0.0,0.0024,0,0
|
11,spring,917.8,672.0,400.0,572.0,391.6,0,4.4,0.773,100.0,558.8,11190,617,14,13852,10327,4,0,1.000,24.0,16.0,16,0.0,0.0028,0,0
|
||||||
12,spring,1566.4,410.0,185.0,782.0,82.5,0,0.0,0.904,100.0,555.0,2875,1626,995,12000,18504,4,0,1.000,16.2,16.0,16,0.0,0.0024,0,0
|
12,spring,943.7,672.0,400.0,590.0,335.1,0,5.6,0.902,100.0,532.8,10992,994,1,13781,10232,4,0,1.000,24.0,16.0,16,0.0,0.0029,0,0
|
||||||
13,spring,1562.7,410.0,190.0,778.0,101.7,0,0.0,0.822,100.0,578.0,3217,1534,985,12000,18264,4,0,1.000,15.5,16.0,16,0.0,0.0024,0,0
|
13,spring,923.3,672.0,400.0,582.0,406.4,0,4.6,0.820,100.0,557.3,11389,942,23,13771,9875,4,0,1.000,24.0,16.0,16,0.0,0.0029,0,0
|
||||||
14,spring,1586.6,410.0,195.0,792.0,38.1,0,0.0,0.731,100.0,566.0,1751,1906,1052,12000,19291,4,0,1.000,13.2,16.0,16,0.0,0.0025,0,0
|
14,spring,948.9,672.0,400.0,566.0,374.4,0,2.4,0.729,100.0,561.2,10898,519,6,14073,10504,4,0,1.000,24.0,16.0,16,0.0,0.0030,0,0
|
||||||
15,spring,1574.3,410.0,200.0,782.0,107.1,0,0.0,0.860,100.0,566.1,3232,2157,950,12000,17661,4,0,1.000,14.4,16.0,16,0.0,0.0025,0,0
|
15,spring,920.1,672.0,400.0,564.0,414.8,0,5.5,0.857,100.0,550.9,11408,565,2,13902,10123,4,0,1.000,24.0,16.0,16,0.0,0.0034,0,0
|
||||||
16,spring,1569.9,410.0,205.0,784.0,87.6,0,0.0,0.768,100.0,578.0,2842,1459,1014,12000,18685,4,0,1.000,16.2,16.0,16,0.0,0.0025,0,0
|
16,spring,930.3,672.0,400.0,573.0,364.8,0,8.2,0.775,100.0,553.6,13287,778,1,14304,7630,4,0,1.000,21.1,16.0,16,0.0,0.0035,0,0
|
||||||
17,spring,1585.8,410.0,210.0,792.0,42.1,0,0.0,0.907,100.0,545.0,1914,1645,1049,12000,19392,4,0,1.000,15.5,16.0,16,0.0,0.0025,0,0
|
17,spring,942.8,672.0,400.0,569.0,375.5,0,7.8,0.903,100.0,535.3,12851,701,1,14364,8083,4,0,1.000,23.0,16.0,16,0.0,0.0035,0,0
|
||||||
18,spring,1571.8,410.0,215.0,784.0,104.8,0,0.0,0.816,100.0,567.0,3392,1363,986,12000,18259,4,0,1.000,17.5,16.0,16,0.0,0.0025,0,0
|
18,spring,908.3,672.0,400.0,572.0,415.5,0,3.2,0.811,100.0,553.5,12735,776,6,14087,8396,4,0,1.000,23.7,16.0,16,0.0,0.0036,0,0
|
||||||
19,spring,1573.0,410.0,220.0,782.0,78.0,0,0.0,0.734,100.0,576.0,3137,1459,993,12000,18411,4,0,1.000,16.3,16.0,16,0.0,0.0025,0,0
|
19,spring,930.0,668.0,400.0,560.0,378.3,0,6.4,0.729,100.0,558.7,11900,431,14,14103,9552,4,0,1.000,24.0,16.0,16,0.0,0.0038,0,0
|
||||||
20,spring,1563.1,410.0,225.0,776.0,105.1,0,0.0,0.863,100.0,577.6,3737,1616,950,12000,17697,4,0,1.000,15.8,16.0,16,0.0,0.0025,0,0
|
20,spring,931.8,668.0,400.0,581.0,361.2,0,2.1,0.857,100.0,549.4,11209,508,2,14058,10223,4,0,1.000,24.0,16.0,16,0.0,0.0039,0,0
|
||||||
21,spring,1583.1,410.0,230.0,790.0,41.6,0,0.0,0.772,100.0,566.0,1795,1760,1054,12000,19391,4,0,1.000,15.0,16.0,16,0.0,0.0025,0,0
|
21,spring,913.3,668.0,400.0,568.0,415.5,0,3.2,0.775,100.0,555.5,12487,408,15,14142,8948,4,0,1.000,24.0,16.0,16,0.0,0.0039,0,0
|
||||||
22,spring,1583.3,410.0,235.0,786.0,83.4,0,0.0,0.910,100.0,555.0,2689,2015,985,12000,18311,4,0,1.000,13.5,16.0,16,0.0,0.0025,0,0
|
22,spring,907.3,668.0,400.0,572.0,386.0,0,3.1,0.903,100.0,534.7,11653,930,6,14504,8907,4,0,1.000,24.0,16.0,16,0.0,0.0041,0,0
|
||||||
23,spring,1570.5,410.0,240.0,782.0,106.8,0,0.0,0.809,100.0,578.0,2999,1818,981,12000,18202,4,0,1.000,15.5,16.0,16,0.0,0.0025,0,0
|
23,spring,918.7,668.0,400.0,564.0,380.6,0,1.9,0.821,100.0,543.4,11548,561,22,13929,9940,4,0,1.000,24.0,16.0,16,0.0,0.0044,0,0
|
||||||
24,spring,1590.3,410.0,245.0,792.0,37.4,0,0.0,0.728,100.0,567.0,1811,1448,1078,12000,19663,4,0,1.000,14.1,16.0,16,0.0,0.0025,0,0
|
24,spring,922.1,668.0,400.0,568.0,376.6,0,3.8,0.728,100.0,557.2,11259,809,6,13937,9989,4,0,1.000,24.0,16.0,16,0.0,0.0045,0,0
|
||||||
25,spring,1572.7,410.0,250.0,780.0,106.4,0,0.0,0.856,100.0,567.1,3331,1804,966,12000,17899,4,0,1.000,16.9,16.0,16,0.0,0.0025,0,0
|
25,spring,907.5,668.0,400.0,577.0,389.6,0,4.2,0.866,100.0,543.7,12457,857,17,14135,8534,4,0,1.000,24.0,16.0,16,0.0,0.0045,0,0
|
||||||
26,spring,1567.5,410.0,255.0,780.0,86.4,0,0.0,0.775,100.0,578.0,3007,1637,993,12000,18363,4,0,1.000,17.9,16.0,16,0.0,0.0025,0,0
|
26,spring,927.2,668.0,400.0,561.0,380.3,0,1.5,0.773,100.0,557.7,12286,416,5,14155,9138,4,0,1.000,24.0,16.0,16,0.0,0.0047,0,0
|
||||||
27,spring,1586.3,410.0,260.0,792.0,37.6,0,0.0,0.904,100.0,544.0,1977,1868,1031,12000,19124,4,0,1.000,16.7,16.0,16,0.0,0.0025,0,0
|
27,spring,949.8,668.0,400.0,569.0,353.4,0,4.4,0.911,100.0,534.2,10972,1069,18,14017,9924,4,0,1.000,24.0,16.0,16,0.0,0.0050,0,0
|
||||||
28,spring,1578.1,410.0,265.0,786.0,99.4,0,0.0,0.812,100.0,566.0,3173,1755,976,12000,18096,4,0,1.000,14.7,16.0,16,0.0,0.0025,0,0
|
28,spring,983.2,668.0,400.0,566.0,353.6,0,0.0,0.818,100.0,540.9,12052,251,17,13847,9833,4,0,1.000,24.0,16.0,16,0.0,0.0050,0,0
|
||||||
29,spring,1572.9,410.0,270.0,782.0,87.6,0,0.0,0.731,100.0,579.0,2743,1800,1000,12000,18457,4,0,1.000,15.6,16.0,16,0.0,0.0025,0,0
|
29,spring,949.6,668.0,400.0,562.0,421.6,0,2.9,0.726,100.0,554.3,11893,530,3,14085,9489,4,0,1.000,24.0,16.0,16,0.0,0.0051,0,0
|
||||||
30,summer,1552.7,410.0,275.0,766.0,102.2,0,0.0,0.860,100.0,577.1,3183,1546,987,12000,18284,4,0,1.000,16.2,16.0,16,0.0,0.0025,0,0
|
30,summer,917.1,668.0,400.0,488.0,386.5,0,7.4,0.863,100.0,545.5,12084,947,7,14030,8932,4,0,1.000,24.0,16.0,16,0.0,0.0053,0,0
|
||||||
31,summer,1562.7,410.0,280.0,774.0,42.0,0,0.0,0.778,100.0,566.0,1897,1436,1074,12000,19593,4,0,1.000,16.3,16.0,16,0.0,0.0025,0,0
|
31,summer,910.9,668.0,400.0,484.0,290.2,0,0.9,0.770,100.0,558.6,11902,958,1,13988,9151,4,0,1.000,24.0,16.0,16,0.0,0.0055,0,0
|
||||||
32,summer,1550.8,410.0,285.0,770.0,87.9,0,0.0,0.907,100.0,556.0,2881,1649,998,12000,18472,4,0,1.000,17.1,16.0,16,0.0,0.0026,0,0
|
32,summer,893.5,660.0,400.0,489.0,300.4,0,2.4,0.907,100.0,536.2,11924,494,6,14301,9275,4,0,1.000,24.0,16.0,16,0.0,0.0055,0,0
|
||||||
33,summer,1531.6,410.0,290.0,756.0,107.2,0,0.0,0.826,100.0,577.0,3585,1859,947,12000,17609,4,0,1.000,17.1,16.0,16,0.0,0.0026,0,0
|
33,summer,895.3,660.0,400.0,492.0,275.2,0,5.8,0.794,100.0,552.2,11694,704,52,13883,9667,4,0,1.000,24.0,16.0,16,0.0,0.0056,0,0
|
||||||
34,summer,1543.1,410.0,295.0,772.0,40.5,0,0.0,0.734,100.0,565.0,1937,1598,1059,12000,19406,4,0,1.000,17.1,16.0,16,0.0,0.0026,0,0
|
34,summer,901.4,660.0,400.0,513.0,252.9,1,4.1,0.711,100.0,559.1,9903,555,339,13720,11483,4,0,1.000,24.0,16.0,16,0.0,0.0058,0,0
|
||||||
35,summer,1524.1,410.0,300.0,764.0,107.0,0,0.0,0.853,100.0,566.1,3674,2181,924,12000,17221,4,0,1.000,17.1,16.0,16,0.0,0.0026,0,0
|
35,summer,912.8,660.0,400.0,482.0,299.6,0,1.8,0.823,100.0,553.0,10435,612,81,13823,11049,4,0,1.000,24.0,16.0,16,0.0,0.0060,0,0
|
||||||
36,summer,1519.3,410.0,305.0,764.0,88.8,0,0.0,0.771,100.0,579.0,3186,1523,992,12000,18299,4,0,1.000,17.2,16.0,16,0.0,0.0026,0,0
|
36,summer,919.8,660.0,400.0,481.0,274.0,0,2.9,0.744,100.0,555.7,10843,608,175,13832,10542,4,0,1.000,24.0,16.0,16,0.0,0.0061,0,0
|
||||||
37,summer,1532.3,410.0,310.0,778.0,41.0,0,0.0,0.900,100.0,545.0,2050,1680,1039,12000,19231,4,0,1.000,17.7,16.0,16,0.0,0.0026,0,0
|
37,summer,927.3,660.0,400.0,486.0,267.5,2,4.6,0.864,100.0,539.1,10079,1016,140,13806,10959,4,0,1.000,24.0,16.0,16,0.0,0.0063,0,0
|
||||||
38,summer,1516.3,410.0,315.0,764.0,102.0,0,0.0,0.819,100.0,564.0,3421,1231,989,12000,18359,4,0,1.000,15.7,16.0,16,0.0,0.0026,0,0
|
38,summer,903.3,660.0,400.0,479.0,311.0,1,0.6,0.795,100.0,545.2,11904,1073,226,13987,8810,4,0,1.000,24.0,16.0,16,0.0,0.0066,0,0
|
||||||
39,summer,1508.3,410.0,320.0,760.0,88.0,0,0.0,0.727,100.0,578.0,3437,1453,977,12000,18133,4,0,1.000,15.7,16.0,16,0.0,0.0027,0,0
|
39,summer,904.8,656.0,400.0,481.0,280.5,2,0.0,0.695,100.0,551.7,8699,419,232,13130,13520,4,0,1.000,24.0,16.0,16,0.0,0.0068,0,0
|
||||||
40,summer,1493.5,410.0,325.0,752.0,108.8,0,0.0,0.856,100.0,580.7,3728,1619,948,12000,17705,4,0,1.000,15.7,16.0,16,0.0,0.0029,0,0
|
40,summer,907.3,656.0,400.0,484.0,274.5,0,0.3,0.825,100.0,529.9,10703,776,50,14145,10326,4,0,1.000,24.0,16.0,16,0.0,0.0069,0,0
|
||||||
41,summer,1509.5,410.0,330.0,774.0,40.0,0,0.0,0.774,100.0,567.0,1918,1778,1046,12000,19258,4,0,1.000,16.3,16.0,16,0.0,0.0031,0,0
|
41,summer,898.8,656.0,400.0,482.0,290.5,0,0.0,0.736,100.0,557.0,10815,481,176,13579,10949,4,0,1.000,24.0,16.0,16,0.0,0.0070,0,0
|
||||||
42,summer,1503.5,410.0,335.0,770.0,86.0,0,0.0,0.902,100.0,555.0,3261,1341,991,12000,18407,4,0,1.000,16.3,16.0,16,0.0,0.0032,0,0
|
42,summer,894.3,656.0,400.0,485.0,281.5,0,6.7,0.876,100.0,533.5,11665,989,115,14202,9029,4,0,1.000,23.9,16.0,16,0.0,0.0071,0,0
|
||||||
43,summer,1489.0,410.0,340.0,758.0,108.5,0,0.0,0.821,100.0,578.0,3519,1387,973,12000,18121,4,0,1.000,16.3,16.0,16,0.0,0.0034,0,0
|
43,summer,900.8,656.0,400.0,481.0,277.5,1,2.7,0.776,100.0,552.9,12051,719,120,13909,9201,4,0,1.000,24.0,16.0,16,0.0,0.0073,0,0
|
||||||
44,summer,1507.0,410.0,345.0,774.0,42.0,0,0.0,0.729,100.0,568.0,1905,2013,1036,12000,19046,4,0,1.000,16.3,16.0,16,0.0,0.0038,0,0
|
44,summer,888.3,656.0,400.0,489.0,284.5,2,0.0,0.706,100.0,550.2,10249,769,175,13996,10811,4,0,1.000,24.0,16.0,16,0.0,0.0074,0,0
|
||||||
45,summer,1495.5,410.0,350.0,766.0,103.5,0,0.0,0.867,100.0,563.1,3724,2158,921,12000,17197,4,0,1.000,16.3,16.0,16,0.0,0.0038,0,0
|
45,summer,889.3,656.0,400.0,493.0,275.0,1,7.4,0.826,100.0,547.7,12451,1056,353,14047,8093,4,0,1.000,23.0,16.0,16,0.0,0.0074,0,0
|
||||||
46,summer,1495.0,410.0,355.0,766.0,88.5,0,0.0,0.775,100.0,577.0,3114,1431,1003,12000,18452,4,0,1.000,16.4,16.0,16,0.0,0.0038,0,0
|
46,summer,908.3,656.0,400.0,482.0,272.0,4,0.0,0.746,100.0,563.1,9313,737,501,13511,11938,4,0,1.000,21.1,16.0,16,0.0,0.0076,0,0
|
||||||
47,summer,1514.5,410.0,360.0,776.0,42.5,0,0.0,0.903,100.0,545.0,2128,1622,1040,12000,19210,4,0,1.000,16.4,16.0,16,0.0,0.0038,0,0
|
47,summer,917.3,656.0,400.0,496.0,257.0,5,4.1,0.866,100.0,540.7,9981,1240,235,13841,10703,4,0,1.000,24.0,16.0,16,0.0,0.0077,0,0
|
||||||
48,summer,1498.5,410.0,365.0,768.0,108.0,0,0.0,0.821,100.0,566.0,3719,1283,972,12000,18026,4,0,1.000,16.4,16.0,16,0.0,0.0038,0,0
|
48,summer,906.0,656.0,400.0,486.0,301.3,10,0.0,0.786,100.0,551.8,9132,935,217,13369,12347,4,0,1.000,24.0,16.0,16,0.0,0.0079,0,0
|
||||||
49,summer,1495.0,410.0,370.0,770.0,85.5,0,0.0,0.729,100.0,576.0,3379,1423,984,12000,18214,4,0,1.000,16.4,16.0,16,0.0,0.0038,0,0
|
49,summer,904.5,656.0,400.0,482.0,285.5,4,0.0,0.695,100.0,565.2,8455,519,194,12970,13862,4,0,1.000,24.0,16.0,16,0.0,0.0082,0,0
|
||||||
50,summer,1483.0,410.0,375.0,760.0,110.0,0,0.0,0.867,100.0,577.8,3878,1658,940,12000,17524,4,0,1.000,16.4,16.0,16,0.0,0.0038,0,0
|
50,summer,909.5,656.0,400.0,484.0,273.0,4,2.8,0.825,100.0,546.0,9615,860,311,13569,11645,4,0,1.000,24.0,16.0,16,0.0,0.0083,0,0
|
||||||
51,summer,1501.0,410.0,379.5,772.0,42.0,0,0.0,0.775,100.0,567.0,1992,1522,1062,12000,19424,4,0,1.000,17.2,16.0,16,0.0,0.0038,0,0
|
51,summer,875.5,656.0,400.0,493.0,305.0,1,4.7,0.734,100.0,554.2,11842,484,117,13887,9670,4,0,1.000,24.0,16.0,16,0.0,0.0084,0,0
|
||||||
52,summer,1495.0,410.0,384.0,776.0,86.0,0,0.0,0.912,100.0,554.0,3168,1341,994,12000,18497,4,0,1.000,17.2,16.0,16,0.0,0.0038,0,0
|
52,summer,921.5,656.0,400.0,486.0,241.0,0,5.2,0.873,100.0,539.4,10807,770,66,13842,10515,4,0,1.000,24.0,16.0,16,0.0,0.0085,0,0
|
||||||
53,summer,1484.5,410.0,388.0,762.0,106.5,0,0.0,0.820,100.0,576.0,3833,1669,937,12000,17561,4,0,1.000,17.2,16.0,16,0.0,0.0038,0,0
|
53,summer,924.5,656.0,400.0,496.0,267.0,8,4.8,0.773,100.0,560.5,10290,918,301,13543,10948,4,0,1.000,24.0,16.0,16,0.0,0.0087,0,0
|
||||||
54,summer,1506.5,410.0,391.0,776.0,42.0,0,0.0,0.728,100.0,566.0,2005,1576,1058,12000,19361,4,0,1.000,17.2,16.0,16,0.0,0.0039,0,0
|
54,summer,905.5,656.0,400.0,482.0,313.0,1,3.5,0.702,100.0,561.1,10037,979,224,13757,11003,4,0,1.000,24.0,16.0,16,0.0,0.0089,0,0
|
||||||
55,summer,1495.0,410.0,393.0,770.0,109.5,0,0.0,0.856,100.0,568.4,3878,1485,948,12000,17689,4,0,1.000,17.2,16.0,16,0.0,0.0041,0,0
|
55,summer,892.5,656.0,400.0,494.0,281.0,5,5.0,0.822,100.0,547.6,11633,718,195,13867,9587,4,0,1.000,24.0,16.0,16,0.0,0.0090,0,0
|
||||||
56,summer,1494.5,410.0,394.5,770.0,85.0,0,0.0,0.764,100.0,578.0,3455,1929,946,12000,17670,4,0,1.000,17.6,16.0,16,0.0,0.0042,0,0
|
56,summer,902.0,656.0,400.0,485.0,279.5,4,1.3,0.740,100.0,557.3,11779,503,155,13978,9585,4,0,1.000,24.0,16.0,16,0.0,0.0091,0,0
|
||||||
57,summer,1514.5,410.0,396.0,780.0,40.0,0,0.0,0.902,100.0,543.0,2172,1641,1034,12000,19153,4,0,1.000,17.6,16.0,16,0.0,0.0043,0,0
|
57,summer,888.0,656.0,400.0,481.0,298.0,0,2.9,0.869,100.0,533.8,11593,516,53,14232,9606,4,0,1.000,23.8,16.0,16,0.0,0.0093,0,0
|
||||||
58,summer,1504.0,410.0,397.0,764.0,106.5,0,0.0,0.810,100.0,567.0,3613,1485,967,12000,17935,4,0,1.000,17.6,16.0,16,0.0,0.0045,0,0
|
58,summer,909.0,656.0,400.0,482.0,258.0,7,2.5,0.778,100.0,557.3,11752,1048,143,13948,9109,4,0,1.000,23.0,16.0,16,0.0,0.0095,0,0
|
||||||
59,summer,1502.0,410.0,397.5,762.0,90.0,0,0.0,0.727,100.0,580.0,3304,1625,978,12000,18093,4,0,1.000,17.6,16.0,16,0.0,0.0047,0,0
|
59,summer,903.0,656.0,400.0,480.0,288.0,1,0.0,0.707,100.0,562.6,8856,1149,92,13566,12337,4,0,1.000,24.0,16.0,16,0.0,0.0098,0,0
|
||||||
60,autumn,1487.5,410.0,398.0,752.8,104.5,0,0.0,0.864,100.0,576.5,3946,1464,940,12000,17650,4,0,1.000,17.6,16.0,16,0.0,0.0048,0,0
|
60,autumn,916.5,656.0,400.0,454.0,260.5,10,3.1,0.816,100.0,543.1,9128,972,167,13697,12036,4,0,1.000,24.0,16.0,16,0.0,0.0099,0,0
|
||||||
61,autumn,1507.0,410.0,398.5,767.2,40.5,0,0.0,0.772,100.0,565.0,1914,1577,1061,12000,19448,4,0,1.000,17.1,16.0,16,0.0,0.0049,0,0
|
61,autumn,893.0,656.0,400.0,451.4,274.1,2,4.3,0.744,100.0,560.1,11794,493,140,13811,9762,4,0,1.000,24.0,16.0,16,0.0,0.0101,0,0
|
||||||
62,autumn,1503.0,410.0,399.0,758.0,90.0,0,0.0,0.909,100.0,556.0,3233,1266,1001,12000,18500,4,0,1.000,17.1,16.0,16,0.0,0.0051,0,0
|
62,autumn,881.5,656.0,400.0,452.8,258.1,0,4.9,0.853,100.0,528.5,12408,684,172,14243,8493,4,0,1.000,24.0,16.0,16,0.0,0.0102,0,0
|
||||||
63,autumn,1492.5,410.0,399.5,743.4,105.5,0,0.0,0.817,100.0,577.0,4204,1658,920,12000,17218,4,0,1.000,17.1,16.0,16,0.0,0.0052,0,0
|
63,autumn,876.0,656.0,400.0,446.2,260.1,0,3.8,0.781,100.0,544.7,12338,763,175,14099,8625,4,0,1.000,22.9,16.0,16,0.0,0.0104,0,0
|
||||||
64,autumn,1508.5,410.0,400.0,757.2,47.8,0,0.0,0.734,100.0,567.8,2153,1696,1040,12000,19111,4,0,1.000,17.1,16.0,16,0.0,0.0052,0,0
|
64,autumn,868.5,652.0,400.0,460.6,245.1,1,0.0,0.699,100.0,557.7,11703,818,85,14097,9297,4,0,1.000,24.0,16.0,16,0.0,0.0106,0,0
|
||||||
65,autumn,1498.5,410.0,400.0,747.4,107.4,0,0.0,0.851,100.0,568.3,3547,1482,971,12000,18000,4,0,1.000,17.1,16.0,16,0.0,0.0053,0,0
|
65,autumn,904.0,652.0,400.0,465.4,207.7,1,5.9,0.817,100.0,543.2,12532,1019,135,14186,8128,4,0,1.000,24.0,16.0,16,0.0,0.0107,0,0
|
||||||
66,autumn,1498.0,410.0,400.0,746.0,83.9,0,0.0,0.778,100.0,577.6,3234,1846,970,12000,17950,4,0,1.000,17.1,16.0,16,0.0,0.0055,0,0
|
66,autumn,886.0,652.0,400.0,457.0,274.4,1,1.8,0.745,100.0,550.6,11015,726,87,13833,10339,4,0,1.000,24.0,16.0,16,0.0,0.0109,0,0
|
||||||
67,autumn,1512.0,410.0,400.0,759.6,48.0,0,0.0,0.895,100.0,548.6,2284,1535,1033,12000,19148,4,0,1.000,17.1,16.0,16,0.0,0.0056,0,0
|
67,autumn,889.5,652.0,400.0,461.4,240.1,0,6.0,0.853,100.0,530.3,11898,737,58,14238,9069,4,0,1.000,24.0,16.0,16,0.0,0.0109,0,0
|
||||||
68,autumn,1502.0,410.0,400.0,747.8,107.6,0,0.0,0.822,100.0,570.2,3676,1364,966,12000,17994,4,0,1.000,17.1,16.0,16,0.0,0.0057,0,0
|
68,autumn,941.0,652.0,400.0,457.6,200.3,3,1.1,0.791,100.0,543.9,13144,836,499,14456,7065,4,0,1.000,24.0,16.0,16,0.0,0.0111,0,0
|
||||||
69,autumn,1499.5,410.0,400.0,753.6,80.3,0,0.0,0.719,100.0,579.0,3435,1539,974,12000,18052,4,0,1.000,17.1,16.0,16,0.0,0.0057,0,0
|
69,autumn,918.5,652.0,400.0,452.6,275.5,0,2.6,0.689,100.0,557.6,11483,1102,294,14058,9063,4,0,1.000,24.0,16.0,16,0.0,0.0113,0,0
|
||||||
70,autumn,1489.5,410.0,400.0,744.6,108.4,0,0.0,0.866,100.0,579.1,3968,1439,955,12000,17638,4,0,1.000,17.1,16.0,16,0.0,0.0058,0,0
|
70,autumn,901.0,652.0,400.0,456.0,262.1,0,2.1,0.827,100.0,539.1,11291,734,226,13915,9834,4,0,1.000,24.0,16.0,16,0.0,0.0115,0,0
|
||||||
71,autumn,1506.0,410.0,400.0,753.4,50.4,0,0.0,0.763,100.0,572.8,2026,1796,1041,12000,19137,4,0,1.000,16.9,16.0,16,0.0,0.0058,0,0
|
71,autumn,955.0,652.0,400.0,458.0,192.0,11,0.1,0.744,100.0,528.7,12213,268,157,13954,9408,4,0,1.000,24.0,16.0,16,0.0,0.0115,0,0
|
||||||
72,autumn,1507.5,410.0,400.0,749.2,81.1,0,0.0,0.909,100.0,559.4,2895,1287,1022,12000,18796,4,0,1.000,17.4,16.0,16,0.0,0.0059,0,0
|
72,autumn,928.0,652.0,400.0,457.4,275.6,0,6.5,0.862,100.0,532.4,12201,956,102,14223,8518,4,0,1.000,24.0,16.0,16,0.0,0.0116,0,0
|
||||||
73,autumn,1495.5,410.0,400.0,738.8,104.2,0,0.0,0.807,100.0,580.6,3861,1538,946,12000,17655,4,0,1.000,16.9,16.0,16,0.0,0.0060,0,0
|
73,autumn,931.0,652.0,400.0,452.6,249.8,6,2.6,0.779,100.0,544.9,12071,616,282,14296,8735,4,0,1.000,24.0,16.0,16,0.0,0.0117,0,0
|
||||||
74,autumn,1509.5,410.0,400.0,748.8,49.2,0,0.0,0.733,100.0,571.8,2090,2020,1025,12000,18865,4,0,1.000,16.9,16.0,16,0.0,0.0061,0,0
|
74,autumn,878.0,652.0,400.0,460.0,293.6,0,0.0,0.688,100.0,543.8,11362,361,170,13820,10287,4,0,1.000,24.0,16.0,16,0.0,0.0119,0,0
|
||||||
75,autumn,1494.5,410.0,400.0,736.6,111.2,0,0.0,0.850,100.0,577.8,4026,1250,955,12000,17769,4,0,1.000,16.9,16.0,16,0.0,0.0062,0,0
|
75,autumn,895.5,652.0,400.0,453.4,237.1,13,6.3,0.825,100.0,539.4,13473,770,493,14179,7085,4,0,1.000,24.0,16.0,16,0.0,0.0120,0,0
|
||||||
76,autumn,1498.5,410.0,400.0,749.0,72.8,0,0.0,0.776,100.0,579.8,2785,1869,996,12000,18350,4,0,1.000,17.6,16.0,16,0.0,0.0064,0,0
|
76,autumn,887.0,652.0,400.0,455.6,254.3,4,3.4,0.742,100.0,550.2,12696,1149,166,14302,7687,4,0,1.000,24.0,16.0,16,0.0,0.0122,0,0
|
||||||
77,autumn,1504.5,410.0,400.0,760.2,62.0,0,0.0,0.893,100.0,556.8,2746,1865,987,12000,18402,4,0,1.000,17.6,16.0,16,0.0,0.0064,0,0
|
77,autumn,884.5,650.0,400.0,467.0,241.1,11,7.6,0.859,100.0,529.2,12819,648,397,14391,7745,4,0,1.000,24.0,16.0,16,0.0,0.0122,0,0
|
||||||
78,autumn,1490.5,410.0,400.0,750.8,110.0,0,0.0,0.819,100.0,578.8,3641,1633,953,12000,17773,4,0,1.000,17.6,16.0,16,0.0,0.0064,0,0
|
78,autumn,923.0,650.0,400.0,457.8,218.7,4,0.5,0.786,100.0,541.7,10071,709,275,13366,11579,4,0,1.000,24.0,16.0,16,0.0,0.0123,0,0
|
||||||
79,autumn,1498.5,410.0,400.0,755.6,63.0,0,0.0,0.726,100.0,577.8,2420,1602,1029,12000,18949,4,0,1.000,17.6,16.0,16,0.0,0.0064,0,0
|
79,autumn,915.5,650.0,400.0,454.6,258.7,1,2.5,0.703,100.0,546.6,11528,900,121,13807,9644,4,0,1.000,24.0,16.0,16,0.0,0.0124,0,0
|
||||||
80,autumn,1486.5,410.0,400.0,742.8,108.8,0,0.0,0.862,100.0,577.7,3827,1638,944,12000,17591,4,0,1.000,17.6,16.0,16,0.0,0.0065,0,0
|
80,autumn,927.5,650.0,400.0,458.6,232.0,0,0.0,0.811,100.0,538.1,9008,805,50,13088,13049,4,0,1.000,24.0,16.0,16,0.0,0.0126,0,0
|
||||||
81,autumn,1492.5,410.0,400.0,746.2,69.8,0,0.0,0.769,100.0,579.4,3115,1549,993,12000,18343,4,0,1.000,17.8,16.0,16,0.0,0.0066,0,0
|
81,autumn,945.0,650.0,400.0,457.2,231.9,0,1.1,0.738,100.0,549.5,11830,577,180,14046,9367,4,0,1.000,24.0,16.0,16,0.0,0.0127,0,0
|
||||||
82,autumn,1498.5,410.0,400.0,752.8,68.0,0,0.0,0.905,100.0,558.4,2441,1392,1037,12000,19130,4,0,1.000,17.8,16.0,16,0.0,0.0066,0,0
|
82,autumn,932.5,650.0,400.0,466.8,250.9,0,3.7,0.864,100.0,537.0,11171,1052,190,13931,9656,4,0,1.000,24.0,16.0,16,0.0,0.0130,0,0
|
||||||
83,autumn,1486.5,410.0,400.0,744.0,108.0,0,0.0,0.812,100.0,580.4,3838,1478,951,12000,17733,4,0,1.000,17.8,16.0,16,0.0,0.0067,0,0
|
83,autumn,884.5,650.0,400.0,449.8,313.0,1,0.6,0.791,100.0,545.4,10387,1087,421,13656,10449,4,0,1.000,24.0,16.0,16,0.0,0.0131,0,0
|
||||||
84,autumn,1496.5,410.0,400.0,750.4,61.2,0,0.0,0.728,100.0,578.6,2656,1548,1020,12000,18776,4,0,1.000,17.8,16.0,16,0.0,0.0067,0,0
|
84,autumn,885.0,642.0,400.0,444.0,261.3,0,0.3,0.698,100.0,557.6,12026,1055,64,14175,8680,4,0,1.000,24.0,16.0,16,0.0,0.0133,0,0
|
||||||
85,autumn,1486.0,410.0,400.0,742.6,104.3,0,0.0,0.864,100.0,576.0,3654,1308,972,12000,18066,4,0,1.000,17.8,16.0,16,0.0,0.0068,0,0
|
85,autumn,896.5,642.0,400.0,451.4,229.1,9,0.7,0.824,100.0,539.8,11021,866,255,14019,9839,4,0,1.000,24.0,16.0,16,0.0,0.0135,0,0
|
||||||
86,autumn,1486.5,410.0,400.0,744.8,78.1,0,0.0,0.771,100.0,582.0,3004,1359,1009,12000,18628,4,0,1.000,18.3,16.0,16,0.0,0.0069,0,0
|
86,autumn,875.5,642.0,400.0,449.6,270.8,0,5.0,0.741,100.0,554.4,11926,959,81,14155,8879,4,0,1.000,24.0,16.0,16,0.0,0.0138,0,0
|
||||||
87,autumn,1496.5,410.0,400.0,752.0,57.2,0,0.0,0.907,100.0,556.2,2516,1697,1012,12000,18775,4,0,1.000,18.3,16.0,16,0.0,0.0069,0,0
|
87,autumn,883.5,642.0,400.0,460.8,228.8,2,1.2,0.857,100.0,539.4,11272,558,173,14323,9674,4,0,1.000,24.0,16.0,16,0.0,0.0140,0,0
|
||||||
88,autumn,1484.5,410.0,400.0,738.4,106.4,0,0.0,0.823,100.0,577.6,3815,1427,957,12000,17801,4,0,1.000,18.3,16.0,16,0.0,0.0070,0,0
|
88,autumn,898.0,642.0,400.0,453.2,241.1,1,0.0,0.783,100.0,546.2,10864,593,380,13985,10178,4,0,1.000,24.0,16.0,16,0.0,0.0142,0,0
|
||||||
89,autumn,1487.5,410.0,400.0,740.8,69.0,0,0.0,0.729,100.0,579.6,2765,1522,1015,12000,18698,4,0,1.000,18.3,16.0,16,0.0,0.0072,0,0
|
89,autumn,888.5,642.0,400.0,454.2,256.5,2,2.5,0.699,100.0,559.7,11938,587,92,14228,9155,4,0,1.000,24.0,16.0,16,0.0,0.0145,0,0
|
||||||
90,winter,1445.9,410.0,400.0,641.3,111.2,0,0.0,0.865,100.0,581.9,3954,1505,944,12000,17597,4,0,1.000,18.3,16.0,16,0.0,0.0073,0,0
|
90,winter,831.5,642.0,400.0,300.6,236.0,1,0.8,0.834,100.0,540.8,11836,581,263,14113,9207,4,0,1.000,24.0,16.0,16,0.0,0.0146,0,0
|
||||||
91,winter,1430.3,410.0,400.0,575.3,59.5,0,0.0,0.771,100.0,578.9,3049,1831,977,12000,18143,4,0,1.000,18.0,16.0,16,0.0,0.0074,0,0
|
91,winter,833.7,618.0,400.0,275.8,73.8,0,0.0,0.711,100.0,530.1,2807,254,145,12000,20794,4,0,1.000,24.0,16.0,16,0.0,0.0148,0,0
|
||||||
92,winter,1418.7,410.0,400.0,508.2,62.3,0,0.0,0.907,100.0,558.9,3513,1566,964,12000,17957,4,0,1.000,14.8,16.0,16,0.0,0.0077,0,0
|
92,winter,851.0,618.0,400.0,251.1,38.0,0,0.0,0.626,100.0,510.7,6389,1223,182,12566,15640,4,0,1.000,24.0,16.0,16,0.0,0.0152,0,0
|
||||||
93,winter,1388.7,410.0,400.0,424.5,106.8,0,0.5,0.813,100.0,586.3,6181,2002,785,12000,15032,4,0,1.000,14.4,16.0,16,0.0,0.0080,0,0
|
93,winter,870.4,618.0,400.0,228.5,36.5,0,0.0,0.410,100.0,516.9,8989,980,204,13311,12516,4,0,1.000,24.0,16.0,16,0.0,0.0236,30,0
|
||||||
94,winter,1381.8,410.0,400.0,376.0,53.0,0,0.0,0.729,100.0,580.1,3210,1964,960,12000,17866,4,0,1.000,14.6,16.0,16,0.0,0.0081,0,0
|
94,winter,907.7,618.0,400.0,210.7,14.7,0,0.0,0.283,100.0,504.6,11673,665,200,14002,9460,4,0,1.000,24.0,16.0,16,0.0,0.0276,14,0
|
||||||
95,winter,1348.6,410.0,400.0,320.3,93.5,0,0.0,0.854,100.0,569.5,6652,2004,729,12471,14144,4,0,1.000,15.4,16.0,16,0.0,0.0084,0,0
|
95,winter,801.2,496.0,400.0,192.8,282.3,0,0.9,0.204,100.0,562.1,9908,840,391,13633,11228,4,0,1.000,18.8,16.0,16,0.0,0.0397,52,0
|
||||||
96,winter,1329.1,410.0,400.0,265.5,82.4,0,1.3,0.770,100.0,578.6,7599,1788,680,12567,13366,4,0,1.000,15.2,16.0,16,0.0,0.0086,0,0
|
96,winter,815.6,496.0,400.0,175.0,42.1,0,0.7,0.138,100.0,567.6,2279,1469,1002,12162,19088,4,0,0.950,12.0,16.0,16,0.0,0.0400,6,0
|
||||||
97,winter,1132.6,410.0,400.0,237.6,244.3,0,1.3,0.905,100.0,553.7,7060,2104,683,12687,13466,4,0,1.000,17.9,16.0,16,0.0,0.0090,0,0
|
97,winter,813.9,496.0,400.0,160.7,55.7,0,0.9,0.106,100.0,574.6,2543,1026,1020,12190,19221,4,0,0.900,4.0,16.0,16,0.0,0.0400,6,0
|
||||||
98,winter,788.8,410.0,271.5,219.3,527.8,0,2.0,0.820,100.0,548.4,14151,780,252,14139,6678,4,0,1.000,16.2,16.0,16,0.0,0.0092,0,0
|
98,winter,826.1,496.0,400.0,148.5,43.0,0,1.4,0.103,100.0,577.8,3024,1020,1020,12324,18612,4,0,0.800,0.0,16.0,16,0.0,0.0400,0,0
|
||||||
99,winter,799.3,410.0,180.5,204.0,137.2,0,5.0,0.725,100.0,535.3,11480,641,14,13488,10377,4,0,1.000,9.8,16.0,16,0.0,0.0094,0,0
|
99,winter,832.9,496.0,400.0,139.8,46.4,0,1.5,0.102,100.0,571.4,3161,1020,1020,12316,18483,4,0,0.700,0.0,16.0,16,0.0,0.0400,0,0
|
||||||
100,winter,786.9,410.0,181.5,188.4,69.5,0,5.9,0.860,100.0,497.3,9013,63,3,13597,13324,4,0,0.950,7.8,16.0,16,0.0,0.0097,0,0
|
100,winter,832.5,496.0,400.0,131.6,55.9,0,1.4,0.096,100.0,573.8,3287,1020,1020,12324,18349,4,0,0.600,0.0,16.0,16,0.0,0.0400,0,0
|
||||||
101,winter,798.8,410.0,178.5,174.7,48.1,0,0.0,0.764,100.0,488.0,6563,363,3,12760,16311,4,0,0.900,11.5,16.0,16,0.0,0.0099,0,0
|
101,winter,808.4,496.0,400.0,125.7,77.3,0,0.7,0.090,100.0,567.6,3168,1026,1020,12307,18479,4,0,0.500,0.0,16.0,16,0.0,0.0400,0,0
|
||||||
102,winter,783.6,410.0,183.5,163.4,66.5,0,0.0,0.908,100.0,455.7,8003,58,0,13614,14325,4,0,0.850,12.0,16.0,16,0.0,0.0102,0,0
|
102,winter,814.0,496.0,400.0,121.5,48.2,0,1.4,0.101,100.0,568.8,3195,1020,1020,12324,18441,4,0,0.400,0.0,16.0,16,0.0,0.0400,0,0
|
||||||
103,winter,796.4,410.0,186.5,152.9,41.2,0,3.6,0.803,100.0,445.0,8547,470,0,13549,13434,4,0,0.800,12.0,16.0,16,0.0,0.0104,0,0
|
103,winter,822.8,496.0,400.0,120.3,44.8,0,1.4,0.103,100.0,565.9,3417,1026,1020,12306,18231,4,0,0.300,0.0,16.0,16,0.0,0.0400,0,0
|
||||||
104,winter,785.2,410.0,189.5,142.4,68.8,0,2.6,0.727,100.0,432.3,9065,88,0,13589,13258,4,0,0.750,12.0,16.0,16,0.0,0.0108,0,0
|
104,winter,835.6,496.0,400.0,120.0,36.5,0,1.5,0.097,100.0,556.3,3445,1121,1015,12309,18110,4,0,0.200,0.0,16.0,16,0.0,0.0400,0,0
|
||||||
105,winter,798.0,410.0,184.5,136.0,47.2,0,6.3,0.871,100.0,398.9,8819,192,0,13486,13503,4,0,0.700,12.0,16.0,16,0.0,0.0109,0,0
|
105,winter,814.8,496.0,400.0,120.0,68.8,0,0.8,0.091,100.0,556.9,2787,1027,1020,12324,18842,2,2,0.200,0.0,8.0,8,0.0,0.0400,0,0
|
||||||
106,winter,786.8,410.0,189.5,130.9,64.5,0,1.0,0.765,100.0,398.4,8554,580,0,13611,13255,4,0,0.650,12.0,16.0,16,0.0,0.0112,0,0
|
106,winter,821.2,496.0,400.0,120.0,41.6,0,1.4,0.085,100.0,545.9,2805,1020,1020,12306,18849,2,2,0.100,0.0,8.0,8,0.0,0.0400,0,0
|
||||||
107,winter,797.6,410.0,176.5,124.9,62.7,0,5.8,0.909,100.0,367.4,11468,93,0,13495,10944,4,0,0.600,12.0,16.0,16,0.0,0.0116,0,0
|
107,winter,832.0,496.0,400.0,120.0,37.2,0,1.4,0.104,100.0,536.3,2787,1020,1020,12324,18849,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,0
|
||||||
108,winter,789.6,410.0,181.5,122.2,59.0,0,5.0,0.803,100.0,354.8,8402,131,0,13338,14129,4,0,0.550,12.0,16.0,16,0.0,0.0117,0,0
|
108,winter,828.4,496.0,400.0,120.0,51.6,0,1.4,0.098,100.0,534.3,2787,1020,1020,12324,18849,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,0
|
||||||
109,winter,796.8,410.0,180.5,120.8,50.4,0,1.1,0.726,100.0,352.3,7486,112,0,13110,15292,2,2,1.000,12.0,8.0,8,0.0,0.0119,0,0
|
109,winter,829.6,486.0,400.0,120.0,56.8,0,1.4,0.092,100.0,526.0,2847,1238,1002,12324,18589,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,1
|
||||||
110,winter,801.6,410.0,185.5,120.0,47.0,0,0.8,0.809,100.0,291.8,7670,86,0,12162,16082,2,2,1.000,12.0,8.0,8,0.0,0.0121,0,0
|
110,winter,814.8,486.0,400.0,120.0,62.8,0,1.9,0.086,100.0,514.3,3469,1213,956,12486,17876,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,2
|
||||||
111,winter,794.4,410.0,188.5,120.0,57.2,0,0.9,0.630,100.0,283.1,5881,229,0,12723,17167,2,2,1.000,12.0,8.0,8,0.0,0.0169,18,0
|
111,winter,771.6,486.0,400.0,120.0,91.2,0,2.2,0.064,100.0,548.3,3658,969,969,12486,17918,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,2
|
||||||
112,winter,801.6,410.0,193.5,120.0,40.8,0,0.7,0.391,100.0,286.4,11355,269,0,13698,10678,2,2,1.000,12.0,8.0,8,0.0,0.0169,0,0
|
112,winter,759.2,486.0,400.0,120.0,60.4,0,2.2,0.008,100.0,565.7,3670,969,969,12486,17906,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,2
|
||||||
113,winter,814.4,410.0,198.5,120.0,35.2,0,2.8,0.168,100.0,285.7,16165,0,0,14872,4963,2,2,1.000,4.0,8.0,8,0.0,0.0169,0,0
|
113,winter,763.2,486.0,400.0,120.0,44.0,0,2.2,0.000,100.0,566.8,3534,969,969,12486,18042,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,2
|
||||||
114,winter,796.4,410.0,203.5,120.0,66.0,0,7.3,0.102,100.0,294.3,8842,0,0,13613,13545,2,2,0.900,0.0,8.0,8,0.0,0.0169,0,0
|
114,winter,766.0,486.0,400.0,120.0,45.2,0,2.2,0.000,100.0,565.4,3534,969,969,12486,18042,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,2
|
||||||
115,winter,801.5,410.0,194.5,120.0,56.9,0,7.2,0.064,100.0,309.9,16477,0,0,15487,4036,2,2,0.800,0.0,8.0,8,0.0,0.0173,0,0
|
115,winter,777.6,486.0,400.0,120.0,36.4,0,2.2,0.000,100.0,568.6,3534,969,969,12486,18042,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,2
|
||||||
116,winter,794.3,410.0,193.5,120.0,61.2,0,7.2,0.016,100.0,320.7,11735,0,0,13620,10645,2,2,0.700,0.0,8.0,8,0.0,0.0180,0,0
|
116,winter,784.4,486.0,400.0,120.0,41.2,0,2.2,0.000,100.0,568.3,3534,969,969,12486,18042,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,2
|
||||||
117,winter,784.0,410.0,196.5,120.0,60.3,0,7.5,0.000,100.0,330.5,12078,0,0,13578,10344,2,2,0.600,0.0,8.0,8,0.0,0.0180,0,0
|
117,winter,788.0,486.0,400.0,120.0,44.4,0,2.2,0.000,100.0,565.0,3534,969,969,12486,18042,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,2
|
||||||
118,winter,779.3,410.0,201.5,120.0,52.7,0,7.4,0.000,100.0,352.2,8875,0,0,13580,13545,2,2,0.500,0.0,8.0,8,0.0,0.0180,0,0
|
118,winter,781.2,486.0,400.0,120.0,54.8,0,2.2,0.000,100.0,567.3,3534,969,969,12486,18042,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,2
|
||||||
119,winter,782.9,410.0,190.5,120.0,60.4,0,4.5,0.000,100.0,341.5,14225,0,0,14508,7267,2,2,0.400,0.0,8.0,8,0.0,0.0180,0,0
|
119,winter,799.2,486.0,400.0,120.0,30.0,0,2.2,0.000,100.0,567.8,3534,969,969,12486,18042,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,2
|
||||||
120,spring,886.3,410.0,189.5,360.0,46.6,0,7.7,0.000,100.0,357.8,13279,0,0,13571,9150,2,2,0.300,0.0,8.0,8,0.0,0.0180,0,0
|
120,spring,901.2,486.0,400.0,360.0,42.0,0,2.2,0.000,100.0,562.4,3534,969,969,12486,18042,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,2
|
||||||
121,spring,929.2,410.0,194.5,600.0,101.1,0,16.4,0.000,100.0,388.4,17812,0,0,15479,2709,2,2,0.200,0.0,8.0,8,0.0,0.0180,0,0
|
121,spring,971.2,486.0,400.0,600.0,74.0,0,2.2,0.000,100.0,568.0,3534,969,969,12486,18042,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,2
|
||||||
122,spring,1061.6,410.0,199.5,616.0,229.6,6,11.2,0.568,100.0,417.9,16118,950,540,15491,2901,2,2,0.250,12.0,8.0,8,0.0,0.0180,0,1
|
122,spring,1079.2,476.0,400.0,764.0,89.0,0,0.0,0.089,100.0,580.3,2234,2026,969,12425,18346,1,4,1.000,8.0,2.0,0,0.0,0.0400,0,1
|
||||||
123,spring,1205.6,410.0,204.5,617.0,207.0,15,9.2,0.824,100.0,483.8,14158,1669,1856,15240,3077,2,2,0.300,4.0,8.0,8,0.0,0.0180,0,2
|
123,spring,1223.2,476.0,400.0,794.0,6.0,0,0.0,0.107,100.0,580.3,1317,1143,969,12000,20571,1,4,1.000,6.0,2.0,0,0.0,0.0400,0,1
|
||||||
124,spring,1349.6,410.0,209.5,662.0,159.0,3,4.3,0.800,100.0,558.3,7267,3749,1899,13295,9790,2,2,0.200,0.0,8.0,8,0.0,0.0180,0,2
|
124,spring,1348.8,476.0,400.0,788.0,36.4,0,0.0,0.095,100.0,579.3,1586,1371,969,12000,20074,1,4,1.000,7.5,2.5,1,0.0,0.0400,0,1
|
||||||
125,spring,1493.6,410.0,214.5,746.0,80.0,3,0.0,0.879,100.0,579.5,2316,4145,1784,12162,15593,2,2,0.100,0.0,8.0,8,0.0,0.0180,0,2
|
125,spring,1492.8,476.0,400.0,794.0,6.0,0,0.0,0.113,100.0,579.3,1317,1143,969,12000,20571,1,4,1.000,5.0,2.5,1,0.0,0.0400,0,1
|
||||||
126,spring,1637.6,410.0,219.5,775.0,42.0,3,0.0,0.858,100.0,587.5,1231,5899,3461,12000,13409,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
126,spring,1609.2,476.0,400.0,788.0,42.4,0,0.0,0.101,100.0,580.4,1635,1405,969,12000,19991,1,4,1.000,7.0,3.0,2,0.0,0.0400,0,1
|
||||||
127,spring,1763.5,410.0,224.5,787.0,28.0,0,0.0,0.768,100.0,588.5,1311,3087,1006,12000,18596,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
127,spring,1715.6,476.0,400.0,796.0,4.0,0,0.0,0.089,100.0,581.4,1312,1139,969,12000,20580,1,4,1.000,4.0,3.0,2,0.0,0.0400,0,1
|
||||||
128,spring,1794.7,410.0,229.5,780.0,44.0,3,0.2,0.868,100.0,586.5,1097,5670,5448,12000,11785,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
128,spring,1733.6,476.0,400.0,788.0,42.4,0,0.0,0.107,100.0,580.0,1603,1384,969,12000,20044,1,4,1.000,6.5,3.5,3,0.0,0.0400,0,1
|
||||||
129,spring,1800.0,410.0,234.5,776.0,40.0,0,0.0,0.808,100.0,596.5,1691,1440,1077,12000,19792,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
129,spring,1707.6,476.0,359.0,776.0,131.6,10,0.0,0.127,100.0,575.8,2549,1870,1189,12246,18146,1,4,1.000,6.0,4.0,4,5.0,0.0400,0,1
|
||||||
130,spring,1800.0,410.0,239.5,786.0,22.0,3,0.0,0.887,100.0,574.5,865,5478,5490,12000,12167,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
130,spring,1724.4,476.0,360.0,752.0,76.4,46,0.0,0.141,100.0,564.4,2594,1797,976,12425,18208,1,4,1.000,6.0,4.0,4,73.7,0.0400,0,1
|
||||||
131,spring,1800.0,410.0,244.5,778.0,42.0,1,0.0,0.857,100.0,583.5,1493,2557,3017,12000,16933,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
131,spring,1737.2,476.0,361.0,754.0,56.4,7,0.0,0.135,100.0,574.1,2054,1449,1017,12131,19349,1,4,1.000,4.0,4.0,4,111.7,0.0400,0,1
|
||||||
132,spring,1800.0,410.0,249.5,774.0,40.0,2,0.0,0.767,100.0,596.5,1386,3896,2889,12000,15829,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
132,spring,1745.6,476.0,362.0,758.0,52.0,13,0.0,0.119,100.0,573.8,1753,1391,968,12132,19756,1,4,1.000,6.0,4.0,4,146.7,0.0400,0,1
|
||||||
133,spring,1800.0,410.0,254.5,772.0,42.0,2,2.2,0.867,100.0,592.5,1353,5116,4854,12018,12659,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
133,spring,1712.4,468.0,363.0,764.0,105.6,0,0.0,0.174,100.0,579.5,2688,2220,898,12282,17912,2,4,1.000,13.5,6.5,5,150.0,0.0400,0,1
|
||||||
134,spring,1800.0,410.0,259.5,782.0,26.0,1,0.0,0.807,100.0,588.5,1253,3183,3033,12000,16531,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
134,spring,1710.0,468.0,364.0,772.0,55.2,43,0.0,0.164,100.0,579.2,1879,1884,935,12052,19250,2,4,1.000,11.0,7.0,6,150.0,0.0400,0,1
|
||||||
135,spring,1800.0,410.0,264.5,778.0,38.0,3,0.0,0.886,100.0,582.5,1051,5606,5479,12000,11864,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
135,spring,1700.4,466.0,365.0,776.0,55.6,5,0.0,0.174,100.0,578.4,1953,1887,912,12060,19188,2,4,1.000,12.5,7.5,7,150.0,0.0400,0,1
|
||||||
136,spring,1800.0,410.0,269.5,776.0,38.0,1,0.0,0.856,100.0,587.5,1539,1584,2824,12000,18053,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
136,spring,1683.2,466.0,333.5,772.0,108.2,20,0.4,0.164,100.0,576.4,3209,2487,902,12401,17001,2,4,1.000,12.0,8.0,8,150.0,0.0400,0,1
|
||||||
137,spring,1800.0,410.0,274.5,780.0,32.0,2,0.0,0.766,100.0,592.5,1056,5629,4003,12162,13150,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
137,spring,1693.2,466.0,335.0,758.0,82.0,39,0.2,0.154,100.0,576.0,2356,1766,971,12268,18639,2,4,1.000,12.0,8.0,8,200.8,0.0400,0,1
|
||||||
138,spring,1800.0,410.0,279.5,782.0,30.0,2,0.0,0.866,100.0,576.5,1124,3955,4942,12000,13979,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
138,spring,1701.2,466.0,336.5,752.0,71.6,37,0.0,0.174,100.0,572.5,2613,1798,948,12254,18387,2,4,1.000,12.0,8.0,8,247.1,0.0400,0,1
|
||||||
139,spring,1800.0,410.0,284.5,774.0,46.0,1,0.0,0.815,100.0,591.5,1457,3910,2490,12000,16143,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
139,spring,1676.8,466.0,338.0,741.0,136.6,27,0.0,0.196,100.0,552.9,3045,2932,1496,12520,16007,3,4,1.000,20.0,10.0,8,278.1,0.0400,0,1
|
||||||
140,spring,1800.0,410.0,289.5,780.0,26.0,2,0.0,0.885,100.0,574.5,996,4958,4879,12000,13167,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
140,spring,1661.8,466.0,339.5,738.0,115.6,1,0.0,0.212,100.0,569.6,2852,2660,878,12504,17106,3,4,1.000,19.5,10.5,9,300.0,0.0400,0,1
|
||||||
141,spring,1800.0,410.0,294.5,774.0,44.0,1,0.0,0.855,100.0,585.5,1490,3142,3235,12000,16133,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
141,spring,1643.4,466.0,341.0,754.0,97.2,48,0.0,0.198,100.0,577.1,2456,2558,950,12051,17985,4,4,1.000,24.5,13.5,11,300.0,0.0400,0,0
|
||||||
142,spring,1800.0,410.0,299.5,776.0,40.0,3,0.0,0.765,100.0,598.5,1261,5753,5370,12000,11616,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
142,spring,1641.5,466.0,294.5,767.0,123.5,97,0.3,0.249,100.0,563.6,3941,2418,985,12669,15987,4,4,1.000,24.3,14.0,12,300.0,0.0400,0,1
|
||||||
143,spring,1800.0,410.0,304.5,776.0,42.0,1,0.0,0.874,100.0,593.5,1649,3450,2953,12000,15948,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
143,spring,1628.7,466.0,297.0,747.0,125.2,112,0.6,0.267,100.0,581.0,3219,2102,957,12184,17538,4,4,1.000,24.3,14.0,12,327.5,0.0400,0,0
|
||||||
144,spring,1800.0,410.0,309.5,784.0,26.0,2,0.0,0.805,100.0,590.5,1048,5011,4941,12000,13000,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
144,spring,1629.2,466.0,299.5,739.0,113.5,136,0.0,0.265,100.0,579.8,3351,1898,1092,12318,17341,4,4,1.000,24.0,14.0,12,369.8,0.0400,0,0
|
||||||
145,spring,1800.0,410.0,314.5,782.0,34.0,2,0.0,0.884,100.0,580.5,1111,5002,4894,12000,12993,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
145,spring,1650.8,466.0,302.0,746.0,72.2,147,0.0,0.273,100.0,563.0,2535,1652,953,12255,18605,4,4,1.000,21.6,14.0,12,417.8,0.0400,0,0
|
||||||
146,spring,1800.0,410.0,319.5,776.0,42.0,1,0.0,0.863,100.0,588.5,1466,3306,2966,12000,16262,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
146,spring,1638.0,466.0,304.5,746.0,104.0,101,0.0,0.271,100.0,567.0,3053,2006,1183,12266,17492,4,4,1.000,26.0,14.0,12,450.0,0.0400,0,1
|
||||||
147,spring,1800.0,410.0,324.5,782.0,28.0,2,0.0,0.764,100.0,590.5,1058,4785,4666,12000,13491,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
147,spring,1668.4,444.0,276.0,782.0,82.0,111,0.7,0.249,100.0,572.4,3627,3411,2618,12620,13724,4,4,1.000,12.0,14.0,12,450.0,0.0400,0,1
|
||||||
148,spring,1800.0,410.0,329.5,774.0,44.0,2,0.0,0.863,100.0,588.5,1274,5108,4878,12000,12740,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
148,spring,1659.5,444.0,263.5,768.0,118.9,99,0.1,0.267,100.0,574.0,2890,4199,909,12779,15223,4,4,1.000,22.3,14.0,12,450.0,0.0400,0,0
|
||||||
149,spring,1800.0,410.0,334.5,774.0,36.0,2,0.0,0.813,100.0,593.5,1237,3737,4941,12000,14085,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
149,spring,1669.1,444.0,267.0,774.0,50.0,162,0.0,0.265,100.0,581.5,2046,1397,991,12000,19566,4,4,1.000,21.5,14.0,12,450.0,0.0400,0,0
|
||||||
150,summer,1800.0,410.0,339.5,774.0,24.0,2,0.0,0.882,100.0,574.5,975,4710,4822,12000,13493,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
150,summer,1687.1,444.0,270.5,712.0,116.0,141,0.0,0.273,100.0,579.7,2549,2201,975,12449,17826,4,4,1.000,25.1,14.0,12,506.6,0.0400,0,0
|
||||||
151,summer,1800.0,410.0,344.5,762.0,48.0,1,0.0,0.852,100.0,589.5,1706,4613,2876,12000,14805,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
151,summer,1691.2,444.0,274.0,713.0,64.1,168,0.0,0.271,100.0,572.3,2133,1761,1058,12155,18893,4,4,1.000,21.3,14.0,12,529.6,0.0400,0,0
|
||||||
152,summer,1800.0,410.0,349.5,764.0,32.0,2,0.0,0.762,100.0,594.5,1308,5158,4874,12000,12660,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
152,summer,1699.2,444.0,277.5,709.0,68.0,118,0.0,0.249,100.0,576.2,2359,2013,1087,12207,18334,4,4,1.000,23.3,14.0,12,557.9,0.0400,0,0
|
||||||
153,summer,1800.0,410.0,354.5,752.0,44.0,2,0.0,0.872,100.0,591.5,1489,5223,4844,12000,12444,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
153,summer,1702.8,444.0,281.0,711.0,65.6,146,0.0,0.267,100.0,576.0,2819,1637,1046,12135,18363,4,4,1.000,21.3,14.0,12,570.9,0.0400,0,0
|
||||||
154,summer,1800.0,410.0,359.5,756.0,28.0,1,0.0,0.811,100.0,589.5,1353,3369,2959,12000,16319,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
154,summer,1709.6,444.0,284.5,700.0,77.0,131,0.0,0.265,100.0,580.4,2903,1814,1250,12285,17748,4,4,1.000,24.0,14.0,12,597.9,0.0400,0,0
|
||||||
155,summer,1800.0,410.0,364.5,754.0,34.0,2,0.0,0.891,100.0,579.5,1395,4841,4567,12162,13035,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
155,summer,1701.6,444.0,253.5,677.0,157.5,134,1.1,0.307,100.0,559.8,4532,2478,1729,12751,14510,4,4,1.000,22.0,14.0,12,600.0,0.0400,0,1
|
||||||
156,summer,1800.0,410.0,369.5,748.0,42.0,1,0.0,0.851,100.0,589.5,1672,3299,3456,12000,15573,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
156,summer,1669.5,444.0,233.0,690.0,137.6,93,0.4,0.301,100.0,572.9,4406,2952,947,12794,14901,4,4,1.000,24.0,14.0,12,600.0,0.0400,0,0
|
||||||
157,summer,1800.0,410.0,374.5,750.0,32.0,3,0.0,0.761,100.0,594.5,1204,5946,5221,12000,11629,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
157,summer,1683.1,444.0,237.0,694.0,78.0,99,0.0,0.285,100.0,575.6,3361,1719,1060,12264,17596,4,4,1.000,24.0,14.0,12,631.7,0.0400,0,0
|
||||||
158,summer,1800.0,410.0,379.5,752.0,32.0,2,0.0,0.870,100.0,579.5,1755,3868,3543,12000,14834,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
158,summer,1677.1,444.0,241.0,699.0,83.0,139,0.0,0.299,100.0,568.1,3260,1801,953,12243,17743,4,4,1.000,24.0,14.0,12,656.7,0.0400,0,0
|
||||||
159,summer,1800.0,410.0,384.5,746.0,42.0,1,0.0,0.819,100.0,590.5,1705,3560,2938,12000,15797,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
159,summer,1669.5,444.0,245.0,706.0,84.6,100,0.0,0.303,100.0,574.1,2974,1913,1031,12139,17943,4,4,1.000,24.0,14.0,12,676.7,0.0400,0,0
|
||||||
160,summer,1800.0,410.0,389.5,752.0,28.0,2,0.0,0.871,100.0,577.5,1321,3772,3617,12000,15290,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
160,summer,1671.5,444.0,249.0,702.0,76.0,178,0.4,0.307,100.0,571.5,2662,1752,1004,12236,18346,4,4,1.000,24.0,14.0,12,697.7,0.0400,0,0
|
||||||
161,summer,1800.0,410.0,394.5,744.0,44.0,1,0.0,0.850,100.0,587.5,1925,3122,2637,12000,16316,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
161,summer,1669.5,444.0,253.0,693.0,87.0,120,0.0,0.301,100.0,572.7,3262,1772,1160,12270,17536,4,4,1.000,26.0,14.0,12,732.7,0.0400,0,0
|
||||||
162,summer,1800.0,410.0,397.0,748.0,32.0,3,0.0,0.769,100.0,591.5,1348,3983,5080,12000,13589,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
162,summer,1670.0,444.0,243.5,694.0,94.0,137,0.0,0.285,100.0,560.9,2940,3099,1796,12155,16010,4,4,1.000,22.3,14.0,12,750.0,0.0400,0,1
|
||||||
163,summer,1800.0,410.0,398.0,766.0,24.0,1,0.0,0.878,100.0,568.5,1350,3349,2980,12000,16321,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
163,summer,1652.0,444.0,216.5,675.0,176.5,130,0.1,0.329,100.0,567.5,4794,2773,1081,12750,14602,4,4,1.000,24.0,14.0,12,750.0,0.0400,0,0
|
||||||
164,summer,1800.0,410.0,399.0,756.0,52.0,2,0.0,0.809,100.0,591.5,1322,5622,4434,12000,12622,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
164,summer,1655.5,444.0,221.0,677.0,96.5,126,0.4,0.339,100.0,578.7,2925,1878,997,12101,18099,4,4,1.000,26.0,14.0,12,774.8,0.0400,0,0
|
||||||
165,summer,1800.0,410.0,400.0,762.0,32.0,2,0.5,0.879,100.0,580.5,1185,5116,4860,12064,12775,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
165,summer,1662.0,444.0,225.5,670.0,100.5,214,0.0,0.339,100.0,576.6,2419,2120,960,12324,18177,4,4,1.000,24.0,14.0,12,819.3,0.0400,0,0
|
||||||
166,summer,1800.0,410.0,400.0,752.0,42.0,1,0.0,0.858,100.0,588.5,1633,3488,2951,12000,15928,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
166,summer,1666.0,444.0,230.0,671.0,101.0,171,0.1,0.339,100.0,577.1,2924,1999,941,12305,17831,4,4,1.000,25.5,14.0,12,855.8,0.0400,0,0
|
||||||
167,summer,1800.0,410.0,400.0,752.0,30.0,2,0.0,0.759,100.0,592.5,1218,5133,4871,12162,12616,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
167,summer,1668.0,444.0,234.0,658.0,107.0,181,0.0,0.319,100.0,579.4,2906,2158,968,12306,17662,4,4,1.000,22.0,14.0,12,891.3,0.0400,0,0
|
||||||
168,summer,1800.0,410.0,400.0,748.0,42.0,1,0.0,0.868,100.0,587.5,1730,3267,3910,12000,15093,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
168,summer,1668.0,444.0,238.0,691.0,71.0,174,0.0,0.329,100.0,582.8,2725,1654,1004,12000,18617,4,4,1.000,23.0,14.0,12,891.3,0.0400,0,0
|
||||||
169,summer,1800.0,410.0,400.0,750.0,34.0,3,0.0,0.817,100.0,590.5,1199,6049,5102,12000,11650,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
169,summer,1685.5,444.0,198.5,711.0,108.5,114,0.1,0.371,100.0,542.9,5336,2488,1300,12945,13931,4,4,1.000,26.0,14.0,12,900.0,0.0400,0,1
|
||||||
170,summer,1800.0,410.0,400.0,756.0,26.0,1,0.0,0.878,100.0,574.5,1310,3226,2981,12000,16483,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
170,summer,1669.5,444.0,203.0,693.0,122.0,233,0.0,0.367,100.0,573.3,3115,2174,1064,12322,17325,4,4,1.000,24.0,14.0,12,933.4,0.0400,0,0
|
||||||
171,summer,1800.0,410.0,400.0,746.0,48.0,2,0.0,0.848,100.0,589.5,1871,5060,4508,12162,12399,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
171,summer,1667.5,444.0,207.5,680.0,107.0,152,0.0,0.373,100.0,571.2,3654,2127,1246,12327,16646,4,4,1.000,25.5,14.5,13,981.5,0.0400,0,0
|
||||||
172,summer,1800.0,410.0,400.0,748.0,32.0,2,0.0,0.767,100.0,593.5,1359,4206,4911,12000,13524,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
172,summer,1679.5,444.0,212.0,686.0,66.0,190,0.0,0.349,100.0,563.4,3656,1674,1174,12455,17041,4,4,1.000,23.0,14.5,13,1016.5,0.0400,0,0
|
||||||
173,summer,1800.0,410.0,400.0,748.0,40.0,1,0.0,0.876,100.0,586.5,1639,3924,2595,12000,15842,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
173,summer,1669.0,424.0,208.5,685.0,127.5,134,0.2,0.365,100.0,561.8,4126,3219,2654,12430,13571,4,4,1.000,25.5,14.5,13,1050.0,0.0400,0,1
|
||||||
174,summer,1800.0,410.0,400.0,752.0,34.0,2,0.0,0.807,100.0,591.5,1202,4990,6059,12000,11749,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
174,summer,1645.0,424.0,196.5,694.0,127.5,170,0.0,0.371,100.0,576.2,4543,3289,849,12982,14337,4,4,1.000,23.0,14.5,13,1050.0,0.0400,0,0
|
||||||
175,summer,1800.0,410.0,400.0,752.0,32.0,2,0.0,0.877,100.0,580.5,1320,5749,4337,12162,12432,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
175,summer,1655.0,424.0,201.0,674.0,104.0,179,0.0,0.367,100.0,573.3,2827,2082,931,12324,17836,4,4,1.000,22.5,14.5,13,1091.5,0.0400,0,0
|
||||||
176,summer,1800.0,410.0,400.0,746.0,46.0,2,0.0,0.856,100.0,592.5,1667,5488,4808,12092,11945,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
176,summer,1659.5,424.0,205.5,660.0,107.5,136,0.0,0.373,100.0,572.9,3625,2336,1022,12486,16531,4,4,1.000,25.5,14.5,13,1134.3,0.0400,0,0
|
||||||
177,summer,1800.0,410.0,400.0,756.0,24.0,1,0.0,0.766,100.0,589.5,1337,3237,2979,12000,16447,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
177,summer,1659.5,424.0,210.0,667.0,93.0,172,0.0,0.349,100.0,578.7,2684,1910,972,12162,18272,4,4,1.000,21.0,14.5,13,1157.3,0.0400,0,0
|
||||||
178,summer,1800.0,410.0,400.0,750.0,44.0,2,0.0,0.875,100.0,586.5,1625,3932,3495,12000,14948,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
178,summer,1667.5,424.0,214.5,670.0,87.0,171,0.0,0.365,100.0,569.9,2836,1817,1052,12147,18148,4,4,1.000,24.2,14.5,13,1186.3,0.0400,0,0
|
||||||
179,summer,1800.0,410.0,400.0,748.0,36.0,1,0.0,0.806,100.0,593.5,1536,3331,4152,12000,14981,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
179,summer,1673.5,424.0,182.0,684.0,115.5,135,0.0,0.407,100.0,558.0,4349,4069,2611,12702,12269,4,4,1.000,25.5,14.5,13,1200.0,0.0400,0,1
|
||||||
180,autumn,1800.0,410.0,400.0,749.6,26.0,3,0.0,0.875,100.0,576.5,1046,6210,4886,12162,11696,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
180,autumn,1651.5,424.0,170.5,661.8,155.5,179,0.0,0.399,100.0,576.0,4095,2497,950,12543,15915,4,4,1.000,21.0,14.5,13,1200.0,0.0400,0,0
|
||||||
181,autumn,1800.0,410.0,400.0,728.0,50.4,2,0.0,0.855,100.0,592.9,1919,3961,3613,12000,14507,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
181,autumn,1668.5,424.0,175.5,624.6,113.4,186,0.0,0.411,100.0,570.2,3692,2485,1064,12641,16118,4,4,1.000,25.5,14.5,13,1260.4,0.0400,0,0
|
||||||
182,autumn,1800.0,410.0,400.0,736.6,22.2,1,0.0,0.774,100.0,587.1,1355,3296,2973,12000,16376,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
182,autumn,1667.5,424.0,180.5,615.0,116.2,212,0.7,0.383,100.0,572.2,3396,2077,1039,12397,17091,4,4,1.000,18.5,14.5,13,1300.9,0.0400,0,0
|
||||||
183,autumn,1800.0,410.0,400.0,726.2,43.2,2,0.0,0.865,100.0,585.3,1754,4125,3575,12000,14546,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
183,autumn,1665.5,424.0,185.5,617.8,109.2,136,0.0,0.395,100.0,559.8,4282,1851,1141,12551,16175,4,4,1.000,24.5,14.5,13,1329.3,0.0400,0,0
|
||||||
184,autumn,1800.0,410.0,400.0,728.0,29.0,1,0.0,0.804,100.0,584.3,1539,3296,2990,12000,16175,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
184,autumn,1665.5,424.0,172.5,629.2,115.0,146,0.0,0.407,100.0,550.8,4610,2433,989,12299,15669,4,4,1.000,23.5,14.5,13,1350.0,0.0400,0,1
|
||||||
185,autumn,1800.0,410.0,400.0,726.4,34.4,3,0.0,0.884,100.0,574.7,1524,5742,5336,12000,11398,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
185,autumn,1689.5,424.0,169.0,552.2,186.7,196,4.1,0.409,100.0,563.0,6388,1747,850,13213,13802,4,4,1.000,9.0,14.5,13,1350.0,0.0400,0,1
|
||||||
186,autumn,1800.0,410.0,400.0,721.2,42.4,0,0.0,0.863,100.0,583.1,2309,1852,1418,12000,18421,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
186,autumn,1518.5,424.0,174.0,450.0,445.2,111,2.9,0.411,100.0,545.4,7549,1497,1102,13296,12556,4,4,0.925,7.5,14.5,13,1334.0,0.0400,0,1
|
||||||
187,autumn,1800.0,410.0,400.0,724.8,28.8,3,0.0,0.763,100.0,585.9,1164,5773,5210,12405,11448,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
187,autumn,1561.0,424.0,179.0,470.4,107.6,109,5.8,0.373,100.0,550.9,8023,1307,715,13401,12554,4,4,0.850,5.0,14.5,13,1334.0,0.0400,0,1
|
||||||
188,autumn,1800.0,410.0,400.0,711.2,48.8,2,0.0,0.863,100.0,588.7,2054,4307,3549,12000,14090,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
188,autumn,1533.0,424.0,181.5,451.8,221.1,130,0.1,0.395,100.0,558.3,7051,1441,785,13210,13513,4,4,0.775,6.5,14.5,13,1318.0,0.0400,0,1
|
||||||
189,autumn,1800.0,410.0,400.0,720.0,26.4,1,0.0,0.812,100.0,584.1,1465,3286,3044,12000,16205,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
189,autumn,1543.0,424.0,171.5,517.2,113.6,50,0.2,0.407,100.0,558.8,6806,2935,1028,13440,11791,4,4,0.775,15.7,15.0,14,1318.0,0.0400,0,0
|
||||||
190,autumn,1800.0,410.0,400.0,722.8,32.4,3,1.9,0.882,100.0,573.5,1409,5639,6106,12002,10844,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
190,autumn,1585.5,424.0,176.5,554.0,94.7,186,1.5,0.409,100.0,568.8,5592,1540,1211,12941,14716,4,4,0.812,19.3,15.0,14,1358.6,0.0400,0,0
|
||||||
191,autumn,1800.0,410.0,400.0,719.6,41.6,0,0.0,0.852,100.0,582.1,2276,2156,1003,12000,18565,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
191,autumn,1573.5,424.0,181.5,605.6,120.0,204,0.6,0.410,100.0,554.9,4679,2244,1141,12618,15318,4,4,0.850,23.0,15.0,14,1393.4,0.0400,0,0
|
||||||
192,autumn,1800.0,410.0,400.0,722.8,32.8,3,0.0,0.762,100.0,587.9,1553,5677,5403,12243,11124,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
192,autumn,1587.5,424.0,186.5,616.4,102.8,142,0.2,0.382,100.0,579.9,3864,1856,1073,12309,16898,4,4,0.888,16.0,15.0,14,1409.2,0.0400,0,0
|
||||||
193,autumn,1800.0,410.0,400.0,727.2,27.6,1,0.0,0.862,100.0,569.5,1822,2962,2971,12000,16245,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
193,autumn,1619.0,424.0,191.5,606.8,105.3,140,0.0,0.394,100.0,561.5,3912,2607,1029,12675,15777,4,4,0.925,24.8,15.0,14,1465.6,0.0400,0,0
|
||||||
194,autumn,1800.0,410.0,400.0,710.0,55.6,2,0.0,0.811,100.0,594.1,2458,3947,2915,12000,14680,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
194,autumn,1639.5,424.0,196.5,619.4,91.3,183,0.0,0.406,100.0,563.1,3307,1883,1009,12324,17477,4,4,0.963,20.0,15.0,14,1496.2,0.0400,0,0
|
||||||
195,autumn,1800.0,410.0,400.0,728.0,18.0,2,0.0,0.881,100.0,569.1,1061,4339,5299,12000,13301,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
195,autumn,1641.5,398.0,178.5,637.2,133.6,72,1.5,0.408,100.0,553.4,5881,3526,2527,13226,10840,4,4,0.975,23.0,15.0,14,1500.0,0.0400,0,1
|
||||||
196,autumn,1800.0,410.0,400.0,720.4,48.0,1,0.0,0.860,100.0,583.1,2168,3033,1788,12000,17011,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
196,autumn,1613.5,398.0,168.5,597.4,205.6,112,1.3,0.410,100.0,555.9,6117,2627,1200,13087,12969,4,4,0.988,21.0,15.0,14,1500.0,0.0400,0,0
|
||||||
197,autumn,1800.0,410.0,400.0,715.2,40.8,3,0.0,0.761,100.0,597.9,1679,5941,5274,12162,10944,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
197,autumn,1623.5,398.0,173.5,603.4,107.2,182,0.0,0.382,100.0,575.6,3658,2047,1109,12376,16810,4,4,1.000,20.5,15.0,14,1521.1,0.0400,0,0
|
||||||
198,autumn,1800.0,410.0,400.0,718.8,31.6,0,0.0,0.870,100.0,582.5,2020,1530,1055,12000,19395,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
198,autumn,1623.5,398.0,178.5,632.4,79.8,164,0.0,0.394,100.0,570.6,3654,2088,1018,12294,16946,4,4,1.000,23.5,15.0,14,1533.9,0.0400,0,0
|
||||||
199,autumn,1800.0,410.0,400.0,722.0,34.4,3,0.0,0.810,100.0,586.9,1264,5745,5547,12162,11282,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
199,autumn,1645.5,398.0,183.5,641.8,72.6,159,0.0,0.406,100.0,554.3,3274,2030,901,12482,17313,4,4,1.000,20.0,15.0,14,1581.8,0.0400,0,0
|
||||||
200,autumn,1800.0,410.0,400.0,722.4,32.4,1,0.0,0.880,100.0,576.3,1587,3394,3206,12000,15813,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
200,autumn,1639.0,398.0,188.5,633.4,110.9,117,0.0,0.408,100.0,570.4,5979,1921,1211,13142,13747,4,4,1.000,23.5,15.0,14,1604.4,0.0400,0,0
|
||||||
201,autumn,1800.0,410.0,400.0,715.6,46.0,2,0.0,0.850,100.0,589.3,2020,4240,3440,12000,14300,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
201,autumn,1632.5,398.0,193.5,638.4,101.5,119,0.0,0.410,100.0,572.2,3621,2492,999,12306,16582,4,4,1.000,20.5,15.5,15,1632.6,0.0400,0,0
|
||||||
202,autumn,1800.0,410.0,400.0,729.2,23.2,3,1.5,0.769,100.0,584.5,1090,5247,6393,12081,11189,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
202,autumn,1634.5,386.0,188.0,621.2,136.9,54,1.6,0.410,100.0,561.3,5840,3452,2474,12746,11488,4,4,1.000,24.5,15.5,15,1650.0,0.0400,0,1
|
||||||
203,autumn,1800.0,410.0,400.0,731.2,41.6,0,0.0,0.860,100.0,581.1,1705,2863,994,12000,18438,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
203,autumn,1652.5,386.0,170.5,648.2,75.1,88,3.4,0.418,100.0,546.7,6921,2029,936,13252,12862,4,4,1.000,12.5,15.5,15,1650.0,0.0400,0,1
|
||||||
204,autumn,1800.0,410.0,400.0,720.8,51.2,3,0.0,0.809,100.0,601.3,1631,6143,5397,12000,10829,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
204,autumn,1674.0,386.0,171.0,535.4,230.2,135,4.8,0.406,100.0,555.9,7114,1368,859,13215,13444,4,4,0.925,5.3,15.5,15,1650.0,0.0400,0,1
|
||||||
205,autumn,1800.0,410.0,400.0,749.6,6.4,1,0.0,0.888,100.0,563.7,1119,2298,3054,12000,17529,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
205,autumn,1694.0,386.0,176.0,532.0,116.2,55,5.3,0.413,100.0,562.9,8457,1364,1041,13662,11476,4,4,0.850,5.8,15.5,15,1650.0,0.0400,0,1
|
||||||
206,autumn,1800.0,410.0,400.0,732.8,50.4,2,0.0,0.858,100.0,581.1,2367,4039,3521,12000,14073,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
206,autumn,1709.5,386.0,181.0,567.0,82.3,29,5.6,0.405,100.0,550.0,8893,1160,774,13613,11560,4,4,0.775,6.5,15.5,15,1650.0,0.0400,0,1
|
||||||
207,autumn,1800.0,410.0,400.0,726.0,40.8,2,0.0,0.759,100.0,595.9,1648,4685,4152,12162,13353,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
207,autumn,1675.5,386.0,179.0,617.6,122.0,118,2.4,0.377,100.0,561.6,6185,2713,1063,12814,13225,4,4,0.813,22.5,15.5,15,1650.0,0.0400,0,0
|
||||||
208,autumn,1800.0,410.0,400.0,724.8,32.8,1,0.0,0.868,100.0,581.7,1842,3378,2950,12000,15830,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
208,autumn,1660.5,386.0,184.0,621.8,118.0,119,0.2,0.399,100.0,567.3,5065,1790,1098,12729,15318,4,4,0.850,24.0,15.5,15,1666.6,0.0400,0,0
|
||||||
209,autumn,1800.0,410.0,400.0,724.8,34.8,2,0.0,0.817,100.0,585.5,1705,4035,3607,12000,14653,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
209,autumn,1654.5,386.0,189.0,620.8,117.0,82,0.0,0.401,100.0,568.6,4994,2007,1200,12398,15401,4,4,0.887,24.0,16.0,16,1688.3,0.0400,0,0
|
||||||
210,winter,1800.0,410.0,400.0,647.7,28.4,1,0.0,0.878,100.0,571.9,1602,3342,2954,12000,16102,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
210,winter,1626.5,386.0,194.0,521.5,100.0,145,0.2,0.413,100.0,573.0,4884,1587,1112,12449,15968,4,4,0.925,22.0,16.0,16,1691.5,0.0400,0,0
|
||||||
211,winter,1800.0,410.0,400.0,561.8,43.6,3,0.0,0.848,100.0,582.5,2266,5587,5199,12000,10948,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
211,winter,1607.0,386.0,199.0,430.8,91.5,102,0.0,0.405,100.0,567.0,4071,1915,1599,12243,16172,4,4,0.963,24.0,16.0,16,1711.5,0.0400,0,0
|
||||||
212,winter,1800.0,410.0,400.0,491.0,33.9,2,0.3,0.767,100.0,588.3,2495,4609,2807,12000,14089,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
212,winter,1588.6,386.0,204.0,358.7,76.6,52,0.2,0.377,100.0,573.0,4802,1686,1384,12470,15658,4,4,1.000,22.0,16.0,16,1714.8,0.0400,0,0
|
||||||
213,winter,1800.0,410.0,400.0,419.7,39.7,1,0.0,0.867,100.0,582.0,3766,4204,2426,12324,13280,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
213,winter,1569.0,386.0,209.0,294.4,76.2,21,0.5,0.399,100.0,576.8,6218,1678,1412,13016,13676,4,4,1.000,22.0,16.0,16,1714.8,0.0400,0,0
|
||||||
214,winter,1800.0,410.0,400.0,352.2,41.0,2,0.4,0.816,100.0,592.0,3764,5990,3108,13053,10085,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
214,winter,1568.6,386.0,207.0,250.9,46.3,3,0.0,0.401,100.0,559.5,6372,1399,972,12881,14376,4,4,1.000,22.0,16.0,16,1694.7,0.0400,0,1
|
||||||
215,winter,1800.0,410.0,400.0,304.3,25.0,1,0.0,0.876,100.0,575.0,3063,4774,2636,12810,12717,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
215,winter,1546.0,386.0,194.0,233.4,55.0,50,0.4,0.433,100.0,565.1,4594,2018,644,12371,16373,4,4,1.000,16.1,16.0,16,1469.7,0.0400,0,1
|
||||||
216,winter,1768.8,410.0,400.0,262.2,58.4,2,3.4,0.856,100.0,578.0,7541,4324,2050,13621,8464,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
216,winter,1544.3,386.0,192.0,217.0,23.9,36,0.0,0.415,100.0,551.4,4197,2142,690,12455,16516,4,4,0.975,15.1,16.0,16,1360.9,0.0400,0,0
|
||||||
217,winter,974.4,410.0,400.0,243.8,836.0,1,4.9,0.765,100.0,562.0,7287,5984,3335,14333,5061,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
217,winter,1521.4,386.0,197.0,201.8,38.9,60,0.0,0.377,100.0,569.5,4413,1732,670,12130,17055,4,4,0.988,21.6,16.0,16,1286.3,0.0400,0,0
|
||||||
218,winter,804.8,410.0,185.0,226.7,437.6,2,0.0,0.875,100.0,529.3,11426,687,1036,14430,8421,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
218,winter,1494.8,386.0,202.0,187.7,43.4,84,0.0,0.399,100.0,582.5,4096,1939,851,12104,17010,4,4,1.000,24.0,16.0,16,1228.5,0.0400,0,0
|
||||||
219,winter,798.4,410.0,190.0,210.9,54.4,0,7.2,0.796,100.0,512.0,8835,0,0,13620,13545,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
219,winter,1500.4,386.0,207.0,174.6,11.2,46,0.0,0.401,100.0,560.9,3697,1866,768,12117,17552,4,4,1.000,21.6,16.0,16,1187.5,0.0400,0,0
|
||||||
220,winter,813.6,410.0,195.0,196.1,32.8,0,7.2,0.838,100.0,481.6,8835,0,0,13620,13545,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
220,winter,1489.2,386.0,212.0,162.3,29.6,82,0.0,0.413,100.0,565.8,3983,1976,753,12116,17172,4,4,1.000,21.3,16.0,16,1135.7,0.0400,0,0
|
||||||
221,winter,821.1,410.0,200.0,182.4,40.5,0,7.2,0.767,100.0,464.9,10299,0,0,13620,12081,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
221,winter,1483.2,386.0,196.5,151.0,44.1,29,0.7,0.405,100.0,557.9,6094,2418,586,12840,14062,4,4,1.000,21.2,16.0,16,1079.2,0.0400,0,1
|
||||||
222,winter,816.1,410.0,205.0,169.6,53.0,0,7.2,0.667,100.0,460.3,10459,0,0,13620,11921,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
222,winter,1426.4,386.0,194.0,140.4,86.7,23,0.2,0.377,100.0,560.5,5067,2568,973,12582,14810,4,4,1.000,20.6,16.0,16,977.7,0.0400,0,0
|
||||||
223,winter,808.8,410.0,190.0,158.2,75.3,0,7.2,0.769,100.0,451.4,16006,0,0,15564,4430,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
223,winter,1430.6,386.0,199.0,132.2,18.2,27,0.0,0.399,100.0,552.8,5015,1753,602,12321,16309,4,4,1.000,21.3,16.0,16,948.4,0.0400,0,0
|
||||||
224,winter,812.7,410.0,195.0,147.9,44.1,0,7.2,0.711,100.0,452.9,10892,0,0,13620,11488,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
224,winter,1426.0,386.0,204.0,126.8,26.2,60,0.1,0.401,100.0,578.6,4855,2360,867,12431,15487,4,4,1.000,21.8,16.0,16,864.0,0.0400,0,0
|
||||||
225,winter,821.5,410.0,200.0,139.3,39.2,0,7.2,0.783,100.0,419.9,11189,0,0,13620,11191,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
225,winter,1422.8,386.0,209.0,123.1,22.4,54,0.1,0.413,100.0,561.6,4462,1588,647,12214,17089,4,4,1.000,19.4,16.0,16,825.9,0.0400,0,0
|
||||||
226,winter,820.4,410.0,205.0,132.3,49.1,0,6.7,0.755,100.0,402.7,10889,0,0,13458,11653,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
226,winter,1410.0,386.0,207.5,121.0,40.1,21,0.0,0.405,100.0,567.3,4826,2781,1302,12378,14713,4,4,1.000,20.5,16.0,16,761.9,0.0400,0,1
|
||||||
227,winter,796.8,410.0,190.0,126.6,91.6,0,4.3,0.667,100.0,413.5,14193,0,0,14349,7458,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
227,winter,1411.6,386.0,188.5,120.2,43.2,15,0.4,0.407,100.0,560.8,5809,2282,682,12692,14535,4,4,0.975,18.0,16.0,16,724.8,0.0400,0,1
|
||||||
228,winter,806.5,410.0,175.0,122.5,58.3,0,0.0,0.759,100.0,377.7,5596,0,0,12891,17513,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
228,winter,1395.8,386.0,193.5,120.0,37.4,29,0.0,0.435,100.0,552.8,5313,2889,571,12508,14719,4,4,0.988,24.0,16.0,16,678.3,0.0400,0,0
|
||||||
229,winter,797.0,410.0,180.0,120.6,57.5,0,0.6,0.671,100.0,366.1,6029,0,0,12810,17161,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
229,winter,1382.2,386.0,198.5,120.0,36.0,92,0.0,0.433,100.0,574.8,5790,2119,644,12572,14875,4,4,1.000,21.8,16.0,16,602.9,0.0400,0,0
|
||||||
230,winter,797.6,410.0,185.0,120.1,47.4,0,0.0,0.586,100.0,352.4,4678,0,0,12081,19241,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
230,winter,1369.0,386.0,203.5,120.0,35.6,29,0.0,0.441,100.0,569.3,4332,2272,728,12289,16379,4,4,1.000,24.0,16.0,16,552.3,0.0400,0,0
|
||||||
231,winter,794.4,410.0,190.0,120.0,51.2,0,1.9,0.312,100.0,350.9,6676,0,0,13072,16252,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
231,winter,1372.2,386.0,208.5,120.0,20.0,37,0.0,0.439,100.0,573.6,3693,1736,787,12275,17509,4,4,1.000,18.6,16.0,16,511.1,0.0400,0,0
|
||||||
232,winter,794.8,410.0,179.0,120.0,63.6,0,7.2,0.065,100.0,352.8,8835,0,0,13620,13545,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
232,winter,1369.9,386.0,213.5,120.0,25.5,30,0.0,0.407,100.0,573.5,4688,2442,856,12330,15684,4,4,1.000,23.2,16.0,16,455.7,0.0400,0,0
|
||||||
233,winter,791.6,410.0,180.0,120.0,55.2,0,0.0,0.005,100.0,387.7,7281,0,0,13620,15099,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
233,winter,1365.8,386.0,218.5,120.0,28.1,28,0.0,0.435,100.0,567.6,5169,1328,550,12215,16738,4,4,1.000,22.3,16.0,16,409.1,0.0400,0,0
|
||||||
234,winter,797.2,410.0,185.0,120.0,42.4,0,7.2,0.000,100.0,369.1,8835,0,0,13620,13545,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
234,winter,1374.7,386.0,223.5,120.0,15.1,51,0.0,0.436,100.0,562.0,3286,1387,600,12000,18727,4,4,1.000,18.4,16.0,16,353.1,0.0400,0,0
|
||||||
235,winter,803.6,410.0,190.0,120.0,41.6,0,7.2,0.000,100.0,370.7,8835,0,0,13620,13545,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
235,winter,1368.1,386.0,228.5,120.0,30.6,30,0.0,0.441,100.0,553.7,4219,1457,585,12106,17633,4,4,1.000,20.4,16.0,16,319.7,0.0400,0,0
|
||||||
236,winter,810.3,410.0,195.0,120.0,41.3,0,7.2,0.000,100.0,361.9,11021,0,0,13620,11359,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
236,winter,1347.9,386.0,233.5,120.0,45.8,46,0.0,0.439,100.0,563.8,5420,1450,615,12282,16233,4,4,1.000,19.3,16.0,16,270.2,0.0400,0,0
|
||||||
237,winter,818.3,410.0,200.0,120.0,40.0,0,7.2,0.000,100.0,360.4,8835,0,0,13620,13545,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
237,winter,1343.0,386.0,238.5,120.0,31.3,36,0.0,0.407,100.0,575.4,4186,1653,765,12000,17396,4,4,1.000,24.0,16.0,16,204.1,0.0400,0,0
|
||||||
238,winter,815.9,410.0,205.0,120.0,50.4,0,7.2,0.000,100.0,358.6,8835,0,0,13620,13545,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
238,winter,1338.3,386.0,243.5,120.0,29.9,24,0.0,0.435,100.0,556.2,4414,1234,632,12000,17720,4,4,1.000,23.2,16.0,16,184.1,0.0400,0,0
|
||||||
239,winter,802.0,410.0,194.0,120.0,77.9,0,15.9,0.000,100.0,375.6,17727,0,0,15564,2709,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
239,winter,1348.3,386.0,248.5,120.0,14.4,70,0.0,0.434,100.0,570.2,3973,1172,740,12000,18115,4,4,1.000,21.4,16.0,16,115.3,0.0400,0,0
|
||||||
240,spring,908.0,410.0,195.0,360.0,42.0,0,7.2,0.000,100.0,396.3,9727,0,0,13620,12653,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
240,spring,1398.2,386.0,253.5,360.0,22.1,24,0.0,0.441,100.0,557.5,4244,1158,597,12000,18001,4,4,1.000,20.6,16.0,16,65.9,0.0400,0,0
|
||||||
241,spring,955.8,410.0,200.0,600.0,96.2,0,15.9,0.000,100.0,421.5,17727,0,0,15564,2709,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
241,spring,1441.8,386.0,258.5,600.0,27.2,33,0.0,0.439,100.0,553.0,3413,1329,704,12000,18554,4,4,1.000,20.1,16.0,16,32.9,0.0400,0,0
|
||||||
242,spring,1099.8,410.0,205.0,605.0,231.0,0,15.9,0.608,100.0,466.0,17727,0,0,15564,2709,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
242,spring,1473.9,386.0,263.5,696.0,159.1,78,0.5,0.407,100.0,563.6,3697,1605,871,12238,17589,4,4,1.000,22.0,16.0,16,114.9,0.0400,0,0
|
||||||
243,spring,1243.8,410.0,210.0,633.0,212.0,8,12.9,0.889,100.0,507.9,15958,958,745,15520,2819,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
243,spring,1531.1,386.0,268.5,683.0,168.0,66,0.0,0.435,100.0,550.9,5121,1831,709,12874,15465,4,4,1.000,24.0,16.0,16,240.9,0.0400,0,0
|
||||||
244,spring,1387.8,410.0,215.0,650.0,190.0,4,0.3,0.808,100.0,595.0,6527,5464,3013,14268,6728,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
244,spring,1551.4,386.0,273.5,680.0,183.6,42,0.8,0.433,100.0,561.8,5951,2024,897,12730,14398,4,4,1.000,22.0,16.0,16,307.9,0.0400,0,0
|
||||||
245,spring,1531.8,410.0,220.0,785.0,20.0,1,0.0,0.818,100.0,577.4,1072,3626,2971,12000,16331,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
245,spring,1586.8,386.0,278.5,675.0,173.7,19,0.9,0.441,100.0,560.9,4419,1864,610,12534,16573,4,4,1.000,22.0,16.0,16,401.4,0.0400,0,0
|
||||||
246,spring,1675.8,410.0,225.0,773.0,48.0,2,0.0,0.857,100.0,585.4,1454,3712,3583,12000,15251,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
246,spring,1592.3,386.0,283.5,719.0,129.3,33,0.0,0.439,100.0,567.6,3865,1953,652,12159,17371,4,4,1.000,23.5,16.0,16,443.4,0.0400,0,0
|
||||||
247,spring,1779.2,410.0,230.0,773.0,36.0,1,0.0,0.777,100.0,593.4,1506,3139,4006,12000,15349,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
247,spring,1609.6,386.0,288.5,728.0,115.0,61,0.0,0.407,100.0,571.1,4052,1719,779,12264,17186,4,4,1.000,24.0,16.0,16,485.4,0.0400,0,0
|
||||||
248,spring,1800.0,410.0,235.0,773.0,42.0,2,0.0,0.888,100.0,588.4,1526,3670,2508,12000,16296,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
248,spring,1618.0,386.0,293.5,706.0,151.3,61,0.0,0.435,100.0,569.8,4203,1629,712,12366,17090,4,4,1.000,24.0,16.0,16,556.4,0.0400,0,0
|
||||||
249,spring,1800.0,410.0,240.0,781.0,28.0,3,0.0,0.807,100.0,588.4,895,5503,5518,12000,12084,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
249,spring,1621.3,386.0,298.5,713.0,120.6,104,0.0,0.433,100.0,575.0,3688,1474,1003,12114,17721,4,4,1.000,24.0,16.0,16,596.5,0.0400,0,0
|
||||||
250,spring,1800.0,410.0,245.0,777.0,38.0,1,0.0,0.826,100.0,588.4,1424,2509,3019,12000,17048,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
250,spring,1647.7,386.0,303.5,688.0,149.8,57,0.0,0.441,100.0,556.5,5540,1361,640,12685,15774,4,4,1.000,24.0,16.0,16,700.9,0.0400,0,0
|
||||||
251,spring,1800.0,410.0,250.0,769.0,46.0,2,0.0,0.856,100.0,595.4,1379,5889,4801,12162,11769,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
251,spring,1634.5,386.0,308.5,719.0,133.4,57,0.0,0.439,100.0,572.7,5130,1763,909,12557,15641,4,4,1.000,24.0,16.0,16,719.9,0.0400,0,0
|
||||||
252,spring,1800.0,410.0,255.0,785.0,18.0,1,0.0,0.757,100.0,587.4,1097,3076,2999,12000,16828,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
252,spring,1633.7,386.0,313.5,683.0,196.0,71,0.0,0.407,100.0,565.9,5125,1784,762,12548,15781,4,4,1.000,24.0,16.0,16,818.1,0.0400,0,0
|
||||||
253,spring,1800.0,410.0,260.0,775.0,46.0,2,0.0,0.896,100.0,583.4,1431,3697,3588,12000,15284,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
253,spring,1626.6,386.0,318.5,709.0,130.3,73,0.0,0.435,100.0,569.2,3887,1982,808,12223,17100,4,4,1.000,22.0,16.0,16,866.1,0.0400,0,0
|
||||||
254,spring,1800.0,410.0,265.0,771.0,40.0,2,0.0,0.806,100.0,596.4,1257,5081,4871,12000,12791,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
254,spring,1632.6,386.0,323.5,699.0,149.6,88,0.0,0.433,100.0,572.4,5149,1438,987,12567,15859,4,4,1.000,24.0,16.0,16,913.4,0.0400,0,0
|
||||||
255,spring,1800.0,410.0,270.0,785.0,16.0,2,0.0,0.825,100.0,574.4,1006,3201,4684,12000,15109,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
255,spring,1628.3,386.0,328.5,697.0,156.4,120,0.0,0.441,100.0,573.7,4410,1900,956,12428,16306,4,4,1.000,24.0,16.0,16,976.6,0.0400,0,0
|
||||||
256,spring,1800.0,410.0,275.0,773.0,54.0,2,0.0,0.855,100.0,589.4,1365,5943,4810,12000,11882,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
256,spring,1633.9,386.0,333.5,693.0,152.4,62,0.1,0.439,100.0,552.1,5940,1876,833,12864,14487,4,4,1.000,24.0,16.0,16,1070.1,0.0400,0,0
|
||||||
257,spring,1800.0,410.0,280.0,779.0,34.0,1,0.0,0.765,100.0,596.4,1252,3680,2966,12000,16102,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
257,spring,1621.8,386.0,338.5,710.0,142.3,82,0.0,0.407,100.0,574.2,3877,1664,754,12322,17383,4,4,1.000,22.3,16.0,16,1114.8,0.0400,0,0
|
||||||
258,spring,1800.0,410.0,285.0,773.0,42.0,2,0.0,0.895,100.0,589.4,1262,5048,4870,12000,12820,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
258,spring,1618.2,386.0,343.5,728.0,114.8,85,0.0,0.435,100.0,561.7,3996,1633,802,12304,17265,4,4,1.000,22.0,16.0,16,1144.3,0.0400,0,0
|
||||||
259,spring,1800.0,410.0,290.0,781.0,24.0,1,0.0,0.814,100.0,585.4,1160,3129,3322,12000,16389,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
259,spring,1611.5,386.0,348.5,725.0,134.9,108,0.0,0.433,100.0,565.5,3893,1956,899,12260,16992,4,4,1.000,22.4,16.0,16,1181.5,0.0400,0,0
|
||||||
260,spring,1800.0,410.0,295.0,777.0,38.0,2,0.0,0.824,100.0,586.4,1389,3921,3677,12000,15013,0,4,0.000,0.0,0.0,0,0.0,0.0180,0,2
|
260,spring,1619.1,376.0,322.0,691.0,219.1,76,0.0,0.441,100.0,565.9,5342,2197,2027,12686,13748,4,4,1.000,24.0,16.0,16,1281.9,0.0400,0,1
|
||||||
|
|||||||
|
Reference in New Issue
Block a user