Run 12: knowledge system, mortality, and the North's generational soul
SPEC §5 built: three skill domains (forage/woodcraft/masonry) that pay off and grow by practice; proximity diffusion soul-calibrated by absorption x teaching-drive; and mortality - the piece that makes knowledge generational. Elders die (~150-230 days), everything unshared dies with them, a youth comes of age near knowing nothing. North soul (absorption 1.6, teaching 0.9) vs South (1.0, 0.3); East teaches no one. Two findings: (1) headless soaks were contaminated by orphaned child processes writing later runs' CSVs - fixed with StopAfterDays clean self-terminate; (2) passive diffusion barely helped - the North's real culture is the young seeking elders on purpose, so added deliberate teacher-seeking and youths now cradle beside the wisest elder. North now leads knowledge at every checkpoint, but a stable town approaches the ceiling regardless, so teaching is a recovery advantage not an equilibrium one. The crisis-recovery experiment is the real test, noted in FINDINGS as next. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
+37
@@ -236,6 +236,43 @@ real stockpiles.
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## Run 12 — Knowledge, mortality, and the North's soul (SPEC §5)
|
||||||
|
|
||||||
|
**Built:** three skill domains (forage/woodcraft/masonry) that pay off
|
||||||
|
(skilled hands harvest more, masons waste less) and grow by practice;
|
||||||
|
proximity diffusion soul-calibrated by absorption × teaching-drive;
|
||||||
|
**mortality** — the piece that makes knowledge *generational*: elders die
|
||||||
|
at ~150–230 days, everything unshared dies with them, and a youth comes
|
||||||
|
of age knowing almost nothing. The North's whole identity is two numbers
|
||||||
|
(absorption 1.6, teaching 0.9) vs the South's (1.0, 0.3); the East
|
||||||
|
teaches no one, ever.
|
||||||
|
|
||||||
|
**First finding (instrumentation):** headless soaks were being
|
||||||
|
contaminated by orphaned Godot child processes writing to later runs'
|
||||||
|
CSVs — two files disagreeing on the final day was the tell. Fixed with a
|
||||||
|
`StopAfterDays` clean self-terminate (no external kill, no race).
|
||||||
|
|
||||||
|
**Second finding (design):** passive-only diffusion barely helped the
|
||||||
|
North — youths spawned at the empty town centroid and worked solo, so a
|
||||||
|
death reset a villager to roughly what they'd have self-taught anyway.
|
||||||
|
The missing mechanic was the North's actual culture: **the young must
|
||||||
|
seek out elders on purpose.** Added deliberate teacher-seeking for
|
||||||
|
high-absorption souls, and youths now cradle beside the town's wisest
|
||||||
|
elder instead of in a void.
|
||||||
|
|
||||||
|
**Result:** the North leads at every checkpoint (day 150: 0.586 vs 0.477;
|
||||||
|
final 0.972 vs 0.951) and both towns reach far higher knowledge than
|
||||||
|
before. But the gap is modest **because a stable town approaches the
|
||||||
|
knowledge ceiling regardless of teaching speed** — everyone eventually
|
||||||
|
maxes out; the North just arrives sooner. Teaching culture is a
|
||||||
|
*recovery* advantage, not an equilibrium one.
|
||||||
|
|
||||||
|
**Next experiment (the real test):** a shock that kills the experts, then
|
||||||
|
measure which town rebuilds its knowledge — the North's thesis stated as
|
||||||
|
a falsifiable claim.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
Soul layer: done and validated (runs 5–6). The expansion phase begins:
|
Soul layer: done and validated (runs 5–6). The expansion phase begins:
|
||||||
|
|
||||||
1. **Towns as spatial structure**: multiple settlements with their own
|
1. **Towns as spatial structure**: multiple settlements with their own
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
[node name="Main" type="Node2D" unique_id=1549676286]
|
[node name="Main" type="Node2D" unique_id=1549676286]
|
||||||
script = ExtResource("1_gm")
|
script = ExtResource("1_gm")
|
||||||
TicksPerRealSecond = 1500.0
|
TicksPerRealSecond = 1500.0
|
||||||
|
StopAfterDays = 240
|
||||||
|
|
||||||
[node name="Visualization" type="Node2D" parent="." unique_id=1946930493]
|
[node name="Visualization" type="Node2D" parent="." unique_id=1946930493]
|
||||||
script = ExtResource("2_viz")
|
script = ExtResource("2_viz")
|
||||||
|
|||||||
+6
-2
@@ -151,9 +151,13 @@ public class Building
|
|||||||
if (!npc.Inventory.TryGetValue(stage.Material, out float have) || have <= 0f)
|
if (!npc.Inventory.TryGetValue(stage.Material, out float have) || have <= 0f)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
float take = Mathf.Min(have, stage.Cost - Delivered);
|
// A practiced mason wastes less: the same materials go further
|
||||||
|
// in skilled hands — and the building is the teacher.
|
||||||
|
float masonry = npc.Know[KnowledgeDomain.Masonry];
|
||||||
|
float take = Mathf.Min(have, (stage.Cost - Delivered) / (1f + masonry * 0.5f));
|
||||||
npc.Inventory[stage.Material] = have - take;
|
npc.Inventory[stage.Material] = have - take;
|
||||||
Delivered += take;
|
Delivered += take * (1f + masonry * 0.5f);
|
||||||
|
npc.Know.Gain(KnowledgeDomain.Masonry, 0.002f);
|
||||||
|
|
||||||
if (Delivered >= stage.Cost)
|
if (Delivered >= stage.Cost)
|
||||||
{
|
{
|
||||||
|
|||||||
+79
-2
@@ -36,6 +36,11 @@ public partial class GameManager : Node2D
|
|||||||
[Export(PropertyHint.Range, "1,2000,1")]
|
[Export(PropertyHint.Range, "1,2000,1")]
|
||||||
public float TicksPerRealSecond = 20f; // sim speed; ~1500 ≈ one day/sec for soaks
|
public float TicksPerRealSecond = 20f; // sim speed; ~1500 ≈ one day/sec for soaks
|
||||||
|
|
||||||
|
/// <summary>Auto-quit after this many days (0 = run forever). Set for
|
||||||
|
/// headless soaks so runs self-terminate cleanly — no external kill, no
|
||||||
|
/// orphaned process racing the next run's CSV writes.</summary>
|
||||||
|
[Export] public int StopAfterDays = 0;
|
||||||
|
|
||||||
public World World { get; private set; } = null!;
|
public World World { get; private set; } = null!;
|
||||||
public List<Npc> Npcs { get; } = new();
|
public List<Npc> Npcs { get; } = new();
|
||||||
public List<Building> Buildings { get; } = new();
|
public List<Building> Buildings { get; } = new();
|
||||||
@@ -91,14 +96,20 @@ public partial class GameManager : Node2D
|
|||||||
{
|
{
|
||||||
for (int i = 0; i < count; i++)
|
for (int i = 0; i < count; i++)
|
||||||
{
|
{
|
||||||
Npcs.Add(new Npc
|
var npc = new Npc
|
||||||
{
|
{
|
||||||
Name = $"{prefix}_{(char)('A' + Npcs.Count % 26)}{(Npcs.Count >= 26 ? Npcs.Count.ToString() : "")}",
|
Name = $"{prefix}_{(char)('A' + Npcs.Count % 26)}{(Npcs.Count >= 26 ? Npcs.Count.ToString() : "")}",
|
||||||
HomeTown = town,
|
HomeTown = town,
|
||||||
Soul = soul,
|
Soul = soul,
|
||||||
PersonalityModifier = (float)(rng.NextDouble() * 0.4 - 0.2),
|
PersonalityModifier = (float)(rng.NextDouble() * 0.4 - 0.2),
|
||||||
Position = center + new Vector2(rng.Next(-12, 13), rng.Next(-12, 13)),
|
Position = center + new Vector2(rng.Next(-12, 13), rng.Next(-12, 13)),
|
||||||
});
|
// Staggered ages so the founding generation doesn't die
|
||||||
|
// in one terrible week.
|
||||||
|
AgeDays = rng.Next(0, 100),
|
||||||
|
LifeExpectancyDays = 150 + rng.Next(0, 80),
|
||||||
|
};
|
||||||
|
npc.Know.Capacity = 1.0f + (float)rng.NextDouble();
|
||||||
|
Npcs.Add(npc);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -198,6 +209,65 @@ public partial class GameManager : Node2D
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// --- Mortality: generations end, and what wasn't passed on ends too --
|
||||||
|
|
||||||
|
public int DeathsToday { get; set; }
|
||||||
|
private int _bornCount;
|
||||||
|
|
||||||
|
private void TickMortality()
|
||||||
|
{
|
||||||
|
var dying = new List<Npc>();
|
||||||
|
foreach (var npc in Npcs)
|
||||||
|
{
|
||||||
|
npc.AgeDays += 1f;
|
||||||
|
if (npc.AgeDays >= npc.LifeExpectancyDays)
|
||||||
|
dying.Add(npc);
|
||||||
|
}
|
||||||
|
|
||||||
|
var rng = new System.Random(Seed + (int)TotalTicks);
|
||||||
|
foreach (var dead in Npcs.ToArray())
|
||||||
|
{
|
||||||
|
if (!dying.Contains(dead)) continue;
|
||||||
|
Npcs.Remove(dead);
|
||||||
|
DeathsToday++;
|
||||||
|
|
||||||
|
// Everything unshared dies with them: skills, memories, echoes.
|
||||||
|
// What survives is what they taught, built, and stored.
|
||||||
|
foreach (var other in Npcs)
|
||||||
|
other.ForgetPerson(dead);
|
||||||
|
|
||||||
|
// A youth comes of age in the same town, same culture, knowing
|
||||||
|
// almost nothing — but raised among the living, not in a void.
|
||||||
|
// They spawn beside the town's wisest elder, so the young begin
|
||||||
|
// life within reach of what the community still remembers. The
|
||||||
|
// town's knowledge is only what its living carry — but the young
|
||||||
|
// start where that knowledge is.
|
||||||
|
_bornCount++;
|
||||||
|
Npc? elder = null;
|
||||||
|
float bestKnow = -1f;
|
||||||
|
foreach (var other in Npcs)
|
||||||
|
if (other.HomeTown == dead.HomeTown && other.Know.Total > bestKnow)
|
||||||
|
{ bestKnow = other.Know.Total; elder = other; }
|
||||||
|
Vector2 cradle = elder?.Position ?? TownCentroid(dead.HomeTown);
|
||||||
|
|
||||||
|
var youth = new Npc
|
||||||
|
{
|
||||||
|
Name = $"{dead.HomeTown}_{(char)('A' + _bornCount % 26)}{_bornCount + 25}",
|
||||||
|
HomeTown = dead.HomeTown,
|
||||||
|
Soul = dead.Soul, // raised in the culture that raised them
|
||||||
|
PersonalityModifier = (float)(rng.NextDouble() * 0.4 - 0.2),
|
||||||
|
Position = cradle + new Vector2(rng.Next(-4, 5), rng.Next(-4, 5)),
|
||||||
|
AgeDays = 0f,
|
||||||
|
LifeExpectancyDays = 150 + rng.Next(0, 80),
|
||||||
|
};
|
||||||
|
youth.Know.Capacity = 1.0f + (float)rng.NextDouble();
|
||||||
|
Npcs.Add(youth);
|
||||||
|
|
||||||
|
GD.Print($"[Passing] day {Day}: {dead.Name} dies at {dead.AgeDays:0} days " +
|
||||||
|
$"(knowledge {dead.Know.Total:0.00} lost); {youth.Name} comes of age.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>Where the community's feet actually are — new communal
|
/// <summary>Where the community's feet actually are — new communal
|
||||||
/// buildings are founded here, not at a scripted town center.</summary>
|
/// buildings are founded here, not at a scripted town center.</summary>
|
||||||
public Vector2 CommunityCentroid()
|
public Vector2 CommunityCentroid()
|
||||||
@@ -224,9 +294,16 @@ public partial class GameManager : Node2D
|
|||||||
building.DailyUpkeep();
|
building.DailyUpkeep();
|
||||||
foreach (var npc in Npcs)
|
foreach (var npc in Npcs)
|
||||||
npc.FadeEchoes(0.005f);
|
npc.FadeEchoes(0.005f);
|
||||||
|
TickMortality();
|
||||||
StatsLogger.LogDay(this);
|
StatsLogger.LogDay(this);
|
||||||
if (Day % 10 == 0)
|
if (Day % 10 == 0)
|
||||||
GD.Print($"[WorldSim] Day {Day} complete.");
|
GD.Print($"[WorldSim] Day {Day} complete.");
|
||||||
|
|
||||||
|
if (StopAfterDays > 0 && Day >= StopAfterDays)
|
||||||
|
{
|
||||||
|
GD.Print($"[WorldSim] Reached day {Day} — stopping.");
|
||||||
|
GetTree().Quit();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,47 @@
|
|||||||
|
using Godot;
|
||||||
|
|
||||||
|
namespace WorldSim;
|
||||||
|
|
||||||
|
/// <summary>Domains of practical knowledge (SPEC §5 — deliberately few).</summary>
|
||||||
|
public enum KnowledgeDomain { Forage, Woodcraft, Masonry }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// What a person knows how to do (SPEC §5). Not an object in the world —
|
||||||
|
/// it lives in people, spreads by proximity, grows by practice, and dies
|
||||||
|
/// with its holder unless it was passed on. Every death is a small library
|
||||||
|
/// burning; a teaching culture is a culture of copies.
|
||||||
|
///
|
||||||
|
/// Capacity is personal and randomized: some people can hold more than
|
||||||
|
/// others, and what fills first is what they lived.
|
||||||
|
/// </summary>
|
||||||
|
public class Knowledge
|
||||||
|
{
|
||||||
|
public const int DomainCount = 3;
|
||||||
|
|
||||||
|
/// <summary>0–1 per domain.</summary>
|
||||||
|
public float[] Skill = new float[DomainCount];
|
||||||
|
|
||||||
|
/// <summary>Total learning this mind can hold, across all domains.</summary>
|
||||||
|
public float Capacity = 1.5f;
|
||||||
|
|
||||||
|
public float Total => Skill[0] + Skill[1] + Skill[2];
|
||||||
|
public float Headroom => Mathf.Max(0f, Capacity - Total);
|
||||||
|
|
||||||
|
public float this[KnowledgeDomain d] => Skill[(int)d];
|
||||||
|
|
||||||
|
/// <summary>Learn, limited by personal capacity.</summary>
|
||||||
|
public void Gain(KnowledgeDomain d, float amount)
|
||||||
|
{
|
||||||
|
if (amount <= 0f || Headroom <= 0f) return;
|
||||||
|
float a = Mathf.Min(amount, Headroom);
|
||||||
|
Skill[(int)d] = Mathf.Clamp(Skill[(int)d] + a, 0f, 1f);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>Which domain a material teaches and benefits from.</summary>
|
||||||
|
public static KnowledgeDomain DomainFor(MaterialKind kind) => kind switch
|
||||||
|
{
|
||||||
|
MaterialKind.Food => KnowledgeDomain.Forage,
|
||||||
|
MaterialKind.Wood => KnowledgeDomain.Woodcraft,
|
||||||
|
_ => KnowledgeDomain.Masonry, // stone, clay — builder's craft
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
uid://f5ki6rajbww1
|
||||||
+80
-3
@@ -33,6 +33,13 @@ public class Npc
|
|||||||
public float Health = 100f; // forced rest below 30
|
public float Health = 100f; // forced rest below 30
|
||||||
public float Nourishment = 1f; // 1 = fed; drains daily, eats from pack
|
public float Nourishment = 1f; // 1 = fed; drains daily, eats from pack
|
||||||
|
|
||||||
|
// --- Mortality: knowledge is generational only if generations end ----
|
||||||
|
public float AgeDays;
|
||||||
|
public float LifeExpectancyDays = 180f;
|
||||||
|
|
||||||
|
// --- Knowledge (SPEC §5) ----------------------------------------------
|
||||||
|
public Knowledge Know = new();
|
||||||
|
|
||||||
// --- State -----------------------------------------------------------
|
// --- State -----------------------------------------------------------
|
||||||
public NpcState State = NpcState.Gathering;
|
public NpcState State = NpcState.Gathering;
|
||||||
|
|
||||||
@@ -78,6 +85,33 @@ 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];
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Learn from another by proximity (SPEC §5). Rate scales with your own
|
||||||
|
/// absorption and their drive to teach. Returns true if anything passed.
|
||||||
|
/// </summary>
|
||||||
|
private bool LearnFrom(Npc other)
|
||||||
|
{
|
||||||
|
bool learned = false;
|
||||||
|
float rate = 0.0016f * Soul.Absorption * (1f + other.Soul.TeachingDrive * 2.5f);
|
||||||
|
for (int d = 0; d < Knowledge.DomainCount; d++)
|
||||||
|
{
|
||||||
|
float gap = other.Know.Skill[d] - Know.Skill[d];
|
||||||
|
if (gap > 0.03f)
|
||||||
|
{
|
||||||
|
Know.Gain((KnowledgeDomain)d, gap * rate);
|
||||||
|
learned = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return learned;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>Clear live references to someone who has died.</summary>
|
||||||
|
public void ForgetPerson(Npc dead)
|
||||||
|
{
|
||||||
|
if (_targetNpc == dead) _targetNpc = null;
|
||||||
|
if (_giftSource == dead) _giftSource = null;
|
||||||
|
}
|
||||||
|
|
||||||
// --- Diagnostics (read-only views for the stats logger) ---------------
|
// --- Diagnostics (read-only views for the stats logger) ---------------
|
||||||
public MaterialKind CurrentDemand(GameManager gm) => PickGatherTarget(gm);
|
public MaterialKind CurrentDemand(GameManager gm) => PickGatherTarget(gm);
|
||||||
public int RoughNights => _unshelteredRests;
|
public int RoughNights => _unshelteredRests;
|
||||||
@@ -426,8 +460,12 @@ public class Npc
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
Activity = $"harvesting {_targetNode.Kind.ToString().ToLower()}";
|
Activity = $"harvesting {_targetNode.Kind.ToString().ToLower()}";
|
||||||
float taken = world.Harvest(_targetNode, requested: 2f, this);
|
// Skill pays: a practiced hand takes more per reach — and the
|
||||||
|
// work itself is the teacher.
|
||||||
|
var domain = Knowledge.DomainFor(_targetNode.Kind);
|
||||||
|
float taken = world.Harvest(_targetNode, requested: 2f * (1f + Know[domain]), this);
|
||||||
if (taken <= 0f) { _targetNode = null; return; } // node at its floor — re-seek
|
if (taken <= 0f) { _targetNode = null; return; } // node at its floor — re-seek
|
||||||
|
Know.Gain(domain, 0.0006f);
|
||||||
Inventory.TryGetValue(_targetNode.Kind, out float have);
|
Inventory.TryGetValue(_targetNode.Kind, out float have);
|
||||||
Inventory[_targetNode.Kind] = have + taken;
|
Inventory[_targetNode.Kind] = have + taken;
|
||||||
|
|
||||||
@@ -645,9 +683,42 @@ public class Npc
|
|||||||
|
|
||||||
private void TickSocializing(GameManager gm)
|
private void TickSocializing(GameManager gm)
|
||||||
{
|
{
|
||||||
// Drift toward the nearest neighbor — community forms where feet do.
|
// The young seek a teacher. A soul that still has much to learn and
|
||||||
|
// the drive to learn it looks for the wisest elder in town rather
|
||||||
|
// than drifting to whoever's closest. This is the North's culture in
|
||||||
|
// motion: the young sitting at the feet of the old, on purpose.
|
||||||
Npc? nearest = null;
|
Npc? nearest = null;
|
||||||
float bestDist = float.MaxValue;
|
float bestDist = float.MaxValue;
|
||||||
|
|
||||||
|
if (Soul.Absorption > 1.2f && Know.Total < Know.Capacity * 0.6f)
|
||||||
|
{
|
||||||
|
Npc? teacher = null;
|
||||||
|
float bestWorth = 0.15f; // must actually know more than us
|
||||||
|
foreach (var other in gm.Npcs)
|
||||||
|
{
|
||||||
|
if (other == this || other.HomeTown != HomeTown) continue;
|
||||||
|
float worth = (other.Know.Total - Know.Total) * (1f + other.Soul.TeachingDrive);
|
||||||
|
if (worth > bestWorth) { bestWorth = worth; teacher = other; }
|
||||||
|
}
|
||||||
|
if (teacher != null)
|
||||||
|
{
|
||||||
|
if (Position.DistanceTo(teacher.Position) > 3f)
|
||||||
|
{
|
||||||
|
Activity = $"seeking out {teacher.Name} to learn";
|
||||||
|
MoveToward(teacher.Position);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
LearnFrom(teacher);
|
||||||
|
Activity = $"learning from {teacher.Name}";
|
||||||
|
}
|
||||||
|
if (!gm.IsNight && _stateTimer > 15f) Enter(NpcState.Gathering);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Otherwise: drift toward the nearest neighbor — community forms
|
||||||
|
// where feet do.
|
||||||
foreach (var other in gm.Npcs)
|
foreach (var other in gm.Npcs)
|
||||||
{
|
{
|
||||||
if (other == this) continue;
|
if (other == this) continue;
|
||||||
@@ -659,9 +730,15 @@ public class Npc
|
|||||||
Activity = $"walking over to {nearest.Name}";
|
Activity = $"walking over to {nearest.Name}";
|
||||||
MoveToward(nearest.Position);
|
MoveToward(nearest.Position);
|
||||||
}
|
}
|
||||||
|
else if (nearest != null)
|
||||||
|
{
|
||||||
|
Activity = LearnFrom(nearest)
|
||||||
|
? $"learning from {nearest.Name}"
|
||||||
|
: $"chatting with {nearest.Name}";
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Activity = nearest != null ? $"chatting with {nearest.Name}" : "idling";
|
Activity = "idling";
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO(Week 3): bonds + Generosity-weighted spontaneous help.
|
// TODO(Week 3): bonds + Generosity-weighted spontaneous help.
|
||||||
|
|||||||
@@ -53,6 +53,12 @@ public class SoulProfile
|
|||||||
public float StatusBias; // West: visible-wealth preference (unused in MVP)
|
public float StatusBias; // West: visible-wealth preference (unused in MVP)
|
||||||
public float Accumulation; // East: hoarding pressure (unused in MVP)
|
public float Accumulation; // East: hoarding pressure (unused in MVP)
|
||||||
|
|
||||||
|
// Knowledge culture (SPEC §5): how readily this soul absorbs from
|
||||||
|
// others, and how deliberately it passes on what it knows. The North's
|
||||||
|
// whole identity lives in these two numbers.
|
||||||
|
public float Absorption = 1f; // learning rate multiplier
|
||||||
|
public float TeachingDrive = 0f; // how much being near this soul teaches
|
||||||
|
|
||||||
public static SoulProfile NatureSoul() => new()
|
public static SoulProfile NatureSoul() => new()
|
||||||
{
|
{
|
||||||
Type = SoulType.Nature,
|
Type = SoulType.Nature,
|
||||||
@@ -61,6 +67,8 @@ public class SoulProfile
|
|||||||
CommunityBias = 0.8f,
|
CommunityBias = 0.8f,
|
||||||
StatusBias = 0.1f,
|
StatusBias = 0.1f,
|
||||||
Accumulation = 0.1f,
|
Accumulation = 0.1f,
|
||||||
|
Absorption = 1.0f,
|
||||||
|
TeachingDrive = 0.3f, // knowledge passes casually, by living together
|
||||||
};
|
};
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -77,6 +85,8 @@ public class SoulProfile
|
|||||||
CommunityBias = 0.95f,
|
CommunityBias = 0.95f,
|
||||||
StatusBias = 0.15f,
|
StatusBias = 0.15f,
|
||||||
Accumulation = 0.2f,
|
Accumulation = 0.2f,
|
||||||
|
Absorption = 1.6f, // raised to receive what elders hand down
|
||||||
|
TeachingDrive = 0.9f, // and to hand it down in turn — the whole culture
|
||||||
};
|
};
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -92,5 +102,7 @@ public class SoulProfile
|
|||||||
CommunityBias = 0.1f,
|
CommunityBias = 0.1f,
|
||||||
StatusBias = 0.5f,
|
StatusBias = 0.5f,
|
||||||
Accumulation = 0.9f,
|
Accumulation = 0.9f,
|
||||||
|
Absorption = 0.7f, // they take, but rarely sit still to learn
|
||||||
|
TeachingDrive = 0.0f, // and teach no one anything, ever
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
+15
-4
@@ -21,11 +21,12 @@ public static class StatsLogger
|
|||||||
"avg_fatigue,avg_nourish,avg_health,carried," +
|
"avg_fatigue,avg_nourish,avg_health,carried," +
|
||||||
"gather_ticks,build_ticks,trade_ticks,rest_ticks,social_ticks," +
|
"gather_ticks,build_ticks,trade_ticks,rest_ticks,social_ticks," +
|
||||||
"shelters_done,ruins,avg_cond,upkeep_stock,burn_per_day,modules,granary_food," +
|
"shelters_done,ruins,avg_cond,upkeep_stock,burn_per_day,modules,granary_food," +
|
||||||
"avg_debris,refusals,incomplete_sites";
|
"avg_debris,refusals,incomplete_sites,avg_knowledge,deaths";
|
||||||
|
|
||||||
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,demand,rough_nights,hunger_mem";
|
"nourish,health,debris,demand,rough_nights,hunger_mem," +
|
||||||
|
"age,know_forage,know_wood,know_masonry";
|
||||||
|
|
||||||
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";
|
||||||
@@ -143,7 +144,12 @@ public static class StatsLogger
|
|||||||
|
|
||||||
int incomplete = 0;
|
int incomplete = 0;
|
||||||
foreach (var b in gm.Buildings) if (!b.IsComplete) incomplete++;
|
foreach (var b in gm.Buildings) if (!b.IsComplete) incomplete++;
|
||||||
row.Append(incomplete);
|
row.Append(incomplete).Append(',');
|
||||||
|
|
||||||
|
float knowSum = 0f;
|
||||||
|
foreach (var npc in gm.Npcs) knowSum += npc.Know.Total;
|
||||||
|
row.Append((knowSum / count).ToString("0.000", ci)).Append(',');
|
||||||
|
row.Append(gm.DeathsToday);
|
||||||
|
|
||||||
File.AppendAllText(_path, row + "\n");
|
File.AppendAllText(_path, row + "\n");
|
||||||
|
|
||||||
@@ -170,7 +176,11 @@ public static class StatsLogger
|
|||||||
.Append(npc.Imprint.Total.ToString("0.0000", ci)).Append(',')
|
.Append(npc.Imprint.Total.ToString("0.0000", ci)).Append(',')
|
||||||
.Append(npc.CurrentDemand(gm)).Append(',')
|
.Append(npc.CurrentDemand(gm)).Append(',')
|
||||||
.Append(npc.RoughNights).Append(',')
|
.Append(npc.RoughNights).Append(',')
|
||||||
.Append(npc.HungerMemory ? 1 : 0).Append('\n');
|
.Append(npc.HungerMemory ? 1 : 0).Append(',')
|
||||||
|
.Append(npc.AgeDays.ToString("0", ci)).Append(',')
|
||||||
|
.Append(npc.Know[KnowledgeDomain.Forage].ToString("0.000", ci)).Append(',')
|
||||||
|
.Append(npc.Know[KnowledgeDomain.Woodcraft].ToString("0.000", ci)).Append(',')
|
||||||
|
.Append(npc.Know[KnowledgeDomain.Masonry].ToString("0.000", ci)).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());
|
||||||
@@ -179,5 +189,6 @@ public static class StatsLogger
|
|||||||
gm.World.HarvestedToday = 0f;
|
gm.World.HarvestedToday = 0f;
|
||||||
TradeSystem.TradesToday = 0;
|
TradeSystem.TradesToday = 0;
|
||||||
TradeSystem.RefusalsToday = 0;
|
TradeSystem.RefusalsToday = 0;
|
||||||
|
gm.DeathsToday = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -135,9 +135,10 @@ public partial class Visualization : Node2D
|
|||||||
DrawString(font, new Vector2(PanelX + 36, y),
|
DrawString(font, new Vector2(PanelX + 36, y),
|
||||||
$"{i + 1,2} {npc.State,-11} {npc.Activity}",
|
$"{i + 1,2} {npc.State,-11} {npc.Activity}",
|
||||||
fontSize: 13, modulate: TextMain);
|
fontSize: 13, modulate: TextMain);
|
||||||
DrawString(font, new Vector2(PanelX + 400, y),
|
DrawString(font, new Vector2(PanelX + 390, y),
|
||||||
$"F {npc.Fatigue,3:0} N {npc.Nourishment * 100,3:0} D {npc.Imprint.Total * 100,2:0}" +
|
$"N {npc.Nourishment * 100,3:0} D {npc.Imprint.Total * 100,2:0}" +
|
||||||
$" C {npc.TotalCarried(),4:0.0} {npc.DominantStateToday().ToString().ToLower()[..4]}",
|
$" K {npc.Know.Total,4:0.00} A {npc.AgeDays,3:0}" +
|
||||||
|
$" {npc.DominantStateToday().ToString().ToLower()[..4]}",
|
||||||
fontSize: 12, modulate: TextDim);
|
fontSize: 12, modulate: TextDim);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+531
-391
@@ -1,394 +1,534 @@
|
|||||||
day,giver,giver_soul,receiver,receiver_soul,material,amount
|
day,giver,giver_soul,receiver,receiver_soul,material,amount
|
||||||
3,North_Q,Generational,North_V,Generational,Stone,3.0
|
3,North_V,Generational,North_R,Generational,Stone,3.0
|
||||||
3,North_S,Generational,South_E,Nature,Stone,3.0
|
3,North_S,Generational,South_A,Nature,Stone,3.0
|
||||||
4,North_Y,Generational,South_F,Nature,Stone,3.0
|
3,North_T,Generational,South_N,Selfish,Stone,3.0
|
||||||
4,North_U,Generational,South_K,Nature,Stone,3.0
|
4,North_W,Generational,South_H,Nature,Stone,3.0
|
||||||
4,North_W,Generational,South_L,Nature,Stone,3.0
|
4,North_P,Generational,South_M,Selfish,Stone,3.0
|
||||||
5,North_R,Generational,North_W,Generational,Stone,3.0
|
12,South_D,Nature,South_G,Nature,Stone,3.0
|
||||||
99,South_N,Selfish,South_A,Nature,Refusal,0.0
|
17,South_L,Nature,North_S,Generational,Stone,3.0
|
||||||
99,South_N,Selfish,North_Q,Generational,Refusal,0.0
|
18,South_I,Nature,South_D,Nature,Stone,3.0
|
||||||
99,South_N,Selfish,North_Y,Generational,Refusal,0.0
|
20,South_J,Nature,South_I,Nature,Stone,3.0
|
||||||
99,South_O,Selfish,South_A,Nature,Refusal,0.0
|
25,North_W,Generational,North_V,Generational,Stone,3.0
|
||||||
99,South_O,Selfish,North_Q,Generational,Refusal,0.0
|
101,South_M,Selfish,South_F,Nature,Refusal,0.0
|
||||||
99,South_O,Selfish,North_Y,Generational,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_A,Nature,Refusal,0.0
|
|
||||||
99,South_M,Selfish,North_Q,Generational,Refusal,0.0
|
|
||||||
99,South_M,Selfish,North_Y,Generational,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_A,Nature,Refusal,0.0
|
|
||||||
99,South_M,Selfish,North_Q,Generational,Refusal,0.0
|
|
||||||
99,South_M,Selfish,North_Y,Generational,Refusal,0.0
|
|
||||||
99,South_N,Selfish,South_A,Nature,Refusal,0.0
|
|
||||||
99,South_O,Selfish,South_A,Nature,Refusal,0.0
|
|
||||||
99,South_N,Selfish,North_Q,Generational,Refusal,0.0
|
|
||||||
99,South_N,Selfish,North_Y,Generational,Refusal,0.0
|
|
||||||
99,South_O,Selfish,North_Q,Generational,Refusal,0.0
|
|
||||||
99,South_O,Selfish,North_Y,Generational,Refusal,0.0
|
|
||||||
99,South_N,Selfish,South_L,Nature,Refusal,0.0
|
|
||||||
99,South_N,Selfish,North_P,Generational,Refusal,0.0
|
|
||||||
99,South_N,Selfish,North_V,Generational,Refusal,0.0
|
|
||||||
99,South_O,Selfish,South_L,Nature,Refusal,0.0
|
|
||||||
99,South_O,Selfish,North_P,Generational,Refusal,0.0
|
|
||||||
99,South_O,Selfish,North_V,Generational,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_L,Nature,Refusal,0.0
|
|
||||||
99,South_M,Selfish,North_P,Generational,Refusal,0.0
|
|
||||||
99,South_M,Selfish,North_V,Generational,Refusal,0.0
|
|
||||||
99,South_N,Selfish,South_L,Nature,Refusal,0.0
|
|
||||||
99,South_N,Selfish,North_P,Generational,Refusal,0.0
|
|
||||||
99,South_N,Selfish,North_V,Generational,Refusal,0.0
|
|
||||||
99,South_O,Selfish,South_L,Nature,Refusal,0.0
|
|
||||||
99,South_O,Selfish,North_P,Generational,Refusal,0.0
|
|
||||||
99,South_O,Selfish,North_V,Generational,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_L,Nature,Refusal,0.0
|
|
||||||
99,South_M,Selfish,North_P,Generational,Refusal,0.0
|
|
||||||
99,South_M,Selfish,North_V,Generational,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_B,Nature,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_I,Nature,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_E,Nature,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_K,Nature,Refusal,0.0
|
|
||||||
99,South_N,Selfish,South_B,Nature,Refusal,0.0
|
|
||||||
99,South_N,Selfish,South_I,Nature,Refusal,0.0
|
|
||||||
99,South_N,Selfish,South_B,Nature,Refusal,0.0
|
|
||||||
99,South_N,Selfish,South_E,Nature,Refusal,0.0
|
|
||||||
99,South_N,Selfish,South_I,Nature,Refusal,0.0
|
|
||||||
99,South_N,Selfish,South_K,Nature,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_E,Nature,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_K,Nature,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_B,Nature,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_I,Nature,Refusal,0.0
|
|
||||||
99,South_N,Selfish,South_E,Nature,Refusal,0.0
|
|
||||||
99,South_N,Selfish,South_K,Nature,Refusal,0.0
|
|
||||||
99,South_O,Selfish,South_B,Nature,Refusal,0.0
|
|
||||||
99,South_O,Selfish,South_I,Nature,Refusal,0.0
|
|
||||||
99,South_O,Selfish,South_E,Nature,Refusal,0.0
|
|
||||||
99,South_O,Selfish,South_K,Nature,Refusal,0.0
|
|
||||||
99,South_O,Selfish,South_B,Nature,Refusal,0.0
|
|
||||||
99,South_O,Selfish,South_I,Nature,Refusal,0.0
|
|
||||||
99,South_O,Selfish,South_E,Nature,Refusal,0.0
|
|
||||||
99,South_O,Selfish,South_K,Nature,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_F,Nature,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_J,Nature,Refusal,0.0
|
|
||||||
99,South_O,Selfish,South_F,Nature,Refusal,0.0
|
|
||||||
99,South_O,Selfish,South_J,Nature,Refusal,0.0
|
|
||||||
99,South_O,Selfish,South_F,Nature,Refusal,0.0
|
|
||||||
99,South_O,Selfish,South_J,Nature,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_F,Nature,Refusal,0.0
|
|
||||||
99,South_M,Selfish,South_J,Nature,Refusal,0.0
|
|
||||||
99,South_N,Selfish,South_F,Nature,Refusal,0.0
|
|
||||||
99,South_N,Selfish,South_J,Nature,Refusal,0.0
|
|
||||||
99,South_N,Selfish,South_F,Nature,Refusal,0.0
|
|
||||||
99,South_N,Selfish,South_J,Nature,Refusal,0.0
|
|
||||||
100,South_M,Selfish,North_W,Generational,Refusal,0.0
|
|
||||||
100,South_O,Selfish,South_D,Nature,Refusal,0.0
|
|
||||||
100,South_O,Selfish,North_W,Generational,Refusal,0.0
|
|
||||||
100,South_O,Selfish,North_W,Generational,Refusal,0.0
|
|
||||||
100,South_M,Selfish,South_D,Nature,Refusal,0.0
|
|
||||||
100,South_M,Selfish,North_W,Generational,Refusal,0.0
|
|
||||||
100,South_M,Selfish,South_D,Nature,Refusal,0.0
|
|
||||||
100,South_O,Selfish,South_D,Nature,Refusal,0.0
|
|
||||||
100,South_N,Selfish,North_W,Generational,Refusal,0.0
|
|
||||||
100,South_N,Selfish,North_W,Generational,Refusal,0.0
|
|
||||||
100,South_N,Selfish,South_D,Nature,Refusal,0.0
|
|
||||||
100,South_N,Selfish,South_D,Nature,Refusal,0.0
|
|
||||||
100,South_A,Nature,South_G,Nature,Stone,3.0
|
|
||||||
100,South_D,Nature,North_T,Generational,Stone,3.0
|
|
||||||
100,South_E,Nature,South_C,Nature,Stone,3.0
|
|
||||||
100,South_A,Nature,North_R,Generational,Stone,3.0
|
|
||||||
100,South_I,Nature,South_O,Selfish,Stone,3.0
|
|
||||||
100,South_E,Nature,South_I,Nature,Stone,3.0
|
|
||||||
100,South_B,Nature,South_E,Nature,Stone,3.0
|
|
||||||
100,South_F,Nature,South_J,Nature,Stone,3.0
|
|
||||||
100,South_K,Nature,South_H,Nature,Stone,3.0
|
|
||||||
100,South_J,Nature,South_B,Nature,Stone,3.0
|
|
||||||
100,South_I,Nature,South_F,Nature,Stone,3.0
|
|
||||||
100,South_E,Nature,South_I,Nature,Stone,3.0
|
|
||||||
100,South_F,Nature,South_E,Nature,Stone,3.0
|
|
||||||
100,South_B,Nature,South_J,Nature,Stone,3.0
|
|
||||||
100,South_K,Nature,South_B,Nature,Stone,3.0
|
|
||||||
100,South_L,Nature,South_F,Nature,Stone,3.0
|
|
||||||
100,South_J,Nature,South_K,Nature,Stone,3.0
|
|
||||||
100,South_I,Nature,South_J,Nature,Stone,3.0
|
|
||||||
100,South_A,Nature,South_I,Nature,Stone,3.0
|
|
||||||
100,South_E,Nature,South_A,Nature,Stone,3.0
|
|
||||||
100,South_F,Nature,South_E,Nature,Stone,3.0
|
|
||||||
100,South_B,Nature,South_F,Nature,Stone,3.0
|
|
||||||
100,South_D,Nature,South_B,Nature,Stone,3.0
|
|
||||||
100,South_L,Nature,South_D,Nature,Stone,3.0
|
|
||||||
100,South_J,Nature,South_L,Nature,Stone,3.0
|
|
||||||
100,South_I,Nature,South_J,Nature,Stone,3.0
|
|
||||||
100,South_A,Nature,South_I,Nature,Stone,3.0
|
|
||||||
100,South_E,Nature,South_A,Nature,Stone,3.0
|
|
||||||
100,South_F,Nature,South_E,Nature,Stone,3.0
|
|
||||||
100,South_B,Nature,South_F,Nature,Stone,3.0
|
|
||||||
100,South_D,Nature,South_B,Nature,Stone,3.0
|
|
||||||
100,South_L,Nature,South_D,Nature,Stone,3.0
|
|
||||||
100,South_I,Nature,South_L,Nature,Stone,3.0
|
|
||||||
100,South_O,Selfish,South_G,Nature,Refusal,0.0
|
|
||||||
100,South_O,Selfish,South_G,Nature,Refusal,0.0
|
|
||||||
101,South_A,Nature,South_I,Nature,Stone,3.0
|
|
||||||
101,South_O,Selfish,South_H,Nature,Refusal,0.0
|
|
||||||
101,South_O,Selfish,North_T,Generational,Refusal,0.0
|
|
||||||
101,South_N,Selfish,North_X,Generational,Refusal,0.0
|
|
||||||
101,South_O,Selfish,South_H,Nature,Refusal,0.0
|
|
||||||
101,South_O,Selfish,North_T,Generational,Refusal,0.0
|
|
||||||
101,South_M,Selfish,North_S,Generational,Refusal,0.0
|
|
||||||
101,South_N,Selfish,North_S,Generational,Refusal,0.0
|
|
||||||
101,South_N,Selfish,North_S,Generational,Refusal,0.0
|
|
||||||
101,South_K,Nature,North_P,Generational,Stone,3.0
|
|
||||||
101,South_M,Selfish,North_X,Generational,Refusal,0.0
|
|
||||||
101,South_M,Selfish,North_X,Generational,Refusal,0.0
|
|
||||||
101,South_N,Selfish,South_G,Nature,Refusal,0.0
|
|
||||||
101,South_M,Selfish,North_T,Generational,Refusal,0.0
|
|
||||||
101,South_M,Selfish,South_H,Nature,Refusal,0.0
|
|
||||||
101,South_N,Selfish,South_G,Nature,Refusal,0.0
|
|
||||||
101,South_M,Selfish,North_T,Generational,Refusal,0.0
|
|
||||||
101,South_M,Selfish,South_H,Nature,Refusal,0.0
|
|
||||||
101,South_M,Selfish,North_S,Generational,Refusal,0.0
|
|
||||||
101,South_I,Nature,North_Y,Generational,Stone,3.0
|
|
||||||
101,South_O,Selfish,North_X,Generational,Refusal,0.0
|
|
||||||
101,South_O,Selfish,North_X,Generational,Refusal,0.0
|
|
||||||
101,South_O,Selfish,North_S,Generational,Refusal,0.0
|
|
||||||
101,South_O,Selfish,North_S,Generational,Refusal,0.0
|
|
||||||
101,South_M,Selfish,South_G,Nature,Refusal,0.0
|
101,South_M,Selfish,South_G,Nature,Refusal,0.0
|
||||||
101,South_N,Selfish,North_T,Generational,Refusal,0.0
|
101,South_M,Selfish,South_B,Nature,Refusal,0.0
|
||||||
101,South_N,Selfish,South_H,Nature,Refusal,0.0
|
101,South_M,Selfish,South_F,Nature,Refusal,0.0
|
||||||
101,South_M,Selfish,South_G,Nature,Refusal,0.0
|
101,South_M,Selfish,South_G,Nature,Refusal,0.0
|
||||||
101,South_N,Selfish,North_T,Generational,Refusal,0.0
|
101,South_M,Selfish,South_B,Nature,Refusal,0.0
|
||||||
101,South_N,Selfish,South_H,Nature,Refusal,0.0
|
102,South_N,Selfish,South_D,Nature,Refusal,0.0
|
||||||
101,South_N,Selfish,North_X,Generational,Refusal,0.0
|
102,South_N,Selfish,North_P,Generational,Refusal,0.0
|
||||||
101,South_K,Nature,North_X,Generational,Stone,3.0
|
102,South_O,Selfish,South_D,Nature,Refusal,0.0
|
||||||
101,South_O,Selfish,North_R,Generational,Refusal,0.0
|
102,South_O,Selfish,North_P,Generational,Refusal,0.0
|
||||||
101,South_M,Selfish,South_C,Nature,Refusal,0.0
|
102,South_N,Selfish,South_D,Nature,Refusal,0.0
|
||||||
101,South_E,Nature,South_M,Selfish,Stone,3.0
|
102,South_N,Selfish,North_P,Generational,Refusal,0.0
|
||||||
101,South_O,Selfish,North_R,Generational,Refusal,0.0
|
102,South_O,Selfish,South_D,Nature,Refusal,0.0
|
||||||
101,South_N,Selfish,South_C,Nature,Refusal,0.0
|
102,South_O,Selfish,North_P,Generational,Refusal,0.0
|
||||||
101,South_N,Selfish,South_C,Nature,Refusal,0.0
|
102,South_N,Selfish,South_A,Nature,Refusal,0.0
|
||||||
101,South_M,Selfish,South_C,Nature,Refusal,0.0
|
102,South_N,Selfish,South_I,Nature,Refusal,0.0
|
||||||
101,South_O,Selfish,South_C,Nature,Refusal,0.0
|
102,South_O,Selfish,South_A,Nature,Refusal,0.0
|
||||||
101,South_O,Selfish,South_C,Nature,Refusal,0.0
|
102,South_O,Selfish,South_I,Nature,Refusal,0.0
|
||||||
101,South_M,Selfish,North_R,Generational,Refusal,0.0
|
102,South_N,Selfish,South_A,Nature,Refusal,0.0
|
||||||
101,South_N,Selfish,North_R,Generational,Refusal,0.0
|
102,South_N,Selfish,South_I,Nature,Refusal,0.0
|
||||||
101,South_A,Nature,South_N,Selfish,Stone,3.0
|
102,South_O,Selfish,South_A,Nature,Refusal,0.0
|
||||||
101,South_N,Selfish,North_R,Generational,Refusal,0.0
|
102,South_O,Selfish,South_I,Nature,Refusal,0.0
|
||||||
101,South_M,Selfish,North_R,Generational,Refusal,0.0
|
102,South_N,Selfish,South_B,Nature,Refusal,0.0
|
||||||
101,South_O,Selfish,North_U,Generational,Refusal,0.0
|
102,South_N,Selfish,South_F,Nature,Refusal,0.0
|
||||||
101,South_G,Nature,North_U,Generational,Stone,3.0
|
102,South_N,Selfish,South_G,Nature,Refusal,0.0
|
||||||
101,South_O,Selfish,North_U,Generational,Refusal,0.0
|
102,South_O,Selfish,South_B,Nature,Refusal,0.0
|
||||||
101,South_M,Selfish,North_U,Generational,Refusal,0.0
|
102,South_O,Selfish,South_F,Nature,Refusal,0.0
|
||||||
101,South_N,Selfish,North_U,Generational,Refusal,0.0
|
102,South_O,Selfish,South_G,Nature,Refusal,0.0
|
||||||
101,South_N,Selfish,North_U,Generational,Refusal,0.0
|
102,South_N,Selfish,South_B,Nature,Refusal,0.0
|
||||||
101,South_M,Selfish,North_U,Generational,Refusal,0.0
|
102,South_N,Selfish,South_F,Nature,Refusal,0.0
|
||||||
102,South_A,Nature,North_S,Generational,Stone,3.0
|
102,South_N,Selfish,South_G,Nature,Refusal,0.0
|
||||||
102,South_F,Nature,North_Q,Generational,Stone,3.0
|
102,South_O,Selfish,South_B,Nature,Refusal,0.0
|
||||||
103,South_B,Nature,North_X,Generational,Stone,3.0
|
102,South_O,Selfish,South_F,Nature,Refusal,0.0
|
||||||
104,South_A,Nature,North_P,Generational,Stone,3.0
|
102,South_O,Selfish,South_G,Nature,Refusal,0.0
|
||||||
104,South_F,Nature,North_T,Generational,Stone,3.0
|
102,South_M,Selfish,North_P,Generational,Refusal,0.0
|
||||||
109,South_H,Nature,North_X,Generational,Stone,3.0
|
102,South_M,Selfish,South_D,Nature,Refusal,0.0
|
||||||
110,North_P,Generational,North_R,Generational,Stone,3.0
|
102,South_M,Selfish,North_P,Generational,Refusal,0.0
|
||||||
110,North_Q,Generational,North_S,Generational,Stone,3.0
|
102,South_M,Selfish,South_D,Nature,Refusal,0.0
|
||||||
110,South_A,Nature,North_U,Generational,Stone,3.0
|
102,South_N,Selfish,North_V,Generational,Refusal,0.0
|
||||||
110,South_I,Nature,North_Y,Generational,Stone,3.0
|
102,South_O,Selfish,North_V,Generational,Refusal,0.0
|
||||||
110,South_B,Nature,North_W,Generational,Stone,3.0
|
102,South_N,Selfish,North_V,Generational,Refusal,0.0
|
||||||
110,South_C,Nature,North_V,Generational,Stone,3.0
|
102,South_O,Selfish,North_V,Generational,Refusal,0.0
|
||||||
110,South_D,Nature,North_T,Generational,Stone,3.0
|
102,South_M,Selfish,North_S,Generational,Refusal,0.0
|
||||||
114,South_B,Nature,South_J,Nature,Stone,3.0
|
102,South_M,Selfish,North_U,Generational,Refusal,0.0
|
||||||
114,South_C,Nature,South_B,Nature,Stone,3.0
|
102,South_M,Selfish,North_S,Generational,Refusal,0.0
|
||||||
114,South_D,Nature,South_K,Nature,Stone,3.0
|
102,South_M,Selfish,North_U,Generational,Refusal,0.0
|
||||||
114,South_E,Nature,South_L,Nature,Stone,3.0
|
102,South_M,Selfish,South_A,Nature,Refusal,0.0
|
||||||
114,South_A,Nature,South_C,Nature,Stone,3.0
|
102,South_M,Selfish,South_I,Nature,Refusal,0.0
|
||||||
114,South_G,Nature,South_A,Nature,Stone,3.0
|
102,South_M,Selfish,South_A,Nature,Refusal,0.0
|
||||||
114,South_H,Nature,South_D,Nature,Stone,3.0
|
102,South_M,Selfish,South_I,Nature,Refusal,0.0
|
||||||
114,South_I,Nature,South_E,Nature,Stone,3.0
|
102,South_M,Selfish,North_V,Generational,Refusal,0.0
|
||||||
114,South_F,Nature,South_G,Nature,Stone,3.0
|
102,South_M,Selfish,North_V,Generational,Refusal,0.0
|
||||||
114,South_J,Nature,South_F,Nature,Stone,3.0
|
102,South_N,Selfish,North_S,Generational,Refusal,0.0
|
||||||
114,South_K,Nature,South_H,Nature,Stone,3.0
|
102,South_N,Selfish,North_U,Generational,Refusal,0.0
|
||||||
114,South_L,Nature,South_I,Nature,Stone,3.0
|
102,South_O,Selfish,North_S,Generational,Refusal,0.0
|
||||||
114,South_B,Nature,South_J,Nature,Stone,3.0
|
102,South_O,Selfish,North_U,Generational,Refusal,0.0
|
||||||
114,South_C,Nature,South_B,Nature,Stone,3.0
|
102,South_N,Selfish,North_S,Generational,Refusal,0.0
|
||||||
114,South_D,Nature,South_C,Nature,Stone,3.0
|
102,South_N,Selfish,North_U,Generational,Refusal,0.0
|
||||||
114,South_E,Nature,South_K,Nature,Stone,3.0
|
102,South_O,Selfish,North_S,Generational,Refusal,0.0
|
||||||
114,South_A,Nature,South_D,Nature,Stone,3.0
|
102,South_O,Selfish,North_U,Generational,Refusal,0.0
|
||||||
114,South_G,Nature,South_A,Nature,Stone,3.0
|
103,South_O,Selfish,South_H,Nature,Refusal,0.0
|
||||||
114,South_H,Nature,South_E,Nature,Stone,3.0
|
103,South_O,Selfish,South_J,Nature,Refusal,0.0
|
||||||
114,South_I,Nature,South_L,Nature,Stone,3.0
|
103,South_O,Selfish,North_B26,Generational,Refusal,0.0
|
||||||
114,South_F,Nature,South_G,Nature,Stone,3.0
|
103,South_N,Selfish,South_H,Nature,Refusal,0.0
|
||||||
114,South_J,Nature,South_F,Nature,Stone,3.0
|
103,South_N,Selfish,South_J,Nature,Refusal,0.0
|
||||||
114,South_K,Nature,South_H,Nature,Stone,3.0
|
103,South_N,Selfish,North_B26,Generational,Refusal,0.0
|
||||||
114,South_L,Nature,South_I,Nature,Stone,3.0
|
103,South_N,Selfish,South_H,Nature,Refusal,0.0
|
||||||
114,South_B,Nature,South_J,Nature,Stone,3.0
|
103,South_O,Selfish,South_J,Nature,Refusal,0.0
|
||||||
114,South_C,Nature,South_B,Nature,Stone,3.0
|
103,South_O,Selfish,North_B26,Generational,Refusal,0.0
|
||||||
114,South_D,Nature,South_C,Nature,Stone,3.0
|
103,South_O,Selfish,South_H,Nature,Refusal,0.0
|
||||||
114,South_E,Nature,South_K,Nature,Stone,3.0
|
103,South_N,Selfish,South_J,Nature,Refusal,0.0
|
||||||
114,South_A,Nature,South_D,Nature,Stone,3.0
|
103,South_N,Selfish,North_B26,Generational,Refusal,0.0
|
||||||
114,South_G,Nature,South_A,Nature,Stone,3.0
|
103,South_M,Selfish,North_Q,Generational,Refusal,0.0
|
||||||
114,South_H,Nature,South_E,Nature,Stone,3.0
|
103,South_M,Selfish,North_W,Generational,Refusal,0.0
|
||||||
114,South_I,Nature,South_L,Nature,Stone,3.0
|
103,South_M,Selfish,North_Q,Generational,Refusal,0.0
|
||||||
114,South_F,Nature,South_G,Nature,Stone,3.0
|
103,South_M,Selfish,North_W,Generational,Refusal,0.0
|
||||||
114,South_J,Nature,South_F,Nature,Stone,3.0
|
103,South_M,Selfish,South_H,Nature,Refusal,0.0
|
||||||
114,South_K,Nature,South_H,Nature,Stone,3.0
|
103,South_M,Selfish,South_J,Nature,Refusal,0.0
|
||||||
114,South_L,Nature,South_I,Nature,Stone,3.0
|
103,South_M,Selfish,North_B26,Generational,Refusal,0.0
|
||||||
114,South_B,Nature,South_J,Nature,Stone,3.0
|
103,South_M,Selfish,South_H,Nature,Refusal,0.0
|
||||||
114,South_C,Nature,South_B,Nature,Stone,3.0
|
103,South_M,Selfish,South_J,Nature,Refusal,0.0
|
||||||
114,South_D,Nature,South_C,Nature,Stone,3.0
|
103,South_M,Selfish,North_B26,Generational,Refusal,0.0
|
||||||
114,South_E,Nature,South_K,Nature,Stone,3.0
|
103,South_O,Selfish,North_Q,Generational,Refusal,0.0
|
||||||
114,South_A,Nature,South_D,Nature,Stone,3.0
|
103,South_O,Selfish,North_W,Generational,Refusal,0.0
|
||||||
114,South_G,Nature,South_A,Nature,Stone,3.0
|
103,South_N,Selfish,North_Q,Generational,Refusal,0.0
|
||||||
114,South_H,Nature,South_E,Nature,Stone,3.0
|
103,South_N,Selfish,North_W,Generational,Refusal,0.0
|
||||||
114,South_I,Nature,South_L,Nature,Stone,3.0
|
103,South_O,Selfish,North_Q,Generational,Refusal,0.0
|
||||||
114,South_F,Nature,South_G,Nature,Stone,3.0
|
103,South_N,Selfish,North_W,Generational,Refusal,0.0
|
||||||
114,South_J,Nature,South_F,Nature,Stone,3.0
|
103,South_N,Selfish,North_Q,Generational,Refusal,0.0
|
||||||
114,South_K,Nature,South_H,Nature,Stone,3.0
|
103,South_O,Selfish,North_W,Generational,Refusal,0.0
|
||||||
114,South_L,Nature,South_I,Nature,Stone,3.0
|
103,South_D,Nature,South_J,Nature,Stone,3.0
|
||||||
114,South_B,Nature,South_J,Nature,Stone,3.0
|
103,South_H,Nature,South_F,Nature,Stone,3.0
|
||||||
114,South_C,Nature,South_B,Nature,Stone,3.0
|
103,South_J,Nature,South_B,Nature,Stone,3.0
|
||||||
114,South_D,Nature,South_C,Nature,Stone,3.0
|
103,South_I,Nature,South_J,Nature,Stone,3.0
|
||||||
114,South_E,Nature,South_K,Nature,Stone,3.0
|
103,South_B,Nature,South_I,Nature,Stone,3.0
|
||||||
114,South_A,Nature,South_D,Nature,Stone,3.0
|
103,South_G,Nature,South_H,Nature,Stone,3.0
|
||||||
114,South_G,Nature,South_A,Nature,Stone,3.0
|
103,South_D,Nature,South_B,Nature,Stone,3.0
|
||||||
114,South_H,Nature,South_E,Nature,Stone,3.0
|
103,South_J,Nature,South_D,Nature,Stone,3.0
|
||||||
114,South_I,Nature,South_L,Nature,Stone,3.0
|
103,South_H,Nature,South_G,Nature,Stone,3.0
|
||||||
114,South_F,Nature,South_G,Nature,Stone,3.0
|
103,South_I,Nature,South_H,Nature,Stone,3.0
|
||||||
114,South_J,Nature,South_F,Nature,Stone,3.0
|
103,South_B,Nature,South_J,Nature,Stone,3.0
|
||||||
114,South_K,Nature,South_H,Nature,Stone,3.0
|
103,South_D,Nature,South_B,Nature,Stone,3.0
|
||||||
114,South_L,Nature,South_I,Nature,Stone,3.0
|
103,South_J,Nature,South_D,Nature,Stone,3.0
|
||||||
114,South_B,Nature,South_J,Nature,Stone,3.0
|
103,South_H,Nature,South_I,Nature,Stone,3.0
|
||||||
114,South_C,Nature,South_B,Nature,Stone,3.0
|
103,South_B,Nature,South_H,Nature,Stone,3.0
|
||||||
114,South_D,Nature,South_C,Nature,Stone,3.0
|
103,South_I,Nature,South_J,Nature,Stone,3.0
|
||||||
114,South_E,Nature,South_D,Nature,Stone,3.0
|
103,South_D,Nature,South_B,Nature,Stone,3.0
|
||||||
114,South_A,Nature,South_K,Nature,Stone,3.0
|
103,South_M,Selfish,North_E29,Generational,Refusal,0.0
|
||||||
114,South_G,Nature,South_A,Nature,Stone,3.0
|
103,South_M,Selfish,North_E29,Generational,Refusal,0.0
|
||||||
114,South_H,Nature,South_E,Nature,Stone,3.0
|
103,South_J,Nature,South_D,Nature,Stone,3.0
|
||||||
114,South_I,Nature,South_L,Nature,Stone,3.0
|
103,South_H,Nature,South_I,Nature,Stone,3.0
|
||||||
114,South_F,Nature,South_G,Nature,Stone,3.0
|
103,South_B,Nature,South_H,Nature,Stone,3.0
|
||||||
114,South_J,Nature,South_F,Nature,Stone,3.0
|
103,South_I,Nature,South_B,Nature,Stone,3.0
|
||||||
114,South_K,Nature,South_H,Nature,Stone,3.0
|
103,South_D,Nature,South_I,Nature,Stone,3.0
|
||||||
114,South_L,Nature,South_I,Nature,Stone,3.0
|
103,South_J,Nature,South_D,Nature,Stone,3.0
|
||||||
114,South_B,Nature,South_J,Nature,Stone,3.0
|
103,South_B,Nature,South_J,Nature,Stone,3.0
|
||||||
114,South_C,Nature,South_B,Nature,Stone,3.0
|
103,South_I,Nature,South_B,Nature,Stone,3.0
|
||||||
114,South_D,Nature,South_C,Nature,Stone,3.0
|
103,South_D,Nature,South_I,Nature,Stone,3.0
|
||||||
114,South_A,Nature,South_K,Nature,Stone,3.0
|
103,South_F,Nature,North_B26,Generational,Stone,3.0
|
||||||
114,South_E,Nature,South_A,Nature,Stone,3.0
|
103,North_S,Generational,South_A,Nature,Stone,3.0
|
||||||
114,South_G,Nature,South_D,Nature,Stone,3.0
|
103,North_V,Generational,South_F,Nature,Stone,3.0
|
||||||
114,South_H,Nature,South_E,Nature,Stone,3.0
|
103,South_J,Nature,South_D,Nature,Stone,3.0
|
||||||
114,South_I,Nature,South_L,Nature,Stone,3.0
|
103,South_N,Selfish,North_E29,Generational,Refusal,0.0
|
||||||
114,South_F,Nature,South_G,Nature,Stone,3.0
|
103,South_N,Selfish,North_E29,Generational,Refusal,0.0
|
||||||
114,South_J,Nature,South_F,Nature,Stone,3.0
|
103,South_B,Nature,South_J,Nature,Stone,3.0
|
||||||
114,South_K,Nature,South_H,Nature,Stone,3.0
|
103,South_I,Nature,South_B,Nature,Stone,3.0
|
||||||
114,South_L,Nature,South_I,Nature,Stone,3.0
|
103,South_D,Nature,South_I,Nature,Stone,3.0
|
||||||
114,South_B,Nature,South_J,Nature,Stone,3.0
|
103,South_J,Nature,South_D,Nature,Stone,3.0
|
||||||
114,South_C,Nature,South_B,Nature,Stone,3.0
|
103,North_Q,Generational,South_G,Nature,Stone,3.0
|
||||||
114,South_A,Nature,South_K,Nature,Stone,3.0
|
103,South_B,Nature,South_J,Nature,Stone,3.0
|
||||||
114,South_D,Nature,South_C,Nature,Stone,3.0
|
103,South_I,Nature,South_B,Nature,Stone,3.0
|
||||||
114,South_E,Nature,South_A,Nature,Stone,3.0
|
103,South_D,Nature,South_I,Nature,Stone,3.0
|
||||||
114,South_G,Nature,South_D,Nature,Stone,3.0
|
103,South_H,Nature,South_L,Nature,Stone,3.0
|
||||||
114,South_H,Nature,South_E,Nature,Stone,3.0
|
103,South_J,Nature,South_D,Nature,Stone,3.0
|
||||||
114,South_I,Nature,South_L,Nature,Stone,3.0
|
103,South_B,Nature,South_J,Nature,Stone,3.0
|
||||||
114,South_F,Nature,South_G,Nature,Stone,3.0
|
103,South_I,Nature,South_B,Nature,Stone,3.0
|
||||||
114,South_J,Nature,South_F,Nature,Stone,3.0
|
103,South_D,Nature,South_I,Nature,Stone,3.0
|
||||||
114,South_K,Nature,South_H,Nature,Stone,3.0
|
103,South_J,Nature,South_D,Nature,Stone,3.0
|
||||||
114,South_L,Nature,South_I,Nature,Stone,3.0
|
103,South_N,Selfish,South_E,Nature,Refusal,0.0
|
||||||
114,South_B,Nature,South_J,Nature,Stone,3.0
|
103,South_N,Selfish,South_E,Nature,Refusal,0.0
|
||||||
114,South_A,Nature,South_K,Nature,Stone,3.0
|
103,South_B,Nature,South_J,Nature,Stone,3.0
|
||||||
114,South_C,Nature,South_B,Nature,Stone,3.0
|
103,South_I,Nature,South_B,Nature,Stone,3.0
|
||||||
114,South_D,Nature,South_A,Nature,Stone,3.0
|
103,South_J,Nature,South_I,Nature,Stone,3.0
|
||||||
114,South_E,Nature,South_C,Nature,Stone,3.0
|
103,South_O,Selfish,North_E29,Generational,Refusal,0.0
|
||||||
114,South_G,Nature,South_D,Nature,Stone,3.0
|
103,South_O,Selfish,North_E29,Generational,Refusal,0.0
|
||||||
114,South_H,Nature,South_E,Nature,Stone,3.0
|
103,South_B,Nature,South_J,Nature,Stone,3.0
|
||||||
114,South_I,Nature,South_L,Nature,Stone,3.0
|
103,South_D,Nature,North_E29,Generational,Stone,3.0
|
||||||
114,South_F,Nature,South_G,Nature,Stone,3.0
|
103,South_A,Nature,South_B,Nature,Stone,3.0
|
||||||
114,South_J,Nature,South_F,Nature,Stone,3.0
|
103,South_I,Nature,South_A,Nature,Stone,3.0
|
||||||
114,South_K,Nature,South_H,Nature,Stone,3.0
|
103,North_Q,Generational,South_I,Nature,Stone,3.0
|
||||||
114,South_L,Nature,South_I,Nature,Stone,3.0
|
103,North_U,Generational,North_C27,Generational,Stone,3.0
|
||||||
114,South_A,Nature,South_J,Nature,Stone,3.0
|
103,South_M,Selfish,North_T,Generational,Refusal,0.0
|
||||||
114,South_B,Nature,South_K,Nature,Stone,3.0
|
103,South_M,Selfish,North_T,Generational,Refusal,0.0
|
||||||
114,South_C,Nature,South_A,Nature,Stone,3.0
|
103,South_O,Selfish,South_E,Nature,Refusal,0.0
|
||||||
114,South_D,Nature,South_B,Nature,Stone,3.0
|
103,South_O,Selfish,South_E,Nature,Refusal,0.0
|
||||||
114,South_E,Nature,South_C,Nature,Stone,3.0
|
103,North_S,Generational,South_D,Nature,Stone,3.0
|
||||||
114,South_G,Nature,South_D,Nature,Stone,3.0
|
103,South_M,Selfish,South_D28,Nature,Refusal,0.0
|
||||||
114,South_H,Nature,South_E,Nature,Stone,3.0
|
103,South_M,Selfish,South_D28,Nature,Refusal,0.0
|
||||||
114,South_I,Nature,South_L,Nature,Stone,3.0
|
103,South_M,Selfish,South_K,Nature,Refusal,0.0
|
||||||
114,South_F,Nature,South_G,Nature,Stone,3.0
|
103,South_M,Selfish,South_K,Nature,Refusal,0.0
|
||||||
114,South_J,Nature,South_F,Nature,Stone,3.0
|
103,South_M,Selfish,South_E,Nature,Refusal,0.0
|
||||||
114,South_K,Nature,South_H,Nature,Stone,3.0
|
103,South_O,Selfish,North_T,Generational,Refusal,0.0
|
||||||
114,South_L,Nature,South_I,Nature,Stone,3.0
|
103,South_M,Selfish,South_E,Nature,Refusal,0.0
|
||||||
114,South_A,Nature,South_J,Nature,Stone,3.0
|
103,South_O,Selfish,North_T,Generational,Refusal,0.0
|
||||||
114,South_B,Nature,South_K,Nature,Stone,3.0
|
103,North_B26,Generational,South_O,Selfish,Stone,3.0
|
||||||
114,South_C,Nature,South_A,Nature,Stone,3.0
|
103,South_O,Selfish,South_D28,Nature,Refusal,0.0
|
||||||
114,South_D,Nature,South_B,Nature,Stone,3.0
|
103,South_O,Selfish,South_D28,Nature,Refusal,0.0
|
||||||
114,South_E,Nature,South_C,Nature,Stone,3.0
|
103,South_O,Selfish,South_K,Nature,Refusal,0.0
|
||||||
114,South_G,Nature,South_D,Nature,Stone,3.0
|
103,South_O,Selfish,South_K,Nature,Refusal,0.0
|
||||||
114,South_H,Nature,South_E,Nature,Stone,3.0
|
104,South_E,Nature,South_K,Nature,Stone,3.0
|
||||||
114,South_I,Nature,South_L,Nature,Stone,3.0
|
104,South_J,Nature,South_D28,Nature,Stone,3.0
|
||||||
114,South_F,Nature,South_G,Nature,Stone,3.0
|
104,South_O,Selfish,North_C27,Generational,Refusal,0.0
|
||||||
114,South_J,Nature,South_F,Nature,Stone,3.0
|
104,South_M,Selfish,North_C27,Generational,Refusal,0.0
|
||||||
114,South_K,Nature,South_H,Nature,Stone,3.0
|
104,South_N,Selfish,South_D28,Nature,Refusal,0.0
|
||||||
114,South_L,Nature,South_I,Nature,Stone,3.0
|
104,South_M,Selfish,North_C27,Generational,Refusal,0.0
|
||||||
114,South_A,Nature,South_J,Nature,Stone,3.0
|
104,South_N,Selfish,South_D28,Nature,Refusal,0.0
|
||||||
114,South_B,Nature,South_K,Nature,Stone,3.0
|
104,South_O,Selfish,North_C27,Generational,Refusal,0.0
|
||||||
114,South_C,Nature,South_A,Nature,Stone,3.0
|
104,South_N,Selfish,South_K,Nature,Refusal,0.0
|
||||||
114,South_D,Nature,South_B,Nature,Stone,3.0
|
104,South_N,Selfish,South_K,Nature,Refusal,0.0
|
||||||
114,South_E,Nature,South_C,Nature,Stone,3.0
|
104,South_N,Selfish,North_C27,Generational,Refusal,0.0
|
||||||
114,South_G,Nature,South_D,Nature,Stone,3.0
|
104,South_N,Selfish,North_C27,Generational,Refusal,0.0
|
||||||
114,South_H,Nature,South_E,Nature,Stone,3.0
|
104,South_F,Nature,North_F30,Generational,Stone,3.0
|
||||||
114,South_I,Nature,South_L,Nature,Stone,3.0
|
104,South_N,Selfish,South_L,Nature,Refusal,0.0
|
||||||
114,South_F,Nature,South_G,Nature,Stone,3.0
|
104,South_N,Selfish,South_L,Nature,Refusal,0.0
|
||||||
114,South_J,Nature,South_F,Nature,Stone,3.0
|
104,South_F,Nature,South_E,Nature,Stone,3.0
|
||||||
114,South_K,Nature,South_H,Nature,Stone,3.0
|
104,South_O,Selfish,South_L,Nature,Refusal,0.0
|
||||||
114,South_L,Nature,South_I,Nature,Stone,3.0
|
104,South_O,Selfish,South_L,Nature,Refusal,0.0
|
||||||
114,South_A,Nature,South_J,Nature,Stone,3.0
|
104,South_D28,Nature,South_J,Nature,Stone,3.0
|
||||||
114,South_B,Nature,South_K,Nature,Stone,3.0
|
104,South_A,Nature,South_K,Nature,Stone,3.0
|
||||||
114,South_C,Nature,South_A,Nature,Stone,3.0
|
104,South_E,Nature,South_A,Nature,Stone,3.0
|
||||||
114,South_D,Nature,South_B,Nature,Stone,3.0
|
104,South_D,Nature,South_E,Nature,Stone,3.0
|
||||||
114,South_E,Nature,South_C,Nature,Stone,3.0
|
104,South_K,Nature,South_D,Nature,Stone,3.0
|
||||||
114,South_G,Nature,South_D,Nature,Stone,3.0
|
104,South_D28,Nature,South_J,Nature,Stone,3.0
|
||||||
114,South_H,Nature,South_E,Nature,Stone,3.0
|
104,South_G,Nature,South_K,Nature,Stone,3.0
|
||||||
114,South_I,Nature,South_L,Nature,Stone,3.0
|
104,South_H,Nature,South_G,Nature,Stone,3.0
|
||||||
114,South_F,Nature,South_G,Nature,Stone,3.0
|
104,South_A,Nature,South_H,Nature,Stone,3.0
|
||||||
114,South_J,Nature,South_F,Nature,Stone,3.0
|
104,South_B,Nature,South_A,Nature,Stone,3.0
|
||||||
114,South_K,Nature,South_H,Nature,Stone,3.0
|
104,South_E,Nature,South_B,Nature,Stone,3.0
|
||||||
114,South_L,Nature,South_I,Nature,Stone,3.0
|
104,South_I,Nature,South_E,Nature,Stone,3.0
|
||||||
114,South_A,Nature,South_J,Nature,Stone,3.0
|
104,South_D,Nature,South_I,Nature,Stone,3.0
|
||||||
114,South_B,Nature,South_K,Nature,Stone,3.0
|
104,South_K,Nature,South_D,Nature,Stone,3.0
|
||||||
114,South_C,Nature,South_A,Nature,Stone,3.0
|
104,South_G,Nature,South_J,Nature,Stone,3.0
|
||||||
114,South_D,Nature,South_B,Nature,Stone,3.0
|
104,South_D28,Nature,South_K,Nature,Stone,3.0
|
||||||
114,South_E,Nature,South_C,Nature,Stone,3.0
|
104,South_H,Nature,South_G,Nature,Stone,3.0
|
||||||
114,South_G,Nature,South_D,Nature,Stone,3.0
|
104,South_A,Nature,South_H,Nature,Stone,3.0
|
||||||
114,South_H,Nature,South_E,Nature,Stone,3.0
|
104,South_B,Nature,South_A,Nature,Stone,3.0
|
||||||
114,South_I,Nature,South_L,Nature,Stone,3.0
|
104,South_E,Nature,South_B,Nature,Stone,3.0
|
||||||
114,South_F,Nature,South_G,Nature,Stone,3.0
|
104,South_I,Nature,South_E,Nature,Stone,3.0
|
||||||
114,South_J,Nature,South_F,Nature,Stone,3.0
|
104,South_D,Nature,South_I,Nature,Stone,3.0
|
||||||
114,South_K,Nature,South_H,Nature,Stone,3.0
|
104,South_J,Nature,South_D28,Nature,Stone,3.0
|
||||||
114,South_L,Nature,South_I,Nature,Stone,3.0
|
104,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
114,South_A,Nature,South_J,Nature,Stone,3.0
|
104,South_K,Nature,South_J,Nature,Stone,3.0
|
||||||
114,South_B,Nature,South_K,Nature,Stone,3.0
|
104,South_D28,Nature,South_G,Nature,Stone,3.0
|
||||||
114,South_C,Nature,South_A,Nature,Stone,3.0
|
104,South_H,Nature,South_K,Nature,Stone,3.0
|
||||||
114,South_D,Nature,South_B,Nature,Stone,3.0
|
104,South_A,Nature,South_H,Nature,Stone,3.0
|
||||||
114,South_E,Nature,South_C,Nature,Stone,3.0
|
104,South_B,Nature,South_A,Nature,Stone,3.0
|
||||||
114,South_G,Nature,South_D,Nature,Stone,3.0
|
104,South_E,Nature,South_B,Nature,Stone,3.0
|
||||||
114,South_H,Nature,South_E,Nature,Stone,3.0
|
104,South_I,Nature,South_E,Nature,Stone,3.0
|
||||||
114,South_I,Nature,South_L,Nature,Stone,3.0
|
104,South_F,Nature,South_D28,Nature,Stone,3.0
|
||||||
114,South_F,Nature,South_G,Nature,Stone,3.0
|
104,South_D,Nature,South_F,Nature,Stone,3.0
|
||||||
114,South_J,Nature,South_F,Nature,Stone,3.0
|
104,South_J,Nature,South_I,Nature,Stone,3.0
|
||||||
114,South_K,Nature,South_H,Nature,Stone,3.0
|
104,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
114,South_L,Nature,South_I,Nature,Stone,3.0
|
104,South_K,Nature,South_G,Nature,Stone,3.0
|
||||||
114,South_A,Nature,South_J,Nature,Stone,3.0
|
104,South_H,Nature,South_J,Nature,Stone,3.0
|
||||||
114,South_B,Nature,South_K,Nature,Stone,3.0
|
104,South_D28,Nature,South_K,Nature,Stone,3.0
|
||||||
114,South_C,Nature,South_A,Nature,Stone,3.0
|
104,South_A,Nature,South_H,Nature,Stone,3.0
|
||||||
114,South_D,Nature,South_B,Nature,Stone,3.0
|
104,South_B,Nature,South_A,Nature,Stone,3.0
|
||||||
114,South_E,Nature,South_C,Nature,Stone,3.0
|
104,South_E,Nature,South_D28,Nature,Stone,3.0
|
||||||
114,South_G,Nature,South_D,Nature,Stone,3.0
|
104,South_I,Nature,South_B,Nature,Stone,3.0
|
||||||
114,South_H,Nature,South_E,Nature,Stone,3.0
|
104,South_F,Nature,South_E,Nature,Stone,3.0
|
||||||
114,South_I,Nature,South_L,Nature,Stone,3.0
|
104,South_D,Nature,South_F,Nature,Stone,3.0
|
||||||
115,South_F,Nature,South_G,Nature,Stone,3.0
|
104,South_J,Nature,South_I,Nature,Stone,3.0
|
||||||
115,South_J,Nature,South_F,Nature,Stone,3.0
|
104,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
116,South_K,Nature,South_D,Nature,Stone,3.0
|
104,South_K,Nature,South_G,Nature,Stone,3.0
|
||||||
116,South_A,Nature,South_E,Nature,Stone,3.0
|
104,South_H,Nature,South_J,Nature,Stone,3.0
|
||||||
116,South_B,Nature,South_J,Nature,Stone,3.0
|
104,South_D28,Nature,South_H,Nature,Stone,3.0
|
||||||
116,South_G,Nature,South_K,Nature,Stone,3.0
|
104,South_A,Nature,South_K,Nature,Stone,3.0
|
||||||
116,South_C,Nature,South_A,Nature,Stone,3.0
|
104,South_B,Nature,South_A,Nature,Stone,3.0
|
||||||
116,South_H,Nature,South_B,Nature,Stone,3.0
|
104,South_E,Nature,South_D28,Nature,Stone,3.0
|
||||||
116,South_I,Nature,South_G,Nature,Stone,3.0
|
104,South_I,Nature,South_B,Nature,Stone,3.0
|
||||||
116,South_F,Nature,South_C,Nature,Stone,3.0
|
104,South_F,Nature,South_E,Nature,Stone,3.0
|
||||||
116,South_D,Nature,South_F,Nature,Stone,3.0
|
104,South_D,Nature,South_F,Nature,Stone,3.0
|
||||||
123,North_Q,Generational,North_U,Generational,Stone,3.0
|
104,South_J,Nature,South_I,Nature,Stone,3.0
|
||||||
127,North_Q,Generational,North_T,Generational,Stone,3.0
|
104,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
127,North_P,Generational,South_A,Nature,Stone,3.0
|
104,South_K,Nature,South_G,Nature,Stone,3.0
|
||||||
|
104,South_H,Nature,South_J,Nature,Stone,3.0
|
||||||
|
104,South_A,Nature,South_H,Nature,Stone,3.0
|
||||||
|
104,South_D28,Nature,South_K,Nature,Stone,3.0
|
||||||
|
104,South_B,Nature,South_A,Nature,Stone,3.0
|
||||||
|
104,South_E,Nature,South_D28,Nature,Stone,3.0
|
||||||
|
104,South_I,Nature,South_B,Nature,Stone,3.0
|
||||||
|
104,South_F,Nature,South_E,Nature,Stone,3.0
|
||||||
|
104,South_D,Nature,South_I,Nature,Stone,3.0
|
||||||
|
104,South_J,Nature,South_F,Nature,Stone,3.0
|
||||||
|
104,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
104,South_K,Nature,South_G,Nature,Stone,3.0
|
||||||
|
104,South_H,Nature,South_J,Nature,Stone,3.0
|
||||||
|
104,South_A,Nature,South_H,Nature,Stone,3.0
|
||||||
|
104,South_D28,Nature,South_A,Nature,Stone,3.0
|
||||||
|
104,South_B,Nature,South_K,Nature,Stone,3.0
|
||||||
|
104,South_E,Nature,South_D28,Nature,Stone,3.0
|
||||||
|
104,South_I,Nature,South_B,Nature,Stone,3.0
|
||||||
|
104,South_D,Nature,South_E,Nature,Stone,3.0
|
||||||
|
104,South_F,Nature,South_I,Nature,Stone,3.0
|
||||||
|
104,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
104,South_K,Nature,South_F,Nature,Stone,3.0
|
||||||
|
104,South_H,Nature,South_G,Nature,Stone,3.0
|
||||||
|
104,South_A,Nature,South_H,Nature,Stone,3.0
|
||||||
|
104,South_D28,Nature,South_A,Nature,Stone,3.0
|
||||||
|
104,South_M,Selfish,South_L,Nature,Refusal,0.0
|
||||||
|
104,South_M,Selfish,South_L,Nature,Refusal,0.0
|
||||||
|
104,South_B,Nature,South_K,Nature,Stone,3.0
|
||||||
|
104,South_E,Nature,South_D28,Nature,Stone,3.0
|
||||||
|
104,South_I,Nature,South_B,Nature,Stone,3.0
|
||||||
|
104,South_D,Nature,South_E,Nature,Stone,3.0
|
||||||
|
104,South_F,Nature,South_D,Nature,Stone,3.0
|
||||||
|
104,South_J,Nature,South_I,Nature,Stone,3.0
|
||||||
|
104,South_G,Nature,South_F,Nature,Stone,3.0
|
||||||
|
104,South_K,Nature,South_G,Nature,Stone,3.0
|
||||||
|
104,South_H,Nature,South_J,Nature,Stone,3.0
|
||||||
|
104,South_A,Nature,South_H,Nature,Stone,3.0
|
||||||
|
104,South_D28,Nature,South_A,Nature,Stone,3.0
|
||||||
|
104,South_B,Nature,South_K,Nature,Stone,3.0
|
||||||
|
104,South_E,Nature,South_D28,Nature,Stone,3.0
|
||||||
|
104,South_I,Nature,South_B,Nature,Stone,3.0
|
||||||
|
104,South_D,Nature,South_E,Nature,Stone,3.0
|
||||||
|
105,South_F,Nature,South_I,Nature,Stone,3.0
|
||||||
|
105,South_N,Selfish,North_F30,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,North_F30,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,North_F30,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_E,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_F,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_G,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_H,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_I,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_K,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_L,Nature,Refusal,0.0
|
||||||
|
105,South_N,Selfish,North_F30,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_A,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_B,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_F,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_A,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_B,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_E,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_G,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_H,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_I,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_K,Nature,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,South_L,Nature,Refusal,0.0
|
||||||
|
105,South_O,Selfish,North_F30,Generational,Refusal,0.0
|
||||||
|
105,South_O,Selfish,North_F30,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,North_P,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,North_P,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,North_S,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,North_W,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,North_B26,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,North_C27,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,North_E29,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,North_S,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,North_W,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,North_B26,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,North_C27,Generational,Refusal,0.0
|
||||||
|
105,South_G31,Selfish,North_E29,Generational,Refusal,0.0
|
||||||
|
106,South_H,Nature,South_G31,Selfish,Stone,3.0
|
||||||
|
107,South_A,Nature,South_H32,Nature,Stone,3.0
|
||||||
|
108,North_Q,Generational,South_I33,Selfish,Stone,3.0
|
||||||
|
108,South_G31,Selfish,North_Q,Generational,Refusal,0.0
|
||||||
|
108,South_G31,Selfish,North_Q,Generational,Refusal,0.0
|
||||||
|
109,South_G31,Selfish,South_I33,Selfish,Refusal,0.0
|
||||||
|
109,South_O,Selfish,South_I33,Selfish,Refusal,0.0
|
||||||
|
109,South_G31,Selfish,South_I33,Selfish,Refusal,0.0
|
||||||
|
109,South_O,Selfish,South_I33,Selfish,Refusal,0.0
|
||||||
|
117,South_J,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_J,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_J,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_J,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_J,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_J,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_A,Nature,South_J,Nature,Stone,3.0
|
||||||
|
117,South_F,Nature,South_A,Nature,Stone,3.0
|
||||||
|
117,South_L,Nature,South_I,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_F,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_J,Nature,South_L,Nature,Stone,3.0
|
||||||
|
117,South_F,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_I,Nature,South_J,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_F,Nature,Stone,3.0
|
||||||
|
117,South_K,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_L,Nature,South_I,Nature,Stone,3.0
|
||||||
|
117,South_A,Nature,South_K,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_A,Nature,Stone,3.0
|
||||||
|
117,South_D28,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_H32,Nature,South_L,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_D28,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_J,Nature,South_H32,Nature,Stone,3.0
|
||||||
|
117,South_F,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_I,Nature,South_J,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_F,Nature,Stone,3.0
|
||||||
|
117,South_K,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_L,Nature,South_I,Nature,Stone,3.0
|
||||||
|
117,South_A,Nature,South_K,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_A,Nature,Stone,3.0
|
||||||
|
117,South_D28,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_H32,Nature,South_L,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_D28,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_J,Nature,South_H32,Nature,Stone,3.0
|
||||||
|
117,South_F,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_I,Nature,South_J,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_F,Nature,Stone,3.0
|
||||||
|
117,South_K,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_L,Nature,South_I,Nature,Stone,3.0
|
||||||
|
117,South_A,Nature,South_K,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_L,Nature,Stone,3.0
|
||||||
|
117,South_D28,Nature,South_A,Nature,Stone,3.0
|
||||||
|
117,South_H32,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_D28,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_J,Nature,South_H32,Nature,Stone,3.0
|
||||||
|
117,South_F,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_I,Nature,South_J,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_F,Nature,Stone,3.0
|
||||||
|
117,South_K,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_L,Nature,South_I,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_K,Nature,Stone,3.0
|
||||||
|
117,South_A,Nature,South_L,Nature,Stone,3.0
|
||||||
|
117,South_D28,Nature,South_A,Nature,Stone,3.0
|
||||||
|
117,South_H32,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_D28,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_J,Nature,South_H32,Nature,Stone,3.0
|
||||||
|
117,South_F,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_I,Nature,South_J,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_F,Nature,Stone,3.0
|
||||||
|
117,South_K,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_L,Nature,South_I,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_K,Nature,Stone,3.0
|
||||||
|
117,South_A,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_D28,Nature,South_A,Nature,Stone,3.0
|
||||||
|
117,South_H32,Nature,South_L,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_D28,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_J,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_F,Nature,South_J,Nature,Stone,3.0
|
||||||
|
117,South_I,Nature,South_H32,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_F,Nature,Stone,3.0
|
||||||
|
117,South_K,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_L,Nature,South_I,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_K,Nature,Stone,3.0
|
||||||
|
117,South_A,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_D28,Nature,South_A,Nature,Stone,3.0
|
||||||
|
117,South_H32,Nature,South_L,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_D28,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_J,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_F,Nature,South_J,Nature,Stone,3.0
|
||||||
|
117,South_I,Nature,South_H32,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_F,Nature,Stone,3.0
|
||||||
|
117,South_K,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_L,Nature,South_I,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_K,Nature,Stone,3.0
|
||||||
|
117,South_A,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_D28,Nature,South_A,Nature,Stone,3.0
|
||||||
|
117,South_H32,Nature,South_L,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_D28,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_J,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_F,Nature,South_J,Nature,Stone,3.0
|
||||||
|
117,South_I,Nature,South_H32,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_F,Nature,Stone,3.0
|
||||||
|
117,South_K,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_L,Nature,South_I,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_K,Nature,Stone,3.0
|
||||||
|
117,South_A,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_D28,Nature,South_A,Nature,Stone,3.0
|
||||||
|
117,South_H32,Nature,South_L,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_D28,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_J,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_F,Nature,South_J,Nature,Stone,3.0
|
||||||
|
117,South_I,Nature,South_H32,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_F,Nature,Stone,3.0
|
||||||
|
117,South_K,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_L,Nature,South_I,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_K,Nature,Stone,3.0
|
||||||
|
117,South_A,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_D28,Nature,South_A,Nature,Stone,3.0
|
||||||
|
117,South_H32,Nature,South_L,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_D28,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_J,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_F,Nature,South_J,Nature,Stone,3.0
|
||||||
|
117,South_I,Nature,South_H32,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_F,Nature,Stone,3.0
|
||||||
|
117,South_K,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_L,Nature,South_I,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_K,Nature,Stone,3.0
|
||||||
|
117,South_A,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_D28,Nature,South_A,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_L,Nature,Stone,3.0
|
||||||
|
117,South_H32,Nature,South_D28,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_J,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,South_F,Nature,South_J,Nature,Stone,3.0
|
||||||
|
117,South_I,Nature,South_H32,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_F,Nature,Stone,3.0
|
||||||
|
117,South_K,Nature,South_H,Nature,Stone,3.0
|
||||||
|
117,South_L,Nature,South_I,Nature,Stone,3.0
|
||||||
|
117,South_B,Nature,South_K,Nature,Stone,3.0
|
||||||
|
117,South_A,Nature,South_B,Nature,Stone,3.0
|
||||||
|
117,South_D28,Nature,South_A,Nature,Stone,3.0
|
||||||
|
117,South_D,Nature,South_L,Nature,Stone,3.0
|
||||||
|
117,South_H32,Nature,South_D,Nature,Stone,3.0
|
||||||
|
117,South_G,Nature,South_D28,Nature,Stone,3.0
|
||||||
|
117,South_J,Nature,South_G,Nature,Stone,3.0
|
||||||
|
117,North_E29,Generational,South_J,Nature,Stone,3.0
|
||||||
|
117,South_F,Nature,South_H32,Nature,Stone,3.0
|
||||||
|
117,South_H,Nature,South_F,Nature,Stone,3.0
|
||||||
|
117,North_S,Generational,South_H,Nature,Stone,3.0
|
||||||
|
117,North_B26,Generational,South_I,Nature,Stone,3.0
|
||||||
|
118,North_V,Generational,South_J34,Nature,Stone,3.0
|
||||||
|
118,South_L,Nature,South_K,Nature,Stone,3.0
|
||||||
|
119,South_A,Nature,North_Q,Generational,Stone,3.0
|
||||||
|
121,South_D28,Nature,North_U,Generational,Stone,3.0
|
||||||
|
121,South_D28,Nature,North_C27,Generational,Stone,3.0
|
||||||
|
122,North_E29,Generational,North_P,Generational,Stone,3.0
|
||||||
|
122,South_A,Nature,South_K35,Nature,Stone,3.0
|
||||||
|
122,North_B26,Generational,North_F30,Generational,Stone,3.0
|
||||||
|
123,South_H32,Nature,North_W,Generational,Stone,3.0
|
||||||
|
123,South_L,Nature,North_L36,Generational,Stone,3.0
|
||||||
|
124,South_D,Nature,South_M37,Nature,Stone,3.0
|
||||||
|
125,South_L,Nature,North_U,Generational,Stone,3.0
|
||||||
|
127,South_G,Nature,South_N38,Nature,Food,3.0
|
||||||
|
148,South_J,Nature,North_U,Generational,Stone,3.0
|
||||||
|
152,South_H32,Nature,South_O39,Nature,Stone,3.0
|
||||||
|
155,South_A,Nature,North_Q41,Generational,Stone,3.0
|
||||||
|
157,South_J34,Nature,South_N38,Nature,Stone,3.0
|
||||||
|
|||||||
|
+6001
-6501
File diff suppressed because it is too large
Load Diff
@@ -6,10 +6,10 @@ uid="uid://b1b2os1svftw2"
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
files=["res://soak_npc_days.npc.translation", "res://soak_npc_days.name.translation", "res://soak_npc_days.soul.translation", "res://soak_npc_days.town.translation", "res://soak_npc_days.dominant.translation", "res://soak_npc_days.gather.translation", "res://soak_npc_days.build.translation", "res://soak_npc_days.trade.translation", "res://soak_npc_days.rest.translation", "res://soak_npc_days.social.translation", "res://soak_npc_days.nourish.translation", "res://soak_npc_days.health.translation", "res://soak_npc_days.debris.translation", "res://soak_npc_days.demand.translation", "res://soak_npc_days.rough.translation", "res://soak_npc_days.hunger.translation"]
|
files=["res://soak_npc_days.npc.translation", "res://soak_npc_days.name.translation", "res://soak_npc_days.soul.translation", "res://soak_npc_days.town.translation", "res://soak_npc_days.dominant.translation", "res://soak_npc_days.gather.translation", "res://soak_npc_days.build.translation", "res://soak_npc_days.trade.translation", "res://soak_npc_days.rest.translation", "res://soak_npc_days.social.translation", "res://soak_npc_days.nourish.translation", "res://soak_npc_days.health.translation", "res://soak_npc_days.debris.translation", "res://soak_npc_days.demand.translation", "res://soak_npc_days.rough.translation", "res://soak_npc_days.hunger.translation", "res://soak_npc_days.age.translation", "res://soak_npc_days.know.translation", "res://soak_npc_days.know.translation", "res://soak_npc_days.know.translation"]
|
||||||
|
|
||||||
source_file="res://soak_npc_days.csv"
|
source_file="res://soak_npc_days.csv"
|
||||||
dest_files=["res://soak_npc_days.npc.translation", "res://soak_npc_days.name.translation", "res://soak_npc_days.soul.translation", "res://soak_npc_days.town.translation", "res://soak_npc_days.dominant.translation", "res://soak_npc_days.gather.translation", "res://soak_npc_days.build.translation", "res://soak_npc_days.trade.translation", "res://soak_npc_days.rest.translation", "res://soak_npc_days.social.translation", "res://soak_npc_days.nourish.translation", "res://soak_npc_days.health.translation", "res://soak_npc_days.debris.translation", "res://soak_npc_days.demand.translation", "res://soak_npc_days.rough.translation", "res://soak_npc_days.hunger.translation"]
|
dest_files=["res://soak_npc_days.npc.translation", "res://soak_npc_days.name.translation", "res://soak_npc_days.soul.translation", "res://soak_npc_days.town.translation", "res://soak_npc_days.dominant.translation", "res://soak_npc_days.gather.translation", "res://soak_npc_days.build.translation", "res://soak_npc_days.trade.translation", "res://soak_npc_days.rest.translation", "res://soak_npc_days.social.translation", "res://soak_npc_days.nourish.translation", "res://soak_npc_days.health.translation", "res://soak_npc_days.debris.translation", "res://soak_npc_days.demand.translation", "res://soak_npc_days.rough.translation", "res://soak_npc_days.hunger.translation", "res://soak_npc_days.age.translation", "res://soak_npc_days.know.translation", "res://soak_npc_days.know.translation", "res://soak_npc_days.know.translation"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
|||||||
+241
-261
@@ -1,261 +1,241 @@
|
|||||||
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,avg_knowledge,deaths
|
||||||
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
|
1,spring,1572.9,960.0,400.0,649.9,572.0,0,0.0,0.766,100.0,572.0,7926,654,0,3486,11934,0,0,0.000,0.0,0.0,0,0.0,0.0031,0,0,0.007,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
|
2,spring,1624.2,960.0,400.0,732.8,46.2,0,0.0,0.914,100.0,568.2,1557,1177,0,12000,21266,0,0,0.000,0.0,0.0,0,0.0,0.0031,0,0,0.008,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
|
3,spring,1667.4,960.0,400.0,784.9,38.1,0,0.0,0.813,100.0,581.3,1365,1188,0,12000,21447,0,0,0.000,0.0,0.0,0,0.0,0.0031,0,0,0.008,0
|
||||||
4,spring,1407.0,736.0,400.0,751.0,753.5,2,0.1,0.732,100.0,506.8,8983,5752,827,13977,6461,4,0,0.975,18.0,14.0,12,0.0,0.0023,0,0
|
4,spring,1447.2,653.5,400.0,730.7,761.6,3,0.4,0.741,100.0,507.3,9396,5333,920,14434,5917,3,0,1.000,19.5,10.5,9,0.0,0.0031,0,0,0.019,0
|
||||||
5,spring,1142.6,762.0,400.0,680.0,608.2,3,1.4,0.861,100.0,577.0,8272,2472,442,13144,11670,4,0,0.988,24.0,16.0,16,0.0,0.0023,0,0
|
5,spring,1173.7,750.5,400.0,592.5,763.4,2,3.9,0.859,100.0,507.9,13306,1508,796,14653,5737,3,0,1.000,18.0,12.0,12,0.0,0.0031,0,0,0.029,0
|
||||||
6,spring,1099.8,773.0,400.0,668.0,342.6,1,2.9,0.770,100.0,578.8,5676,902,60,12727,16635,4,0,1.000,24.0,16.0,16,0.0,0.0025,0,0
|
6,spring,1000.7,750.5,400.0,577.2,560.3,0,3.9,0.778,100.0,562.0,10070,728,0,13608,11594,3,0,1.000,18.0,12.0,12,0.0,0.0032,0,0,0.036,0
|
||||||
7,spring,1155.4,773.0,400.0,620.0,322.8,0,3.0,0.909,100.0,559.5,5022,932,0,12643,17403,4,0,1.000,24.0,16.0,16,0.0,0.0026,0,0
|
7,spring,1027.2,750.5,400.0,573.3,351.8,0,2.0,0.906,100.0,542.0,8876,644,0,13605,12875,3,0,1.000,18.0,12.0,12,0.0,0.0032,0,0,0.041,0
|
||||||
8,spring,1117.7,773.0,400.0,645.0,314.7,0,2.4,0.817,100.0,567.4,5959,955,0,12631,16455,4,0,1.000,24.0,16.0,16,0.0,0.0027,0,0
|
8,spring,1016.1,750.5,400.0,587.3,376.2,0,6.2,0.814,100.0,557.9,11121,509,0,13628,10742,3,0,1.000,18.0,12.0,12,0.0,0.0034,0,0,0.046,0
|
||||||
9,spring,1018.8,773.0,400.0,634.0,459.1,0,2.3,0.736,100.0,569.2,5240,1032,0,12645,17083,4,0,1.000,24.0,16.0,16,0.0,0.0027,0,0
|
9,spring,989.3,750.5,400.0,588.6,399.0,0,7.1,0.732,100.0,562.1,9166,932,20,13592,12290,3,0,1.000,18.0,12.0,12,0.0,0.0036,0,0,0.052,0
|
||||||
10,spring,1068.7,773.0,400.0,733.0,182.5,0,0.7,0.854,100.0,577.5,4062,1878,0,12162,17898,4,0,1.000,24.0,16.0,16,0.0,0.0029,0,0
|
10,spring,987.3,750.5,400.0,588.4,381.4,0,6.8,0.850,100.0,558.1,9941,666,0,13601,11792,3,0,1.000,18.0,12.0,12,0.0,0.0036,0,0,0.058,0
|
||||||
11,spring,1157.7,773.0,400.0,742.0,136.8,0,0.7,0.773,100.0,580.1,2768,1375,0,12162,19695,4,0,1.000,24.0,16.0,16,0.0,0.0029,0,0
|
11,spring,962.5,750.5,400.0,580.1,412.4,0,5.6,0.778,100.0,567.2,9466,1216,0,13613,11705,3,0,1.000,18.0,12.0,12,0.0,0.0037,0,0,0.074,0
|
||||||
12,spring,1273.9,773.0,400.0,717.0,161.8,0,0.7,0.901,100.0,561.9,2735,1210,0,12162,19893,4,0,1.000,24.0,16.0,16,0.0,0.0030,0,0
|
12,spring,1008.6,750.5,400.0,628.0,276.4,0,5.7,0.897,100.0,543.0,9298,704,0,13599,12399,3,0,1.000,18.0,12.0,12,0.0,0.0038,0,0,0.082,0
|
||||||
13,spring,1318.0,773.0,400.0,746.0,158.1,0,0.3,0.819,100.0,579.7,2951,1234,0,12162,19653,4,0,1.000,24.0,16.0,16,0.0,0.0033,0,0
|
13,spring,1008.3,750.5,400.0,607.7,381.7,1,4.9,0.824,100.0,555.2,9456,1209,144,13427,11764,3,0,1.000,18.0,12.0,12,0.0,0.0039,0,0,0.091,0
|
||||||
14,spring,1327.2,773.0,400.0,749.0,197.8,0,0.7,0.728,100.0,581.9,2565,1110,0,12162,20163,4,0,1.000,24.0,16.0,16,0.0,0.0034,0,0
|
14,spring,989.5,750.5,400.0,588.1,417.7,0,3.4,0.722,100.0,569.5,8338,694,0,13282,13686,3,0,1.000,18.0,12.0,12,0.0,0.0039,0,0,0.103,0
|
||||||
15,spring,1387.2,773.0,400.0,738.0,181.0,0,0.3,0.856,100.0,579.7,2800,1158,0,12162,19880,4,0,1.000,24.0,16.0,16,0.0,0.0034,0,0
|
15,spring,979.8,750.5,400.0,614.4,357.9,0,5.7,0.860,100.0,564.6,8260,699,16,13296,13729,3,0,1.000,18.0,12.0,12,0.0,0.0040,0,0,0.112,0
|
||||||
16,spring,1410.5,773.0,400.0,752.0,160.0,0,0.7,0.774,100.0,579.7,2523,1109,0,12162,20206,4,0,1.000,24.0,16.0,16,0.0,0.0034,0,0
|
16,spring,934.1,750.5,400.0,622.6,392.7,0,4.1,0.768,100.0,567.4,7997,717,0,13283,14003,3,0,1.000,18.0,12.0,12,0.0,0.0042,0,0,0.122,0
|
||||||
17,spring,1476.9,773.0,400.0,721.0,172.6,0,0.7,0.902,100.0,563.5,2752,1216,0,12162,19870,4,0,1.000,24.0,16.0,16,0.0,0.0036,0,0
|
17,spring,991.5,750.5,400.0,585.3,363.9,0,1.2,0.906,100.0,542.7,7778,715,0,13292,14215,3,0,1.000,18.0,12.0,12,0.0,0.0043,0,0,0.130,0
|
||||||
18,spring,1467.1,773.0,400.0,753.0,200.0,0,0.7,0.820,100.0,577.2,2882,1343,0,12162,19613,4,0,1.000,24.0,16.0,16,0.0,0.0037,0,0
|
18,spring,972.2,778.6,400.0,590.9,395.5,1,4.6,0.813,100.0,571.1,7761,963,86,12987,14203,3,0,1.000,18.0,12.0,12,0.0,0.0044,0,0,0.141,0
|
||||||
19,spring,1411.7,773.0,400.0,767.0,220.2,0,0.5,0.728,100.0,580.3,2635,1105,0,12162,20098,4,0,1.000,24.0,16.0,16,0.0,0.0037,0,0
|
19,spring,964.1,778.6,400.0,637.9,331.4,1,2.9,0.731,100.0,578.9,5712,1078,28,12891,16291,3,0,1.000,18.0,12.0,12,0.0,0.0046,0,0,0.149,0
|
||||||
20,spring,1342.2,773.0,400.0,755.0,257.9,0,0.0,0.866,100.0,580.2,2684,1375,0,12153,19788,4,0,1.000,24.0,16.0,16,0.0,0.0038,0,0
|
20,spring,975.5,778.6,400.0,620.7,367.7,0,1.7,0.859,100.0,575.4,5539,1166,0,12631,16664,3,0,1.000,18.0,12.0,12,0.0,0.0047,0,0,0.166,0
|
||||||
21,spring,1359.4,773.0,400.0,743.0,185.2,0,0.4,0.774,100.0,582.4,2500,1342,0,12159,19999,4,0,1.000,24.0,16.0,16,0.0,0.0042,0,0
|
21,spring,1021.6,786.7,400.0,678.8,250.3,1,1.1,0.776,100.0,590.0,5046,1226,50,12405,17273,3,0,1.000,18.0,12.0,12,0.0,0.0048,0,0,0.184,0
|
||||||
22,spring,1436.9,773.0,400.0,723.0,152.5,0,0.7,0.902,100.0,558.2,2634,1143,0,12162,20061,4,0,1.000,24.0,16.0,16,0.0,0.0043,0,0
|
22,spring,1098.2,786.7,400.0,704.0,194.3,0,1.5,0.903,100.0,567.6,3213,1140,0,12314,19333,3,0,1.000,18.0,12.0,12,0.0,0.0049,0,0,0.195,0
|
||||||
23,spring,1434.0,773.0,400.0,749.0,202.9,0,0.7,0.819,100.0,578.9,2892,1322,0,12162,19624,4,0,1.000,24.0,16.0,16,0.0,0.0043,0,0
|
23,spring,1187.3,799.7,400.0,727.3,145.1,0,0.6,0.821,100.0,585.8,2762,1271,0,12160,19807,3,0,1.000,18.0,12.0,12,0.0,0.0050,0,0,0.213,0
|
||||||
24,spring,1387.3,773.0,400.0,754.0,225.7,0,0.5,0.727,100.0,580.6,2521,1286,0,12162,20031,4,0,1.000,24.0,16.0,16,0.0,0.0045,0,0
|
24,spring,1240.1,799.7,400.0,736.8,179.0,0,0.7,0.728,100.0,582.9,2452,1324,0,12156,20068,3,0,1.000,18.0,12.0,12,0.0,0.0051,0,0,0.227,0
|
||||||
25,spring,1337.7,773.0,400.0,738.0,264.8,0,0.2,0.865,100.0,583.4,2820,1096,0,12159,19925,4,0,1.000,24.0,16.0,16,0.0,0.0048,0,0
|
25,spring,1200.3,698.8,400.0,703.5,442.8,0,0.6,0.865,100.0,573.1,6812,2885,0,13490,12813,4,0,1.000,24.0,16.0,16,0.0,0.0052,0,0,0.236,0
|
||||||
26,spring,1362.5,773.0,400.0,748.0,150.0,0,0.7,0.772,100.0,574.4,2390,1390,0,12162,20058,4,0,1.000,24.0,16.0,16,0.0,0.0048,0,0
|
26,spring,1138.4,729.1,400.0,601.4,501.6,1,2.6,0.772,100.0,578.8,6811,1211,74,12814,15090,4,0,1.000,24.0,16.0,16,0.0,0.0055,0,0,0.248,0
|
||||||
27,spring,1423.7,773.0,400.0,726.0,175.6,0,0.7,0.909,100.0,556.4,2952,1280,0,12162,19606,4,0,1.000,24.0,16.0,16,0.0,0.0048,0,0
|
27,spring,1165.9,751.3,400.0,724.5,174.9,0,0.0,0.909,100.0,562.4,3251,1548,0,12155,19046,4,0,1.000,24.0,16.0,16,0.0,0.0055,0,0,0.251,0
|
||||||
28,spring,1436.9,773.0,400.0,750.0,193.4,0,0.7,0.817,100.0,579.8,3061,1257,0,12162,19520,4,0,1.000,24.0,16.0,16,0.0,0.0050,0,0
|
28,spring,1245.9,751.3,400.0,759.6,86.4,0,0.0,0.816,100.0,585.9,2591,1520,0,12000,19889,4,0,1.000,24.0,16.0,16,0.0,0.0056,0,0,0.262,0
|
||||||
29,spring,1390.9,773.0,400.0,752.0,228.6,0,0.5,0.734,100.0,581.4,2530,1109,0,12162,20199,4,0,1.000,24.0,16.0,16,0.0,0.0053,0,0
|
29,spring,1341.2,751.3,400.0,771.7,48.2,0,0.0,0.733,100.0,591.1,1890,1162,0,12000,20948,4,0,1.000,24.0,16.0,16,0.0,0.0058,0,0,0.276,0
|
||||||
30,summer,1331.7,773.0,400.0,715.0,262.2,0,0.7,0.852,100.0,579.6,2653,1107,0,12162,20078,4,0,1.000,24.0,16.0,16,0.0,0.0053,0,0
|
30,summer,1406.2,751.3,400.0,769.1,56.2,0,0.0,0.850,100.0,584.4,1996,1218,0,12000,20786,4,0,1.000,24.0,16.0,16,0.0,0.0058,0,0,0.280,0
|
||||||
31,summer,1331.3,773.0,400.0,710.0,177.4,0,0.4,0.778,100.0,578.4,2504,1120,0,12159,20217,4,0,1.000,24.0,16.0,16,0.0,0.0054,0,0
|
31,summer,1488.6,751.3,400.0,762.7,45.1,0,0.0,0.777,100.0,585.5,1811,1168,0,12000,21021,4,0,1.000,24.0,16.0,16,0.0,0.0060,0,0,0.289,0
|
||||||
32,summer,1397.3,773.0,400.0,657.0,169.0,0,0.7,0.896,100.0,569.4,2793,1303,0,12162,19742,4,0,1.000,24.0,16.0,16,0.0,0.0058,0,0
|
32,summer,1564.9,751.3,400.0,764.1,45.6,0,0.0,0.894,100.0,568.1,1905,1284,0,12000,20811,4,0,1.000,24.0,16.0,16,0.0,0.0062,0,0,0.298,0
|
||||||
33,summer,1387.7,773.0,400.0,688.0,163.4,0,0.7,0.822,100.0,586.8,2840,1103,0,12162,19895,4,0,1.000,24.0,16.0,16,0.0,0.0060,0,0
|
33,summer,1629.4,751.3,400.0,752.0,65.2,0,0.0,0.820,100.0,589.3,2087,1376,0,12000,20537,4,0,1.000,24.0,16.0,16,0.0,0.0064,0,0,0.302,0
|
||||||
34,summer,1343.3,773.0,400.0,716.0,188.4,0,0.6,0.719,100.0,578.2,2492,1120,0,12162,20226,4,0,1.000,24.0,16.0,16,0.0,0.0060,0,0
|
34,summer,1673.4,751.3,400.0,758.0,40.3,0,0.0,0.727,100.0,587.6,1692,1169,0,12000,21139,4,0,1.000,24.0,16.0,16,0.0,0.0067,0,0,0.307,0
|
||||||
35,summer,1279.7,773.0,400.0,705.0,249.0,0,0.3,0.866,100.0,576.2,3051,1341,0,12156,19452,4,0,1.000,24.0,16.0,16,0.0,0.0062,0,0
|
35,summer,1680.9,751.3,400.0,749.8,66.1,0,0.0,0.863,100.0,588.7,2238,1658,0,12000,20104,4,0,1.000,24.0,16.0,16,0.0,0.0069,0,0,0.311,0
|
||||||
36,summer,1305.7,773.0,400.0,701.0,152.0,0,0.0,0.772,100.0,584.7,2723,1100,0,12162,20015,4,0,1.000,24.0,16.0,16,0.0,0.0066,0,0
|
36,summer,1688.6,751.3,400.0,752.4,42.3,0,0.0,0.769,100.0,589.0,1803,1166,0,12000,21031,4,0,1.000,24.0,16.0,16,0.0,0.0071,0,0,0.312,0
|
||||||
37,summer,1319.7,773.0,400.0,706.0,157.0,0,0.1,0.909,100.0,553.2,2463,1108,0,12155,20274,4,0,1.000,24.0,16.0,16,0.0,0.0068,0,0
|
37,summer,1688.8,751.3,400.0,761.0,40.8,0,0.0,0.905,100.0,564.8,1924,1228,0,12000,20848,4,0,1.000,24.0,16.0,16,0.0,0.0072,0,0,0.313,0
|
||||||
38,summer,1323.5,773.0,400.0,706.0,164.2,0,0.4,0.815,100.0,574.7,3090,1396,0,12162,19352,4,0,1.000,24.0,16.0,16,0.0,0.0069,0,0
|
38,summer,1694.4,751.3,400.0,745.6,66.9,0,0.0,0.811,100.0,589.8,2193,1137,0,12000,20670,4,0,1.000,24.0,16.0,16,0.0,0.0075,0,0,0.315,0
|
||||||
39,summer,1307.5,773.0,400.0,710.0,172.0,0,0.5,0.731,100.0,579.7,2704,1357,0,12162,19777,4,0,1.000,24.0,16.0,16,0.0,0.0072,0,0
|
39,summer,1693.9,751.3,400.0,752.8,40.8,0,0.0,0.727,100.0,587.6,1897,1172,0,12000,20931,4,0,1.000,24.0,16.0,16,0.0,0.0077,0,0,0.320,0
|
||||||
40,summer,1305.7,773.0,400.0,680.0,201.8,0,0.8,0.857,100.0,584.5,3071,1146,0,12156,19627,4,0,1.000,24.0,16.0,16,0.0,0.0075,0,0
|
40,summer,1692.6,751.3,400.0,748.8,63.9,0,0.0,0.853,100.0,587.5,2247,1455,0,12000,20298,4,0,1.000,24.0,16.0,16,0.0,0.0079,0,0,0.323,0
|
||||||
41,summer,1341.7,773.0,400.0,689.0,117.0,0,0.7,0.773,100.0,579.5,2653,1115,0,12162,20070,4,0,1.000,24.0,16.0,16,0.0,0.0077,0,0
|
41,summer,1697.0,751.3,400.0,747.2,40.9,0,0.0,0.769,100.0,585.4,1688,1174,0,12000,21138,4,0,1.000,24.0,16.0,16,0.0,0.0082,0,0,0.326,0
|
||||||
42,summer,1311.7,773.0,400.0,683.0,220.0,0,0.0,0.899,100.0,553.3,2740,1171,0,12162,19927,4,0,1.000,24.0,16.0,16,0.0,0.0078,0,0
|
42,summer,1692.7,751.3,400.0,755.9,44.4,0,0.0,0.904,100.0,564.7,1836,1221,0,12000,20943,4,0,1.000,24.0,16.0,16,0.0,0.0083,0,0,0.327,0
|
||||||
43,summer,1310.9,773.0,400.0,672.0,199.8,0,0.7,0.815,100.0,580.0,3540,1376,0,12160,18924,4,0,1.000,24.0,16.0,16,0.0,0.0078,0,0
|
43,summer,1695.9,751.3,400.0,742.6,63.6,0,0.0,0.819,100.0,585.3,2007,1153,0,12000,20840,4,0,1.000,24.0,16.0,16,0.0,0.0086,0,0,0.329,0
|
||||||
44,summer,1302.9,773.0,400.0,698.0,162.0,0,0.7,0.730,100.0,577.0,2516,1118,0,12162,20204,4,0,1.000,24.0,16.0,16,0.0,0.0079,0,0
|
44,summer,1695.8,751.3,400.0,748.1,43.5,0,0.0,0.735,100.0,585.8,1762,1166,0,12000,21072,4,0,1.000,24.0,16.0,16,0.0,0.0088,0,0,0.333,0
|
||||||
45,summer,1324.9,773.0,400.0,689.0,173.0,0,0.7,0.866,100.0,581.0,2931,1086,0,12162,19821,4,0,1.000,24.0,16.0,16,0.0,0.0083,0,0
|
45,summer,1697.8,751.3,400.0,731.6,68.4,0,0.0,0.860,100.0,590.2,2193,1137,0,12000,20670,4,0,1.000,24.0,16.0,16,0.0,0.0092,0,0,0.337,0
|
||||||
46,summer,1342.9,773.0,400.0,702.0,133.0,0,0.7,0.771,100.0,577.0,2536,1110,0,12162,20192,4,0,1.000,24.0,16.0,16,0.0,0.0084,0,0
|
46,summer,1699.2,751.3,400.0,740.6,42.0,0,0.0,0.775,100.0,589.1,1757,1165,0,12000,21078,4,0,1.000,24.0,16.0,16,0.0,0.0093,0,0,0.339,0
|
||||||
47,summer,1340.3,773.0,400.0,705.0,172.0,0,0.4,0.906,100.0,557.5,3040,1513,0,12162,19285,4,0,1.000,24.0,16.0,16,0.0,0.0087,0,0
|
47,summer,1698.3,751.3,400.0,751.6,41.4,0,0.0,0.900,100.0,566.5,1940,1309,0,12000,20751,4,0,1.000,24.0,16.0,16,0.0,0.0095,0,0,0.342,0
|
||||||
48,summer,1340.3,773.0,400.0,704.0,169.5,0,0.5,0.812,100.0,580.0,2978,1200,0,12162,19660,4,0,1.000,24.0,16.0,16,0.0,0.0089,0,0
|
48,summer,1693.5,751.3,400.0,739.7,79.9,0,0.0,0.824,100.0,594.6,2214,1218,0,12000,20568,4,0,1.000,24.0,16.0,16,0.0,0.0099,0,0,0.344,0
|
||||||
49,summer,1318.3,773.0,400.0,710.0,178.0,0,0.7,0.727,100.0,575.0,2473,1125,0,12162,20240,4,0,1.000,24.0,16.0,16,0.0,0.0092,0,0
|
49,summer,1697.5,751.3,400.0,756.4,29.3,0,0.0,0.719,100.0,582.8,1623,1172,0,12000,21205,4,0,1.000,24.0,16.0,16,0.0,0.0099,0,0,0.345,0
|
||||||
50,summer,1274.8,773.0,400.0,689.0,239.5,0,0.3,0.862,100.0,578.5,3076,1200,0,12155,19569,4,0,1.000,24.0,16.0,16,0.0,0.0094,0,0
|
50,summer,1697.0,751.3,400.0,737.5,80.1,0,0.0,0.863,100.0,590.8,2189,1143,0,12000,20668,4,0,1.000,24.0,16.0,16,0.0,0.0102,0,0,0.346,0
|
||||||
51,summer,1312.3,773.0,400.0,687.0,132.5,0,0.7,0.767,100.0,579.1,2553,1114,0,12162,20171,4,0,1.000,24.0,16.0,16,0.0,0.0097,0,0
|
51,summer,1696.1,751.3,400.0,755.2,32.6,0,0.0,0.768,100.0,581.3,1670,1177,0,12000,21153,4,0,1.000,24.0,16.0,16,0.0,0.0103,0,0,0.347,0
|
||||||
52,summer,1304.3,773.0,400.0,686.0,199.0,0,0.0,0.911,100.0,557.0,2829,1181,0,12156,19834,4,0,1.000,24.0,16.0,16,0.0,0.0099,0,0
|
52,summer,1699.2,751.3,400.0,752.2,51.2,0,0.0,0.902,100.0,567.5,1965,1150,0,12000,20885,4,0,1.000,24.0,16.0,16,0.0,0.0104,0,0,0.347,0
|
||||||
53,summer,1353.8,773.0,400.0,685.0,131.5,0,0.5,0.806,100.0,580.2,3428,1271,0,12155,19146,4,0,1.000,24.0,16.0,16,0.0,0.0101,0,0
|
53,summer,1698.9,751.3,400.0,740.3,67.6,0,0.0,0.826,100.0,591.1,2164,1138,0,12000,20698,4,0,1.000,24.0,16.0,16,0.0,0.0105,0,0,0.348,0
|
||||||
54,summer,1317.8,773.0,400.0,679.0,228.0,0,0.7,0.730,100.0,579.2,2557,1330,0,12162,19951,4,0,1.000,24.0,16.0,16,0.0,0.0105,0,0
|
54,summer,1704.4,751.3,400.0,750.9,40.9,0,0.0,0.721,100.0,591.0,1839,1665,0,12000,20496,4,0,1.000,24.0,16.0,16,0.0,0.0106,0,0,0.349,0
|
||||||
55,summer,1317.8,773.0,400.0,679.0,190.0,0,0.3,0.864,100.0,575.2,3180,1182,0,12158,19480,4,0,1.000,24.0,16.0,16,0.0,0.0106,0,0
|
55,summer,1698.5,751.3,400.0,754.3,63.1,0,0.0,0.865,100.0,588.1,2060,1279,0,12000,20661,4,0,1.000,24.0,16.0,16,0.0,0.0106,0,0,0.351,0
|
||||||
56,summer,1285.0,773.0,400.0,687.0,210.0,0,0.7,0.768,100.0,578.2,2853,1099,0,12162,19886,4,0,1.000,24.0,16.0,16,0.0,0.0109,0,0
|
56,summer,1700.5,751.3,400.0,760.0,38.8,0,0.0,0.769,100.0,584.9,1708,1169,0,12000,21123,4,0,1.000,24.0,16.0,16,0.0,0.0107,0,0,0.352,0
|
||||||
57,summer,1267.5,773.0,400.0,679.0,209.5,0,0.3,0.902,100.0,556.6,2769,1246,0,12162,19823,4,0,1.000,24.0,16.0,16,0.0,0.0111,0,0
|
57,summer,1697.9,751.3,400.0,760.7,54.0,0,0.0,0.903,100.0,573.9,2010,1292,0,12000,20698,4,0,1.000,24.0,16.0,16,0.0,0.0109,0,0,0.353,0
|
||||||
58,summer,1307.5,773.0,400.0,680.0,150.0,0,0.6,0.816,100.0,578.6,3040,1079,0,12162,19719,4,0,1.000,24.0,16.0,16,0.0,0.0114,0,0
|
58,summer,1699.9,751.3,400.0,756.0,54.5,0,0.0,0.817,100.0,585.4,2005,1159,0,12000,20836,4,0,1.000,24.0,16.0,16,0.0,0.0111,0,0,0.354,0
|
||||||
59,summer,1287.0,773.0,400.0,702.0,176.5,0,0.4,0.730,100.0,576.1,2580,1119,0,12162,20139,4,0,1.000,24.0,16.0,16,0.0,0.0116,0,0
|
59,summer,1704.6,751.3,400.0,751.5,47.5,0,0.0,0.721,100.0,590.9,1885,1163,0,12000,20952,4,0,1.000,24.0,16.0,16,0.0,0.0114,0,0,0.355,0
|
||||||
60,autumn,1352.6,773.0,400.0,675.6,124.0,0,0.7,0.853,100.0,579.1,3342,1086,0,12162,19410,4,0,1.000,24.0,16.0,16,0.0,0.0118,0,0
|
60,autumn,1697.0,751.3,400.0,733.6,78.7,0,0.0,0.864,100.0,595.2,2304,1503,0,12000,20193,4,0,1.000,24.0,16.0,16,0.0,0.0116,0,0,0.356,0
|
||||||
61,autumn,1262.6,773.0,400.0,695.8,232.6,0,0.3,0.776,100.0,576.2,2578,1381,0,12154,19887,4,0,1.000,24.0,16.0,16,0.0,0.0121,0,0
|
61,autumn,1697.3,751.3,400.0,747.0,30.1,0,0.0,0.768,100.0,583.3,1609,1178,0,12000,21213,4,0,1.000,24.0,16.0,16,0.0,0.0117,0,0,0.356,0
|
||||||
62,autumn,1251.1,773.0,400.0,708.0,148.9,0,0.8,0.900,100.0,557.8,3008,1811,0,12160,19021,4,0,1.000,24.0,16.0,16,0.0,0.0124,0,0
|
62,autumn,1702.6,751.3,400.0,734.1,49.2,0,0.0,0.902,100.0,567.5,1911,1154,0,12000,20935,4,0,1.000,24.0,16.0,16,0.0,0.0119,0,0,0.357,0
|
||||||
63,autumn,1293.1,773.0,400.0,655.6,167.6,0,0.7,0.813,100.0,579.8,3088,1076,0,12162,19674,4,0,1.000,24.0,16.0,16,0.0,0.0126,0,0
|
63,autumn,1706.7,751.3,400.0,723.4,60.9,0,0.0,0.815,100.0,585.4,2193,1137,0,12000,20670,4,0,1.000,24.0,16.0,16,0.0,0.0120,0,0,0.358,0
|
||||||
64,autumn,1303.6,773.0,400.0,647.2,172.3,0,0.8,0.735,100.0,576.1,2514,1116,0,12154,20216,4,0,1.000,24.0,16.0,16,0.0,0.0129,0,0
|
64,autumn,1701.7,751.3,400.0,733.4,41.3,0,0.0,0.728,100.0,583.7,1713,1169,0,12000,21118,4,0,1.000,24.0,16.0,16,0.0,0.0121,0,0,0.359,0
|
||||||
65,autumn,1329.8,773.0,400.0,631.8,168.6,0,0.0,0.859,100.0,582.8,4347,1292,0,12157,18204,4,0,1.000,24.0,16.0,16,0.0,0.0131,0,0
|
65,autumn,1699.9,751.3,400.0,720.1,70.6,0,0.0,0.862,100.0,589.3,2372,1224,0,12000,20404,4,0,1.000,24.0,16.0,16,0.0,0.0122,0,0,0.361,0
|
||||||
66,autumn,1206.8,773.0,400.0,672.4,262.6,0,0.7,0.771,100.0,577.8,2644,1116,0,12162,20078,4,0,1.000,24.0,16.0,16,0.0,0.0133,0,0
|
66,autumn,1699.4,751.3,400.0,732.0,35.4,0,0.0,0.765,100.0,582.7,1660,1174,0,12000,21166,4,0,1.000,24.0,16.0,16,0.0,0.0123,0,0,0.363,0
|
||||||
67,autumn,1194.8,773.0,400.0,674.2,181.4,0,0.7,0.913,100.0,563.1,2981,1173,0,12162,19684,4,0,1.000,24.0,16.0,16,0.0,0.0136,0,0
|
67,autumn,1687.3,751.3,400.0,743.8,55.1,0,0.0,0.908,100.0,571.8,2150,1632,0,12000,20218,4,0,1.000,24.0,16.0,16,0.0,0.0124,0,0,0.365,0
|
||||||
68,autumn,1206.8,773.0,400.0,650.2,194.0,0,0.6,0.807,100.0,579.4,3025,1245,0,12162,19568,4,0,1.000,24.0,16.0,16,0.0,0.0137,0,0
|
68,autumn,1682.3,751.3,400.0,734.2,72.5,0,0.0,0.811,100.0,589.6,2440,1526,0,12000,20034,4,0,1.000,24.0,16.0,16,0.0,0.0125,0,0,0.366,0
|
||||||
69,autumn,1198.8,773.0,400.0,648.0,190.6,0,0.6,0.728,100.0,582.8,2833,1110,0,12156,19901,4,0,1.000,24.0,16.0,16,0.0,0.0140,0,0
|
69,autumn,1689.7,751.3,400.0,737.2,42.2,0,0.0,0.724,100.0,588.8,1940,1158,0,12000,20902,4,0,1.000,24.0,16.0,16,0.0,0.0127,0,0,0.366,0
|
||||||
70,autumn,1226.8,773.0,400.0,634.4,169.6,0,0.7,0.860,100.0,573.8,3360,1385,0,12162,19093,4,0,1.000,24.0,16.0,16,0.0,0.0142,0,0
|
70,autumn,1694.6,751.3,400.0,727.4,59.6,0,0.0,0.867,100.0,582.3,2053,1148,0,12000,20799,4,0,1.000,24.0,16.0,16,0.0,0.0129,0,0,0.367,0
|
||||||
71,autumn,1250.8,773.0,400.0,650.6,136.2,0,0.0,0.763,100.0,578.9,3200,1088,0,12162,19550,4,0,1.000,24.0,16.0,16,0.0,0.0143,0,0
|
71,autumn,1698.8,751.3,400.0,723.4,52.2,0,0.0,0.779,100.0,570.3,1903,1106,0,11520,20031,4,0,1.000,24.0,16.0,16,0.0,0.0131,0,0,0.353,1
|
||||||
72,autumn,1248.8,773.0,400.0,661.0,175.6,0,0.1,0.904,100.0,560.7,2880,1471,0,12155,19494,4,0,1.000,24.0,16.0,16,0.0,0.0145,0,0
|
72,autumn,1688.0,751.3,400.0,728.7,58.1,0,0.0,0.902,100.0,564.3,2113,1237,0,11999,20651,4,0,1.000,24.0,16.0,16,0.0,0.0132,0,0,0.366,0
|
||||||
73,autumn,1273.3,773.0,400.0,636.2,193.9,0,0.4,0.816,100.0,583.0,3097,1078,0,12159,19666,4,0,1.000,24.0,16.0,16,0.0,0.0146,0,0
|
73,autumn,1695.1,751.3,400.0,708.5,70.7,0,0.0,0.824,100.0,591.0,2393,1132,0,12000,20475,4,0,1.000,24.0,16.0,16,0.0,0.0133,0,0,0.367,0
|
||||||
74,autumn,1290.8,773.0,400.0,653.6,144.3,0,0.7,0.728,100.0,579.9,2819,1098,0,12162,19921,4,0,1.000,24.0,16.0,16,0.0,0.0148,0,0
|
74,autumn,1698.1,751.3,400.0,726.5,34.9,0,0.0,0.727,100.0,583.9,1731,1173,0,12000,21096,4,0,1.000,24.0,16.0,16,0.0,0.0135,0,0,0.367,0
|
||||||
75,autumn,1268.8,773.0,400.0,629.0,239.8,0,0.1,0.860,100.0,581.2,3286,1175,0,12162,19377,4,0,1.000,24.0,16.0,16,0.0,0.0150,0,0
|
75,autumn,1700.8,751.3,400.0,713.4,71.7,0,0.0,0.859,100.0,590.6,2247,1252,0,12000,20501,4,0,1.000,24.0,16.0,16,0.0,0.0136,0,0,0.368,0
|
||||||
76,autumn,1298.3,773.0,400.0,650.2,123.5,0,0.4,0.771,100.0,582.3,2929,1091,0,12162,19818,4,0,1.000,24.0,16.0,16,0.0,0.0151,0,0
|
76,autumn,1706.8,751.3,400.0,724.1,37.7,0,0.0,0.772,100.0,585.3,1750,1170,0,12000,21080,4,0,1.000,24.0,16.0,16,0.0,0.0137,0,0,0.368,0
|
||||||
77,autumn,1269.0,773.0,400.0,662.4,194.5,0,0.0,0.903,100.0,561.9,2822,1148,0,12162,19868,4,0,1.000,24.0,16.0,16,0.0,0.0152,0,0
|
77,autumn,1706.4,751.3,400.0,726.1,49.8,0,0.0,0.895,100.0,571.1,2060,1244,0,12000,20696,4,0,1.000,24.0,16.0,16,0.0,0.0139,0,0,0.369,0
|
||||||
78,autumn,1307.0,773.0,400.0,647.6,156.8,0,0.6,0.814,100.0,580.9,3203,1068,0,12156,19573,4,0,1.000,24.0,16.0,16,0.0,0.0154,0,0
|
78,autumn,1699.3,751.3,400.0,730.8,56.9,0,0.0,0.816,100.0,584.0,2050,1691,0,12000,20259,4,0,1.000,24.0,16.0,16,0.0,0.0141,0,0,0.371,0
|
||||||
79,autumn,1231.0,773.0,400.0,680.0,212.8,0,0.8,0.726,100.0,579.4,2641,1107,0,12154,20098,4,0,1.000,24.0,16.0,16,0.0,0.0155,0,0
|
79,autumn,1707.0,751.3,400.0,722.3,48.0,0,0.0,0.738,100.0,588.0,1960,1156,0,12000,20884,4,0,1.000,24.0,16.0,16,0.0,0.0144,0,0,0.372,0
|
||||||
80,autumn,1228.0,773.0,400.0,667.0,179.2,0,0.7,0.857,100.0,584.3,3542,1296,0,12162,19000,4,0,1.000,24.0,16.0,16,0.0,0.0155,0,0
|
80,autumn,1706.1,751.3,400.0,716.2,62.5,0,0.0,0.851,100.0,587.4,2246,1250,0,12000,20504,4,0,1.000,24.0,16.0,16,0.0,0.0146,0,0,0.372,0
|
||||||
81,autumn,1216.0,773.0,400.0,675.2,161.0,0,0.7,0.778,100.0,578.5,2666,1106,0,12162,20066,4,0,1.000,24.0,16.0,16,0.0,0.0157,0,0
|
81,autumn,1707.1,751.3,400.0,725.7,39.5,0,0.0,0.772,100.0,582.9,1692,1185,0,12000,21123,4,0,1.000,24.0,16.0,16,0.0,0.0148,0,0,0.373,0
|
||||||
82,autumn,1237.0,773.0,400.0,667.0,155.6,0,0.0,0.900,100.0,559.7,2794,1100,0,12154,19952,4,0,1.000,24.0,16.0,16,0.0,0.0159,0,0
|
82,autumn,1688.6,751.3,400.0,741.7,56.5,0,0.0,0.904,100.0,574.5,2085,1559,0,12000,20356,4,0,1.000,24.0,16.0,16,0.0,0.0151,0,0,0.373,0
|
||||||
83,autumn,1264.0,773.0,400.0,661.6,140.4,0,0.0,0.811,100.0,579.3,3575,1195,0,12154,19076,4,0,1.000,24.0,16.0,16,0.0,0.0161,0,0
|
83,autumn,1696.9,751.3,400.0,720.6,66.3,0,0.0,0.815,100.0,591.3,2303,1132,0,12000,20565,4,0,1.000,24.0,16.0,16,0.0,0.0153,0,0,0.374,0
|
||||||
84,autumn,1259.5,773.0,400.0,653.2,183.3,0,0.7,0.731,100.0,579.4,3008,1089,0,12162,19741,4,0,1.000,24.0,16.0,16,0.0,0.0163,0,0
|
84,autumn,1698.2,751.3,400.0,728.7,40.0,0,0.0,0.737,100.0,587.4,1876,1165,0,12000,20959,4,0,1.000,24.0,16.0,16,0.0,0.0155,0,0,0.375,0
|
||||||
85,autumn,1287.5,773.0,400.0,639.2,162.8,0,0.7,0.862,100.0,577.4,3634,1049,0,12162,19155,4,0,1.000,24.0,16.0,16,0.0,0.0163,0,0
|
85,autumn,1705.8,751.3,400.0,706.8,72.9,0,0.0,0.858,100.0,590.2,2347,1130,0,12000,20523,4,0,1.000,24.0,16.0,16,0.0,0.0158,0,0,0.376,0
|
||||||
86,autumn,1321.0,773.0,400.0,652.0,121.1,0,0.7,0.763,100.0,578.7,2686,1113,0,12162,20039,4,0,1.000,24.0,16.0,16,0.0,0.0164,0,0
|
86,autumn,1710.7,751.3,400.0,718.7,38.4,0,0.0,0.769,100.0,585.6,1785,1176,0,12000,21039,4,0,1.000,24.0,16.0,16,0.0,0.0161,0,0,0.376,0
|
||||||
87,autumn,1291.0,773.0,400.0,645.8,209.8,0,0.6,0.903,100.0,561.1,3183,1270,0,12162,19385,4,0,1.000,24.0,16.0,16,0.0,0.0165,0,0
|
87,autumn,1710.1,751.3,400.0,717.2,58.4,0,0.0,0.912,100.0,549.8,2020,1093,0,11520,19927,4,0,1.000,24.0,16.0,16,0.0,0.0164,0,0,0.362,1
|
||||||
88,autumn,1283.0,773.0,400.0,632.4,214.0,0,0.7,0.824,100.0,578.9,3279,1067,0,12162,19492,4,0,1.000,24.0,16.0,16,0.0,0.0165,0,0
|
88,autumn,1706.1,751.3,400.0,701.0,80.0,0,0.0,0.814,100.0,587.8,2565,1118,0,11999,20318,4,0,1.000,24.0,16.0,16,0.0,0.0166,0,0,0.377,0
|
||||||
89,autumn,1255.0,773.0,400.0,648.4,199.2,0,0.7,0.725,100.0,580.1,2858,1096,0,12162,19884,4,0,1.000,24.0,16.0,16,0.0,0.0167,0,0
|
89,autumn,1706.5,751.3,400.0,717.5,38.9,0,0.0,0.744,100.0,581.7,1825,1164,0,12000,21011,4,0,1.000,24.0,16.0,16,0.0,0.0167,0,0,0.378,0
|
||||||
90,winter,1175.5,773.0,400.0,516.5,212.5,0,0.8,0.856,100.0,582.6,3514,1282,0,12156,19048,4,0,1.000,24.0,16.0,16,0.0,0.0168,0,0
|
90,winter,1692.5,751.3,400.0,626.8,66.6,0,0.0,0.864,100.0,584.2,2238,1172,0,12000,20590,4,0,1.000,24.0,16.0,16,0.0,0.0171,0,0,0.379,0
|
||||||
91,winter,1087.0,773.0,400.0,450.7,164.1,0,0.1,0.775,100.0,581.8,3324,1072,0,12162,19442,4,0,1.000,24.0,16.0,16,0.0,0.0171,0,0
|
91,winter,1683.3,751.3,400.0,553.6,49.6,0,0.0,0.784,100.0,568.9,2144,1091,0,11520,19805,4,0,1.000,24.0,16.0,16,0.0,0.0173,0,0,0.366,1
|
||||||
92,winter,1054.2,773.0,400.0,368.9,129.4,0,0.4,0.896,100.0,561.3,3673,1076,0,12157,19094,4,0,1.000,24.0,16.0,16,0.0,0.0173,0,0
|
92,winter,1660.2,751.3,400.0,484.4,65.9,0,0.0,0.895,100.0,563.6,2484,1542,0,11999,19975,4,0,1.000,24.0,16.0,16,0.0,0.0174,0,0,0.377,0
|
||||||
93,winter,1038.9,773.0,400.0,280.7,127.5,0,0.7,0.816,100.0,583.2,6094,899,0,12160,16847,4,0,1.000,24.0,16.0,16,0.0,0.0177,0,0
|
93,winter,1648.1,751.3,400.0,407.7,71.8,0,0.0,0.822,100.0,563.0,3193,1030,0,11520,18817,4,0,1.000,24.0,16.0,16,0.0,0.0177,0,0,0.364,1
|
||||||
94,winter,1050.3,773.0,400.0,251.8,43.5,0,0.0,0.735,100.0,562.6,4706,713,0,12000,18581,4,0,1.000,24.0,16.0,16,0.0,0.0179,0,0
|
94,winter,1637.4,751.3,400.0,341.7,65.6,0,0.0,0.761,100.0,582.7,5738,918,0,12306,17038,4,0,1.000,24.0,16.0,16,0.0,0.0180,0,0,0.368,0
|
||||||
95,winter,1059.8,773.0,400.0,232.9,38.4,0,0.0,0.846,100.0,530.4,2617,1425,0,12000,19958,4,0,1.000,24.0,16.0,16,0.0,0.0182,0,0
|
95,winter,1632.8,751.3,400.0,274.5,64.8,0,0.0,0.861,100.0,585.4,5010,1102,0,12000,17888,4,0,1.000,24.0,16.0,16,0.0,0.0183,0,0,0.380,0
|
||||||
96,winter,1088.7,773.0,400.0,215.3,19.6,0,0.0,0.746,100.0,501.4,2835,651,0,12150,20364,4,0,1.000,24.0,16.0,16,0.0,0.0185,0,0
|
96,winter,1625.2,751.3,400.0,238.9,40.4,0,0.0,0.781,100.0,581.8,3064,1094,0,12000,19842,4,0,1.000,24.0,16.0,16,0.0,0.0185,0,0,0.381,0
|
||||||
97,winter,1111.5,773.0,400.0,197.9,27.1,0,0.0,0.868,100.0,464.5,4083,688,0,12153,19076,4,0,1.000,24.0,16.0,16,0.0,0.0188,0,0
|
97,winter,1638.0,751.3,400.0,219.8,6.8,0,0.0,0.890,100.0,525.7,3243,314,0,12000,20443,4,0,1.000,24.0,16.0,16,0.0,0.0188,0,0,0.381,0
|
||||||
98,winter,1121.8,773.0,400.0,184.3,36.9,0,0.0,0.790,100.0,450.3,3746,642,0,12157,19455,4,0,1.000,24.0,16.0,16,0.0,0.0190,0,0
|
98,winter,1631.0,751.3,400.0,202.8,24.6,0,0.0,0.819,100.0,505.2,2018,255,0,12000,21727,4,0,1.000,24.0,16.0,16,0.0,0.0190,0,0,0.382,0
|
||||||
99,winter,1139.7,773.0,400.0,169.7,31.7,0,0.0,0.644,100.0,446.0,4622,646,0,12150,18582,4,0,1.000,24.0,16.0,16,0.0,0.0193,0,0
|
99,winter,1609.5,751.3,400.0,185.6,42.1,0,0.0,0.758,100.0,494.9,2606,683,0,12000,20711,4,0,1.000,24.0,16.0,16,0.0,0.0194,0,0,0.382,0
|
||||||
100,winter,853.5,773.0,400.0,157.0,340.2,0,3.4,0.531,100.0,429.4,10115,368,0,13320,12197,4,0,1.000,24.0,16.0,16,0.0,0.0383,72,0
|
100,winter,1601.7,751.3,400.0,174.2,23.0,0,0.0,0.867,100.0,454.9,2384,145,0,12000,21471,4,0,1.000,24.0,16.0,16,0.0,0.0196,0,0,0.383,0
|
||||||
101,winter,809.1,619.0,400.0,146.3,865.5,33,3.6,0.325,100.0,405.5,11020,631,614,14137,9598,4,0,1.000,21.6,16.0,16,0.0,0.0400,14,0
|
101,winter,1606.0,751.3,400.0,162.4,12.7,0,0.0,0.746,100.0,427.6,2162,220,0,12000,21618,4,0,1.000,24.0,16.0,16,0.0,0.0198,0,0,0.383,0
|
||||||
102,winter,788.1,461.0,400.0,139.0,230.4,7,3.8,0.183,100.0,522.9,9941,2509,4874,14182,4494,4,0,1.000,7.3,16.0,16,0.0,0.0400,46,0
|
102,winter,1603.0,751.3,400.0,151.1,21.9,0,2.1,0.714,100.0,400.5,5670,151,0,12523,17656,4,0,1.000,24.0,16.0,16,0.0,0.0218,6,0,0.383,0
|
||||||
103,winter,802.7,297.0,400.0,133.2,198.9,2,0.9,0.102,100.0,578.5,8403,1939,902,13620,11136,4,0,0.900,0.0,16.0,16,0.0,0.0400,0,0
|
103,winter,938.8,751.3,400.0,142.3,712.2,0,3.7,0.499,100.0,419.6,9415,280,0,13606,12699,4,0,1.000,24.0,16.0,16,0.0,0.0366,54,0,0.391,0
|
||||||
104,winter,787.0,354.0,400.0,127.3,68.5,1,1.4,0.088,100.0,516.8,6883,2633,1084,13483,11917,4,0,0.875,7.3,16.0,16,0.0,0.0400,0,0
|
104,winter,795.7,430.1,400.0,135.4,1322.3,55,1.1,0.297,100.0,471.1,11581,1341,997,13608,7033,4,0,1.000,14.0,16.0,16,0.0,0.0400,54,0,0.392,1
|
||||||
105,winter,800.0,281.0,400.0,122.5,115.2,2,2.9,0.107,100.0,585.2,7560,3768,1964,13449,9259,4,0,0.813,3.1,16.0,16,0.0,0.0400,0,0
|
105,winter,792.0,330.7,400.0,130.0,2045.3,101,1.4,0.171,100.0,359.0,9538,3315,3148,13544,5015,4,0,0.950,5.6,16.0,16,0.0,0.0267,16,0,0.404,1
|
||||||
106,winter,827.2,281.0,400.0,120.1,27.7,0,0.0,0.101,100.0,583.5,3232,2478,956,12403,16931,4,0,0.775,5.2,16.0,16,0.0,0.0400,0,0
|
106,winter,799.6,171.1,400.0,120.0,220.9,1,4.4,0.110,100.0,553.3,11281,2818,4824,15277,1800,4,0,0.875,0.1,16.0,16,0.0,0.0369,36,0,0.409,0
|
||||||
107,winter,853.6,281.0,400.0,120.0,22.7,0,0.0,0.095,100.0,579.9,2971,1968,984,12370,17707,4,0,0.738,3.7,16.0,16,0.0,0.0400,0,0
|
107,winter,771.5,150.9,400.0,120.0,96.3,1,3.5,0.133,100.0,536.8,6108,2453,1485,12721,11793,4,0,0.775,0.0,16.0,16,0.0,0.0369,0,0,0.407,1
|
||||||
108,winter,878.8,281.0,400.0,120.0,22.8,0,0.0,0.089,100.0,572.6,2575,1783,985,12396,18261,4,0,0.700,6.6,16.0,16,0.0,0.0400,0,0
|
108,winter,803.5,128.8,400.0,120.0,38.1,1,3.8,0.128,100.0,514.7,5837,2024,1764,12603,12332,4,0,0.675,0.0,16.0,16,0.0,0.0235,0,0,0.407,1
|
||||||
109,winter,906.8,281.0,400.0,120.0,20.0,0,0.0,0.091,100.0,566.1,2500,1919,982,12413,18186,4,0,0.650,5.7,16.0,16,0.0,0.0400,0,0
|
109,winter,772.8,128.8,400.0,120.0,78.8,1,3.9,0.106,100.0,514.9,6128,1703,1500,13087,13582,4,0,0.575,0.0,16.0,16,0.0,0.0241,2,0,0.426,0
|
||||||
110,winter,914.0,380.0,400.0,120.0,40.8,1,0.1,0.102,100.0,408.8,2545,2786,2971,12403,15295,4,0,0.600,7.1,16.0,16,0.0,0.0400,0,0
|
110,winter,761.2,126.8,400.0,120.0,61.6,0,4.5,0.077,100.0,556.4,6292,1746,741,13069,14152,4,0,0.475,0.0,16.0,16,0.0,0.0265,4,0,0.426,0
|
||||||
111,winter,803.9,380.0,400.0,120.0,158.1,7,2.9,0.096,100.0,446.8,10696,2439,2653,14419,5793,4,0,0.525,1.0,16.0,16,0.0,0.0400,0,0
|
111,winter,762.8,126.8,400.0,120.0,46.4,0,3.6,0.063,100.0,545.5,5424,1773,784,12951,15068,4,0,0.412,0.6,16.0,16,0.0,0.0265,0,0,0.428,0
|
||||||
112,winter,796.3,364.0,400.0,120.0,71.6,0,2.2,0.090,100.0,472.6,10399,1388,456,13977,9780,3,1,0.617,0.3,12.0,12,0.0,0.0400,0,0
|
112,winter,790.8,126.8,400.0,120.0,20.0,0,4.6,0.060,100.0,543.0,5777,1764,766,12920,14773,4,0,0.312,0.0,16.0,16,0.0,0.0265,0,0,0.428,0
|
||||||
113,winter,801.1,364.0,400.0,120.0,43.2,0,5.4,0.092,100.0,467.4,8787,1099,587,13571,11956,3,1,0.517,0.0,12.0,12,0.0,0.0400,0,0
|
113,winter,791.6,126.8,400.0,120.0,47.2,0,3.6,0.066,100.0,536.0,5334,2513,746,12951,14456,4,0,0.250,0.8,16.0,16,0.0,0.0265,0,0,0.429,0
|
||||||
114,winter,798.2,364.0,400.0,120.0,50.9,0,7.2,0.078,100.0,485.6,8753,1124,582,13620,11921,2,2,0.650,0.0,8.0,8,0.0,0.0400,0,0
|
114,winter,801.4,126.8,400.0,120.0,38.2,0,4.2,0.046,100.0,553.0,5819,2233,745,12926,14277,3,1,0.200,0.0,12.0,12,0.0,0.0265,0,0,0.430,0
|
||||||
115,winter,763.6,260.0,400.0,120.0,3553.6,188,7.2,0.022,100.0,344.3,15219,492,204,14349,5736,2,2,0.550,0.0,8.0,8,0.0,0.0400,0,0
|
115,winter,807.8,126.8,400.0,120.0,41.6,0,3.6,0.020,100.0,547.3,5539,2129,759,12926,14647,2,2,0.150,0.0,8.0,8,0.0,0.0265,0,0,0.430,0
|
||||||
116,winter,773.2,26.0,400.0,120.0,430.4,2,11.5,0.000,100.0,464.9,16737,44,838,15448,2933,2,2,0.450,0.0,8.0,8,0.0,0.0400,0,0
|
116,winter,806.5,126.8,400.0,120.0,49.2,0,4.5,0.002,100.0,572.0,5585,2025,768,12918,14704,1,3,0.100,0.0,4.0,4,0.0,0.0275,0,0,0.439,0
|
||||||
117,winter,787.8,0.0,302.5,120.0,291.4,9,12.3,0.000,100.0,448.2,17484,52,13,15534,2917,2,2,0.350,0.0,8.0,8,0.0,0.0400,0,0
|
117,winter,741.3,80.0,400.0,120.0,240.0,0,8.9,0.000,100.0,472.8,12976,2326,1681,15199,3818,1,3,0.150,1.5,4.0,4,0.0,0.0275,0,0,0.444,0
|
||||||
118,winter,764.0,0.0,223.0,120.0,155.8,0,11.2,0.000,100.0,492.8,17727,0,0,15564,2709,2,2,0.250,0.0,8.0,8,0.0,0.0400,0,0
|
118,winter,761.3,0.0,333.7,120.0,3413.6,174,4.3,0.040,100.0,395.2,11399,2081,1548,13015,6517,1,3,0.050,0.0,4.0,4,0.0,0.0275,0,0,0.460,1
|
||||||
119,winter,768.4,0.0,190.0,120.0,81.6,0,4.4,0.000,100.0,501.9,16801,0,0,15503,3696,2,2,0.150,0.0,8.0,8,0.0,0.0400,0,0
|
119,winter,760.9,0.0,192.6,120.0,194.6,2,3.7,0.026,100.0,506.0,12209,1684,709,14080,7318,0,4,0.000,0.0,0.0,0,0.0,0.0275,0,1,0.477,0
|
||||||
120,spring,866.2,0.0,193.0,360.0,48.2,0,7.2,0.000,100.0,500.5,11836,0,0,13620,10544,1,3,0.100,0.0,4.0,4,0.0,0.0400,0,0
|
120,spring,863.0,0.0,181.3,360.0,174.6,1,5.2,0.012,100.0,463.1,11765,921,766,13863,8685,0,4,0.000,0.0,0.0,0,0.0,0.0275,0,1,0.489,0
|
||||||
121,spring,936.7,0.0,198.0,600.0,73.5,0,16.0,0.000,100.0,501.6,17742,0,0,15549,2709,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,0
|
121,spring,885.0,0.0,182.2,600.0,126.0,0,6.5,0.000,100.0,508.0,12640,202,242,13620,9296,0,4,0.000,0.0,0.0,0,0.0,0.0275,0,2,0.492,0
|
||||||
122,spring,1080.7,50.0,195.5,618.0,223.5,3,12.7,0.619,100.0,468.2,16494,827,5,15483,3191,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,1
|
122,spring,961.5,0.0,187.2,614.0,286.5,6,6.9,0.664,100.0,492.4,12372,3235,786,14610,3557,2,4,1.000,15.5,4.5,1,0.0,0.0275,0,0,0.473,1
|
||||||
123,spring,1166.5,17.0,190.5,655.0,295.2,0,5.2,0.791,100.0,479.4,12730,3935,117,15271,3947,1,4,1.000,7.5,2.5,1,47.0,0.0400,0,0
|
123,spring,1080.8,0.0,192.2,622.3,236.3,24,3.3,0.760,100.0,527.6,6563,3821,1354,12696,10126,2,4,1.000,14.5,5.5,3,0.0,0.0275,0,0,0.464,1
|
||||||
124,spring,1267.8,0.0,195.5,636.0,303.7,1,5.4,0.703,100.0,509.1,9573,2984,10,13983,9450,2,4,1.000,15.4,4.5,1,63.9,0.0400,0,0
|
124,spring,1167.1,0.0,172.0,743.9,144.6,5,2.4,0.730,100.0,501.6,7346,2481,205,12680,11848,2,4,1.000,12.5,7.5,7,0.0,0.0275,0,1,0.456,1
|
||||||
125,spring,1411.8,0.0,200.5,640.0,228.0,0,7.3,0.765,100.0,524.2,9434,1672,0,13774,11120,2,4,1.000,10.9,4.5,1,91.9,0.0400,0,0
|
125,spring,1188.1,0.0,168.5,570.5,544.8,2,6.4,0.702,100.0,482.0,14540,2699,403,15041,3317,3,4,1.000,16.0,10.0,8,0.0,0.0275,0,1,0.465,0
|
||||||
126,spring,1425.5,0.0,205.5,595.0,413.3,0,8.2,0.747,100.0,496.0,12968,3751,121,15248,3912,3,4,1.000,21.0,9.0,6,144.8,0.0400,0,0
|
126,spring,1300.0,0.0,173.5,563.0,279.6,1,11.8,0.720,100.0,445.2,15127,906,61,14520,3946,3,4,0.967,13.0,11.0,10,0.0,0.0275,0,1,0.445,1
|
||||||
127,spring,1514.8,0.0,210.5,614.0,244.6,0,4.3,0.659,100.0,563.1,9582,4500,0,14161,7757,3,4,1.000,20.0,10.0,8,150.0,0.0400,0,0
|
127,spring,1387.5,0.0,178.5,576.4,283.2,0,13.5,0.652,100.0,490.5,17236,585,0,15374,2805,3,4,0.933,12.0,12.0,12,0.0,0.0275,0,2,0.449,0
|
||||||
128,spring,1540.7,0.0,180.0,726.0,181.0,2,1.0,0.791,100.0,540.0,7464,3386,32,13505,11613,3,4,1.000,17.4,10.5,9,150.0,0.0400,0,1
|
128,spring,1374.8,0.0,183.5,579.0,373.5,1,7.4,0.744,100.0,481.3,16469,0,0,14987,4544,3,4,0.900,4.0,12.0,12,0.0,0.0275,0,2,0.457,0
|
||||||
129,spring,1505.7,47.0,177.0,668.0,374.1,0,5.0,0.703,100.0,462.8,12151,4284,0,15084,4481,3,4,1.000,18.0,12.0,12,211.8,0.0400,0,1
|
129,spring,1408.5,28.4,171.0,590.8,305.5,0,6.9,0.726,100.0,471.8,15917,860,121,15226,3876,3,4,0.850,6.0,12.0,12,0.0,0.0275,0,1,0.476,0
|
||||||
130,spring,1570.0,10.0,179.5,631.0,294.5,0,9.7,0.765,100.0,466.1,16194,1406,0,15371,3029,3,4,1.000,14.0,12.0,12,300.0,0.0400,0,2
|
130,spring,1495.0,28.4,176.0,614.8,205.0,0,11.3,0.728,100.0,486.1,15488,1027,0,15069,4416,3,4,0.800,6.0,12.0,12,59.7,0.0275,0,1,0.481,0
|
||||||
131,spring,1622.9,0.0,176.0,647.0,218.5,0,13.8,0.747,100.0,426.7,16908,818,0,15485,2789,3,4,0.967,4.0,12.0,12,300.0,0.0400,0,2
|
131,spring,1575.2,28.4,181.0,637.3,169.3,0,12.3,0.740,100.0,482.4,15546,1454,0,15221,3779,3,4,0.750,6.0,12.0,12,136.6,0.0275,0,1,0.484,0
|
||||||
132,spring,1670.7,0.0,178.5,666.0,220.5,0,13.0,0.659,100.0,465.2,17727,0,0,15564,2709,3,4,0.867,0.0,12.0,12,300.0,0.0400,0,2
|
132,spring,1594.4,28.4,175.5,643.8,243.0,0,10.7,0.662,100.0,479.9,15750,1708,0,15381,3161,3,4,0.700,6.0,12.0,12,174.7,0.0275,0,1,0.489,0
|
||||||
133,spring,1714.3,0.0,168.5,610.0,311.0,0,8.4,0.791,100.0,467.5,17792,0,0,15499,2709,3,4,0.767,0.0,12.0,12,300.0,0.0400,0,2
|
133,spring,1669.9,28.4,180.5,632.0,197.8,0,12.4,0.684,100.0,493.5,15838,1468,0,15197,3497,3,4,0.650,6.0,12.0,12,264.1,0.0275,0,1,0.492,0
|
||||||
134,spring,1757.5,0.0,173.5,608.0,242.0,0,14.6,0.703,100.0,475.3,17784,0,0,15507,2709,3,4,0.667,0.0,12.0,12,300.0,0.0400,0,2
|
134,spring,1715.6,0.0,170.5,648.0,218.9,0,10.2,0.681,100.0,475.9,15895,1182,0,15030,3893,3,4,0.600,6.0,12.0,12,300.0,0.0275,0,2,0.496,0
|
||||||
135,spring,1792.0,0.0,178.5,596.0,216.0,0,15.2,0.765,100.0,458.2,17830,0,0,15461,2709,3,4,0.567,0.0,12.0,12,300.0,0.0400,0,2
|
135,spring,1743.3,0.0,172.5,586.9,292.0,0,15.7,0.713,100.0,451.0,17632,200,0,15443,2725,3,4,0.533,2.0,12.0,12,300.0,0.0275,0,2,0.500,0
|
||||||
136,spring,1800.0,0.0,176.0,612.0,195.5,0,12.9,0.747,100.0,455.4,17692,89,0,15494,2725,3,4,0.467,0.0,12.0,12,300.0,0.0400,0,2
|
136,spring,1721.7,0.0,177.5,584.1,287.3,0,15.9,0.755,100.0,476.2,17811,0,0,15480,2709,3,4,0.433,0.0,12.0,12,300.0,0.0275,0,2,0.503,0
|
||||||
137,spring,1800.0,0.0,178.5,622.0,226.5,0,9.8,0.659,100.0,459.8,17768,0,0,15523,2709,3,4,0.367,0.0,12.0,12,300.0,0.0400,0,2
|
137,spring,1743.3,0.0,175.0,599.6,230.1,0,15.5,0.697,100.0,479.7,17693,129,0,15453,2725,3,4,0.333,0.0,12.0,12,300.0,0.0275,0,2,0.506,0
|
||||||
138,spring,1771.2,0.0,168.5,636.0,265.0,0,8.1,0.791,100.0,478.8,17509,259,0,15491,2741,3,4,0.267,0.0,12.0,12,300.0,0.0400,0,2
|
138,spring,1764.9,0.0,180.0,643.5,175.4,0,15.9,0.739,100.0,464.2,17866,0,0,15425,2709,1,6,0.700,0.0,4.0,4,300.0,0.0275,0,2,0.509,0
|
||||||
139,spring,1730.0,36.0,173.5,620.0,288.0,0,6.7,0.703,100.0,516.4,12613,3817,0,14973,4597,3,4,0.267,8.0,12.0,12,332.1,0.0400,0,1
|
139,spring,1780.8,0.0,170.0,623.6,272.1,0,16.3,0.721,100.0,484.4,17775,0,0,15516,2709,1,6,0.600,0.0,4.0,4,300.0,0.0275,0,2,0.512,0
|
||||||
140,spring,1720.4,42.0,178.5,618.0,240.8,0,7.5,0.764,100.0,466.4,12497,2921,0,14813,5769,2,5,0.400,12.0,8.0,8,394.0,0.0400,0,1
|
140,spring,1718.9,18.0,172.5,649.6,286.5,0,12.3,0.733,100.0,513.0,15515,1429,0,15079,3977,1,6,0.650,6.0,4.0,4,305.2,0.0275,0,1,0.515,0
|
||||||
141,spring,1739.6,14.0,176.0,646.0,217.5,0,10.9,0.746,100.0,442.2,15962,1558,0,15499,2981,2,5,0.450,12.0,8.0,8,450.0,0.0400,0,2
|
141,spring,1739.3,18.0,177.5,595.8,284.9,0,9.7,0.755,100.0,493.8,14493,1955,0,15164,4388,1,6,0.700,6.0,4.0,4,424.6,0.0275,0,1,0.519,0
|
||||||
142,spring,1755.2,14.0,178.5,574.0,308.5,0,16.0,0.658,100.0,439.8,17681,79,0,15515,2725,2,5,0.500,4.0,8.0,8,450.0,0.0400,0,2
|
142,spring,1737.6,25.0,182.5,636.7,217.1,0,8.7,0.697,100.0,547.1,14374,678,0,14592,6356,1,6,0.750,6.0,4.0,4,450.0,0.0275,0,1,0.522,0
|
||||||
143,spring,1769.6,14.0,168.5,658.0,165.0,0,14.1,0.790,100.0,463.6,17484,273,0,15502,2741,2,5,0.400,0.0,8.0,8,450.0,0.0400,0,2
|
143,spring,1631.8,16.8,187.5,645.8,371.2,0,8.7,0.739,100.0,533.8,12444,1794,0,14105,7657,2,6,0.900,12.0,8.0,8,450.0,0.0275,0,1,0.527,0
|
||||||
144,spring,1782.0,14.0,173.5,596.0,296.0,0,15.8,0.702,100.0,476.9,17734,0,0,15557,2709,2,5,0.300,0.0,8.0,8,450.0,0.0400,0,2
|
144,spring,1659.1,16.8,192.5,643.3,224.6,0,8.7,0.721,100.0,529.0,10605,521,0,13944,10930,2,6,0.925,12.0,8.0,8,450.0,0.0275,0,1,0.529,0
|
||||||
145,spring,1791.6,14.0,178.5,668.0,132.0,0,14.6,0.774,100.0,453.2,17804,0,0,15487,2709,2,5,0.200,0.0,8.0,8,450.0,0.0400,0,2
|
145,spring,1681.2,16.8,197.5,702.7,131.3,0,8.7,0.733,100.0,527.7,10521,526,0,13944,11009,2,6,0.950,12.0,8.0,8,450.0,0.0275,0,1,0.531,0
|
||||||
146,spring,1728.0,30.0,176.0,674.0,221.5,0,11.3,0.746,100.0,461.6,16438,1249,0,15424,2889,2,5,0.250,12.0,8.0,8,469.6,0.0400,0,1
|
146,spring,1703.3,16.8,195.0,686.5,188.9,0,8.0,0.755,100.0,524.5,10505,525,0,13944,11026,2,6,0.975,12.0,8.0,8,450.0,0.0275,0,1,0.533,0
|
||||||
147,spring,1718.8,30.0,181.0,620.0,270.0,0,9.8,0.658,100.0,488.8,13552,2225,0,14841,5382,2,5,0.300,12.0,8.0,8,575.5,0.0400,0,1
|
147,spring,1719.2,16.8,200.0,635.4,272.0,0,8.0,0.697,100.0,535.6,10446,531,0,13944,11079,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.537,0
|
||||||
148,spring,1714.4,30.0,186.0,678.0,192.4,0,8.7,0.790,100.0,514.9,11419,784,0,13944,9853,2,5,0.350,12.0,8.0,8,600.0,0.0400,0,1
|
148,spring,1735.7,16.8,190.0,702.1,165.3,0,6.8,0.739,100.0,533.3,9819,1085,121,13843,11132,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.540,0
|
||||||
149,spring,1730.0,30.0,191.0,728.0,142.0,0,8.7,0.702,100.0,508.8,10575,528,0,13868,11029,2,5,0.400,12.0,8.0,8,600.0,0.0400,0,1
|
149,spring,1746.9,16.8,192.5,629.3,307.2,1,6.6,0.721,100.0,537.8,10384,622,14,13874,11106,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.546,0
|
||||||
150,summer,1606.0,18.0,196.0,644.0,362.0,0,7.9,0.774,100.0,512.3,13536,1453,0,14344,6667,3,5,0.633,18.0,12.0,12,600.0,0.0400,0,1
|
150,summer,1752.9,16.8,197.5,622.5,172.6,0,8.0,0.735,100.0,534.2,9757,523,0,13302,10978,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.521,1
|
||||||
151,summer,1626.0,18.0,198.5,634.0,164.5,0,8.7,0.746,100.0,543.7,10848,505,0,13944,10703,3,5,0.667,18.0,12.0,12,600.0,0.0400,0,1
|
151,summer,1755.9,16.8,195.0,555.1,236.4,0,4.8,0.757,100.0,527.3,10547,524,0,13900,11029,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.524,0
|
||||||
152,summer,1642.0,18.0,188.5,682.0,99.0,0,7.6,0.658,100.0,536.2,10361,759,0,13944,10936,3,5,0.700,18.0,12.0,12,600.0,0.0400,0,1
|
152,summer,1758.9,16.8,200.0,570.1,152.0,0,8.7,0.707,100.0,501.7,10635,462,0,13464,9999,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.510,1
|
||||||
153,summer,1560.5,6.0,193.5,657.0,266.5,0,0.3,0.790,100.0,515.4,8112,3275,0,13702,10911,4,5,0.800,25.0,15.0,14,673.9,0.0400,0,0
|
153,summer,1634.4,16.8,190.0,623.9,283.2,1,1.5,0.749,100.0,529.7,9168,2012,1,13707,11112,3,6,1.000,20.0,10.0,8,450.0,0.0275,0,0,0.546,0
|
||||||
154,summer,1586.5,6.0,198.5,622.0,157.0,0,0.6,0.702,100.0,535.9,7204,3992,0,13650,11154,4,5,0.825,24.5,15.5,15,750.0,0.0400,0,0
|
154,summer,1661.3,16.8,195.0,624.5,133.3,0,4.4,0.727,100.0,531.1,7616,3011,0,12899,11034,3,6,1.000,20.0,10.0,8,505.4,0.0275,0,0,0.566,1
|
||||||
155,summer,1551.0,6.0,196.0,651.0,176.0,0,4.8,0.774,100.0,494.8,9267,1701,0,13944,11088,4,5,0.850,24.0,16.0,16,750.0,0.0400,0,1
|
155,summer,1678.5,16.8,200.0,616.5,136.8,0,4.4,0.739,100.0,543.2,6880,3446,0,13517,12157,3,6,1.000,18.0,10.0,8,590.1,0.0275,0,0,0.598,0
|
||||||
156,summer,1577.5,6.0,198.5,564.0,246.0,0,7.2,0.746,100.0,522.6,10857,540,0,13938,10665,4,5,0.875,20.0,16.0,16,750.0,0.0400,0,1
|
156,summer,1630.0,0.0,194.0,632.3,199.4,1,4.3,0.751,100.0,526.3,8632,2329,43,13829,11167,3,6,1.000,18.0,12.0,12,600.0,0.0275,0,1,0.630,0
|
||||||
157,summer,1607.5,6.0,188.5,631.0,114.0,0,8.5,0.658,100.0,514.4,10833,511,0,13899,10757,4,5,0.875,18.0,16.0,16,750.0,0.0400,0,1
|
157,summer,1650.0,0.0,199.0,531.2,264.2,0,8.4,0.703,100.0,526.4,10493,586,0,13944,10977,3,6,1.000,14.0,12.0,12,600.0,0.0275,0,1,0.635,0
|
||||||
158,summer,1631.5,6.0,193.5,634.0,160.0,0,4.5,0.790,100.0,505.9,10752,560,0,13917,10771,4,5,0.875,18.0,16.0,16,750.0,0.0400,0,1
|
158,summer,1671.0,0.0,189.0,574.2,131.0,1,6.2,0.764,100.0,505.3,9522,798,15,12759,10026,3,6,0.967,12.0,12.0,12,600.0,0.0275,0,1,0.582,2
|
||||||
159,summer,1659.5,6.0,198.5,651.0,102.0,0,2.4,0.702,100.0,509.3,10690,856,0,13918,10536,4,5,0.875,18.0,16.0,16,750.0,0.0400,0,1
|
159,summer,1684.6,0.0,194.0,570.1,170.2,0,8.6,0.726,100.0,526.3,10897,502,0,13942,10659,3,6,0.933,12.0,12.0,12,600.0,0.0275,0,1,0.610,0
|
||||||
160,summer,1685.5,6.0,196.0,609.0,187.5,0,8.8,0.774,100.0,511.0,10518,764,0,13893,10825,4,5,0.875,18.0,16.0,16,750.0,0.0400,0,1
|
160,summer,1704.3,0.0,199.0,606.1,110.5,0,8.7,0.718,100.0,512.7,10458,529,0,13944,11069,3,6,0.900,12.0,12.0,12,600.0,0.0275,0,1,0.612,0
|
||||||
161,summer,1693.5,6.0,198.5,640.0,123.5,0,8.7,0.746,100.0,529.5,10945,588,0,13944,10523,4,5,0.875,18.0,16.0,16,750.0,0.0400,0,1
|
161,summer,1707.8,0.0,194.0,652.3,105.0,0,0.8,0.760,100.0,518.7,10270,1363,0,13859,10508,3,6,0.867,12.0,12.0,12,600.0,0.0275,0,1,0.614,0
|
||||||
162,summer,1705.5,6.0,188.5,677.0,111.0,0,8.7,0.658,100.0,521.7,10391,773,0,13914,10922,4,5,0.850,18.0,16.0,16,750.0,0.0400,0,1
|
162,summer,1716.8,0.0,199.0,552.1,261.2,0,8.0,0.721,100.0,514.8,9871,799,0,13302,10588,3,6,0.833,12.0,12.0,12,600.0,0.0275,0,1,0.584,1
|
||||||
163,summer,1645.5,24.0,193.5,629.0,259.5,0,0.7,0.790,100.0,523.9,7447,3226,0,13425,11902,4,5,0.863,22.0,16.0,16,864.6,0.0400,0,0
|
163,summer,1648.8,57.6,191.5,607.7,204.9,0,1.9,0.743,100.0,505.2,8751,1928,0,13585,11736,3,6,0.850,18.0,12.0,12,629.9,0.0275,0,0,0.600,0
|
||||||
164,summer,1659.5,0.0,198.5,535.0,286.0,0,5.4,0.702,100.0,530.8,9753,1724,0,13893,10630,4,5,0.875,24.0,16.0,16,900.0,0.0400,0,1
|
164,summer,1671.7,57.6,196.5,613.6,144.8,0,2.8,0.725,100.0,535.6,7460,3418,0,13801,11321,3,6,0.867,18.0,12.0,12,703.3,0.0275,0,0,0.608,0
|
||||||
165,summer,1669.5,0.0,196.0,618.0,92.5,0,8.9,0.774,100.0,490.7,10566,526,0,13902,11006,4,5,0.888,20.0,16.0,16,900.0,0.0400,0,1
|
165,summer,1690.1,0.0,198.0,568.7,255.0,0,5.4,0.737,100.0,516.1,8382,2499,0,13731,11388,3,6,0.883,18.0,12.0,12,750.0,0.0275,0,1,0.620,0
|
||||||
166,summer,1675.5,0.0,198.5,602.0,175.5,0,8.3,0.746,100.0,500.1,10777,822,0,13926,10475,4,5,0.863,18.0,16.0,16,900.0,0.0400,0,1
|
166,summer,1708.0,0.0,193.0,611.4,116.8,0,8.7,0.765,100.0,492.9,10430,473,0,13458,10199,3,6,0.900,14.0,12.0,12,750.0,0.0275,0,1,0.591,1
|
||||||
167,summer,1689.5,0.0,188.5,621.0,139.0,0,8.6,0.658,100.0,511.2,10563,637,0,13891,10909,4,5,0.838,18.0,16.0,16,900.0,0.0400,0,1
|
167,summer,1718.0,0.0,198.0,591.8,188.3,0,8.7,0.717,100.0,521.1,11242,480,0,14105,10173,3,6,0.867,12.0,12.0,12,750.0,0.0275,0,1,0.593,0
|
||||||
168,summer,1699.5,0.0,193.5,543.0,246.0,0,8.7,0.790,100.0,497.2,11071,553,0,13890,10486,4,5,0.813,18.0,16.0,16,900.0,0.0400,0,1
|
168,summer,1732.7,0.0,190.5,604.1,135.3,0,8.7,0.739,100.0,519.3,10433,633,0,13901,11033,3,6,0.833,12.0,12.0,12,750.0,0.0275,0,1,0.622,0
|
||||||
169,summer,1713.5,0.0,198.5,603.0,106.0,0,4.8,0.702,100.0,504.8,10909,531,0,13911,10649,4,5,0.788,18.0,16.0,16,900.0,0.0400,0,1
|
169,summer,1746.2,0.0,195.5,626.8,105.5,0,8.7,0.737,100.0,491.7,10437,475,0,13464,10184,3,6,0.800,12.0,12.0,12,750.0,0.0275,0,1,0.592,1
|
||||||
170,summer,1630.0,0.0,196.0,682.0,173.0,0,4.7,0.774,100.0,536.5,10248,1261,0,13868,10623,4,5,0.800,24.0,16.0,16,900.0,0.0400,0,0
|
170,summer,1753.2,0.0,198.0,562.1,240.9,0,0.7,0.739,100.0,530.9,10611,729,0,13873,10787,3,6,0.767,12.0,12.0,12,750.0,0.0275,0,1,0.622,0
|
||||||
171,summer,1628.0,14.0,201.0,631.0,197.0,0,1.9,0.746,100.0,540.7,7036,3587,0,13148,12229,4,5,0.813,24.0,16.0,16,1034.8,0.0400,0,0
|
171,summer,1652.5,18.8,193.0,648.1,210.7,0,1.4,0.751,100.0,537.5,8552,2641,0,13944,10863,3,6,0.783,17.8,12.0,12,750.0,0.0275,0,0,0.627,0
|
||||||
172,summer,1642.5,0.0,206.0,600.0,198.5,0,3.5,0.658,100.0,526.5,10413,667,0,13932,10988,4,5,0.825,24.0,16.0,16,1050.0,0.0400,0,1
|
172,summer,1675.4,47.4,198.0,601.3,201.7,0,1.5,0.723,100.0,550.2,7124,3129,0,13620,12127,3,6,0.800,18.0,12.0,12,862.4,0.0275,0,0,0.637,0
|
||||||
173,summer,1652.5,0.0,190.5,589.0,180.5,0,7.1,0.790,100.0,501.3,10712,1118,0,13918,10252,4,5,0.838,20.0,16.0,16,1050.0,0.0400,0,1
|
173,summer,1694.1,19.8,190.8,631.3,145.2,0,4.0,0.747,100.0,481.1,7999,2212,0,13175,11174,3,6,0.817,18.0,12.0,12,900.0,0.0275,0,1,0.625,1
|
||||||
174,summer,1668.5,0.0,195.5,534.0,227.0,0,8.6,0.702,100.0,503.8,11095,559,0,13903,10443,4,5,0.813,18.0,16.0,16,1050.0,0.0400,0,1
|
174,summer,1710.2,19.8,195.8,523.7,275.2,0,8.7,0.729,100.0,517.3,10585,523,0,13943,10949,3,6,0.833,14.0,12.0,12,900.0,0.0275,0,1,0.628,0
|
||||||
175,summer,1684.5,0.0,193.0,627.0,82.5,0,9.1,0.774,100.0,510.6,10684,620,0,13895,10801,4,5,0.788,18.0,16.0,16,1050.0,0.0400,0,1
|
175,summer,1725.7,19.8,198.3,568.4,124.8,0,4.8,0.741,100.0,503.0,10453,737,0,13852,10958,3,6,0.800,12.0,12.0,12,900.0,0.0275,0,1,0.630,0
|
||||||
176,summer,1694.5,0.0,195.5,675.0,102.5,0,7.5,0.746,100.0,521.4,10778,565,0,13944,10713,4,5,0.763,18.0,16.0,16,1050.0,0.0400,0,1
|
176,summer,1738.2,19.8,193.3,604.2,140.7,0,8.4,0.753,100.0,509.0,10308,661,0,13944,11087,3,6,0.767,12.0,12.0,12,900.0,0.0275,0,1,0.632,0
|
||||||
177,summer,1706.5,0.0,200.5,625.0,200.0,0,5.0,0.658,100.0,511.5,10749,582,0,13918,10751,3,6,1.000,18.0,12.0,12,1050.0,0.0400,0,1
|
177,summer,1752.3,19.8,196.0,586.5,178.2,0,8.3,0.725,100.0,514.2,10534,528,0,13933,11005,3,6,0.733,12.0,12.0,12,900.0,0.0275,0,1,0.637,0
|
||||||
178,summer,1711.0,0.0,190.5,701.0,85.0,0,8.7,0.790,100.0,514.9,10649,660,0,13944,10747,3,6,1.000,18.0,12.0,12,1050.0,0.0400,0,1
|
178,summer,1766.4,19.8,191.0,589.7,148.8,0,7.6,0.737,100.0,513.0,10692,526,0,13881,10901,3,6,0.700,12.0,12.0,12,900.0,0.0275,0,1,0.638,0
|
||||||
179,summer,1641.0,0.0,195.5,665.0,239.0,0,0.5,0.702,100.0,532.3,6633,3359,0,13354,12654,3,6,1.000,18.0,12.0,12,1183.6,0.0400,0,0
|
179,summer,1768.8,19.8,196.0,567.9,169.1,0,8.7,0.729,100.0,499.4,10636,518,0,13944,10902,2,7,1.000,12.0,8.0,8,900.0,0.0275,0,1,0.640,0
|
||||||
180,autumn,1627.5,0.0,200.5,677.6,100.5,0,0.0,0.774,100.0,566.4,3397,1311,0,12000,19292,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
180,autumn,1767.3,19.8,198.5,595.6,98.9,0,8.8,0.741,100.0,508.1,10468,534,0,13902,11096,2,7,1.000,12.0,8.0,8,900.0,0.0275,0,1,0.642,0
|
||||||
181,autumn,1637.5,0.0,205.5,699.8,57.4,0,0.0,0.746,100.0,583.8,2626,1134,0,12000,20240,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
181,autumn,1766.3,19.8,193.5,642.8,87.0,0,8.7,0.753,100.0,521.4,10509,525,0,13944,11022,2,7,1.000,12.0,8.0,8,900.0,0.0275,0,1,0.643,0
|
||||||
182,autumn,1651.5,0.0,210.5,727.0,30.8,0,0.0,0.658,100.0,580.6,2036,1151,0,12000,20813,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
182,autumn,1682.4,16.0,196.0,633.2,213.4,0,3.6,0.725,100.0,581.6,8867,2027,0,13741,11365,2,7,1.000,12.0,8.0,8,917.4,0.0275,0,0,0.647,0
|
||||||
183,autumn,1640.0,0.0,215.5,641.4,198.1,0,0.0,0.790,100.0,574.2,5844,981,0,12319,16856,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
183,autumn,1695.4,16.0,191.0,570.4,190.3,0,2.5,0.737,100.0,510.4,7305,3437,0,13601,11657,2,7,1.000,12.0,8.0,8,1050.0,0.0275,0,1,0.656,0
|
||||||
184,autumn,1656.0,0.0,220.5,680.8,41.2,0,0.0,0.702,100.0,581.4,2480,1124,0,12000,20396,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
184,autumn,1708.4,16.0,196.0,574.1,113.1,0,8.6,0.769,100.0,458.1,10449,532,0,13464,10115,2,7,1.000,12.0,8.0,8,1050.0,0.0142,0,1,0.629,1
|
||||||
185,autumn,1668.0,0.0,225.5,724.4,42.8,0,0.0,0.774,100.0,574.2,2262,1136,0,12000,20602,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
185,autumn,1705.0,16.0,198.5,533.8,197.7,0,8.0,0.777,100.0,502.9,10426,702,0,13935,10937,2,7,1.000,12.0,8.0,8,1050.0,0.0156,0,1,0.661,0
|
||||||
186,autumn,1682.5,0.0,230.5,727.6,54.9,0,0.0,0.746,100.0,589.1,2909,1098,0,12000,19993,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
186,autumn,1718.0,16.0,193.5,570.6,110.9,0,8.5,0.784,100.0,511.1,10585,592,0,13940,10883,2,7,1.000,12.0,8.0,8,1050.0,0.0157,0,1,0.663,0
|
||||||
187,autumn,1686.5,0.0,235.5,648.6,174.4,0,0.0,0.658,100.0,577.9,3190,1061,0,12319,19430,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
187,autumn,1729.0,16.0,196.0,562.2,148.4,0,8.7,0.761,100.0,526.7,10574,633,0,13944,10849,2,7,1.000,12.0,8.0,8,1050.0,0.0159,0,1,0.667,0
|
||||||
188,autumn,1696.5,0.0,240.5,680.4,56.6,0,0.0,0.790,100.0,578.5,3406,1086,0,12000,19508,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
188,autumn,1618.1,0.0,196.0,580.2,259.6,0,3.1,0.768,100.0,522.9,8842,2003,0,13873,11282,3,7,1.000,18.5,11.5,11,1065.8,0.0159,0,0,0.676,0
|
||||||
189,autumn,1702.5,0.0,245.5,725.0,39.6,0,0.0,0.702,100.0,584.1,2384,1126,0,12000,20490,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
189,autumn,1645.0,0.0,201.0,512.7,192.6,0,5.3,0.765,100.0,514.6,9284,1900,0,13922,10894,3,7,1.000,18.5,11.5,11,1142.7,0.0160,0,0,0.683,0
|
||||||
190,autumn,1710.5,0.0,250.5,639.4,167.2,0,0.7,0.774,100.0,558.0,2988,1080,0,12162,19770,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
190,autumn,1663.5,0.0,206.0,528.2,108.1,0,6.4,0.772,100.0,481.6,9849,1217,0,13921,11013,3,7,1.000,18.5,11.5,11,1185.3,0.0160,0,0,0.689,0
|
||||||
191,autumn,1713.0,0.0,255.5,519.4,257.6,0,1.4,0.746,100.0,571.1,4674,1008,0,12324,17994,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
191,autumn,1587.3,0.0,211.0,542.4,224.4,0,0.7,0.789,100.0,572.1,6745,1447,0,12951,14857,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.722,0
|
||||||
192,autumn,1709.0,0.0,260.5,495.6,172.3,0,0.7,0.658,100.0,576.3,3525,1040,0,12321,19114,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
192,autumn,1603.3,0.0,216.0,568.0,120.8,0,0.0,0.756,100.0,586.4,2514,1111,0,12158,20217,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.825,0
|
||||||
193,autumn,1713.0,0.0,265.5,545.2,92.4,0,0.7,0.790,100.0,571.7,4179,1059,0,12162,18600,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
193,autumn,1621.6,0.0,221.0,663.1,44.7,0,0.0,0.773,100.0,585.1,1840,1936,0,12000,20224,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.847,0
|
||||||
194,autumn,1719.0,0.0,270.5,566.8,112.8,0,0.7,0.702,100.0,578.1,3278,1063,0,12162,19497,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
194,autumn,1647.7,0.0,226.0,708.1,52.0,0,0.0,0.760,100.0,594.1,2019,1150,0,12000,20831,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.863,0
|
||||||
195,autumn,1727.0,0.0,275.5,511.8,189.8,0,2.2,0.774,100.0,555.6,4592,967,0,12486,17955,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
195,autumn,1664.1,0.0,231.0,728.3,41.8,0,0.0,0.777,100.0,589.9,1696,1170,0,12000,21134,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.876,0
|
||||||
196,autumn,1729.0,0.0,280.5,542.2,111.6,0,2.2,0.746,100.0,562.9,4918,978,0,12486,17618,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
196,autumn,1685.6,0.0,236.0,722.5,45.1,0,0.0,0.784,100.0,589.9,2019,1151,0,12000,20830,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.880,0
|
||||||
197,autumn,1723.5,0.0,285.5,477.8,211.9,0,2.9,0.658,100.0,558.0,6863,811,0,12803,15523,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
197,autumn,1696.4,0.0,241.0,726.9,46.8,0,0.0,0.761,100.0,594.7,2059,1155,0,12000,20786,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.882,0
|
||||||
198,autumn,1697.0,0.0,290.5,502.4,148.4,0,0.0,0.790,100.0,566.7,6495,854,0,12604,16047,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
198,autumn,1707.4,0.0,246.0,726.6,42.6,0,0.0,0.768,100.0,592.3,1774,1168,0,12000,21058,3,7,1.000,18.0,12.0,12,1200.0,0.0161,0,0,0.889,0
|
||||||
199,autumn,1699.0,0.0,295.5,592.2,54.2,0,0.0,0.702,100.0,586.9,2940,1137,0,12000,19923,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
199,autumn,1710.2,0.0,251.0,727.9,45.4,0,0.0,0.765,100.0,593.6,1957,1156,0,12000,20887,3,7,1.000,18.0,12.0,12,1200.0,0.0161,0,0,0.894,0
|
||||||
200,autumn,1703.0,0.0,300.5,697.8,29.6,0,0.0,0.774,100.0,566.5,1868,1308,0,12000,20824,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
200,autumn,1718.8,0.0,256.0,731.8,34.4,0,0.0,0.772,100.0,583.0,1643,1195,0,12000,21162,3,7,1.000,18.0,12.0,12,1200.0,0.0162,0,0,0.896,0
|
||||||
201,autumn,1685.0,0.0,305.5,610.2,222.8,0,0.0,0.746,100.0,584.0,7578,779,0,13044,14599,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
201,autumn,1721.8,0.0,261.0,727.3,45.3,0,0.0,0.789,100.0,582.4,2007,1151,0,12000,20842,3,7,1.000,18.0,12.0,12,1200.0,0.0162,0,0,0.897,0
|
||||||
202,autumn,1691.0,0.0,310.5,663.8,34.2,0,0.0,0.658,100.0,584.2,2154,1142,0,12000,20704,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
202,autumn,1723.3,0.0,266.0,592.8,233.4,0,0.7,0.756,100.0,599.5,3281,1063,0,12243,19413,3,7,1.000,18.0,12.0,12,1200.0,0.0163,0,0,0.910,0
|
||||||
203,autumn,1685.0,0.0,315.5,619.2,145.0,0,0.0,0.790,100.0,580.4,4384,1006,0,12322,18288,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
203,autumn,1721.8,0.0,271.0,599.0,98.1,0,0.7,0.773,100.0,586.6,2647,1110,0,12162,20081,3,7,1.000,18.0,12.0,12,1200.0,0.0163,0,0,0.911,0
|
||||||
204,autumn,1693.0,0.0,320.5,667.6,35.2,0,0.0,0.702,100.0,581.6,2206,1137,0,12000,20657,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
204,autumn,1714.4,0.0,276.0,617.7,91.1,0,0.0,0.760,100.0,592.8,2213,1252,0,12061,20474,3,7,1.000,18.0,12.0,12,1200.0,0.0165,0,0,0.916,0
|
||||||
205,autumn,1703.0,0.0,325.5,716.0,37.2,0,0.0,0.773,100.0,568.8,2501,1119,0,12000,20380,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
205,autumn,1721.9,0.0,281.0,670.8,41.8,0,0.0,0.776,100.0,588.6,1932,1163,0,12000,20905,3,7,1.000,18.0,12.0,12,1200.0,0.0165,0,0,0.921,0
|
||||||
206,autumn,1705.5,0.0,330.5,721.8,59.6,0,0.0,0.745,100.0,588.4,3339,1069,0,12000,19592,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
206,autumn,1723.9,0.0,286.0,709.5,46.5,0,0.0,0.783,100.0,590.2,1878,1156,0,12000,20966,3,7,1.000,18.0,12.0,12,1200.0,0.0166,0,0,0.924,0
|
||||||
207,autumn,1691.5,0.0,335.5,653.6,167.4,0,0.0,0.657,100.0,582.5,3373,1050,0,12319,19258,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
207,autumn,1725.4,0.0,291.0,724.7,43.6,0,0.0,0.760,100.0,591.8,1805,1161,0,12000,21034,3,7,1.000,18.0,12.0,12,1200.0,0.0166,0,0,0.928,0
|
||||||
208,autumn,1693.5,0.0,340.5,684.0,54.8,0,0.0,0.789,100.0,581.3,2827,1154,0,12000,20019,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
208,autumn,1721.9,0.0,296.0,728.2,46.1,0,0.0,0.767,100.0,584.7,1824,1160,0,12000,21016,3,7,1.000,18.0,12.0,12,1200.0,0.0167,0,0,0.931,0
|
||||||
209,autumn,1703.5,0.0,345.5,725.2,36.0,0,0.0,0.701,100.0,583.3,2158,1139,0,12000,20703,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
209,autumn,1722.8,0.0,301.0,727.8,46.3,0,0.0,0.763,100.0,586.9,1912,1253,0,12000,20835,3,7,1.000,18.0,12.0,12,1200.0,0.0167,0,0,0.933,0
|
||||||
210,winter,1695.9,0.0,350.5,653.0,37.0,0,0.0,0.773,100.0,570.3,2209,1136,0,12000,20655,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
210,winter,1715.8,0.0,306.0,648.5,43.1,0,0.0,0.770,100.0,585.1,1855,1155,0,12000,20990,3,7,1.000,18.0,12.0,12,1200.0,0.0168,0,0,0.933,0
|
||||||
211,winter,1695.1,0.0,355.5,432.1,196.4,0,0.7,0.745,100.0,581.3,4879,1005,0,12162,17954,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
211,winter,1706.1,0.0,311.0,564.3,59.8,0,0.0,0.786,100.0,591.0,2454,1126,0,12000,20420,3,7,1.000,18.0,12.0,12,1200.0,0.0169,0,0,0.936,0
|
||||||
212,winter,1691.1,0.0,360.5,318.0,103.0,0,0.7,0.657,100.0,578.8,3614,1045,0,12162,19179,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
212,winter,1704.7,0.0,316.0,380.3,165.8,0,0.7,0.753,100.0,592.7,3433,1054,0,12162,19351,3,7,1.000,18.0,12.0,12,1200.0,0.0169,0,0,0.939,0
|
||||||
213,winter,1516.4,0.0,365.5,283.0,206.4,0,0.7,0.789,100.0,536.8,7174,1797,0,12729,14300,3,6,1.000,18.0,12.0,12,1188.4,0.0400,0,0
|
213,winter,1691.1,0.0,321.0,286.9,95.9,0,0.0,0.769,100.0,588.0,4607,962,0,12552,17879,3,7,1.000,18.0,12.0,12,1200.0,0.0171,0,0,0.944,0
|
||||||
214,winter,1263.9,0.0,370.5,263.2,279.7,0,1.8,0.701,100.0,590.6,9049,2725,0,12486,11740,3,6,1.000,18.0,12.0,12,1050.0,0.0400,0,0
|
214,winter,1690.2,0.0,326.0,260.6,16.8,0,0.0,0.773,100.0,558.8,4237,1469,0,11780,17074,3,7,1.000,18.0,12.0,12,1174.7,0.0171,0,0,0.908,1
|
||||||
215,winter,1132.3,0.0,375.5,244.8,165.6,0,3.0,0.773,100.0,490.9,7498,7390,0,14025,7087,3,6,1.000,18.0,12.0,12,1072.3,0.0400,0,0
|
215,winter,1682.2,0.0,331.0,242.7,18.0,0,0.0,0.780,100.0,579.7,3214,1134,0,11999,19653,3,7,1.000,18.0,12.0,12,1126.7,0.0172,0,0,0.944,0
|
||||||
216,winter,1029.1,0.0,380.5,227.6,142.4,0,2.3,0.745,100.0,469.1,10263,5118,0,14021,6598,3,6,1.000,18.0,12.0,12,1018.3,0.0400,0,0
|
216,winter,1664.7,0.0,336.0,224.3,28.6,0,0.0,0.786,100.0,586.8,2972,1470,0,12000,19558,3,7,1.000,18.0,12.0,12,1095.7,0.0173,0,0,0.948,0
|
||||||
217,winter,990.8,0.0,385.5,211.7,79.1,0,2.6,0.657,100.0,530.2,11302,1509,0,13701,9488,3,6,1.000,18.0,12.0,12,942.3,0.0400,0,0
|
217,winter,1663.8,0.0,341.0,209.2,8.8,0,0.0,0.762,100.0,574.7,2961,1112,0,12000,19927,3,7,1.000,18.0,12.0,12,1074.7,0.0173,0,0,0.949,0
|
||||||
218,winter,923.7,0.0,390.5,196.9,112.7,0,2.1,0.789,100.0,542.4,12250,3647,0,14979,5124,3,6,1.000,18.0,12.0,12,869.1,0.0400,0,0
|
218,winter,1642.9,0.0,346.0,193.4,33.4,0,0.0,0.776,100.0,535.4,4171,4159,0,11520,14710,3,7,1.000,18.0,12.0,12,1069.0,0.0175,0,0,0.911,1
|
||||||
219,winter,955.9,0.0,394.0,183.1,13.4,0,3.4,0.701,100.0,514.6,8527,5746,0,12322,9405,3,6,1.000,18.0,12.0,12,855.1,0.0400,0,0
|
219,winter,1644.8,0.0,351.0,180.7,7.7,0,3.3,0.763,100.0,527.5,8689,5180,0,12936,9195,3,7,1.000,18.0,12.0,12,1034.8,0.0175,0,0,0.925,0
|
||||||
220,winter,939.2,0.0,397.0,170.3,62.3,0,3.4,0.773,100.0,538.3,9850,4889,0,12877,8384,3,6,1.000,18.0,12.0,12,766.6,0.0400,0,0
|
220,winter,1651.2,0.0,356.0,167.8,5.6,0,1.4,0.779,100.0,547.5,9597,5162,0,13216,8025,3,7,1.000,18.0,12.0,12,963.3,0.0176,0,0,0.931,0
|
||||||
221,winter,895.6,0.0,400.0,158.4,89.2,0,2.0,0.745,100.0,490.7,11757,3636,0,13821,6786,3,6,1.000,18.0,12.0,12,755.6,0.0400,0,0
|
221,winter,1644.6,0.0,361.0,156.7,17.3,0,3.1,0.795,100.0,548.5,9749,5542,0,13281,7428,3,7,1.000,18.0,12.0,12,914.3,0.0177,0,0,0.939,0
|
||||||
222,winter,889.2,0.0,400.0,147.3,52.0,0,0.5,0.657,100.0,496.2,10134,4091,0,13358,8417,3,6,1.000,18.0,12.0,12,738.3,0.0400,0,0
|
222,winter,1649.2,0.0,366.0,146.6,5.7,0,1.4,0.761,100.0,524.3,8976,4270,0,13056,9698,3,7,1.000,18.0,12.0,12,903.3,0.0178,0,0,0.943,0
|
||||||
223,winter,867.3,0.0,400.0,137.3,69.9,0,2.2,0.789,100.0,571.6,10340,4306,0,13384,7970,3,6,1.000,18.0,12.0,12,601.9,0.0400,0,0
|
223,winter,1654.8,0.0,371.0,137.8,4.5,0,1.1,0.767,100.0,510.8,9610,5167,0,13194,8029,3,7,1.000,18.0,12.0,12,876.3,0.0178,0,0,0.947,0
|
||||||
224,winter,895.3,0.0,400.0,129.0,20.0,0,1.9,0.701,100.0,548.4,8471,5060,0,12895,9574,3,6,1.000,18.0,12.0,12,580.5,0.0400,0,0
|
224,winter,1635.7,0.0,376.0,130.0,29.3,0,0.7,0.763,100.0,503.2,9057,5016,0,12991,8936,3,7,1.000,18.0,12.0,12,863.3,0.0179,0,0,0.949,0
|
||||||
225,winter,864.9,0.0,400.0,123.5,78.4,0,3.8,0.773,100.0,498.0,12033,2624,0,13407,7936,3,6,1.000,18.0,12.0,12,564.5,0.0400,0,0
|
225,winter,1615.4,0.0,381.0,123.3,31.3,0,2.2,0.779,100.0,548.5,10192,5061,0,13267,7480,3,7,1.000,18.0,12.0,12,803.3,0.0180,0,0,0.951,0
|
||||||
226,winter,857.2,0.0,400.0,120.8,55.7,0,0.7,0.745,100.0,499.3,12158,3055,0,13596,7191,3,6,1.000,18.0,12.0,12,517.3,0.0400,0,0
|
226,winter,1615.0,0.0,386.0,120.4,11.9,0,0.6,0.794,100.0,529.3,9917,5295,0,13446,7342,3,7,1.000,18.0,12.0,12,781.0,0.0180,0,0,0.952,0
|
||||||
227,winter,892.4,0.0,400.0,120.0,12.8,0,0.4,0.657,100.0,502.2,13089,3042,0,14328,5541,3,6,1.000,18.0,12.0,12,474.0,0.0400,0,0
|
227,winter,1619.0,0.0,390.0,120.0,8.8,0,0.1,0.761,100.0,625.0,9592,5657,0,13395,7356,3,7,1.000,18.0,12.0,12,653.0,0.0182,0,0,0.952,0
|
||||||
228,winter,922.0,0.0,400.0,120.0,18.4,0,0.6,0.789,100.0,518.7,12977,2099,0,13576,7348,3,6,1.000,18.0,12.0,12,419.9,0.0400,0,0
|
228,winter,1629.4,0.0,394.0,120.0,0.0,0,1.8,0.766,100.0,593.2,8296,6042,0,12717,8945,3,7,1.000,18.0,12.0,12,619.3,0.0182,0,0,0.953,0
|
||||||
229,winter,968.4,0.0,400.0,120.0,1.6,0,3.0,0.701,100.0,567.3,9048,5392,0,12047,9513,3,6,1.000,18.0,12.0,12,338.9,0.0400,0,0
|
229,winter,1639.2,0.0,397.5,120.0,0.0,0,3.8,0.762,100.0,542.7,8680,6070,0,12765,8485,3,7,1.000,18.0,12.0,12,615.3,0.0182,0,0,0.954,0
|
||||||
230,winter,993.2,0.0,400.0,120.0,23.2,0,1.1,0.773,100.0,490.5,9420,4159,0,12243,10178,3,6,1.000,18.0,12.0,12,388.9,0.0400,0,0
|
230,winter,1606.4,0.0,399.0,120.0,43.2,0,1.1,0.778,100.0,523.8,10154,5319,0,13166,7361,3,7,1.000,18.0,12.0,12,612.3,0.0182,0,0,0.955,0
|
||||||
231,winter,1015.6,0.0,400.0,120.0,25.6,0,1.8,0.745,100.0,496.5,10095,4211,0,12651,9043,3,6,1.000,18.0,12.0,12,331.9,0.0400,0,0
|
231,winter,1592.5,0.0,400.0,120.0,25.1,0,1.6,0.793,100.0,511.1,10480,4396,0,13246,7878,3,7,1.000,18.0,12.0,12,586.8,0.0182,0,0,0.955,0
|
||||||
232,winter,1039.2,0.0,400.0,120.0,24.4,0,3.0,0.657,100.0,496.7,9476,5182,0,12560,8782,3,6,1.000,18.0,12.0,12,284.8,0.0400,0,0
|
232,winter,1550.9,0.0,400.0,120.0,55.2,0,2.9,0.760,100.0,557.3,8925,4309,0,12737,10029,3,7,1.000,18.0,12.0,12,539.8,0.0182,0,0,0.956,0
|
||||||
233,winter,1085.6,0.0,400.0,120.0,1.6,0,0.5,0.789,100.0,506.3,8506,4989,0,12000,10505,3,6,1.000,18.0,12.0,12,210.8,0.0400,0,0
|
233,winter,1551.0,0.0,400.0,120.0,13.5,0,0.9,0.765,100.0,598.9,8166,5788,0,12892,9154,3,7,1.000,18.0,12.0,12,458.0,0.0182,0,0,0.957,0
|
||||||
234,winter,1090.4,0.0,400.0,120.0,43.2,0,1.4,0.701,100.0,559.2,10474,3375,0,12872,9279,3,6,1.000,18.0,12.0,12,119.6,0.0400,0,0
|
234,winter,1563.9,0.0,400.0,120.0,0.0,0,1.8,0.771,100.0,553.9,9720,4123,0,13192,8965,3,7,1.000,18.0,12.0,12,458.0,0.0182,0,0,0.957,0
|
||||||
235,winter,1123.6,0.0,400.0,120.0,14.8,0,0.9,0.773,100.0,498.0,9922,4162,0,12598,9318,3,6,1.000,18.0,12.0,12,124.6,0.0400,0,0
|
235,winter,1563.0,0.0,400.0,120.0,14.5,0,0.5,0.777,100.0,500.4,10355,3474,0,13391,8780,3,7,1.000,18.0,12.0,12,473.0,0.0182,0,0,0.958,0
|
||||||
236,winter,1155.6,0.0,400.0,120.0,16.0,0,1.6,0.745,100.0,542.0,9947,4386,0,12483,9184,3,6,1.000,18.0,12.0,12,56.6,0.0400,0,0
|
236,winter,1544.6,0.0,400.0,120.0,32.0,0,6.0,0.792,100.0,500.3,12884,2372,0,14131,6613,3,7,1.000,18.0,12.0,12,433.0,0.0182,0,0,0.958,0
|
||||||
237,winter,1185.2,0.0,400.0,120.0,18.4,0,0.9,0.657,100.0,479.0,10452,3794,0,12852,8902,3,6,1.000,18.0,12.0,12,104.0,0.0400,0,0
|
237,winter,1519.4,0.0,400.0,120.0,39.7,0,3.0,0.759,100.0,508.3,11578,3413,0,14097,6912,3,7,1.000,18.0,12.0,12,393.4,0.0182,0,0,0.959,0
|
||||||
238,winter,1221.6,0.0,400.0,120.0,11.2,0,0.7,0.789,100.0,507.2,9386,4197,0,12124,10293,3,6,1.000,18.0,12.0,12,31.0,0.0400,0,0
|
238,winter,1527.4,0.0,400.0,120.0,6.4,0,1.1,0.764,100.0,522.7,12352,3010,0,13908,6730,3,7,1.000,18.0,12.0,12,340.4,0.0182,0,0,0.959,0
|
||||||
239,winter,1268.8,0.0,400.0,120.0,0.0,0,0.0,0.701,100.0,472.6,9434,2491,0,12000,12075,3,6,1.000,18.0,12.0,12,31.6,0.0400,0,0
|
239,winter,1541.8,0.0,400.0,120.0,0.0,0,1.7,0.770,100.0,486.7,13633,2290,0,14422,5655,3,7,1.000,18.0,12.0,12,331.4,0.0182,0,0,0.959,0
|
||||||
240,spring,1400.0,0.0,400.0,360.0,10.4,0,0.0,0.773,100.0,464.6,5920,254,0,12000,17826,3,6,1.000,18.0,12.0,12,0.0,0.0400,0,0
|
240,spring,1555.6,0.0,400.0,360.0,29.3,0,2.1,0.776,100.0,495.4,13944,1918,0,14428,5710,3,7,1.000,18.0,12.0,12,300.0,0.0182,0,0,0.960,0
|
||||||
241,spring,1383.5,0.0,400.0,600.0,140.0,0,0.0,0.735,100.0,459.2,5771,554,0,12197,17478,3,6,1.000,18.0,12.0,12,0.0,0.0400,0,0
|
|
||||||
242,spring,1351.0,0.0,400.0,578.0,393.6,0,8.0,0.657,100.0,508.7,13594,1898,0,14652,5856,3,6,1.000,18.0,12.0,12,122.6,0.0400,0,0
|
|
||||||
243,spring,1411.4,0.0,400.0,618.0,213.2,0,5.8,0.789,100.0,514.9,13156,1952,0,14572,6320,3,6,1.000,18.0,12.0,12,223.6,0.0400,0,0
|
|
||||||
244,spring,1488.3,0.0,400.0,594.0,244.4,0,6.2,0.701,100.0,523.3,12314,2925,0,14563,6198,3,6,1.000,18.0,12.0,12,425.6,0.0400,0,0
|
|
||||||
245,spring,1551.5,0.0,400.0,575.0,275.0,0,1.4,0.773,100.0,511.8,10445,3673,0,14478,7404,3,6,1.000,18.0,12.0,12,662.1,0.0400,0,0
|
|
||||||
246,spring,1584.3,0.0,400.0,582.0,279.4,0,1.5,0.745,100.0,500.6,11315,3018,0,14337,7330,3,6,1.000,18.0,12.0,12,832.2,0.0400,0,0
|
|
||||||
247,spring,1647.1,0.0,400.0,613.0,217.2,0,2.2,0.657,100.0,568.9,11039,3165,0,14483,7313,3,6,1.000,18.0,12.0,12,947.0,0.0400,0,0
|
|
||||||
248,spring,1689.1,0.0,400.0,612.0,250.2,0,3.0,0.789,100.0,534.0,9078,1662,0,13592,11668,3,6,1.000,18.0,12.0,12,1035.1,0.0400,0,0
|
|
||||||
249,spring,1715.2,0.0,400.0,646.0,188.2,0,2.2,0.701,100.0,547.6,9036,2081,0,13575,11308,3,6,1.000,18.0,12.0,12,1105.0,0.0400,0,0
|
|
||||||
250,spring,1701.2,0.0,400.0,710.0,168.2,0,0.0,0.773,100.0,570.8,4816,2310,0,12324,16550,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
|
||||||
251,spring,1711.2,0.0,400.0,772.0,57.2,0,0.0,0.745,100.0,588.0,2662,1107,0,12000,20231,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
|
||||||
252,spring,1720.0,0.0,400.0,708.0,207.6,0,0.7,0.657,100.0,579.5,2779,1098,0,12162,19961,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
|
||||||
253,spring,1730.4,0.0,400.0,644.0,272.4,0,1.4,0.789,100.0,553.1,4310,1061,0,12324,18305,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
|
||||||
254,spring,1716.8,0.0,400.0,615.0,291.8,0,0.7,0.701,100.0,578.0,5295,911,0,12640,17154,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
|
||||||
255,spring,1722.0,0.0,400.0,700.0,147.0,0,0.7,0.773,100.0,563.9,2593,1105,0,12162,20140,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
|
||||||
256,spring,1727.2,0.0,400.0,706.0,188.8,0,0.7,0.745,100.0,581.0,3336,1097,0,12162,19405,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
|
||||||
257,spring,1708.6,0.0,400.0,701.0,228.8,0,0.1,0.657,100.0,586.9,4246,987,0,12476,18291,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
|
||||||
258,spring,1715.4,0.0,400.0,773.0,52.2,0,0.0,0.789,100.0,583.1,2456,1200,0,12000,20344,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
|
||||||
259,spring,1719.8,0.0,400.0,780.0,34.6,0,0.0,0.701,100.0,583.7,2026,1157,0,12000,20817,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
|
||||||
260,spring,1721.4,0.0,400.0,788.0,35.8,0,0.0,0.773,100.0,569.5,2063,1146,0,12000,20791,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
|
|
||||||
|
|||||||
|
@@ -6,10 +6,10 @@ uid="uid://da6vou2v16yvt"
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
files=["res://soak_stats.season.translation", "res://soak_stats.wood.translation", "res://soak_stats.stone.translation", "res://soak_stats.clay.translation", "res://soak_stats.food.translation", "res://soak_stats.harvested.translation", "res://soak_stats.trades.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.carried.translation", "res://soak_stats.gather.translation", "res://soak_stats.build.translation", "res://soak_stats.trade.translation", "res://soak_stats.rest.translation", "res://soak_stats.social.translation", "res://soak_stats.shelters.translation", "res://soak_stats.ruins.translation", "res://soak_stats.avg.translation", "res://soak_stats.upkeep.translation", "res://soak_stats.burn.translation", "res://soak_stats.modules.translation", "res://soak_stats.granary.translation", "res://soak_stats.avg.translation", "res://soak_stats.refusals.translation", "res://soak_stats.incomplete.translation"]
|
files=["res://soak_stats.season.translation", "res://soak_stats.wood.translation", "res://soak_stats.stone.translation", "res://soak_stats.clay.translation", "res://soak_stats.food.translation", "res://soak_stats.harvested.translation", "res://soak_stats.trades.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.carried.translation", "res://soak_stats.gather.translation", "res://soak_stats.build.translation", "res://soak_stats.trade.translation", "res://soak_stats.rest.translation", "res://soak_stats.social.translation", "res://soak_stats.shelters.translation", "res://soak_stats.ruins.translation", "res://soak_stats.avg.translation", "res://soak_stats.upkeep.translation", "res://soak_stats.burn.translation", "res://soak_stats.modules.translation", "res://soak_stats.granary.translation", "res://soak_stats.avg.translation", "res://soak_stats.refusals.translation", "res://soak_stats.incomplete.translation", "res://soak_stats.avg.translation", "res://soak_stats.deaths.translation"]
|
||||||
|
|
||||||
source_file="res://soak_stats.csv"
|
source_file="res://soak_stats.csv"
|
||||||
dest_files=["res://soak_stats.season.translation", "res://soak_stats.wood.translation", "res://soak_stats.stone.translation", "res://soak_stats.clay.translation", "res://soak_stats.food.translation", "res://soak_stats.harvested.translation", "res://soak_stats.trades.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.carried.translation", "res://soak_stats.gather.translation", "res://soak_stats.build.translation", "res://soak_stats.trade.translation", "res://soak_stats.rest.translation", "res://soak_stats.social.translation", "res://soak_stats.shelters.translation", "res://soak_stats.ruins.translation", "res://soak_stats.avg.translation", "res://soak_stats.upkeep.translation", "res://soak_stats.burn.translation", "res://soak_stats.modules.translation", "res://soak_stats.granary.translation", "res://soak_stats.avg.translation", "res://soak_stats.refusals.translation", "res://soak_stats.incomplete.translation"]
|
dest_files=["res://soak_stats.season.translation", "res://soak_stats.wood.translation", "res://soak_stats.stone.translation", "res://soak_stats.clay.translation", "res://soak_stats.food.translation", "res://soak_stats.harvested.translation", "res://soak_stats.trades.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.carried.translation", "res://soak_stats.gather.translation", "res://soak_stats.build.translation", "res://soak_stats.trade.translation", "res://soak_stats.rest.translation", "res://soak_stats.social.translation", "res://soak_stats.shelters.translation", "res://soak_stats.ruins.translation", "res://soak_stats.avg.translation", "res://soak_stats.upkeep.translation", "res://soak_stats.burn.translation", "res://soak_stats.modules.translation", "res://soak_stats.granary.translation", "res://soak_stats.avg.translation", "res://soak_stats.refusals.translation", "res://soak_stats.incomplete.translation", "res://soak_stats.avg.translation", "res://soak_stats.deaths.translation"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user